Skip to content

Commit 9795e8d

Browse files
chore(internal): codegen related update
1 parent 30d5736 commit 9795e8d

File tree

2 files changed

+3
-0
lines changed

2 files changed

+3
-0
lines changed

src/resources/invoices.ts

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1465,6 +1465,8 @@ export interface InvoiceListSummaryParams extends PageParams {
14651465

14661466
status?: 'draft' | 'issued' | 'paid' | 'synced' | 'void' | null;
14671467

1468+
status?: Array<'draft' | 'issued' | 'paid' | 'synced' | 'void'> | null;
1469+
14681470
subscription_id?: string | null;
14691471
}
14701472

tests/api-resources/invoices.test.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -248,6 +248,7 @@ describe('resource invoices', () => {
248248
is_recurring: true,
249249
limit: 1,
250250
status: 'draft',
251+
status: ['draft'],
251252
subscription_id: 'subscription_id',
252253
},
253254
{ path: '/_stainless_unknown_path' },

0 commit comments

Comments
 (0)