sailpoint-api-client 1.8.13 → 1.8.15

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.
@@ -250,12 +250,12 @@ var createRequestFunction = function (axiosArgs, globalAxios, BASE_PATH, configu
250
250
  if (axios === void 0) { axios = globalAxios; }
251
251
  if (basePath === void 0) { basePath = BASE_PATH; }
252
252
  (0, axios_retry_1.default)(axios, configuration.retriesConfig);
253
- var userAgent = "SailPoint-SDK-TypeScript/1.8.13";
253
+ var userAgent = "SailPoint-SDK-TypeScript/1.8.15";
254
254
  if ((configuration === null || configuration === void 0 ? void 0 : configuration.consumerIdentifier) && (configuration === null || configuration === void 0 ? void 0 : configuration.consumerVersion)) {
255
255
  userAgent += " (".concat(configuration.consumerIdentifier, "/").concat(configuration.consumerVersion, ")");
256
256
  }
257
257
  userAgent += " (".concat(process.platform, "; ").concat(process.arch, ") Node/").concat(process.versions.node, " (openapi-generator/7.12.0)");
258
- var headers = __assign(__assign(__assign({}, axiosArgs.axiosOptions.headers), { 'X-SailPoint-SDK': 'typescript-1.8.13' }), { 'User-Agent': userAgent });
258
+ var headers = __assign(__assign(__assign({}, axiosArgs.axiosOptions.headers), { 'X-SailPoint-SDK': 'typescript-1.8.15' }), { 'User-Agent': userAgent });
259
259
  if (!configuration.experimental && ("X-SailPoint-Experimental" in headers)) {
260
260
  throw new Error("You are using Experimental APIs. Set configuration.experimental = True to enable these APIs in the SDK.");
261
261
  }
package/dist/v3/common.js CHANGED
@@ -250,12 +250,12 @@ var createRequestFunction = function (axiosArgs, globalAxios, BASE_PATH, configu
250
250
  if (axios === void 0) { axios = globalAxios; }
251
251
  if (basePath === void 0) { basePath = BASE_PATH; }
252
252
  (0, axios_retry_1.default)(axios, configuration.retriesConfig);
253
- var userAgent = "SailPoint-SDK-TypeScript/1.8.13";
253
+ var userAgent = "SailPoint-SDK-TypeScript/1.8.15";
254
254
  if ((configuration === null || configuration === void 0 ? void 0 : configuration.consumerIdentifier) && (configuration === null || configuration === void 0 ? void 0 : configuration.consumerVersion)) {
255
255
  userAgent += " (".concat(configuration.consumerIdentifier, "/").concat(configuration.consumerVersion, ")");
256
256
  }
257
257
  userAgent += " (".concat(process.platform, "; ").concat(process.arch, ") Node/").concat(process.versions.node, " (openapi-generator/7.12.0)");
258
- var headers = __assign(__assign(__assign({}, axiosArgs.axiosOptions.headers), { 'X-SailPoint-SDK': 'typescript-1.8.13' }), { 'User-Agent': userAgent });
258
+ var headers = __assign(__assign(__assign({}, axiosArgs.axiosOptions.headers), { 'X-SailPoint-SDK': 'typescript-1.8.15' }), { 'User-Agent': userAgent });
259
259
  if (!configuration.experimental && ("X-SailPoint-Experimental" in headers)) {
260
260
  throw new Error("You are using Experimental APIs. Set configuration.experimental = True to enable these APIs in the SDK.");
261
261
  }
package/nerm/README.md CHANGED
@@ -1,4 +1,4 @@
1
- ## sailpoint-nerm-sdk@1.8.13
1
+ ## sailpoint-nerm-sdk@1.8.15
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-nerm-sdk@1.8.13 --save
39
+ npm install sailpoint-nerm-sdk@1.8.15 --save
40
40
  ```
41
41
 
42
42
  _unPublished (not recommended):_
package/nerm/common.ts CHANGED
@@ -146,7 +146,7 @@ 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.13`;
149
+ let userAgent = `SailPoint-SDK-TypeScript/1.8.15`;
150
150
  if (configuration?.consumerIdentifier && configuration?.consumerVersion) {
151
151
  userAgent += ` (${configuration.consumerIdentifier}/${configuration.consumerVersion})`;
152
152
  }
@@ -154,7 +154,7 @@ export const createRequestFunction = function (axiosArgs: RequestArgs, globalAxi
154
154
  const headers = {
155
155
  ...{'Accept': 'application/json'},
156
156
  ...axiosArgs.axiosOptions.headers,
157
- ...{'X-SailPoint-SDK':'typescript-1.8.13'},
157
+ ...{'X-SailPoint-SDK':'typescript-1.8.15'},
158
158
  ...{'User-Agent': userAgent},
159
159
  }
160
160
 
package/nerm/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "sailpoint-nerm-sdk",
3
- "version": "1.8.13",
3
+ "version": "1.8.15",
4
4
  "description": "OpenAPI client for sailpoint-nerm-sdk",
5
5
  "author": "OpenAPI-Generator Contributors",
6
6
  "repository": {
@@ -1,4 +1,4 @@
1
- ## sailpoint-nerm-sdk@1.8.13
1
+ ## sailpoint-nerm-sdk@1.8.15
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-nerm-sdk@1.8.13 --save
39
+ npm install sailpoint-nerm-sdk@1.8.15 --save
40
40
  ```
41
41
 
42
42
  _unPublished (not recommended):_
@@ -146,7 +146,7 @@ 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.13`;
149
+ let userAgent = `SailPoint-SDK-TypeScript/1.8.15`;
150
150
  if (configuration?.consumerIdentifier && configuration?.consumerVersion) {
151
151
  userAgent += ` (${configuration.consumerIdentifier}/${configuration.consumerVersion})`;
152
152
  }
@@ -154,7 +154,7 @@ export const createRequestFunction = function (axiosArgs: RequestArgs, globalAxi
154
154
  const headers = {
155
155
  ...{'Accept': 'application/json'},
156
156
  ...axiosArgs.axiosOptions.headers,
157
- ...{'X-SailPoint-SDK':'typescript-1.8.13'},
157
+ ...{'X-SailPoint-SDK':'typescript-1.8.15'},
158
158
  ...{'User-Agent': userAgent},
159
159
  }
160
160
 
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "sailpoint-nerm-sdk",
3
- "version": "1.8.13",
3
+ "version": "1.8.15",
4
4
  "description": "OpenAPI client for sailpoint-nerm-sdk",
5
5
  "author": "OpenAPI-Generator Contributors",
6
6
  "repository": {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "sailpoint-api-client",
3
- "version": "1.8.13",
3
+ "version": "1.8.15",
4
4
  "description": "Official library for using the SailPoint API",
5
5
  "author": "SailPoint DevOps",
6
6
  "repository": {
package/v2024/README.md CHANGED
@@ -1,4 +1,4 @@
1
- ## sailpoint-sdk@1.8.13
1
+ ## sailpoint-sdk@1.8.15
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.13 --save
39
+ npm install sailpoint-sdk@1.8.15 --save
40
40
  ```
41
41
 
42
42
  _unPublished (not recommended):_
package/v2024/api.ts CHANGED
@@ -88780,7 +88780,7 @@ export const MachineAccountClassifyV2024ApiAxiosParamCreator = function (configu
88780
88780
  return {
88781
88781
  /**
88782
88782
  * Use this API to classify a single machine account. A token with API, ORG_ADMIN, SOURCE_ADMIN, or SOURCE_SUBADMIN authority is required to call this API.
88783
- * @summary Classify a Single Machine Account
88783
+ * @summary Classify single machine account
88784
88784
  * @param {string} id Account ID.
88785
88785
  * @param {SendClassifyMachineAccountClassificationModeV2024} [classificationMode] Specifies how the accounts should be classified. default - uses criteria to classify account as machine or human, excludes accounts that were manually classified. ignoreManual - like default, but includes accounts that were manually classified. forceMachine - forces account to be classified as machine. forceHuman - forces account to be classified as human.
88786
88786
  * @param {*} [axiosOptions] Override http request option.
@@ -88841,7 +88841,7 @@ export const MachineAccountClassifyV2024ApiFp = function(configuration?: Configu
88841
88841
  return {
88842
88842
  /**
88843
88843
  * Use this API to classify a single machine account. A token with API, ORG_ADMIN, SOURCE_ADMIN, or SOURCE_SUBADMIN authority is required to call this API.
88844
- * @summary Classify a Single Machine Account
88844
+ * @summary Classify single machine account
88845
88845
  * @param {string} id Account ID.
88846
88846
  * @param {SendClassifyMachineAccountClassificationModeV2024} [classificationMode] Specifies how the accounts should be classified. default - uses criteria to classify account as machine or human, excludes accounts that were manually classified. ignoreManual - like default, but includes accounts that were manually classified. forceMachine - forces account to be classified as machine. forceHuman - forces account to be classified as human.
88847
88847
  * @param {*} [axiosOptions] Override http request option.
@@ -88865,7 +88865,7 @@ export const MachineAccountClassifyV2024ApiFactory = function (configuration?: C
88865
88865
  return {
88866
88866
  /**
88867
88867
  * Use this API to classify a single machine account. A token with API, ORG_ADMIN, SOURCE_ADMIN, or SOURCE_SUBADMIN authority is required to call this API.
88868
- * @summary Classify a Single Machine Account
88868
+ * @summary Classify single machine account
88869
88869
  * @param {MachineAccountClassifyV2024ApiSendClassifyMachineAccountRequest} requestParameters Request parameters.
88870
88870
  * @param {*} [axiosOptions] Override http request option.
88871
88871
  * @throws {RequiredError}
@@ -88906,7 +88906,7 @@ export interface MachineAccountClassifyV2024ApiSendClassifyMachineAccountRequest
88906
88906
  export class MachineAccountClassifyV2024Api extends BaseAPI {
88907
88907
  /**
88908
88908
  * Use this API to classify a single machine account. A token with API, ORG_ADMIN, SOURCE_ADMIN, or SOURCE_SUBADMIN authority is required to call this API.
88909
- * @summary Classify a Single Machine Account
88909
+ * @summary Classify single machine account
88910
88910
  * @param {MachineAccountClassifyV2024ApiSendClassifyMachineAccountRequest} requestParameters Request parameters.
88911
88911
  * @param {*} [axiosOptions] Override http request option.
88912
88912
  * @throws {RequiredError}
@@ -89091,7 +89091,7 @@ export const MachineAccountMappingsV2024ApiAxiosParamCreator = function (configu
89091
89091
  },
89092
89092
  /**
89093
89093
  * Use this API to update Machine Account Attribute Mapping for a Source. A token with ORG_ADMIN, SOURCE_ADMIN, or SOURCE_SUBADMIN authority is required to call this API.
89094
- * @summary Update Source\'s Machine Account Mappings
89094
+ * @summary Update source\'s machine account mappings
89095
89095
  * @param {string} id Source ID.
89096
89096
  * @param {AttributeMappingsV2024} attributeMappingsV2024
89097
89097
  * @param {*} [axiosOptions] Override http request option.
@@ -89195,7 +89195,7 @@ export const MachineAccountMappingsV2024ApiFp = function(configuration?: Configu
89195
89195
  },
89196
89196
  /**
89197
89197
  * Use this API to update Machine Account Attribute Mapping for a Source. A token with ORG_ADMIN, SOURCE_ADMIN, or SOURCE_SUBADMIN authority is required to call this API.
89198
- * @summary Update Source\'s Machine Account Mappings
89198
+ * @summary Update source\'s machine account mappings
89199
89199
  * @param {string} id Source ID.
89200
89200
  * @param {AttributeMappingsV2024} attributeMappingsV2024
89201
89201
  * @param {*} [axiosOptions] Override http request option.
@@ -89249,7 +89249,7 @@ export const MachineAccountMappingsV2024ApiFactory = function (configuration?: C
89249
89249
  },
89250
89250
  /**
89251
89251
  * Use this API to update Machine Account Attribute Mapping for a Source. A token with ORG_ADMIN, SOURCE_ADMIN, or SOURCE_SUBADMIN authority is required to call this API.
89252
- * @summary Update Source\'s Machine Account Mappings
89252
+ * @summary Update source\'s machine account mappings
89253
89253
  * @param {MachineAccountMappingsV2024ApiSetMachineAccountMappingsRequest} requestParameters Request parameters.
89254
89254
  * @param {*} [axiosOptions] Override http request option.
89255
89255
  * @throws {RequiredError}
@@ -89389,7 +89389,7 @@ export class MachineAccountMappingsV2024Api extends BaseAPI {
89389
89389
 
89390
89390
  /**
89391
89391
  * Use this API to update Machine Account Attribute Mapping for a Source. A token with ORG_ADMIN, SOURCE_ADMIN, or SOURCE_SUBADMIN authority is required to call this API.
89392
- * @summary Update Source\'s Machine Account Mappings
89392
+ * @summary Update source\'s machine account mappings
89393
89393
  * @param {MachineAccountMappingsV2024ApiSetMachineAccountMappingsRequest} requestParameters Request parameters.
89394
89394
  * @param {*} [axiosOptions] Override http request option.
89395
89395
  * @throws {RequiredError}
@@ -89410,7 +89410,7 @@ export const MachineAccountsV2024ApiAxiosParamCreator = function (configuration?
89410
89410
  return {
89411
89411
  /**
89412
89412
  * Use this API to return the details for a single machine account by its ID.
89413
- * @summary Machine account details
89413
+ * @summary Get machine account details
89414
89414
  * @param {string} id Machine Account ID.
89415
89415
  * @param {string} [xSailPointExperimental] Use this header to enable this experimental API.
89416
89416
  * @param {*} [axiosOptions] Override http request option.
@@ -89460,7 +89460,7 @@ export const MachineAccountsV2024ApiAxiosParamCreator = function (configuration?
89460
89460
  },
89461
89461
  /**
89462
89462
  * This returns a list of machine accounts.
89463
- * @summary Machine accounts list
89463
+ * @summary List machine accounts
89464
89464
  * @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.
89465
89465
  * @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.
89466
89466
  * @param {boolean} [count] If *true* it will populate the *X-Total-Count* response header with the number of results that would be returned if *limit* and *offset* were ignored. Since requesting a total count can have a performance impact, it is recommended not to send **count&#x3D;true** if that value will not be used. See [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters) for more information.
@@ -89531,7 +89531,7 @@ export const MachineAccountsV2024ApiAxiosParamCreator = function (configuration?
89531
89531
  },
89532
89532
  /**
89533
89533
  * Use this API to update machine accounts details.
89534
- * @summary Update a machine account
89534
+ * @summary Update machine account details
89535
89535
  * @param {string} id Machine Account ID.
89536
89536
  * @param {Array<object>} requestBody A JSON of updated values [JSON Patch](https://tools.ietf.org/html/rfc6902) standard. The following fields are patchable: * description * ownerIdentity * subType * accessType * environment * attributes * classificationMethod * manuallyEdited * nativeIdentity * uuid * source * manuallyCorrelated * enabled * locked * hasEntitlements * connectorAttributes
89537
89537
  * @param {string} [xSailPointExperimental] Use this header to enable this experimental API.
@@ -89601,7 +89601,7 @@ export const MachineAccountsV2024ApiFp = function(configuration?: Configuration)
89601
89601
  return {
89602
89602
  /**
89603
89603
  * Use this API to return the details for a single machine account by its ID.
89604
- * @summary Machine account details
89604
+ * @summary Get machine account details
89605
89605
  * @param {string} id Machine Account ID.
89606
89606
  * @param {string} [xSailPointExperimental] Use this header to enable this experimental API.
89607
89607
  * @param {*} [axiosOptions] Override http request option.
@@ -89615,7 +89615,7 @@ export const MachineAccountsV2024ApiFp = function(configuration?: Configuration)
89615
89615
  },
89616
89616
  /**
89617
89617
  * This returns a list of machine accounts.
89618
- * @summary Machine accounts list
89618
+ * @summary List machine accounts
89619
89619
  * @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.
89620
89620
  * @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.
89621
89621
  * @param {boolean} [count] If *true* it will populate the *X-Total-Count* response header with the number of results that would be returned if *limit* and *offset* were ignored. Since requesting a total count can have a performance impact, it is recommended not to send **count&#x3D;true** if that value will not be used. See [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters) for more information.
@@ -89633,7 +89633,7 @@ export const MachineAccountsV2024ApiFp = function(configuration?: Configuration)
89633
89633
  },
89634
89634
  /**
89635
89635
  * Use this API to update machine accounts details.
89636
- * @summary Update a machine account
89636
+ * @summary Update machine account details
89637
89637
  * @param {string} id Machine Account ID.
89638
89638
  * @param {Array<object>} requestBody A JSON of updated values [JSON Patch](https://tools.ietf.org/html/rfc6902) standard. The following fields are patchable: * description * ownerIdentity * subType * accessType * environment * attributes * classificationMethod * manuallyEdited * nativeIdentity * uuid * source * manuallyCorrelated * enabled * locked * hasEntitlements * connectorAttributes
89639
89639
  * @param {string} [xSailPointExperimental] Use this header to enable this experimental API.
@@ -89658,7 +89658,7 @@ export const MachineAccountsV2024ApiFactory = function (configuration?: Configur
89658
89658
  return {
89659
89659
  /**
89660
89660
  * Use this API to return the details for a single machine account by its ID.
89661
- * @summary Machine account details
89661
+ * @summary Get machine account details
89662
89662
  * @param {MachineAccountsV2024ApiGetMachineAccountRequest} requestParameters Request parameters.
89663
89663
  * @param {*} [axiosOptions] Override http request option.
89664
89664
  * @throws {RequiredError}
@@ -89668,7 +89668,7 @@ export const MachineAccountsV2024ApiFactory = function (configuration?: Configur
89668
89668
  },
89669
89669
  /**
89670
89670
  * This returns a list of machine accounts.
89671
- * @summary Machine accounts list
89671
+ * @summary List machine accounts
89672
89672
  * @param {MachineAccountsV2024ApiListMachineAccountsRequest} requestParameters Request parameters.
89673
89673
  * @param {*} [axiosOptions] Override http request option.
89674
89674
  * @throws {RequiredError}
@@ -89678,7 +89678,7 @@ export const MachineAccountsV2024ApiFactory = function (configuration?: Configur
89678
89678
  },
89679
89679
  /**
89680
89680
  * Use this API to update machine accounts details.
89681
- * @summary Update a machine account
89681
+ * @summary Update machine account details
89682
89682
  * @param {MachineAccountsV2024ApiUpdateMachineAccountRequest} requestParameters Request parameters.
89683
89683
  * @param {*} [axiosOptions] Override http request option.
89684
89684
  * @throws {RequiredError}
@@ -89796,7 +89796,7 @@ export interface MachineAccountsV2024ApiUpdateMachineAccountRequest {
89796
89796
  export class MachineAccountsV2024Api extends BaseAPI {
89797
89797
  /**
89798
89798
  * Use this API to return the details for a single machine account by its ID.
89799
- * @summary Machine account details
89799
+ * @summary Get machine account details
89800
89800
  * @param {MachineAccountsV2024ApiGetMachineAccountRequest} requestParameters Request parameters.
89801
89801
  * @param {*} [axiosOptions] Override http request option.
89802
89802
  * @throws {RequiredError}
@@ -89808,7 +89808,7 @@ export class MachineAccountsV2024Api extends BaseAPI {
89808
89808
 
89809
89809
  /**
89810
89810
  * This returns a list of machine accounts.
89811
- * @summary Machine accounts list
89811
+ * @summary List machine accounts
89812
89812
  * @param {MachineAccountsV2024ApiListMachineAccountsRequest} requestParameters Request parameters.
89813
89813
  * @param {*} [axiosOptions] Override http request option.
89814
89814
  * @throws {RequiredError}
@@ -89820,7 +89820,7 @@ export class MachineAccountsV2024Api extends BaseAPI {
89820
89820
 
89821
89821
  /**
89822
89822
  * Use this API to update machine accounts details.
89823
- * @summary Update a machine account
89823
+ * @summary Update machine account details
89824
89824
  * @param {MachineAccountsV2024ApiUpdateMachineAccountRequest} requestParameters Request parameters.
89825
89825
  * @param {*} [axiosOptions] Override http request option.
89826
89826
  * @throws {RequiredError}
@@ -90179,7 +90179,7 @@ export const MachineIdentitiesV2024ApiAxiosParamCreator = function (configuratio
90179
90179
  return {
90180
90180
  /**
90181
90181
  * Use this API to create a machine identity. The maximum supported length for the description field is 2000 characters.
90182
- * @summary Create machine identities
90182
+ * @summary Create machine identity
90183
90183
  * @param {MachineIdentityV2024} machineIdentityV2024
90184
90184
  * @param {string} [xSailPointExperimental] Use this header to enable this experimental API.
90185
90185
  * @param {*} [axiosOptions] Override http request option.
@@ -90289,7 +90289,7 @@ export const MachineIdentitiesV2024ApiAxiosParamCreator = function (configuratio
90289
90289
  },
90290
90290
  /**
90291
90291
  * This API returns a single machine identity using the Machine Identity ID.
90292
- * @summary Machine identity details
90292
+ * @summary Get machine identity details
90293
90293
  * @param {string} id Machine Identity ID
90294
90294
  * @param {string} [xSailPointExperimental] Use this header to enable this experimental API.
90295
90295
  * @param {*} [axiosOptions] Override http request option.
@@ -90410,7 +90410,7 @@ export const MachineIdentitiesV2024ApiAxiosParamCreator = function (configuratio
90410
90410
  },
90411
90411
  /**
90412
90412
  * Use this API to update machine identity details.
90413
- * @summary Update a machine identity
90413
+ * @summary Update machine identity details
90414
90414
  * @param {string} id Machine Identity ID.
90415
90415
  * @param {Array<object>} requestBody A JSON of updated values [JSON Patch](https://tools.ietf.org/html/rfc6902) standard.
90416
90416
  * @param {string} [xSailPointExperimental] Use this header to enable this experimental API.
@@ -90480,7 +90480,7 @@ export const MachineIdentitiesV2024ApiFp = function(configuration?: Configuratio
90480
90480
  return {
90481
90481
  /**
90482
90482
  * Use this API to create a machine identity. The maximum supported length for the description field is 2000 characters.
90483
- * @summary Create machine identities
90483
+ * @summary Create machine identity
90484
90484
  * @param {MachineIdentityV2024} machineIdentityV2024
90485
90485
  * @param {string} [xSailPointExperimental] Use this header to enable this experimental API.
90486
90486
  * @param {*} [axiosOptions] Override http request option.
@@ -90508,7 +90508,7 @@ export const MachineIdentitiesV2024ApiFp = function(configuration?: Configuratio
90508
90508
  },
90509
90509
  /**
90510
90510
  * This API returns a single machine identity using the Machine Identity ID.
90511
- * @summary Machine identity details
90511
+ * @summary Get machine identity details
90512
90512
  * @param {string} id Machine Identity ID
90513
90513
  * @param {string} [xSailPointExperimental] Use this header to enable this experimental API.
90514
90514
  * @param {*} [axiosOptions] Override http request option.
@@ -90540,7 +90540,7 @@ export const MachineIdentitiesV2024ApiFp = function(configuration?: Configuratio
90540
90540
  },
90541
90541
  /**
90542
90542
  * Use this API to update machine identity details.
90543
- * @summary Update a machine identity
90543
+ * @summary Update machine identity details
90544
90544
  * @param {string} id Machine Identity ID.
90545
90545
  * @param {Array<object>} requestBody A JSON of updated values [JSON Patch](https://tools.ietf.org/html/rfc6902) standard.
90546
90546
  * @param {string} [xSailPointExperimental] Use this header to enable this experimental API.
@@ -90565,7 +90565,7 @@ export const MachineIdentitiesV2024ApiFactory = function (configuration?: Config
90565
90565
  return {
90566
90566
  /**
90567
90567
  * Use this API to create a machine identity. The maximum supported length for the description field is 2000 characters.
90568
- * @summary Create machine identities
90568
+ * @summary Create machine identity
90569
90569
  * @param {MachineIdentitiesV2024ApiCreateMachineIdentityRequest} requestParameters Request parameters.
90570
90570
  * @param {*} [axiosOptions] Override http request option.
90571
90571
  * @throws {RequiredError}
@@ -90585,7 +90585,7 @@ export const MachineIdentitiesV2024ApiFactory = function (configuration?: Config
90585
90585
  },
90586
90586
  /**
90587
90587
  * This API returns a single machine identity using the Machine Identity ID.
90588
- * @summary Machine identity details
90588
+ * @summary Get machine identity details
90589
90589
  * @param {MachineIdentitiesV2024ApiGetMachineIdentityRequest} requestParameters Request parameters.
90590
90590
  * @param {*} [axiosOptions] Override http request option.
90591
90591
  * @throws {RequiredError}
@@ -90605,7 +90605,7 @@ export const MachineIdentitiesV2024ApiFactory = function (configuration?: Config
90605
90605
  },
90606
90606
  /**
90607
90607
  * Use this API to update machine identity details.
90608
- * @summary Update a machine identity
90608
+ * @summary Update machine identity details
90609
90609
  * @param {MachineIdentitiesV2024ApiUpdateMachineIdentityRequest} requestParameters Request parameters.
90610
90610
  * @param {*} [axiosOptions] Override http request option.
90611
90611
  * @throws {RequiredError}
@@ -90765,7 +90765,7 @@ export interface MachineIdentitiesV2024ApiUpdateMachineIdentityRequest {
90765
90765
  export class MachineIdentitiesV2024Api extends BaseAPI {
90766
90766
  /**
90767
90767
  * Use this API to create a machine identity. The maximum supported length for the description field is 2000 characters.
90768
- * @summary Create machine identities
90768
+ * @summary Create machine identity
90769
90769
  * @param {MachineIdentitiesV2024ApiCreateMachineIdentityRequest} requestParameters Request parameters.
90770
90770
  * @param {*} [axiosOptions] Override http request option.
90771
90771
  * @throws {RequiredError}
@@ -90789,7 +90789,7 @@ export class MachineIdentitiesV2024Api extends BaseAPI {
90789
90789
 
90790
90790
  /**
90791
90791
  * This API returns a single machine identity using the Machine Identity ID.
90792
- * @summary Machine identity details
90792
+ * @summary Get machine identity details
90793
90793
  * @param {MachineIdentitiesV2024ApiGetMachineIdentityRequest} requestParameters Request parameters.
90794
90794
  * @param {*} [axiosOptions] Override http request option.
90795
90795
  * @throws {RequiredError}
@@ -90813,7 +90813,7 @@ export class MachineIdentitiesV2024Api extends BaseAPI {
90813
90813
 
90814
90814
  /**
90815
90815
  * Use this API to update machine identity details.
90816
- * @summary Update a machine identity
90816
+ * @summary Update machine identity details
90817
90817
  * @param {MachineIdentitiesV2024ApiUpdateMachineIdentityRequest} requestParameters Request parameters.
90818
90818
  * @param {*} [axiosOptions] Override http request option.
90819
90819
  * @throws {RequiredError}
package/v2024/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.13`;
149
+ let userAgent = `SailPoint-SDK-TypeScript/1.8.15`;
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.13'},
156
+ ...{'X-SailPoint-SDK':'typescript-1.8.15'},
157
157
  ...{'User-Agent': userAgent},
158
158
  }
159
159
 
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "sailpoint-sdk",
3
- "version": "1.8.13",
3
+ "version": "1.8.15",
4
4
  "description": "OpenAPI client for sailpoint-sdk",
5
5
  "author": "OpenAPI-Generator Contributors",
6
6
  "repository": {
package/v2025/README.md CHANGED
@@ -1,4 +1,4 @@
1
- ## sailpoint-sdk@1.8.13
1
+ ## sailpoint-sdk@1.8.15
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.13 --save
39
+ npm install sailpoint-sdk@1.8.15 --save
40
40
  ```
41
41
 
42
42
  _unPublished (not recommended):_