@whiplashmerch/whiplash-api-client 0.4.76 → 0.4.78
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/dist/client.esm.js +18494 -2141
- package/dist/client.esm.js.map +1 -1
- package/dist/constants/index.d.ts +1 -0
- package/dist/constants/search.d.ts +9 -0
- package/dist/generated/AccountTransactions.d.ts +56 -0
- package/dist/generated/Accounts.d.ts +171 -0
- package/dist/generated/Allocations.d.ts +38 -0
- package/dist/generated/Broadcasts.d.ts +164 -0
- package/dist/generated/Cache.d.ts +56 -0
- package/dist/generated/CarrierAccounts.d.ts +191 -0
- package/dist/generated/Carriers.d.ts +20 -0
- package/dist/generated/Chromalists.d.ts +56 -0
- package/dist/generated/ConsumerReturns.d.ts +89 -1
- package/dist/generated/Currencies.d.ts +56 -0
- package/dist/generated/Customers.d.ts +172 -1
- package/dist/generated/CustomsInfos.d.ts +56 -0
- package/dist/generated/Dashboards.d.ts +38 -0
- package/dist/generated/Documents.d.ts +37 -1
- package/dist/generated/ExtApp.d.ts +30 -0
- package/dist/generated/FilterSets.d.ts +288 -0
- package/dist/generated/ImporterOfRecords.d.ts +92 -0
- package/dist/generated/Incidents.d.ts +128 -0
- package/dist/generated/InvoiceItems.d.ts +56 -0
- package/dist/generated/Invoices.d.ts +110 -0
- package/dist/generated/Items.d.ts +260 -1
- package/dist/generated/Locales.d.ts +19 -0
- package/dist/generated/LocationAdjustments.d.ts +65 -0
- package/dist/generated/LocationAudits.d.ts +162 -0
- package/dist/generated/LocationTransfers.d.ts +162 -0
- package/dist/generated/Locations.d.ts +207 -0
- package/dist/generated/Lots.d.ts +119 -0
- package/dist/generated/Manifests.d.ts +128 -0
- package/dist/generated/Me.d.ts +20 -0
- package/dist/generated/Nav.d.ts +20 -0
- package/dist/generated/NavItems.d.ts +20 -0
- package/dist/generated/OrderBatchItems.d.ts +54 -0
- package/dist/generated/OrderBatchRequests.d.ts +38 -0
- package/dist/generated/OrderBatches.d.ts +315 -0
- package/dist/generated/OrderDocuments.d.ts +37 -0
- package/dist/generated/OrderItems.d.ts +98 -1
- package/dist/generated/OrderTotes.d.ts +20 -0
- package/dist/generated/Orders.d.ts +468 -1
- package/dist/generated/Originators.d.ts +28 -1
- package/dist/generated/Packages.d.ts +205 -0
- package/dist/generated/Partners.d.ts +110 -0
- package/dist/generated/Prepacks.d.ts +11 -0
- package/dist/generated/ProjectTasks.d.ts +56 -0
- package/dist/generated/Projects.d.ts +163 -1
- package/dist/generated/Rates.d.ts +119 -0
- package/dist/generated/ReasonCodes.d.ts +20 -0
- package/dist/generated/ReturnAddresses.d.ts +92 -0
- package/dist/generated/RuleDismissals.d.ts +19 -0
- package/dist/generated/Rules.d.ts +155 -0
- package/dist/generated/Scancodes.d.ts +20 -0
- package/dist/generated/SerialNumbers.d.ts +56 -0
- package/dist/generated/ShipnoticeItems.d.ts +197 -1
- package/dist/generated/Shipnotices.d.ts +242 -1
- package/dist/generated/ShippingAliases.d.ts +119 -0
- package/dist/generated/ShippingBlacklistedMethods.d.ts +110 -0
- package/dist/generated/ShippingMethodMarkups.d.ts +11 -0
- package/dist/generated/ShippingMethods.d.ts +110 -0
- package/dist/generated/Shops.d.ts +47 -0
- package/dist/generated/Stats.d.ts +54 -0
- package/dist/generated/SurchargeMarkups.d.ts +56 -0
- package/dist/generated/TemplateTypes.d.ts +20 -0
- package/dist/generated/Templates.d.ts +82 -1
- package/dist/generated/Transactions.d.ts +11 -0
- package/dist/generated/TransportationMarkups.d.ts +56 -0
- package/dist/generated/Users.d.ts +245 -0
- package/dist/generated/Utilities.d.ts +38 -0
- package/dist/generated/WarehouseFeatures.d.ts +110 -0
- package/dist/generated/Warehouses.d.ts +245 -0
- package/dist/generated/Wholesales.d.ts +56 -0
- package/dist/generated/data-contracts.d.ts +20237 -4725
- package/dist/generated/index.d.ts +57 -0
- package/dist/index.d.ts +3 -0
- package/dist/mocks/customer.d.ts +2 -0
- package/dist/mocks/index.d.ts +4 -0
- package/dist/mocks/nav.d.ts +2 -0
- package/dist/mocks/user.d.ts +2 -0
- package/dist/mocks/warehouse.d.ts +2 -0
- package/dist/utils/errorHandler.d.ts +2 -0
- package/dist/utils/index.d.ts +9 -0
- package/dist/utils/nav.d.ts +9 -0
- package/dist/utils/orderBatch.d.ts +19 -0
- package/dist/utils/orders.d.ts +54 -0
- package/dist/utils/pusher.d.ts +25 -0
- package/dist/utils/rules.d.ts +8 -0
- package/dist/utils/user.d.ts +19 -0
- package/dist/utils/utilities.d.ts +8 -0
- package/dist/utils/warehouse.d.ts +26 -0
- package/package.json +1 -1
|
@@ -0,0 +1,47 @@
|
|
|
1
|
+
import { APIV2EntitiesAudits, APIV2EntitiesMetaFields, GetApiV21ShopsIdMetaFieldsParams, GetApiV2ShopsIdMetaFieldsParams, PutApiV21ShopsIdMetaFields, PutApiV2ShopsIdMetaFields } from "./data-contracts";
|
|
2
|
+
import { HttpClient, RequestParams } from "./http-client";
|
|
3
|
+
/**
|
|
4
|
+
* No description
|
|
5
|
+
*
|
|
6
|
+
* @tags shops
|
|
7
|
+
* @name GetApiV2ShopsIdAudits
|
|
8
|
+
* @summary Retrieve audit info for users
|
|
9
|
+
* @request GET:/api/v2/shops/{id}/audits
|
|
10
|
+
*/
|
|
11
|
+
export declare const getApiV2ShopsIdAudits: (client: HttpClient, id: number, params?: RequestParams) => Promise<APIV2EntitiesAudits>;
|
|
12
|
+
/**
|
|
13
|
+
* @description Get the meta fields for a(n) Shop
|
|
14
|
+
*
|
|
15
|
+
* @tags shops
|
|
16
|
+
* @name GetApiV2ShopsIdMetaFields
|
|
17
|
+
* @summary List all Meta Fields
|
|
18
|
+
* @request GET:/api/v2/shops/{id}/meta_fields
|
|
19
|
+
*/
|
|
20
|
+
export declare const getApiV2ShopsIdMetaFields: (client: HttpClient, { id, ...query }: GetApiV2ShopsIdMetaFieldsParams, params?: RequestParams) => Promise<APIV2EntitiesMetaFields>;
|
|
21
|
+
/**
|
|
22
|
+
* @description Because you can also set Meta Fields for child resources, this update is performed in the background. You'll receive an error if validation fails; otherwise, you can assume that the job will process correctly and update shortly.
|
|
23
|
+
*
|
|
24
|
+
* @tags shops
|
|
25
|
+
* @name PutApiV2ShopsIdMetaFields
|
|
26
|
+
* @summary Set Meta Fields
|
|
27
|
+
* @request PUT:/api/v2/shops/{id}/meta_fields
|
|
28
|
+
*/
|
|
29
|
+
export declare const putApiV2ShopsIdMetaFields: (client: HttpClient, id: number, putApiV2ShopsIdMetaFields: PutApiV2ShopsIdMetaFields, params?: RequestParams) => Promise<void>;
|
|
30
|
+
/**
|
|
31
|
+
* @description Get the meta fields for a(n) Shop
|
|
32
|
+
*
|
|
33
|
+
* @tags shops
|
|
34
|
+
* @name GetApiV21ShopsIdMetaFields
|
|
35
|
+
* @summary List all Meta Fields
|
|
36
|
+
* @request GET:/api/v2.1/shops/{id}/meta_fields
|
|
37
|
+
*/
|
|
38
|
+
export declare const getApiV21ShopsIdMetaFields: (client: HttpClient, { id, ...query }: GetApiV21ShopsIdMetaFieldsParams, params?: RequestParams) => Promise<APIV2EntitiesMetaFields>;
|
|
39
|
+
/**
|
|
40
|
+
* @description Because you can also set Meta Fields for child resources, this update is performed in the background. You'll receive an error if validation fails; otherwise, you can assume that the job will process correctly and update shortly.
|
|
41
|
+
*
|
|
42
|
+
* @tags shops
|
|
43
|
+
* @name PutApiV21ShopsIdMetaFields
|
|
44
|
+
* @summary Set Meta Fields
|
|
45
|
+
* @request PUT:/api/v2.1/shops/{id}/meta_fields
|
|
46
|
+
*/
|
|
47
|
+
export declare const putApiV21ShopsIdMetaFields: (client: HttpClient, id: number, putApiV21ShopsIdMetaFields: PutApiV21ShopsIdMetaFields, params?: RequestParams) => Promise<void>;
|
|
@@ -0,0 +1,54 @@
|
|
|
1
|
+
import { APIV2EntitiesSidekiqBatchStatus } from "./data-contracts";
|
|
2
|
+
import { HttpClient, RequestParams } from "./http-client";
|
|
3
|
+
/**
|
|
4
|
+
* @description Get sidekiq info
|
|
5
|
+
*
|
|
6
|
+
* @tags stats
|
|
7
|
+
* @name GetApiV2StatsSidekiq
|
|
8
|
+
* @summary Retrieve sidekiq info
|
|
9
|
+
* @request GET:/api/v2/stats/sidekiq
|
|
10
|
+
*/
|
|
11
|
+
export declare const getApiV2StatsSidekiq: (client: HttpClient, params?: RequestParams) => Promise<void>;
|
|
12
|
+
/**
|
|
13
|
+
* @description Get queue info by queue name
|
|
14
|
+
*
|
|
15
|
+
* @tags stats
|
|
16
|
+
* @name GetApiV2StatsSidekiqName
|
|
17
|
+
* @summary Retrieve queue info by queue name
|
|
18
|
+
* @request GET:/api/v2/stats/sidekiq/{name}
|
|
19
|
+
*/
|
|
20
|
+
export declare const getApiV2StatsSidekiqName: (client: HttpClient, name: number, params?: RequestParams) => Promise<void>;
|
|
21
|
+
/**
|
|
22
|
+
* @description Returns the details of a sidekiq batch
|
|
23
|
+
*
|
|
24
|
+
* @tags stats
|
|
25
|
+
* @name GetApiV2StatsSidekiqBatchStatusId
|
|
26
|
+
* @request GET:/api/v2/stats/sidekiq/batch_status/{id}
|
|
27
|
+
*/
|
|
28
|
+
export declare const getApiV2StatsSidekiqBatchStatusId: (client: HttpClient, id: string, params?: RequestParams) => Promise<APIV2EntitiesSidekiqBatchStatus>;
|
|
29
|
+
/**
|
|
30
|
+
* @description Get sidekiq info
|
|
31
|
+
*
|
|
32
|
+
* @tags stats
|
|
33
|
+
* @name GetApiV21StatsSidekiq
|
|
34
|
+
* @summary Retrieve sidekiq info
|
|
35
|
+
* @request GET:/api/v2.1/stats/sidekiq
|
|
36
|
+
*/
|
|
37
|
+
export declare const getApiV21StatsSidekiq: (client: HttpClient, params?: RequestParams) => Promise<void>;
|
|
38
|
+
/**
|
|
39
|
+
* @description Get queue info by queue name
|
|
40
|
+
*
|
|
41
|
+
* @tags stats
|
|
42
|
+
* @name GetApiV21StatsSidekiqName
|
|
43
|
+
* @summary Retrieve queue info by queue name
|
|
44
|
+
* @request GET:/api/v2.1/stats/sidekiq/{name}
|
|
45
|
+
*/
|
|
46
|
+
export declare const getApiV21StatsSidekiqName: (client: HttpClient, name: number, params?: RequestParams) => Promise<void>;
|
|
47
|
+
/**
|
|
48
|
+
* @description Returns the details of a sidekiq batch
|
|
49
|
+
*
|
|
50
|
+
* @tags stats
|
|
51
|
+
* @name GetApiV21StatsSidekiqBatchStatusId
|
|
52
|
+
* @request GET:/api/v2.1/stats/sidekiq/batch_status/{id}
|
|
53
|
+
*/
|
|
54
|
+
export declare const getApiV21StatsSidekiqBatchStatusId: (client: HttpClient, id: string, params?: RequestParams) => Promise<APIV2EntitiesSidekiqBatchStatus>;
|
|
@@ -0,0 +1,56 @@
|
|
|
1
|
+
import { APIV2EntitiesCount, APIV2EntitiesSurchargeMarkup, GetApiV2SurchargeMarkupsCountParams, GetApiV2SurchargeMarkupsParams, PostApiV2SurchargeMarkups, PutApiV2SurchargeMarkupsId } from "./data-contracts";
|
|
2
|
+
import { HttpClient, RequestParams } from "./http-client";
|
|
3
|
+
/**
|
|
4
|
+
* @description Get all surcharge_markups
|
|
5
|
+
*
|
|
6
|
+
* @tags surcharge_markups
|
|
7
|
+
* @name GetApiV2SurchargeMarkups
|
|
8
|
+
* @summary List all surcharge markups
|
|
9
|
+
* @request GET:/api/v2/surcharge_markups
|
|
10
|
+
*/
|
|
11
|
+
export declare const getApiV2SurchargeMarkups: (client: HttpClient, query: GetApiV2SurchargeMarkupsParams, params?: RequestParams) => Promise<APIV2EntitiesSurchargeMarkup[]>;
|
|
12
|
+
/**
|
|
13
|
+
* @description Create a surcharge_markup
|
|
14
|
+
*
|
|
15
|
+
* @tags surcharge_markups
|
|
16
|
+
* @name PostApiV2SurchargeMarkups
|
|
17
|
+
* @summary Create a surcharge markup
|
|
18
|
+
* @request POST:/api/v2/surcharge_markups
|
|
19
|
+
*/
|
|
20
|
+
export declare const postApiV2SurchargeMarkups: (client: HttpClient, postApiV2SurchargeMarkups: PostApiV2SurchargeMarkups, params?: RequestParams) => Promise<APIV2EntitiesSurchargeMarkup>;
|
|
21
|
+
/**
|
|
22
|
+
* @description Returns count of surcharge_markups
|
|
23
|
+
*
|
|
24
|
+
* @tags surcharge_markups
|
|
25
|
+
* @name GetApiV2SurchargeMarkupsCount
|
|
26
|
+
* @summary Count surcharge markups
|
|
27
|
+
* @request GET:/api/v2/surcharge_markups/count
|
|
28
|
+
*/
|
|
29
|
+
export declare const getApiV2SurchargeMarkupsCount: (client: HttpClient, query: GetApiV2SurchargeMarkupsCountParams, params?: RequestParams) => Promise<APIV2EntitiesCount>;
|
|
30
|
+
/**
|
|
31
|
+
* @description Get a SurchargeMarkup
|
|
32
|
+
*
|
|
33
|
+
* @tags surcharge_markups
|
|
34
|
+
* @name GetApiV2SurchargeMarkupsId
|
|
35
|
+
* @summary Retrieve a surcharge markup
|
|
36
|
+
* @request GET:/api/v2/surcharge_markups/{id}
|
|
37
|
+
*/
|
|
38
|
+
export declare const getApiV2SurchargeMarkupsId: (client: HttpClient, id: number, params?: RequestParams) => Promise<APIV2EntitiesSurchargeMarkup>;
|
|
39
|
+
/**
|
|
40
|
+
* No description
|
|
41
|
+
*
|
|
42
|
+
* @tags surcharge_markups
|
|
43
|
+
* @name PutApiV2SurchargeMarkupsId
|
|
44
|
+
* @summary Update a surcharge markup
|
|
45
|
+
* @request PUT:/api/v2/surcharge_markups/{id}
|
|
46
|
+
*/
|
|
47
|
+
export declare const putApiV2SurchargeMarkupsId: (client: HttpClient, id: number, putApiV2SurchargeMarkupsId: PutApiV2SurchargeMarkupsId, params?: RequestParams) => Promise<APIV2EntitiesSurchargeMarkup>;
|
|
48
|
+
/**
|
|
49
|
+
* No description
|
|
50
|
+
*
|
|
51
|
+
* @tags surcharge_markups
|
|
52
|
+
* @name DeleteApiV2SurchargeMarkupsId
|
|
53
|
+
* @summary Destroy a surcharge markup
|
|
54
|
+
* @request DELETE:/api/v2/surcharge_markups/{id}
|
|
55
|
+
*/
|
|
56
|
+
export declare const deleteApiV2SurchargeMarkupsId: (client: HttpClient, id: number, params?: RequestParams) => Promise<void>;
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
import { APIV2EntitiesTemplateType, GetApiV21TemplateTypesParams, GetApiV2TemplateTypesParams } from "./data-contracts";
|
|
2
|
+
import { HttpClient, RequestParams } from "./http-client";
|
|
3
|
+
/**
|
|
4
|
+
* @description Get a list of template_types
|
|
5
|
+
*
|
|
6
|
+
* @tags template_types
|
|
7
|
+
* @name GetApiV2TemplateTypes
|
|
8
|
+
* @summary List all template types
|
|
9
|
+
* @request GET:/api/v2/template_types
|
|
10
|
+
*/
|
|
11
|
+
export declare const getApiV2TemplateTypes: (client: HttpClient, query: GetApiV2TemplateTypesParams, params?: RequestParams) => Promise<APIV2EntitiesTemplateType[]>;
|
|
12
|
+
/**
|
|
13
|
+
* @description Get a list of template_types
|
|
14
|
+
*
|
|
15
|
+
* @tags template_types
|
|
16
|
+
* @name GetApiV21TemplateTypes
|
|
17
|
+
* @summary List all template types
|
|
18
|
+
* @request GET:/api/v2.1/template_types
|
|
19
|
+
*/
|
|
20
|
+
export declare const getApiV21TemplateTypes: (client: HttpClient, query: GetApiV21TemplateTypesParams, params?: RequestParams) => Promise<APIV2EntitiesTemplateType[]>;
|
|
@@ -1,5 +1,14 @@
|
|
|
1
|
-
import { APIV21EntitiesPostResponse, APIV21EntitiesTemplate, APIV2EntitiesTemplate, GetApiV21TemplatesParams, GetApiV2TemplatesParams, PostApiV21Templates, PostApiV2Templates, PutApiV21TemplatesId, PutApiV2TemplatesId } from "./data-contracts";
|
|
1
|
+
import { APIV21EntitiesPostResponse, APIV21EntitiesTemplate, APIV2EntitiesAudits, APIV2EntitiesRenderedTemplate, APIV2EntitiesSidekiqBatch, APIV2EntitiesTemplate, GetApiV21TemplatesIdRenderResourceIdParams, GetApiV21TemplatesParams, GetApiV21TemplatesRenderTypeTemplateTypeSlugResourceIdParams, GetApiV2TemplatesIdRenderResourceIdParams, GetApiV2TemplatesParams, GetApiV2TemplatesRenderTypeTemplateTypeSlugResourceIdParams, PostApiV21Templates, PostApiV2Templates, PutApiV21TemplatesId, PutApiV21TemplatesIdCallAction, PutApiV21TemplatesIdCallAsyncAction, PutApiV2TemplatesId, PutApiV2TemplatesIdCallAction, PutApiV2TemplatesIdCallAsyncAction } from "./data-contracts";
|
|
2
2
|
import { HttpClient, RequestParams } from "./http-client";
|
|
3
|
+
/**
|
|
4
|
+
* No description
|
|
5
|
+
*
|
|
6
|
+
* @tags templates
|
|
7
|
+
* @name GetApiV2TemplatesIdAudits
|
|
8
|
+
* @summary Retrieve audit info for users
|
|
9
|
+
* @request GET:/api/v2/templates/{id}/audits
|
|
10
|
+
*/
|
|
11
|
+
export declare const getApiV2TemplatesIdAudits: (client: HttpClient, id: number, params?: RequestParams) => Promise<APIV2EntitiesAudits>;
|
|
3
12
|
/**
|
|
4
13
|
* No description
|
|
5
14
|
*
|
|
@@ -45,6 +54,42 @@ export declare const getApiV2Templates: (client: HttpClient, query: GetApiV2Temp
|
|
|
45
54
|
* @request POST:/api/v2/templates
|
|
46
55
|
*/
|
|
47
56
|
export declare const postApiV2Templates: (client: HttpClient, postApiV2Templates: PostApiV2Templates, params?: RequestParams) => Promise<APIV2EntitiesTemplate>;
|
|
57
|
+
/**
|
|
58
|
+
* No description
|
|
59
|
+
*
|
|
60
|
+
* @tags templates
|
|
61
|
+
* @name GetApiV2TemplatesRenderTypeTemplateTypeSlugResourceId
|
|
62
|
+
* @summary Render template(s) of a specified type for a given resource
|
|
63
|
+
* @request GET:/api/v2/templates/render_type/{template_type_slug}/{resource_id}
|
|
64
|
+
*/
|
|
65
|
+
export declare const getApiV2TemplatesRenderTypeTemplateTypeSlugResourceId: (client: HttpClient, { templateTypeSlug, resourceId, ...query }: GetApiV2TemplatesRenderTypeTemplateTypeSlugResourceIdParams, params?: RequestParams) => Promise<APIV2EntitiesRenderedTemplate[]>;
|
|
66
|
+
/**
|
|
67
|
+
* No description
|
|
68
|
+
*
|
|
69
|
+
* @tags templates
|
|
70
|
+
* @name PutApiV2TemplatesIdCallAction
|
|
71
|
+
* @summary Perform an action on a template
|
|
72
|
+
* @request PUT:/api/v2/templates/{id}/call/{action}
|
|
73
|
+
*/
|
|
74
|
+
export declare const putApiV2TemplatesIdCallAction: (client: HttpClient, action: string, id: number, putApiV2TemplatesIdCallAction: PutApiV2TemplatesIdCallAction, params?: RequestParams) => Promise<APIV2EntitiesTemplate>;
|
|
75
|
+
/**
|
|
76
|
+
* No description
|
|
77
|
+
*
|
|
78
|
+
* @tags templates
|
|
79
|
+
* @name PutApiV2TemplatesIdCallAsyncAction
|
|
80
|
+
* @summary Perform an action on a template asynchronously
|
|
81
|
+
* @request PUT:/api/v2/templates/{id}/call_async/{action}
|
|
82
|
+
*/
|
|
83
|
+
export declare const putApiV2TemplatesIdCallAsyncAction: (client: HttpClient, action: string, id: number, putApiV2TemplatesIdCallAsyncAction: PutApiV2TemplatesIdCallAsyncAction, params?: RequestParams) => Promise<APIV2EntitiesSidekiqBatch>;
|
|
84
|
+
/**
|
|
85
|
+
* @description Given a specified template and resource, render
|
|
86
|
+
*
|
|
87
|
+
* @tags templates
|
|
88
|
+
* @name GetApiV2TemplatesIdRenderResourceId
|
|
89
|
+
* @summary Render a template
|
|
90
|
+
* @request GET:/api/v2/templates/{id}/render/{resource_id}
|
|
91
|
+
*/
|
|
92
|
+
export declare const getApiV2TemplatesIdRenderResourceId: (client: HttpClient, { id, resourceId, ...query }: GetApiV2TemplatesIdRenderResourceIdParams, params?: RequestParams) => Promise<APIV2EntitiesRenderedTemplate>;
|
|
48
93
|
/**
|
|
49
94
|
* No description
|
|
50
95
|
*
|
|
@@ -63,6 +108,15 @@ export declare const getApiV21Templates: (client: HttpClient, query: GetApiV21Te
|
|
|
63
108
|
* @request POST:/api/v2.1/templates
|
|
64
109
|
*/
|
|
65
110
|
export declare const postApiV21Templates: (client: HttpClient, postApiV21Templates: PostApiV21Templates, params?: RequestParams) => Promise<APIV21EntitiesPostResponse>;
|
|
111
|
+
/**
|
|
112
|
+
* No description
|
|
113
|
+
*
|
|
114
|
+
* @tags templates
|
|
115
|
+
* @name GetApiV21TemplatesRenderTypeTemplateTypeSlugResourceId
|
|
116
|
+
* @summary Render template(s) of a specified type for a given resource
|
|
117
|
+
* @request GET:/api/v2.1/templates/render_type/{template_type_slug}/{resource_id}
|
|
118
|
+
*/
|
|
119
|
+
export declare const getApiV21TemplatesRenderTypeTemplateTypeSlugResourceId: (client: HttpClient, { templateTypeSlug, resourceId, ...query }: GetApiV21TemplatesRenderTypeTemplateTypeSlugResourceIdParams, params?: RequestParams) => Promise<APIV2EntitiesRenderedTemplate[]>;
|
|
66
120
|
/**
|
|
67
121
|
* No description
|
|
68
122
|
*
|
|
@@ -90,3 +144,30 @@ export declare const putApiV21TemplatesId: (client: HttpClient, id: number, putA
|
|
|
90
144
|
* @request DELETE:/api/v2.1/templates/{id}
|
|
91
145
|
*/
|
|
92
146
|
export declare const deleteApiV21TemplatesId: (client: HttpClient, id: number, params?: RequestParams) => Promise<APIV2EntitiesTemplate>;
|
|
147
|
+
/**
|
|
148
|
+
* No description
|
|
149
|
+
*
|
|
150
|
+
* @tags templates
|
|
151
|
+
* @name PutApiV21TemplatesIdCallAction
|
|
152
|
+
* @summary Perform an action on a template
|
|
153
|
+
* @request PUT:/api/v2.1/templates/{id}/call/{action}
|
|
154
|
+
*/
|
|
155
|
+
export declare const putApiV21TemplatesIdCallAction: (client: HttpClient, action: string, id: number, putApiV21TemplatesIdCallAction: PutApiV21TemplatesIdCallAction, params?: RequestParams) => Promise<void>;
|
|
156
|
+
/**
|
|
157
|
+
* No description
|
|
158
|
+
*
|
|
159
|
+
* @tags templates
|
|
160
|
+
* @name PutApiV21TemplatesIdCallAsyncAction
|
|
161
|
+
* @summary Perform an action on a template asynchronously
|
|
162
|
+
* @request PUT:/api/v2.1/templates/{id}/call_async/{action}
|
|
163
|
+
*/
|
|
164
|
+
export declare const putApiV21TemplatesIdCallAsyncAction: (client: HttpClient, action: string, id: number, putApiV21TemplatesIdCallAsyncAction: PutApiV21TemplatesIdCallAsyncAction, params?: RequestParams) => Promise<void>;
|
|
165
|
+
/**
|
|
166
|
+
* @description Given a specified template and resource, render
|
|
167
|
+
*
|
|
168
|
+
* @tags templates
|
|
169
|
+
* @name GetApiV21TemplatesIdRenderResourceId
|
|
170
|
+
* @summary Render a template
|
|
171
|
+
* @request GET:/api/v2.1/templates/{id}/render/{resource_id}
|
|
172
|
+
*/
|
|
173
|
+
export declare const getApiV21TemplatesIdRenderResourceId: (client: HttpClient, { id, resourceId, ...query }: GetApiV21TemplatesIdRenderResourceIdParams, params?: RequestParams) => Promise<APIV2EntitiesRenderedTemplate>;
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import { APIV2EntitiesAudits } from "./data-contracts";
|
|
2
|
+
import { HttpClient, RequestParams } from "./http-client";
|
|
3
|
+
/**
|
|
4
|
+
* No description
|
|
5
|
+
*
|
|
6
|
+
* @tags transactions
|
|
7
|
+
* @name GetApiV2TransactionsIdAudits
|
|
8
|
+
* @summary Retrieve audit info for users
|
|
9
|
+
* @request GET:/api/v2/transactions/{id}/audits
|
|
10
|
+
*/
|
|
11
|
+
export declare const getApiV2TransactionsIdAudits: (client: HttpClient, id: number, params?: RequestParams) => Promise<APIV2EntitiesAudits>;
|
|
@@ -0,0 +1,56 @@
|
|
|
1
|
+
import { APIV2EntitiesCount, APIV2EntitiesTransportationMarkup, GetApiV2TransportationMarkupsCountParams, GetApiV2TransportationMarkupsParams, PostApiV2TransportationMarkups, PutApiV2TransportationMarkupsId } from "./data-contracts";
|
|
2
|
+
import { HttpClient, RequestParams } from "./http-client";
|
|
3
|
+
/**
|
|
4
|
+
* No description
|
|
5
|
+
*
|
|
6
|
+
* @tags transportation_markups
|
|
7
|
+
* @name GetApiV2TransportationMarkups
|
|
8
|
+
* @summary List all transportation markups
|
|
9
|
+
* @request GET:/api/v2/transportation_markups
|
|
10
|
+
*/
|
|
11
|
+
export declare const getApiV2TransportationMarkups: (client: HttpClient, query: GetApiV2TransportationMarkupsParams, params?: RequestParams) => Promise<APIV2EntitiesTransportationMarkup[]>;
|
|
12
|
+
/**
|
|
13
|
+
* No description
|
|
14
|
+
*
|
|
15
|
+
* @tags transportation_markups
|
|
16
|
+
* @name PostApiV2TransportationMarkups
|
|
17
|
+
* @summary Create a transportation markup
|
|
18
|
+
* @request POST:/api/v2/transportation_markups
|
|
19
|
+
*/
|
|
20
|
+
export declare const postApiV2TransportationMarkups: (client: HttpClient, postApiV2TransportationMarkups: PostApiV2TransportationMarkups, params?: RequestParams) => Promise<APIV2EntitiesTransportationMarkup>;
|
|
21
|
+
/**
|
|
22
|
+
* No description
|
|
23
|
+
*
|
|
24
|
+
* @tags transportation_markups
|
|
25
|
+
* @name GetApiV2TransportationMarkupsCount
|
|
26
|
+
* @summary Count transportation markups
|
|
27
|
+
* @request GET:/api/v2/transportation_markups/count
|
|
28
|
+
*/
|
|
29
|
+
export declare const getApiV2TransportationMarkupsCount: (client: HttpClient, query: GetApiV2TransportationMarkupsCountParams, params?: RequestParams) => Promise<APIV2EntitiesCount>;
|
|
30
|
+
/**
|
|
31
|
+
* No description
|
|
32
|
+
*
|
|
33
|
+
* @tags transportation_markups
|
|
34
|
+
* @name GetApiV2TransportationMarkupsId
|
|
35
|
+
* @summary Retrieve a transportation markup
|
|
36
|
+
* @request GET:/api/v2/transportation_markups/{id}
|
|
37
|
+
*/
|
|
38
|
+
export declare const getApiV2TransportationMarkupsId: (client: HttpClient, id: number, params?: RequestParams) => Promise<APIV2EntitiesTransportationMarkup>;
|
|
39
|
+
/**
|
|
40
|
+
* No description
|
|
41
|
+
*
|
|
42
|
+
* @tags transportation_markups
|
|
43
|
+
* @name PutApiV2TransportationMarkupsId
|
|
44
|
+
* @summary Update a transportation markup
|
|
45
|
+
* @request PUT:/api/v2/transportation_markups/{id}
|
|
46
|
+
*/
|
|
47
|
+
export declare const putApiV2TransportationMarkupsId: (client: HttpClient, id: number, putApiV2TransportationMarkupsId: PutApiV2TransportationMarkupsId, params?: RequestParams) => Promise<APIV2EntitiesTransportationMarkup>;
|
|
48
|
+
/**
|
|
49
|
+
* No description
|
|
50
|
+
*
|
|
51
|
+
* @tags transportation_markups
|
|
52
|
+
* @name DeleteApiV2TransportationMarkupsId
|
|
53
|
+
* @summary Destroy a transportation markup
|
|
54
|
+
* @request DELETE:/api/v2/transportation_markups/{id}
|
|
55
|
+
*/
|
|
56
|
+
export declare const deleteApiV2TransportationMarkupsId: (client: HttpClient, id: number, params?: RequestParams) => Promise<void>;
|
|
@@ -0,0 +1,245 @@
|
|
|
1
|
+
import { APIV21EntitiesPostResponse, APIV21EntitiesUser, APIV2EntitiesAudits, APIV2EntitiesCount, APIV2EntitiesResult, APIV2EntitiesUser, GetApiV21UsersCountParams, GetApiV21UsersIdCallTraitParams, GetApiV21UsersIdTraitsParams, GetApiV21UsersJwtParams, GetApiV21UsersParams, GetApiV2UsersCountParams, GetApiV2UsersIdCallTraitParams, GetApiV2UsersIdTraitsParams, GetApiV2UsersJwtParams, GetApiV2UsersParams, PostApiV21Users, PostApiV21UsersAuthorize, PostApiV2Users, PostApiV2UsersAuthorize, PutApiV21UsersId, PutApiV21UsersIdCallAction, PutApiV2UsersId, PutApiV2UsersIdCallAction } from "./data-contracts";
|
|
2
|
+
import { HttpClient, RequestParams } from "./http-client";
|
|
3
|
+
/**
|
|
4
|
+
* No description
|
|
5
|
+
*
|
|
6
|
+
* @tags users
|
|
7
|
+
* @name GetApiV2UsersIdAudits
|
|
8
|
+
* @summary Retrieve audit info for users
|
|
9
|
+
* @request GET:/api/v2/users/{id}/audits
|
|
10
|
+
*/
|
|
11
|
+
export declare const getApiV2UsersIdAudits: (client: HttpClient, id: number, params?: RequestParams) => Promise<APIV2EntitiesAudits>;
|
|
12
|
+
/**
|
|
13
|
+
* No description
|
|
14
|
+
*
|
|
15
|
+
* @tags users
|
|
16
|
+
* @name GetApiV2UsersIdTraits
|
|
17
|
+
* @summary Retrieve the specified users traits
|
|
18
|
+
* @request GET:/api/v2/users/{id}/traits
|
|
19
|
+
*/
|
|
20
|
+
export declare const getApiV2UsersIdTraits: (client: HttpClient, { id, ...query }: GetApiV2UsersIdTraitsParams, params?: RequestParams) => Promise<APIV2EntitiesResult>;
|
|
21
|
+
/**
|
|
22
|
+
* No description
|
|
23
|
+
*
|
|
24
|
+
* @tags users
|
|
25
|
+
* @name GetApiV2UsersId
|
|
26
|
+
* @summary Retrieve a user
|
|
27
|
+
* @request GET:/api/v2/users/{id}
|
|
28
|
+
*/
|
|
29
|
+
export declare const getApiV2UsersId: (client: HttpClient, id: number, params?: RequestParams) => Promise<APIV2EntitiesUser>;
|
|
30
|
+
/**
|
|
31
|
+
* No description
|
|
32
|
+
*
|
|
33
|
+
* @tags users
|
|
34
|
+
* @name PutApiV2UsersId
|
|
35
|
+
* @summary Update a user
|
|
36
|
+
* @request PUT:/api/v2/users/{id}
|
|
37
|
+
*/
|
|
38
|
+
export declare const putApiV2UsersId: (client: HttpClient, id: number, putApiV2UsersId: PutApiV2UsersId, params?: RequestParams) => Promise<APIV2EntitiesUser>;
|
|
39
|
+
/**
|
|
40
|
+
* No description
|
|
41
|
+
*
|
|
42
|
+
* @tags users
|
|
43
|
+
* @name DeleteApiV2UsersId
|
|
44
|
+
* @summary Destroy a user
|
|
45
|
+
* @request DELETE:/api/v2/users/{id}
|
|
46
|
+
*/
|
|
47
|
+
export declare const deleteApiV2UsersId: (client: HttpClient, id: number, params?: RequestParams) => Promise<void>;
|
|
48
|
+
/**
|
|
49
|
+
* No description
|
|
50
|
+
*
|
|
51
|
+
* @tags users
|
|
52
|
+
* @name GetApiV2UsersIdBroadcasts
|
|
53
|
+
* @summary Retrieve broadcasts for a user
|
|
54
|
+
* @request GET:/api/v2/users/{id}/broadcasts
|
|
55
|
+
*/
|
|
56
|
+
export declare const getApiV2UsersIdBroadcasts: (client: HttpClient, id: number, params?: RequestParams) => Promise<void>;
|
|
57
|
+
/**
|
|
58
|
+
* @description Get users traits
|
|
59
|
+
*
|
|
60
|
+
* @tags users
|
|
61
|
+
* @name GetApiV2UsersTraits
|
|
62
|
+
* @summary List users traits
|
|
63
|
+
* @request GET:/api/v2/users/traits
|
|
64
|
+
*/
|
|
65
|
+
export declare const getApiV2UsersTraits: (client: HttpClient, params?: RequestParams) => Promise<void>;
|
|
66
|
+
/**
|
|
67
|
+
* @description This will list all users for all customer accounts to which you have access
|
|
68
|
+
*
|
|
69
|
+
* @tags users
|
|
70
|
+
* @name GetApiV2Users
|
|
71
|
+
* @summary List all users
|
|
72
|
+
* @request GET:/api/v2/users
|
|
73
|
+
*/
|
|
74
|
+
export declare const getApiV2Users: (client: HttpClient, query: GetApiV2UsersParams, params?: RequestParams) => Promise<APIV2EntitiesUser[]>;
|
|
75
|
+
/**
|
|
76
|
+
* No description
|
|
77
|
+
*
|
|
78
|
+
* @tags users
|
|
79
|
+
* @name PostApiV2Users
|
|
80
|
+
* @summary Create a user
|
|
81
|
+
* @request POST:/api/v2/users
|
|
82
|
+
*/
|
|
83
|
+
export declare const postApiV2Users: (client: HttpClient, postApiV2Users: PostApiV2Users, params?: RequestParams) => Promise<APIV2EntitiesUser>;
|
|
84
|
+
/**
|
|
85
|
+
* No description
|
|
86
|
+
*
|
|
87
|
+
* @tags users
|
|
88
|
+
* @name GetApiV2UsersCount
|
|
89
|
+
* @summary Count users
|
|
90
|
+
* @request GET:/api/v2/users/count
|
|
91
|
+
*/
|
|
92
|
+
export declare const getApiV2UsersCount: (client: HttpClient, query: GetApiV2UsersCountParams, params?: RequestParams) => Promise<APIV2EntitiesCount>;
|
|
93
|
+
/**
|
|
94
|
+
* No description
|
|
95
|
+
*
|
|
96
|
+
* @tags users
|
|
97
|
+
* @name PostApiV2UsersAuthorize
|
|
98
|
+
* @summary Authorize a user for a service
|
|
99
|
+
* @request POST:/api/v2/users/authorize
|
|
100
|
+
*/
|
|
101
|
+
export declare const postApiV2UsersAuthorize: (client: HttpClient, postApiV2UsersAuthorize: PostApiV2UsersAuthorize, params?: RequestParams) => Promise<void>;
|
|
102
|
+
/**
|
|
103
|
+
* No description
|
|
104
|
+
*
|
|
105
|
+
* @tags users
|
|
106
|
+
* @name GetApiV2UsersJwt
|
|
107
|
+
* @summary Retrieve a JWT for a user
|
|
108
|
+
* @request GET:/api/v2/users/jwt
|
|
109
|
+
*/
|
|
110
|
+
export declare const getApiV2UsersJwt: (client: HttpClient, query: GetApiV2UsersJwtParams, params?: RequestParams) => Promise<APIV2EntitiesUser>;
|
|
111
|
+
/**
|
|
112
|
+
* No description
|
|
113
|
+
*
|
|
114
|
+
* @tags users
|
|
115
|
+
* @name GetApiV2UsersIdCallTrait
|
|
116
|
+
* @summary Retrieve the specified users trait
|
|
117
|
+
* @request GET:/api/v2/users/{id}/call/{trait}
|
|
118
|
+
*/
|
|
119
|
+
export declare const getApiV2UsersIdCallTrait: (client: HttpClient, { trait, id, ...query }: GetApiV2UsersIdCallTraitParams, params?: RequestParams) => Promise<APIV2EntitiesResult>;
|
|
120
|
+
/**
|
|
121
|
+
* No description
|
|
122
|
+
*
|
|
123
|
+
* @tags users
|
|
124
|
+
* @name PutApiV2UsersIdCallAction
|
|
125
|
+
* @summary Perform an action on a user
|
|
126
|
+
* @request PUT:/api/v2/users/{id}/call/{action}
|
|
127
|
+
*/
|
|
128
|
+
export declare const putApiV2UsersIdCallAction: (client: HttpClient, action: string, id: number, putApiV2UsersIdCallAction: PutApiV2UsersIdCallAction, params?: RequestParams) => Promise<APIV2EntitiesUser>;
|
|
129
|
+
/**
|
|
130
|
+
* @description Get users traits
|
|
131
|
+
*
|
|
132
|
+
* @tags users
|
|
133
|
+
* @name GetApiV21UsersTraits
|
|
134
|
+
* @summary List users traits
|
|
135
|
+
* @request GET:/api/v2.1/users/traits
|
|
136
|
+
*/
|
|
137
|
+
export declare const getApiV21UsersTraits: (client: HttpClient, params?: RequestParams) => Promise<void>;
|
|
138
|
+
/**
|
|
139
|
+
* @description This will list all users for all customer accounts to which you have access
|
|
140
|
+
*
|
|
141
|
+
* @tags users
|
|
142
|
+
* @name GetApiV21Users
|
|
143
|
+
* @summary List all users
|
|
144
|
+
* @request GET:/api/v2.1/users
|
|
145
|
+
*/
|
|
146
|
+
export declare const getApiV21Users: (client: HttpClient, query: GetApiV21UsersParams, params?: RequestParams) => Promise<APIV21EntitiesUser[]>;
|
|
147
|
+
/**
|
|
148
|
+
* No description
|
|
149
|
+
*
|
|
150
|
+
* @tags users
|
|
151
|
+
* @name PostApiV21Users
|
|
152
|
+
* @summary Create a user
|
|
153
|
+
* @request POST:/api/v2.1/users
|
|
154
|
+
*/
|
|
155
|
+
export declare const postApiV21Users: (client: HttpClient, postApiV21Users: PostApiV21Users, params?: RequestParams) => Promise<APIV21EntitiesPostResponse>;
|
|
156
|
+
/**
|
|
157
|
+
* No description
|
|
158
|
+
*
|
|
159
|
+
* @tags users
|
|
160
|
+
* @name GetApiV21UsersCount
|
|
161
|
+
* @summary Count users
|
|
162
|
+
* @request GET:/api/v2.1/users/count
|
|
163
|
+
*/
|
|
164
|
+
export declare const getApiV21UsersCount: (client: HttpClient, query: GetApiV21UsersCountParams, params?: RequestParams) => Promise<APIV2EntitiesCount>;
|
|
165
|
+
/**
|
|
166
|
+
* No description
|
|
167
|
+
*
|
|
168
|
+
* @tags users
|
|
169
|
+
* @name PostApiV21UsersAuthorize
|
|
170
|
+
* @summary Authorize a user for a service
|
|
171
|
+
* @request POST:/api/v2.1/users/authorize
|
|
172
|
+
*/
|
|
173
|
+
export declare const postApiV21UsersAuthorize: (client: HttpClient, postApiV21UsersAuthorize: PostApiV21UsersAuthorize, params?: RequestParams) => Promise<void>;
|
|
174
|
+
/**
|
|
175
|
+
* No description
|
|
176
|
+
*
|
|
177
|
+
* @tags users
|
|
178
|
+
* @name GetApiV21UsersJwt
|
|
179
|
+
* @summary Retrieve a JWT for a user
|
|
180
|
+
* @request GET:/api/v2.1/users/jwt
|
|
181
|
+
*/
|
|
182
|
+
export declare const getApiV21UsersJwt: (client: HttpClient, query: GetApiV21UsersJwtParams, params?: RequestParams) => Promise<APIV21EntitiesUser>;
|
|
183
|
+
/**
|
|
184
|
+
* No description
|
|
185
|
+
*
|
|
186
|
+
* @tags users
|
|
187
|
+
* @name GetApiV21UsersIdCallTrait
|
|
188
|
+
* @summary Retrieve the specified users trait
|
|
189
|
+
* @request GET:/api/v2.1/users/{id}/call/{trait}
|
|
190
|
+
*/
|
|
191
|
+
export declare const getApiV21UsersIdCallTrait: (client: HttpClient, { trait, id, ...query }: GetApiV21UsersIdCallTraitParams, params?: RequestParams) => Promise<APIV2EntitiesResult>;
|
|
192
|
+
/**
|
|
193
|
+
* No description
|
|
194
|
+
*
|
|
195
|
+
* @tags users
|
|
196
|
+
* @name GetApiV21UsersIdTraits
|
|
197
|
+
* @summary Retrieve the specified users traits
|
|
198
|
+
* @request GET:/api/v2.1/users/{id}/traits
|
|
199
|
+
*/
|
|
200
|
+
export declare const getApiV21UsersIdTraits: (client: HttpClient, { id, ...query }: GetApiV21UsersIdTraitsParams, params?: RequestParams) => Promise<APIV2EntitiesResult>;
|
|
201
|
+
/**
|
|
202
|
+
* No description
|
|
203
|
+
*
|
|
204
|
+
* @tags users
|
|
205
|
+
* @name GetApiV21UsersId
|
|
206
|
+
* @summary Retrieve a user
|
|
207
|
+
* @request GET:/api/v2.1/users/{id}
|
|
208
|
+
*/
|
|
209
|
+
export declare const getApiV21UsersId: (client: HttpClient, id: number, params?: RequestParams) => Promise<APIV21EntitiesUser>;
|
|
210
|
+
/**
|
|
211
|
+
* No description
|
|
212
|
+
*
|
|
213
|
+
* @tags users
|
|
214
|
+
* @name PutApiV21UsersId
|
|
215
|
+
* @summary Update a user
|
|
216
|
+
* @request PUT:/api/v2.1/users/{id}
|
|
217
|
+
*/
|
|
218
|
+
export declare const putApiV21UsersId: (client: HttpClient, id: number, putApiV21UsersId: PutApiV21UsersId, params?: RequestParams) => Promise<void>;
|
|
219
|
+
/**
|
|
220
|
+
* No description
|
|
221
|
+
*
|
|
222
|
+
* @tags users
|
|
223
|
+
* @name DeleteApiV21UsersId
|
|
224
|
+
* @summary Destroy a user
|
|
225
|
+
* @request DELETE:/api/v2.1/users/{id}
|
|
226
|
+
*/
|
|
227
|
+
export declare const deleteApiV21UsersId: (client: HttpClient, id: number, params?: RequestParams) => Promise<void>;
|
|
228
|
+
/**
|
|
229
|
+
* No description
|
|
230
|
+
*
|
|
231
|
+
* @tags users
|
|
232
|
+
* @name GetApiV21UsersIdBroadcasts
|
|
233
|
+
* @summary Retrieve broadcasts for a user
|
|
234
|
+
* @request GET:/api/v2.1/users/{id}/broadcasts
|
|
235
|
+
*/
|
|
236
|
+
export declare const getApiV21UsersIdBroadcasts: (client: HttpClient, id: number, params?: RequestParams) => Promise<void>;
|
|
237
|
+
/**
|
|
238
|
+
* No description
|
|
239
|
+
*
|
|
240
|
+
* @tags users
|
|
241
|
+
* @name PutApiV21UsersIdCallAction
|
|
242
|
+
* @summary Perform an action on a user
|
|
243
|
+
* @request PUT:/api/v2.1/users/{id}/call/{action}
|
|
244
|
+
*/
|
|
245
|
+
export declare const putApiV21UsersIdCallAction: (client: HttpClient, action: string, id: number, putApiV21UsersIdCallAction: PutApiV21UsersIdCallAction, params?: RequestParams) => Promise<void>;
|
|
@@ -0,0 +1,38 @@
|
|
|
1
|
+
import { APIV21EntitiesPostResponse, APIV2EntitiesDocument, APIV2EntitiesResult, PostApiV21UtilitiesPresignUrl, PostApiV21UtilitiesPublicUrl, PostApiV2UtilitiesPresignUrl, PostApiV2UtilitiesPublicUrl } from "./data-contracts";
|
|
2
|
+
import { HttpClient, RequestParams } from "./http-client";
|
|
3
|
+
/**
|
|
4
|
+
* No description
|
|
5
|
+
*
|
|
6
|
+
* @tags utilities
|
|
7
|
+
* @name PostApiV2UtilitiesPresignUrl
|
|
8
|
+
* @summary Create a presigned upload URL
|
|
9
|
+
* @request POST:/api/v2/utilities/presign_url
|
|
10
|
+
*/
|
|
11
|
+
export declare const postApiV2UtilitiesPresignUrl: (client: HttpClient, postApiV2UtilitiesPresignUrl: PostApiV2UtilitiesPresignUrl, params?: RequestParams) => Promise<APIV2EntitiesDocument>;
|
|
12
|
+
/**
|
|
13
|
+
* No description
|
|
14
|
+
*
|
|
15
|
+
* @tags utilities
|
|
16
|
+
* @name PostApiV2UtilitiesPublicUrl
|
|
17
|
+
* @summary Create a signed aws URL through a private url
|
|
18
|
+
* @request POST:/api/v2/utilities/public_url
|
|
19
|
+
*/
|
|
20
|
+
export declare const postApiV2UtilitiesPublicUrl: (client: HttpClient, postApiV2UtilitiesPublicUrl: PostApiV2UtilitiesPublicUrl, params?: RequestParams) => Promise<APIV2EntitiesResult>;
|
|
21
|
+
/**
|
|
22
|
+
* No description
|
|
23
|
+
*
|
|
24
|
+
* @tags utilities
|
|
25
|
+
* @name PostApiV21UtilitiesPresignUrl
|
|
26
|
+
* @summary Create a presigned upload URL
|
|
27
|
+
* @request POST:/api/v2.1/utilities/presign_url
|
|
28
|
+
*/
|
|
29
|
+
export declare const postApiV21UtilitiesPresignUrl: (client: HttpClient, postApiV21UtilitiesPresignUrl: PostApiV21UtilitiesPresignUrl, params?: RequestParams) => Promise<APIV21EntitiesPostResponse>;
|
|
30
|
+
/**
|
|
31
|
+
* No description
|
|
32
|
+
*
|
|
33
|
+
* @tags utilities
|
|
34
|
+
* @name PostApiV21UtilitiesPublicUrl
|
|
35
|
+
* @summary Create a signed aws URL through a private url
|
|
36
|
+
* @request POST:/api/v2.1/utilities/public_url
|
|
37
|
+
*/
|
|
38
|
+
export declare const postApiV21UtilitiesPublicUrl: (client: HttpClient, postApiV21UtilitiesPublicUrl: PostApiV21UtilitiesPublicUrl, params?: RequestParams) => Promise<APIV21EntitiesPostResponse>;
|