@seekora-ai/admin-api 1.0.73 → 1.0.74
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 +11 -2
- package/api.ts +628 -0
- package/dist/api.d.ts +373 -0
- package/dist/api.js +463 -1
- package/dist/esm/api.d.ts +373 -0
- package/dist/esm/api.js +458 -0
- package/package.json +1 -1
- package/seekora-ai-admin-api-1.0.74.tgz +0 -0
- package/seekora-ai-admin-api-1.0.73.tgz +0 -0
package/dist/esm/api.d.ts
CHANGED
|
@@ -5947,6 +5947,12 @@ export interface AnalyticsQuerySuggestionConfig {
|
|
|
5947
5947
|
* @memberof AnalyticsQuerySuggestionConfig
|
|
5948
5948
|
*/
|
|
5949
5949
|
'category_counts'?: boolean;
|
|
5950
|
+
/**
|
|
5951
|
+
* Whether auto query suggestions management feature is enabled (controls UI visibility)
|
|
5952
|
+
* @type {boolean}
|
|
5953
|
+
* @memberof AnalyticsQuerySuggestionConfig
|
|
5954
|
+
*/
|
|
5955
|
+
'enable_auto_query_suggestions'?: boolean;
|
|
5950
5956
|
/**
|
|
5951
5957
|
* Whether to include category-based suggestions
|
|
5952
5958
|
* @type {boolean}
|
|
@@ -5959,6 +5965,12 @@ export interface AnalyticsQuerySuggestionConfig {
|
|
|
5959
5965
|
* @memberof AnalyticsQuerySuggestionConfig
|
|
5960
5966
|
*/
|
|
5961
5967
|
'enable_facet_suggestions'?: boolean;
|
|
5968
|
+
/**
|
|
5969
|
+
* Whether manual query suggestions management feature is enabled (controls UI visibility)
|
|
5970
|
+
* @type {boolean}
|
|
5971
|
+
* @memberof AnalyticsQuerySuggestionConfig
|
|
5972
|
+
*/
|
|
5973
|
+
'enable_manual_query_suggestions'?: boolean;
|
|
5962
5974
|
/**
|
|
5963
5975
|
* Personalization (boolean flag for now as requested)
|
|
5964
5976
|
* @type {boolean}
|
|
@@ -6786,12 +6798,24 @@ export interface AnalyticsUpdateSuggestionConfigRequest {
|
|
|
6786
6798
|
* @memberof AnalyticsUpdateSuggestionConfigRequest
|
|
6787
6799
|
*/
|
|
6788
6800
|
'category_counts'?: boolean;
|
|
6801
|
+
/**
|
|
6802
|
+
* Enable/disable auto query suggestions management feature (controls UI visibility)
|
|
6803
|
+
* @type {boolean}
|
|
6804
|
+
* @memberof AnalyticsUpdateSuggestionConfigRequest
|
|
6805
|
+
*/
|
|
6806
|
+
'enable_auto_query_suggestions'?: boolean;
|
|
6789
6807
|
/**
|
|
6790
6808
|
* Enable/disable facet-based suggestions
|
|
6791
6809
|
* @type {boolean}
|
|
6792
6810
|
* @memberof AnalyticsUpdateSuggestionConfigRequest
|
|
6793
6811
|
*/
|
|
6794
6812
|
'enable_facet_suggestions'?: boolean;
|
|
6813
|
+
/**
|
|
6814
|
+
* Enable/disable manual query suggestions management feature (controls UI visibility)
|
|
6815
|
+
* @type {boolean}
|
|
6816
|
+
* @memberof AnalyticsUpdateSuggestionConfigRequest
|
|
6817
|
+
*/
|
|
6818
|
+
'enable_manual_query_suggestions'?: boolean;
|
|
6795
6819
|
/**
|
|
6796
6820
|
* Enable personalization
|
|
6797
6821
|
* @type {boolean}
|
|
@@ -15163,6 +15187,12 @@ export interface DataTypesQuerySuggestionsConfig {
|
|
|
15163
15187
|
* @memberof DataTypesQuerySuggestionsConfig
|
|
15164
15188
|
*/
|
|
15165
15189
|
'category_attributes'?: Array<string>;
|
|
15190
|
+
/**
|
|
15191
|
+
* Whether auto query suggestions management feature is enabled (controls UI visibility)
|
|
15192
|
+
* @type {boolean}
|
|
15193
|
+
* @memberof DataTypesQuerySuggestionsConfig
|
|
15194
|
+
*/
|
|
15195
|
+
'enable_auto_query_suggestions'?: boolean;
|
|
15166
15196
|
/**
|
|
15167
15197
|
* Whether to include category-based suggestions
|
|
15168
15198
|
* @type {boolean}
|
|
@@ -15175,6 +15205,12 @@ export interface DataTypesQuerySuggestionsConfig {
|
|
|
15175
15205
|
* @memberof DataTypesQuerySuggestionsConfig
|
|
15176
15206
|
*/
|
|
15177
15207
|
'enable_facet_suggestions'?: boolean;
|
|
15208
|
+
/**
|
|
15209
|
+
* Whether manual query suggestions management feature is enabled (controls UI visibility)
|
|
15210
|
+
* @type {boolean}
|
|
15211
|
+
* @memberof DataTypesQuerySuggestionsConfig
|
|
15212
|
+
*/
|
|
15213
|
+
'enable_manual_query_suggestions'?: boolean;
|
|
15178
15214
|
/**
|
|
15179
15215
|
* Whether query suggestions are enabled for the store
|
|
15180
15216
|
* @type {boolean}
|
|
@@ -17062,6 +17098,109 @@ export interface DataTypesStore {
|
|
|
17062
17098
|
*/
|
|
17063
17099
|
'xStoreID'?: string;
|
|
17064
17100
|
}
|
|
17101
|
+
/**
|
|
17102
|
+
*
|
|
17103
|
+
* @export
|
|
17104
|
+
* @interface DataTypesStoreCreationRequest
|
|
17105
|
+
*/
|
|
17106
|
+
export interface DataTypesStoreCreationRequest {
|
|
17107
|
+
/**
|
|
17108
|
+
*
|
|
17109
|
+
* @type {{ [key: string]: any; }}
|
|
17110
|
+
* @memberof DataTypesStoreCreationRequest
|
|
17111
|
+
*/
|
|
17112
|
+
'data'?: {
|
|
17113
|
+
[key: string]: any;
|
|
17114
|
+
};
|
|
17115
|
+
/**
|
|
17116
|
+
*
|
|
17117
|
+
* @type {string}
|
|
17118
|
+
* @memberof DataTypesStoreCreationRequest
|
|
17119
|
+
*/
|
|
17120
|
+
'step': string;
|
|
17121
|
+
/**
|
|
17122
|
+
*
|
|
17123
|
+
* @type {string}
|
|
17124
|
+
* @memberof DataTypesStoreCreationRequest
|
|
17125
|
+
*/
|
|
17126
|
+
'visibleStep'?: string;
|
|
17127
|
+
}
|
|
17128
|
+
/**
|
|
17129
|
+
*
|
|
17130
|
+
* @export
|
|
17131
|
+
* @interface DataTypesStoreCreationResponse
|
|
17132
|
+
*/
|
|
17133
|
+
export interface DataTypesStoreCreationResponse {
|
|
17134
|
+
/**
|
|
17135
|
+
*
|
|
17136
|
+
* @type {string}
|
|
17137
|
+
* @memberof DataTypesStoreCreationResponse
|
|
17138
|
+
*/
|
|
17139
|
+
'jobId'?: string;
|
|
17140
|
+
/**
|
|
17141
|
+
*
|
|
17142
|
+
* @type {{ [key: string]: any; }}
|
|
17143
|
+
* @memberof DataTypesStoreCreationResponse
|
|
17144
|
+
*/
|
|
17145
|
+
'state'?: {
|
|
17146
|
+
[key: string]: any;
|
|
17147
|
+
};
|
|
17148
|
+
/**
|
|
17149
|
+
*
|
|
17150
|
+
* @type {string}
|
|
17151
|
+
* @memberof DataTypesStoreCreationResponse
|
|
17152
|
+
*/
|
|
17153
|
+
'step'?: string;
|
|
17154
|
+
/**
|
|
17155
|
+
*
|
|
17156
|
+
* @type {number}
|
|
17157
|
+
* @memberof DataTypesStoreCreationResponse
|
|
17158
|
+
*/
|
|
17159
|
+
'storeId'?: number;
|
|
17160
|
+
/**
|
|
17161
|
+
*
|
|
17162
|
+
* @type {string}
|
|
17163
|
+
* @memberof DataTypesStoreCreationResponse
|
|
17164
|
+
*/
|
|
17165
|
+
'visibleStep'?: string;
|
|
17166
|
+
/**
|
|
17167
|
+
*
|
|
17168
|
+
* @type {string}
|
|
17169
|
+
* @memberof DataTypesStoreCreationResponse
|
|
17170
|
+
*/
|
|
17171
|
+
'xStoreId'?: string;
|
|
17172
|
+
/**
|
|
17173
|
+
*
|
|
17174
|
+
* @type {string}
|
|
17175
|
+
* @memberof DataTypesStoreCreationResponse
|
|
17176
|
+
*/
|
|
17177
|
+
'xStoreSecret'?: string;
|
|
17178
|
+
}
|
|
17179
|
+
/**
|
|
17180
|
+
*
|
|
17181
|
+
* @export
|
|
17182
|
+
* @interface DataTypesStoreCreationResponseWrapper
|
|
17183
|
+
*/
|
|
17184
|
+
export interface DataTypesStoreCreationResponseWrapper {
|
|
17185
|
+
/**
|
|
17186
|
+
*
|
|
17187
|
+
* @type {DataTypesStoreCreationResponse}
|
|
17188
|
+
* @memberof DataTypesStoreCreationResponseWrapper
|
|
17189
|
+
*/
|
|
17190
|
+
'data'?: DataTypesStoreCreationResponse;
|
|
17191
|
+
/**
|
|
17192
|
+
*
|
|
17193
|
+
* @type {string}
|
|
17194
|
+
* @memberof DataTypesStoreCreationResponseWrapper
|
|
17195
|
+
*/
|
|
17196
|
+
'message'?: string;
|
|
17197
|
+
/**
|
|
17198
|
+
*
|
|
17199
|
+
* @type {number}
|
|
17200
|
+
* @memberof DataTypesStoreCreationResponseWrapper
|
|
17201
|
+
*/
|
|
17202
|
+
'status'?: number;
|
|
17203
|
+
}
|
|
17065
17204
|
/**
|
|
17066
17205
|
*
|
|
17067
17206
|
* @export
|
|
@@ -27514,6 +27653,16 @@ export declare const PaymentGatewayApiAxiosParamCreator: (configuration?: Config
|
|
|
27514
27653
|
* @throws {RequiredError}
|
|
27515
27654
|
*/
|
|
27516
27655
|
v1SubscriptionPlansGet: (options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
27656
|
+
/**
|
|
27657
|
+
* Returns a single subscription plan with all variants (monthly/annual × USD/INR). Accepts either numeric plan_id or hexadecimal plan_identifier. Can filter by currency and/or billing_frequency using query parameters.
|
|
27658
|
+
* @summary Get a single subscription plan by ID or identifier
|
|
27659
|
+
* @param {string} id Plan ID (numeric) or Plan Identifier (hexadecimal)
|
|
27660
|
+
* @param {string} [currency] Filter by currency code (e.g., USD, INR)
|
|
27661
|
+
* @param {string} [billingFrequency] Filter by billing frequency (monthly, annual)
|
|
27662
|
+
* @param {*} [options] Override http request option.
|
|
27663
|
+
* @throws {RequiredError}
|
|
27664
|
+
*/
|
|
27665
|
+
v1SubscriptionPlansIdGet: (id: string, currency?: string, billingFrequency?: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
27517
27666
|
};
|
|
27518
27667
|
/**
|
|
27519
27668
|
* PaymentGatewayApi - functional programming interface
|
|
@@ -27574,6 +27723,18 @@ export declare const PaymentGatewayApiFp: (configuration?: Configuration) => {
|
|
|
27574
27723
|
v1SubscriptionPlansGet(options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<{
|
|
27575
27724
|
[key: string]: any;
|
|
27576
27725
|
}>>;
|
|
27726
|
+
/**
|
|
27727
|
+
* Returns a single subscription plan with all variants (monthly/annual × USD/INR). Accepts either numeric plan_id or hexadecimal plan_identifier. Can filter by currency and/or billing_frequency using query parameters.
|
|
27728
|
+
* @summary Get a single subscription plan by ID or identifier
|
|
27729
|
+
* @param {string} id Plan ID (numeric) or Plan Identifier (hexadecimal)
|
|
27730
|
+
* @param {string} [currency] Filter by currency code (e.g., USD, INR)
|
|
27731
|
+
* @param {string} [billingFrequency] Filter by billing frequency (monthly, annual)
|
|
27732
|
+
* @param {*} [options] Override http request option.
|
|
27733
|
+
* @throws {RequiredError}
|
|
27734
|
+
*/
|
|
27735
|
+
v1SubscriptionPlansIdGet(id: string, currency?: string, billingFrequency?: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<{
|
|
27736
|
+
[key: string]: any;
|
|
27737
|
+
}>>;
|
|
27577
27738
|
};
|
|
27578
27739
|
/**
|
|
27579
27740
|
* PaymentGatewayApi - factory interface
|
|
@@ -27634,6 +27795,18 @@ export declare const PaymentGatewayApiFactory: (configuration?: Configuration, b
|
|
|
27634
27795
|
v1SubscriptionPlansGet(options?: RawAxiosRequestConfig): AxiosPromise<{
|
|
27635
27796
|
[key: string]: any;
|
|
27636
27797
|
}>;
|
|
27798
|
+
/**
|
|
27799
|
+
* Returns a single subscription plan with all variants (monthly/annual × USD/INR). Accepts either numeric plan_id or hexadecimal plan_identifier. Can filter by currency and/or billing_frequency using query parameters.
|
|
27800
|
+
* @summary Get a single subscription plan by ID or identifier
|
|
27801
|
+
* @param {string} id Plan ID (numeric) or Plan Identifier (hexadecimal)
|
|
27802
|
+
* @param {string} [currency] Filter by currency code (e.g., USD, INR)
|
|
27803
|
+
* @param {string} [billingFrequency] Filter by billing frequency (monthly, annual)
|
|
27804
|
+
* @param {*} [options] Override http request option.
|
|
27805
|
+
* @throws {RequiredError}
|
|
27806
|
+
*/
|
|
27807
|
+
v1SubscriptionPlansIdGet(id: string, currency?: string, billingFrequency?: string, options?: RawAxiosRequestConfig): AxiosPromise<{
|
|
27808
|
+
[key: string]: any;
|
|
27809
|
+
}>;
|
|
27637
27810
|
};
|
|
27638
27811
|
/**
|
|
27639
27812
|
* PaymentGatewayApi - object-oriented interface
|
|
@@ -27703,6 +27876,19 @@ export declare class PaymentGatewayApi extends BaseAPI {
|
|
|
27703
27876
|
v1SubscriptionPlansGet(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<{
|
|
27704
27877
|
[key: string]: any;
|
|
27705
27878
|
}, any, {}>>;
|
|
27879
|
+
/**
|
|
27880
|
+
* Returns a single subscription plan with all variants (monthly/annual × USD/INR). Accepts either numeric plan_id or hexadecimal plan_identifier. Can filter by currency and/or billing_frequency using query parameters.
|
|
27881
|
+
* @summary Get a single subscription plan by ID or identifier
|
|
27882
|
+
* @param {string} id Plan ID (numeric) or Plan Identifier (hexadecimal)
|
|
27883
|
+
* @param {string} [currency] Filter by currency code (e.g., USD, INR)
|
|
27884
|
+
* @param {string} [billingFrequency] Filter by billing frequency (monthly, annual)
|
|
27885
|
+
* @param {*} [options] Override http request option.
|
|
27886
|
+
* @throws {RequiredError}
|
|
27887
|
+
* @memberof PaymentGatewayApi
|
|
27888
|
+
*/
|
|
27889
|
+
v1SubscriptionPlansIdGet(id: string, currency?: string, billingFrequency?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<{
|
|
27890
|
+
[key: string]: any;
|
|
27891
|
+
}, any, {}>>;
|
|
27706
27892
|
}
|
|
27707
27893
|
/**
|
|
27708
27894
|
* PaymentsApi - axios parameter creator
|
|
@@ -31666,6 +31852,193 @@ export declare class StopwordsApi extends BaseAPI {
|
|
|
31666
31852
|
*/
|
|
31667
31853
|
adminStoresXStoreIDStopwordsWordlistsWordListIDWordsPost(xStoreID: string, wordListID: number, dataTypesAddWordsToLanguageListRequest: DataTypesAddWordsToLanguageListRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesUpdateWordStatusResponseWrapper, any, {}>>;
|
|
31668
31854
|
}
|
|
31855
|
+
/**
|
|
31856
|
+
* StoreCreationApi - axios parameter creator
|
|
31857
|
+
* @export
|
|
31858
|
+
*/
|
|
31859
|
+
export declare const StoreCreationApiAxiosParamCreator: (configuration?: Configuration) => {
|
|
31860
|
+
/**
|
|
31861
|
+
* Deletes (soft delete) the current store creation progress
|
|
31862
|
+
* @summary Delete store creation progress
|
|
31863
|
+
* @param {*} [options] Override http request option.
|
|
31864
|
+
* @throws {RequiredError}
|
|
31865
|
+
*/
|
|
31866
|
+
adminV1StoreCreationProgressDelete: (options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
31867
|
+
/**
|
|
31868
|
+
* Retrieves the current step and state of store creation for the user
|
|
31869
|
+
* @summary Get current store creation progress
|
|
31870
|
+
* @param {*} [options] Override http request option.
|
|
31871
|
+
* @throws {RequiredError}
|
|
31872
|
+
*/
|
|
31873
|
+
adminV1StoreCreationProgressGet: (options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
31874
|
+
/**
|
|
31875
|
+
* Uploads a custom schema JSON file for store data structure definition
|
|
31876
|
+
* @summary Upload custom schema for store
|
|
31877
|
+
* @param {File} file Schema JSON file
|
|
31878
|
+
* @param {*} [options] Override http request option.
|
|
31879
|
+
* @throws {RequiredError}
|
|
31880
|
+
*/
|
|
31881
|
+
adminV1StoreCreationSchemaUploadPost: (file: File, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
31882
|
+
/**
|
|
31883
|
+
* Updates a specific step in the store creation flow
|
|
31884
|
+
* @summary Update store creation step
|
|
31885
|
+
* @param {DataTypesStoreCreationRequest} dataTypesStoreCreationRequest Store creation step data
|
|
31886
|
+
* @param {*} [options] Override http request option.
|
|
31887
|
+
* @throws {RequiredError}
|
|
31888
|
+
*/
|
|
31889
|
+
adminV1StoreCreationStepPost: (dataTypesStoreCreationRequest: DataTypesStoreCreationRequest, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
31890
|
+
/**
|
|
31891
|
+
* Uploads a custom JSON or CSV file for store data import
|
|
31892
|
+
* @summary Upload custom data file for store
|
|
31893
|
+
* @param {number} storeId Store ID
|
|
31894
|
+
* @param {File} file Data file (JSON or CSV)
|
|
31895
|
+
* @param {*} [options] Override http request option.
|
|
31896
|
+
* @throws {RequiredError}
|
|
31897
|
+
*/
|
|
31898
|
+
adminV1StoreCreationStoreIdUploadDataPost: (storeId: number, file: File, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
31899
|
+
};
|
|
31900
|
+
/**
|
|
31901
|
+
* StoreCreationApi - functional programming interface
|
|
31902
|
+
* @export
|
|
31903
|
+
*/
|
|
31904
|
+
export declare const StoreCreationApiFp: (configuration?: Configuration) => {
|
|
31905
|
+
/**
|
|
31906
|
+
* Deletes (soft delete) the current store creation progress
|
|
31907
|
+
* @summary Delete store creation progress
|
|
31908
|
+
* @param {*} [options] Override http request option.
|
|
31909
|
+
* @throws {RequiredError}
|
|
31910
|
+
*/
|
|
31911
|
+
adminV1StoreCreationProgressDelete(options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<DataTypesResponse>>;
|
|
31912
|
+
/**
|
|
31913
|
+
* Retrieves the current step and state of store creation for the user
|
|
31914
|
+
* @summary Get current store creation progress
|
|
31915
|
+
* @param {*} [options] Override http request option.
|
|
31916
|
+
* @throws {RequiredError}
|
|
31917
|
+
*/
|
|
31918
|
+
adminV1StoreCreationProgressGet(options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<DataTypesStoreCreationResponseWrapper>>;
|
|
31919
|
+
/**
|
|
31920
|
+
* Uploads a custom schema JSON file for store data structure definition
|
|
31921
|
+
* @summary Upload custom schema for store
|
|
31922
|
+
* @param {File} file Schema JSON file
|
|
31923
|
+
* @param {*} [options] Override http request option.
|
|
31924
|
+
* @throws {RequiredError}
|
|
31925
|
+
*/
|
|
31926
|
+
adminV1StoreCreationSchemaUploadPost(file: File, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<DataTypesResponse>>;
|
|
31927
|
+
/**
|
|
31928
|
+
* Updates a specific step in the store creation flow
|
|
31929
|
+
* @summary Update store creation step
|
|
31930
|
+
* @param {DataTypesStoreCreationRequest} dataTypesStoreCreationRequest Store creation step data
|
|
31931
|
+
* @param {*} [options] Override http request option.
|
|
31932
|
+
* @throws {RequiredError}
|
|
31933
|
+
*/
|
|
31934
|
+
adminV1StoreCreationStepPost(dataTypesStoreCreationRequest: DataTypesStoreCreationRequest, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<DataTypesStoreCreationResponseWrapper>>;
|
|
31935
|
+
/**
|
|
31936
|
+
* Uploads a custom JSON or CSV file for store data import
|
|
31937
|
+
* @summary Upload custom data file for store
|
|
31938
|
+
* @param {number} storeId Store ID
|
|
31939
|
+
* @param {File} file Data file (JSON or CSV)
|
|
31940
|
+
* @param {*} [options] Override http request option.
|
|
31941
|
+
* @throws {RequiredError}
|
|
31942
|
+
*/
|
|
31943
|
+
adminV1StoreCreationStoreIdUploadDataPost(storeId: number, file: File, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<DataTypesResponse>>;
|
|
31944
|
+
};
|
|
31945
|
+
/**
|
|
31946
|
+
* StoreCreationApi - factory interface
|
|
31947
|
+
* @export
|
|
31948
|
+
*/
|
|
31949
|
+
export declare const StoreCreationApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
|
|
31950
|
+
/**
|
|
31951
|
+
* Deletes (soft delete) the current store creation progress
|
|
31952
|
+
* @summary Delete store creation progress
|
|
31953
|
+
* @param {*} [options] Override http request option.
|
|
31954
|
+
* @throws {RequiredError}
|
|
31955
|
+
*/
|
|
31956
|
+
adminV1StoreCreationProgressDelete(options?: RawAxiosRequestConfig): AxiosPromise<DataTypesResponse>;
|
|
31957
|
+
/**
|
|
31958
|
+
* Retrieves the current step and state of store creation for the user
|
|
31959
|
+
* @summary Get current store creation progress
|
|
31960
|
+
* @param {*} [options] Override http request option.
|
|
31961
|
+
* @throws {RequiredError}
|
|
31962
|
+
*/
|
|
31963
|
+
adminV1StoreCreationProgressGet(options?: RawAxiosRequestConfig): AxiosPromise<DataTypesStoreCreationResponseWrapper>;
|
|
31964
|
+
/**
|
|
31965
|
+
* Uploads a custom schema JSON file for store data structure definition
|
|
31966
|
+
* @summary Upload custom schema for store
|
|
31967
|
+
* @param {File} file Schema JSON file
|
|
31968
|
+
* @param {*} [options] Override http request option.
|
|
31969
|
+
* @throws {RequiredError}
|
|
31970
|
+
*/
|
|
31971
|
+
adminV1StoreCreationSchemaUploadPost(file: File, options?: RawAxiosRequestConfig): AxiosPromise<DataTypesResponse>;
|
|
31972
|
+
/**
|
|
31973
|
+
* Updates a specific step in the store creation flow
|
|
31974
|
+
* @summary Update store creation step
|
|
31975
|
+
* @param {DataTypesStoreCreationRequest} dataTypesStoreCreationRequest Store creation step data
|
|
31976
|
+
* @param {*} [options] Override http request option.
|
|
31977
|
+
* @throws {RequiredError}
|
|
31978
|
+
*/
|
|
31979
|
+
adminV1StoreCreationStepPost(dataTypesStoreCreationRequest: DataTypesStoreCreationRequest, options?: RawAxiosRequestConfig): AxiosPromise<DataTypesStoreCreationResponseWrapper>;
|
|
31980
|
+
/**
|
|
31981
|
+
* Uploads a custom JSON or CSV file for store data import
|
|
31982
|
+
* @summary Upload custom data file for store
|
|
31983
|
+
* @param {number} storeId Store ID
|
|
31984
|
+
* @param {File} file Data file (JSON or CSV)
|
|
31985
|
+
* @param {*} [options] Override http request option.
|
|
31986
|
+
* @throws {RequiredError}
|
|
31987
|
+
*/
|
|
31988
|
+
adminV1StoreCreationStoreIdUploadDataPost(storeId: number, file: File, options?: RawAxiosRequestConfig): AxiosPromise<DataTypesResponse>;
|
|
31989
|
+
};
|
|
31990
|
+
/**
|
|
31991
|
+
* StoreCreationApi - object-oriented interface
|
|
31992
|
+
* @export
|
|
31993
|
+
* @class StoreCreationApi
|
|
31994
|
+
* @extends {BaseAPI}
|
|
31995
|
+
*/
|
|
31996
|
+
export declare class StoreCreationApi extends BaseAPI {
|
|
31997
|
+
/**
|
|
31998
|
+
* Deletes (soft delete) the current store creation progress
|
|
31999
|
+
* @summary Delete store creation progress
|
|
32000
|
+
* @param {*} [options] Override http request option.
|
|
32001
|
+
* @throws {RequiredError}
|
|
32002
|
+
* @memberof StoreCreationApi
|
|
32003
|
+
*/
|
|
32004
|
+
adminV1StoreCreationProgressDelete(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesResponse, any, {}>>;
|
|
32005
|
+
/**
|
|
32006
|
+
* Retrieves the current step and state of store creation for the user
|
|
32007
|
+
* @summary Get current store creation progress
|
|
32008
|
+
* @param {*} [options] Override http request option.
|
|
32009
|
+
* @throws {RequiredError}
|
|
32010
|
+
* @memberof StoreCreationApi
|
|
32011
|
+
*/
|
|
32012
|
+
adminV1StoreCreationProgressGet(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesStoreCreationResponseWrapper, any, {}>>;
|
|
32013
|
+
/**
|
|
32014
|
+
* Uploads a custom schema JSON file for store data structure definition
|
|
32015
|
+
* @summary Upload custom schema for store
|
|
32016
|
+
* @param {File} file Schema JSON file
|
|
32017
|
+
* @param {*} [options] Override http request option.
|
|
32018
|
+
* @throws {RequiredError}
|
|
32019
|
+
* @memberof StoreCreationApi
|
|
32020
|
+
*/
|
|
32021
|
+
adminV1StoreCreationSchemaUploadPost(file: File, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesResponse, any, {}>>;
|
|
32022
|
+
/**
|
|
32023
|
+
* Updates a specific step in the store creation flow
|
|
32024
|
+
* @summary Update store creation step
|
|
32025
|
+
* @param {DataTypesStoreCreationRequest} dataTypesStoreCreationRequest Store creation step data
|
|
32026
|
+
* @param {*} [options] Override http request option.
|
|
32027
|
+
* @throws {RequiredError}
|
|
32028
|
+
* @memberof StoreCreationApi
|
|
32029
|
+
*/
|
|
32030
|
+
adminV1StoreCreationStepPost(dataTypesStoreCreationRequest: DataTypesStoreCreationRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesStoreCreationResponseWrapper, any, {}>>;
|
|
32031
|
+
/**
|
|
32032
|
+
* Uploads a custom JSON or CSV file for store data import
|
|
32033
|
+
* @summary Upload custom data file for store
|
|
32034
|
+
* @param {number} storeId Store ID
|
|
32035
|
+
* @param {File} file Data file (JSON or CSV)
|
|
32036
|
+
* @param {*} [options] Override http request option.
|
|
32037
|
+
* @throws {RequiredError}
|
|
32038
|
+
* @memberof StoreCreationApi
|
|
32039
|
+
*/
|
|
32040
|
+
adminV1StoreCreationStoreIdUploadDataPost(storeId: number, file: File, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesResponse, any, {}>>;
|
|
32041
|
+
}
|
|
31669
32042
|
/**
|
|
31670
32043
|
* StoreDocumentsApi - axios parameter creator
|
|
31671
32044
|
* @export
|