sailpoint-api-client 1.8.58 → 1.8.59
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 +36 -0
- package/beta/common.ts +2 -2
- package/beta/package.json +1 -1
- package/dist/beta/api.d.ts +36 -0
- package/dist/beta/api.js.map +1 -1
- package/dist/beta/common.js +2 -2
- package/dist/nerm/common.js +2 -2
- package/dist/nermv2025/common.js +2 -2
- package/dist/v2024/api.d.ts +36 -0
- package/dist/v2024/api.js.map +1 -1
- package/dist/v2024/common.js +2 -2
- package/dist/v2025/api.d.ts +60 -0
- package/dist/v2025/api.js +24 -0
- package/dist/v2025/api.js.map +1 -1
- package/dist/v2025/common.js +2 -2
- package/dist/v2026/api.d.ts +443 -176
- package/dist/v2026/api.js +694 -391
- package/dist/v2026/api.js.map +1 -1
- package/dist/v2026/common.js +2 -2
- package/dist/v3/api.d.ts +36 -0
- package/dist/v3/api.js.map +1 -1
- package/dist/v3/common.js +2 -2
- package/nerm/README.md +2 -2
- package/nerm/common.ts +2 -2
- package/nerm/package.json +1 -1
- package/nermv2025/README.md +2 -2
- package/nermv2025/common.ts +2 -2
- package/nermv2025/package.json +1 -1
- package/package.json +1 -1
- package/v2024/README.md +2 -2
- package/v2024/api.ts +36 -0
- package/v2024/common.ts +2 -2
- package/v2024/package.json +1 -1
- package/v2025/README.md +2 -2
- package/v2025/api.ts +60 -0
- package/v2025/common.ts +2 -2
- package/v2025/package.json +1 -1
- package/v2026/README.md +2 -2
- package/v2026/api.ts +790 -362
- package/v2026/common.ts +2 -2
- package/v2026/package.json +1 -1
- package/v3/README.md +2 -2
- package/v3/api.ts +36 -0
- package/v3/common.ts +2 -2
- package/v3/package.json +1 -1
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.
|
|
253
|
+
var userAgent = "SailPoint-SDK-TypeScript/1.8.59";
|
|
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.
|
|
258
|
+
var headers = __assign(__assign(__assign({}, axiosArgs.axiosOptions.headers), { 'X-SailPoint-SDK': 'typescript-1.8.59' }), { '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.
|
|
1
|
+
## sailpoint-nerm-sdk@1.8.59
|
|
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.
|
|
39
|
+
npm install sailpoint-nerm-sdk@1.8.59 --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.
|
|
149
|
+
let userAgent = `SailPoint-SDK-TypeScript/1.8.59`;
|
|
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.
|
|
157
|
+
...{'X-SailPoint-SDK':'typescript-1.8.59'},
|
|
158
158
|
...{'User-Agent': userAgent},
|
|
159
159
|
}
|
|
160
160
|
|
package/nerm/package.json
CHANGED
package/nermv2025/README.md
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
## sailpoint-nerm-sdk@1.8.
|
|
1
|
+
## sailpoint-nerm-sdk@1.8.59
|
|
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.
|
|
39
|
+
npm install sailpoint-nerm-sdk@1.8.59 --save
|
|
40
40
|
```
|
|
41
41
|
|
|
42
42
|
_unPublished (not recommended):_
|
package/nermv2025/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.
|
|
149
|
+
let userAgent = `SailPoint-SDK-TypeScript/1.8.59`;
|
|
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.
|
|
157
|
+
...{'X-SailPoint-SDK':'typescript-1.8.59'},
|
|
158
158
|
...{'User-Agent': userAgent},
|
|
159
159
|
}
|
|
160
160
|
|
package/nermv2025/package.json
CHANGED
package/package.json
CHANGED
package/v2024/README.md
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
## sailpoint-sdk@1.8.
|
|
1
|
+
## sailpoint-sdk@1.8.59
|
|
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.
|
|
39
|
+
npm install sailpoint-sdk@1.8.59 --save
|
|
40
40
|
```
|
|
41
41
|
|
|
42
42
|
_unPublished (not recommended):_
|
package/v2024/api.ts
CHANGED
|
@@ -11366,6 +11366,24 @@ export interface CompletedApprovalV2024 {
|
|
|
11366
11366
|
* @memberof CompletedApprovalV2024
|
|
11367
11367
|
*/
|
|
11368
11368
|
'currentRemoveDate'?: string | null;
|
|
11369
|
+
/**
|
|
11370
|
+
* The date the role or access profile or entitlement is/will assigned to the specified identity.
|
|
11371
|
+
* @type {string}
|
|
11372
|
+
* @memberof CompletedApprovalV2024
|
|
11373
|
+
*/
|
|
11374
|
+
'startDate'?: string;
|
|
11375
|
+
/**
|
|
11376
|
+
* If true, then the request is to change the start date or sunrise date.
|
|
11377
|
+
* @type {boolean}
|
|
11378
|
+
* @memberof CompletedApprovalV2024
|
|
11379
|
+
*/
|
|
11380
|
+
'startUpdateRequested'?: boolean;
|
|
11381
|
+
/**
|
|
11382
|
+
* The start date or sunrise date that was assigned at the time of the request.
|
|
11383
|
+
* @type {string}
|
|
11384
|
+
* @memberof CompletedApprovalV2024
|
|
11385
|
+
*/
|
|
11386
|
+
'currentStartDate'?: string;
|
|
11369
11387
|
/**
|
|
11370
11388
|
*
|
|
11371
11389
|
* @type {SodViolationContextCheckCompletedV2024}
|
|
@@ -29075,6 +29093,24 @@ export interface PendingApprovalV2024 {
|
|
|
29075
29093
|
* @memberof PendingApprovalV2024
|
|
29076
29094
|
*/
|
|
29077
29095
|
'currentRemoveDate'?: string;
|
|
29096
|
+
/**
|
|
29097
|
+
* The date the role or access profile or entitlement is/will assigned to the specified identity.
|
|
29098
|
+
* @type {string}
|
|
29099
|
+
* @memberof PendingApprovalV2024
|
|
29100
|
+
*/
|
|
29101
|
+
'startDate'?: string;
|
|
29102
|
+
/**
|
|
29103
|
+
* If true, then the request is to change the start date or sunrise date.
|
|
29104
|
+
* @type {boolean}
|
|
29105
|
+
* @memberof PendingApprovalV2024
|
|
29106
|
+
*/
|
|
29107
|
+
'startUpdateRequested'?: boolean;
|
|
29108
|
+
/**
|
|
29109
|
+
* The start date or sunrise date that was assigned at the time of the request.
|
|
29110
|
+
* @type {string}
|
|
29111
|
+
* @memberof PendingApprovalV2024
|
|
29112
|
+
*/
|
|
29113
|
+
'currentStartDate'?: string;
|
|
29078
29114
|
/**
|
|
29079
29115
|
*
|
|
29080
29116
|
* @type {SodViolationContextCheckCompletedV2024}
|
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.
|
|
149
|
+
let userAgent = `SailPoint-SDK-TypeScript/1.8.59`;
|
|
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.
|
|
156
|
+
...{'X-SailPoint-SDK':'typescript-1.8.59'},
|
|
157
157
|
...{'User-Agent': userAgent},
|
|
158
158
|
}
|
|
159
159
|
|
package/v2024/package.json
CHANGED
package/v2025/README.md
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
## sailpoint-sdk@1.8.
|
|
1
|
+
## sailpoint-sdk@1.8.59
|
|
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.
|
|
39
|
+
npm install sailpoint-sdk@1.8.59 --save
|
|
40
40
|
```
|
|
41
41
|
|
|
42
42
|
_unPublished (not recommended):_
|
package/v2025/api.ts
CHANGED
|
@@ -13910,6 +13910,24 @@ export interface CompletedApprovalV2025 {
|
|
|
13910
13910
|
* @memberof CompletedApprovalV2025
|
|
13911
13911
|
*/
|
|
13912
13912
|
'currentRemoveDate'?: string | null;
|
|
13913
|
+
/**
|
|
13914
|
+
* The date the role or access profile or entitlement is/will assigned to the specified identity.
|
|
13915
|
+
* @type {string}
|
|
13916
|
+
* @memberof CompletedApprovalV2025
|
|
13917
|
+
*/
|
|
13918
|
+
'startDate'?: string;
|
|
13919
|
+
/**
|
|
13920
|
+
* If true, then the request is to change the start date or sunrise date.
|
|
13921
|
+
* @type {boolean}
|
|
13922
|
+
* @memberof CompletedApprovalV2025
|
|
13923
|
+
*/
|
|
13924
|
+
'startUpdateRequested'?: boolean;
|
|
13925
|
+
/**
|
|
13926
|
+
* The start date or sunrise date that was assigned at the time of the request.
|
|
13927
|
+
* @type {string}
|
|
13928
|
+
* @memberof CompletedApprovalV2025
|
|
13929
|
+
*/
|
|
13930
|
+
'currentStartDate'?: string;
|
|
13913
13931
|
/**
|
|
13914
13932
|
*
|
|
13915
13933
|
* @type {SodViolationContextCheckCompletedV2025}
|
|
@@ -34295,6 +34313,24 @@ export interface PendingApprovalV2025 {
|
|
|
34295
34313
|
* @memberof PendingApprovalV2025
|
|
34296
34314
|
*/
|
|
34297
34315
|
'currentRemoveDate'?: string;
|
|
34316
|
+
/**
|
|
34317
|
+
* The date the role or access profile or entitlement is/will assigned to the specified identity.
|
|
34318
|
+
* @type {string}
|
|
34319
|
+
* @memberof PendingApprovalV2025
|
|
34320
|
+
*/
|
|
34321
|
+
'startDate'?: string;
|
|
34322
|
+
/**
|
|
34323
|
+
* If true, then the request is to change the start date or sunrise date.
|
|
34324
|
+
* @type {boolean}
|
|
34325
|
+
* @memberof PendingApprovalV2025
|
|
34326
|
+
*/
|
|
34327
|
+
'startUpdateRequested'?: boolean;
|
|
34328
|
+
/**
|
|
34329
|
+
* The start date or sunrise date that was assigned at the time of the request.
|
|
34330
|
+
* @type {string}
|
|
34331
|
+
* @memberof PendingApprovalV2025
|
|
34332
|
+
*/
|
|
34333
|
+
'currentStartDate'?: string;
|
|
34298
34334
|
/**
|
|
34299
34335
|
*
|
|
34300
34336
|
* @type {SodViolationContextCheckCompletedV2025}
|
|
@@ -102444,6 +102480,7 @@ export const MachineAccountsV2025ApiAxiosParamCreator = function (configuration?
|
|
|
102444
102480
|
* @param {CreateMachineAccountSubtypeRequestV2025} createMachineAccountSubtypeRequestV2025
|
|
102445
102481
|
* @param {string} [xSailPointExperimental] Use this header to enable this experimental API.
|
|
102446
102482
|
* @param {*} [axiosOptions] Override http request option.
|
|
102483
|
+
* @deprecated
|
|
102447
102484
|
* @throws {RequiredError}
|
|
102448
102485
|
*/
|
|
102449
102486
|
createMachineAccountSubtype: async (sourceId: string, createMachineAccountSubtypeRequestV2025: CreateMachineAccountSubtypeRequestV2025, xSailPointExperimental?: string, axiosOptions: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
@@ -102504,6 +102541,7 @@ export const MachineAccountsV2025ApiAxiosParamCreator = function (configuration?
|
|
|
102504
102541
|
* @param {string} technicalName The technical name of the subtype.
|
|
102505
102542
|
* @param {string} [xSailPointExperimental] Use this header to enable this experimental API.
|
|
102506
102543
|
* @param {*} [axiosOptions] Override http request option.
|
|
102544
|
+
* @deprecated
|
|
102507
102545
|
* @throws {RequiredError}
|
|
102508
102546
|
*/
|
|
102509
102547
|
deleteMachineAccountSubtype: async (sourceId: string, technicalName: string, xSailPointExperimental?: string, axiosOptions: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
@@ -102603,6 +102641,7 @@ export const MachineAccountsV2025ApiAxiosParamCreator = function (configuration?
|
|
|
102603
102641
|
* @param {string} subtypeId The ID of the machine account subtype.
|
|
102604
102642
|
* @param {string} [xSailPointExperimental] Use this header to enable this experimental API.
|
|
102605
102643
|
* @param {*} [axiosOptions] Override http request option.
|
|
102644
|
+
* @deprecated
|
|
102606
102645
|
* @throws {RequiredError}
|
|
102607
102646
|
*/
|
|
102608
102647
|
getMachineAccountSubtypeById: async (subtypeId: string, xSailPointExperimental?: string, axiosOptions: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
@@ -102658,6 +102697,7 @@ export const MachineAccountsV2025ApiAxiosParamCreator = function (configuration?
|
|
|
102658
102697
|
* @param {string} technicalName The technical name of the subtype.
|
|
102659
102698
|
* @param {string} [xSailPointExperimental] Use this header to enable this experimental API.
|
|
102660
102699
|
* @param {*} [axiosOptions] Override http request option.
|
|
102700
|
+
* @deprecated
|
|
102661
102701
|
* @throws {RequiredError}
|
|
102662
102702
|
*/
|
|
102663
102703
|
getMachineAccountSubtypeByTechnicalName: async (sourceId: string, technicalName: string, xSailPointExperimental?: string, axiosOptions: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
@@ -102720,6 +102760,7 @@ export const MachineAccountsV2025ApiAxiosParamCreator = function (configuration?
|
|
|
102720
102760
|
* @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.
|
|
102721
102761
|
* @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.
|
|
102722
102762
|
* @param {*} [axiosOptions] Override http request option.
|
|
102763
|
+
* @deprecated
|
|
102723
102764
|
* @throws {RequiredError}
|
|
102724
102765
|
*/
|
|
102725
102766
|
listMachineAccountSubtypes: async (sourceId: string, filters?: string, sorters?: string, xSailPointExperimental?: string, count?: boolean, limit?: number, offset?: number, axiosOptions: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
@@ -102859,6 +102900,7 @@ export const MachineAccountsV2025ApiAxiosParamCreator = function (configuration?
|
|
|
102859
102900
|
* @param {Array<object>} requestBody A JSON of updated values [JSON Patch](https://tools.ietf.org/html/rfc6902) standard.
|
|
102860
102901
|
* @param {string} [xSailPointExperimental] Use this header to enable this experimental API.
|
|
102861
102902
|
* @param {*} [axiosOptions] Override http request option.
|
|
102903
|
+
* @deprecated
|
|
102862
102904
|
* @throws {RequiredError}
|
|
102863
102905
|
*/
|
|
102864
102906
|
patchMachineAccountSubtype: async (sourceId: string, technicalName: string, requestBody: Array<object>, xSailPointExperimental?: string, axiosOptions: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
@@ -102984,6 +103026,7 @@ export const MachineAccountsV2025ApiFp = function(configuration?: Configuration)
|
|
|
102984
103026
|
* @param {CreateMachineAccountSubtypeRequestV2025} createMachineAccountSubtypeRequestV2025
|
|
102985
103027
|
* @param {string} [xSailPointExperimental] Use this header to enable this experimental API.
|
|
102986
103028
|
* @param {*} [axiosOptions] Override http request option.
|
|
103029
|
+
* @deprecated
|
|
102987
103030
|
* @throws {RequiredError}
|
|
102988
103031
|
*/
|
|
102989
103032
|
async createMachineAccountSubtype(sourceId: string, createMachineAccountSubtypeRequestV2025: CreateMachineAccountSubtypeRequestV2025, xSailPointExperimental?: string, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<SourceSubtypeV2025>> {
|
|
@@ -102999,6 +103042,7 @@ export const MachineAccountsV2025ApiFp = function(configuration?: Configuration)
|
|
|
102999
103042
|
* @param {string} technicalName The technical name of the subtype.
|
|
103000
103043
|
* @param {string} [xSailPointExperimental] Use this header to enable this experimental API.
|
|
103001
103044
|
* @param {*} [axiosOptions] Override http request option.
|
|
103045
|
+
* @deprecated
|
|
103002
103046
|
* @throws {RequiredError}
|
|
103003
103047
|
*/
|
|
103004
103048
|
async deleteMachineAccountSubtype(sourceId: string, technicalName: string, xSailPointExperimental?: string, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>> {
|
|
@@ -103026,6 +103070,7 @@ export const MachineAccountsV2025ApiFp = function(configuration?: Configuration)
|
|
|
103026
103070
|
* @param {string} subtypeId The ID of the machine account subtype.
|
|
103027
103071
|
* @param {string} [xSailPointExperimental] Use this header to enable this experimental API.
|
|
103028
103072
|
* @param {*} [axiosOptions] Override http request option.
|
|
103073
|
+
* @deprecated
|
|
103029
103074
|
* @throws {RequiredError}
|
|
103030
103075
|
*/
|
|
103031
103076
|
async getMachineAccountSubtypeById(subtypeId: string, xSailPointExperimental?: string, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<SourceSubtypeV2025>> {
|
|
@@ -103041,6 +103086,7 @@ export const MachineAccountsV2025ApiFp = function(configuration?: Configuration)
|
|
|
103041
103086
|
* @param {string} technicalName The technical name of the subtype.
|
|
103042
103087
|
* @param {string} [xSailPointExperimental] Use this header to enable this experimental API.
|
|
103043
103088
|
* @param {*} [axiosOptions] Override http request option.
|
|
103089
|
+
* @deprecated
|
|
103044
103090
|
* @throws {RequiredError}
|
|
103045
103091
|
*/
|
|
103046
103092
|
async getMachineAccountSubtypeByTechnicalName(sourceId: string, technicalName: string, xSailPointExperimental?: string, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<SourceSubtypeV2025>> {
|
|
@@ -103060,6 +103106,7 @@ export const MachineAccountsV2025ApiFp = function(configuration?: Configuration)
|
|
|
103060
103106
|
* @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.
|
|
103061
103107
|
* @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.
|
|
103062
103108
|
* @param {*} [axiosOptions] Override http request option.
|
|
103109
|
+
* @deprecated
|
|
103063
103110
|
* @throws {RequiredError}
|
|
103064
103111
|
*/
|
|
103065
103112
|
async listMachineAccountSubtypes(sourceId: string, filters?: string, sorters?: string, xSailPointExperimental?: string, count?: boolean, limit?: number, offset?: number, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<SourceSubtypeV2025>>> {
|
|
@@ -103093,6 +103140,7 @@ export const MachineAccountsV2025ApiFp = function(configuration?: Configuration)
|
|
|
103093
103140
|
* @param {Array<object>} requestBody A JSON of updated values [JSON Patch](https://tools.ietf.org/html/rfc6902) standard.
|
|
103094
103141
|
* @param {string} [xSailPointExperimental] Use this header to enable this experimental API.
|
|
103095
103142
|
* @param {*} [axiosOptions] Override http request option.
|
|
103143
|
+
* @deprecated
|
|
103096
103144
|
* @throws {RequiredError}
|
|
103097
103145
|
*/
|
|
103098
103146
|
async patchMachineAccountSubtype(sourceId: string, technicalName: string, requestBody: Array<object>, xSailPointExperimental?: string, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<SourceSubtypeV2025>> {
|
|
@@ -103130,6 +103178,7 @@ export const MachineAccountsV2025ApiFactory = function (configuration?: Configur
|
|
|
103130
103178
|
* @summary Create subtype
|
|
103131
103179
|
* @param {MachineAccountsV2025ApiCreateMachineAccountSubtypeRequest} requestParameters Request parameters.
|
|
103132
103180
|
* @param {*} [axiosOptions] Override http request option.
|
|
103181
|
+
* @deprecated
|
|
103133
103182
|
* @throws {RequiredError}
|
|
103134
103183
|
*/
|
|
103135
103184
|
createMachineAccountSubtype(requestParameters: MachineAccountsV2025ApiCreateMachineAccountSubtypeRequest, axiosOptions?: RawAxiosRequestConfig): AxiosPromise<SourceSubtypeV2025> {
|
|
@@ -103140,6 +103189,7 @@ export const MachineAccountsV2025ApiFactory = function (configuration?: Configur
|
|
|
103140
103189
|
* @summary Delete subtype
|
|
103141
103190
|
* @param {MachineAccountsV2025ApiDeleteMachineAccountSubtypeRequest} requestParameters Request parameters.
|
|
103142
103191
|
* @param {*} [axiosOptions] Override http request option.
|
|
103192
|
+
* @deprecated
|
|
103143
103193
|
* @throws {RequiredError}
|
|
103144
103194
|
*/
|
|
103145
103195
|
deleteMachineAccountSubtype(requestParameters: MachineAccountsV2025ApiDeleteMachineAccountSubtypeRequest, axiosOptions?: RawAxiosRequestConfig): AxiosPromise<void> {
|
|
@@ -103160,6 +103210,7 @@ export const MachineAccountsV2025ApiFactory = function (configuration?: Configur
|
|
|
103160
103210
|
* @summary Retrieve subtype by subtype id
|
|
103161
103211
|
* @param {MachineAccountsV2025ApiGetMachineAccountSubtypeByIdRequest} requestParameters Request parameters.
|
|
103162
103212
|
* @param {*} [axiosOptions] Override http request option.
|
|
103213
|
+
* @deprecated
|
|
103163
103214
|
* @throws {RequiredError}
|
|
103164
103215
|
*/
|
|
103165
103216
|
getMachineAccountSubtypeById(requestParameters: MachineAccountsV2025ApiGetMachineAccountSubtypeByIdRequest, axiosOptions?: RawAxiosRequestConfig): AxiosPromise<SourceSubtypeV2025> {
|
|
@@ -103170,6 +103221,7 @@ export const MachineAccountsV2025ApiFactory = function (configuration?: Configur
|
|
|
103170
103221
|
* @summary Retrieve subtype by source and technicalName
|
|
103171
103222
|
* @param {MachineAccountsV2025ApiGetMachineAccountSubtypeByTechnicalNameRequest} requestParameters Request parameters.
|
|
103172
103223
|
* @param {*} [axiosOptions] Override http request option.
|
|
103224
|
+
* @deprecated
|
|
103173
103225
|
* @throws {RequiredError}
|
|
103174
103226
|
*/
|
|
103175
103227
|
getMachineAccountSubtypeByTechnicalName(requestParameters: MachineAccountsV2025ApiGetMachineAccountSubtypeByTechnicalNameRequest, axiosOptions?: RawAxiosRequestConfig): AxiosPromise<SourceSubtypeV2025> {
|
|
@@ -103180,6 +103232,7 @@ export const MachineAccountsV2025ApiFactory = function (configuration?: Configur
|
|
|
103180
103232
|
* @summary Retrieve all subtypes by source
|
|
103181
103233
|
* @param {MachineAccountsV2025ApiListMachineAccountSubtypesRequest} requestParameters Request parameters.
|
|
103182
103234
|
* @param {*} [axiosOptions] Override http request option.
|
|
103235
|
+
* @deprecated
|
|
103183
103236
|
* @throws {RequiredError}
|
|
103184
103237
|
*/
|
|
103185
103238
|
listMachineAccountSubtypes(requestParameters: MachineAccountsV2025ApiListMachineAccountSubtypesRequest, axiosOptions?: RawAxiosRequestConfig): AxiosPromise<Array<SourceSubtypeV2025>> {
|
|
@@ -103200,6 +103253,7 @@ export const MachineAccountsV2025ApiFactory = function (configuration?: Configur
|
|
|
103200
103253
|
* @summary Patch subtype
|
|
103201
103254
|
* @param {MachineAccountsV2025ApiPatchMachineAccountSubtypeRequest} requestParameters Request parameters.
|
|
103202
103255
|
* @param {*} [axiosOptions] Override http request option.
|
|
103256
|
+
* @deprecated
|
|
103203
103257
|
* @throws {RequiredError}
|
|
103204
103258
|
*/
|
|
103205
103259
|
patchMachineAccountSubtype(requestParameters: MachineAccountsV2025ApiPatchMachineAccountSubtypeRequest, axiosOptions?: RawAxiosRequestConfig): AxiosPromise<SourceSubtypeV2025> {
|
|
@@ -103503,6 +103557,7 @@ export class MachineAccountsV2025Api extends BaseAPI {
|
|
|
103503
103557
|
* @summary Create subtype
|
|
103504
103558
|
* @param {MachineAccountsV2025ApiCreateMachineAccountSubtypeRequest} requestParameters Request parameters.
|
|
103505
103559
|
* @param {*} [axiosOptions] Override http request option.
|
|
103560
|
+
* @deprecated
|
|
103506
103561
|
* @throws {RequiredError}
|
|
103507
103562
|
* @memberof MachineAccountsV2025Api
|
|
103508
103563
|
*/
|
|
@@ -103515,6 +103570,7 @@ export class MachineAccountsV2025Api extends BaseAPI {
|
|
|
103515
103570
|
* @summary Delete subtype
|
|
103516
103571
|
* @param {MachineAccountsV2025ApiDeleteMachineAccountSubtypeRequest} requestParameters Request parameters.
|
|
103517
103572
|
* @param {*} [axiosOptions] Override http request option.
|
|
103573
|
+
* @deprecated
|
|
103518
103574
|
* @throws {RequiredError}
|
|
103519
103575
|
* @memberof MachineAccountsV2025Api
|
|
103520
103576
|
*/
|
|
@@ -103539,6 +103595,7 @@ export class MachineAccountsV2025Api extends BaseAPI {
|
|
|
103539
103595
|
* @summary Retrieve subtype by subtype id
|
|
103540
103596
|
* @param {MachineAccountsV2025ApiGetMachineAccountSubtypeByIdRequest} requestParameters Request parameters.
|
|
103541
103597
|
* @param {*} [axiosOptions] Override http request option.
|
|
103598
|
+
* @deprecated
|
|
103542
103599
|
* @throws {RequiredError}
|
|
103543
103600
|
* @memberof MachineAccountsV2025Api
|
|
103544
103601
|
*/
|
|
@@ -103551,6 +103608,7 @@ export class MachineAccountsV2025Api extends BaseAPI {
|
|
|
103551
103608
|
* @summary Retrieve subtype by source and technicalName
|
|
103552
103609
|
* @param {MachineAccountsV2025ApiGetMachineAccountSubtypeByTechnicalNameRequest} requestParameters Request parameters.
|
|
103553
103610
|
* @param {*} [axiosOptions] Override http request option.
|
|
103611
|
+
* @deprecated
|
|
103554
103612
|
* @throws {RequiredError}
|
|
103555
103613
|
* @memberof MachineAccountsV2025Api
|
|
103556
103614
|
*/
|
|
@@ -103563,6 +103621,7 @@ export class MachineAccountsV2025Api extends BaseAPI {
|
|
|
103563
103621
|
* @summary Retrieve all subtypes by source
|
|
103564
103622
|
* @param {MachineAccountsV2025ApiListMachineAccountSubtypesRequest} requestParameters Request parameters.
|
|
103565
103623
|
* @param {*} [axiosOptions] Override http request option.
|
|
103624
|
+
* @deprecated
|
|
103566
103625
|
* @throws {RequiredError}
|
|
103567
103626
|
* @memberof MachineAccountsV2025Api
|
|
103568
103627
|
*/
|
|
@@ -103587,6 +103646,7 @@ export class MachineAccountsV2025Api extends BaseAPI {
|
|
|
103587
103646
|
* @summary Patch subtype
|
|
103588
103647
|
* @param {MachineAccountsV2025ApiPatchMachineAccountSubtypeRequest} requestParameters Request parameters.
|
|
103589
103648
|
* @param {*} [axiosOptions] Override http request option.
|
|
103649
|
+
* @deprecated
|
|
103590
103650
|
* @throws {RequiredError}
|
|
103591
103651
|
* @memberof MachineAccountsV2025Api
|
|
103592
103652
|
*/
|
package/v2025/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.
|
|
149
|
+
let userAgent = `SailPoint-SDK-TypeScript/1.8.59`;
|
|
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.
|
|
156
|
+
...{'X-SailPoint-SDK':'typescript-1.8.59'},
|
|
157
157
|
...{'User-Agent': userAgent},
|
|
158
158
|
}
|
|
159
159
|
|
package/v2025/package.json
CHANGED
package/v2026/README.md
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
## sailpoint-sdk@1.8.
|
|
1
|
+
## sailpoint-sdk@1.8.59
|
|
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.
|
|
39
|
+
npm install sailpoint-sdk@1.8.59 --save
|
|
40
40
|
```
|
|
41
41
|
|
|
42
42
|
_unPublished (not recommended):_
|