@connectedxm/admin 5.2.0 → 5.2.2
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.cts +8 -3
- package/dist/index.d.ts +8 -3
- package/package.json +1 -1
package/dist/index.d.cts
CHANGED
|
@@ -1920,6 +1920,7 @@ interface BaseRegistrationQuestion {
|
|
|
1920
1920
|
placeholder: string | null;
|
|
1921
1921
|
default: string | null;
|
|
1922
1922
|
searchListId: string | null;
|
|
1923
|
+
searchList: BaseSearchList | null;
|
|
1923
1924
|
span: number;
|
|
1924
1925
|
mutable: boolean;
|
|
1925
1926
|
min: string | null;
|
|
@@ -2326,6 +2327,7 @@ interface BaseEventSessionQuestion {
|
|
|
2326
2327
|
placeholder: string | null;
|
|
2327
2328
|
default: string | null;
|
|
2328
2329
|
searchListId: string | null;
|
|
2330
|
+
searchList: BaseSearchList | null;
|
|
2329
2331
|
mutable: boolean;
|
|
2330
2332
|
min: string | null;
|
|
2331
2333
|
max: string | null;
|
|
@@ -2673,13 +2675,13 @@ interface Preset extends BasePreset {
|
|
|
2673
2675
|
}
|
|
2674
2676
|
interface BaseMeetingLink {
|
|
2675
2677
|
id: string;
|
|
2676
|
-
meetingId: string;
|
|
2677
2678
|
passcode: string;
|
|
2678
2679
|
preset_name: string;
|
|
2679
|
-
|
|
2680
|
-
updatedAt: string;
|
|
2680
|
+
requireAuth: boolean;
|
|
2681
2681
|
}
|
|
2682
2682
|
interface MeetingLink extends BaseMeetingLink {
|
|
2683
|
+
createdAt: string;
|
|
2684
|
+
updatedAt: string;
|
|
2683
2685
|
}
|
|
2684
2686
|
declare enum MembershipPriceType {
|
|
2685
2687
|
flat = "flat",
|
|
@@ -3738,6 +3740,7 @@ interface BaseSurveyQuestion {
|
|
|
3738
3740
|
placeholder: string | null;
|
|
3739
3741
|
default: string | null;
|
|
3740
3742
|
searchListId: string | null;
|
|
3743
|
+
searchList: BaseSearchList | null;
|
|
3741
3744
|
mutable: boolean;
|
|
3742
3745
|
min: string | null;
|
|
3743
3746
|
max: string | null;
|
|
@@ -6282,9 +6285,11 @@ interface MeetingPresetCreateInputs {
|
|
|
6282
6285
|
}
|
|
6283
6286
|
interface MeetingLinkCreateInputs {
|
|
6284
6287
|
preset_name: string;
|
|
6288
|
+
requireAuth: boolean;
|
|
6285
6289
|
}
|
|
6286
6290
|
interface MeetingLinkUpdateInputs {
|
|
6287
6291
|
preset_name: string;
|
|
6292
|
+
requireAuth: boolean;
|
|
6288
6293
|
}
|
|
6289
6294
|
interface MeetingPresetUpdateInputs {
|
|
6290
6295
|
name?: string | null;
|
package/dist/index.d.ts
CHANGED
|
@@ -1920,6 +1920,7 @@ interface BaseRegistrationQuestion {
|
|
|
1920
1920
|
placeholder: string | null;
|
|
1921
1921
|
default: string | null;
|
|
1922
1922
|
searchListId: string | null;
|
|
1923
|
+
searchList: BaseSearchList | null;
|
|
1923
1924
|
span: number;
|
|
1924
1925
|
mutable: boolean;
|
|
1925
1926
|
min: string | null;
|
|
@@ -2326,6 +2327,7 @@ interface BaseEventSessionQuestion {
|
|
|
2326
2327
|
placeholder: string | null;
|
|
2327
2328
|
default: string | null;
|
|
2328
2329
|
searchListId: string | null;
|
|
2330
|
+
searchList: BaseSearchList | null;
|
|
2329
2331
|
mutable: boolean;
|
|
2330
2332
|
min: string | null;
|
|
2331
2333
|
max: string | null;
|
|
@@ -2673,13 +2675,13 @@ interface Preset extends BasePreset {
|
|
|
2673
2675
|
}
|
|
2674
2676
|
interface BaseMeetingLink {
|
|
2675
2677
|
id: string;
|
|
2676
|
-
meetingId: string;
|
|
2677
2678
|
passcode: string;
|
|
2678
2679
|
preset_name: string;
|
|
2679
|
-
|
|
2680
|
-
updatedAt: string;
|
|
2680
|
+
requireAuth: boolean;
|
|
2681
2681
|
}
|
|
2682
2682
|
interface MeetingLink extends BaseMeetingLink {
|
|
2683
|
+
createdAt: string;
|
|
2684
|
+
updatedAt: string;
|
|
2683
2685
|
}
|
|
2684
2686
|
declare enum MembershipPriceType {
|
|
2685
2687
|
flat = "flat",
|
|
@@ -3738,6 +3740,7 @@ interface BaseSurveyQuestion {
|
|
|
3738
3740
|
placeholder: string | null;
|
|
3739
3741
|
default: string | null;
|
|
3740
3742
|
searchListId: string | null;
|
|
3743
|
+
searchList: BaseSearchList | null;
|
|
3741
3744
|
mutable: boolean;
|
|
3742
3745
|
min: string | null;
|
|
3743
3746
|
max: string | null;
|
|
@@ -6282,9 +6285,11 @@ interface MeetingPresetCreateInputs {
|
|
|
6282
6285
|
}
|
|
6283
6286
|
interface MeetingLinkCreateInputs {
|
|
6284
6287
|
preset_name: string;
|
|
6288
|
+
requireAuth: boolean;
|
|
6285
6289
|
}
|
|
6286
6290
|
interface MeetingLinkUpdateInputs {
|
|
6287
6291
|
preset_name: string;
|
|
6292
|
+
requireAuth: boolean;
|
|
6288
6293
|
}
|
|
6289
6294
|
interface MeetingPresetUpdateInputs {
|
|
6290
6295
|
name?: string | null;
|