Skip to content

Commit

Permalink
feat: sent to customer at field (#2182)
Browse files Browse the repository at this point in the history
  • Loading branch information
turip authored Jan 31, 2025
1 parent 627173e commit 064237e
Show file tree
Hide file tree
Showing 25 changed files with 2,460 additions and 2,066 deletions.
1,074 changes: 539 additions & 535 deletions api/api.gen.go

Large diffs are not rendered by default.

1,098 changes: 551 additions & 547 deletions api/client/go/client.gen.go

Large diffs are not rendered by default.

26 changes: 22 additions & 4 deletions api/client/javascript/src/client/schemas.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4086,6 +4086,12 @@ export interface components {
* @example 2023-01-01T01:01:01.001Z
*/
readonly voidedAt?: Date
/**
* Format: date-time
* @description The time the invoice was sent to customer.
* @example 2023-01-01T01:01:01.001Z
*/
readonly sentToCustomerAt?: Date
/** @description The workflow associated with the invoice.
*
* It is always a snapshot of the workflow settings at the time of invoice creation. The
Expand Down Expand Up @@ -6247,7 +6253,11 @@ export interface components {
* Price
* @description The price of the rate card.
* When null, the feature or service is free.
* @example {}
* @example {
* "type": "flat",
* "amount": "100",
* "paymentTerm": "in_arrears"
* }
*/
price: components['schemas']['FlatPriceWithPaymentTerm'] | null
}
Expand Down Expand Up @@ -6773,7 +6783,9 @@ export interface components {
* @example Customer Name
*/
displayName?: string | null
/** @example {} */
/** @example {
* "hubspotId": "123456"
* } */
metadata?: {
[key: string]: unknown
} | null
Expand Down Expand Up @@ -6816,7 +6828,9 @@ export interface components {
* @example Customer Name
*/
displayName?: string | null
/** @example {} */
/** @example {
* "hubspotId": "123456"
* } */
metadata?: {
[key: string]: unknown
} | null
Expand Down Expand Up @@ -7089,7 +7103,11 @@ export interface components {
* Price
* @description The price of the rate card.
* When null, the feature or service is free.
* @example {}
* @example {
* "type": "flat",
* "amount": "100",
* "paymentTerm": "in_arrears"
* }
*/
price:
| (components['schemas']['FlatPriceWithPaymentTerm'] | null)
Expand Down
Loading

0 comments on commit 064237e

Please sign in to comment.