@connectedxm/admin 1.0.10 → 1.0.11
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/index.d.mts +3 -0
- package/dist/index.d.ts +3 -0
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -226,6 +226,7 @@ interface BaseAccount {
|
|
|
226
226
|
timezone: string | null;
|
|
227
227
|
internalRefId: string | null;
|
|
228
228
|
accountTiers: BaseTier[];
|
|
229
|
+
locale: string;
|
|
229
230
|
subscriptions: {
|
|
230
231
|
subscriptionProduct: {
|
|
231
232
|
tiers: BaseTier[];
|
|
@@ -2364,6 +2365,7 @@ interface AccountCreateInputs {
|
|
|
2364
2365
|
zip?: string | null;
|
|
2365
2366
|
internalRefId?: string | null;
|
|
2366
2367
|
verified?: boolean;
|
|
2368
|
+
locale?: string | null;
|
|
2367
2369
|
}
|
|
2368
2370
|
interface AccountUpdateInputs {
|
|
2369
2371
|
accountType?: keyof typeof AccountType | null;
|
|
@@ -2395,6 +2397,7 @@ interface AccountUpdateInputs {
|
|
|
2395
2397
|
zip?: string | null;
|
|
2396
2398
|
internalRefId?: string | null;
|
|
2397
2399
|
verified?: boolean;
|
|
2400
|
+
locale?: string | null;
|
|
2398
2401
|
}
|
|
2399
2402
|
interface ImportCreateInputs {
|
|
2400
2403
|
values?: {
|
package/dist/index.d.ts
CHANGED
|
@@ -226,6 +226,7 @@ interface BaseAccount {
|
|
|
226
226
|
timezone: string | null;
|
|
227
227
|
internalRefId: string | null;
|
|
228
228
|
accountTiers: BaseTier[];
|
|
229
|
+
locale: string;
|
|
229
230
|
subscriptions: {
|
|
230
231
|
subscriptionProduct: {
|
|
231
232
|
tiers: BaseTier[];
|
|
@@ -2364,6 +2365,7 @@ interface AccountCreateInputs {
|
|
|
2364
2365
|
zip?: string | null;
|
|
2365
2366
|
internalRefId?: string | null;
|
|
2366
2367
|
verified?: boolean;
|
|
2368
|
+
locale?: string | null;
|
|
2367
2369
|
}
|
|
2368
2370
|
interface AccountUpdateInputs {
|
|
2369
2371
|
accountType?: keyof typeof AccountType | null;
|
|
@@ -2395,6 +2397,7 @@ interface AccountUpdateInputs {
|
|
|
2395
2397
|
zip?: string | null;
|
|
2396
2398
|
internalRefId?: string | null;
|
|
2397
2399
|
verified?: boolean;
|
|
2400
|
+
locale?: string | null;
|
|
2398
2401
|
}
|
|
2399
2402
|
interface ImportCreateInputs {
|
|
2400
2403
|
values?: {
|