@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
|
@@ -45,7 +45,7 @@ const FormData = require('form-data');
|
|
|
45
45
|
export const DashboardGroupApiAxiosParamCreator = function (configuration?: Configuration) {
|
|
46
46
|
return {
|
|
47
47
|
/**
|
|
48
|
-
*
|
|
48
|
+
* undefined **Required Permissions** \"pbm-management.dashboard-groups.create\"
|
|
49
49
|
* @param {CreateDashboardGroupRequestDto} createDashboardGroupRequestDto
|
|
50
50
|
* @param {string} [authorization] Bearer Token
|
|
51
51
|
* @param {*} [options] Override http request option.
|
|
@@ -91,7 +91,7 @@ export const DashboardGroupApiAxiosParamCreator = function (configuration?: Conf
|
|
|
91
91
|
};
|
|
92
92
|
},
|
|
93
93
|
/**
|
|
94
|
-
*
|
|
94
|
+
* undefined **Required Permissions** \"pbm-management.dashboard-groups.delete\"
|
|
95
95
|
* @param {string} code
|
|
96
96
|
* @param {string} [authorization] Bearer Token
|
|
97
97
|
* @param {*} [options] Override http request option.
|
|
@@ -135,7 +135,7 @@ export const DashboardGroupApiAxiosParamCreator = function (configuration?: Conf
|
|
|
135
135
|
};
|
|
136
136
|
},
|
|
137
137
|
/**
|
|
138
|
-
*
|
|
138
|
+
* undefined **Required Permissions** \"pbm-management.dashboard-groups.view\"
|
|
139
139
|
* @param {string} code
|
|
140
140
|
* @param {string} [authorization] Bearer Token
|
|
141
141
|
* @param {*} [options] Override http request option.
|
|
@@ -179,7 +179,7 @@ export const DashboardGroupApiAxiosParamCreator = function (configuration?: Conf
|
|
|
179
179
|
};
|
|
180
180
|
},
|
|
181
181
|
/**
|
|
182
|
-
*
|
|
182
|
+
* undefined **Required Permissions** \"pbm-management.dashboard-groups.view\"
|
|
183
183
|
* @param {string} [authorization] Bearer Token
|
|
184
184
|
* @param {any} [pageSize] A limit on the number of objects to be returned. Limit ranges between 1 and 50. Default: 10.
|
|
185
185
|
* @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.
|
|
@@ -254,7 +254,7 @@ export const DashboardGroupApiAxiosParamCreator = function (configuration?: Conf
|
|
|
254
254
|
};
|
|
255
255
|
},
|
|
256
256
|
/**
|
|
257
|
-
*
|
|
257
|
+
* undefined **Required Permissions** \"pbm-management.dashboard-groups.update\"
|
|
258
258
|
* @param {string} code
|
|
259
259
|
* @param {UpdateDashboardGroupRequestDto} updateDashboardGroupRequestDto
|
|
260
260
|
* @param {string} [authorization] Bearer Token
|
|
@@ -314,7 +314,7 @@ export const DashboardGroupApiFp = function(configuration?: Configuration) {
|
|
|
314
314
|
const localVarAxiosParamCreator = DashboardGroupApiAxiosParamCreator(configuration)
|
|
315
315
|
return {
|
|
316
316
|
/**
|
|
317
|
-
*
|
|
317
|
+
* undefined **Required Permissions** \"pbm-management.dashboard-groups.create\"
|
|
318
318
|
* @param {CreateDashboardGroupRequestDto} createDashboardGroupRequestDto
|
|
319
319
|
* @param {string} [authorization] Bearer Token
|
|
320
320
|
* @param {*} [options] Override http request option.
|
|
@@ -325,7 +325,7 @@ export const DashboardGroupApiFp = function(configuration?: Configuration) {
|
|
|
325
325
|
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
326
326
|
},
|
|
327
327
|
/**
|
|
328
|
-
*
|
|
328
|
+
* undefined **Required Permissions** \"pbm-management.dashboard-groups.delete\"
|
|
329
329
|
* @param {string} code
|
|
330
330
|
* @param {string} [authorization] Bearer Token
|
|
331
331
|
* @param {*} [options] Override http request option.
|
|
@@ -336,7 +336,7 @@ export const DashboardGroupApiFp = function(configuration?: Configuration) {
|
|
|
336
336
|
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
337
337
|
},
|
|
338
338
|
/**
|
|
339
|
-
*
|
|
339
|
+
* undefined **Required Permissions** \"pbm-management.dashboard-groups.view\"
|
|
340
340
|
* @param {string} code
|
|
341
341
|
* @param {string} [authorization] Bearer Token
|
|
342
342
|
* @param {*} [options] Override http request option.
|
|
@@ -347,7 +347,7 @@ export const DashboardGroupApiFp = function(configuration?: Configuration) {
|
|
|
347
347
|
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
348
348
|
},
|
|
349
349
|
/**
|
|
350
|
-
*
|
|
350
|
+
* undefined **Required Permissions** \"pbm-management.dashboard-groups.view\"
|
|
351
351
|
* @param {string} [authorization] Bearer Token
|
|
352
352
|
* @param {any} [pageSize] A limit on the number of objects to be returned. Limit ranges between 1 and 50. Default: 10.
|
|
353
353
|
* @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.
|
|
@@ -364,7 +364,7 @@ export const DashboardGroupApiFp = function(configuration?: Configuration) {
|
|
|
364
364
|
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
365
365
|
},
|
|
366
366
|
/**
|
|
367
|
-
*
|
|
367
|
+
* undefined **Required Permissions** \"pbm-management.dashboard-groups.update\"
|
|
368
368
|
* @param {string} code
|
|
369
369
|
* @param {UpdateDashboardGroupRequestDto} updateDashboardGroupRequestDto
|
|
370
370
|
* @param {string} [authorization] Bearer Token
|
|
@@ -386,7 +386,7 @@ export const DashboardGroupApiFactory = function (configuration?: Configuration,
|
|
|
386
386
|
const localVarFp = DashboardGroupApiFp(configuration)
|
|
387
387
|
return {
|
|
388
388
|
/**
|
|
389
|
-
*
|
|
389
|
+
* undefined **Required Permissions** \"pbm-management.dashboard-groups.create\"
|
|
390
390
|
* @param {CreateDashboardGroupRequestDto} createDashboardGroupRequestDto
|
|
391
391
|
* @param {string} [authorization] Bearer Token
|
|
392
392
|
* @param {*} [options] Override http request option.
|
|
@@ -396,7 +396,7 @@ export const DashboardGroupApiFactory = function (configuration?: Configuration,
|
|
|
396
396
|
return localVarFp.createDashboardGroup(createDashboardGroupRequestDto, authorization, options).then((request) => request(axios, basePath));
|
|
397
397
|
},
|
|
398
398
|
/**
|
|
399
|
-
*
|
|
399
|
+
* undefined **Required Permissions** \"pbm-management.dashboard-groups.delete\"
|
|
400
400
|
* @param {string} code
|
|
401
401
|
* @param {string} [authorization] Bearer Token
|
|
402
402
|
* @param {*} [options] Override http request option.
|
|
@@ -406,7 +406,7 @@ export const DashboardGroupApiFactory = function (configuration?: Configuration,
|
|
|
406
406
|
return localVarFp.deleteDashboardGroup(code, authorization, options).then((request) => request(axios, basePath));
|
|
407
407
|
},
|
|
408
408
|
/**
|
|
409
|
-
*
|
|
409
|
+
* undefined **Required Permissions** \"pbm-management.dashboard-groups.view\"
|
|
410
410
|
* @param {string} code
|
|
411
411
|
* @param {string} [authorization] Bearer Token
|
|
412
412
|
* @param {*} [options] Override http request option.
|
|
@@ -416,7 +416,7 @@ export const DashboardGroupApiFactory = function (configuration?: Configuration,
|
|
|
416
416
|
return localVarFp.getDashboardGroup(code, authorization, options).then((request) => request(axios, basePath));
|
|
417
417
|
},
|
|
418
418
|
/**
|
|
419
|
-
*
|
|
419
|
+
* undefined **Required Permissions** \"pbm-management.dashboard-groups.view\"
|
|
420
420
|
* @param {string} [authorization] Bearer Token
|
|
421
421
|
* @param {any} [pageSize] A limit on the number of objects to be returned. Limit ranges between 1 and 50. Default: 10.
|
|
422
422
|
* @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.
|
|
@@ -432,7 +432,7 @@ export const DashboardGroupApiFactory = function (configuration?: Configuration,
|
|
|
432
432
|
return localVarFp.listDashboardGroups(authorization, pageSize, pageToken, filter, search, order, expand, filters, options).then((request) => request(axios, basePath));
|
|
433
433
|
},
|
|
434
434
|
/**
|
|
435
|
-
*
|
|
435
|
+
* undefined **Required Permissions** \"pbm-management.dashboard-groups.update\"
|
|
436
436
|
* @param {string} code
|
|
437
437
|
* @param {UpdateDashboardGroupRequestDto} updateDashboardGroupRequestDto
|
|
438
438
|
* @param {string} [authorization] Bearer Token
|
|
@@ -607,7 +607,7 @@ export interface DashboardGroupApiUpdateDashboardGroupRequest {
|
|
|
607
607
|
*/
|
|
608
608
|
export class DashboardGroupApi extends BaseAPI {
|
|
609
609
|
/**
|
|
610
|
-
*
|
|
610
|
+
* undefined **Required Permissions** \"pbm-management.dashboard-groups.create\"
|
|
611
611
|
* @param {DashboardGroupApiCreateDashboardGroupRequest} requestParameters Request parameters.
|
|
612
612
|
* @param {*} [options] Override http request option.
|
|
613
613
|
* @throws {RequiredError}
|
|
@@ -618,7 +618,7 @@ export class DashboardGroupApi extends BaseAPI {
|
|
|
618
618
|
}
|
|
619
619
|
|
|
620
620
|
/**
|
|
621
|
-
*
|
|
621
|
+
* undefined **Required Permissions** \"pbm-management.dashboard-groups.delete\"
|
|
622
622
|
* @param {DashboardGroupApiDeleteDashboardGroupRequest} requestParameters Request parameters.
|
|
623
623
|
* @param {*} [options] Override http request option.
|
|
624
624
|
* @throws {RequiredError}
|
|
@@ -629,7 +629,7 @@ export class DashboardGroupApi extends BaseAPI {
|
|
|
629
629
|
}
|
|
630
630
|
|
|
631
631
|
/**
|
|
632
|
-
*
|
|
632
|
+
* undefined **Required Permissions** \"pbm-management.dashboard-groups.view\"
|
|
633
633
|
* @param {DashboardGroupApiGetDashboardGroupRequest} requestParameters Request parameters.
|
|
634
634
|
* @param {*} [options] Override http request option.
|
|
635
635
|
* @throws {RequiredError}
|
|
@@ -640,7 +640,7 @@ export class DashboardGroupApi extends BaseAPI {
|
|
|
640
640
|
}
|
|
641
641
|
|
|
642
642
|
/**
|
|
643
|
-
*
|
|
643
|
+
* undefined **Required Permissions** \"pbm-management.dashboard-groups.view\"
|
|
644
644
|
* @param {DashboardGroupApiListDashboardGroupsRequest} requestParameters Request parameters.
|
|
645
645
|
* @param {*} [options] Override http request option.
|
|
646
646
|
* @throws {RequiredError}
|
|
@@ -651,7 +651,7 @@ export class DashboardGroupApi extends BaseAPI {
|
|
|
651
651
|
}
|
|
652
652
|
|
|
653
653
|
/**
|
|
654
|
-
*
|
|
654
|
+
* undefined **Required Permissions** \"pbm-management.dashboard-groups.update\"
|
|
655
655
|
* @param {DashboardGroupApiUpdateDashboardGroupRequest} requestParameters Request parameters.
|
|
656
656
|
* @param {*} [options] Override http request option.
|
|
657
657
|
* @throws {RequiredError}
|
package/api/data-report-api.ts
CHANGED
|
@@ -43,7 +43,7 @@ const FormData = require('form-data');
|
|
|
43
43
|
export const DataReportApiAxiosParamCreator = function (configuration?: Configuration) {
|
|
44
44
|
return {
|
|
45
45
|
/**
|
|
46
|
-
* This will create a data report for tenant in the database
|
|
46
|
+
* This will create a data report for tenant in the database **Required Permissions** \"tenant-management.datareports.create\"
|
|
47
47
|
* @summary Create the data-report
|
|
48
48
|
* @param {CreateDataReportRequestDto} createDataReportRequestDto
|
|
49
49
|
* @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
|
|
@@ -90,7 +90,7 @@ export const DataReportApiAxiosParamCreator = function (configuration?: Configur
|
|
|
90
90
|
};
|
|
91
91
|
},
|
|
92
92
|
/**
|
|
93
|
-
* Retrieves the details of the data-report that was previously created. Supply the unique data-report code that was returned when you created it and Emil Api will return the corresponding data-report information.
|
|
93
|
+
* Retrieves the details of the data-report that was previously created. Supply the unique data-report code that was returned when you created it and Emil Api will return the corresponding data-report information. **Required Permissions** \"tenant-management.datareports.view\"
|
|
94
94
|
* @summary Retrieve the data-report
|
|
95
95
|
* @param {string} code Unique identifier for the object.
|
|
96
96
|
* @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
|
|
@@ -140,7 +140,7 @@ export const DataReportApiAxiosParamCreator = function (configuration?: Configur
|
|
|
140
140
|
};
|
|
141
141
|
},
|
|
142
142
|
/**
|
|
143
|
-
* Returns a list of data-reports you have previously created. The data-reports are returned in sorted order, with the oldest one appearing first. For more information about pagination, read the Pagination documentation.
|
|
143
|
+
* Returns a list of data-reports you have previously created. The data-reports are returned in sorted order, with the oldest one appearing first. For more information about pagination, read the Pagination documentation. **Required Permissions** \"tenant-management.datareports.view\"
|
|
144
144
|
* @summary List data-reports
|
|
145
145
|
* @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
|
|
146
146
|
* @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 @@ export const DataReportApiAxiosParamCreator = function (configuration?: Configur
|
|
|
216
216
|
};
|
|
217
217
|
},
|
|
218
218
|
/**
|
|
219
|
-
* Updates the specified data-report by setting the values of the parameters passed. Any parameters not provided will be left unchanged.
|
|
219
|
+
* Updates the specified data-report by setting the values of the parameters passed. Any parameters not provided will be left unchanged. **Required Permissions** \"tenant-management.datareports.update\"
|
|
220
220
|
* @summary Update the data-report
|
|
221
221
|
* @param {string} code
|
|
222
222
|
* @param {UpdateDataReportRequestDto} updateDataReportRequestDto
|
|
@@ -277,7 +277,7 @@ export const DataReportApiFp = function(configuration?: Configuration) {
|
|
|
277
277
|
const localVarAxiosParamCreator = DataReportApiAxiosParamCreator(configuration)
|
|
278
278
|
return {
|
|
279
279
|
/**
|
|
280
|
-
* This will create a data report for tenant in the database
|
|
280
|
+
* This will create a data report for tenant in the database **Required Permissions** \"tenant-management.datareports.create\"
|
|
281
281
|
* @summary Create the data-report
|
|
282
282
|
* @param {CreateDataReportRequestDto} createDataReportRequestDto
|
|
283
283
|
* @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
|
|
@@ -289,7 +289,7 @@ export const DataReportApiFp = function(configuration?: Configuration) {
|
|
|
289
289
|
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
290
290
|
},
|
|
291
291
|
/**
|
|
292
|
-
* Retrieves the details of the data-report that was previously created. Supply the unique data-report code that was returned when you created it and Emil Api will return the corresponding data-report information.
|
|
292
|
+
* Retrieves the details of the data-report that was previously created. Supply the unique data-report code that was returned when you created it and Emil Api will return the corresponding data-report information. **Required Permissions** \"tenant-management.datareports.view\"
|
|
293
293
|
* @summary Retrieve the data-report
|
|
294
294
|
* @param {string} code Unique identifier for the object.
|
|
295
295
|
* @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
|
|
@@ -302,7 +302,7 @@ export const DataReportApiFp = function(configuration?: Configuration) {
|
|
|
302
302
|
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
303
303
|
},
|
|
304
304
|
/**
|
|
305
|
-
* Returns a list of data-reports you have previously created. The data-reports are returned in sorted order, with the oldest one appearing first. For more information about pagination, read the Pagination documentation.
|
|
305
|
+
* Returns a list of data-reports you have previously created. The data-reports are returned in sorted order, with the oldest one appearing first. For more information about pagination, read the Pagination documentation. **Required Permissions** \"tenant-management.datareports.view\"
|
|
306
306
|
* @summary List data-reports
|
|
307
307
|
* @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
|
|
308
308
|
* @param {any} [pageSize] A limit on the number of objects to be returned. Limit ranges between 1 and 50. Default: 10.
|
|
@@ -320,7 +320,7 @@ export const DataReportApiFp = function(configuration?: Configuration) {
|
|
|
320
320
|
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
321
321
|
},
|
|
322
322
|
/**
|
|
323
|
-
* Updates the specified data-report by setting the values of the parameters passed. Any parameters not provided will be left unchanged.
|
|
323
|
+
* Updates the specified data-report by setting the values of the parameters passed. Any parameters not provided will be left unchanged. **Required Permissions** \"tenant-management.datareports.update\"
|
|
324
324
|
* @summary Update the data-report
|
|
325
325
|
* @param {string} code
|
|
326
326
|
* @param {UpdateDataReportRequestDto} updateDataReportRequestDto
|
|
@@ -343,7 +343,7 @@ export const DataReportApiFactory = function (configuration?: Configuration, bas
|
|
|
343
343
|
const localVarFp = DataReportApiFp(configuration)
|
|
344
344
|
return {
|
|
345
345
|
/**
|
|
346
|
-
* This will create a data report for tenant in the database
|
|
346
|
+
* This will create a data report for tenant in the database **Required Permissions** \"tenant-management.datareports.create\"
|
|
347
347
|
* @summary Create the data-report
|
|
348
348
|
* @param {CreateDataReportRequestDto} createDataReportRequestDto
|
|
349
349
|
* @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
|
|
@@ -354,7 +354,7 @@ export const DataReportApiFactory = function (configuration?: Configuration, bas
|
|
|
354
354
|
return localVarFp.createDataReport(createDataReportRequestDto, authorization, options).then((request) => request(axios, basePath));
|
|
355
355
|
},
|
|
356
356
|
/**
|
|
357
|
-
* Retrieves the details of the data-report that was previously created. Supply the unique data-report code that was returned when you created it and Emil Api will return the corresponding data-report information.
|
|
357
|
+
* Retrieves the details of the data-report that was previously created. Supply the unique data-report code that was returned when you created it and Emil Api will return the corresponding data-report information. **Required Permissions** \"tenant-management.datareports.view\"
|
|
358
358
|
* @summary Retrieve the data-report
|
|
359
359
|
* @param {string} code Unique identifier for the object.
|
|
360
360
|
* @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
|
|
@@ -366,7 +366,7 @@ export const DataReportApiFactory = function (configuration?: Configuration, bas
|
|
|
366
366
|
return localVarFp.getDataReport(code, authorization, expand, options).then((request) => request(axios, basePath));
|
|
367
367
|
},
|
|
368
368
|
/**
|
|
369
|
-
* Returns a list of data-reports you have previously created. The data-reports are returned in sorted order, with the oldest one appearing first. For more information about pagination, read the Pagination documentation.
|
|
369
|
+
* Returns a list of data-reports you have previously created. The data-reports are returned in sorted order, with the oldest one appearing first. For more information about pagination, read the Pagination documentation. **Required Permissions** \"tenant-management.datareports.view\"
|
|
370
370
|
* @summary List data-reports
|
|
371
371
|
* @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
|
|
372
372
|
* @param {any} [pageSize] A limit on the number of objects to be returned. Limit ranges between 1 and 50. Default: 10.
|
|
@@ -383,7 +383,7 @@ export const DataReportApiFactory = function (configuration?: Configuration, bas
|
|
|
383
383
|
return localVarFp.listDataReports(authorization, pageSize, pageToken, filter, search, order, expand, filters, options).then((request) => request(axios, basePath));
|
|
384
384
|
},
|
|
385
385
|
/**
|
|
386
|
-
* Updates the specified data-report by setting the values of the parameters passed. Any parameters not provided will be left unchanged.
|
|
386
|
+
* Updates the specified data-report by setting the values of the parameters passed. Any parameters not provided will be left unchanged. **Required Permissions** \"tenant-management.datareports.update\"
|
|
387
387
|
* @summary Update the data-report
|
|
388
388
|
* @param {string} code
|
|
389
389
|
* @param {UpdateDataReportRequestDto} updateDataReportRequestDto
|
|
@@ -545,7 +545,7 @@ export interface DataReportApiUpdateDataReportRequest {
|
|
|
545
545
|
*/
|
|
546
546
|
export class DataReportApi extends BaseAPI {
|
|
547
547
|
/**
|
|
548
|
-
* This will create a data report for tenant in the database
|
|
548
|
+
* This will create a data report for tenant in the database **Required Permissions** \"tenant-management.datareports.create\"
|
|
549
549
|
* @summary Create the data-report
|
|
550
550
|
* @param {DataReportApiCreateDataReportRequest} requestParameters Request parameters.
|
|
551
551
|
* @param {*} [options] Override http request option.
|
|
@@ -557,7 +557,7 @@ export class DataReportApi extends BaseAPI {
|
|
|
557
557
|
}
|
|
558
558
|
|
|
559
559
|
/**
|
|
560
|
-
* Retrieves the details of the data-report that was previously created. Supply the unique data-report code that was returned when you created it and Emil Api will return the corresponding data-report information.
|
|
560
|
+
* Retrieves the details of the data-report that was previously created. Supply the unique data-report code that was returned when you created it and Emil Api will return the corresponding data-report information. **Required Permissions** \"tenant-management.datareports.view\"
|
|
561
561
|
* @summary Retrieve the data-report
|
|
562
562
|
* @param {DataReportApiGetDataReportRequest} requestParameters Request parameters.
|
|
563
563
|
* @param {*} [options] Override http request option.
|
|
@@ -569,7 +569,7 @@ export class DataReportApi extends BaseAPI {
|
|
|
569
569
|
}
|
|
570
570
|
|
|
571
571
|
/**
|
|
572
|
-
* Returns a list of data-reports you have previously created. The data-reports are returned in sorted order, with the oldest one appearing first. For more information about pagination, read the Pagination documentation.
|
|
572
|
+
* Returns a list of data-reports you have previously created. The data-reports are returned in sorted order, with the oldest one appearing first. For more information about pagination, read the Pagination documentation. **Required Permissions** \"tenant-management.datareports.view\"
|
|
573
573
|
* @summary List data-reports
|
|
574
574
|
* @param {DataReportApiListDataReportsRequest} requestParameters Request parameters.
|
|
575
575
|
* @param {*} [options] Override http request option.
|
|
@@ -581,7 +581,7 @@ export class DataReportApi extends BaseAPI {
|
|
|
581
581
|
}
|
|
582
582
|
|
|
583
583
|
/**
|
|
584
|
-
* Updates the specified data-report by setting the values of the parameters passed. Any parameters not provided will be left unchanged.
|
|
584
|
+
* Updates the specified data-report by setting the values of the parameters passed. Any parameters not provided will be left unchanged. **Required Permissions** \"tenant-management.datareports.update\"
|
|
585
585
|
* @summary Update the data-report
|
|
586
586
|
* @param {DataReportApiUpdateDataReportRequest} requestParameters Request parameters.
|
|
587
587
|
* @param {*} [options] Override http request option.
|
|
@@ -35,7 +35,7 @@ const FormData = require('form-data');
|
|
|
35
35
|
export const DataReportExecutorApiAxiosParamCreator = function (configuration?: Configuration) {
|
|
36
36
|
return {
|
|
37
37
|
/**
|
|
38
|
-
*
|
|
38
|
+
* undefined **Required Permissions** \"tenant-management.datareports.run\"
|
|
39
39
|
* @param {RunDataReportRequestDto} runDataReportRequestDto
|
|
40
40
|
* @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
|
|
41
41
|
* @param {*} [options] Override http request option.
|
|
@@ -91,7 +91,7 @@ export const DataReportExecutorApiFp = function(configuration?: Configuration) {
|
|
|
91
91
|
const localVarAxiosParamCreator = DataReportExecutorApiAxiosParamCreator(configuration)
|
|
92
92
|
return {
|
|
93
93
|
/**
|
|
94
|
-
*
|
|
94
|
+
* undefined **Required Permissions** \"tenant-management.datareports.run\"
|
|
95
95
|
* @param {RunDataReportRequestDto} runDataReportRequestDto
|
|
96
96
|
* @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
|
|
97
97
|
* @param {*} [options] Override http request option.
|
|
@@ -112,7 +112,7 @@ export const DataReportExecutorApiFactory = function (configuration?: Configurat
|
|
|
112
112
|
const localVarFp = DataReportExecutorApiFp(configuration)
|
|
113
113
|
return {
|
|
114
114
|
/**
|
|
115
|
-
*
|
|
115
|
+
* undefined **Required Permissions** \"tenant-management.datareports.run\"
|
|
116
116
|
* @param {RunDataReportRequestDto} runDataReportRequestDto
|
|
117
117
|
* @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
|
|
118
118
|
* @param {*} [options] Override http request option.
|
|
@@ -153,7 +153,7 @@ export interface DataReportExecutorApiRunDataReportRequest {
|
|
|
153
153
|
*/
|
|
154
154
|
export class DataReportExecutorApi extends BaseAPI {
|
|
155
155
|
/**
|
|
156
|
-
*
|
|
156
|
+
* undefined **Required Permissions** \"tenant-management.datareports.run\"
|
|
157
157
|
* @param {DataReportExecutorApiRunDataReportRequest} requestParameters Request parameters.
|
|
158
158
|
* @param {*} [options] Override http request option.
|
|
159
159
|
* @throws {RequiredError}
|
|
@@ -33,7 +33,7 @@ const FormData = require('form-data');
|
|
|
33
33
|
export const DeleteOrganizationInvitationsApiAxiosParamCreator = function (configuration?: Configuration) {
|
|
34
34
|
return {
|
|
35
35
|
/**
|
|
36
|
-
* Permanently deletes the organization invitation. Supply the unique id that was returned when you created the organization invitation and this will delete it.
|
|
36
|
+
* Permanently deletes the organization invitation. Supply the unique id that was returned when you created the organization invitation and this will delete it. **Required Permissions** \"tenant-management.organizations.delete\"
|
|
37
37
|
* @summary Delete the organization invitation
|
|
38
38
|
* @param {number} id
|
|
39
39
|
* @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
|
|
@@ -88,7 +88,7 @@ export const DeleteOrganizationInvitationsApiFp = function(configuration?: Confi
|
|
|
88
88
|
const localVarAxiosParamCreator = DeleteOrganizationInvitationsApiAxiosParamCreator(configuration)
|
|
89
89
|
return {
|
|
90
90
|
/**
|
|
91
|
-
* Permanently deletes the organization invitation. Supply the unique id that was returned when you created the organization invitation and this will delete it.
|
|
91
|
+
* Permanently deletes the organization invitation. Supply the unique id that was returned when you created the organization invitation and this will delete it. **Required Permissions** \"tenant-management.organizations.delete\"
|
|
92
92
|
* @summary Delete the organization invitation
|
|
93
93
|
* @param {number} id
|
|
94
94
|
* @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
|
|
@@ -110,7 +110,7 @@ export const DeleteOrganizationInvitationsApiFactory = function (configuration?:
|
|
|
110
110
|
const localVarFp = DeleteOrganizationInvitationsApiFp(configuration)
|
|
111
111
|
return {
|
|
112
112
|
/**
|
|
113
|
-
* Permanently deletes the organization invitation. Supply the unique id that was returned when you created the organization invitation and this will delete it.
|
|
113
|
+
* Permanently deletes the organization invitation. Supply the unique id that was returned when you created the organization invitation and this will delete it. **Required Permissions** \"tenant-management.organizations.delete\"
|
|
114
114
|
* @summary Delete the organization invitation
|
|
115
115
|
* @param {number} id
|
|
116
116
|
* @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
|
|
@@ -152,7 +152,7 @@ export interface DeleteOrganizationInvitationsApiDeleteOrgInvitationRequest {
|
|
|
152
152
|
*/
|
|
153
153
|
export class DeleteOrganizationInvitationsApi extends BaseAPI {
|
|
154
154
|
/**
|
|
155
|
-
* Permanently deletes the organization invitation. Supply the unique id that was returned when you created the organization invitation and this will delete it.
|
|
155
|
+
* Permanently deletes the organization invitation. Supply the unique id that was returned when you created the organization invitation and this will delete it. **Required Permissions** \"tenant-management.organizations.delete\"
|
|
156
156
|
* @summary Delete the organization invitation
|
|
157
157
|
* @param {DeleteOrganizationInvitationsApiDeleteOrgInvitationRequest} requestParameters Request parameters.
|
|
158
158
|
* @param {*} [options] Override http request option.
|
|
@@ -35,7 +35,7 @@ const FormData = require('form-data');
|
|
|
35
35
|
export const InviteOrganizationsApiAxiosParamCreator = function (configuration?: Configuration) {
|
|
36
36
|
return {
|
|
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.
|
|
@@ -92,7 +92,7 @@ export const InviteOrganizationsApiFp = function(configuration?: Configuration)
|
|
|
92
92
|
const localVarAxiosParamCreator = InviteOrganizationsApiAxiosParamCreator(configuration)
|
|
93
93
|
return {
|
|
94
94
|
/**
|
|
95
|
-
* This sends an email to invite an organization.
|
|
95
|
+
* This sends an email to invite an organization. **Required Permissions** \"tenant-management.organizations.create\"
|
|
96
96
|
* @summary Invite an organization
|
|
97
97
|
* @param {InviteOrgRequestDtoRest} inviteOrgRequestDtoRest
|
|
98
98
|
* @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
|
|
@@ -114,7 +114,7 @@ export const InviteOrganizationsApiFactory = function (configuration?: Configura
|
|
|
114
114
|
const localVarFp = InviteOrganizationsApiFp(configuration)
|
|
115
115
|
return {
|
|
116
116
|
/**
|
|
117
|
-
* This sends an email to invite an organization.
|
|
117
|
+
* This sends an email to invite an organization. **Required Permissions** \"tenant-management.organizations.create\"
|
|
118
118
|
* @summary Invite an organization
|
|
119
119
|
* @param {InviteOrgRequestDtoRest} inviteOrgRequestDtoRest
|
|
120
120
|
* @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
|
|
@@ -156,7 +156,7 @@ export interface InviteOrganizationsApiInviteOrgRequest {
|
|
|
156
156
|
*/
|
|
157
157
|
export class InviteOrganizationsApi extends BaseAPI {
|
|
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 {InviteOrganizationsApiInviteOrgRequest} requestParameters Request parameters.
|
|
162
162
|
* @param {*} [options] Override http request option.
|
package/api/invite-users-api.ts
CHANGED
|
@@ -45,7 +45,7 @@ const FormData = require('form-data');
|
|
|
45
45
|
export const InviteUsersApiAxiosParamCreator = function (configuration?: Configuration) {
|
|
46
46
|
return {
|
|
47
47
|
/**
|
|
48
|
-
* 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.
|
|
48
|
+
* 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\"
|
|
49
49
|
* @summary Delete invited users.
|
|
50
50
|
* @param {BatchDeleteRequestDto} batchDeleteRequestDto
|
|
51
51
|
* @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
|
|
@@ -92,7 +92,7 @@ export const InviteUsersApiAxiosParamCreator = function (configuration?: Configu
|
|
|
92
92
|
};
|
|
93
93
|
},
|
|
94
94
|
/**
|
|
95
|
-
* This send an email to invite a user with the specific role/roles.
|
|
95
|
+
* This send an email to invite a user with the specific role/roles. **Required Permissions** \"tenant-management.users.create\"
|
|
96
96
|
* @summary Invite a user
|
|
97
97
|
* @param {InviteUserRequestDtoRest} inviteUserRequestDtoRest
|
|
98
98
|
* @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
|
|
@@ -139,7 +139,7 @@ export const InviteUsersApiAxiosParamCreator = function (configuration?: Configu
|
|
|
139
139
|
};
|
|
140
140
|
},
|
|
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.
|
|
@@ -186,7 +186,7 @@ export const InviteUsersApiAxiosParamCreator = function (configuration?: Configu
|
|
|
186
186
|
};
|
|
187
187
|
},
|
|
188
188
|
/**
|
|
189
|
-
* 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.
|
|
189
|
+
* 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\"
|
|
190
190
|
* @summary List invited users
|
|
191
191
|
* @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
|
|
192
192
|
* @param {any} [pageSize] A limit on the number of objects to be returned. Limit ranges between 1 and 50. Default: 10.
|
|
@@ -272,7 +272,7 @@ export const InviteUsersApiFp = function(configuration?: Configuration) {
|
|
|
272
272
|
const localVarAxiosParamCreator = InviteUsersApiAxiosParamCreator(configuration)
|
|
273
273
|
return {
|
|
274
274
|
/**
|
|
275
|
-
* 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.
|
|
275
|
+
* 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\"
|
|
276
276
|
* @summary Delete invited users.
|
|
277
277
|
* @param {BatchDeleteRequestDto} batchDeleteRequestDto
|
|
278
278
|
* @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
|
|
@@ -284,7 +284,7 @@ export const InviteUsersApiFp = function(configuration?: Configuration) {
|
|
|
284
284
|
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
285
285
|
},
|
|
286
286
|
/**
|
|
287
|
-
* This send an email to invite a user with the specific role/roles.
|
|
287
|
+
* This send an email to invite a user with the specific role/roles. **Required Permissions** \"tenant-management.users.create\"
|
|
288
288
|
* @summary Invite a user
|
|
289
289
|
* @param {InviteUserRequestDtoRest} inviteUserRequestDtoRest
|
|
290
290
|
* @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
|
|
@@ -296,7 +296,7 @@ export const InviteUsersApiFp = function(configuration?: Configuration) {
|
|
|
296
296
|
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
297
297
|
},
|
|
298
298
|
/**
|
|
299
|
-
* This send bulk emails to invite users with the specific role/roles.
|
|
299
|
+
* This send bulk emails to invite users with the specific role/roles. **Required Permissions** \"tenant-management.users.create\"
|
|
300
300
|
* @summary Invite batch of users
|
|
301
301
|
* @param {InviteUsersRequestDtoRest} inviteUsersRequestDtoRest
|
|
302
302
|
* @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
|
|
@@ -308,7 +308,7 @@ export const InviteUsersApiFp = function(configuration?: Configuration) {
|
|
|
308
308
|
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
309
309
|
},
|
|
310
310
|
/**
|
|
311
|
-
* 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.
|
|
311
|
+
* 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\"
|
|
312
312
|
* @summary List invited users
|
|
313
313
|
* @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
|
|
314
314
|
* @param {any} [pageSize] A limit on the number of objects to be returned. Limit ranges between 1 and 50. Default: 10.
|
|
@@ -336,7 +336,7 @@ export const InviteUsersApiFactory = function (configuration?: Configuration, ba
|
|
|
336
336
|
const localVarFp = InviteUsersApiFp(configuration)
|
|
337
337
|
return {
|
|
338
338
|
/**
|
|
339
|
-
* 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.
|
|
339
|
+
* 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\"
|
|
340
340
|
* @summary Delete invited users.
|
|
341
341
|
* @param {BatchDeleteRequestDto} batchDeleteRequestDto
|
|
342
342
|
* @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
|
|
@@ -347,7 +347,7 @@ export const InviteUsersApiFactory = function (configuration?: Configuration, ba
|
|
|
347
347
|
return localVarFp.deleteInvites(batchDeleteRequestDto, authorization, options).then((request) => request(axios, basePath));
|
|
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.
|
|
@@ -358,7 +358,7 @@ export const InviteUsersApiFactory = function (configuration?: Configuration, ba
|
|
|
358
358
|
return localVarFp.inviteUser(inviteUserRequestDtoRest, authorization, options).then((request) => request(axios, basePath));
|
|
359
359
|
},
|
|
360
360
|
/**
|
|
361
|
-
* This send bulk emails to invite users with the specific role/roles.
|
|
361
|
+
* This send bulk emails to invite users with the specific role/roles. **Required Permissions** \"tenant-management.users.create\"
|
|
362
362
|
* @summary Invite batch of users
|
|
363
363
|
* @param {InviteUsersRequestDtoRest} inviteUsersRequestDtoRest
|
|
364
364
|
* @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
|
|
@@ -369,7 +369,7 @@ export const InviteUsersApiFactory = function (configuration?: Configuration, ba
|
|
|
369
369
|
return localVarFp.inviteUsers(inviteUsersRequestDtoRest, authorization, options).then((request) => request(axios, basePath));
|
|
370
370
|
},
|
|
371
371
|
/**
|
|
372
|
-
* 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.
|
|
372
|
+
* 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\"
|
|
373
373
|
* @summary List invited users
|
|
374
374
|
* @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
|
|
375
375
|
* @param {any} [pageSize] A limit on the number of objects to be returned. Limit ranges between 1 and 50. Default: 10.
|
|
@@ -522,7 +522,7 @@ export interface InviteUsersApiListInvitesRequest {
|
|
|
522
522
|
*/
|
|
523
523
|
export class InviteUsersApi extends BaseAPI {
|
|
524
524
|
/**
|
|
525
|
-
* 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.
|
|
525
|
+
* 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\"
|
|
526
526
|
* @summary Delete invited users.
|
|
527
527
|
* @param {InviteUsersApiDeleteInvitesRequest} requestParameters Request parameters.
|
|
528
528
|
* @param {*} [options] Override http request option.
|
|
@@ -534,7 +534,7 @@ export class InviteUsersApi extends BaseAPI {
|
|
|
534
534
|
}
|
|
535
535
|
|
|
536
536
|
/**
|
|
537
|
-
* This send an email to invite a user with the specific role/roles.
|
|
537
|
+
* This send an email to invite a user with the specific role/roles. **Required Permissions** \"tenant-management.users.create\"
|
|
538
538
|
* @summary Invite a user
|
|
539
539
|
* @param {InviteUsersApiInviteUserRequest} requestParameters Request parameters.
|
|
540
540
|
* @param {*} [options] Override http request option.
|
|
@@ -546,7 +546,7 @@ export class InviteUsersApi extends BaseAPI {
|
|
|
546
546
|
}
|
|
547
547
|
|
|
548
548
|
/**
|
|
549
|
-
* This send bulk emails to invite users with the specific role/roles.
|
|
549
|
+
* This send bulk emails to invite users with the specific role/roles. **Required Permissions** \"tenant-management.users.create\"
|
|
550
550
|
* @summary Invite batch of users
|
|
551
551
|
* @param {InviteUsersApiInviteUsersRequest} requestParameters Request parameters.
|
|
552
552
|
* @param {*} [options] Override http request option.
|
|
@@ -558,7 +558,7 @@ export class InviteUsersApi extends BaseAPI {
|
|
|
558
558
|
}
|
|
559
559
|
|
|
560
560
|
/**
|
|
561
|
-
* 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.
|
|
561
|
+
* 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\"
|
|
562
562
|
* @summary List invited users
|
|
563
563
|
* @param {InviteUsersApiListInvitesRequest} requestParameters Request parameters.
|
|
564
564
|
* @param {*} [options] Override http request option.
|
|
@@ -33,7 +33,7 @@ const FormData = require('form-data');
|
|
|
33
33
|
export const ListOrganizationInvitationsApiAxiosParamCreator = function (configuration?: Configuration) {
|
|
34
34
|
return {
|
|
35
35
|
/**
|
|
36
|
-
* 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.
|
|
36
|
+
* 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\"
|
|
37
37
|
* @summary List organization invitations
|
|
38
38
|
* @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
|
|
39
39
|
* @param {any} [pageSize] A limit on the number of objects to be returned. Limit ranges between 1 and 50. Default: 10.
|
|
@@ -119,7 +119,7 @@ export const ListOrganizationInvitationsApiFp = function(configuration?: Configu
|
|
|
119
119
|
const localVarAxiosParamCreator = ListOrganizationInvitationsApiAxiosParamCreator(configuration)
|
|
120
120
|
return {
|
|
121
121
|
/**
|
|
122
|
-
* 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.
|
|
122
|
+
* 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\"
|
|
123
123
|
* @summary List organization invitations
|
|
124
124
|
* @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
|
|
125
125
|
* @param {any} [pageSize] A limit on the number of objects to be returned. Limit ranges between 1 and 50. Default: 10.
|
|
@@ -147,7 +147,7 @@ export const ListOrganizationInvitationsApiFactory = function (configuration?: C
|
|
|
147
147
|
const localVarFp = ListOrganizationInvitationsApiFp(configuration)
|
|
148
148
|
return {
|
|
149
149
|
/**
|
|
150
|
-
* 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.
|
|
150
|
+
* 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\"
|
|
151
151
|
* @summary List organization invitations
|
|
152
152
|
* @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
|
|
153
153
|
* @param {any} [pageSize] A limit on the number of objects to be returned. Limit ranges between 1 and 50. Default: 10.
|
|
@@ -237,7 +237,7 @@ export interface ListOrganizationInvitationsApiListOrgInvitationsRequest {
|
|
|
237
237
|
*/
|
|
238
238
|
export class ListOrganizationInvitationsApi extends BaseAPI {
|
|
239
239
|
/**
|
|
240
|
-
* 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.
|
|
240
|
+
* 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\"
|
|
241
241
|
* @summary List organization invitations
|
|
242
242
|
* @param {ListOrganizationInvitationsApiListOrgInvitationsRequest} requestParameters Request parameters.
|
|
243
243
|
* @param {*} [options] Override http request option.
|