@connectedxm/admin 1.0.2 → 1.0.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.mts +115 -113
- package/dist/index.d.ts +115 -113
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -609,8 +609,8 @@ interface BaseChannelSubscriber {
|
|
|
609
609
|
channel: Channel;
|
|
610
610
|
accountId: string | null;
|
|
611
611
|
account: Account;
|
|
612
|
-
contentEmailNotification: boolean
|
|
613
|
-
contentPushNotification: boolean
|
|
612
|
+
contentEmailNotification: boolean;
|
|
613
|
+
contentPushNotification: boolean;
|
|
614
614
|
createdAt: string;
|
|
615
615
|
updatedAt: string;
|
|
616
616
|
}
|
|
@@ -1246,9 +1246,9 @@ interface Organization extends BaseOrganization {
|
|
|
1246
1246
|
darkIcon: BaseImage | null;
|
|
1247
1247
|
darkLogoId: string | null;
|
|
1248
1248
|
darkLogo: BaseImage | null;
|
|
1249
|
-
requireCompany: boolean
|
|
1250
|
-
requirePhone: boolean
|
|
1251
|
-
requireTitle: boolean
|
|
1249
|
+
requireCompany: boolean;
|
|
1250
|
+
requirePhone: boolean;
|
|
1251
|
+
requireTitle: boolean;
|
|
1252
1252
|
authLayout: AuthLayout;
|
|
1253
1253
|
defaultAuthAction: DefaultAuthAction;
|
|
1254
1254
|
userPoolId: string | null;
|
|
@@ -1257,10 +1257,10 @@ interface Organization extends BaseOrganization {
|
|
|
1257
1257
|
appBundleIdentifier: string | null;
|
|
1258
1258
|
expoProjectId: string | null;
|
|
1259
1259
|
expoSlug: string | null;
|
|
1260
|
-
appleAuthEnabled: boolean
|
|
1261
|
-
facebookAuthEnabled: boolean
|
|
1262
|
-
googleAuthEnabled: boolean
|
|
1263
|
-
oAuth: boolean
|
|
1260
|
+
appleAuthEnabled: boolean;
|
|
1261
|
+
facebookAuthEnabled: boolean;
|
|
1262
|
+
googleAuthEnabled: boolean;
|
|
1263
|
+
oAuth: boolean;
|
|
1264
1264
|
maxFileGbs: number | null;
|
|
1265
1265
|
maxImageCount: number | null;
|
|
1266
1266
|
maxVideoMins: number | null;
|
|
@@ -1394,7 +1394,7 @@ interface PaymentIntegration {
|
|
|
1394
1394
|
id: string;
|
|
1395
1395
|
type: "stripe" | "paypal";
|
|
1396
1396
|
connectionId: string;
|
|
1397
|
-
enabled: boolean
|
|
1397
|
+
enabled: boolean;
|
|
1398
1398
|
stripe?: any | null;
|
|
1399
1399
|
paypal?: any | null;
|
|
1400
1400
|
createdAt: string;
|
|
@@ -2320,8 +2320,8 @@ declare const useConnectedXM: () => ConnectedXMClientContextState;
|
|
|
2320
2320
|
interface AccountCreateInputs {
|
|
2321
2321
|
accountType: keyof typeof AccountType;
|
|
2322
2322
|
email: string;
|
|
2323
|
-
username
|
|
2324
|
-
featured?: boolean
|
|
2323
|
+
username?: string | null;
|
|
2324
|
+
featured?: boolean;
|
|
2325
2325
|
firstName?: string | null;
|
|
2326
2326
|
lastName?: string | null;
|
|
2327
2327
|
imageId?: string | null;
|
|
@@ -2346,10 +2346,11 @@ interface AccountCreateInputs {
|
|
|
2346
2346
|
country?: string | null;
|
|
2347
2347
|
zip?: string | null;
|
|
2348
2348
|
internalRefId?: string | null;
|
|
2349
|
+
verified?: boolean;
|
|
2349
2350
|
}
|
|
2350
2351
|
interface AccountUpdateInputs {
|
|
2351
2352
|
accountType?: keyof typeof AccountType | null;
|
|
2352
|
-
featured?: boolean
|
|
2353
|
+
featured?: boolean;
|
|
2353
2354
|
email?: string | null;
|
|
2354
2355
|
firstName?: string | null;
|
|
2355
2356
|
lastName?: string | null;
|
|
@@ -2376,6 +2377,7 @@ interface AccountUpdateInputs {
|
|
|
2376
2377
|
country?: string | null;
|
|
2377
2378
|
zip?: string | null;
|
|
2378
2379
|
internalRefId?: string | null;
|
|
2380
|
+
verified?: boolean;
|
|
2379
2381
|
}
|
|
2380
2382
|
interface ImportCreateInputs {
|
|
2381
2383
|
values?: {
|
|
@@ -2418,7 +2420,7 @@ interface AdvertisementCreateInputs {
|
|
|
2418
2420
|
weight?: number | string | null;
|
|
2419
2421
|
accountId?: string | null;
|
|
2420
2422
|
eventId?: string | null;
|
|
2421
|
-
eventOnly?: boolean
|
|
2423
|
+
eventOnly?: boolean;
|
|
2422
2424
|
}
|
|
2423
2425
|
interface AdvertisementUpdateInputs {
|
|
2424
2426
|
type?: keyof typeof AdvertisementType | null;
|
|
@@ -2431,7 +2433,7 @@ interface AdvertisementUpdateInputs {
|
|
|
2431
2433
|
weight?: number | string | null;
|
|
2432
2434
|
accountId?: string | null;
|
|
2433
2435
|
eventId?: string | null;
|
|
2434
|
-
eventOnly?: boolean
|
|
2436
|
+
eventOnly?: boolean;
|
|
2435
2437
|
}
|
|
2436
2438
|
interface AnnouncementCreateInputs {
|
|
2437
2439
|
title: string | null;
|
|
@@ -2468,7 +2470,7 @@ interface BenefitCreateInputs {
|
|
|
2468
2470
|
priority?: number | string | null;
|
|
2469
2471
|
managerId?: string | null;
|
|
2470
2472
|
eventId?: string | null;
|
|
2471
|
-
eventOnly?: boolean
|
|
2473
|
+
eventOnly?: boolean;
|
|
2472
2474
|
}
|
|
2473
2475
|
interface BenefitTranslationUpdateInputs {
|
|
2474
2476
|
title?: string | null;
|
|
@@ -2485,7 +2487,7 @@ interface BenefitUpdateInputs {
|
|
|
2485
2487
|
priority?: number | string | null;
|
|
2486
2488
|
managerId?: string | null;
|
|
2487
2489
|
eventId?: string | null;
|
|
2488
|
-
eventOnly?: boolean
|
|
2490
|
+
eventOnly?: boolean;
|
|
2489
2491
|
}
|
|
2490
2492
|
interface ChannelCollectionCreateInputs {
|
|
2491
2493
|
name: string;
|
|
@@ -2504,10 +2506,10 @@ interface ChannelCreateInputs {
|
|
|
2504
2506
|
imageId: string;
|
|
2505
2507
|
bannerId?: string | null;
|
|
2506
2508
|
slug?: string | null;
|
|
2507
|
-
featured?: boolean
|
|
2509
|
+
featured?: boolean;
|
|
2508
2510
|
description?: string | null;
|
|
2509
2511
|
priority?: number | string | null;
|
|
2510
|
-
visible?: boolean
|
|
2512
|
+
visible?: boolean;
|
|
2511
2513
|
externalUrl?: string | null;
|
|
2512
2514
|
appleUrl?: string | null;
|
|
2513
2515
|
spotifyUrl?: string | null;
|
|
@@ -2516,8 +2518,8 @@ interface ChannelCreateInputs {
|
|
|
2516
2518
|
groupId?: string | null;
|
|
2517
2519
|
}
|
|
2518
2520
|
interface ChannelSubscriberUpdateInputs {
|
|
2519
|
-
contentEmailNotification?: boolean
|
|
2520
|
-
contentPushNotification?: boolean
|
|
2521
|
+
contentEmailNotification?: boolean;
|
|
2522
|
+
contentPushNotification?: boolean;
|
|
2521
2523
|
}
|
|
2522
2524
|
interface ChannelTranslationUpdateInputs {
|
|
2523
2525
|
name?: string | null;
|
|
@@ -2528,10 +2530,10 @@ interface ChannelUpdateInputs {
|
|
|
2528
2530
|
imageId?: string | null;
|
|
2529
2531
|
bannerId?: string | null;
|
|
2530
2532
|
slug?: string | null;
|
|
2531
|
-
featured?: boolean
|
|
2533
|
+
featured?: boolean;
|
|
2532
2534
|
description?: string | null;
|
|
2533
2535
|
priority?: number | string | null;
|
|
2534
|
-
visible?: boolean
|
|
2536
|
+
visible?: boolean;
|
|
2535
2537
|
externalUrl?: string | null;
|
|
2536
2538
|
appleUrl?: string | null;
|
|
2537
2539
|
spotifyUrl?: string | null;
|
|
@@ -2543,8 +2545,8 @@ interface ChannelContentCreateInputs {
|
|
|
2543
2545
|
title: string;
|
|
2544
2546
|
published?: string | null;
|
|
2545
2547
|
channelId?: string | null;
|
|
2546
|
-
featured?: boolean
|
|
2547
|
-
visible?: boolean
|
|
2548
|
+
featured?: boolean;
|
|
2549
|
+
visible?: boolean;
|
|
2548
2550
|
slug?: string | null;
|
|
2549
2551
|
description?: string | null;
|
|
2550
2552
|
duration?: string | null;
|
|
@@ -2612,8 +2614,8 @@ interface ChannelContentTranslationUpdateInputs {
|
|
|
2612
2614
|
interface ChannelContentUpdateInputs {
|
|
2613
2615
|
published?: string | null;
|
|
2614
2616
|
channelId?: string | null;
|
|
2615
|
-
featured?: boolean
|
|
2616
|
-
visible?: boolean
|
|
2617
|
+
featured?: boolean;
|
|
2618
|
+
visible?: boolean;
|
|
2617
2619
|
title?: string | null;
|
|
2618
2620
|
slug?: string | null;
|
|
2619
2621
|
description?: string | null;
|
|
@@ -2640,7 +2642,7 @@ interface EventActivationCreateInputs {
|
|
|
2640
2642
|
longDescription?: string | null;
|
|
2641
2643
|
maxPoints?: number | string | null;
|
|
2642
2644
|
startAfter?: string | null;
|
|
2643
|
-
protected?: boolean
|
|
2645
|
+
protected?: boolean;
|
|
2644
2646
|
protectionCode?: number | string | null;
|
|
2645
2647
|
email?: boolean;
|
|
2646
2648
|
push?: boolean;
|
|
@@ -2659,7 +2661,7 @@ interface EventActivationUpdateInputs {
|
|
|
2659
2661
|
longDescription?: string | null;
|
|
2660
2662
|
maxPoints?: number | string | null;
|
|
2661
2663
|
startAfter?: string | null;
|
|
2662
|
-
protected?: boolean
|
|
2664
|
+
protected?: boolean;
|
|
2663
2665
|
protectionCode?: number | string | null;
|
|
2664
2666
|
}
|
|
2665
2667
|
interface EventActivationCompletionCreateInputs {
|
|
@@ -2712,7 +2714,7 @@ interface EventBadgeFieldUpdateInputs {
|
|
|
2712
2714
|
interface EventCouponCreateInputs {
|
|
2713
2715
|
code: string;
|
|
2714
2716
|
description?: string | null;
|
|
2715
|
-
active?: boolean
|
|
2717
|
+
active?: boolean;
|
|
2716
2718
|
startDate?: string | null;
|
|
2717
2719
|
endDate?: string | null;
|
|
2718
2720
|
discountAmount?: number | string | null;
|
|
@@ -2729,7 +2731,7 @@ interface EventCouponCreateInputs {
|
|
|
2729
2731
|
interface EventCouponUpdateInputs {
|
|
2730
2732
|
code?: string | null;
|
|
2731
2733
|
description?: string | null;
|
|
2732
|
-
active?: boolean
|
|
2734
|
+
active?: boolean;
|
|
2733
2735
|
startDate?: string | null;
|
|
2734
2736
|
endDate?: string | null;
|
|
2735
2737
|
discountAmount?: number | string | null;
|
|
@@ -2755,8 +2757,8 @@ interface EventCreateInputs {
|
|
|
2755
2757
|
timezone: string;
|
|
2756
2758
|
eventStart: string;
|
|
2757
2759
|
eventEnd: string;
|
|
2758
|
-
featured?: boolean
|
|
2759
|
-
visible?: boolean
|
|
2760
|
+
featured?: boolean;
|
|
2761
|
+
visible?: boolean;
|
|
2760
2762
|
slug?: string | null;
|
|
2761
2763
|
internalRefId?: string | null;
|
|
2762
2764
|
longDescription?: string | null;
|
|
@@ -2773,22 +2775,22 @@ interface EventCreateInputs {
|
|
|
2773
2775
|
zip?: string | null;
|
|
2774
2776
|
creatorId?: string | null;
|
|
2775
2777
|
seriesId?: string | null;
|
|
2776
|
-
approved?: boolean
|
|
2778
|
+
approved?: boolean;
|
|
2777
2779
|
meetingUrl?: string | null;
|
|
2778
|
-
registration?: boolean
|
|
2780
|
+
registration?: boolean;
|
|
2779
2781
|
registrationStart?: string | null;
|
|
2780
2782
|
registrationEnd?: string | null;
|
|
2781
2783
|
registrationLimit?: number | string | null;
|
|
2782
|
-
publicRegistrants?: boolean
|
|
2783
|
-
sessionsVisible?: boolean
|
|
2784
|
-
speakersVisible?: boolean
|
|
2784
|
+
publicRegistrants?: boolean;
|
|
2785
|
+
sessionsVisible?: boolean;
|
|
2786
|
+
speakersVisible?: boolean;
|
|
2785
2787
|
iosAppLink?: string | null;
|
|
2786
2788
|
androidAppLink?: string | null;
|
|
2787
|
-
newActivityCreatorEmailNotification?: boolean
|
|
2788
|
-
newActivityCreatorPushNotification?: boolean
|
|
2789
|
+
newActivityCreatorEmailNotification?: boolean;
|
|
2790
|
+
newActivityCreatorPushNotification?: boolean;
|
|
2789
2791
|
streamReplayId?: string | null;
|
|
2790
2792
|
groupId?: string | null;
|
|
2791
|
-
groupOnly?: boolean
|
|
2793
|
+
groupOnly?: boolean;
|
|
2792
2794
|
}
|
|
2793
2795
|
interface EventEmailUpdateInputs {
|
|
2794
2796
|
body?: string | null;
|
|
@@ -2799,7 +2801,7 @@ interface EventFaqSectionQuestionCreateInputs {
|
|
|
2799
2801
|
answer: string;
|
|
2800
2802
|
slug?: string | null;
|
|
2801
2803
|
priority?: number | string | null;
|
|
2802
|
-
visible?: boolean
|
|
2804
|
+
visible?: boolean;
|
|
2803
2805
|
}
|
|
2804
2806
|
interface EventFaqSectionQuestionTranslationUpdateInputs {
|
|
2805
2807
|
question?: string | null;
|
|
@@ -2810,7 +2812,7 @@ interface EventFaqSectionQuestionUpdateInputs {
|
|
|
2810
2812
|
slug?: string | null;
|
|
2811
2813
|
answer?: string | null;
|
|
2812
2814
|
priority?: number | string | null;
|
|
2813
|
-
visible?: boolean
|
|
2815
|
+
visible?: boolean;
|
|
2814
2816
|
}
|
|
2815
2817
|
interface EventFaqSectionTranslationUpdateInputs {
|
|
2816
2818
|
name?: string | null;
|
|
@@ -2859,15 +2861,15 @@ interface EventAttendeeUpdateInputs {
|
|
|
2859
2861
|
}
|
|
2860
2862
|
interface EventRegistrationBypassCreateInputs {
|
|
2861
2863
|
accountId: string;
|
|
2862
|
-
closed?: boolean
|
|
2863
|
-
preRegister?: boolean
|
|
2864
|
-
postRegister?: boolean
|
|
2864
|
+
closed?: boolean;
|
|
2865
|
+
preRegister?: boolean;
|
|
2866
|
+
postRegister?: boolean;
|
|
2865
2867
|
}
|
|
2866
2868
|
interface EventRegistrationBypassUpdateInputs {
|
|
2867
2869
|
accountId?: string | null;
|
|
2868
|
-
closed?: boolean
|
|
2869
|
-
preRegister?: boolean
|
|
2870
|
-
postRegister?: boolean
|
|
2870
|
+
closed?: boolean;
|
|
2871
|
+
preRegister?: boolean;
|
|
2872
|
+
postRegister?: boolean;
|
|
2871
2873
|
}
|
|
2872
2874
|
interface EventReservationSelectInputs {
|
|
2873
2875
|
reservationStart?: string;
|
|
@@ -2878,7 +2880,7 @@ interface EventReservationSectionCreateInputs {
|
|
|
2878
2880
|
shortDescription?: string | null;
|
|
2879
2881
|
price?: number | string | null;
|
|
2880
2882
|
sortOrder?: number | string | null;
|
|
2881
|
-
pricePerDay?: boolean
|
|
2883
|
+
pricePerDay?: boolean;
|
|
2882
2884
|
imageId?: string | null;
|
|
2883
2885
|
}
|
|
2884
2886
|
interface EventReservationSectionLocationCreateInputs {
|
|
@@ -2908,7 +2910,7 @@ interface EventReservationSectionUpdateInputs {
|
|
|
2908
2910
|
shortDescription?: string | null;
|
|
2909
2911
|
price?: number | string | null;
|
|
2910
2912
|
sortOrder?: number | string | null;
|
|
2911
|
-
pricePerDay?: boolean
|
|
2913
|
+
pricePerDay?: boolean;
|
|
2912
2914
|
imageId?: string | null;
|
|
2913
2915
|
}
|
|
2914
2916
|
interface EventSessionCreateInputs {
|
|
@@ -2919,9 +2921,9 @@ interface EventSessionCreateInputs {
|
|
|
2919
2921
|
location?: string | null;
|
|
2920
2922
|
description?: string | null;
|
|
2921
2923
|
longDescription?: string | null;
|
|
2922
|
-
nonSession?: boolean
|
|
2924
|
+
nonSession?: boolean;
|
|
2923
2925
|
imageId?: string | null;
|
|
2924
|
-
visible?: boolean
|
|
2926
|
+
visible?: boolean;
|
|
2925
2927
|
sortOrder?: number | string | null;
|
|
2926
2928
|
}
|
|
2927
2929
|
interface EventSessionTranslationUpdateInputs {
|
|
@@ -2937,9 +2939,9 @@ interface EventSessionUpdateInputs {
|
|
|
2937
2939
|
location?: string | null;
|
|
2938
2940
|
description?: string | null;
|
|
2939
2941
|
longDescription?: string | null;
|
|
2940
|
-
nonSession?: boolean
|
|
2942
|
+
nonSession?: boolean;
|
|
2941
2943
|
imageId?: string | null;
|
|
2942
|
-
visible?: boolean
|
|
2944
|
+
visible?: boolean;
|
|
2943
2945
|
sortOrder?: number | string | null;
|
|
2944
2946
|
}
|
|
2945
2947
|
interface EventSpeakerCreateInputs {
|
|
@@ -2959,10 +2961,10 @@ interface EventSpeakerCreateInputs {
|
|
|
2959
2961
|
youtube?: string | null;
|
|
2960
2962
|
discord?: string | null;
|
|
2961
2963
|
label?: string | null;
|
|
2962
|
-
isHost?: boolean
|
|
2964
|
+
isHost?: boolean;
|
|
2963
2965
|
imageId?: string | null;
|
|
2964
2966
|
priority?: number | string | null;
|
|
2965
|
-
visible?: boolean
|
|
2967
|
+
visible?: boolean;
|
|
2966
2968
|
}
|
|
2967
2969
|
interface EventSpeakerTranslationUpdateInputs {
|
|
2968
2970
|
title?: string | null;
|
|
@@ -2985,10 +2987,10 @@ interface EventSpeakerUpdateInputs {
|
|
|
2985
2987
|
youtube?: string | null;
|
|
2986
2988
|
discord?: string | null;
|
|
2987
2989
|
label?: string | null;
|
|
2988
|
-
isHost?: boolean
|
|
2990
|
+
isHost?: boolean;
|
|
2989
2991
|
imageId?: string | null;
|
|
2990
2992
|
priority?: number | string | null;
|
|
2991
|
-
visible?: boolean
|
|
2993
|
+
visible?: boolean;
|
|
2992
2994
|
}
|
|
2993
2995
|
interface PassTypeTranslationUpdateInputs {
|
|
2994
2996
|
name?: string | null;
|
|
@@ -3005,8 +3007,8 @@ interface EventTranslationUpdateInputs {
|
|
|
3005
3007
|
longDescription?: string | null;
|
|
3006
3008
|
}
|
|
3007
3009
|
interface EventUpdateInputs {
|
|
3008
|
-
featured?: boolean
|
|
3009
|
-
visible?: boolean
|
|
3010
|
+
featured?: boolean;
|
|
3011
|
+
visible?: boolean;
|
|
3010
3012
|
name?: string | null;
|
|
3011
3013
|
eventType?: keyof typeof EventType | null;
|
|
3012
3014
|
slug?: string | null;
|
|
@@ -3029,23 +3031,23 @@ interface EventUpdateInputs {
|
|
|
3029
3031
|
zip?: string | null;
|
|
3030
3032
|
creatorId?: string | null;
|
|
3031
3033
|
seriesId?: string | null;
|
|
3032
|
-
approved?: boolean
|
|
3034
|
+
approved?: boolean;
|
|
3033
3035
|
meetingUrl?: string | null;
|
|
3034
|
-
registration?: boolean
|
|
3036
|
+
registration?: boolean;
|
|
3035
3037
|
registrationStart?: string | null;
|
|
3036
3038
|
registrationEnd?: string | null;
|
|
3037
3039
|
registrationLimit?: number | null | string;
|
|
3038
|
-
publicRegistrants?: boolean
|
|
3039
|
-
sessionsVisible?: boolean
|
|
3040
|
-
speakersVisible?: boolean
|
|
3041
|
-
inviteOnly?: boolean
|
|
3040
|
+
publicRegistrants?: boolean;
|
|
3041
|
+
sessionsVisible?: boolean;
|
|
3042
|
+
speakersVisible?: boolean;
|
|
3043
|
+
inviteOnly?: boolean;
|
|
3042
3044
|
iosAppLink?: string | null;
|
|
3043
3045
|
androidAppLink?: string | null;
|
|
3044
|
-
newActivityCreatorEmailNotification?: boolean
|
|
3045
|
-
newActivityCreatorPushNotification?: boolean
|
|
3046
|
+
newActivityCreatorEmailNotification?: boolean;
|
|
3047
|
+
newActivityCreatorPushNotification?: boolean;
|
|
3046
3048
|
streamReplayId?: string | null;
|
|
3047
3049
|
groupId?: string | null;
|
|
3048
|
-
groupOnly?: boolean
|
|
3050
|
+
groupOnly?: boolean;
|
|
3049
3051
|
}
|
|
3050
3052
|
interface FileUpdateInputs {
|
|
3051
3053
|
name?: string;
|
|
@@ -3054,21 +3056,21 @@ interface FileUpdateInputs {
|
|
|
3054
3056
|
interface GroupCreateInputs {
|
|
3055
3057
|
name: string;
|
|
3056
3058
|
description: string;
|
|
3057
|
-
featured?: boolean
|
|
3059
|
+
featured?: boolean;
|
|
3058
3060
|
slug?: string | null;
|
|
3059
|
-
active?: boolean
|
|
3061
|
+
active?: boolean;
|
|
3060
3062
|
access?: keyof typeof GroupAccess | null;
|
|
3061
3063
|
imageId?: string | null;
|
|
3062
3064
|
externalUrl?: string | null;
|
|
3063
3065
|
}
|
|
3064
3066
|
interface GroupMembershipUpdateInputs {
|
|
3065
|
-
announcementEmailNotification?: boolean
|
|
3066
|
-
announcementPushNotification?: boolean
|
|
3067
|
-
activityEmailNotification?: boolean
|
|
3068
|
-
activityPushNotification?: boolean
|
|
3069
|
-
eventEmailNotification?: boolean
|
|
3070
|
-
eventPushNotification?: boolean
|
|
3071
|
-
chatPushNotification?: boolean
|
|
3067
|
+
announcementEmailNotification?: boolean;
|
|
3068
|
+
announcementPushNotification?: boolean;
|
|
3069
|
+
activityEmailNotification?: boolean;
|
|
3070
|
+
activityPushNotification?: boolean;
|
|
3071
|
+
eventEmailNotification?: boolean;
|
|
3072
|
+
eventPushNotification?: boolean;
|
|
3073
|
+
chatPushNotification?: boolean;
|
|
3072
3074
|
}
|
|
3073
3075
|
interface OrganizationMembershipUpdateInputs {
|
|
3074
3076
|
org: ModulePermissions;
|
|
@@ -3095,11 +3097,11 @@ interface GroupTranslationUpdateInputs {
|
|
|
3095
3097
|
description?: string | null;
|
|
3096
3098
|
}
|
|
3097
3099
|
interface GroupUpdateInputs {
|
|
3098
|
-
featured?: boolean
|
|
3100
|
+
featured?: boolean;
|
|
3099
3101
|
name?: string | null;
|
|
3100
3102
|
slug?: string | null;
|
|
3101
3103
|
description?: string | null;
|
|
3102
|
-
active?: boolean
|
|
3104
|
+
active?: boolean;
|
|
3103
3105
|
access?: keyof typeof GroupAccess | null;
|
|
3104
3106
|
imageId?: string | null;
|
|
3105
3107
|
externalUrl?: string | null;
|
|
@@ -3122,12 +3124,12 @@ interface ImageUpdateInputs {
|
|
|
3122
3124
|
interface InterestCreateInputs {
|
|
3123
3125
|
name: string;
|
|
3124
3126
|
imageId?: string | null;
|
|
3125
|
-
featured?: boolean
|
|
3127
|
+
featured?: boolean;
|
|
3126
3128
|
}
|
|
3127
3129
|
interface InterestUpdateInputs {
|
|
3128
3130
|
name?: string | null;
|
|
3129
3131
|
imageId?: string | null;
|
|
3130
|
-
featured?: boolean
|
|
3132
|
+
featured?: boolean;
|
|
3131
3133
|
}
|
|
3132
3134
|
interface InvoiceCreateInputs {
|
|
3133
3135
|
title: string;
|
|
@@ -3212,9 +3214,9 @@ interface OrganizationUpdateInputs {
|
|
|
3212
3214
|
discord?: string | null;
|
|
3213
3215
|
defaultAuthAction?: keyof typeof DefaultAuthAction;
|
|
3214
3216
|
authLayout?: keyof typeof AuthLayout;
|
|
3215
|
-
requirePhone?: boolean
|
|
3216
|
-
requireTitle?: boolean
|
|
3217
|
-
requireCompany?: boolean
|
|
3217
|
+
requirePhone?: boolean;
|
|
3218
|
+
requireTitle?: boolean;
|
|
3219
|
+
requireCompany?: boolean;
|
|
3218
3220
|
iosAppLink?: string | null;
|
|
3219
3221
|
androidAppLink?: string | null;
|
|
3220
3222
|
appIconId?: string | null;
|
|
@@ -3252,28 +3254,28 @@ interface EventQuestionCreateInputs {
|
|
|
3252
3254
|
sectionId?: number;
|
|
3253
3255
|
questionId?: number;
|
|
3254
3256
|
choiceId?: number;
|
|
3255
|
-
required?: boolean
|
|
3257
|
+
required?: boolean;
|
|
3256
3258
|
label?: string | null;
|
|
3257
3259
|
placeholder?: string | null;
|
|
3258
3260
|
description?: string | null;
|
|
3259
3261
|
default?: string | null;
|
|
3260
3262
|
span?: number | string | null;
|
|
3261
|
-
mutable?: boolean
|
|
3263
|
+
mutable?: boolean;
|
|
3262
3264
|
min?: string | null;
|
|
3263
3265
|
max?: string | null;
|
|
3264
3266
|
validation?: string | null;
|
|
3265
3267
|
validationMessage?: string | null;
|
|
3266
3268
|
sortOrder?: number | string | null;
|
|
3267
|
-
featured?: boolean
|
|
3269
|
+
featured?: boolean;
|
|
3268
3270
|
choices?: string[] | null;
|
|
3269
3271
|
}
|
|
3270
3272
|
interface EventQuestionSearchInputs {
|
|
3271
3273
|
value: string;
|
|
3272
|
-
top?: boolean
|
|
3274
|
+
top?: boolean;
|
|
3273
3275
|
}
|
|
3274
3276
|
interface EventQuestionSearchValueUpdateInputs {
|
|
3275
3277
|
value?: string | null;
|
|
3276
|
-
top?: boolean
|
|
3278
|
+
top?: boolean;
|
|
3277
3279
|
}
|
|
3278
3280
|
interface EventQuestionTranslationUpdateInputs {
|
|
3279
3281
|
label?: string | null;
|
|
@@ -3283,19 +3285,19 @@ interface EventQuestionTranslationUpdateInputs {
|
|
|
3283
3285
|
interface EventQuestionUpdateInputs {
|
|
3284
3286
|
name?: string | null;
|
|
3285
3287
|
type?: keyof typeof RegistrationQuestionType | null;
|
|
3286
|
-
required?: boolean
|
|
3288
|
+
required?: boolean;
|
|
3287
3289
|
label?: string | null;
|
|
3288
3290
|
placeholder?: string | null;
|
|
3289
3291
|
description?: string | null;
|
|
3290
3292
|
default?: string | null;
|
|
3291
3293
|
span?: number | string | null;
|
|
3292
|
-
mutable?: boolean
|
|
3294
|
+
mutable?: boolean;
|
|
3293
3295
|
min?: string | null;
|
|
3294
3296
|
max?: string | null;
|
|
3295
3297
|
validation?: string | null;
|
|
3296
3298
|
validationMessage?: string | null;
|
|
3297
3299
|
sortOrder?: number | string | null;
|
|
3298
|
-
featured?: boolean
|
|
3300
|
+
featured?: boolean;
|
|
3299
3301
|
}
|
|
3300
3302
|
interface ReportCreateInputs {
|
|
3301
3303
|
name: string;
|
|
@@ -3400,13 +3402,13 @@ interface StreamOutputCreateInputs {
|
|
|
3400
3402
|
}
|
|
3401
3403
|
interface SubscriptionProductCreateInputs {
|
|
3402
3404
|
name: string;
|
|
3403
|
-
active?: boolean
|
|
3405
|
+
active?: boolean;
|
|
3404
3406
|
description?: string | null;
|
|
3405
3407
|
statementDescriptor?: string | null;
|
|
3406
3408
|
features?: string[] | null;
|
|
3407
3409
|
}
|
|
3408
3410
|
interface SubscriptionProductPriceCreateInputs {
|
|
3409
|
-
active?: boolean
|
|
3411
|
+
active?: boolean;
|
|
3410
3412
|
type: keyof typeof SubscriptionProductPriceType;
|
|
3411
3413
|
amount: string | number;
|
|
3412
3414
|
currency: "usd";
|
|
@@ -3414,10 +3416,10 @@ interface SubscriptionProductPriceCreateInputs {
|
|
|
3414
3416
|
intervalCount: string | number;
|
|
3415
3417
|
}
|
|
3416
3418
|
interface SubscriptionProductPriceUpdateInputs {
|
|
3417
|
-
active?: boolean
|
|
3419
|
+
active?: boolean;
|
|
3418
3420
|
}
|
|
3419
3421
|
interface SubscriptionProductUpdateInputs {
|
|
3420
|
-
active?: boolean
|
|
3422
|
+
active?: boolean;
|
|
3421
3423
|
name?: string | null;
|
|
3422
3424
|
description?: string | null;
|
|
3423
3425
|
statementDescriptor?: string | null;
|
|
@@ -3426,7 +3428,7 @@ interface SubscriptionProductUpdateInputs {
|
|
|
3426
3428
|
interface SubscriptionCreateInputs {
|
|
3427
3429
|
status?: SubscriptionStatus;
|
|
3428
3430
|
expiresAt?: string | null;
|
|
3429
|
-
cancelAtEnd?: boolean
|
|
3431
|
+
cancelAtEnd?: boolean;
|
|
3430
3432
|
integrationId?: string | null;
|
|
3431
3433
|
subscriptionProductId?: string | null;
|
|
3432
3434
|
subscriptionProduct?: BaseSubscriptionProduct;
|
|
@@ -3506,8 +3508,8 @@ interface ThreadCreateInputs {
|
|
|
3506
3508
|
access: keyof typeof ThreadAccessLevel;
|
|
3507
3509
|
name: string;
|
|
3508
3510
|
description?: string | null;
|
|
3509
|
-
featured?: boolean
|
|
3510
|
-
visible?: boolean
|
|
3511
|
+
featured?: boolean;
|
|
3512
|
+
visible?: boolean;
|
|
3511
3513
|
groupId?: string | null;
|
|
3512
3514
|
eventId?: string | null;
|
|
3513
3515
|
imageId?: string | null;
|
|
@@ -3518,8 +3520,8 @@ interface ThreadCreateInputs {
|
|
|
3518
3520
|
interface ThreadUpdateInputs {
|
|
3519
3521
|
name?: string | null;
|
|
3520
3522
|
description?: string | null;
|
|
3521
|
-
featured?: boolean
|
|
3522
|
-
visible?: boolean
|
|
3523
|
+
featured?: boolean;
|
|
3524
|
+
visible?: boolean;
|
|
3523
3525
|
access?: keyof typeof ThreadAccessLevel | null;
|
|
3524
3526
|
groupId?: string | null;
|
|
3525
3527
|
eventId?: string | null;
|
|
@@ -3533,9 +3535,9 @@ interface PassTypeCreateInputs {
|
|
|
3533
3535
|
shortDescription: string;
|
|
3534
3536
|
price: string | number;
|
|
3535
3537
|
visibility?: keyof typeof PassTypeVisibility | null;
|
|
3536
|
-
featured?: boolean
|
|
3537
|
-
active?: boolean
|
|
3538
|
-
transferable?: boolean
|
|
3538
|
+
featured?: boolean;
|
|
3539
|
+
active?: boolean;
|
|
3540
|
+
transferable?: boolean;
|
|
3539
3541
|
slug?: string | null;
|
|
3540
3542
|
longDescription?: string | null;
|
|
3541
3543
|
accessLevel?: keyof typeof PassTypeAccessLevel | null;
|
|
@@ -3556,9 +3558,9 @@ interface PassTypeCreateInputs {
|
|
|
3556
3558
|
}
|
|
3557
3559
|
interface PassTypeUpdateInputs {
|
|
3558
3560
|
visibility?: keyof typeof PassTypeVisibility | null;
|
|
3559
|
-
featured?: boolean
|
|
3560
|
-
active?: boolean
|
|
3561
|
-
transferable?: boolean
|
|
3561
|
+
featured?: boolean;
|
|
3562
|
+
active?: boolean;
|
|
3563
|
+
transferable?: boolean;
|
|
3562
3564
|
name?: string | null;
|
|
3563
3565
|
slug?: string | null;
|
|
3564
3566
|
shortDescription?: string | null;
|
|
@@ -3588,7 +3590,7 @@ interface TierCreateInputs {
|
|
|
3588
3590
|
description?: string | null;
|
|
3589
3591
|
imageId?: string | null;
|
|
3590
3592
|
color?: string | null;
|
|
3591
|
-
internal?: boolean
|
|
3593
|
+
internal?: boolean;
|
|
3592
3594
|
}
|
|
3593
3595
|
interface TierUpdateInputs {
|
|
3594
3596
|
name?: string | null;
|
|
@@ -3598,7 +3600,7 @@ interface TierUpdateInputs {
|
|
|
3598
3600
|
description?: string | null;
|
|
3599
3601
|
imageId?: string | null;
|
|
3600
3602
|
color?: string | null;
|
|
3601
|
-
internal?: boolean
|
|
3603
|
+
internal?: boolean;
|
|
3602
3604
|
}
|
|
3603
3605
|
interface EventTrackCreateInputs {
|
|
3604
3606
|
name: string;
|
|
@@ -3614,11 +3616,11 @@ interface EventTrackUpdateInputs {
|
|
|
3614
3616
|
}
|
|
3615
3617
|
interface TriggerCreateInputs {
|
|
3616
3618
|
code: string;
|
|
3617
|
-
enabled?: boolean
|
|
3619
|
+
enabled?: boolean;
|
|
3618
3620
|
}
|
|
3619
3621
|
interface TriggerUpdateInputs {
|
|
3620
3622
|
code?: string | null;
|
|
3621
|
-
enabled?: boolean
|
|
3623
|
+
enabled?: boolean;
|
|
3622
3624
|
}
|
|
3623
3625
|
interface UserCreateInputs {
|
|
3624
3626
|
}
|
package/dist/index.d.ts
CHANGED
|
@@ -609,8 +609,8 @@ interface BaseChannelSubscriber {
|
|
|
609
609
|
channel: Channel;
|
|
610
610
|
accountId: string | null;
|
|
611
611
|
account: Account;
|
|
612
|
-
contentEmailNotification: boolean
|
|
613
|
-
contentPushNotification: boolean
|
|
612
|
+
contentEmailNotification: boolean;
|
|
613
|
+
contentPushNotification: boolean;
|
|
614
614
|
createdAt: string;
|
|
615
615
|
updatedAt: string;
|
|
616
616
|
}
|
|
@@ -1246,9 +1246,9 @@ interface Organization extends BaseOrganization {
|
|
|
1246
1246
|
darkIcon: BaseImage | null;
|
|
1247
1247
|
darkLogoId: string | null;
|
|
1248
1248
|
darkLogo: BaseImage | null;
|
|
1249
|
-
requireCompany: boolean
|
|
1250
|
-
requirePhone: boolean
|
|
1251
|
-
requireTitle: boolean
|
|
1249
|
+
requireCompany: boolean;
|
|
1250
|
+
requirePhone: boolean;
|
|
1251
|
+
requireTitle: boolean;
|
|
1252
1252
|
authLayout: AuthLayout;
|
|
1253
1253
|
defaultAuthAction: DefaultAuthAction;
|
|
1254
1254
|
userPoolId: string | null;
|
|
@@ -1257,10 +1257,10 @@ interface Organization extends BaseOrganization {
|
|
|
1257
1257
|
appBundleIdentifier: string | null;
|
|
1258
1258
|
expoProjectId: string | null;
|
|
1259
1259
|
expoSlug: string | null;
|
|
1260
|
-
appleAuthEnabled: boolean
|
|
1261
|
-
facebookAuthEnabled: boolean
|
|
1262
|
-
googleAuthEnabled: boolean
|
|
1263
|
-
oAuth: boolean
|
|
1260
|
+
appleAuthEnabled: boolean;
|
|
1261
|
+
facebookAuthEnabled: boolean;
|
|
1262
|
+
googleAuthEnabled: boolean;
|
|
1263
|
+
oAuth: boolean;
|
|
1264
1264
|
maxFileGbs: number | null;
|
|
1265
1265
|
maxImageCount: number | null;
|
|
1266
1266
|
maxVideoMins: number | null;
|
|
@@ -1394,7 +1394,7 @@ interface PaymentIntegration {
|
|
|
1394
1394
|
id: string;
|
|
1395
1395
|
type: "stripe" | "paypal";
|
|
1396
1396
|
connectionId: string;
|
|
1397
|
-
enabled: boolean
|
|
1397
|
+
enabled: boolean;
|
|
1398
1398
|
stripe?: any | null;
|
|
1399
1399
|
paypal?: any | null;
|
|
1400
1400
|
createdAt: string;
|
|
@@ -2320,8 +2320,8 @@ declare const useConnectedXM: () => ConnectedXMClientContextState;
|
|
|
2320
2320
|
interface AccountCreateInputs {
|
|
2321
2321
|
accountType: keyof typeof AccountType;
|
|
2322
2322
|
email: string;
|
|
2323
|
-
username
|
|
2324
|
-
featured?: boolean
|
|
2323
|
+
username?: string | null;
|
|
2324
|
+
featured?: boolean;
|
|
2325
2325
|
firstName?: string | null;
|
|
2326
2326
|
lastName?: string | null;
|
|
2327
2327
|
imageId?: string | null;
|
|
@@ -2346,10 +2346,11 @@ interface AccountCreateInputs {
|
|
|
2346
2346
|
country?: string | null;
|
|
2347
2347
|
zip?: string | null;
|
|
2348
2348
|
internalRefId?: string | null;
|
|
2349
|
+
verified?: boolean;
|
|
2349
2350
|
}
|
|
2350
2351
|
interface AccountUpdateInputs {
|
|
2351
2352
|
accountType?: keyof typeof AccountType | null;
|
|
2352
|
-
featured?: boolean
|
|
2353
|
+
featured?: boolean;
|
|
2353
2354
|
email?: string | null;
|
|
2354
2355
|
firstName?: string | null;
|
|
2355
2356
|
lastName?: string | null;
|
|
@@ -2376,6 +2377,7 @@ interface AccountUpdateInputs {
|
|
|
2376
2377
|
country?: string | null;
|
|
2377
2378
|
zip?: string | null;
|
|
2378
2379
|
internalRefId?: string | null;
|
|
2380
|
+
verified?: boolean;
|
|
2379
2381
|
}
|
|
2380
2382
|
interface ImportCreateInputs {
|
|
2381
2383
|
values?: {
|
|
@@ -2418,7 +2420,7 @@ interface AdvertisementCreateInputs {
|
|
|
2418
2420
|
weight?: number | string | null;
|
|
2419
2421
|
accountId?: string | null;
|
|
2420
2422
|
eventId?: string | null;
|
|
2421
|
-
eventOnly?: boolean
|
|
2423
|
+
eventOnly?: boolean;
|
|
2422
2424
|
}
|
|
2423
2425
|
interface AdvertisementUpdateInputs {
|
|
2424
2426
|
type?: keyof typeof AdvertisementType | null;
|
|
@@ -2431,7 +2433,7 @@ interface AdvertisementUpdateInputs {
|
|
|
2431
2433
|
weight?: number | string | null;
|
|
2432
2434
|
accountId?: string | null;
|
|
2433
2435
|
eventId?: string | null;
|
|
2434
|
-
eventOnly?: boolean
|
|
2436
|
+
eventOnly?: boolean;
|
|
2435
2437
|
}
|
|
2436
2438
|
interface AnnouncementCreateInputs {
|
|
2437
2439
|
title: string | null;
|
|
@@ -2468,7 +2470,7 @@ interface BenefitCreateInputs {
|
|
|
2468
2470
|
priority?: number | string | null;
|
|
2469
2471
|
managerId?: string | null;
|
|
2470
2472
|
eventId?: string | null;
|
|
2471
|
-
eventOnly?: boolean
|
|
2473
|
+
eventOnly?: boolean;
|
|
2472
2474
|
}
|
|
2473
2475
|
interface BenefitTranslationUpdateInputs {
|
|
2474
2476
|
title?: string | null;
|
|
@@ -2485,7 +2487,7 @@ interface BenefitUpdateInputs {
|
|
|
2485
2487
|
priority?: number | string | null;
|
|
2486
2488
|
managerId?: string | null;
|
|
2487
2489
|
eventId?: string | null;
|
|
2488
|
-
eventOnly?: boolean
|
|
2490
|
+
eventOnly?: boolean;
|
|
2489
2491
|
}
|
|
2490
2492
|
interface ChannelCollectionCreateInputs {
|
|
2491
2493
|
name: string;
|
|
@@ -2504,10 +2506,10 @@ interface ChannelCreateInputs {
|
|
|
2504
2506
|
imageId: string;
|
|
2505
2507
|
bannerId?: string | null;
|
|
2506
2508
|
slug?: string | null;
|
|
2507
|
-
featured?: boolean
|
|
2509
|
+
featured?: boolean;
|
|
2508
2510
|
description?: string | null;
|
|
2509
2511
|
priority?: number | string | null;
|
|
2510
|
-
visible?: boolean
|
|
2512
|
+
visible?: boolean;
|
|
2511
2513
|
externalUrl?: string | null;
|
|
2512
2514
|
appleUrl?: string | null;
|
|
2513
2515
|
spotifyUrl?: string | null;
|
|
@@ -2516,8 +2518,8 @@ interface ChannelCreateInputs {
|
|
|
2516
2518
|
groupId?: string | null;
|
|
2517
2519
|
}
|
|
2518
2520
|
interface ChannelSubscriberUpdateInputs {
|
|
2519
|
-
contentEmailNotification?: boolean
|
|
2520
|
-
contentPushNotification?: boolean
|
|
2521
|
+
contentEmailNotification?: boolean;
|
|
2522
|
+
contentPushNotification?: boolean;
|
|
2521
2523
|
}
|
|
2522
2524
|
interface ChannelTranslationUpdateInputs {
|
|
2523
2525
|
name?: string | null;
|
|
@@ -2528,10 +2530,10 @@ interface ChannelUpdateInputs {
|
|
|
2528
2530
|
imageId?: string | null;
|
|
2529
2531
|
bannerId?: string | null;
|
|
2530
2532
|
slug?: string | null;
|
|
2531
|
-
featured?: boolean
|
|
2533
|
+
featured?: boolean;
|
|
2532
2534
|
description?: string | null;
|
|
2533
2535
|
priority?: number | string | null;
|
|
2534
|
-
visible?: boolean
|
|
2536
|
+
visible?: boolean;
|
|
2535
2537
|
externalUrl?: string | null;
|
|
2536
2538
|
appleUrl?: string | null;
|
|
2537
2539
|
spotifyUrl?: string | null;
|
|
@@ -2543,8 +2545,8 @@ interface ChannelContentCreateInputs {
|
|
|
2543
2545
|
title: string;
|
|
2544
2546
|
published?: string | null;
|
|
2545
2547
|
channelId?: string | null;
|
|
2546
|
-
featured?: boolean
|
|
2547
|
-
visible?: boolean
|
|
2548
|
+
featured?: boolean;
|
|
2549
|
+
visible?: boolean;
|
|
2548
2550
|
slug?: string | null;
|
|
2549
2551
|
description?: string | null;
|
|
2550
2552
|
duration?: string | null;
|
|
@@ -2612,8 +2614,8 @@ interface ChannelContentTranslationUpdateInputs {
|
|
|
2612
2614
|
interface ChannelContentUpdateInputs {
|
|
2613
2615
|
published?: string | null;
|
|
2614
2616
|
channelId?: string | null;
|
|
2615
|
-
featured?: boolean
|
|
2616
|
-
visible?: boolean
|
|
2617
|
+
featured?: boolean;
|
|
2618
|
+
visible?: boolean;
|
|
2617
2619
|
title?: string | null;
|
|
2618
2620
|
slug?: string | null;
|
|
2619
2621
|
description?: string | null;
|
|
@@ -2640,7 +2642,7 @@ interface EventActivationCreateInputs {
|
|
|
2640
2642
|
longDescription?: string | null;
|
|
2641
2643
|
maxPoints?: number | string | null;
|
|
2642
2644
|
startAfter?: string | null;
|
|
2643
|
-
protected?: boolean
|
|
2645
|
+
protected?: boolean;
|
|
2644
2646
|
protectionCode?: number | string | null;
|
|
2645
2647
|
email?: boolean;
|
|
2646
2648
|
push?: boolean;
|
|
@@ -2659,7 +2661,7 @@ interface EventActivationUpdateInputs {
|
|
|
2659
2661
|
longDescription?: string | null;
|
|
2660
2662
|
maxPoints?: number | string | null;
|
|
2661
2663
|
startAfter?: string | null;
|
|
2662
|
-
protected?: boolean
|
|
2664
|
+
protected?: boolean;
|
|
2663
2665
|
protectionCode?: number | string | null;
|
|
2664
2666
|
}
|
|
2665
2667
|
interface EventActivationCompletionCreateInputs {
|
|
@@ -2712,7 +2714,7 @@ interface EventBadgeFieldUpdateInputs {
|
|
|
2712
2714
|
interface EventCouponCreateInputs {
|
|
2713
2715
|
code: string;
|
|
2714
2716
|
description?: string | null;
|
|
2715
|
-
active?: boolean
|
|
2717
|
+
active?: boolean;
|
|
2716
2718
|
startDate?: string | null;
|
|
2717
2719
|
endDate?: string | null;
|
|
2718
2720
|
discountAmount?: number | string | null;
|
|
@@ -2729,7 +2731,7 @@ interface EventCouponCreateInputs {
|
|
|
2729
2731
|
interface EventCouponUpdateInputs {
|
|
2730
2732
|
code?: string | null;
|
|
2731
2733
|
description?: string | null;
|
|
2732
|
-
active?: boolean
|
|
2734
|
+
active?: boolean;
|
|
2733
2735
|
startDate?: string | null;
|
|
2734
2736
|
endDate?: string | null;
|
|
2735
2737
|
discountAmount?: number | string | null;
|
|
@@ -2755,8 +2757,8 @@ interface EventCreateInputs {
|
|
|
2755
2757
|
timezone: string;
|
|
2756
2758
|
eventStart: string;
|
|
2757
2759
|
eventEnd: string;
|
|
2758
|
-
featured?: boolean
|
|
2759
|
-
visible?: boolean
|
|
2760
|
+
featured?: boolean;
|
|
2761
|
+
visible?: boolean;
|
|
2760
2762
|
slug?: string | null;
|
|
2761
2763
|
internalRefId?: string | null;
|
|
2762
2764
|
longDescription?: string | null;
|
|
@@ -2773,22 +2775,22 @@ interface EventCreateInputs {
|
|
|
2773
2775
|
zip?: string | null;
|
|
2774
2776
|
creatorId?: string | null;
|
|
2775
2777
|
seriesId?: string | null;
|
|
2776
|
-
approved?: boolean
|
|
2778
|
+
approved?: boolean;
|
|
2777
2779
|
meetingUrl?: string | null;
|
|
2778
|
-
registration?: boolean
|
|
2780
|
+
registration?: boolean;
|
|
2779
2781
|
registrationStart?: string | null;
|
|
2780
2782
|
registrationEnd?: string | null;
|
|
2781
2783
|
registrationLimit?: number | string | null;
|
|
2782
|
-
publicRegistrants?: boolean
|
|
2783
|
-
sessionsVisible?: boolean
|
|
2784
|
-
speakersVisible?: boolean
|
|
2784
|
+
publicRegistrants?: boolean;
|
|
2785
|
+
sessionsVisible?: boolean;
|
|
2786
|
+
speakersVisible?: boolean;
|
|
2785
2787
|
iosAppLink?: string | null;
|
|
2786
2788
|
androidAppLink?: string | null;
|
|
2787
|
-
newActivityCreatorEmailNotification?: boolean
|
|
2788
|
-
newActivityCreatorPushNotification?: boolean
|
|
2789
|
+
newActivityCreatorEmailNotification?: boolean;
|
|
2790
|
+
newActivityCreatorPushNotification?: boolean;
|
|
2789
2791
|
streamReplayId?: string | null;
|
|
2790
2792
|
groupId?: string | null;
|
|
2791
|
-
groupOnly?: boolean
|
|
2793
|
+
groupOnly?: boolean;
|
|
2792
2794
|
}
|
|
2793
2795
|
interface EventEmailUpdateInputs {
|
|
2794
2796
|
body?: string | null;
|
|
@@ -2799,7 +2801,7 @@ interface EventFaqSectionQuestionCreateInputs {
|
|
|
2799
2801
|
answer: string;
|
|
2800
2802
|
slug?: string | null;
|
|
2801
2803
|
priority?: number | string | null;
|
|
2802
|
-
visible?: boolean
|
|
2804
|
+
visible?: boolean;
|
|
2803
2805
|
}
|
|
2804
2806
|
interface EventFaqSectionQuestionTranslationUpdateInputs {
|
|
2805
2807
|
question?: string | null;
|
|
@@ -2810,7 +2812,7 @@ interface EventFaqSectionQuestionUpdateInputs {
|
|
|
2810
2812
|
slug?: string | null;
|
|
2811
2813
|
answer?: string | null;
|
|
2812
2814
|
priority?: number | string | null;
|
|
2813
|
-
visible?: boolean
|
|
2815
|
+
visible?: boolean;
|
|
2814
2816
|
}
|
|
2815
2817
|
interface EventFaqSectionTranslationUpdateInputs {
|
|
2816
2818
|
name?: string | null;
|
|
@@ -2859,15 +2861,15 @@ interface EventAttendeeUpdateInputs {
|
|
|
2859
2861
|
}
|
|
2860
2862
|
interface EventRegistrationBypassCreateInputs {
|
|
2861
2863
|
accountId: string;
|
|
2862
|
-
closed?: boolean
|
|
2863
|
-
preRegister?: boolean
|
|
2864
|
-
postRegister?: boolean
|
|
2864
|
+
closed?: boolean;
|
|
2865
|
+
preRegister?: boolean;
|
|
2866
|
+
postRegister?: boolean;
|
|
2865
2867
|
}
|
|
2866
2868
|
interface EventRegistrationBypassUpdateInputs {
|
|
2867
2869
|
accountId?: string | null;
|
|
2868
|
-
closed?: boolean
|
|
2869
|
-
preRegister?: boolean
|
|
2870
|
-
postRegister?: boolean
|
|
2870
|
+
closed?: boolean;
|
|
2871
|
+
preRegister?: boolean;
|
|
2872
|
+
postRegister?: boolean;
|
|
2871
2873
|
}
|
|
2872
2874
|
interface EventReservationSelectInputs {
|
|
2873
2875
|
reservationStart?: string;
|
|
@@ -2878,7 +2880,7 @@ interface EventReservationSectionCreateInputs {
|
|
|
2878
2880
|
shortDescription?: string | null;
|
|
2879
2881
|
price?: number | string | null;
|
|
2880
2882
|
sortOrder?: number | string | null;
|
|
2881
|
-
pricePerDay?: boolean
|
|
2883
|
+
pricePerDay?: boolean;
|
|
2882
2884
|
imageId?: string | null;
|
|
2883
2885
|
}
|
|
2884
2886
|
interface EventReservationSectionLocationCreateInputs {
|
|
@@ -2908,7 +2910,7 @@ interface EventReservationSectionUpdateInputs {
|
|
|
2908
2910
|
shortDescription?: string | null;
|
|
2909
2911
|
price?: number | string | null;
|
|
2910
2912
|
sortOrder?: number | string | null;
|
|
2911
|
-
pricePerDay?: boolean
|
|
2913
|
+
pricePerDay?: boolean;
|
|
2912
2914
|
imageId?: string | null;
|
|
2913
2915
|
}
|
|
2914
2916
|
interface EventSessionCreateInputs {
|
|
@@ -2919,9 +2921,9 @@ interface EventSessionCreateInputs {
|
|
|
2919
2921
|
location?: string | null;
|
|
2920
2922
|
description?: string | null;
|
|
2921
2923
|
longDescription?: string | null;
|
|
2922
|
-
nonSession?: boolean
|
|
2924
|
+
nonSession?: boolean;
|
|
2923
2925
|
imageId?: string | null;
|
|
2924
|
-
visible?: boolean
|
|
2926
|
+
visible?: boolean;
|
|
2925
2927
|
sortOrder?: number | string | null;
|
|
2926
2928
|
}
|
|
2927
2929
|
interface EventSessionTranslationUpdateInputs {
|
|
@@ -2937,9 +2939,9 @@ interface EventSessionUpdateInputs {
|
|
|
2937
2939
|
location?: string | null;
|
|
2938
2940
|
description?: string | null;
|
|
2939
2941
|
longDescription?: string | null;
|
|
2940
|
-
nonSession?: boolean
|
|
2942
|
+
nonSession?: boolean;
|
|
2941
2943
|
imageId?: string | null;
|
|
2942
|
-
visible?: boolean
|
|
2944
|
+
visible?: boolean;
|
|
2943
2945
|
sortOrder?: number | string | null;
|
|
2944
2946
|
}
|
|
2945
2947
|
interface EventSpeakerCreateInputs {
|
|
@@ -2959,10 +2961,10 @@ interface EventSpeakerCreateInputs {
|
|
|
2959
2961
|
youtube?: string | null;
|
|
2960
2962
|
discord?: string | null;
|
|
2961
2963
|
label?: string | null;
|
|
2962
|
-
isHost?: boolean
|
|
2964
|
+
isHost?: boolean;
|
|
2963
2965
|
imageId?: string | null;
|
|
2964
2966
|
priority?: number | string | null;
|
|
2965
|
-
visible?: boolean
|
|
2967
|
+
visible?: boolean;
|
|
2966
2968
|
}
|
|
2967
2969
|
interface EventSpeakerTranslationUpdateInputs {
|
|
2968
2970
|
title?: string | null;
|
|
@@ -2985,10 +2987,10 @@ interface EventSpeakerUpdateInputs {
|
|
|
2985
2987
|
youtube?: string | null;
|
|
2986
2988
|
discord?: string | null;
|
|
2987
2989
|
label?: string | null;
|
|
2988
|
-
isHost?: boolean
|
|
2990
|
+
isHost?: boolean;
|
|
2989
2991
|
imageId?: string | null;
|
|
2990
2992
|
priority?: number | string | null;
|
|
2991
|
-
visible?: boolean
|
|
2993
|
+
visible?: boolean;
|
|
2992
2994
|
}
|
|
2993
2995
|
interface PassTypeTranslationUpdateInputs {
|
|
2994
2996
|
name?: string | null;
|
|
@@ -3005,8 +3007,8 @@ interface EventTranslationUpdateInputs {
|
|
|
3005
3007
|
longDescription?: string | null;
|
|
3006
3008
|
}
|
|
3007
3009
|
interface EventUpdateInputs {
|
|
3008
|
-
featured?: boolean
|
|
3009
|
-
visible?: boolean
|
|
3010
|
+
featured?: boolean;
|
|
3011
|
+
visible?: boolean;
|
|
3010
3012
|
name?: string | null;
|
|
3011
3013
|
eventType?: keyof typeof EventType | null;
|
|
3012
3014
|
slug?: string | null;
|
|
@@ -3029,23 +3031,23 @@ interface EventUpdateInputs {
|
|
|
3029
3031
|
zip?: string | null;
|
|
3030
3032
|
creatorId?: string | null;
|
|
3031
3033
|
seriesId?: string | null;
|
|
3032
|
-
approved?: boolean
|
|
3034
|
+
approved?: boolean;
|
|
3033
3035
|
meetingUrl?: string | null;
|
|
3034
|
-
registration?: boolean
|
|
3036
|
+
registration?: boolean;
|
|
3035
3037
|
registrationStart?: string | null;
|
|
3036
3038
|
registrationEnd?: string | null;
|
|
3037
3039
|
registrationLimit?: number | null | string;
|
|
3038
|
-
publicRegistrants?: boolean
|
|
3039
|
-
sessionsVisible?: boolean
|
|
3040
|
-
speakersVisible?: boolean
|
|
3041
|
-
inviteOnly?: boolean
|
|
3040
|
+
publicRegistrants?: boolean;
|
|
3041
|
+
sessionsVisible?: boolean;
|
|
3042
|
+
speakersVisible?: boolean;
|
|
3043
|
+
inviteOnly?: boolean;
|
|
3042
3044
|
iosAppLink?: string | null;
|
|
3043
3045
|
androidAppLink?: string | null;
|
|
3044
|
-
newActivityCreatorEmailNotification?: boolean
|
|
3045
|
-
newActivityCreatorPushNotification?: boolean
|
|
3046
|
+
newActivityCreatorEmailNotification?: boolean;
|
|
3047
|
+
newActivityCreatorPushNotification?: boolean;
|
|
3046
3048
|
streamReplayId?: string | null;
|
|
3047
3049
|
groupId?: string | null;
|
|
3048
|
-
groupOnly?: boolean
|
|
3050
|
+
groupOnly?: boolean;
|
|
3049
3051
|
}
|
|
3050
3052
|
interface FileUpdateInputs {
|
|
3051
3053
|
name?: string;
|
|
@@ -3054,21 +3056,21 @@ interface FileUpdateInputs {
|
|
|
3054
3056
|
interface GroupCreateInputs {
|
|
3055
3057
|
name: string;
|
|
3056
3058
|
description: string;
|
|
3057
|
-
featured?: boolean
|
|
3059
|
+
featured?: boolean;
|
|
3058
3060
|
slug?: string | null;
|
|
3059
|
-
active?: boolean
|
|
3061
|
+
active?: boolean;
|
|
3060
3062
|
access?: keyof typeof GroupAccess | null;
|
|
3061
3063
|
imageId?: string | null;
|
|
3062
3064
|
externalUrl?: string | null;
|
|
3063
3065
|
}
|
|
3064
3066
|
interface GroupMembershipUpdateInputs {
|
|
3065
|
-
announcementEmailNotification?: boolean
|
|
3066
|
-
announcementPushNotification?: boolean
|
|
3067
|
-
activityEmailNotification?: boolean
|
|
3068
|
-
activityPushNotification?: boolean
|
|
3069
|
-
eventEmailNotification?: boolean
|
|
3070
|
-
eventPushNotification?: boolean
|
|
3071
|
-
chatPushNotification?: boolean
|
|
3067
|
+
announcementEmailNotification?: boolean;
|
|
3068
|
+
announcementPushNotification?: boolean;
|
|
3069
|
+
activityEmailNotification?: boolean;
|
|
3070
|
+
activityPushNotification?: boolean;
|
|
3071
|
+
eventEmailNotification?: boolean;
|
|
3072
|
+
eventPushNotification?: boolean;
|
|
3073
|
+
chatPushNotification?: boolean;
|
|
3072
3074
|
}
|
|
3073
3075
|
interface OrganizationMembershipUpdateInputs {
|
|
3074
3076
|
org: ModulePermissions;
|
|
@@ -3095,11 +3097,11 @@ interface GroupTranslationUpdateInputs {
|
|
|
3095
3097
|
description?: string | null;
|
|
3096
3098
|
}
|
|
3097
3099
|
interface GroupUpdateInputs {
|
|
3098
|
-
featured?: boolean
|
|
3100
|
+
featured?: boolean;
|
|
3099
3101
|
name?: string | null;
|
|
3100
3102
|
slug?: string | null;
|
|
3101
3103
|
description?: string | null;
|
|
3102
|
-
active?: boolean
|
|
3104
|
+
active?: boolean;
|
|
3103
3105
|
access?: keyof typeof GroupAccess | null;
|
|
3104
3106
|
imageId?: string | null;
|
|
3105
3107
|
externalUrl?: string | null;
|
|
@@ -3122,12 +3124,12 @@ interface ImageUpdateInputs {
|
|
|
3122
3124
|
interface InterestCreateInputs {
|
|
3123
3125
|
name: string;
|
|
3124
3126
|
imageId?: string | null;
|
|
3125
|
-
featured?: boolean
|
|
3127
|
+
featured?: boolean;
|
|
3126
3128
|
}
|
|
3127
3129
|
interface InterestUpdateInputs {
|
|
3128
3130
|
name?: string | null;
|
|
3129
3131
|
imageId?: string | null;
|
|
3130
|
-
featured?: boolean
|
|
3132
|
+
featured?: boolean;
|
|
3131
3133
|
}
|
|
3132
3134
|
interface InvoiceCreateInputs {
|
|
3133
3135
|
title: string;
|
|
@@ -3212,9 +3214,9 @@ interface OrganizationUpdateInputs {
|
|
|
3212
3214
|
discord?: string | null;
|
|
3213
3215
|
defaultAuthAction?: keyof typeof DefaultAuthAction;
|
|
3214
3216
|
authLayout?: keyof typeof AuthLayout;
|
|
3215
|
-
requirePhone?: boolean
|
|
3216
|
-
requireTitle?: boolean
|
|
3217
|
-
requireCompany?: boolean
|
|
3217
|
+
requirePhone?: boolean;
|
|
3218
|
+
requireTitle?: boolean;
|
|
3219
|
+
requireCompany?: boolean;
|
|
3218
3220
|
iosAppLink?: string | null;
|
|
3219
3221
|
androidAppLink?: string | null;
|
|
3220
3222
|
appIconId?: string | null;
|
|
@@ -3252,28 +3254,28 @@ interface EventQuestionCreateInputs {
|
|
|
3252
3254
|
sectionId?: number;
|
|
3253
3255
|
questionId?: number;
|
|
3254
3256
|
choiceId?: number;
|
|
3255
|
-
required?: boolean
|
|
3257
|
+
required?: boolean;
|
|
3256
3258
|
label?: string | null;
|
|
3257
3259
|
placeholder?: string | null;
|
|
3258
3260
|
description?: string | null;
|
|
3259
3261
|
default?: string | null;
|
|
3260
3262
|
span?: number | string | null;
|
|
3261
|
-
mutable?: boolean
|
|
3263
|
+
mutable?: boolean;
|
|
3262
3264
|
min?: string | null;
|
|
3263
3265
|
max?: string | null;
|
|
3264
3266
|
validation?: string | null;
|
|
3265
3267
|
validationMessage?: string | null;
|
|
3266
3268
|
sortOrder?: number | string | null;
|
|
3267
|
-
featured?: boolean
|
|
3269
|
+
featured?: boolean;
|
|
3268
3270
|
choices?: string[] | null;
|
|
3269
3271
|
}
|
|
3270
3272
|
interface EventQuestionSearchInputs {
|
|
3271
3273
|
value: string;
|
|
3272
|
-
top?: boolean
|
|
3274
|
+
top?: boolean;
|
|
3273
3275
|
}
|
|
3274
3276
|
interface EventQuestionSearchValueUpdateInputs {
|
|
3275
3277
|
value?: string | null;
|
|
3276
|
-
top?: boolean
|
|
3278
|
+
top?: boolean;
|
|
3277
3279
|
}
|
|
3278
3280
|
interface EventQuestionTranslationUpdateInputs {
|
|
3279
3281
|
label?: string | null;
|
|
@@ -3283,19 +3285,19 @@ interface EventQuestionTranslationUpdateInputs {
|
|
|
3283
3285
|
interface EventQuestionUpdateInputs {
|
|
3284
3286
|
name?: string | null;
|
|
3285
3287
|
type?: keyof typeof RegistrationQuestionType | null;
|
|
3286
|
-
required?: boolean
|
|
3288
|
+
required?: boolean;
|
|
3287
3289
|
label?: string | null;
|
|
3288
3290
|
placeholder?: string | null;
|
|
3289
3291
|
description?: string | null;
|
|
3290
3292
|
default?: string | null;
|
|
3291
3293
|
span?: number | string | null;
|
|
3292
|
-
mutable?: boolean
|
|
3294
|
+
mutable?: boolean;
|
|
3293
3295
|
min?: string | null;
|
|
3294
3296
|
max?: string | null;
|
|
3295
3297
|
validation?: string | null;
|
|
3296
3298
|
validationMessage?: string | null;
|
|
3297
3299
|
sortOrder?: number | string | null;
|
|
3298
|
-
featured?: boolean
|
|
3300
|
+
featured?: boolean;
|
|
3299
3301
|
}
|
|
3300
3302
|
interface ReportCreateInputs {
|
|
3301
3303
|
name: string;
|
|
@@ -3400,13 +3402,13 @@ interface StreamOutputCreateInputs {
|
|
|
3400
3402
|
}
|
|
3401
3403
|
interface SubscriptionProductCreateInputs {
|
|
3402
3404
|
name: string;
|
|
3403
|
-
active?: boolean
|
|
3405
|
+
active?: boolean;
|
|
3404
3406
|
description?: string | null;
|
|
3405
3407
|
statementDescriptor?: string | null;
|
|
3406
3408
|
features?: string[] | null;
|
|
3407
3409
|
}
|
|
3408
3410
|
interface SubscriptionProductPriceCreateInputs {
|
|
3409
|
-
active?: boolean
|
|
3411
|
+
active?: boolean;
|
|
3410
3412
|
type: keyof typeof SubscriptionProductPriceType;
|
|
3411
3413
|
amount: string | number;
|
|
3412
3414
|
currency: "usd";
|
|
@@ -3414,10 +3416,10 @@ interface SubscriptionProductPriceCreateInputs {
|
|
|
3414
3416
|
intervalCount: string | number;
|
|
3415
3417
|
}
|
|
3416
3418
|
interface SubscriptionProductPriceUpdateInputs {
|
|
3417
|
-
active?: boolean
|
|
3419
|
+
active?: boolean;
|
|
3418
3420
|
}
|
|
3419
3421
|
interface SubscriptionProductUpdateInputs {
|
|
3420
|
-
active?: boolean
|
|
3422
|
+
active?: boolean;
|
|
3421
3423
|
name?: string | null;
|
|
3422
3424
|
description?: string | null;
|
|
3423
3425
|
statementDescriptor?: string | null;
|
|
@@ -3426,7 +3428,7 @@ interface SubscriptionProductUpdateInputs {
|
|
|
3426
3428
|
interface SubscriptionCreateInputs {
|
|
3427
3429
|
status?: SubscriptionStatus;
|
|
3428
3430
|
expiresAt?: string | null;
|
|
3429
|
-
cancelAtEnd?: boolean
|
|
3431
|
+
cancelAtEnd?: boolean;
|
|
3430
3432
|
integrationId?: string | null;
|
|
3431
3433
|
subscriptionProductId?: string | null;
|
|
3432
3434
|
subscriptionProduct?: BaseSubscriptionProduct;
|
|
@@ -3506,8 +3508,8 @@ interface ThreadCreateInputs {
|
|
|
3506
3508
|
access: keyof typeof ThreadAccessLevel;
|
|
3507
3509
|
name: string;
|
|
3508
3510
|
description?: string | null;
|
|
3509
|
-
featured?: boolean
|
|
3510
|
-
visible?: boolean
|
|
3511
|
+
featured?: boolean;
|
|
3512
|
+
visible?: boolean;
|
|
3511
3513
|
groupId?: string | null;
|
|
3512
3514
|
eventId?: string | null;
|
|
3513
3515
|
imageId?: string | null;
|
|
@@ -3518,8 +3520,8 @@ interface ThreadCreateInputs {
|
|
|
3518
3520
|
interface ThreadUpdateInputs {
|
|
3519
3521
|
name?: string | null;
|
|
3520
3522
|
description?: string | null;
|
|
3521
|
-
featured?: boolean
|
|
3522
|
-
visible?: boolean
|
|
3523
|
+
featured?: boolean;
|
|
3524
|
+
visible?: boolean;
|
|
3523
3525
|
access?: keyof typeof ThreadAccessLevel | null;
|
|
3524
3526
|
groupId?: string | null;
|
|
3525
3527
|
eventId?: string | null;
|
|
@@ -3533,9 +3535,9 @@ interface PassTypeCreateInputs {
|
|
|
3533
3535
|
shortDescription: string;
|
|
3534
3536
|
price: string | number;
|
|
3535
3537
|
visibility?: keyof typeof PassTypeVisibility | null;
|
|
3536
|
-
featured?: boolean
|
|
3537
|
-
active?: boolean
|
|
3538
|
-
transferable?: boolean
|
|
3538
|
+
featured?: boolean;
|
|
3539
|
+
active?: boolean;
|
|
3540
|
+
transferable?: boolean;
|
|
3539
3541
|
slug?: string | null;
|
|
3540
3542
|
longDescription?: string | null;
|
|
3541
3543
|
accessLevel?: keyof typeof PassTypeAccessLevel | null;
|
|
@@ -3556,9 +3558,9 @@ interface PassTypeCreateInputs {
|
|
|
3556
3558
|
}
|
|
3557
3559
|
interface PassTypeUpdateInputs {
|
|
3558
3560
|
visibility?: keyof typeof PassTypeVisibility | null;
|
|
3559
|
-
featured?: boolean
|
|
3560
|
-
active?: boolean
|
|
3561
|
-
transferable?: boolean
|
|
3561
|
+
featured?: boolean;
|
|
3562
|
+
active?: boolean;
|
|
3563
|
+
transferable?: boolean;
|
|
3562
3564
|
name?: string | null;
|
|
3563
3565
|
slug?: string | null;
|
|
3564
3566
|
shortDescription?: string | null;
|
|
@@ -3588,7 +3590,7 @@ interface TierCreateInputs {
|
|
|
3588
3590
|
description?: string | null;
|
|
3589
3591
|
imageId?: string | null;
|
|
3590
3592
|
color?: string | null;
|
|
3591
|
-
internal?: boolean
|
|
3593
|
+
internal?: boolean;
|
|
3592
3594
|
}
|
|
3593
3595
|
interface TierUpdateInputs {
|
|
3594
3596
|
name?: string | null;
|
|
@@ -3598,7 +3600,7 @@ interface TierUpdateInputs {
|
|
|
3598
3600
|
description?: string | null;
|
|
3599
3601
|
imageId?: string | null;
|
|
3600
3602
|
color?: string | null;
|
|
3601
|
-
internal?: boolean
|
|
3603
|
+
internal?: boolean;
|
|
3602
3604
|
}
|
|
3603
3605
|
interface EventTrackCreateInputs {
|
|
3604
3606
|
name: string;
|
|
@@ -3614,11 +3616,11 @@ interface EventTrackUpdateInputs {
|
|
|
3614
3616
|
}
|
|
3615
3617
|
interface TriggerCreateInputs {
|
|
3616
3618
|
code: string;
|
|
3617
|
-
enabled?: boolean
|
|
3619
|
+
enabled?: boolean;
|
|
3618
3620
|
}
|
|
3619
3621
|
interface TriggerUpdateInputs {
|
|
3620
3622
|
code?: string | null;
|
|
3621
|
-
enabled?: boolean
|
|
3623
|
+
enabled?: boolean;
|
|
3622
3624
|
}
|
|
3623
3625
|
interface UserCreateInputs {
|
|
3624
3626
|
}
|