sailpoint-api-client 1.3.2 → 1.3.3
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 +2381 -555
- package/beta/base.ts +2 -2
- package/beta/common.ts +4 -4
- package/beta/configuration.ts +2 -2
- package/beta/index.ts +2 -2
- package/beta/package.json +1 -1
- package/dist/beta/api.d.ts +1602 -350
- package/dist/beta/api.js +1901 -577
- package/dist/beta/api.js.map +1 -1
- package/dist/beta/base.d.ts +2 -2
- package/dist/beta/base.js +2 -2
- package/dist/beta/common.d.ts +2 -2
- package/dist/beta/common.js +4 -4
- package/dist/beta/configuration.d.ts +2 -2
- package/dist/beta/configuration.js +2 -2
- package/dist/beta/index.d.ts +2 -2
- package/dist/beta/index.js +2 -2
- package/dist/v3/api.d.ts +561 -50
- package/dist/v3/api.js +656 -51
- package/dist/v3/api.js.map +1 -1
- package/dist/v3/base.d.ts +2 -2
- package/dist/v3/base.js +2 -2
- package/dist/v3/common.d.ts +2 -2
- package/dist/v3/common.js +4 -4
- package/dist/v3/configuration.d.ts +2 -2
- package/dist/v3/configuration.js +2 -2
- package/dist/v3/index.d.ts +2 -2
- package/dist/v3/index.js +2 -2
- package/package.json +1 -1
- package/v3/README.md +2 -2
- package/v3/api.ts +815 -51
- package/v3/base.ts +2 -2
- package/v3/common.ts +4 -4
- package/v3/configuration.ts +2 -2
- package/v3/index.ts +2 -2
- package/v3/package.json +1 -1
package/dist/beta/base.d.ts
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
/**
|
|
2
|
-
*
|
|
3
|
-
* Use these APIs to interact with the
|
|
2
|
+
* Identity Security Cloud Beta API
|
|
3
|
+
* Use these APIs to interact with the Identity Security Cloud platform to achieve repeatable, automated processes with greater scalability. These APIs are in beta and are subject to change. We encourage you to join the SailPoint Developer Community forum at https://developer.sailpoint.com/discuss to connect with other developers using our APIs.
|
|
4
4
|
*
|
|
5
5
|
* The version of the OpenAPI document: 3.1.0-beta
|
|
6
6
|
*
|
package/dist/beta/base.js
CHANGED
|
@@ -2,8 +2,8 @@
|
|
|
2
2
|
/* tslint:disable */
|
|
3
3
|
/* eslint-disable */
|
|
4
4
|
/**
|
|
5
|
-
*
|
|
6
|
-
* Use these APIs to interact with the
|
|
5
|
+
* Identity Security Cloud Beta API
|
|
6
|
+
* Use these APIs to interact with the Identity Security Cloud platform to achieve repeatable, automated processes with greater scalability. These APIs are in beta and are subject to change. We encourage you to join the SailPoint Developer Community forum at https://developer.sailpoint.com/discuss to connect with other developers using our APIs.
|
|
7
7
|
*
|
|
8
8
|
* The version of the OpenAPI document: 3.1.0-beta
|
|
9
9
|
*
|
package/dist/beta/common.d.ts
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
/**
|
|
2
|
-
*
|
|
3
|
-
* Use these APIs to interact with the
|
|
2
|
+
* Identity Security Cloud Beta API
|
|
3
|
+
* Use these APIs to interact with the Identity Security Cloud platform to achieve repeatable, automated processes with greater scalability. These APIs are in beta and are subject to change. We encourage you to join the SailPoint Developer Community forum at https://developer.sailpoint.com/discuss to connect with other developers using our APIs.
|
|
4
4
|
*
|
|
5
5
|
* The version of the OpenAPI document: 3.1.0-beta
|
|
6
6
|
*
|
package/dist/beta/common.js
CHANGED
|
@@ -2,8 +2,8 @@
|
|
|
2
2
|
/* tslint:disable */
|
|
3
3
|
/* eslint-disable */
|
|
4
4
|
/**
|
|
5
|
-
*
|
|
6
|
-
* Use these APIs to interact with the
|
|
5
|
+
* Identity Security Cloud Beta API
|
|
6
|
+
* Use these APIs to interact with the Identity Security Cloud platform to achieve repeatable, automated processes with greater scalability. These APIs are in beta and are subject to change. We encourage you to join the SailPoint Developer Community forum at https://developer.sailpoint.com/discuss to connect with other developers using our APIs.
|
|
7
7
|
*
|
|
8
8
|
* The version of the OpenAPI document: 3.1.0-beta
|
|
9
9
|
*
|
|
@@ -241,8 +241,8 @@ var createRequestFunction = function (axiosArgs, globalAxios, BASE_PATH, configu
|
|
|
241
241
|
if (axios === void 0) { axios = globalAxios; }
|
|
242
242
|
if (basePath === void 0) { basePath = BASE_PATH; }
|
|
243
243
|
(0, axios_retry_1.default)(globalAxios, configuration.retriesConfig);
|
|
244
|
-
axiosArgs.axiosOptions.headers['X-SailPoint-SDK'] = 'typescript-1.3.
|
|
245
|
-
axiosArgs.axiosOptions.headers['User-Agent'] = 'OpenAPI-Generator/1.3.
|
|
244
|
+
axiosArgs.axiosOptions.headers['X-SailPoint-SDK'] = 'typescript-1.3.3';
|
|
245
|
+
axiosArgs.axiosOptions.headers['User-Agent'] = 'OpenAPI-Generator/1.3.3/ts';
|
|
246
246
|
var axiosRequestArgs = __assign(__assign({}, axiosArgs.axiosOptions), { url: ((configuration === null || configuration === void 0 ? void 0 : configuration.basePath) + "/beta" || basePath) + axiosArgs.url });
|
|
247
247
|
return axios.request(axiosRequestArgs);
|
|
248
248
|
};
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
/**
|
|
2
|
-
*
|
|
3
|
-
* Use these APIs to interact with the
|
|
2
|
+
* Identity Security Cloud Beta API
|
|
3
|
+
* Use these APIs to interact with the Identity Security Cloud platform to achieve repeatable, automated processes with greater scalability. These APIs are in beta and are subject to change. We encourage you to join the SailPoint Developer Community forum at https://developer.sailpoint.com/discuss to connect with other developers using our APIs.
|
|
4
4
|
*
|
|
5
5
|
* The version of the OpenAPI document: 3.1.0-beta
|
|
6
6
|
*
|
|
@@ -2,8 +2,8 @@
|
|
|
2
2
|
/* tslint:disable */
|
|
3
3
|
/* eslint-disable */
|
|
4
4
|
/**
|
|
5
|
-
*
|
|
6
|
-
* Use these APIs to interact with the
|
|
5
|
+
* Identity Security Cloud Beta API
|
|
6
|
+
* Use these APIs to interact with the Identity Security Cloud platform to achieve repeatable, automated processes with greater scalability. These APIs are in beta and are subject to change. We encourage you to join the SailPoint Developer Community forum at https://developer.sailpoint.com/discuss to connect with other developers using our APIs.
|
|
7
7
|
*
|
|
8
8
|
* The version of the OpenAPI document: 3.1.0-beta
|
|
9
9
|
*
|
package/dist/beta/index.d.ts
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
/**
|
|
2
|
-
*
|
|
3
|
-
* Use these APIs to interact with the
|
|
2
|
+
* Identity Security Cloud Beta API
|
|
3
|
+
* Use these APIs to interact with the Identity Security Cloud platform to achieve repeatable, automated processes with greater scalability. These APIs are in beta and are subject to change. We encourage you to join the SailPoint Developer Community forum at https://developer.sailpoint.com/discuss to connect with other developers using our APIs.
|
|
4
4
|
*
|
|
5
5
|
* The version of the OpenAPI document: 3.1.0-beta
|
|
6
6
|
*
|
package/dist/beta/index.js
CHANGED
|
@@ -2,8 +2,8 @@
|
|
|
2
2
|
/* tslint:disable */
|
|
3
3
|
/* eslint-disable */
|
|
4
4
|
/**
|
|
5
|
-
*
|
|
6
|
-
* Use these APIs to interact with the
|
|
5
|
+
* Identity Security Cloud Beta API
|
|
6
|
+
* Use these APIs to interact with the Identity Security Cloud platform to achieve repeatable, automated processes with greater scalability. These APIs are in beta and are subject to change. We encourage you to join the SailPoint Developer Community forum at https://developer.sailpoint.com/discuss to connect with other developers using our APIs.
|
|
7
7
|
*
|
|
8
8
|
* The version of the OpenAPI document: 3.1.0-beta
|
|
9
9
|
*
|