@emilgroup/tenant-sdk-node 1.30.0 → 1.31.0
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/.openapi-generator/FILES +9 -0
- package/README.md +2 -2
- package/api/invite-users-api.ts +4 -4
- package/api/organization-migration-api.ts +683 -0
- package/api/users-api.ts +4 -4
- package/api.ts +2 -0
- package/base.ts +45 -3
- package/dist/api/invite-users-api.d.ts +4 -4
- package/dist/api/invite-users-api.js +3 -3
- package/dist/api/organization-migration-api.d.ts +385 -0
- package/dist/api/organization-migration-api.js +639 -0
- package/dist/api/users-api.d.ts +4 -4
- package/dist/api/users-api.js +3 -3
- package/dist/api.d.ts +1 -0
- package/dist/api.js +1 -0
- package/dist/base.d.ts +11 -2
- package/dist/base.js +42 -3
- package/dist/models/create-organization-migration-request-dto.d.ts +42 -0
- package/dist/models/create-organization-migration-request-dto.js +15 -0
- package/dist/models/create-organization-migration-response-class.d.ts +25 -0
- package/dist/models/create-organization-migration-response-class.js +15 -0
- package/dist/models/create-resources-migration-request-dto.d.ts +36 -0
- package/dist/models/create-resources-migration-request-dto.js +15 -0
- package/dist/models/get-organization-migration-response-class.d.ts +25 -0
- package/dist/models/get-organization-migration-response-class.js +15 -0
- package/dist/models/index.d.ts +8 -0
- package/dist/models/index.js +8 -0
- package/dist/models/link-user-with-partner-request-dto-rest.d.ts +6 -0
- package/dist/models/list-organization-migrations-response-class.d.ts +43 -0
- package/dist/models/list-organization-migrations-response-class.js +15 -0
- package/dist/models/organization-migration-class.d.ts +81 -0
- package/dist/models/organization-migration-class.js +24 -0
- package/dist/models/revert-organization-migration-request-dto.d.ts +30 -0
- package/dist/models/revert-organization-migration-request-dto.js +15 -0
- package/dist/models/revert-organization-migration-response-class.d.ts +25 -0
- package/dist/models/revert-organization-migration-response-class.js +15 -0
- package/models/create-organization-migration-request-dto.ts +48 -0
- package/models/create-organization-migration-response-class.ts +31 -0
- package/models/create-resources-migration-request-dto.ts +42 -0
- package/models/get-organization-migration-response-class.ts +31 -0
- package/models/index.ts +8 -0
- package/models/link-user-with-partner-request-dto-rest.ts +6 -0
- package/models/list-organization-migrations-response-class.ts +49 -0
- package/models/organization-migration-class.ts +90 -0
- package/models/revert-organization-migration-request-dto.ts +36 -0
- package/models/revert-organization-migration-response-class.ts +31 -0
- package/package.json +1 -1
package/.openapi-generator/FILES
CHANGED
|
@@ -13,6 +13,7 @@ api/health-check-api.ts
|
|
|
13
13
|
api/invite-organizations-api.ts
|
|
14
14
|
api/invite-users-api.ts
|
|
15
15
|
api/list-organization-invitations-api.ts
|
|
16
|
+
api/organization-migration-api.ts
|
|
16
17
|
api/organizations-api.ts
|
|
17
18
|
api/re-invite-an-organization-api.ts
|
|
18
19
|
api/roles-api.ts
|
|
@@ -35,6 +36,9 @@ models/create-dashboard-request-dto.ts
|
|
|
35
36
|
models/create-dashboard-response-class.ts
|
|
36
37
|
models/create-data-report-request-dto.ts
|
|
37
38
|
models/create-data-report-response-class.ts
|
|
39
|
+
models/create-organization-migration-request-dto.ts
|
|
40
|
+
models/create-organization-migration-response-class.ts
|
|
41
|
+
models/create-resources-migration-request-dto.ts
|
|
38
42
|
models/create-tenant-request-dto.ts
|
|
39
43
|
models/custom-field-dto.ts
|
|
40
44
|
models/custom-schema-class.ts
|
|
@@ -57,6 +61,7 @@ models/get-dashboard-group-response-class.ts
|
|
|
57
61
|
models/get-dashboard-response-class.ts
|
|
58
62
|
models/get-data-report-response-class.ts
|
|
59
63
|
models/get-embedded-url-response-class.ts
|
|
64
|
+
models/get-organization-migration-response-class.ts
|
|
60
65
|
models/get-organization-response-class.ts
|
|
61
66
|
models/get-settings-response-class.ts
|
|
62
67
|
models/get-user-response-class.ts
|
|
@@ -78,16 +83,20 @@ models/list-dashboards-response-class.ts
|
|
|
78
83
|
models/list-data-reports-response-class.ts
|
|
79
84
|
models/list-invites-response-class.ts
|
|
80
85
|
models/list-org-invitations-response-class.ts
|
|
86
|
+
models/list-organization-migrations-response-class.ts
|
|
81
87
|
models/list-organizations-response-class.ts
|
|
82
88
|
models/list-roles-response-class.ts
|
|
83
89
|
models/list-users-response-class.ts
|
|
84
90
|
models/org-invitation-class.ts
|
|
85
91
|
models/org-invitation-response-class.ts
|
|
86
92
|
models/organization-class.ts
|
|
93
|
+
models/organization-migration-class.ts
|
|
87
94
|
models/permission-class.ts
|
|
88
95
|
models/publish-dashboard-request-dto.ts
|
|
89
96
|
models/re-invite-org-request-dto.ts
|
|
90
97
|
models/revert-analysis-request-dto.ts
|
|
98
|
+
models/revert-organization-migration-request-dto.ts
|
|
99
|
+
models/revert-organization-migration-response-class.ts
|
|
91
100
|
models/role-class.ts
|
|
92
101
|
models/run-data-report-request-dto.ts
|
|
93
102
|
models/run-data-report-response-class.ts
|
package/README.md
CHANGED
|
@@ -17,11 +17,11 @@ Although this package can be used in both TypeScript and JavaScript, it is inten
|
|
|
17
17
|
Navigate to the folder of your consuming project and run one of the following commands:
|
|
18
18
|
|
|
19
19
|
```
|
|
20
|
-
npm install @emilgroup/tenant-sdk-node@1.
|
|
20
|
+
npm install @emilgroup/tenant-sdk-node@1.31.0 --save
|
|
21
21
|
```
|
|
22
22
|
or
|
|
23
23
|
```
|
|
24
|
-
yarn add @emilgroup/tenant-sdk-node@1.
|
|
24
|
+
yarn add @emilgroup/tenant-sdk-node@1.31.0
|
|
25
25
|
```
|
|
26
26
|
|
|
27
27
|
And then you can import `UsersApi`.
|
package/api/invite-users-api.ts
CHANGED
|
@@ -193,7 +193,7 @@ export const InviteUsersApiAxiosParamCreator = function (configuration?: Configu
|
|
|
193
193
|
* @param {string} [pageToken] A cursor for use in pagination. pageToken is an ID that defines your place in the list. For instance, if you make a list request and receive 100 objects and pageToken=1, your subsequent call can include pageToken=2 in order to fetch the next page of the list.
|
|
194
194
|
* @param {string} [filter] Filter the response by one or multiple fields. In general, fetching filtered responses will conserve bandwidth and reduce response time.<br/> <br/> <i>Allowed values: id, email, token, organizationId, ern, partnerCode</i>
|
|
195
195
|
* @param {string} [search] To search the list by any field, pass search=xxx to fetch the result.
|
|
196
|
-
* @param {string} [order] Order allows you to specify the desired order of entities retrieved from the server by ascending (ASC) or descending (DESC) order.<br/> <br/> <i>Allowed values: email, expiresOn</i>
|
|
196
|
+
* @param {string} [order] Order allows you to specify the desired order of entities retrieved from the server by ascending (ASC) or descending (DESC) order.<br/> <br/> <i>Allowed values: id, email, expiresOn</i>
|
|
197
197
|
* @param {string} [expand] Expand to fetch additional information about the list items. Expanding resources can reduce the number of API calls required to accomplish a task. Use with discretion as some expanded fields can drastically increase payload size.<br/> <br/> <i>Allowed values: organizations<i>
|
|
198
198
|
* @param {string} [filters] Filters the response by one or multiple fields. Advanced filter functionality allows you to perform more complex filtering operations.<br/> <br/> <i>Allowed values: id, email, token, organizationId, ern, partnerCode</i>
|
|
199
199
|
* @param {*} [options] Override http request option.
|
|
@@ -315,7 +315,7 @@ export const InviteUsersApiFp = function(configuration?: Configuration) {
|
|
|
315
315
|
* @param {string} [pageToken] A cursor for use in pagination. pageToken is an ID that defines your place in the list. For instance, if you make a list request and receive 100 objects and pageToken=1, your subsequent call can include pageToken=2 in order to fetch the next page of the list.
|
|
316
316
|
* @param {string} [filter] Filter the response by one or multiple fields. In general, fetching filtered responses will conserve bandwidth and reduce response time.<br/> <br/> <i>Allowed values: id, email, token, organizationId, ern, partnerCode</i>
|
|
317
317
|
* @param {string} [search] To search the list by any field, pass search=xxx to fetch the result.
|
|
318
|
-
* @param {string} [order] Order allows you to specify the desired order of entities retrieved from the server by ascending (ASC) or descending (DESC) order.<br/> <br/> <i>Allowed values: email, expiresOn</i>
|
|
318
|
+
* @param {string} [order] Order allows you to specify the desired order of entities retrieved from the server by ascending (ASC) or descending (DESC) order.<br/> <br/> <i>Allowed values: id, email, expiresOn</i>
|
|
319
319
|
* @param {string} [expand] Expand to fetch additional information about the list items. Expanding resources can reduce the number of API calls required to accomplish a task. Use with discretion as some expanded fields can drastically increase payload size.<br/> <br/> <i>Allowed values: organizations<i>
|
|
320
320
|
* @param {string} [filters] Filters the response by one or multiple fields. Advanced filter functionality allows you to perform more complex filtering operations.<br/> <br/> <i>Allowed values: id, email, token, organizationId, ern, partnerCode</i>
|
|
321
321
|
* @param {*} [options] Override http request option.
|
|
@@ -376,7 +376,7 @@ export const InviteUsersApiFactory = function (configuration?: Configuration, ba
|
|
|
376
376
|
* @param {string} [pageToken] A cursor for use in pagination. pageToken is an ID that defines your place in the list. For instance, if you make a list request and receive 100 objects and pageToken=1, your subsequent call can include pageToken=2 in order to fetch the next page of the list.
|
|
377
377
|
* @param {string} [filter] Filter the response by one or multiple fields. In general, fetching filtered responses will conserve bandwidth and reduce response time.<br/> <br/> <i>Allowed values: id, email, token, organizationId, ern, partnerCode</i>
|
|
378
378
|
* @param {string} [search] To search the list by any field, pass search=xxx to fetch the result.
|
|
379
|
-
* @param {string} [order] Order allows you to specify the desired order of entities retrieved from the server by ascending (ASC) or descending (DESC) order.<br/> <br/> <i>Allowed values: email, expiresOn</i>
|
|
379
|
+
* @param {string} [order] Order allows you to specify the desired order of entities retrieved from the server by ascending (ASC) or descending (DESC) order.<br/> <br/> <i>Allowed values: id, email, expiresOn</i>
|
|
380
380
|
* @param {string} [expand] Expand to fetch additional information about the list items. Expanding resources can reduce the number of API calls required to accomplish a task. Use with discretion as some expanded fields can drastically increase payload size.<br/> <br/> <i>Allowed values: organizations<i>
|
|
381
381
|
* @param {string} [filters] Filters the response by one or multiple fields. Advanced filter functionality allows you to perform more complex filtering operations.<br/> <br/> <i>Allowed values: id, email, token, organizationId, ern, partnerCode</i>
|
|
382
382
|
* @param {*} [options] Override http request option.
|
|
@@ -493,7 +493,7 @@ export interface InviteUsersApiListInvitesRequest {
|
|
|
493
493
|
readonly search?: string
|
|
494
494
|
|
|
495
495
|
/**
|
|
496
|
-
* Order allows you to specify the desired order of entities retrieved from the server by ascending (ASC) or descending (DESC) order.<br/> <br/> <i>Allowed values: email, expiresOn</i>
|
|
496
|
+
* Order allows you to specify the desired order of entities retrieved from the server by ascending (ASC) or descending (DESC) order.<br/> <br/> <i>Allowed values: id, email, expiresOn</i>
|
|
497
497
|
* @type {string}
|
|
498
498
|
* @memberof InviteUsersApiListInvites
|
|
499
499
|
*/
|