@connectedxm/client 1.0.26 → 1.0.27
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 +2 -0
- package/dist/index.d.ts +2 -0
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -82,6 +82,7 @@ interface BaseOrganization {
|
|
|
82
82
|
iconId: string | null;
|
|
83
83
|
darkIcon: BaseImage | null;
|
|
84
84
|
darkIconId: string | null;
|
|
85
|
+
locale: string;
|
|
85
86
|
}
|
|
86
87
|
declare enum Currency {
|
|
87
88
|
USD = "USD"
|
|
@@ -183,6 +184,7 @@ interface Self extends Account {
|
|
|
183
184
|
zip: string | null;
|
|
184
185
|
shareCode: string;
|
|
185
186
|
chatToken?: string;
|
|
187
|
+
locale: string;
|
|
186
188
|
}
|
|
187
189
|
declare const isSelf: (account: Self | Account | BaseAccount) => account is Self;
|
|
188
190
|
interface AccountShare extends Account {
|
package/dist/index.d.ts
CHANGED
|
@@ -82,6 +82,7 @@ interface BaseOrganization {
|
|
|
82
82
|
iconId: string | null;
|
|
83
83
|
darkIcon: BaseImage | null;
|
|
84
84
|
darkIconId: string | null;
|
|
85
|
+
locale: string;
|
|
85
86
|
}
|
|
86
87
|
declare enum Currency {
|
|
87
88
|
USD = "USD"
|
|
@@ -183,6 +184,7 @@ interface Self extends Account {
|
|
|
183
184
|
zip: string | null;
|
|
184
185
|
shareCode: string;
|
|
185
186
|
chatToken?: string;
|
|
187
|
+
locale: string;
|
|
186
188
|
}
|
|
187
189
|
declare const isSelf: (account: Self | Account | BaseAccount) => account is Self;
|
|
188
190
|
interface AccountShare extends Account {
|