Skip to content

Commit

Permalink
clients/web: update OpenAPI client
Browse files Browse the repository at this point in the history
  • Loading branch information
frankie567 committed May 16, 2024
1 parent c68964c commit 0baa2bf
Showing 1 changed file with 21 additions and 27 deletions.
48 changes: 21 additions & 27 deletions clients/packages/sdk/src/client/models/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -10123,16 +10123,10 @@ export interface Transaction {
issue_reward?: TransactionIssueReward;
/**
*
* @type {TransactionSubscription}
* @type {TransactionSale}
* @memberof Transaction
*/
subscription?: TransactionSubscription;
/**
*
* @type {TransactionProductPrice}
* @memberof Transaction
*/
product_price?: TransactionProductPrice;
sale?: TransactionSale;
/**
*
* @type {TransactionDonation}
Expand Down Expand Up @@ -10280,16 +10274,10 @@ export interface TransactionDetails {
issue_reward?: TransactionIssueReward;
/**
*
* @type {TransactionSubscription}
* @type {TransactionSale}
* @memberof TransactionDetails
*/
subscription?: TransactionSubscription;
/**
*
* @type {TransactionProductPrice}
* @memberof TransactionDetails
*/
product_price?: TransactionProductPrice;
sale?: TransactionSale;
/**
*
* @type {TransactionDonation}
Expand Down Expand Up @@ -10801,39 +10789,45 @@ export interface TransactionRepository {
/**
*
* @export
* @interface TransactionSubscription
* @interface TransactionSale
*/
export interface TransactionSubscription {
export interface TransactionSale {
/**
* Creation timestamp of the object.
* @type {string}
* @memberof TransactionSubscription
* @memberof TransactionSale
*/
created_at: string;
/**
*
* @type {string}
* @memberof TransactionSubscription
* @memberof TransactionSale
*/
modified_at?: string;
/**
*
* @type {string}
* @memberof TransactionSubscription
* @memberof TransactionSale
*/
id: string;
/**
*
* @type {SubscriptionStatus}
* @memberof TransactionSubscription
* @type {TransactionProduct}
* @memberof TransactionSale
*/
status: SubscriptionStatus;
product: TransactionProduct;
/**
*
* @type {TransactionProduct}
* @memberof TransactionSubscription
* @type {TransactionProductPrice}
* @memberof TransactionSale
*/
product: TransactionProduct;
product_price: TransactionProductPrice;
/**
*
* @type {string}
* @memberof TransactionSale
*/
subscription_id?: string;
}

/**
Expand Down

0 comments on commit 0baa2bf

Please sign in to comment.