yellowgrid-api-ts 3.2.262 → 3.2.263
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/api.ts +8 -8
- package/dist/api.d.ts +8 -8
- package/dist/api.js +4 -4
- package/docs/BillingApi.md +2 -2
- package/package.json +1 -1
package/api.ts
CHANGED
|
@@ -13764,11 +13764,11 @@ export const BillingApiAxiosParamCreator = function (configuration?: Configurati
|
|
|
13764
13764
|
},
|
|
13765
13765
|
/**
|
|
13766
13766
|
* Get Customer
|
|
13767
|
-
* @param {
|
|
13767
|
+
* @param {string} [billCustomerId] Customer ID
|
|
13768
13768
|
* @param {*} [options] Override http request option.
|
|
13769
13769
|
* @throws {RequiredError}
|
|
13770
13770
|
*/
|
|
13771
|
-
getGetBillingCustomerDetails: async (billCustomerId?:
|
|
13771
|
+
getGetBillingCustomerDetails: async (billCustomerId?: string, options: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
13772
13772
|
const localVarPath = `/billing/customer/details`;
|
|
13773
13773
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
13774
13774
|
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
@@ -15782,11 +15782,11 @@ export const BillingApiFp = function(configuration?: Configuration) {
|
|
|
15782
15782
|
},
|
|
15783
15783
|
/**
|
|
15784
15784
|
* Get Customer
|
|
15785
|
-
* @param {
|
|
15785
|
+
* @param {string} [billCustomerId] Customer ID
|
|
15786
15786
|
* @param {*} [options] Override http request option.
|
|
15787
15787
|
* @throws {RequiredError}
|
|
15788
15788
|
*/
|
|
15789
|
-
async getGetBillingCustomerDetails(billCustomerId?:
|
|
15789
|
+
async getGetBillingCustomerDetails(billCustomerId?: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Customer>> {
|
|
15790
15790
|
const localVarAxiosArgs = await localVarAxiosParamCreator.getGetBillingCustomerDetails(billCustomerId, options);
|
|
15791
15791
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
15792
15792
|
const localVarOperationServerBasePath = operationServerMap['BillingApi.getGetBillingCustomerDetails']?.[localVarOperationServerIndex]?.url;
|
|
@@ -16564,11 +16564,11 @@ export const BillingApiFactory = function (configuration?: Configuration, basePa
|
|
|
16564
16564
|
},
|
|
16565
16565
|
/**
|
|
16566
16566
|
* Get Customer
|
|
16567
|
-
* @param {
|
|
16567
|
+
* @param {string} [billCustomerId] Customer ID
|
|
16568
16568
|
* @param {*} [options] Override http request option.
|
|
16569
16569
|
* @throws {RequiredError}
|
|
16570
16570
|
*/
|
|
16571
|
-
getGetBillingCustomerDetails(billCustomerId?:
|
|
16571
|
+
getGetBillingCustomerDetails(billCustomerId?: string, options?: RawAxiosRequestConfig): AxiosPromise<Customer> {
|
|
16572
16572
|
return localVarFp.getGetBillingCustomerDetails(billCustomerId, options).then((request) => request(axios, basePath));
|
|
16573
16573
|
},
|
|
16574
16574
|
/**
|
|
@@ -17211,11 +17211,11 @@ export class BillingApi extends BaseAPI {
|
|
|
17211
17211
|
|
|
17212
17212
|
/**
|
|
17213
17213
|
* Get Customer
|
|
17214
|
-
* @param {
|
|
17214
|
+
* @param {string} [billCustomerId] Customer ID
|
|
17215
17215
|
* @param {*} [options] Override http request option.
|
|
17216
17216
|
* @throws {RequiredError}
|
|
17217
17217
|
*/
|
|
17218
|
-
public getGetBillingCustomerDetails(billCustomerId?:
|
|
17218
|
+
public getGetBillingCustomerDetails(billCustomerId?: string, options?: RawAxiosRequestConfig) {
|
|
17219
17219
|
return BillingApiFp(this.configuration).getGetBillingCustomerDetails(billCustomerId, options).then((request) => request(this.axios, this.basePath));
|
|
17220
17220
|
}
|
|
17221
17221
|
|
package/dist/api.d.ts
CHANGED
|
@@ -11350,11 +11350,11 @@ export declare const BillingApiAxiosParamCreator: (configuration?: Configuration
|
|
|
11350
11350
|
getGetBaseServices: (options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
11351
11351
|
/**
|
|
11352
11352
|
* Get Customer
|
|
11353
|
-
* @param {
|
|
11353
|
+
* @param {string} [billCustomerId] Customer ID
|
|
11354
11354
|
* @param {*} [options] Override http request option.
|
|
11355
11355
|
* @throws {RequiredError}
|
|
11356
11356
|
*/
|
|
11357
|
-
getGetBillingCustomerDetails: (billCustomerId?:
|
|
11357
|
+
getGetBillingCustomerDetails: (billCustomerId?: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
11358
11358
|
/**
|
|
11359
11359
|
* Get Bundle Calls With Cost
|
|
11360
11360
|
* @param {*} [options] Override http request option.
|
|
@@ -11848,11 +11848,11 @@ export declare const BillingApiFp: (configuration?: Configuration) => {
|
|
|
11848
11848
|
getGetBaseServices(options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<BaseService>>>;
|
|
11849
11849
|
/**
|
|
11850
11850
|
* Get Customer
|
|
11851
|
-
* @param {
|
|
11851
|
+
* @param {string} [billCustomerId] Customer ID
|
|
11852
11852
|
* @param {*} [options] Override http request option.
|
|
11853
11853
|
* @throws {RequiredError}
|
|
11854
11854
|
*/
|
|
11855
|
-
getGetBillingCustomerDetails(billCustomerId?:
|
|
11855
|
+
getGetBillingCustomerDetails(billCustomerId?: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Customer>>;
|
|
11856
11856
|
/**
|
|
11857
11857
|
* Get Bundle Calls With Cost
|
|
11858
11858
|
* @param {*} [options] Override http request option.
|
|
@@ -12346,11 +12346,11 @@ export declare const BillingApiFactory: (configuration?: Configuration, basePath
|
|
|
12346
12346
|
getGetBaseServices(options?: RawAxiosRequestConfig): AxiosPromise<Array<BaseService>>;
|
|
12347
12347
|
/**
|
|
12348
12348
|
* Get Customer
|
|
12349
|
-
* @param {
|
|
12349
|
+
* @param {string} [billCustomerId] Customer ID
|
|
12350
12350
|
* @param {*} [options] Override http request option.
|
|
12351
12351
|
* @throws {RequiredError}
|
|
12352
12352
|
*/
|
|
12353
|
-
getGetBillingCustomerDetails(billCustomerId?:
|
|
12353
|
+
getGetBillingCustomerDetails(billCustomerId?: string, options?: RawAxiosRequestConfig): AxiosPromise<Customer>;
|
|
12354
12354
|
/**
|
|
12355
12355
|
* Get Bundle Calls With Cost
|
|
12356
12356
|
* @param {*} [options] Override http request option.
|
|
@@ -12844,11 +12844,11 @@ export declare class BillingApi extends BaseAPI {
|
|
|
12844
12844
|
getGetBaseServices(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<BaseService[], any, {}>>;
|
|
12845
12845
|
/**
|
|
12846
12846
|
* Get Customer
|
|
12847
|
-
* @param {
|
|
12847
|
+
* @param {string} [billCustomerId] Customer ID
|
|
12848
12848
|
* @param {*} [options] Override http request option.
|
|
12849
12849
|
* @throws {RequiredError}
|
|
12850
12850
|
*/
|
|
12851
|
-
getGetBillingCustomerDetails(billCustomerId?:
|
|
12851
|
+
getGetBillingCustomerDetails(billCustomerId?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<Customer, any, {}>>;
|
|
12852
12852
|
/**
|
|
12853
12853
|
* Get Bundle Calls With Cost
|
|
12854
12854
|
* @param {*} [options] Override http request option.
|
package/dist/api.js
CHANGED
|
@@ -5240,7 +5240,7 @@ var BillingApiAxiosParamCreator = function (configuration) {
|
|
|
5240
5240
|
},
|
|
5241
5241
|
/**
|
|
5242
5242
|
* Get Customer
|
|
5243
|
-
* @param {
|
|
5243
|
+
* @param {string} [billCustomerId] Customer ID
|
|
5244
5244
|
* @param {*} [options] Override http request option.
|
|
5245
5245
|
* @throws {RequiredError}
|
|
5246
5246
|
*/
|
|
@@ -7585,7 +7585,7 @@ var BillingApiFp = function (configuration) {
|
|
|
7585
7585
|
},
|
|
7586
7586
|
/**
|
|
7587
7587
|
* Get Customer
|
|
7588
|
-
* @param {
|
|
7588
|
+
* @param {string} [billCustomerId] Customer ID
|
|
7589
7589
|
* @param {*} [options] Override http request option.
|
|
7590
7590
|
* @throws {RequiredError}
|
|
7591
7591
|
*/
|
|
@@ -8867,7 +8867,7 @@ var BillingApiFactory = function (configuration, basePath, axios) {
|
|
|
8867
8867
|
},
|
|
8868
8868
|
/**
|
|
8869
8869
|
* Get Customer
|
|
8870
|
-
* @param {
|
|
8870
|
+
* @param {string} [billCustomerId] Customer ID
|
|
8871
8871
|
* @param {*} [options] Override http request option.
|
|
8872
8872
|
* @throws {RequiredError}
|
|
8873
8873
|
*/
|
|
@@ -9518,7 +9518,7 @@ var BillingApi = /** @class */ (function (_super) {
|
|
|
9518
9518
|
};
|
|
9519
9519
|
/**
|
|
9520
9520
|
* Get Customer
|
|
9521
|
-
* @param {
|
|
9521
|
+
* @param {string} [billCustomerId] Customer ID
|
|
9522
9522
|
* @param {*} [options] Override http request option.
|
|
9523
9523
|
* @throws {RequiredError}
|
|
9524
9524
|
*/
|
package/docs/BillingApi.md
CHANGED
|
@@ -1001,7 +1001,7 @@ import {
|
|
|
1001
1001
|
const configuration = new Configuration();
|
|
1002
1002
|
const apiInstance = new BillingApi(configuration);
|
|
1003
1003
|
|
|
1004
|
-
let billCustomerId:
|
|
1004
|
+
let billCustomerId: string; //Customer ID (optional) (default to undefined)
|
|
1005
1005
|
|
|
1006
1006
|
const { status, data } = await apiInstance.getGetBillingCustomerDetails(
|
|
1007
1007
|
billCustomerId
|
|
@@ -1012,7 +1012,7 @@ const { status, data } = await apiInstance.getGetBillingCustomerDetails(
|
|
|
1012
1012
|
|
|
1013
1013
|
|Name | Type | Description | Notes|
|
|
1014
1014
|
|------------- | ------------- | ------------- | -------------|
|
|
1015
|
-
| **billCustomerId** | [**
|
|
1015
|
+
| **billCustomerId** | [**string**] | Customer ID | (optional) defaults to undefined|
|
|
1016
1016
|
|
|
1017
1017
|
|
|
1018
1018
|
### Return type
|