@seekora-ai/admin-api 1.0.75 → 1.0.77

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/esm/api.d.ts CHANGED
@@ -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}
@@ -13717,6 +13729,12 @@ export interface DataTypesOnboardingResponse {
13717
13729
  * @memberof DataTypesOnboardingResponse
13718
13730
  */
13719
13731
  'jobId'?: string;
13732
+ /**
13733
+ * Organization ID (available after orgDetails step)
13734
+ * @type {number}
13735
+ * @memberof DataTypesOnboardingResponse
13736
+ */
13737
+ 'orgId'?: number;
13720
13738
  /**
13721
13739
  *
13722
13740
  * @type {{ [key: string]: any; }}
@@ -23652,7 +23670,7 @@ export declare const CommonApiAxiosParamCreator: (configuration?: Configuration)
23652
23670
  * @param {*} [options] Override http request option.
23653
23671
  * @throws {RequiredError}
23654
23672
  */
23655
- commonLanguagesGet: (options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
23673
+ v1CommonLanguagesGet: (options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
23656
23674
  };
23657
23675
  /**
23658
23676
  * CommonApi - functional programming interface
@@ -23665,7 +23683,7 @@ export declare const CommonApiFp: (configuration?: Configuration) => {
23665
23683
  * @param {*} [options] Override http request option.
23666
23684
  * @throws {RequiredError}
23667
23685
  */
23668
- commonLanguagesGet(options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<{
23686
+ v1CommonLanguagesGet(options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<{
23669
23687
  [key: string]: any;
23670
23688
  }>>;
23671
23689
  };
@@ -23680,7 +23698,7 @@ export declare const CommonApiFactory: (configuration?: Configuration, basePath?
23680
23698
  * @param {*} [options] Override http request option.
23681
23699
  * @throws {RequiredError}
23682
23700
  */
23683
- commonLanguagesGet(options?: RawAxiosRequestConfig): AxiosPromise<{
23701
+ v1CommonLanguagesGet(options?: RawAxiosRequestConfig): AxiosPromise<{
23684
23702
  [key: string]: any;
23685
23703
  }>;
23686
23704
  };
@@ -23698,7 +23716,7 @@ export declare class CommonApi extends BaseAPI {
23698
23716
  * @throws {RequiredError}
23699
23717
  * @memberof CommonApi
23700
23718
  */
23701
- commonLanguagesGet(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<{
23719
+ v1CommonLanguagesGet(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<{
23702
23720
  [key: string]: any;
23703
23721
  }, any, {}>>;
23704
23722
  }
@@ -27602,27 +27620,27 @@ export declare class ParentMenusApi extends BaseAPI {
27602
27620
  */
27603
27621
  export declare const PaymentGatewayApiAxiosParamCreator: (configuration?: Configuration) => {
27604
27622
  /**
27605
- * Returns list of all active credit plans for purchase (available both as public and protected endpoint)
27606
- * @summary Get available credit plans
27623
+ * Creates a payment order using specified or default payment gateway
27624
+ * @summary Create a new payment order
27625
+ * @param {DataTypesCreatePaymentOrderRequest} dataTypesCreatePaymentOrderRequest Payment order details
27607
27626
  * @param {*} [options] Override http request option.
27608
27627
  * @throws {RequiredError}
27609
27628
  */
27610
- adminPaymentGatewayCreditPlansGet: (options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
27629
+ adminPaymentGatewayCreateOrderPost: (dataTypesCreatePaymentOrderRequest: DataTypesCreatePaymentOrderRequest, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
27611
27630
  /**
27612
- * Creates a payment order using specified or default payment gateway
27613
- * @summary Create a new payment order
27614
- * @param {DataTypesCreatePaymentOrderRequest} dataTypesCreatePaymentOrderRequest Payment order details
27631
+ * Returns list of all active credit plans for purchase (available both as public and protected endpoint)
27632
+ * @summary Get available credit plans
27615
27633
  * @param {*} [options] Override http request option.
27616
27634
  * @throws {RequiredError}
27617
27635
  */
27618
- paymentGatewayCreateOrderPost: (dataTypesCreatePaymentOrderRequest: DataTypesCreatePaymentOrderRequest, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
27636
+ adminPaymentGatewayCreditPlansGet: (options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
27619
27637
  /**
27620
27638
  * Returns list of all available payment gateways
27621
27639
  * @summary Get available payment gateways
27622
27640
  * @param {*} [options] Override http request option.
27623
27641
  * @throws {RequiredError}
27624
27642
  */
27625
- paymentGatewayGatewaysGet: (options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
27643
+ adminPaymentGatewayGatewaysGet: (options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
27626
27644
  /**
27627
27645
  * Processes a refund for a completed payment
27628
27646
  * @summary Process payment refund
@@ -27630,7 +27648,7 @@ export declare const PaymentGatewayApiAxiosParamCreator: (configuration?: Config
27630
27648
  * @param {*} [options] Override http request option.
27631
27649
  * @throws {RequiredError}
27632
27650
  */
27633
- paymentGatewayRefundPost: (dataTypesRefundRequestDto: DataTypesRefundRequestDto, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
27651
+ adminPaymentGatewayRefundPost: (dataTypesRefundRequestDto: DataTypesRefundRequestDto, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
27634
27652
  /**
27635
27653
  * Verifies the current status of a payment
27636
27654
  * @summary Verify payment status
@@ -27638,7 +27656,7 @@ export declare const PaymentGatewayApiAxiosParamCreator: (configuration?: Config
27638
27656
  * @param {*} [options] Override http request option.
27639
27657
  * @throws {RequiredError}
27640
27658
  */
27641
- paymentGatewayVerifyPost: (dataTypesVerifyPaymentRequest: DataTypesVerifyPaymentRequest, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
27659
+ adminPaymentGatewayVerifyPost: (dataTypesVerifyPaymentRequest: DataTypesVerifyPaymentRequest, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
27642
27660
  /**
27643
27661
  * Returns list of all active credit plans for purchase (available both as public and protected endpoint)
27644
27662
  * @summary Get available credit plans
@@ -27670,27 +27688,27 @@ export declare const PaymentGatewayApiAxiosParamCreator: (configuration?: Config
27670
27688
  */
27671
27689
  export declare const PaymentGatewayApiFp: (configuration?: Configuration) => {
27672
27690
  /**
27673
- * Returns list of all active credit plans for purchase (available both as public and protected endpoint)
27674
- * @summary Get available credit plans
27691
+ * Creates a payment order using specified or default payment gateway
27692
+ * @summary Create a new payment order
27693
+ * @param {DataTypesCreatePaymentOrderRequest} dataTypesCreatePaymentOrderRequest Payment order details
27675
27694
  * @param {*} [options] Override http request option.
27676
27695
  * @throws {RequiredError}
27677
27696
  */
27678
- adminPaymentGatewayCreditPlansGet(options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<DataTypesCreditPlan>>>;
27697
+ adminPaymentGatewayCreateOrderPost(dataTypesCreatePaymentOrderRequest: DataTypesCreatePaymentOrderRequest, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<DataTypesCreatePaymentOrderResponse>>;
27679
27698
  /**
27680
- * Creates a payment order using specified or default payment gateway
27681
- * @summary Create a new payment order
27682
- * @param {DataTypesCreatePaymentOrderRequest} dataTypesCreatePaymentOrderRequest Payment order details
27699
+ * Returns list of all active credit plans for purchase (available both as public and protected endpoint)
27700
+ * @summary Get available credit plans
27683
27701
  * @param {*} [options] Override http request option.
27684
27702
  * @throws {RequiredError}
27685
27703
  */
27686
- paymentGatewayCreateOrderPost(dataTypesCreatePaymentOrderRequest: DataTypesCreatePaymentOrderRequest, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<DataTypesCreatePaymentOrderResponse>>;
27704
+ adminPaymentGatewayCreditPlansGet(options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<DataTypesCreditPlan>>>;
27687
27705
  /**
27688
27706
  * Returns list of all available payment gateways
27689
27707
  * @summary Get available payment gateways
27690
27708
  * @param {*} [options] Override http request option.
27691
27709
  * @throws {RequiredError}
27692
27710
  */
27693
- paymentGatewayGatewaysGet(options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<DataTypesGatewayListResponse>>;
27711
+ adminPaymentGatewayGatewaysGet(options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<DataTypesGatewayListResponse>>;
27694
27712
  /**
27695
27713
  * Processes a refund for a completed payment
27696
27714
  * @summary Process payment refund
@@ -27698,7 +27716,7 @@ export declare const PaymentGatewayApiFp: (configuration?: Configuration) => {
27698
27716
  * @param {*} [options] Override http request option.
27699
27717
  * @throws {RequiredError}
27700
27718
  */
27701
- paymentGatewayRefundPost(dataTypesRefundRequestDto: DataTypesRefundRequestDto, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<DataTypesRefundResponseDto>>;
27719
+ adminPaymentGatewayRefundPost(dataTypesRefundRequestDto: DataTypesRefundRequestDto, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<DataTypesRefundResponseDto>>;
27702
27720
  /**
27703
27721
  * Verifies the current status of a payment
27704
27722
  * @summary Verify payment status
@@ -27706,7 +27724,7 @@ export declare const PaymentGatewayApiFp: (configuration?: Configuration) => {
27706
27724
  * @param {*} [options] Override http request option.
27707
27725
  * @throws {RequiredError}
27708
27726
  */
27709
- paymentGatewayVerifyPost(dataTypesVerifyPaymentRequest: DataTypesVerifyPaymentRequest, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<DataTypesPaymentStatusResponse>>;
27727
+ adminPaymentGatewayVerifyPost(dataTypesVerifyPaymentRequest: DataTypesVerifyPaymentRequest, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<DataTypesPaymentStatusResponse>>;
27710
27728
  /**
27711
27729
  * Returns list of all active credit plans for purchase (available both as public and protected endpoint)
27712
27730
  * @summary Get available credit plans
@@ -27742,27 +27760,27 @@ export declare const PaymentGatewayApiFp: (configuration?: Configuration) => {
27742
27760
  */
27743
27761
  export declare const PaymentGatewayApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
27744
27762
  /**
27745
- * Returns list of all active credit plans for purchase (available both as public and protected endpoint)
27746
- * @summary Get available credit plans
27763
+ * Creates a payment order using specified or default payment gateway
27764
+ * @summary Create a new payment order
27765
+ * @param {DataTypesCreatePaymentOrderRequest} dataTypesCreatePaymentOrderRequest Payment order details
27747
27766
  * @param {*} [options] Override http request option.
27748
27767
  * @throws {RequiredError}
27749
27768
  */
27750
- adminPaymentGatewayCreditPlansGet(options?: RawAxiosRequestConfig): AxiosPromise<Array<DataTypesCreditPlan>>;
27769
+ adminPaymentGatewayCreateOrderPost(dataTypesCreatePaymentOrderRequest: DataTypesCreatePaymentOrderRequest, options?: RawAxiosRequestConfig): AxiosPromise<DataTypesCreatePaymentOrderResponse>;
27751
27770
  /**
27752
- * Creates a payment order using specified or default payment gateway
27753
- * @summary Create a new payment order
27754
- * @param {DataTypesCreatePaymentOrderRequest} dataTypesCreatePaymentOrderRequest Payment order details
27771
+ * Returns list of all active credit plans for purchase (available both as public and protected endpoint)
27772
+ * @summary Get available credit plans
27755
27773
  * @param {*} [options] Override http request option.
27756
27774
  * @throws {RequiredError}
27757
27775
  */
27758
- paymentGatewayCreateOrderPost(dataTypesCreatePaymentOrderRequest: DataTypesCreatePaymentOrderRequest, options?: RawAxiosRequestConfig): AxiosPromise<DataTypesCreatePaymentOrderResponse>;
27776
+ adminPaymentGatewayCreditPlansGet(options?: RawAxiosRequestConfig): AxiosPromise<Array<DataTypesCreditPlan>>;
27759
27777
  /**
27760
27778
  * Returns list of all available payment gateways
27761
27779
  * @summary Get available payment gateways
27762
27780
  * @param {*} [options] Override http request option.
27763
27781
  * @throws {RequiredError}
27764
27782
  */
27765
- paymentGatewayGatewaysGet(options?: RawAxiosRequestConfig): AxiosPromise<DataTypesGatewayListResponse>;
27783
+ adminPaymentGatewayGatewaysGet(options?: RawAxiosRequestConfig): AxiosPromise<DataTypesGatewayListResponse>;
27766
27784
  /**
27767
27785
  * Processes a refund for a completed payment
27768
27786
  * @summary Process payment refund
@@ -27770,7 +27788,7 @@ export declare const PaymentGatewayApiFactory: (configuration?: Configuration, b
27770
27788
  * @param {*} [options] Override http request option.
27771
27789
  * @throws {RequiredError}
27772
27790
  */
27773
- paymentGatewayRefundPost(dataTypesRefundRequestDto: DataTypesRefundRequestDto, options?: RawAxiosRequestConfig): AxiosPromise<DataTypesRefundResponseDto>;
27791
+ adminPaymentGatewayRefundPost(dataTypesRefundRequestDto: DataTypesRefundRequestDto, options?: RawAxiosRequestConfig): AxiosPromise<DataTypesRefundResponseDto>;
27774
27792
  /**
27775
27793
  * Verifies the current status of a payment
27776
27794
  * @summary Verify payment status
@@ -27778,7 +27796,7 @@ export declare const PaymentGatewayApiFactory: (configuration?: Configuration, b
27778
27796
  * @param {*} [options] Override http request option.
27779
27797
  * @throws {RequiredError}
27780
27798
  */
27781
- paymentGatewayVerifyPost(dataTypesVerifyPaymentRequest: DataTypesVerifyPaymentRequest, options?: RawAxiosRequestConfig): AxiosPromise<DataTypesPaymentStatusResponse>;
27799
+ adminPaymentGatewayVerifyPost(dataTypesVerifyPaymentRequest: DataTypesVerifyPaymentRequest, options?: RawAxiosRequestConfig): AxiosPromise<DataTypesPaymentStatusResponse>;
27782
27800
  /**
27783
27801
  * Returns list of all active credit plans for purchase (available both as public and protected endpoint)
27784
27802
  * @summary Get available credit plans
@@ -27816,22 +27834,22 @@ export declare const PaymentGatewayApiFactory: (configuration?: Configuration, b
27816
27834
  */
27817
27835
  export declare class PaymentGatewayApi extends BaseAPI {
27818
27836
  /**
27819
- * Returns list of all active credit plans for purchase (available both as public and protected endpoint)
27820
- * @summary Get available credit plans
27837
+ * Creates a payment order using specified or default payment gateway
27838
+ * @summary Create a new payment order
27839
+ * @param {DataTypesCreatePaymentOrderRequest} dataTypesCreatePaymentOrderRequest Payment order details
27821
27840
  * @param {*} [options] Override http request option.
27822
27841
  * @throws {RequiredError}
27823
27842
  * @memberof PaymentGatewayApi
27824
27843
  */
27825
- adminPaymentGatewayCreditPlansGet(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesCreditPlan[], any, {}>>;
27844
+ adminPaymentGatewayCreateOrderPost(dataTypesCreatePaymentOrderRequest: DataTypesCreatePaymentOrderRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesCreatePaymentOrderResponse, any, {}>>;
27826
27845
  /**
27827
- * Creates a payment order using specified or default payment gateway
27828
- * @summary Create a new payment order
27829
- * @param {DataTypesCreatePaymentOrderRequest} dataTypesCreatePaymentOrderRequest Payment order details
27846
+ * Returns list of all active credit plans for purchase (available both as public and protected endpoint)
27847
+ * @summary Get available credit plans
27830
27848
  * @param {*} [options] Override http request option.
27831
27849
  * @throws {RequiredError}
27832
27850
  * @memberof PaymentGatewayApi
27833
27851
  */
27834
- paymentGatewayCreateOrderPost(dataTypesCreatePaymentOrderRequest: DataTypesCreatePaymentOrderRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesCreatePaymentOrderResponse, any, {}>>;
27852
+ adminPaymentGatewayCreditPlansGet(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesCreditPlan[], any, {}>>;
27835
27853
  /**
27836
27854
  * Returns list of all available payment gateways
27837
27855
  * @summary Get available payment gateways
@@ -27839,7 +27857,7 @@ export declare class PaymentGatewayApi extends BaseAPI {
27839
27857
  * @throws {RequiredError}
27840
27858
  * @memberof PaymentGatewayApi
27841
27859
  */
27842
- paymentGatewayGatewaysGet(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesGatewayListResponse, any, {}>>;
27860
+ adminPaymentGatewayGatewaysGet(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesGatewayListResponse, any, {}>>;
27843
27861
  /**
27844
27862
  * Processes a refund for a completed payment
27845
27863
  * @summary Process payment refund
@@ -27848,7 +27866,7 @@ export declare class PaymentGatewayApi extends BaseAPI {
27848
27866
  * @throws {RequiredError}
27849
27867
  * @memberof PaymentGatewayApi
27850
27868
  */
27851
- paymentGatewayRefundPost(dataTypesRefundRequestDto: DataTypesRefundRequestDto, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesRefundResponseDto, any, {}>>;
27869
+ adminPaymentGatewayRefundPost(dataTypesRefundRequestDto: DataTypesRefundRequestDto, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesRefundResponseDto, any, {}>>;
27852
27870
  /**
27853
27871
  * Verifies the current status of a payment
27854
27872
  * @summary Verify payment status
@@ -27857,7 +27875,7 @@ export declare class PaymentGatewayApi extends BaseAPI {
27857
27875
  * @throws {RequiredError}
27858
27876
  * @memberof PaymentGatewayApi
27859
27877
  */
27860
- paymentGatewayVerifyPost(dataTypesVerifyPaymentRequest: DataTypesVerifyPaymentRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesPaymentStatusResponse, any, {}>>;
27878
+ adminPaymentGatewayVerifyPost(dataTypesVerifyPaymentRequest: DataTypesVerifyPaymentRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesPaymentStatusResponse, any, {}>>;
27861
27879
  /**
27862
27880
  * Returns list of all active credit plans for purchase (available both as public and protected endpoint)
27863
27881
  * @summary Get available credit plans
@@ -30071,6 +30089,54 @@ export declare class QuerySuggestionsManagementApi extends BaseAPI {
30071
30089
  * @export
30072
30090
  */
30073
30091
  export declare const RefundManagementApiAxiosParamCreator: (configuration?: Configuration) => {
30092
+ /**
30093
+ * Approves or rejects a pending refund request
30094
+ * @summary Process refund approval or rejection
30095
+ * @param {DataTypesRefundApprovalDto} dataTypesRefundApprovalDto Approval details
30096
+ * @param {*} [options] Override http request option.
30097
+ * @throws {RequiredError}
30098
+ */
30099
+ adminPaymentGatewayRefundApprovalPost: (dataTypesRefundApprovalDto: DataTypesRefundApprovalDto, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
30100
+ /**
30101
+ * Gets refund requests that require approval
30102
+ * @summary Get pending refund approvals
30103
+ * @param {*} [options] Override http request option.
30104
+ * @throws {RequiredError}
30105
+ */
30106
+ adminPaymentGatewayRefundApprovalsGet: (options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
30107
+ /**
30108
+ * Creates a comprehensive refund request with approval workflow
30109
+ * @summary Create a new refund request
30110
+ * @param {DataTypesCreateRefundRequestDto} dataTypesCreateRefundRequestDto Refund request details
30111
+ * @param {*} [options] Override http request option.
30112
+ * @throws {RequiredError}
30113
+ */
30114
+ adminPaymentGatewayRefundRequestPost: (dataTypesCreateRefundRequestDto: DataTypesCreateRefundRequestDto, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
30115
+ /**
30116
+ * Gets the current status and details of a refund request by refund_id (UUID)
30117
+ * @summary Get refund request status
30118
+ * @param {string} id Refund ID (UUID)
30119
+ * @param {*} [options] Override http request option.
30120
+ * @throws {RequiredError}
30121
+ */
30122
+ adminPaymentGatewayRefundStatusIdGet: (id: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
30123
+ /**
30124
+ * Gets a paginated list of refund requests with filtering
30125
+ * @summary List refund requests
30126
+ * @param {string} [dateFrom]
30127
+ * @param {string} [dateTo]
30128
+ * @param {number} [orderId]
30129
+ * @param {number} [page]
30130
+ * @param {number} [pageSize]
30131
+ * @param {string} [paymentId]
30132
+ * @param {string} [refundType]
30133
+ * @param {number} [requestedBy]
30134
+ * @param {boolean} [requireApproval]
30135
+ * @param {string} [status]
30136
+ * @param {*} [options] Override http request option.
30137
+ * @throws {RequiredError}
30138
+ */
30139
+ 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
30140
  /**
30075
30141
  * Calculates refund amount based on remaining credits and original credit pricing
30076
30142
  * @summary Calculate refund amount
@@ -30109,6 +30175,12 @@ export declare const RefundManagementApiAxiosParamCreator: (configuration?: Conf
30109
30175
  * @throws {RequiredError}
30110
30176
  */
30111
30177
  apiRefundProcessPost: (dataTypesProcessRefundRequestDto: DataTypesProcessRefundRequestDto, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
30178
+ };
30179
+ /**
30180
+ * RefundManagementApi - functional programming interface
30181
+ * @export
30182
+ */
30183
+ export declare const RefundManagementApiFp: (configuration?: Configuration) => {
30112
30184
  /**
30113
30185
  * Approves or rejects a pending refund request
30114
30186
  * @summary Process refund approval or rejection
@@ -30116,14 +30188,14 @@ export declare const RefundManagementApiAxiosParamCreator: (configuration?: Conf
30116
30188
  * @param {*} [options] Override http request option.
30117
30189
  * @throws {RequiredError}
30118
30190
  */
30119
- paymentGatewayRefundApprovalPost: (dataTypesRefundApprovalDto: DataTypesRefundApprovalDto, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
30191
+ adminPaymentGatewayRefundApprovalPost(dataTypesRefundApprovalDto: DataTypesRefundApprovalDto, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<DataTypesResponse>>;
30120
30192
  /**
30121
30193
  * Gets refund requests that require approval
30122
30194
  * @summary Get pending refund approvals
30123
30195
  * @param {*} [options] Override http request option.
30124
30196
  * @throws {RequiredError}
30125
30197
  */
30126
- paymentGatewayRefundApprovalsGet: (options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
30198
+ adminPaymentGatewayRefundApprovalsGet(options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<DataTypesRefundListDto>>;
30127
30199
  /**
30128
30200
  * Creates a comprehensive refund request with approval workflow
30129
30201
  * @summary Create a new refund request
@@ -30131,7 +30203,7 @@ export declare const RefundManagementApiAxiosParamCreator: (configuration?: Conf
30131
30203
  * @param {*} [options] Override http request option.
30132
30204
  * @throws {RequiredError}
30133
30205
  */
30134
- paymentGatewayRefundRequestPost: (dataTypesCreateRefundRequestDto: DataTypesCreateRefundRequestDto, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
30206
+ adminPaymentGatewayRefundRequestPost(dataTypesCreateRefundRequestDto: DataTypesCreateRefundRequestDto, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<DataTypesRefundRequestResponseDto>>;
30135
30207
  /**
30136
30208
  * Gets the current status and details of a refund request by refund_id (UUID)
30137
30209
  * @summary Get refund request status
@@ -30139,7 +30211,7 @@ export declare const RefundManagementApiAxiosParamCreator: (configuration?: Conf
30139
30211
  * @param {*} [options] Override http request option.
30140
30212
  * @throws {RequiredError}
30141
30213
  */
30142
- paymentGatewayRefundStatusIdGet: (id: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
30214
+ adminPaymentGatewayRefundStatusIdGet(id: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<DataTypesRefundStatusDto>>;
30143
30215
  /**
30144
30216
  * Gets a paginated list of refund requests with filtering
30145
30217
  * @summary List refund requests
@@ -30156,13 +30228,7 @@ export declare const RefundManagementApiAxiosParamCreator: (configuration?: Conf
30156
30228
  * @param {*} [options] Override http request option.
30157
30229
  * @throws {RequiredError}
30158
30230
  */
30159
- paymentGatewayRefundsGet: (dateFrom?: string, dateTo?: string, orderId?: number, page?: number, pageSize?: number, paymentId?: string, refundType?: string, requestedBy?: number, requireApproval?: boolean, status?: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
30160
- };
30161
- /**
30162
- * RefundManagementApi - functional programming interface
30163
- * @export
30164
- */
30165
- export declare const RefundManagementApiFp: (configuration?: Configuration) => {
30231
+ 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
30232
  /**
30167
30233
  * Calculates refund amount based on remaining credits and original credit pricing
30168
30234
  * @summary Calculate refund amount
@@ -30201,6 +30267,12 @@ export declare const RefundManagementApiFp: (configuration?: Configuration) => {
30201
30267
  * @throws {RequiredError}
30202
30268
  */
30203
30269
  apiRefundProcessPost(dataTypesProcessRefundRequestDto: DataTypesProcessRefundRequestDto, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<DataTypesGenericResponseDataTypesProcessRefundResponseDto>>;
30270
+ };
30271
+ /**
30272
+ * RefundManagementApi - factory interface
30273
+ * @export
30274
+ */
30275
+ export declare const RefundManagementApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
30204
30276
  /**
30205
30277
  * Approves or rejects a pending refund request
30206
30278
  * @summary Process refund approval or rejection
@@ -30208,14 +30280,14 @@ export declare const RefundManagementApiFp: (configuration?: Configuration) => {
30208
30280
  * @param {*} [options] Override http request option.
30209
30281
  * @throws {RequiredError}
30210
30282
  */
30211
- paymentGatewayRefundApprovalPost(dataTypesRefundApprovalDto: DataTypesRefundApprovalDto, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<DataTypesResponse>>;
30283
+ adminPaymentGatewayRefundApprovalPost(dataTypesRefundApprovalDto: DataTypesRefundApprovalDto, options?: RawAxiosRequestConfig): AxiosPromise<DataTypesResponse>;
30212
30284
  /**
30213
30285
  * Gets refund requests that require approval
30214
30286
  * @summary Get pending refund approvals
30215
30287
  * @param {*} [options] Override http request option.
30216
30288
  * @throws {RequiredError}
30217
30289
  */
30218
- paymentGatewayRefundApprovalsGet(options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<DataTypesRefundListDto>>;
30290
+ adminPaymentGatewayRefundApprovalsGet(options?: RawAxiosRequestConfig): AxiosPromise<DataTypesRefundListDto>;
30219
30291
  /**
30220
30292
  * Creates a comprehensive refund request with approval workflow
30221
30293
  * @summary Create a new refund request
@@ -30223,7 +30295,7 @@ export declare const RefundManagementApiFp: (configuration?: Configuration) => {
30223
30295
  * @param {*} [options] Override http request option.
30224
30296
  * @throws {RequiredError}
30225
30297
  */
30226
- paymentGatewayRefundRequestPost(dataTypesCreateRefundRequestDto: DataTypesCreateRefundRequestDto, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<DataTypesRefundRequestResponseDto>>;
30298
+ adminPaymentGatewayRefundRequestPost(dataTypesCreateRefundRequestDto: DataTypesCreateRefundRequestDto, options?: RawAxiosRequestConfig): AxiosPromise<DataTypesRefundRequestResponseDto>;
30227
30299
  /**
30228
30300
  * Gets the current status and details of a refund request by refund_id (UUID)
30229
30301
  * @summary Get refund request status
@@ -30231,7 +30303,7 @@ export declare const RefundManagementApiFp: (configuration?: Configuration) => {
30231
30303
  * @param {*} [options] Override http request option.
30232
30304
  * @throws {RequiredError}
30233
30305
  */
30234
- paymentGatewayRefundStatusIdGet(id: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<DataTypesRefundStatusDto>>;
30306
+ adminPaymentGatewayRefundStatusIdGet(id: string, options?: RawAxiosRequestConfig): AxiosPromise<DataTypesRefundStatusDto>;
30235
30307
  /**
30236
30308
  * Gets a paginated list of refund requests with filtering
30237
30309
  * @summary List refund requests
@@ -30248,13 +30320,7 @@ export declare const RefundManagementApiFp: (configuration?: Configuration) => {
30248
30320
  * @param {*} [options] Override http request option.
30249
30321
  * @throws {RequiredError}
30250
30322
  */
30251
- paymentGatewayRefundsGet(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>>;
30252
- };
30253
- /**
30254
- * RefundManagementApi - factory interface
30255
- * @export
30256
- */
30257
- export declare const RefundManagementApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
30323
+ 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
30324
  /**
30259
30325
  * Calculates refund amount based on remaining credits and original credit pricing
30260
30326
  * @summary Calculate refund amount
@@ -30293,37 +30359,49 @@ export declare const RefundManagementApiFactory: (configuration?: Configuration,
30293
30359
  * @throws {RequiredError}
30294
30360
  */
30295
30361
  apiRefundProcessPost(dataTypesProcessRefundRequestDto: DataTypesProcessRefundRequestDto, options?: RawAxiosRequestConfig): AxiosPromise<DataTypesGenericResponseDataTypesProcessRefundResponseDto>;
30362
+ };
30363
+ /**
30364
+ * RefundManagementApi - object-oriented interface
30365
+ * @export
30366
+ * @class RefundManagementApi
30367
+ * @extends {BaseAPI}
30368
+ */
30369
+ export declare class RefundManagementApi extends BaseAPI {
30296
30370
  /**
30297
30371
  * Approves or rejects a pending refund request
30298
30372
  * @summary Process refund approval or rejection
30299
30373
  * @param {DataTypesRefundApprovalDto} dataTypesRefundApprovalDto Approval details
30300
30374
  * @param {*} [options] Override http request option.
30301
30375
  * @throws {RequiredError}
30376
+ * @memberof RefundManagementApi
30302
30377
  */
30303
- paymentGatewayRefundApprovalPost(dataTypesRefundApprovalDto: DataTypesRefundApprovalDto, options?: RawAxiosRequestConfig): AxiosPromise<DataTypesResponse>;
30378
+ adminPaymentGatewayRefundApprovalPost(dataTypesRefundApprovalDto: DataTypesRefundApprovalDto, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesResponse, any, {}>>;
30304
30379
  /**
30305
30380
  * Gets refund requests that require approval
30306
30381
  * @summary Get pending refund approvals
30307
30382
  * @param {*} [options] Override http request option.
30308
30383
  * @throws {RequiredError}
30384
+ * @memberof RefundManagementApi
30309
30385
  */
30310
- paymentGatewayRefundApprovalsGet(options?: RawAxiosRequestConfig): AxiosPromise<DataTypesRefundListDto>;
30386
+ adminPaymentGatewayRefundApprovalsGet(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesRefundListDto, any, {}>>;
30311
30387
  /**
30312
30388
  * Creates a comprehensive refund request with approval workflow
30313
30389
  * @summary Create a new refund request
30314
30390
  * @param {DataTypesCreateRefundRequestDto} dataTypesCreateRefundRequestDto Refund request details
30315
30391
  * @param {*} [options] Override http request option.
30316
30392
  * @throws {RequiredError}
30393
+ * @memberof RefundManagementApi
30317
30394
  */
30318
- paymentGatewayRefundRequestPost(dataTypesCreateRefundRequestDto: DataTypesCreateRefundRequestDto, options?: RawAxiosRequestConfig): AxiosPromise<DataTypesRefundRequestResponseDto>;
30395
+ adminPaymentGatewayRefundRequestPost(dataTypesCreateRefundRequestDto: DataTypesCreateRefundRequestDto, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesRefundRequestResponseDto, any, {}>>;
30319
30396
  /**
30320
30397
  * Gets the current status and details of a refund request by refund_id (UUID)
30321
30398
  * @summary Get refund request status
30322
30399
  * @param {string} id Refund ID (UUID)
30323
30400
  * @param {*} [options] Override http request option.
30324
30401
  * @throws {RequiredError}
30402
+ * @memberof RefundManagementApi
30325
30403
  */
30326
- paymentGatewayRefundStatusIdGet(id: string, options?: RawAxiosRequestConfig): AxiosPromise<DataTypesRefundStatusDto>;
30404
+ adminPaymentGatewayRefundStatusIdGet(id: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesRefundStatusDto, any, {}>>;
30327
30405
  /**
30328
30406
  * Gets a paginated list of refund requests with filtering
30329
30407
  * @summary List refund requests
@@ -30339,16 +30417,9 @@ export declare const RefundManagementApiFactory: (configuration?: Configuration,
30339
30417
  * @param {string} [status]
30340
30418
  * @param {*} [options] Override http request option.
30341
30419
  * @throws {RequiredError}
30420
+ * @memberof RefundManagementApi
30342
30421
  */
30343
- paymentGatewayRefundsGet(dateFrom?: string, dateTo?: string, orderId?: number, page?: number, pageSize?: number, paymentId?: string, refundType?: string, requestedBy?: number, requireApproval?: boolean, status?: string, options?: RawAxiosRequestConfig): AxiosPromise<DataTypesRefundListDto>;
30344
- };
30345
- /**
30346
- * RefundManagementApi - object-oriented interface
30347
- * @export
30348
- * @class RefundManagementApi
30349
- * @extends {BaseAPI}
30350
- */
30351
- export declare class RefundManagementApi extends BaseAPI {
30422
+ 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
30423
  /**
30353
30424
  * Calculates refund amount based on remaining credits and original credit pricing
30354
30425
  * @summary Calculate refund amount
@@ -30391,59 +30462,6 @@ export declare class RefundManagementApi extends BaseAPI {
30391
30462
  * @memberof RefundManagementApi
30392
30463
  */
30393
30464
  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
30465
  }
30448
30466
  /**
30449
30467
  * RegisterApi - axios parameter creator