Skip to content

Commit a1c1a68

Browse files
Snailedlpinca
authored andcommittedDec 13, 2021
[ts] Fix source_order_id and source_order_transaction_id types (#521)
Fixes: #520
1 parent 6bcdeb7 commit a1c1a68

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed
 

‎index.d.ts

+2-2
Original file line numberDiff line numberDiff line change
@@ -1077,8 +1077,8 @@ declare namespace Shopify {
10771077
net: string;
10781078
source_id: number;
10791079
source_type: BalanceTransactionSourceType;
1080-
source_order_transaction_id: number;
1081-
source_order_id: number;
1080+
source_order_transaction_id: number | null;
1081+
source_order_id: number | null;
10821082
processed_at: string;
10831083
}
10841084

0 commit comments

Comments
 (0)
Please sign in to comment.