File size: 15,378 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 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 | // Code generated by @openmeter/typespec-typescript. DO NOT EDIT.
import { type Client } from '../core.js'
import { unwrap, type RequestOptions } from '../lib/types.js'
import { paginateCursor, paginatePages } from '../lib/paginate.js'
import {
createCustomer,
getCustomer,
listCustomers,
upsertCustomer,
deleteCustomer,
getCustomerBilling,
updateCustomerBilling,
updateCustomerBillingAppData,
createCustomerStripeCheckoutSession,
createCustomerStripePortalSession,
createCreditGrant,
getCreditGrant,
listCreditGrants,
getCustomerCreditBalance,
createCreditAdjustment,
voidCreditGrant,
updateCreditGrantExternalSettlement,
listCreditTransactions,
listCustomerCharges,
createCustomerCharges,
} from '../funcs/customers.js'
import type {
CreateCustomerRequest,
CreateCustomerResponse,
GetCustomerRequest,
GetCustomerResponse,
ListCustomersRequest,
ListCustomersResponse,
UpsertCustomerRequest,
UpsertCustomerResponse,
DeleteCustomerRequest,
DeleteCustomerResponse,
GetCustomerBillingRequest,
GetCustomerBillingResponse,
UpdateCustomerBillingRequest,
UpdateCustomerBillingResponse,
UpdateCustomerBillingAppDataRequest,
UpdateCustomerBillingAppDataResponse,
CreateCustomerStripeCheckoutSessionRequest,
CreateCustomerStripeCheckoutSessionResponse,
CreateCustomerStripePortalSessionRequest,
CreateCustomerStripePortalSessionResponse,
CreateCreditGrantRequest,
CreateCreditGrantResponse,
GetCreditGrantRequest,
GetCreditGrantResponse,
ListCreditGrantsRequest,
ListCreditGrantsResponse,
GetCustomerCreditBalanceRequest,
GetCustomerCreditBalanceResponse,
CreateCreditAdjustmentRequest,
CreateCreditAdjustmentResponse,
VoidCreditGrantRequest,
VoidCreditGrantResponse,
UpdateCreditGrantExternalSettlementRequest,
UpdateCreditGrantExternalSettlementResponse,
ListCreditTransactionsRequest,
ListCreditTransactionsResponse,
ListCustomerChargesRequest,
ListCustomerChargesResponse,
CreateCustomerChargesRequest,
CreateCustomerChargesResponse,
} from '../models/operations/customers.js'
import type {
Charge,
CreditGrant,
CreditTransaction,
Customer,
} from '../models/types.js'
export class Customers {
constructor(private readonly _client: Client) {}
/**
* Create customer
*
* POST /openmeter/customers
*/
async create(
request: CreateCustomerRequest,
options?: RequestOptions,
): Promise<CreateCustomerResponse> {
return unwrap(await createCustomer(this._client, request, options))
}
/**
* Get customer
*
* GET /openmeter/customers/{customerId}
*/
async get(
request: GetCustomerRequest,
options?: RequestOptions,
): Promise<GetCustomerResponse> {
return unwrap(await getCustomer(this._client, request, options))
}
/**
* List customers
*
* GET /openmeter/customers
*/
async list(
request?: ListCustomersRequest,
options?: RequestOptions,
): Promise<ListCustomersResponse> {
return unwrap(await listCustomers(this._client, request, options))
}
/**
* List customers
*
* Iterates every item across all pages, fetching more as the returned iterable is consumed.
*
* GET /openmeter/customers
*/
listAll(
request?: ListCustomersRequest,
options?: RequestOptions,
): AsyncIterable<Customer> {
return paginatePages(
(req, opts) => listCustomers(this._client, req, opts),
request ?? {},
options,
)
}
/**
* Upsert customer
*
* PUT /openmeter/customers/{customerId}
*/
async upsert(
request: UpsertCustomerRequest,
options?: RequestOptions,
): Promise<UpsertCustomerResponse> {
return unwrap(await upsertCustomer(this._client, request, options))
}
/**
* Delete customer
*
* DELETE /openmeter/customers/{customerId}
*/
async delete(
request: DeleteCustomerRequest,
options?: RequestOptions,
): Promise<DeleteCustomerResponse> {
return unwrap(await deleteCustomer(this._client, request, options))
}
private _billing?: CustomersBilling
get billing(): CustomersBilling {
return (this._billing ??= new CustomersBilling(this._client))
}
private _credits?: CustomersCredits
get credits(): CustomersCredits {
return (this._credits ??= new CustomersCredits(this._client))
}
private _charges?: CustomersCharges
get charges(): CustomersCharges {
return (this._charges ??= new CustomersCharges(this._client))
}
}
export class CustomersBilling {
constructor(private readonly _client: Client) {}
/**
* Get customer billing data
*
* GET /openmeter/customers/{customerId}/billing
*/
async get(
request: GetCustomerBillingRequest,
options?: RequestOptions,
): Promise<GetCustomerBillingResponse> {
return unwrap(await getCustomerBilling(this._client, request, options))
}
/**
* Update customer billing data
*
* PUT /openmeter/customers/{customerId}/billing
*/
async update(
request: UpdateCustomerBillingRequest,
options?: RequestOptions,
): Promise<UpdateCustomerBillingResponse> {
return unwrap(await updateCustomerBilling(this._client, request, options))
}
/**
* Update customer billing app data
*
* PUT /openmeter/customers/{customerId}/billing/app-data
*/
async updateAppData(
request: UpdateCustomerBillingAppDataRequest,
options?: RequestOptions,
): Promise<UpdateCustomerBillingAppDataResponse> {
return unwrap(
await updateCustomerBillingAppData(this._client, request, options),
)
}
/**
* Create Stripe Checkout Session
*
* Create a [Stripe Checkout Session](https://docs.stripe.com/payments/checkout)
* for the customer.
*
* Creates a Checkout Session for collecting payment method information from
* customers. The session operates in "setup" mode, which collects payment details
* without charging the customer immediately. The collected payment method can be
* used for future subscription billing.
*
* For hosted checkout sessions, redirect customers to the returned URL. For
* embedded sessions, use the client_secret to initialize Stripe.js in your
* application.
*
* POST /openmeter/customers/{customerId}/billing/stripe/checkout-sessions
*/
async createStripeCheckoutSession(
request: CreateCustomerStripeCheckoutSessionRequest,
options?: RequestOptions,
): Promise<CreateCustomerStripeCheckoutSessionResponse> {
return unwrap(
await createCustomerStripeCheckoutSession(this._client, request, options),
)
}
/**
* Create Stripe customer portal session
*
* Create Stripe Customer Portal Session.
*
* Useful to redirect the customer to the Stripe Customer Portal to manage their
* payment methods, change their billing address and access their invoice history.
* Only returns URL if the customer billing profile is linked to a stripe app and
* customer.
*
* POST /openmeter/customers/{customerId}/billing/stripe/portal-sessions
*/
async createStripePortalSession(
request: CreateCustomerStripePortalSessionRequest,
options?: RequestOptions,
): Promise<CreateCustomerStripePortalSessionResponse> {
return unwrap(
await createCustomerStripePortalSession(this._client, request, options),
)
}
}
export class CustomersCredits {
constructor(private readonly _client: Client) {}
private _grants?: CustomersCreditsGrants
get grants(): CustomersCreditsGrants {
return (this._grants ??= new CustomersCreditsGrants(this._client))
}
private _balance?: CustomersCreditsBalance
get balance(): CustomersCreditsBalance {
return (this._balance ??= new CustomersCreditsBalance(this._client))
}
private _adjustments?: CustomersCreditsAdjustments
get adjustments(): CustomersCreditsAdjustments {
return (this._adjustments ??= new CustomersCreditsAdjustments(this._client))
}
private _transactions?: CustomersCreditsTransactions
get transactions(): CustomersCreditsTransactions {
return (this._transactions ??= new CustomersCreditsTransactions(
this._client,
))
}
}
export class CustomersCreditsGrants {
constructor(private readonly _client: Client) {}
/**
* Create a new credit grant
*
* Create a new credit grant. A credit grant represents an allocation of prepaid
* credits to a customer.
*
* POST /openmeter/customers/{customerId}/credits/grants
*/
async create(
request: CreateCreditGrantRequest,
options?: RequestOptions,
): Promise<CreateCreditGrantResponse> {
return unwrap(await createCreditGrant(this._client, request, options))
}
/**
* Get a credit grant
*
* Get a credit grant.
*
* GET /openmeter/customers/{customerId}/credits/grants/{creditGrantId}
*/
async get(
request: GetCreditGrantRequest,
options?: RequestOptions,
): Promise<GetCreditGrantResponse> {
return unwrap(await getCreditGrant(this._client, request, options))
}
/**
* List credit grants
*
* List credit grants.
*
* GET /openmeter/customers/{customerId}/credits/grants
*/
async list(
request: ListCreditGrantsRequest,
options?: RequestOptions,
): Promise<ListCreditGrantsResponse> {
return unwrap(await listCreditGrants(this._client, request, options))
}
/**
* List credit grants
*
* List credit grants.
*
* Iterates every item across all pages, fetching more as the returned iterable is consumed.
*
* GET /openmeter/customers/{customerId}/credits/grants
*/
listAll(
request: ListCreditGrantsRequest,
options?: RequestOptions,
): AsyncIterable<CreditGrant> {
return paginatePages(
(req, opts) => listCreditGrants(this._client, req, opts),
request,
options,
)
}
/**
* Void credit grant
*
* Void a credit grant, forfeiting the remaining unused balance.
*
* Voiding is a forward-looking, irreversible operation. Credits already consumed
* by usage remain unaffected — only the remaining balance is forfeited. The grant
* reads as `voided` status afterwards. Payment state is not adjusted when
* `payment_adjustment` is `none`, so invoice-backed or externally collected
* payments may still collect the original amount. Only `active` grants can be
* voided; voiding a pending, expired, or fully consumed grant returns a conflict.
* Retrying a successful void is an idempotent success.
*
* POST /openmeter/customers/{customerId}/credits/grants/{creditGrantId}/void
*/
async void(
request: VoidCreditGrantRequest,
options?: RequestOptions,
): Promise<VoidCreditGrantResponse> {
return unwrap(await voidCreditGrant(this._client, request, options))
}
/**
* Update credit grant external settlement status
*
* Update the payment settlement status of an externally funded credit grant.
*
* Use this endpoint to synchronize the payment state of an external payment with
* the system so that revenue recognition and credit availability work as expected.
*
* POST /openmeter/customers/{customerId}/credits/grants/{creditGrantId}/settlement/external
*/
async updateExternalSettlement(
request: UpdateCreditGrantExternalSettlementRequest,
options?: RequestOptions,
): Promise<UpdateCreditGrantExternalSettlementResponse> {
return unwrap(
await updateCreditGrantExternalSettlement(this._client, request, options),
)
}
}
export class CustomersCreditsBalance {
constructor(private readonly _client: Client) {}
/**
* Get a customer's credit balance
*
* Get a credit balance.
*
* GET /openmeter/customers/{customerId}/credits/balance
*/
async get(
request: GetCustomerCreditBalanceRequest,
options?: RequestOptions,
): Promise<GetCustomerCreditBalanceResponse> {
return unwrap(
await getCustomerCreditBalance(this._client, request, options),
)
}
}
export class CustomersCreditsAdjustments {
constructor(private readonly _client: Client) {}
/**
* Create a credit adjustment
*
* A credit adjustment can be used to make manual adjustments to a customer's
* credit balance.
*
* Supported use-cases:
*
* - Usage correction
*
* POST /openmeter/customers/{customerId}/credits/adjustments
*/
async create(
request: CreateCreditAdjustmentRequest,
options?: RequestOptions,
): Promise<CreateCreditAdjustmentResponse> {
return unwrap(await createCreditAdjustment(this._client, request, options))
}
}
export class CustomersCreditsTransactions {
constructor(private readonly _client: Client) {}
/**
* List credit transactions
*
* List credit transactions for a customer.
*
* Returns an immutable, chronological record of credit movements: funded credits
* and consumed credits. Transactions are returned in reverse chronological order
* by default.
*
* GET /openmeter/customers/{customerId}/credits/transactions
*/
async list(
request: ListCreditTransactionsRequest,
options?: RequestOptions,
): Promise<ListCreditTransactionsResponse> {
return unwrap(await listCreditTransactions(this._client, request, options))
}
/**
* List credit transactions
*
* List credit transactions for a customer.
*
* Returns an immutable, chronological record of credit movements: funded credits
* and consumed credits. Transactions are returned in reverse chronological order
* by default.
*
* Iterates every item across all pages, fetching more as the returned iterable is consumed.
*
* GET /openmeter/customers/{customerId}/credits/transactions
*/
listAll(
request: ListCreditTransactionsRequest,
options?: RequestOptions,
): AsyncIterable<CreditTransaction> {
return paginateCursor(
(req, opts) => listCreditTransactions(this._client, req, opts),
request,
options,
)
}
}
export class CustomersCharges {
constructor(private readonly _client: Client) {}
/**
* List customer charges
*
* List customer charges.
*
* Returns the customer's charges that are represented as either flat fee or
* usage-based charges.
*
* GET /openmeter/customers/{customerId}/charges
*/
async list(
request: ListCustomerChargesRequest,
options?: RequestOptions,
): Promise<ListCustomerChargesResponse> {
return unwrap(await listCustomerCharges(this._client, request, options))
}
/**
* List customer charges
*
* List customer charges.
*
* Returns the customer's charges that are represented as either flat fee or
* usage-based charges.
*
* Iterates every item across all pages, fetching more as the returned iterable is consumed.
*
* GET /openmeter/customers/{customerId}/charges
*/
listAll(
request: ListCustomerChargesRequest,
options?: RequestOptions,
): AsyncIterable<Charge> {
return paginatePages(
(req, opts) => listCustomerCharges(this._client, req, opts),
request,
options,
)
}
/**
* Create customer charge
*
* Create customer charge.
*
* POST /openmeter/customers/{customerId}/charges
*/
async create(
request: CreateCustomerChargesRequest,
options?: RequestOptions,
): Promise<CreateCustomerChargesResponse> {
return unwrap(await createCustomerCharges(this._client, request, options))
}
}
|