@openmeter/sdk 1.0.0-beta.224 → 1.0.0-beta.225
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 +200 -0
- package/dist/cjs/src/client/features.d.cts +9 -0
- package/dist/cjs/src/client/notifications.d.cts +6 -0
- package/dist/cjs/src/client/schemas.d.cts +719 -98
- package/dist/cjs/src/client/subscriptions.d.cts +5 -0
- package/dist/cjs/src/zod/index.cjs +372 -37
- package/dist/cjs/src/zod/index.d.cts +398 -16
- package/dist/cjs/src/zod/index.js.map +1 -1
- package/dist/cjs/{tsconfig.041f8f6a.tsbuildinfo → tsconfig.7db92107.tsbuildinfo} +1 -1
- package/dist/cjs/{tsconfig.c55e75d7.tsbuildinfo → tsconfig.94dd8c51.tsbuildinfo} +1 -1
- package/dist/src/client/features.d.ts +9 -0
- package/dist/src/client/notifications.d.ts +6 -0
- package/dist/src/client/schemas.d.ts +719 -98
- package/dist/src/client/subscriptions.d.ts +5 -0
- package/dist/src/zod/index.d.ts +398 -16
- package/dist/src/zod/index.js +352 -18
- package/dist/src/zod/index.js.map +1 -1
- package/dist/tsconfig.tsbuildinfo +1 -1
- package/package.json +1 -1
|
@@ -23,6 +23,7 @@ export declare class Subscriptions {
|
|
|
23
23
|
readonly deletedAt?: Date;
|
|
24
24
|
activeFrom: Date;
|
|
25
25
|
activeTo?: Date;
|
|
26
|
+
readonly annotations?: import("./schemas.js").components["schemas"]["Annotations"];
|
|
26
27
|
alignment?: import("./schemas.js").components["schemas"]["Alignment"];
|
|
27
28
|
readonly status: import("./schemas.js").components["schemas"]["SubscriptionStatus"];
|
|
28
29
|
customerId: string;
|
|
@@ -48,6 +49,7 @@ export declare class Subscriptions {
|
|
|
48
49
|
readonly deletedAt?: Date;
|
|
49
50
|
activeFrom: Date;
|
|
50
51
|
activeTo?: Date;
|
|
52
|
+
readonly annotations?: import("./schemas.js").components["schemas"]["Annotations"];
|
|
51
53
|
readonly status: import("./schemas.js").components["schemas"]["SubscriptionStatus"];
|
|
52
54
|
customerId: string;
|
|
53
55
|
plan?: import("./schemas.js").components["schemas"]["PlanReference"];
|
|
@@ -75,6 +77,7 @@ export declare class Subscriptions {
|
|
|
75
77
|
readonly deletedAt?: Date;
|
|
76
78
|
activeFrom: Date;
|
|
77
79
|
activeTo?: Date;
|
|
80
|
+
readonly annotations?: import("./schemas.js").components["schemas"]["Annotations"];
|
|
78
81
|
alignment?: import("./schemas.js").components["schemas"]["Alignment"];
|
|
79
82
|
readonly status: import("./schemas.js").components["schemas"]["SubscriptionStatus"];
|
|
80
83
|
customerId: string;
|
|
@@ -101,6 +104,7 @@ export declare class Subscriptions {
|
|
|
101
104
|
readonly deletedAt?: Date;
|
|
102
105
|
activeFrom: Date;
|
|
103
106
|
activeTo?: Date;
|
|
107
|
+
readonly annotations?: import("./schemas.js").components["schemas"]["Annotations"];
|
|
104
108
|
alignment?: import("./schemas.js").components["schemas"]["Alignment"];
|
|
105
109
|
readonly status: import("./schemas.js").components["schemas"]["SubscriptionStatus"];
|
|
106
110
|
customerId: string;
|
|
@@ -150,6 +154,7 @@ export declare class Subscriptions {
|
|
|
150
154
|
readonly deletedAt?: Date;
|
|
151
155
|
activeFrom: Date;
|
|
152
156
|
activeTo?: Date;
|
|
157
|
+
readonly annotations?: import("./schemas.js").components["schemas"]["Annotations"];
|
|
153
158
|
alignment?: import("./schemas.js").components["schemas"]["Alignment"];
|
|
154
159
|
readonly status: import("./schemas.js").components["schemas"]["SubscriptionStatus"];
|
|
155
160
|
customerId: string;
|