@connectedxm/client 6.2.2 → 6.2.4
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 +7 -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;
|
|
@@ -1216,6 +1217,9 @@ interface Registration extends BaseRegistration {
|
|
|
1216
1217
|
payments: Payment[];
|
|
1217
1218
|
coupons: ManagedCoupon[];
|
|
1218
1219
|
createdAt: string;
|
|
1220
|
+
_count: {
|
|
1221
|
+
fromTransferLogs: number;
|
|
1222
|
+
};
|
|
1219
1223
|
}
|
|
1220
1224
|
interface ListingRegistration extends BaseRegistration {
|
|
1221
1225
|
event: RegistrationEventDetails;
|
|
@@ -1932,6 +1936,7 @@ interface OrganizationConfig {
|
|
|
1932
1936
|
ADAPTIVE_ICON: string | null;
|
|
1933
1937
|
SPLASH_SCREEN: string | null;
|
|
1934
1938
|
SPLASH_SCREEN_COLOR: string;
|
|
1939
|
+
INTERNAL_REF_ID_NAME: string;
|
|
1935
1940
|
DEFAULT_LOCALE: string;
|
|
1936
1941
|
LOCALES: string[];
|
|
1937
1942
|
LANGUAGES: Partial<Record<string, Record<string, string>>>;
|
|
@@ -1947,6 +1952,7 @@ interface OrganizationConfig {
|
|
|
1947
1952
|
PHONE: boolean;
|
|
1948
1953
|
TITLE: boolean;
|
|
1949
1954
|
COMPANY: boolean;
|
|
1955
|
+
INTERNAL_REF_ID: boolean;
|
|
1950
1956
|
};
|
|
1951
1957
|
};
|
|
1952
1958
|
MODULES: Record<keyof typeof OrganizationModuleType, OrganizationModule>;
|
|
@@ -3657,6 +3663,7 @@ interface CreateLoginAccountAccount {
|
|
|
3657
3663
|
phone?: string;
|
|
3658
3664
|
title?: string;
|
|
3659
3665
|
company?: string;
|
|
3666
|
+
internalRefId?: string;
|
|
3660
3667
|
bio?: string;
|
|
3661
3668
|
website?: string;
|
|
3662
3669
|
video?: string;
|