vayu-ts 0.2.4 → 0.2.5
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.
|
@@ -18,3 +18,4 @@ __exportStar(require("./CustomersClient"), exports);
|
|
|
18
18
|
__exportStar(require("./EventsClient"), exports);
|
|
19
19
|
__exportStar(require("./InvoicesClient"), exports);
|
|
20
20
|
__exportStar(require("./ProductsClient"), exports);
|
|
21
|
+
__exportStar(require("./EntitlementsClient"), exports);
|
package/dist/sdk-v2/index.d.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { CustomersClient, EventsClient, InvoicesClient, ProductsClient } from './clients';
|
|
1
|
+
import { CustomersClient, EntitlementsClient, EventsClient, InvoicesClient, ProductsClient } from './clients';
|
|
2
2
|
export declare class Vayu {
|
|
3
3
|
private configurationManager;
|
|
4
4
|
constructor(apiKey: string, _baseUrl?: string);
|
|
@@ -7,5 +7,6 @@ export declare class Vayu {
|
|
|
7
7
|
get customers(): CustomersClient;
|
|
8
8
|
get products(): ProductsClient;
|
|
9
9
|
get invoices(): InvoicesClient;
|
|
10
|
+
get entitlements(): EntitlementsClient;
|
|
10
11
|
}
|
|
11
12
|
export * from './types';
|
package/dist/sdk-v2/index.js
CHANGED
|
@@ -2,5 +2,6 @@ export * from './Customers';
|
|
|
2
2
|
export * from './Events';
|
|
3
3
|
export * from './Invoices';
|
|
4
4
|
export * from './Products';
|
|
5
|
+
export * from './Entitlements';
|
|
5
6
|
export { AggregationMethods, CriterionOperators, } from '../../openapi-v2';
|
|
6
7
|
export type { Aggregation, Criterion, Condition, CriterionValue, Pricing, PricingTiersInner as PricingTiers, } from '../../openapi-v2';
|
|
@@ -19,6 +19,7 @@ __exportStar(require("./Customers"), exports);
|
|
|
19
19
|
__exportStar(require("./Events"), exports);
|
|
20
20
|
__exportStar(require("./Invoices"), exports);
|
|
21
21
|
__exportStar(require("./Products"), exports);
|
|
22
|
+
__exportStar(require("./Entitlements"), exports);
|
|
22
23
|
var openapi_v2_1 = require("../../openapi-v2");
|
|
23
24
|
Object.defineProperty(exports, "AggregationMethods", { enumerable: true, get: function () { return openapi_v2_1.AggregationMethods; } });
|
|
24
25
|
Object.defineProperty(exports, "CriterionOperators", { enumerable: true, get: function () { return openapi_v2_1.CriterionOperators; } });
|