ultracart_rest_api_v2_typescript 4.0.65-RC → 4.0.67-RC

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.
@@ -384,6 +384,7 @@ src/models/ExperimentResponse.ts
384
384
  src/models/ExperimentVariation.ts
385
385
  src/models/ExperimentVariationStat.ts
386
386
  src/models/ExperimentsResponse.ts
387
+ src/models/FileManagerPage.ts
387
388
  src/models/FulfillmentInventory.ts
388
389
  src/models/FulfillmentShipment.ts
389
390
  src/models/GeoPoint.ts
package/README.md CHANGED
@@ -1,4 +1,4 @@
1
- ## ultracart_rest_api_v2_typescript@4.0.65-RC
1
+ ## ultracart_rest_api_v2_typescript@4.0.67-RC
2
2
 
3
3
  This generator creates TypeScript/JavaScript client that utilizes [Fetch API](https://fetch.spec.whatwg.org/). The generated Node module can be used in the following environments:
4
4
 
@@ -36,7 +36,7 @@ navigate to the folder of your consuming project and run one of the following co
36
36
  _published:_
37
37
 
38
38
  ```
39
- npm install ultracart_rest_api_v2_typescript@4.0.65-RC --save
39
+ npm install ultracart_rest_api_v2_typescript@4.0.67-RC --save
40
40
  ```
41
41
 
42
42
  _unPublished (not recommended):_
@@ -54,6 +54,8 @@ Not every change is committed to every SDK.
54
54
 
55
55
  | Version | Date | Comments |
56
56
  | --: | :-: | --- |
57
+ | 4.0.67-RC | 09/27/2022 | added digital library call for unassociated content |
58
+ | 4.0.66-RC | 09/22/2022 | digital item mgmt testing |
57
59
  | 4.0.65-RC | 09/22/2022 | testing digital file mgmt calls |
58
60
  | 4.0.64-RC | 09/19/2022 | conversations pagination |
59
61
  | 4.0.63-RC | 09/13/2022 | storefront comms - postcard tracking |
@@ -19,12 +19,6 @@ export interface DeleteItemRequest {
19
19
  }
20
20
  export interface GetDigitalItemRequest {
21
21
  digitalItemOid: number;
22
- limit?: number;
23
- offset?: number;
24
- since?: string;
25
- sort?: string;
26
- expand?: string;
27
- placeholders?: boolean;
28
22
  }
29
23
  export interface GetDigitalItemsRequest {
30
24
  limit?: number;
@@ -57,6 +51,14 @@ export interface GetItemsRequest {
57
51
  export interface GetPricingTiersRequest {
58
52
  expand?: string;
59
53
  }
54
+ export interface GetUnassociatedDigitalItemsRequest {
55
+ limit?: number;
56
+ offset?: number;
57
+ since?: string;
58
+ sort?: string;
59
+ expand?: string;
60
+ placeholders?: boolean;
61
+ }
60
62
  export interface InsertDigitalItemRequest {
61
63
  digitalItem: ItemDigitalItem;
62
64
  }
@@ -123,12 +125,6 @@ export interface ItemApiInterface {
123
125
  * Retrieves a digital item (file information) from the account. Be aware that these are not normal items that can be added to a shopping cart. Rather, they are digital files that may be associated with normal items.
124
126
  * @summary Retrieve a digital item from the digital library, which are digital files that may be attached to normal items
125
127
  * @param {number} digitalItemOid The digital item oid to retrieve.
126
- * @param {number} [limit] The maximum number of records to return on this one API call. (Default 100, Max 2000)
127
- * @param {number} [offset] Pagination of the record set. Offset is a zero based index.
128
- * @param {string} [since] Fetch items that have been created/modified since this date/time.
129
- * @param {string} [sort] The sort order of the items. See Sorting documentation for examples of using multiple values and sorting by ascending and descending.
130
- * @param {string} [expand] The object expansion to perform on the result. See documentation for examples
131
- * @param {boolean} [placeholders] Whether or not placeholder values should be returned in the result. Useful for UIs that consume this REST API.
132
128
  * @param {*} [options] Override http request option.
133
129
  * @throws {RequiredError}
134
130
  * @memberof ItemApiInterface
@@ -225,6 +221,25 @@ export interface ItemApiInterface {
225
221
  * Retrieve pricing tiers
226
222
  */
227
223
  getPricingTiers(requestParameters: GetPricingTiersRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<PricingTiersResponse>;
224
+ /**
225
+ * Retrieves a group of digital items (file information) from the account that are not yet associated with any actual items. If no parameters are specified, all digital items will be returned. Be aware that these are not normal items that can be added to a shopping cart. Rather, they are digital files that may be associated with normal items. You will need to make multiple API calls in order to retrieve the entire result set since this API performs result set pagination.
226
+ * @summary Retrieve digital items from the digital library (which are digital files that may be attached to normal items) not yet associated with actual items
227
+ * @param {number} [limit] The maximum number of records to return on this one API call. (Default 100, Max 2000)
228
+ * @param {number} [offset] Pagination of the record set. Offset is a zero based index.
229
+ * @param {string} [since] Fetch items that have been created/modified since this date/time.
230
+ * @param {string} [sort] The sort order of the items. See Sorting documentation for examples of using multiple values and sorting by ascending and descending.
231
+ * @param {string} [expand] The object expansion to perform on the result. See documentation for examples
232
+ * @param {boolean} [placeholders] Whether or not placeholder values should be returned in the result. Useful for UIs that consume this REST API.
233
+ * @param {*} [options] Override http request option.
234
+ * @throws {RequiredError}
235
+ * @memberof ItemApiInterface
236
+ */
237
+ getUnassociatedDigitalItemsRaw(requestParameters: GetUnassociatedDigitalItemsRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<runtime.ApiResponse<ItemDigitalItemsResponse>>;
238
+ /**
239
+ * Retrieves a group of digital items (file information) from the account that are not yet associated with any actual items. If no parameters are specified, all digital items will be returned. Be aware that these are not normal items that can be added to a shopping cart. Rather, they are digital files that may be associated with normal items. You will need to make multiple API calls in order to retrieve the entire result set since this API performs result set pagination.
240
+ * Retrieve digital items from the digital library (which are digital files that may be attached to normal items) not yet associated with actual items
241
+ */
242
+ getUnassociatedDigitalItems(requestParameters: GetUnassociatedDigitalItemsRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<ItemDigitalItemsResponse>;
228
243
  /**
229
244
  * Create a file within the digital library. This does not create an item, but makes this digital file available and selectable as part (or all) of an item.
230
245
  * @summary Create a file within the digital library
@@ -403,6 +418,16 @@ export declare class ItemApi extends runtime.BaseAPI implements ItemApiInterface
403
418
  * Retrieve pricing tiers
404
419
  */
405
420
  getPricingTiers(requestParameters?: GetPricingTiersRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<PricingTiersResponse>;
421
+ /**
422
+ * Retrieves a group of digital items (file information) from the account that are not yet associated with any actual items. If no parameters are specified, all digital items will be returned. Be aware that these are not normal items that can be added to a shopping cart. Rather, they are digital files that may be associated with normal items. You will need to make multiple API calls in order to retrieve the entire result set since this API performs result set pagination.
423
+ * Retrieve digital items from the digital library (which are digital files that may be attached to normal items) not yet associated with actual items
424
+ */
425
+ getUnassociatedDigitalItemsRaw(requestParameters: GetUnassociatedDigitalItemsRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<runtime.ApiResponse<ItemDigitalItemsResponse>>;
426
+ /**
427
+ * Retrieves a group of digital items (file information) from the account that are not yet associated with any actual items. If no parameters are specified, all digital items will be returned. Be aware that these are not normal items that can be added to a shopping cart. Rather, they are digital files that may be associated with normal items. You will need to make multiple API calls in order to retrieve the entire result set since this API performs result set pagination.
428
+ * Retrieve digital items from the digital library (which are digital files that may be attached to normal items) not yet associated with actual items
429
+ */
430
+ getUnassociatedDigitalItems(requestParameters?: GetUnassociatedDigitalItemsRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<ItemDigitalItemsResponse>;
406
431
  /**
407
432
  * Create a file within the digital library. This does not create an item, but makes this digital file available and selectable as part (or all) of an item.
408
433
  * Create a file within the digital library
@@ -203,24 +203,6 @@ var ItemApi = /** @class */ (function (_super) {
203
203
  throw new runtime.RequiredError('digitalItemOid', 'Required parameter requestParameters.digitalItemOid was null or undefined when calling getDigitalItem.');
204
204
  }
205
205
  queryParameters = {};
206
- if (requestParameters.limit !== undefined) {
207
- queryParameters['_limit'] = requestParameters.limit;
208
- }
209
- if (requestParameters.offset !== undefined) {
210
- queryParameters['_offset'] = requestParameters.offset;
211
- }
212
- if (requestParameters.since !== undefined) {
213
- queryParameters['_since'] = requestParameters.since;
214
- }
215
- if (requestParameters.sort !== undefined) {
216
- queryParameters['_sort'] = requestParameters.sort;
217
- }
218
- if (requestParameters.expand !== undefined) {
219
- queryParameters['_expand'] = requestParameters.expand;
220
- }
221
- if (requestParameters.placeholders !== undefined) {
222
- queryParameters['_placeholders'] = requestParameters.placeholders;
223
- }
224
206
  headerParameters = {};
225
207
  if (!(this.configuration && this.configuration.accessToken)) return [3 /*break*/, 2];
226
208
  // oauth required
@@ -612,6 +594,81 @@ var ItemApi = /** @class */ (function (_super) {
612
594
  });
613
595
  });
614
596
  };
597
+ /**
598
+ * Retrieves a group of digital items (file information) from the account that are not yet associated with any actual items. If no parameters are specified, all digital items will be returned. Be aware that these are not normal items that can be added to a shopping cart. Rather, they are digital files that may be associated with normal items. You will need to make multiple API calls in order to retrieve the entire result set since this API performs result set pagination.
599
+ * Retrieve digital items from the digital library (which are digital files that may be attached to normal items) not yet associated with actual items
600
+ */
601
+ ItemApi.prototype.getUnassociatedDigitalItemsRaw = function (requestParameters, initOverrides) {
602
+ return __awaiter(this, void 0, void 0, function () {
603
+ var queryParameters, headerParameters, _a, _b, response;
604
+ return __generator(this, function (_c) {
605
+ switch (_c.label) {
606
+ case 0:
607
+ queryParameters = {};
608
+ if (requestParameters.limit !== undefined) {
609
+ queryParameters['_limit'] = requestParameters.limit;
610
+ }
611
+ if (requestParameters.offset !== undefined) {
612
+ queryParameters['_offset'] = requestParameters.offset;
613
+ }
614
+ if (requestParameters.since !== undefined) {
615
+ queryParameters['_since'] = requestParameters.since;
616
+ }
617
+ if (requestParameters.sort !== undefined) {
618
+ queryParameters['_sort'] = requestParameters.sort;
619
+ }
620
+ if (requestParameters.expand !== undefined) {
621
+ queryParameters['_expand'] = requestParameters.expand;
622
+ }
623
+ if (requestParameters.placeholders !== undefined) {
624
+ queryParameters['_placeholders'] = requestParameters.placeholders;
625
+ }
626
+ headerParameters = {};
627
+ if (!(this.configuration && this.configuration.accessToken)) return [3 /*break*/, 2];
628
+ // oauth required
629
+ _a = headerParameters;
630
+ _b = "Authorization";
631
+ return [4 /*yield*/, this.configuration.accessToken("ultraCartOauth", ["item_read"])];
632
+ case 1:
633
+ // oauth required
634
+ _a[_b] = _c.sent();
635
+ _c.label = 2;
636
+ case 2:
637
+ if (this.configuration && this.configuration.apiKey) {
638
+ headerParameters["x-ultracart-simple-key"] = this.configuration.apiKey("x-ultracart-simple-key"); // ultraCartSimpleApiKey authentication
639
+ }
640
+ return [4 /*yield*/, this.request({
641
+ path: "/item/digital_library/unassociated",
642
+ method: 'GET',
643
+ headers: headerParameters,
644
+ query: queryParameters,
645
+ }, initOverrides)];
646
+ case 3:
647
+ response = _c.sent();
648
+ return [2 /*return*/, new runtime.JSONApiResponse(response, function (jsonValue) { return (0, models_1.ItemDigitalItemsResponseFromJSON)(jsonValue); })];
649
+ }
650
+ });
651
+ });
652
+ };
653
+ /**
654
+ * Retrieves a group of digital items (file information) from the account that are not yet associated with any actual items. If no parameters are specified, all digital items will be returned. Be aware that these are not normal items that can be added to a shopping cart. Rather, they are digital files that may be associated with normal items. You will need to make multiple API calls in order to retrieve the entire result set since this API performs result set pagination.
655
+ * Retrieve digital items from the digital library (which are digital files that may be attached to normal items) not yet associated with actual items
656
+ */
657
+ ItemApi.prototype.getUnassociatedDigitalItems = function (requestParameters, initOverrides) {
658
+ if (requestParameters === void 0) { requestParameters = {}; }
659
+ return __awaiter(this, void 0, void 0, function () {
660
+ var response;
661
+ return __generator(this, function (_a) {
662
+ switch (_a.label) {
663
+ case 0: return [4 /*yield*/, this.getUnassociatedDigitalItemsRaw(requestParameters, initOverrides)];
664
+ case 1:
665
+ response = _a.sent();
666
+ return [4 /*yield*/, response.value()];
667
+ case 2: return [2 /*return*/, _a.sent()];
668
+ }
669
+ });
670
+ });
671
+ };
615
672
  /**
616
673
  * Create a file within the digital library. This does not create an item, but makes this digital file available and selectable as part (or all) of an item.
617
674
  * Create a file within the digital library
@@ -10,7 +10,7 @@
10
10
  * Do not edit the class manually.
11
11
  */
12
12
  import * as runtime from '../runtime';
13
- import { AddLibraryItemRequest, ApplyLibraryItemRequest, ApplyLibraryItemResponse, BaseResponse, CountriesResponse, EmailBaseTemplateListResponse, EmailCampaign, EmailCampaignFolder, EmailCampaignFolderResponse, EmailCampaignFoldersResponse, EmailCampaignResponse, EmailCampaignsResponse, EmailClicksResponse, EmailCommseq, EmailCommseqEmail, EmailCommseqEmailResponse, EmailCommseqEmailSendTestRequest, EmailCommseqEmailSendTestResponse, EmailCommseqEmailsRequest, EmailCommseqEmailsResponse, EmailCommseqPostcard, EmailCommseqPostcardResponse, EmailCommseqPostcardSendTestRequest, EmailCommseqPostcardSendTestResponse, EmailCommseqPostcardsRequest, EmailCommseqPostcardsResponse, EmailCommseqResponse, EmailCommseqSequenceTestRequest, EmailCommseqSequenceTestResponse, EmailCommseqStatResponse, EmailCommseqStepLogsResponse, EmailCommseqWebhookSendTestRequest, EmailCommseqWebhookSendTestResponse, EmailCommseqsResponse, EmailCustomer, EmailCustomerEditorUrlResponse, EmailCustomersResponse, EmailDashboardActivityResponse, EmailDashboardStatsResponse, EmailDomain, EmailEditorTokenResponse, EmailFlow, EmailFlowBackPopulateRequest, EmailFlowBackPopulateResponse, EmailFlowFolder, EmailFlowFolderResponse, EmailFlowFoldersResponse, EmailFlowResponse, EmailFlowsResponse, EmailGlobalSettings, EmailGlobalSettingsResponse, EmailGlobalUnsubscribeRequest, EmailGlobalUnsubscribeResponse, EmailHistogramPropertyNamesResponse, EmailHistogramPropertyValuesResponse, EmailList, EmailListArchiveResponse, EmailListCustomersResponse, EmailListResponse, EmailListSegmentFolder, EmailListSegmentFolderResponse, EmailListSegmentFoldersResponse, EmailListSubscribeResponse, EmailListsResponse, EmailOrdersResponse, EmailPerformanceResponse, EmailPlan, EmailPlanResponse, EmailPostcardTrackingResponse, EmailSegment, EmailSegmentArchiveResponse, EmailSegmentCustomersResponse, EmailSegmentDownloadPrepareResponse, EmailSegmentResponse, EmailSegmentsResponse, EmailSendingDomainResponse, EmailSendingDomainsResponse, EmailSettings, EmailSettingsResponse, EmailStatPostcardSummaryRequest, EmailStatPostcardSummaryResponse, EmailStatSummaryRequest, EmailStatSummaryResponse, EmailStepStatRequest, EmailStepStatResponse, EmailStepWaitingRequest, EmailStepWaitingResponse, EmailTemplate, EmailTemplatesResponse, EmailThirdPartyListImportRequest, EmailThirdPartyProvidersResponse, EmailWebhookEditorValuesResponse, Experiment, ExperimentResponse, ExperimentsResponse, GeocodeRequest, GeocodeResponse, LibraryFilterValuesResponse, LibraryItem, LibraryItemQuery, LibraryItemResponse, LibraryItemsResponse, LookupRequest, LookupResponse, PricingTiersResponse, PublishLibraryItemRequest, RulerValidationRequest, RulerValidationResponse, ScreenRecordingHeatmapIndexRequest, ScreenRecordingHeatmapIndexResponse, ScreenRecordingHeatmapRequest, ScreenRecordingHeatmapReset, ScreenRecordingHeatmapResponse, ScreenRecordingMerchantNotesRequest, ScreenRecordingPageViewDataResponse, ScreenRecordingQueryRequest, ScreenRecordingQueryResponse, ScreenRecordingResponse, ScreenRecordingSegment, ScreenRecordingSegmentResponse, ScreenRecordingSegmentsResponse, ScreenRecordingSettings, ScreenRecordingSettingsResponse, ScreenRecordingTagsRequest, ScreenRecordingTagsResponse, ScreenshotsResponse, StoreFrontsResponse, ThumbnailParametersRequest, ThumbnailParametersResponse, TransactionEmail, TransactionEmailListResponse, TransactionEmailResponse, Twilio, TwilioResponse, TwiliosResponse } from '../models';
13
+ import { AddLibraryItemRequest, ApplyLibraryItemRequest, ApplyLibraryItemResponse, BaseResponse, CountriesResponse, EmailBaseTemplateListResponse, EmailCampaign, EmailCampaignFolder, EmailCampaignFolderResponse, EmailCampaignFoldersResponse, EmailCampaignResponse, EmailCampaignsResponse, EmailClicksResponse, EmailCommseq, EmailCommseqEmail, EmailCommseqEmailResponse, EmailCommseqEmailSendTestRequest, EmailCommseqEmailSendTestResponse, EmailCommseqEmailsRequest, EmailCommseqEmailsResponse, EmailCommseqPostcard, EmailCommseqPostcardResponse, EmailCommseqPostcardSendTestRequest, EmailCommseqPostcardSendTestResponse, EmailCommseqPostcardsRequest, EmailCommseqPostcardsResponse, EmailCommseqResponse, EmailCommseqSequenceTestRequest, EmailCommseqSequenceTestResponse, EmailCommseqStatResponse, EmailCommseqStepLogsResponse, EmailCommseqWebhookSendTestRequest, EmailCommseqWebhookSendTestResponse, EmailCommseqsResponse, EmailCustomer, EmailCustomerEditorUrlResponse, EmailCustomersResponse, EmailDashboardActivityResponse, EmailDashboardStatsResponse, EmailDomain, EmailEditorTokenResponse, EmailFlow, EmailFlowBackPopulateRequest, EmailFlowBackPopulateResponse, EmailFlowFolder, EmailFlowFolderResponse, EmailFlowFoldersResponse, EmailFlowResponse, EmailFlowsResponse, EmailGlobalSettings, EmailGlobalSettingsResponse, EmailGlobalUnsubscribeRequest, EmailGlobalUnsubscribeResponse, EmailHistogramPropertyNamesResponse, EmailHistogramPropertyValuesResponse, EmailList, EmailListArchiveResponse, EmailListCustomersResponse, EmailListResponse, EmailListSegmentFolder, EmailListSegmentFolderResponse, EmailListSegmentFoldersResponse, EmailListSubscribeResponse, EmailListsResponse, EmailOrdersResponse, EmailPerformanceResponse, EmailPlan, EmailPlanResponse, EmailPostcardTrackingResponse, EmailSegment, EmailSegmentArchiveResponse, EmailSegmentCustomersResponse, EmailSegmentDownloadPrepareResponse, EmailSegmentResponse, EmailSegmentsResponse, EmailSendingDomainResponse, EmailSendingDomainsResponse, EmailSettings, EmailSettingsResponse, EmailStatPostcardSummaryRequest, EmailStatPostcardSummaryResponse, EmailStatSummaryRequest, EmailStatSummaryResponse, EmailStepStatRequest, EmailStepStatResponse, EmailStepWaitingRequest, EmailStepWaitingResponse, EmailTemplate, EmailTemplatesResponse, EmailThirdPartyListImportRequest, EmailThirdPartyProvidersResponse, EmailWebhookEditorValuesResponse, Experiment, ExperimentResponse, ExperimentsResponse, FileManagerPage, GeocodeRequest, GeocodeResponse, LibraryFilterValuesResponse, LibraryItem, LibraryItemQuery, LibraryItemResponse, LibraryItemsResponse, LookupRequest, LookupResponse, PricingTiersResponse, PublishLibraryItemRequest, RulerValidationRequest, RulerValidationResponse, ScreenRecordingHeatmapIndexRequest, ScreenRecordingHeatmapIndexResponse, ScreenRecordingHeatmapRequest, ScreenRecordingHeatmapReset, ScreenRecordingHeatmapResponse, ScreenRecordingMerchantNotesRequest, ScreenRecordingPageViewDataResponse, ScreenRecordingQueryRequest, ScreenRecordingQueryResponse, ScreenRecordingResponse, ScreenRecordingSegment, ScreenRecordingSegmentResponse, ScreenRecordingSegmentsResponse, ScreenRecordingSettings, ScreenRecordingSettingsResponse, ScreenRecordingTagsRequest, ScreenRecordingTagsResponse, ScreenshotsResponse, StoreFrontsResponse, ThumbnailParametersRequest, ThumbnailParametersResponse, TransactionEmail, TransactionEmailListResponse, TransactionEmailResponse, Twilio, TwilioResponse, TwiliosResponse } from '../models';
14
14
  export interface AddToLibraryRequest {
15
15
  addLibraryRequest: AddLibraryItemRequest;
16
16
  }
@@ -45,6 +45,15 @@ export interface CloneEmailFlowRequest {
45
45
  emailFlowUuid: string;
46
46
  targetStorefrontOid?: number;
47
47
  }
48
+ export interface CreateAdminPanelFsDirectoryRequest {
49
+ id: number;
50
+ name?: string;
51
+ parentStorefrontFsDirectoryOid?: number;
52
+ }
53
+ export interface CreateAdminPanelFsFileUploadRequest {
54
+ id: number;
55
+ parentStorefrontFsDirectoryOid?: number;
56
+ }
48
57
  export interface CreateEmailSendingDomainRequest {
49
58
  domain: string;
50
59
  }
@@ -54,6 +63,11 @@ export interface CreateEmailSendingDomain2Request {
54
63
  export interface CreateTwilioAccountRequest {
55
64
  twilio: Twilio;
56
65
  }
66
+ export interface DeleteAdminPanelFsFileRequest {
67
+ id: number;
68
+ parentStorefrontFsDirectoryOid?: number;
69
+ storefrontFsFileOid?: number;
70
+ }
57
71
  export interface DeleteEmailCampaignFolderRequest {
58
72
  storefrontOid: number;
59
73
  emailCampaignFolderUuid: string;
@@ -118,6 +132,12 @@ export interface GeocodeAddressRequest {
118
132
  storefrontOid: number;
119
133
  geocodeRequest: GeocodeRequest;
120
134
  }
135
+ export interface GetAdminPanelFsDirectoryRequest {
136
+ id: number;
137
+ path?: string;
138
+ storefrontFsDirectoryOid?: number;
139
+ storefrontThemeOid?: number;
140
+ }
121
141
  export interface GetCountriesRequest {
122
142
  storefrontOid: number;
123
143
  }
@@ -806,6 +826,35 @@ export interface StorefrontApiInterface {
806
826
  * Clone email flow
807
827
  */
808
828
  cloneEmailFlow(requestParameters: CloneEmailFlowRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<EmailFlowResponse>;
829
+ /**
830
+ *
831
+ * @summary Create file manager directory for admin panel
832
+ * @param {number} id
833
+ * @param {string} [name]
834
+ * @param {number} [parentStorefrontFsDirectoryOid]
835
+ * @param {*} [options] Override http request option.
836
+ * @throws {RequiredError}
837
+ * @memberof StorefrontApiInterface
838
+ */
839
+ createAdminPanelFsDirectoryRaw(requestParameters: CreateAdminPanelFsDirectoryRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<runtime.ApiResponse<FileManagerPage>>;
840
+ /**
841
+ * Create file manager directory for admin panel
842
+ */
843
+ createAdminPanelFsDirectory(requestParameters: CreateAdminPanelFsDirectoryRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<FileManagerPage>;
844
+ /**
845
+ *
846
+ * @summary Upload file manager file for admin panel
847
+ * @param {number} id
848
+ * @param {number} [parentStorefrontFsDirectoryOid]
849
+ * @param {*} [options] Override http request option.
850
+ * @throws {RequiredError}
851
+ * @memberof StorefrontApiInterface
852
+ */
853
+ createAdminPanelFsFileUploadRaw(requestParameters: CreateAdminPanelFsFileUploadRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<runtime.ApiResponse<FileManagerPage>>;
854
+ /**
855
+ * Upload file manager file for admin panel
856
+ */
857
+ createAdminPanelFsFileUpload(requestParameters: CreateAdminPanelFsFileUploadRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<FileManagerPage>;
809
858
  /**
810
859
  *
811
860
  * @summary Create email campaign
@@ -845,6 +894,21 @@ export interface StorefrontApiInterface {
845
894
  * Create Twilio account
846
895
  */
847
896
  createTwilioAccount(requestParameters: CreateTwilioAccountRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<TwilioResponse>;
897
+ /**
898
+ *
899
+ * @summary Delete file manager directory for admin panel
900
+ * @param {number} id
901
+ * @param {number} [parentStorefrontFsDirectoryOid]
902
+ * @param {number} [storefrontFsFileOid]
903
+ * @param {*} [options] Override http request option.
904
+ * @throws {RequiredError}
905
+ * @memberof StorefrontApiInterface
906
+ */
907
+ deleteAdminPanelFsFileRaw(requestParameters: DeleteAdminPanelFsFileRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<runtime.ApiResponse<FileManagerPage>>;
908
+ /**
909
+ * Delete file manager directory for admin panel
910
+ */
911
+ deleteAdminPanelFsFile(requestParameters: DeleteAdminPanelFsFileRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<FileManagerPage>;
848
912
  /**
849
913
  *
850
914
  * @summary Delete email campaignFolder
@@ -1081,6 +1145,22 @@ export interface StorefrontApiInterface {
1081
1145
  * Obtain lat/long for an address
1082
1146
  */
1083
1147
  geocodeAddress(requestParameters: GeocodeAddressRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<GeocodeResponse>;
1148
+ /**
1149
+ *
1150
+ * @summary Get file manager directory for admin panel
1151
+ * @param {number} id
1152
+ * @param {string} [path]
1153
+ * @param {number} [storefrontFsDirectoryOid]
1154
+ * @param {number} [storefrontThemeOid]
1155
+ * @param {*} [options] Override http request option.
1156
+ * @throws {RequiredError}
1157
+ * @memberof StorefrontApiInterface
1158
+ */
1159
+ getAdminPanelFsDirectoryRaw(requestParameters: GetAdminPanelFsDirectoryRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<runtime.ApiResponse<FileManagerPage>>;
1160
+ /**
1161
+ * Get file manager directory for admin panel
1162
+ */
1163
+ getAdminPanelFsDirectory(requestParameters: GetAdminPanelFsDirectoryRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<FileManagerPage>;
1084
1164
  /**
1085
1165
  * Obtain a list of all the countries
1086
1166
  * @summary Get countries
@@ -3129,6 +3209,22 @@ export declare class StorefrontApi extends runtime.BaseAPI implements Storefront
3129
3209
  * Clone email flow
3130
3210
  */
3131
3211
  cloneEmailFlow(requestParameters: CloneEmailFlowRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<EmailFlowResponse>;
3212
+ /**
3213
+ * Create file manager directory for admin panel
3214
+ */
3215
+ createAdminPanelFsDirectoryRaw(requestParameters: CreateAdminPanelFsDirectoryRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<runtime.ApiResponse<FileManagerPage>>;
3216
+ /**
3217
+ * Create file manager directory for admin panel
3218
+ */
3219
+ createAdminPanelFsDirectory(requestParameters: CreateAdminPanelFsDirectoryRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<FileManagerPage>;
3220
+ /**
3221
+ * Upload file manager file for admin panel
3222
+ */
3223
+ createAdminPanelFsFileUploadRaw(requestParameters: CreateAdminPanelFsFileUploadRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<runtime.ApiResponse<FileManagerPage>>;
3224
+ /**
3225
+ * Upload file manager file for admin panel
3226
+ */
3227
+ createAdminPanelFsFileUpload(requestParameters: CreateAdminPanelFsFileUploadRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<FileManagerPage>;
3132
3228
  /**
3133
3229
  * Create email campaign
3134
3230
  */
@@ -3153,6 +3249,14 @@ export declare class StorefrontApi extends runtime.BaseAPI implements Storefront
3153
3249
  * Create Twilio account
3154
3250
  */
3155
3251
  createTwilioAccount(requestParameters: CreateTwilioAccountRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<TwilioResponse>;
3252
+ /**
3253
+ * Delete file manager directory for admin panel
3254
+ */
3255
+ deleteAdminPanelFsFileRaw(requestParameters: DeleteAdminPanelFsFileRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<runtime.ApiResponse<FileManagerPage>>;
3256
+ /**
3257
+ * Delete file manager directory for admin panel
3258
+ */
3259
+ deleteAdminPanelFsFile(requestParameters: DeleteAdminPanelFsFileRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<FileManagerPage>;
3156
3260
  /**
3157
3261
  * Delete email campaignFolder
3158
3262
  */
@@ -3293,6 +3397,14 @@ export declare class StorefrontApi extends runtime.BaseAPI implements Storefront
3293
3397
  * Obtain lat/long for an address
3294
3398
  */
3295
3399
  geocodeAddress(requestParameters: GeocodeAddressRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<GeocodeResponse>;
3400
+ /**
3401
+ * Get file manager directory for admin panel
3402
+ */
3403
+ getAdminPanelFsDirectoryRaw(requestParameters: GetAdminPanelFsDirectoryRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<runtime.ApiResponse<FileManagerPage>>;
3404
+ /**
3405
+ * Get file manager directory for admin panel
3406
+ */
3407
+ getAdminPanelFsDirectory(requestParameters: GetAdminPanelFsDirectoryRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<FileManagerPage>;
3296
3408
  /**
3297
3409
  * Obtain a list of all the countries
3298
3410
  * Get countries