Skip to content

Commit 7ed185a

Browse files
stainless-app[bot]DannyNemer
authored andcommitted
feat(api): api update
1 parent cd73ab4 commit 7ed185a

File tree

6 files changed

+7
-7
lines changed

6 files changed

+7
-7
lines changed

.stats.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
configured_endpoints: 214
2-
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/conductor%2Fconductor-f8d9e00d7adc3c21b88335dd97f0b51b3aba6353f3f1fc8573471bd089136919.yml
3-
openapi_spec_hash: c1226090989a9fec0fa5c42172c7795e
2+
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/conductor%2Fconductor-269f484d3ad2ea4c09beeacf8b5159c786068460b5f156d7b3e1647bb9993ff5.yml
3+
openapi_spec_hash: 2f930e7cac563199f52029f4bd91bd95
44
config_hash: 44c55bf265a64ed4b3e8ecfc360b1037

src/resources/qbd/credit-memos.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -352,7 +352,7 @@ export interface CreditMemo {
352352
* The total amount of sales tax charged for this credit memo, represented as a
353353
* decimal string.
354354
*/
355-
salesTaxTotal: string;
355+
salesTaxTotal: string | null;
356356

357357
/**
358358
* The origin location from where the product associated with this credit memo is

src/resources/qbd/estimates.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -317,7 +317,7 @@ export interface Estimate {
317317
* The total amount of sales tax charged for this estimate, represented as a
318318
* decimal string.
319319
*/
320-
salesTaxTotal: string;
320+
salesTaxTotal: string | null;
321321

322322
/**
323323
* The origin location from where the product associated with this estimate is

src/resources/qbd/invoices.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -374,7 +374,7 @@ export interface Invoice {
374374
* The total amount of sales tax charged for this invoice, represented as a decimal
375375
* string.
376376
*/
377-
salesTaxTotal: string;
377+
salesTaxTotal: string | null;
378378

379379
/**
380380
* The origin location from where the product associated with this invoice is

src/resources/qbd/sales-orders.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -350,7 +350,7 @@ export interface SalesOrder {
350350
* The total amount of sales tax charged for this sales order, represented as a
351351
* decimal string.
352352
*/
353-
salesTaxTotal: string;
353+
salesTaxTotal: string | null;
354354

355355
/**
356356
* The origin location from where the product associated with this sales order is

src/resources/qbd/sales-receipts.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -356,7 +356,7 @@ export interface SalesReceipt {
356356
* The total amount of sales tax charged for this sales receipt, represented as a
357357
* decimal string.
358358
*/
359-
salesTaxTotal: string;
359+
salesTaxTotal: string | null;
360360

361361
/**
362362
* The origin location from where the product associated with this sales receipt is

0 commit comments

Comments
 (0)