@sailpoint/api-client 2.2.11 → 2.2.13
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/dist/access_profiles/api.d.ts +309 -169
- package/dist/access_profiles/api.js +158 -44
- package/dist/access_profiles/api.js.map +1 -1
- package/dist/connectors/api.d.ts +113 -0
- package/dist/connectors/api.js +32 -1
- package/dist/connectors/api.js.map +1 -1
- package/dist/data_access_security/api.d.ts +550 -20
- package/dist/data_access_security/api.js +540 -21
- package/dist/data_access_security/api.js.map +1 -1
- package/dist/entitlements/api.d.ts +4 -4
- package/dist/entitlements/api.js +4 -4
- package/dist/entitlements/api.js.map +1 -1
- package/dist/esm/access_profiles/api.js +157 -43
- package/dist/esm/connectors/api.js +31 -0
- package/dist/esm/data_access_security/api.js +539 -20
- package/dist/esm/entitlements/api.js +4 -4
- package/dist/esm/nerm/common.js +2 -2
- package/dist/esm/nermv2025/common.js +2 -2
- package/dist/nerm/common.js +2 -2
- package/dist/nerm/common.js.map +1 -1
- package/dist/nermv2025/common.js +2 -2
- package/dist/nermv2025/common.js.map +1 -1
- package/dist/sources/api.d.ts +6 -0
- package/dist/sources/api.js.map +1 -1
- package/package.json +1 -1
package/dist/connectors/api.d.ts
CHANGED
|
@@ -56,6 +56,12 @@ export interface ConnectorDetail {
|
|
|
56
56
|
* @memberof ConnectorDetail
|
|
57
57
|
*/
|
|
58
58
|
'applicationXml'?: string;
|
|
59
|
+
/**
|
|
60
|
+
* Default provisioning policies parsed from the connector application XML templates. Always an array; empty when the connector ships no templates.
|
|
61
|
+
* @type {Array<ProvisioningPolicyDto>}
|
|
62
|
+
* @memberof ConnectorDetail
|
|
63
|
+
*/
|
|
64
|
+
'provisioningPolicies'?: Array<ProvisioningPolicyDto>;
|
|
59
65
|
/**
|
|
60
66
|
* The connector correlation config xml
|
|
61
67
|
* @type {string}
|
|
@@ -190,6 +196,58 @@ export interface ErrorResponseDto {
|
|
|
190
196
|
*/
|
|
191
197
|
'causes'?: Array<ErrorMessageDto>;
|
|
192
198
|
}
|
|
199
|
+
/**
|
|
200
|
+
*
|
|
201
|
+
* @export
|
|
202
|
+
* @interface FieldDetailsDto
|
|
203
|
+
*/
|
|
204
|
+
export interface FieldDetailsDto {
|
|
205
|
+
/**
|
|
206
|
+
* The name of the attribute.
|
|
207
|
+
* @type {string}
|
|
208
|
+
* @memberof FieldDetailsDto
|
|
209
|
+
*/
|
|
210
|
+
'name'?: string;
|
|
211
|
+
/**
|
|
212
|
+
* The transform to apply to the field
|
|
213
|
+
* @type {object}
|
|
214
|
+
* @memberof FieldDetailsDto
|
|
215
|
+
*/
|
|
216
|
+
'transform'?: object;
|
|
217
|
+
/**
|
|
218
|
+
* Attributes required for the transform
|
|
219
|
+
* @type {object}
|
|
220
|
+
* @memberof FieldDetailsDto
|
|
221
|
+
*/
|
|
222
|
+
'attributes'?: object;
|
|
223
|
+
/**
|
|
224
|
+
* Flag indicating whether or not the attribute is required.
|
|
225
|
+
* @type {boolean}
|
|
226
|
+
* @memberof FieldDetailsDto
|
|
227
|
+
*/
|
|
228
|
+
'isRequired'?: boolean;
|
|
229
|
+
/**
|
|
230
|
+
* The type of the attribute. string: For text-based data. int: For whole numbers. long: For larger whole numbers. date: For date and time values. boolean: For true/false values. secret: For sensitive data like passwords, which will be masked and encrypted.
|
|
231
|
+
* @type {string}
|
|
232
|
+
* @memberof FieldDetailsDto
|
|
233
|
+
*/
|
|
234
|
+
'type'?: FieldDetailsDtoTypeEnum;
|
|
235
|
+
/**
|
|
236
|
+
* Flag indicating whether or not the attribute is multi-valued.
|
|
237
|
+
* @type {boolean}
|
|
238
|
+
* @memberof FieldDetailsDto
|
|
239
|
+
*/
|
|
240
|
+
'isMultiValued'?: boolean;
|
|
241
|
+
}
|
|
242
|
+
export declare const FieldDetailsDtoTypeEnum: {
|
|
243
|
+
readonly String: "string";
|
|
244
|
+
readonly Int: "int";
|
|
245
|
+
readonly Long: "long";
|
|
246
|
+
readonly Date: "date";
|
|
247
|
+
readonly Boolean: "boolean";
|
|
248
|
+
readonly Secret: "secret";
|
|
249
|
+
};
|
|
250
|
+
export type FieldDetailsDtoTypeEnum = typeof FieldDetailsDtoTypeEnum[keyof typeof FieldDetailsDtoTypeEnum];
|
|
193
251
|
/**
|
|
194
252
|
*
|
|
195
253
|
* @export
|
|
@@ -266,6 +324,37 @@ export declare const LocaleOrigin: {
|
|
|
266
324
|
readonly Request: "REQUEST";
|
|
267
325
|
};
|
|
268
326
|
export type LocaleOrigin = typeof LocaleOrigin[keyof typeof LocaleOrigin];
|
|
327
|
+
/**
|
|
328
|
+
*
|
|
329
|
+
* @export
|
|
330
|
+
* @interface ProvisioningPolicyDto
|
|
331
|
+
*/
|
|
332
|
+
export interface ProvisioningPolicyDto {
|
|
333
|
+
/**
|
|
334
|
+
* the provisioning policy name
|
|
335
|
+
* @type {string}
|
|
336
|
+
* @memberof ProvisioningPolicyDto
|
|
337
|
+
*/
|
|
338
|
+
'name': string | null;
|
|
339
|
+
/**
|
|
340
|
+
* the description of the provisioning policy
|
|
341
|
+
* @type {string}
|
|
342
|
+
* @memberof ProvisioningPolicyDto
|
|
343
|
+
*/
|
|
344
|
+
'description'?: string;
|
|
345
|
+
/**
|
|
346
|
+
*
|
|
347
|
+
* @type {UsageType}
|
|
348
|
+
* @memberof ProvisioningPolicyDto
|
|
349
|
+
*/
|
|
350
|
+
'usageType'?: UsageType;
|
|
351
|
+
/**
|
|
352
|
+
*
|
|
353
|
+
* @type {Array<FieldDetailsDto>}
|
|
354
|
+
* @memberof ProvisioningPolicyDto
|
|
355
|
+
*/
|
|
356
|
+
'fields'?: Array<FieldDetailsDto>;
|
|
357
|
+
}
|
|
269
358
|
/**
|
|
270
359
|
*
|
|
271
360
|
* @export
|
|
@@ -343,6 +432,30 @@ export declare const UpdateDetailStatusEnum: {
|
|
|
343
432
|
readonly Skipped: "SKIPPED";
|
|
344
433
|
};
|
|
345
434
|
export type UpdateDetailStatusEnum = typeof UpdateDetailStatusEnum[keyof typeof UpdateDetailStatusEnum];
|
|
435
|
+
/**
|
|
436
|
+
* The type of provisioning policy usage. In IdentityNow, a source can support various provisioning operations. For example, when a joiner is added to a source, this may trigger both CREATE and UPDATE provisioning operations. Each usage type is considered a provisioning policy. A source can have any number of these provisioning policies defined. These are the common usage types: CREATE - This usage type relates to \'Create Account Profile\', the provisioning template for the account to be created. For example, this would be used for a joiner on a source. UPDATE - This usage type relates to \'Update Account Profile\', the provisioning template for the \'Update\' connector operations. For example, this would be used for an attribute sync on a source. ENABLE - This usage type relates to \'Enable Account Profile\', the provisioning template for the account to be enabled. For example, this could be used for a joiner on a source once the joiner\'s account is created. DISABLE - This usage type relates to \'Disable Account Profile\', the provisioning template for the account to be disabled. For example, this could be used when a leaver is removed temporarily from a source. You can use these usage types for all your provisioning policy needs.
|
|
437
|
+
* @export
|
|
438
|
+
* @enum {string}
|
|
439
|
+
*/
|
|
440
|
+
export declare const UsageType: {
|
|
441
|
+
readonly Create: "CREATE";
|
|
442
|
+
readonly Update: "UPDATE";
|
|
443
|
+
readonly Enable: "ENABLE";
|
|
444
|
+
readonly Disable: "DISABLE";
|
|
445
|
+
readonly Delete: "DELETE";
|
|
446
|
+
readonly Assign: "ASSIGN";
|
|
447
|
+
readonly Unassign: "UNASSIGN";
|
|
448
|
+
readonly CreateGroup: "CREATE_GROUP";
|
|
449
|
+
readonly UpdateGroup: "UPDATE_GROUP";
|
|
450
|
+
readonly DeleteGroup: "DELETE_GROUP";
|
|
451
|
+
readonly Register: "REGISTER";
|
|
452
|
+
readonly CreateIdentity: "CREATE_IDENTITY";
|
|
453
|
+
readonly UpdateIdentity: "UPDATE_IDENTITY";
|
|
454
|
+
readonly EditGroup: "EDIT_GROUP";
|
|
455
|
+
readonly Unlock: "UNLOCK";
|
|
456
|
+
readonly ChangePassword: "CHANGE_PASSWORD";
|
|
457
|
+
};
|
|
458
|
+
export type UsageType = typeof UsageType[keyof typeof UsageType];
|
|
346
459
|
/**
|
|
347
460
|
*
|
|
348
461
|
* @export
|
package/dist/connectors/api.js
CHANGED
|
@@ -78,7 +78,7 @@ var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
|
78
78
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
79
79
|
};
|
|
80
80
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
81
|
-
exports.PutConnectorTranslationsV1LocaleEnum = exports.GetConnectorV1LocaleEnum = exports.GetConnectorTranslationsV1LocaleEnum = exports.GetConnectorListV1LocaleEnum = exports.ConnectorsApi = exports.ConnectorsApiFactory = exports.ConnectorsApiFp = exports.ConnectorsApiAxiosParamCreator = exports.V3CreateConnectorDtoStatusEnum = exports.V3ConnectorDtoStatusEnum = exports.UpdateDetailStatusEnum = exports.LocaleOrigin = exports.JsonPatchOperationOpEnum = exports.ConnectorDetailStatusEnum = void 0;
|
|
81
|
+
exports.PutConnectorTranslationsV1LocaleEnum = exports.GetConnectorV1LocaleEnum = exports.GetConnectorTranslationsV1LocaleEnum = exports.GetConnectorListV1LocaleEnum = exports.ConnectorsApi = exports.ConnectorsApiFactory = exports.ConnectorsApiFp = exports.ConnectorsApiAxiosParamCreator = exports.V3CreateConnectorDtoStatusEnum = exports.V3ConnectorDtoStatusEnum = exports.UsageType = exports.UpdateDetailStatusEnum = exports.LocaleOrigin = exports.JsonPatchOperationOpEnum = exports.FieldDetailsDtoTypeEnum = exports.ConnectorDetailStatusEnum = void 0;
|
|
82
82
|
var axios_1 = __importDefault(require("axios"));
|
|
83
83
|
// Some imports not used depending on template conditions
|
|
84
84
|
// @ts-ignore
|
|
@@ -91,6 +91,14 @@ exports.ConnectorDetailStatusEnum = {
|
|
|
91
91
|
Demo: 'DEMO',
|
|
92
92
|
Released: 'RELEASED'
|
|
93
93
|
};
|
|
94
|
+
exports.FieldDetailsDtoTypeEnum = {
|
|
95
|
+
String: 'string',
|
|
96
|
+
Int: 'int',
|
|
97
|
+
Long: 'long',
|
|
98
|
+
Date: 'date',
|
|
99
|
+
Boolean: 'boolean',
|
|
100
|
+
Secret: 'secret'
|
|
101
|
+
};
|
|
94
102
|
exports.JsonPatchOperationOpEnum = {
|
|
95
103
|
Add: 'add',
|
|
96
104
|
Remove: 'remove',
|
|
@@ -114,6 +122,29 @@ exports.UpdateDetailStatusEnum = {
|
|
|
114
122
|
Unchanged: 'UNCHANGED',
|
|
115
123
|
Skipped: 'SKIPPED'
|
|
116
124
|
};
|
|
125
|
+
/**
|
|
126
|
+
* The type of provisioning policy usage. In IdentityNow, a source can support various provisioning operations. For example, when a joiner is added to a source, this may trigger both CREATE and UPDATE provisioning operations. Each usage type is considered a provisioning policy. A source can have any number of these provisioning policies defined. These are the common usage types: CREATE - This usage type relates to \'Create Account Profile\', the provisioning template for the account to be created. For example, this would be used for a joiner on a source. UPDATE - This usage type relates to \'Update Account Profile\', the provisioning template for the \'Update\' connector operations. For example, this would be used for an attribute sync on a source. ENABLE - This usage type relates to \'Enable Account Profile\', the provisioning template for the account to be enabled. For example, this could be used for a joiner on a source once the joiner\'s account is created. DISABLE - This usage type relates to \'Disable Account Profile\', the provisioning template for the account to be disabled. For example, this could be used when a leaver is removed temporarily from a source. You can use these usage types for all your provisioning policy needs.
|
|
127
|
+
* @export
|
|
128
|
+
* @enum {string}
|
|
129
|
+
*/
|
|
130
|
+
exports.UsageType = {
|
|
131
|
+
Create: 'CREATE',
|
|
132
|
+
Update: 'UPDATE',
|
|
133
|
+
Enable: 'ENABLE',
|
|
134
|
+
Disable: 'DISABLE',
|
|
135
|
+
Delete: 'DELETE',
|
|
136
|
+
Assign: 'ASSIGN',
|
|
137
|
+
Unassign: 'UNASSIGN',
|
|
138
|
+
CreateGroup: 'CREATE_GROUP',
|
|
139
|
+
UpdateGroup: 'UPDATE_GROUP',
|
|
140
|
+
DeleteGroup: 'DELETE_GROUP',
|
|
141
|
+
Register: 'REGISTER',
|
|
142
|
+
CreateIdentity: 'CREATE_IDENTITY',
|
|
143
|
+
UpdateIdentity: 'UPDATE_IDENTITY',
|
|
144
|
+
EditGroup: 'EDIT_GROUP',
|
|
145
|
+
Unlock: 'UNLOCK',
|
|
146
|
+
ChangePassword: 'CHANGE_PASSWORD'
|
|
147
|
+
};
|
|
117
148
|
exports.V3ConnectorDtoStatusEnum = {
|
|
118
149
|
Deprecated: 'DEPRECATED',
|
|
119
150
|
Development: 'DEVELOPMENT',
|