@dc-qash/sdk 1.3.0 → 1.3.1
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.
- package/dist/lib.d.ts +2 -2
- package/package.json +1 -1
package/dist/lib.d.ts
CHANGED
|
@@ -36,10 +36,10 @@ export type BaseAccount = {
|
|
|
36
36
|
created_at: number;
|
|
37
37
|
closed_at: number | null;
|
|
38
38
|
};
|
|
39
|
-
export type CheckingAccount = {
|
|
39
|
+
export type CheckingAccount = BaseAccount & {
|
|
40
40
|
type: "checking_account";
|
|
41
41
|
};
|
|
42
|
-
export type PartnerSettlementAccount = {
|
|
42
|
+
export type PartnerSettlementAccount = BaseAccount & {
|
|
43
43
|
type: "partner_settlement";
|
|
44
44
|
};
|
|
45
45
|
export type Account = CheckingAccount | PartnerSettlementAccount;
|