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/v2026/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/dist/v3/api.d.ts
CHANGED
|
@@ -5344,6 +5344,8 @@ export declare const CampaignReferenceCampaignTypeV3: {
|
|
|
5344
5344
|
readonly Manager: "MANAGER";
|
|
5345
5345
|
readonly SourceOwner: "SOURCE_OWNER";
|
|
5346
5346
|
readonly Search: "SEARCH";
|
|
5347
|
+
readonly RoleComposition: "ROLE_COMPOSITION";
|
|
5348
|
+
readonly MachineAccount: "MACHINE_ACCOUNT";
|
|
5347
5349
|
};
|
|
5348
5350
|
export type CampaignReferenceCampaignTypeV3 = typeof CampaignReferenceCampaignTypeV3[keyof typeof CampaignReferenceCampaignTypeV3];
|
|
5349
5351
|
export declare const CampaignReferenceCorrelatedStatusV3: {
|
|
@@ -18178,11 +18180,11 @@ export interface Reviewer {
|
|
|
18178
18180
|
*/
|
|
18179
18181
|
'name'?: string;
|
|
18180
18182
|
/**
|
|
18181
|
-
* The email of the reviewing identity.
|
|
18183
|
+
* The email of the reviewing identity. This is only applicable to reviewers of the `IDENTITY` type.
|
|
18182
18184
|
* @type {string}
|
|
18183
18185
|
* @memberof Reviewer
|
|
18184
18186
|
*/
|
|
18185
|
-
'email'?: string;
|
|
18187
|
+
'email'?: string | null;
|
|
18186
18188
|
/**
|
|
18187
18189
|
* The type of the reviewing identity.
|
|
18188
18190
|
* @type {string}
|
|
@@ -18204,6 +18206,7 @@ export interface Reviewer {
|
|
|
18204
18206
|
}
|
|
18205
18207
|
export declare const ReviewerTypeV3: {
|
|
18206
18208
|
readonly Identity: "IDENTITY";
|
|
18209
|
+
readonly GovernanceGroup: "GOVERNANCE_GROUP";
|
|
18207
18210
|
};
|
|
18208
18211
|
export type ReviewerTypeV3 = typeof ReviewerTypeV3[keyof typeof ReviewerTypeV3];
|
|
18209
18212
|
/**
|
|
@@ -24786,19 +24789,19 @@ export interface WorkflowLibraryTrigger {
|
|
|
24786
24789
|
*/
|
|
24787
24790
|
'type'?: WorkflowLibraryTriggerTypeV3;
|
|
24788
24791
|
/**
|
|
24789
|
-
*
|
|
24792
|
+
* Whether the trigger is deprecated.
|
|
24790
24793
|
* @type {boolean}
|
|
24791
24794
|
* @memberof WorkflowLibraryTrigger
|
|
24792
24795
|
*/
|
|
24793
24796
|
'deprecated'?: boolean;
|
|
24794
24797
|
/**
|
|
24795
|
-
*
|
|
24798
|
+
* Date the trigger was deprecated, if applicable.
|
|
24796
24799
|
* @type {string}
|
|
24797
24800
|
* @memberof WorkflowLibraryTrigger
|
|
24798
24801
|
*/
|
|
24799
24802
|
'deprecatedBy'?: string;
|
|
24800
24803
|
/**
|
|
24801
|
-
*
|
|
24804
|
+
* Whether the trigger can be simulated.
|
|
24802
24805
|
* @type {boolean}
|
|
24803
24806
|
* @memberof WorkflowLibraryTrigger
|
|
24804
24807
|
*/
|
|
@@ -24844,6 +24847,7 @@ export declare const WorkflowLibraryTriggerTypeV3: {
|
|
|
24844
24847
|
readonly Event: "EVENT";
|
|
24845
24848
|
readonly Scheduled: "SCHEDULED";
|
|
24846
24849
|
readonly External: "EXTERNAL";
|
|
24850
|
+
readonly AccessRequestTrigger: "AccessRequestTrigger";
|
|
24847
24851
|
};
|
|
24848
24852
|
export type WorkflowLibraryTriggerTypeV3 = typeof WorkflowLibraryTriggerTypeV3[keyof typeof WorkflowLibraryTriggerTypeV3];
|
|
24849
24853
|
/**
|
|
@@ -44899,7 +44903,7 @@ export declare const WorkflowsApiAxiosParamCreator: (configuration?: Configurati
|
|
|
44899
44903
|
* @summary List workflow library triggers
|
|
44900
44904
|
* @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.
|
|
44901
44905
|
* @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.
|
|
44902
|
-
* @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*
|
|
44906
|
+
* @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*
|
|
44903
44907
|
* @param {*} [axiosOptions] Override http request option.
|
|
44904
44908
|
* @throws {RequiredError}
|
|
44905
44909
|
*/
|
|
@@ -45066,7 +45070,7 @@ export declare const WorkflowsApiFp: (configuration?: Configuration) => {
|
|
|
45066
45070
|
* @summary List workflow library triggers
|
|
45067
45071
|
* @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.
|
|
45068
45072
|
* @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.
|
|
45069
|
-
* @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*
|
|
45073
|
+
* @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*
|
|
45070
45074
|
* @param {*} [axiosOptions] Override http request option.
|
|
45071
45075
|
* @throws {RequiredError}
|
|
45072
45076
|
*/
|
|
@@ -45479,7 +45483,7 @@ export interface WorkflowsApiListWorkflowLibraryTriggersRequest {
|
|
|
45479
45483
|
*/
|
|
45480
45484
|
readonly offset?: number;
|
|
45481
45485
|
/**
|
|
45482
|
-
* 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*
|
|
45486
|
+
* 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*
|
|
45483
45487
|
* @type {string}
|
|
45484
45488
|
* @memberof WorkflowsApiListWorkflowLibraryTriggers
|
|
45485
45489
|
*/
|
package/dist/v3/api.js
CHANGED
|
@@ -464,7 +464,9 @@ exports.CampaignReferenceTypeV3 = {
|
|
|
464
464
|
exports.CampaignReferenceCampaignTypeV3 = {
|
|
465
465
|
Manager: 'MANAGER',
|
|
466
466
|
SourceOwner: 'SOURCE_OWNER',
|
|
467
|
-
Search: 'SEARCH'
|
|
467
|
+
Search: 'SEARCH',
|
|
468
|
+
RoleComposition: 'ROLE_COMPOSITION',
|
|
469
|
+
MachineAccount: 'MACHINE_ACCOUNT'
|
|
468
470
|
};
|
|
469
471
|
exports.CampaignReferenceCorrelatedStatusV3 = {
|
|
470
472
|
Correlated: 'CORRELATED',
|
|
@@ -1350,7 +1352,8 @@ exports.ReviewableEntitlementAccountOwnerTypeV3 = {
|
|
|
1350
1352
|
Identity: 'IDENTITY'
|
|
1351
1353
|
};
|
|
1352
1354
|
exports.ReviewerTypeV3 = {
|
|
1353
|
-
Identity: 'IDENTITY'
|
|
1355
|
+
Identity: 'IDENTITY',
|
|
1356
|
+
GovernanceGroup: 'GOVERNANCE_GROUP'
|
|
1354
1357
|
};
|
|
1355
1358
|
/**
|
|
1356
1359
|
* Type which indicates how a particular Identity obtained a particular Role
|
|
@@ -1998,7 +2001,8 @@ exports.WorkflowLibraryFormFieldsTypeV3 = {
|
|
|
1998
2001
|
exports.WorkflowLibraryTriggerTypeV3 = {
|
|
1999
2002
|
Event: 'EVENT',
|
|
2000
2003
|
Scheduled: 'SCHEDULED',
|
|
2001
|
-
External: 'EXTERNAL'
|
|
2004
|
+
External: 'EXTERNAL',
|
|
2005
|
+
AccessRequestTrigger: 'AccessRequestTrigger'
|
|
2002
2006
|
};
|
|
2003
2007
|
exports.WorkflowModifiedByTypeV3 = {
|
|
2004
2008
|
Identity: 'IDENTITY'
|
|
@@ -41623,7 +41627,7 @@ var WorkflowsApiAxiosParamCreator = function (configuration) {
|
|
|
41623
41627
|
* @summary List workflow library triggers
|
|
41624
41628
|
* @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.
|
|
41625
41629
|
* @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.
|
|
41626
|
-
* @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*
|
|
41630
|
+
* @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*
|
|
41627
41631
|
* @param {*} [axiosOptions] Override http request option.
|
|
41628
41632
|
* @throws {RequiredError}
|
|
41629
41633
|
*/
|
|
@@ -42283,7 +42287,7 @@ var WorkflowsApiFp = function (configuration) {
|
|
|
42283
42287
|
* @summary List workflow library triggers
|
|
42284
42288
|
* @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.
|
|
42285
42289
|
* @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.
|
|
42286
|
-
* @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*
|
|
42290
|
+
* @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*
|
|
42287
42291
|
* @param {*} [axiosOptions] Override http request option.
|
|
42288
42292
|
* @throws {RequiredError}
|
|
42289
42293
|
*/
|