@emilgroup/tenant-sdk-node 1.39.1-beta.63 → 1.39.1-beta.65

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (87) hide show
  1. package/.openapi-generator/FILES +18 -0
  2. package/README.md +2 -2
  3. package/api/dashboard-api.ts +103 -0
  4. package/api/invite-users-api.ts +8 -8
  5. package/api/report-schedule-api.ts +697 -0
  6. package/api/report-schedule-logs-api.ts +250 -0
  7. package/api/ssoid-pgroups-api.ts +20 -20
  8. package/api/user-controller-rest-api.ts +8 -8
  9. package/api.ts +4 -0
  10. package/dist/api/dashboard-api.d.ts +56 -0
  11. package/dist/api/dashboard-api.js +92 -0
  12. package/dist/api/invite-users-api.d.ts +8 -8
  13. package/dist/api/invite-users-api.js +6 -6
  14. package/dist/api/report-schedule-api.d.ts +394 -0
  15. package/dist/api/report-schedule-api.js +646 -0
  16. package/dist/api/report-schedule-logs-api.d.ts +150 -0
  17. package/dist/api/report-schedule-logs-api.js +264 -0
  18. package/dist/api/ssoid-pgroups-api.d.ts +20 -20
  19. package/dist/api/ssoid-pgroups-api.js +18 -18
  20. package/dist/api/user-controller-rest-api.d.ts +8 -8
  21. package/dist/api/user-controller-rest-api.js +6 -6
  22. package/dist/api.d.ts +2 -0
  23. package/dist/api.js +2 -0
  24. package/dist/models/create-report-schedule-request-dto.d.ts +115 -0
  25. package/dist/models/create-report-schedule-request-dto.js +15 -0
  26. package/dist/models/create-report-schedule-response-class.d.ts +25 -0
  27. package/dist/models/create-report-schedule-response-class.js +15 -0
  28. package/dist/models/create-sso-idp-group-request-dto.d.ts +4 -3
  29. package/dist/models/dashboard-metadata-class.d.ts +43 -0
  30. package/dist/models/dashboard-metadata-class.js +15 -0
  31. package/dist/models/dbconfig-dto.d.ts +6 -0
  32. package/dist/models/delete-tenant-request-dto.d.ts +30 -0
  33. package/dist/models/delete-tenant-request-dto.js +15 -0
  34. package/dist/models/get-dashboard-metadata-response-class.d.ts +25 -0
  35. package/dist/models/get-dashboard-metadata-response-class.js +15 -0
  36. package/dist/models/get-report-schedule-response-class.d.ts +25 -0
  37. package/dist/models/get-report-schedule-response-class.js +15 -0
  38. package/dist/models/index.d.ts +16 -0
  39. package/dist/models/index.js +16 -0
  40. package/dist/models/invite-class.d.ts +6 -0
  41. package/dist/models/list-report-schedule-logs-response-class.d.ts +43 -0
  42. package/dist/models/list-report-schedule-logs-response-class.js +15 -0
  43. package/dist/models/list-report-schedules-response-class.d.ts +43 -0
  44. package/dist/models/list-report-schedules-response-class.js +15 -0
  45. package/dist/models/org-invitation-class.d.ts +6 -0
  46. package/dist/models/quick-sight-analysis-parameter-class.d.ts +36 -0
  47. package/dist/models/quick-sight-analysis-parameter-class.js +15 -0
  48. package/dist/models/report-schedule-class.d.ts +157 -0
  49. package/dist/models/report-schedule-class.js +15 -0
  50. package/dist/models/report-schedule-log-class.d.ts +133 -0
  51. package/dist/models/report-schedule-log-class.js +15 -0
  52. package/dist/models/report-schedule-parameter-class.d.ts +42 -0
  53. package/dist/models/report-schedule-parameter-class.js +15 -0
  54. package/dist/models/report-schedule-parameter-dto.d.ts +42 -0
  55. package/dist/models/report-schedule-parameter-dto.js +15 -0
  56. package/dist/models/report-schedule-parameter-value-class.d.ts +30 -0
  57. package/dist/models/report-schedule-parameter-value-class.js +15 -0
  58. package/dist/models/sso-idp-group-class.d.ts +3 -2
  59. package/dist/models/update-report-schedule-request-dto.d.ts +121 -0
  60. package/dist/models/update-report-schedule-request-dto.js +15 -0
  61. package/dist/models/update-report-schedule-response-class.d.ts +25 -0
  62. package/dist/models/update-report-schedule-response-class.js +15 -0
  63. package/dist/models/update-sso-idp-group-body-dto.d.ts +2 -1
  64. package/models/create-report-schedule-request-dto.ts +121 -0
  65. package/models/create-report-schedule-response-class.ts +31 -0
  66. package/models/create-sso-idp-group-request-dto.ts +4 -3
  67. package/models/dashboard-metadata-class.ts +49 -0
  68. package/models/dbconfig-dto.ts +6 -0
  69. package/models/delete-tenant-request-dto.ts +36 -0
  70. package/models/get-dashboard-metadata-response-class.ts +31 -0
  71. package/models/get-report-schedule-response-class.ts +31 -0
  72. package/models/index.ts +16 -0
  73. package/models/invite-class.ts +6 -0
  74. package/models/list-report-schedule-logs-response-class.ts +49 -0
  75. package/models/list-report-schedules-response-class.ts +49 -0
  76. package/models/org-invitation-class.ts +6 -0
  77. package/models/quick-sight-analysis-parameter-class.ts +42 -0
  78. package/models/report-schedule-class.ts +163 -0
  79. package/models/report-schedule-log-class.ts +139 -0
  80. package/models/report-schedule-parameter-class.ts +48 -0
  81. package/models/report-schedule-parameter-dto.ts +48 -0
  82. package/models/report-schedule-parameter-value-class.ts +36 -0
  83. package/models/sso-idp-group-class.ts +3 -2
  84. package/models/update-report-schedule-request-dto.ts +127 -0
  85. package/models/update-report-schedule-response-class.ts +31 -0
  86. package/models/update-sso-idp-group-body-dto.ts +2 -1
  87. package/package.json +1 -1
@@ -17,6 +17,8 @@ api/list-organization-invitations-api.ts
17
17
  api/organization-migration-api.ts
18
18
  api/organizations-api.ts
19
19
  api/re-invite-an-organization-api.ts
20
+ api/report-schedule-api.ts
21
+ api/report-schedule-logs-api.ts
20
22
  api/roles-api.ts
21
23
  api/settings-api.ts
22
24
  api/ssoconnection-api.ts
@@ -49,6 +51,8 @@ models/create-data-report-request-dto.ts
49
51
  models/create-data-report-response-class.ts
50
52
  models/create-organization-migration-request-dto.ts
51
53
  models/create-organization-migration-response-class.ts
54
+ models/create-report-schedule-request-dto.ts
55
+ models/create-report-schedule-response-class.ts
52
56
  models/create-resources-migration-request-dto.ts
53
57
  models/create-sso-connection-request-dto.ts
54
58
  models/create-sso-connection-response-class.ts
@@ -61,6 +65,7 @@ models/custom-field-dto.ts
61
65
  models/custom-schema-class.ts
62
66
  models/dashboard-class.ts
63
67
  models/dashboard-group-class.ts
68
+ models/dashboard-metadata-class.ts
64
69
  models/data-report-class.ts
65
70
  models/data-report-filter-class.ts
66
71
  models/data-report-filter-dto.ts
@@ -69,6 +74,7 @@ models/data-report-filter-value-dto.ts
69
74
  models/dbconfig-dto.ts
70
75
  models/delete-by-code-response-class.ts
71
76
  models/delete-response-class.ts
77
+ models/delete-tenant-request-dto.ts
72
78
  models/disable-users-request-dto.ts
73
79
  models/disable-users-response-class.ts
74
80
  models/duplicate-dashboard-request-dto.ts
@@ -78,11 +84,13 @@ models/enable-users-response-class.ts
78
84
  models/format-tenant-settings-class.ts
79
85
  models/get-custom-schema-response-class.ts
80
86
  models/get-dashboard-group-response-class.ts
87
+ models/get-dashboard-metadata-response-class.ts
81
88
  models/get-dashboard-response-class.ts
82
89
  models/get-data-report-response-class.ts
83
90
  models/get-embedded-url-response-class.ts
84
91
  models/get-organization-migration-response-class.ts
85
92
  models/get-organization-response-class.ts
93
+ models/get-report-schedule-response-class.ts
86
94
  models/get-settings-response-class.ts
87
95
  models/get-sso-connection-response-class.ts
88
96
  models/get-sso-connection-setup-response-class.ts
@@ -109,6 +117,8 @@ models/list-invites-response-class.ts
109
117
  models/list-org-invitations-response-class.ts
110
118
  models/list-organization-migrations-response-class.ts
111
119
  models/list-organizations-response-class.ts
120
+ models/list-report-schedule-logs-response-class.ts
121
+ models/list-report-schedules-response-class.ts
112
122
  models/list-roles-response-class.ts
113
123
  models/list-sso-idp-groups-response-class.ts
114
124
  models/list-user-group-members-response-class.ts
@@ -123,8 +133,14 @@ models/organization-class.ts
123
133
  models/organization-migration-class.ts
124
134
  models/permission-class.ts
125
135
  models/publish-dashboard-request-dto.ts
136
+ models/quick-sight-analysis-parameter-class.ts
126
137
  models/re-invite-org-request-dto.ts
127
138
  models/remove-users-from-group-request-dto.ts
139
+ models/report-schedule-class.ts
140
+ models/report-schedule-log-class.ts
141
+ models/report-schedule-parameter-class.ts
142
+ models/report-schedule-parameter-dto.ts
143
+ models/report-schedule-parameter-value-class.ts
128
144
  models/revert-analysis-request-dto.ts
129
145
  models/revert-organization-migration-request-dto.ts
130
146
  models/revert-organization-migration-response-class.ts
@@ -158,6 +174,8 @@ models/update-data-report-request-dto.ts
158
174
  models/update-data-report-response-class.ts
159
175
  models/update-organization-request-dto-rest.ts
160
176
  models/update-organization-response-class.ts
177
+ models/update-report-schedule-request-dto.ts
178
+ models/update-report-schedule-response-class.ts
161
179
  models/update-sso-connection-body-dto.ts
162
180
  models/update-sso-connection-response-class.ts
163
181
  models/update-sso-connection-status-body-dto.ts
package/README.md CHANGED
@@ -17,11 +17,11 @@ Although this package can be used in both TypeScript and JavaScript, it is inten
17
17
  Navigate to the folder of your consuming project and run one of the following commands:
18
18
 
19
19
  ```
20
- npm install @emilgroup/tenant-sdk-node@1.39.1-beta.63 --save
20
+ npm install @emilgroup/tenant-sdk-node@1.39.1-beta.65 --save
21
21
  ```
22
22
  or
23
23
  ```
24
- yarn add @emilgroup/tenant-sdk-node@1.39.1-beta.63
24
+ yarn add @emilgroup/tenant-sdk-node@1.39.1-beta.65
25
25
  ```
26
26
 
27
27
  And then you can import `UsersApi`.
@@ -35,6 +35,8 @@ import { DuplicateDashboardRequestDto } from '../models';
35
35
  // @ts-ignore
36
36
  import { DuplicateDashboardResponseClass } from '../models';
37
37
  // @ts-ignore
38
+ import { GetDashboardMetadataResponseClass } from '../models';
39
+ // @ts-ignore
38
40
  import { GetDashboardResponseClass } from '../models';
39
41
  // @ts-ignore
40
42
  import { GetEmbeddedUrlResponseClass } from '../models';
@@ -375,6 +377,51 @@ export const DashboardApiAxiosParamCreator = function (configuration?: Configura
375
377
 
376
378
 
377
379
 
380
+ setSearchParams(localVarUrlObj, localVarQueryParameter);
381
+ let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
382
+ localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
383
+
384
+ return {
385
+ url: toPathString(localVarUrlObj),
386
+ options: localVarRequestOptions,
387
+ };
388
+ },
389
+ /**
390
+ * Returns sheet names and parameter definitions for the dashboard analysis backing this record. **Required Permissions** \"reporting.dashboards.view\"
391
+ * @summary Retrieves QuickSight analysis metadata for a dashboard
392
+ * @param {string} code
393
+ * @param {string} [authorization] Bearer Token
394
+ * @param {*} [options] Override http request option.
395
+ * @throws {RequiredError}
396
+ */
397
+ getDashboardMetadata: async (code: string, authorization?: string, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
398
+ // verify required parameter 'code' is not null or undefined
399
+ assertParamExists('getDashboardMetadata', 'code', code)
400
+ const localVarPath = `/tenantservice/v1/dashboards/{code}/metadata`
401
+ .replace(`{${"code"}}`, encodeURIComponent(String(code)));
402
+ // use dummy base URL string because the URL constructor only accepts absolute URLs.
403
+ const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
404
+ let baseOptions;
405
+ let baseAccessToken;
406
+ if (configuration) {
407
+ baseOptions = configuration.baseOptions;
408
+ baseAccessToken = configuration.accessToken;
409
+ }
410
+
411
+ const localVarRequestOptions = { method: 'GET', ...baseOptions, ...options};
412
+ const localVarHeaderParameter = {} as any;
413
+ const localVarQueryParameter = {} as any;
414
+
415
+ // authentication bearer required
416
+ // http bearer authentication required
417
+ await setBearerAuthToObject(localVarHeaderParameter, configuration)
418
+
419
+ if (authorization !== undefined && authorization !== null || baseAccessToken !== undefined && baseAccessToken !== null) {
420
+ localVarHeaderParameter['Authorization'] = String(authorization ? authorization : baseAccessToken);
421
+ }
422
+
423
+
424
+
378
425
  setSearchParams(localVarUrlObj, localVarQueryParameter);
379
426
  let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
380
427
  localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
@@ -701,6 +748,18 @@ export const DashboardApiFp = function(configuration?: Configuration) {
701
748
  const localVarAxiosArgs = await localVarAxiosParamCreator.getDashboardEmbeddedUrl(providerDashboardId, authorization, options);
702
749
  return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
703
750
  },
751
+ /**
752
+ * Returns sheet names and parameter definitions for the dashboard analysis backing this record. **Required Permissions** \"reporting.dashboards.view\"
753
+ * @summary Retrieves QuickSight analysis metadata for a dashboard
754
+ * @param {string} code
755
+ * @param {string} [authorization] Bearer Token
756
+ * @param {*} [options] Override http request option.
757
+ * @throws {RequiredError}
758
+ */
759
+ async getDashboardMetadata(code: string, authorization?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<GetDashboardMetadataResponseClass>> {
760
+ const localVarAxiosArgs = await localVarAxiosParamCreator.getDashboardMetadata(code, authorization, options);
761
+ return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
762
+ },
704
763
  /**
705
764
  * Fetches a paginated list of dashboards with optional filtering and sorting capabilities. **Required Permissions** \"reporting.dashboards.view\"
706
765
  * @summary Retrieves a list of dashboards
@@ -845,6 +904,17 @@ export const DashboardApiFactory = function (configuration?: Configuration, base
845
904
  getDashboardEmbeddedUrl(providerDashboardId: string, authorization?: string, options?: any): AxiosPromise<GetEmbeddedUrlResponseClass> {
846
905
  return localVarFp.getDashboardEmbeddedUrl(providerDashboardId, authorization, options).then((request) => request(axios, basePath));
847
906
  },
907
+ /**
908
+ * Returns sheet names and parameter definitions for the dashboard analysis backing this record. **Required Permissions** \"reporting.dashboards.view\"
909
+ * @summary Retrieves QuickSight analysis metadata for a dashboard
910
+ * @param {string} code
911
+ * @param {string} [authorization] Bearer Token
912
+ * @param {*} [options] Override http request option.
913
+ * @throws {RequiredError}
914
+ */
915
+ getDashboardMetadata(code: string, authorization?: string, options?: any): AxiosPromise<GetDashboardMetadataResponseClass> {
916
+ return localVarFp.getDashboardMetadata(code, authorization, options).then((request) => request(axios, basePath));
917
+ },
848
918
  /**
849
919
  * Fetches a paginated list of dashboards with optional filtering and sorting capabilities. **Required Permissions** \"reporting.dashboards.view\"
850
920
  * @summary Retrieves a list of dashboards
@@ -1053,6 +1123,27 @@ export interface DashboardApiGetDashboardEmbeddedUrlRequest {
1053
1123
  readonly authorization?: string
1054
1124
  }
1055
1125
 
1126
+ /**
1127
+ * Request parameters for getDashboardMetadata operation in DashboardApi.
1128
+ * @export
1129
+ * @interface DashboardApiGetDashboardMetadataRequest
1130
+ */
1131
+ export interface DashboardApiGetDashboardMetadataRequest {
1132
+ /**
1133
+ *
1134
+ * @type {string}
1135
+ * @memberof DashboardApiGetDashboardMetadata
1136
+ */
1137
+ readonly code: string
1138
+
1139
+ /**
1140
+ * Bearer Token
1141
+ * @type {string}
1142
+ * @memberof DashboardApiGetDashboardMetadata
1143
+ */
1144
+ readonly authorization?: string
1145
+ }
1146
+
1056
1147
  /**
1057
1148
  * Request parameters for listDashboards operation in DashboardApi.
1058
1149
  * @export
@@ -1278,6 +1369,18 @@ export class DashboardApi extends BaseAPI {
1278
1369
  return DashboardApiFp(this.configuration).getDashboardEmbeddedUrl(requestParameters.providerDashboardId, requestParameters.authorization, options).then((request) => request(this.axios, this.basePath));
1279
1370
  }
1280
1371
 
1372
+ /**
1373
+ * Returns sheet names and parameter definitions for the dashboard analysis backing this record. **Required Permissions** \"reporting.dashboards.view\"
1374
+ * @summary Retrieves QuickSight analysis metadata for a dashboard
1375
+ * @param {DashboardApiGetDashboardMetadataRequest} requestParameters Request parameters.
1376
+ * @param {*} [options] Override http request option.
1377
+ * @throws {RequiredError}
1378
+ * @memberof DashboardApi
1379
+ */
1380
+ public getDashboardMetadata(requestParameters: DashboardApiGetDashboardMetadataRequest, options?: AxiosRequestConfig) {
1381
+ return DashboardApiFp(this.configuration).getDashboardMetadata(requestParameters.code, requestParameters.authorization, options).then((request) => request(this.axios, this.basePath));
1382
+ }
1383
+
1281
1384
  /**
1282
1385
  * Fetches a paginated list of dashboards with optional filtering and sorting capabilities. **Required Permissions** \"reporting.dashboards.view\"
1283
1386
  * @summary Retrieves a list of dashboards
@@ -191,11 +191,11 @@ export const InviteUsersApiAxiosParamCreator = function (configuration?: Configu
191
191
  * @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
192
192
  * @param {number} [pageSize] A limit on the number of objects to be returned. Limit ranges between 1 and 50. Default: 10.
193
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&#x3D;1, your subsequent call can include pageToken&#x3D;2 in order to fetch the next page of the list.
194
- * @param {string} [filter] Filter the response by one or multiple fields. In general, fetching filtered responses will conserve bandwidth and reduce response time.&lt;br/&gt; &lt;br/&gt; &lt;i&gt;Allowed values: id, email, token, organizationId, ern, partnerCode&lt;/i&gt;
194
+ * @param {string} [filter] Filter the response by one or multiple fields. In general, fetching filtered responses will conserve bandwidth and reduce response time.&lt;br/&gt; &lt;br/&gt; &lt;i&gt;Allowed values: id, code, email, token, organizationId, ern, partnerCode&lt;/i&gt;
195
195
  * @param {string} [search] To search the list by any field, pass search&#x3D;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.&lt;br/&gt; &lt;br/&gt; &lt;i&gt;Allowed values: id, email, expiresOn&lt;/i&gt;
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.&lt;br/&gt; &lt;br/&gt; &lt;i&gt;Allowed values: organizations&lt;i&gt;
198
- * @param {string} [filters] Filters the response by one or multiple fields. Advanced filter functionality allows you to perform more complex filtering operations.&lt;br/&gt; &lt;br/&gt; &lt;i&gt;Allowed values: id, email, token, organizationId, ern, partnerCode&lt;/i&gt;
198
+ * @param {string} [filters] Filters the response by one or multiple fields. Advanced filter functionality allows you to perform more complex filtering operations.&lt;br/&gt; &lt;br/&gt; &lt;i&gt;Allowed values: id, code, email, token, organizationId, ern, partnerCode&lt;/i&gt;
199
199
  * @param {*} [options] Override http request option.
200
200
  * @throws {RequiredError}
201
201
  */
@@ -313,11 +313,11 @@ export const InviteUsersApiFp = function(configuration?: Configuration) {
313
313
  * @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
314
314
  * @param {number} [pageSize] A limit on the number of objects to be returned. Limit ranges between 1 and 50. Default: 10.
315
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&#x3D;1, your subsequent call can include pageToken&#x3D;2 in order to fetch the next page of the list.
316
- * @param {string} [filter] Filter the response by one or multiple fields. In general, fetching filtered responses will conserve bandwidth and reduce response time.&lt;br/&gt; &lt;br/&gt; &lt;i&gt;Allowed values: id, email, token, organizationId, ern, partnerCode&lt;/i&gt;
316
+ * @param {string} [filter] Filter the response by one or multiple fields. In general, fetching filtered responses will conserve bandwidth and reduce response time.&lt;br/&gt; &lt;br/&gt; &lt;i&gt;Allowed values: id, code, email, token, organizationId, ern, partnerCode&lt;/i&gt;
317
317
  * @param {string} [search] To search the list by any field, pass search&#x3D;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.&lt;br/&gt; &lt;br/&gt; &lt;i&gt;Allowed values: id, email, expiresOn&lt;/i&gt;
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.&lt;br/&gt; &lt;br/&gt; &lt;i&gt;Allowed values: organizations&lt;i&gt;
320
- * @param {string} [filters] Filters the response by one or multiple fields. Advanced filter functionality allows you to perform more complex filtering operations.&lt;br/&gt; &lt;br/&gt; &lt;i&gt;Allowed values: id, email, token, organizationId, ern, partnerCode&lt;/i&gt;
320
+ * @param {string} [filters] Filters the response by one or multiple fields. Advanced filter functionality allows you to perform more complex filtering operations.&lt;br/&gt; &lt;br/&gt; &lt;i&gt;Allowed values: id, code, email, token, organizationId, ern, partnerCode&lt;/i&gt;
321
321
  * @param {*} [options] Override http request option.
322
322
  * @throws {RequiredError}
323
323
  */
@@ -374,11 +374,11 @@ export const InviteUsersApiFactory = function (configuration?: Configuration, ba
374
374
  * @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
375
375
  * @param {number} [pageSize] A limit on the number of objects to be returned. Limit ranges between 1 and 50. Default: 10.
376
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&#x3D;1, your subsequent call can include pageToken&#x3D;2 in order to fetch the next page of the list.
377
- * @param {string} [filter] Filter the response by one or multiple fields. In general, fetching filtered responses will conserve bandwidth and reduce response time.&lt;br/&gt; &lt;br/&gt; &lt;i&gt;Allowed values: id, email, token, organizationId, ern, partnerCode&lt;/i&gt;
377
+ * @param {string} [filter] Filter the response by one or multiple fields. In general, fetching filtered responses will conserve bandwidth and reduce response time.&lt;br/&gt; &lt;br/&gt; &lt;i&gt;Allowed values: id, code, email, token, organizationId, ern, partnerCode&lt;/i&gt;
378
378
  * @param {string} [search] To search the list by any field, pass search&#x3D;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.&lt;br/&gt; &lt;br/&gt; &lt;i&gt;Allowed values: id, email, expiresOn&lt;/i&gt;
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.&lt;br/&gt; &lt;br/&gt; &lt;i&gt;Allowed values: organizations&lt;i&gt;
381
- * @param {string} [filters] Filters the response by one or multiple fields. Advanced filter functionality allows you to perform more complex filtering operations.&lt;br/&gt; &lt;br/&gt; &lt;i&gt;Allowed values: id, email, token, organizationId, ern, partnerCode&lt;/i&gt;
381
+ * @param {string} [filters] Filters the response by one or multiple fields. Advanced filter functionality allows you to perform more complex filtering operations.&lt;br/&gt; &lt;br/&gt; &lt;i&gt;Allowed values: id, code, email, token, organizationId, ern, partnerCode&lt;/i&gt;
382
382
  * @param {*} [options] Override http request option.
383
383
  * @throws {RequiredError}
384
384
  */
@@ -479,7 +479,7 @@ export interface InviteUsersApiListInvitesRequest {
479
479
  readonly pageToken?: string
480
480
 
481
481
  /**
482
- * Filter the response by one or multiple fields. In general, fetching filtered responses will conserve bandwidth and reduce response time.&lt;br/&gt; &lt;br/&gt; &lt;i&gt;Allowed values: id, email, token, organizationId, ern, partnerCode&lt;/i&gt;
482
+ * Filter the response by one or multiple fields. In general, fetching filtered responses will conserve bandwidth and reduce response time.&lt;br/&gt; &lt;br/&gt; &lt;i&gt;Allowed values: id, code, email, token, organizationId, ern, partnerCode&lt;/i&gt;
483
483
  * @type {string}
484
484
  * @memberof InviteUsersApiListInvites
485
485
  */
@@ -507,7 +507,7 @@ export interface InviteUsersApiListInvitesRequest {
507
507
  readonly expand?: string
508
508
 
509
509
  /**
510
- * Filters the response by one or multiple fields. Advanced filter functionality allows you to perform more complex filtering operations.&lt;br/&gt; &lt;br/&gt; &lt;i&gt;Allowed values: id, email, token, organizationId, ern, partnerCode&lt;/i&gt;
510
+ * Filters the response by one or multiple fields. Advanced filter functionality allows you to perform more complex filtering operations.&lt;br/&gt; &lt;br/&gt; &lt;i&gt;Allowed values: id, code, email, token, organizationId, ern, partnerCode&lt;/i&gt;
511
511
  * @type {string}
512
512
  * @memberof InviteUsersApiListInvites
513
513
  */