@emilgroup/tenant-sdk-node 1.28.1-beta.0 → 1.28.1-beta.2
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/README.md +2 -2
- package/api/custom-schema-api.ts +40 -40
- package/api/dashboard-api.ts +184 -87
- package/api/dashboard-group-api.ts +40 -40
- package/api/data-report-api.ts +40 -40
- package/api/invite-users-api.ts +19 -19
- package/api/list-organization-invitations-api.ts +40 -40
- package/api/organizations-api.ts +40 -40
- package/api/users-api.ts +19 -19
- package/dist/api/custom-schema-api.d.ts +40 -40
- package/dist/api/custom-schema-api.js +21 -21
- package/dist/api/dashboard-api.d.ts +133 -82
- package/dist/api/dashboard-api.js +151 -63
- package/dist/api/dashboard-group-api.d.ts +40 -40
- package/dist/api/dashboard-group-api.js +21 -21
- package/dist/api/data-report-api.d.ts +40 -40
- package/dist/api/data-report-api.js +21 -21
- package/dist/api/invite-users-api.d.ts +19 -19
- package/dist/api/invite-users-api.js +9 -9
- package/dist/api/list-organization-invitations-api.d.ts +40 -40
- package/dist/api/list-organization-invitations-api.js +21 -21
- package/dist/api/organizations-api.d.ts +40 -40
- package/dist/api/organizations-api.js +21 -21
- package/dist/api/users-api.d.ts +19 -19
- package/dist/api/users-api.js +9 -9
- package/dist/models/list-org-invitations-response-class.d.ts +12 -0
- package/dist/models/list-organizations-response-class.d.ts +12 -0
- package/models/list-org-invitations-response-class.ts +12 -0
- package/models/list-organizations-response-class.ts +12 -0
- package/package.json +1 -1
|
@@ -181,17 +181,17 @@ export const DashboardGroupApiAxiosParamCreator = function (configuration?: Conf
|
|
|
181
181
|
/**
|
|
182
182
|
* undefined **Required Permissions** \"pbm-management.dashboard-groups.view\"
|
|
183
183
|
* @param {string} [authorization] Bearer Token
|
|
184
|
-
* @param {
|
|
185
|
-
* @param {
|
|
186
|
-
* @param {
|
|
187
|
-
* @param {
|
|
188
|
-
* @param {
|
|
189
|
-
* @param {
|
|
190
|
-
* @param {
|
|
184
|
+
* @param {number} [pageSize] A limit on the number of objects to be returned. Limit ranges between 1 and 50. Default: 10.
|
|
185
|
+
* @param {string} [pageToken] A cursor for use in pagination. pageToken is an ID that defines your place in the list. For instance, if you make a list request and receive 100 objects and pageToken=1, your subsequent call can include pageToken=2 in order to fetch the next page of the list.
|
|
186
|
+
* @param {string} [filter] Filter the response by one or multiple fields. In general, fetching filtered responses will conserve bandwidth and reduce response time.
|
|
187
|
+
* @param {string} [search] To search the list by any field, pass search=xxx to fetch the result.
|
|
188
|
+
* @param {string} [order] The order parameter determines how the results should be sorted according to a specified field. It functions similarly to an SQL ORDER BY. Sorting can be performed in either ascending (ASC) or descending (DESC) order. Default: ASC.
|
|
189
|
+
* @param {string} [expand] Use this parameter to fetch additional information about the list items. The expand query parameter increases the set of fields that appear in the response in addition to the default ones. Expanding resources can reduce the number of API calls required to accomplish a task. However, use this with parsimony as some expanded fields can drastically increase payload size.
|
|
190
|
+
* @param {string} [filters] Filters the response by one or multiple fields. Advanced filter functionality allows you to perform more complex filtering operations. In general, fetching filtered responses conserves bandwidth and reduces response time.
|
|
191
191
|
* @param {*} [options] Override http request option.
|
|
192
192
|
* @throws {RequiredError}
|
|
193
193
|
*/
|
|
194
|
-
listDashboardGroups: async (authorization?: string, pageSize?:
|
|
194
|
+
listDashboardGroups: async (authorization?: string, pageSize?: number, pageToken?: string, filter?: string, search?: string, order?: string, expand?: string, filters?: string, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
195
195
|
const localVarPath = `/tenantservice/v1/dashboards-groups`;
|
|
196
196
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
197
197
|
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
@@ -349,17 +349,17 @@ export const DashboardGroupApiFp = function(configuration?: Configuration) {
|
|
|
349
349
|
/**
|
|
350
350
|
* undefined **Required Permissions** \"pbm-management.dashboard-groups.view\"
|
|
351
351
|
* @param {string} [authorization] Bearer Token
|
|
352
|
-
* @param {
|
|
353
|
-
* @param {
|
|
354
|
-
* @param {
|
|
355
|
-
* @param {
|
|
356
|
-
* @param {
|
|
357
|
-
* @param {
|
|
358
|
-
* @param {
|
|
352
|
+
* @param {number} [pageSize] A limit on the number of objects to be returned. Limit ranges between 1 and 50. Default: 10.
|
|
353
|
+
* @param {string} [pageToken] A cursor for use in pagination. pageToken is an ID that defines your place in the list. For instance, if you make a list request and receive 100 objects and pageToken=1, your subsequent call can include pageToken=2 in order to fetch the next page of the list.
|
|
354
|
+
* @param {string} [filter] Filter the response by one or multiple fields. In general, fetching filtered responses will conserve bandwidth and reduce response time.
|
|
355
|
+
* @param {string} [search] To search the list by any field, pass search=xxx to fetch the result.
|
|
356
|
+
* @param {string} [order] The order parameter determines how the results should be sorted according to a specified field. It functions similarly to an SQL ORDER BY. Sorting can be performed in either ascending (ASC) or descending (DESC) order. Default: ASC.
|
|
357
|
+
* @param {string} [expand] Use this parameter to fetch additional information about the list items. The expand query parameter increases the set of fields that appear in the response in addition to the default ones. Expanding resources can reduce the number of API calls required to accomplish a task. However, use this with parsimony as some expanded fields can drastically increase payload size.
|
|
358
|
+
* @param {string} [filters] Filters the response by one or multiple fields. Advanced filter functionality allows you to perform more complex filtering operations. In general, fetching filtered responses conserves bandwidth and reduces response time.
|
|
359
359
|
* @param {*} [options] Override http request option.
|
|
360
360
|
* @throws {RequiredError}
|
|
361
361
|
*/
|
|
362
|
-
async listDashboardGroups(authorization?: string, pageSize?:
|
|
362
|
+
async listDashboardGroups(authorization?: string, pageSize?: number, pageToken?: string, filter?: string, search?: string, order?: string, expand?: string, filters?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ListDashboardGroupsResponseClass>> {
|
|
363
363
|
const localVarAxiosArgs = await localVarAxiosParamCreator.listDashboardGroups(authorization, pageSize, pageToken, filter, search, order, expand, filters, options);
|
|
364
364
|
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
365
365
|
},
|
|
@@ -418,17 +418,17 @@ export const DashboardGroupApiFactory = function (configuration?: Configuration,
|
|
|
418
418
|
/**
|
|
419
419
|
* undefined **Required Permissions** \"pbm-management.dashboard-groups.view\"
|
|
420
420
|
* @param {string} [authorization] Bearer Token
|
|
421
|
-
* @param {
|
|
422
|
-
* @param {
|
|
423
|
-
* @param {
|
|
424
|
-
* @param {
|
|
425
|
-
* @param {
|
|
426
|
-
* @param {
|
|
427
|
-
* @param {
|
|
421
|
+
* @param {number} [pageSize] A limit on the number of objects to be returned. Limit ranges between 1 and 50. Default: 10.
|
|
422
|
+
* @param {string} [pageToken] A cursor for use in pagination. pageToken is an ID that defines your place in the list. For instance, if you make a list request and receive 100 objects and pageToken=1, your subsequent call can include pageToken=2 in order to fetch the next page of the list.
|
|
423
|
+
* @param {string} [filter] Filter the response by one or multiple fields. In general, fetching filtered responses will conserve bandwidth and reduce response time.
|
|
424
|
+
* @param {string} [search] To search the list by any field, pass search=xxx to fetch the result.
|
|
425
|
+
* @param {string} [order] The order parameter determines how the results should be sorted according to a specified field. It functions similarly to an SQL ORDER BY. Sorting can be performed in either ascending (ASC) or descending (DESC) order. Default: ASC.
|
|
426
|
+
* @param {string} [expand] Use this parameter to fetch additional information about the list items. The expand query parameter increases the set of fields that appear in the response in addition to the default ones. Expanding resources can reduce the number of API calls required to accomplish a task. However, use this with parsimony as some expanded fields can drastically increase payload size.
|
|
427
|
+
* @param {string} [filters] Filters the response by one or multiple fields. Advanced filter functionality allows you to perform more complex filtering operations. In general, fetching filtered responses conserves bandwidth and reduces response time.
|
|
428
428
|
* @param {*} [options] Override http request option.
|
|
429
429
|
* @throws {RequiredError}
|
|
430
430
|
*/
|
|
431
|
-
listDashboardGroups(authorization?: string, pageSize?:
|
|
431
|
+
listDashboardGroups(authorization?: string, pageSize?: number, pageToken?: string, filter?: string, search?: string, order?: string, expand?: string, filters?: string, options?: any): AxiosPromise<ListDashboardGroupsResponseClass> {
|
|
432
432
|
return localVarFp.listDashboardGroups(authorization, pageSize, pageToken, filter, search, order, expand, filters, options).then((request) => request(axios, basePath));
|
|
433
433
|
},
|
|
434
434
|
/**
|
|
@@ -523,52 +523,52 @@ export interface DashboardGroupApiListDashboardGroupsRequest {
|
|
|
523
523
|
|
|
524
524
|
/**
|
|
525
525
|
* A limit on the number of objects to be returned. Limit ranges between 1 and 50. Default: 10.
|
|
526
|
-
* @type {
|
|
526
|
+
* @type {number}
|
|
527
527
|
* @memberof DashboardGroupApiListDashboardGroups
|
|
528
528
|
*/
|
|
529
|
-
readonly pageSize?:
|
|
529
|
+
readonly pageSize?: number
|
|
530
530
|
|
|
531
531
|
/**
|
|
532
|
-
* 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,
|
|
533
|
-
* @type {
|
|
532
|
+
* 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.
|
|
533
|
+
* @type {string}
|
|
534
534
|
* @memberof DashboardGroupApiListDashboardGroups
|
|
535
535
|
*/
|
|
536
|
-
readonly pageToken?:
|
|
536
|
+
readonly pageToken?: string
|
|
537
537
|
|
|
538
538
|
/**
|
|
539
539
|
* Filter the response by one or multiple fields. In general, fetching filtered responses will conserve bandwidth and reduce response time.
|
|
540
|
-
* @type {
|
|
540
|
+
* @type {string}
|
|
541
541
|
* @memberof DashboardGroupApiListDashboardGroups
|
|
542
542
|
*/
|
|
543
|
-
readonly filter?:
|
|
543
|
+
readonly filter?: string
|
|
544
544
|
|
|
545
545
|
/**
|
|
546
546
|
* To search the list by any field, pass search=xxx to fetch the result.
|
|
547
|
-
* @type {
|
|
547
|
+
* @type {string}
|
|
548
548
|
* @memberof DashboardGroupApiListDashboardGroups
|
|
549
549
|
*/
|
|
550
|
-
readonly search?:
|
|
550
|
+
readonly search?: string
|
|
551
551
|
|
|
552
552
|
/**
|
|
553
553
|
* The order parameter determines how the results should be sorted according to a specified field. It functions similarly to an SQL ORDER BY. Sorting can be performed in either ascending (ASC) or descending (DESC) order. Default: ASC.
|
|
554
|
-
* @type {
|
|
554
|
+
* @type {string}
|
|
555
555
|
* @memberof DashboardGroupApiListDashboardGroups
|
|
556
556
|
*/
|
|
557
|
-
readonly order?:
|
|
557
|
+
readonly order?: string
|
|
558
558
|
|
|
559
559
|
/**
|
|
560
|
-
* Use this parameter to fetch additional information about the list items. The expand query parameter increases the set of fields that appear in the response in
|
|
561
|
-
* @type {
|
|
560
|
+
* Use this parameter to fetch additional information about the list items. The expand query parameter increases the set of fields that appear in the response in addition to the default ones. Expanding resources can reduce the number of API calls required to accomplish a task. However, use this with parsimony as some expanded fields can drastically increase payload size.
|
|
561
|
+
* @type {string}
|
|
562
562
|
* @memberof DashboardGroupApiListDashboardGroups
|
|
563
563
|
*/
|
|
564
|
-
readonly expand?:
|
|
564
|
+
readonly expand?: string
|
|
565
565
|
|
|
566
566
|
/**
|
|
567
567
|
* Filters the response by one or multiple fields. Advanced filter functionality allows you to perform more complex filtering operations. In general, fetching filtered responses conserves bandwidth and reduces response time.
|
|
568
|
-
* @type {
|
|
568
|
+
* @type {string}
|
|
569
569
|
* @memberof DashboardGroupApiListDashboardGroups
|
|
570
570
|
*/
|
|
571
|
-
readonly filters?:
|
|
571
|
+
readonly filters?: string
|
|
572
572
|
}
|
|
573
573
|
|
|
574
574
|
/**
|
package/api/data-report-api.ts
CHANGED
|
@@ -143,17 +143,17 @@ export const DataReportApiAxiosParamCreator = function (configuration?: Configur
|
|
|
143
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
|
-
* @param {
|
|
147
|
-
* @param {
|
|
148
|
-
* @param {
|
|
149
|
-
* @param {
|
|
150
|
-
* @param {
|
|
151
|
-
* @param {
|
|
152
|
-
* @param {
|
|
146
|
+
* @param {number} [pageSize] A limit on the number of objects to be returned. Limit ranges between 1 and 50. Default: 10.
|
|
147
|
+
* @param {string} [pageToken] A cursor for use in pagination. pageToken is an ID that defines your place in the list. For instance, if you make a list request and receive 100 objects and pageToken=1, your subsequent call can include pageToken=2 in order to fetch the next page of the list.
|
|
148
|
+
* @param {string} [filter] Filter the response by one or multiple fields. In general, fetching filtered responses will conserve bandwidth and reduce response time.
|
|
149
|
+
* @param {string} [search] To search the list by any field, pass search=xxx to fetch the result.
|
|
150
|
+
* @param {string} [order] The order parameter determines how the results should be sorted according to a specified field. It functions similarly to an SQL ORDER BY. Sorting can be performed in either ascending (ASC) or descending (DESC) order. Default: ASC.
|
|
151
|
+
* @param {string} [expand] Use this parameter to fetch additional information about the list items. The expand query parameter increases the set of fields that appear in the response in addition to the default ones. Expanding resources can reduce the number of API calls required to accomplish a task. However, use this with parsimony as some expanded fields can drastically increase payload size.
|
|
152
|
+
* @param {string} [filters] Filters the response by one or multiple fields. Advanced filter functionality allows you to perform more complex filtering operations. In general, fetching filtered responses conserves bandwidth and reduces response time.
|
|
153
153
|
* @param {*} [options] Override http request option.
|
|
154
154
|
* @throws {RequiredError}
|
|
155
155
|
*/
|
|
156
|
-
listDataReports: async (authorization?: string, pageSize?:
|
|
156
|
+
listDataReports: async (authorization?: string, pageSize?: number, pageToken?: string, filter?: string, search?: string, order?: string, expand?: string, filters?: string, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
157
157
|
const localVarPath = `/tenantservice/v1/data-reports`;
|
|
158
158
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
159
159
|
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
@@ -305,17 +305,17 @@ export const DataReportApiFp = function(configuration?: Configuration) {
|
|
|
305
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
|
-
* @param {
|
|
309
|
-
* @param {
|
|
310
|
-
* @param {
|
|
311
|
-
* @param {
|
|
312
|
-
* @param {
|
|
313
|
-
* @param {
|
|
314
|
-
* @param {
|
|
308
|
+
* @param {number} [pageSize] A limit on the number of objects to be returned. Limit ranges between 1 and 50. Default: 10.
|
|
309
|
+
* @param {string} [pageToken] A cursor for use in pagination. pageToken is an ID that defines your place in the list. For instance, if you make a list request and receive 100 objects and pageToken=1, your subsequent call can include pageToken=2 in order to fetch the next page of the list.
|
|
310
|
+
* @param {string} [filter] Filter the response by one or multiple fields. In general, fetching filtered responses will conserve bandwidth and reduce response time.
|
|
311
|
+
* @param {string} [search] To search the list by any field, pass search=xxx to fetch the result.
|
|
312
|
+
* @param {string} [order] The order parameter determines how the results should be sorted according to a specified field. It functions similarly to an SQL ORDER BY. Sorting can be performed in either ascending (ASC) or descending (DESC) order. Default: ASC.
|
|
313
|
+
* @param {string} [expand] Use this parameter to fetch additional information about the list items. The expand query parameter increases the set of fields that appear in the response in addition to the default ones. Expanding resources can reduce the number of API calls required to accomplish a task. However, use this with parsimony as some expanded fields can drastically increase payload size.
|
|
314
|
+
* @param {string} [filters] Filters the response by one or multiple fields. Advanced filter functionality allows you to perform more complex filtering operations. In general, fetching filtered responses conserves bandwidth and reduces response time.
|
|
315
315
|
* @param {*} [options] Override http request option.
|
|
316
316
|
* @throws {RequiredError}
|
|
317
317
|
*/
|
|
318
|
-
async listDataReports(authorization?: string, pageSize?:
|
|
318
|
+
async listDataReports(authorization?: string, pageSize?: number, pageToken?: string, filter?: string, search?: string, order?: string, expand?: string, filters?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ListDataReportsResponseClass>> {
|
|
319
319
|
const localVarAxiosArgs = await localVarAxiosParamCreator.listDataReports(authorization, pageSize, pageToken, filter, search, order, expand, filters, options);
|
|
320
320
|
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
321
321
|
},
|
|
@@ -369,17 +369,17 @@ export const DataReportApiFactory = function (configuration?: Configuration, bas
|
|
|
369
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
|
-
* @param {
|
|
373
|
-
* @param {
|
|
374
|
-
* @param {
|
|
375
|
-
* @param {
|
|
376
|
-
* @param {
|
|
377
|
-
* @param {
|
|
378
|
-
* @param {
|
|
372
|
+
* @param {number} [pageSize] A limit on the number of objects to be returned. Limit ranges between 1 and 50. Default: 10.
|
|
373
|
+
* @param {string} [pageToken] A cursor for use in pagination. pageToken is an ID that defines your place in the list. For instance, if you make a list request and receive 100 objects and pageToken=1, your subsequent call can include pageToken=2 in order to fetch the next page of the list.
|
|
374
|
+
* @param {string} [filter] Filter the response by one or multiple fields. In general, fetching filtered responses will conserve bandwidth and reduce response time.
|
|
375
|
+
* @param {string} [search] To search the list by any field, pass search=xxx to fetch the result.
|
|
376
|
+
* @param {string} [order] The order parameter determines how the results should be sorted according to a specified field. It functions similarly to an SQL ORDER BY. Sorting can be performed in either ascending (ASC) or descending (DESC) order. Default: ASC.
|
|
377
|
+
* @param {string} [expand] Use this parameter to fetch additional information about the list items. The expand query parameter increases the set of fields that appear in the response in addition to the default ones. Expanding resources can reduce the number of API calls required to accomplish a task. However, use this with parsimony as some expanded fields can drastically increase payload size.
|
|
378
|
+
* @param {string} [filters] Filters the response by one or multiple fields. Advanced filter functionality allows you to perform more complex filtering operations. In general, fetching filtered responses conserves bandwidth and reduces response time.
|
|
379
379
|
* @param {*} [options] Override http request option.
|
|
380
380
|
* @throws {RequiredError}
|
|
381
381
|
*/
|
|
382
|
-
listDataReports(authorization?: string, pageSize?:
|
|
382
|
+
listDataReports(authorization?: string, pageSize?: number, pageToken?: string, filter?: string, search?: string, order?: string, expand?: string, filters?: string, options?: any): AxiosPromise<ListDataReportsResponseClass> {
|
|
383
383
|
return localVarFp.listDataReports(authorization, pageSize, pageToken, filter, search, order, expand, filters, options).then((request) => request(axios, basePath));
|
|
384
384
|
},
|
|
385
385
|
/**
|
|
@@ -461,52 +461,52 @@ export interface DataReportApiListDataReportsRequest {
|
|
|
461
461
|
|
|
462
462
|
/**
|
|
463
463
|
* A limit on the number of objects to be returned. Limit ranges between 1 and 50. Default: 10.
|
|
464
|
-
* @type {
|
|
464
|
+
* @type {number}
|
|
465
465
|
* @memberof DataReportApiListDataReports
|
|
466
466
|
*/
|
|
467
|
-
readonly pageSize?:
|
|
467
|
+
readonly pageSize?: number
|
|
468
468
|
|
|
469
469
|
/**
|
|
470
|
-
* 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,
|
|
471
|
-
* @type {
|
|
470
|
+
* 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.
|
|
471
|
+
* @type {string}
|
|
472
472
|
* @memberof DataReportApiListDataReports
|
|
473
473
|
*/
|
|
474
|
-
readonly pageToken?:
|
|
474
|
+
readonly pageToken?: string
|
|
475
475
|
|
|
476
476
|
/**
|
|
477
477
|
* Filter the response by one or multiple fields. In general, fetching filtered responses will conserve bandwidth and reduce response time.
|
|
478
|
-
* @type {
|
|
478
|
+
* @type {string}
|
|
479
479
|
* @memberof DataReportApiListDataReports
|
|
480
480
|
*/
|
|
481
|
-
readonly filter?:
|
|
481
|
+
readonly filter?: string
|
|
482
482
|
|
|
483
483
|
/**
|
|
484
484
|
* To search the list by any field, pass search=xxx to fetch the result.
|
|
485
|
-
* @type {
|
|
485
|
+
* @type {string}
|
|
486
486
|
* @memberof DataReportApiListDataReports
|
|
487
487
|
*/
|
|
488
|
-
readonly search?:
|
|
488
|
+
readonly search?: string
|
|
489
489
|
|
|
490
490
|
/**
|
|
491
491
|
* The order parameter determines how the results should be sorted according to a specified field. It functions similarly to an SQL ORDER BY. Sorting can be performed in either ascending (ASC) or descending (DESC) order. Default: ASC.
|
|
492
|
-
* @type {
|
|
492
|
+
* @type {string}
|
|
493
493
|
* @memberof DataReportApiListDataReports
|
|
494
494
|
*/
|
|
495
|
-
readonly order?:
|
|
495
|
+
readonly order?: string
|
|
496
496
|
|
|
497
497
|
/**
|
|
498
|
-
* Use this parameter to fetch additional information about the list items. The expand query parameter increases the set of fields that appear in the response in
|
|
499
|
-
* @type {
|
|
498
|
+
* Use this parameter to fetch additional information about the list items. The expand query parameter increases the set of fields that appear in the response in addition to the default ones. Expanding resources can reduce the number of API calls required to accomplish a task. However, use this with parsimony as some expanded fields can drastically increase payload size.
|
|
499
|
+
* @type {string}
|
|
500
500
|
* @memberof DataReportApiListDataReports
|
|
501
501
|
*/
|
|
502
|
-
readonly expand?:
|
|
502
|
+
readonly expand?: string
|
|
503
503
|
|
|
504
504
|
/**
|
|
505
505
|
* Filters the response by one or multiple fields. Advanced filter functionality allows you to perform more complex filtering operations. In general, fetching filtered responses conserves bandwidth and reduces response time.
|
|
506
|
-
* @type {
|
|
506
|
+
* @type {string}
|
|
507
507
|
* @memberof DataReportApiListDataReports
|
|
508
508
|
*/
|
|
509
|
-
readonly filters?:
|
|
509
|
+
readonly filters?: string
|
|
510
510
|
}
|
|
511
511
|
|
|
512
512
|
/**
|
package/api/invite-users-api.ts
CHANGED
|
@@ -189,17 +189,17 @@ export const InviteUsersApiAxiosParamCreator = function (configuration?: Configu
|
|
|
189
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
|
-
* @param {
|
|
193
|
-
* @param {
|
|
192
|
+
* @param {number} [pageSize] A limit on the number of objects to be returned. Limit ranges between 1 and 50. Default: 10.
|
|
193
|
+
* @param {string} [pageToken] A cursor for use in pagination. pageToken is an ID that defines your place in the list. For instance, if you make a list request and receive 100 objects and pageToken=1, your subsequent call can include pageToken=2 in order to fetch the next page of the list.
|
|
194
194
|
* @param {string} [filter] Filter the response by one or multiple fields. In general, fetching filtered responses will conserve bandwidth and reduce response time.<br/> <br/> <i>Allowed values: id, email, token, organizationId, ern, partnerCode</i>
|
|
195
|
-
* @param {
|
|
195
|
+
* @param {string} [search] To search the list by any field, pass search=xxx to fetch the result.
|
|
196
196
|
* @param {string} [order] Order allows you to specify the desired order of entities retrieved from the server by ascending (ASC) or descending (DESC) order.<br/> <br/> <i>Allowed values: email, expiresOn</i>
|
|
197
197
|
* @param {string} [expand] Expand to fetch additional information about the list items. Expanding resources can reduce the number of API calls required to accomplish a task. Use with discretion as some expanded fields can drastically increase payload size.<br/> <br/> <i>Allowed values: organizations<i>
|
|
198
198
|
* @param {string} [filters] Filters the response by one or multiple fields. Advanced filter functionality allows you to perform more complex filtering operations.<br/> <br/> <i>Allowed values: id, email, token, organizationId, ern, partnerCode</i>
|
|
199
199
|
* @param {*} [options] Override http request option.
|
|
200
200
|
* @throws {RequiredError}
|
|
201
201
|
*/
|
|
202
|
-
listInvites: async (authorization?: string, pageSize?:
|
|
202
|
+
listInvites: async (authorization?: string, pageSize?: number, pageToken?: string, filter?: string, search?: string, order?: string, expand?: string, filters?: string, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
203
203
|
const localVarPath = `/tenantservice/v1/users/invites`;
|
|
204
204
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
205
205
|
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
@@ -311,17 +311,17 @@ export const InviteUsersApiFp = function(configuration?: Configuration) {
|
|
|
311
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
|
-
* @param {
|
|
315
|
-
* @param {
|
|
314
|
+
* @param {number} [pageSize] A limit on the number of objects to be returned. Limit ranges between 1 and 50. Default: 10.
|
|
315
|
+
* @param {string} [pageToken] A cursor for use in pagination. pageToken is an ID that defines your place in the list. For instance, if you make a list request and receive 100 objects and pageToken=1, your subsequent call can include pageToken=2 in order to fetch the next page of the list.
|
|
316
316
|
* @param {string} [filter] Filter the response by one or multiple fields. In general, fetching filtered responses will conserve bandwidth and reduce response time.<br/> <br/> <i>Allowed values: id, email, token, organizationId, ern, partnerCode</i>
|
|
317
|
-
* @param {
|
|
317
|
+
* @param {string} [search] To search the list by any field, pass search=xxx to fetch the result.
|
|
318
318
|
* @param {string} [order] Order allows you to specify the desired order of entities retrieved from the server by ascending (ASC) or descending (DESC) order.<br/> <br/> <i>Allowed values: email, expiresOn</i>
|
|
319
319
|
* @param {string} [expand] Expand to fetch additional information about the list items. Expanding resources can reduce the number of API calls required to accomplish a task. Use with discretion as some expanded fields can drastically increase payload size.<br/> <br/> <i>Allowed values: organizations<i>
|
|
320
320
|
* @param {string} [filters] Filters the response by one or multiple fields. Advanced filter functionality allows you to perform more complex filtering operations.<br/> <br/> <i>Allowed values: id, email, token, organizationId, ern, partnerCode</i>
|
|
321
321
|
* @param {*} [options] Override http request option.
|
|
322
322
|
* @throws {RequiredError}
|
|
323
323
|
*/
|
|
324
|
-
async listInvites(authorization?: string, pageSize?:
|
|
324
|
+
async listInvites(authorization?: string, pageSize?: number, pageToken?: string, filter?: string, search?: string, order?: string, expand?: string, filters?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ListInvitesResponseClass>> {
|
|
325
325
|
const localVarAxiosArgs = await localVarAxiosParamCreator.listInvites(authorization, pageSize, pageToken, filter, search, order, expand, filters, options);
|
|
326
326
|
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
327
327
|
},
|
|
@@ -372,17 +372,17 @@ export const InviteUsersApiFactory = function (configuration?: Configuration, ba
|
|
|
372
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
|
-
* @param {
|
|
376
|
-
* @param {
|
|
375
|
+
* @param {number} [pageSize] A limit on the number of objects to be returned. Limit ranges between 1 and 50. Default: 10.
|
|
376
|
+
* @param {string} [pageToken] A cursor for use in pagination. pageToken is an ID that defines your place in the list. For instance, if you make a list request and receive 100 objects and pageToken=1, your subsequent call can include pageToken=2 in order to fetch the next page of the list.
|
|
377
377
|
* @param {string} [filter] Filter the response by one or multiple fields. In general, fetching filtered responses will conserve bandwidth and reduce response time.<br/> <br/> <i>Allowed values: id, email, token, organizationId, ern, partnerCode</i>
|
|
378
|
-
* @param {
|
|
378
|
+
* @param {string} [search] To search the list by any field, pass search=xxx to fetch the result.
|
|
379
379
|
* @param {string} [order] Order allows you to specify the desired order of entities retrieved from the server by ascending (ASC) or descending (DESC) order.<br/> <br/> <i>Allowed values: email, expiresOn</i>
|
|
380
380
|
* @param {string} [expand] Expand to fetch additional information about the list items. Expanding resources can reduce the number of API calls required to accomplish a task. Use with discretion as some expanded fields can drastically increase payload size.<br/> <br/> <i>Allowed values: organizations<i>
|
|
381
381
|
* @param {string} [filters] Filters the response by one or multiple fields. Advanced filter functionality allows you to perform more complex filtering operations.<br/> <br/> <i>Allowed values: id, email, token, organizationId, ern, partnerCode</i>
|
|
382
382
|
* @param {*} [options] Override http request option.
|
|
383
383
|
* @throws {RequiredError}
|
|
384
384
|
*/
|
|
385
|
-
listInvites(authorization?: string, pageSize?:
|
|
385
|
+
listInvites(authorization?: string, pageSize?: number, pageToken?: string, filter?: string, search?: string, order?: string, expand?: string, filters?: string, options?: any): AxiosPromise<ListInvitesResponseClass> {
|
|
386
386
|
return localVarFp.listInvites(authorization, pageSize, pageToken, filter, search, order, expand, filters, options).then((request) => request(axios, basePath));
|
|
387
387
|
},
|
|
388
388
|
};
|
|
@@ -466,17 +466,17 @@ export interface InviteUsersApiListInvitesRequest {
|
|
|
466
466
|
|
|
467
467
|
/**
|
|
468
468
|
* A limit on the number of objects to be returned. Limit ranges between 1 and 50. Default: 10.
|
|
469
|
-
* @type {
|
|
469
|
+
* @type {number}
|
|
470
470
|
* @memberof InviteUsersApiListInvites
|
|
471
471
|
*/
|
|
472
|
-
readonly pageSize?:
|
|
472
|
+
readonly pageSize?: number
|
|
473
473
|
|
|
474
474
|
/**
|
|
475
|
-
* 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,
|
|
476
|
-
* @type {
|
|
475
|
+
* 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.
|
|
476
|
+
* @type {string}
|
|
477
477
|
* @memberof InviteUsersApiListInvites
|
|
478
478
|
*/
|
|
479
|
-
readonly pageToken?:
|
|
479
|
+
readonly pageToken?: string
|
|
480
480
|
|
|
481
481
|
/**
|
|
482
482
|
* Filter the response by one or multiple fields. In general, fetching filtered responses will conserve bandwidth and reduce response time.<br/> <br/> <i>Allowed values: id, email, token, organizationId, ern, partnerCode</i>
|
|
@@ -487,10 +487,10 @@ export interface InviteUsersApiListInvitesRequest {
|
|
|
487
487
|
|
|
488
488
|
/**
|
|
489
489
|
* To search the list by any field, pass search=xxx to fetch the result.
|
|
490
|
-
* @type {
|
|
490
|
+
* @type {string}
|
|
491
491
|
* @memberof InviteUsersApiListInvites
|
|
492
492
|
*/
|
|
493
|
-
readonly search?:
|
|
493
|
+
readonly search?: string
|
|
494
494
|
|
|
495
495
|
/**
|
|
496
496
|
* Order allows you to specify the desired order of entities retrieved from the server by ascending (ASC) or descending (DESC) order.<br/> <br/> <i>Allowed values: email, expiresOn</i>
|
|
@@ -36,17 +36,17 @@ export const ListOrganizationInvitationsApiAxiosParamCreator = function (configu
|
|
|
36
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
|
-
* @param {
|
|
40
|
-
* @param {
|
|
41
|
-
* @param {
|
|
42
|
-
* @param {
|
|
43
|
-
* @param {
|
|
44
|
-
* @param {
|
|
45
|
-
* @param {
|
|
39
|
+
* @param {number} [pageSize] A limit on the number of objects to be returned. Limit ranges between 1 and 50. Default: 10.
|
|
40
|
+
* @param {string} [pageToken] A cursor for use in pagination. pageToken is an ID that defines your place in the list. For instance, if you make a list request and receive 100 objects and pageToken=1, your subsequent call can include pageToken=2 in order to fetch the next page of the list.
|
|
41
|
+
* @param {string} [filter] Filter the response by one or multiple fields. In general, fetching filtered responses will conserve bandwidth and reduce response time.
|
|
42
|
+
* @param {string} [search] To search the list by any field, pass search=xxx to fetch the result.
|
|
43
|
+
* @param {string} [order] The order parameter determines how the results should be sorted according to a specified field. It functions similarly to an SQL ORDER BY. Sorting can be performed in either ascending (ASC) or descending (DESC) order. Default: ASC.
|
|
44
|
+
* @param {string} [expand] Use this parameter to fetch additional information about the list items. The expand query parameter increases the set of fields that appear in the response in addition to the default ones. Expanding resources can reduce the number of API calls required to accomplish a task. However, use this with parsimony as some expanded fields can drastically increase payload size.
|
|
45
|
+
* @param {string} [filters] Filters the response by one or multiple fields. Advanced filter functionality allows you to perform more complex filtering operations. In general, fetching filtered responses conserves bandwidth and reduces response time.
|
|
46
46
|
* @param {*} [options] Override http request option.
|
|
47
47
|
* @throws {RequiredError}
|
|
48
48
|
*/
|
|
49
|
-
listOrgInvitations: async (authorization?: string, pageSize?:
|
|
49
|
+
listOrgInvitations: async (authorization?: string, pageSize?: number, pageToken?: string, filter?: string, search?: string, order?: string, expand?: string, filters?: string, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
50
50
|
const localVarPath = `/tenantservice/v1/invitations/organizations`;
|
|
51
51
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
52
52
|
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
@@ -122,17 +122,17 @@ export const ListOrganizationInvitationsApiFp = function(configuration?: Configu
|
|
|
122
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
|
-
* @param {
|
|
126
|
-
* @param {
|
|
127
|
-
* @param {
|
|
128
|
-
* @param {
|
|
129
|
-
* @param {
|
|
130
|
-
* @param {
|
|
131
|
-
* @param {
|
|
125
|
+
* @param {number} [pageSize] A limit on the number of objects to be returned. Limit ranges between 1 and 50. Default: 10.
|
|
126
|
+
* @param {string} [pageToken] A cursor for use in pagination. pageToken is an ID that defines your place in the list. For instance, if you make a list request and receive 100 objects and pageToken=1, your subsequent call can include pageToken=2 in order to fetch the next page of the list.
|
|
127
|
+
* @param {string} [filter] Filter the response by one or multiple fields. In general, fetching filtered responses will conserve bandwidth and reduce response time.
|
|
128
|
+
* @param {string} [search] To search the list by any field, pass search=xxx to fetch the result.
|
|
129
|
+
* @param {string} [order] The order parameter determines how the results should be sorted according to a specified field. It functions similarly to an SQL ORDER BY. Sorting can be performed in either ascending (ASC) or descending (DESC) order. Default: ASC.
|
|
130
|
+
* @param {string} [expand] Use this parameter to fetch additional information about the list items. The expand query parameter increases the set of fields that appear in the response in addition to the default ones. Expanding resources can reduce the number of API calls required to accomplish a task. However, use this with parsimony as some expanded fields can drastically increase payload size.
|
|
131
|
+
* @param {string} [filters] Filters the response by one or multiple fields. Advanced filter functionality allows you to perform more complex filtering operations. In general, fetching filtered responses conserves bandwidth and reduces response time.
|
|
132
132
|
* @param {*} [options] Override http request option.
|
|
133
133
|
* @throws {RequiredError}
|
|
134
134
|
*/
|
|
135
|
-
async listOrgInvitations(authorization?: string, pageSize?:
|
|
135
|
+
async listOrgInvitations(authorization?: string, pageSize?: number, pageToken?: string, filter?: string, search?: string, order?: string, expand?: string, filters?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ListOrgInvitationsResponseClass>> {
|
|
136
136
|
const localVarAxiosArgs = await localVarAxiosParamCreator.listOrgInvitations(authorization, pageSize, pageToken, filter, search, order, expand, filters, options);
|
|
137
137
|
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
138
138
|
},
|
|
@@ -150,17 +150,17 @@ export const ListOrganizationInvitationsApiFactory = function (configuration?: C
|
|
|
150
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
|
-
* @param {
|
|
154
|
-
* @param {
|
|
155
|
-
* @param {
|
|
156
|
-
* @param {
|
|
157
|
-
* @param {
|
|
158
|
-
* @param {
|
|
159
|
-
* @param {
|
|
153
|
+
* @param {number} [pageSize] A limit on the number of objects to be returned. Limit ranges between 1 and 50. Default: 10.
|
|
154
|
+
* @param {string} [pageToken] A cursor for use in pagination. pageToken is an ID that defines your place in the list. For instance, if you make a list request and receive 100 objects and pageToken=1, your subsequent call can include pageToken=2 in order to fetch the next page of the list.
|
|
155
|
+
* @param {string} [filter] Filter the response by one or multiple fields. In general, fetching filtered responses will conserve bandwidth and reduce response time.
|
|
156
|
+
* @param {string} [search] To search the list by any field, pass search=xxx to fetch the result.
|
|
157
|
+
* @param {string} [order] The order parameter determines how the results should be sorted according to a specified field. It functions similarly to an SQL ORDER BY. Sorting can be performed in either ascending (ASC) or descending (DESC) order. Default: ASC.
|
|
158
|
+
* @param {string} [expand] Use this parameter to fetch additional information about the list items. The expand query parameter increases the set of fields that appear in the response in addition to the default ones. Expanding resources can reduce the number of API calls required to accomplish a task. However, use this with parsimony as some expanded fields can drastically increase payload size.
|
|
159
|
+
* @param {string} [filters] Filters the response by one or multiple fields. Advanced filter functionality allows you to perform more complex filtering operations. In general, fetching filtered responses conserves bandwidth and reduces response time.
|
|
160
160
|
* @param {*} [options] Override http request option.
|
|
161
161
|
* @throws {RequiredError}
|
|
162
162
|
*/
|
|
163
|
-
listOrgInvitations(authorization?: string, pageSize?:
|
|
163
|
+
listOrgInvitations(authorization?: string, pageSize?: number, pageToken?: string, filter?: string, search?: string, order?: string, expand?: string, filters?: string, options?: any): AxiosPromise<ListOrgInvitationsResponseClass> {
|
|
164
164
|
return localVarFp.listOrgInvitations(authorization, pageSize, pageToken, filter, search, order, expand, filters, options).then((request) => request(axios, basePath));
|
|
165
165
|
},
|
|
166
166
|
};
|
|
@@ -181,52 +181,52 @@ export interface ListOrganizationInvitationsApiListOrgInvitationsRequest {
|
|
|
181
181
|
|
|
182
182
|
/**
|
|
183
183
|
* A limit on the number of objects to be returned. Limit ranges between 1 and 50. Default: 10.
|
|
184
|
-
* @type {
|
|
184
|
+
* @type {number}
|
|
185
185
|
* @memberof ListOrganizationInvitationsApiListOrgInvitations
|
|
186
186
|
*/
|
|
187
|
-
readonly pageSize?:
|
|
187
|
+
readonly pageSize?: number
|
|
188
188
|
|
|
189
189
|
/**
|
|
190
|
-
* 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,
|
|
191
|
-
* @type {
|
|
190
|
+
* 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.
|
|
191
|
+
* @type {string}
|
|
192
192
|
* @memberof ListOrganizationInvitationsApiListOrgInvitations
|
|
193
193
|
*/
|
|
194
|
-
readonly pageToken?:
|
|
194
|
+
readonly pageToken?: string
|
|
195
195
|
|
|
196
196
|
/**
|
|
197
197
|
* Filter the response by one or multiple fields. In general, fetching filtered responses will conserve bandwidth and reduce response time.
|
|
198
|
-
* @type {
|
|
198
|
+
* @type {string}
|
|
199
199
|
* @memberof ListOrganizationInvitationsApiListOrgInvitations
|
|
200
200
|
*/
|
|
201
|
-
readonly filter?:
|
|
201
|
+
readonly filter?: string
|
|
202
202
|
|
|
203
203
|
/**
|
|
204
204
|
* To search the list by any field, pass search=xxx to fetch the result.
|
|
205
|
-
* @type {
|
|
205
|
+
* @type {string}
|
|
206
206
|
* @memberof ListOrganizationInvitationsApiListOrgInvitations
|
|
207
207
|
*/
|
|
208
|
-
readonly search?:
|
|
208
|
+
readonly search?: string
|
|
209
209
|
|
|
210
210
|
/**
|
|
211
211
|
* The order parameter determines how the results should be sorted according to a specified field. It functions similarly to an SQL ORDER BY. Sorting can be performed in either ascending (ASC) or descending (DESC) order. Default: ASC.
|
|
212
|
-
* @type {
|
|
212
|
+
* @type {string}
|
|
213
213
|
* @memberof ListOrganizationInvitationsApiListOrgInvitations
|
|
214
214
|
*/
|
|
215
|
-
readonly order?:
|
|
215
|
+
readonly order?: string
|
|
216
216
|
|
|
217
217
|
/**
|
|
218
|
-
* Use this parameter to fetch additional information about the list items. The expand query parameter increases the set of fields that appear in the response in
|
|
219
|
-
* @type {
|
|
218
|
+
* Use this parameter to fetch additional information about the list items. The expand query parameter increases the set of fields that appear in the response in addition to the default ones. Expanding resources can reduce the number of API calls required to accomplish a task. However, use this with parsimony as some expanded fields can drastically increase payload size.
|
|
219
|
+
* @type {string}
|
|
220
220
|
* @memberof ListOrganizationInvitationsApiListOrgInvitations
|
|
221
221
|
*/
|
|
222
|
-
readonly expand?:
|
|
222
|
+
readonly expand?: string
|
|
223
223
|
|
|
224
224
|
/**
|
|
225
225
|
* Filters the response by one or multiple fields. Advanced filter functionality allows you to perform more complex filtering operations. In general, fetching filtered responses conserves bandwidth and reduces response time.
|
|
226
|
-
* @type {
|
|
226
|
+
* @type {string}
|
|
227
227
|
* @memberof ListOrganizationInvitationsApiListOrgInvitations
|
|
228
228
|
*/
|
|
229
|
-
readonly filters?:
|
|
229
|
+
readonly filters?: string
|
|
230
230
|
}
|
|
231
231
|
|
|
232
232
|
/**
|