@seekora-ai/admin-api 1.0.79 → 1.0.81
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +25 -23
- package/api.ts +396 -227
- package/dist/api.d.ts +235 -103
- package/dist/api.js +282 -214
- package/dist/esm/api.d.ts +235 -103
- package/dist/esm/api.js +281 -213
- package/package.json +1 -1
- package/seekora-ai-admin-api-1.0.81.tgz +0 -0
- package/seekora-ai-admin-api-1.0.79.tgz +0 -0
package/dist/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
|
|
@@ -14942,6 +14942,105 @@ export interface DataTypesPaymentResponse {
|
|
|
14942
14942
|
*/
|
|
14943
14943
|
'status'?: number;
|
|
14944
14944
|
}
|
|
14945
|
+
/**
|
|
14946
|
+
*
|
|
14947
|
+
* @export
|
|
14948
|
+
* @interface DataTypesPaymentStatusPollResponse
|
|
14949
|
+
*/
|
|
14950
|
+
export interface DataTypesPaymentStatusPollResponse {
|
|
14951
|
+
/**
|
|
14952
|
+
*
|
|
14953
|
+
* @type {number}
|
|
14954
|
+
* @memberof DataTypesPaymentStatusPollResponse
|
|
14955
|
+
*/
|
|
14956
|
+
'amount'?: number;
|
|
14957
|
+
/**
|
|
14958
|
+
*
|
|
14959
|
+
* @type {boolean}
|
|
14960
|
+
* @memberof DataTypesPaymentStatusPollResponse
|
|
14961
|
+
*/
|
|
14962
|
+
'can_retry'?: boolean;
|
|
14963
|
+
/**
|
|
14964
|
+
*
|
|
14965
|
+
* @type {string}
|
|
14966
|
+
* @memberof DataTypesPaymentStatusPollResponse
|
|
14967
|
+
*/
|
|
14968
|
+
'created_at'?: string;
|
|
14969
|
+
/**
|
|
14970
|
+
*
|
|
14971
|
+
* @type {string}
|
|
14972
|
+
* @memberof DataTypesPaymentStatusPollResponse
|
|
14973
|
+
*/
|
|
14974
|
+
'currency'?: string;
|
|
14975
|
+
/**
|
|
14976
|
+
*
|
|
14977
|
+
* @type {string}
|
|
14978
|
+
* @memberof DataTypesPaymentStatusPollResponse
|
|
14979
|
+
*/
|
|
14980
|
+
'error_details'?: string;
|
|
14981
|
+
/**
|
|
14982
|
+
*
|
|
14983
|
+
* @type {DataTypesFulfillmentInfo}
|
|
14984
|
+
* @memberof DataTypesPaymentStatusPollResponse
|
|
14985
|
+
*/
|
|
14986
|
+
'fulfillment'?: DataTypesFulfillmentInfo;
|
|
14987
|
+
/**
|
|
14988
|
+
*
|
|
14989
|
+
* @type {string}
|
|
14990
|
+
* @memberof DataTypesPaymentStatusPollResponse
|
|
14991
|
+
*/
|
|
14992
|
+
'gateway'?: string;
|
|
14993
|
+
/**
|
|
14994
|
+
*
|
|
14995
|
+
* @type {{ [key: string]: any; }}
|
|
14996
|
+
* @memberof DataTypesPaymentStatusPollResponse
|
|
14997
|
+
*/
|
|
14998
|
+
'gateway_data'?: {
|
|
14999
|
+
[key: string]: any;
|
|
15000
|
+
};
|
|
15001
|
+
/**
|
|
15002
|
+
*
|
|
15003
|
+
* @type {string}
|
|
15004
|
+
* @memberof DataTypesPaymentStatusPollResponse
|
|
15005
|
+
*/
|
|
15006
|
+
'message'?: string;
|
|
15007
|
+
/**
|
|
15008
|
+
*
|
|
15009
|
+
* @type {string}
|
|
15010
|
+
* @memberof DataTypesPaymentStatusPollResponse
|
|
15011
|
+
*/
|
|
15012
|
+
'order_id'?: string;
|
|
15013
|
+
/**
|
|
15014
|
+
*
|
|
15015
|
+
* @type {string}
|
|
15016
|
+
* @memberof DataTypesPaymentStatusPollResponse
|
|
15017
|
+
*/
|
|
15018
|
+
'payment_id'?: string;
|
|
15019
|
+
/**
|
|
15020
|
+
*
|
|
15021
|
+
* @type {string}
|
|
15022
|
+
* @memberof DataTypesPaymentStatusPollResponse
|
|
15023
|
+
*/
|
|
15024
|
+
'payment_type'?: string;
|
|
15025
|
+
/**
|
|
15026
|
+
* Seconds to wait before next poll
|
|
15027
|
+
* @type {number}
|
|
15028
|
+
* @memberof DataTypesPaymentStatusPollResponse
|
|
15029
|
+
*/
|
|
15030
|
+
'retry_interval'?: number;
|
|
15031
|
+
/**
|
|
15032
|
+
* \"success\", \"pending\", or \"error\"
|
|
15033
|
+
* @type {string}
|
|
15034
|
+
* @memberof DataTypesPaymentStatusPollResponse
|
|
15035
|
+
*/
|
|
15036
|
+
'status'?: string;
|
|
15037
|
+
/**
|
|
15038
|
+
*
|
|
15039
|
+
* @type {string}
|
|
15040
|
+
* @memberof DataTypesPaymentStatusPollResponse
|
|
15041
|
+
*/
|
|
15042
|
+
'updated_at'?: string;
|
|
15043
|
+
}
|
|
14945
15044
|
/**
|
|
14946
15045
|
*
|
|
14947
15046
|
* @export
|
|
@@ -22777,11 +22876,11 @@ export declare const AnalyticsEventsApiAxiosParamCreator: (configuration?: Confi
|
|
|
22777
22876
|
* @summary Submit Batch Analytics Events
|
|
22778
22877
|
* @param {string} xStoreid Store ID for analytics tracking
|
|
22779
22878
|
* @param {string} xStoresecret Store secret for authentication
|
|
22780
|
-
* @param {
|
|
22879
|
+
* @param {AnalyticsBatchPostRequest} analyticsBatchPostRequest Batch event request with array of events
|
|
22781
22880
|
* @param {*} [options] Override http request option.
|
|
22782
22881
|
* @throws {RequiredError}
|
|
22783
22882
|
*/
|
|
22784
|
-
|
|
22883
|
+
analyticsBatchPost: (xStoreid: string, xStoresecret: string, analyticsBatchPostRequest: AnalyticsBatchPostRequest, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
22785
22884
|
/**
|
|
22786
22885
|
* Retrieve analytics configuration including supported event types, batch limits, and funnel stages for client integration
|
|
22787
22886
|
* @summary Get Analytics Configuration
|
|
@@ -22790,7 +22889,7 @@ export declare const AnalyticsEventsApiAxiosParamCreator: (configuration?: Confi
|
|
|
22790
22889
|
* @param {*} [options] Override http request option.
|
|
22791
22890
|
* @throws {RequiredError}
|
|
22792
22891
|
*/
|
|
22793
|
-
|
|
22892
|
+
analyticsConfigGet: (xStoreid: string, xStoresecret: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
22794
22893
|
/**
|
|
22795
22894
|
* Submit a single analytics event for tracking user interactions, search behavior, and conversions
|
|
22796
22895
|
* @summary Submit Analytics Event
|
|
@@ -22800,7 +22899,7 @@ export declare const AnalyticsEventsApiAxiosParamCreator: (configuration?: Confi
|
|
|
22800
22899
|
* @param {*} [options] Override http request option.
|
|
22801
22900
|
* @throws {RequiredError}
|
|
22802
22901
|
*/
|
|
22803
|
-
|
|
22902
|
+
analyticsEventPost: (xStoreid: string, xStoresecret: string, dataTypesEventPayload: DataTypesEventPayload, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
22804
22903
|
/**
|
|
22805
22904
|
* Retrieve the complete event schema including required and optional fields, data types, and validation rules
|
|
22806
22905
|
* @summary Get Event Schema
|
|
@@ -22809,7 +22908,7 @@ export declare const AnalyticsEventsApiAxiosParamCreator: (configuration?: Confi
|
|
|
22809
22908
|
* @param {*} [options] Override http request option.
|
|
22810
22909
|
* @throws {RequiredError}
|
|
22811
22910
|
*/
|
|
22812
|
-
|
|
22911
|
+
analyticsSchemaGet: (xStoreid: string, xStoresecret: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
22813
22912
|
/**
|
|
22814
22913
|
* Validate an analytics event payload without actually processing or storing it
|
|
22815
22914
|
* @summary Validate Analytics Event
|
|
@@ -22819,7 +22918,7 @@ export declare const AnalyticsEventsApiAxiosParamCreator: (configuration?: Confi
|
|
|
22819
22918
|
* @param {*} [options] Override http request option.
|
|
22820
22919
|
* @throws {RequiredError}
|
|
22821
22920
|
*/
|
|
22822
|
-
|
|
22921
|
+
analyticsValidatePost: (xStoreid: string, xStoresecret: string, dataTypesEventPayload: DataTypesEventPayload, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
22823
22922
|
};
|
|
22824
22923
|
/**
|
|
22825
22924
|
* AnalyticsEventsApi - functional programming interface
|
|
@@ -22831,11 +22930,11 @@ export declare const AnalyticsEventsApiFp: (configuration?: Configuration) => {
|
|
|
22831
22930
|
* @summary Submit Batch Analytics Events
|
|
22832
22931
|
* @param {string} xStoreid Store ID for analytics tracking
|
|
22833
22932
|
* @param {string} xStoresecret Store secret for authentication
|
|
22834
|
-
* @param {
|
|
22933
|
+
* @param {AnalyticsBatchPostRequest} analyticsBatchPostRequest Batch event request with array of events
|
|
22835
22934
|
* @param {*} [options] Override http request option.
|
|
22836
22935
|
* @throws {RequiredError}
|
|
22837
22936
|
*/
|
|
22838
|
-
|
|
22937
|
+
analyticsBatchPost(xStoreid: string, xStoresecret: string, analyticsBatchPostRequest: AnalyticsBatchPostRequest, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<DataTypesResponse>>;
|
|
22839
22938
|
/**
|
|
22840
22939
|
* Retrieve analytics configuration including supported event types, batch limits, and funnel stages for client integration
|
|
22841
22940
|
* @summary Get Analytics Configuration
|
|
@@ -22844,7 +22943,7 @@ export declare const AnalyticsEventsApiFp: (configuration?: Configuration) => {
|
|
|
22844
22943
|
* @param {*} [options] Override http request option.
|
|
22845
22944
|
* @throws {RequiredError}
|
|
22846
22945
|
*/
|
|
22847
|
-
|
|
22946
|
+
analyticsConfigGet(xStoreid: string, xStoresecret: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<DataTypesResponse>>;
|
|
22848
22947
|
/**
|
|
22849
22948
|
* Submit a single analytics event for tracking user interactions, search behavior, and conversions
|
|
22850
22949
|
* @summary Submit Analytics Event
|
|
@@ -22854,7 +22953,7 @@ export declare const AnalyticsEventsApiFp: (configuration?: Configuration) => {
|
|
|
22854
22953
|
* @param {*} [options] Override http request option.
|
|
22855
22954
|
* @throws {RequiredError}
|
|
22856
22955
|
*/
|
|
22857
|
-
|
|
22956
|
+
analyticsEventPost(xStoreid: string, xStoresecret: string, dataTypesEventPayload: DataTypesEventPayload, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<DataTypesResponse>>;
|
|
22858
22957
|
/**
|
|
22859
22958
|
* Retrieve the complete event schema including required and optional fields, data types, and validation rules
|
|
22860
22959
|
* @summary Get Event Schema
|
|
@@ -22863,7 +22962,7 @@ export declare const AnalyticsEventsApiFp: (configuration?: Configuration) => {
|
|
|
22863
22962
|
* @param {*} [options] Override http request option.
|
|
22864
22963
|
* @throws {RequiredError}
|
|
22865
22964
|
*/
|
|
22866
|
-
|
|
22965
|
+
analyticsSchemaGet(xStoreid: string, xStoresecret: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<DataTypesResponse>>;
|
|
22867
22966
|
/**
|
|
22868
22967
|
* Validate an analytics event payload without actually processing or storing it
|
|
22869
22968
|
* @summary Validate Analytics Event
|
|
@@ -22873,7 +22972,7 @@ export declare const AnalyticsEventsApiFp: (configuration?: Configuration) => {
|
|
|
22873
22972
|
* @param {*} [options] Override http request option.
|
|
22874
22973
|
* @throws {RequiredError}
|
|
22875
22974
|
*/
|
|
22876
|
-
|
|
22975
|
+
analyticsValidatePost(xStoreid: string, xStoresecret: string, dataTypesEventPayload: DataTypesEventPayload, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<DataTypesResponse>>;
|
|
22877
22976
|
};
|
|
22878
22977
|
/**
|
|
22879
22978
|
* AnalyticsEventsApi - factory interface
|
|
@@ -22885,11 +22984,11 @@ export declare const AnalyticsEventsApiFactory: (configuration?: Configuration,
|
|
|
22885
22984
|
* @summary Submit Batch Analytics Events
|
|
22886
22985
|
* @param {string} xStoreid Store ID for analytics tracking
|
|
22887
22986
|
* @param {string} xStoresecret Store secret for authentication
|
|
22888
|
-
* @param {
|
|
22987
|
+
* @param {AnalyticsBatchPostRequest} analyticsBatchPostRequest Batch event request with array of events
|
|
22889
22988
|
* @param {*} [options] Override http request option.
|
|
22890
22989
|
* @throws {RequiredError}
|
|
22891
22990
|
*/
|
|
22892
|
-
|
|
22991
|
+
analyticsBatchPost(xStoreid: string, xStoresecret: string, analyticsBatchPostRequest: AnalyticsBatchPostRequest, options?: RawAxiosRequestConfig): AxiosPromise<DataTypesResponse>;
|
|
22893
22992
|
/**
|
|
22894
22993
|
* Retrieve analytics configuration including supported event types, batch limits, and funnel stages for client integration
|
|
22895
22994
|
* @summary Get Analytics Configuration
|
|
@@ -22898,7 +22997,7 @@ export declare const AnalyticsEventsApiFactory: (configuration?: Configuration,
|
|
|
22898
22997
|
* @param {*} [options] Override http request option.
|
|
22899
22998
|
* @throws {RequiredError}
|
|
22900
22999
|
*/
|
|
22901
|
-
|
|
23000
|
+
analyticsConfigGet(xStoreid: string, xStoresecret: string, options?: RawAxiosRequestConfig): AxiosPromise<DataTypesResponse>;
|
|
22902
23001
|
/**
|
|
22903
23002
|
* Submit a single analytics event for tracking user interactions, search behavior, and conversions
|
|
22904
23003
|
* @summary Submit Analytics Event
|
|
@@ -22908,7 +23007,7 @@ export declare const AnalyticsEventsApiFactory: (configuration?: Configuration,
|
|
|
22908
23007
|
* @param {*} [options] Override http request option.
|
|
22909
23008
|
* @throws {RequiredError}
|
|
22910
23009
|
*/
|
|
22911
|
-
|
|
23010
|
+
analyticsEventPost(xStoreid: string, xStoresecret: string, dataTypesEventPayload: DataTypesEventPayload, options?: RawAxiosRequestConfig): AxiosPromise<DataTypesResponse>;
|
|
22912
23011
|
/**
|
|
22913
23012
|
* Retrieve the complete event schema including required and optional fields, data types, and validation rules
|
|
22914
23013
|
* @summary Get Event Schema
|
|
@@ -22917,7 +23016,7 @@ export declare const AnalyticsEventsApiFactory: (configuration?: Configuration,
|
|
|
22917
23016
|
* @param {*} [options] Override http request option.
|
|
22918
23017
|
* @throws {RequiredError}
|
|
22919
23018
|
*/
|
|
22920
|
-
|
|
23019
|
+
analyticsSchemaGet(xStoreid: string, xStoresecret: string, options?: RawAxiosRequestConfig): AxiosPromise<DataTypesResponse>;
|
|
22921
23020
|
/**
|
|
22922
23021
|
* Validate an analytics event payload without actually processing or storing it
|
|
22923
23022
|
* @summary Validate Analytics Event
|
|
@@ -22927,7 +23026,7 @@ export declare const AnalyticsEventsApiFactory: (configuration?: Configuration,
|
|
|
22927
23026
|
* @param {*} [options] Override http request option.
|
|
22928
23027
|
* @throws {RequiredError}
|
|
22929
23028
|
*/
|
|
22930
|
-
|
|
23029
|
+
analyticsValidatePost(xStoreid: string, xStoresecret: string, dataTypesEventPayload: DataTypesEventPayload, options?: RawAxiosRequestConfig): AxiosPromise<DataTypesResponse>;
|
|
22931
23030
|
};
|
|
22932
23031
|
/**
|
|
22933
23032
|
* AnalyticsEventsApi - object-oriented interface
|
|
@@ -22941,12 +23040,12 @@ export declare class AnalyticsEventsApi extends BaseAPI {
|
|
|
22941
23040
|
* @summary Submit Batch Analytics Events
|
|
22942
23041
|
* @param {string} xStoreid Store ID for analytics tracking
|
|
22943
23042
|
* @param {string} xStoresecret Store secret for authentication
|
|
22944
|
-
* @param {
|
|
23043
|
+
* @param {AnalyticsBatchPostRequest} analyticsBatchPostRequest Batch event request with array of events
|
|
22945
23044
|
* @param {*} [options] Override http request option.
|
|
22946
23045
|
* @throws {RequiredError}
|
|
22947
23046
|
* @memberof AnalyticsEventsApi
|
|
22948
23047
|
*/
|
|
22949
|
-
|
|
23048
|
+
analyticsBatchPost(xStoreid: string, xStoresecret: string, analyticsBatchPostRequest: AnalyticsBatchPostRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesResponse, any, {}>>;
|
|
22950
23049
|
/**
|
|
22951
23050
|
* Retrieve analytics configuration including supported event types, batch limits, and funnel stages for client integration
|
|
22952
23051
|
* @summary Get Analytics Configuration
|
|
@@ -22956,7 +23055,7 @@ export declare class AnalyticsEventsApi extends BaseAPI {
|
|
|
22956
23055
|
* @throws {RequiredError}
|
|
22957
23056
|
* @memberof AnalyticsEventsApi
|
|
22958
23057
|
*/
|
|
22959
|
-
|
|
23058
|
+
analyticsConfigGet(xStoreid: string, xStoresecret: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesResponse, any, {}>>;
|
|
22960
23059
|
/**
|
|
22961
23060
|
* Submit a single analytics event for tracking user interactions, search behavior, and conversions
|
|
22962
23061
|
* @summary Submit Analytics Event
|
|
@@ -22967,7 +23066,7 @@ export declare class AnalyticsEventsApi extends BaseAPI {
|
|
|
22967
23066
|
* @throws {RequiredError}
|
|
22968
23067
|
* @memberof AnalyticsEventsApi
|
|
22969
23068
|
*/
|
|
22970
|
-
|
|
23069
|
+
analyticsEventPost(xStoreid: string, xStoresecret: string, dataTypesEventPayload: DataTypesEventPayload, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesResponse, any, {}>>;
|
|
22971
23070
|
/**
|
|
22972
23071
|
* Retrieve the complete event schema including required and optional fields, data types, and validation rules
|
|
22973
23072
|
* @summary Get Event Schema
|
|
@@ -22977,7 +23076,7 @@ export declare class AnalyticsEventsApi extends BaseAPI {
|
|
|
22977
23076
|
* @throws {RequiredError}
|
|
22978
23077
|
* @memberof AnalyticsEventsApi
|
|
22979
23078
|
*/
|
|
22980
|
-
|
|
23079
|
+
analyticsSchemaGet(xStoreid: string, xStoresecret: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesResponse, any, {}>>;
|
|
22981
23080
|
/**
|
|
22982
23081
|
* Validate an analytics event payload without actually processing or storing it
|
|
22983
23082
|
* @summary Validate Analytics Event
|
|
@@ -22988,7 +23087,7 @@ export declare class AnalyticsEventsApi extends BaseAPI {
|
|
|
22988
23087
|
* @throws {RequiredError}
|
|
22989
23088
|
* @memberof AnalyticsEventsApi
|
|
22990
23089
|
*/
|
|
22991
|
-
|
|
23090
|
+
analyticsValidatePost(xStoreid: string, xStoresecret: string, dataTypesEventPayload: DataTypesEventPayload, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesResponse, any, {}>>;
|
|
22992
23091
|
}
|
|
22993
23092
|
/**
|
|
22994
23093
|
* AnalyticsRulesApi - axios parameter creator
|
|
@@ -23978,7 +24077,7 @@ export declare const AutomatedRefundManagementApiAxiosParamCreator: (configurati
|
|
|
23978
24077
|
* @param {*} [options] Override http request option.
|
|
23979
24078
|
* @throws {RequiredError}
|
|
23980
24079
|
*/
|
|
23981
|
-
|
|
24080
|
+
refundAutomatedPreviewPost: (refundRefundPreviewRequestDto: RefundRefundPreviewRequestDto, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
23982
24081
|
/**
|
|
23983
24082
|
* Processes refund automatically with subscription cancellation, Razorpay integration, and credit adjustments
|
|
23984
24083
|
* @summary Process automated refund
|
|
@@ -23986,7 +24085,7 @@ export declare const AutomatedRefundManagementApiAxiosParamCreator: (configurati
|
|
|
23986
24085
|
* @param {*} [options] Override http request option.
|
|
23987
24086
|
* @throws {RequiredError}
|
|
23988
24087
|
*/
|
|
23989
|
-
|
|
24088
|
+
refundAutomatedProcessPost: (refundRefundPreviewRequestDto: RefundRefundPreviewRequestDto, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
23990
24089
|
};
|
|
23991
24090
|
/**
|
|
23992
24091
|
* AutomatedRefundManagementApi - functional programming interface
|
|
@@ -24000,7 +24099,7 @@ export declare const AutomatedRefundManagementApiFp: (configuration?: Configurat
|
|
|
24000
24099
|
* @param {*} [options] Override http request option.
|
|
24001
24100
|
* @throws {RequiredError}
|
|
24002
24101
|
*/
|
|
24003
|
-
|
|
24102
|
+
refundAutomatedPreviewPost(refundRefundPreviewRequestDto: RefundRefundPreviewRequestDto, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<DataTypesGenericResponseRefundRefundPreviewResponseDto>>;
|
|
24004
24103
|
/**
|
|
24005
24104
|
* Processes refund automatically with subscription cancellation, Razorpay integration, and credit adjustments
|
|
24006
24105
|
* @summary Process automated refund
|
|
@@ -24008,7 +24107,7 @@ export declare const AutomatedRefundManagementApiFp: (configuration?: Configurat
|
|
|
24008
24107
|
* @param {*} [options] Override http request option.
|
|
24009
24108
|
* @throws {RequiredError}
|
|
24010
24109
|
*/
|
|
24011
|
-
|
|
24110
|
+
refundAutomatedProcessPost(refundRefundPreviewRequestDto: RefundRefundPreviewRequestDto, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<DataTypesGenericResponseDataTypesProcessRefundResponseDto>>;
|
|
24012
24111
|
};
|
|
24013
24112
|
/**
|
|
24014
24113
|
* AutomatedRefundManagementApi - factory interface
|
|
@@ -24022,7 +24121,7 @@ export declare const AutomatedRefundManagementApiFactory: (configuration?: Confi
|
|
|
24022
24121
|
* @param {*} [options] Override http request option.
|
|
24023
24122
|
* @throws {RequiredError}
|
|
24024
24123
|
*/
|
|
24025
|
-
|
|
24124
|
+
refundAutomatedPreviewPost(refundRefundPreviewRequestDto: RefundRefundPreviewRequestDto, options?: RawAxiosRequestConfig): AxiosPromise<DataTypesGenericResponseRefundRefundPreviewResponseDto>;
|
|
24026
24125
|
/**
|
|
24027
24126
|
* Processes refund automatically with subscription cancellation, Razorpay integration, and credit adjustments
|
|
24028
24127
|
* @summary Process automated refund
|
|
@@ -24030,7 +24129,7 @@ export declare const AutomatedRefundManagementApiFactory: (configuration?: Confi
|
|
|
24030
24129
|
* @param {*} [options] Override http request option.
|
|
24031
24130
|
* @throws {RequiredError}
|
|
24032
24131
|
*/
|
|
24033
|
-
|
|
24132
|
+
refundAutomatedProcessPost(refundRefundPreviewRequestDto: RefundRefundPreviewRequestDto, options?: RawAxiosRequestConfig): AxiosPromise<DataTypesGenericResponseDataTypesProcessRefundResponseDto>;
|
|
24034
24133
|
};
|
|
24035
24134
|
/**
|
|
24036
24135
|
* AutomatedRefundManagementApi - object-oriented interface
|
|
@@ -24047,7 +24146,7 @@ export declare class AutomatedRefundManagementApi extends BaseAPI {
|
|
|
24047
24146
|
* @throws {RequiredError}
|
|
24048
24147
|
* @memberof AutomatedRefundManagementApi
|
|
24049
24148
|
*/
|
|
24050
|
-
|
|
24149
|
+
refundAutomatedPreviewPost(refundRefundPreviewRequestDto: RefundRefundPreviewRequestDto, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesGenericResponseRefundRefundPreviewResponseDto, any, {}>>;
|
|
24051
24150
|
/**
|
|
24052
24151
|
* Processes refund automatically with subscription cancellation, Razorpay integration, and credit adjustments
|
|
24053
24152
|
* @summary Process automated refund
|
|
@@ -24056,7 +24155,7 @@ export declare class AutomatedRefundManagementApi extends BaseAPI {
|
|
|
24056
24155
|
* @throws {RequiredError}
|
|
24057
24156
|
* @memberof AutomatedRefundManagementApi
|
|
24058
24157
|
*/
|
|
24059
|
-
|
|
24158
|
+
refundAutomatedProcessPost(refundRefundPreviewRequestDto: RefundRefundPreviewRequestDto, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesGenericResponseDataTypesProcessRefundResponseDto, any, {}>>;
|
|
24060
24159
|
}
|
|
24061
24160
|
/**
|
|
24062
24161
|
* BillingDashboardApi - axios parameter creator
|
|
@@ -25078,7 +25177,7 @@ export declare const CreditsApiAxiosParamCreator: (configuration?: Configuration
|
|
|
25078
25177
|
* @param {*} [options] Override http request option.
|
|
25079
25178
|
* @throws {RequiredError}
|
|
25080
25179
|
*/
|
|
25081
|
-
|
|
25180
|
+
creditsAdminAdjustPost: (dataTypesManualCreditAdjustmentRequest: DataTypesManualCreditAdjustmentRequest, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
25082
25181
|
/**
|
|
25083
25182
|
* Get comprehensive credit balance including recent transactions, usage patterns, and expiry details
|
|
25084
25183
|
* @summary Get detailed organization credit balance
|
|
@@ -25086,14 +25185,14 @@ export declare const CreditsApiAxiosParamCreator: (configuration?: Configuration
|
|
|
25086
25185
|
* @param {*} [options] Override http request option.
|
|
25087
25186
|
* @throws {RequiredError}
|
|
25088
25187
|
*/
|
|
25089
|
-
|
|
25188
|
+
creditsBalanceDetailedGet: (limit?: number, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
25090
25189
|
/**
|
|
25091
25190
|
* Get current credit balance and summary for the authenticated user\'s organization
|
|
25092
25191
|
* @summary Get organization credit balance
|
|
25093
25192
|
* @param {*} [options] Override http request option.
|
|
25094
25193
|
* @throws {RequiredError}
|
|
25095
25194
|
*/
|
|
25096
|
-
|
|
25195
|
+
creditsBalanceGet: (options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
25097
25196
|
/**
|
|
25098
25197
|
* Get current credit balance for a specific store (legacy endpoint - use organization endpoints instead)
|
|
25099
25198
|
* @summary Get store credit balance (legacy)
|
|
@@ -25102,7 +25201,7 @@ export declare const CreditsApiAxiosParamCreator: (configuration?: Configuration
|
|
|
25102
25201
|
* @deprecated
|
|
25103
25202
|
* @throws {RequiredError}
|
|
25104
25203
|
*/
|
|
25105
|
-
|
|
25204
|
+
creditsBalanceStoreStoreIdGet: (storeId: number, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
25106
25205
|
/**
|
|
25107
25206
|
* Manually consume credits for testing or administrative purposes using FIFO logic
|
|
25108
25207
|
* @summary Manually consume credits
|
|
@@ -25110,7 +25209,7 @@ export declare const CreditsApiAxiosParamCreator: (configuration?: Configuration
|
|
|
25110
25209
|
* @param {*} [options] Override http request option.
|
|
25111
25210
|
* @throws {RequiredError}
|
|
25112
25211
|
*/
|
|
25113
|
-
|
|
25212
|
+
creditsConsumePost: (dataTypesManualConsumeCreditsRequest: DataTypesManualConsumeCreditsRequest, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
25114
25213
|
/**
|
|
25115
25214
|
* Get detailed history of credit consumption with FIFO breakdown and analytics
|
|
25116
25215
|
* @summary Get FIFO consumption history
|
|
@@ -25122,14 +25221,14 @@ export declare const CreditsApiAxiosParamCreator: (configuration?: Configuration
|
|
|
25122
25221
|
* @param {*} [options] Override http request option.
|
|
25123
25222
|
* @throws {RequiredError}
|
|
25124
25223
|
*/
|
|
25125
|
-
|
|
25224
|
+
creditsConsumptionHistoryGet: (page?: number, limit?: number, endpoint?: string, startDate?: string, endDate?: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
25126
25225
|
/**
|
|
25127
25226
|
* Get all active credit plans available for purchase with detailed pricing and features
|
|
25128
25227
|
* @summary Get available credit plans
|
|
25129
25228
|
* @param {*} [options] Override http request option.
|
|
25130
25229
|
* @throws {RequiredError}
|
|
25131
25230
|
*/
|
|
25132
|
-
|
|
25231
|
+
creditsPlansGet: (options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
25133
25232
|
/**
|
|
25134
25233
|
* Purchase credits using a credit plan with payment processing
|
|
25135
25234
|
* @summary Purchase credits
|
|
@@ -25137,19 +25236,19 @@ export declare const CreditsApiAxiosParamCreator: (configuration?: Configuration
|
|
|
25137
25236
|
* @param {*} [options] Override http request option.
|
|
25138
25237
|
* @throws {RequiredError}
|
|
25139
25238
|
*/
|
|
25140
|
-
|
|
25239
|
+
creditsPurchasePost: (dataTypesPurchaseCreditsRequest: DataTypesPurchaseCreditsRequest, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
25141
25240
|
/**
|
|
25142
25241
|
* Get paginated credit transaction history for the authenticated organization
|
|
25143
25242
|
* @summary Get organization credit transactions
|
|
25144
25243
|
* @param {number} [page] Page number
|
|
25145
25244
|
* @param {number} [limit] Items per page
|
|
25146
|
-
* @param {
|
|
25245
|
+
* @param {CreditsTransactionsGetTypeEnum} [type] Filter by transaction type
|
|
25147
25246
|
* @param {string} [startDate] Start date filter (RFC3339 format)
|
|
25148
25247
|
* @param {string} [endDate] End date filter (RFC3339 format)
|
|
25149
25248
|
* @param {*} [options] Override http request option.
|
|
25150
25249
|
* @throws {RequiredError}
|
|
25151
25250
|
*/
|
|
25152
|
-
|
|
25251
|
+
creditsTransactionsGet: (page?: number, limit?: number, type?: CreditsTransactionsGetTypeEnum, startDate?: string, endDate?: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
25153
25252
|
};
|
|
25154
25253
|
/**
|
|
25155
25254
|
* CreditsApi - functional programming interface
|
|
@@ -25163,7 +25262,7 @@ export declare const CreditsApiFp: (configuration?: Configuration) => {
|
|
|
25163
25262
|
* @param {*} [options] Override http request option.
|
|
25164
25263
|
* @throws {RequiredError}
|
|
25165
25264
|
*/
|
|
25166
|
-
|
|
25265
|
+
creditsAdminAdjustPost(dataTypesManualCreditAdjustmentRequest: DataTypesManualCreditAdjustmentRequest, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<DataTypesGenericResponseDataTypesCreditAdjustmentResponse>>;
|
|
25167
25266
|
/**
|
|
25168
25267
|
* Get comprehensive credit balance including recent transactions, usage patterns, and expiry details
|
|
25169
25268
|
* @summary Get detailed organization credit balance
|
|
@@ -25171,14 +25270,14 @@ export declare const CreditsApiFp: (configuration?: Configuration) => {
|
|
|
25171
25270
|
* @param {*} [options] Override http request option.
|
|
25172
25271
|
* @throws {RequiredError}
|
|
25173
25272
|
*/
|
|
25174
|
-
|
|
25273
|
+
creditsBalanceDetailedGet(limit?: number, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<DataTypesGenericResponseDataTypesDetailedCreditBalanceResponse>>;
|
|
25175
25274
|
/**
|
|
25176
25275
|
* Get current credit balance and summary for the authenticated user\'s organization
|
|
25177
25276
|
* @summary Get organization credit balance
|
|
25178
25277
|
* @param {*} [options] Override http request option.
|
|
25179
25278
|
* @throws {RequiredError}
|
|
25180
25279
|
*/
|
|
25181
|
-
|
|
25280
|
+
creditsBalanceGet(options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<DataTypesGenericResponseDataTypesCreditBalance>>;
|
|
25182
25281
|
/**
|
|
25183
25282
|
* Get current credit balance for a specific store (legacy endpoint - use organization endpoints instead)
|
|
25184
25283
|
* @summary Get store credit balance (legacy)
|
|
@@ -25187,7 +25286,7 @@ export declare const CreditsApiFp: (configuration?: Configuration) => {
|
|
|
25187
25286
|
* @deprecated
|
|
25188
25287
|
* @throws {RequiredError}
|
|
25189
25288
|
*/
|
|
25190
|
-
|
|
25289
|
+
creditsBalanceStoreStoreIdGet(storeId: number, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<DataTypesGenericResponseDataTypesCreditBalance>>;
|
|
25191
25290
|
/**
|
|
25192
25291
|
* Manually consume credits for testing or administrative purposes using FIFO logic
|
|
25193
25292
|
* @summary Manually consume credits
|
|
@@ -25195,7 +25294,7 @@ export declare const CreditsApiFp: (configuration?: Configuration) => {
|
|
|
25195
25294
|
* @param {*} [options] Override http request option.
|
|
25196
25295
|
* @throws {RequiredError}
|
|
25197
25296
|
*/
|
|
25198
|
-
|
|
25297
|
+
creditsConsumePost(dataTypesManualConsumeCreditsRequest: DataTypesManualConsumeCreditsRequest, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<DataTypesGenericResponseDataTypesCreditConsumptionResult>>;
|
|
25199
25298
|
/**
|
|
25200
25299
|
* Get detailed history of credit consumption with FIFO breakdown and analytics
|
|
25201
25300
|
* @summary Get FIFO consumption history
|
|
@@ -25207,14 +25306,14 @@ export declare const CreditsApiFp: (configuration?: Configuration) => {
|
|
|
25207
25306
|
* @param {*} [options] Override http request option.
|
|
25208
25307
|
* @throws {RequiredError}
|
|
25209
25308
|
*/
|
|
25210
|
-
|
|
25309
|
+
creditsConsumptionHistoryGet(page?: number, limit?: number, endpoint?: string, startDate?: string, endDate?: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<DataTypesGenericResponseDataTypesConsumptionHistoryResponse>>;
|
|
25211
25310
|
/**
|
|
25212
25311
|
* Get all active credit plans available for purchase with detailed pricing and features
|
|
25213
25312
|
* @summary Get available credit plans
|
|
25214
25313
|
* @param {*} [options] Override http request option.
|
|
25215
25314
|
* @throws {RequiredError}
|
|
25216
25315
|
*/
|
|
25217
|
-
|
|
25316
|
+
creditsPlansGet(options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<DataTypesGenericResponseArrayDataTypesCreditPlan>>;
|
|
25218
25317
|
/**
|
|
25219
25318
|
* Purchase credits using a credit plan with payment processing
|
|
25220
25319
|
* @summary Purchase credits
|
|
@@ -25222,19 +25321,19 @@ export declare const CreditsApiFp: (configuration?: Configuration) => {
|
|
|
25222
25321
|
* @param {*} [options] Override http request option.
|
|
25223
25322
|
* @throws {RequiredError}
|
|
25224
25323
|
*/
|
|
25225
|
-
|
|
25324
|
+
creditsPurchasePost(dataTypesPurchaseCreditsRequest: DataTypesPurchaseCreditsRequest, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<DataTypesGenericResponseDataTypesPurchaseCreditsResponse>>;
|
|
25226
25325
|
/**
|
|
25227
25326
|
* Get paginated credit transaction history for the authenticated organization
|
|
25228
25327
|
* @summary Get organization credit transactions
|
|
25229
25328
|
* @param {number} [page] Page number
|
|
25230
25329
|
* @param {number} [limit] Items per page
|
|
25231
|
-
* @param {
|
|
25330
|
+
* @param {CreditsTransactionsGetTypeEnum} [type] Filter by transaction type
|
|
25232
25331
|
* @param {string} [startDate] Start date filter (RFC3339 format)
|
|
25233
25332
|
* @param {string} [endDate] End date filter (RFC3339 format)
|
|
25234
25333
|
* @param {*} [options] Override http request option.
|
|
25235
25334
|
* @throws {RequiredError}
|
|
25236
25335
|
*/
|
|
25237
|
-
|
|
25336
|
+
creditsTransactionsGet(page?: number, limit?: number, type?: CreditsTransactionsGetTypeEnum, startDate?: string, endDate?: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<DataTypesGenericResponseDataTypesPaginatedTransactionsResponse>>;
|
|
25238
25337
|
};
|
|
25239
25338
|
/**
|
|
25240
25339
|
* CreditsApi - factory interface
|
|
@@ -25248,7 +25347,7 @@ export declare const CreditsApiFactory: (configuration?: Configuration, basePath
|
|
|
25248
25347
|
* @param {*} [options] Override http request option.
|
|
25249
25348
|
* @throws {RequiredError}
|
|
25250
25349
|
*/
|
|
25251
|
-
|
|
25350
|
+
creditsAdminAdjustPost(dataTypesManualCreditAdjustmentRequest: DataTypesManualCreditAdjustmentRequest, options?: RawAxiosRequestConfig): AxiosPromise<DataTypesGenericResponseDataTypesCreditAdjustmentResponse>;
|
|
25252
25351
|
/**
|
|
25253
25352
|
* Get comprehensive credit balance including recent transactions, usage patterns, and expiry details
|
|
25254
25353
|
* @summary Get detailed organization credit balance
|
|
@@ -25256,14 +25355,14 @@ export declare const CreditsApiFactory: (configuration?: Configuration, basePath
|
|
|
25256
25355
|
* @param {*} [options] Override http request option.
|
|
25257
25356
|
* @throws {RequiredError}
|
|
25258
25357
|
*/
|
|
25259
|
-
|
|
25358
|
+
creditsBalanceDetailedGet(limit?: number, options?: RawAxiosRequestConfig): AxiosPromise<DataTypesGenericResponseDataTypesDetailedCreditBalanceResponse>;
|
|
25260
25359
|
/**
|
|
25261
25360
|
* Get current credit balance and summary for the authenticated user\'s organization
|
|
25262
25361
|
* @summary Get organization credit balance
|
|
25263
25362
|
* @param {*} [options] Override http request option.
|
|
25264
25363
|
* @throws {RequiredError}
|
|
25265
25364
|
*/
|
|
25266
|
-
|
|
25365
|
+
creditsBalanceGet(options?: RawAxiosRequestConfig): AxiosPromise<DataTypesGenericResponseDataTypesCreditBalance>;
|
|
25267
25366
|
/**
|
|
25268
25367
|
* Get current credit balance for a specific store (legacy endpoint - use organization endpoints instead)
|
|
25269
25368
|
* @summary Get store credit balance (legacy)
|
|
@@ -25272,7 +25371,7 @@ export declare const CreditsApiFactory: (configuration?: Configuration, basePath
|
|
|
25272
25371
|
* @deprecated
|
|
25273
25372
|
* @throws {RequiredError}
|
|
25274
25373
|
*/
|
|
25275
|
-
|
|
25374
|
+
creditsBalanceStoreStoreIdGet(storeId: number, options?: RawAxiosRequestConfig): AxiosPromise<DataTypesGenericResponseDataTypesCreditBalance>;
|
|
25276
25375
|
/**
|
|
25277
25376
|
* Manually consume credits for testing or administrative purposes using FIFO logic
|
|
25278
25377
|
* @summary Manually consume credits
|
|
@@ -25280,7 +25379,7 @@ export declare const CreditsApiFactory: (configuration?: Configuration, basePath
|
|
|
25280
25379
|
* @param {*} [options] Override http request option.
|
|
25281
25380
|
* @throws {RequiredError}
|
|
25282
25381
|
*/
|
|
25283
|
-
|
|
25382
|
+
creditsConsumePost(dataTypesManualConsumeCreditsRequest: DataTypesManualConsumeCreditsRequest, options?: RawAxiosRequestConfig): AxiosPromise<DataTypesGenericResponseDataTypesCreditConsumptionResult>;
|
|
25284
25383
|
/**
|
|
25285
25384
|
* Get detailed history of credit consumption with FIFO breakdown and analytics
|
|
25286
25385
|
* @summary Get FIFO consumption history
|
|
@@ -25292,14 +25391,14 @@ export declare const CreditsApiFactory: (configuration?: Configuration, basePath
|
|
|
25292
25391
|
* @param {*} [options] Override http request option.
|
|
25293
25392
|
* @throws {RequiredError}
|
|
25294
25393
|
*/
|
|
25295
|
-
|
|
25394
|
+
creditsConsumptionHistoryGet(page?: number, limit?: number, endpoint?: string, startDate?: string, endDate?: string, options?: RawAxiosRequestConfig): AxiosPromise<DataTypesGenericResponseDataTypesConsumptionHistoryResponse>;
|
|
25296
25395
|
/**
|
|
25297
25396
|
* Get all active credit plans available for purchase with detailed pricing and features
|
|
25298
25397
|
* @summary Get available credit plans
|
|
25299
25398
|
* @param {*} [options] Override http request option.
|
|
25300
25399
|
* @throws {RequiredError}
|
|
25301
25400
|
*/
|
|
25302
|
-
|
|
25401
|
+
creditsPlansGet(options?: RawAxiosRequestConfig): AxiosPromise<DataTypesGenericResponseArrayDataTypesCreditPlan>;
|
|
25303
25402
|
/**
|
|
25304
25403
|
* Purchase credits using a credit plan with payment processing
|
|
25305
25404
|
* @summary Purchase credits
|
|
@@ -25307,19 +25406,19 @@ export declare const CreditsApiFactory: (configuration?: Configuration, basePath
|
|
|
25307
25406
|
* @param {*} [options] Override http request option.
|
|
25308
25407
|
* @throws {RequiredError}
|
|
25309
25408
|
*/
|
|
25310
|
-
|
|
25409
|
+
creditsPurchasePost(dataTypesPurchaseCreditsRequest: DataTypesPurchaseCreditsRequest, options?: RawAxiosRequestConfig): AxiosPromise<DataTypesGenericResponseDataTypesPurchaseCreditsResponse>;
|
|
25311
25410
|
/**
|
|
25312
25411
|
* Get paginated credit transaction history for the authenticated organization
|
|
25313
25412
|
* @summary Get organization credit transactions
|
|
25314
25413
|
* @param {number} [page] Page number
|
|
25315
25414
|
* @param {number} [limit] Items per page
|
|
25316
|
-
* @param {
|
|
25415
|
+
* @param {CreditsTransactionsGetTypeEnum} [type] Filter by transaction type
|
|
25317
25416
|
* @param {string} [startDate] Start date filter (RFC3339 format)
|
|
25318
25417
|
* @param {string} [endDate] End date filter (RFC3339 format)
|
|
25319
25418
|
* @param {*} [options] Override http request option.
|
|
25320
25419
|
* @throws {RequiredError}
|
|
25321
25420
|
*/
|
|
25322
|
-
|
|
25421
|
+
creditsTransactionsGet(page?: number, limit?: number, type?: CreditsTransactionsGetTypeEnum, startDate?: string, endDate?: string, options?: RawAxiosRequestConfig): AxiosPromise<DataTypesGenericResponseDataTypesPaginatedTransactionsResponse>;
|
|
25323
25422
|
};
|
|
25324
25423
|
/**
|
|
25325
25424
|
* CreditsApi - object-oriented interface
|
|
@@ -25336,7 +25435,7 @@ export declare class CreditsApi extends BaseAPI {
|
|
|
25336
25435
|
* @throws {RequiredError}
|
|
25337
25436
|
* @memberof CreditsApi
|
|
25338
25437
|
*/
|
|
25339
|
-
|
|
25438
|
+
creditsAdminAdjustPost(dataTypesManualCreditAdjustmentRequest: DataTypesManualCreditAdjustmentRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesGenericResponseDataTypesCreditAdjustmentResponse, any, {}>>;
|
|
25340
25439
|
/**
|
|
25341
25440
|
* Get comprehensive credit balance including recent transactions, usage patterns, and expiry details
|
|
25342
25441
|
* @summary Get detailed organization credit balance
|
|
@@ -25345,7 +25444,7 @@ export declare class CreditsApi extends BaseAPI {
|
|
|
25345
25444
|
* @throws {RequiredError}
|
|
25346
25445
|
* @memberof CreditsApi
|
|
25347
25446
|
*/
|
|
25348
|
-
|
|
25447
|
+
creditsBalanceDetailedGet(limit?: number, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesGenericResponseDataTypesDetailedCreditBalanceResponse, any, {}>>;
|
|
25349
25448
|
/**
|
|
25350
25449
|
* Get current credit balance and summary for the authenticated user\'s organization
|
|
25351
25450
|
* @summary Get organization credit balance
|
|
@@ -25353,7 +25452,7 @@ export declare class CreditsApi extends BaseAPI {
|
|
|
25353
25452
|
* @throws {RequiredError}
|
|
25354
25453
|
* @memberof CreditsApi
|
|
25355
25454
|
*/
|
|
25356
|
-
|
|
25455
|
+
creditsBalanceGet(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesGenericResponseDataTypesCreditBalance, any, {}>>;
|
|
25357
25456
|
/**
|
|
25358
25457
|
* Get current credit balance for a specific store (legacy endpoint - use organization endpoints instead)
|
|
25359
25458
|
* @summary Get store credit balance (legacy)
|
|
@@ -25363,7 +25462,7 @@ export declare class CreditsApi extends BaseAPI {
|
|
|
25363
25462
|
* @throws {RequiredError}
|
|
25364
25463
|
* @memberof CreditsApi
|
|
25365
25464
|
*/
|
|
25366
|
-
|
|
25465
|
+
creditsBalanceStoreStoreIdGet(storeId: number, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesGenericResponseDataTypesCreditBalance, any, {}>>;
|
|
25367
25466
|
/**
|
|
25368
25467
|
* Manually consume credits for testing or administrative purposes using FIFO logic
|
|
25369
25468
|
* @summary Manually consume credits
|
|
@@ -25372,7 +25471,7 @@ export declare class CreditsApi extends BaseAPI {
|
|
|
25372
25471
|
* @throws {RequiredError}
|
|
25373
25472
|
* @memberof CreditsApi
|
|
25374
25473
|
*/
|
|
25375
|
-
|
|
25474
|
+
creditsConsumePost(dataTypesManualConsumeCreditsRequest: DataTypesManualConsumeCreditsRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesGenericResponseDataTypesCreditConsumptionResult, any, {}>>;
|
|
25376
25475
|
/**
|
|
25377
25476
|
* Get detailed history of credit consumption with FIFO breakdown and analytics
|
|
25378
25477
|
* @summary Get FIFO consumption history
|
|
@@ -25385,7 +25484,7 @@ export declare class CreditsApi extends BaseAPI {
|
|
|
25385
25484
|
* @throws {RequiredError}
|
|
25386
25485
|
* @memberof CreditsApi
|
|
25387
25486
|
*/
|
|
25388
|
-
|
|
25487
|
+
creditsConsumptionHistoryGet(page?: number, limit?: number, endpoint?: string, startDate?: string, endDate?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesGenericResponseDataTypesConsumptionHistoryResponse, any, {}>>;
|
|
25389
25488
|
/**
|
|
25390
25489
|
* Get all active credit plans available for purchase with detailed pricing and features
|
|
25391
25490
|
* @summary Get available credit plans
|
|
@@ -25393,7 +25492,7 @@ export declare class CreditsApi extends BaseAPI {
|
|
|
25393
25492
|
* @throws {RequiredError}
|
|
25394
25493
|
* @memberof CreditsApi
|
|
25395
25494
|
*/
|
|
25396
|
-
|
|
25495
|
+
creditsPlansGet(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesGenericResponseArrayDataTypesCreditPlan, any, {}>>;
|
|
25397
25496
|
/**
|
|
25398
25497
|
* Purchase credits using a credit plan with payment processing
|
|
25399
25498
|
* @summary Purchase credits
|
|
@@ -25402,25 +25501,25 @@ export declare class CreditsApi extends BaseAPI {
|
|
|
25402
25501
|
* @throws {RequiredError}
|
|
25403
25502
|
* @memberof CreditsApi
|
|
25404
25503
|
*/
|
|
25405
|
-
|
|
25504
|
+
creditsPurchasePost(dataTypesPurchaseCreditsRequest: DataTypesPurchaseCreditsRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesGenericResponseDataTypesPurchaseCreditsResponse, any, {}>>;
|
|
25406
25505
|
/**
|
|
25407
25506
|
* Get paginated credit transaction history for the authenticated organization
|
|
25408
25507
|
* @summary Get organization credit transactions
|
|
25409
25508
|
* @param {number} [page] Page number
|
|
25410
25509
|
* @param {number} [limit] Items per page
|
|
25411
|
-
* @param {
|
|
25510
|
+
* @param {CreditsTransactionsGetTypeEnum} [type] Filter by transaction type
|
|
25412
25511
|
* @param {string} [startDate] Start date filter (RFC3339 format)
|
|
25413
25512
|
* @param {string} [endDate] End date filter (RFC3339 format)
|
|
25414
25513
|
* @param {*} [options] Override http request option.
|
|
25415
25514
|
* @throws {RequiredError}
|
|
25416
25515
|
* @memberof CreditsApi
|
|
25417
25516
|
*/
|
|
25418
|
-
|
|
25517
|
+
creditsTransactionsGet(page?: number, limit?: number, type?: CreditsTransactionsGetTypeEnum, startDate?: string, endDate?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesGenericResponseDataTypesPaginatedTransactionsResponse, any, {}>>;
|
|
25419
25518
|
}
|
|
25420
25519
|
/**
|
|
25421
25520
|
* @export
|
|
25422
25521
|
*/
|
|
25423
|
-
export declare const
|
|
25522
|
+
export declare const CreditsTransactionsGetTypeEnum: {
|
|
25424
25523
|
readonly Purchase: "purchase";
|
|
25425
25524
|
readonly Consume: "consume";
|
|
25426
25525
|
readonly Refund: "refund";
|
|
@@ -25428,7 +25527,7 @@ export declare const ApiCreditsTransactionsGetTypeEnum: {
|
|
|
25428
25527
|
readonly Expire: "expire";
|
|
25429
25528
|
readonly Manual: "manual";
|
|
25430
25529
|
};
|
|
25431
|
-
export type
|
|
25530
|
+
export type CreditsTransactionsGetTypeEnum = typeof CreditsTransactionsGetTypeEnum[keyof typeof CreditsTransactionsGetTypeEnum];
|
|
25432
25531
|
/**
|
|
25433
25532
|
* CustomStopwordsApi - axios parameter creator
|
|
25434
25533
|
* @export
|
|
@@ -28648,6 +28747,14 @@ export declare const PaymentGatewayApiAxiosParamCreator: (configuration?: Config
|
|
|
28648
28747
|
* @throws {RequiredError}
|
|
28649
28748
|
*/
|
|
28650
28749
|
adminPaymentGatewayGatewaysGet: (options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
28750
|
+
/**
|
|
28751
|
+
* Returns payment status in a frontend-friendly format (\"success\", \"pending\", or \"error\") for polling. This endpoint is designed to be polled by the frontend to check payment status. It returns retry intervals and fulfillment information.
|
|
28752
|
+
* @summary Get payment status for polling (frontend)
|
|
28753
|
+
* @param {string} orderId Order ID (can be gateway order ID or internal order ID)
|
|
28754
|
+
* @param {*} [options] Override http request option.
|
|
28755
|
+
* @throws {RequiredError}
|
|
28756
|
+
*/
|
|
28757
|
+
adminPaymentGatewayPaymentStatusOrderIdGet: (orderId: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
28651
28758
|
/**
|
|
28652
28759
|
* Processes a refund for a completed payment
|
|
28653
28760
|
* @summary Process payment refund
|
|
@@ -28716,6 +28823,14 @@ export declare const PaymentGatewayApiFp: (configuration?: Configuration) => {
|
|
|
28716
28823
|
* @throws {RequiredError}
|
|
28717
28824
|
*/
|
|
28718
28825
|
adminPaymentGatewayGatewaysGet(options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<DataTypesGatewayListResponse>>;
|
|
28826
|
+
/**
|
|
28827
|
+
* Returns payment status in a frontend-friendly format (\"success\", \"pending\", or \"error\") for polling. This endpoint is designed to be polled by the frontend to check payment status. It returns retry intervals and fulfillment information.
|
|
28828
|
+
* @summary Get payment status for polling (frontend)
|
|
28829
|
+
* @param {string} orderId Order ID (can be gateway order ID or internal order ID)
|
|
28830
|
+
* @param {*} [options] Override http request option.
|
|
28831
|
+
* @throws {RequiredError}
|
|
28832
|
+
*/
|
|
28833
|
+
adminPaymentGatewayPaymentStatusOrderIdGet(orderId: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<DataTypesPaymentStatusPollResponse>>;
|
|
28719
28834
|
/**
|
|
28720
28835
|
* Processes a refund for a completed payment
|
|
28721
28836
|
* @summary Process payment refund
|
|
@@ -28788,6 +28903,14 @@ export declare const PaymentGatewayApiFactory: (configuration?: Configuration, b
|
|
|
28788
28903
|
* @throws {RequiredError}
|
|
28789
28904
|
*/
|
|
28790
28905
|
adminPaymentGatewayGatewaysGet(options?: RawAxiosRequestConfig): AxiosPromise<DataTypesGatewayListResponse>;
|
|
28906
|
+
/**
|
|
28907
|
+
* Returns payment status in a frontend-friendly format (\"success\", \"pending\", or \"error\") for polling. This endpoint is designed to be polled by the frontend to check payment status. It returns retry intervals and fulfillment information.
|
|
28908
|
+
* @summary Get payment status for polling (frontend)
|
|
28909
|
+
* @param {string} orderId Order ID (can be gateway order ID or internal order ID)
|
|
28910
|
+
* @param {*} [options] Override http request option.
|
|
28911
|
+
* @throws {RequiredError}
|
|
28912
|
+
*/
|
|
28913
|
+
adminPaymentGatewayPaymentStatusOrderIdGet(orderId: string, options?: RawAxiosRequestConfig): AxiosPromise<DataTypesPaymentStatusPollResponse>;
|
|
28791
28914
|
/**
|
|
28792
28915
|
* Processes a refund for a completed payment
|
|
28793
28916
|
* @summary Process payment refund
|
|
@@ -28865,6 +28988,15 @@ export declare class PaymentGatewayApi extends BaseAPI {
|
|
|
28865
28988
|
* @memberof PaymentGatewayApi
|
|
28866
28989
|
*/
|
|
28867
28990
|
adminPaymentGatewayGatewaysGet(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesGatewayListResponse, any, {}>>;
|
|
28991
|
+
/**
|
|
28992
|
+
* Returns payment status in a frontend-friendly format (\"success\", \"pending\", or \"error\") for polling. This endpoint is designed to be polled by the frontend to check payment status. It returns retry intervals and fulfillment information.
|
|
28993
|
+
* @summary Get payment status for polling (frontend)
|
|
28994
|
+
* @param {string} orderId Order ID (can be gateway order ID or internal order ID)
|
|
28995
|
+
* @param {*} [options] Override http request option.
|
|
28996
|
+
* @throws {RequiredError}
|
|
28997
|
+
* @memberof PaymentGatewayApi
|
|
28998
|
+
*/
|
|
28999
|
+
adminPaymentGatewayPaymentStatusOrderIdGet(orderId: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesPaymentStatusPollResponse, any, {}>>;
|
|
28868
29000
|
/**
|
|
28869
29001
|
* Processes a refund for a completed payment
|
|
28870
29002
|
* @summary Process payment refund
|
|
@@ -31151,7 +31283,7 @@ export declare const RefundManagementApiAxiosParamCreator: (configuration?: Conf
|
|
|
31151
31283
|
* @param {*} [options] Override http request option.
|
|
31152
31284
|
* @throws {RequiredError}
|
|
31153
31285
|
*/
|
|
31154
|
-
|
|
31286
|
+
refundCalculatePost: (dataTypesRefundCalculationRequestDto: DataTypesRefundCalculationRequestDto, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
31155
31287
|
/**
|
|
31156
31288
|
* Checks if a payment is eligible for refund
|
|
31157
31289
|
* @summary Check refund eligibility
|
|
@@ -31159,7 +31291,7 @@ export declare const RefundManagementApiAxiosParamCreator: (configuration?: Conf
|
|
|
31159
31291
|
* @param {*} [options] Override http request option.
|
|
31160
31292
|
* @throws {RequiredError}
|
|
31161
31293
|
*/
|
|
31162
|
-
|
|
31294
|
+
refundEligibilityPaymentIdGet: (paymentId: number, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
31163
31295
|
/**
|
|
31164
31296
|
* Retrieves refund history for an organization with filtering options
|
|
31165
31297
|
* @summary Get refund history
|
|
@@ -31173,7 +31305,7 @@ export declare const RefundManagementApiAxiosParamCreator: (configuration?: Conf
|
|
|
31173
31305
|
* @param {*} [options] Override http request option.
|
|
31174
31306
|
* @throws {RequiredError}
|
|
31175
31307
|
*/
|
|
31176
|
-
|
|
31308
|
+
refundHistoryGet: (orgId?: number, paymentId?: number, startDate?: string, endDate?: string, status?: string, limit?: number, offset?: number, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
31177
31309
|
/**
|
|
31178
31310
|
* Processes a refund request and executes credit adjustments
|
|
31179
31311
|
* @summary Process refund
|
|
@@ -31181,7 +31313,7 @@ export declare const RefundManagementApiAxiosParamCreator: (configuration?: Conf
|
|
|
31181
31313
|
* @param {*} [options] Override http request option.
|
|
31182
31314
|
* @throws {RequiredError}
|
|
31183
31315
|
*/
|
|
31184
|
-
|
|
31316
|
+
refundProcessPost: (dataTypesProcessRefundRequestDto: DataTypesProcessRefundRequestDto, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
31185
31317
|
};
|
|
31186
31318
|
/**
|
|
31187
31319
|
* RefundManagementApi - functional programming interface
|
|
@@ -31243,7 +31375,7 @@ export declare const RefundManagementApiFp: (configuration?: Configuration) => {
|
|
|
31243
31375
|
* @param {*} [options] Override http request option.
|
|
31244
31376
|
* @throws {RequiredError}
|
|
31245
31377
|
*/
|
|
31246
|
-
|
|
31378
|
+
refundCalculatePost(dataTypesRefundCalculationRequestDto: DataTypesRefundCalculationRequestDto, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<DataTypesGenericResponseDataTypesRefundCalculationResponseDto>>;
|
|
31247
31379
|
/**
|
|
31248
31380
|
* Checks if a payment is eligible for refund
|
|
31249
31381
|
* @summary Check refund eligibility
|
|
@@ -31251,7 +31383,7 @@ export declare const RefundManagementApiFp: (configuration?: Configuration) => {
|
|
|
31251
31383
|
* @param {*} [options] Override http request option.
|
|
31252
31384
|
* @throws {RequiredError}
|
|
31253
31385
|
*/
|
|
31254
|
-
|
|
31386
|
+
refundEligibilityPaymentIdGet(paymentId: number, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<DataTypesGenericResponseDataTypesRefundEligibilityDto>>;
|
|
31255
31387
|
/**
|
|
31256
31388
|
* Retrieves refund history for an organization with filtering options
|
|
31257
31389
|
* @summary Get refund history
|
|
@@ -31265,7 +31397,7 @@ export declare const RefundManagementApiFp: (configuration?: Configuration) => {
|
|
|
31265
31397
|
* @param {*} [options] Override http request option.
|
|
31266
31398
|
* @throws {RequiredError}
|
|
31267
31399
|
*/
|
|
31268
|
-
|
|
31400
|
+
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
31401
|
/**
|
|
31270
31402
|
* Processes a refund request and executes credit adjustments
|
|
31271
31403
|
* @summary Process refund
|
|
@@ -31273,7 +31405,7 @@ export declare const RefundManagementApiFp: (configuration?: Configuration) => {
|
|
|
31273
31405
|
* @param {*} [options] Override http request option.
|
|
31274
31406
|
* @throws {RequiredError}
|
|
31275
31407
|
*/
|
|
31276
|
-
|
|
31408
|
+
refundProcessPost(dataTypesProcessRefundRequestDto: DataTypesProcessRefundRequestDto, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<DataTypesGenericResponseDataTypesProcessRefundResponseDto>>;
|
|
31277
31409
|
};
|
|
31278
31410
|
/**
|
|
31279
31411
|
* RefundManagementApi - factory interface
|
|
@@ -31335,7 +31467,7 @@ export declare const RefundManagementApiFactory: (configuration?: Configuration,
|
|
|
31335
31467
|
* @param {*} [options] Override http request option.
|
|
31336
31468
|
* @throws {RequiredError}
|
|
31337
31469
|
*/
|
|
31338
|
-
|
|
31470
|
+
refundCalculatePost(dataTypesRefundCalculationRequestDto: DataTypesRefundCalculationRequestDto, options?: RawAxiosRequestConfig): AxiosPromise<DataTypesGenericResponseDataTypesRefundCalculationResponseDto>;
|
|
31339
31471
|
/**
|
|
31340
31472
|
* Checks if a payment is eligible for refund
|
|
31341
31473
|
* @summary Check refund eligibility
|
|
@@ -31343,7 +31475,7 @@ export declare const RefundManagementApiFactory: (configuration?: Configuration,
|
|
|
31343
31475
|
* @param {*} [options] Override http request option.
|
|
31344
31476
|
* @throws {RequiredError}
|
|
31345
31477
|
*/
|
|
31346
|
-
|
|
31478
|
+
refundEligibilityPaymentIdGet(paymentId: number, options?: RawAxiosRequestConfig): AxiosPromise<DataTypesGenericResponseDataTypesRefundEligibilityDto>;
|
|
31347
31479
|
/**
|
|
31348
31480
|
* Retrieves refund history for an organization with filtering options
|
|
31349
31481
|
* @summary Get refund history
|
|
@@ -31357,7 +31489,7 @@ export declare const RefundManagementApiFactory: (configuration?: Configuration,
|
|
|
31357
31489
|
* @param {*} [options] Override http request option.
|
|
31358
31490
|
* @throws {RequiredError}
|
|
31359
31491
|
*/
|
|
31360
|
-
|
|
31492
|
+
refundHistoryGet(orgId?: number, paymentId?: number, startDate?: string, endDate?: string, status?: string, limit?: number, offset?: number, options?: RawAxiosRequestConfig): AxiosPromise<DataTypesGenericResponseDataTypesGetRefundHistoryResponseDto>;
|
|
31361
31493
|
/**
|
|
31362
31494
|
* Processes a refund request and executes credit adjustments
|
|
31363
31495
|
* @summary Process refund
|
|
@@ -31365,7 +31497,7 @@ export declare const RefundManagementApiFactory: (configuration?: Configuration,
|
|
|
31365
31497
|
* @param {*} [options] Override http request option.
|
|
31366
31498
|
* @throws {RequiredError}
|
|
31367
31499
|
*/
|
|
31368
|
-
|
|
31500
|
+
refundProcessPost(dataTypesProcessRefundRequestDto: DataTypesProcessRefundRequestDto, options?: RawAxiosRequestConfig): AxiosPromise<DataTypesGenericResponseDataTypesProcessRefundResponseDto>;
|
|
31369
31501
|
};
|
|
31370
31502
|
/**
|
|
31371
31503
|
* RefundManagementApi - object-oriented interface
|
|
@@ -31435,7 +31567,7 @@ export declare class RefundManagementApi extends BaseAPI {
|
|
|
31435
31567
|
* @throws {RequiredError}
|
|
31436
31568
|
* @memberof RefundManagementApi
|
|
31437
31569
|
*/
|
|
31438
|
-
|
|
31570
|
+
refundCalculatePost(dataTypesRefundCalculationRequestDto: DataTypesRefundCalculationRequestDto, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesGenericResponseDataTypesRefundCalculationResponseDto, any, {}>>;
|
|
31439
31571
|
/**
|
|
31440
31572
|
* Checks if a payment is eligible for refund
|
|
31441
31573
|
* @summary Check refund eligibility
|
|
@@ -31444,7 +31576,7 @@ export declare class RefundManagementApi extends BaseAPI {
|
|
|
31444
31576
|
* @throws {RequiredError}
|
|
31445
31577
|
* @memberof RefundManagementApi
|
|
31446
31578
|
*/
|
|
31447
|
-
|
|
31579
|
+
refundEligibilityPaymentIdGet(paymentId: number, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesGenericResponseDataTypesRefundEligibilityDto, any, {}>>;
|
|
31448
31580
|
/**
|
|
31449
31581
|
* Retrieves refund history for an organization with filtering options
|
|
31450
31582
|
* @summary Get refund history
|
|
@@ -31459,7 +31591,7 @@ export declare class RefundManagementApi extends BaseAPI {
|
|
|
31459
31591
|
* @throws {RequiredError}
|
|
31460
31592
|
* @memberof RefundManagementApi
|
|
31461
31593
|
*/
|
|
31462
|
-
|
|
31594
|
+
refundHistoryGet(orgId?: number, paymentId?: number, startDate?: string, endDate?: string, status?: string, limit?: number, offset?: number, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesGenericResponseDataTypesGetRefundHistoryResponseDto, any, {}>>;
|
|
31463
31595
|
/**
|
|
31464
31596
|
* Processes a refund request and executes credit adjustments
|
|
31465
31597
|
* @summary Process refund
|
|
@@ -31468,7 +31600,7 @@ export declare class RefundManagementApi extends BaseAPI {
|
|
|
31468
31600
|
* @throws {RequiredError}
|
|
31469
31601
|
* @memberof RefundManagementApi
|
|
31470
31602
|
*/
|
|
31471
|
-
|
|
31603
|
+
refundProcessPost(dataTypesProcessRefundRequestDto: DataTypesProcessRefundRequestDto, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesGenericResponseDataTypesProcessRefundResponseDto, any, {}>>;
|
|
31472
31604
|
}
|
|
31473
31605
|
/**
|
|
31474
31606
|
* RegisterApi - axios parameter creator
|