sailpoint-api-client 1.8.19 → 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.
- package/beta/README.md +2 -2
- package/beta/api.ts +11 -9
- package/beta/common.ts +2 -2
- package/beta/package.json +1 -1
- package/dist/beta/api.d.ts +10 -8
- package/dist/beta/api.js +11 -9
- package/dist/beta/api.js.map +1 -1
- package/dist/beta/common.js +2 -2
- package/dist/nerm/api.d.ts +30 -0
- package/dist/nerm/api.js.map +1 -1
- package/dist/nerm/common.js +2 -2
- package/dist/nermv2025/common.js +2 -2
- package/dist/v2024/api.d.ts +20 -16
- package/dist/v2024/api.js +17 -13
- package/dist/v2024/api.js.map +1 -1
- package/dist/v2024/common.js +2 -2
- package/dist/v2025/api.d.ts +20 -16
- package/dist/v2025/api.js +17 -13
- package/dist/v2025/api.js.map +1 -1
- package/dist/v2025/common.js +2 -2
- package/dist/v2026/api.d.ts +238 -16
- package/dist/v2026/api.js +358 -32
- package/dist/v2026/api.js.map +1 -1
- package/dist/v2026/common.js +2 -2
- package/dist/v3/api.d.ts +12 -8
- package/dist/v3/api.js +9 -5
- package/dist/v3/api.js.map +1 -1
- package/dist/v3/common.js +2 -2
- package/nerm/README.md +2 -2
- package/nerm/api.ts +30 -0
- 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 +23 -19
- package/v2024/common.ts +2 -2
- package/v2024/package.json +1 -1
- package/v2025/README.md +2 -2
- package/v2025/api.ts +23 -19
- package/v2025/common.ts +2 -2
- package/v2025/package.json +1 -1
- package/v2026/README.md +2 -2
- package/v2026/api.ts +392 -19
- package/v2026/common.ts +2 -2
- package/v2026/package.json +1 -1
- package/v3/README.md +2 -2
- package/v3/api.ts +15 -11
- 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.21";
|
|
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.21' }), { '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.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-nerm-sdk@1.8.
|
|
39
|
+
npm install sailpoint-nerm-sdk@1.8.21 --save
|
|
40
40
|
```
|
|
41
41
|
|
|
42
42
|
_unPublished (not recommended):_
|
package/nerm/api.ts
CHANGED
|
@@ -1367,6 +1367,12 @@ export interface AutomatedWorkflowNERM {
|
|
|
1367
1367
|
* @memberof AutomatedWorkflowNERM
|
|
1368
1368
|
*/
|
|
1369
1369
|
'name': string;
|
|
1370
|
+
/**
|
|
1371
|
+
* When honored at runtime, suppresses failure email notifications for this workflow\'s sessions.
|
|
1372
|
+
* @type {boolean}
|
|
1373
|
+
* @memberof AutomatedWorkflowNERM
|
|
1374
|
+
*/
|
|
1375
|
+
'disable_failure_email_notifications'?: boolean | null;
|
|
1370
1376
|
/**
|
|
1371
1377
|
* The ProfileTypeRule this workflow will be working with.
|
|
1372
1378
|
* @type {Array<AutomatedWorkflowConditionRulesAttributesInnerNERM>}
|
|
@@ -1443,6 +1449,12 @@ export interface BatchWorkflowNERM {
|
|
|
1443
1449
|
* @memberof BatchWorkflowNERM
|
|
1444
1450
|
*/
|
|
1445
1451
|
'options'?: BatchWorkflowOptionsNERM;
|
|
1452
|
+
/**
|
|
1453
|
+
* When honored at runtime, suppresses failure email notifications for this workflow\'s sessions.
|
|
1454
|
+
* @type {boolean}
|
|
1455
|
+
* @memberof BatchWorkflowNERM
|
|
1456
|
+
*/
|
|
1457
|
+
'disable_failure_email_notifications'?: boolean | null;
|
|
1446
1458
|
}
|
|
1447
1459
|
|
|
1448
1460
|
export const BatchWorkflowNERMStatusNerm = {
|
|
@@ -2355,6 +2367,12 @@ export interface CreateWorkflowNERM {
|
|
|
2355
2367
|
* @memberof CreateWorkflowNERM
|
|
2356
2368
|
*/
|
|
2357
2369
|
'name': string;
|
|
2370
|
+
/**
|
|
2371
|
+
* When honored at runtime, suppresses failure email notifications for this workflow\'s sessions.
|
|
2372
|
+
* @type {boolean}
|
|
2373
|
+
* @memberof CreateWorkflowNERM
|
|
2374
|
+
*/
|
|
2375
|
+
'disable_failure_email_notifications'?: boolean | null;
|
|
2358
2376
|
}
|
|
2359
2377
|
|
|
2360
2378
|
export const CreateWorkflowNERMStatusNerm = {
|
|
@@ -3917,6 +3935,12 @@ export interface LoginWorkflowNERM {
|
|
|
3917
3935
|
* @memberof LoginWorkflowNERM
|
|
3918
3936
|
*/
|
|
3919
3937
|
'options'?: LoginWorkflowOptionsNERM;
|
|
3938
|
+
/**
|
|
3939
|
+
* When honored at runtime, suppresses failure email notifications for this workflow\'s sessions.
|
|
3940
|
+
* @type {boolean}
|
|
3941
|
+
* @memberof LoginWorkflowNERM
|
|
3942
|
+
*/
|
|
3943
|
+
'disable_failure_email_notifications'?: boolean | null;
|
|
3920
3944
|
}
|
|
3921
3945
|
|
|
3922
3946
|
export const LoginWorkflowNERMStatusNerm = {
|
|
@@ -7316,6 +7340,12 @@ export interface UpdateWorkflowNERM {
|
|
|
7316
7340
|
* @memberof UpdateWorkflowNERM
|
|
7317
7341
|
*/
|
|
7318
7342
|
'profile_status': string;
|
|
7343
|
+
/**
|
|
7344
|
+
* When honored at runtime, suppresses failure email notifications for this workflow\'s sessions.
|
|
7345
|
+
* @type {boolean}
|
|
7346
|
+
* @memberof UpdateWorkflowNERM
|
|
7347
|
+
*/
|
|
7348
|
+
'disable_failure_email_notifications'?: boolean | null;
|
|
7319
7349
|
}
|
|
7320
7350
|
|
|
7321
7351
|
export const UpdateWorkflowNERMStatusNerm = {
|
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.21`;
|
|
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.21'},
|
|
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.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-nerm-sdk@1.8.
|
|
39
|
+
npm install sailpoint-nerm-sdk@1.8.21 --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.21`;
|
|
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.21'},
|
|
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.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.
|
|
39
|
+
npm install sailpoint-sdk@1.8.21 --save
|
|
40
40
|
```
|
|
41
41
|
|
|
42
42
|
_unPublished (not recommended):_
|
package/v2024/api.ts
CHANGED
|
@@ -9365,7 +9365,9 @@ export type CampaignReferenceV2024TypeV2024 = typeof CampaignReferenceV2024TypeV
|
|
|
9365
9365
|
export const CampaignReferenceV2024CampaignTypeV2024 = {
|
|
9366
9366
|
Manager: 'MANAGER',
|
|
9367
9367
|
SourceOwner: 'SOURCE_OWNER',
|
|
9368
|
-
Search: 'SEARCH'
|
|
9368
|
+
Search: 'SEARCH',
|
|
9369
|
+
RoleComposition: 'ROLE_COMPOSITION',
|
|
9370
|
+
MachineAccount: 'MACHINE_ACCOUNT'
|
|
9369
9371
|
} as const;
|
|
9370
9372
|
|
|
9371
9373
|
export type CampaignReferenceV2024CampaignTypeV2024 = typeof CampaignReferenceV2024CampaignTypeV2024[keyof typeof CampaignReferenceV2024CampaignTypeV2024];
|
|
@@ -32493,11 +32495,11 @@ export interface ReviewerV2024 {
|
|
|
32493
32495
|
*/
|
|
32494
32496
|
'name'?: string;
|
|
32495
32497
|
/**
|
|
32496
|
-
* The email of the reviewing identity.
|
|
32498
|
+
* The email of the reviewing identity. This is only applicable to reviewers of the `IDENTITY` type.
|
|
32497
32499
|
* @type {string}
|
|
32498
32500
|
* @memberof ReviewerV2024
|
|
32499
32501
|
*/
|
|
32500
|
-
'email'?: string;
|
|
32502
|
+
'email'?: string | null;
|
|
32501
32503
|
/**
|
|
32502
32504
|
* The type of the reviewing identity.
|
|
32503
32505
|
* @type {string}
|
|
@@ -32519,7 +32521,8 @@ export interface ReviewerV2024 {
|
|
|
32519
32521
|
}
|
|
32520
32522
|
|
|
32521
32523
|
export const ReviewerV2024TypeV2024 = {
|
|
32522
|
-
Identity: 'IDENTITY'
|
|
32524
|
+
Identity: 'IDENTITY',
|
|
32525
|
+
GovernanceGroup: 'GOVERNANCE_GROUP'
|
|
32523
32526
|
} as const;
|
|
32524
32527
|
|
|
32525
32528
|
export type ReviewerV2024TypeV2024 = typeof ReviewerV2024TypeV2024[keyof typeof ReviewerV2024TypeV2024];
|
|
@@ -45456,19 +45459,19 @@ export interface WorkflowLibraryTriggerV2024 {
|
|
|
45456
45459
|
*/
|
|
45457
45460
|
'type'?: WorkflowLibraryTriggerV2024TypeV2024;
|
|
45458
45461
|
/**
|
|
45459
|
-
*
|
|
45462
|
+
* Whether the trigger is deprecated.
|
|
45460
45463
|
* @type {boolean}
|
|
45461
45464
|
* @memberof WorkflowLibraryTriggerV2024
|
|
45462
45465
|
*/
|
|
45463
45466
|
'deprecated'?: boolean;
|
|
45464
45467
|
/**
|
|
45465
|
-
*
|
|
45468
|
+
* Date the trigger was deprecated, if applicable.
|
|
45466
45469
|
* @type {string}
|
|
45467
45470
|
* @memberof WorkflowLibraryTriggerV2024
|
|
45468
45471
|
*/
|
|
45469
45472
|
'deprecatedBy'?: string;
|
|
45470
45473
|
/**
|
|
45471
|
-
*
|
|
45474
|
+
* Whether the trigger can be simulated.
|
|
45472
45475
|
* @type {boolean}
|
|
45473
45476
|
* @memberof WorkflowLibraryTriggerV2024
|
|
45474
45477
|
*/
|
|
@@ -45514,7 +45517,8 @@ export interface WorkflowLibraryTriggerV2024 {
|
|
|
45514
45517
|
export const WorkflowLibraryTriggerV2024TypeV2024 = {
|
|
45515
45518
|
Event: 'EVENT',
|
|
45516
45519
|
Scheduled: 'SCHEDULED',
|
|
45517
|
-
External: 'EXTERNAL'
|
|
45520
|
+
External: 'EXTERNAL',
|
|
45521
|
+
AccessRequestTrigger: 'AccessRequestTrigger'
|
|
45518
45522
|
} as const;
|
|
45519
45523
|
|
|
45520
45524
|
export type WorkflowLibraryTriggerV2024TypeV2024 = typeof WorkflowLibraryTriggerV2024TypeV2024[keyof typeof WorkflowLibraryTriggerV2024TypeV2024];
|
|
@@ -66433,7 +66437,7 @@ export const CustomFormsV2024ApiAxiosParamCreator = function (configuration?: Co
|
|
|
66433
66437
|
};
|
|
66434
66438
|
},
|
|
66435
66439
|
/**
|
|
66436
|
-
* Parameter `{formInstanceID}` should match a form instance ID.
|
|
66440
|
+
* Parameter `{formInstanceID}` should match a form instance ID. Only the assigned recipient (`recipients[].id` when `type` is `IDENTITY`) may call this.
|
|
66437
66441
|
* @summary Returns a form instance.
|
|
66438
66442
|
* @param {string} formInstanceID Form instance ID
|
|
66439
66443
|
* @param {*} [axiosOptions] Override http request option.
|
|
@@ -66609,7 +66613,7 @@ export const CustomFormsV2024ApiAxiosParamCreator = function (configuration?: Co
|
|
|
66609
66613
|
};
|
|
66610
66614
|
},
|
|
66611
66615
|
/**
|
|
66612
|
-
* Parameter `{formInstanceID}` should match a form instance ID.
|
|
66616
|
+
* Parameter `{formInstanceID}` should match a form instance ID. Only the assigned recipient (`recipients[].id` when `type` is `IDENTITY`) may call this.
|
|
66613
66617
|
* @summary Patch a form instance.
|
|
66614
66618
|
* @param {string} formInstanceID Form instance ID
|
|
66615
66619
|
* @param {Array<{ [key: string]: object; }>} [body] Body is the request payload to patch a form instance, check: https://jsonpatch.com
|
|
@@ -67045,7 +67049,7 @@ export const CustomFormsV2024ApiFp = function(configuration?: Configuration) {
|
|
|
67045
67049
|
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
67046
67050
|
},
|
|
67047
67051
|
/**
|
|
67048
|
-
* Parameter `{formInstanceID}` should match a form instance ID.
|
|
67052
|
+
* Parameter `{formInstanceID}` should match a form instance ID. Only the assigned recipient (`recipients[].id` when `type` is `IDENTITY`) may call this.
|
|
67049
67053
|
* @summary Returns a form instance.
|
|
67050
67054
|
* @param {string} formInstanceID Form instance ID
|
|
67051
67055
|
* @param {*} [axiosOptions] Override http request option.
|
|
@@ -67099,7 +67103,7 @@ export const CustomFormsV2024ApiFp = function(configuration?: Configuration) {
|
|
|
67099
67103
|
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
67100
67104
|
},
|
|
67101
67105
|
/**
|
|
67102
|
-
* Parameter `{formInstanceID}` should match a form instance ID.
|
|
67106
|
+
* Parameter `{formInstanceID}` should match a form instance ID. Only the assigned recipient (`recipients[].id` when `type` is `IDENTITY`) may call this.
|
|
67103
67107
|
* @summary Patch a form instance.
|
|
67104
67108
|
* @param {string} formInstanceID Form instance ID
|
|
67105
67109
|
* @param {Array<{ [key: string]: object; }>} [body] Body is the request payload to patch a form instance, check: https://jsonpatch.com
|
|
@@ -67280,7 +67284,7 @@ export const CustomFormsV2024ApiFactory = function (configuration?: Configuratio
|
|
|
67280
67284
|
return localVarFp.getFormDefinitionByKey(requestParameters.formDefinitionID, axiosOptions).then((request) => request(axios, basePath));
|
|
67281
67285
|
},
|
|
67282
67286
|
/**
|
|
67283
|
-
* Parameter `{formInstanceID}` should match a form instance ID.
|
|
67287
|
+
* Parameter `{formInstanceID}` should match a form instance ID. Only the assigned recipient (`recipients[].id` when `type` is `IDENTITY`) may call this.
|
|
67284
67288
|
* @summary Returns a form instance.
|
|
67285
67289
|
* @param {CustomFormsV2024ApiGetFormInstanceByKeyRequest} requestParameters Request parameters.
|
|
67286
67290
|
* @param {*} [axiosOptions] Override http request option.
|
|
@@ -67320,7 +67324,7 @@ export const CustomFormsV2024ApiFactory = function (configuration?: Configuratio
|
|
|
67320
67324
|
return localVarFp.patchFormDefinition(requestParameters.formDefinitionID, requestParameters.body, axiosOptions).then((request) => request(axios, basePath));
|
|
67321
67325
|
},
|
|
67322
67326
|
/**
|
|
67323
|
-
* Parameter `{formInstanceID}` should match a form instance ID.
|
|
67327
|
+
* Parameter `{formInstanceID}` should match a form instance ID. Only the assigned recipient (`recipients[].id` when `type` is `IDENTITY`) may call this.
|
|
67324
67328
|
* @summary Patch a form instance.
|
|
67325
67329
|
* @param {CustomFormsV2024ApiPatchFormInstanceRequest} requestParameters Request parameters.
|
|
67326
67330
|
* @param {*} [axiosOptions] Override http request option.
|
|
@@ -67870,7 +67874,7 @@ export class CustomFormsV2024Api extends BaseAPI {
|
|
|
67870
67874
|
}
|
|
67871
67875
|
|
|
67872
67876
|
/**
|
|
67873
|
-
* Parameter `{formInstanceID}` should match a form instance ID.
|
|
67877
|
+
* Parameter `{formInstanceID}` should match a form instance ID. Only the assigned recipient (`recipients[].id` when `type` is `IDENTITY`) may call this.
|
|
67874
67878
|
* @summary Returns a form instance.
|
|
67875
67879
|
* @param {CustomFormsV2024ApiGetFormInstanceByKeyRequest} requestParameters Request parameters.
|
|
67876
67880
|
* @param {*} [axiosOptions] Override http request option.
|
|
@@ -67918,7 +67922,7 @@ export class CustomFormsV2024Api extends BaseAPI {
|
|
|
67918
67922
|
}
|
|
67919
67923
|
|
|
67920
67924
|
/**
|
|
67921
|
-
* Parameter `{formInstanceID}` should match a form instance ID.
|
|
67925
|
+
* Parameter `{formInstanceID}` should match a form instance ID. Only the assigned recipient (`recipients[].id` when `type` is `IDENTITY`) may call this.
|
|
67922
67926
|
* @summary Patch a form instance.
|
|
67923
67927
|
* @param {CustomFormsV2024ApiPatchFormInstanceRequest} requestParameters Request parameters.
|
|
67924
67928
|
* @param {*} [axiosOptions] Override http request option.
|
|
@@ -128618,7 +128622,7 @@ export const WorkflowsV2024ApiAxiosParamCreator = function (configuration?: Conf
|
|
|
128618
128622
|
* @summary List workflow library triggers
|
|
128619
128623
|
* @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.
|
|
128620
128624
|
* @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.
|
|
128621
|
-
* @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*
|
|
128625
|
+
* @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*
|
|
128622
128626
|
* @param {*} [axiosOptions] Override http request option.
|
|
128623
128627
|
* @throws {RequiredError}
|
|
128624
128628
|
*/
|
|
@@ -129075,7 +129079,7 @@ export const WorkflowsV2024ApiFp = function(configuration?: Configuration) {
|
|
|
129075
129079
|
* @summary List workflow library triggers
|
|
129076
129080
|
* @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.
|
|
129077
129081
|
* @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.
|
|
129078
|
-
* @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*
|
|
129082
|
+
* @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*
|
|
129079
129083
|
* @param {*} [axiosOptions] Override http request option.
|
|
129080
129084
|
* @throws {RequiredError}
|
|
129081
129085
|
*/
|
|
@@ -129568,7 +129572,7 @@ export interface WorkflowsV2024ApiListWorkflowLibraryTriggersRequest {
|
|
|
129568
129572
|
readonly offset?: number
|
|
129569
129573
|
|
|
129570
129574
|
/**
|
|
129571
|
-
* 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*
|
|
129575
|
+
* 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*
|
|
129572
129576
|
* @type {string}
|
|
129573
129577
|
* @memberof WorkflowsV2024ApiListWorkflowLibraryTriggers
|
|
129574
129578
|
*/
|
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.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.
|
|
156
|
+
...{'X-SailPoint-SDK':'typescript-1.8.21'},
|
|
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.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.
|
|
39
|
+
npm install sailpoint-sdk@1.8.21 --save
|
|
40
40
|
```
|
|
41
41
|
|
|
42
42
|
_unPublished (not recommended):_
|
package/v2025/api.ts
CHANGED
|
@@ -11772,7 +11772,9 @@ export type CampaignReferenceV2025TypeV2025 = typeof CampaignReferenceV2025TypeV
|
|
|
11772
11772
|
export const CampaignReferenceV2025CampaignTypeV2025 = {
|
|
11773
11773
|
Manager: 'MANAGER',
|
|
11774
11774
|
SourceOwner: 'SOURCE_OWNER',
|
|
11775
|
-
Search: 'SEARCH'
|
|
11775
|
+
Search: 'SEARCH',
|
|
11776
|
+
RoleComposition: 'ROLE_COMPOSITION',
|
|
11777
|
+
MachineAccount: 'MACHINE_ACCOUNT'
|
|
11776
11778
|
} as const;
|
|
11777
11779
|
|
|
11778
11780
|
export type CampaignReferenceV2025CampaignTypeV2025 = typeof CampaignReferenceV2025CampaignTypeV2025[keyof typeof CampaignReferenceV2025CampaignTypeV2025];
|
|
@@ -37993,11 +37995,11 @@ export interface ReviewerV2025 {
|
|
|
37993
37995
|
*/
|
|
37994
37996
|
'name'?: string;
|
|
37995
37997
|
/**
|
|
37996
|
-
* The email of the reviewing identity.
|
|
37998
|
+
* The email of the reviewing identity. This is only applicable to reviewers of the `IDENTITY` type.
|
|
37997
37999
|
* @type {string}
|
|
37998
38000
|
* @memberof ReviewerV2025
|
|
37999
38001
|
*/
|
|
38000
|
-
'email'?: string;
|
|
38002
|
+
'email'?: string | null;
|
|
38001
38003
|
/**
|
|
38002
38004
|
* The type of the reviewing identity.
|
|
38003
38005
|
* @type {string}
|
|
@@ -38019,7 +38021,8 @@ export interface ReviewerV2025 {
|
|
|
38019
38021
|
}
|
|
38020
38022
|
|
|
38021
38023
|
export const ReviewerV2025TypeV2025 = {
|
|
38022
|
-
Identity: 'IDENTITY'
|
|
38024
|
+
Identity: 'IDENTITY',
|
|
38025
|
+
GovernanceGroup: 'GOVERNANCE_GROUP'
|
|
38023
38026
|
} as const;
|
|
38024
38027
|
|
|
38025
38028
|
export type ReviewerV2025TypeV2025 = typeof ReviewerV2025TypeV2025[keyof typeof ReviewerV2025TypeV2025];
|
|
@@ -52319,19 +52322,19 @@ export interface WorkflowLibraryTriggerV2025 {
|
|
|
52319
52322
|
*/
|
|
52320
52323
|
'type'?: WorkflowLibraryTriggerV2025TypeV2025;
|
|
52321
52324
|
/**
|
|
52322
|
-
*
|
|
52325
|
+
* Whether the trigger is deprecated.
|
|
52323
52326
|
* @type {boolean}
|
|
52324
52327
|
* @memberof WorkflowLibraryTriggerV2025
|
|
52325
52328
|
*/
|
|
52326
52329
|
'deprecated'?: boolean;
|
|
52327
52330
|
/**
|
|
52328
|
-
*
|
|
52331
|
+
* Date the trigger was deprecated, if applicable.
|
|
52329
52332
|
* @type {string}
|
|
52330
52333
|
* @memberof WorkflowLibraryTriggerV2025
|
|
52331
52334
|
*/
|
|
52332
52335
|
'deprecatedBy'?: string;
|
|
52333
52336
|
/**
|
|
52334
|
-
*
|
|
52337
|
+
* Whether the trigger can be simulated.
|
|
52335
52338
|
* @type {boolean}
|
|
52336
52339
|
* @memberof WorkflowLibraryTriggerV2025
|
|
52337
52340
|
*/
|
|
@@ -52377,7 +52380,8 @@ export interface WorkflowLibraryTriggerV2025 {
|
|
|
52377
52380
|
export const WorkflowLibraryTriggerV2025TypeV2025 = {
|
|
52378
52381
|
Event: 'EVENT',
|
|
52379
52382
|
Scheduled: 'SCHEDULED',
|
|
52380
|
-
External: 'EXTERNAL'
|
|
52383
|
+
External: 'EXTERNAL',
|
|
52384
|
+
AccessRequestTrigger: 'AccessRequestTrigger'
|
|
52381
52385
|
} as const;
|
|
52382
52386
|
|
|
52383
52387
|
export type WorkflowLibraryTriggerV2025TypeV2025 = typeof WorkflowLibraryTriggerV2025TypeV2025[keyof typeof WorkflowLibraryTriggerV2025TypeV2025];
|
|
@@ -75625,7 +75629,7 @@ export const CustomFormsV2025ApiAxiosParamCreator = function (configuration?: Co
|
|
|
75625
75629
|
};
|
|
75626
75630
|
},
|
|
75627
75631
|
/**
|
|
75628
|
-
* Parameter `{formInstanceID}` should match a form instance ID.
|
|
75632
|
+
* Parameter `{formInstanceID}` should match a form instance ID. Only the assigned recipient (`recipients[].id` when `type` is `IDENTITY`) may call this.
|
|
75629
75633
|
* @summary Returns a form instance.
|
|
75630
75634
|
* @param {string} formInstanceID Form instance ID
|
|
75631
75635
|
* @param {*} [axiosOptions] Override http request option.
|
|
@@ -75801,7 +75805,7 @@ export const CustomFormsV2025ApiAxiosParamCreator = function (configuration?: Co
|
|
|
75801
75805
|
};
|
|
75802
75806
|
},
|
|
75803
75807
|
/**
|
|
75804
|
-
* Parameter `{formInstanceID}` should match a form instance ID.
|
|
75808
|
+
* Parameter `{formInstanceID}` should match a form instance ID. Only the assigned recipient (`recipients[].id` when `type` is `IDENTITY`) may call this.
|
|
75805
75809
|
* @summary Patch a form instance.
|
|
75806
75810
|
* @param {string} formInstanceID Form instance ID
|
|
75807
75811
|
* @param {Array<{ [key: string]: object; }>} [body] Body is the request payload to patch a form instance, check: https://jsonpatch.com
|
|
@@ -76237,7 +76241,7 @@ export const CustomFormsV2025ApiFp = function(configuration?: Configuration) {
|
|
|
76237
76241
|
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
76238
76242
|
},
|
|
76239
76243
|
/**
|
|
76240
|
-
* Parameter `{formInstanceID}` should match a form instance ID.
|
|
76244
|
+
* Parameter `{formInstanceID}` should match a form instance ID. Only the assigned recipient (`recipients[].id` when `type` is `IDENTITY`) may call this.
|
|
76241
76245
|
* @summary Returns a form instance.
|
|
76242
76246
|
* @param {string} formInstanceID Form instance ID
|
|
76243
76247
|
* @param {*} [axiosOptions] Override http request option.
|
|
@@ -76291,7 +76295,7 @@ export const CustomFormsV2025ApiFp = function(configuration?: Configuration) {
|
|
|
76291
76295
|
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
76292
76296
|
},
|
|
76293
76297
|
/**
|
|
76294
|
-
* Parameter `{formInstanceID}` should match a form instance ID.
|
|
76298
|
+
* Parameter `{formInstanceID}` should match a form instance ID. Only the assigned recipient (`recipients[].id` when `type` is `IDENTITY`) may call this.
|
|
76295
76299
|
* @summary Patch a form instance.
|
|
76296
76300
|
* @param {string} formInstanceID Form instance ID
|
|
76297
76301
|
* @param {Array<{ [key: string]: object; }>} [body] Body is the request payload to patch a form instance, check: https://jsonpatch.com
|
|
@@ -76472,7 +76476,7 @@ export const CustomFormsV2025ApiFactory = function (configuration?: Configuratio
|
|
|
76472
76476
|
return localVarFp.getFormDefinitionByKey(requestParameters.formDefinitionID, axiosOptions).then((request) => request(axios, basePath));
|
|
76473
76477
|
},
|
|
76474
76478
|
/**
|
|
76475
|
-
* Parameter `{formInstanceID}` should match a form instance ID.
|
|
76479
|
+
* Parameter `{formInstanceID}` should match a form instance ID. Only the assigned recipient (`recipients[].id` when `type` is `IDENTITY`) may call this.
|
|
76476
76480
|
* @summary Returns a form instance.
|
|
76477
76481
|
* @param {CustomFormsV2025ApiGetFormInstanceByKeyRequest} requestParameters Request parameters.
|
|
76478
76482
|
* @param {*} [axiosOptions] Override http request option.
|
|
@@ -76512,7 +76516,7 @@ export const CustomFormsV2025ApiFactory = function (configuration?: Configuratio
|
|
|
76512
76516
|
return localVarFp.patchFormDefinition(requestParameters.formDefinitionID, requestParameters.body, axiosOptions).then((request) => request(axios, basePath));
|
|
76513
76517
|
},
|
|
76514
76518
|
/**
|
|
76515
|
-
* Parameter `{formInstanceID}` should match a form instance ID.
|
|
76519
|
+
* Parameter `{formInstanceID}` should match a form instance ID. Only the assigned recipient (`recipients[].id` when `type` is `IDENTITY`) may call this.
|
|
76516
76520
|
* @summary Patch a form instance.
|
|
76517
76521
|
* @param {CustomFormsV2025ApiPatchFormInstanceRequest} requestParameters Request parameters.
|
|
76518
76522
|
* @param {*} [axiosOptions] Override http request option.
|
|
@@ -77062,7 +77066,7 @@ export class CustomFormsV2025Api extends BaseAPI {
|
|
|
77062
77066
|
}
|
|
77063
77067
|
|
|
77064
77068
|
/**
|
|
77065
|
-
* Parameter `{formInstanceID}` should match a form instance ID.
|
|
77069
|
+
* Parameter `{formInstanceID}` should match a form instance ID. Only the assigned recipient (`recipients[].id` when `type` is `IDENTITY`) may call this.
|
|
77066
77070
|
* @summary Returns a form instance.
|
|
77067
77071
|
* @param {CustomFormsV2025ApiGetFormInstanceByKeyRequest} requestParameters Request parameters.
|
|
77068
77072
|
* @param {*} [axiosOptions] Override http request option.
|
|
@@ -77110,7 +77114,7 @@ export class CustomFormsV2025Api extends BaseAPI {
|
|
|
77110
77114
|
}
|
|
77111
77115
|
|
|
77112
77116
|
/**
|
|
77113
|
-
* Parameter `{formInstanceID}` should match a form instance ID.
|
|
77117
|
+
* Parameter `{formInstanceID}` should match a form instance ID. Only the assigned recipient (`recipients[].id` when `type` is `IDENTITY`) may call this.
|
|
77114
77118
|
* @summary Patch a form instance.
|
|
77115
77119
|
* @param {CustomFormsV2025ApiPatchFormInstanceRequest} requestParameters Request parameters.
|
|
77116
77120
|
* @param {*} [axiosOptions] Override http request option.
|
|
@@ -145927,7 +145931,7 @@ export const WorkflowsV2025ApiAxiosParamCreator = function (configuration?: Conf
|
|
|
145927
145931
|
* @summary List workflow library triggers
|
|
145928
145932
|
* @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.
|
|
145929
145933
|
* @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.
|
|
145930
|
-
* @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*
|
|
145934
|
+
* @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*
|
|
145931
145935
|
* @param {*} [axiosOptions] Override http request option.
|
|
145932
145936
|
* @throws {RequiredError}
|
|
145933
145937
|
*/
|
|
@@ -146397,7 +146401,7 @@ export const WorkflowsV2025ApiFp = function(configuration?: Configuration) {
|
|
|
146397
146401
|
* @summary List workflow library triggers
|
|
146398
146402
|
* @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.
|
|
146399
146403
|
* @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.
|
|
146400
|
-
* @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*
|
|
146404
|
+
* @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*
|
|
146401
146405
|
* @param {*} [axiosOptions] Override http request option.
|
|
146402
146406
|
* @throws {RequiredError}
|
|
146403
146407
|
*/
|
|
@@ -146914,7 +146918,7 @@ export interface WorkflowsV2025ApiListWorkflowLibraryTriggersRequest {
|
|
|
146914
146918
|
readonly offset?: number
|
|
146915
146919
|
|
|
146916
146920
|
/**
|
|
146917
|
-
* 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*
|
|
146921
|
+
* 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*
|
|
146918
146922
|
* @type {string}
|
|
146919
146923
|
* @memberof WorkflowsV2025ApiListWorkflowLibraryTriggers
|
|
146920
146924
|
*/
|
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.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.
|
|
156
|
+
...{'X-SailPoint-SDK':'typescript-1.8.21'},
|
|
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.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.
|
|
39
|
+
npm install sailpoint-sdk@1.8.21 --save
|
|
40
40
|
```
|
|
41
41
|
|
|
42
42
|
_unPublished (not recommended):_
|