sailpoint-api-client 1.4.16 → 1.5.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/beta/README.md +2 -2
- package/beta/api.ts +135 -71
- package/beta/common.ts +2 -2
- package/beta/package.json +1 -1
- package/dist/beta/api.d.ts +127 -65
- package/dist/beta/api.js +33 -26
- package/dist/beta/api.js.map +1 -1
- package/dist/beta/common.js +1 -1
- package/dist/beta/common.js.map +1 -1
- package/dist/index.d.ts +2 -0
- package/dist/index.js +6 -3
- package/dist/index.js.map +1 -1
- package/dist/v2024/api.d.ts +4054 -1040
- package/dist/v2024/api.js +4959 -1781
- package/dist/v2024/api.js.map +1 -1
- package/dist/v2024/common.js +1 -1
- package/dist/v2024/common.js.map +1 -1
- package/dist/v2025/api.d.ts +84517 -0
- package/dist/v2025/api.js +81956 -0
- package/dist/v2025/api.js.map +1 -0
- package/dist/v2025/base.d.ts +66 -0
- package/dist/v2025/base.js +89 -0
- package/dist/v2025/base.js.map +1 -0
- package/dist/v2025/common.d.ts +65 -0
- package/dist/v2025/common.js +266 -0
- package/dist/v2025/common.js.map +1 -0
- package/dist/v2025/configuration.d.ts +91 -0
- package/dist/v2025/configuration.js +46 -0
- package/dist/v2025/configuration.js.map +1 -0
- package/dist/v2025/index.d.ts +13 -0
- package/dist/v2025/index.js +32 -0
- package/dist/v2025/index.js.map +1 -0
- package/dist/v3/api.d.ts +135 -40
- package/dist/v3/api.js +8 -4
- package/dist/v3/api.js.map +1 -1
- package/dist/v3/common.js +1 -1
- package/dist/v3/common.js.map +1 -1
- package/index.ts +3 -0
- package/package.json +1 -1
- package/v2024/README.md +2 -2
- package/v2024/api.ts +33494 -29148
- package/v2024/common.ts +2 -2
- package/v2024/package.json +1 -1
- package/v2025/.openapi-generator/FILES +12 -0
- package/v2025/.openapi-generator/VERSION +1 -0
- package/v2025/.openapi-generator-ignore +23 -0
- package/v2025/README.md +46 -0
- package/v2025/api.ts +124435 -0
- package/v2025/base.ts +86 -0
- package/v2025/common.ts +165 -0
- package/v2025/configuration.ts +110 -0
- package/v2025/git_push.sh +57 -0
- package/v2025/index.ts +18 -0
- package/v2025/package.json +34 -0
- package/v2025/tsconfig.json +21 -0
- package/v3/README.md +2 -2
- package/v3/api.ts +141 -44
- package/v3/common.ts +2 -2
- package/v3/package.json +1 -1
package/v3/api.ts
CHANGED
|
@@ -5217,7 +5217,7 @@ export interface CampaignFilterDetails {
|
|
|
5217
5217
|
'owner': string | null;
|
|
5218
5218
|
/**
|
|
5219
5219
|
* Mode/type of filter, either the INCLUSION or EXCLUSION type. The INCLUSION type includes the data in generated campaigns as per specified in the criteria, whereas the EXCLUSION type excludes the data in generated campaigns as per specified in criteria.
|
|
5220
|
-
* @type {
|
|
5220
|
+
* @type {string}
|
|
5221
5221
|
* @memberof CampaignFilterDetails
|
|
5222
5222
|
*/
|
|
5223
5223
|
'mode': CampaignFilterDetailsModeV3;
|
|
@@ -5256,10 +5256,10 @@ export interface CampaignFilterDetailsCriteriaListInner {
|
|
|
5256
5256
|
'type': CriteriaType;
|
|
5257
5257
|
/**
|
|
5258
5258
|
*
|
|
5259
|
-
* @type {Operation
|
|
5259
|
+
* @type {Operation}
|
|
5260
5260
|
* @memberof CampaignFilterDetailsCriteriaListInner
|
|
5261
5261
|
*/
|
|
5262
|
-
'operation'
|
|
5262
|
+
'operation'?: Operation | null;
|
|
5263
5263
|
/**
|
|
5264
5264
|
* Specified key from the type of criteria.
|
|
5265
5265
|
* @type {string}
|
|
@@ -5272,6 +5272,42 @@ export interface CampaignFilterDetailsCriteriaListInner {
|
|
|
5272
5272
|
* @memberof CampaignFilterDetailsCriteriaListInner
|
|
5273
5273
|
*/
|
|
5274
5274
|
'value': string | null;
|
|
5275
|
+
/**
|
|
5276
|
+
* If true, the filter will negate the result of the criteria.
|
|
5277
|
+
* @type {boolean}
|
|
5278
|
+
* @memberof CampaignFilterDetailsCriteriaListInner
|
|
5279
|
+
*/
|
|
5280
|
+
'negateResult'?: boolean;
|
|
5281
|
+
/**
|
|
5282
|
+
* If true, the filter will short circuit the evaluation of the criteria.
|
|
5283
|
+
* @type {boolean}
|
|
5284
|
+
* @memberof CampaignFilterDetailsCriteriaListInner
|
|
5285
|
+
*/
|
|
5286
|
+
'shortCircuit'?: boolean;
|
|
5287
|
+
/**
|
|
5288
|
+
* If true, the filter will record child matches for the criteria.
|
|
5289
|
+
* @type {boolean}
|
|
5290
|
+
* @memberof CampaignFilterDetailsCriteriaListInner
|
|
5291
|
+
*/
|
|
5292
|
+
'recordChildMatches'?: boolean;
|
|
5293
|
+
/**
|
|
5294
|
+
* The unique ID of the criteria.
|
|
5295
|
+
* @type {string}
|
|
5296
|
+
* @memberof CampaignFilterDetailsCriteriaListInner
|
|
5297
|
+
*/
|
|
5298
|
+
'id'?: string | null;
|
|
5299
|
+
/**
|
|
5300
|
+
* If this value is true, then matched items will not only be excluded from the campaign, they will also not have archived certification items created. Such items will not appear in the exclusion report.
|
|
5301
|
+
* @type {boolean}
|
|
5302
|
+
* @memberof CampaignFilterDetailsCriteriaListInner
|
|
5303
|
+
*/
|
|
5304
|
+
'suppressMatchedItems'?: boolean;
|
|
5305
|
+
/**
|
|
5306
|
+
* List of child criteria.
|
|
5307
|
+
* @type {Array<object>}
|
|
5308
|
+
* @memberof CampaignFilterDetailsCriteriaListInner
|
|
5309
|
+
*/
|
|
5310
|
+
'children'?: Array<object>;
|
|
5275
5311
|
}
|
|
5276
5312
|
|
|
5277
5313
|
|
|
@@ -6242,6 +6278,12 @@ export interface CompletedApproval {
|
|
|
6242
6278
|
* @memberof CompletedApproval
|
|
6243
6279
|
*/
|
|
6244
6280
|
'clientMetadata'?: { [key: string]: string; };
|
|
6281
|
+
/**
|
|
6282
|
+
* The accounts selected by the user for the access to be provisioned on, in case they have multiple accounts on one or more sources.
|
|
6283
|
+
* @type {Array<RequestedAccountRef>}
|
|
6284
|
+
* @memberof CompletedApproval
|
|
6285
|
+
*/
|
|
6286
|
+
'requestedAccounts'?: Array<RequestedAccountRef> | null;
|
|
6245
6287
|
}
|
|
6246
6288
|
|
|
6247
6289
|
|
|
@@ -7098,7 +7140,8 @@ export const CriteriaType = {
|
|
|
7098
7140
|
Source: 'SOURCE',
|
|
7099
7141
|
Account: 'ACCOUNT',
|
|
7100
7142
|
AggregatedEntitlement: 'AGGREGATED_ENTITLEMENT',
|
|
7101
|
-
InvalidCertifiableEntity: 'INVALID_CERTIFIABLE_ENTITY'
|
|
7143
|
+
InvalidCertifiableEntity: 'INVALID_CERTIFIABLE_ENTITY',
|
|
7144
|
+
InvalidCertifiableBundle: 'INVALID_CERTIFIABLE_BUNDLE'
|
|
7102
7145
|
} as const;
|
|
7103
7146
|
|
|
7104
7147
|
export type CriteriaType = typeof CriteriaType[keyof typeof CriteriaType];
|
|
@@ -8689,31 +8732,31 @@ export interface EventAttributes {
|
|
|
8689
8732
|
* @type {string}
|
|
8690
8733
|
* @memberof EventAttributes
|
|
8691
8734
|
*/
|
|
8692
|
-
'id': string;
|
|
8735
|
+
'id': string | null;
|
|
8693
8736
|
/**
|
|
8694
8737
|
* JSON path expression that will limit which events the trigger will fire on
|
|
8695
8738
|
* @type {string}
|
|
8696
8739
|
* @memberof EventAttributes
|
|
8697
8740
|
*/
|
|
8698
|
-
'filter.$'?: string;
|
|
8741
|
+
'filter.$'?: string | null;
|
|
8699
8742
|
/**
|
|
8700
8743
|
* Description of the event trigger
|
|
8701
8744
|
* @type {string}
|
|
8702
8745
|
* @memberof EventAttributes
|
|
8703
8746
|
*/
|
|
8704
|
-
'description'?: string;
|
|
8747
|
+
'description'?: string | null;
|
|
8705
8748
|
/**
|
|
8706
8749
|
* The attribute to filter on
|
|
8707
8750
|
* @type {string}
|
|
8708
8751
|
* @memberof EventAttributes
|
|
8709
8752
|
*/
|
|
8710
|
-
'attributeToFilter'?: string;
|
|
8753
|
+
'attributeToFilter'?: string | null;
|
|
8711
8754
|
/**
|
|
8712
8755
|
* Form definition\'s unique identifier.
|
|
8713
8756
|
* @type {string}
|
|
8714
8757
|
* @memberof EventAttributes
|
|
8715
8758
|
*/
|
|
8716
|
-
'formDefinitionId'?: string;
|
|
8759
|
+
'formDefinitionId'?: string | null;
|
|
8717
8760
|
}
|
|
8718
8761
|
/**
|
|
8719
8762
|
* Event
|
|
@@ -9229,25 +9272,25 @@ export interface ExternalAttributes {
|
|
|
9229
9272
|
* @type {string}
|
|
9230
9273
|
* @memberof ExternalAttributes
|
|
9231
9274
|
*/
|
|
9232
|
-
'name'?: string;
|
|
9275
|
+
'name'?: string | null;
|
|
9233
9276
|
/**
|
|
9234
|
-
*
|
|
9277
|
+
* Additional context about the external trigger
|
|
9235
9278
|
* @type {string}
|
|
9236
9279
|
* @memberof ExternalAttributes
|
|
9237
9280
|
*/
|
|
9238
|
-
'description'?: string;
|
|
9281
|
+
'description'?: string | null;
|
|
9239
9282
|
/**
|
|
9240
9283
|
* OAuth Client ID to authenticate with this trigger
|
|
9241
9284
|
* @type {string}
|
|
9242
9285
|
* @memberof ExternalAttributes
|
|
9243
9286
|
*/
|
|
9244
|
-
'clientId'?: string;
|
|
9287
|
+
'clientId'?: string | null;
|
|
9245
9288
|
/**
|
|
9246
9289
|
* URL to invoke this workflow
|
|
9247
9290
|
* @type {string}
|
|
9248
9291
|
* @memberof ExternalAttributes
|
|
9249
9292
|
*/
|
|
9250
|
-
'url'?: string;
|
|
9293
|
+
'url'?: string | null;
|
|
9251
9294
|
}
|
|
9252
9295
|
/**
|
|
9253
9296
|
*
|
|
@@ -12046,7 +12089,8 @@ export interface LifecyclestateDeleted {
|
|
|
12046
12089
|
}
|
|
12047
12090
|
|
|
12048
12091
|
export const LifecyclestateDeletedTypeV3 = {
|
|
12049
|
-
LifecycleState: 'LIFECYCLE_STATE'
|
|
12092
|
+
LifecycleState: 'LIFECYCLE_STATE',
|
|
12093
|
+
TaskResult: 'TASK_RESULT'
|
|
12050
12094
|
} as const;
|
|
12051
12095
|
|
|
12052
12096
|
export type LifecyclestateDeletedTypeV3 = typeof LifecyclestateDeletedTypeV3[keyof typeof LifecyclestateDeletedTypeV3];
|
|
@@ -15575,6 +15619,12 @@ export interface PendingApproval {
|
|
|
15575
15619
|
* @memberof PendingApproval
|
|
15576
15620
|
*/
|
|
15577
15621
|
'clientMetadata'?: { [key: string]: string; } | null;
|
|
15622
|
+
/**
|
|
15623
|
+
* The accounts selected by the user for the access to be provisioned on, in case they have multiple accounts on one or more sources.
|
|
15624
|
+
* @type {Array<RequestedAccountRef>}
|
|
15625
|
+
* @memberof PendingApproval
|
|
15626
|
+
*/
|
|
15627
|
+
'requestedAccounts'?: Array<RequestedAccountRef> | null;
|
|
15578
15628
|
}
|
|
15579
15629
|
|
|
15580
15630
|
|
|
@@ -17137,6 +17187,45 @@ export const RequestableObjectType = {
|
|
|
17137
17187
|
export type RequestableObjectType = typeof RequestableObjectType[keyof typeof RequestableObjectType];
|
|
17138
17188
|
|
|
17139
17189
|
|
|
17190
|
+
/**
|
|
17191
|
+
*
|
|
17192
|
+
* @export
|
|
17193
|
+
* @interface RequestedAccountRef
|
|
17194
|
+
*/
|
|
17195
|
+
export interface RequestedAccountRef {
|
|
17196
|
+
/**
|
|
17197
|
+
* Display name of the account for the user
|
|
17198
|
+
* @type {string}
|
|
17199
|
+
* @memberof RequestedAccountRef
|
|
17200
|
+
*/
|
|
17201
|
+
'name'?: string;
|
|
17202
|
+
/**
|
|
17203
|
+
*
|
|
17204
|
+
* @type {DtoType}
|
|
17205
|
+
* @memberof RequestedAccountRef
|
|
17206
|
+
*/
|
|
17207
|
+
'type'?: DtoType;
|
|
17208
|
+
/**
|
|
17209
|
+
* The uuid for the account
|
|
17210
|
+
* @type {string}
|
|
17211
|
+
* @memberof RequestedAccountRef
|
|
17212
|
+
*/
|
|
17213
|
+
'accountUuid'?: string | null;
|
|
17214
|
+
/**
|
|
17215
|
+
* The native identity for the account
|
|
17216
|
+
* @type {string}
|
|
17217
|
+
* @memberof RequestedAccountRef
|
|
17218
|
+
*/
|
|
17219
|
+
'accountId'?: string | null;
|
|
17220
|
+
/**
|
|
17221
|
+
* Display name of the source for the account
|
|
17222
|
+
* @type {string}
|
|
17223
|
+
* @memberof RequestedAccountRef
|
|
17224
|
+
*/
|
|
17225
|
+
'sourceName'?: string;
|
|
17226
|
+
}
|
|
17227
|
+
|
|
17228
|
+
|
|
17140
17229
|
/**
|
|
17141
17230
|
*
|
|
17142
17231
|
* @export
|
|
@@ -17321,6 +17410,12 @@ export interface RequestedItemStatus {
|
|
|
17321
17410
|
* @memberof RequestedItemStatus
|
|
17322
17411
|
*/
|
|
17323
17412
|
'clientMetadata'?: { [key: string]: string; } | null;
|
|
17413
|
+
/**
|
|
17414
|
+
* The accounts selected by the user for the access to be provisioned on, in case they have multiple accounts on one or more sources.
|
|
17415
|
+
* @type {Array<RequestedAccountRef>}
|
|
17416
|
+
* @memberof RequestedItemStatus
|
|
17417
|
+
*/
|
|
17418
|
+
'requestedAccounts'?: Array<RequestedAccountRef> | null;
|
|
17324
17419
|
}
|
|
17325
17420
|
|
|
17326
17421
|
export const RequestedItemStatusTypeV3 = {
|
|
@@ -19572,41 +19667,41 @@ export type ScheduleType = typeof ScheduleType[keyof typeof ScheduleType];
|
|
|
19572
19667
|
*/
|
|
19573
19668
|
export interface ScheduledAttributes {
|
|
19574
19669
|
/**
|
|
19575
|
-
*
|
|
19670
|
+
* Frequency of execution
|
|
19576
19671
|
* @type {string}
|
|
19577
19672
|
* @memberof ScheduledAttributes
|
|
19578
19673
|
*/
|
|
19579
|
-
'
|
|
19674
|
+
'frequency': ScheduledAttributesFrequencyV3 | null;
|
|
19580
19675
|
/**
|
|
19581
|
-
*
|
|
19676
|
+
* Time zone identifier
|
|
19582
19677
|
* @type {string}
|
|
19583
19678
|
* @memberof ScheduledAttributes
|
|
19584
19679
|
*/
|
|
19585
|
-
'
|
|
19680
|
+
'timeZone'?: string | null;
|
|
19586
19681
|
/**
|
|
19587
|
-
*
|
|
19682
|
+
* A valid CRON expression
|
|
19588
19683
|
* @type {string}
|
|
19589
19684
|
* @memberof ScheduledAttributes
|
|
19590
19685
|
*/
|
|
19591
|
-
'
|
|
19686
|
+
'cronString'?: string | null;
|
|
19592
19687
|
/**
|
|
19593
19688
|
* Scheduled days of the week for execution
|
|
19594
19689
|
* @type {Array<string>}
|
|
19595
19690
|
* @memberof ScheduledAttributes
|
|
19596
19691
|
*/
|
|
19597
|
-
'weeklyDays'?: Array<string
|
|
19692
|
+
'weeklyDays'?: Array<string> | null;
|
|
19598
19693
|
/**
|
|
19599
19694
|
* Scheduled execution times
|
|
19600
19695
|
* @type {Array<string>}
|
|
19601
19696
|
* @memberof ScheduledAttributes
|
|
19602
19697
|
*/
|
|
19603
|
-
'weeklyTimes'?: Array<string
|
|
19698
|
+
'weeklyTimes'?: Array<string> | null;
|
|
19604
19699
|
/**
|
|
19605
19700
|
* Scheduled execution times
|
|
19606
19701
|
* @type {Array<string>}
|
|
19607
19702
|
* @memberof ScheduledAttributes
|
|
19608
19703
|
*/
|
|
19609
|
-
'yearlyTimes'?: Array<string
|
|
19704
|
+
'yearlyTimes'?: Array<string> | null;
|
|
19610
19705
|
}
|
|
19611
19706
|
|
|
19612
19707
|
export const ScheduledAttributesFrequencyV3 = {
|
|
@@ -19861,7 +19956,8 @@ export const SchemaFeaturesV3 = {
|
|
|
19861
19956
|
ArmSecurityExtract: 'ARM_SECURITY_EXTRACT',
|
|
19862
19957
|
ArmUtilizationExtract: 'ARM_UTILIZATION_EXTRACT',
|
|
19863
19958
|
ArmChangelogExtract: 'ARM_CHANGELOG_EXTRACT',
|
|
19864
|
-
UsesUuid: 'USES_UUID'
|
|
19959
|
+
UsesUuid: 'USES_UUID',
|
|
19960
|
+
ApplicationDiscovery: 'APPLICATION_DISCOVERY'
|
|
19865
19961
|
} as const;
|
|
19866
19962
|
|
|
19867
19963
|
export type SchemaFeaturesV3 = typeof SchemaFeaturesV3[keyof typeof SchemaFeaturesV3];
|
|
@@ -21586,7 +21682,8 @@ export const SourceFeaturesV3 = {
|
|
|
21586
21682
|
ArmSecurityExtract: 'ARM_SECURITY_EXTRACT',
|
|
21587
21683
|
ArmUtilizationExtract: 'ARM_UTILIZATION_EXTRACT',
|
|
21588
21684
|
ArmChangelogExtract: 'ARM_CHANGELOG_EXTRACT',
|
|
21589
|
-
UsesUuid: 'USES_UUID'
|
|
21685
|
+
UsesUuid: 'USES_UUID',
|
|
21686
|
+
ApplicationDiscovery: 'APPLICATION_DISCOVERY'
|
|
21590
21687
|
} as const;
|
|
21591
21688
|
|
|
21592
21689
|
export type SourceFeaturesV3 = typeof SourceFeaturesV3[keyof typeof SourceFeaturesV3];
|
|
@@ -24664,85 +24761,85 @@ export interface WorkflowTriggerAttributes {
|
|
|
24664
24761
|
* @type {string}
|
|
24665
24762
|
* @memberof WorkflowTriggerAttributes
|
|
24666
24763
|
*/
|
|
24667
|
-
'id': string;
|
|
24764
|
+
'id': string | null;
|
|
24668
24765
|
/**
|
|
24669
24766
|
* JSON path expression that will limit which events the trigger will fire on
|
|
24670
24767
|
* @type {string}
|
|
24671
24768
|
* @memberof WorkflowTriggerAttributes
|
|
24672
24769
|
*/
|
|
24673
|
-
'filter.$'?: string;
|
|
24770
|
+
'filter.$'?: string | null;
|
|
24674
24771
|
/**
|
|
24675
|
-
*
|
|
24772
|
+
* Additional context about the external trigger
|
|
24676
24773
|
* @type {string}
|
|
24677
24774
|
* @memberof WorkflowTriggerAttributes
|
|
24678
24775
|
*/
|
|
24679
|
-
'description'?: string;
|
|
24776
|
+
'description'?: string | null;
|
|
24680
24777
|
/**
|
|
24681
24778
|
* The attribute to filter on
|
|
24682
24779
|
* @type {string}
|
|
24683
24780
|
* @memberof WorkflowTriggerAttributes
|
|
24684
24781
|
*/
|
|
24685
|
-
'attributeToFilter'?: string;
|
|
24782
|
+
'attributeToFilter'?: string | null;
|
|
24686
24783
|
/**
|
|
24687
24784
|
* Form definition\'s unique identifier.
|
|
24688
24785
|
* @type {string}
|
|
24689
24786
|
* @memberof WorkflowTriggerAttributes
|
|
24690
24787
|
*/
|
|
24691
|
-
'formDefinitionId'?: string;
|
|
24788
|
+
'formDefinitionId'?: string | null;
|
|
24692
24789
|
/**
|
|
24693
24790
|
* A unique name for the external trigger
|
|
24694
24791
|
* @type {string}
|
|
24695
24792
|
* @memberof WorkflowTriggerAttributes
|
|
24696
24793
|
*/
|
|
24697
|
-
'name'?: string;
|
|
24794
|
+
'name'?: string | null;
|
|
24698
24795
|
/**
|
|
24699
24796
|
* OAuth Client ID to authenticate with this trigger
|
|
24700
24797
|
* @type {string}
|
|
24701
24798
|
* @memberof WorkflowTriggerAttributes
|
|
24702
24799
|
*/
|
|
24703
|
-
'clientId'?: string;
|
|
24800
|
+
'clientId'?: string | null;
|
|
24704
24801
|
/**
|
|
24705
24802
|
* URL to invoke this workflow
|
|
24706
24803
|
* @type {string}
|
|
24707
24804
|
* @memberof WorkflowTriggerAttributes
|
|
24708
24805
|
*/
|
|
24709
|
-
'url'?: string;
|
|
24806
|
+
'url'?: string | null;
|
|
24710
24807
|
/**
|
|
24711
|
-
*
|
|
24808
|
+
* Frequency of execution
|
|
24712
24809
|
* @type {string}
|
|
24713
24810
|
* @memberof WorkflowTriggerAttributes
|
|
24714
24811
|
*/
|
|
24715
|
-
'
|
|
24812
|
+
'frequency': WorkflowTriggerAttributesFrequencyV3 | null;
|
|
24716
24813
|
/**
|
|
24717
|
-
*
|
|
24814
|
+
* Time zone identifier
|
|
24718
24815
|
* @type {string}
|
|
24719
24816
|
* @memberof WorkflowTriggerAttributes
|
|
24720
24817
|
*/
|
|
24721
|
-
'
|
|
24818
|
+
'timeZone'?: string | null;
|
|
24722
24819
|
/**
|
|
24723
|
-
*
|
|
24820
|
+
* A valid CRON expression
|
|
24724
24821
|
* @type {string}
|
|
24725
24822
|
* @memberof WorkflowTriggerAttributes
|
|
24726
24823
|
*/
|
|
24727
|
-
'
|
|
24824
|
+
'cronString'?: string | null;
|
|
24728
24825
|
/**
|
|
24729
24826
|
* Scheduled days of the week for execution
|
|
24730
24827
|
* @type {Array<string>}
|
|
24731
24828
|
* @memberof WorkflowTriggerAttributes
|
|
24732
24829
|
*/
|
|
24733
|
-
'weeklyDays'?: Array<string
|
|
24830
|
+
'weeklyDays'?: Array<string> | null;
|
|
24734
24831
|
/**
|
|
24735
24832
|
* Scheduled execution times
|
|
24736
24833
|
* @type {Array<string>}
|
|
24737
24834
|
* @memberof WorkflowTriggerAttributes
|
|
24738
24835
|
*/
|
|
24739
|
-
'weeklyTimes'?: Array<string
|
|
24836
|
+
'weeklyTimes'?: Array<string> | null;
|
|
24740
24837
|
/**
|
|
24741
24838
|
* Scheduled execution times
|
|
24742
24839
|
* @type {Array<string>}
|
|
24743
24840
|
* @memberof WorkflowTriggerAttributes
|
|
24744
24841
|
*/
|
|
24745
|
-
'yearlyTimes'?: Array<string
|
|
24842
|
+
'yearlyTimes'?: Array<string> | null;
|
|
24746
24843
|
}
|
|
24747
24844
|
|
|
24748
24845
|
export const WorkflowTriggerAttributesFrequencyV3 = {
|
package/v3/common.ts
CHANGED
|
@@ -147,9 +147,9 @@ export const createRequestFunction = function (axiosArgs: RequestArgs, globalAxi
|
|
|
147
147
|
return <T = unknown, R = AxiosResponse<T>>(axios: AxiosInstance = globalAxios, basePath: string = BASE_PATH) => {
|
|
148
148
|
axiosRetry(axios, configuration.retriesConfig)
|
|
149
149
|
const headers = {
|
|
150
|
-
...{'User-Agent':'OpenAPI-Generator/1.
|
|
150
|
+
...{'User-Agent':'OpenAPI-Generator/1.5.0/ts'},
|
|
151
151
|
...axiosArgs.axiosOptions.headers,
|
|
152
|
-
...{'X-SailPoint-SDK':'typescript-1.
|
|
152
|
+
...{'X-SailPoint-SDK':'typescript-1.5.0'}
|
|
153
153
|
}
|
|
154
154
|
|
|
155
155
|
if(!configuration.experimental && ("X-SailPoint-Experimental" in headers)) {
|