@connectedxm/client 6.4.8 → 6.5.0-beta.1
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 +0 -12
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -162,8 +162,6 @@ interface BaseAccount {
|
|
|
162
162
|
username: string;
|
|
163
163
|
firstName: string | null;
|
|
164
164
|
lastName: string | null;
|
|
165
|
-
title: string | null;
|
|
166
|
-
company: string | null;
|
|
167
165
|
image: BaseImage | null;
|
|
168
166
|
accountTiers: BaseAccountTier[];
|
|
169
167
|
subscriptions: {
|
|
@@ -183,7 +181,6 @@ interface Account extends BaseAccount {
|
|
|
183
181
|
tikTok: string | null;
|
|
184
182
|
youtube: string | null;
|
|
185
183
|
discord: string | null;
|
|
186
|
-
video: string | null;
|
|
187
184
|
timezone: string | null;
|
|
188
185
|
blockedByAccounts?: {
|
|
189
186
|
id: string;
|
|
@@ -228,7 +225,6 @@ interface Self extends Omit<Account, "_count"> {
|
|
|
228
225
|
email: string | null;
|
|
229
226
|
verified: boolean;
|
|
230
227
|
phone: string | null;
|
|
231
|
-
dietaryRestrictions: string | null;
|
|
232
228
|
shareCode: string;
|
|
233
229
|
chatToken?: string;
|
|
234
230
|
locale: string;
|
|
@@ -3251,10 +3247,7 @@ interface UpdateSelfParams extends MutationParams {
|
|
|
3251
3247
|
firstName?: string | null;
|
|
3252
3248
|
lastName?: string | null;
|
|
3253
3249
|
phone?: string | null;
|
|
3254
|
-
title?: string | null;
|
|
3255
|
-
company?: string | null;
|
|
3256
3250
|
bio?: string | null;
|
|
3257
|
-
dietaryRestrictions?: string | null;
|
|
3258
3251
|
facebook?: string | null;
|
|
3259
3252
|
twitter?: string | null;
|
|
3260
3253
|
instagram?: string | null;
|
|
@@ -3262,7 +3255,6 @@ interface UpdateSelfParams extends MutationParams {
|
|
|
3262
3255
|
linkedIn?: string | null;
|
|
3263
3256
|
youtube?: string | null;
|
|
3264
3257
|
discord?: string | null;
|
|
3265
|
-
video?: string | null;
|
|
3266
3258
|
website?: string | null;
|
|
3267
3259
|
locale?: string | null;
|
|
3268
3260
|
termsAccepted?: boolean;
|
|
@@ -3735,12 +3727,9 @@ interface CreateLoginAccountAccount {
|
|
|
3735
3727
|
bannerId?: string;
|
|
3736
3728
|
username: string;
|
|
3737
3729
|
phone?: string;
|
|
3738
|
-
title?: string;
|
|
3739
|
-
company?: string;
|
|
3740
3730
|
internalRefId?: string;
|
|
3741
3731
|
bio?: string;
|
|
3742
3732
|
website?: string;
|
|
3743
|
-
video?: string;
|
|
3744
3733
|
facebook?: string;
|
|
3745
3734
|
twitter?: string;
|
|
3746
3735
|
instagram?: string;
|
|
@@ -3748,7 +3737,6 @@ interface CreateLoginAccountAccount {
|
|
|
3748
3737
|
linkedIn?: string;
|
|
3749
3738
|
youtube?: string;
|
|
3750
3739
|
discord?: string;
|
|
3751
|
-
dietaryRestrictions?: string;
|
|
3752
3740
|
locale?: string;
|
|
3753
3741
|
termsAccepted?: Date;
|
|
3754
3742
|
attributes?: Record<string, string>;
|