@seekora-ai/admin-api 1.0.98 → 1.0.99
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 +13 -2
- package/api.ts +525 -0
- package/dist/api.d.ts +409 -0
- package/dist/api.js +210 -0
- package/dist/esm/api.d.ts +409 -0
- package/dist/esm/api.js +210 -0
- package/package.json +1 -1
- package/seekora-ai-admin-api-1.0.99.tgz +0 -0
- package/seekora-ai-admin-api-1.0.98.tgz +0 -0
package/dist/esm/api.js
CHANGED
|
@@ -7349,6 +7349,37 @@ export const BillingDashboardApiAxiosParamCreator = function (configuration) {
|
|
|
7349
7349
|
options: localVarRequestOptions,
|
|
7350
7350
|
};
|
|
7351
7351
|
}),
|
|
7352
|
+
/**
|
|
7353
|
+
* Generates invoices for all uninvoiced payments in an order (handles multiple payments for subscriptions)
|
|
7354
|
+
* @summary Generate invoices for an order
|
|
7355
|
+
* @param {number} orderId Order ID
|
|
7356
|
+
* @param {*} [options] Override http request option.
|
|
7357
|
+
* @throws {RequiredError}
|
|
7358
|
+
*/
|
|
7359
|
+
adminBillingInvoicesGenerateForOrderOrderIdPost: (orderId_1, ...args_1) => __awaiter(this, [orderId_1, ...args_1], void 0, function* (orderId, options = {}) {
|
|
7360
|
+
// verify required parameter 'orderId' is not null or undefined
|
|
7361
|
+
assertParamExists('adminBillingInvoicesGenerateForOrderOrderIdPost', 'orderId', orderId);
|
|
7362
|
+
const localVarPath = `/admin/billing/invoices/generate-for-order/{orderId}`
|
|
7363
|
+
.replace(`{${"orderId"}}`, encodeURIComponent(String(orderId)));
|
|
7364
|
+
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
7365
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
7366
|
+
let baseOptions;
|
|
7367
|
+
if (configuration) {
|
|
7368
|
+
baseOptions = configuration.baseOptions;
|
|
7369
|
+
}
|
|
7370
|
+
const localVarRequestOptions = Object.assign(Object.assign({ method: 'POST' }, baseOptions), options);
|
|
7371
|
+
const localVarHeaderParameter = {};
|
|
7372
|
+
const localVarQueryParameter = {};
|
|
7373
|
+
// authentication BearerAuth required
|
|
7374
|
+
yield setApiKeyToObject(localVarHeaderParameter, "Authorization", configuration);
|
|
7375
|
+
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
7376
|
+
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
7377
|
+
localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
|
|
7378
|
+
return {
|
|
7379
|
+
url: toPathString(localVarUrlObj),
|
|
7380
|
+
options: localVarRequestOptions,
|
|
7381
|
+
};
|
|
7382
|
+
}),
|
|
7352
7383
|
/**
|
|
7353
7384
|
* Generates an invoice automatically from a completed payment
|
|
7354
7385
|
* @summary Generate invoice from payment
|
|
@@ -7560,6 +7591,40 @@ export const BillingDashboardApiAxiosParamCreator = function (configuration) {
|
|
|
7560
7591
|
options: localVarRequestOptions,
|
|
7561
7592
|
};
|
|
7562
7593
|
}),
|
|
7594
|
+
/**
|
|
7595
|
+
* Initiates payment for a pending invoice (for subscription orders with failed auto-payments)
|
|
7596
|
+
* @summary Pay a pending invoice
|
|
7597
|
+
* @param {string} invoiceId Invoice ID
|
|
7598
|
+
* @param {DataTypesPayInvoiceRequest} [dataTypesPayInvoiceRequest] Payment details
|
|
7599
|
+
* @param {*} [options] Override http request option.
|
|
7600
|
+
* @throws {RequiredError}
|
|
7601
|
+
*/
|
|
7602
|
+
adminBillingInvoicesInvoiceIdPayPost: (invoiceId_1, dataTypesPayInvoiceRequest_1, ...args_1) => __awaiter(this, [invoiceId_1, dataTypesPayInvoiceRequest_1, ...args_1], void 0, function* (invoiceId, dataTypesPayInvoiceRequest, options = {}) {
|
|
7603
|
+
// verify required parameter 'invoiceId' is not null or undefined
|
|
7604
|
+
assertParamExists('adminBillingInvoicesInvoiceIdPayPost', 'invoiceId', invoiceId);
|
|
7605
|
+
const localVarPath = `/admin/billing/invoices/{invoice_id}/pay`
|
|
7606
|
+
.replace(`{${"invoice_id"}}`, encodeURIComponent(String(invoiceId)));
|
|
7607
|
+
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
7608
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
7609
|
+
let baseOptions;
|
|
7610
|
+
if (configuration) {
|
|
7611
|
+
baseOptions = configuration.baseOptions;
|
|
7612
|
+
}
|
|
7613
|
+
const localVarRequestOptions = Object.assign(Object.assign({ method: 'POST' }, baseOptions), options);
|
|
7614
|
+
const localVarHeaderParameter = {};
|
|
7615
|
+
const localVarQueryParameter = {};
|
|
7616
|
+
// authentication BearerAuth required
|
|
7617
|
+
yield setApiKeyToObject(localVarHeaderParameter, "Authorization", configuration);
|
|
7618
|
+
localVarHeaderParameter['Content-Type'] = 'application/json';
|
|
7619
|
+
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
7620
|
+
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
7621
|
+
localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
|
|
7622
|
+
localVarRequestOptions.data = serializeDataIfNeeded(dataTypesPayInvoiceRequest, localVarRequestOptions, configuration);
|
|
7623
|
+
return {
|
|
7624
|
+
url: toPathString(localVarUrlObj),
|
|
7625
|
+
options: localVarRequestOptions,
|
|
7626
|
+
};
|
|
7627
|
+
}),
|
|
7563
7628
|
/**
|
|
7564
7629
|
* Retrieves paginated list of orders with filtering options for the authenticated user\'s organization. Uses page/page_size pagination like analytics APIs.
|
|
7565
7630
|
* @summary Get orders
|
|
@@ -7607,6 +7672,37 @@ export const BillingDashboardApiAxiosParamCreator = function (configuration) {
|
|
|
7607
7672
|
options: localVarRequestOptions,
|
|
7608
7673
|
};
|
|
7609
7674
|
}),
|
|
7675
|
+
/**
|
|
7676
|
+
* Retrieves comprehensive order details including all transactions and invoices (supports multiple invoices for subscriptions)
|
|
7677
|
+
* @summary Get single order with transactions and invoices
|
|
7678
|
+
* @param {number} id Order ID
|
|
7679
|
+
* @param {*} [options] Override http request option.
|
|
7680
|
+
* @throws {RequiredError}
|
|
7681
|
+
*/
|
|
7682
|
+
adminBillingOrdersIdGet: (id_1, ...args_1) => __awaiter(this, [id_1, ...args_1], void 0, function* (id, options = {}) {
|
|
7683
|
+
// verify required parameter 'id' is not null or undefined
|
|
7684
|
+
assertParamExists('adminBillingOrdersIdGet', 'id', id);
|
|
7685
|
+
const localVarPath = `/admin/billing/orders/{id}`
|
|
7686
|
+
.replace(`{${"id"}}`, encodeURIComponent(String(id)));
|
|
7687
|
+
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
7688
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
7689
|
+
let baseOptions;
|
|
7690
|
+
if (configuration) {
|
|
7691
|
+
baseOptions = configuration.baseOptions;
|
|
7692
|
+
}
|
|
7693
|
+
const localVarRequestOptions = Object.assign(Object.assign({ method: 'GET' }, baseOptions), options);
|
|
7694
|
+
const localVarHeaderParameter = {};
|
|
7695
|
+
const localVarQueryParameter = {};
|
|
7696
|
+
// authentication BearerAuth required
|
|
7697
|
+
yield setApiKeyToObject(localVarHeaderParameter, "Authorization", configuration);
|
|
7698
|
+
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
7699
|
+
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
7700
|
+
localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
|
|
7701
|
+
return {
|
|
7702
|
+
url: toPathString(localVarUrlObj),
|
|
7703
|
+
options: localVarRequestOptions,
|
|
7704
|
+
};
|
|
7705
|
+
}),
|
|
7610
7706
|
/**
|
|
7611
7707
|
* Returns comprehensive billing overview including plan, next charge, balance, and projected runout for org admins
|
|
7612
7708
|
* @summary Get org admin billing overview
|
|
@@ -8058,6 +8154,22 @@ export const BillingDashboardApiFp = function (configuration) {
|
|
|
8058
8154
|
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
8059
8155
|
});
|
|
8060
8156
|
},
|
|
8157
|
+
/**
|
|
8158
|
+
* Generates invoices for all uninvoiced payments in an order (handles multiple payments for subscriptions)
|
|
8159
|
+
* @summary Generate invoices for an order
|
|
8160
|
+
* @param {number} orderId Order ID
|
|
8161
|
+
* @param {*} [options] Override http request option.
|
|
8162
|
+
* @throws {RequiredError}
|
|
8163
|
+
*/
|
|
8164
|
+
adminBillingInvoicesGenerateForOrderOrderIdPost(orderId, options) {
|
|
8165
|
+
return __awaiter(this, void 0, void 0, function* () {
|
|
8166
|
+
var _a, _b, _c;
|
|
8167
|
+
const localVarAxiosArgs = yield localVarAxiosParamCreator.adminBillingInvoicesGenerateForOrderOrderIdPost(orderId, options);
|
|
8168
|
+
const localVarOperationServerIndex = (_a = configuration === null || configuration === void 0 ? void 0 : configuration.serverIndex) !== null && _a !== void 0 ? _a : 0;
|
|
8169
|
+
const localVarOperationServerBasePath = (_c = (_b = operationServerMap['BillingDashboardApi.adminBillingInvoicesGenerateForOrderOrderIdPost']) === null || _b === void 0 ? void 0 : _b[localVarOperationServerIndex]) === null || _c === void 0 ? void 0 : _c.url;
|
|
8170
|
+
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
8171
|
+
});
|
|
8172
|
+
},
|
|
8061
8173
|
/**
|
|
8062
8174
|
* Generates an invoice automatically from a completed payment
|
|
8063
8175
|
* @summary Generate invoice from payment
|
|
@@ -8160,6 +8272,23 @@ export const BillingDashboardApiFp = function (configuration) {
|
|
|
8160
8272
|
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
8161
8273
|
});
|
|
8162
8274
|
},
|
|
8275
|
+
/**
|
|
8276
|
+
* Initiates payment for a pending invoice (for subscription orders with failed auto-payments)
|
|
8277
|
+
* @summary Pay a pending invoice
|
|
8278
|
+
* @param {string} invoiceId Invoice ID
|
|
8279
|
+
* @param {DataTypesPayInvoiceRequest} [dataTypesPayInvoiceRequest] Payment details
|
|
8280
|
+
* @param {*} [options] Override http request option.
|
|
8281
|
+
* @throws {RequiredError}
|
|
8282
|
+
*/
|
|
8283
|
+
adminBillingInvoicesInvoiceIdPayPost(invoiceId, dataTypesPayInvoiceRequest, options) {
|
|
8284
|
+
return __awaiter(this, void 0, void 0, function* () {
|
|
8285
|
+
var _a, _b, _c;
|
|
8286
|
+
const localVarAxiosArgs = yield localVarAxiosParamCreator.adminBillingInvoicesInvoiceIdPayPost(invoiceId, dataTypesPayInvoiceRequest, options);
|
|
8287
|
+
const localVarOperationServerIndex = (_a = configuration === null || configuration === void 0 ? void 0 : configuration.serverIndex) !== null && _a !== void 0 ? _a : 0;
|
|
8288
|
+
const localVarOperationServerBasePath = (_c = (_b = operationServerMap['BillingDashboardApi.adminBillingInvoicesInvoiceIdPayPost']) === null || _b === void 0 ? void 0 : _b[localVarOperationServerIndex]) === null || _c === void 0 ? void 0 : _c.url;
|
|
8289
|
+
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
8290
|
+
});
|
|
8291
|
+
},
|
|
8163
8292
|
/**
|
|
8164
8293
|
* Retrieves paginated list of orders with filtering options for the authenticated user\'s organization. Uses page/page_size pagination like analytics APIs.
|
|
8165
8294
|
* @summary Get orders
|
|
@@ -8180,6 +8309,22 @@ export const BillingDashboardApiFp = function (configuration) {
|
|
|
8180
8309
|
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
8181
8310
|
});
|
|
8182
8311
|
},
|
|
8312
|
+
/**
|
|
8313
|
+
* Retrieves comprehensive order details including all transactions and invoices (supports multiple invoices for subscriptions)
|
|
8314
|
+
* @summary Get single order with transactions and invoices
|
|
8315
|
+
* @param {number} id Order ID
|
|
8316
|
+
* @param {*} [options] Override http request option.
|
|
8317
|
+
* @throws {RequiredError}
|
|
8318
|
+
*/
|
|
8319
|
+
adminBillingOrdersIdGet(id, options) {
|
|
8320
|
+
return __awaiter(this, void 0, void 0, function* () {
|
|
8321
|
+
var _a, _b, _c;
|
|
8322
|
+
const localVarAxiosArgs = yield localVarAxiosParamCreator.adminBillingOrdersIdGet(id, options);
|
|
8323
|
+
const localVarOperationServerIndex = (_a = configuration === null || configuration === void 0 ? void 0 : configuration.serverIndex) !== null && _a !== void 0 ? _a : 0;
|
|
8324
|
+
const localVarOperationServerBasePath = (_c = (_b = operationServerMap['BillingDashboardApi.adminBillingOrdersIdGet']) === null || _b === void 0 ? void 0 : _b[localVarOperationServerIndex]) === null || _c === void 0 ? void 0 : _c.url;
|
|
8325
|
+
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
8326
|
+
});
|
|
8327
|
+
},
|
|
8183
8328
|
/**
|
|
8184
8329
|
* Returns comprehensive billing overview including plan, next charge, balance, and projected runout for org admins
|
|
8185
8330
|
* @summary Get org admin billing overview
|
|
@@ -8424,6 +8569,16 @@ export const BillingDashboardApiFactory = function (configuration, basePath, axi
|
|
|
8424
8569
|
adminBillingInvoicesAutoGeneratePost(options) {
|
|
8425
8570
|
return localVarFp.adminBillingInvoicesAutoGeneratePost(options).then((request) => request(axios, basePath));
|
|
8426
8571
|
},
|
|
8572
|
+
/**
|
|
8573
|
+
* Generates invoices for all uninvoiced payments in an order (handles multiple payments for subscriptions)
|
|
8574
|
+
* @summary Generate invoices for an order
|
|
8575
|
+
* @param {number} orderId Order ID
|
|
8576
|
+
* @param {*} [options] Override http request option.
|
|
8577
|
+
* @throws {RequiredError}
|
|
8578
|
+
*/
|
|
8579
|
+
adminBillingInvoicesGenerateForOrderOrderIdPost(orderId, options) {
|
|
8580
|
+
return localVarFp.adminBillingInvoicesGenerateForOrderOrderIdPost(orderId, options).then((request) => request(axios, basePath));
|
|
8581
|
+
},
|
|
8427
8582
|
/**
|
|
8428
8583
|
* Generates an invoice automatically from a completed payment
|
|
8429
8584
|
* @summary Generate invoice from payment
|
|
@@ -8490,6 +8645,17 @@ export const BillingDashboardApiFactory = function (configuration, basePath, axi
|
|
|
8490
8645
|
adminBillingInvoicesIdPut(id, dataTypesUpdateInvoiceRequest, options) {
|
|
8491
8646
|
return localVarFp.adminBillingInvoicesIdPut(id, dataTypesUpdateInvoiceRequest, options).then((request) => request(axios, basePath));
|
|
8492
8647
|
},
|
|
8648
|
+
/**
|
|
8649
|
+
* Initiates payment for a pending invoice (for subscription orders with failed auto-payments)
|
|
8650
|
+
* @summary Pay a pending invoice
|
|
8651
|
+
* @param {string} invoiceId Invoice ID
|
|
8652
|
+
* @param {DataTypesPayInvoiceRequest} [dataTypesPayInvoiceRequest] Payment details
|
|
8653
|
+
* @param {*} [options] Override http request option.
|
|
8654
|
+
* @throws {RequiredError}
|
|
8655
|
+
*/
|
|
8656
|
+
adminBillingInvoicesInvoiceIdPayPost(invoiceId, dataTypesPayInvoiceRequest, options) {
|
|
8657
|
+
return localVarFp.adminBillingInvoicesInvoiceIdPayPost(invoiceId, dataTypesPayInvoiceRequest, options).then((request) => request(axios, basePath));
|
|
8658
|
+
},
|
|
8493
8659
|
/**
|
|
8494
8660
|
* Retrieves paginated list of orders with filtering options for the authenticated user\'s organization. Uses page/page_size pagination like analytics APIs.
|
|
8495
8661
|
* @summary Get orders
|
|
@@ -8504,6 +8670,16 @@ export const BillingDashboardApiFactory = function (configuration, basePath, axi
|
|
|
8504
8670
|
adminBillingOrdersGet(orgId, startDate, endDate, page, pageSize, options) {
|
|
8505
8671
|
return localVarFp.adminBillingOrdersGet(orgId, startDate, endDate, page, pageSize, options).then((request) => request(axios, basePath));
|
|
8506
8672
|
},
|
|
8673
|
+
/**
|
|
8674
|
+
* Retrieves comprehensive order details including all transactions and invoices (supports multiple invoices for subscriptions)
|
|
8675
|
+
* @summary Get single order with transactions and invoices
|
|
8676
|
+
* @param {number} id Order ID
|
|
8677
|
+
* @param {*} [options] Override http request option.
|
|
8678
|
+
* @throws {RequiredError}
|
|
8679
|
+
*/
|
|
8680
|
+
adminBillingOrdersIdGet(id, options) {
|
|
8681
|
+
return localVarFp.adminBillingOrdersIdGet(id, options).then((request) => request(axios, basePath));
|
|
8682
|
+
},
|
|
8507
8683
|
/**
|
|
8508
8684
|
* Returns comprehensive billing overview including plan, next charge, balance, and projected runout for org admins
|
|
8509
8685
|
* @summary Get org admin billing overview
|
|
@@ -8715,6 +8891,17 @@ export class BillingDashboardApi extends BaseAPI {
|
|
|
8715
8891
|
adminBillingInvoicesAutoGeneratePost(options) {
|
|
8716
8892
|
return BillingDashboardApiFp(this.configuration).adminBillingInvoicesAutoGeneratePost(options).then((request) => request(this.axios, this.basePath));
|
|
8717
8893
|
}
|
|
8894
|
+
/**
|
|
8895
|
+
* Generates invoices for all uninvoiced payments in an order (handles multiple payments for subscriptions)
|
|
8896
|
+
* @summary Generate invoices for an order
|
|
8897
|
+
* @param {number} orderId Order ID
|
|
8898
|
+
* @param {*} [options] Override http request option.
|
|
8899
|
+
* @throws {RequiredError}
|
|
8900
|
+
* @memberof BillingDashboardApi
|
|
8901
|
+
*/
|
|
8902
|
+
adminBillingInvoicesGenerateForOrderOrderIdPost(orderId, options) {
|
|
8903
|
+
return BillingDashboardApiFp(this.configuration).adminBillingInvoicesGenerateForOrderOrderIdPost(orderId, options).then((request) => request(this.axios, this.basePath));
|
|
8904
|
+
}
|
|
8718
8905
|
/**
|
|
8719
8906
|
* Generates an invoice automatically from a completed payment
|
|
8720
8907
|
* @summary Generate invoice from payment
|
|
@@ -8787,6 +8974,18 @@ export class BillingDashboardApi extends BaseAPI {
|
|
|
8787
8974
|
adminBillingInvoicesIdPut(id, dataTypesUpdateInvoiceRequest, options) {
|
|
8788
8975
|
return BillingDashboardApiFp(this.configuration).adminBillingInvoicesIdPut(id, dataTypesUpdateInvoiceRequest, options).then((request) => request(this.axios, this.basePath));
|
|
8789
8976
|
}
|
|
8977
|
+
/**
|
|
8978
|
+
* Initiates payment for a pending invoice (for subscription orders with failed auto-payments)
|
|
8979
|
+
* @summary Pay a pending invoice
|
|
8980
|
+
* @param {string} invoiceId Invoice ID
|
|
8981
|
+
* @param {DataTypesPayInvoiceRequest} [dataTypesPayInvoiceRequest] Payment details
|
|
8982
|
+
* @param {*} [options] Override http request option.
|
|
8983
|
+
* @throws {RequiredError}
|
|
8984
|
+
* @memberof BillingDashboardApi
|
|
8985
|
+
*/
|
|
8986
|
+
adminBillingInvoicesInvoiceIdPayPost(invoiceId, dataTypesPayInvoiceRequest, options) {
|
|
8987
|
+
return BillingDashboardApiFp(this.configuration).adminBillingInvoicesInvoiceIdPayPost(invoiceId, dataTypesPayInvoiceRequest, options).then((request) => request(this.axios, this.basePath));
|
|
8988
|
+
}
|
|
8790
8989
|
/**
|
|
8791
8990
|
* Retrieves paginated list of orders with filtering options for the authenticated user\'s organization. Uses page/page_size pagination like analytics APIs.
|
|
8792
8991
|
* @summary Get orders
|
|
@@ -8802,6 +9001,17 @@ export class BillingDashboardApi extends BaseAPI {
|
|
|
8802
9001
|
adminBillingOrdersGet(orgId, startDate, endDate, page, pageSize, options) {
|
|
8803
9002
|
return BillingDashboardApiFp(this.configuration).adminBillingOrdersGet(orgId, startDate, endDate, page, pageSize, options).then((request) => request(this.axios, this.basePath));
|
|
8804
9003
|
}
|
|
9004
|
+
/**
|
|
9005
|
+
* Retrieves comprehensive order details including all transactions and invoices (supports multiple invoices for subscriptions)
|
|
9006
|
+
* @summary Get single order with transactions and invoices
|
|
9007
|
+
* @param {number} id Order ID
|
|
9008
|
+
* @param {*} [options] Override http request option.
|
|
9009
|
+
* @throws {RequiredError}
|
|
9010
|
+
* @memberof BillingDashboardApi
|
|
9011
|
+
*/
|
|
9012
|
+
adminBillingOrdersIdGet(id, options) {
|
|
9013
|
+
return BillingDashboardApiFp(this.configuration).adminBillingOrdersIdGet(id, options).then((request) => request(this.axios, this.basePath));
|
|
9014
|
+
}
|
|
8805
9015
|
/**
|
|
8806
9016
|
* Returns comprehensive billing overview including plan, next charge, balance, and projected runout for org admins
|
|
8807
9017
|
* @summary Get org admin billing overview
|
package/package.json
CHANGED
|
Binary file
|
|
Binary file
|