@openmeter/sdk 1.0.0-beta-191a59448a86 → 1.0.0-beta-e825c32fe22d

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.
Files changed (34) hide show
  1. package/dist/cjs/src/client/customers.cjs +17 -0
  2. package/dist/cjs/src/client/customers.d.cts +11 -0
  3. package/dist/cjs/src/client/customers.js.map +1 -1
  4. package/dist/cjs/src/client/events.cjs +19 -7
  5. package/dist/cjs/src/client/events.d.cts +15 -4
  6. package/dist/cjs/src/client/events.js.map +1 -1
  7. package/dist/cjs/src/client/plans.cjs +127 -50
  8. package/dist/cjs/src/client/plans.d.cts +114 -24
  9. package/dist/cjs/src/client/plans.js.map +1 -1
  10. package/dist/cjs/src/client/schemas.d.cts +11 -11
  11. package/dist/cjs/src/client/subscriptions.cjs +16 -0
  12. package/dist/cjs/src/client/subscriptions.d.cts +8 -0
  13. package/dist/cjs/src/client/subscriptions.js.map +1 -1
  14. package/dist/cjs/src/zod/index.cjs +11 -11
  15. package/dist/cjs/src/zod/index.d.cts +11 -11
  16. package/dist/cjs/{tsconfig.d2b5ca69.tsbuildinfo → tsconfig.030fce72.tsbuildinfo} +1 -1
  17. package/dist/cjs/{tsconfig.f0875bf1.tsbuildinfo → tsconfig.89581efe.tsbuildinfo} +1 -1
  18. package/dist/src/client/customers.d.ts +11 -0
  19. package/dist/src/client/customers.js +17 -0
  20. package/dist/src/client/customers.js.map +1 -1
  21. package/dist/src/client/events.d.ts +15 -4
  22. package/dist/src/client/events.js +19 -7
  23. package/dist/src/client/events.js.map +1 -1
  24. package/dist/src/client/plans.d.ts +114 -24
  25. package/dist/src/client/plans.js +124 -48
  26. package/dist/src/client/plans.js.map +1 -1
  27. package/dist/src/client/schemas.d.ts +11 -11
  28. package/dist/src/client/subscriptions.d.ts +8 -0
  29. package/dist/src/client/subscriptions.js +16 -0
  30. package/dist/src/client/subscriptions.js.map +1 -1
  31. package/dist/src/zod/index.d.ts +11 -11
  32. package/dist/src/zod/index.js +11 -11
  33. package/dist/tsconfig.tsbuildinfo +1 -1
  34. package/package.json +1 -1
@@ -1,13 +1,18 @@
1
1
  import type { RequestOptions } from './common.js';
2
2
  import type { operations, paths, PlanCreate, PlanReplaceUpdate } from './schemas.js';
3
3
  import type { Client } from 'openapi-fetch';
4
+ /**
5
+ * Plans
6
+ * Manage customer subscription plans and addon assignments.
7
+ */
4
8
  export declare class Plans {
5
9
  private client;
10
+ addons: PlanAddons;
6
11
  constructor(client: Client<paths, `${string}/${string}`>);
7
12
  /**
8
13
  * Create a plan
9
14
  * @param plan - The plan to create
10
- * @param signal - An optional abort signal
15
+ * @param options - Optional request options
11
16
  * @returns The created plan
12
17
  */
13
18
  create(plan: PlanCreate, options?: RequestOptions): Promise<{
@@ -31,12 +36,13 @@ export declare class Plans {
31
36
  readonly validationErrors: import("./schemas.js").components["schemas"]["ValidationError"][] | null;
32
37
  }>;
33
38
  /**
34
- * Get a plan by ID or key
35
- * @param idOrKey - The ID or key of the plan
36
- * @param signal - An optional abort signal
39
+ * Get a plan by ID
40
+ * @param planId - The ID of the plan to retrieve
41
+ * @param params - Optional query parameters
42
+ * @param options - Optional request options
37
43
  * @returns The plan
38
44
  */
39
- get(id: operations['getPlan']['parameters']['path']['planId'], options?: RequestOptions): Promise<{
45
+ get(planId: operations['getPlan']['parameters']['path']['planId'], params?: operations['getPlan']['parameters']['query'], options?: RequestOptions): Promise<{
40
46
  readonly id: string;
41
47
  name: string;
42
48
  description?: string;
@@ -58,11 +64,11 @@ export declare class Plans {
58
64
  }>;
59
65
  /**
60
66
  * List plans
61
- * @param query - The query parameters
62
- * @param signal - An optional abort signal
63
- * @returns The list of plans
67
+ * @param params - Optional parameters for listing plans
68
+ * @param options - Optional request options
69
+ * @returns A list of plans
64
70
  */
65
- list(query?: operations['listPlans']['parameters']['query'], options?: RequestOptions): Promise<{
71
+ list(params?: operations['listPlans']['parameters']['query'], options?: RequestOptions): Promise<{
66
72
  totalCount: number;
67
73
  page: number;
68
74
  pageSize: number;
@@ -70,12 +76,12 @@ export declare class Plans {
70
76
  }>;
71
77
  /**
72
78
  * Update a plan
73
- * @param id - The ID of the plan
74
- * @param plan - The plan to update
75
- * @param signal - An optional abort signal
79
+ * @param planId - The ID of the plan to update
80
+ * @param plan - The plan data to update
81
+ * @param options - Optional request options
76
82
  * @returns The updated plan
77
83
  */
78
- update(id: operations['updatePlan']['parameters']['path']['planId'], plan: PlanReplaceUpdate, options?: RequestOptions): Promise<{
84
+ update(planId: operations['updatePlan']['parameters']['path']['planId'], plan: PlanReplaceUpdate, options?: RequestOptions): Promise<{
79
85
  readonly id: string;
80
86
  name: string;
81
87
  description?: string;
@@ -96,19 +102,19 @@ export declare class Plans {
96
102
  readonly validationErrors: import("./schemas.js").components["schemas"]["ValidationError"][] | null;
97
103
  }>;
98
104
  /**
99
- * Delete a plan
100
- * @param id - The ID of the plan
101
- * @param signal - An optional abort signal
102
- * @returns The deleted plan
105
+ * Delete a plan by ID
106
+ * @param planId - The ID of the plan to delete
107
+ * @param options - Optional request options
108
+ * @returns void or standard error response structure
103
109
  */
104
- delete(id: operations['deletePlan']['parameters']['path']['planId'], options?: RequestOptions): Promise<undefined>;
110
+ delete(planId: operations['deletePlan']['parameters']['path']['planId'], options?: RequestOptions): Promise<undefined>;
105
111
  /**
106
112
  * Archive a plan
107
- * @param id - The ID of the plan
108
- * @param signal - An optional abort signal
113
+ * @param planId - The ID of the plan to archive
114
+ * @param options - Optional request options
109
115
  * @returns The archived plan
110
116
  */
111
- archive(id: operations['archivePlan']['parameters']['path']['planId'], options?: RequestOptions): Promise<{
117
+ archive(planId: operations['archivePlan']['parameters']['path']['planId'], options?: RequestOptions): Promise<{
112
118
  readonly id: string;
113
119
  name: string;
114
120
  description?: string;
@@ -130,11 +136,11 @@ export declare class Plans {
130
136
  }>;
131
137
  /**
132
138
  * Publish a plan
133
- * @param id - The ID of the plan
134
- * @param signal - An optional abort signal
139
+ * @param planId - The ID of the plan to publish
140
+ * @param options - Optional request options
135
141
  * @returns The published plan
136
142
  */
137
- publish(id: operations['publishPlan']['parameters']['path']['planId'], options?: RequestOptions): Promise<{
143
+ publish(planId: operations['publishPlan']['parameters']['path']['planId'], options?: RequestOptions): Promise<{
138
144
  readonly id: string;
139
145
  name: string;
140
146
  description?: string;
@@ -155,3 +161,87 @@ export declare class Plans {
155
161
  readonly validationErrors: import("./schemas.js").components["schemas"]["ValidationError"][] | null;
156
162
  }>;
157
163
  }
164
+ /**
165
+ * Plan Addons
166
+ * Manage addon assignments for plans.
167
+ */
168
+ export declare class PlanAddons {
169
+ private client;
170
+ constructor(client: Client<paths, `${string}/${string}`>);
171
+ /**
172
+ * List plan addons
173
+ * @param planId - The ID of the plan
174
+ * @param params - Optional query parameters
175
+ * @param options - Optional request options
176
+ * @returns A list of plan addons
177
+ */
178
+ list(planId: operations['listPlanAddons']['parameters']['path']['planId'], params?: operations['listPlanAddons']['parameters']['query'], options?: RequestOptions): Promise<{
179
+ totalCount: number;
180
+ page: number;
181
+ pageSize: number;
182
+ items: import("./schemas.js").components["schemas"]["PlanAddon"][];
183
+ }>;
184
+ /**
185
+ * Create a plan addon
186
+ * @param planId - The ID of the plan
187
+ * @param planAddon - The plan addon to create
188
+ * @param options - Optional request options
189
+ * @returns The created plan addon
190
+ */
191
+ create(planId: operations['createPlanAddon']['parameters']['path']['planId'], planAddon: operations['createPlanAddon']['requestBody']['content']['application/json'], options?: RequestOptions): Promise<{
192
+ readonly createdAt: Date;
193
+ readonly updatedAt: Date;
194
+ readonly deletedAt?: Date;
195
+ readonly annotations?: import("./schemas.js").components["schemas"]["Annotations"];
196
+ metadata?: import("./schemas.js").components["schemas"]["Metadata"];
197
+ readonly addon: import("./schemas.js").components["schemas"]["Addon"];
198
+ fromPlanPhase: string;
199
+ maxQuantity?: number;
200
+ readonly validationErrors: import("./schemas.js").components["schemas"]["ValidationError"][] | null;
201
+ }>;
202
+ /**
203
+ * Get a plan addon by ID
204
+ * @param planId - The ID of the plan
205
+ * @param planAddonId - The ID of the plan addon
206
+ * @param options - Optional request options
207
+ * @returns The plan addon
208
+ */
209
+ get(planId: operations['getPlanAddon']['parameters']['path']['planId'], planAddonId: operations['getPlanAddon']['parameters']['path']['planAddonId'], options?: RequestOptions): Promise<{
210
+ readonly createdAt: Date;
211
+ readonly updatedAt: Date;
212
+ readonly deletedAt?: Date;
213
+ readonly annotations?: import("./schemas.js").components["schemas"]["Annotations"];
214
+ metadata?: import("./schemas.js").components["schemas"]["Metadata"];
215
+ readonly addon: import("./schemas.js").components["schemas"]["Addon"];
216
+ fromPlanPhase: string;
217
+ maxQuantity?: number;
218
+ readonly validationErrors: import("./schemas.js").components["schemas"]["ValidationError"][] | null;
219
+ }>;
220
+ /**
221
+ * Update a plan addon
222
+ * @param planId - The ID of the plan
223
+ * @param planAddonId - The ID of the plan addon to update
224
+ * @param planAddon - The plan addon data to update
225
+ * @param options - Optional request options
226
+ * @returns The updated plan addon
227
+ */
228
+ update(planId: operations['updatePlanAddon']['parameters']['path']['planId'], planAddonId: operations['updatePlanAddon']['parameters']['path']['planAddonId'], planAddon: operations['updatePlanAddon']['requestBody']['content']['application/json'], options?: RequestOptions): Promise<{
229
+ readonly createdAt: Date;
230
+ readonly updatedAt: Date;
231
+ readonly deletedAt?: Date;
232
+ readonly annotations?: import("./schemas.js").components["schemas"]["Annotations"];
233
+ metadata?: import("./schemas.js").components["schemas"]["Metadata"];
234
+ readonly addon: import("./schemas.js").components["schemas"]["Addon"];
235
+ fromPlanPhase: string;
236
+ maxQuantity?: number;
237
+ readonly validationErrors: import("./schemas.js").components["schemas"]["ValidationError"][] | null;
238
+ }>;
239
+ /**
240
+ * Delete a plan addon by ID
241
+ * @param planId - The ID of the plan
242
+ * @param planAddonId - The ID of the plan addon to delete
243
+ * @param options - Optional request options
244
+ * @returns void or standard error response structure
245
+ */
246
+ delete(planId: operations['deletePlanAddon']['parameters']['path']['planId'], planAddonId: operations['deletePlanAddon']['parameters']['path']['planAddonId'], options?: RequestOptions): Promise<undefined>;
247
+ }
@@ -1,13 +1,19 @@
1
1
  import { transformResponse } from './utils.js';
2
+ /**
3
+ * Plans
4
+ * Manage customer subscription plans and addon assignments.
5
+ */
2
6
  export class Plans {
3
7
  client;
8
+ addons;
4
9
  constructor(client) {
5
10
  this.client = client;
11
+ this.addons = new PlanAddons(this.client);
6
12
  }
7
13
  /**
8
14
  * Create a plan
9
15
  * @param plan - The plan to create
10
- * @param signal - An optional abort signal
16
+ * @param options - Optional request options
11
17
  * @returns The created plan
12
18
  */
13
19
  async create(plan, options) {
@@ -18,17 +24,17 @@ export class Plans {
18
24
  return transformResponse(resp);
19
25
  }
20
26
  /**
21
- * Get a plan by ID or key
22
- * @param idOrKey - The ID or key of the plan
23
- * @param signal - An optional abort signal
27
+ * Get a plan by ID
28
+ * @param planId - The ID of the plan to retrieve
29
+ * @param params - Optional query parameters
30
+ * @param options - Optional request options
24
31
  * @returns The plan
25
32
  */
26
- async get(id, options) {
33
+ async get(planId, params, options) {
27
34
  const resp = await this.client.GET('/api/v1/plans/{planId}', {
28
35
  params: {
29
- path: {
30
- planId: id,
31
- },
36
+ path: { planId },
37
+ query: params,
32
38
  },
33
39
  ...options,
34
40
  });
@@ -36,88 +42,158 @@ export class Plans {
36
42
  }
37
43
  /**
38
44
  * List plans
39
- * @param query - The query parameters
40
- * @param signal - An optional abort signal
41
- * @returns The list of plans
45
+ * @param params - Optional parameters for listing plans
46
+ * @param options - Optional request options
47
+ * @returns A list of plans
42
48
  */
43
- async list(query, options) {
49
+ async list(params, options) {
44
50
  const resp = await this.client.GET('/api/v1/plans', {
45
- params: {
46
- query,
47
- },
51
+ params: { query: params },
48
52
  ...options,
49
53
  });
50
54
  return transformResponse(resp);
51
55
  }
52
56
  /**
53
57
  * Update a plan
54
- * @param id - The ID of the plan
55
- * @param plan - The plan to update
56
- * @param signal - An optional abort signal
58
+ * @param planId - The ID of the plan to update
59
+ * @param plan - The plan data to update
60
+ * @param options - Optional request options
57
61
  * @returns The updated plan
58
62
  */
59
- async update(id, plan, options) {
63
+ async update(planId, plan, options) {
60
64
  const resp = await this.client.PUT('/api/v1/plans/{planId}', {
61
65
  body: plan,
62
- params: {
63
- path: {
64
- planId: id,
65
- },
66
- },
66
+ params: { path: { planId } },
67
67
  ...options,
68
68
  });
69
69
  return transformResponse(resp);
70
70
  }
71
71
  /**
72
- * Delete a plan
73
- * @param id - The ID of the plan
74
- * @param signal - An optional abort signal
75
- * @returns The deleted plan
72
+ * Delete a plan by ID
73
+ * @param planId - The ID of the plan to delete
74
+ * @param options - Optional request options
75
+ * @returns void or standard error response structure
76
76
  */
77
- async delete(id, options) {
77
+ async delete(planId, options) {
78
78
  const resp = await this.client.DELETE('/api/v1/plans/{planId}', {
79
- params: {
80
- path: {
81
- planId: id,
82
- },
83
- },
79
+ params: { path: { planId } },
84
80
  ...options,
85
81
  });
86
82
  return transformResponse(resp);
87
83
  }
88
84
  /**
89
85
  * Archive a plan
90
- * @param id - The ID of the plan
91
- * @param signal - An optional abort signal
86
+ * @param planId - The ID of the plan to archive
87
+ * @param options - Optional request options
92
88
  * @returns The archived plan
93
89
  */
94
- async archive(id, options) {
90
+ async archive(planId, options) {
95
91
  const resp = await this.client.POST('/api/v1/plans/{planId}/archive', {
96
- params: {
97
- path: {
98
- planId: id,
99
- },
100
- },
92
+ params: { path: { planId } },
101
93
  ...options,
102
94
  });
103
95
  return transformResponse(resp);
104
96
  }
105
97
  /**
106
98
  * Publish a plan
107
- * @param id - The ID of the plan
108
- * @param signal - An optional abort signal
99
+ * @param planId - The ID of the plan to publish
100
+ * @param options - Optional request options
109
101
  * @returns The published plan
110
102
  */
111
- async publish(id, options) {
103
+ async publish(planId, options) {
112
104
  const resp = await this.client.POST('/api/v1/plans/{planId}/publish', {
105
+ params: { path: { planId } },
106
+ ...options,
107
+ });
108
+ return transformResponse(resp);
109
+ }
110
+ }
111
+ /**
112
+ * Plan Addons
113
+ * Manage addon assignments for plans.
114
+ */
115
+ export class PlanAddons {
116
+ client;
117
+ constructor(client) {
118
+ this.client = client;
119
+ }
120
+ /**
121
+ * List plan addons
122
+ * @param planId - The ID of the plan
123
+ * @param params - Optional query parameters
124
+ * @param options - Optional request options
125
+ * @returns A list of plan addons
126
+ */
127
+ async list(planId, params, options) {
128
+ const resp = await this.client.GET('/api/v1/plans/{planId}/addons', {
113
129
  params: {
114
- path: {
115
- planId: id,
116
- },
130
+ path: { planId },
131
+ query: params,
117
132
  },
118
133
  ...options,
119
134
  });
120
135
  return transformResponse(resp);
121
136
  }
137
+ /**
138
+ * Create a plan addon
139
+ * @param planId - The ID of the plan
140
+ * @param planAddon - The plan addon to create
141
+ * @param options - Optional request options
142
+ * @returns The created plan addon
143
+ */
144
+ async create(planId, planAddon, options) {
145
+ const resp = await this.client.POST('/api/v1/plans/{planId}/addons', {
146
+ body: planAddon,
147
+ params: { path: { planId } },
148
+ ...options,
149
+ });
150
+ return transformResponse(resp);
151
+ }
152
+ /**
153
+ * Get a plan addon by ID
154
+ * @param planId - The ID of the plan
155
+ * @param planAddonId - The ID of the plan addon
156
+ * @param options - Optional request options
157
+ * @returns The plan addon
158
+ */
159
+ async get(planId, planAddonId, options) {
160
+ const resp = await this.client.GET('/api/v1/plans/{planId}/addons/{planAddonId}', {
161
+ params: {
162
+ path: { planAddonId, planId },
163
+ },
164
+ ...options,
165
+ });
166
+ return transformResponse(resp);
167
+ }
168
+ /**
169
+ * Update a plan addon
170
+ * @param planId - The ID of the plan
171
+ * @param planAddonId - The ID of the plan addon to update
172
+ * @param planAddon - The plan addon data to update
173
+ * @param options - Optional request options
174
+ * @returns The updated plan addon
175
+ */
176
+ async update(planId, planAddonId, planAddon, options) {
177
+ const resp = await this.client.PUT('/api/v1/plans/{planId}/addons/{planAddonId}', {
178
+ body: planAddon,
179
+ params: { path: { planAddonId, planId } },
180
+ ...options,
181
+ });
182
+ return transformResponse(resp);
183
+ }
184
+ /**
185
+ * Delete a plan addon by ID
186
+ * @param planId - The ID of the plan
187
+ * @param planAddonId - The ID of the plan addon to delete
188
+ * @param options - Optional request options
189
+ * @returns void or standard error response structure
190
+ */
191
+ async delete(planId, planAddonId, options) {
192
+ const resp = await this.client.DELETE('/api/v1/plans/{planId}/addons/{planAddonId}', {
193
+ params: { path: { planAddonId, planId } },
194
+ ...options,
195
+ });
196
+ return transformResponse(resp);
197
+ }
122
198
  }
123
199
  //# sourceMappingURL=plans.js.map
@@ -1 +1 @@
1
- {"version":3,"file":"plans.js","sourceRoot":"","sources":["../../../src/client/plans.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,iBAAiB,EAAE,MAAM,YAAY,CAAA;AAU9C,MAAM,OAAO,KAAK;IACI;IAApB,YAAoB,MAA4C;QAA5C,WAAM,GAAN,MAAM,CAAsC;IAAG,CAAC;IAEpE;;;;;OAKG;IACI,KAAK,CAAC,MAAM,CAAC,IAAgB,EAAE,OAAwB;QAC5D,MAAM,IAAI,GAAG,MAAM,IAAI,CAAC,MAAM,CAAC,IAAI,CAAC,eAAe,EAAE;YACnD,IAAI,EAAE,IAAI;YACV,GAAG,OAAO;SACX,CAAC,CAAA;QAEF,OAAO,iBAAiB,CAAC,IAAI,CAAC,CAAA;IAChC,CAAC;IAED;;;;;OAKG;IACI,KAAK,CAAC,GAAG,CACd,EAAyD,EACzD,OAAwB;QAExB,MAAM,IAAI,GAAG,MAAM,IAAI,CAAC,MAAM,CAAC,GAAG,CAAC,wBAAwB,EAAE;YAC3D,MAAM,EAAE;gBACN,IAAI,EAAE;oBACJ,MAAM,EAAE,EAAE;iBACX;aACF;YACD,GAAG,OAAO;SACX,CAAC,CAAA;QAEF,OAAO,iBAAiB,CAAC,IAAI,CAAC,CAAA;IAChC,CAAC;IAED;;;;;OAKG;IACI,KAAK,CAAC,IAAI,CACf,KAAsD,EACtD,OAAwB;QAExB,MAAM,IAAI,GAAG,MAAM,IAAI,CAAC,MAAM,CAAC,GAAG,CAAC,eAAe,EAAE;YAClD,MAAM,EAAE;gBACN,KAAK;aACN;YACD,GAAG,OAAO;SACX,CAAC,CAAA;QAEF,OAAO,iBAAiB,CAAC,IAAI,CAAC,CAAA;IAChC,CAAC;IAED;;;;;;OAMG;IACI,KAAK,CAAC,MAAM,CACjB,EAA4D,EAC5D,IAAuB,EACvB,OAAwB;QAExB,MAAM,IAAI,GAAG,MAAM,IAAI,CAAC,MAAM,CAAC,GAAG,CAAC,wBAAwB,EAAE;YAC3D,IAAI,EAAE,IAAI;YACV,MAAM,EAAE;gBACN,IAAI,EAAE;oBACJ,MAAM,EAAE,EAAE;iBACX;aACF;YACD,GAAG,OAAO;SACX,CAAC,CAAA;QAEF,OAAO,iBAAiB,CAAC,IAAI,CAAC,CAAA;IAChC,CAAC;IAED;;;;;OAKG;IACI,KAAK,CAAC,MAAM,CACjB,EAA4D,EAC5D,OAAwB;QAExB,MAAM,IAAI,GAAG,MAAM,IAAI,CAAC,MAAM,CAAC,MAAM,CAAC,wBAAwB,EAAE;YAC9D,MAAM,EAAE;gBACN,IAAI,EAAE;oBACJ,MAAM,EAAE,EAAE;iBACX;aACF;YACD,GAAG,OAAO;SACX,CAAC,CAAA;QAEF,OAAO,iBAAiB,CAAC,IAAI,CAAC,CAAA;IAChC,CAAC;IAED;;;;;OAKG;IACI,KAAK,CAAC,OAAO,CAClB,EAA6D,EAC7D,OAAwB;QAExB,MAAM,IAAI,GAAG,MAAM,IAAI,CAAC,MAAM,CAAC,IAAI,CAAC,gCAAgC,EAAE;YACpE,MAAM,EAAE;gBACN,IAAI,EAAE;oBACJ,MAAM,EAAE,EAAE;iBACX;aACF;YACD,GAAG,OAAO;SACX,CAAC,CAAA;QAEF,OAAO,iBAAiB,CAAC,IAAI,CAAC,CAAA;IAChC,CAAC;IAED;;;;;OAKG;IACI,KAAK,CAAC,OAAO,CAClB,EAA6D,EAC7D,OAAwB;QAExB,MAAM,IAAI,GAAG,MAAM,IAAI,CAAC,MAAM,CAAC,IAAI,CAAC,gCAAgC,EAAE;YACpE,MAAM,EAAE;gBACN,IAAI,EAAE;oBACJ,MAAM,EAAE,EAAE;iBACX;aACF;YACD,GAAG,OAAO;SACX,CAAC,CAAA;QAEF,OAAO,iBAAiB,CAAC,IAAI,CAAC,CAAA;IAChC,CAAC;CACF"}
1
+ {"version":3,"file":"plans.js","sourceRoot":"","sources":["../../../src/client/plans.ts"],"names":[],"mappings":"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"}
@@ -777,7 +777,7 @@ export interface paths {
777
777
  cookie?: never;
778
778
  };
779
779
  /**
780
- * Get entitlement value
780
+ * Get customer entitlement value
781
781
  * @description Checks customer access to a given feature (by key). All entitlement types share the hasAccess property in their value response, but multiple other properties are returned based on the entitlement type.
782
782
  */
783
783
  get: operations['getCustomerEntitlementValue'];
@@ -1732,13 +1732,13 @@ export interface paths {
1732
1732
  cookie?: never;
1733
1733
  };
1734
1734
  /**
1735
- * List entitlements
1735
+ * List subject entitlements
1736
1736
  * @description List all entitlements for a subject. For checking entitlement access, use the /value endpoint instead.
1737
1737
  */
1738
1738
  get: operations['listSubjectEntitlements'];
1739
1739
  put?: never;
1740
1740
  /**
1741
- * Create an entitlement
1741
+ * Create a subject entitlement
1742
1742
  * @description OpenMeter has three types of entitlements: metered, boolean, and static. The type property determines the type of entitlement. The underlying feature has to be compatible with the entitlement type specified in the request (e.g., a metered entitlement needs a feature associated with a meter).
1743
1743
  *
1744
1744
  * - Boolean entitlements define static feature access, e.g. "Can use SSO authentication".
@@ -1764,13 +1764,13 @@ export interface paths {
1764
1764
  cookie?: never;
1765
1765
  };
1766
1766
  /**
1767
- * List entitlement grants
1767
+ * List subject entitlement grants
1768
1768
  * @description List all grants issued for an entitlement. The entitlement can be defined either by its id or featureKey.
1769
1769
  */
1770
1770
  get: operations['listEntitlementGrants'];
1771
1771
  put?: never;
1772
1772
  /**
1773
- * Create grant
1773
+ * Create subject entitlement grant
1774
1774
  * @description Grants define a behavior of granting usage for a metered entitlement. They can have complicated recurrence and rollover rules, thanks to which you can define a wide range of access patterns with a single grant, in most cases you don't have to periodically create new grants. You can only issue grants for active metered entitlements.
1775
1775
  *
1776
1776
  * A grant defines a given amount of usage that can be consumed for the entitlement. The grant is in effect between its effective date and its expiration date. Specifying both is mandatory for new grants.
@@ -1799,7 +1799,7 @@ export interface paths {
1799
1799
  };
1800
1800
  get?: never;
1801
1801
  /**
1802
- * Override entitlement
1802
+ * Override subject entitlement
1803
1803
  * @description Overriding an entitlement creates a new entitlement from the provided inputs and soft deletes the previous entitlement for the provided subject-feature pair. If the previous entitlement is already deleted or otherwise doesnt exist, the override will fail.
1804
1804
  *
1805
1805
  * This endpoint is useful for upgrades, downgrades, or other changes to entitlements that require a new entitlement to be created with zero downtime.
@@ -1820,7 +1820,7 @@ export interface paths {
1820
1820
  cookie?: never;
1821
1821
  };
1822
1822
  /**
1823
- * Get entitlement value
1823
+ * Get subject entitlement value
1824
1824
  * @description This endpoint should be used for access checks and enforcement. All entitlement types share the hasAccess property in their value response, but multiple other properties are returned based on the entitlement type.
1825
1825
  *
1826
1826
  * For convenience reasons, /value works with both entitlementId and featureKey.
@@ -1842,14 +1842,14 @@ export interface paths {
1842
1842
  cookie?: never;
1843
1843
  };
1844
1844
  /**
1845
- * Get entitlement
1845
+ * Get subject entitlement
1846
1846
  * @description Get entitlement by id. For checking entitlement access, use the /value endpoint instead.
1847
1847
  */
1848
1848
  get: operations['getEntitlement'];
1849
1849
  put?: never;
1850
1850
  post?: never;
1851
1851
  /**
1852
- * Delete entitlement
1852
+ * Delete subject entitlement
1853
1853
  * @description Deleting an entitlement revokes access to the associated feature. As a single subject can only have one entitlement per featureKey, when "migrating" features you have to delete the old entitlements as well.
1854
1854
  * As access and status checks can be historical queries, deleting an entitlement populates the deletedAt timestamp. When queried for a time before that, the entitlement is still considered active, you cannot have retroactive changes to access, which is important for, among other things, auditing.
1855
1855
  */
@@ -1867,7 +1867,7 @@ export interface paths {
1867
1867
  cookie?: never;
1868
1868
  };
1869
1869
  /**
1870
- * Get entitlement history
1870
+ * Get subject entitlement history
1871
1871
  * @description Returns historical balance and usage data for the entitlement. The queried history can span accross multiple reset events.
1872
1872
  *
1873
1873
  * BurndownHistory returns a continous history of segments, where the segments are seperated by events that changed either the grant burndown priority or the usage period.
@@ -1893,7 +1893,7 @@ export interface paths {
1893
1893
  get?: never;
1894
1894
  put?: never;
1895
1895
  /**
1896
- * Reset entitlement
1896
+ * Reset subject entitlement
1897
1897
  * @description Reset marks the start of a new usage period for the entitlement and initiates grant rollover. At the start of a period usage is zerod out and grants are rolled over based on their rollover settings. It would typically be synced with the subjects billing period to enforce usage based on their subscription.
1898
1898
  *
1899
1899
  * Usage is automatically reset for metered entitlements based on their usage period, but this endpoint allows to manually reset it at any time. When doing so the period anchor of the entitlement can be changed if needed.
@@ -154,4 +154,12 @@ export declare class Subscriptions {
154
154
  readonly billingCadence: string;
155
155
  readonly proRatingConfig?: import("./schemas.js").components["schemas"]["ProRatingConfig"];
156
156
  }>;
157
+ /**
158
+ * Delete subscription
159
+ * @description Deletes a subscription. Only scheduled subscriptions can be deleted.
160
+ * @param subscriptionId - The ID of the subscription to delete
161
+ * @param options - Optional request options
162
+ * @returns void or standard error response structure
163
+ */
164
+ delete(subscriptionId: operations['deleteSubscription']['parameters']['path']['subscriptionId'], options?: RequestOptions): Promise<undefined>;
157
165
  }
@@ -108,5 +108,21 @@ export class Subscriptions {
108
108
  });
109
109
  return transformResponse(resp);
110
110
  }
111
+ /**
112
+ * Delete subscription
113
+ * @description Deletes a subscription. Only scheduled subscriptions can be deleted.
114
+ * @param subscriptionId - The ID of the subscription to delete
115
+ * @param options - Optional request options
116
+ * @returns void or standard error response structure
117
+ */
118
+ async delete(subscriptionId, options) {
119
+ const resp = await this.client.DELETE('/api/v1/subscriptions/{subscriptionId}', {
120
+ params: {
121
+ path: { subscriptionId },
122
+ },
123
+ ...options,
124
+ });
125
+ return transformResponse(resp);
126
+ }
111
127
  }
112
128
  //# sourceMappingURL=subscriptions.js.map
@@ -1 +1 @@
1
- {"version":3,"file":"subscriptions.js","sourceRoot":"","sources":["../../../src/client/subscriptions.ts"],"names":[],"mappings":"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"}
1
+ {"version":3,"file":"subscriptions.js","sourceRoot":"","sources":["../../../src/client/subscriptions.ts"],"names":[],"mappings":"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"}