@seekora-ai/admin-api 1.1.11 → 1.1.12
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 +2 -2
- package/api.ts +202 -72
- package/dist/api.d.ts +202 -72
- package/dist/api.js +171 -53
- package/dist/esm/api.d.ts +202 -72
- package/dist/esm/api.js +166 -48
- package/package.json +1 -1
- package/seekora-ai-admin-api-1.1.12.tgz +0 -0
- package/seekora-ai-admin-api-1.1.11.tgz +0 -0
package/dist/api.d.ts
CHANGED
|
@@ -25158,12 +25158,12 @@ export declare const BillingDashboardApiAxiosParamCreator: (configuration?: Conf
|
|
|
25158
25158
|
* @param {number} [pageSize] Page size (default: 50, max: 100)
|
|
25159
25159
|
* @param {number} [limit] Alternative: Number of results per page (default: 50, max: 100)
|
|
25160
25160
|
* @param {number} [offset] Alternative: Number of results to skip (default: 0)
|
|
25161
|
-
* @param {
|
|
25162
|
-
* @param {
|
|
25161
|
+
* @param {AdminBillingCreditLedgerGetSortByEnum} [sortBy] Field to sort by
|
|
25162
|
+
* @param {AdminBillingCreditLedgerGetSortOrderEnum} [sortOrder] Sort direction
|
|
25163
25163
|
* @param {*} [options] Override http request option.
|
|
25164
25164
|
* @throws {RequiredError}
|
|
25165
25165
|
*/
|
|
25166
|
-
adminBillingCreditLedgerGet: (orgId?: number, startDate?: string, endDate?: string, page?: number, pageSize?: number, limit?: number, offset?: number, sortBy?:
|
|
25166
|
+
adminBillingCreditLedgerGet: (orgId?: number, startDate?: string, endDate?: string, page?: number, pageSize?: number, limit?: number, offset?: number, sortBy?: AdminBillingCreditLedgerGetSortByEnum, sortOrder?: AdminBillingCreditLedgerGetSortOrderEnum, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
25167
25167
|
/**
|
|
25168
25168
|
* Retrieves paginated list of credit purchases with filtering options for the authenticated user\'s organization. Uses page/page_size pagination like analytics APIs.
|
|
25169
25169
|
* @summary Get credit purchases
|
|
@@ -25174,12 +25174,12 @@ export declare const BillingDashboardApiAxiosParamCreator: (configuration?: Conf
|
|
|
25174
25174
|
* @param {number} [pageSize] Page size (default: 50, max: 100)
|
|
25175
25175
|
* @param {number} [limit] Alternative: Number of results per page (default: 50, max: 100)
|
|
25176
25176
|
* @param {number} [offset] Alternative: Number of results to skip (default: 0)
|
|
25177
|
-
* @param {
|
|
25178
|
-
* @param {
|
|
25177
|
+
* @param {AdminBillingCreditPurchasesGetSortByEnum} [sortBy] Field to sort by
|
|
25178
|
+
* @param {AdminBillingCreditPurchasesGetSortOrderEnum} [sortOrder] Sort direction
|
|
25179
25179
|
* @param {*} [options] Override http request option.
|
|
25180
25180
|
* @throws {RequiredError}
|
|
25181
25181
|
*/
|
|
25182
|
-
adminBillingCreditPurchasesGet: (orgId?: number, startDate?: string, endDate?: string, page?: number, pageSize?: number, limit?: number, offset?: number, sortBy?:
|
|
25182
|
+
adminBillingCreditPurchasesGet: (orgId?: number, startDate?: string, endDate?: string, page?: number, pageSize?: number, limit?: number, offset?: number, sortBy?: AdminBillingCreditPurchasesGetSortByEnum, sortOrder?: AdminBillingCreditPurchasesGetSortOrderEnum, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
25183
25183
|
/**
|
|
25184
25184
|
* Retrieves paginated list of credit transactions with filtering options for the authenticated user\'s organization. Uses page/page_size pagination like analytics APIs.
|
|
25185
25185
|
* @summary Get credit transactions
|
|
@@ -25190,12 +25190,12 @@ export declare const BillingDashboardApiAxiosParamCreator: (configuration?: Conf
|
|
|
25190
25190
|
* @param {number} [pageSize] Page size (default: 50, max: 100)
|
|
25191
25191
|
* @param {number} [limit] Alternative: Number of results per page (default: 50, max: 100)
|
|
25192
25192
|
* @param {number} [offset] Alternative: Number of results to skip (default: 0)
|
|
25193
|
-
* @param {
|
|
25194
|
-
* @param {
|
|
25193
|
+
* @param {AdminBillingCreditTransactionsGetSortByEnum} [sortBy] Field to sort by
|
|
25194
|
+
* @param {AdminBillingCreditTransactionsGetSortOrderEnum} [sortOrder] Sort direction
|
|
25195
25195
|
* @param {*} [options] Override http request option.
|
|
25196
25196
|
* @throws {RequiredError}
|
|
25197
25197
|
*/
|
|
25198
|
-
adminBillingCreditTransactionsGet: (orgId?: number, startDate?: string, endDate?: string, page?: number, pageSize?: number, limit?: number, offset?: number, sortBy?:
|
|
25198
|
+
adminBillingCreditTransactionsGet: (orgId?: number, startDate?: string, endDate?: string, page?: number, pageSize?: number, limit?: number, offset?: number, sortBy?: AdminBillingCreditTransactionsGetSortByEnum, sortOrder?: AdminBillingCreditTransactionsGetSortOrderEnum, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
25199
25199
|
/**
|
|
25200
25200
|
* Automatically generates invoices for all completed payments without invoices
|
|
25201
25201
|
* @summary Auto-generate invoices
|
|
@@ -25230,12 +25230,12 @@ export declare const BillingDashboardApiAxiosParamCreator: (configuration?: Conf
|
|
|
25230
25230
|
* @param {number} [page] Page number (default: 1)
|
|
25231
25231
|
* @param {number} [pageSize] Number of results per page (default: 20, max: 100) - alternative to limit
|
|
25232
25232
|
* @param {number} [limit] Number of results per page (default: 20, max: 100) - alternative to page_size
|
|
25233
|
-
* @param {
|
|
25234
|
-
* @param {
|
|
25233
|
+
* @param {AdminBillingInvoicesGetSortByEnum} [sortBy] Field to sort by
|
|
25234
|
+
* @param {AdminBillingInvoicesGetSortOrderEnum} [sortOrder] Sort direction
|
|
25235
25235
|
* @param {*} [options] Override http request option.
|
|
25236
25236
|
* @throws {RequiredError}
|
|
25237
25237
|
*/
|
|
25238
|
-
adminBillingInvoicesGet: (orgId?: number, status?: string, startDate?: string, endDate?: string, search?: string, page?: number, pageSize?: number, limit?: number, sortBy?:
|
|
25238
|
+
adminBillingInvoicesGet: (orgId?: number, status?: string, startDate?: string, endDate?: string, search?: string, page?: number, pageSize?: number, limit?: number, sortBy?: AdminBillingInvoicesGetSortByEnum, sortOrder?: AdminBillingInvoicesGetSortOrderEnum, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
25239
25239
|
/**
|
|
25240
25240
|
* Deletes an invoice (soft delete by setting status to cancelled)
|
|
25241
25241
|
* @summary Delete invoice
|
|
@@ -25287,8 +25287,8 @@ export declare const BillingDashboardApiAxiosParamCreator: (configuration?: Conf
|
|
|
25287
25287
|
* @param {number} [page] Page number (default: 1)
|
|
25288
25288
|
* @param {number} [pageSize] Page size (default: 50, max: 100)
|
|
25289
25289
|
* @param {number} [limit] Alternative: Number of results per page (default: 50, max: 100)
|
|
25290
|
-
* @param {
|
|
25291
|
-
* @param {
|
|
25290
|
+
* @param {AdminBillingOrdersGetSortByEnum} [sortBy] Field to sort by
|
|
25291
|
+
* @param {AdminBillingOrdersGetSortOrderEnum} [sortOrder] Sort direction
|
|
25292
25292
|
* @param {string} [search] Search in order ID, gateway order ID, gateway payment ID
|
|
25293
25293
|
* @param {string} [status] Filter by order status (created, paid, failed, refunded)
|
|
25294
25294
|
* @param {string} [gateway] Filter by payment gateway (razorpay, stripe, etc.)
|
|
@@ -25296,7 +25296,7 @@ export declare const BillingDashboardApiAxiosParamCreator: (configuration?: Conf
|
|
|
25296
25296
|
* @param {*} [options] Override http request option.
|
|
25297
25297
|
* @throws {RequiredError}
|
|
25298
25298
|
*/
|
|
25299
|
-
adminBillingOrdersGet: (orgId?: number, startDate?: string, endDate?: string, page?: number, pageSize?: number, limit?: number, sortBy?:
|
|
25299
|
+
adminBillingOrdersGet: (orgId?: number, startDate?: string, endDate?: string, page?: number, pageSize?: number, limit?: number, sortBy?: AdminBillingOrdersGetSortByEnum, sortOrder?: AdminBillingOrdersGetSortOrderEnum, search?: string, status?: string, gateway?: string, paymentType?: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
25300
25300
|
/**
|
|
25301
25301
|
* Retrieves comprehensive order details including all transactions and invoices (supports multiple invoices for subscriptions)
|
|
25302
25302
|
* @summary Get single order with transactions and invoices
|
|
@@ -25351,12 +25351,12 @@ export declare const BillingDashboardApiAxiosParamCreator: (configuration?: Conf
|
|
|
25351
25351
|
* @param {number} [pageSize] Page size (default: 50, max: 100)
|
|
25352
25352
|
* @param {number} [limit] Alternative: Number of results per page (default: 50, max: 100)
|
|
25353
25353
|
* @param {number} [offset] Alternative: Number of results to skip (default: 0)
|
|
25354
|
-
* @param {
|
|
25355
|
-
* @param {
|
|
25354
|
+
* @param {AdminBillingPaymentTransactionsGetSortByEnum} [sortBy] Field to sort by
|
|
25355
|
+
* @param {AdminBillingPaymentTransactionsGetSortOrderEnum} [sortOrder] Sort direction
|
|
25356
25356
|
* @param {*} [options] Override http request option.
|
|
25357
25357
|
* @throws {RequiredError}
|
|
25358
25358
|
*/
|
|
25359
|
-
adminBillingPaymentTransactionsGet: (orgId?: number, startDate?: string, endDate?: string, page?: number, pageSize?: number, limit?: number, offset?: number, sortBy?:
|
|
25359
|
+
adminBillingPaymentTransactionsGet: (orgId?: number, startDate?: string, endDate?: string, page?: number, pageSize?: number, limit?: number, offset?: number, sortBy?: AdminBillingPaymentTransactionsGetSortByEnum, sortOrder?: AdminBillingPaymentTransactionsGetSortOrderEnum, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
25360
25360
|
/**
|
|
25361
25361
|
* Generates receipts for all completed payments without receipts in the organization
|
|
25362
25362
|
* @summary Auto-generate receipts for organization
|
|
@@ -25496,12 +25496,12 @@ export declare const BillingDashboardApiFp: (configuration?: Configuration) => {
|
|
|
25496
25496
|
* @param {number} [pageSize] Page size (default: 50, max: 100)
|
|
25497
25497
|
* @param {number} [limit] Alternative: Number of results per page (default: 50, max: 100)
|
|
25498
25498
|
* @param {number} [offset] Alternative: Number of results to skip (default: 0)
|
|
25499
|
-
* @param {
|
|
25500
|
-
* @param {
|
|
25499
|
+
* @param {AdminBillingCreditLedgerGetSortByEnum} [sortBy] Field to sort by
|
|
25500
|
+
* @param {AdminBillingCreditLedgerGetSortOrderEnum} [sortOrder] Sort direction
|
|
25501
25501
|
* @param {*} [options] Override http request option.
|
|
25502
25502
|
* @throws {RequiredError}
|
|
25503
25503
|
*/
|
|
25504
|
-
adminBillingCreditLedgerGet(orgId?: number, startDate?: string, endDate?: string, page?: number, pageSize?: number, limit?: number, offset?: number, sortBy?:
|
|
25504
|
+
adminBillingCreditLedgerGet(orgId?: number, startDate?: string, endDate?: string, page?: number, pageSize?: number, limit?: number, offset?: number, sortBy?: AdminBillingCreditLedgerGetSortByEnum, sortOrder?: AdminBillingCreditLedgerGetSortOrderEnum, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<DataTypesResponse>>;
|
|
25505
25505
|
/**
|
|
25506
25506
|
* Retrieves paginated list of credit purchases with filtering options for the authenticated user\'s organization. Uses page/page_size pagination like analytics APIs.
|
|
25507
25507
|
* @summary Get credit purchases
|
|
@@ -25512,12 +25512,12 @@ export declare const BillingDashboardApiFp: (configuration?: Configuration) => {
|
|
|
25512
25512
|
* @param {number} [pageSize] Page size (default: 50, max: 100)
|
|
25513
25513
|
* @param {number} [limit] Alternative: Number of results per page (default: 50, max: 100)
|
|
25514
25514
|
* @param {number} [offset] Alternative: Number of results to skip (default: 0)
|
|
25515
|
-
* @param {
|
|
25516
|
-
* @param {
|
|
25515
|
+
* @param {AdminBillingCreditPurchasesGetSortByEnum} [sortBy] Field to sort by
|
|
25516
|
+
* @param {AdminBillingCreditPurchasesGetSortOrderEnum} [sortOrder] Sort direction
|
|
25517
25517
|
* @param {*} [options] Override http request option.
|
|
25518
25518
|
* @throws {RequiredError}
|
|
25519
25519
|
*/
|
|
25520
|
-
adminBillingCreditPurchasesGet(orgId?: number, startDate?: string, endDate?: string, page?: number, pageSize?: number, limit?: number, offset?: number, sortBy?:
|
|
25520
|
+
adminBillingCreditPurchasesGet(orgId?: number, startDate?: string, endDate?: string, page?: number, pageSize?: number, limit?: number, offset?: number, sortBy?: AdminBillingCreditPurchasesGetSortByEnum, sortOrder?: AdminBillingCreditPurchasesGetSortOrderEnum, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<DataTypesResponse>>;
|
|
25521
25521
|
/**
|
|
25522
25522
|
* Retrieves paginated list of credit transactions with filtering options for the authenticated user\'s organization. Uses page/page_size pagination like analytics APIs.
|
|
25523
25523
|
* @summary Get credit transactions
|
|
@@ -25528,12 +25528,12 @@ export declare const BillingDashboardApiFp: (configuration?: Configuration) => {
|
|
|
25528
25528
|
* @param {number} [pageSize] Page size (default: 50, max: 100)
|
|
25529
25529
|
* @param {number} [limit] Alternative: Number of results per page (default: 50, max: 100)
|
|
25530
25530
|
* @param {number} [offset] Alternative: Number of results to skip (default: 0)
|
|
25531
|
-
* @param {
|
|
25532
|
-
* @param {
|
|
25531
|
+
* @param {AdminBillingCreditTransactionsGetSortByEnum} [sortBy] Field to sort by
|
|
25532
|
+
* @param {AdminBillingCreditTransactionsGetSortOrderEnum} [sortOrder] Sort direction
|
|
25533
25533
|
* @param {*} [options] Override http request option.
|
|
25534
25534
|
* @throws {RequiredError}
|
|
25535
25535
|
*/
|
|
25536
|
-
adminBillingCreditTransactionsGet(orgId?: number, startDate?: string, endDate?: string, page?: number, pageSize?: number, limit?: number, offset?: number, sortBy?:
|
|
25536
|
+
adminBillingCreditTransactionsGet(orgId?: number, startDate?: string, endDate?: string, page?: number, pageSize?: number, limit?: number, offset?: number, sortBy?: AdminBillingCreditTransactionsGetSortByEnum, sortOrder?: AdminBillingCreditTransactionsGetSortOrderEnum, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<DataTypesResponse>>;
|
|
25537
25537
|
/**
|
|
25538
25538
|
* Automatically generates invoices for all completed payments without invoices
|
|
25539
25539
|
* @summary Auto-generate invoices
|
|
@@ -25568,12 +25568,12 @@ export declare const BillingDashboardApiFp: (configuration?: Configuration) => {
|
|
|
25568
25568
|
* @param {number} [page] Page number (default: 1)
|
|
25569
25569
|
* @param {number} [pageSize] Number of results per page (default: 20, max: 100) - alternative to limit
|
|
25570
25570
|
* @param {number} [limit] Number of results per page (default: 20, max: 100) - alternative to page_size
|
|
25571
|
-
* @param {
|
|
25572
|
-
* @param {
|
|
25571
|
+
* @param {AdminBillingInvoicesGetSortByEnum} [sortBy] Field to sort by
|
|
25572
|
+
* @param {AdminBillingInvoicesGetSortOrderEnum} [sortOrder] Sort direction
|
|
25573
25573
|
* @param {*} [options] Override http request option.
|
|
25574
25574
|
* @throws {RequiredError}
|
|
25575
25575
|
*/
|
|
25576
|
-
adminBillingInvoicesGet(orgId?: number, status?: string, startDate?: string, endDate?: string, search?: string, page?: number, pageSize?: number, limit?: number, sortBy?:
|
|
25576
|
+
adminBillingInvoicesGet(orgId?: number, status?: string, startDate?: string, endDate?: string, search?: string, page?: number, pageSize?: number, limit?: number, sortBy?: AdminBillingInvoicesGetSortByEnum, sortOrder?: AdminBillingInvoicesGetSortOrderEnum, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<DataTypesResponse>>;
|
|
25577
25577
|
/**
|
|
25578
25578
|
* Deletes an invoice (soft delete by setting status to cancelled)
|
|
25579
25579
|
* @summary Delete invoice
|
|
@@ -25625,8 +25625,8 @@ export declare const BillingDashboardApiFp: (configuration?: Configuration) => {
|
|
|
25625
25625
|
* @param {number} [page] Page number (default: 1)
|
|
25626
25626
|
* @param {number} [pageSize] Page size (default: 50, max: 100)
|
|
25627
25627
|
* @param {number} [limit] Alternative: Number of results per page (default: 50, max: 100)
|
|
25628
|
-
* @param {
|
|
25629
|
-
* @param {
|
|
25628
|
+
* @param {AdminBillingOrdersGetSortByEnum} [sortBy] Field to sort by
|
|
25629
|
+
* @param {AdminBillingOrdersGetSortOrderEnum} [sortOrder] Sort direction
|
|
25630
25630
|
* @param {string} [search] Search in order ID, gateway order ID, gateway payment ID
|
|
25631
25631
|
* @param {string} [status] Filter by order status (created, paid, failed, refunded)
|
|
25632
25632
|
* @param {string} [gateway] Filter by payment gateway (razorpay, stripe, etc.)
|
|
@@ -25634,7 +25634,7 @@ export declare const BillingDashboardApiFp: (configuration?: Configuration) => {
|
|
|
25634
25634
|
* @param {*} [options] Override http request option.
|
|
25635
25635
|
* @throws {RequiredError}
|
|
25636
25636
|
*/
|
|
25637
|
-
adminBillingOrdersGet(orgId?: number, startDate?: string, endDate?: string, page?: number, pageSize?: number, limit?: number, sortBy?:
|
|
25637
|
+
adminBillingOrdersGet(orgId?: number, startDate?: string, endDate?: string, page?: number, pageSize?: number, limit?: number, sortBy?: AdminBillingOrdersGetSortByEnum, sortOrder?: AdminBillingOrdersGetSortOrderEnum, search?: string, status?: string, gateway?: string, paymentType?: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<DataTypesResponse>>;
|
|
25638
25638
|
/**
|
|
25639
25639
|
* Retrieves comprehensive order details including all transactions and invoices (supports multiple invoices for subscriptions)
|
|
25640
25640
|
* @summary Get single order with transactions and invoices
|
|
@@ -25689,12 +25689,12 @@ export declare const BillingDashboardApiFp: (configuration?: Configuration) => {
|
|
|
25689
25689
|
* @param {number} [pageSize] Page size (default: 50, max: 100)
|
|
25690
25690
|
* @param {number} [limit] Alternative: Number of results per page (default: 50, max: 100)
|
|
25691
25691
|
* @param {number} [offset] Alternative: Number of results to skip (default: 0)
|
|
25692
|
-
* @param {
|
|
25693
|
-
* @param {
|
|
25692
|
+
* @param {AdminBillingPaymentTransactionsGetSortByEnum} [sortBy] Field to sort by
|
|
25693
|
+
* @param {AdminBillingPaymentTransactionsGetSortOrderEnum} [sortOrder] Sort direction
|
|
25694
25694
|
* @param {*} [options] Override http request option.
|
|
25695
25695
|
* @throws {RequiredError}
|
|
25696
25696
|
*/
|
|
25697
|
-
adminBillingPaymentTransactionsGet(orgId?: number, startDate?: string, endDate?: string, page?: number, pageSize?: number, limit?: number, offset?: number, sortBy?:
|
|
25697
|
+
adminBillingPaymentTransactionsGet(orgId?: number, startDate?: string, endDate?: string, page?: number, pageSize?: number, limit?: number, offset?: number, sortBy?: AdminBillingPaymentTransactionsGetSortByEnum, sortOrder?: AdminBillingPaymentTransactionsGetSortOrderEnum, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<DataTypesResponse>>;
|
|
25698
25698
|
/**
|
|
25699
25699
|
* Generates receipts for all completed payments without receipts in the organization
|
|
25700
25700
|
* @summary Auto-generate receipts for organization
|
|
@@ -25834,12 +25834,12 @@ export declare const BillingDashboardApiFactory: (configuration?: Configuration,
|
|
|
25834
25834
|
* @param {number} [pageSize] Page size (default: 50, max: 100)
|
|
25835
25835
|
* @param {number} [limit] Alternative: Number of results per page (default: 50, max: 100)
|
|
25836
25836
|
* @param {number} [offset] Alternative: Number of results to skip (default: 0)
|
|
25837
|
-
* @param {
|
|
25838
|
-
* @param {
|
|
25837
|
+
* @param {AdminBillingCreditLedgerGetSortByEnum} [sortBy] Field to sort by
|
|
25838
|
+
* @param {AdminBillingCreditLedgerGetSortOrderEnum} [sortOrder] Sort direction
|
|
25839
25839
|
* @param {*} [options] Override http request option.
|
|
25840
25840
|
* @throws {RequiredError}
|
|
25841
25841
|
*/
|
|
25842
|
-
adminBillingCreditLedgerGet(orgId?: number, startDate?: string, endDate?: string, page?: number, pageSize?: number, limit?: number, offset?: number, sortBy?:
|
|
25842
|
+
adminBillingCreditLedgerGet(orgId?: number, startDate?: string, endDate?: string, page?: number, pageSize?: number, limit?: number, offset?: number, sortBy?: AdminBillingCreditLedgerGetSortByEnum, sortOrder?: AdminBillingCreditLedgerGetSortOrderEnum, options?: RawAxiosRequestConfig): AxiosPromise<DataTypesResponse>;
|
|
25843
25843
|
/**
|
|
25844
25844
|
* Retrieves paginated list of credit purchases with filtering options for the authenticated user\'s organization. Uses page/page_size pagination like analytics APIs.
|
|
25845
25845
|
* @summary Get credit purchases
|
|
@@ -25850,12 +25850,12 @@ export declare const BillingDashboardApiFactory: (configuration?: Configuration,
|
|
|
25850
25850
|
* @param {number} [pageSize] Page size (default: 50, max: 100)
|
|
25851
25851
|
* @param {number} [limit] Alternative: Number of results per page (default: 50, max: 100)
|
|
25852
25852
|
* @param {number} [offset] Alternative: Number of results to skip (default: 0)
|
|
25853
|
-
* @param {
|
|
25854
|
-
* @param {
|
|
25853
|
+
* @param {AdminBillingCreditPurchasesGetSortByEnum} [sortBy] Field to sort by
|
|
25854
|
+
* @param {AdminBillingCreditPurchasesGetSortOrderEnum} [sortOrder] Sort direction
|
|
25855
25855
|
* @param {*} [options] Override http request option.
|
|
25856
25856
|
* @throws {RequiredError}
|
|
25857
25857
|
*/
|
|
25858
|
-
adminBillingCreditPurchasesGet(orgId?: number, startDate?: string, endDate?: string, page?: number, pageSize?: number, limit?: number, offset?: number, sortBy?:
|
|
25858
|
+
adminBillingCreditPurchasesGet(orgId?: number, startDate?: string, endDate?: string, page?: number, pageSize?: number, limit?: number, offset?: number, sortBy?: AdminBillingCreditPurchasesGetSortByEnum, sortOrder?: AdminBillingCreditPurchasesGetSortOrderEnum, options?: RawAxiosRequestConfig): AxiosPromise<DataTypesResponse>;
|
|
25859
25859
|
/**
|
|
25860
25860
|
* Retrieves paginated list of credit transactions with filtering options for the authenticated user\'s organization. Uses page/page_size pagination like analytics APIs.
|
|
25861
25861
|
* @summary Get credit transactions
|
|
@@ -25866,12 +25866,12 @@ export declare const BillingDashboardApiFactory: (configuration?: Configuration,
|
|
|
25866
25866
|
* @param {number} [pageSize] Page size (default: 50, max: 100)
|
|
25867
25867
|
* @param {number} [limit] Alternative: Number of results per page (default: 50, max: 100)
|
|
25868
25868
|
* @param {number} [offset] Alternative: Number of results to skip (default: 0)
|
|
25869
|
-
* @param {
|
|
25870
|
-
* @param {
|
|
25869
|
+
* @param {AdminBillingCreditTransactionsGetSortByEnum} [sortBy] Field to sort by
|
|
25870
|
+
* @param {AdminBillingCreditTransactionsGetSortOrderEnum} [sortOrder] Sort direction
|
|
25871
25871
|
* @param {*} [options] Override http request option.
|
|
25872
25872
|
* @throws {RequiredError}
|
|
25873
25873
|
*/
|
|
25874
|
-
adminBillingCreditTransactionsGet(orgId?: number, startDate?: string, endDate?: string, page?: number, pageSize?: number, limit?: number, offset?: number, sortBy?:
|
|
25874
|
+
adminBillingCreditTransactionsGet(orgId?: number, startDate?: string, endDate?: string, page?: number, pageSize?: number, limit?: number, offset?: number, sortBy?: AdminBillingCreditTransactionsGetSortByEnum, sortOrder?: AdminBillingCreditTransactionsGetSortOrderEnum, options?: RawAxiosRequestConfig): AxiosPromise<DataTypesResponse>;
|
|
25875
25875
|
/**
|
|
25876
25876
|
* Automatically generates invoices for all completed payments without invoices
|
|
25877
25877
|
* @summary Auto-generate invoices
|
|
@@ -25906,12 +25906,12 @@ export declare const BillingDashboardApiFactory: (configuration?: Configuration,
|
|
|
25906
25906
|
* @param {number} [page] Page number (default: 1)
|
|
25907
25907
|
* @param {number} [pageSize] Number of results per page (default: 20, max: 100) - alternative to limit
|
|
25908
25908
|
* @param {number} [limit] Number of results per page (default: 20, max: 100) - alternative to page_size
|
|
25909
|
-
* @param {
|
|
25910
|
-
* @param {
|
|
25909
|
+
* @param {AdminBillingInvoicesGetSortByEnum} [sortBy] Field to sort by
|
|
25910
|
+
* @param {AdminBillingInvoicesGetSortOrderEnum} [sortOrder] Sort direction
|
|
25911
25911
|
* @param {*} [options] Override http request option.
|
|
25912
25912
|
* @throws {RequiredError}
|
|
25913
25913
|
*/
|
|
25914
|
-
adminBillingInvoicesGet(orgId?: number, status?: string, startDate?: string, endDate?: string, search?: string, page?: number, pageSize?: number, limit?: number, sortBy?:
|
|
25914
|
+
adminBillingInvoicesGet(orgId?: number, status?: string, startDate?: string, endDate?: string, search?: string, page?: number, pageSize?: number, limit?: number, sortBy?: AdminBillingInvoicesGetSortByEnum, sortOrder?: AdminBillingInvoicesGetSortOrderEnum, options?: RawAxiosRequestConfig): AxiosPromise<DataTypesResponse>;
|
|
25915
25915
|
/**
|
|
25916
25916
|
* Deletes an invoice (soft delete by setting status to cancelled)
|
|
25917
25917
|
* @summary Delete invoice
|
|
@@ -25963,8 +25963,8 @@ export declare const BillingDashboardApiFactory: (configuration?: Configuration,
|
|
|
25963
25963
|
* @param {number} [page] Page number (default: 1)
|
|
25964
25964
|
* @param {number} [pageSize] Page size (default: 50, max: 100)
|
|
25965
25965
|
* @param {number} [limit] Alternative: Number of results per page (default: 50, max: 100)
|
|
25966
|
-
* @param {
|
|
25967
|
-
* @param {
|
|
25966
|
+
* @param {AdminBillingOrdersGetSortByEnum} [sortBy] Field to sort by
|
|
25967
|
+
* @param {AdminBillingOrdersGetSortOrderEnum} [sortOrder] Sort direction
|
|
25968
25968
|
* @param {string} [search] Search in order ID, gateway order ID, gateway payment ID
|
|
25969
25969
|
* @param {string} [status] Filter by order status (created, paid, failed, refunded)
|
|
25970
25970
|
* @param {string} [gateway] Filter by payment gateway (razorpay, stripe, etc.)
|
|
@@ -25972,7 +25972,7 @@ export declare const BillingDashboardApiFactory: (configuration?: Configuration,
|
|
|
25972
25972
|
* @param {*} [options] Override http request option.
|
|
25973
25973
|
* @throws {RequiredError}
|
|
25974
25974
|
*/
|
|
25975
|
-
adminBillingOrdersGet(orgId?: number, startDate?: string, endDate?: string, page?: number, pageSize?: number, limit?: number, sortBy?:
|
|
25975
|
+
adminBillingOrdersGet(orgId?: number, startDate?: string, endDate?: string, page?: number, pageSize?: number, limit?: number, sortBy?: AdminBillingOrdersGetSortByEnum, sortOrder?: AdminBillingOrdersGetSortOrderEnum, search?: string, status?: string, gateway?: string, paymentType?: string, options?: RawAxiosRequestConfig): AxiosPromise<DataTypesResponse>;
|
|
25976
25976
|
/**
|
|
25977
25977
|
* Retrieves comprehensive order details including all transactions and invoices (supports multiple invoices for subscriptions)
|
|
25978
25978
|
* @summary Get single order with transactions and invoices
|
|
@@ -26027,12 +26027,12 @@ export declare const BillingDashboardApiFactory: (configuration?: Configuration,
|
|
|
26027
26027
|
* @param {number} [pageSize] Page size (default: 50, max: 100)
|
|
26028
26028
|
* @param {number} [limit] Alternative: Number of results per page (default: 50, max: 100)
|
|
26029
26029
|
* @param {number} [offset] Alternative: Number of results to skip (default: 0)
|
|
26030
|
-
* @param {
|
|
26031
|
-
* @param {
|
|
26030
|
+
* @param {AdminBillingPaymentTransactionsGetSortByEnum} [sortBy] Field to sort by
|
|
26031
|
+
* @param {AdminBillingPaymentTransactionsGetSortOrderEnum} [sortOrder] Sort direction
|
|
26032
26032
|
* @param {*} [options] Override http request option.
|
|
26033
26033
|
* @throws {RequiredError}
|
|
26034
26034
|
*/
|
|
26035
|
-
adminBillingPaymentTransactionsGet(orgId?: number, startDate?: string, endDate?: string, page?: number, pageSize?: number, limit?: number, offset?: number, sortBy?:
|
|
26035
|
+
adminBillingPaymentTransactionsGet(orgId?: number, startDate?: string, endDate?: string, page?: number, pageSize?: number, limit?: number, offset?: number, sortBy?: AdminBillingPaymentTransactionsGetSortByEnum, sortOrder?: AdminBillingPaymentTransactionsGetSortOrderEnum, options?: RawAxiosRequestConfig): AxiosPromise<DataTypesResponse>;
|
|
26036
26036
|
/**
|
|
26037
26037
|
* Generates receipts for all completed payments without receipts in the organization
|
|
26038
26038
|
* @summary Auto-generate receipts for organization
|
|
@@ -26180,13 +26180,13 @@ export declare class BillingDashboardApi extends BaseAPI {
|
|
|
26180
26180
|
* @param {number} [pageSize] Page size (default: 50, max: 100)
|
|
26181
26181
|
* @param {number} [limit] Alternative: Number of results per page (default: 50, max: 100)
|
|
26182
26182
|
* @param {number} [offset] Alternative: Number of results to skip (default: 0)
|
|
26183
|
-
* @param {
|
|
26184
|
-
* @param {
|
|
26183
|
+
* @param {AdminBillingCreditLedgerGetSortByEnum} [sortBy] Field to sort by
|
|
26184
|
+
* @param {AdminBillingCreditLedgerGetSortOrderEnum} [sortOrder] Sort direction
|
|
26185
26185
|
* @param {*} [options] Override http request option.
|
|
26186
26186
|
* @throws {RequiredError}
|
|
26187
26187
|
* @memberof BillingDashboardApi
|
|
26188
26188
|
*/
|
|
26189
|
-
adminBillingCreditLedgerGet(orgId?: number, startDate?: string, endDate?: string, page?: number, pageSize?: number, limit?: number, offset?: number, sortBy?:
|
|
26189
|
+
adminBillingCreditLedgerGet(orgId?: number, startDate?: string, endDate?: string, page?: number, pageSize?: number, limit?: number, offset?: number, sortBy?: AdminBillingCreditLedgerGetSortByEnum, sortOrder?: AdminBillingCreditLedgerGetSortOrderEnum, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesResponse, any, {}>>;
|
|
26190
26190
|
/**
|
|
26191
26191
|
* Retrieves paginated list of credit purchases with filtering options for the authenticated user\'s organization. Uses page/page_size pagination like analytics APIs.
|
|
26192
26192
|
* @summary Get credit purchases
|
|
@@ -26197,13 +26197,13 @@ export declare class BillingDashboardApi extends BaseAPI {
|
|
|
26197
26197
|
* @param {number} [pageSize] Page size (default: 50, max: 100)
|
|
26198
26198
|
* @param {number} [limit] Alternative: Number of results per page (default: 50, max: 100)
|
|
26199
26199
|
* @param {number} [offset] Alternative: Number of results to skip (default: 0)
|
|
26200
|
-
* @param {
|
|
26201
|
-
* @param {
|
|
26200
|
+
* @param {AdminBillingCreditPurchasesGetSortByEnum} [sortBy] Field to sort by
|
|
26201
|
+
* @param {AdminBillingCreditPurchasesGetSortOrderEnum} [sortOrder] Sort direction
|
|
26202
26202
|
* @param {*} [options] Override http request option.
|
|
26203
26203
|
* @throws {RequiredError}
|
|
26204
26204
|
* @memberof BillingDashboardApi
|
|
26205
26205
|
*/
|
|
26206
|
-
adminBillingCreditPurchasesGet(orgId?: number, startDate?: string, endDate?: string, page?: number, pageSize?: number, limit?: number, offset?: number, sortBy?:
|
|
26206
|
+
adminBillingCreditPurchasesGet(orgId?: number, startDate?: string, endDate?: string, page?: number, pageSize?: number, limit?: number, offset?: number, sortBy?: AdminBillingCreditPurchasesGetSortByEnum, sortOrder?: AdminBillingCreditPurchasesGetSortOrderEnum, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesResponse, any, {}>>;
|
|
26207
26207
|
/**
|
|
26208
26208
|
* Retrieves paginated list of credit transactions with filtering options for the authenticated user\'s organization. Uses page/page_size pagination like analytics APIs.
|
|
26209
26209
|
* @summary Get credit transactions
|
|
@@ -26214,13 +26214,13 @@ export declare class BillingDashboardApi extends BaseAPI {
|
|
|
26214
26214
|
* @param {number} [pageSize] Page size (default: 50, max: 100)
|
|
26215
26215
|
* @param {number} [limit] Alternative: Number of results per page (default: 50, max: 100)
|
|
26216
26216
|
* @param {number} [offset] Alternative: Number of results to skip (default: 0)
|
|
26217
|
-
* @param {
|
|
26218
|
-
* @param {
|
|
26217
|
+
* @param {AdminBillingCreditTransactionsGetSortByEnum} [sortBy] Field to sort by
|
|
26218
|
+
* @param {AdminBillingCreditTransactionsGetSortOrderEnum} [sortOrder] Sort direction
|
|
26219
26219
|
* @param {*} [options] Override http request option.
|
|
26220
26220
|
* @throws {RequiredError}
|
|
26221
26221
|
* @memberof BillingDashboardApi
|
|
26222
26222
|
*/
|
|
26223
|
-
adminBillingCreditTransactionsGet(orgId?: number, startDate?: string, endDate?: string, page?: number, pageSize?: number, limit?: number, offset?: number, sortBy?:
|
|
26223
|
+
adminBillingCreditTransactionsGet(orgId?: number, startDate?: string, endDate?: string, page?: number, pageSize?: number, limit?: number, offset?: number, sortBy?: AdminBillingCreditTransactionsGetSortByEnum, sortOrder?: AdminBillingCreditTransactionsGetSortOrderEnum, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesResponse, any, {}>>;
|
|
26224
26224
|
/**
|
|
26225
26225
|
* Automatically generates invoices for all completed payments without invoices
|
|
26226
26226
|
* @summary Auto-generate invoices
|
|
@@ -26258,13 +26258,13 @@ export declare class BillingDashboardApi extends BaseAPI {
|
|
|
26258
26258
|
* @param {number} [page] Page number (default: 1)
|
|
26259
26259
|
* @param {number} [pageSize] Number of results per page (default: 20, max: 100) - alternative to limit
|
|
26260
26260
|
* @param {number} [limit] Number of results per page (default: 20, max: 100) - alternative to page_size
|
|
26261
|
-
* @param {
|
|
26262
|
-
* @param {
|
|
26261
|
+
* @param {AdminBillingInvoicesGetSortByEnum} [sortBy] Field to sort by
|
|
26262
|
+
* @param {AdminBillingInvoicesGetSortOrderEnum} [sortOrder] Sort direction
|
|
26263
26263
|
* @param {*} [options] Override http request option.
|
|
26264
26264
|
* @throws {RequiredError}
|
|
26265
26265
|
* @memberof BillingDashboardApi
|
|
26266
26266
|
*/
|
|
26267
|
-
adminBillingInvoicesGet(orgId?: number, status?: string, startDate?: string, endDate?: string, search?: string, page?: number, pageSize?: number, limit?: number, sortBy?:
|
|
26267
|
+
adminBillingInvoicesGet(orgId?: number, status?: string, startDate?: string, endDate?: string, search?: string, page?: number, pageSize?: number, limit?: number, sortBy?: AdminBillingInvoicesGetSortByEnum, sortOrder?: AdminBillingInvoicesGetSortOrderEnum, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesResponse, any, {}>>;
|
|
26268
26268
|
/**
|
|
26269
26269
|
* Deletes an invoice (soft delete by setting status to cancelled)
|
|
26270
26270
|
* @summary Delete invoice
|
|
@@ -26321,8 +26321,8 @@ export declare class BillingDashboardApi extends BaseAPI {
|
|
|
26321
26321
|
* @param {number} [page] Page number (default: 1)
|
|
26322
26322
|
* @param {number} [pageSize] Page size (default: 50, max: 100)
|
|
26323
26323
|
* @param {number} [limit] Alternative: Number of results per page (default: 50, max: 100)
|
|
26324
|
-
* @param {
|
|
26325
|
-
* @param {
|
|
26324
|
+
* @param {AdminBillingOrdersGetSortByEnum} [sortBy] Field to sort by
|
|
26325
|
+
* @param {AdminBillingOrdersGetSortOrderEnum} [sortOrder] Sort direction
|
|
26326
26326
|
* @param {string} [search] Search in order ID, gateway order ID, gateway payment ID
|
|
26327
26327
|
* @param {string} [status] Filter by order status (created, paid, failed, refunded)
|
|
26328
26328
|
* @param {string} [gateway] Filter by payment gateway (razorpay, stripe, etc.)
|
|
@@ -26331,7 +26331,7 @@ export declare class BillingDashboardApi extends BaseAPI {
|
|
|
26331
26331
|
* @throws {RequiredError}
|
|
26332
26332
|
* @memberof BillingDashboardApi
|
|
26333
26333
|
*/
|
|
26334
|
-
adminBillingOrdersGet(orgId?: number, startDate?: string, endDate?: string, page?: number, pageSize?: number, limit?: number, sortBy?:
|
|
26334
|
+
adminBillingOrdersGet(orgId?: number, startDate?: string, endDate?: string, page?: number, pageSize?: number, limit?: number, sortBy?: AdminBillingOrdersGetSortByEnum, sortOrder?: AdminBillingOrdersGetSortOrderEnum, search?: string, status?: string, gateway?: string, paymentType?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesResponse, any, {}>>;
|
|
26335
26335
|
/**
|
|
26336
26336
|
* Retrieves comprehensive order details including all transactions and invoices (supports multiple invoices for subscriptions)
|
|
26337
26337
|
* @summary Get single order with transactions and invoices
|
|
@@ -26391,13 +26391,13 @@ export declare class BillingDashboardApi extends BaseAPI {
|
|
|
26391
26391
|
* @param {number} [pageSize] Page size (default: 50, max: 100)
|
|
26392
26392
|
* @param {number} [limit] Alternative: Number of results per page (default: 50, max: 100)
|
|
26393
26393
|
* @param {number} [offset] Alternative: Number of results to skip (default: 0)
|
|
26394
|
-
* @param {
|
|
26395
|
-
* @param {
|
|
26394
|
+
* @param {AdminBillingPaymentTransactionsGetSortByEnum} [sortBy] Field to sort by
|
|
26395
|
+
* @param {AdminBillingPaymentTransactionsGetSortOrderEnum} [sortOrder] Sort direction
|
|
26396
26396
|
* @param {*} [options] Override http request option.
|
|
26397
26397
|
* @throws {RequiredError}
|
|
26398
26398
|
* @memberof BillingDashboardApi
|
|
26399
26399
|
*/
|
|
26400
|
-
adminBillingPaymentTransactionsGet(orgId?: number, startDate?: string, endDate?: string, page?: number, pageSize?: number, limit?: number, offset?: number, sortBy?:
|
|
26400
|
+
adminBillingPaymentTransactionsGet(orgId?: number, startDate?: string, endDate?: string, page?: number, pageSize?: number, limit?: number, offset?: number, sortBy?: AdminBillingPaymentTransactionsGetSortByEnum, sortOrder?: AdminBillingPaymentTransactionsGetSortOrderEnum, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesResponse, any, {}>>;
|
|
26401
26401
|
/**
|
|
26402
26402
|
* Generates receipts for all completed payments without receipts in the organization
|
|
26403
26403
|
* @summary Auto-generate receipts for organization
|
|
@@ -26472,6 +26472,136 @@ export declare class BillingDashboardApi extends BaseAPI {
|
|
|
26472
26472
|
*/
|
|
26473
26473
|
adminBillingUsageDetailsGet(xstoreid?: string, startDate?: string, endDate?: string, granularity?: AdminBillingUsageDetailsGetGranularityEnum, chartPage?: number, chartPageSize?: number, endpointPage?: number, endpointPageSize?: number, consumptionPage?: number, consumptionPageSize?: number, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesResponse, any, {}>>;
|
|
26474
26474
|
}
|
|
26475
|
+
/**
|
|
26476
|
+
* @export
|
|
26477
|
+
*/
|
|
26478
|
+
export declare const AdminBillingCreditLedgerGetSortByEnum: {
|
|
26479
|
+
readonly Id: "id";
|
|
26480
|
+
readonly Credits: "credits";
|
|
26481
|
+
readonly TransactionDate: "transaction_date";
|
|
26482
|
+
readonly TransactionType: "transaction_type";
|
|
26483
|
+
};
|
|
26484
|
+
export type AdminBillingCreditLedgerGetSortByEnum = typeof AdminBillingCreditLedgerGetSortByEnum[keyof typeof AdminBillingCreditLedgerGetSortByEnum];
|
|
26485
|
+
/**
|
|
26486
|
+
* @export
|
|
26487
|
+
*/
|
|
26488
|
+
export declare const AdminBillingCreditLedgerGetSortOrderEnum: {
|
|
26489
|
+
readonly Asc: "asc";
|
|
26490
|
+
readonly Desc: "desc";
|
|
26491
|
+
readonly Asc2: "ASC";
|
|
26492
|
+
readonly Desc2: "DESC";
|
|
26493
|
+
};
|
|
26494
|
+
export type AdminBillingCreditLedgerGetSortOrderEnum = typeof AdminBillingCreditLedgerGetSortOrderEnum[keyof typeof AdminBillingCreditLedgerGetSortOrderEnum];
|
|
26495
|
+
/**
|
|
26496
|
+
* @export
|
|
26497
|
+
*/
|
|
26498
|
+
export declare const AdminBillingCreditPurchasesGetSortByEnum: {
|
|
26499
|
+
readonly Id: "id";
|
|
26500
|
+
readonly Amount: "amount";
|
|
26501
|
+
readonly CreatedAt: "created_at";
|
|
26502
|
+
readonly CreditsPurchased: "credits_purchased";
|
|
26503
|
+
};
|
|
26504
|
+
export type AdminBillingCreditPurchasesGetSortByEnum = typeof AdminBillingCreditPurchasesGetSortByEnum[keyof typeof AdminBillingCreditPurchasesGetSortByEnum];
|
|
26505
|
+
/**
|
|
26506
|
+
* @export
|
|
26507
|
+
*/
|
|
26508
|
+
export declare const AdminBillingCreditPurchasesGetSortOrderEnum: {
|
|
26509
|
+
readonly Asc: "asc";
|
|
26510
|
+
readonly Desc: "desc";
|
|
26511
|
+
readonly Asc2: "ASC";
|
|
26512
|
+
readonly Desc2: "DESC";
|
|
26513
|
+
};
|
|
26514
|
+
export type AdminBillingCreditPurchasesGetSortOrderEnum = typeof AdminBillingCreditPurchasesGetSortOrderEnum[keyof typeof AdminBillingCreditPurchasesGetSortOrderEnum];
|
|
26515
|
+
/**
|
|
26516
|
+
* @export
|
|
26517
|
+
*/
|
|
26518
|
+
export declare const AdminBillingCreditTransactionsGetSortByEnum: {
|
|
26519
|
+
readonly Id: "id";
|
|
26520
|
+
readonly CreditsUsed: "credits_used";
|
|
26521
|
+
readonly TransactionDate: "transaction_date";
|
|
26522
|
+
readonly TransactionType: "transaction_type";
|
|
26523
|
+
};
|
|
26524
|
+
export type AdminBillingCreditTransactionsGetSortByEnum = typeof AdminBillingCreditTransactionsGetSortByEnum[keyof typeof AdminBillingCreditTransactionsGetSortByEnum];
|
|
26525
|
+
/**
|
|
26526
|
+
* @export
|
|
26527
|
+
*/
|
|
26528
|
+
export declare const AdminBillingCreditTransactionsGetSortOrderEnum: {
|
|
26529
|
+
readonly Asc: "asc";
|
|
26530
|
+
readonly Desc: "desc";
|
|
26531
|
+
readonly Asc2: "ASC";
|
|
26532
|
+
readonly Desc2: "DESC";
|
|
26533
|
+
};
|
|
26534
|
+
export type AdminBillingCreditTransactionsGetSortOrderEnum = typeof AdminBillingCreditTransactionsGetSortOrderEnum[keyof typeof AdminBillingCreditTransactionsGetSortOrderEnum];
|
|
26535
|
+
/**
|
|
26536
|
+
* @export
|
|
26537
|
+
*/
|
|
26538
|
+
export declare const AdminBillingInvoicesGetSortByEnum: {
|
|
26539
|
+
readonly Id: "id";
|
|
26540
|
+
readonly InvoiceId: "invoice_id";
|
|
26541
|
+
readonly InvoiceNumber: "invoice_number";
|
|
26542
|
+
readonly Amount: "amount";
|
|
26543
|
+
readonly TotalAmount: "total_amount";
|
|
26544
|
+
readonly CreatedAt: "created_at";
|
|
26545
|
+
readonly IssueDate: "issue_date";
|
|
26546
|
+
readonly DueDate: "due_date";
|
|
26547
|
+
readonly PaidDate: "paid_date";
|
|
26548
|
+
readonly Status: "status";
|
|
26549
|
+
};
|
|
26550
|
+
export type AdminBillingInvoicesGetSortByEnum = typeof AdminBillingInvoicesGetSortByEnum[keyof typeof AdminBillingInvoicesGetSortByEnum];
|
|
26551
|
+
/**
|
|
26552
|
+
* @export
|
|
26553
|
+
*/
|
|
26554
|
+
export declare const AdminBillingInvoicesGetSortOrderEnum: {
|
|
26555
|
+
readonly Asc: "asc";
|
|
26556
|
+
readonly Desc: "desc";
|
|
26557
|
+
readonly Asc2: "ASC";
|
|
26558
|
+
readonly Desc2: "DESC";
|
|
26559
|
+
};
|
|
26560
|
+
export type AdminBillingInvoicesGetSortOrderEnum = typeof AdminBillingInvoicesGetSortOrderEnum[keyof typeof AdminBillingInvoicesGetSortOrderEnum];
|
|
26561
|
+
/**
|
|
26562
|
+
* @export
|
|
26563
|
+
*/
|
|
26564
|
+
export declare const AdminBillingOrdersGetSortByEnum: {
|
|
26565
|
+
readonly Id: "id";
|
|
26566
|
+
readonly Amount: "amount";
|
|
26567
|
+
readonly CreatedAt: "created_at";
|
|
26568
|
+
readonly UpdatedAt: "updated_at";
|
|
26569
|
+
readonly Status: "status";
|
|
26570
|
+
};
|
|
26571
|
+
export type AdminBillingOrdersGetSortByEnum = typeof AdminBillingOrdersGetSortByEnum[keyof typeof AdminBillingOrdersGetSortByEnum];
|
|
26572
|
+
/**
|
|
26573
|
+
* @export
|
|
26574
|
+
*/
|
|
26575
|
+
export declare const AdminBillingOrdersGetSortOrderEnum: {
|
|
26576
|
+
readonly Asc: "asc";
|
|
26577
|
+
readonly Desc: "desc";
|
|
26578
|
+
readonly Asc2: "ASC";
|
|
26579
|
+
readonly Desc2: "DESC";
|
|
26580
|
+
};
|
|
26581
|
+
export type AdminBillingOrdersGetSortOrderEnum = typeof AdminBillingOrdersGetSortOrderEnum[keyof typeof AdminBillingOrdersGetSortOrderEnum];
|
|
26582
|
+
/**
|
|
26583
|
+
* @export
|
|
26584
|
+
*/
|
|
26585
|
+
export declare const AdminBillingPaymentTransactionsGetSortByEnum: {
|
|
26586
|
+
readonly PaymentId: "payment_id";
|
|
26587
|
+
readonly Amount: "amount";
|
|
26588
|
+
readonly PaymentDate: "payment_date";
|
|
26589
|
+
readonly CreatedAt: "created_at";
|
|
26590
|
+
readonly PaymentStatus: "payment_status";
|
|
26591
|
+
readonly Gateway: "gateway";
|
|
26592
|
+
readonly RefundAmount: "refund_amount";
|
|
26593
|
+
};
|
|
26594
|
+
export type AdminBillingPaymentTransactionsGetSortByEnum = typeof AdminBillingPaymentTransactionsGetSortByEnum[keyof typeof AdminBillingPaymentTransactionsGetSortByEnum];
|
|
26595
|
+
/**
|
|
26596
|
+
* @export
|
|
26597
|
+
*/
|
|
26598
|
+
export declare const AdminBillingPaymentTransactionsGetSortOrderEnum: {
|
|
26599
|
+
readonly Asc: "asc";
|
|
26600
|
+
readonly Desc: "desc";
|
|
26601
|
+
readonly Asc2: "ASC";
|
|
26602
|
+
readonly Desc2: "DESC";
|
|
26603
|
+
};
|
|
26604
|
+
export type AdminBillingPaymentTransactionsGetSortOrderEnum = typeof AdminBillingPaymentTransactionsGetSortOrderEnum[keyof typeof AdminBillingPaymentTransactionsGetSortOrderEnum];
|
|
26475
26605
|
/**
|
|
26476
26606
|
* @export
|
|
26477
26607
|
*/
|