sailpoint-api-client 1.7.0 → 1.7.5

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.
Files changed (49) hide show
  1. package/beta/.openapi-generator/VERSION +1 -1
  2. package/beta/README.md +2 -2
  3. package/beta/api.ts +2593 -256
  4. package/beta/common.ts +2 -2
  5. package/beta/package.json +1 -1
  6. package/dist/beta/api.d.ts +1253 -109
  7. package/dist/beta/api.js +3218 -425
  8. package/dist/beta/api.js.map +1 -1
  9. package/dist/beta/common.js +1 -1
  10. package/dist/index.spec.js +3 -3
  11. package/dist/index.spec.js.map +1 -1
  12. package/dist/v2024/api.d.ts +481 -129
  13. package/dist/v2024/api.js +3695 -738
  14. package/dist/v2024/api.js.map +1 -1
  15. package/dist/v2024/common.js +1 -1
  16. package/dist/v2025/api.d.ts +5063 -240
  17. package/dist/v2025/api.js +7783 -1068
  18. package/dist/v2025/api.js.map +1 -1
  19. package/dist/v2025/common.js +1 -1
  20. package/dist/v2026/api.d.ts +23 -15
  21. package/dist/v2026/api.js +22 -14
  22. package/dist/v2026/api.js.map +1 -1
  23. package/dist/v2026/common.js +1 -1
  24. package/dist/v3/api.d.ts +197 -16
  25. package/dist/v3/api.js +1279 -289
  26. package/dist/v3/api.js.map +1 -1
  27. package/dist/v3/common.js +1 -1
  28. package/index.spec.ts +3 -3
  29. package/package.json +15 -2
  30. package/v2024/.openapi-generator/VERSION +1 -1
  31. package/v2024/README.md +2 -2
  32. package/v2024/api.ts +1993 -438
  33. package/v2024/common.ts +2 -2
  34. package/v2024/package.json +1 -1
  35. package/v2025/.openapi-generator/VERSION +1 -1
  36. package/v2025/README.md +2 -2
  37. package/v2025/api.ts +8350 -604
  38. package/v2025/common.ts +2 -2
  39. package/v2025/package.json +1 -1
  40. package/v2026/.openapi-generator/VERSION +1 -1
  41. package/v2026/README.md +2 -2
  42. package/v2026/api.ts +23 -15
  43. package/v2026/common.ts +2 -2
  44. package/v2026/package.json +1 -1
  45. package/v3/.openapi-generator/VERSION +1 -1
  46. package/v3/README.md +2 -2
  47. package/v3/api.ts +689 -114
  48. package/v3/common.ts +2 -2
  49. package/v3/package.json +1 -1
package/dist/v3/common.js CHANGED
@@ -250,7 +250,7 @@ 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 headers = __assign(__assign({ 'User-Agent': 'OpenAPI-Generator/1.7.0/ts' }, axiosArgs.axiosOptions.headers), { 'X-SailPoint-SDK': 'typescript-1.7.0' });
253
+ var headers = __assign(__assign({ 'User-Agent': 'OpenAPI-Generator/1.7.5/ts' }, axiosArgs.axiosOptions.headers), { 'X-SailPoint-SDK': 'typescript-1.7.5' });
254
254
  if (!configuration.experimental && ("X-SailPoint-Experimental" in headers)) {
255
255
  throw new Error("You are using Experimental APIs. Set configuration.experimental = True to enable these APIs in the SDK.");
256
256
  }
package/index.spec.ts CHANGED
@@ -28,7 +28,7 @@ describe('Test_v3', () => {
28
28
 
29
29
  expect(resp.data.length).toStrictEqual(100)
30
30
  expect(resp.status).toStrictEqual(200)
31
- }, 30000)
31
+ }, 120000)
32
32
 
33
33
  it('Test List Transforms', async () => {
34
34
  let apiConfig = new Configuration()
@@ -154,7 +154,7 @@ describe('Test_v2024', () => {
154
154
 
155
155
  expect(resp.data.length).toStrictEqual(100)
156
156
  expect(resp.status).toStrictEqual(200)
157
- }, 30000)
157
+ }, 120000)
158
158
  })
159
159
 
160
160
 
@@ -177,7 +177,7 @@ describe('Test_v2025', () => {
177
177
 
178
178
  expect(resp.data.length).toStrictEqual(100)
179
179
  expect(resp.status).toStrictEqual(200)
180
- }, 30000)
180
+ }, 120000)
181
181
  })
182
182
 
183
183
  describe('Test_v2026', () => {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "sailpoint-api-client",
3
- "version": "1.7.0",
3
+ "version": "1.7.5",
4
4
  "description": "Official library for using the SailPoint API",
5
5
  "author": "SailPoint DevOps",
6
6
  "repository": {
@@ -50,6 +50,19 @@
50
50
  "preset": "ts-jest",
51
51
  "testEnvironment": "node",
52
52
  "clearMocks": true,
53
- "collectCoverage": false
53
+ "collectCoverage": false,
54
+ "testPathIgnorePatterns": [
55
+ "/dist/",
56
+ "/node_modules/"
57
+ ],
58
+ "modulePathIgnorePatterns": [
59
+ "<rootDir>/beta/",
60
+ "<rootDir>/generic/",
61
+ "<rootDir>/v3/",
62
+ "<rootDir>/v2024/",
63
+ "<rootDir>/v2025/",
64
+ "<rootDir>/v2026/",
65
+ "<rootDir>/dist/"
66
+ ]
54
67
  }
55
68
  }
@@ -1 +1 @@
1
- 7.11.0
1
+ 7.12.0
package/v2024/README.md CHANGED
@@ -1,4 +1,4 @@
1
- ## sailpoint-sdk@1.7.0
1
+ ## sailpoint-sdk@1.7.5
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.7.0 --save
39
+ npm install sailpoint-sdk@1.7.5 --save
40
40
  ```
41
41
 
42
42
  _unPublished (not recommended):_