@emilgroup/tenant-sdk-node 1.28.0 → 1.28.1-beta.1
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 +338 -39
- 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 +189 -34
- package/dist/api/dashboard-api.js +300 -34
- 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
|
@@ -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.
|
|
@@ -97,7 +97,7 @@ var OrganizationsApiAxiosParamCreator = function (configuration) {
|
|
|
97
97
|
var _this = this;
|
|
98
98
|
return {
|
|
99
99
|
/**
|
|
100
|
-
* Get Organization by code
|
|
100
|
+
* Get Organization by code **Required Permissions** \"tenant-management.organizations.view\"
|
|
101
101
|
* @summary Retrieve the Organization
|
|
102
102
|
* @param {string} code
|
|
103
103
|
* @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
|
|
@@ -145,7 +145,7 @@ var OrganizationsApiAxiosParamCreator = function (configuration) {
|
|
|
145
145
|
});
|
|
146
146
|
},
|
|
147
147
|
/**
|
|
148
|
-
* This will fetch list of organizations
|
|
148
|
+
* This will fetch list of organizations **Required Permissions** \"tenant-management.organizations.view\"
|
|
149
149
|
* @summary List organizations
|
|
150
150
|
* @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
|
|
151
151
|
* @param {any} [pageSize] A limit on the number of objects to be returned. Limit ranges between 1 and 50. Default: 10.
|
|
@@ -217,7 +217,7 @@ var OrganizationsApiAxiosParamCreator = function (configuration) {
|
|
|
217
217
|
});
|
|
218
218
|
},
|
|
219
219
|
/**
|
|
220
|
-
* Update organization data
|
|
220
|
+
* Update organization data **Required Permissions** \"tenant-management.organizations.update\"
|
|
221
221
|
* @summary Update the Organization
|
|
222
222
|
* @param {string} code
|
|
223
223
|
* @param {UpdateOrganizationRequestDtoRest} updateOrganizationRequestDtoRest
|
|
@@ -280,7 +280,7 @@ var OrganizationsApiFp = function (configuration) {
|
|
|
280
280
|
var localVarAxiosParamCreator = (0, exports.OrganizationsApiAxiosParamCreator)(configuration);
|
|
281
281
|
return {
|
|
282
282
|
/**
|
|
283
|
-
* Get Organization by code
|
|
283
|
+
* Get Organization by code **Required Permissions** \"tenant-management.organizations.view\"
|
|
284
284
|
* @summary Retrieve the Organization
|
|
285
285
|
* @param {string} code
|
|
286
286
|
* @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
|
|
@@ -301,7 +301,7 @@ var OrganizationsApiFp = function (configuration) {
|
|
|
301
301
|
});
|
|
302
302
|
},
|
|
303
303
|
/**
|
|
304
|
-
* This will fetch list of organizations
|
|
304
|
+
* This will fetch list of organizations **Required Permissions** \"tenant-management.organizations.view\"
|
|
305
305
|
* @summary List organizations
|
|
306
306
|
* @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
|
|
307
307
|
* @param {any} [pageSize] A limit on the number of objects to be returned. Limit ranges between 1 and 50. Default: 10.
|
|
@@ -328,7 +328,7 @@ var OrganizationsApiFp = function (configuration) {
|
|
|
328
328
|
});
|
|
329
329
|
},
|
|
330
330
|
/**
|
|
331
|
-
* Update organization data
|
|
331
|
+
* Update organization data **Required Permissions** \"tenant-management.organizations.update\"
|
|
332
332
|
* @summary Update the Organization
|
|
333
333
|
* @param {string} code
|
|
334
334
|
* @param {UpdateOrganizationRequestDtoRest} updateOrganizationRequestDtoRest
|
|
@@ -360,7 +360,7 @@ var OrganizationsApiFactory = function (configuration, basePath, axios) {
|
|
|
360
360
|
var localVarFp = (0, exports.OrganizationsApiFp)(configuration);
|
|
361
361
|
return {
|
|
362
362
|
/**
|
|
363
|
-
* Get Organization by code
|
|
363
|
+
* Get Organization by code **Required Permissions** \"tenant-management.organizations.view\"
|
|
364
364
|
* @summary Retrieve the Organization
|
|
365
365
|
* @param {string} code
|
|
366
366
|
* @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
|
|
@@ -371,7 +371,7 @@ var OrganizationsApiFactory = function (configuration, basePath, axios) {
|
|
|
371
371
|
return localVarFp.getOrganization(code, authorization, options).then(function (request) { return request(axios, basePath); });
|
|
372
372
|
},
|
|
373
373
|
/**
|
|
374
|
-
* This will fetch list of organizations
|
|
374
|
+
* This will fetch list of organizations **Required Permissions** \"tenant-management.organizations.view\"
|
|
375
375
|
* @summary List organizations
|
|
376
376
|
* @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
|
|
377
377
|
* @param {any} [pageSize] A limit on the number of objects to be returned. Limit ranges between 1 and 50. Default: 10.
|
|
@@ -388,7 +388,7 @@ var OrganizationsApiFactory = function (configuration, basePath, axios) {
|
|
|
388
388
|
return localVarFp.listOrganizations(authorization, pageSize, pageToken, filter, search, order, expand, filters, options).then(function (request) { return request(axios, basePath); });
|
|
389
389
|
},
|
|
390
390
|
/**
|
|
391
|
-
* Update organization data
|
|
391
|
+
* Update organization data **Required Permissions** \"tenant-management.organizations.update\"
|
|
392
392
|
* @summary Update the Organization
|
|
393
393
|
* @param {string} code
|
|
394
394
|
* @param {UpdateOrganizationRequestDtoRest} updateOrganizationRequestDtoRest
|
|
@@ -414,7 +414,7 @@ var OrganizationsApi = /** @class */ (function (_super) {
|
|
|
414
414
|
return _super !== null && _super.apply(this, arguments) || this;
|
|
415
415
|
}
|
|
416
416
|
/**
|
|
417
|
-
* Get Organization by code
|
|
417
|
+
* Get Organization by code **Required Permissions** \"tenant-management.organizations.view\"
|
|
418
418
|
* @summary Retrieve the Organization
|
|
419
419
|
* @param {OrganizationsApiGetOrganizationRequest} requestParameters Request parameters.
|
|
420
420
|
* @param {*} [options] Override http request option.
|
|
@@ -426,7 +426,7 @@ var OrganizationsApi = /** @class */ (function (_super) {
|
|
|
426
426
|
return (0, exports.OrganizationsApiFp)(this.configuration).getOrganization(requestParameters.code, requestParameters.authorization, options).then(function (request) { return request(_this.axios, _this.basePath); });
|
|
427
427
|
};
|
|
428
428
|
/**
|
|
429
|
-
* This will fetch list of organizations
|
|
429
|
+
* This will fetch list of organizations **Required Permissions** \"tenant-management.organizations.view\"
|
|
430
430
|
* @summary List organizations
|
|
431
431
|
* @param {OrganizationsApiListOrganizationsRequest} requestParameters Request parameters.
|
|
432
432
|
* @param {*} [options] Override http request option.
|
|
@@ -439,7 +439,7 @@ var OrganizationsApi = /** @class */ (function (_super) {
|
|
|
439
439
|
return (0, exports.OrganizationsApiFp)(this.configuration).listOrganizations(requestParameters.authorization, requestParameters.pageSize, requestParameters.pageToken, requestParameters.filter, requestParameters.search, requestParameters.order, requestParameters.expand, requestParameters.filters, options).then(function (request) { return request(_this.axios, _this.basePath); });
|
|
440
440
|
};
|
|
441
441
|
/**
|
|
442
|
-
* Update organization data
|
|
442
|
+
* Update organization data **Required Permissions** \"tenant-management.organizations.update\"
|
|
443
443
|
* @summary Update the Organization
|
|
444
444
|
* @param {OrganizationsApiUpdateOrganizationRequest} requestParameters Request parameters.
|
|
445
445
|
* @param {*} [options] Override http request option.
|
|
@@ -20,7 +20,7 @@ import { ReInviteOrgRequestDto } from '../models';
|
|
|
20
20
|
*/
|
|
21
21
|
export declare const ReInviteAnOrganizationApiAxiosParamCreator: (configuration?: Configuration) => {
|
|
22
22
|
/**
|
|
23
|
-
* This re-sends an email to invite an organization.
|
|
23
|
+
* This re-sends an email to invite an organization. **Required Permissions** \"tenant-management.organizations.create\"
|
|
24
24
|
* @param {ReInviteOrgRequestDto} reInviteOrgRequestDto
|
|
25
25
|
* @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
|
|
26
26
|
* @param {*} [options] Override http request option.
|
|
@@ -34,7 +34,7 @@ export declare const ReInviteAnOrganizationApiAxiosParamCreator: (configuration?
|
|
|
34
34
|
*/
|
|
35
35
|
export declare const ReInviteAnOrganizationApiFp: (configuration?: Configuration) => {
|
|
36
36
|
/**
|
|
37
|
-
* This re-sends an email to invite an organization.
|
|
37
|
+
* This re-sends an email to invite an organization. **Required Permissions** \"tenant-management.organizations.create\"
|
|
38
38
|
* @param {ReInviteOrgRequestDto} reInviteOrgRequestDto
|
|
39
39
|
* @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
|
|
40
40
|
* @param {*} [options] Override http request option.
|
|
@@ -48,7 +48,7 @@ export declare const ReInviteAnOrganizationApiFp: (configuration?: Configuration
|
|
|
48
48
|
*/
|
|
49
49
|
export declare const ReInviteAnOrganizationApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
|
|
50
50
|
/**
|
|
51
|
-
* This re-sends an email to invite an organization.
|
|
51
|
+
* This re-sends an email to invite an organization. **Required Permissions** \"tenant-management.organizations.create\"
|
|
52
52
|
* @param {ReInviteOrgRequestDto} reInviteOrgRequestDto
|
|
53
53
|
* @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
|
|
54
54
|
* @param {*} [options] Override http request option.
|
|
@@ -83,7 +83,7 @@ export interface ReInviteAnOrganizationApiReInviteOrganizationRequest {
|
|
|
83
83
|
*/
|
|
84
84
|
export declare class ReInviteAnOrganizationApi extends BaseAPI {
|
|
85
85
|
/**
|
|
86
|
-
* This re-sends an email to invite an organization.
|
|
86
|
+
* This re-sends an email to invite an organization. **Required Permissions** \"tenant-management.organizations.create\"
|
|
87
87
|
* @param {ReInviteAnOrganizationApiReInviteOrganizationRequest} requestParameters Request parameters.
|
|
88
88
|
* @param {*} [options] Override http request option.
|
|
89
89
|
* @throws {RequiredError}
|
|
@@ -97,7 +97,7 @@ var ReInviteAnOrganizationApiAxiosParamCreator = function (configuration) {
|
|
|
97
97
|
var _this = this;
|
|
98
98
|
return {
|
|
99
99
|
/**
|
|
100
|
-
* This re-sends an email to invite an organization.
|
|
100
|
+
* This re-sends an email to invite an organization. **Required Permissions** \"tenant-management.organizations.create\"
|
|
101
101
|
* @param {ReInviteOrgRequestDto} reInviteOrgRequestDto
|
|
102
102
|
* @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
|
|
103
103
|
* @param {*} [options] Override http request option.
|
|
@@ -155,7 +155,7 @@ var ReInviteAnOrganizationApiFp = function (configuration) {
|
|
|
155
155
|
var localVarAxiosParamCreator = (0, exports.ReInviteAnOrganizationApiAxiosParamCreator)(configuration);
|
|
156
156
|
return {
|
|
157
157
|
/**
|
|
158
|
-
* This re-sends an email to invite an organization.
|
|
158
|
+
* This re-sends an email to invite an organization. **Required Permissions** \"tenant-management.organizations.create\"
|
|
159
159
|
* @param {ReInviteOrgRequestDto} reInviteOrgRequestDto
|
|
160
160
|
* @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
|
|
161
161
|
* @param {*} [options] Override http request option.
|
|
@@ -185,7 +185,7 @@ var ReInviteAnOrganizationApiFactory = function (configuration, basePath, axios)
|
|
|
185
185
|
var localVarFp = (0, exports.ReInviteAnOrganizationApiFp)(configuration);
|
|
186
186
|
return {
|
|
187
187
|
/**
|
|
188
|
-
* This re-sends an email to invite an organization.
|
|
188
|
+
* This re-sends an email to invite an organization. **Required Permissions** \"tenant-management.organizations.create\"
|
|
189
189
|
* @param {ReInviteOrgRequestDto} reInviteOrgRequestDto
|
|
190
190
|
* @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
|
|
191
191
|
* @param {*} [options] Override http request option.
|
|
@@ -209,7 +209,7 @@ var ReInviteAnOrganizationApi = /** @class */ (function (_super) {
|
|
|
209
209
|
return _super !== null && _super.apply(this, arguments) || this;
|
|
210
210
|
}
|
|
211
211
|
/**
|
|
212
|
-
* This re-sends an email to invite an organization.
|
|
212
|
+
* This re-sends an email to invite an organization. **Required Permissions** \"tenant-management.organizations.create\"
|
|
213
213
|
* @param {ReInviteAnOrganizationApiReInviteOrganizationRequest} requestParameters Request parameters.
|
|
214
214
|
* @param {*} [options] Override http request option.
|
|
215
215
|
* @throws {RequiredError}
|
package/dist/api/roles-api.d.ts
CHANGED
|
@@ -19,7 +19,7 @@ import { ListRolesResponseClass } from '../models';
|
|
|
19
19
|
*/
|
|
20
20
|
export declare const RolesApiAxiosParamCreator: (configuration?: Configuration) => {
|
|
21
21
|
/**
|
|
22
|
-
* Returns a list of roles you have previously created. The roles 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 roles you have previously created. The roles are returned in sorted order, with the oldest one appearing first. For more information about pagination, read the Pagination documentation. **Required Permissions** \"identity-management.roles.view\"
|
|
23
23
|
* @summary List roles
|
|
24
24
|
* @param {string} [authorization] Bearer Token
|
|
25
25
|
* @param {number} [pageSize] Page size
|
|
@@ -40,7 +40,7 @@ export declare const RolesApiAxiosParamCreator: (configuration?: Configuration)
|
|
|
40
40
|
*/
|
|
41
41
|
export declare const RolesApiFp: (configuration?: Configuration) => {
|
|
42
42
|
/**
|
|
43
|
-
* Returns a list of roles you have previously created. The roles 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 roles you have previously created. The roles are returned in sorted order, with the oldest one appearing first. For more information about pagination, read the Pagination documentation. **Required Permissions** \"identity-management.roles.view\"
|
|
44
44
|
* @summary List roles
|
|
45
45
|
* @param {string} [authorization] Bearer Token
|
|
46
46
|
* @param {number} [pageSize] Page size
|
|
@@ -61,7 +61,7 @@ export declare const RolesApiFp: (configuration?: Configuration) => {
|
|
|
61
61
|
*/
|
|
62
62
|
export declare const RolesApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
|
|
63
63
|
/**
|
|
64
|
-
* Returns a list of roles you have previously created. The roles 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 roles you have previously created. The roles are returned in sorted order, with the oldest one appearing first. For more information about pagination, read the Pagination documentation. **Required Permissions** \"identity-management.roles.view\"
|
|
65
65
|
* @summary List roles
|
|
66
66
|
* @param {string} [authorization] Bearer Token
|
|
67
67
|
* @param {number} [pageSize] Page size
|
|
@@ -133,7 +133,7 @@ export interface RolesApiListRolesRequest {
|
|
|
133
133
|
*/
|
|
134
134
|
export declare class RolesApi extends BaseAPI {
|
|
135
135
|
/**
|
|
136
|
-
* Returns a list of roles you have previously created. The roles are returned in sorted order, with the oldest one appearing first. For more information about pagination, read the Pagination documentation.
|
|
136
|
+
* Returns a list of roles you have previously created. The roles are returned in sorted order, with the oldest one appearing first. For more information about pagination, read the Pagination documentation. **Required Permissions** \"identity-management.roles.view\"
|
|
137
137
|
* @summary List roles
|
|
138
138
|
* @param {RolesApiListRolesRequest} requestParameters Request parameters.
|
|
139
139
|
* @param {*} [options] Override http request option.
|
package/dist/api/roles-api.js
CHANGED
|
@@ -97,7 +97,7 @@ var RolesApiAxiosParamCreator = function (configuration) {
|
|
|
97
97
|
var _this = this;
|
|
98
98
|
return {
|
|
99
99
|
/**
|
|
100
|
-
* Returns a list of roles you have previously created. The roles 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 roles you have previously created. The roles are returned in sorted order, with the oldest one appearing first. For more information about pagination, read the Pagination documentation. **Required Permissions** \"identity-management.roles.view\"
|
|
101
101
|
* @summary List roles
|
|
102
102
|
* @param {string} [authorization] Bearer Token
|
|
103
103
|
* @param {number} [pageSize] Page size
|
|
@@ -176,7 +176,7 @@ var RolesApiFp = function (configuration) {
|
|
|
176
176
|
var localVarAxiosParamCreator = (0, exports.RolesApiAxiosParamCreator)(configuration);
|
|
177
177
|
return {
|
|
178
178
|
/**
|
|
179
|
-
* Returns a list of roles you have previously created. The roles are returned in sorted order, with the oldest one appearing first. For more information about pagination, read the Pagination documentation.
|
|
179
|
+
* Returns a list of roles you have previously created. The roles are returned in sorted order, with the oldest one appearing first. For more information about pagination, read the Pagination documentation. **Required Permissions** \"identity-management.roles.view\"
|
|
180
180
|
* @summary List roles
|
|
181
181
|
* @param {string} [authorization] Bearer Token
|
|
182
182
|
* @param {number} [pageSize] Page size
|
|
@@ -213,7 +213,7 @@ var RolesApiFactory = function (configuration, basePath, axios) {
|
|
|
213
213
|
var localVarFp = (0, exports.RolesApiFp)(configuration);
|
|
214
214
|
return {
|
|
215
215
|
/**
|
|
216
|
-
* Returns a list of roles you have previously created. The roles are returned in sorted order, with the oldest one appearing first. For more information about pagination, read the Pagination documentation.
|
|
216
|
+
* Returns a list of roles you have previously created. The roles are returned in sorted order, with the oldest one appearing first. For more information about pagination, read the Pagination documentation. **Required Permissions** \"identity-management.roles.view\"
|
|
217
217
|
* @summary List roles
|
|
218
218
|
* @param {string} [authorization] Bearer Token
|
|
219
219
|
* @param {number} [pageSize] Page size
|
|
@@ -244,7 +244,7 @@ var RolesApi = /** @class */ (function (_super) {
|
|
|
244
244
|
return _super !== null && _super.apply(this, arguments) || this;
|
|
245
245
|
}
|
|
246
246
|
/**
|
|
247
|
-
* Returns a list of roles you have previously created. The roles 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 roles you have previously created. The roles are returned in sorted order, with the oldest one appearing first. For more information about pagination, read the Pagination documentation. **Required Permissions** \"identity-management.roles.view\"
|
|
248
248
|
* @summary List roles
|
|
249
249
|
* @param {RolesApiListRolesRequest} requestParameters Request parameters.
|
|
250
250
|
* @param {*} [options] Override http request option.
|
|
@@ -19,7 +19,7 @@ import { GetSettingsResponseClass } from '../models';
|
|
|
19
19
|
*/
|
|
20
20
|
export declare const SettingsApiAxiosParamCreator: (configuration?: Configuration) => {
|
|
21
21
|
/**
|
|
22
|
-
* Retrieves the details of the settings that was previously created. Supply the unique settings code that was returned when you created it and Emil Api will return the corresponding settings information.
|
|
22
|
+
* Retrieves the details of the settings that was previously created. Supply the unique settings code that was returned when you created it and Emil Api will return the corresponding settings information. **Required Permissions** \"tenant-management.tenants.view\"
|
|
23
23
|
* @summary Retrieve the settings
|
|
24
24
|
* @param {string} keys
|
|
25
25
|
* @param {string} [authorization] Bearer Token
|
|
@@ -34,7 +34,7 @@ export declare const SettingsApiAxiosParamCreator: (configuration?: Configuratio
|
|
|
34
34
|
*/
|
|
35
35
|
export declare const SettingsApiFp: (configuration?: Configuration) => {
|
|
36
36
|
/**
|
|
37
|
-
* Retrieves the details of the settings that was previously created. Supply the unique settings code that was returned when you created it and Emil Api will return the corresponding settings information.
|
|
37
|
+
* Retrieves the details of the settings that was previously created. Supply the unique settings code that was returned when you created it and Emil Api will return the corresponding settings information. **Required Permissions** \"tenant-management.tenants.view\"
|
|
38
38
|
* @summary Retrieve the settings
|
|
39
39
|
* @param {string} keys
|
|
40
40
|
* @param {string} [authorization] Bearer Token
|
|
@@ -49,7 +49,7 @@ export declare const SettingsApiFp: (configuration?: Configuration) => {
|
|
|
49
49
|
*/
|
|
50
50
|
export declare const SettingsApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
|
|
51
51
|
/**
|
|
52
|
-
* Retrieves the details of the settings that was previously created. Supply the unique settings code that was returned when you created it and Emil Api will return the corresponding settings information.
|
|
52
|
+
* Retrieves the details of the settings that was previously created. Supply the unique settings code that was returned when you created it and Emil Api will return the corresponding settings information. **Required Permissions** \"tenant-management.tenants.view\"
|
|
53
53
|
* @summary Retrieve the settings
|
|
54
54
|
* @param {string} keys
|
|
55
55
|
* @param {string} [authorization] Bearer Token
|
|
@@ -85,7 +85,7 @@ export interface SettingsApiGetTenantSettingsRequest {
|
|
|
85
85
|
*/
|
|
86
86
|
export declare class SettingsApi extends BaseAPI {
|
|
87
87
|
/**
|
|
88
|
-
* Retrieves the details of the settings that was previously created. Supply the unique settings code that was returned when you created it and Emil Api will return the corresponding settings information.
|
|
88
|
+
* Retrieves the details of the settings that was previously created. Supply the unique settings code that was returned when you created it and Emil Api will return the corresponding settings information. **Required Permissions** \"tenant-management.tenants.view\"
|
|
89
89
|
* @summary Retrieve the settings
|
|
90
90
|
* @param {SettingsApiGetTenantSettingsRequest} requestParameters Request parameters.
|
|
91
91
|
* @param {*} [options] Override http request option.
|
package/dist/api/settings-api.js
CHANGED
|
@@ -97,7 +97,7 @@ var SettingsApiAxiosParamCreator = function (configuration) {
|
|
|
97
97
|
var _this = this;
|
|
98
98
|
return {
|
|
99
99
|
/**
|
|
100
|
-
* Retrieves the details of the settings that was previously created. Supply the unique settings code that was returned when you created it and Emil Api will return the corresponding settings information.
|
|
100
|
+
* Retrieves the details of the settings that was previously created. Supply the unique settings code that was returned when you created it and Emil Api will return the corresponding settings information. **Required Permissions** \"tenant-management.tenants.view\"
|
|
101
101
|
* @summary Retrieve the settings
|
|
102
102
|
* @param {string} keys
|
|
103
103
|
* @param {string} [authorization] Bearer Token
|
|
@@ -157,7 +157,7 @@ var SettingsApiFp = function (configuration) {
|
|
|
157
157
|
var localVarAxiosParamCreator = (0, exports.SettingsApiAxiosParamCreator)(configuration);
|
|
158
158
|
return {
|
|
159
159
|
/**
|
|
160
|
-
* Retrieves the details of the settings that was previously created. Supply the unique settings code that was returned when you created it and Emil Api will return the corresponding settings information.
|
|
160
|
+
* Retrieves the details of the settings that was previously created. Supply the unique settings code that was returned when you created it and Emil Api will return the corresponding settings information. **Required Permissions** \"tenant-management.tenants.view\"
|
|
161
161
|
* @summary Retrieve the settings
|
|
162
162
|
* @param {string} keys
|
|
163
163
|
* @param {string} [authorization] Bearer Token
|
|
@@ -188,7 +188,7 @@ var SettingsApiFactory = function (configuration, basePath, axios) {
|
|
|
188
188
|
var localVarFp = (0, exports.SettingsApiFp)(configuration);
|
|
189
189
|
return {
|
|
190
190
|
/**
|
|
191
|
-
* Retrieves the details of the settings that was previously created. Supply the unique settings code that was returned when you created it and Emil Api will return the corresponding settings information.
|
|
191
|
+
* Retrieves the details of the settings that was previously created. Supply the unique settings code that was returned when you created it and Emil Api will return the corresponding settings information. **Required Permissions** \"tenant-management.tenants.view\"
|
|
192
192
|
* @summary Retrieve the settings
|
|
193
193
|
* @param {string} keys
|
|
194
194
|
* @param {string} [authorization] Bearer Token
|
|
@@ -213,7 +213,7 @@ var SettingsApi = /** @class */ (function (_super) {
|
|
|
213
213
|
return _super !== null && _super.apply(this, arguments) || this;
|
|
214
214
|
}
|
|
215
215
|
/**
|
|
216
|
-
* Retrieves the details of the settings that was previously created. Supply the unique settings code that was returned when you created it and Emil Api will return the corresponding settings information.
|
|
216
|
+
* Retrieves the details of the settings that was previously created. Supply the unique settings code that was returned when you created it and Emil Api will return the corresponding settings information. **Required Permissions** \"tenant-management.tenants.view\"
|
|
217
217
|
* @summary Retrieve the settings
|
|
218
218
|
* @param {SettingsApiGetTenantSettingsRequest} requestParameters Request parameters.
|
|
219
219
|
* @param {*} [options] Override http request option.
|