@seekora-ai/admin-api 1.0.79 → 1.0.80

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
@@ -1514,6 +1514,19 @@ export declare const AnalyticsBannedMatchType: {
1514
1514
  readonly BannedMatchCustom: "custom";
1515
1515
  };
1516
1516
  export type AnalyticsBannedMatchType = typeof AnalyticsBannedMatchType[keyof typeof AnalyticsBannedMatchType];
1517
+ /**
1518
+ *
1519
+ * @export
1520
+ * @interface AnalyticsBatchPostRequest
1521
+ */
1522
+ export interface AnalyticsBatchPostRequest {
1523
+ /**
1524
+ *
1525
+ * @type {Array<DataTypesEventPayload>}
1526
+ * @memberof AnalyticsBatchPostRequest
1527
+ */
1528
+ 'events'?: Array<DataTypesEventPayload>;
1529
+ }
1517
1530
  /**
1518
1531
  *
1519
1532
  * @export
@@ -6989,19 +7002,6 @@ export interface AnalyticsWidgetData {
6989
7002
  */
6990
7003
  'tertiary_text'?: string;
6991
7004
  }
6992
- /**
6993
- *
6994
- * @export
6995
- * @interface ApiAnalyticsBatchPostRequest
6996
- */
6997
- export interface ApiAnalyticsBatchPostRequest {
6998
- /**
6999
- *
7000
- * @type {Array<DataTypesEventPayload>}
7001
- * @memberof ApiAnalyticsBatchPostRequest
7002
- */
7003
- 'events'?: Array<DataTypesEventPayload>;
7004
- }
7005
7005
  /**
7006
7006
  *
7007
7007
  * @export
@@ -22777,11 +22777,11 @@ export declare const AnalyticsEventsApiAxiosParamCreator: (configuration?: Confi
22777
22777
  * @summary Submit Batch Analytics Events
22778
22778
  * @param {string} xStoreid Store ID for analytics tracking
22779
22779
  * @param {string} xStoresecret Store secret for authentication
22780
- * @param {ApiAnalyticsBatchPostRequest} apiAnalyticsBatchPostRequest Batch event request with array of events
22780
+ * @param {AnalyticsBatchPostRequest} analyticsBatchPostRequest Batch event request with array of events
22781
22781
  * @param {*} [options] Override http request option.
22782
22782
  * @throws {RequiredError}
22783
22783
  */
22784
- apiAnalyticsBatchPost: (xStoreid: string, xStoresecret: string, apiAnalyticsBatchPostRequest: ApiAnalyticsBatchPostRequest, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
22784
+ analyticsBatchPost: (xStoreid: string, xStoresecret: string, analyticsBatchPostRequest: AnalyticsBatchPostRequest, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
22785
22785
  /**
22786
22786
  * Retrieve analytics configuration including supported event types, batch limits, and funnel stages for client integration
22787
22787
  * @summary Get Analytics Configuration
@@ -22790,7 +22790,7 @@ export declare const AnalyticsEventsApiAxiosParamCreator: (configuration?: Confi
22790
22790
  * @param {*} [options] Override http request option.
22791
22791
  * @throws {RequiredError}
22792
22792
  */
22793
- apiAnalyticsConfigGet: (xStoreid: string, xStoresecret: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
22793
+ analyticsConfigGet: (xStoreid: string, xStoresecret: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
22794
22794
  /**
22795
22795
  * Submit a single analytics event for tracking user interactions, search behavior, and conversions
22796
22796
  * @summary Submit Analytics Event
@@ -22800,7 +22800,7 @@ export declare const AnalyticsEventsApiAxiosParamCreator: (configuration?: Confi
22800
22800
  * @param {*} [options] Override http request option.
22801
22801
  * @throws {RequiredError}
22802
22802
  */
22803
- apiAnalyticsEventPost: (xStoreid: string, xStoresecret: string, dataTypesEventPayload: DataTypesEventPayload, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
22803
+ analyticsEventPost: (xStoreid: string, xStoresecret: string, dataTypesEventPayload: DataTypesEventPayload, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
22804
22804
  /**
22805
22805
  * Retrieve the complete event schema including required and optional fields, data types, and validation rules
22806
22806
  * @summary Get Event Schema
@@ -22809,7 +22809,7 @@ export declare const AnalyticsEventsApiAxiosParamCreator: (configuration?: Confi
22809
22809
  * @param {*} [options] Override http request option.
22810
22810
  * @throws {RequiredError}
22811
22811
  */
22812
- apiAnalyticsSchemaGet: (xStoreid: string, xStoresecret: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
22812
+ analyticsSchemaGet: (xStoreid: string, xStoresecret: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
22813
22813
  /**
22814
22814
  * Validate an analytics event payload without actually processing or storing it
22815
22815
  * @summary Validate Analytics Event
@@ -22819,7 +22819,7 @@ export declare const AnalyticsEventsApiAxiosParamCreator: (configuration?: Confi
22819
22819
  * @param {*} [options] Override http request option.
22820
22820
  * @throws {RequiredError}
22821
22821
  */
22822
- apiAnalyticsValidatePost: (xStoreid: string, xStoresecret: string, dataTypesEventPayload: DataTypesEventPayload, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
22822
+ analyticsValidatePost: (xStoreid: string, xStoresecret: string, dataTypesEventPayload: DataTypesEventPayload, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
22823
22823
  };
22824
22824
  /**
22825
22825
  * AnalyticsEventsApi - functional programming interface
@@ -22831,11 +22831,11 @@ export declare const AnalyticsEventsApiFp: (configuration?: Configuration) => {
22831
22831
  * @summary Submit Batch Analytics Events
22832
22832
  * @param {string} xStoreid Store ID for analytics tracking
22833
22833
  * @param {string} xStoresecret Store secret for authentication
22834
- * @param {ApiAnalyticsBatchPostRequest} apiAnalyticsBatchPostRequest Batch event request with array of events
22834
+ * @param {AnalyticsBatchPostRequest} analyticsBatchPostRequest Batch event request with array of events
22835
22835
  * @param {*} [options] Override http request option.
22836
22836
  * @throws {RequiredError}
22837
22837
  */
22838
- apiAnalyticsBatchPost(xStoreid: string, xStoresecret: string, apiAnalyticsBatchPostRequest: ApiAnalyticsBatchPostRequest, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<DataTypesResponse>>;
22838
+ analyticsBatchPost(xStoreid: string, xStoresecret: string, analyticsBatchPostRequest: AnalyticsBatchPostRequest, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<DataTypesResponse>>;
22839
22839
  /**
22840
22840
  * Retrieve analytics configuration including supported event types, batch limits, and funnel stages for client integration
22841
22841
  * @summary Get Analytics Configuration
@@ -22844,7 +22844,7 @@ export declare const AnalyticsEventsApiFp: (configuration?: Configuration) => {
22844
22844
  * @param {*} [options] Override http request option.
22845
22845
  * @throws {RequiredError}
22846
22846
  */
22847
- apiAnalyticsConfigGet(xStoreid: string, xStoresecret: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<DataTypesResponse>>;
22847
+ analyticsConfigGet(xStoreid: string, xStoresecret: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<DataTypesResponse>>;
22848
22848
  /**
22849
22849
  * Submit a single analytics event for tracking user interactions, search behavior, and conversions
22850
22850
  * @summary Submit Analytics Event
@@ -22854,7 +22854,7 @@ export declare const AnalyticsEventsApiFp: (configuration?: Configuration) => {
22854
22854
  * @param {*} [options] Override http request option.
22855
22855
  * @throws {RequiredError}
22856
22856
  */
22857
- apiAnalyticsEventPost(xStoreid: string, xStoresecret: string, dataTypesEventPayload: DataTypesEventPayload, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<DataTypesResponse>>;
22857
+ analyticsEventPost(xStoreid: string, xStoresecret: string, dataTypesEventPayload: DataTypesEventPayload, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<DataTypesResponse>>;
22858
22858
  /**
22859
22859
  * Retrieve the complete event schema including required and optional fields, data types, and validation rules
22860
22860
  * @summary Get Event Schema
@@ -22863,7 +22863,7 @@ export declare const AnalyticsEventsApiFp: (configuration?: Configuration) => {
22863
22863
  * @param {*} [options] Override http request option.
22864
22864
  * @throws {RequiredError}
22865
22865
  */
22866
- apiAnalyticsSchemaGet(xStoreid: string, xStoresecret: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<DataTypesResponse>>;
22866
+ analyticsSchemaGet(xStoreid: string, xStoresecret: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<DataTypesResponse>>;
22867
22867
  /**
22868
22868
  * Validate an analytics event payload without actually processing or storing it
22869
22869
  * @summary Validate Analytics Event
@@ -22873,7 +22873,7 @@ export declare const AnalyticsEventsApiFp: (configuration?: Configuration) => {
22873
22873
  * @param {*} [options] Override http request option.
22874
22874
  * @throws {RequiredError}
22875
22875
  */
22876
- apiAnalyticsValidatePost(xStoreid: string, xStoresecret: string, dataTypesEventPayload: DataTypesEventPayload, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<DataTypesResponse>>;
22876
+ analyticsValidatePost(xStoreid: string, xStoresecret: string, dataTypesEventPayload: DataTypesEventPayload, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<DataTypesResponse>>;
22877
22877
  };
22878
22878
  /**
22879
22879
  * AnalyticsEventsApi - factory interface
@@ -22885,11 +22885,11 @@ export declare const AnalyticsEventsApiFactory: (configuration?: Configuration,
22885
22885
  * @summary Submit Batch Analytics Events
22886
22886
  * @param {string} xStoreid Store ID for analytics tracking
22887
22887
  * @param {string} xStoresecret Store secret for authentication
22888
- * @param {ApiAnalyticsBatchPostRequest} apiAnalyticsBatchPostRequest Batch event request with array of events
22888
+ * @param {AnalyticsBatchPostRequest} analyticsBatchPostRequest Batch event request with array of events
22889
22889
  * @param {*} [options] Override http request option.
22890
22890
  * @throws {RequiredError}
22891
22891
  */
22892
- apiAnalyticsBatchPost(xStoreid: string, xStoresecret: string, apiAnalyticsBatchPostRequest: ApiAnalyticsBatchPostRequest, options?: RawAxiosRequestConfig): AxiosPromise<DataTypesResponse>;
22892
+ analyticsBatchPost(xStoreid: string, xStoresecret: string, analyticsBatchPostRequest: AnalyticsBatchPostRequest, options?: RawAxiosRequestConfig): AxiosPromise<DataTypesResponse>;
22893
22893
  /**
22894
22894
  * Retrieve analytics configuration including supported event types, batch limits, and funnel stages for client integration
22895
22895
  * @summary Get Analytics Configuration
@@ -22898,7 +22898,7 @@ export declare const AnalyticsEventsApiFactory: (configuration?: Configuration,
22898
22898
  * @param {*} [options] Override http request option.
22899
22899
  * @throws {RequiredError}
22900
22900
  */
22901
- apiAnalyticsConfigGet(xStoreid: string, xStoresecret: string, options?: RawAxiosRequestConfig): AxiosPromise<DataTypesResponse>;
22901
+ analyticsConfigGet(xStoreid: string, xStoresecret: string, options?: RawAxiosRequestConfig): AxiosPromise<DataTypesResponse>;
22902
22902
  /**
22903
22903
  * Submit a single analytics event for tracking user interactions, search behavior, and conversions
22904
22904
  * @summary Submit Analytics Event
@@ -22908,7 +22908,7 @@ export declare const AnalyticsEventsApiFactory: (configuration?: Configuration,
22908
22908
  * @param {*} [options] Override http request option.
22909
22909
  * @throws {RequiredError}
22910
22910
  */
22911
- apiAnalyticsEventPost(xStoreid: string, xStoresecret: string, dataTypesEventPayload: DataTypesEventPayload, options?: RawAxiosRequestConfig): AxiosPromise<DataTypesResponse>;
22911
+ analyticsEventPost(xStoreid: string, xStoresecret: string, dataTypesEventPayload: DataTypesEventPayload, options?: RawAxiosRequestConfig): AxiosPromise<DataTypesResponse>;
22912
22912
  /**
22913
22913
  * Retrieve the complete event schema including required and optional fields, data types, and validation rules
22914
22914
  * @summary Get Event Schema
@@ -22917,7 +22917,7 @@ export declare const AnalyticsEventsApiFactory: (configuration?: Configuration,
22917
22917
  * @param {*} [options] Override http request option.
22918
22918
  * @throws {RequiredError}
22919
22919
  */
22920
- apiAnalyticsSchemaGet(xStoreid: string, xStoresecret: string, options?: RawAxiosRequestConfig): AxiosPromise<DataTypesResponse>;
22920
+ analyticsSchemaGet(xStoreid: string, xStoresecret: string, options?: RawAxiosRequestConfig): AxiosPromise<DataTypesResponse>;
22921
22921
  /**
22922
22922
  * Validate an analytics event payload without actually processing or storing it
22923
22923
  * @summary Validate Analytics Event
@@ -22927,7 +22927,7 @@ export declare const AnalyticsEventsApiFactory: (configuration?: Configuration,
22927
22927
  * @param {*} [options] Override http request option.
22928
22928
  * @throws {RequiredError}
22929
22929
  */
22930
- apiAnalyticsValidatePost(xStoreid: string, xStoresecret: string, dataTypesEventPayload: DataTypesEventPayload, options?: RawAxiosRequestConfig): AxiosPromise<DataTypesResponse>;
22930
+ analyticsValidatePost(xStoreid: string, xStoresecret: string, dataTypesEventPayload: DataTypesEventPayload, options?: RawAxiosRequestConfig): AxiosPromise<DataTypesResponse>;
22931
22931
  };
22932
22932
  /**
22933
22933
  * AnalyticsEventsApi - object-oriented interface
@@ -22941,12 +22941,12 @@ export declare class AnalyticsEventsApi extends BaseAPI {
22941
22941
  * @summary Submit Batch Analytics Events
22942
22942
  * @param {string} xStoreid Store ID for analytics tracking
22943
22943
  * @param {string} xStoresecret Store secret for authentication
22944
- * @param {ApiAnalyticsBatchPostRequest} apiAnalyticsBatchPostRequest Batch event request with array of events
22944
+ * @param {AnalyticsBatchPostRequest} analyticsBatchPostRequest Batch event request with array of events
22945
22945
  * @param {*} [options] Override http request option.
22946
22946
  * @throws {RequiredError}
22947
22947
  * @memberof AnalyticsEventsApi
22948
22948
  */
22949
- apiAnalyticsBatchPost(xStoreid: string, xStoresecret: string, apiAnalyticsBatchPostRequest: ApiAnalyticsBatchPostRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesResponse, any, {}>>;
22949
+ analyticsBatchPost(xStoreid: string, xStoresecret: string, analyticsBatchPostRequest: AnalyticsBatchPostRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesResponse, any, {}>>;
22950
22950
  /**
22951
22951
  * Retrieve analytics configuration including supported event types, batch limits, and funnel stages for client integration
22952
22952
  * @summary Get Analytics Configuration
@@ -22956,7 +22956,7 @@ export declare class AnalyticsEventsApi extends BaseAPI {
22956
22956
  * @throws {RequiredError}
22957
22957
  * @memberof AnalyticsEventsApi
22958
22958
  */
22959
- apiAnalyticsConfigGet(xStoreid: string, xStoresecret: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesResponse, any, {}>>;
22959
+ analyticsConfigGet(xStoreid: string, xStoresecret: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesResponse, any, {}>>;
22960
22960
  /**
22961
22961
  * Submit a single analytics event for tracking user interactions, search behavior, and conversions
22962
22962
  * @summary Submit Analytics Event
@@ -22967,7 +22967,7 @@ export declare class AnalyticsEventsApi extends BaseAPI {
22967
22967
  * @throws {RequiredError}
22968
22968
  * @memberof AnalyticsEventsApi
22969
22969
  */
22970
- apiAnalyticsEventPost(xStoreid: string, xStoresecret: string, dataTypesEventPayload: DataTypesEventPayload, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesResponse, any, {}>>;
22970
+ analyticsEventPost(xStoreid: string, xStoresecret: string, dataTypesEventPayload: DataTypesEventPayload, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesResponse, any, {}>>;
22971
22971
  /**
22972
22972
  * Retrieve the complete event schema including required and optional fields, data types, and validation rules
22973
22973
  * @summary Get Event Schema
@@ -22977,7 +22977,7 @@ export declare class AnalyticsEventsApi extends BaseAPI {
22977
22977
  * @throws {RequiredError}
22978
22978
  * @memberof AnalyticsEventsApi
22979
22979
  */
22980
- apiAnalyticsSchemaGet(xStoreid: string, xStoresecret: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesResponse, any, {}>>;
22980
+ analyticsSchemaGet(xStoreid: string, xStoresecret: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesResponse, any, {}>>;
22981
22981
  /**
22982
22982
  * Validate an analytics event payload without actually processing or storing it
22983
22983
  * @summary Validate Analytics Event
@@ -22988,7 +22988,7 @@ export declare class AnalyticsEventsApi extends BaseAPI {
22988
22988
  * @throws {RequiredError}
22989
22989
  * @memberof AnalyticsEventsApi
22990
22990
  */
22991
- apiAnalyticsValidatePost(xStoreid: string, xStoresecret: string, dataTypesEventPayload: DataTypesEventPayload, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesResponse, any, {}>>;
22991
+ analyticsValidatePost(xStoreid: string, xStoresecret: string, dataTypesEventPayload: DataTypesEventPayload, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesResponse, any, {}>>;
22992
22992
  }
22993
22993
  /**
22994
22994
  * AnalyticsRulesApi - axios parameter creator
@@ -23978,7 +23978,7 @@ export declare const AutomatedRefundManagementApiAxiosParamCreator: (configurati
23978
23978
  * @param {*} [options] Override http request option.
23979
23979
  * @throws {RequiredError}
23980
23980
  */
23981
- apiRefundAutomatedPreviewPost: (refundRefundPreviewRequestDto: RefundRefundPreviewRequestDto, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
23981
+ refundAutomatedPreviewPost: (refundRefundPreviewRequestDto: RefundRefundPreviewRequestDto, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
23982
23982
  /**
23983
23983
  * Processes refund automatically with subscription cancellation, Razorpay integration, and credit adjustments
23984
23984
  * @summary Process automated refund
@@ -23986,7 +23986,7 @@ export declare const AutomatedRefundManagementApiAxiosParamCreator: (configurati
23986
23986
  * @param {*} [options] Override http request option.
23987
23987
  * @throws {RequiredError}
23988
23988
  */
23989
- apiRefundAutomatedProcessPost: (refundRefundPreviewRequestDto: RefundRefundPreviewRequestDto, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
23989
+ refundAutomatedProcessPost: (refundRefundPreviewRequestDto: RefundRefundPreviewRequestDto, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
23990
23990
  };
23991
23991
  /**
23992
23992
  * AutomatedRefundManagementApi - functional programming interface
@@ -24000,7 +24000,7 @@ export declare const AutomatedRefundManagementApiFp: (configuration?: Configurat
24000
24000
  * @param {*} [options] Override http request option.
24001
24001
  * @throws {RequiredError}
24002
24002
  */
24003
- apiRefundAutomatedPreviewPost(refundRefundPreviewRequestDto: RefundRefundPreviewRequestDto, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<DataTypesGenericResponseRefundRefundPreviewResponseDto>>;
24003
+ refundAutomatedPreviewPost(refundRefundPreviewRequestDto: RefundRefundPreviewRequestDto, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<DataTypesGenericResponseRefundRefundPreviewResponseDto>>;
24004
24004
  /**
24005
24005
  * Processes refund automatically with subscription cancellation, Razorpay integration, and credit adjustments
24006
24006
  * @summary Process automated refund
@@ -24008,7 +24008,7 @@ export declare const AutomatedRefundManagementApiFp: (configuration?: Configurat
24008
24008
  * @param {*} [options] Override http request option.
24009
24009
  * @throws {RequiredError}
24010
24010
  */
24011
- apiRefundAutomatedProcessPost(refundRefundPreviewRequestDto: RefundRefundPreviewRequestDto, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<DataTypesGenericResponseDataTypesProcessRefundResponseDto>>;
24011
+ refundAutomatedProcessPost(refundRefundPreviewRequestDto: RefundRefundPreviewRequestDto, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<DataTypesGenericResponseDataTypesProcessRefundResponseDto>>;
24012
24012
  };
24013
24013
  /**
24014
24014
  * AutomatedRefundManagementApi - factory interface
@@ -24022,7 +24022,7 @@ export declare const AutomatedRefundManagementApiFactory: (configuration?: Confi
24022
24022
  * @param {*} [options] Override http request option.
24023
24023
  * @throws {RequiredError}
24024
24024
  */
24025
- apiRefundAutomatedPreviewPost(refundRefundPreviewRequestDto: RefundRefundPreviewRequestDto, options?: RawAxiosRequestConfig): AxiosPromise<DataTypesGenericResponseRefundRefundPreviewResponseDto>;
24025
+ refundAutomatedPreviewPost(refundRefundPreviewRequestDto: RefundRefundPreviewRequestDto, options?: RawAxiosRequestConfig): AxiosPromise<DataTypesGenericResponseRefundRefundPreviewResponseDto>;
24026
24026
  /**
24027
24027
  * Processes refund automatically with subscription cancellation, Razorpay integration, and credit adjustments
24028
24028
  * @summary Process automated refund
@@ -24030,7 +24030,7 @@ export declare const AutomatedRefundManagementApiFactory: (configuration?: Confi
24030
24030
  * @param {*} [options] Override http request option.
24031
24031
  * @throws {RequiredError}
24032
24032
  */
24033
- apiRefundAutomatedProcessPost(refundRefundPreviewRequestDto: RefundRefundPreviewRequestDto, options?: RawAxiosRequestConfig): AxiosPromise<DataTypesGenericResponseDataTypesProcessRefundResponseDto>;
24033
+ refundAutomatedProcessPost(refundRefundPreviewRequestDto: RefundRefundPreviewRequestDto, options?: RawAxiosRequestConfig): AxiosPromise<DataTypesGenericResponseDataTypesProcessRefundResponseDto>;
24034
24034
  };
24035
24035
  /**
24036
24036
  * AutomatedRefundManagementApi - object-oriented interface
@@ -24047,7 +24047,7 @@ export declare class AutomatedRefundManagementApi extends BaseAPI {
24047
24047
  * @throws {RequiredError}
24048
24048
  * @memberof AutomatedRefundManagementApi
24049
24049
  */
24050
- apiRefundAutomatedPreviewPost(refundRefundPreviewRequestDto: RefundRefundPreviewRequestDto, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesGenericResponseRefundRefundPreviewResponseDto, any, {}>>;
24050
+ refundAutomatedPreviewPost(refundRefundPreviewRequestDto: RefundRefundPreviewRequestDto, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesGenericResponseRefundRefundPreviewResponseDto, any, {}>>;
24051
24051
  /**
24052
24052
  * Processes refund automatically with subscription cancellation, Razorpay integration, and credit adjustments
24053
24053
  * @summary Process automated refund
@@ -24056,7 +24056,7 @@ export declare class AutomatedRefundManagementApi extends BaseAPI {
24056
24056
  * @throws {RequiredError}
24057
24057
  * @memberof AutomatedRefundManagementApi
24058
24058
  */
24059
- apiRefundAutomatedProcessPost(refundRefundPreviewRequestDto: RefundRefundPreviewRequestDto, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesGenericResponseDataTypesProcessRefundResponseDto, any, {}>>;
24059
+ refundAutomatedProcessPost(refundRefundPreviewRequestDto: RefundRefundPreviewRequestDto, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesGenericResponseDataTypesProcessRefundResponseDto, any, {}>>;
24060
24060
  }
24061
24061
  /**
24062
24062
  * BillingDashboardApi - axios parameter creator
@@ -25078,7 +25078,7 @@ export declare const CreditsApiAxiosParamCreator: (configuration?: Configuration
25078
25078
  * @param {*} [options] Override http request option.
25079
25079
  * @throws {RequiredError}
25080
25080
  */
25081
- apiCreditsAdminAdjustPost: (dataTypesManualCreditAdjustmentRequest: DataTypesManualCreditAdjustmentRequest, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
25081
+ creditsAdminAdjustPost: (dataTypesManualCreditAdjustmentRequest: DataTypesManualCreditAdjustmentRequest, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
25082
25082
  /**
25083
25083
  * Get comprehensive credit balance including recent transactions, usage patterns, and expiry details
25084
25084
  * @summary Get detailed organization credit balance
@@ -25086,14 +25086,14 @@ export declare const CreditsApiAxiosParamCreator: (configuration?: Configuration
25086
25086
  * @param {*} [options] Override http request option.
25087
25087
  * @throws {RequiredError}
25088
25088
  */
25089
- apiCreditsBalanceDetailedGet: (limit?: number, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
25089
+ creditsBalanceDetailedGet: (limit?: number, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
25090
25090
  /**
25091
25091
  * Get current credit balance and summary for the authenticated user\'s organization
25092
25092
  * @summary Get organization credit balance
25093
25093
  * @param {*} [options] Override http request option.
25094
25094
  * @throws {RequiredError}
25095
25095
  */
25096
- apiCreditsBalanceGet: (options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
25096
+ creditsBalanceGet: (options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
25097
25097
  /**
25098
25098
  * Get current credit balance for a specific store (legacy endpoint - use organization endpoints instead)
25099
25099
  * @summary Get store credit balance (legacy)
@@ -25102,7 +25102,7 @@ export declare const CreditsApiAxiosParamCreator: (configuration?: Configuration
25102
25102
  * @deprecated
25103
25103
  * @throws {RequiredError}
25104
25104
  */
25105
- apiCreditsBalanceStoreStoreIdGet: (storeId: number, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
25105
+ creditsBalanceStoreStoreIdGet: (storeId: number, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
25106
25106
  /**
25107
25107
  * Manually consume credits for testing or administrative purposes using FIFO logic
25108
25108
  * @summary Manually consume credits
@@ -25110,7 +25110,7 @@ export declare const CreditsApiAxiosParamCreator: (configuration?: Configuration
25110
25110
  * @param {*} [options] Override http request option.
25111
25111
  * @throws {RequiredError}
25112
25112
  */
25113
- apiCreditsConsumePost: (dataTypesManualConsumeCreditsRequest: DataTypesManualConsumeCreditsRequest, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
25113
+ creditsConsumePost: (dataTypesManualConsumeCreditsRequest: DataTypesManualConsumeCreditsRequest, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
25114
25114
  /**
25115
25115
  * Get detailed history of credit consumption with FIFO breakdown and analytics
25116
25116
  * @summary Get FIFO consumption history
@@ -25122,14 +25122,14 @@ export declare const CreditsApiAxiosParamCreator: (configuration?: Configuration
25122
25122
  * @param {*} [options] Override http request option.
25123
25123
  * @throws {RequiredError}
25124
25124
  */
25125
- apiCreditsConsumptionHistoryGet: (page?: number, limit?: number, endpoint?: string, startDate?: string, endDate?: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
25125
+ creditsConsumptionHistoryGet: (page?: number, limit?: number, endpoint?: string, startDate?: string, endDate?: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
25126
25126
  /**
25127
25127
  * Get all active credit plans available for purchase with detailed pricing and features
25128
25128
  * @summary Get available credit plans
25129
25129
  * @param {*} [options] Override http request option.
25130
25130
  * @throws {RequiredError}
25131
25131
  */
25132
- apiCreditsPlansGet: (options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
25132
+ creditsPlansGet: (options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
25133
25133
  /**
25134
25134
  * Purchase credits using a credit plan with payment processing
25135
25135
  * @summary Purchase credits
@@ -25137,19 +25137,19 @@ export declare const CreditsApiAxiosParamCreator: (configuration?: Configuration
25137
25137
  * @param {*} [options] Override http request option.
25138
25138
  * @throws {RequiredError}
25139
25139
  */
25140
- apiCreditsPurchasePost: (dataTypesPurchaseCreditsRequest: DataTypesPurchaseCreditsRequest, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
25140
+ creditsPurchasePost: (dataTypesPurchaseCreditsRequest: DataTypesPurchaseCreditsRequest, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
25141
25141
  /**
25142
25142
  * Get paginated credit transaction history for the authenticated organization
25143
25143
  * @summary Get organization credit transactions
25144
25144
  * @param {number} [page] Page number
25145
25145
  * @param {number} [limit] Items per page
25146
- * @param {ApiCreditsTransactionsGetTypeEnum} [type] Filter by transaction type
25146
+ * @param {CreditsTransactionsGetTypeEnum} [type] Filter by transaction type
25147
25147
  * @param {string} [startDate] Start date filter (RFC3339 format)
25148
25148
  * @param {string} [endDate] End date filter (RFC3339 format)
25149
25149
  * @param {*} [options] Override http request option.
25150
25150
  * @throws {RequiredError}
25151
25151
  */
25152
- apiCreditsTransactionsGet: (page?: number, limit?: number, type?: ApiCreditsTransactionsGetTypeEnum, startDate?: string, endDate?: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
25152
+ creditsTransactionsGet: (page?: number, limit?: number, type?: CreditsTransactionsGetTypeEnum, startDate?: string, endDate?: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
25153
25153
  };
25154
25154
  /**
25155
25155
  * CreditsApi - functional programming interface
@@ -25163,7 +25163,7 @@ export declare const CreditsApiFp: (configuration?: Configuration) => {
25163
25163
  * @param {*} [options] Override http request option.
25164
25164
  * @throws {RequiredError}
25165
25165
  */
25166
- apiCreditsAdminAdjustPost(dataTypesManualCreditAdjustmentRequest: DataTypesManualCreditAdjustmentRequest, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<DataTypesGenericResponseDataTypesCreditAdjustmentResponse>>;
25166
+ creditsAdminAdjustPost(dataTypesManualCreditAdjustmentRequest: DataTypesManualCreditAdjustmentRequest, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<DataTypesGenericResponseDataTypesCreditAdjustmentResponse>>;
25167
25167
  /**
25168
25168
  * Get comprehensive credit balance including recent transactions, usage patterns, and expiry details
25169
25169
  * @summary Get detailed organization credit balance
@@ -25171,14 +25171,14 @@ export declare const CreditsApiFp: (configuration?: Configuration) => {
25171
25171
  * @param {*} [options] Override http request option.
25172
25172
  * @throws {RequiredError}
25173
25173
  */
25174
- apiCreditsBalanceDetailedGet(limit?: number, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<DataTypesGenericResponseDataTypesDetailedCreditBalanceResponse>>;
25174
+ creditsBalanceDetailedGet(limit?: number, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<DataTypesGenericResponseDataTypesDetailedCreditBalanceResponse>>;
25175
25175
  /**
25176
25176
  * Get current credit balance and summary for the authenticated user\'s organization
25177
25177
  * @summary Get organization credit balance
25178
25178
  * @param {*} [options] Override http request option.
25179
25179
  * @throws {RequiredError}
25180
25180
  */
25181
- apiCreditsBalanceGet(options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<DataTypesGenericResponseDataTypesCreditBalance>>;
25181
+ creditsBalanceGet(options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<DataTypesGenericResponseDataTypesCreditBalance>>;
25182
25182
  /**
25183
25183
  * Get current credit balance for a specific store (legacy endpoint - use organization endpoints instead)
25184
25184
  * @summary Get store credit balance (legacy)
@@ -25187,7 +25187,7 @@ export declare const CreditsApiFp: (configuration?: Configuration) => {
25187
25187
  * @deprecated
25188
25188
  * @throws {RequiredError}
25189
25189
  */
25190
- apiCreditsBalanceStoreStoreIdGet(storeId: number, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<DataTypesGenericResponseDataTypesCreditBalance>>;
25190
+ creditsBalanceStoreStoreIdGet(storeId: number, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<DataTypesGenericResponseDataTypesCreditBalance>>;
25191
25191
  /**
25192
25192
  * Manually consume credits for testing or administrative purposes using FIFO logic
25193
25193
  * @summary Manually consume credits
@@ -25195,7 +25195,7 @@ export declare const CreditsApiFp: (configuration?: Configuration) => {
25195
25195
  * @param {*} [options] Override http request option.
25196
25196
  * @throws {RequiredError}
25197
25197
  */
25198
- apiCreditsConsumePost(dataTypesManualConsumeCreditsRequest: DataTypesManualConsumeCreditsRequest, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<DataTypesGenericResponseDataTypesCreditConsumptionResult>>;
25198
+ creditsConsumePost(dataTypesManualConsumeCreditsRequest: DataTypesManualConsumeCreditsRequest, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<DataTypesGenericResponseDataTypesCreditConsumptionResult>>;
25199
25199
  /**
25200
25200
  * Get detailed history of credit consumption with FIFO breakdown and analytics
25201
25201
  * @summary Get FIFO consumption history
@@ -25207,14 +25207,14 @@ export declare const CreditsApiFp: (configuration?: Configuration) => {
25207
25207
  * @param {*} [options] Override http request option.
25208
25208
  * @throws {RequiredError}
25209
25209
  */
25210
- apiCreditsConsumptionHistoryGet(page?: number, limit?: number, endpoint?: string, startDate?: string, endDate?: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<DataTypesGenericResponseDataTypesConsumptionHistoryResponse>>;
25210
+ creditsConsumptionHistoryGet(page?: number, limit?: number, endpoint?: string, startDate?: string, endDate?: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<DataTypesGenericResponseDataTypesConsumptionHistoryResponse>>;
25211
25211
  /**
25212
25212
  * Get all active credit plans available for purchase with detailed pricing and features
25213
25213
  * @summary Get available credit plans
25214
25214
  * @param {*} [options] Override http request option.
25215
25215
  * @throws {RequiredError}
25216
25216
  */
25217
- apiCreditsPlansGet(options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<DataTypesGenericResponseArrayDataTypesCreditPlan>>;
25217
+ creditsPlansGet(options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<DataTypesGenericResponseArrayDataTypesCreditPlan>>;
25218
25218
  /**
25219
25219
  * Purchase credits using a credit plan with payment processing
25220
25220
  * @summary Purchase credits
@@ -25222,19 +25222,19 @@ export declare const CreditsApiFp: (configuration?: Configuration) => {
25222
25222
  * @param {*} [options] Override http request option.
25223
25223
  * @throws {RequiredError}
25224
25224
  */
25225
- apiCreditsPurchasePost(dataTypesPurchaseCreditsRequest: DataTypesPurchaseCreditsRequest, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<DataTypesGenericResponseDataTypesPurchaseCreditsResponse>>;
25225
+ creditsPurchasePost(dataTypesPurchaseCreditsRequest: DataTypesPurchaseCreditsRequest, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<DataTypesGenericResponseDataTypesPurchaseCreditsResponse>>;
25226
25226
  /**
25227
25227
  * Get paginated credit transaction history for the authenticated organization
25228
25228
  * @summary Get organization credit transactions
25229
25229
  * @param {number} [page] Page number
25230
25230
  * @param {number} [limit] Items per page
25231
- * @param {ApiCreditsTransactionsGetTypeEnum} [type] Filter by transaction type
25231
+ * @param {CreditsTransactionsGetTypeEnum} [type] Filter by transaction type
25232
25232
  * @param {string} [startDate] Start date filter (RFC3339 format)
25233
25233
  * @param {string} [endDate] End date filter (RFC3339 format)
25234
25234
  * @param {*} [options] Override http request option.
25235
25235
  * @throws {RequiredError}
25236
25236
  */
25237
- apiCreditsTransactionsGet(page?: number, limit?: number, type?: ApiCreditsTransactionsGetTypeEnum, startDate?: string, endDate?: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<DataTypesGenericResponseDataTypesPaginatedTransactionsResponse>>;
25237
+ creditsTransactionsGet(page?: number, limit?: number, type?: CreditsTransactionsGetTypeEnum, startDate?: string, endDate?: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<DataTypesGenericResponseDataTypesPaginatedTransactionsResponse>>;
25238
25238
  };
25239
25239
  /**
25240
25240
  * CreditsApi - factory interface
@@ -25248,7 +25248,7 @@ export declare const CreditsApiFactory: (configuration?: Configuration, basePath
25248
25248
  * @param {*} [options] Override http request option.
25249
25249
  * @throws {RequiredError}
25250
25250
  */
25251
- apiCreditsAdminAdjustPost(dataTypesManualCreditAdjustmentRequest: DataTypesManualCreditAdjustmentRequest, options?: RawAxiosRequestConfig): AxiosPromise<DataTypesGenericResponseDataTypesCreditAdjustmentResponse>;
25251
+ creditsAdminAdjustPost(dataTypesManualCreditAdjustmentRequest: DataTypesManualCreditAdjustmentRequest, options?: RawAxiosRequestConfig): AxiosPromise<DataTypesGenericResponseDataTypesCreditAdjustmentResponse>;
25252
25252
  /**
25253
25253
  * Get comprehensive credit balance including recent transactions, usage patterns, and expiry details
25254
25254
  * @summary Get detailed organization credit balance
@@ -25256,14 +25256,14 @@ export declare const CreditsApiFactory: (configuration?: Configuration, basePath
25256
25256
  * @param {*} [options] Override http request option.
25257
25257
  * @throws {RequiredError}
25258
25258
  */
25259
- apiCreditsBalanceDetailedGet(limit?: number, options?: RawAxiosRequestConfig): AxiosPromise<DataTypesGenericResponseDataTypesDetailedCreditBalanceResponse>;
25259
+ creditsBalanceDetailedGet(limit?: number, options?: RawAxiosRequestConfig): AxiosPromise<DataTypesGenericResponseDataTypesDetailedCreditBalanceResponse>;
25260
25260
  /**
25261
25261
  * Get current credit balance and summary for the authenticated user\'s organization
25262
25262
  * @summary Get organization credit balance
25263
25263
  * @param {*} [options] Override http request option.
25264
25264
  * @throws {RequiredError}
25265
25265
  */
25266
- apiCreditsBalanceGet(options?: RawAxiosRequestConfig): AxiosPromise<DataTypesGenericResponseDataTypesCreditBalance>;
25266
+ creditsBalanceGet(options?: RawAxiosRequestConfig): AxiosPromise<DataTypesGenericResponseDataTypesCreditBalance>;
25267
25267
  /**
25268
25268
  * Get current credit balance for a specific store (legacy endpoint - use organization endpoints instead)
25269
25269
  * @summary Get store credit balance (legacy)
@@ -25272,7 +25272,7 @@ export declare const CreditsApiFactory: (configuration?: Configuration, basePath
25272
25272
  * @deprecated
25273
25273
  * @throws {RequiredError}
25274
25274
  */
25275
- apiCreditsBalanceStoreStoreIdGet(storeId: number, options?: RawAxiosRequestConfig): AxiosPromise<DataTypesGenericResponseDataTypesCreditBalance>;
25275
+ creditsBalanceStoreStoreIdGet(storeId: number, options?: RawAxiosRequestConfig): AxiosPromise<DataTypesGenericResponseDataTypesCreditBalance>;
25276
25276
  /**
25277
25277
  * Manually consume credits for testing or administrative purposes using FIFO logic
25278
25278
  * @summary Manually consume credits
@@ -25280,7 +25280,7 @@ export declare const CreditsApiFactory: (configuration?: Configuration, basePath
25280
25280
  * @param {*} [options] Override http request option.
25281
25281
  * @throws {RequiredError}
25282
25282
  */
25283
- apiCreditsConsumePost(dataTypesManualConsumeCreditsRequest: DataTypesManualConsumeCreditsRequest, options?: RawAxiosRequestConfig): AxiosPromise<DataTypesGenericResponseDataTypesCreditConsumptionResult>;
25283
+ creditsConsumePost(dataTypesManualConsumeCreditsRequest: DataTypesManualConsumeCreditsRequest, options?: RawAxiosRequestConfig): AxiosPromise<DataTypesGenericResponseDataTypesCreditConsumptionResult>;
25284
25284
  /**
25285
25285
  * Get detailed history of credit consumption with FIFO breakdown and analytics
25286
25286
  * @summary Get FIFO consumption history
@@ -25292,14 +25292,14 @@ export declare const CreditsApiFactory: (configuration?: Configuration, basePath
25292
25292
  * @param {*} [options] Override http request option.
25293
25293
  * @throws {RequiredError}
25294
25294
  */
25295
- apiCreditsConsumptionHistoryGet(page?: number, limit?: number, endpoint?: string, startDate?: string, endDate?: string, options?: RawAxiosRequestConfig): AxiosPromise<DataTypesGenericResponseDataTypesConsumptionHistoryResponse>;
25295
+ creditsConsumptionHistoryGet(page?: number, limit?: number, endpoint?: string, startDate?: string, endDate?: string, options?: RawAxiosRequestConfig): AxiosPromise<DataTypesGenericResponseDataTypesConsumptionHistoryResponse>;
25296
25296
  /**
25297
25297
  * Get all active credit plans available for purchase with detailed pricing and features
25298
25298
  * @summary Get available credit plans
25299
25299
  * @param {*} [options] Override http request option.
25300
25300
  * @throws {RequiredError}
25301
25301
  */
25302
- apiCreditsPlansGet(options?: RawAxiosRequestConfig): AxiosPromise<DataTypesGenericResponseArrayDataTypesCreditPlan>;
25302
+ creditsPlansGet(options?: RawAxiosRequestConfig): AxiosPromise<DataTypesGenericResponseArrayDataTypesCreditPlan>;
25303
25303
  /**
25304
25304
  * Purchase credits using a credit plan with payment processing
25305
25305
  * @summary Purchase credits
@@ -25307,19 +25307,19 @@ export declare const CreditsApiFactory: (configuration?: Configuration, basePath
25307
25307
  * @param {*} [options] Override http request option.
25308
25308
  * @throws {RequiredError}
25309
25309
  */
25310
- apiCreditsPurchasePost(dataTypesPurchaseCreditsRequest: DataTypesPurchaseCreditsRequest, options?: RawAxiosRequestConfig): AxiosPromise<DataTypesGenericResponseDataTypesPurchaseCreditsResponse>;
25310
+ creditsPurchasePost(dataTypesPurchaseCreditsRequest: DataTypesPurchaseCreditsRequest, options?: RawAxiosRequestConfig): AxiosPromise<DataTypesGenericResponseDataTypesPurchaseCreditsResponse>;
25311
25311
  /**
25312
25312
  * Get paginated credit transaction history for the authenticated organization
25313
25313
  * @summary Get organization credit transactions
25314
25314
  * @param {number} [page] Page number
25315
25315
  * @param {number} [limit] Items per page
25316
- * @param {ApiCreditsTransactionsGetTypeEnum} [type] Filter by transaction type
25316
+ * @param {CreditsTransactionsGetTypeEnum} [type] Filter by transaction type
25317
25317
  * @param {string} [startDate] Start date filter (RFC3339 format)
25318
25318
  * @param {string} [endDate] End date filter (RFC3339 format)
25319
25319
  * @param {*} [options] Override http request option.
25320
25320
  * @throws {RequiredError}
25321
25321
  */
25322
- apiCreditsTransactionsGet(page?: number, limit?: number, type?: ApiCreditsTransactionsGetTypeEnum, startDate?: string, endDate?: string, options?: RawAxiosRequestConfig): AxiosPromise<DataTypesGenericResponseDataTypesPaginatedTransactionsResponse>;
25322
+ creditsTransactionsGet(page?: number, limit?: number, type?: CreditsTransactionsGetTypeEnum, startDate?: string, endDate?: string, options?: RawAxiosRequestConfig): AxiosPromise<DataTypesGenericResponseDataTypesPaginatedTransactionsResponse>;
25323
25323
  };
25324
25324
  /**
25325
25325
  * CreditsApi - object-oriented interface
@@ -25336,7 +25336,7 @@ export declare class CreditsApi extends BaseAPI {
25336
25336
  * @throws {RequiredError}
25337
25337
  * @memberof CreditsApi
25338
25338
  */
25339
- apiCreditsAdminAdjustPost(dataTypesManualCreditAdjustmentRequest: DataTypesManualCreditAdjustmentRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesGenericResponseDataTypesCreditAdjustmentResponse, any, {}>>;
25339
+ creditsAdminAdjustPost(dataTypesManualCreditAdjustmentRequest: DataTypesManualCreditAdjustmentRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesGenericResponseDataTypesCreditAdjustmentResponse, any, {}>>;
25340
25340
  /**
25341
25341
  * Get comprehensive credit balance including recent transactions, usage patterns, and expiry details
25342
25342
  * @summary Get detailed organization credit balance
@@ -25345,7 +25345,7 @@ export declare class CreditsApi extends BaseAPI {
25345
25345
  * @throws {RequiredError}
25346
25346
  * @memberof CreditsApi
25347
25347
  */
25348
- apiCreditsBalanceDetailedGet(limit?: number, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesGenericResponseDataTypesDetailedCreditBalanceResponse, any, {}>>;
25348
+ creditsBalanceDetailedGet(limit?: number, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesGenericResponseDataTypesDetailedCreditBalanceResponse, any, {}>>;
25349
25349
  /**
25350
25350
  * Get current credit balance and summary for the authenticated user\'s organization
25351
25351
  * @summary Get organization credit balance
@@ -25353,7 +25353,7 @@ export declare class CreditsApi extends BaseAPI {
25353
25353
  * @throws {RequiredError}
25354
25354
  * @memberof CreditsApi
25355
25355
  */
25356
- apiCreditsBalanceGet(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesGenericResponseDataTypesCreditBalance, any, {}>>;
25356
+ creditsBalanceGet(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesGenericResponseDataTypesCreditBalance, any, {}>>;
25357
25357
  /**
25358
25358
  * Get current credit balance for a specific store (legacy endpoint - use organization endpoints instead)
25359
25359
  * @summary Get store credit balance (legacy)
@@ -25363,7 +25363,7 @@ export declare class CreditsApi extends BaseAPI {
25363
25363
  * @throws {RequiredError}
25364
25364
  * @memberof CreditsApi
25365
25365
  */
25366
- apiCreditsBalanceStoreStoreIdGet(storeId: number, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesGenericResponseDataTypesCreditBalance, any, {}>>;
25366
+ creditsBalanceStoreStoreIdGet(storeId: number, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesGenericResponseDataTypesCreditBalance, any, {}>>;
25367
25367
  /**
25368
25368
  * Manually consume credits for testing or administrative purposes using FIFO logic
25369
25369
  * @summary Manually consume credits
@@ -25372,7 +25372,7 @@ export declare class CreditsApi extends BaseAPI {
25372
25372
  * @throws {RequiredError}
25373
25373
  * @memberof CreditsApi
25374
25374
  */
25375
- apiCreditsConsumePost(dataTypesManualConsumeCreditsRequest: DataTypesManualConsumeCreditsRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesGenericResponseDataTypesCreditConsumptionResult, any, {}>>;
25375
+ creditsConsumePost(dataTypesManualConsumeCreditsRequest: DataTypesManualConsumeCreditsRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesGenericResponseDataTypesCreditConsumptionResult, any, {}>>;
25376
25376
  /**
25377
25377
  * Get detailed history of credit consumption with FIFO breakdown and analytics
25378
25378
  * @summary Get FIFO consumption history
@@ -25385,7 +25385,7 @@ export declare class CreditsApi extends BaseAPI {
25385
25385
  * @throws {RequiredError}
25386
25386
  * @memberof CreditsApi
25387
25387
  */
25388
- apiCreditsConsumptionHistoryGet(page?: number, limit?: number, endpoint?: string, startDate?: string, endDate?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesGenericResponseDataTypesConsumptionHistoryResponse, any, {}>>;
25388
+ creditsConsumptionHistoryGet(page?: number, limit?: number, endpoint?: string, startDate?: string, endDate?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesGenericResponseDataTypesConsumptionHistoryResponse, any, {}>>;
25389
25389
  /**
25390
25390
  * Get all active credit plans available for purchase with detailed pricing and features
25391
25391
  * @summary Get available credit plans
@@ -25393,7 +25393,7 @@ export declare class CreditsApi extends BaseAPI {
25393
25393
  * @throws {RequiredError}
25394
25394
  * @memberof CreditsApi
25395
25395
  */
25396
- apiCreditsPlansGet(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesGenericResponseArrayDataTypesCreditPlan, any, {}>>;
25396
+ creditsPlansGet(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesGenericResponseArrayDataTypesCreditPlan, any, {}>>;
25397
25397
  /**
25398
25398
  * Purchase credits using a credit plan with payment processing
25399
25399
  * @summary Purchase credits
@@ -25402,25 +25402,25 @@ export declare class CreditsApi extends BaseAPI {
25402
25402
  * @throws {RequiredError}
25403
25403
  * @memberof CreditsApi
25404
25404
  */
25405
- apiCreditsPurchasePost(dataTypesPurchaseCreditsRequest: DataTypesPurchaseCreditsRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesGenericResponseDataTypesPurchaseCreditsResponse, any, {}>>;
25405
+ creditsPurchasePost(dataTypesPurchaseCreditsRequest: DataTypesPurchaseCreditsRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesGenericResponseDataTypesPurchaseCreditsResponse, any, {}>>;
25406
25406
  /**
25407
25407
  * Get paginated credit transaction history for the authenticated organization
25408
25408
  * @summary Get organization credit transactions
25409
25409
  * @param {number} [page] Page number
25410
25410
  * @param {number} [limit] Items per page
25411
- * @param {ApiCreditsTransactionsGetTypeEnum} [type] Filter by transaction type
25411
+ * @param {CreditsTransactionsGetTypeEnum} [type] Filter by transaction type
25412
25412
  * @param {string} [startDate] Start date filter (RFC3339 format)
25413
25413
  * @param {string} [endDate] End date filter (RFC3339 format)
25414
25414
  * @param {*} [options] Override http request option.
25415
25415
  * @throws {RequiredError}
25416
25416
  * @memberof CreditsApi
25417
25417
  */
25418
- apiCreditsTransactionsGet(page?: number, limit?: number, type?: ApiCreditsTransactionsGetTypeEnum, startDate?: string, endDate?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesGenericResponseDataTypesPaginatedTransactionsResponse, any, {}>>;
25418
+ creditsTransactionsGet(page?: number, limit?: number, type?: CreditsTransactionsGetTypeEnum, startDate?: string, endDate?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesGenericResponseDataTypesPaginatedTransactionsResponse, any, {}>>;
25419
25419
  }
25420
25420
  /**
25421
25421
  * @export
25422
25422
  */
25423
- export declare const ApiCreditsTransactionsGetTypeEnum: {
25423
+ export declare const CreditsTransactionsGetTypeEnum: {
25424
25424
  readonly Purchase: "purchase";
25425
25425
  readonly Consume: "consume";
25426
25426
  readonly Refund: "refund";
@@ -25428,7 +25428,7 @@ export declare const ApiCreditsTransactionsGetTypeEnum: {
25428
25428
  readonly Expire: "expire";
25429
25429
  readonly Manual: "manual";
25430
25430
  };
25431
- export type ApiCreditsTransactionsGetTypeEnum = typeof ApiCreditsTransactionsGetTypeEnum[keyof typeof ApiCreditsTransactionsGetTypeEnum];
25431
+ export type CreditsTransactionsGetTypeEnum = typeof CreditsTransactionsGetTypeEnum[keyof typeof CreditsTransactionsGetTypeEnum];
25432
25432
  /**
25433
25433
  * CustomStopwordsApi - axios parameter creator
25434
25434
  * @export
@@ -31151,7 +31151,7 @@ export declare const RefundManagementApiAxiosParamCreator: (configuration?: Conf
31151
31151
  * @param {*} [options] Override http request option.
31152
31152
  * @throws {RequiredError}
31153
31153
  */
31154
- apiRefundCalculatePost: (dataTypesRefundCalculationRequestDto: DataTypesRefundCalculationRequestDto, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
31154
+ refundCalculatePost: (dataTypesRefundCalculationRequestDto: DataTypesRefundCalculationRequestDto, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
31155
31155
  /**
31156
31156
  * Checks if a payment is eligible for refund
31157
31157
  * @summary Check refund eligibility
@@ -31159,7 +31159,7 @@ export declare const RefundManagementApiAxiosParamCreator: (configuration?: Conf
31159
31159
  * @param {*} [options] Override http request option.
31160
31160
  * @throws {RequiredError}
31161
31161
  */
31162
- apiRefundEligibilityPaymentIdGet: (paymentId: number, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
31162
+ refundEligibilityPaymentIdGet: (paymentId: number, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
31163
31163
  /**
31164
31164
  * Retrieves refund history for an organization with filtering options
31165
31165
  * @summary Get refund history
@@ -31173,7 +31173,7 @@ export declare const RefundManagementApiAxiosParamCreator: (configuration?: Conf
31173
31173
  * @param {*} [options] Override http request option.
31174
31174
  * @throws {RequiredError}
31175
31175
  */
31176
- apiRefundHistoryGet: (orgId?: number, paymentId?: number, startDate?: string, endDate?: string, status?: string, limit?: number, offset?: number, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
31176
+ refundHistoryGet: (orgId?: number, paymentId?: number, startDate?: string, endDate?: string, status?: string, limit?: number, offset?: number, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
31177
31177
  /**
31178
31178
  * Processes a refund request and executes credit adjustments
31179
31179
  * @summary Process refund
@@ -31181,7 +31181,7 @@ export declare const RefundManagementApiAxiosParamCreator: (configuration?: Conf
31181
31181
  * @param {*} [options] Override http request option.
31182
31182
  * @throws {RequiredError}
31183
31183
  */
31184
- apiRefundProcessPost: (dataTypesProcessRefundRequestDto: DataTypesProcessRefundRequestDto, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
31184
+ refundProcessPost: (dataTypesProcessRefundRequestDto: DataTypesProcessRefundRequestDto, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
31185
31185
  };
31186
31186
  /**
31187
31187
  * RefundManagementApi - functional programming interface
@@ -31243,7 +31243,7 @@ export declare const RefundManagementApiFp: (configuration?: Configuration) => {
31243
31243
  * @param {*} [options] Override http request option.
31244
31244
  * @throws {RequiredError}
31245
31245
  */
31246
- apiRefundCalculatePost(dataTypesRefundCalculationRequestDto: DataTypesRefundCalculationRequestDto, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<DataTypesGenericResponseDataTypesRefundCalculationResponseDto>>;
31246
+ refundCalculatePost(dataTypesRefundCalculationRequestDto: DataTypesRefundCalculationRequestDto, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<DataTypesGenericResponseDataTypesRefundCalculationResponseDto>>;
31247
31247
  /**
31248
31248
  * Checks if a payment is eligible for refund
31249
31249
  * @summary Check refund eligibility
@@ -31251,7 +31251,7 @@ export declare const RefundManagementApiFp: (configuration?: Configuration) => {
31251
31251
  * @param {*} [options] Override http request option.
31252
31252
  * @throws {RequiredError}
31253
31253
  */
31254
- apiRefundEligibilityPaymentIdGet(paymentId: number, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<DataTypesGenericResponseDataTypesRefundEligibilityDto>>;
31254
+ refundEligibilityPaymentIdGet(paymentId: number, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<DataTypesGenericResponseDataTypesRefundEligibilityDto>>;
31255
31255
  /**
31256
31256
  * Retrieves refund history for an organization with filtering options
31257
31257
  * @summary Get refund history
@@ -31265,7 +31265,7 @@ export declare const RefundManagementApiFp: (configuration?: Configuration) => {
31265
31265
  * @param {*} [options] Override http request option.
31266
31266
  * @throws {RequiredError}
31267
31267
  */
31268
- apiRefundHistoryGet(orgId?: number, paymentId?: number, startDate?: string, endDate?: string, status?: string, limit?: number, offset?: number, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<DataTypesGenericResponseDataTypesGetRefundHistoryResponseDto>>;
31268
+ refundHistoryGet(orgId?: number, paymentId?: number, startDate?: string, endDate?: string, status?: string, limit?: number, offset?: number, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<DataTypesGenericResponseDataTypesGetRefundHistoryResponseDto>>;
31269
31269
  /**
31270
31270
  * Processes a refund request and executes credit adjustments
31271
31271
  * @summary Process refund
@@ -31273,7 +31273,7 @@ export declare const RefundManagementApiFp: (configuration?: Configuration) => {
31273
31273
  * @param {*} [options] Override http request option.
31274
31274
  * @throws {RequiredError}
31275
31275
  */
31276
- apiRefundProcessPost(dataTypesProcessRefundRequestDto: DataTypesProcessRefundRequestDto, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<DataTypesGenericResponseDataTypesProcessRefundResponseDto>>;
31276
+ refundProcessPost(dataTypesProcessRefundRequestDto: DataTypesProcessRefundRequestDto, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<DataTypesGenericResponseDataTypesProcessRefundResponseDto>>;
31277
31277
  };
31278
31278
  /**
31279
31279
  * RefundManagementApi - factory interface
@@ -31335,7 +31335,7 @@ export declare const RefundManagementApiFactory: (configuration?: Configuration,
31335
31335
  * @param {*} [options] Override http request option.
31336
31336
  * @throws {RequiredError}
31337
31337
  */
31338
- apiRefundCalculatePost(dataTypesRefundCalculationRequestDto: DataTypesRefundCalculationRequestDto, options?: RawAxiosRequestConfig): AxiosPromise<DataTypesGenericResponseDataTypesRefundCalculationResponseDto>;
31338
+ refundCalculatePost(dataTypesRefundCalculationRequestDto: DataTypesRefundCalculationRequestDto, options?: RawAxiosRequestConfig): AxiosPromise<DataTypesGenericResponseDataTypesRefundCalculationResponseDto>;
31339
31339
  /**
31340
31340
  * Checks if a payment is eligible for refund
31341
31341
  * @summary Check refund eligibility
@@ -31343,7 +31343,7 @@ export declare const RefundManagementApiFactory: (configuration?: Configuration,
31343
31343
  * @param {*} [options] Override http request option.
31344
31344
  * @throws {RequiredError}
31345
31345
  */
31346
- apiRefundEligibilityPaymentIdGet(paymentId: number, options?: RawAxiosRequestConfig): AxiosPromise<DataTypesGenericResponseDataTypesRefundEligibilityDto>;
31346
+ refundEligibilityPaymentIdGet(paymentId: number, options?: RawAxiosRequestConfig): AxiosPromise<DataTypesGenericResponseDataTypesRefundEligibilityDto>;
31347
31347
  /**
31348
31348
  * Retrieves refund history for an organization with filtering options
31349
31349
  * @summary Get refund history
@@ -31357,7 +31357,7 @@ export declare const RefundManagementApiFactory: (configuration?: Configuration,
31357
31357
  * @param {*} [options] Override http request option.
31358
31358
  * @throws {RequiredError}
31359
31359
  */
31360
- apiRefundHistoryGet(orgId?: number, paymentId?: number, startDate?: string, endDate?: string, status?: string, limit?: number, offset?: number, options?: RawAxiosRequestConfig): AxiosPromise<DataTypesGenericResponseDataTypesGetRefundHistoryResponseDto>;
31360
+ refundHistoryGet(orgId?: number, paymentId?: number, startDate?: string, endDate?: string, status?: string, limit?: number, offset?: number, options?: RawAxiosRequestConfig): AxiosPromise<DataTypesGenericResponseDataTypesGetRefundHistoryResponseDto>;
31361
31361
  /**
31362
31362
  * Processes a refund request and executes credit adjustments
31363
31363
  * @summary Process refund
@@ -31365,7 +31365,7 @@ export declare const RefundManagementApiFactory: (configuration?: Configuration,
31365
31365
  * @param {*} [options] Override http request option.
31366
31366
  * @throws {RequiredError}
31367
31367
  */
31368
- apiRefundProcessPost(dataTypesProcessRefundRequestDto: DataTypesProcessRefundRequestDto, options?: RawAxiosRequestConfig): AxiosPromise<DataTypesGenericResponseDataTypesProcessRefundResponseDto>;
31368
+ refundProcessPost(dataTypesProcessRefundRequestDto: DataTypesProcessRefundRequestDto, options?: RawAxiosRequestConfig): AxiosPromise<DataTypesGenericResponseDataTypesProcessRefundResponseDto>;
31369
31369
  };
31370
31370
  /**
31371
31371
  * RefundManagementApi - object-oriented interface
@@ -31435,7 +31435,7 @@ export declare class RefundManagementApi extends BaseAPI {
31435
31435
  * @throws {RequiredError}
31436
31436
  * @memberof RefundManagementApi
31437
31437
  */
31438
- apiRefundCalculatePost(dataTypesRefundCalculationRequestDto: DataTypesRefundCalculationRequestDto, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesGenericResponseDataTypesRefundCalculationResponseDto, any, {}>>;
31438
+ refundCalculatePost(dataTypesRefundCalculationRequestDto: DataTypesRefundCalculationRequestDto, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesGenericResponseDataTypesRefundCalculationResponseDto, any, {}>>;
31439
31439
  /**
31440
31440
  * Checks if a payment is eligible for refund
31441
31441
  * @summary Check refund eligibility
@@ -31444,7 +31444,7 @@ export declare class RefundManagementApi extends BaseAPI {
31444
31444
  * @throws {RequiredError}
31445
31445
  * @memberof RefundManagementApi
31446
31446
  */
31447
- apiRefundEligibilityPaymentIdGet(paymentId: number, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesGenericResponseDataTypesRefundEligibilityDto, any, {}>>;
31447
+ refundEligibilityPaymentIdGet(paymentId: number, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesGenericResponseDataTypesRefundEligibilityDto, any, {}>>;
31448
31448
  /**
31449
31449
  * Retrieves refund history for an organization with filtering options
31450
31450
  * @summary Get refund history
@@ -31459,7 +31459,7 @@ export declare class RefundManagementApi extends BaseAPI {
31459
31459
  * @throws {RequiredError}
31460
31460
  * @memberof RefundManagementApi
31461
31461
  */
31462
- apiRefundHistoryGet(orgId?: number, paymentId?: number, startDate?: string, endDate?: string, status?: string, limit?: number, offset?: number, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesGenericResponseDataTypesGetRefundHistoryResponseDto, any, {}>>;
31462
+ refundHistoryGet(orgId?: number, paymentId?: number, startDate?: string, endDate?: string, status?: string, limit?: number, offset?: number, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesGenericResponseDataTypesGetRefundHistoryResponseDto, any, {}>>;
31463
31463
  /**
31464
31464
  * Processes a refund request and executes credit adjustments
31465
31465
  * @summary Process refund
@@ -31468,7 +31468,7 @@ export declare class RefundManagementApi extends BaseAPI {
31468
31468
  * @throws {RequiredError}
31469
31469
  * @memberof RefundManagementApi
31470
31470
  */
31471
- apiRefundProcessPost(dataTypesProcessRefundRequestDto: DataTypesProcessRefundRequestDto, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesGenericResponseDataTypesProcessRefundResponseDto, any, {}>>;
31471
+ refundProcessPost(dataTypesProcessRefundRequestDto: DataTypesProcessRefundRequestDto, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesGenericResponseDataTypesProcessRefundResponseDto, any, {}>>;
31472
31472
  }
31473
31473
  /**
31474
31474
  * RegisterApi - axios parameter creator