@emilgroup/tenant-sdk-node 1.0.2 → 1.1.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.
Files changed (47) hide show
  1. package/README.md +2 -2
  2. package/api/custom-schema-api.ts +16 -16
  3. package/api/data-report-api.ts +20 -20
  4. package/api/data-report-executor-api.ts +4 -4
  5. package/api/invite-organizations-api.ts +8 -8
  6. package/api/invite-users-api.ts +20 -20
  7. package/api/organizations-api.ts +124 -8
  8. package/api/users-api.ts +36 -36
  9. package/base.ts +3 -3
  10. package/dist/api/custom-schema-api.d.ts +16 -16
  11. package/dist/api/custom-schema-api.js +12 -12
  12. package/dist/api/data-report-api.d.ts +20 -20
  13. package/dist/api/data-report-api.js +15 -15
  14. package/dist/api/data-report-executor-api.d.ts +4 -4
  15. package/dist/api/data-report-executor-api.js +3 -3
  16. package/dist/api/invite-organizations-api.d.ts +8 -8
  17. package/dist/api/invite-organizations-api.js +6 -6
  18. package/dist/api/invite-users-api.d.ts +20 -20
  19. package/dist/api/invite-users-api.js +15 -15
  20. package/dist/api/organizations-api.d.ts +72 -8
  21. package/dist/api/organizations-api.js +105 -6
  22. package/dist/api/users-api.d.ts +36 -36
  23. package/dist/api/users-api.js +27 -27
  24. package/dist/base.d.ts +1 -1
  25. package/dist/base.js +3 -3
  26. package/dist/models/assign-user-roles-request-dto.d.ts +2 -2
  27. package/dist/models/create-custom-schema-request-dto.d.ts +1 -0
  28. package/dist/models/create-custom-schema-request-dto.js +2 -1
  29. package/dist/models/invite-org-request-dto.d.ts +2 -14
  30. package/dist/models/invite-org-request-dto.js +0 -6
  31. package/dist/models/invite-user-request-dto.d.ts +2 -2
  32. package/dist/models/invite-users-request-dto.d.ts +2 -2
  33. package/dist/models/org-invitation-class.d.ts +0 -12
  34. package/dist/models/org-invitation-class.js +0 -6
  35. package/dist/models/organization-class.d.ts +6 -12
  36. package/dist/models/organization-class.js +0 -6
  37. package/dist/models/update-custom-schema-request-dto.d.ts +1 -0
  38. package/dist/models/update-custom-schema-request-dto.js +2 -1
  39. package/models/assign-user-roles-request-dto.ts +2 -2
  40. package/models/create-custom-schema-request-dto.ts +2 -1
  41. package/models/invite-org-request-dto.ts +2 -17
  42. package/models/invite-user-request-dto.ts +2 -2
  43. package/models/invite-users-request-dto.ts +2 -2
  44. package/models/org-invitation-class.ts +0 -15
  45. package/models/organization-class.ts +6 -15
  46. package/models/update-custom-schema-request-dto.ts +2 -1
  47. package/package.json +1 -1
@@ -24,7 +24,7 @@ export declare const InviteOrganizationsApiAxiosParamCreator: (configuration?: C
24
24
  * This sends an email to invite an organization.
25
25
  * @summary Invite an organization
26
26
  * @param {InviteOrgRequestDto} inviteOrgRequestDto
27
- * @param {string} [authorization] Bearer Token
27
+ * @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
28
28
  * @param {*} [options] Override http request option.
29
29
  * @throws {RequiredError}
30
30
  */
@@ -32,7 +32,7 @@ export declare const InviteOrganizationsApiAxiosParamCreator: (configuration?: C
32
32
  /**
33
33
  * Returns a list of org invitations you have previously created. The org invitations are returned in sorted order, with the oldest one appearing first. For more information about pagination, read the Pagination documentation.
34
34
  * @summary List org invitations
35
- * @param {string} [authorization] Bearer Token
35
+ * @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
36
36
  * @param {any} [pageSize] A limit on the number of objects to be returned. Limit ranges between 1 and 100. Default: 10.
37
37
  * @param {any} [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.
38
38
  * @param {any} [filter] Filter the response by one or multiple fields. In general, fetching filtered responses will conserve bandwidth and reduce response time.
@@ -53,7 +53,7 @@ export declare const InviteOrganizationsApiFp: (configuration?: Configuration) =
53
53
  * This sends an email to invite an organization.
54
54
  * @summary Invite an organization
55
55
  * @param {InviteOrgRequestDto} inviteOrgRequestDto
56
- * @param {string} [authorization] Bearer Token
56
+ * @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
57
57
  * @param {*} [options] Override http request option.
58
58
  * @throws {RequiredError}
59
59
  */
@@ -61,7 +61,7 @@ export declare const InviteOrganizationsApiFp: (configuration?: Configuration) =
61
61
  /**
62
62
  * Returns a list of org invitations you have previously created. The org invitations are returned in sorted order, with the oldest one appearing first. For more information about pagination, read the Pagination documentation.
63
63
  * @summary List org invitations
64
- * @param {string} [authorization] Bearer Token
64
+ * @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
65
65
  * @param {any} [pageSize] A limit on the number of objects to be returned. Limit ranges between 1 and 100. Default: 10.
66
66
  * @param {any} [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.
67
67
  * @param {any} [filter] Filter the response by one or multiple fields. In general, fetching filtered responses will conserve bandwidth and reduce response time.
@@ -82,7 +82,7 @@ export declare const InviteOrganizationsApiFactory: (configuration?: Configurati
82
82
  * This sends an email to invite an organization.
83
83
  * @summary Invite an organization
84
84
  * @param {InviteOrgRequestDto} inviteOrgRequestDto
85
- * @param {string} [authorization] Bearer Token
85
+ * @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
86
86
  * @param {*} [options] Override http request option.
87
87
  * @throws {RequiredError}
88
88
  */
@@ -90,7 +90,7 @@ export declare const InviteOrganizationsApiFactory: (configuration?: Configurati
90
90
  /**
91
91
  * Returns a list of org invitations you have previously created. The org invitations are returned in sorted order, with the oldest one appearing first. For more information about pagination, read the Pagination documentation.
92
92
  * @summary List org invitations
93
- * @param {string} [authorization] Bearer Token
93
+ * @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
94
94
  * @param {any} [pageSize] A limit on the number of objects to be returned. Limit ranges between 1 and 100. Default: 10.
95
95
  * @param {any} [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.
96
96
  * @param {any} [filter] Filter the response by one or multiple fields. In general, fetching filtered responses will conserve bandwidth and reduce response time.
@@ -115,7 +115,7 @@ export interface InviteOrganizationsApiInviteOrgRequest {
115
115
  */
116
116
  readonly inviteOrgRequestDto: InviteOrgRequestDto;
117
117
  /**
118
- * Bearer Token
118
+ * Bearer Token: provided by the login endpoint under the name accessToken.
119
119
  * @type {string}
120
120
  * @memberof InviteOrganizationsApiInviteOrg
121
121
  */
@@ -128,7 +128,7 @@ export interface InviteOrganizationsApiInviteOrgRequest {
128
128
  */
129
129
  export interface InviteOrganizationsApiListOrgInvitationsRequest {
130
130
  /**
131
- * Bearer Token
131
+ * Bearer Token: provided by the login endpoint under the name accessToken.
132
132
  * @type {string}
133
133
  * @memberof InviteOrganizationsApiListOrgInvitations
134
134
  */
@@ -100,7 +100,7 @@ var InviteOrganizationsApiAxiosParamCreator = function (configuration) {
100
100
  * This sends an email to invite an organization.
101
101
  * @summary Invite an organization
102
102
  * @param {InviteOrgRequestDto} inviteOrgRequestDto
103
- * @param {string} [authorization] Bearer Token
103
+ * @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
104
104
  * @param {*} [options] Override http request option.
105
105
  * @throws {RequiredError}
106
106
  */
@@ -148,7 +148,7 @@ var InviteOrganizationsApiAxiosParamCreator = function (configuration) {
148
148
  /**
149
149
  * Returns a list of org invitations you have previously created. The org invitations are returned in sorted order, with the oldest one appearing first. For more information about pagination, read the Pagination documentation.
150
150
  * @summary List org invitations
151
- * @param {string} [authorization] Bearer Token
151
+ * @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
152
152
  * @param {any} [pageSize] A limit on the number of objects to be returned. Limit ranges between 1 and 100. Default: 10.
153
153
  * @param {any} [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.
154
154
  * @param {any} [filter] Filter the response by one or multiple fields. In general, fetching filtered responses will conserve bandwidth and reduce response time.
@@ -227,7 +227,7 @@ var InviteOrganizationsApiFp = function (configuration) {
227
227
  * This sends an email to invite an organization.
228
228
  * @summary Invite an organization
229
229
  * @param {InviteOrgRequestDto} inviteOrgRequestDto
230
- * @param {string} [authorization] Bearer Token
230
+ * @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
231
231
  * @param {*} [options] Override http request option.
232
232
  * @throws {RequiredError}
233
233
  */
@@ -247,7 +247,7 @@ var InviteOrganizationsApiFp = function (configuration) {
247
247
  /**
248
248
  * Returns a list of org invitations you have previously created. The org invitations are returned in sorted order, with the oldest one appearing first. For more information about pagination, read the Pagination documentation.
249
249
  * @summary List org invitations
250
- * @param {string} [authorization] Bearer Token
250
+ * @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
251
251
  * @param {any} [pageSize] A limit on the number of objects to be returned. Limit ranges between 1 and 100. Default: 10.
252
252
  * @param {any} [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.
253
253
  * @param {any} [filter] Filter the response by one or multiple fields. In general, fetching filtered responses will conserve bandwidth and reduce response time.
@@ -284,7 +284,7 @@ var InviteOrganizationsApiFactory = function (configuration, basePath, axios) {
284
284
  * This sends an email to invite an organization.
285
285
  * @summary Invite an organization
286
286
  * @param {InviteOrgRequestDto} inviteOrgRequestDto
287
- * @param {string} [authorization] Bearer Token
287
+ * @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
288
288
  * @param {*} [options] Override http request option.
289
289
  * @throws {RequiredError}
290
290
  */
@@ -294,7 +294,7 @@ var InviteOrganizationsApiFactory = function (configuration, basePath, axios) {
294
294
  /**
295
295
  * Returns a list of org invitations you have previously created. The org invitations are returned in sorted order, with the oldest one appearing first. For more information about pagination, read the Pagination documentation.
296
296
  * @summary List org invitations
297
- * @param {string} [authorization] Bearer Token
297
+ * @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
298
298
  * @param {any} [pageSize] A limit on the number of objects to be returned. Limit ranges between 1 and 100. Default: 10.
299
299
  * @param {any} [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.
300
300
  * @param {any} [filter] Filter the response by one or multiple fields. In general, fetching filtered responses will conserve bandwidth and reduce response time.
@@ -29,7 +29,7 @@ export declare const InviteUsersApiAxiosParamCreator: (configuration?: Configura
29
29
  * Permanently deletes the invited user. Supply the unique id that was returned when you created the invited user and this will delete it.
30
30
  * @summary Delete the invited user
31
31
  * @param {number} id
32
- * @param {string} [authorization] Bearer Token
32
+ * @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
33
33
  * @param {*} [options] Override http request option.
34
34
  * @throws {RequiredError}
35
35
  */
@@ -38,7 +38,7 @@ export declare const InviteUsersApiAxiosParamCreator: (configuration?: Configura
38
38
  * This will deletes the users who has been invited. Supply array of ids that were returned when users has been created and this will delete it.
39
39
  * @summary Delete invited users.
40
40
  * @param {BatchDeleteRequestDto} batchDeleteRequestDto
41
- * @param {string} [authorization] Bearer Token
41
+ * @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
42
42
  * @param {*} [options] Override http request option.
43
43
  * @throws {RequiredError}
44
44
  */
@@ -47,7 +47,7 @@ export declare const InviteUsersApiAxiosParamCreator: (configuration?: Configura
47
47
  * This send an email to invite a user with the specific role/roles.
48
48
  * @summary Invite a user
49
49
  * @param {InviteUserRequestDto} inviteUserRequestDto
50
- * @param {string} [authorization] Bearer Token
50
+ * @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
51
51
  * @param {*} [options] Override http request option.
52
52
  * @throws {RequiredError}
53
53
  */
@@ -56,7 +56,7 @@ export declare const InviteUsersApiAxiosParamCreator: (configuration?: Configura
56
56
  * This send bulk emails to invite users with the specific role/roles.
57
57
  * @summary Invite batch of users
58
58
  * @param {InviteUsersRequestDto} inviteUsersRequestDto
59
- * @param {string} [authorization] Bearer Token
59
+ * @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
60
60
  * @param {*} [options] Override http request option.
61
61
  * @throws {RequiredError}
62
62
  */
@@ -64,7 +64,7 @@ export declare const InviteUsersApiAxiosParamCreator: (configuration?: Configura
64
64
  /**
65
65
  * Returns a list of invited users you have previously created. The invited users are returned in sorted order, with the oldest one appearing first. For more information about pagination, read the Pagination documentation.
66
66
  * @summary List invited users
67
- * @param {string} [authorization] Bearer Token
67
+ * @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
68
68
  * @param {any} [pageSize] A limit on the number of objects to be returned. Limit ranges between 1 and 100. Default: 10.
69
69
  * @param {any} [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.
70
70
  * @param {any} [filter] Filter the response by one or multiple fields. In general, fetching filtered responses will conserve bandwidth and reduce response time.
@@ -85,7 +85,7 @@ export declare const InviteUsersApiFp: (configuration?: Configuration) => {
85
85
  * Permanently deletes the invited user. Supply the unique id that was returned when you created the invited user and this will delete it.
86
86
  * @summary Delete the invited user
87
87
  * @param {number} id
88
- * @param {string} [authorization] Bearer Token
88
+ * @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
89
89
  * @param {*} [options] Override http request option.
90
90
  * @throws {RequiredError}
91
91
  */
@@ -94,7 +94,7 @@ export declare const InviteUsersApiFp: (configuration?: Configuration) => {
94
94
  * This will deletes the users who has been invited. Supply array of ids that were returned when users has been created and this will delete it.
95
95
  * @summary Delete invited users.
96
96
  * @param {BatchDeleteRequestDto} batchDeleteRequestDto
97
- * @param {string} [authorization] Bearer Token
97
+ * @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
98
98
  * @param {*} [options] Override http request option.
99
99
  * @throws {RequiredError}
100
100
  */
@@ -103,7 +103,7 @@ export declare const InviteUsersApiFp: (configuration?: Configuration) => {
103
103
  * This send an email to invite a user with the specific role/roles.
104
104
  * @summary Invite a user
105
105
  * @param {InviteUserRequestDto} inviteUserRequestDto
106
- * @param {string} [authorization] Bearer Token
106
+ * @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
107
107
  * @param {*} [options] Override http request option.
108
108
  * @throws {RequiredError}
109
109
  */
@@ -112,7 +112,7 @@ export declare const InviteUsersApiFp: (configuration?: Configuration) => {
112
112
  * This send bulk emails to invite users with the specific role/roles.
113
113
  * @summary Invite batch of users
114
114
  * @param {InviteUsersRequestDto} inviteUsersRequestDto
115
- * @param {string} [authorization] Bearer Token
115
+ * @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
116
116
  * @param {*} [options] Override http request option.
117
117
  * @throws {RequiredError}
118
118
  */
@@ -120,7 +120,7 @@ export declare const InviteUsersApiFp: (configuration?: Configuration) => {
120
120
  /**
121
121
  * Returns a list of invited users you have previously created. The invited users are returned in sorted order, with the oldest one appearing first. For more information about pagination, read the Pagination documentation.
122
122
  * @summary List invited users
123
- * @param {string} [authorization] Bearer Token
123
+ * @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
124
124
  * @param {any} [pageSize] A limit on the number of objects to be returned. Limit ranges between 1 and 100. Default: 10.
125
125
  * @param {any} [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.
126
126
  * @param {any} [filter] Filter the response by one or multiple fields. In general, fetching filtered responses will conserve bandwidth and reduce response time.
@@ -141,7 +141,7 @@ export declare const InviteUsersApiFactory: (configuration?: Configuration, base
141
141
  * Permanently deletes the invited user. Supply the unique id that was returned when you created the invited user and this will delete it.
142
142
  * @summary Delete the invited user
143
143
  * @param {number} id
144
- * @param {string} [authorization] Bearer Token
144
+ * @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
145
145
  * @param {*} [options] Override http request option.
146
146
  * @throws {RequiredError}
147
147
  */
@@ -150,7 +150,7 @@ export declare const InviteUsersApiFactory: (configuration?: Configuration, base
150
150
  * This will deletes the users who has been invited. Supply array of ids that were returned when users has been created and this will delete it.
151
151
  * @summary Delete invited users.
152
152
  * @param {BatchDeleteRequestDto} batchDeleteRequestDto
153
- * @param {string} [authorization] Bearer Token
153
+ * @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
154
154
  * @param {*} [options] Override http request option.
155
155
  * @throws {RequiredError}
156
156
  */
@@ -159,7 +159,7 @@ export declare const InviteUsersApiFactory: (configuration?: Configuration, base
159
159
  * This send an email to invite a user with the specific role/roles.
160
160
  * @summary Invite a user
161
161
  * @param {InviteUserRequestDto} inviteUserRequestDto
162
- * @param {string} [authorization] Bearer Token
162
+ * @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
163
163
  * @param {*} [options] Override http request option.
164
164
  * @throws {RequiredError}
165
165
  */
@@ -168,7 +168,7 @@ export declare const InviteUsersApiFactory: (configuration?: Configuration, base
168
168
  * This send bulk emails to invite users with the specific role/roles.
169
169
  * @summary Invite batch of users
170
170
  * @param {InviteUsersRequestDto} inviteUsersRequestDto
171
- * @param {string} [authorization] Bearer Token
171
+ * @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
172
172
  * @param {*} [options] Override http request option.
173
173
  * @throws {RequiredError}
174
174
  */
@@ -176,7 +176,7 @@ export declare const InviteUsersApiFactory: (configuration?: Configuration, base
176
176
  /**
177
177
  * Returns a list of invited users you have previously created. The invited users are returned in sorted order, with the oldest one appearing first. For more information about pagination, read the Pagination documentation.
178
178
  * @summary List invited users
179
- * @param {string} [authorization] Bearer Token
179
+ * @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
180
180
  * @param {any} [pageSize] A limit on the number of objects to be returned. Limit ranges between 1 and 100. Default: 10.
181
181
  * @param {any} [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.
182
182
  * @param {any} [filter] Filter the response by one or multiple fields. In general, fetching filtered responses will conserve bandwidth and reduce response time.
@@ -201,7 +201,7 @@ export interface InviteUsersApiDeleteInviteRequest {
201
201
  */
202
202
  readonly id: number;
203
203
  /**
204
- * Bearer Token
204
+ * Bearer Token: provided by the login endpoint under the name accessToken.
205
205
  * @type {string}
206
206
  * @memberof InviteUsersApiDeleteInvite
207
207
  */
@@ -220,7 +220,7 @@ export interface InviteUsersApiDeleteInvitesRequest {
220
220
  */
221
221
  readonly batchDeleteRequestDto: BatchDeleteRequestDto;
222
222
  /**
223
- * Bearer Token
223
+ * Bearer Token: provided by the login endpoint under the name accessToken.
224
224
  * @type {string}
225
225
  * @memberof InviteUsersApiDeleteInvites
226
226
  */
@@ -239,7 +239,7 @@ export interface InviteUsersApiInviteUserRequest {
239
239
  */
240
240
  readonly inviteUserRequestDto: InviteUserRequestDto;
241
241
  /**
242
- * Bearer Token
242
+ * Bearer Token: provided by the login endpoint under the name accessToken.
243
243
  * @type {string}
244
244
  * @memberof InviteUsersApiInviteUser
245
245
  */
@@ -258,7 +258,7 @@ export interface InviteUsersApiInviteUsersRequest {
258
258
  */
259
259
  readonly inviteUsersRequestDto: InviteUsersRequestDto;
260
260
  /**
261
- * Bearer Token
261
+ * Bearer Token: provided by the login endpoint under the name accessToken.
262
262
  * @type {string}
263
263
  * @memberof InviteUsersApiInviteUsers
264
264
  */
@@ -271,7 +271,7 @@ export interface InviteUsersApiInviteUsersRequest {
271
271
  */
272
272
  export interface InviteUsersApiListInvitesRequest {
273
273
  /**
274
- * Bearer Token
274
+ * Bearer Token: provided by the login endpoint under the name accessToken.
275
275
  * @type {string}
276
276
  * @memberof InviteUsersApiListInvites
277
277
  */
@@ -100,7 +100,7 @@ var InviteUsersApiAxiosParamCreator = function (configuration) {
100
100
  * Permanently deletes the invited user. Supply the unique id that was returned when you created the invited user and this will delete it.
101
101
  * @summary Delete the invited user
102
102
  * @param {number} id
103
- * @param {string} [authorization] Bearer Token
103
+ * @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
104
104
  * @param {*} [options] Override http request option.
105
105
  * @throws {RequiredError}
106
106
  */
@@ -148,7 +148,7 @@ var InviteUsersApiAxiosParamCreator = function (configuration) {
148
148
  * This will deletes the users who has been invited. Supply array of ids that were returned when users has been created and this will delete it.
149
149
  * @summary Delete invited users.
150
150
  * @param {BatchDeleteRequestDto} batchDeleteRequestDto
151
- * @param {string} [authorization] Bearer Token
151
+ * @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
152
152
  * @param {*} [options] Override http request option.
153
153
  * @throws {RequiredError}
154
154
  */
@@ -197,7 +197,7 @@ var InviteUsersApiAxiosParamCreator = function (configuration) {
197
197
  * This send an email to invite a user with the specific role/roles.
198
198
  * @summary Invite a user
199
199
  * @param {InviteUserRequestDto} inviteUserRequestDto
200
- * @param {string} [authorization] Bearer Token
200
+ * @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
201
201
  * @param {*} [options] Override http request option.
202
202
  * @throws {RequiredError}
203
203
  */
@@ -246,7 +246,7 @@ var InviteUsersApiAxiosParamCreator = function (configuration) {
246
246
  * This send bulk emails to invite users with the specific role/roles.
247
247
  * @summary Invite batch of users
248
248
  * @param {InviteUsersRequestDto} inviteUsersRequestDto
249
- * @param {string} [authorization] Bearer Token
249
+ * @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
250
250
  * @param {*} [options] Override http request option.
251
251
  * @throws {RequiredError}
252
252
  */
@@ -294,7 +294,7 @@ var InviteUsersApiAxiosParamCreator = function (configuration) {
294
294
  /**
295
295
  * Returns a list of invited users you have previously created. The invited users are returned in sorted order, with the oldest one appearing first. For more information about pagination, read the Pagination documentation.
296
296
  * @summary List invited users
297
- * @param {string} [authorization] Bearer Token
297
+ * @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
298
298
  * @param {any} [pageSize] A limit on the number of objects to be returned. Limit ranges between 1 and 100. Default: 10.
299
299
  * @param {any} [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.
300
300
  * @param {any} [filter] Filter the response by one or multiple fields. In general, fetching filtered responses will conserve bandwidth and reduce response time.
@@ -373,7 +373,7 @@ var InviteUsersApiFp = function (configuration) {
373
373
  * Permanently deletes the invited user. Supply the unique id that was returned when you created the invited user and this will delete it.
374
374
  * @summary Delete the invited user
375
375
  * @param {number} id
376
- * @param {string} [authorization] Bearer Token
376
+ * @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
377
377
  * @param {*} [options] Override http request option.
378
378
  * @throws {RequiredError}
379
379
  */
@@ -394,7 +394,7 @@ var InviteUsersApiFp = function (configuration) {
394
394
  * This will deletes the users who has been invited. Supply array of ids that were returned when users has been created and this will delete it.
395
395
  * @summary Delete invited users.
396
396
  * @param {BatchDeleteRequestDto} batchDeleteRequestDto
397
- * @param {string} [authorization] Bearer Token
397
+ * @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
398
398
  * @param {*} [options] Override http request option.
399
399
  * @throws {RequiredError}
400
400
  */
@@ -415,7 +415,7 @@ var InviteUsersApiFp = function (configuration) {
415
415
  * This send an email to invite a user with the specific role/roles.
416
416
  * @summary Invite a user
417
417
  * @param {InviteUserRequestDto} inviteUserRequestDto
418
- * @param {string} [authorization] Bearer Token
418
+ * @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
419
419
  * @param {*} [options] Override http request option.
420
420
  * @throws {RequiredError}
421
421
  */
@@ -436,7 +436,7 @@ var InviteUsersApiFp = function (configuration) {
436
436
  * This send bulk emails to invite users with the specific role/roles.
437
437
  * @summary Invite batch of users
438
438
  * @param {InviteUsersRequestDto} inviteUsersRequestDto
439
- * @param {string} [authorization] Bearer Token
439
+ * @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
440
440
  * @param {*} [options] Override http request option.
441
441
  * @throws {RequiredError}
442
442
  */
@@ -456,7 +456,7 @@ var InviteUsersApiFp = function (configuration) {
456
456
  /**
457
457
  * Returns a list of invited users you have previously created. The invited users are returned in sorted order, with the oldest one appearing first. For more information about pagination, read the Pagination documentation.
458
458
  * @summary List invited users
459
- * @param {string} [authorization] Bearer Token
459
+ * @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
460
460
  * @param {any} [pageSize] A limit on the number of objects to be returned. Limit ranges between 1 and 100. Default: 10.
461
461
  * @param {any} [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.
462
462
  * @param {any} [filter] Filter the response by one or multiple fields. In general, fetching filtered responses will conserve bandwidth and reduce response time.
@@ -493,7 +493,7 @@ var InviteUsersApiFactory = function (configuration, basePath, axios) {
493
493
  * Permanently deletes the invited user. Supply the unique id that was returned when you created the invited user and this will delete it.
494
494
  * @summary Delete the invited user
495
495
  * @param {number} id
496
- * @param {string} [authorization] Bearer Token
496
+ * @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
497
497
  * @param {*} [options] Override http request option.
498
498
  * @throws {RequiredError}
499
499
  */
@@ -504,7 +504,7 @@ var InviteUsersApiFactory = function (configuration, basePath, axios) {
504
504
  * This will deletes the users who has been invited. Supply array of ids that were returned when users has been created and this will delete it.
505
505
  * @summary Delete invited users.
506
506
  * @param {BatchDeleteRequestDto} batchDeleteRequestDto
507
- * @param {string} [authorization] Bearer Token
507
+ * @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
508
508
  * @param {*} [options] Override http request option.
509
509
  * @throws {RequiredError}
510
510
  */
@@ -515,7 +515,7 @@ var InviteUsersApiFactory = function (configuration, basePath, axios) {
515
515
  * This send an email to invite a user with the specific role/roles.
516
516
  * @summary Invite a user
517
517
  * @param {InviteUserRequestDto} inviteUserRequestDto
518
- * @param {string} [authorization] Bearer Token
518
+ * @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
519
519
  * @param {*} [options] Override http request option.
520
520
  * @throws {RequiredError}
521
521
  */
@@ -526,7 +526,7 @@ var InviteUsersApiFactory = function (configuration, basePath, axios) {
526
526
  * This send bulk emails to invite users with the specific role/roles.
527
527
  * @summary Invite batch of users
528
528
  * @param {InviteUsersRequestDto} inviteUsersRequestDto
529
- * @param {string} [authorization] Bearer Token
529
+ * @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
530
530
  * @param {*} [options] Override http request option.
531
531
  * @throws {RequiredError}
532
532
  */
@@ -536,7 +536,7 @@ var InviteUsersApiFactory = function (configuration, basePath, axios) {
536
536
  /**
537
537
  * Returns a list of invited users you have previously created. The invited users are returned in sorted order, with the oldest one appearing first. For more information about pagination, read the Pagination documentation.
538
538
  * @summary List invited users
539
- * @param {string} [authorization] Bearer Token
539
+ * @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
540
540
  * @param {any} [pageSize] A limit on the number of objects to be returned. Limit ranges between 1 and 100. Default: 10.
541
541
  * @param {any} [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.
542
542
  * @param {any} [filter] Filter the response by one or multiple fields. In general, fetching filtered responses will conserve bandwidth and reduce response time.
@@ -23,7 +23,7 @@ export declare const OrganizationsApiAxiosParamCreator: (configuration?: Configu
23
23
  * Get Organization by code
24
24
  * @summary Retrieve the Organization
25
25
  * @param {string} code
26
- * @param {string} [authorization] Bearer Token
26
+ * @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
27
27
  * @param {*} [options] Override http request option.
28
28
  * @throws {RequiredError}
29
29
  */
@@ -31,7 +31,7 @@ export declare const OrganizationsApiAxiosParamCreator: (configuration?: Configu
31
31
  /**
32
32
  * This will fetch list of organizations
33
33
  * @summary List organizations
34
- * @param {string} [authorization] Bearer Token
34
+ * @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
35
35
  * @param {any} [pageSize] A limit on the number of objects to be returned. Limit ranges between 1 and 100. Default: 10.
36
36
  * @param {any} [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.
37
37
  * @param {any} [filter] Filter the response by one or multiple fields. In general, fetching filtered responses will conserve bandwidth and reduce response time.
@@ -42,6 +42,16 @@ export declare const OrganizationsApiAxiosParamCreator: (configuration?: Configu
42
42
  * @throws {RequiredError}
43
43
  */
44
44
  listOrganizations: (authorization?: string, pageSize?: any, pageToken?: any, filter?: any, search?: any, order?: any, expand?: any, options?: AxiosRequestConfig) => Promise<RequestArgs>;
45
+ /**
46
+ * Update organization data
47
+ * @summary Update the Organization
48
+ * @param {string} code
49
+ * @param {object} body
50
+ * @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
51
+ * @param {*} [options] Override http request option.
52
+ * @throws {RequiredError}
53
+ */
54
+ updateOrganization: (code: string, body: object, authorization?: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
45
55
  };
46
56
  /**
47
57
  * OrganizationsApi - functional programming interface
@@ -52,7 +62,7 @@ export declare const OrganizationsApiFp: (configuration?: Configuration) => {
52
62
  * Get Organization by code
53
63
  * @summary Retrieve the Organization
54
64
  * @param {string} code
55
- * @param {string} [authorization] Bearer Token
65
+ * @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
56
66
  * @param {*} [options] Override http request option.
57
67
  * @throws {RequiredError}
58
68
  */
@@ -60,7 +70,7 @@ export declare const OrganizationsApiFp: (configuration?: Configuration) => {
60
70
  /**
61
71
  * This will fetch list of organizations
62
72
  * @summary List organizations
63
- * @param {string} [authorization] Bearer Token
73
+ * @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
64
74
  * @param {any} [pageSize] A limit on the number of objects to be returned. Limit ranges between 1 and 100. Default: 10.
65
75
  * @param {any} [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&#x3D;1, your subsequent call can include pageToken&#x3D;2 in order to fetch the next page of the list.
66
76
  * @param {any} [filter] Filter the response by one or multiple fields. In general, fetching filtered responses will conserve bandwidth and reduce response time.
@@ -71,6 +81,16 @@ export declare const OrganizationsApiFp: (configuration?: Configuration) => {
71
81
  * @throws {RequiredError}
72
82
  */
73
83
  listOrganizations(authorization?: string, pageSize?: any, pageToken?: any, filter?: any, search?: any, order?: any, expand?: any, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ListOrganizationsResponseClass>>;
84
+ /**
85
+ * Update organization data
86
+ * @summary Update the Organization
87
+ * @param {string} code
88
+ * @param {object} body
89
+ * @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
90
+ * @param {*} [options] Override http request option.
91
+ * @throws {RequiredError}
92
+ */
93
+ updateOrganization(code: string, body: object, authorization?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<object>>;
74
94
  };
75
95
  /**
76
96
  * OrganizationsApi - factory interface
@@ -81,7 +101,7 @@ export declare const OrganizationsApiFactory: (configuration?: Configuration, ba
81
101
  * Get Organization by code
82
102
  * @summary Retrieve the Organization
83
103
  * @param {string} code
84
- * @param {string} [authorization] Bearer Token
104
+ * @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
85
105
  * @param {*} [options] Override http request option.
86
106
  * @throws {RequiredError}
87
107
  */
@@ -89,7 +109,7 @@ export declare const OrganizationsApiFactory: (configuration?: Configuration, ba
89
109
  /**
90
110
  * This will fetch list of organizations
91
111
  * @summary List organizations
92
- * @param {string} [authorization] Bearer Token
112
+ * @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
93
113
  * @param {any} [pageSize] A limit on the number of objects to be returned. Limit ranges between 1 and 100. Default: 10.
94
114
  * @param {any} [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&#x3D;1, your subsequent call can include pageToken&#x3D;2 in order to fetch the next page of the list.
95
115
  * @param {any} [filter] Filter the response by one or multiple fields. In general, fetching filtered responses will conserve bandwidth and reduce response time.
@@ -100,6 +120,16 @@ export declare const OrganizationsApiFactory: (configuration?: Configuration, ba
100
120
  * @throws {RequiredError}
101
121
  */
102
122
  listOrganizations(authorization?: string, pageSize?: any, pageToken?: any, filter?: any, search?: any, order?: any, expand?: any, options?: any): AxiosPromise<ListOrganizationsResponseClass>;
123
+ /**
124
+ * Update organization data
125
+ * @summary Update the Organization
126
+ * @param {string} code
127
+ * @param {object} body
128
+ * @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
129
+ * @param {*} [options] Override http request option.
130
+ * @throws {RequiredError}
131
+ */
132
+ updateOrganization(code: string, body: object, authorization?: string, options?: any): AxiosPromise<object>;
103
133
  };
104
134
  /**
105
135
  * Request parameters for getOrganization operation in OrganizationsApi.
@@ -114,7 +144,7 @@ export interface OrganizationsApiGetOrganizationRequest {
114
144
  */
115
145
  readonly code: string;
116
146
  /**
117
- * Bearer Token
147
+ * Bearer Token: provided by the login endpoint under the name accessToken.
118
148
  * @type {string}
119
149
  * @memberof OrganizationsApiGetOrganization
120
150
  */
@@ -127,7 +157,7 @@ export interface OrganizationsApiGetOrganizationRequest {
127
157
  */
128
158
  export interface OrganizationsApiListOrganizationsRequest {
129
159
  /**
130
- * Bearer Token
160
+ * Bearer Token: provided by the login endpoint under the name accessToken.
131
161
  * @type {string}
132
162
  * @memberof OrganizationsApiListOrganizations
133
163
  */
@@ -169,6 +199,31 @@ export interface OrganizationsApiListOrganizationsRequest {
169
199
  */
170
200
  readonly expand?: any;
171
201
  }
202
+ /**
203
+ * Request parameters for updateOrganization operation in OrganizationsApi.
204
+ * @export
205
+ * @interface OrganizationsApiUpdateOrganizationRequest
206
+ */
207
+ export interface OrganizationsApiUpdateOrganizationRequest {
208
+ /**
209
+ *
210
+ * @type {string}
211
+ * @memberof OrganizationsApiUpdateOrganization
212
+ */
213
+ readonly code: string;
214
+ /**
215
+ *
216
+ * @type {object}
217
+ * @memberof OrganizationsApiUpdateOrganization
218
+ */
219
+ readonly body: object;
220
+ /**
221
+ * Bearer Token: provided by the login endpoint under the name accessToken.
222
+ * @type {string}
223
+ * @memberof OrganizationsApiUpdateOrganization
224
+ */
225
+ readonly authorization?: string;
226
+ }
172
227
  /**
173
228
  * OrganizationsApi - object-oriented interface
174
229
  * @export
@@ -194,4 +249,13 @@ export declare class OrganizationsApi extends BaseAPI {
194
249
  * @memberof OrganizationsApi
195
250
  */
196
251
  listOrganizations(requestParameters?: OrganizationsApiListOrganizationsRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<ListOrganizationsResponseClass, any>>;
252
+ /**
253
+ * Update organization data
254
+ * @summary Update the Organization
255
+ * @param {OrganizationsApiUpdateOrganizationRequest} requestParameters Request parameters.
256
+ * @param {*} [options] Override http request option.
257
+ * @throws {RequiredError}
258
+ * @memberof OrganizationsApi
259
+ */
260
+ updateOrganization(requestParameters: OrganizationsApiUpdateOrganizationRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<object, any>>;
197
261
  }