@seekora-ai/admin-api 1.0.72 → 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/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
@@ -19252,6 +19391,62 @@ export interface RefundSubscriptionInfoDto {
19252
19391
  */
19253
19392
  'will_be_cancelled'?: boolean;
19254
19393
  }
19394
+ /**
19395
+ *
19396
+ * @export
19397
+ * @interface SubscriptionRouteCancelPreviewRequest
19398
+ */
19399
+ export interface SubscriptionRouteCancelPreviewRequest {
19400
+ /**
19401
+ *
19402
+ * @type {number}
19403
+ * @memberof SubscriptionRouteCancelPreviewRequest
19404
+ */
19405
+ 'org_id': number;
19406
+ /**
19407
+ *
19408
+ * @type {string}
19409
+ * @memberof SubscriptionRouteCancelPreviewRequest
19410
+ */
19411
+ 'reason': string;
19412
+ /**
19413
+ *
19414
+ * @type {string}
19415
+ * @memberof SubscriptionRouteCancelPreviewRequest
19416
+ */
19417
+ 'subscription_id': string;
19418
+ }
19419
+ /**
19420
+ *
19421
+ * @export
19422
+ * @interface SubscriptionRouteCancelProcessRequest
19423
+ */
19424
+ export interface SubscriptionRouteCancelProcessRequest {
19425
+ /**
19426
+ * true = cancel now, false = cancel at cycle end
19427
+ * @type {boolean}
19428
+ * @memberof SubscriptionRouteCancelProcessRequest
19429
+ */
19430
+ 'immediate_cancellation'?: boolean;
19431
+ /**
19432
+ *
19433
+ * @type {number}
19434
+ * @memberof SubscriptionRouteCancelProcessRequest
19435
+ */
19436
+ 'org_id': number;
19437
+ /**
19438
+ *
19439
+ * @type {string}
19440
+ * @memberof SubscriptionRouteCancelProcessRequest
19441
+ */
19442
+ 'reason': string;
19443
+ /**
19444
+ *
19445
+ * @type {string}
19446
+ * @memberof SubscriptionRouteCancelProcessRequest
19447
+ */
19448
+ 'subscription_id': string;
19449
+ }
19255
19450
  /**
19256
19451
  *
19257
19452
  * @export
@@ -27458,6 +27653,16 @@ export declare const PaymentGatewayApiAxiosParamCreator: (configuration?: Config
27458
27653
  * @throws {RequiredError}
27459
27654
  */
27460
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>;
27461
27666
  };
27462
27667
  /**
27463
27668
  * PaymentGatewayApi - functional programming interface
@@ -27518,6 +27723,18 @@ export declare const PaymentGatewayApiFp: (configuration?: Configuration) => {
27518
27723
  v1SubscriptionPlansGet(options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<{
27519
27724
  [key: string]: any;
27520
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
+ }>>;
27521
27738
  };
27522
27739
  /**
27523
27740
  * PaymentGatewayApi - factory interface
@@ -27578,6 +27795,18 @@ export declare const PaymentGatewayApiFactory: (configuration?: Configuration, b
27578
27795
  v1SubscriptionPlansGet(options?: RawAxiosRequestConfig): AxiosPromise<{
27579
27796
  [key: string]: any;
27580
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
+ }>;
27581
27810
  };
27582
27811
  /**
27583
27812
  * PaymentGatewayApi - object-oriented interface
@@ -27647,6 +27876,19 @@ export declare class PaymentGatewayApi extends BaseAPI {
27647
27876
  v1SubscriptionPlansGet(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<{
27648
27877
  [key: string]: any;
27649
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, {}>>;
27650
27892
  }
27651
27893
  /**
27652
27894
  * PaymentsApi - axios parameter creator
@@ -31610,6 +31852,193 @@ export declare class StopwordsApi extends BaseAPI {
31610
31852
  */
31611
31853
  adminStoresXStoreIDStopwordsWordlistsWordListIDWordsPost(xStoreID: string, wordListID: number, dataTypesAddWordsToLanguageListRequest: DataTypesAddWordsToLanguageListRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesUpdateWordStatusResponseWrapper, any, {}>>;
31612
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
+ }
31613
32042
  /**
31614
32043
  * StoreDocumentsApi - axios parameter creator
31615
32044
  * @export
@@ -32280,6 +32709,22 @@ export declare class StoresApi extends BaseAPI {
32280
32709
  * @export
32281
32710
  */
32282
32711
  export declare const SubscriptionsApiAxiosParamCreator: (configuration?: Configuration) => {
32712
+ /**
32713
+ * Shows detailed preview of subscription cancellation including credit calculation, billing period info, and potential refund
32714
+ * @summary Preview subscription cancellation details
32715
+ * @param {SubscriptionRouteCancelPreviewRequest} subscriptionRouteCancelPreviewRequest Cancellation preview request
32716
+ * @param {*} [options] Override http request option.
32717
+ * @throws {RequiredError}
32718
+ */
32719
+ adminSubscriptionsCancelPreviewPost: (subscriptionRouteCancelPreviewRequest: SubscriptionRouteCancelPreviewRequest, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
32720
+ /**
32721
+ * Cancels the subscription, removes unused credits, and processes refund if applicable
32722
+ * @summary Process subscription cancellation
32723
+ * @param {SubscriptionRouteCancelProcessRequest} subscriptionRouteCancelProcessRequest Cancellation process request
32724
+ * @param {*} [options] Override http request option.
32725
+ * @throws {RequiredError}
32726
+ */
32727
+ adminSubscriptionsCancelProcessPost: (subscriptionRouteCancelProcessRequest: SubscriptionRouteCancelProcessRequest, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
32283
32728
  /**
32284
32729
  * Updates Subscription information by ID.
32285
32730
  * @summary Update an existing Subscription
@@ -32327,6 +32772,22 @@ export declare const SubscriptionsApiAxiosParamCreator: (configuration?: Configu
32327
32772
  * @export
32328
32773
  */
32329
32774
  export declare const SubscriptionsApiFp: (configuration?: Configuration) => {
32775
+ /**
32776
+ * Shows detailed preview of subscription cancellation including credit calculation, billing period info, and potential refund
32777
+ * @summary Preview subscription cancellation details
32778
+ * @param {SubscriptionRouteCancelPreviewRequest} subscriptionRouteCancelPreviewRequest Cancellation preview request
32779
+ * @param {*} [options] Override http request option.
32780
+ * @throws {RequiredError}
32781
+ */
32782
+ adminSubscriptionsCancelPreviewPost(subscriptionRouteCancelPreviewRequest: SubscriptionRouteCancelPreviewRequest, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<DataTypesResponse>>;
32783
+ /**
32784
+ * Cancels the subscription, removes unused credits, and processes refund if applicable
32785
+ * @summary Process subscription cancellation
32786
+ * @param {SubscriptionRouteCancelProcessRequest} subscriptionRouteCancelProcessRequest Cancellation process request
32787
+ * @param {*} [options] Override http request option.
32788
+ * @throws {RequiredError}
32789
+ */
32790
+ adminSubscriptionsCancelProcessPost(subscriptionRouteCancelProcessRequest: SubscriptionRouteCancelProcessRequest, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<DataTypesResponse>>;
32330
32791
  /**
32331
32792
  * Updates Subscription information by ID.
32332
32793
  * @summary Update an existing Subscription
@@ -32374,6 +32835,22 @@ export declare const SubscriptionsApiFp: (configuration?: Configuration) => {
32374
32835
  * @export
32375
32836
  */
32376
32837
  export declare const SubscriptionsApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
32838
+ /**
32839
+ * Shows detailed preview of subscription cancellation including credit calculation, billing period info, and potential refund
32840
+ * @summary Preview subscription cancellation details
32841
+ * @param {SubscriptionRouteCancelPreviewRequest} subscriptionRouteCancelPreviewRequest Cancellation preview request
32842
+ * @param {*} [options] Override http request option.
32843
+ * @throws {RequiredError}
32844
+ */
32845
+ adminSubscriptionsCancelPreviewPost(subscriptionRouteCancelPreviewRequest: SubscriptionRouteCancelPreviewRequest, options?: RawAxiosRequestConfig): AxiosPromise<DataTypesResponse>;
32846
+ /**
32847
+ * Cancels the subscription, removes unused credits, and processes refund if applicable
32848
+ * @summary Process subscription cancellation
32849
+ * @param {SubscriptionRouteCancelProcessRequest} subscriptionRouteCancelProcessRequest Cancellation process request
32850
+ * @param {*} [options] Override http request option.
32851
+ * @throws {RequiredError}
32852
+ */
32853
+ adminSubscriptionsCancelProcessPost(subscriptionRouteCancelProcessRequest: SubscriptionRouteCancelProcessRequest, options?: RawAxiosRequestConfig): AxiosPromise<DataTypesResponse>;
32377
32854
  /**
32378
32855
  * Updates Subscription information by ID.
32379
32856
  * @summary Update an existing Subscription
@@ -32423,6 +32900,24 @@ export declare const SubscriptionsApiFactory: (configuration?: Configuration, ba
32423
32900
  * @extends {BaseAPI}
32424
32901
  */
32425
32902
  export declare class SubscriptionsApi extends BaseAPI {
32903
+ /**
32904
+ * Shows detailed preview of subscription cancellation including credit calculation, billing period info, and potential refund
32905
+ * @summary Preview subscription cancellation details
32906
+ * @param {SubscriptionRouteCancelPreviewRequest} subscriptionRouteCancelPreviewRequest Cancellation preview request
32907
+ * @param {*} [options] Override http request option.
32908
+ * @throws {RequiredError}
32909
+ * @memberof SubscriptionsApi
32910
+ */
32911
+ adminSubscriptionsCancelPreviewPost(subscriptionRouteCancelPreviewRequest: SubscriptionRouteCancelPreviewRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesResponse, any, {}>>;
32912
+ /**
32913
+ * Cancels the subscription, removes unused credits, and processes refund if applicable
32914
+ * @summary Process subscription cancellation
32915
+ * @param {SubscriptionRouteCancelProcessRequest} subscriptionRouteCancelProcessRequest Cancellation process request
32916
+ * @param {*} [options] Override http request option.
32917
+ * @throws {RequiredError}
32918
+ * @memberof SubscriptionsApi
32919
+ */
32920
+ adminSubscriptionsCancelProcessPost(subscriptionRouteCancelProcessRequest: SubscriptionRouteCancelProcessRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesResponse, any, {}>>;
32426
32921
  /**
32427
32922
  * Updates Subscription information by ID.
32428
32923
  * @summary Update an existing Subscription