sailpoint-api-client 1.8.20 → 1.8.21

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.
Files changed (49) hide show
  1. package/beta/README.md +2 -2
  2. package/beta/api.ts +11 -9
  3. package/beta/common.ts +2 -2
  4. package/beta/package.json +1 -1
  5. package/dist/beta/api.d.ts +10 -8
  6. package/dist/beta/api.js +11 -9
  7. package/dist/beta/api.js.map +1 -1
  8. package/dist/beta/common.js +2 -2
  9. package/dist/nerm/common.js +2 -2
  10. package/dist/nermv2025/common.js +2 -2
  11. package/dist/v2024/api.d.ts +20 -16
  12. package/dist/v2024/api.js +17 -13
  13. package/dist/v2024/api.js.map +1 -1
  14. package/dist/v2024/common.js +2 -2
  15. package/dist/v2025/api.d.ts +20 -16
  16. package/dist/v2025/api.js +17 -13
  17. package/dist/v2025/api.js.map +1 -1
  18. package/dist/v2025/common.js +2 -2
  19. package/dist/v2026/api.d.ts +20 -16
  20. package/dist/v2026/api.js +17 -13
  21. package/dist/v2026/api.js.map +1 -1
  22. package/dist/v2026/common.js +2 -2
  23. package/dist/v3/api.d.ts +12 -8
  24. package/dist/v3/api.js +9 -5
  25. package/dist/v3/api.js.map +1 -1
  26. package/dist/v3/common.js +2 -2
  27. package/nerm/README.md +2 -2
  28. package/nerm/common.ts +2 -2
  29. package/nerm/package.json +1 -1
  30. package/nermv2025/README.md +2 -2
  31. package/nermv2025/common.ts +2 -2
  32. package/nermv2025/package.json +1 -1
  33. package/package.json +1 -1
  34. package/v2024/README.md +2 -2
  35. package/v2024/api.ts +23 -19
  36. package/v2024/common.ts +2 -2
  37. package/v2024/package.json +1 -1
  38. package/v2025/README.md +2 -2
  39. package/v2025/api.ts +23 -19
  40. package/v2025/common.ts +2 -2
  41. package/v2025/package.json +1 -1
  42. package/v2026/README.md +2 -2
  43. package/v2026/api.ts +23 -19
  44. package/v2026/common.ts +2 -2
  45. package/v2026/package.json +1 -1
  46. package/v3/README.md +2 -2
  47. package/v3/api.ts +15 -11
  48. package/v3/common.ts +2 -2
  49. package/v3/package.json +1 -1
package/v2026/api.ts CHANGED
@@ -12616,7 +12616,9 @@ export type CampaignReferenceV2026TypeV2026 = typeof CampaignReferenceV2026TypeV
12616
12616
  export const CampaignReferenceV2026CampaignTypeV2026 = {
12617
12617
  Manager: 'MANAGER',
12618
12618
  SourceOwner: 'SOURCE_OWNER',
12619
- Search: 'SEARCH'
12619
+ Search: 'SEARCH',
12620
+ RoleComposition: 'ROLE_COMPOSITION',
12621
+ MachineAccount: 'MACHINE_ACCOUNT'
12620
12622
  } as const;
12621
12623
 
12622
12624
  export type CampaignReferenceV2026CampaignTypeV2026 = typeof CampaignReferenceV2026CampaignTypeV2026[keyof typeof CampaignReferenceV2026CampaignTypeV2026];
@@ -39339,11 +39341,11 @@ export interface ReviewerV2026 {
39339
39341
  */
39340
39342
  'name'?: string;
39341
39343
  /**
39342
- * The email of the reviewing identity.
39344
+ * The email of the reviewing identity. This is only applicable to reviewers of the `IDENTITY` type.
39343
39345
  * @type {string}
39344
39346
  * @memberof ReviewerV2026
39345
39347
  */
39346
- 'email'?: string;
39348
+ 'email'?: string | null;
39347
39349
  /**
39348
39350
  * The type of the reviewing identity.
39349
39351
  * @type {string}
@@ -39365,7 +39367,8 @@ export interface ReviewerV2026 {
39365
39367
  }
39366
39368
 
39367
39369
  export const ReviewerV2026TypeV2026 = {
39368
- Identity: 'IDENTITY'
39370
+ Identity: 'IDENTITY',
39371
+ GovernanceGroup: 'GOVERNANCE_GROUP'
39369
39372
  } as const;
39370
39373
 
39371
39374
  export type ReviewerV2026TypeV2026 = typeof ReviewerV2026TypeV2026[keyof typeof ReviewerV2026TypeV2026];
@@ -53849,19 +53852,19 @@ export interface WorkflowLibraryTriggerV2026 {
53849
53852
  */
53850
53853
  'type'?: WorkflowLibraryTriggerV2026TypeV2026;
53851
53854
  /**
53852
- *
53855
+ * Whether the trigger is deprecated.
53853
53856
  * @type {boolean}
53854
53857
  * @memberof WorkflowLibraryTriggerV2026
53855
53858
  */
53856
53859
  'deprecated'?: boolean;
53857
53860
  /**
53858
- *
53861
+ * Date the trigger was deprecated, if applicable.
53859
53862
  * @type {string}
53860
53863
  * @memberof WorkflowLibraryTriggerV2026
53861
53864
  */
53862
53865
  'deprecatedBy'?: string;
53863
53866
  /**
53864
- *
53867
+ * Whether the trigger can be simulated.
53865
53868
  * @type {boolean}
53866
53869
  * @memberof WorkflowLibraryTriggerV2026
53867
53870
  */
@@ -53907,7 +53910,8 @@ export interface WorkflowLibraryTriggerV2026 {
53907
53910
  export const WorkflowLibraryTriggerV2026TypeV2026 = {
53908
53911
  Event: 'EVENT',
53909
53912
  Scheduled: 'SCHEDULED',
53910
- External: 'EXTERNAL'
53913
+ External: 'EXTERNAL',
53914
+ AccessRequestTrigger: 'AccessRequestTrigger'
53911
53915
  } as const;
53912
53916
 
53913
53917
  export type WorkflowLibraryTriggerV2026TypeV2026 = typeof WorkflowLibraryTriggerV2026TypeV2026[keyof typeof WorkflowLibraryTriggerV2026TypeV2026];
@@ -77523,7 +77527,7 @@ export const CustomFormsV2026ApiAxiosParamCreator = function (configuration?: Co
77523
77527
  };
77524
77528
  },
77525
77529
  /**
77526
- * Parameter `{formInstanceID}` should match a form instance ID.
77530
+ * Parameter `{formInstanceID}` should match a form instance ID. Only the assigned recipient (`recipients[].id` when `type` is `IDENTITY`) may call this.
77527
77531
  * @summary Returns a form instance.
77528
77532
  * @param {string} formInstanceID Form instance ID
77529
77533
  * @param {*} [axiosOptions] Override http request option.
@@ -77699,7 +77703,7 @@ export const CustomFormsV2026ApiAxiosParamCreator = function (configuration?: Co
77699
77703
  };
77700
77704
  },
77701
77705
  /**
77702
- * Parameter `{formInstanceID}` should match a form instance ID.
77706
+ * Parameter `{formInstanceID}` should match a form instance ID. Only the assigned recipient (`recipients[].id` when `type` is `IDENTITY`) may call this.
77703
77707
  * @summary Patch a form instance.
77704
77708
  * @param {string} formInstanceID Form instance ID
77705
77709
  * @param {Array<{ [key: string]: object; }>} [body] Body is the request payload to patch a form instance, check: https://jsonpatch.com
@@ -78135,7 +78139,7 @@ export const CustomFormsV2026ApiFp = function(configuration?: Configuration) {
78135
78139
  return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
78136
78140
  },
78137
78141
  /**
78138
- * Parameter `{formInstanceID}` should match a form instance ID.
78142
+ * Parameter `{formInstanceID}` should match a form instance ID. Only the assigned recipient (`recipients[].id` when `type` is `IDENTITY`) may call this.
78139
78143
  * @summary Returns a form instance.
78140
78144
  * @param {string} formInstanceID Form instance ID
78141
78145
  * @param {*} [axiosOptions] Override http request option.
@@ -78189,7 +78193,7 @@ export const CustomFormsV2026ApiFp = function(configuration?: Configuration) {
78189
78193
  return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
78190
78194
  },
78191
78195
  /**
78192
- * Parameter `{formInstanceID}` should match a form instance ID.
78196
+ * Parameter `{formInstanceID}` should match a form instance ID. Only the assigned recipient (`recipients[].id` when `type` is `IDENTITY`) may call this.
78193
78197
  * @summary Patch a form instance.
78194
78198
  * @param {string} formInstanceID Form instance ID
78195
78199
  * @param {Array<{ [key: string]: object; }>} [body] Body is the request payload to patch a form instance, check: https://jsonpatch.com
@@ -78370,7 +78374,7 @@ export const CustomFormsV2026ApiFactory = function (configuration?: Configuratio
78370
78374
  return localVarFp.getFormDefinitionByKey(requestParameters.formDefinitionID, axiosOptions).then((request) => request(axios, basePath));
78371
78375
  },
78372
78376
  /**
78373
- * Parameter `{formInstanceID}` should match a form instance ID.
78377
+ * Parameter `{formInstanceID}` should match a form instance ID. Only the assigned recipient (`recipients[].id` when `type` is `IDENTITY`) may call this.
78374
78378
  * @summary Returns a form instance.
78375
78379
  * @param {CustomFormsV2026ApiGetFormInstanceByKeyRequest} requestParameters Request parameters.
78376
78380
  * @param {*} [axiosOptions] Override http request option.
@@ -78410,7 +78414,7 @@ export const CustomFormsV2026ApiFactory = function (configuration?: Configuratio
78410
78414
  return localVarFp.patchFormDefinition(requestParameters.formDefinitionID, requestParameters.body, axiosOptions).then((request) => request(axios, basePath));
78411
78415
  },
78412
78416
  /**
78413
- * Parameter `{formInstanceID}` should match a form instance ID.
78417
+ * Parameter `{formInstanceID}` should match a form instance ID. Only the assigned recipient (`recipients[].id` when `type` is `IDENTITY`) may call this.
78414
78418
  * @summary Patch a form instance.
78415
78419
  * @param {CustomFormsV2026ApiPatchFormInstanceRequest} requestParameters Request parameters.
78416
78420
  * @param {*} [axiosOptions] Override http request option.
@@ -78960,7 +78964,7 @@ export class CustomFormsV2026Api extends BaseAPI {
78960
78964
  }
78961
78965
 
78962
78966
  /**
78963
- * Parameter `{formInstanceID}` should match a form instance ID.
78967
+ * Parameter `{formInstanceID}` should match a form instance ID. Only the assigned recipient (`recipients[].id` when `type` is `IDENTITY`) may call this.
78964
78968
  * @summary Returns a form instance.
78965
78969
  * @param {CustomFormsV2026ApiGetFormInstanceByKeyRequest} requestParameters Request parameters.
78966
78970
  * @param {*} [axiosOptions] Override http request option.
@@ -79008,7 +79012,7 @@ export class CustomFormsV2026Api extends BaseAPI {
79008
79012
  }
79009
79013
 
79010
79014
  /**
79011
- * Parameter `{formInstanceID}` should match a form instance ID.
79015
+ * Parameter `{formInstanceID}` should match a form instance ID. Only the assigned recipient (`recipients[].id` when `type` is `IDENTITY`) may call this.
79012
79016
  * @summary Patch a form instance.
79013
79017
  * @param {CustomFormsV2026ApiPatchFormInstanceRequest} requestParameters Request parameters.
79014
79018
  * @param {*} [axiosOptions] Override http request option.
@@ -149663,7 +149667,7 @@ export const WorkflowsV2026ApiAxiosParamCreator = function (configuration?: Conf
149663
149667
  * @summary List workflow library triggers
149664
149668
  * @param {number} [limit] Max number of results to return. See [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters) for more information.
149665
149669
  * @param {number} [offset] Offset into the full result set. Usually specified with *limit* to paginate through the results. See [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters) for more information.
149666
- * @param {string} [filters] Filter results using the standard syntax described in [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters#filtering-results) Filtering is supported for the following fields and operators: **id**: *eq*
149670
+ * @param {string} [filters] Filter results using the standard syntax described in [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters#filtering-results) Filtering is supported for the following fields and operators: **id**: *eq* **name**: *eq* **type**: *eq*
149667
149671
  * @param {*} [axiosOptions] Override http request option.
149668
149672
  * @throws {RequiredError}
149669
149673
  */
@@ -150133,7 +150137,7 @@ export const WorkflowsV2026ApiFp = function(configuration?: Configuration) {
150133
150137
  * @summary List workflow library triggers
150134
150138
  * @param {number} [limit] Max number of results to return. See [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters) for more information.
150135
150139
  * @param {number} [offset] Offset into the full result set. Usually specified with *limit* to paginate through the results. See [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters) for more information.
150136
- * @param {string} [filters] Filter results using the standard syntax described in [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters#filtering-results) Filtering is supported for the following fields and operators: **id**: *eq*
150140
+ * @param {string} [filters] Filter results using the standard syntax described in [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters#filtering-results) Filtering is supported for the following fields and operators: **id**: *eq* **name**: *eq* **type**: *eq*
150137
150141
  * @param {*} [axiosOptions] Override http request option.
150138
150142
  * @throws {RequiredError}
150139
150143
  */
@@ -150650,7 +150654,7 @@ export interface WorkflowsV2026ApiListWorkflowLibraryTriggersRequest {
150650
150654
  readonly offset?: number
150651
150655
 
150652
150656
  /**
150653
- * Filter results using the standard syntax described in [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters#filtering-results) Filtering is supported for the following fields and operators: **id**: *eq*
150657
+ * Filter results using the standard syntax described in [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters#filtering-results) Filtering is supported for the following fields and operators: **id**: *eq* **name**: *eq* **type**: *eq*
150654
150658
  * @type {string}
150655
150659
  * @memberof WorkflowsV2026ApiListWorkflowLibraryTriggers
150656
150660
  */
package/v2026/common.ts CHANGED
@@ -146,14 +146,14 @@ export const toPathString = function (url: URL) {
146
146
  export const createRequestFunction = function (axiosArgs: RequestArgs, globalAxios: AxiosInstance, BASE_PATH: string, configuration?: Configuration) {
147
147
  return <T = unknown, R = AxiosResponse<T>>(axios: AxiosInstance = globalAxios, basePath: string = BASE_PATH) => {
148
148
  axiosRetry(axios, configuration.retriesConfig)
149
- let userAgent = `SailPoint-SDK-TypeScript/1.8.20`;
149
+ let userAgent = `SailPoint-SDK-TypeScript/1.8.21`;
150
150
  if (configuration?.consumerIdentifier && configuration?.consumerVersion) {
151
151
  userAgent += ` (${configuration.consumerIdentifier}/${configuration.consumerVersion})`;
152
152
  }
153
153
  userAgent += ` (${process.platform}; ${process.arch}) Node/${process.versions.node} (openapi-generator/7.12.0)`;
154
154
  const headers = {
155
155
  ...axiosArgs.axiosOptions.headers,
156
- ...{'X-SailPoint-SDK':'typescript-1.8.20'},
156
+ ...{'X-SailPoint-SDK':'typescript-1.8.21'},
157
157
  ...{'User-Agent': userAgent},
158
158
  }
159
159
 
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "sailpoint-sdk",
3
- "version": "1.8.20",
3
+ "version": "1.8.21",
4
4
  "description": "OpenAPI client for sailpoint-sdk",
5
5
  "author": "OpenAPI-Generator Contributors",
6
6
  "repository": {
package/v3/README.md CHANGED
@@ -1,4 +1,4 @@
1
- ## sailpoint-sdk@1.8.20
1
+ ## sailpoint-sdk@1.8.21
2
2
 
3
3
  This generator creates TypeScript/JavaScript client that utilizes [axios](https://github.com/axios/axios). The generated Node module can be used in the following environments:
4
4
 
@@ -36,7 +36,7 @@ navigate to the folder of your consuming project and run one of the following co
36
36
  _published:_
37
37
 
38
38
  ```
39
- npm install sailpoint-sdk@1.8.20 --save
39
+ npm install sailpoint-sdk@1.8.21 --save
40
40
  ```
41
41
 
42
42
  _unPublished (not recommended):_
package/v3/api.ts CHANGED
@@ -5535,7 +5535,9 @@ export type CampaignReferenceTypeV3 = typeof CampaignReferenceTypeV3[keyof typeo
5535
5535
  export const CampaignReferenceCampaignTypeV3 = {
5536
5536
  Manager: 'MANAGER',
5537
5537
  SourceOwner: 'SOURCE_OWNER',
5538
- Search: 'SEARCH'
5538
+ Search: 'SEARCH',
5539
+ RoleComposition: 'ROLE_COMPOSITION',
5540
+ MachineAccount: 'MACHINE_ACCOUNT'
5539
5541
  } as const;
5540
5542
 
5541
5543
  export type CampaignReferenceCampaignTypeV3 = typeof CampaignReferenceCampaignTypeV3[keyof typeof CampaignReferenceCampaignTypeV3];
@@ -18697,11 +18699,11 @@ export interface Reviewer {
18697
18699
  */
18698
18700
  'name'?: string;
18699
18701
  /**
18700
- * The email of the reviewing identity.
18702
+ * The email of the reviewing identity. This is only applicable to reviewers of the `IDENTITY` type.
18701
18703
  * @type {string}
18702
18704
  * @memberof Reviewer
18703
18705
  */
18704
- 'email'?: string;
18706
+ 'email'?: string | null;
18705
18707
  /**
18706
18708
  * The type of the reviewing identity.
18707
18709
  * @type {string}
@@ -18723,7 +18725,8 @@ export interface Reviewer {
18723
18725
  }
18724
18726
 
18725
18727
  export const ReviewerTypeV3 = {
18726
- Identity: 'IDENTITY'
18728
+ Identity: 'IDENTITY',
18729
+ GovernanceGroup: 'GOVERNANCE_GROUP'
18727
18730
  } as const;
18728
18731
 
18729
18732
  export type ReviewerTypeV3 = typeof ReviewerTypeV3[keyof typeof ReviewerTypeV3];
@@ -25546,19 +25549,19 @@ export interface WorkflowLibraryTrigger {
25546
25549
  */
25547
25550
  'type'?: WorkflowLibraryTriggerTypeV3;
25548
25551
  /**
25549
- *
25552
+ * Whether the trigger is deprecated.
25550
25553
  * @type {boolean}
25551
25554
  * @memberof WorkflowLibraryTrigger
25552
25555
  */
25553
25556
  'deprecated'?: boolean;
25554
25557
  /**
25555
- *
25558
+ * Date the trigger was deprecated, if applicable.
25556
25559
  * @type {string}
25557
25560
  * @memberof WorkflowLibraryTrigger
25558
25561
  */
25559
25562
  'deprecatedBy'?: string;
25560
25563
  /**
25561
- *
25564
+ * Whether the trigger can be simulated.
25562
25565
  * @type {boolean}
25563
25566
  * @memberof WorkflowLibraryTrigger
25564
25567
  */
@@ -25604,7 +25607,8 @@ export interface WorkflowLibraryTrigger {
25604
25607
  export const WorkflowLibraryTriggerTypeV3 = {
25605
25608
  Event: 'EVENT',
25606
25609
  Scheduled: 'SCHEDULED',
25607
- External: 'EXTERNAL'
25610
+ External: 'EXTERNAL',
25611
+ AccessRequestTrigger: 'AccessRequestTrigger'
25608
25612
  } as const;
25609
25613
 
25610
25614
  export type WorkflowLibraryTriggerTypeV3 = typeof WorkflowLibraryTriggerTypeV3[keyof typeof WorkflowLibraryTriggerTypeV3];
@@ -64555,7 +64559,7 @@ export const WorkflowsApiAxiosParamCreator = function (configuration?: Configura
64555
64559
  * @summary List workflow library triggers
64556
64560
  * @param {number} [limit] Max number of results to return. See [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters) for more information.
64557
64561
  * @param {number} [offset] Offset into the full result set. Usually specified with *limit* to paginate through the results. See [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters) for more information.
64558
- * @param {string} [filters] Filter results using the standard syntax described in [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters#filtering-results) Filtering is supported for the following fields and operators: **id**: *eq*
64562
+ * @param {string} [filters] Filter results using the standard syntax described in [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters#filtering-results) Filtering is supported for the following fields and operators: **id**: *eq* **name**: *eq* **type**: *eq*
64559
64563
  * @param {*} [axiosOptions] Override http request option.
64560
64564
  * @throws {RequiredError}
64561
64565
  */
@@ -65034,7 +65038,7 @@ export const WorkflowsApiFp = function(configuration?: Configuration) {
65034
65038
  * @summary List workflow library triggers
65035
65039
  * @param {number} [limit] Max number of results to return. See [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters) for more information.
65036
65040
  * @param {number} [offset] Offset into the full result set. Usually specified with *limit* to paginate through the results. See [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters) for more information.
65037
- * @param {string} [filters] Filter results using the standard syntax described in [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters#filtering-results) Filtering is supported for the following fields and operators: **id**: *eq*
65041
+ * @param {string} [filters] Filter results using the standard syntax described in [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters#filtering-results) Filtering is supported for the following fields and operators: **id**: *eq* **name**: *eq* **type**: *eq*
65038
65042
  * @param {*} [axiosOptions] Override http request option.
65039
65043
  * @throws {RequiredError}
65040
65044
  */
@@ -65540,7 +65544,7 @@ export interface WorkflowsApiListWorkflowLibraryTriggersRequest {
65540
65544
  readonly offset?: number
65541
65545
 
65542
65546
  /**
65543
- * Filter results using the standard syntax described in [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters#filtering-results) Filtering is supported for the following fields and operators: **id**: *eq*
65547
+ * Filter results using the standard syntax described in [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters#filtering-results) Filtering is supported for the following fields and operators: **id**: *eq* **name**: *eq* **type**: *eq*
65544
65548
  * @type {string}
65545
65549
  * @memberof WorkflowsApiListWorkflowLibraryTriggers
65546
65550
  */
package/v3/common.ts CHANGED
@@ -146,14 +146,14 @@ export const toPathString = function (url: URL) {
146
146
  export const createRequestFunction = function (axiosArgs: RequestArgs, globalAxios: AxiosInstance, BASE_PATH: string, configuration?: Configuration) {
147
147
  return <T = unknown, R = AxiosResponse<T>>(axios: AxiosInstance = globalAxios, basePath: string = BASE_PATH) => {
148
148
  axiosRetry(axios, configuration.retriesConfig)
149
- let userAgent = `SailPoint-SDK-TypeScript/1.8.20`;
149
+ let userAgent = `SailPoint-SDK-TypeScript/1.8.21`;
150
150
  if (configuration?.consumerIdentifier && configuration?.consumerVersion) {
151
151
  userAgent += ` (${configuration.consumerIdentifier}/${configuration.consumerVersion})`;
152
152
  }
153
153
  userAgent += ` (${process.platform}; ${process.arch}) Node/${process.versions.node} (openapi-generator/7.12.0)`;
154
154
  const headers = {
155
155
  ...axiosArgs.axiosOptions.headers,
156
- ...{'X-SailPoint-SDK':'typescript-1.8.20'},
156
+ ...{'X-SailPoint-SDK':'typescript-1.8.21'},
157
157
  ...{'User-Agent': userAgent},
158
158
  }
159
159
 
package/v3/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "sailpoint-sdk",
3
- "version": "1.8.20",
3
+ "version": "1.8.21",
4
4
  "description": "OpenAPI client for sailpoint-sdk",
5
5
  "author": "OpenAPI-Generator Contributors",
6
6
  "repository": {