@emilgroup/tenant-sdk-node 1.28.0 → 1.28.1-beta.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 +3 -0
- package/README.md +2 -2
- package/api/custom-schema-api.ts +16 -16
- package/api/dashboard-api.ts +226 -24
- package/api/dashboard-group-api.ts +20 -20
- package/api/data-report-api.ts +16 -16
- package/api/data-report-executor-api.ts +4 -4
- package/api/delete-organization-invitations-api.ts +4 -4
- package/api/invite-organizations-api.ts +4 -4
- package/api/invite-users-api.ts +16 -16
- package/api/list-organization-invitations-api.ts +4 -4
- package/api/organizations-api.ts +12 -12
- package/api/re-invite-an-organization-api.ts +4 -4
- package/api/roles-api.ts +4 -4
- package/api/settings-api.ts +4 -4
- package/api/users-api.ts +28 -28
- package/base.ts +1 -1
- package/common.ts +2 -2
- package/configuration.ts +9 -0
- package/dist/api/custom-schema-api.d.ts +16 -16
- package/dist/api/custom-schema-api.js +16 -16
- package/dist/api/dashboard-api.d.ts +128 -24
- package/dist/api/dashboard-api.js +202 -24
- package/dist/api/dashboard-group-api.d.ts +20 -20
- package/dist/api/dashboard-group-api.js +20 -20
- package/dist/api/data-report-api.d.ts +16 -16
- package/dist/api/data-report-api.js +16 -16
- package/dist/api/data-report-executor-api.d.ts +4 -4
- package/dist/api/data-report-executor-api.js +4 -4
- package/dist/api/delete-organization-invitations-api.d.ts +4 -4
- package/dist/api/delete-organization-invitations-api.js +4 -4
- package/dist/api/invite-organizations-api.d.ts +4 -4
- package/dist/api/invite-organizations-api.js +4 -4
- package/dist/api/invite-users-api.d.ts +16 -16
- package/dist/api/invite-users-api.js +16 -16
- package/dist/api/list-organization-invitations-api.d.ts +4 -4
- package/dist/api/list-organization-invitations-api.js +4 -4
- package/dist/api/organizations-api.d.ts +12 -12
- package/dist/api/organizations-api.js +12 -12
- package/dist/api/re-invite-an-organization-api.d.ts +4 -4
- package/dist/api/re-invite-an-organization-api.js +4 -4
- package/dist/api/roles-api.d.ts +4 -4
- package/dist/api/roles-api.js +4 -4
- package/dist/api/settings-api.d.ts +4 -4
- package/dist/api/settings-api.js +4 -4
- package/dist/api/users-api.d.ts +28 -28
- package/dist/api/users-api.js +28 -28
- package/dist/base.js +1 -1
- package/dist/common.js +2 -2
- package/dist/configuration.d.ts +6 -0
- package/dist/configuration.js +8 -0
- package/dist/models/create-tenant-db-config-request-dto.d.ts +30 -0
- package/dist/models/create-tenant-db-config-request-dto.js +15 -0
- package/dist/models/index.d.ts +3 -0
- package/dist/models/index.js +3 -0
- package/dist/models/invite-class.d.ts +12 -12
- package/dist/models/publish-dashboard-request-dto.d.ts +34 -0
- package/dist/models/publish-dashboard-request-dto.js +19 -0
- package/dist/models/revert-analysis-request-dto.d.ts +34 -0
- package/dist/models/revert-analysis-request-dto.js +19 -0
- package/dist/models/user-class.d.ts +8 -8
- package/models/create-tenant-db-config-request-dto.ts +36 -0
- package/models/index.ts +3 -0
- package/models/invite-class.ts +12 -12
- package/models/publish-dashboard-request-dto.ts +43 -0
- package/models/revert-analysis-request-dto.ts +43 -0
- package/models/user-class.ts +8 -8
- package/package.json +1 -1
|
@@ -20,7 +20,7 @@ import { OrgInvitationResponseClass } from '../models';
|
|
|
20
20
|
*/
|
|
21
21
|
export declare const InviteOrganizationsApiAxiosParamCreator: (configuration?: Configuration) => {
|
|
22
22
|
/**
|
|
23
|
-
* This sends an email to invite an organization.
|
|
23
|
+
* This sends an email to invite an organization. **Required Permissions** \"tenant-management.organizations.create\"
|
|
24
24
|
* @summary Invite an organization
|
|
25
25
|
* @param {InviteOrgRequestDtoRest} inviteOrgRequestDtoRest
|
|
26
26
|
* @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
|
|
@@ -35,7 +35,7 @@ export declare const InviteOrganizationsApiAxiosParamCreator: (configuration?: C
|
|
|
35
35
|
*/
|
|
36
36
|
export declare const InviteOrganizationsApiFp: (configuration?: Configuration) => {
|
|
37
37
|
/**
|
|
38
|
-
* This sends an email to invite an organization.
|
|
38
|
+
* This sends an email to invite an organization. **Required Permissions** \"tenant-management.organizations.create\"
|
|
39
39
|
* @summary Invite an organization
|
|
40
40
|
* @param {InviteOrgRequestDtoRest} inviteOrgRequestDtoRest
|
|
41
41
|
* @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
|
|
@@ -50,7 +50,7 @@ export declare const InviteOrganizationsApiFp: (configuration?: Configuration) =
|
|
|
50
50
|
*/
|
|
51
51
|
export declare const InviteOrganizationsApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
|
|
52
52
|
/**
|
|
53
|
-
* This sends an email to invite an organization.
|
|
53
|
+
* This sends an email to invite an organization. **Required Permissions** \"tenant-management.organizations.create\"
|
|
54
54
|
* @summary Invite an organization
|
|
55
55
|
* @param {InviteOrgRequestDtoRest} inviteOrgRequestDtoRest
|
|
56
56
|
* @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
|
|
@@ -86,7 +86,7 @@ export interface InviteOrganizationsApiInviteOrgRequest {
|
|
|
86
86
|
*/
|
|
87
87
|
export declare class InviteOrganizationsApi extends BaseAPI {
|
|
88
88
|
/**
|
|
89
|
-
* This sends an email to invite an organization.
|
|
89
|
+
* This sends an email to invite an organization. **Required Permissions** \"tenant-management.organizations.create\"
|
|
90
90
|
* @summary Invite an organization
|
|
91
91
|
* @param {InviteOrganizationsApiInviteOrgRequest} requestParameters Request parameters.
|
|
92
92
|
* @param {*} [options] Override http request option.
|
|
@@ -97,7 +97,7 @@ var InviteOrganizationsApiAxiosParamCreator = function (configuration) {
|
|
|
97
97
|
var _this = this;
|
|
98
98
|
return {
|
|
99
99
|
/**
|
|
100
|
-
* This sends an email to invite an organization.
|
|
100
|
+
* This sends an email to invite an organization. **Required Permissions** \"tenant-management.organizations.create\"
|
|
101
101
|
* @summary Invite an organization
|
|
102
102
|
* @param {InviteOrgRequestDtoRest} inviteOrgRequestDtoRest
|
|
103
103
|
* @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
|
|
@@ -156,7 +156,7 @@ var InviteOrganizationsApiFp = function (configuration) {
|
|
|
156
156
|
var localVarAxiosParamCreator = (0, exports.InviteOrganizationsApiAxiosParamCreator)(configuration);
|
|
157
157
|
return {
|
|
158
158
|
/**
|
|
159
|
-
* This sends an email to invite an organization.
|
|
159
|
+
* This sends an email to invite an organization. **Required Permissions** \"tenant-management.organizations.create\"
|
|
160
160
|
* @summary Invite an organization
|
|
161
161
|
* @param {InviteOrgRequestDtoRest} inviteOrgRequestDtoRest
|
|
162
162
|
* @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
|
|
@@ -187,7 +187,7 @@ var InviteOrganizationsApiFactory = function (configuration, basePath, axios) {
|
|
|
187
187
|
var localVarFp = (0, exports.InviteOrganizationsApiFp)(configuration);
|
|
188
188
|
return {
|
|
189
189
|
/**
|
|
190
|
-
* This sends an email to invite an organization.
|
|
190
|
+
* This sends an email to invite an organization. **Required Permissions** \"tenant-management.organizations.create\"
|
|
191
191
|
* @summary Invite an organization
|
|
192
192
|
* @param {InviteOrgRequestDtoRest} inviteOrgRequestDtoRest
|
|
193
193
|
* @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
|
|
@@ -212,7 +212,7 @@ var InviteOrganizationsApi = /** @class */ (function (_super) {
|
|
|
212
212
|
return _super !== null && _super.apply(this, arguments) || this;
|
|
213
213
|
}
|
|
214
214
|
/**
|
|
215
|
-
* This sends an email to invite an organization.
|
|
215
|
+
* This sends an email to invite an organization. **Required Permissions** \"tenant-management.organizations.create\"
|
|
216
216
|
* @summary Invite an organization
|
|
217
217
|
* @param {InviteOrganizationsApiInviteOrgRequest} requestParameters Request parameters.
|
|
218
218
|
* @param {*} [options] Override http request option.
|
|
@@ -25,7 +25,7 @@ import { ListInvitesResponseClass } from '../models';
|
|
|
25
25
|
*/
|
|
26
26
|
export declare const InviteUsersApiAxiosParamCreator: (configuration?: Configuration) => {
|
|
27
27
|
/**
|
|
28
|
-
* 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.
|
|
28
|
+
* 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. **Required Permissions** \"tenant-management.users.delete\"
|
|
29
29
|
* @summary Delete invited users.
|
|
30
30
|
* @param {BatchDeleteRequestDto} batchDeleteRequestDto
|
|
31
31
|
* @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
|
|
@@ -34,7 +34,7 @@ export declare const InviteUsersApiAxiosParamCreator: (configuration?: Configura
|
|
|
34
34
|
*/
|
|
35
35
|
deleteInvites: (batchDeleteRequestDto: BatchDeleteRequestDto, authorization?: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
36
36
|
/**
|
|
37
|
-
* This send an email to invite a user with the specific role/roles.
|
|
37
|
+
* This send an email to invite a user with the specific role/roles. **Required Permissions** \"tenant-management.users.create\"
|
|
38
38
|
* @summary Invite a user
|
|
39
39
|
* @param {InviteUserRequestDtoRest} inviteUserRequestDtoRest
|
|
40
40
|
* @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
|
|
@@ -43,7 +43,7 @@ export declare const InviteUsersApiAxiosParamCreator: (configuration?: Configura
|
|
|
43
43
|
*/
|
|
44
44
|
inviteUser: (inviteUserRequestDtoRest: InviteUserRequestDtoRest, authorization?: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
45
45
|
/**
|
|
46
|
-
* This send bulk emails to invite users with the specific role/roles.
|
|
46
|
+
* This send bulk emails to invite users with the specific role/roles. **Required Permissions** \"tenant-management.users.create\"
|
|
47
47
|
* @summary Invite batch of users
|
|
48
48
|
* @param {InviteUsersRequestDtoRest} inviteUsersRequestDtoRest
|
|
49
49
|
* @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
|
|
@@ -52,7 +52,7 @@ export declare const InviteUsersApiAxiosParamCreator: (configuration?: Configura
|
|
|
52
52
|
*/
|
|
53
53
|
inviteUsers: (inviteUsersRequestDtoRest: InviteUsersRequestDtoRest, authorization?: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
54
54
|
/**
|
|
55
|
-
* 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.
|
|
55
|
+
* 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. **Required Permissions** \"tenant-management.users.view\"
|
|
56
56
|
* @summary List invited users
|
|
57
57
|
* @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
|
|
58
58
|
* @param {any} [pageSize] A limit on the number of objects to be returned. Limit ranges between 1 and 50. Default: 10.
|
|
@@ -73,7 +73,7 @@ export declare const InviteUsersApiAxiosParamCreator: (configuration?: Configura
|
|
|
73
73
|
*/
|
|
74
74
|
export declare const InviteUsersApiFp: (configuration?: Configuration) => {
|
|
75
75
|
/**
|
|
76
|
-
* 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.
|
|
76
|
+
* 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. **Required Permissions** \"tenant-management.users.delete\"
|
|
77
77
|
* @summary Delete invited users.
|
|
78
78
|
* @param {BatchDeleteRequestDto} batchDeleteRequestDto
|
|
79
79
|
* @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
|
|
@@ -82,7 +82,7 @@ export declare const InviteUsersApiFp: (configuration?: Configuration) => {
|
|
|
82
82
|
*/
|
|
83
83
|
deleteInvites(batchDeleteRequestDto: BatchDeleteRequestDto, authorization?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<BatchDeleteResponseClass>>;
|
|
84
84
|
/**
|
|
85
|
-
* This send an email to invite a user with the specific role/roles.
|
|
85
|
+
* This send an email to invite a user with the specific role/roles. **Required Permissions** \"tenant-management.users.create\"
|
|
86
86
|
* @summary Invite a user
|
|
87
87
|
* @param {InviteUserRequestDtoRest} inviteUserRequestDtoRest
|
|
88
88
|
* @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
|
|
@@ -91,7 +91,7 @@ export declare const InviteUsersApiFp: (configuration?: Configuration) => {
|
|
|
91
91
|
*/
|
|
92
92
|
inviteUser(inviteUserRequestDtoRest: InviteUserRequestDtoRest, authorization?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<InviteUserResponseClass>>;
|
|
93
93
|
/**
|
|
94
|
-
* This send bulk emails to invite users with the specific role/roles.
|
|
94
|
+
* This send bulk emails to invite users with the specific role/roles. **Required Permissions** \"tenant-management.users.create\"
|
|
95
95
|
* @summary Invite batch of users
|
|
96
96
|
* @param {InviteUsersRequestDtoRest} inviteUsersRequestDtoRest
|
|
97
97
|
* @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
|
|
@@ -100,7 +100,7 @@ export declare const InviteUsersApiFp: (configuration?: Configuration) => {
|
|
|
100
100
|
*/
|
|
101
101
|
inviteUsers(inviteUsersRequestDtoRest: InviteUsersRequestDtoRest, authorization?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<InviteUsersResponseClass>>;
|
|
102
102
|
/**
|
|
103
|
-
* 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.
|
|
103
|
+
* 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. **Required Permissions** \"tenant-management.users.view\"
|
|
104
104
|
* @summary List invited users
|
|
105
105
|
* @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
|
|
106
106
|
* @param {any} [pageSize] A limit on the number of objects to be returned. Limit ranges between 1 and 50. Default: 10.
|
|
@@ -121,7 +121,7 @@ export declare const InviteUsersApiFp: (configuration?: Configuration) => {
|
|
|
121
121
|
*/
|
|
122
122
|
export declare const InviteUsersApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
|
|
123
123
|
/**
|
|
124
|
-
* 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.
|
|
124
|
+
* 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. **Required Permissions** \"tenant-management.users.delete\"
|
|
125
125
|
* @summary Delete invited users.
|
|
126
126
|
* @param {BatchDeleteRequestDto} batchDeleteRequestDto
|
|
127
127
|
* @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
|
|
@@ -130,7 +130,7 @@ export declare const InviteUsersApiFactory: (configuration?: Configuration, base
|
|
|
130
130
|
*/
|
|
131
131
|
deleteInvites(batchDeleteRequestDto: BatchDeleteRequestDto, authorization?: string, options?: any): AxiosPromise<BatchDeleteResponseClass>;
|
|
132
132
|
/**
|
|
133
|
-
* This send an email to invite a user with the specific role/roles.
|
|
133
|
+
* This send an email to invite a user with the specific role/roles. **Required Permissions** \"tenant-management.users.create\"
|
|
134
134
|
* @summary Invite a user
|
|
135
135
|
* @param {InviteUserRequestDtoRest} inviteUserRequestDtoRest
|
|
136
136
|
* @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
|
|
@@ -139,7 +139,7 @@ export declare const InviteUsersApiFactory: (configuration?: Configuration, base
|
|
|
139
139
|
*/
|
|
140
140
|
inviteUser(inviteUserRequestDtoRest: InviteUserRequestDtoRest, authorization?: string, options?: any): AxiosPromise<InviteUserResponseClass>;
|
|
141
141
|
/**
|
|
142
|
-
* This send bulk emails to invite users with the specific role/roles.
|
|
142
|
+
* This send bulk emails to invite users with the specific role/roles. **Required Permissions** \"tenant-management.users.create\"
|
|
143
143
|
* @summary Invite batch of users
|
|
144
144
|
* @param {InviteUsersRequestDtoRest} inviteUsersRequestDtoRest
|
|
145
145
|
* @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
|
|
@@ -148,7 +148,7 @@ export declare const InviteUsersApiFactory: (configuration?: Configuration, base
|
|
|
148
148
|
*/
|
|
149
149
|
inviteUsers(inviteUsersRequestDtoRest: InviteUsersRequestDtoRest, authorization?: string, options?: any): AxiosPromise<InviteUsersResponseClass>;
|
|
150
150
|
/**
|
|
151
|
-
* 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.
|
|
151
|
+
* 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. **Required Permissions** \"tenant-management.users.view\"
|
|
152
152
|
* @summary List invited users
|
|
153
153
|
* @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
|
|
154
154
|
* @param {any} [pageSize] A limit on the number of objects to be returned. Limit ranges between 1 and 50. Default: 10.
|
|
@@ -283,7 +283,7 @@ export interface InviteUsersApiListInvitesRequest {
|
|
|
283
283
|
*/
|
|
284
284
|
export declare class InviteUsersApi extends BaseAPI {
|
|
285
285
|
/**
|
|
286
|
-
* 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.
|
|
286
|
+
* 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. **Required Permissions** \"tenant-management.users.delete\"
|
|
287
287
|
* @summary Delete invited users.
|
|
288
288
|
* @param {InviteUsersApiDeleteInvitesRequest} requestParameters Request parameters.
|
|
289
289
|
* @param {*} [options] Override http request option.
|
|
@@ -292,7 +292,7 @@ export declare class InviteUsersApi extends BaseAPI {
|
|
|
292
292
|
*/
|
|
293
293
|
deleteInvites(requestParameters: InviteUsersApiDeleteInvitesRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<BatchDeleteResponseClass, any>>;
|
|
294
294
|
/**
|
|
295
|
-
* This send an email to invite a user with the specific role/roles.
|
|
295
|
+
* This send an email to invite a user with the specific role/roles. **Required Permissions** \"tenant-management.users.create\"
|
|
296
296
|
* @summary Invite a user
|
|
297
297
|
* @param {InviteUsersApiInviteUserRequest} requestParameters Request parameters.
|
|
298
298
|
* @param {*} [options] Override http request option.
|
|
@@ -301,7 +301,7 @@ export declare class InviteUsersApi extends BaseAPI {
|
|
|
301
301
|
*/
|
|
302
302
|
inviteUser(requestParameters: InviteUsersApiInviteUserRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<InviteUserResponseClass, any>>;
|
|
303
303
|
/**
|
|
304
|
-
* This send bulk emails to invite users with the specific role/roles.
|
|
304
|
+
* This send bulk emails to invite users with the specific role/roles. **Required Permissions** \"tenant-management.users.create\"
|
|
305
305
|
* @summary Invite batch of users
|
|
306
306
|
* @param {InviteUsersApiInviteUsersRequest} requestParameters Request parameters.
|
|
307
307
|
* @param {*} [options] Override http request option.
|
|
@@ -310,7 +310,7 @@ export declare class InviteUsersApi extends BaseAPI {
|
|
|
310
310
|
*/
|
|
311
311
|
inviteUsers(requestParameters: InviteUsersApiInviteUsersRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<InviteUsersResponseClass, any>>;
|
|
312
312
|
/**
|
|
313
|
-
* 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.
|
|
313
|
+
* 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. **Required Permissions** \"tenant-management.users.view\"
|
|
314
314
|
* @summary List invited users
|
|
315
315
|
* @param {InviteUsersApiListInvitesRequest} requestParameters Request parameters.
|
|
316
316
|
* @param {*} [options] Override http request option.
|
|
@@ -97,7 +97,7 @@ var InviteUsersApiAxiosParamCreator = function (configuration) {
|
|
|
97
97
|
var _this = this;
|
|
98
98
|
return {
|
|
99
99
|
/**
|
|
100
|
-
* 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.
|
|
100
|
+
* 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. **Required Permissions** \"tenant-management.users.delete\"
|
|
101
101
|
* @summary Delete invited users.
|
|
102
102
|
* @param {BatchDeleteRequestDto} batchDeleteRequestDto
|
|
103
103
|
* @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
|
|
@@ -146,7 +146,7 @@ var InviteUsersApiAxiosParamCreator = function (configuration) {
|
|
|
146
146
|
});
|
|
147
147
|
},
|
|
148
148
|
/**
|
|
149
|
-
* This send an email to invite a user with the specific role/roles.
|
|
149
|
+
* This send an email to invite a user with the specific role/roles. **Required Permissions** \"tenant-management.users.create\"
|
|
150
150
|
* @summary Invite a user
|
|
151
151
|
* @param {InviteUserRequestDtoRest} inviteUserRequestDtoRest
|
|
152
152
|
* @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
|
|
@@ -195,7 +195,7 @@ var InviteUsersApiAxiosParamCreator = function (configuration) {
|
|
|
195
195
|
});
|
|
196
196
|
},
|
|
197
197
|
/**
|
|
198
|
-
* This send bulk emails to invite users with the specific role/roles.
|
|
198
|
+
* This send bulk emails to invite users with the specific role/roles. **Required Permissions** \"tenant-management.users.create\"
|
|
199
199
|
* @summary Invite batch of users
|
|
200
200
|
* @param {InviteUsersRequestDtoRest} inviteUsersRequestDtoRest
|
|
201
201
|
* @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
|
|
@@ -244,7 +244,7 @@ var InviteUsersApiAxiosParamCreator = function (configuration) {
|
|
|
244
244
|
});
|
|
245
245
|
},
|
|
246
246
|
/**
|
|
247
|
-
* 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.
|
|
247
|
+
* 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. **Required Permissions** \"tenant-management.users.view\"
|
|
248
248
|
* @summary List invited users
|
|
249
249
|
* @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
|
|
250
250
|
* @param {any} [pageSize] A limit on the number of objects to be returned. Limit ranges between 1 and 50. Default: 10.
|
|
@@ -326,7 +326,7 @@ var InviteUsersApiFp = function (configuration) {
|
|
|
326
326
|
var localVarAxiosParamCreator = (0, exports.InviteUsersApiAxiosParamCreator)(configuration);
|
|
327
327
|
return {
|
|
328
328
|
/**
|
|
329
|
-
* 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.
|
|
329
|
+
* 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. **Required Permissions** \"tenant-management.users.delete\"
|
|
330
330
|
* @summary Delete invited users.
|
|
331
331
|
* @param {BatchDeleteRequestDto} batchDeleteRequestDto
|
|
332
332
|
* @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
|
|
@@ -347,7 +347,7 @@ var InviteUsersApiFp = function (configuration) {
|
|
|
347
347
|
});
|
|
348
348
|
},
|
|
349
349
|
/**
|
|
350
|
-
* This send an email to invite a user with the specific role/roles.
|
|
350
|
+
* This send an email to invite a user with the specific role/roles. **Required Permissions** \"tenant-management.users.create\"
|
|
351
351
|
* @summary Invite a user
|
|
352
352
|
* @param {InviteUserRequestDtoRest} inviteUserRequestDtoRest
|
|
353
353
|
* @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
|
|
@@ -368,7 +368,7 @@ var InviteUsersApiFp = function (configuration) {
|
|
|
368
368
|
});
|
|
369
369
|
},
|
|
370
370
|
/**
|
|
371
|
-
* This send bulk emails to invite users with the specific role/roles.
|
|
371
|
+
* This send bulk emails to invite users with the specific role/roles. **Required Permissions** \"tenant-management.users.create\"
|
|
372
372
|
* @summary Invite batch of users
|
|
373
373
|
* @param {InviteUsersRequestDtoRest} inviteUsersRequestDtoRest
|
|
374
374
|
* @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
|
|
@@ -389,7 +389,7 @@ var InviteUsersApiFp = function (configuration) {
|
|
|
389
389
|
});
|
|
390
390
|
},
|
|
391
391
|
/**
|
|
392
|
-
* 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.
|
|
392
|
+
* 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. **Required Permissions** \"tenant-management.users.view\"
|
|
393
393
|
* @summary List invited users
|
|
394
394
|
* @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
|
|
395
395
|
* @param {any} [pageSize] A limit on the number of objects to be returned. Limit ranges between 1 and 50. Default: 10.
|
|
@@ -426,7 +426,7 @@ var InviteUsersApiFactory = function (configuration, basePath, axios) {
|
|
|
426
426
|
var localVarFp = (0, exports.InviteUsersApiFp)(configuration);
|
|
427
427
|
return {
|
|
428
428
|
/**
|
|
429
|
-
* 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.
|
|
429
|
+
* 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. **Required Permissions** \"tenant-management.users.delete\"
|
|
430
430
|
* @summary Delete invited users.
|
|
431
431
|
* @param {BatchDeleteRequestDto} batchDeleteRequestDto
|
|
432
432
|
* @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
|
|
@@ -437,7 +437,7 @@ var InviteUsersApiFactory = function (configuration, basePath, axios) {
|
|
|
437
437
|
return localVarFp.deleteInvites(batchDeleteRequestDto, authorization, options).then(function (request) { return request(axios, basePath); });
|
|
438
438
|
},
|
|
439
439
|
/**
|
|
440
|
-
* This send an email to invite a user with the specific role/roles.
|
|
440
|
+
* This send an email to invite a user with the specific role/roles. **Required Permissions** \"tenant-management.users.create\"
|
|
441
441
|
* @summary Invite a user
|
|
442
442
|
* @param {InviteUserRequestDtoRest} inviteUserRequestDtoRest
|
|
443
443
|
* @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
|
|
@@ -448,7 +448,7 @@ var InviteUsersApiFactory = function (configuration, basePath, axios) {
|
|
|
448
448
|
return localVarFp.inviteUser(inviteUserRequestDtoRest, authorization, options).then(function (request) { return request(axios, basePath); });
|
|
449
449
|
},
|
|
450
450
|
/**
|
|
451
|
-
* This send bulk emails to invite users with the specific role/roles.
|
|
451
|
+
* This send bulk emails to invite users with the specific role/roles. **Required Permissions** \"tenant-management.users.create\"
|
|
452
452
|
* @summary Invite batch of users
|
|
453
453
|
* @param {InviteUsersRequestDtoRest} inviteUsersRequestDtoRest
|
|
454
454
|
* @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
|
|
@@ -459,7 +459,7 @@ var InviteUsersApiFactory = function (configuration, basePath, axios) {
|
|
|
459
459
|
return localVarFp.inviteUsers(inviteUsersRequestDtoRest, authorization, options).then(function (request) { return request(axios, basePath); });
|
|
460
460
|
},
|
|
461
461
|
/**
|
|
462
|
-
* 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.
|
|
462
|
+
* 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. **Required Permissions** \"tenant-management.users.view\"
|
|
463
463
|
* @summary List invited users
|
|
464
464
|
* @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
|
|
465
465
|
* @param {any} [pageSize] A limit on the number of objects to be returned. Limit ranges between 1 and 50. Default: 10.
|
|
@@ -490,7 +490,7 @@ var InviteUsersApi = /** @class */ (function (_super) {
|
|
|
490
490
|
return _super !== null && _super.apply(this, arguments) || this;
|
|
491
491
|
}
|
|
492
492
|
/**
|
|
493
|
-
* 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.
|
|
493
|
+
* 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. **Required Permissions** \"tenant-management.users.delete\"
|
|
494
494
|
* @summary Delete invited users.
|
|
495
495
|
* @param {InviteUsersApiDeleteInvitesRequest} requestParameters Request parameters.
|
|
496
496
|
* @param {*} [options] Override http request option.
|
|
@@ -502,7 +502,7 @@ var InviteUsersApi = /** @class */ (function (_super) {
|
|
|
502
502
|
return (0, exports.InviteUsersApiFp)(this.configuration).deleteInvites(requestParameters.batchDeleteRequestDto, requestParameters.authorization, options).then(function (request) { return request(_this.axios, _this.basePath); });
|
|
503
503
|
};
|
|
504
504
|
/**
|
|
505
|
-
* This send an email to invite a user with the specific role/roles.
|
|
505
|
+
* This send an email to invite a user with the specific role/roles. **Required Permissions** \"tenant-management.users.create\"
|
|
506
506
|
* @summary Invite a user
|
|
507
507
|
* @param {InviteUsersApiInviteUserRequest} requestParameters Request parameters.
|
|
508
508
|
* @param {*} [options] Override http request option.
|
|
@@ -514,7 +514,7 @@ var InviteUsersApi = /** @class */ (function (_super) {
|
|
|
514
514
|
return (0, exports.InviteUsersApiFp)(this.configuration).inviteUser(requestParameters.inviteUserRequestDtoRest, requestParameters.authorization, options).then(function (request) { return request(_this.axios, _this.basePath); });
|
|
515
515
|
};
|
|
516
516
|
/**
|
|
517
|
-
* This send bulk emails to invite users with the specific role/roles.
|
|
517
|
+
* This send bulk emails to invite users with the specific role/roles. **Required Permissions** \"tenant-management.users.create\"
|
|
518
518
|
* @summary Invite batch of users
|
|
519
519
|
* @param {InviteUsersApiInviteUsersRequest} requestParameters Request parameters.
|
|
520
520
|
* @param {*} [options] Override http request option.
|
|
@@ -526,7 +526,7 @@ var InviteUsersApi = /** @class */ (function (_super) {
|
|
|
526
526
|
return (0, exports.InviteUsersApiFp)(this.configuration).inviteUsers(requestParameters.inviteUsersRequestDtoRest, requestParameters.authorization, options).then(function (request) { return request(_this.axios, _this.basePath); });
|
|
527
527
|
};
|
|
528
528
|
/**
|
|
529
|
-
* 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.
|
|
529
|
+
* 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. **Required Permissions** \"tenant-management.users.view\"
|
|
530
530
|
* @summary List invited users
|
|
531
531
|
* @param {InviteUsersApiListInvitesRequest} requestParameters Request parameters.
|
|
532
532
|
* @param {*} [options] Override http request option.
|
|
@@ -19,7 +19,7 @@ import { ListOrgInvitationsResponseClass } from '../models';
|
|
|
19
19
|
*/
|
|
20
20
|
export declare const ListOrganizationInvitationsApiAxiosParamCreator: (configuration?: Configuration) => {
|
|
21
21
|
/**
|
|
22
|
-
* Returns a list of organization invitations you have previously created. The organization invitations are returned in sorted order, with the oldest one appearing first. For more information about pagination, read the Pagination documentation.
|
|
22
|
+
* Returns a list of organization invitations you have previously created. The organization invitations are returned in sorted order, with the oldest one appearing first. For more information about pagination, read the Pagination documentation. **Required Permissions** \"tenant-management.organizations.view\"
|
|
23
23
|
* @summary List organization invitations
|
|
24
24
|
* @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
|
|
25
25
|
* @param {any} [pageSize] A limit on the number of objects to be returned. Limit ranges between 1 and 50. Default: 10.
|
|
@@ -40,7 +40,7 @@ export declare const ListOrganizationInvitationsApiAxiosParamCreator: (configura
|
|
|
40
40
|
*/
|
|
41
41
|
export declare const ListOrganizationInvitationsApiFp: (configuration?: Configuration) => {
|
|
42
42
|
/**
|
|
43
|
-
* Returns a list of organization invitations you have previously created. The organization invitations are returned in sorted order, with the oldest one appearing first. For more information about pagination, read the Pagination documentation.
|
|
43
|
+
* Returns a list of organization invitations you have previously created. The organization invitations are returned in sorted order, with the oldest one appearing first. For more information about pagination, read the Pagination documentation. **Required Permissions** \"tenant-management.organizations.view\"
|
|
44
44
|
* @summary List organization invitations
|
|
45
45
|
* @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
|
|
46
46
|
* @param {any} [pageSize] A limit on the number of objects to be returned. Limit ranges between 1 and 50. Default: 10.
|
|
@@ -61,7 +61,7 @@ export declare const ListOrganizationInvitationsApiFp: (configuration?: Configur
|
|
|
61
61
|
*/
|
|
62
62
|
export declare const ListOrganizationInvitationsApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
|
|
63
63
|
/**
|
|
64
|
-
* Returns a list of organization invitations you have previously created. The organization invitations are returned in sorted order, with the oldest one appearing first. For more information about pagination, read the Pagination documentation.
|
|
64
|
+
* Returns a list of organization invitations you have previously created. The organization invitations are returned in sorted order, with the oldest one appearing first. For more information about pagination, read the Pagination documentation. **Required Permissions** \"tenant-management.organizations.view\"
|
|
65
65
|
* @summary List organization invitations
|
|
66
66
|
* @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
|
|
67
67
|
* @param {any} [pageSize] A limit on the number of objects to be returned. Limit ranges between 1 and 50. Default: 10.
|
|
@@ -139,7 +139,7 @@ export interface ListOrganizationInvitationsApiListOrgInvitationsRequest {
|
|
|
139
139
|
*/
|
|
140
140
|
export declare class ListOrganizationInvitationsApi extends BaseAPI {
|
|
141
141
|
/**
|
|
142
|
-
* Returns a list of organization invitations you have previously created. The organization invitations are returned in sorted order, with the oldest one appearing first. For more information about pagination, read the Pagination documentation.
|
|
142
|
+
* Returns a list of organization invitations you have previously created. The organization invitations are returned in sorted order, with the oldest one appearing first. For more information about pagination, read the Pagination documentation. **Required Permissions** \"tenant-management.organizations.view\"
|
|
143
143
|
* @summary List organization invitations
|
|
144
144
|
* @param {ListOrganizationInvitationsApiListOrgInvitationsRequest} requestParameters Request parameters.
|
|
145
145
|
* @param {*} [options] Override http request option.
|
|
@@ -97,7 +97,7 @@ var ListOrganizationInvitationsApiAxiosParamCreator = function (configuration) {
|
|
|
97
97
|
var _this = this;
|
|
98
98
|
return {
|
|
99
99
|
/**
|
|
100
|
-
* Returns a list of organization invitations you have previously created. The organization invitations are returned in sorted order, with the oldest one appearing first. For more information about pagination, read the Pagination documentation.
|
|
100
|
+
* Returns a list of organization invitations you have previously created. The organization invitations are returned in sorted order, with the oldest one appearing first. For more information about pagination, read the Pagination documentation. **Required Permissions** \"tenant-management.organizations.view\"
|
|
101
101
|
* @summary List organization invitations
|
|
102
102
|
* @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
|
|
103
103
|
* @param {any} [pageSize] A limit on the number of objects to be returned. Limit ranges between 1 and 50. Default: 10.
|
|
@@ -179,7 +179,7 @@ var ListOrganizationInvitationsApiFp = function (configuration) {
|
|
|
179
179
|
var localVarAxiosParamCreator = (0, exports.ListOrganizationInvitationsApiAxiosParamCreator)(configuration);
|
|
180
180
|
return {
|
|
181
181
|
/**
|
|
182
|
-
* Returns a list of organization invitations you have previously created. The organization invitations are returned in sorted order, with the oldest one appearing first. For more information about pagination, read the Pagination documentation.
|
|
182
|
+
* Returns a list of organization invitations you have previously created. The organization invitations are returned in sorted order, with the oldest one appearing first. For more information about pagination, read the Pagination documentation. **Required Permissions** \"tenant-management.organizations.view\"
|
|
183
183
|
* @summary List organization invitations
|
|
184
184
|
* @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
|
|
185
185
|
* @param {any} [pageSize] A limit on the number of objects to be returned. Limit ranges between 1 and 50. Default: 10.
|
|
@@ -216,7 +216,7 @@ var ListOrganizationInvitationsApiFactory = function (configuration, basePath, a
|
|
|
216
216
|
var localVarFp = (0, exports.ListOrganizationInvitationsApiFp)(configuration);
|
|
217
217
|
return {
|
|
218
218
|
/**
|
|
219
|
-
* Returns a list of organization invitations you have previously created. The organization invitations are returned in sorted order, with the oldest one appearing first. For more information about pagination, read the Pagination documentation.
|
|
219
|
+
* Returns a list of organization invitations you have previously created. The organization invitations are returned in sorted order, with the oldest one appearing first. For more information about pagination, read the Pagination documentation. **Required Permissions** \"tenant-management.organizations.view\"
|
|
220
220
|
* @summary List organization invitations
|
|
221
221
|
* @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
|
|
222
222
|
* @param {any} [pageSize] A limit on the number of objects to be returned. Limit ranges between 1 and 50. Default: 10.
|
|
@@ -247,7 +247,7 @@ var ListOrganizationInvitationsApi = /** @class */ (function (_super) {
|
|
|
247
247
|
return _super !== null && _super.apply(this, arguments) || this;
|
|
248
248
|
}
|
|
249
249
|
/**
|
|
250
|
-
* Returns a list of organization invitations you have previously created. The organization invitations are returned in sorted order, with the oldest one appearing first. For more information about pagination, read the Pagination documentation.
|
|
250
|
+
* Returns a list of organization invitations you have previously created. The organization invitations are returned in sorted order, with the oldest one appearing first. For more information about pagination, read the Pagination documentation. **Required Permissions** \"tenant-management.organizations.view\"
|
|
251
251
|
* @summary List organization invitations
|
|
252
252
|
* @param {ListOrganizationInvitationsApiListOrgInvitationsRequest} requestParameters Request parameters.
|
|
253
253
|
* @param {*} [options] Override http request option.
|
|
@@ -22,7 +22,7 @@ import { UpdateOrganizationResponseClass } from '../models';
|
|
|
22
22
|
*/
|
|
23
23
|
export declare const OrganizationsApiAxiosParamCreator: (configuration?: Configuration) => {
|
|
24
24
|
/**
|
|
25
|
-
* Get Organization by code
|
|
25
|
+
* Get Organization by code **Required Permissions** \"tenant-management.organizations.view\"
|
|
26
26
|
* @summary Retrieve the Organization
|
|
27
27
|
* @param {string} code
|
|
28
28
|
* @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
|
|
@@ -31,7 +31,7 @@ export declare const OrganizationsApiAxiosParamCreator: (configuration?: Configu
|
|
|
31
31
|
*/
|
|
32
32
|
getOrganization: (code: string, authorization?: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
33
33
|
/**
|
|
34
|
-
* This will fetch list of organizations
|
|
34
|
+
* This will fetch list of organizations **Required Permissions** \"tenant-management.organizations.view\"
|
|
35
35
|
* @summary List organizations
|
|
36
36
|
* @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
|
|
37
37
|
* @param {any} [pageSize] A limit on the number of objects to be returned. Limit ranges between 1 and 50. Default: 10.
|
|
@@ -46,7 +46,7 @@ export declare const OrganizationsApiAxiosParamCreator: (configuration?: Configu
|
|
|
46
46
|
*/
|
|
47
47
|
listOrganizations: (authorization?: string, pageSize?: any, pageToken?: any, filter?: any, search?: any, order?: any, expand?: any, filters?: any, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
48
48
|
/**
|
|
49
|
-
* Update organization data
|
|
49
|
+
* Update organization data **Required Permissions** \"tenant-management.organizations.update\"
|
|
50
50
|
* @summary Update the Organization
|
|
51
51
|
* @param {string} code
|
|
52
52
|
* @param {UpdateOrganizationRequestDtoRest} updateOrganizationRequestDtoRest
|
|
@@ -62,7 +62,7 @@ export declare const OrganizationsApiAxiosParamCreator: (configuration?: Configu
|
|
|
62
62
|
*/
|
|
63
63
|
export declare const OrganizationsApiFp: (configuration?: Configuration) => {
|
|
64
64
|
/**
|
|
65
|
-
* Get Organization by code
|
|
65
|
+
* Get Organization by code **Required Permissions** \"tenant-management.organizations.view\"
|
|
66
66
|
* @summary Retrieve the Organization
|
|
67
67
|
* @param {string} code
|
|
68
68
|
* @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
|
|
@@ -71,7 +71,7 @@ export declare const OrganizationsApiFp: (configuration?: Configuration) => {
|
|
|
71
71
|
*/
|
|
72
72
|
getOrganization(code: string, authorization?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<GetOrganizationResponseClass>>;
|
|
73
73
|
/**
|
|
74
|
-
* This will fetch list of organizations
|
|
74
|
+
* This will fetch list of organizations **Required Permissions** \"tenant-management.organizations.view\"
|
|
75
75
|
* @summary List organizations
|
|
76
76
|
* @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
|
|
77
77
|
* @param {any} [pageSize] A limit on the number of objects to be returned. Limit ranges between 1 and 50. Default: 10.
|
|
@@ -86,7 +86,7 @@ export declare const OrganizationsApiFp: (configuration?: Configuration) => {
|
|
|
86
86
|
*/
|
|
87
87
|
listOrganizations(authorization?: string, pageSize?: any, pageToken?: any, filter?: any, search?: any, order?: any, expand?: any, filters?: any, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ListOrganizationsResponseClass>>;
|
|
88
88
|
/**
|
|
89
|
-
* Update organization data
|
|
89
|
+
* Update organization data **Required Permissions** \"tenant-management.organizations.update\"
|
|
90
90
|
* @summary Update the Organization
|
|
91
91
|
* @param {string} code
|
|
92
92
|
* @param {UpdateOrganizationRequestDtoRest} updateOrganizationRequestDtoRest
|
|
@@ -102,7 +102,7 @@ export declare const OrganizationsApiFp: (configuration?: Configuration) => {
|
|
|
102
102
|
*/
|
|
103
103
|
export declare const OrganizationsApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
|
|
104
104
|
/**
|
|
105
|
-
* Get Organization by code
|
|
105
|
+
* Get Organization by code **Required Permissions** \"tenant-management.organizations.view\"
|
|
106
106
|
* @summary Retrieve the Organization
|
|
107
107
|
* @param {string} code
|
|
108
108
|
* @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
|
|
@@ -111,7 +111,7 @@ export declare const OrganizationsApiFactory: (configuration?: Configuration, ba
|
|
|
111
111
|
*/
|
|
112
112
|
getOrganization(code: string, authorization?: string, options?: any): AxiosPromise<GetOrganizationResponseClass>;
|
|
113
113
|
/**
|
|
114
|
-
* This will fetch list of organizations
|
|
114
|
+
* This will fetch list of organizations **Required Permissions** \"tenant-management.organizations.view\"
|
|
115
115
|
* @summary List organizations
|
|
116
116
|
* @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
|
|
117
117
|
* @param {any} [pageSize] A limit on the number of objects to be returned. Limit ranges between 1 and 50. Default: 10.
|
|
@@ -126,7 +126,7 @@ export declare const OrganizationsApiFactory: (configuration?: Configuration, ba
|
|
|
126
126
|
*/
|
|
127
127
|
listOrganizations(authorization?: string, pageSize?: any, pageToken?: any, filter?: any, search?: any, order?: any, expand?: any, filters?: any, options?: any): AxiosPromise<ListOrganizationsResponseClass>;
|
|
128
128
|
/**
|
|
129
|
-
* Update organization data
|
|
129
|
+
* Update organization data **Required Permissions** \"tenant-management.organizations.update\"
|
|
130
130
|
* @summary Update the Organization
|
|
131
131
|
* @param {string} code
|
|
132
132
|
* @param {UpdateOrganizationRequestDtoRest} updateOrganizationRequestDtoRest
|
|
@@ -243,7 +243,7 @@ export interface OrganizationsApiUpdateOrganizationRequest {
|
|
|
243
243
|
*/
|
|
244
244
|
export declare class OrganizationsApi extends BaseAPI {
|
|
245
245
|
/**
|
|
246
|
-
* Get Organization by code
|
|
246
|
+
* Get Organization by code **Required Permissions** \"tenant-management.organizations.view\"
|
|
247
247
|
* @summary Retrieve the Organization
|
|
248
248
|
* @param {OrganizationsApiGetOrganizationRequest} requestParameters Request parameters.
|
|
249
249
|
* @param {*} [options] Override http request option.
|
|
@@ -252,7 +252,7 @@ export declare class OrganizationsApi extends BaseAPI {
|
|
|
252
252
|
*/
|
|
253
253
|
getOrganization(requestParameters: OrganizationsApiGetOrganizationRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<GetOrganizationResponseClass, any>>;
|
|
254
254
|
/**
|
|
255
|
-
* This will fetch list of organizations
|
|
255
|
+
* This will fetch list of organizations **Required Permissions** \"tenant-management.organizations.view\"
|
|
256
256
|
* @summary List organizations
|
|
257
257
|
* @param {OrganizationsApiListOrganizationsRequest} requestParameters Request parameters.
|
|
258
258
|
* @param {*} [options] Override http request option.
|
|
@@ -261,7 +261,7 @@ export declare class OrganizationsApi extends BaseAPI {
|
|
|
261
261
|
*/
|
|
262
262
|
listOrganizations(requestParameters?: OrganizationsApiListOrganizationsRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<ListOrganizationsResponseClass, any>>;
|
|
263
263
|
/**
|
|
264
|
-
* Update organization data
|
|
264
|
+
* Update organization data **Required Permissions** \"tenant-management.organizations.update\"
|
|
265
265
|
* @summary Update the Organization
|
|
266
266
|
* @param {OrganizationsApiUpdateOrganizationRequest} requestParameters Request parameters.
|
|
267
267
|
* @param {*} [options] Override http request option.
|