@emilgroup/tenant-sdk-node 1.0.2 → 1.1.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +2 -2
- package/api/custom-schema-api.ts +16 -16
- package/api/data-report-api.ts +20 -20
- package/api/data-report-executor-api.ts +4 -4
- package/api/invite-organizations-api.ts +8 -8
- package/api/invite-users-api.ts +20 -20
- package/api/organizations-api.ts +124 -8
- package/api/users-api.ts +36 -36
- package/base.ts +3 -3
- package/dist/api/custom-schema-api.d.ts +16 -16
- package/dist/api/custom-schema-api.js +12 -12
- package/dist/api/data-report-api.d.ts +20 -20
- package/dist/api/data-report-api.js +15 -15
- package/dist/api/data-report-executor-api.d.ts +4 -4
- package/dist/api/data-report-executor-api.js +3 -3
- package/dist/api/invite-organizations-api.d.ts +8 -8
- package/dist/api/invite-organizations-api.js +6 -6
- package/dist/api/invite-users-api.d.ts +20 -20
- package/dist/api/invite-users-api.js +15 -15
- package/dist/api/organizations-api.d.ts +72 -8
- package/dist/api/organizations-api.js +105 -6
- package/dist/api/users-api.d.ts +36 -36
- package/dist/api/users-api.js +27 -27
- package/dist/base.d.ts +1 -1
- package/dist/base.js +3 -3
- package/dist/models/assign-user-roles-request-dto.d.ts +2 -2
- package/dist/models/create-custom-schema-request-dto.d.ts +1 -0
- package/dist/models/create-custom-schema-request-dto.js +2 -1
- package/dist/models/invite-org-request-dto.d.ts +2 -14
- package/dist/models/invite-org-request-dto.js +0 -6
- package/dist/models/invite-user-request-dto.d.ts +2 -2
- package/dist/models/invite-users-request-dto.d.ts +2 -2
- package/dist/models/org-invitation-class.d.ts +0 -12
- package/dist/models/org-invitation-class.js +0 -6
- package/dist/models/organization-class.d.ts +6 -12
- package/dist/models/organization-class.js +0 -6
- package/dist/models/update-custom-schema-request-dto.d.ts +1 -0
- package/dist/models/update-custom-schema-request-dto.js +2 -1
- package/models/assign-user-roles-request-dto.ts +2 -2
- package/models/create-custom-schema-request-dto.ts +2 -1
- package/models/invite-org-request-dto.ts +2 -17
- package/models/invite-user-request-dto.ts +2 -2
- package/models/invite-users-request-dto.ts +2 -2
- package/models/org-invitation-class.ts +0 -15
- package/models/organization-class.ts +6 -15
- package/models/update-custom-schema-request-dto.ts +2 -1
- package/package.json +1 -1
|
@@ -27,7 +27,7 @@ export declare const CustomSchemaApiAxiosParamCreator: (configuration?: Configur
|
|
|
27
27
|
* This will create an custom schema for tenant in the database. Custom schema are extra fields that tenant added to his entity and we need to validate this fields using the created schema.
|
|
28
28
|
* @summary Create the custom-schema
|
|
29
29
|
* @param {CreateCustomSchemaRequestDto} createCustomSchemaRequestDto
|
|
30
|
-
* @param {string} [authorization] Bearer Token
|
|
30
|
+
* @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
|
|
31
31
|
* @param {*} [options] Override http request option.
|
|
32
32
|
* @throws {RequiredError}
|
|
33
33
|
*/
|
|
@@ -36,7 +36,7 @@ export declare const CustomSchemaApiAxiosParamCreator: (configuration?: Configur
|
|
|
36
36
|
* Retrieves the details of the custom-schema that was previously created. Supply the unique custom-schema code that was returned when you created it and Emil Api will return the corresponding custom-schema information.
|
|
37
37
|
* @summary Retrieve the custom-schema
|
|
38
38
|
* @param {string} code Unique identifier for the object.
|
|
39
|
-
* @param {string} [authorization] Bearer Token
|
|
39
|
+
* @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
|
|
40
40
|
* @param {string} [expand] Fields to expand response by
|
|
41
41
|
* @param {*} [options] Override http request option.
|
|
42
42
|
* @throws {RequiredError}
|
|
@@ -45,7 +45,7 @@ export declare const CustomSchemaApiAxiosParamCreator: (configuration?: Configur
|
|
|
45
45
|
/**
|
|
46
46
|
* Returns a list of custom-schemas you have previously created. The custom-schemas are returned in sorted order, with the oldest one appearing first. For more information about pagination, read the Pagination documentation.
|
|
47
47
|
* @summary List custom-schemas
|
|
48
|
-
* @param {string} [authorization] Bearer Token
|
|
48
|
+
* @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
|
|
49
49
|
* @param {any} [pageSize] A limit on the number of objects to be returned. Limit ranges between 1 and 100. Default: 10.
|
|
50
50
|
* @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.
|
|
51
51
|
* @param {any} [filter] Filter the response by one or multiple fields. In general, fetching filtered responses will conserve bandwidth and reduce response time.
|
|
@@ -61,7 +61,7 @@ export declare const CustomSchemaApiAxiosParamCreator: (configuration?: Configur
|
|
|
61
61
|
* @summary Update the custom-schema
|
|
62
62
|
* @param {string} code
|
|
63
63
|
* @param {UpdateCustomSchemaRequestDto} updateCustomSchemaRequestDto
|
|
64
|
-
* @param {string} [authorization] Bearer Token
|
|
64
|
+
* @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
|
|
65
65
|
* @param {*} [options] Override http request option.
|
|
66
66
|
* @throws {RequiredError}
|
|
67
67
|
*/
|
|
@@ -76,7 +76,7 @@ export declare const CustomSchemaApiFp: (configuration?: Configuration) => {
|
|
|
76
76
|
* This will create an custom schema for tenant in the database. Custom schema are extra fields that tenant added to his entity and we need to validate this fields using the created schema.
|
|
77
77
|
* @summary Create the custom-schema
|
|
78
78
|
* @param {CreateCustomSchemaRequestDto} createCustomSchemaRequestDto
|
|
79
|
-
* @param {string} [authorization] Bearer Token
|
|
79
|
+
* @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
|
|
80
80
|
* @param {*} [options] Override http request option.
|
|
81
81
|
* @throws {RequiredError}
|
|
82
82
|
*/
|
|
@@ -85,7 +85,7 @@ export declare const CustomSchemaApiFp: (configuration?: Configuration) => {
|
|
|
85
85
|
* Retrieves the details of the custom-schema that was previously created. Supply the unique custom-schema code that was returned when you created it and Emil Api will return the corresponding custom-schema information.
|
|
86
86
|
* @summary Retrieve the custom-schema
|
|
87
87
|
* @param {string} code Unique identifier for the object.
|
|
88
|
-
* @param {string} [authorization] Bearer Token
|
|
88
|
+
* @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
|
|
89
89
|
* @param {string} [expand] Fields to expand response by
|
|
90
90
|
* @param {*} [options] Override http request option.
|
|
91
91
|
* @throws {RequiredError}
|
|
@@ -94,7 +94,7 @@ export declare const CustomSchemaApiFp: (configuration?: Configuration) => {
|
|
|
94
94
|
/**
|
|
95
95
|
* Returns a list of custom-schemas you have previously created. The custom-schemas are returned in sorted order, with the oldest one appearing first. For more information about pagination, read the Pagination documentation.
|
|
96
96
|
* @summary List custom-schemas
|
|
97
|
-
* @param {string} [authorization] Bearer Token
|
|
97
|
+
* @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
|
|
98
98
|
* @param {any} [pageSize] A limit on the number of objects to be returned. Limit ranges between 1 and 100. Default: 10.
|
|
99
99
|
* @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.
|
|
100
100
|
* @param {any} [filter] Filter the response by one or multiple fields. In general, fetching filtered responses will conserve bandwidth and reduce response time.
|
|
@@ -110,7 +110,7 @@ export declare const CustomSchemaApiFp: (configuration?: Configuration) => {
|
|
|
110
110
|
* @summary Update the custom-schema
|
|
111
111
|
* @param {string} code
|
|
112
112
|
* @param {UpdateCustomSchemaRequestDto} updateCustomSchemaRequestDto
|
|
113
|
-
* @param {string} [authorization] Bearer Token
|
|
113
|
+
* @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
|
|
114
114
|
* @param {*} [options] Override http request option.
|
|
115
115
|
* @throws {RequiredError}
|
|
116
116
|
*/
|
|
@@ -125,7 +125,7 @@ export declare const CustomSchemaApiFactory: (configuration?: Configuration, bas
|
|
|
125
125
|
* This will create an custom schema for tenant in the database. Custom schema are extra fields that tenant added to his entity and we need to validate this fields using the created schema.
|
|
126
126
|
* @summary Create the custom-schema
|
|
127
127
|
* @param {CreateCustomSchemaRequestDto} createCustomSchemaRequestDto
|
|
128
|
-
* @param {string} [authorization] Bearer Token
|
|
128
|
+
* @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
|
|
129
129
|
* @param {*} [options] Override http request option.
|
|
130
130
|
* @throws {RequiredError}
|
|
131
131
|
*/
|
|
@@ -134,7 +134,7 @@ export declare const CustomSchemaApiFactory: (configuration?: Configuration, bas
|
|
|
134
134
|
* Retrieves the details of the custom-schema that was previously created. Supply the unique custom-schema code that was returned when you created it and Emil Api will return the corresponding custom-schema information.
|
|
135
135
|
* @summary Retrieve the custom-schema
|
|
136
136
|
* @param {string} code Unique identifier for the object.
|
|
137
|
-
* @param {string} [authorization] Bearer Token
|
|
137
|
+
* @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
|
|
138
138
|
* @param {string} [expand] Fields to expand response by
|
|
139
139
|
* @param {*} [options] Override http request option.
|
|
140
140
|
* @throws {RequiredError}
|
|
@@ -143,7 +143,7 @@ export declare const CustomSchemaApiFactory: (configuration?: Configuration, bas
|
|
|
143
143
|
/**
|
|
144
144
|
* Returns a list of custom-schemas you have previously created. The custom-schemas are returned in sorted order, with the oldest one appearing first. For more information about pagination, read the Pagination documentation.
|
|
145
145
|
* @summary List custom-schemas
|
|
146
|
-
* @param {string} [authorization] Bearer Token
|
|
146
|
+
* @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
|
|
147
147
|
* @param {any} [pageSize] A limit on the number of objects to be returned. Limit ranges between 1 and 100. Default: 10.
|
|
148
148
|
* @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.
|
|
149
149
|
* @param {any} [filter] Filter the response by one or multiple fields. In general, fetching filtered responses will conserve bandwidth and reduce response time.
|
|
@@ -159,7 +159,7 @@ export declare const CustomSchemaApiFactory: (configuration?: Configuration, bas
|
|
|
159
159
|
* @summary Update the custom-schema
|
|
160
160
|
* @param {string} code
|
|
161
161
|
* @param {UpdateCustomSchemaRequestDto} updateCustomSchemaRequestDto
|
|
162
|
-
* @param {string} [authorization] Bearer Token
|
|
162
|
+
* @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
|
|
163
163
|
* @param {*} [options] Override http request option.
|
|
164
164
|
* @throws {RequiredError}
|
|
165
165
|
*/
|
|
@@ -178,7 +178,7 @@ export interface CustomSchemaApiCreateCustomSchemaRequest {
|
|
|
178
178
|
*/
|
|
179
179
|
readonly createCustomSchemaRequestDto: CreateCustomSchemaRequestDto;
|
|
180
180
|
/**
|
|
181
|
-
* Bearer Token
|
|
181
|
+
* Bearer Token: provided by the login endpoint under the name accessToken.
|
|
182
182
|
* @type {string}
|
|
183
183
|
* @memberof CustomSchemaApiCreateCustomSchema
|
|
184
184
|
*/
|
|
@@ -197,7 +197,7 @@ export interface CustomSchemaApiGetCustomSchemaRequest {
|
|
|
197
197
|
*/
|
|
198
198
|
readonly code: string;
|
|
199
199
|
/**
|
|
200
|
-
* Bearer Token
|
|
200
|
+
* Bearer Token: provided by the login endpoint under the name accessToken.
|
|
201
201
|
* @type {string}
|
|
202
202
|
* @memberof CustomSchemaApiGetCustomSchema
|
|
203
203
|
*/
|
|
@@ -216,7 +216,7 @@ export interface CustomSchemaApiGetCustomSchemaRequest {
|
|
|
216
216
|
*/
|
|
217
217
|
export interface CustomSchemaApiListCustomSchemasRequest {
|
|
218
218
|
/**
|
|
219
|
-
* Bearer Token
|
|
219
|
+
* Bearer Token: provided by the login endpoint under the name accessToken.
|
|
220
220
|
* @type {string}
|
|
221
221
|
* @memberof CustomSchemaApiListCustomSchemas
|
|
222
222
|
*/
|
|
@@ -277,7 +277,7 @@ export interface CustomSchemaApiUpdateCustomSchemaRequest {
|
|
|
277
277
|
*/
|
|
278
278
|
readonly updateCustomSchemaRequestDto: UpdateCustomSchemaRequestDto;
|
|
279
279
|
/**
|
|
280
|
-
* Bearer Token
|
|
280
|
+
* Bearer Token: provided by the login endpoint under the name accessToken.
|
|
281
281
|
* @type {string}
|
|
282
282
|
* @memberof CustomSchemaApiUpdateCustomSchema
|
|
283
283
|
*/
|
|
@@ -100,7 +100,7 @@ var CustomSchemaApiAxiosParamCreator = function (configuration) {
|
|
|
100
100
|
* This will create an custom schema for tenant in the database. Custom schema are extra fields that tenant added to his entity and we need to validate this fields using the created schema.
|
|
101
101
|
* @summary Create the custom-schema
|
|
102
102
|
* @param {CreateCustomSchemaRequestDto} createCustomSchemaRequestDto
|
|
103
|
-
* @param {string} [authorization] Bearer Token
|
|
103
|
+
* @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
|
|
104
104
|
* @param {*} [options] Override http request option.
|
|
105
105
|
* @throws {RequiredError}
|
|
106
106
|
*/
|
|
@@ -149,7 +149,7 @@ var CustomSchemaApiAxiosParamCreator = function (configuration) {
|
|
|
149
149
|
* Retrieves the details of the custom-schema that was previously created. Supply the unique custom-schema code that was returned when you created it and Emil Api will return the corresponding custom-schema information.
|
|
150
150
|
* @summary Retrieve the custom-schema
|
|
151
151
|
* @param {string} code Unique identifier for the object.
|
|
152
|
-
* @param {string} [authorization] Bearer Token
|
|
152
|
+
* @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
|
|
153
153
|
* @param {string} [expand] Fields to expand response by
|
|
154
154
|
* @param {*} [options] Override http request option.
|
|
155
155
|
* @throws {RequiredError}
|
|
@@ -200,7 +200,7 @@ var CustomSchemaApiAxiosParamCreator = function (configuration) {
|
|
|
200
200
|
/**
|
|
201
201
|
* Returns a list of custom-schemas you have previously created. The custom-schemas are returned in sorted order, with the oldest one appearing first. For more information about pagination, read the Pagination documentation.
|
|
202
202
|
* @summary List custom-schemas
|
|
203
|
-
* @param {string} [authorization] Bearer Token
|
|
203
|
+
* @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
|
|
204
204
|
* @param {any} [pageSize] A limit on the number of objects to be returned. Limit ranges between 1 and 100. Default: 10.
|
|
205
205
|
* @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.
|
|
206
206
|
* @param {any} [filter] Filter the response by one or multiple fields. In general, fetching filtered responses will conserve bandwidth and reduce response time.
|
|
@@ -270,7 +270,7 @@ var CustomSchemaApiAxiosParamCreator = function (configuration) {
|
|
|
270
270
|
* @summary Update the custom-schema
|
|
271
271
|
* @param {string} code
|
|
272
272
|
* @param {UpdateCustomSchemaRequestDto} updateCustomSchemaRequestDto
|
|
273
|
-
* @param {string} [authorization] Bearer Token
|
|
273
|
+
* @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
|
|
274
274
|
* @param {*} [options] Override http request option.
|
|
275
275
|
* @throws {RequiredError}
|
|
276
276
|
*/
|
|
@@ -332,7 +332,7 @@ var CustomSchemaApiFp = function (configuration) {
|
|
|
332
332
|
* This will create an custom schema for tenant in the database. Custom schema are extra fields that tenant added to his entity and we need to validate this fields using the created schema.
|
|
333
333
|
* @summary Create the custom-schema
|
|
334
334
|
* @param {CreateCustomSchemaRequestDto} createCustomSchemaRequestDto
|
|
335
|
-
* @param {string} [authorization] Bearer Token
|
|
335
|
+
* @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
|
|
336
336
|
* @param {*} [options] Override http request option.
|
|
337
337
|
* @throws {RequiredError}
|
|
338
338
|
*/
|
|
@@ -353,7 +353,7 @@ var CustomSchemaApiFp = function (configuration) {
|
|
|
353
353
|
* Retrieves the details of the custom-schema that was previously created. Supply the unique custom-schema code that was returned when you created it and Emil Api will return the corresponding custom-schema information.
|
|
354
354
|
* @summary Retrieve the custom-schema
|
|
355
355
|
* @param {string} code Unique identifier for the object.
|
|
356
|
-
* @param {string} [authorization] Bearer Token
|
|
356
|
+
* @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
|
|
357
357
|
* @param {string} [expand] Fields to expand response by
|
|
358
358
|
* @param {*} [options] Override http request option.
|
|
359
359
|
* @throws {RequiredError}
|
|
@@ -374,7 +374,7 @@ var CustomSchemaApiFp = function (configuration) {
|
|
|
374
374
|
/**
|
|
375
375
|
* Returns a list of custom-schemas you have previously created. The custom-schemas are returned in sorted order, with the oldest one appearing first. For more information about pagination, read the Pagination documentation.
|
|
376
376
|
* @summary List custom-schemas
|
|
377
|
-
* @param {string} [authorization] Bearer Token
|
|
377
|
+
* @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
|
|
378
378
|
* @param {any} [pageSize] A limit on the number of objects to be returned. Limit ranges between 1 and 100. Default: 10.
|
|
379
379
|
* @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.
|
|
380
380
|
* @param {any} [filter] Filter the response by one or multiple fields. In general, fetching filtered responses will conserve bandwidth and reduce response time.
|
|
@@ -402,7 +402,7 @@ var CustomSchemaApiFp = function (configuration) {
|
|
|
402
402
|
* @summary Update the custom-schema
|
|
403
403
|
* @param {string} code
|
|
404
404
|
* @param {UpdateCustomSchemaRequestDto} updateCustomSchemaRequestDto
|
|
405
|
-
* @param {string} [authorization] Bearer Token
|
|
405
|
+
* @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
|
|
406
406
|
* @param {*} [options] Override http request option.
|
|
407
407
|
* @throws {RequiredError}
|
|
408
408
|
*/
|
|
@@ -433,7 +433,7 @@ var CustomSchemaApiFactory = function (configuration, basePath, axios) {
|
|
|
433
433
|
* This will create an custom schema for tenant in the database. Custom schema are extra fields that tenant added to his entity and we need to validate this fields using the created schema.
|
|
434
434
|
* @summary Create the custom-schema
|
|
435
435
|
* @param {CreateCustomSchemaRequestDto} createCustomSchemaRequestDto
|
|
436
|
-
* @param {string} [authorization] Bearer Token
|
|
436
|
+
* @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
|
|
437
437
|
* @param {*} [options] Override http request option.
|
|
438
438
|
* @throws {RequiredError}
|
|
439
439
|
*/
|
|
@@ -444,7 +444,7 @@ var CustomSchemaApiFactory = function (configuration, basePath, axios) {
|
|
|
444
444
|
* Retrieves the details of the custom-schema that was previously created. Supply the unique custom-schema code that was returned when you created it and Emil Api will return the corresponding custom-schema information.
|
|
445
445
|
* @summary Retrieve the custom-schema
|
|
446
446
|
* @param {string} code Unique identifier for the object.
|
|
447
|
-
* @param {string} [authorization] Bearer Token
|
|
447
|
+
* @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
|
|
448
448
|
* @param {string} [expand] Fields to expand response by
|
|
449
449
|
* @param {*} [options] Override http request option.
|
|
450
450
|
* @throws {RequiredError}
|
|
@@ -455,7 +455,7 @@ var CustomSchemaApiFactory = function (configuration, basePath, axios) {
|
|
|
455
455
|
/**
|
|
456
456
|
* Returns a list of custom-schemas you have previously created. The custom-schemas are returned in sorted order, with the oldest one appearing first. For more information about pagination, read the Pagination documentation.
|
|
457
457
|
* @summary List custom-schemas
|
|
458
|
-
* @param {string} [authorization] Bearer Token
|
|
458
|
+
* @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
|
|
459
459
|
* @param {any} [pageSize] A limit on the number of objects to be returned. Limit ranges between 1 and 100. Default: 10.
|
|
460
460
|
* @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.
|
|
461
461
|
* @param {any} [filter] Filter the response by one or multiple fields. In general, fetching filtered responses will conserve bandwidth and reduce response time.
|
|
@@ -473,7 +473,7 @@ var CustomSchemaApiFactory = function (configuration, basePath, axios) {
|
|
|
473
473
|
* @summary Update the custom-schema
|
|
474
474
|
* @param {string} code
|
|
475
475
|
* @param {UpdateCustomSchemaRequestDto} updateCustomSchemaRequestDto
|
|
476
|
-
* @param {string} [authorization] Bearer Token
|
|
476
|
+
* @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
|
|
477
477
|
* @param {*} [options] Override http request option.
|
|
478
478
|
* @throws {RequiredError}
|
|
479
479
|
*/
|
|
@@ -27,7 +27,7 @@ export declare const DataReportApiAxiosParamCreator: (configuration?: Configurat
|
|
|
27
27
|
* This will create a data report for tenant in the database
|
|
28
28
|
* @summary Create the data-report
|
|
29
29
|
* @param {CreateDataReportRequestDto} createDataReportRequestDto
|
|
30
|
-
* @param {string} [authorization] Bearer Token
|
|
30
|
+
* @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
|
|
31
31
|
* @param {*} [options] Override http request option.
|
|
32
32
|
* @throws {RequiredError}
|
|
33
33
|
*/
|
|
@@ -35,7 +35,7 @@ export declare const DataReportApiAxiosParamCreator: (configuration?: Configurat
|
|
|
35
35
|
/**
|
|
36
36
|
*
|
|
37
37
|
* @param {string} id
|
|
38
|
-
* @param {string} [authorization] Bearer Token
|
|
38
|
+
* @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
|
|
39
39
|
* @param {*} [options] Override http request option.
|
|
40
40
|
* @throws {RequiredError}
|
|
41
41
|
*/
|
|
@@ -44,7 +44,7 @@ export declare const DataReportApiAxiosParamCreator: (configuration?: Configurat
|
|
|
44
44
|
* 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.
|
|
45
45
|
* @summary Retrieve the data-report
|
|
46
46
|
* @param {string} code Unique identifier for the object.
|
|
47
|
-
* @param {string} [authorization] Bearer Token
|
|
47
|
+
* @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
|
|
48
48
|
* @param {string} [expand] Fields to expand response by
|
|
49
49
|
* @param {*} [options] Override http request option.
|
|
50
50
|
* @throws {RequiredError}
|
|
@@ -53,7 +53,7 @@ export declare const DataReportApiAxiosParamCreator: (configuration?: Configurat
|
|
|
53
53
|
/**
|
|
54
54
|
* 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.
|
|
55
55
|
* @summary List data-reports
|
|
56
|
-
* @param {string} [authorization] Bearer Token
|
|
56
|
+
* @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
|
|
57
57
|
* @param {any} [pageSize] A limit on the number of objects to be returned. Limit ranges between 1 and 100. Default: 10.
|
|
58
58
|
* @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.
|
|
59
59
|
* @param {any} [filter] Filter the response by one or multiple fields. In general, fetching filtered responses will conserve bandwidth and reduce response time.
|
|
@@ -69,7 +69,7 @@ export declare const DataReportApiAxiosParamCreator: (configuration?: Configurat
|
|
|
69
69
|
* @summary Update the data-report
|
|
70
70
|
* @param {string} code
|
|
71
71
|
* @param {UpdateDataReportRequestDto} updateDataReportRequestDto
|
|
72
|
-
* @param {string} [authorization] Bearer Token
|
|
72
|
+
* @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
|
|
73
73
|
* @param {*} [options] Override http request option.
|
|
74
74
|
* @throws {RequiredError}
|
|
75
75
|
*/
|
|
@@ -84,7 +84,7 @@ export declare const DataReportApiFp: (configuration?: Configuration) => {
|
|
|
84
84
|
* This will create a data report for tenant in the database
|
|
85
85
|
* @summary Create the data-report
|
|
86
86
|
* @param {CreateDataReportRequestDto} createDataReportRequestDto
|
|
87
|
-
* @param {string} [authorization] Bearer Token
|
|
87
|
+
* @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
|
|
88
88
|
* @param {*} [options] Override http request option.
|
|
89
89
|
* @throws {RequiredError}
|
|
90
90
|
*/
|
|
@@ -92,7 +92,7 @@ export declare const DataReportApiFp: (configuration?: Configuration) => {
|
|
|
92
92
|
/**
|
|
93
93
|
*
|
|
94
94
|
* @param {string} id
|
|
95
|
-
* @param {string} [authorization] Bearer Token
|
|
95
|
+
* @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
|
|
96
96
|
* @param {*} [options] Override http request option.
|
|
97
97
|
* @throws {RequiredError}
|
|
98
98
|
*/
|
|
@@ -101,7 +101,7 @@ export declare const DataReportApiFp: (configuration?: Configuration) => {
|
|
|
101
101
|
* 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.
|
|
102
102
|
* @summary Retrieve the data-report
|
|
103
103
|
* @param {string} code Unique identifier for the object.
|
|
104
|
-
* @param {string} [authorization] Bearer Token
|
|
104
|
+
* @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
|
|
105
105
|
* @param {string} [expand] Fields to expand response by
|
|
106
106
|
* @param {*} [options] Override http request option.
|
|
107
107
|
* @throws {RequiredError}
|
|
@@ -110,7 +110,7 @@ export declare const DataReportApiFp: (configuration?: Configuration) => {
|
|
|
110
110
|
/**
|
|
111
111
|
* 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.
|
|
112
112
|
* @summary List data-reports
|
|
113
|
-
* @param {string} [authorization] Bearer Token
|
|
113
|
+
* @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
|
|
114
114
|
* @param {any} [pageSize] A limit on the number of objects to be returned. Limit ranges between 1 and 100. Default: 10.
|
|
115
115
|
* @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.
|
|
116
116
|
* @param {any} [filter] Filter the response by one or multiple fields. In general, fetching filtered responses will conserve bandwidth and reduce response time.
|
|
@@ -126,7 +126,7 @@ export declare const DataReportApiFp: (configuration?: Configuration) => {
|
|
|
126
126
|
* @summary Update the data-report
|
|
127
127
|
* @param {string} code
|
|
128
128
|
* @param {UpdateDataReportRequestDto} updateDataReportRequestDto
|
|
129
|
-
* @param {string} [authorization] Bearer Token
|
|
129
|
+
* @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
|
|
130
130
|
* @param {*} [options] Override http request option.
|
|
131
131
|
* @throws {RequiredError}
|
|
132
132
|
*/
|
|
@@ -141,7 +141,7 @@ export declare const DataReportApiFactory: (configuration?: Configuration, baseP
|
|
|
141
141
|
* This will create a data report for tenant in the database
|
|
142
142
|
* @summary Create the data-report
|
|
143
143
|
* @param {CreateDataReportRequestDto} createDataReportRequestDto
|
|
144
|
-
* @param {string} [authorization] Bearer Token
|
|
144
|
+
* @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
|
|
145
145
|
* @param {*} [options] Override http request option.
|
|
146
146
|
* @throws {RequiredError}
|
|
147
147
|
*/
|
|
@@ -149,7 +149,7 @@ export declare const DataReportApiFactory: (configuration?: Configuration, baseP
|
|
|
149
149
|
/**
|
|
150
150
|
*
|
|
151
151
|
* @param {string} id
|
|
152
|
-
* @param {string} [authorization] Bearer Token
|
|
152
|
+
* @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
|
|
153
153
|
* @param {*} [options] Override http request option.
|
|
154
154
|
* @throws {RequiredError}
|
|
155
155
|
*/
|
|
@@ -158,7 +158,7 @@ export declare const DataReportApiFactory: (configuration?: Configuration, baseP
|
|
|
158
158
|
* 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.
|
|
159
159
|
* @summary Retrieve the data-report
|
|
160
160
|
* @param {string} code Unique identifier for the object.
|
|
161
|
-
* @param {string} [authorization] Bearer Token
|
|
161
|
+
* @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
|
|
162
162
|
* @param {string} [expand] Fields to expand response by
|
|
163
163
|
* @param {*} [options] Override http request option.
|
|
164
164
|
* @throws {RequiredError}
|
|
@@ -167,7 +167,7 @@ export declare const DataReportApiFactory: (configuration?: Configuration, baseP
|
|
|
167
167
|
/**
|
|
168
168
|
* 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.
|
|
169
169
|
* @summary List data-reports
|
|
170
|
-
* @param {string} [authorization] Bearer Token
|
|
170
|
+
* @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
|
|
171
171
|
* @param {any} [pageSize] A limit on the number of objects to be returned. Limit ranges between 1 and 100. Default: 10.
|
|
172
172
|
* @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.
|
|
173
173
|
* @param {any} [filter] Filter the response by one or multiple fields. In general, fetching filtered responses will conserve bandwidth and reduce response time.
|
|
@@ -183,7 +183,7 @@ export declare const DataReportApiFactory: (configuration?: Configuration, baseP
|
|
|
183
183
|
* @summary Update the data-report
|
|
184
184
|
* @param {string} code
|
|
185
185
|
* @param {UpdateDataReportRequestDto} updateDataReportRequestDto
|
|
186
|
-
* @param {string} [authorization] Bearer Token
|
|
186
|
+
* @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
|
|
187
187
|
* @param {*} [options] Override http request option.
|
|
188
188
|
* @throws {RequiredError}
|
|
189
189
|
*/
|
|
@@ -202,7 +202,7 @@ export interface DataReportApiCreateCustomSchemaRequest {
|
|
|
202
202
|
*/
|
|
203
203
|
readonly createDataReportRequestDto: CreateDataReportRequestDto;
|
|
204
204
|
/**
|
|
205
|
-
* Bearer Token
|
|
205
|
+
* Bearer Token: provided by the login endpoint under the name accessToken.
|
|
206
206
|
* @type {string}
|
|
207
207
|
* @memberof DataReportApiCreateCustomSchema
|
|
208
208
|
*/
|
|
@@ -221,7 +221,7 @@ export interface DataReportApiDeleteAlertRequest {
|
|
|
221
221
|
*/
|
|
222
222
|
readonly id: string;
|
|
223
223
|
/**
|
|
224
|
-
* Bearer Token
|
|
224
|
+
* Bearer Token: provided by the login endpoint under the name accessToken.
|
|
225
225
|
* @type {string}
|
|
226
226
|
* @memberof DataReportApiDeleteAlert
|
|
227
227
|
*/
|
|
@@ -240,7 +240,7 @@ export interface DataReportApiGetDataReportRequest {
|
|
|
240
240
|
*/
|
|
241
241
|
readonly code: string;
|
|
242
242
|
/**
|
|
243
|
-
* Bearer Token
|
|
243
|
+
* Bearer Token: provided by the login endpoint under the name accessToken.
|
|
244
244
|
* @type {string}
|
|
245
245
|
* @memberof DataReportApiGetDataReport
|
|
246
246
|
*/
|
|
@@ -259,7 +259,7 @@ export interface DataReportApiGetDataReportRequest {
|
|
|
259
259
|
*/
|
|
260
260
|
export interface DataReportApiListDataReportsRequest {
|
|
261
261
|
/**
|
|
262
|
-
* Bearer Token
|
|
262
|
+
* Bearer Token: provided by the login endpoint under the name accessToken.
|
|
263
263
|
* @type {string}
|
|
264
264
|
* @memberof DataReportApiListDataReports
|
|
265
265
|
*/
|
|
@@ -320,7 +320,7 @@ export interface DataReportApiUpdateDataReportRequest {
|
|
|
320
320
|
*/
|
|
321
321
|
readonly updateDataReportRequestDto: UpdateDataReportRequestDto;
|
|
322
322
|
/**
|
|
323
|
-
* Bearer Token
|
|
323
|
+
* Bearer Token: provided by the login endpoint under the name accessToken.
|
|
324
324
|
* @type {string}
|
|
325
325
|
* @memberof DataReportApiUpdateDataReport
|
|
326
326
|
*/
|
|
@@ -100,7 +100,7 @@ var DataReportApiAxiosParamCreator = function (configuration) {
|
|
|
100
100
|
* This will create a data report for tenant in the database
|
|
101
101
|
* @summary Create the data-report
|
|
102
102
|
* @param {CreateDataReportRequestDto} createDataReportRequestDto
|
|
103
|
-
* @param {string} [authorization] Bearer Token
|
|
103
|
+
* @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
|
|
104
104
|
* @param {*} [options] Override http request option.
|
|
105
105
|
* @throws {RequiredError}
|
|
106
106
|
*/
|
|
@@ -148,7 +148,7 @@ var DataReportApiAxiosParamCreator = function (configuration) {
|
|
|
148
148
|
/**
|
|
149
149
|
*
|
|
150
150
|
* @param {string} id
|
|
151
|
-
* @param {string} [authorization] Bearer Token
|
|
151
|
+
* @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
|
|
152
152
|
* @param {*} [options] Override http request option.
|
|
153
153
|
* @throws {RequiredError}
|
|
154
154
|
*/
|
|
@@ -196,7 +196,7 @@ var DataReportApiAxiosParamCreator = function (configuration) {
|
|
|
196
196
|
* 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.
|
|
197
197
|
* @summary Retrieve the data-report
|
|
198
198
|
* @param {string} code Unique identifier for the object.
|
|
199
|
-
* @param {string} [authorization] Bearer Token
|
|
199
|
+
* @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
|
|
200
200
|
* @param {string} [expand] Fields to expand response by
|
|
201
201
|
* @param {*} [options] Override http request option.
|
|
202
202
|
* @throws {RequiredError}
|
|
@@ -247,7 +247,7 @@ var DataReportApiAxiosParamCreator = function (configuration) {
|
|
|
247
247
|
/**
|
|
248
248
|
* 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.
|
|
249
249
|
* @summary List data-reports
|
|
250
|
-
* @param {string} [authorization] Bearer Token
|
|
250
|
+
* @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
|
|
251
251
|
* @param {any} [pageSize] A limit on the number of objects to be returned. Limit ranges between 1 and 100. Default: 10.
|
|
252
252
|
* @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.
|
|
253
253
|
* @param {any} [filter] Filter the response by one or multiple fields. In general, fetching filtered responses will conserve bandwidth and reduce response time.
|
|
@@ -317,7 +317,7 @@ var DataReportApiAxiosParamCreator = function (configuration) {
|
|
|
317
317
|
* @summary Update the data-report
|
|
318
318
|
* @param {string} code
|
|
319
319
|
* @param {UpdateDataReportRequestDto} updateDataReportRequestDto
|
|
320
|
-
* @param {string} [authorization] Bearer Token
|
|
320
|
+
* @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
|
|
321
321
|
* @param {*} [options] Override http request option.
|
|
322
322
|
* @throws {RequiredError}
|
|
323
323
|
*/
|
|
@@ -379,7 +379,7 @@ var DataReportApiFp = function (configuration) {
|
|
|
379
379
|
* This will create a data report for tenant in the database
|
|
380
380
|
* @summary Create the data-report
|
|
381
381
|
* @param {CreateDataReportRequestDto} createDataReportRequestDto
|
|
382
|
-
* @param {string} [authorization] Bearer Token
|
|
382
|
+
* @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
|
|
383
383
|
* @param {*} [options] Override http request option.
|
|
384
384
|
* @throws {RequiredError}
|
|
385
385
|
*/
|
|
@@ -399,7 +399,7 @@ var DataReportApiFp = function (configuration) {
|
|
|
399
399
|
/**
|
|
400
400
|
*
|
|
401
401
|
* @param {string} id
|
|
402
|
-
* @param {string} [authorization] Bearer Token
|
|
402
|
+
* @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
|
|
403
403
|
* @param {*} [options] Override http request option.
|
|
404
404
|
* @throws {RequiredError}
|
|
405
405
|
*/
|
|
@@ -420,7 +420,7 @@ var DataReportApiFp = function (configuration) {
|
|
|
420
420
|
* 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.
|
|
421
421
|
* @summary Retrieve the data-report
|
|
422
422
|
* @param {string} code Unique identifier for the object.
|
|
423
|
-
* @param {string} [authorization] Bearer Token
|
|
423
|
+
* @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
|
|
424
424
|
* @param {string} [expand] Fields to expand response by
|
|
425
425
|
* @param {*} [options] Override http request option.
|
|
426
426
|
* @throws {RequiredError}
|
|
@@ -441,7 +441,7 @@ var DataReportApiFp = function (configuration) {
|
|
|
441
441
|
/**
|
|
442
442
|
* 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.
|
|
443
443
|
* @summary List data-reports
|
|
444
|
-
* @param {string} [authorization] Bearer Token
|
|
444
|
+
* @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
|
|
445
445
|
* @param {any} [pageSize] A limit on the number of objects to be returned. Limit ranges between 1 and 100. Default: 10.
|
|
446
446
|
* @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.
|
|
447
447
|
* @param {any} [filter] Filter the response by one or multiple fields. In general, fetching filtered responses will conserve bandwidth and reduce response time.
|
|
@@ -469,7 +469,7 @@ var DataReportApiFp = function (configuration) {
|
|
|
469
469
|
* @summary Update the data-report
|
|
470
470
|
* @param {string} code
|
|
471
471
|
* @param {UpdateDataReportRequestDto} updateDataReportRequestDto
|
|
472
|
-
* @param {string} [authorization] Bearer Token
|
|
472
|
+
* @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
|
|
473
473
|
* @param {*} [options] Override http request option.
|
|
474
474
|
* @throws {RequiredError}
|
|
475
475
|
*/
|
|
@@ -500,7 +500,7 @@ var DataReportApiFactory = function (configuration, basePath, axios) {
|
|
|
500
500
|
* This will create a data report for tenant in the database
|
|
501
501
|
* @summary Create the data-report
|
|
502
502
|
* @param {CreateDataReportRequestDto} createDataReportRequestDto
|
|
503
|
-
* @param {string} [authorization] Bearer Token
|
|
503
|
+
* @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
|
|
504
504
|
* @param {*} [options] Override http request option.
|
|
505
505
|
* @throws {RequiredError}
|
|
506
506
|
*/
|
|
@@ -510,7 +510,7 @@ var DataReportApiFactory = function (configuration, basePath, axios) {
|
|
|
510
510
|
/**
|
|
511
511
|
*
|
|
512
512
|
* @param {string} id
|
|
513
|
-
* @param {string} [authorization] Bearer Token
|
|
513
|
+
* @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
|
|
514
514
|
* @param {*} [options] Override http request option.
|
|
515
515
|
* @throws {RequiredError}
|
|
516
516
|
*/
|
|
@@ -521,7 +521,7 @@ var DataReportApiFactory = function (configuration, basePath, axios) {
|
|
|
521
521
|
* 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.
|
|
522
522
|
* @summary Retrieve the data-report
|
|
523
523
|
* @param {string} code Unique identifier for the object.
|
|
524
|
-
* @param {string} [authorization] Bearer Token
|
|
524
|
+
* @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
|
|
525
525
|
* @param {string} [expand] Fields to expand response by
|
|
526
526
|
* @param {*} [options] Override http request option.
|
|
527
527
|
* @throws {RequiredError}
|
|
@@ -532,7 +532,7 @@ var DataReportApiFactory = function (configuration, basePath, axios) {
|
|
|
532
532
|
/**
|
|
533
533
|
* 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.
|
|
534
534
|
* @summary List data-reports
|
|
535
|
-
* @param {string} [authorization] Bearer Token
|
|
535
|
+
* @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
|
|
536
536
|
* @param {any} [pageSize] A limit on the number of objects to be returned. Limit ranges between 1 and 100. Default: 10.
|
|
537
537
|
* @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.
|
|
538
538
|
* @param {any} [filter] Filter the response by one or multiple fields. In general, fetching filtered responses will conserve bandwidth and reduce response time.
|
|
@@ -550,7 +550,7 @@ var DataReportApiFactory = function (configuration, basePath, axios) {
|
|
|
550
550
|
* @summary Update the data-report
|
|
551
551
|
* @param {string} code
|
|
552
552
|
* @param {UpdateDataReportRequestDto} updateDataReportRequestDto
|
|
553
|
-
* @param {string} [authorization] Bearer Token
|
|
553
|
+
* @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
|
|
554
554
|
* @param {*} [options] Override http request option.
|
|
555
555
|
* @throws {RequiredError}
|
|
556
556
|
*/
|
|
@@ -22,7 +22,7 @@ export declare const DataReportExecutorApiAxiosParamCreator: (configuration?: Co
|
|
|
22
22
|
/**
|
|
23
23
|
*
|
|
24
24
|
* @param {RunDataReportRequestDto} runDataReportRequestDto
|
|
25
|
-
* @param {string} [authorization] Bearer Token
|
|
25
|
+
* @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
|
|
26
26
|
* @param {*} [options] Override http request option.
|
|
27
27
|
* @throws {RequiredError}
|
|
28
28
|
*/
|
|
@@ -36,7 +36,7 @@ export declare const DataReportExecutorApiFp: (configuration?: Configuration) =>
|
|
|
36
36
|
/**
|
|
37
37
|
*
|
|
38
38
|
* @param {RunDataReportRequestDto} runDataReportRequestDto
|
|
39
|
-
* @param {string} [authorization] Bearer Token
|
|
39
|
+
* @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
|
|
40
40
|
* @param {*} [options] Override http request option.
|
|
41
41
|
* @throws {RequiredError}
|
|
42
42
|
*/
|
|
@@ -50,7 +50,7 @@ export declare const DataReportExecutorApiFactory: (configuration?: Configuratio
|
|
|
50
50
|
/**
|
|
51
51
|
*
|
|
52
52
|
* @param {RunDataReportRequestDto} runDataReportRequestDto
|
|
53
|
-
* @param {string} [authorization] Bearer Token
|
|
53
|
+
* @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
|
|
54
54
|
* @param {*} [options] Override http request option.
|
|
55
55
|
* @throws {RequiredError}
|
|
56
56
|
*/
|
|
@@ -69,7 +69,7 @@ export interface DataReportExecutorApiRunDataReportRequest {
|
|
|
69
69
|
*/
|
|
70
70
|
readonly runDataReportRequestDto: RunDataReportRequestDto;
|
|
71
71
|
/**
|
|
72
|
-
* Bearer Token
|
|
72
|
+
* Bearer Token: provided by the login endpoint under the name accessToken.
|
|
73
73
|
* @type {string}
|
|
74
74
|
* @memberof DataReportExecutorApiRunDataReport
|
|
75
75
|
*/
|
|
@@ -99,7 +99,7 @@ var DataReportExecutorApiAxiosParamCreator = function (configuration) {
|
|
|
99
99
|
/**
|
|
100
100
|
*
|
|
101
101
|
* @param {RunDataReportRequestDto} runDataReportRequestDto
|
|
102
|
-
* @param {string} [authorization] Bearer Token
|
|
102
|
+
* @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
|
|
103
103
|
* @param {*} [options] Override http request option.
|
|
104
104
|
* @throws {RequiredError}
|
|
105
105
|
*/
|
|
@@ -157,7 +157,7 @@ var DataReportExecutorApiFp = function (configuration) {
|
|
|
157
157
|
/**
|
|
158
158
|
*
|
|
159
159
|
* @param {RunDataReportRequestDto} runDataReportRequestDto
|
|
160
|
-
* @param {string} [authorization] Bearer Token
|
|
160
|
+
* @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
|
|
161
161
|
* @param {*} [options] Override http request option.
|
|
162
162
|
* @throws {RequiredError}
|
|
163
163
|
*/
|
|
@@ -187,7 +187,7 @@ var DataReportExecutorApiFactory = function (configuration, basePath, axios) {
|
|
|
187
187
|
/**
|
|
188
188
|
*
|
|
189
189
|
* @param {RunDataReportRequestDto} runDataReportRequestDto
|
|
190
|
-
* @param {string} [authorization] Bearer Token
|
|
190
|
+
* @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
|
|
191
191
|
* @param {*} [options] Override http request option.
|
|
192
192
|
* @throws {RequiredError}
|
|
193
193
|
*/
|