@connectedxm/client 6.2.2 → 6.2.3
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.ts +4 -0
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -194,6 +194,7 @@ interface Self extends Omit<Account, "_count"> {
|
|
|
194
194
|
chatToken?: string;
|
|
195
195
|
locale: string;
|
|
196
196
|
termsAccepted: string | null;
|
|
197
|
+
internalRefId: string | null;
|
|
197
198
|
_count: {
|
|
198
199
|
chatChannels: number;
|
|
199
200
|
notifications: number;
|
|
@@ -1932,6 +1933,7 @@ interface OrganizationConfig {
|
|
|
1932
1933
|
ADAPTIVE_ICON: string | null;
|
|
1933
1934
|
SPLASH_SCREEN: string | null;
|
|
1934
1935
|
SPLASH_SCREEN_COLOR: string;
|
|
1936
|
+
INTERNAL_REF_ID_NAME: string;
|
|
1935
1937
|
DEFAULT_LOCALE: string;
|
|
1936
1938
|
LOCALES: string[];
|
|
1937
1939
|
LANGUAGES: Partial<Record<string, Record<string, string>>>;
|
|
@@ -1947,6 +1949,7 @@ interface OrganizationConfig {
|
|
|
1947
1949
|
PHONE: boolean;
|
|
1948
1950
|
TITLE: boolean;
|
|
1949
1951
|
COMPANY: boolean;
|
|
1952
|
+
INTERNAL_REF_ID: boolean;
|
|
1950
1953
|
};
|
|
1951
1954
|
};
|
|
1952
1955
|
MODULES: Record<keyof typeof OrganizationModuleType, OrganizationModule>;
|
|
@@ -3657,6 +3660,7 @@ interface CreateLoginAccountAccount {
|
|
|
3657
3660
|
phone?: string;
|
|
3658
3661
|
title?: string;
|
|
3659
3662
|
company?: string;
|
|
3663
|
+
internalRefId?: string;
|
|
3660
3664
|
bio?: string;
|
|
3661
3665
|
website?: string;
|
|
3662
3666
|
video?: string;
|