squarefi-bff-api-module 1.36.24 → 1.36.25
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -1186,7 +1186,7 @@ export declare namespace API {
|
|
|
1186
1186
|
};
|
|
1187
1187
|
interface OrderInfo {
|
|
1188
1188
|
id: string;
|
|
1189
|
-
transaction_type: string;
|
|
1189
|
+
transaction_type: string | null;
|
|
1190
1190
|
description: string | null;
|
|
1191
1191
|
direction: 'deposit' | 'withdrawal';
|
|
1192
1192
|
is_internal: boolean;
|
|
@@ -1519,7 +1519,7 @@ export declare namespace API {
|
|
|
1519
1519
|
};
|
|
1520
1520
|
interface OrderInfo {
|
|
1521
1521
|
id: OrderType | string;
|
|
1522
|
-
transaction_type: string;
|
|
1522
|
+
transaction_type: string | null;
|
|
1523
1523
|
description: string | null;
|
|
1524
1524
|
direction: string | null;
|
|
1525
1525
|
is_internal: boolean;
|