1313 */
1414
1515
16+ // May contain unused imports in some cases
17+ // @ts -ignore
18+ import { AuditLogType } from './audit-log-type' ;
1619
1720/**
1821 *
@@ -34,10 +37,10 @@ export interface AuditLogItemModel {
3437 'auditLogDateTime' ?: string ;
3538 /**
3639 *
37- * @type {string }
40+ * @type {AuditLogType }
3841 * @memberof AuditLogItemModel
3942 */
40- 'auditLogTypeEnum' ?: AuditLogItemModelAuditLogTypeEnumEnum ;
43+ 'auditLogTypeEnum' ?: AuditLogType ;
4144 /**
4245 *
4346 * @type {string }
@@ -94,86 +97,5 @@ export interface AuditLogItemModel {
9497 'details' ?: string | null ;
9598}
9699
97- export const AuditLogItemModelAuditLogTypeEnumEnum = {
98- ProductCreated : 'productCreated' ,
99- ProductChanged : 'productChanged' ,
100- ProductOwnershipTransferred : 'productOwnershipTransferred' ,
101- ProductDeleted : 'productDeleted' ,
102- ProductsReordered : 'productsReordered' ,
103- TeamMemberInvited : 'teamMemberInvited' ,
104- TeamMemberInvitationRevoked : 'teamMemberInvitationRevoked' ,
105- TeamMemberJoined : 'teamMemberJoined' ,
106- TeamMemberPermissionGroupChanged : 'teamMemberPermissionGroupChanged' ,
107- TeamMemberRemoved : 'teamMemberRemoved' ,
108- TeamMemberLeft : 'teamMemberLeft' ,
109- TeamMemberInvitationChanged : 'teamMemberInvitationChanged' ,
110- TeamMemberInvitationResent : 'teamMemberInvitationResent' ,
111- TeamMemberInvitationRejected : 'teamMemberInvitationRejected' ,
112- ConfigCreated : 'configCreated' ,
113- ConfigChanged : 'configChanged' ,
114- ConfigDeleted : 'configDeleted' ,
115- ConfigsReordered : 'configsReordered' ,
116- EnvironmentCreated : 'environmentCreated' ,
117- EnvironmentChanged : 'environmentChanged' ,
118- EnvironmentDeleted : 'environmentDeleted' ,
119- EnvironmentsReordered : 'environmentsReordered' ,
120- SettingCreated : 'settingCreated' ,
121- SettingChanged : 'settingChanged' ,
122- SettingDeleted : 'settingDeleted' ,
123- SettingsReordered : 'settingsReordered' ,
124- SettingValueChanged : 'settingValueChanged' ,
125- WebHookCreated : 'webHookCreated' ,
126- WebHookChanged : 'webHookChanged' ,
127- WebHookDeleted : 'webHookDeleted' ,
128- PermissionGroupCreated : 'permissionGroupCreated' ,
129- PermissionGroupChanged : 'permissionGroupChanged' ,
130- PermissionGroupDeleted : 'permissionGroupDeleted' ,
131- PermissionGroupDefault : 'permissionGroupDefault' ,
132- ApiKeyAdded : 'apiKeyAdded' ,
133- ApiKeyRemoved : 'apiKeyRemoved' ,
134- IntegrationAdded : 'integrationAdded' ,
135- IntegrationChanged : 'integrationChanged' ,
136- IntegrationRemoved : 'integrationRemoved' ,
137- ApiKeyConnected : 'apiKeyConnected' ,
138- IntegrationLinkAdded : 'integrationLinkAdded' ,
139- IntegrationLinkRemoved : 'integrationLinkRemoved' ,
140- OrganizationAdded : 'organizationAdded' ,
141- OrganizationRemoved : 'organizationRemoved' ,
142- OrganizationChanged : 'organizationChanged' ,
143- OrganizationSubscriptionTypeChanged : 'organizationSubscriptionTypeChanged' ,
144- OrganizationAdminChanged : 'organizationAdminChanged' ,
145- OrganizationAdminLeft : 'organizationAdminLeft' ,
146- OrganizationAdminDisabled2Fa : 'organizationAdminDisabled2FA' ,
147- TagAdded : 'tagAdded' ,
148- TagChanged : 'tagChanged' ,
149- TagRemoved : 'tagRemoved' ,
150- SettingTagAdded : 'settingTagAdded' ,
151- SettingTagRemoved : 'settingTagRemoved' ,
152- PublicApiAccessTokenAdded : 'publicApiAccessTokenAdded' ,
153- PublicApiAccessTokenRemoved : 'publicApiAccessTokenRemoved' ,
154- DomainAdded : 'domainAdded' ,
155- DomainVerified : 'domainVerified' ,
156- DomainRemoved : 'domainRemoved' ,
157- DomainSamlConfigured : 'domainSamlConfigured' ,
158- DomainSamlDeleted : 'domainSamlDeleted' ,
159- AutoProvisioningConfigurationChanged : 'autoProvisioningConfigurationChanged' ,
160- SamlIdpConfigurationAdded : 'samlIdpConfigurationAdded' ,
161- SamlIdpConfigurationRemoved : 'samlIdpConfigurationRemoved' ,
162- SamlIdpConfigurationUpdated : 'samlIdpConfigurationUpdated' ,
163- OrganizationMemberJoined : 'organizationMemberJoined' ,
164- OrganizationMemberProductJoinRequested : 'organizationMemberProductJoinRequested' ,
165- OrganizationMemberProductJoinRequestRejected : 'organizationMemberProductJoinRequestRejected' ,
166- OrganizationMemberProductJoinRequestApproved : 'organizationMemberProductJoinRequestApproved' ,
167- CodeReferencesUploaded : 'codeReferencesUploaded' ,
168- CodeReferenceDeleted : 'codeReferenceDeleted' ,
169- CodeReferenceStaleBranchDeleted : 'codeReferenceStaleBranchDeleted' ,
170- SegmentCreated : 'segmentCreated' ,
171- SegmentChanged : 'segmentChanged' ,
172- SegmentDeleted : 'segmentDeleted' ,
173- WebhookSigningKeyDeleted : 'webhookSigningKeyDeleted' ,
174- WebhookSigningKeyCreated : 'webhookSigningKeyCreated'
175- } as const ;
176-
177- export type AuditLogItemModelAuditLogTypeEnumEnum = typeof AuditLogItemModelAuditLogTypeEnumEnum [ keyof typeof AuditLogItemModelAuditLogTypeEnumEnum ] ;
178100
179101
0 commit comments