@seekora-ai/admin-api 1.0.74 → 1.0.76
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 +12 -12
- package/api.ts +410 -398
- package/dist/api.d.ts +146 -134
- package/dist/api.js +398 -398
- package/dist/esm/api.d.ts +146 -134
- package/dist/esm/api.js +396 -396
- package/package.json +1 -1
- package/seekora-ai-admin-api-1.0.76.tgz +0 -0
- package/seekora-ai-admin-api-1.0.74.tgz +0 -0
package/dist/api.d.ts
CHANGED
|
@@ -8997,6 +8997,12 @@ export interface DataTypesCreatePaymentOrderRequest {
|
|
|
8997
8997
|
* @memberof DataTypesCreatePaymentOrderRequest
|
|
8998
8998
|
*/
|
|
8999
8999
|
'auto_renewal'?: boolean;
|
|
9000
|
+
/**
|
|
9001
|
+
* New: Required when using plan_identifier (monthly/annual)
|
|
9002
|
+
* @type {string}
|
|
9003
|
+
* @memberof DataTypesCreatePaymentOrderRequest
|
|
9004
|
+
*/
|
|
9005
|
+
'billing_frequency'?: string;
|
|
9000
9006
|
/**
|
|
9001
9007
|
* Fields for credit top-up
|
|
9002
9008
|
* @type {number}
|
|
@@ -9036,7 +9042,7 @@ export interface DataTypesCreatePaymentOrderRequest {
|
|
|
9036
9042
|
[key: string]: any;
|
|
9037
9043
|
};
|
|
9038
9044
|
/**
|
|
9039
|
-
* Fields for subscription payments
|
|
9045
|
+
* Fields for subscription payments (use either PlanID OR PlanIdentifier+BillingFrequency)
|
|
9040
9046
|
* @type {number}
|
|
9041
9047
|
* @memberof DataTypesCreatePaymentOrderRequest
|
|
9042
9048
|
*/
|
|
@@ -9054,11 +9060,17 @@ export interface DataTypesCreatePaymentOrderRequest {
|
|
|
9054
9060
|
*/
|
|
9055
9061
|
'payment_type': DataTypesCreatePaymentOrderRequestPaymentTypeEnum;
|
|
9056
9062
|
/**
|
|
9057
|
-
*
|
|
9063
|
+
* Legacy: Direct variant plan ID
|
|
9058
9064
|
* @type {number}
|
|
9059
9065
|
* @memberof DataTypesCreatePaymentOrderRequest
|
|
9060
9066
|
*/
|
|
9061
9067
|
'plan_id'?: number;
|
|
9068
|
+
/**
|
|
9069
|
+
* New: Logical plan identifier (shared across variants)
|
|
9070
|
+
* @type {string}
|
|
9071
|
+
* @memberof DataTypesCreatePaymentOrderRequest
|
|
9072
|
+
*/
|
|
9073
|
+
'plan_identifier'?: string;
|
|
9062
9074
|
/**
|
|
9063
9075
|
*
|
|
9064
9076
|
* @type {string}
|
|
@@ -23652,7 +23664,7 @@ export declare const CommonApiAxiosParamCreator: (configuration?: Configuration)
|
|
|
23652
23664
|
* @param {*} [options] Override http request option.
|
|
23653
23665
|
* @throws {RequiredError}
|
|
23654
23666
|
*/
|
|
23655
|
-
|
|
23667
|
+
v1CommonLanguagesGet: (options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
23656
23668
|
};
|
|
23657
23669
|
/**
|
|
23658
23670
|
* CommonApi - functional programming interface
|
|
@@ -23665,7 +23677,7 @@ export declare const CommonApiFp: (configuration?: Configuration) => {
|
|
|
23665
23677
|
* @param {*} [options] Override http request option.
|
|
23666
23678
|
* @throws {RequiredError}
|
|
23667
23679
|
*/
|
|
23668
|
-
|
|
23680
|
+
v1CommonLanguagesGet(options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<{
|
|
23669
23681
|
[key: string]: any;
|
|
23670
23682
|
}>>;
|
|
23671
23683
|
};
|
|
@@ -23680,7 +23692,7 @@ export declare const CommonApiFactory: (configuration?: Configuration, basePath?
|
|
|
23680
23692
|
* @param {*} [options] Override http request option.
|
|
23681
23693
|
* @throws {RequiredError}
|
|
23682
23694
|
*/
|
|
23683
|
-
|
|
23695
|
+
v1CommonLanguagesGet(options?: RawAxiosRequestConfig): AxiosPromise<{
|
|
23684
23696
|
[key: string]: any;
|
|
23685
23697
|
}>;
|
|
23686
23698
|
};
|
|
@@ -23698,7 +23710,7 @@ export declare class CommonApi extends BaseAPI {
|
|
|
23698
23710
|
* @throws {RequiredError}
|
|
23699
23711
|
* @memberof CommonApi
|
|
23700
23712
|
*/
|
|
23701
|
-
|
|
23713
|
+
v1CommonLanguagesGet(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<{
|
|
23702
23714
|
[key: string]: any;
|
|
23703
23715
|
}, any, {}>>;
|
|
23704
23716
|
}
|
|
@@ -27602,27 +27614,27 @@ export declare class ParentMenusApi extends BaseAPI {
|
|
|
27602
27614
|
*/
|
|
27603
27615
|
export declare const PaymentGatewayApiAxiosParamCreator: (configuration?: Configuration) => {
|
|
27604
27616
|
/**
|
|
27605
|
-
*
|
|
27606
|
-
* @summary
|
|
27617
|
+
* Creates a payment order using specified or default payment gateway
|
|
27618
|
+
* @summary Create a new payment order
|
|
27619
|
+
* @param {DataTypesCreatePaymentOrderRequest} dataTypesCreatePaymentOrderRequest Payment order details
|
|
27607
27620
|
* @param {*} [options] Override http request option.
|
|
27608
27621
|
* @throws {RequiredError}
|
|
27609
27622
|
*/
|
|
27610
|
-
|
|
27623
|
+
adminPaymentGatewayCreateOrderPost: (dataTypesCreatePaymentOrderRequest: DataTypesCreatePaymentOrderRequest, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
27611
27624
|
/**
|
|
27612
|
-
*
|
|
27613
|
-
* @summary
|
|
27614
|
-
* @param {DataTypesCreatePaymentOrderRequest} dataTypesCreatePaymentOrderRequest Payment order details
|
|
27625
|
+
* Returns list of all active credit plans for purchase (available both as public and protected endpoint)
|
|
27626
|
+
* @summary Get available credit plans
|
|
27615
27627
|
* @param {*} [options] Override http request option.
|
|
27616
27628
|
* @throws {RequiredError}
|
|
27617
27629
|
*/
|
|
27618
|
-
|
|
27630
|
+
adminPaymentGatewayCreditPlansGet: (options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
27619
27631
|
/**
|
|
27620
27632
|
* Returns list of all available payment gateways
|
|
27621
27633
|
* @summary Get available payment gateways
|
|
27622
27634
|
* @param {*} [options] Override http request option.
|
|
27623
27635
|
* @throws {RequiredError}
|
|
27624
27636
|
*/
|
|
27625
|
-
|
|
27637
|
+
adminPaymentGatewayGatewaysGet: (options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
27626
27638
|
/**
|
|
27627
27639
|
* Processes a refund for a completed payment
|
|
27628
27640
|
* @summary Process payment refund
|
|
@@ -27630,7 +27642,7 @@ export declare const PaymentGatewayApiAxiosParamCreator: (configuration?: Config
|
|
|
27630
27642
|
* @param {*} [options] Override http request option.
|
|
27631
27643
|
* @throws {RequiredError}
|
|
27632
27644
|
*/
|
|
27633
|
-
|
|
27645
|
+
adminPaymentGatewayRefundPost: (dataTypesRefundRequestDto: DataTypesRefundRequestDto, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
27634
27646
|
/**
|
|
27635
27647
|
* Verifies the current status of a payment
|
|
27636
27648
|
* @summary Verify payment status
|
|
@@ -27638,7 +27650,7 @@ export declare const PaymentGatewayApiAxiosParamCreator: (configuration?: Config
|
|
|
27638
27650
|
* @param {*} [options] Override http request option.
|
|
27639
27651
|
* @throws {RequiredError}
|
|
27640
27652
|
*/
|
|
27641
|
-
|
|
27653
|
+
adminPaymentGatewayVerifyPost: (dataTypesVerifyPaymentRequest: DataTypesVerifyPaymentRequest, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
27642
27654
|
/**
|
|
27643
27655
|
* Returns list of all active credit plans for purchase (available both as public and protected endpoint)
|
|
27644
27656
|
* @summary Get available credit plans
|
|
@@ -27670,27 +27682,27 @@ export declare const PaymentGatewayApiAxiosParamCreator: (configuration?: Config
|
|
|
27670
27682
|
*/
|
|
27671
27683
|
export declare const PaymentGatewayApiFp: (configuration?: Configuration) => {
|
|
27672
27684
|
/**
|
|
27673
|
-
*
|
|
27674
|
-
* @summary
|
|
27685
|
+
* Creates a payment order using specified or default payment gateway
|
|
27686
|
+
* @summary Create a new payment order
|
|
27687
|
+
* @param {DataTypesCreatePaymentOrderRequest} dataTypesCreatePaymentOrderRequest Payment order details
|
|
27675
27688
|
* @param {*} [options] Override http request option.
|
|
27676
27689
|
* @throws {RequiredError}
|
|
27677
27690
|
*/
|
|
27678
|
-
|
|
27691
|
+
adminPaymentGatewayCreateOrderPost(dataTypesCreatePaymentOrderRequest: DataTypesCreatePaymentOrderRequest, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<DataTypesCreatePaymentOrderResponse>>;
|
|
27679
27692
|
/**
|
|
27680
|
-
*
|
|
27681
|
-
* @summary
|
|
27682
|
-
* @param {DataTypesCreatePaymentOrderRequest} dataTypesCreatePaymentOrderRequest Payment order details
|
|
27693
|
+
* Returns list of all active credit plans for purchase (available both as public and protected endpoint)
|
|
27694
|
+
* @summary Get available credit plans
|
|
27683
27695
|
* @param {*} [options] Override http request option.
|
|
27684
27696
|
* @throws {RequiredError}
|
|
27685
27697
|
*/
|
|
27686
|
-
|
|
27698
|
+
adminPaymentGatewayCreditPlansGet(options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<DataTypesCreditPlan>>>;
|
|
27687
27699
|
/**
|
|
27688
27700
|
* Returns list of all available payment gateways
|
|
27689
27701
|
* @summary Get available payment gateways
|
|
27690
27702
|
* @param {*} [options] Override http request option.
|
|
27691
27703
|
* @throws {RequiredError}
|
|
27692
27704
|
*/
|
|
27693
|
-
|
|
27705
|
+
adminPaymentGatewayGatewaysGet(options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<DataTypesGatewayListResponse>>;
|
|
27694
27706
|
/**
|
|
27695
27707
|
* Processes a refund for a completed payment
|
|
27696
27708
|
* @summary Process payment refund
|
|
@@ -27698,7 +27710,7 @@ export declare const PaymentGatewayApiFp: (configuration?: Configuration) => {
|
|
|
27698
27710
|
* @param {*} [options] Override http request option.
|
|
27699
27711
|
* @throws {RequiredError}
|
|
27700
27712
|
*/
|
|
27701
|
-
|
|
27713
|
+
adminPaymentGatewayRefundPost(dataTypesRefundRequestDto: DataTypesRefundRequestDto, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<DataTypesRefundResponseDto>>;
|
|
27702
27714
|
/**
|
|
27703
27715
|
* Verifies the current status of a payment
|
|
27704
27716
|
* @summary Verify payment status
|
|
@@ -27706,7 +27718,7 @@ export declare const PaymentGatewayApiFp: (configuration?: Configuration) => {
|
|
|
27706
27718
|
* @param {*} [options] Override http request option.
|
|
27707
27719
|
* @throws {RequiredError}
|
|
27708
27720
|
*/
|
|
27709
|
-
|
|
27721
|
+
adminPaymentGatewayVerifyPost(dataTypesVerifyPaymentRequest: DataTypesVerifyPaymentRequest, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<DataTypesPaymentStatusResponse>>;
|
|
27710
27722
|
/**
|
|
27711
27723
|
* Returns list of all active credit plans for purchase (available both as public and protected endpoint)
|
|
27712
27724
|
* @summary Get available credit plans
|
|
@@ -27742,27 +27754,27 @@ export declare const PaymentGatewayApiFp: (configuration?: Configuration) => {
|
|
|
27742
27754
|
*/
|
|
27743
27755
|
export declare const PaymentGatewayApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
|
|
27744
27756
|
/**
|
|
27745
|
-
*
|
|
27746
|
-
* @summary
|
|
27757
|
+
* Creates a payment order using specified or default payment gateway
|
|
27758
|
+
* @summary Create a new payment order
|
|
27759
|
+
* @param {DataTypesCreatePaymentOrderRequest} dataTypesCreatePaymentOrderRequest Payment order details
|
|
27747
27760
|
* @param {*} [options] Override http request option.
|
|
27748
27761
|
* @throws {RequiredError}
|
|
27749
27762
|
*/
|
|
27750
|
-
|
|
27763
|
+
adminPaymentGatewayCreateOrderPost(dataTypesCreatePaymentOrderRequest: DataTypesCreatePaymentOrderRequest, options?: RawAxiosRequestConfig): AxiosPromise<DataTypesCreatePaymentOrderResponse>;
|
|
27751
27764
|
/**
|
|
27752
|
-
*
|
|
27753
|
-
* @summary
|
|
27754
|
-
* @param {DataTypesCreatePaymentOrderRequest} dataTypesCreatePaymentOrderRequest Payment order details
|
|
27765
|
+
* Returns list of all active credit plans for purchase (available both as public and protected endpoint)
|
|
27766
|
+
* @summary Get available credit plans
|
|
27755
27767
|
* @param {*} [options] Override http request option.
|
|
27756
27768
|
* @throws {RequiredError}
|
|
27757
27769
|
*/
|
|
27758
|
-
|
|
27770
|
+
adminPaymentGatewayCreditPlansGet(options?: RawAxiosRequestConfig): AxiosPromise<Array<DataTypesCreditPlan>>;
|
|
27759
27771
|
/**
|
|
27760
27772
|
* Returns list of all available payment gateways
|
|
27761
27773
|
* @summary Get available payment gateways
|
|
27762
27774
|
* @param {*} [options] Override http request option.
|
|
27763
27775
|
* @throws {RequiredError}
|
|
27764
27776
|
*/
|
|
27765
|
-
|
|
27777
|
+
adminPaymentGatewayGatewaysGet(options?: RawAxiosRequestConfig): AxiosPromise<DataTypesGatewayListResponse>;
|
|
27766
27778
|
/**
|
|
27767
27779
|
* Processes a refund for a completed payment
|
|
27768
27780
|
* @summary Process payment refund
|
|
@@ -27770,7 +27782,7 @@ export declare const PaymentGatewayApiFactory: (configuration?: Configuration, b
|
|
|
27770
27782
|
* @param {*} [options] Override http request option.
|
|
27771
27783
|
* @throws {RequiredError}
|
|
27772
27784
|
*/
|
|
27773
|
-
|
|
27785
|
+
adminPaymentGatewayRefundPost(dataTypesRefundRequestDto: DataTypesRefundRequestDto, options?: RawAxiosRequestConfig): AxiosPromise<DataTypesRefundResponseDto>;
|
|
27774
27786
|
/**
|
|
27775
27787
|
* Verifies the current status of a payment
|
|
27776
27788
|
* @summary Verify payment status
|
|
@@ -27778,7 +27790,7 @@ export declare const PaymentGatewayApiFactory: (configuration?: Configuration, b
|
|
|
27778
27790
|
* @param {*} [options] Override http request option.
|
|
27779
27791
|
* @throws {RequiredError}
|
|
27780
27792
|
*/
|
|
27781
|
-
|
|
27793
|
+
adminPaymentGatewayVerifyPost(dataTypesVerifyPaymentRequest: DataTypesVerifyPaymentRequest, options?: RawAxiosRequestConfig): AxiosPromise<DataTypesPaymentStatusResponse>;
|
|
27782
27794
|
/**
|
|
27783
27795
|
* Returns list of all active credit plans for purchase (available both as public and protected endpoint)
|
|
27784
27796
|
* @summary Get available credit plans
|
|
@@ -27816,22 +27828,22 @@ export declare const PaymentGatewayApiFactory: (configuration?: Configuration, b
|
|
|
27816
27828
|
*/
|
|
27817
27829
|
export declare class PaymentGatewayApi extends BaseAPI {
|
|
27818
27830
|
/**
|
|
27819
|
-
*
|
|
27820
|
-
* @summary
|
|
27831
|
+
* Creates a payment order using specified or default payment gateway
|
|
27832
|
+
* @summary Create a new payment order
|
|
27833
|
+
* @param {DataTypesCreatePaymentOrderRequest} dataTypesCreatePaymentOrderRequest Payment order details
|
|
27821
27834
|
* @param {*} [options] Override http request option.
|
|
27822
27835
|
* @throws {RequiredError}
|
|
27823
27836
|
* @memberof PaymentGatewayApi
|
|
27824
27837
|
*/
|
|
27825
|
-
|
|
27838
|
+
adminPaymentGatewayCreateOrderPost(dataTypesCreatePaymentOrderRequest: DataTypesCreatePaymentOrderRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesCreatePaymentOrderResponse, any, {}>>;
|
|
27826
27839
|
/**
|
|
27827
|
-
*
|
|
27828
|
-
* @summary
|
|
27829
|
-
* @param {DataTypesCreatePaymentOrderRequest} dataTypesCreatePaymentOrderRequest Payment order details
|
|
27840
|
+
* Returns list of all active credit plans for purchase (available both as public and protected endpoint)
|
|
27841
|
+
* @summary Get available credit plans
|
|
27830
27842
|
* @param {*} [options] Override http request option.
|
|
27831
27843
|
* @throws {RequiredError}
|
|
27832
27844
|
* @memberof PaymentGatewayApi
|
|
27833
27845
|
*/
|
|
27834
|
-
|
|
27846
|
+
adminPaymentGatewayCreditPlansGet(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesCreditPlan[], any, {}>>;
|
|
27835
27847
|
/**
|
|
27836
27848
|
* Returns list of all available payment gateways
|
|
27837
27849
|
* @summary Get available payment gateways
|
|
@@ -27839,7 +27851,7 @@ export declare class PaymentGatewayApi extends BaseAPI {
|
|
|
27839
27851
|
* @throws {RequiredError}
|
|
27840
27852
|
* @memberof PaymentGatewayApi
|
|
27841
27853
|
*/
|
|
27842
|
-
|
|
27854
|
+
adminPaymentGatewayGatewaysGet(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesGatewayListResponse, any, {}>>;
|
|
27843
27855
|
/**
|
|
27844
27856
|
* Processes a refund for a completed payment
|
|
27845
27857
|
* @summary Process payment refund
|
|
@@ -27848,7 +27860,7 @@ export declare class PaymentGatewayApi extends BaseAPI {
|
|
|
27848
27860
|
* @throws {RequiredError}
|
|
27849
27861
|
* @memberof PaymentGatewayApi
|
|
27850
27862
|
*/
|
|
27851
|
-
|
|
27863
|
+
adminPaymentGatewayRefundPost(dataTypesRefundRequestDto: DataTypesRefundRequestDto, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesRefundResponseDto, any, {}>>;
|
|
27852
27864
|
/**
|
|
27853
27865
|
* Verifies the current status of a payment
|
|
27854
27866
|
* @summary Verify payment status
|
|
@@ -27857,7 +27869,7 @@ export declare class PaymentGatewayApi extends BaseAPI {
|
|
|
27857
27869
|
* @throws {RequiredError}
|
|
27858
27870
|
* @memberof PaymentGatewayApi
|
|
27859
27871
|
*/
|
|
27860
|
-
|
|
27872
|
+
adminPaymentGatewayVerifyPost(dataTypesVerifyPaymentRequest: DataTypesVerifyPaymentRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesPaymentStatusResponse, any, {}>>;
|
|
27861
27873
|
/**
|
|
27862
27874
|
* Returns list of all active credit plans for purchase (available both as public and protected endpoint)
|
|
27863
27875
|
* @summary Get available credit plans
|
|
@@ -30071,6 +30083,54 @@ export declare class QuerySuggestionsManagementApi extends BaseAPI {
|
|
|
30071
30083
|
* @export
|
|
30072
30084
|
*/
|
|
30073
30085
|
export declare const RefundManagementApiAxiosParamCreator: (configuration?: Configuration) => {
|
|
30086
|
+
/**
|
|
30087
|
+
* Approves or rejects a pending refund request
|
|
30088
|
+
* @summary Process refund approval or rejection
|
|
30089
|
+
* @param {DataTypesRefundApprovalDto} dataTypesRefundApprovalDto Approval details
|
|
30090
|
+
* @param {*} [options] Override http request option.
|
|
30091
|
+
* @throws {RequiredError}
|
|
30092
|
+
*/
|
|
30093
|
+
adminPaymentGatewayRefundApprovalPost: (dataTypesRefundApprovalDto: DataTypesRefundApprovalDto, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
30094
|
+
/**
|
|
30095
|
+
* Gets refund requests that require approval
|
|
30096
|
+
* @summary Get pending refund approvals
|
|
30097
|
+
* @param {*} [options] Override http request option.
|
|
30098
|
+
* @throws {RequiredError}
|
|
30099
|
+
*/
|
|
30100
|
+
adminPaymentGatewayRefundApprovalsGet: (options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
30101
|
+
/**
|
|
30102
|
+
* Creates a comprehensive refund request with approval workflow
|
|
30103
|
+
* @summary Create a new refund request
|
|
30104
|
+
* @param {DataTypesCreateRefundRequestDto} dataTypesCreateRefundRequestDto Refund request details
|
|
30105
|
+
* @param {*} [options] Override http request option.
|
|
30106
|
+
* @throws {RequiredError}
|
|
30107
|
+
*/
|
|
30108
|
+
adminPaymentGatewayRefundRequestPost: (dataTypesCreateRefundRequestDto: DataTypesCreateRefundRequestDto, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
30109
|
+
/**
|
|
30110
|
+
* Gets the current status and details of a refund request by refund_id (UUID)
|
|
30111
|
+
* @summary Get refund request status
|
|
30112
|
+
* @param {string} id Refund ID (UUID)
|
|
30113
|
+
* @param {*} [options] Override http request option.
|
|
30114
|
+
* @throws {RequiredError}
|
|
30115
|
+
*/
|
|
30116
|
+
adminPaymentGatewayRefundStatusIdGet: (id: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
30117
|
+
/**
|
|
30118
|
+
* Gets a paginated list of refund requests with filtering
|
|
30119
|
+
* @summary List refund requests
|
|
30120
|
+
* @param {string} [dateFrom]
|
|
30121
|
+
* @param {string} [dateTo]
|
|
30122
|
+
* @param {number} [orderId]
|
|
30123
|
+
* @param {number} [page]
|
|
30124
|
+
* @param {number} [pageSize]
|
|
30125
|
+
* @param {string} [paymentId]
|
|
30126
|
+
* @param {string} [refundType]
|
|
30127
|
+
* @param {number} [requestedBy]
|
|
30128
|
+
* @param {boolean} [requireApproval]
|
|
30129
|
+
* @param {string} [status]
|
|
30130
|
+
* @param {*} [options] Override http request option.
|
|
30131
|
+
* @throws {RequiredError}
|
|
30132
|
+
*/
|
|
30133
|
+
adminPaymentGatewayRefundsGet: (dateFrom?: string, dateTo?: string, orderId?: number, page?: number, pageSize?: number, paymentId?: string, refundType?: string, requestedBy?: number, requireApproval?: boolean, status?: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
30074
30134
|
/**
|
|
30075
30135
|
* Calculates refund amount based on remaining credits and original credit pricing
|
|
30076
30136
|
* @summary Calculate refund amount
|
|
@@ -30109,6 +30169,12 @@ export declare const RefundManagementApiAxiosParamCreator: (configuration?: Conf
|
|
|
30109
30169
|
* @throws {RequiredError}
|
|
30110
30170
|
*/
|
|
30111
30171
|
apiRefundProcessPost: (dataTypesProcessRefundRequestDto: DataTypesProcessRefundRequestDto, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
30172
|
+
};
|
|
30173
|
+
/**
|
|
30174
|
+
* RefundManagementApi - functional programming interface
|
|
30175
|
+
* @export
|
|
30176
|
+
*/
|
|
30177
|
+
export declare const RefundManagementApiFp: (configuration?: Configuration) => {
|
|
30112
30178
|
/**
|
|
30113
30179
|
* Approves or rejects a pending refund request
|
|
30114
30180
|
* @summary Process refund approval or rejection
|
|
@@ -30116,14 +30182,14 @@ export declare const RefundManagementApiAxiosParamCreator: (configuration?: Conf
|
|
|
30116
30182
|
* @param {*} [options] Override http request option.
|
|
30117
30183
|
* @throws {RequiredError}
|
|
30118
30184
|
*/
|
|
30119
|
-
|
|
30185
|
+
adminPaymentGatewayRefundApprovalPost(dataTypesRefundApprovalDto: DataTypesRefundApprovalDto, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<DataTypesResponse>>;
|
|
30120
30186
|
/**
|
|
30121
30187
|
* Gets refund requests that require approval
|
|
30122
30188
|
* @summary Get pending refund approvals
|
|
30123
30189
|
* @param {*} [options] Override http request option.
|
|
30124
30190
|
* @throws {RequiredError}
|
|
30125
30191
|
*/
|
|
30126
|
-
|
|
30192
|
+
adminPaymentGatewayRefundApprovalsGet(options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<DataTypesRefundListDto>>;
|
|
30127
30193
|
/**
|
|
30128
30194
|
* Creates a comprehensive refund request with approval workflow
|
|
30129
30195
|
* @summary Create a new refund request
|
|
@@ -30131,7 +30197,7 @@ export declare const RefundManagementApiAxiosParamCreator: (configuration?: Conf
|
|
|
30131
30197
|
* @param {*} [options] Override http request option.
|
|
30132
30198
|
* @throws {RequiredError}
|
|
30133
30199
|
*/
|
|
30134
|
-
|
|
30200
|
+
adminPaymentGatewayRefundRequestPost(dataTypesCreateRefundRequestDto: DataTypesCreateRefundRequestDto, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<DataTypesRefundRequestResponseDto>>;
|
|
30135
30201
|
/**
|
|
30136
30202
|
* Gets the current status and details of a refund request by refund_id (UUID)
|
|
30137
30203
|
* @summary Get refund request status
|
|
@@ -30139,7 +30205,7 @@ export declare const RefundManagementApiAxiosParamCreator: (configuration?: Conf
|
|
|
30139
30205
|
* @param {*} [options] Override http request option.
|
|
30140
30206
|
* @throws {RequiredError}
|
|
30141
30207
|
*/
|
|
30142
|
-
|
|
30208
|
+
adminPaymentGatewayRefundStatusIdGet(id: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<DataTypesRefundStatusDto>>;
|
|
30143
30209
|
/**
|
|
30144
30210
|
* Gets a paginated list of refund requests with filtering
|
|
30145
30211
|
* @summary List refund requests
|
|
@@ -30156,13 +30222,7 @@ export declare const RefundManagementApiAxiosParamCreator: (configuration?: Conf
|
|
|
30156
30222
|
* @param {*} [options] Override http request option.
|
|
30157
30223
|
* @throws {RequiredError}
|
|
30158
30224
|
*/
|
|
30159
|
-
|
|
30160
|
-
};
|
|
30161
|
-
/**
|
|
30162
|
-
* RefundManagementApi - functional programming interface
|
|
30163
|
-
* @export
|
|
30164
|
-
*/
|
|
30165
|
-
export declare const RefundManagementApiFp: (configuration?: Configuration) => {
|
|
30225
|
+
adminPaymentGatewayRefundsGet(dateFrom?: string, dateTo?: string, orderId?: number, page?: number, pageSize?: number, paymentId?: string, refundType?: string, requestedBy?: number, requireApproval?: boolean, status?: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<DataTypesRefundListDto>>;
|
|
30166
30226
|
/**
|
|
30167
30227
|
* Calculates refund amount based on remaining credits and original credit pricing
|
|
30168
30228
|
* @summary Calculate refund amount
|
|
@@ -30201,6 +30261,12 @@ export declare const RefundManagementApiFp: (configuration?: Configuration) => {
|
|
|
30201
30261
|
* @throws {RequiredError}
|
|
30202
30262
|
*/
|
|
30203
30263
|
apiRefundProcessPost(dataTypesProcessRefundRequestDto: DataTypesProcessRefundRequestDto, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<DataTypesGenericResponseDataTypesProcessRefundResponseDto>>;
|
|
30264
|
+
};
|
|
30265
|
+
/**
|
|
30266
|
+
* RefundManagementApi - factory interface
|
|
30267
|
+
* @export
|
|
30268
|
+
*/
|
|
30269
|
+
export declare const RefundManagementApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
|
|
30204
30270
|
/**
|
|
30205
30271
|
* Approves or rejects a pending refund request
|
|
30206
30272
|
* @summary Process refund approval or rejection
|
|
@@ -30208,14 +30274,14 @@ export declare const RefundManagementApiFp: (configuration?: Configuration) => {
|
|
|
30208
30274
|
* @param {*} [options] Override http request option.
|
|
30209
30275
|
* @throws {RequiredError}
|
|
30210
30276
|
*/
|
|
30211
|
-
|
|
30277
|
+
adminPaymentGatewayRefundApprovalPost(dataTypesRefundApprovalDto: DataTypesRefundApprovalDto, options?: RawAxiosRequestConfig): AxiosPromise<DataTypesResponse>;
|
|
30212
30278
|
/**
|
|
30213
30279
|
* Gets refund requests that require approval
|
|
30214
30280
|
* @summary Get pending refund approvals
|
|
30215
30281
|
* @param {*} [options] Override http request option.
|
|
30216
30282
|
* @throws {RequiredError}
|
|
30217
30283
|
*/
|
|
30218
|
-
|
|
30284
|
+
adminPaymentGatewayRefundApprovalsGet(options?: RawAxiosRequestConfig): AxiosPromise<DataTypesRefundListDto>;
|
|
30219
30285
|
/**
|
|
30220
30286
|
* Creates a comprehensive refund request with approval workflow
|
|
30221
30287
|
* @summary Create a new refund request
|
|
@@ -30223,7 +30289,7 @@ export declare const RefundManagementApiFp: (configuration?: Configuration) => {
|
|
|
30223
30289
|
* @param {*} [options] Override http request option.
|
|
30224
30290
|
* @throws {RequiredError}
|
|
30225
30291
|
*/
|
|
30226
|
-
|
|
30292
|
+
adminPaymentGatewayRefundRequestPost(dataTypesCreateRefundRequestDto: DataTypesCreateRefundRequestDto, options?: RawAxiosRequestConfig): AxiosPromise<DataTypesRefundRequestResponseDto>;
|
|
30227
30293
|
/**
|
|
30228
30294
|
* Gets the current status and details of a refund request by refund_id (UUID)
|
|
30229
30295
|
* @summary Get refund request status
|
|
@@ -30231,7 +30297,7 @@ export declare const RefundManagementApiFp: (configuration?: Configuration) => {
|
|
|
30231
30297
|
* @param {*} [options] Override http request option.
|
|
30232
30298
|
* @throws {RequiredError}
|
|
30233
30299
|
*/
|
|
30234
|
-
|
|
30300
|
+
adminPaymentGatewayRefundStatusIdGet(id: string, options?: RawAxiosRequestConfig): AxiosPromise<DataTypesRefundStatusDto>;
|
|
30235
30301
|
/**
|
|
30236
30302
|
* Gets a paginated list of refund requests with filtering
|
|
30237
30303
|
* @summary List refund requests
|
|
@@ -30248,13 +30314,7 @@ export declare const RefundManagementApiFp: (configuration?: Configuration) => {
|
|
|
30248
30314
|
* @param {*} [options] Override http request option.
|
|
30249
30315
|
* @throws {RequiredError}
|
|
30250
30316
|
*/
|
|
30251
|
-
|
|
30252
|
-
};
|
|
30253
|
-
/**
|
|
30254
|
-
* RefundManagementApi - factory interface
|
|
30255
|
-
* @export
|
|
30256
|
-
*/
|
|
30257
|
-
export declare const RefundManagementApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
|
|
30317
|
+
adminPaymentGatewayRefundsGet(dateFrom?: string, dateTo?: string, orderId?: number, page?: number, pageSize?: number, paymentId?: string, refundType?: string, requestedBy?: number, requireApproval?: boolean, status?: string, options?: RawAxiosRequestConfig): AxiosPromise<DataTypesRefundListDto>;
|
|
30258
30318
|
/**
|
|
30259
30319
|
* Calculates refund amount based on remaining credits and original credit pricing
|
|
30260
30320
|
* @summary Calculate refund amount
|
|
@@ -30293,37 +30353,49 @@ export declare const RefundManagementApiFactory: (configuration?: Configuration,
|
|
|
30293
30353
|
* @throws {RequiredError}
|
|
30294
30354
|
*/
|
|
30295
30355
|
apiRefundProcessPost(dataTypesProcessRefundRequestDto: DataTypesProcessRefundRequestDto, options?: RawAxiosRequestConfig): AxiosPromise<DataTypesGenericResponseDataTypesProcessRefundResponseDto>;
|
|
30356
|
+
};
|
|
30357
|
+
/**
|
|
30358
|
+
* RefundManagementApi - object-oriented interface
|
|
30359
|
+
* @export
|
|
30360
|
+
* @class RefundManagementApi
|
|
30361
|
+
* @extends {BaseAPI}
|
|
30362
|
+
*/
|
|
30363
|
+
export declare class RefundManagementApi extends BaseAPI {
|
|
30296
30364
|
/**
|
|
30297
30365
|
* Approves or rejects a pending refund request
|
|
30298
30366
|
* @summary Process refund approval or rejection
|
|
30299
30367
|
* @param {DataTypesRefundApprovalDto} dataTypesRefundApprovalDto Approval details
|
|
30300
30368
|
* @param {*} [options] Override http request option.
|
|
30301
30369
|
* @throws {RequiredError}
|
|
30370
|
+
* @memberof RefundManagementApi
|
|
30302
30371
|
*/
|
|
30303
|
-
|
|
30372
|
+
adminPaymentGatewayRefundApprovalPost(dataTypesRefundApprovalDto: DataTypesRefundApprovalDto, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesResponse, any, {}>>;
|
|
30304
30373
|
/**
|
|
30305
30374
|
* Gets refund requests that require approval
|
|
30306
30375
|
* @summary Get pending refund approvals
|
|
30307
30376
|
* @param {*} [options] Override http request option.
|
|
30308
30377
|
* @throws {RequiredError}
|
|
30378
|
+
* @memberof RefundManagementApi
|
|
30309
30379
|
*/
|
|
30310
|
-
|
|
30380
|
+
adminPaymentGatewayRefundApprovalsGet(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesRefundListDto, any, {}>>;
|
|
30311
30381
|
/**
|
|
30312
30382
|
* Creates a comprehensive refund request with approval workflow
|
|
30313
30383
|
* @summary Create a new refund request
|
|
30314
30384
|
* @param {DataTypesCreateRefundRequestDto} dataTypesCreateRefundRequestDto Refund request details
|
|
30315
30385
|
* @param {*} [options] Override http request option.
|
|
30316
30386
|
* @throws {RequiredError}
|
|
30387
|
+
* @memberof RefundManagementApi
|
|
30317
30388
|
*/
|
|
30318
|
-
|
|
30389
|
+
adminPaymentGatewayRefundRequestPost(dataTypesCreateRefundRequestDto: DataTypesCreateRefundRequestDto, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesRefundRequestResponseDto, any, {}>>;
|
|
30319
30390
|
/**
|
|
30320
30391
|
* Gets the current status and details of a refund request by refund_id (UUID)
|
|
30321
30392
|
* @summary Get refund request status
|
|
30322
30393
|
* @param {string} id Refund ID (UUID)
|
|
30323
30394
|
* @param {*} [options] Override http request option.
|
|
30324
30395
|
* @throws {RequiredError}
|
|
30396
|
+
* @memberof RefundManagementApi
|
|
30325
30397
|
*/
|
|
30326
|
-
|
|
30398
|
+
adminPaymentGatewayRefundStatusIdGet(id: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesRefundStatusDto, any, {}>>;
|
|
30327
30399
|
/**
|
|
30328
30400
|
* Gets a paginated list of refund requests with filtering
|
|
30329
30401
|
* @summary List refund requests
|
|
@@ -30339,16 +30411,9 @@ export declare const RefundManagementApiFactory: (configuration?: Configuration,
|
|
|
30339
30411
|
* @param {string} [status]
|
|
30340
30412
|
* @param {*} [options] Override http request option.
|
|
30341
30413
|
* @throws {RequiredError}
|
|
30414
|
+
* @memberof RefundManagementApi
|
|
30342
30415
|
*/
|
|
30343
|
-
|
|
30344
|
-
};
|
|
30345
|
-
/**
|
|
30346
|
-
* RefundManagementApi - object-oriented interface
|
|
30347
|
-
* @export
|
|
30348
|
-
* @class RefundManagementApi
|
|
30349
|
-
* @extends {BaseAPI}
|
|
30350
|
-
*/
|
|
30351
|
-
export declare class RefundManagementApi extends BaseAPI {
|
|
30416
|
+
adminPaymentGatewayRefundsGet(dateFrom?: string, dateTo?: string, orderId?: number, page?: number, pageSize?: number, paymentId?: string, refundType?: string, requestedBy?: number, requireApproval?: boolean, status?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesRefundListDto, any, {}>>;
|
|
30352
30417
|
/**
|
|
30353
30418
|
* Calculates refund amount based on remaining credits and original credit pricing
|
|
30354
30419
|
* @summary Calculate refund amount
|
|
@@ -30391,59 +30456,6 @@ export declare class RefundManagementApi extends BaseAPI {
|
|
|
30391
30456
|
* @memberof RefundManagementApi
|
|
30392
30457
|
*/
|
|
30393
30458
|
apiRefundProcessPost(dataTypesProcessRefundRequestDto: DataTypesProcessRefundRequestDto, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesGenericResponseDataTypesProcessRefundResponseDto, any, {}>>;
|
|
30394
|
-
/**
|
|
30395
|
-
* Approves or rejects a pending refund request
|
|
30396
|
-
* @summary Process refund approval or rejection
|
|
30397
|
-
* @param {DataTypesRefundApprovalDto} dataTypesRefundApprovalDto Approval details
|
|
30398
|
-
* @param {*} [options] Override http request option.
|
|
30399
|
-
* @throws {RequiredError}
|
|
30400
|
-
* @memberof RefundManagementApi
|
|
30401
|
-
*/
|
|
30402
|
-
paymentGatewayRefundApprovalPost(dataTypesRefundApprovalDto: DataTypesRefundApprovalDto, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesResponse, any, {}>>;
|
|
30403
|
-
/**
|
|
30404
|
-
* Gets refund requests that require approval
|
|
30405
|
-
* @summary Get pending refund approvals
|
|
30406
|
-
* @param {*} [options] Override http request option.
|
|
30407
|
-
* @throws {RequiredError}
|
|
30408
|
-
* @memberof RefundManagementApi
|
|
30409
|
-
*/
|
|
30410
|
-
paymentGatewayRefundApprovalsGet(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesRefundListDto, any, {}>>;
|
|
30411
|
-
/**
|
|
30412
|
-
* Creates a comprehensive refund request with approval workflow
|
|
30413
|
-
* @summary Create a new refund request
|
|
30414
|
-
* @param {DataTypesCreateRefundRequestDto} dataTypesCreateRefundRequestDto Refund request details
|
|
30415
|
-
* @param {*} [options] Override http request option.
|
|
30416
|
-
* @throws {RequiredError}
|
|
30417
|
-
* @memberof RefundManagementApi
|
|
30418
|
-
*/
|
|
30419
|
-
paymentGatewayRefundRequestPost(dataTypesCreateRefundRequestDto: DataTypesCreateRefundRequestDto, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesRefundRequestResponseDto, any, {}>>;
|
|
30420
|
-
/**
|
|
30421
|
-
* Gets the current status and details of a refund request by refund_id (UUID)
|
|
30422
|
-
* @summary Get refund request status
|
|
30423
|
-
* @param {string} id Refund ID (UUID)
|
|
30424
|
-
* @param {*} [options] Override http request option.
|
|
30425
|
-
* @throws {RequiredError}
|
|
30426
|
-
* @memberof RefundManagementApi
|
|
30427
|
-
*/
|
|
30428
|
-
paymentGatewayRefundStatusIdGet(id: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesRefundStatusDto, any, {}>>;
|
|
30429
|
-
/**
|
|
30430
|
-
* Gets a paginated list of refund requests with filtering
|
|
30431
|
-
* @summary List refund requests
|
|
30432
|
-
* @param {string} [dateFrom]
|
|
30433
|
-
* @param {string} [dateTo]
|
|
30434
|
-
* @param {number} [orderId]
|
|
30435
|
-
* @param {number} [page]
|
|
30436
|
-
* @param {number} [pageSize]
|
|
30437
|
-
* @param {string} [paymentId]
|
|
30438
|
-
* @param {string} [refundType]
|
|
30439
|
-
* @param {number} [requestedBy]
|
|
30440
|
-
* @param {boolean} [requireApproval]
|
|
30441
|
-
* @param {string} [status]
|
|
30442
|
-
* @param {*} [options] Override http request option.
|
|
30443
|
-
* @throws {RequiredError}
|
|
30444
|
-
* @memberof RefundManagementApi
|
|
30445
|
-
*/
|
|
30446
|
-
paymentGatewayRefundsGet(dateFrom?: string, dateTo?: string, orderId?: number, page?: number, pageSize?: number, paymentId?: string, refundType?: string, requestedBy?: number, requireApproval?: boolean, status?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesRefundListDto, any, {}>>;
|
|
30447
30459
|
}
|
|
30448
30460
|
/**
|
|
30449
30461
|
* RegisterApi - axios parameter creator
|