@synsci/sdk 2.0.32 → 2.0.34
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.
|
@@ -2400,6 +2400,7 @@ export type AccountGetResponses = {
|
|
|
2400
2400
|
balance_cents: number;
|
|
2401
2401
|
balance_usd: number;
|
|
2402
2402
|
managed_supported: boolean;
|
|
2403
|
+
managed_unlocked: boolean;
|
|
2403
2404
|
} | null;
|
|
2404
2405
|
};
|
|
2405
2406
|
};
|
|
@@ -2469,6 +2470,7 @@ export type AccountBillingModeGetResponses = {
|
|
|
2469
2470
|
balance_cents: number;
|
|
2470
2471
|
balance_usd: number;
|
|
2471
2472
|
managed_supported: boolean;
|
|
2473
|
+
managed_unlocked: boolean;
|
|
2472
2474
|
} | null;
|
|
2473
2475
|
};
|
|
2474
2476
|
export type AccountBillingModeGetResponse = AccountBillingModeGetResponses[keyof AccountBillingModeGetResponses];
|
|
@@ -2489,6 +2491,7 @@ export type AccountBillingModeSetResponses = {
|
|
|
2489
2491
|
balance_cents: number;
|
|
2490
2492
|
balance_usd: number;
|
|
2491
2493
|
managed_supported: boolean;
|
|
2494
|
+
managed_unlocked: boolean;
|
|
2492
2495
|
} | null;
|
|
2493
2496
|
};
|
|
2494
2497
|
export type AccountBillingModeSetResponse = AccountBillingModeSetResponses[keyof AccountBillingModeSetResponses];
|