vayu-ts 0.2.14 → 0.2.15
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.
|
@@ -10,4 +10,5 @@ export declare class CustomersClient {
|
|
|
10
10
|
update(id: string, payload: UpdateCustomerRequest): Promise<import("../types").UpdateCustomerResponse>;
|
|
11
11
|
delete(id: string): Promise<import("../types").DeleteCustomerResponse>;
|
|
12
12
|
listCustomerProductsConsumptions(id: string): Promise<import("../../openapi").GetCustomerProductsConsumptionsResponse>;
|
|
13
|
+
listCustomerProductsConsumptionsByAlias(alias: string): Promise<import("../../openapi").GetCustomerProductsConsumptionsByAliasResponse>;
|
|
13
14
|
}
|
|
@@ -30,5 +30,8 @@ class CustomersClient {
|
|
|
30
30
|
async listCustomerProductsConsumptions(id) {
|
|
31
31
|
return this.client.getCustomerProductsConsumptions(id);
|
|
32
32
|
}
|
|
33
|
+
async listCustomerProductsConsumptionsByAlias(alias) {
|
|
34
|
+
return this.client.getCustomerProductsConsumptionsByAlias(alias);
|
|
35
|
+
}
|
|
33
36
|
}
|
|
34
37
|
exports.CustomersClient = CustomersClient;
|