ultracart_rest_api_v2_typescript 4.1.13 → 4.1.15
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.openapi-generator/FILES +10 -0
- package/README.md +7 -3
- package/dist/apis/DatawarehouseApi.d.ts +190 -1
- package/dist/apis/DatawarehouseApi.js +422 -0
- package/dist/apis/OrderApi.d.ts +56 -0
- package/dist/apis/OrderApi.js +117 -0
- package/dist/models/CartUpsellAfter.d.ts +13 -1
- package/dist/models/CartUpsellAfter.js +4 -0
- package/dist/models/ConversationVirtualAgentCapabilities.d.ts +22 -0
- package/dist/models/ConversationVirtualAgentCapabilities.js +14 -1
- package/dist/models/CustomReport.d.ts +88 -0
- package/dist/models/CustomReport.js +71 -0
- package/dist/models/CustomReportAccountConfig.d.ts +79 -0
- package/dist/models/CustomReportAccountConfig.js +66 -0
- package/dist/models/CustomReportAccountConfigResponse.d.ts +59 -0
- package/dist/models/CustomReportAccountConfigResponse.js +62 -0
- package/dist/models/CustomReportExecutionParameter.d.ts +43 -0
- package/dist/models/CustomReportExecutionParameter.js +54 -0
- package/dist/models/CustomReportExecutionRequest.d.ts +32 -0
- package/dist/models/CustomReportExecutionRequest.js +51 -0
- package/dist/models/CustomReportParameter.d.ts +62 -0
- package/dist/models/CustomReportParameter.js +61 -0
- package/dist/models/CustomReportParameterOption.d.ts +37 -0
- package/dist/models/CustomReportParameterOption.js +52 -0
- package/dist/models/CustomReportQuery.d.ts +61 -0
- package/dist/models/CustomReportQuery.js +60 -0
- package/dist/models/CustomReportResponse.d.ts +59 -0
- package/dist/models/CustomReportResponse.js +62 -0
- package/dist/models/CustomReportTooltip.d.ts +37 -0
- package/dist/models/CustomReportTooltip.js +52 -0
- package/dist/models/Item.d.ts +1 -1
- package/dist/models/index.d.ts +10 -0
- package/dist/models/index.js +10 -0
- package/package.json +1 -1
- package/src/apis/DatawarehouseApi.ts +456 -0
- package/src/apis/OrderApi.ts +126 -0
- package/src/models/CartUpsellAfter.ts +17 -1
- package/src/models/ConversationVirtualAgentCapabilities.ts +28 -0
- package/src/models/CustomReport.ts +158 -0
- package/src/models/CustomReportAccountConfig.ts +131 -0
- package/src/models/CustomReportAccountConfigResponse.ts +124 -0
- package/src/models/CustomReportExecutionParameter.ts +83 -0
- package/src/models/CustomReportExecutionRequest.ts +74 -0
- package/src/models/CustomReportParameter.ts +114 -0
- package/src/models/CustomReportParameterOption.ts +75 -0
- package/src/models/CustomReportQuery.ts +107 -0
- package/src/models/CustomReportResponse.ts +124 -0
- package/src/models/CustomReportTooltip.ts +75 -0
- package/src/models/Item.ts +1 -1
- package/src/models/index.ts +10 -0
package/.openapi-generator/FILES
CHANGED
|
@@ -329,6 +329,16 @@ src/models/CouponType.ts
|
|
|
329
329
|
src/models/CouponsRequest.ts
|
|
330
330
|
src/models/CouponsResponse.ts
|
|
331
331
|
src/models/Currency.ts
|
|
332
|
+
src/models/CustomReport.ts
|
|
333
|
+
src/models/CustomReportAccountConfig.ts
|
|
334
|
+
src/models/CustomReportAccountConfigResponse.ts
|
|
335
|
+
src/models/CustomReportExecutionParameter.ts
|
|
336
|
+
src/models/CustomReportExecutionRequest.ts
|
|
337
|
+
src/models/CustomReportParameter.ts
|
|
338
|
+
src/models/CustomReportParameterOption.ts
|
|
339
|
+
src/models/CustomReportQuery.ts
|
|
340
|
+
src/models/CustomReportResponse.ts
|
|
341
|
+
src/models/CustomReportTooltip.ts
|
|
332
342
|
src/models/Customer.ts
|
|
333
343
|
src/models/CustomerActivity.ts
|
|
334
344
|
src/models/CustomerAffiliate.ts
|
package/README.md
CHANGED
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
# UltraCart Typescript SDK
|
|
2
|
-
## ultracart_rest_api_v2_typescript@4.1.
|
|
2
|
+
## ultracart_rest_api_v2_typescript@4.1.15
|
|
3
3
|
|
|
4
4
|
Every API method call has a sample for every language SDK. See https://github.com/UltraCart/sdk_samples
|
|
5
5
|
|
|
6
6
|
Installation
|
|
7
7
|
|
|
8
8
|
```
|
|
9
|
-
npm install ultracart_rest_api_v2_typescript@4.1.
|
|
9
|
+
npm install ultracart_rest_api_v2_typescript@4.1.15 --save
|
|
10
10
|
```
|
|
11
11
|
|
|
12
12
|
```typescript
|
|
@@ -72,7 +72,9 @@ export class GetOrder {
|
|
|
72
72
|
// // Do something with the order
|
|
73
73
|
// }
|
|
74
74
|
// });
|
|
75
|
-
|
|
75
|
+
```
|
|
76
|
+
|
|
77
|
+
\n\n
|
|
76
78
|
```
|
|
77
79
|
\n\n
|
|
78
80
|
|
|
@@ -83,6 +85,8 @@ Not every change is committed to every SDK.
|
|
|
83
85
|
|
|
84
86
|
| Version | Date | Comments |
|
|
85
87
|
| --: | :-: | --- |
|
|
88
|
+
| 4.1.15 | 07/28/2025 | new order methods for blocking and unblocking refunds |
|
|
89
|
+
| 4.1.14 | 07/10/2025 | automation test |
|
|
86
90
|
| 4.1.13 | 05/20/2025 | conversation - virtual agent flag and virtual agent cost |
|
|
87
91
|
| 4.1.12 | 05/19/2025 | conversations - AI agent capabilities method |
|
|
88
92
|
| 4.1.11 | 05/19/2025 | conversations - virtual AI budgets |
|
|
@@ -10,16 +10,26 @@
|
|
|
10
10
|
* Do not edit the class manually.
|
|
11
11
|
*/
|
|
12
12
|
import * as runtime from '../runtime';
|
|
13
|
-
import { Report, ReportAuthResponse, ReportDataSetPageResponse, ReportDataSetResponse, ReportDryRunQueriesRequest, ReportDryRunQueriesResponse, ReportExecuteQueriesRequest, ReportResponse, ReportsResponse } from '../models';
|
|
13
|
+
import { CustomReport, CustomReportAccountConfig, CustomReportAccountConfigResponse, CustomReportExecutionRequest, CustomReportResponse, Report, ReportAuthResponse, ReportDataSetPageResponse, ReportDataSetResponse, ReportDryRunQueriesRequest, ReportDryRunQueriesResponse, ReportExecuteQueriesRequest, ReportResponse, ReportsResponse } from '../models';
|
|
14
|
+
export interface DeleteCustomReportRequest {
|
|
15
|
+
customReportOid: number;
|
|
16
|
+
}
|
|
14
17
|
export interface DeleteReportRequest {
|
|
15
18
|
reportOid: number;
|
|
16
19
|
}
|
|
17
20
|
export interface DryRunReportQueriesRequest {
|
|
18
21
|
queryRequest: ReportDryRunQueriesRequest;
|
|
19
22
|
}
|
|
23
|
+
export interface ExecuteCustomReportRequest {
|
|
24
|
+
customReportOid: number;
|
|
25
|
+
executionRequest: CustomReportExecutionRequest;
|
|
26
|
+
}
|
|
20
27
|
export interface ExecuteReportQueriesRequest {
|
|
21
28
|
queryRequest: ReportExecuteQueriesRequest;
|
|
22
29
|
}
|
|
30
|
+
export interface GetCustomReportRequest {
|
|
31
|
+
customReportOid: number;
|
|
32
|
+
}
|
|
23
33
|
export interface GetReportRequest {
|
|
24
34
|
reportOid: number;
|
|
25
35
|
}
|
|
@@ -30,9 +40,19 @@ export interface GetReportDataSetPageRequest {
|
|
|
30
40
|
datasetUuid: string;
|
|
31
41
|
pageNumber: number;
|
|
32
42
|
}
|
|
43
|
+
export interface InsertCustomReportRequest {
|
|
44
|
+
report: CustomReport;
|
|
45
|
+
}
|
|
33
46
|
export interface InsertReportRequest {
|
|
34
47
|
report: Report;
|
|
35
48
|
}
|
|
49
|
+
export interface UpdateCustomReportRequest {
|
|
50
|
+
customReportOid: number;
|
|
51
|
+
report: CustomReport;
|
|
52
|
+
}
|
|
53
|
+
export interface UpdateCustomReportAccountConfigRequest {
|
|
54
|
+
accountConfig: CustomReportAccountConfig;
|
|
55
|
+
}
|
|
36
56
|
export interface UpdateReportRequest {
|
|
37
57
|
reportOid: number;
|
|
38
58
|
report: Report;
|
|
@@ -44,6 +64,20 @@ export interface UpdateReportRequest {
|
|
|
44
64
|
* @interface DatawarehouseApiInterface
|
|
45
65
|
*/
|
|
46
66
|
export interface DatawarehouseApiInterface {
|
|
67
|
+
/**
|
|
68
|
+
* Delete a custom report on the UltraCart account.
|
|
69
|
+
* @summary Delete a custom report
|
|
70
|
+
* @param {number} customReportOid The report oid to delete.
|
|
71
|
+
* @param {*} [options] Override http request option.
|
|
72
|
+
* @throws {RequiredError}
|
|
73
|
+
* @memberof DatawarehouseApiInterface
|
|
74
|
+
*/
|
|
75
|
+
deleteCustomReportRaw(requestParameters: DeleteCustomReportRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<runtime.ApiResponse<void>>;
|
|
76
|
+
/**
|
|
77
|
+
* Delete a custom report on the UltraCart account.
|
|
78
|
+
* Delete a custom report
|
|
79
|
+
*/
|
|
80
|
+
deleteCustomReport(requestParameters: DeleteCustomReportRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<void>;
|
|
47
81
|
/**
|
|
48
82
|
* Delete a report on the UltraCart account.
|
|
49
83
|
* @summary Delete a report
|
|
@@ -72,6 +106,21 @@ export interface DatawarehouseApiInterface {
|
|
|
72
106
|
* Dry run the report queries
|
|
73
107
|
*/
|
|
74
108
|
dryRunReportQueries(requestParameters: DryRunReportQueriesRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<ReportDryRunQueriesResponse>;
|
|
109
|
+
/**
|
|
110
|
+
* Execute a custom report on the UltraCart account.
|
|
111
|
+
* @summary Execute a custom report
|
|
112
|
+
* @param {number} customReportOid The report oid to execute.
|
|
113
|
+
* @param {CustomReportExecutionRequest} executionRequest Request to execute custom report
|
|
114
|
+
* @param {*} [options] Override http request option.
|
|
115
|
+
* @throws {RequiredError}
|
|
116
|
+
* @memberof DatawarehouseApiInterface
|
|
117
|
+
*/
|
|
118
|
+
executeCustomReportRaw(requestParameters: ExecuteCustomReportRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<runtime.ApiResponse<CustomReportResponse>>;
|
|
119
|
+
/**
|
|
120
|
+
* Execute a custom report on the UltraCart account.
|
|
121
|
+
* Execute a custom report
|
|
122
|
+
*/
|
|
123
|
+
executeCustomReport(requestParameters: ExecuteCustomReportRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<CustomReportResponse>;
|
|
75
124
|
/**
|
|
76
125
|
* Execute the report queries
|
|
77
126
|
* @summary Execute the report queries
|
|
@@ -86,6 +135,33 @@ export interface DatawarehouseApiInterface {
|
|
|
86
135
|
* Execute the report queries
|
|
87
136
|
*/
|
|
88
137
|
executeReportQueries(requestParameters: ExecuteReportQueriesRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<void>;
|
|
138
|
+
/**
|
|
139
|
+
* Retrieve a custom report
|
|
140
|
+
* @summary Get a custom report
|
|
141
|
+
* @param {number} customReportOid
|
|
142
|
+
* @param {*} [options] Override http request option.
|
|
143
|
+
* @throws {RequiredError}
|
|
144
|
+
* @memberof DatawarehouseApiInterface
|
|
145
|
+
*/
|
|
146
|
+
getCustomReportRaw(requestParameters: GetCustomReportRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<runtime.ApiResponse<CustomReportResponse>>;
|
|
147
|
+
/**
|
|
148
|
+
* Retrieve a custom report
|
|
149
|
+
* Get a custom report
|
|
150
|
+
*/
|
|
151
|
+
getCustomReport(requestParameters: GetCustomReportRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<CustomReportResponse>;
|
|
152
|
+
/**
|
|
153
|
+
* Retrieve a custom report account configuration
|
|
154
|
+
* @summary Get custom report account configuration
|
|
155
|
+
* @param {*} [options] Override http request option.
|
|
156
|
+
* @throws {RequiredError}
|
|
157
|
+
* @memberof DatawarehouseApiInterface
|
|
158
|
+
*/
|
|
159
|
+
getCustomReportAccountConfigRaw(initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<runtime.ApiResponse<CustomReportAccountConfigResponse>>;
|
|
160
|
+
/**
|
|
161
|
+
* Retrieve a custom report account configuration
|
|
162
|
+
* Get custom report account configuration
|
|
163
|
+
*/
|
|
164
|
+
getCustomReportAccountConfig(initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<CustomReportAccountConfigResponse>;
|
|
89
165
|
/**
|
|
90
166
|
* Retrieve a report
|
|
91
167
|
* @summary Get a report
|
|
@@ -155,6 +231,20 @@ export interface DatawarehouseApiInterface {
|
|
|
155
231
|
* Get list of reports available
|
|
156
232
|
*/
|
|
157
233
|
getReports(initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<ReportsResponse>;
|
|
234
|
+
/**
|
|
235
|
+
* Create a new custom report on the UltraCart account.
|
|
236
|
+
* @summary Create a custom report
|
|
237
|
+
* @param {CustomReport} report Report to create
|
|
238
|
+
* @param {*} [options] Override http request option.
|
|
239
|
+
* @throws {RequiredError}
|
|
240
|
+
* @memberof DatawarehouseApiInterface
|
|
241
|
+
*/
|
|
242
|
+
insertCustomReportRaw(requestParameters: InsertCustomReportRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<runtime.ApiResponse<CustomReportResponse>>;
|
|
243
|
+
/**
|
|
244
|
+
* Create a new custom report on the UltraCart account.
|
|
245
|
+
* Create a custom report
|
|
246
|
+
*/
|
|
247
|
+
insertCustomReport(requestParameters: InsertCustomReportRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<CustomReportResponse>;
|
|
158
248
|
/**
|
|
159
249
|
* Create a new report on the UltraCart account.
|
|
160
250
|
* @summary Create a report
|
|
@@ -169,6 +259,35 @@ export interface DatawarehouseApiInterface {
|
|
|
169
259
|
* Create a report
|
|
170
260
|
*/
|
|
171
261
|
insertReport(requestParameters: InsertReportRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<ReportResponse>;
|
|
262
|
+
/**
|
|
263
|
+
* Update a custom report on the UltraCart account.
|
|
264
|
+
* @summary Update a custom report
|
|
265
|
+
* @param {number} customReportOid The report oid to custom update.
|
|
266
|
+
* @param {CustomReport} report Report to custom update
|
|
267
|
+
* @param {*} [options] Override http request option.
|
|
268
|
+
* @throws {RequiredError}
|
|
269
|
+
* @memberof DatawarehouseApiInterface
|
|
270
|
+
*/
|
|
271
|
+
updateCustomReportRaw(requestParameters: UpdateCustomReportRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<runtime.ApiResponse<CustomReportResponse>>;
|
|
272
|
+
/**
|
|
273
|
+
* Update a custom report on the UltraCart account.
|
|
274
|
+
* Update a custom report
|
|
275
|
+
*/
|
|
276
|
+
updateCustomReport(requestParameters: UpdateCustomReportRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<CustomReportResponse>;
|
|
277
|
+
/**
|
|
278
|
+
* Update custom report account config.
|
|
279
|
+
* @summary Update custom report account config
|
|
280
|
+
* @param {CustomReportAccountConfig} accountConfig Account config to update
|
|
281
|
+
* @param {*} [options] Override http request option.
|
|
282
|
+
* @throws {RequiredError}
|
|
283
|
+
* @memberof DatawarehouseApiInterface
|
|
284
|
+
*/
|
|
285
|
+
updateCustomReportAccountConfigRaw(requestParameters: UpdateCustomReportAccountConfigRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<runtime.ApiResponse<CustomReportAccountConfigResponse>>;
|
|
286
|
+
/**
|
|
287
|
+
* Update custom report account config.
|
|
288
|
+
* Update custom report account config
|
|
289
|
+
*/
|
|
290
|
+
updateCustomReportAccountConfig(requestParameters: UpdateCustomReportAccountConfigRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<CustomReportAccountConfigResponse>;
|
|
172
291
|
/**
|
|
173
292
|
* Update a report on the UltraCart account.
|
|
174
293
|
* @summary Update a report
|
|
@@ -189,6 +308,16 @@ export interface DatawarehouseApiInterface {
|
|
|
189
308
|
*
|
|
190
309
|
*/
|
|
191
310
|
export declare class DatawarehouseApi extends runtime.BaseAPI implements DatawarehouseApiInterface {
|
|
311
|
+
/**
|
|
312
|
+
* Delete a custom report on the UltraCart account.
|
|
313
|
+
* Delete a custom report
|
|
314
|
+
*/
|
|
315
|
+
deleteCustomReportRaw(requestParameters: DeleteCustomReportRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<runtime.ApiResponse<void>>;
|
|
316
|
+
/**
|
|
317
|
+
* Delete a custom report on the UltraCart account.
|
|
318
|
+
* Delete a custom report
|
|
319
|
+
*/
|
|
320
|
+
deleteCustomReport(requestParameters: DeleteCustomReportRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<void>;
|
|
192
321
|
/**
|
|
193
322
|
* Delete a report on the UltraCart account.
|
|
194
323
|
* Delete a report
|
|
@@ -209,6 +338,16 @@ export declare class DatawarehouseApi extends runtime.BaseAPI implements Datawar
|
|
|
209
338
|
* Dry run the report queries
|
|
210
339
|
*/
|
|
211
340
|
dryRunReportQueries(requestParameters: DryRunReportQueriesRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<ReportDryRunQueriesResponse>;
|
|
341
|
+
/**
|
|
342
|
+
* Execute a custom report on the UltraCart account.
|
|
343
|
+
* Execute a custom report
|
|
344
|
+
*/
|
|
345
|
+
executeCustomReportRaw(requestParameters: ExecuteCustomReportRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<runtime.ApiResponse<CustomReportResponse>>;
|
|
346
|
+
/**
|
|
347
|
+
* Execute a custom report on the UltraCart account.
|
|
348
|
+
* Execute a custom report
|
|
349
|
+
*/
|
|
350
|
+
executeCustomReport(requestParameters: ExecuteCustomReportRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<CustomReportResponse>;
|
|
212
351
|
/**
|
|
213
352
|
* Execute the report queries
|
|
214
353
|
* Execute the report queries
|
|
@@ -219,6 +358,26 @@ export declare class DatawarehouseApi extends runtime.BaseAPI implements Datawar
|
|
|
219
358
|
* Execute the report queries
|
|
220
359
|
*/
|
|
221
360
|
executeReportQueries(requestParameters: ExecuteReportQueriesRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<void>;
|
|
361
|
+
/**
|
|
362
|
+
* Retrieve a custom report
|
|
363
|
+
* Get a custom report
|
|
364
|
+
*/
|
|
365
|
+
getCustomReportRaw(requestParameters: GetCustomReportRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<runtime.ApiResponse<CustomReportResponse>>;
|
|
366
|
+
/**
|
|
367
|
+
* Retrieve a custom report
|
|
368
|
+
* Get a custom report
|
|
369
|
+
*/
|
|
370
|
+
getCustomReport(requestParameters: GetCustomReportRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<CustomReportResponse>;
|
|
371
|
+
/**
|
|
372
|
+
* Retrieve a custom report account configuration
|
|
373
|
+
* Get custom report account configuration
|
|
374
|
+
*/
|
|
375
|
+
getCustomReportAccountConfigRaw(initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<runtime.ApiResponse<CustomReportAccountConfigResponse>>;
|
|
376
|
+
/**
|
|
377
|
+
* Retrieve a custom report account configuration
|
|
378
|
+
* Get custom report account configuration
|
|
379
|
+
*/
|
|
380
|
+
getCustomReportAccountConfig(initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<CustomReportAccountConfigResponse>;
|
|
222
381
|
/**
|
|
223
382
|
* Retrieve a report
|
|
224
383
|
* Get a report
|
|
@@ -269,6 +428,16 @@ export declare class DatawarehouseApi extends runtime.BaseAPI implements Datawar
|
|
|
269
428
|
* Get list of reports available
|
|
270
429
|
*/
|
|
271
430
|
getReports(initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<ReportsResponse>;
|
|
431
|
+
/**
|
|
432
|
+
* Create a new custom report on the UltraCart account.
|
|
433
|
+
* Create a custom report
|
|
434
|
+
*/
|
|
435
|
+
insertCustomReportRaw(requestParameters: InsertCustomReportRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<runtime.ApiResponse<CustomReportResponse>>;
|
|
436
|
+
/**
|
|
437
|
+
* Create a new custom report on the UltraCart account.
|
|
438
|
+
* Create a custom report
|
|
439
|
+
*/
|
|
440
|
+
insertCustomReport(requestParameters: InsertCustomReportRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<CustomReportResponse>;
|
|
272
441
|
/**
|
|
273
442
|
* Create a new report on the UltraCart account.
|
|
274
443
|
* Create a report
|
|
@@ -279,6 +448,26 @@ export declare class DatawarehouseApi extends runtime.BaseAPI implements Datawar
|
|
|
279
448
|
* Create a report
|
|
280
449
|
*/
|
|
281
450
|
insertReport(requestParameters: InsertReportRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<ReportResponse>;
|
|
451
|
+
/**
|
|
452
|
+
* Update a custom report on the UltraCart account.
|
|
453
|
+
* Update a custom report
|
|
454
|
+
*/
|
|
455
|
+
updateCustomReportRaw(requestParameters: UpdateCustomReportRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<runtime.ApiResponse<CustomReportResponse>>;
|
|
456
|
+
/**
|
|
457
|
+
* Update a custom report on the UltraCart account.
|
|
458
|
+
* Update a custom report
|
|
459
|
+
*/
|
|
460
|
+
updateCustomReport(requestParameters: UpdateCustomReportRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<CustomReportResponse>;
|
|
461
|
+
/**
|
|
462
|
+
* Update custom report account config.
|
|
463
|
+
* Update custom report account config
|
|
464
|
+
*/
|
|
465
|
+
updateCustomReportAccountConfigRaw(requestParameters: UpdateCustomReportAccountConfigRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<runtime.ApiResponse<CustomReportAccountConfigResponse>>;
|
|
466
|
+
/**
|
|
467
|
+
* Update custom report account config.
|
|
468
|
+
* Update custom report account config
|
|
469
|
+
*/
|
|
470
|
+
updateCustomReportAccountConfig(requestParameters: UpdateCustomReportAccountConfigRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<CustomReportAccountConfigResponse>;
|
|
282
471
|
/**
|
|
283
472
|
* Update a report on the UltraCart account.
|
|
284
473
|
* Update a report
|