File size: 13,128 Bytes
1477a90
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
// Code generated by @openmeter/typespec-typescript. DO NOT EDIT.

import { type Client, http } from '../core.js'
import { type Result, type RequestOptions } from '../lib/types.js'
import { request } from '../lib/request.js'
import { toURLSearchParams, encodeSort } from '../lib/encodings.js'
import {
  toWire,
  toPathWire,
  fromWire,
  assertValid,
  toSnakeCase,
} from '../lib/wire.js'
import * as schemas from '../models/schemas.js'
import type {
  CreateSubscriptionRequest,
  CreateSubscriptionResponse,
  ListSubscriptionsRequest,
  ListSubscriptionsResponse,
  GetSubscriptionRequest,
  GetSubscriptionResponse,
  CancelSubscriptionRequest,
  CancelSubscriptionResponse,
  UnscheduleCancelationRequest,
  UnscheduleCancelationResponse,
  ChangeSubscriptionRequest,
  ChangeSubscriptionResponse,
  CreateSubscriptionAddonRequest,
  CreateSubscriptionAddonResponse,
  ListSubscriptionAddonsRequest,
  ListSubscriptionAddonsResponse,
  GetSubscriptionAddonRequest,
  GetSubscriptionAddonResponse,
} from '../models/operations/subscriptions.js'

/**
 * Create subscription
 *
 * POST /openmeter/subscriptions
 */
export function createSubscription(
  client: Client,
  req: CreateSubscriptionRequest,
  options?: RequestOptions,
): Promise<Result<CreateSubscriptionResponse>> {
  return request(() => {
    const body = toWire(req, schemas.createSubscriptionBody)
    if (client._options.validate) {
      assertValid(schemas.createSubscriptionBodyWire, body)
    }
    return http(client)
      .post('openmeter/subscriptions', { ...options, json: body })
      .json()
      .then((data) => {
        if (client._options.validate) {
          assertValid(schemas.createSubscriptionResponseWire, data)
        }
        return fromWire(data, schemas.createSubscriptionResponse)
      })
  })
}

/**
 * List subscriptions
 *
 * GET /openmeter/subscriptions
 */
export function listSubscriptions(
  client: Client,
  req: ListSubscriptionsRequest = {},
  options?: RequestOptions,
): Promise<Result<ListSubscriptionsResponse>> {
  return request(() => {
    if (client._options.validate && req.sort !== undefined) {
      assertValid(schemas.listSubscriptionsQueryParams.shape.sort, req.sort)
    }
    const query = toWire(
      {
        page: req.page,
        sort: encodeSort(req.sort, toSnakeCase),
        filter: req.filter,
      },
      schemas.listSubscriptionsQueryParams,
    )
    if (client._options.validate) {
      assertValid(schemas.listSubscriptionsQueryParamsWire, query)
    }
    const searchParams = toURLSearchParams(query)
    return http(client)
      .get('openmeter/subscriptions', { ...options, searchParams })
      .json()
      .then((data) => {
        if (client._options.validate) {
          assertValid(schemas.listSubscriptionsResponseWire, data)
        }
        return fromWire(data, schemas.listSubscriptionsResponse)
      })
  })
}

/**
 * Get subscription
 *
 * GET /openmeter/subscriptions/{subscriptionId}
 */
export function getSubscription(
  client: Client,
  req: GetSubscriptionRequest,
  options?: RequestOptions,
): Promise<Result<GetSubscriptionResponse>> {
  return request(() => {
    const pathParamsInput = {
      subscriptionId: req.subscriptionId,
    }
    const pathParams = client._options.validate
      ? toPathWire(pathParamsInput, schemas.getSubscriptionPathParams)
      : pathParamsInput
    if (client._options.validate) {
      assertValid(schemas.getSubscriptionPathParamsWire, pathParams)
    }
    const path = `openmeter/subscriptions/${(() => {
      if (pathParams.subscriptionId === undefined) {
        throw new Error('missing path parameter: subscriptionId')
      }
      return encodeURIComponent(String(pathParams.subscriptionId))
    })()}`
    return http(client)
      .get(path, options)
      .json()
      .then((data) => {
        if (client._options.validate) {
          assertValid(schemas.getSubscriptionResponseWire, data)
        }
        return fromWire(data, schemas.getSubscriptionResponse)
      })
  })
}

/**
 * Cancel subscription
 *
 * Cancels the subscription. Will result in a scheduling conflict if there are
 * other subscriptions scheduled to start after the cancelation time.
 *
 * POST /openmeter/subscriptions/{subscriptionId}/cancel
 */
export function cancelSubscription(
  client: Client,
  req: CancelSubscriptionRequest,
  options?: RequestOptions,
): Promise<Result<CancelSubscriptionResponse>> {
  return request(() => {
    const pathParamsInput = {
      subscriptionId: req.subscriptionId,
    }
    const pathParams = client._options.validate
      ? toPathWire(pathParamsInput, schemas.cancelSubscriptionPathParams)
      : pathParamsInput
    if (client._options.validate) {
      assertValid(schemas.cancelSubscriptionPathParamsWire, pathParams)
    }
    const path = `openmeter/subscriptions/${(() => {
      if (pathParams.subscriptionId === undefined) {
        throw new Error('missing path parameter: subscriptionId')
      }
      return encodeURIComponent(String(pathParams.subscriptionId))
    })()}/cancel`
    const body = toWire(req.body, schemas.cancelSubscriptionBody)
    if (client._options.validate) {
      assertValid(schemas.cancelSubscriptionBodyWire, body)
    }
    return http(client)
      .post(path, { ...options, json: body })
      .json()
      .then((data) => {
        if (client._options.validate) {
          assertValid(schemas.cancelSubscriptionResponseWire, data)
        }
        return fromWire(data, schemas.cancelSubscriptionResponse)
      })
  })
}

/**
 * Unschedule subscription cancelation
 *
 * Unschedules the subscription cancelation.
 *
 * POST /openmeter/subscriptions/{subscriptionId}/unschedule-cancelation
 */
export function unscheduleCancelation(
  client: Client,
  req: UnscheduleCancelationRequest,
  options?: RequestOptions,
): Promise<Result<UnscheduleCancelationResponse>> {
  return request(() => {
    const pathParamsInput = {
      subscriptionId: req.subscriptionId,
    }
    const pathParams = client._options.validate
      ? toPathWire(pathParamsInput, schemas.unscheduleCancelationPathParams)
      : pathParamsInput
    if (client._options.validate) {
      assertValid(schemas.unscheduleCancelationPathParamsWire, pathParams)
    }
    const path = `openmeter/subscriptions/${(() => {
      if (pathParams.subscriptionId === undefined) {
        throw new Error('missing path parameter: subscriptionId')
      }
      return encodeURIComponent(String(pathParams.subscriptionId))
    })()}/unschedule-cancelation`
    return http(client)
      .post(path, options)
      .json()
      .then((data) => {
        if (client._options.validate) {
          assertValid(schemas.unscheduleCancelationResponseWire, data)
        }
        return fromWire(data, schemas.unscheduleCancelationResponse)
      })
  })
}

/**
 * Change subscription
 *
 * Closes a running subscription and starts a new one according to the
 * specification. Can be used for upgrades, downgrades, and plan changes.
 *
 * POST /openmeter/subscriptions/{subscriptionId}/change
 */
export function changeSubscription(
  client: Client,
  req: ChangeSubscriptionRequest,
  options?: RequestOptions,
): Promise<Result<ChangeSubscriptionResponse>> {
  return request(() => {
    const pathParamsInput = {
      subscriptionId: req.subscriptionId,
    }
    const pathParams = client._options.validate
      ? toPathWire(pathParamsInput, schemas.changeSubscriptionPathParams)
      : pathParamsInput
    if (client._options.validate) {
      assertValid(schemas.changeSubscriptionPathParamsWire, pathParams)
    }
    const path = `openmeter/subscriptions/${(() => {
      if (pathParams.subscriptionId === undefined) {
        throw new Error('missing path parameter: subscriptionId')
      }
      return encodeURIComponent(String(pathParams.subscriptionId))
    })()}/change`
    const body = toWire(req.body, schemas.changeSubscriptionBody)
    if (client._options.validate) {
      assertValid(schemas.changeSubscriptionBodyWire, body)
    }
    return http(client)
      .post(path, { ...options, json: body })
      .json()
      .then((data) => {
        if (client._options.validate) {
          assertValid(schemas.changeSubscriptionResponseWire, data)
        }
        return fromWire(data, schemas.changeSubscriptionResponse)
      })
  })
}

/**
 * Create a new subscription add-on
 *
 * Add add-on to a subscription.
 *
 * POST /openmeter/subscriptions/{subscriptionId}/addons
 */
export function createSubscriptionAddon(
  client: Client,
  req: CreateSubscriptionAddonRequest,
  options?: RequestOptions,
): Promise<Result<CreateSubscriptionAddonResponse>> {
  return request(() => {
    const pathParamsInput = {
      subscriptionId: req.subscriptionId,
    }
    const pathParams = client._options.validate
      ? toPathWire(pathParamsInput, schemas.createSubscriptionAddonPathParams)
      : pathParamsInput
    if (client._options.validate) {
      assertValid(schemas.createSubscriptionAddonPathParamsWire, pathParams)
    }
    const path = `openmeter/subscriptions/${(() => {
      if (pathParams.subscriptionId === undefined) {
        throw new Error('missing path parameter: subscriptionId')
      }
      return encodeURIComponent(String(pathParams.subscriptionId))
    })()}/addons`
    const body = toWire(req.body, schemas.createSubscriptionAddonBody)
    if (client._options.validate) {
      assertValid(schemas.createSubscriptionAddonBodyWire, body)
    }
    return http(client)
      .post(path, { ...options, json: body })
      .json()
      .then((data) => {
        if (client._options.validate) {
          assertValid(schemas.createSubscriptionAddonResponseWire, data)
        }
        return fromWire(data, schemas.createSubscriptionAddonResponse)
      })
  })
}

/**
 * List subscription addons
 *
 * List the add-ons of a subscription.
 *
 * GET /openmeter/subscriptions/{subscriptionId}/addons
 */
export function listSubscriptionAddons(
  client: Client,
  req: ListSubscriptionAddonsRequest,
  options?: RequestOptions,
): Promise<Result<ListSubscriptionAddonsResponse>> {
  return request(() => {
    const pathParamsInput = {
      subscriptionId: req.subscriptionId,
    }
    const pathParams = client._options.validate
      ? toPathWire(pathParamsInput, schemas.listSubscriptionAddonsPathParams)
      : pathParamsInput
    if (client._options.validate) {
      assertValid(schemas.listSubscriptionAddonsPathParamsWire, pathParams)
    }
    const path = `openmeter/subscriptions/${(() => {
      if (pathParams.subscriptionId === undefined) {
        throw new Error('missing path parameter: subscriptionId')
      }
      return encodeURIComponent(String(pathParams.subscriptionId))
    })()}/addons`
    if (client._options.validate && req.sort !== undefined) {
      assertValid(
        schemas.listSubscriptionAddonsQueryParams.shape.sort,
        req.sort,
      )
    }
    const query = toWire(
      {
        page: req.page,
        sort: encodeSort(req.sort, toSnakeCase),
      },
      schemas.listSubscriptionAddonsQueryParams,
    )
    if (client._options.validate) {
      assertValid(schemas.listSubscriptionAddonsQueryParamsWire, query)
    }
    const searchParams = toURLSearchParams(query)
    return http(client)
      .get(path, { ...options, searchParams })
      .json()
      .then((data) => {
        if (client._options.validate) {
          assertValid(schemas.listSubscriptionAddonsResponseWire, data)
        }
        return fromWire(data, schemas.listSubscriptionAddonsResponse)
      })
  })
}

/**
 * Get add-on association for subscription
 *
 * Get an add-on association for a subscription.
 *
 * GET /openmeter/subscriptions/{subscriptionId}/addons/{subscriptionAddonId}
 */
export function getSubscriptionAddon(
  client: Client,
  req: GetSubscriptionAddonRequest,
  options?: RequestOptions,
): Promise<Result<GetSubscriptionAddonResponse>> {
  return request(() => {
    const pathParamsInput = {
      subscriptionId: req.subscriptionId,
      subscriptionAddonId: req.subscriptionAddonId,
    }
    const pathParams = client._options.validate
      ? toPathWire(pathParamsInput, schemas.getSubscriptionAddonPathParams)
      : pathParamsInput
    if (client._options.validate) {
      assertValid(schemas.getSubscriptionAddonPathParamsWire, pathParams)
    }
    const path = `openmeter/subscriptions/${(() => {
      if (pathParams.subscriptionId === undefined) {
        throw new Error('missing path parameter: subscriptionId')
      }
      return encodeURIComponent(String(pathParams.subscriptionId))
    })()}/addons/${(() => {
      if (pathParams.subscriptionAddonId === undefined) {
        throw new Error('missing path parameter: subscriptionAddonId')
      }
      return encodeURIComponent(String(pathParams.subscriptionAddonId))
    })()}`
    return http(client)
      .get(path, options)
      .json()
      .then((data) => {
        if (client._options.validate) {
          assertValid(schemas.getSubscriptionAddonResponseWire, data)
        }
        return fromWire(data, schemas.getSubscriptionAddonResponse)
      })
  })
}