Skip to content

Commit

Permalink
Codegen for openapi 9458a29
Browse files Browse the repository at this point in the history
  • Loading branch information
richardm-stripe committed Mar 31, 2021
1 parent 0070286 commit 4fba46e
Show file tree
Hide file tree
Showing 6 changed files with 118 additions and 14 deletions.
87 changes: 87 additions & 0 deletions types/2020-08-27/Accounts.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -607,6 +607,8 @@ declare module 'stripe' {

branding: Settings.Branding;

card_issuing?: Settings.CardIssuing;

card_payments: Settings.CardPayments;

dashboard: Settings.Dashboard;
Expand Down Expand Up @@ -648,6 +650,29 @@ declare module 'stripe' {
secondary_color: string | null;
}

interface CardIssuing {
tos_acceptance?: CardIssuing.TosAcceptance;
}

namespace CardIssuing {
interface TosAcceptance {
/**
* The Unix timestamp marking when the account representative accepted the service agreement.
*/
date: number | null;

/**
* The IP address from which the account representative accepted the service agreement.
*/
ip: string | null;

/**
* The user agent of the browser from which the account representative accepted the service agreement.
*/
user_agent?: string;
}
}

interface CardPayments {
decline_on?: CardPayments.DeclineOn;

Expand Down Expand Up @@ -1638,6 +1663,11 @@ declare module 'stripe' {
*/
branding?: Settings.Branding;

/**
* Settings specific to the account's use of the Card Issuing product.
*/
card_issuing?: Settings.CardIssuing;

/**
* Settings specific to card charging on the account.
*/
Expand Down Expand Up @@ -1677,6 +1707,32 @@ declare module 'stripe' {
secondary_color?: string;
}

interface CardIssuing {
/**
* Details on the account's acceptance of the [Stripe Issuing Terms and Disclosures](stripe.com/docs/issuing/connect/tos_acceptance).
*/
tos_acceptance?: CardIssuing.TosAcceptance;
}

namespace CardIssuing {
interface TosAcceptance {
/**
* The Unix timestamp marking when the account representative accepted the service agreement.
*/
date?: number;

/**
* The IP address from which the account representative accepted the service agreement.
*/
ip?: string;

/**
* The user agent of the browser from which the account representative accepted the service agreement.
*/
user_agent?: string;
}
}

interface CardPayments {
/**
* Automatically declines certain charge types regardless of whether the card issuer accepted or declined the charge.
Expand Down Expand Up @@ -2651,6 +2707,11 @@ declare module 'stripe' {
*/
branding?: Settings.Branding;

/**
* Settings specific to the account's use of the Card Issuing product.
*/
card_issuing?: Settings.CardIssuing;

/**
* Settings specific to card charging on the account.
*/
Expand Down Expand Up @@ -2690,6 +2751,32 @@ declare module 'stripe' {
secondary_color?: string;
}

interface CardIssuing {
/**
* Details on the account's acceptance of the [Stripe Issuing Terms and Disclosures](stripe.com/docs/issuing/connect/tos_acceptance).
*/
tos_acceptance?: CardIssuing.TosAcceptance;
}

namespace CardIssuing {
interface TosAcceptance {
/**
* The Unix timestamp marking when the account representative accepted the service agreement.
*/
date?: number;

/**
* The IP address from which the account representative accepted the service agreement.
*/
ip?: string;

/**
* The user agent of the browser from which the account representative accepted the service agreement.
*/
user_agent?: string;
}
}

interface CardPayments {
/**
* Automatically declines certain charge types regardless of whether the card issuer accepted or declined the charge.
Expand Down
25 changes: 21 additions & 4 deletions types/2020-08-27/Checkout/Sessions.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -693,10 +693,10 @@ declare module 'stripe' {

/**
* A list of items the customer is purchasing. Use this parameter to pass one-time or recurring [Prices](https://stripe.com/docs/api/prices).
* One-time Prices in `subscription` mode will be on the initial invoice only.
*
* There is a maximum of 100 line items, however it is recommended to
* consolidate line items if there are more than a few dozen.
* For `payment` mode, there is a maximum of 100 line items, however it is recommended to consolidate line items if there are more than a few dozen.
*
* For `subscription` mode, there is a maximum of 20 line items with recurring Prices and 20 line items with one-time Prices. Line items with one-time Prices in will be on the initial invoice only.
*/
line_items?: Array<SessionCreateParams.LineItem>;

Expand Down Expand Up @@ -993,7 +993,7 @@ declare module 'stripe' {
receipt_email?: string;

/**
* Indicates that you intend to make future payments with the payment
* Indicates that you intend to [make future payments](https://stripe.com/docs/payments/payment-intents#future-usage) with the payment
* method collected by this Checkout Session.
*
* When setting this to `on_session`, Checkout will show a notice to the
Expand Down Expand Up @@ -1402,6 +1402,11 @@ declare module 'stripe' {
*/
metadata?: Stripe.MetadataParam;

/**
* If specified, the funds from the subscription's invoices will be transferred to the destination and the ID of the resulting transfers will be found on the resulting charges.
*/
transfer_data?: SubscriptionData.TransferData;

/**
* Unix timestamp representing the end of the trial period the customer
* will get before being charged for the first time. Has to be at least
Expand Down Expand Up @@ -1439,6 +1444,18 @@ declare module 'stripe' {
*/
tax_rates?: Array<string>;
}

interface TransferData {
/**
* A non-negative decimal between 0 and 100, with at most two decimal places. This represents the percentage of the subscription invoice subtotal that will be transferred to the destination account. By default, the entire amount is transferred to the destination.
*/
amount_percent?: number;

/**
* ID of an existing, connected Stripe account.
*/
destination: string;
}
}
}

Expand Down
8 changes: 4 additions & 4 deletions types/2020-08-27/Reporting/ReportRuns.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ declare module 'stripe' {
error: string | null;

/**
* Always `true`: reports can only be run on live-mode data.
* `true` if the report is run on live mode data and `false` if it is run on test mode data.
*/
livemode: boolean;

Expand Down Expand Up @@ -817,15 +817,15 @@ declare module 'stripe' {

class ReportRunsResource {
/**
* Creates a new object and begin running the report. (Requires a [live-mode API key](https://stripe.com/docs/keys#test-live-modes).)
* Creates a new object and begin running the report. (Certain report types require a [live-mode API key](https://stripe.com/docs/keys#test-live-modes).)
*/
create(
params: ReportRunCreateParams,
options?: RequestOptions
): Promise<Stripe.Response<Stripe.Reporting.ReportRun>>;

/**
* Retrieves the details of an existing Report Run. (Requires a [live-mode API key](https://stripe.com/docs/keys#test-live-modes).)
* Retrieves the details of an existing Report Run.
*/
retrieve(
id: string,
Expand All @@ -838,7 +838,7 @@ declare module 'stripe' {
): Promise<Stripe.Response<Stripe.Reporting.ReportRun>>;

/**
* Returns a list of Report Runs, with the most recent appearing first. (Requires a [live-mode API key](https://stripe.com/docs/keys#test-live-modes).)
* Returns a list of Report Runs, with the most recent appearing first.
*/
list(
params?: ReportRunListParams,
Expand Down
4 changes: 2 additions & 2 deletions types/2020-08-27/Reporting/ReportTypes.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ declare module 'stripe' {

class ReportTypesResource {
/**
* Retrieves the details of a Report Type. (Requires a [live-mode API key](https://stripe.com/docs/keys#test-live-modes).)
* Retrieves the details of a Report Type. (Certain report types require a [live-mode API key](https://stripe.com/docs/keys#test-live-modes).)
*/
retrieve(
id: string,
Expand All @@ -77,7 +77,7 @@ declare module 'stripe' {
): Promise<Stripe.Response<Stripe.Reporting.ReportType>>;

/**
* Returns a full list of Report Types. (Requires a [live-mode API key](https://stripe.com/docs/keys#test-live-modes).)
* Returns a full list of Report Types.
*/
list(
params?: ReportTypeListParams,
Expand Down
4 changes: 2 additions & 2 deletions types/2020-08-27/SubscriptionSchedules.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -476,7 +476,7 @@ declare module 'stripe' {

interface Phase {
/**
* A list of prices and quantities that will generate invoice items appended to the next invoice. You may pass up to 10 items.
* A list of prices and quantities that will generate invoice items appended to the next invoice. You may pass up to 20 items.
*/
add_invoice_items?: Array<Phase.AddInvoiceItem>;

Expand Down Expand Up @@ -851,7 +851,7 @@ declare module 'stripe' {

interface Phase {
/**
* A list of prices and quantities that will generate invoice items appended to the next invoice. You may pass up to 10 items.
* A list of prices and quantities that will generate invoice items appended to the next invoice. You may pass up to 20 items.
*/
add_invoice_items?: Array<Phase.AddInvoiceItem>;

Expand Down
4 changes: 2 additions & 2 deletions types/2020-08-27/Subscriptions.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -288,7 +288,7 @@ declare module 'stripe' {
customer: string;

/**
* A list of prices and quantities that will generate invoice items appended to the first invoice for this subscription. You may pass up to 10 items.
* A list of prices and quantities that will generate invoice items appended to the first invoice for this subscription. You may pass up to 20 items.
*/
add_invoice_items?: Array<SubscriptionCreateParams.AddInvoiceItem>;

Expand Down Expand Up @@ -620,7 +620,7 @@ declare module 'stripe' {

interface SubscriptionUpdateParams {
/**
* A list of prices and quantities that will generate invoice items appended to the first invoice for this subscription. You may pass up to 10 items.
* A list of prices and quantities that will generate invoice items appended to the first invoice for this subscription. You may pass up to 20 items.
*/
add_invoice_items?: Array<SubscriptionUpdateParams.AddInvoiceItem>;

Expand Down

0 comments on commit 4fba46e

Please sign in to comment.