@connectedxm/admin 5.2.1 → 5.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.cts +22 -4
- package/dist/index.d.ts +22 -4
- 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;
|
|
@@ -2488,6 +2490,12 @@ interface BaseMeeting {
|
|
|
2488
2490
|
updated_at: string;
|
|
2489
2491
|
}
|
|
2490
2492
|
interface Meeting extends BaseMeeting {
|
|
2493
|
+
eventId?: string;
|
|
2494
|
+
event?: BaseEvent;
|
|
2495
|
+
sessionId?: string;
|
|
2496
|
+
session?: BaseEventSession;
|
|
2497
|
+
groupId?: string;
|
|
2498
|
+
group?: BaseGroup;
|
|
2491
2499
|
"ai_config.transcription.keywords": string[];
|
|
2492
2500
|
"ai_config.transcription.language": "en-US" | "en-IN" | "multi" | "de" | "hi" | "sv" | "ru" | "pl" | "el" | "fr" | "nl" | "tr" | "es" | "it" | "pt" | "pt-BR" | "ro" | "ko" | "id";
|
|
2493
2501
|
"ai_config.transcription.profanity_filter": boolean;
|
|
@@ -2673,6 +2681,7 @@ interface Preset extends BasePreset {
|
|
|
2673
2681
|
}
|
|
2674
2682
|
interface BaseMeetingLink {
|
|
2675
2683
|
id: string;
|
|
2684
|
+
name: string;
|
|
2676
2685
|
passcode: string;
|
|
2677
2686
|
preset_name: string;
|
|
2678
2687
|
requireAuth: boolean;
|
|
@@ -3738,6 +3747,7 @@ interface BaseSurveyQuestion {
|
|
|
3738
3747
|
placeholder: string | null;
|
|
3739
3748
|
default: string | null;
|
|
3740
3749
|
searchListId: string | null;
|
|
3750
|
+
searchList: BaseSearchList | null;
|
|
3741
3751
|
mutable: boolean;
|
|
3742
3752
|
min: string | null;
|
|
3743
3753
|
max: string | null;
|
|
@@ -6142,6 +6152,9 @@ interface RoundSessionQuestionUpdateInputs {
|
|
|
6142
6152
|
type: keyof typeof MatchQuestionType;
|
|
6143
6153
|
}
|
|
6144
6154
|
interface MeetingCreateInputs {
|
|
6155
|
+
eventId?: string;
|
|
6156
|
+
sessionId?: string;
|
|
6157
|
+
groupId?: string;
|
|
6145
6158
|
host_preset: string;
|
|
6146
6159
|
guest_preset: string;
|
|
6147
6160
|
title: string | null;
|
|
@@ -6158,6 +6171,9 @@ interface MeetingCreateInputs {
|
|
|
6158
6171
|
"ai_config.summarization.summary_type"?: "general" | "team_meeting" | "sales_call" | "client_check_in" | "interview" | "daily_standup" | "one_on_one_meeting" | "lecture" | "code_review";
|
|
6159
6172
|
}
|
|
6160
6173
|
interface MeetingUpdateInputs {
|
|
6174
|
+
eventId?: string;
|
|
6175
|
+
sessionId?: string;
|
|
6176
|
+
groupId?: string;
|
|
6161
6177
|
host_preset?: string;
|
|
6162
6178
|
guest_preset?: string;
|
|
6163
6179
|
title?: string | null;
|
|
@@ -6281,12 +6297,14 @@ interface MeetingPresetCreateInputs {
|
|
|
6281
6297
|
"ui.config_diff": Record<string, any>;
|
|
6282
6298
|
}
|
|
6283
6299
|
interface MeetingLinkCreateInputs {
|
|
6300
|
+
name: string;
|
|
6284
6301
|
preset_name: string;
|
|
6285
6302
|
requireAuth: boolean;
|
|
6286
6303
|
}
|
|
6287
6304
|
interface MeetingLinkUpdateInputs {
|
|
6288
|
-
|
|
6289
|
-
|
|
6305
|
+
name?: string;
|
|
6306
|
+
preset_name?: string;
|
|
6307
|
+
requireAuth?: boolean;
|
|
6290
6308
|
}
|
|
6291
6309
|
interface MeetingPresetUpdateInputs {
|
|
6292
6310
|
name?: string | null;
|
|
@@ -15086,12 +15104,12 @@ interface GetMeetingsParams extends InfiniteQueryParams {
|
|
|
15086
15104
|
* @category Queries
|
|
15087
15105
|
* @group StreamsV2
|
|
15088
15106
|
*/
|
|
15089
|
-
declare const GetMeetings: ({ pageParam, pageSize, orderBy, search, adminApiParams, }: GetMeetingsParams) => Promise<ConnectedXMResponse<
|
|
15107
|
+
declare const GetMeetings: ({ pageParam, pageSize, orderBy, search, adminApiParams, }: GetMeetingsParams) => Promise<ConnectedXMResponse<BaseMeeting[]>>;
|
|
15090
15108
|
/**
|
|
15091
15109
|
* @category Hooks
|
|
15092
15110
|
* @group StreamsV2
|
|
15093
15111
|
*/
|
|
15094
|
-
declare const useGetMeetings: (params?: Omit<InfiniteQueryParams, "pageParam" | "queryClient" | "adminApiParams">, options?: InfiniteQueryOptions<Awaited<ReturnType<typeof GetMeetings>>>) => _tanstack_react_query.UseInfiniteQueryResult<_tanstack_react_query.InfiniteData<ConnectedXMResponse<
|
|
15112
|
+
declare const useGetMeetings: (params?: Omit<InfiniteQueryParams, "pageParam" | "queryClient" | "adminApiParams">, options?: InfiniteQueryOptions<Awaited<ReturnType<typeof GetMeetings>>>) => _tanstack_react_query.UseInfiniteQueryResult<_tanstack_react_query.InfiniteData<ConnectedXMResponse<BaseMeeting[]>, number>, axios.AxiosError<ConnectedXMResponse<null>, any>>;
|
|
15095
15113
|
|
|
15096
15114
|
/**
|
|
15097
15115
|
* @category Keys
|
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;
|
|
@@ -2488,6 +2490,12 @@ interface BaseMeeting {
|
|
|
2488
2490
|
updated_at: string;
|
|
2489
2491
|
}
|
|
2490
2492
|
interface Meeting extends BaseMeeting {
|
|
2493
|
+
eventId?: string;
|
|
2494
|
+
event?: BaseEvent;
|
|
2495
|
+
sessionId?: string;
|
|
2496
|
+
session?: BaseEventSession;
|
|
2497
|
+
groupId?: string;
|
|
2498
|
+
group?: BaseGroup;
|
|
2491
2499
|
"ai_config.transcription.keywords": string[];
|
|
2492
2500
|
"ai_config.transcription.language": "en-US" | "en-IN" | "multi" | "de" | "hi" | "sv" | "ru" | "pl" | "el" | "fr" | "nl" | "tr" | "es" | "it" | "pt" | "pt-BR" | "ro" | "ko" | "id";
|
|
2493
2501
|
"ai_config.transcription.profanity_filter": boolean;
|
|
@@ -2673,6 +2681,7 @@ interface Preset extends BasePreset {
|
|
|
2673
2681
|
}
|
|
2674
2682
|
interface BaseMeetingLink {
|
|
2675
2683
|
id: string;
|
|
2684
|
+
name: string;
|
|
2676
2685
|
passcode: string;
|
|
2677
2686
|
preset_name: string;
|
|
2678
2687
|
requireAuth: boolean;
|
|
@@ -3738,6 +3747,7 @@ interface BaseSurveyQuestion {
|
|
|
3738
3747
|
placeholder: string | null;
|
|
3739
3748
|
default: string | null;
|
|
3740
3749
|
searchListId: string | null;
|
|
3750
|
+
searchList: BaseSearchList | null;
|
|
3741
3751
|
mutable: boolean;
|
|
3742
3752
|
min: string | null;
|
|
3743
3753
|
max: string | null;
|
|
@@ -6142,6 +6152,9 @@ interface RoundSessionQuestionUpdateInputs {
|
|
|
6142
6152
|
type: keyof typeof MatchQuestionType;
|
|
6143
6153
|
}
|
|
6144
6154
|
interface MeetingCreateInputs {
|
|
6155
|
+
eventId?: string;
|
|
6156
|
+
sessionId?: string;
|
|
6157
|
+
groupId?: string;
|
|
6145
6158
|
host_preset: string;
|
|
6146
6159
|
guest_preset: string;
|
|
6147
6160
|
title: string | null;
|
|
@@ -6158,6 +6171,9 @@ interface MeetingCreateInputs {
|
|
|
6158
6171
|
"ai_config.summarization.summary_type"?: "general" | "team_meeting" | "sales_call" | "client_check_in" | "interview" | "daily_standup" | "one_on_one_meeting" | "lecture" | "code_review";
|
|
6159
6172
|
}
|
|
6160
6173
|
interface MeetingUpdateInputs {
|
|
6174
|
+
eventId?: string;
|
|
6175
|
+
sessionId?: string;
|
|
6176
|
+
groupId?: string;
|
|
6161
6177
|
host_preset?: string;
|
|
6162
6178
|
guest_preset?: string;
|
|
6163
6179
|
title?: string | null;
|
|
@@ -6281,12 +6297,14 @@ interface MeetingPresetCreateInputs {
|
|
|
6281
6297
|
"ui.config_diff": Record<string, any>;
|
|
6282
6298
|
}
|
|
6283
6299
|
interface MeetingLinkCreateInputs {
|
|
6300
|
+
name: string;
|
|
6284
6301
|
preset_name: string;
|
|
6285
6302
|
requireAuth: boolean;
|
|
6286
6303
|
}
|
|
6287
6304
|
interface MeetingLinkUpdateInputs {
|
|
6288
|
-
|
|
6289
|
-
|
|
6305
|
+
name?: string;
|
|
6306
|
+
preset_name?: string;
|
|
6307
|
+
requireAuth?: boolean;
|
|
6290
6308
|
}
|
|
6291
6309
|
interface MeetingPresetUpdateInputs {
|
|
6292
6310
|
name?: string | null;
|
|
@@ -15086,12 +15104,12 @@ interface GetMeetingsParams extends InfiniteQueryParams {
|
|
|
15086
15104
|
* @category Queries
|
|
15087
15105
|
* @group StreamsV2
|
|
15088
15106
|
*/
|
|
15089
|
-
declare const GetMeetings: ({ pageParam, pageSize, orderBy, search, adminApiParams, }: GetMeetingsParams) => Promise<ConnectedXMResponse<
|
|
15107
|
+
declare const GetMeetings: ({ pageParam, pageSize, orderBy, search, adminApiParams, }: GetMeetingsParams) => Promise<ConnectedXMResponse<BaseMeeting[]>>;
|
|
15090
15108
|
/**
|
|
15091
15109
|
* @category Hooks
|
|
15092
15110
|
* @group StreamsV2
|
|
15093
15111
|
*/
|
|
15094
|
-
declare const useGetMeetings: (params?: Omit<InfiniteQueryParams, "pageParam" | "queryClient" | "adminApiParams">, options?: InfiniteQueryOptions<Awaited<ReturnType<typeof GetMeetings>>>) => _tanstack_react_query.UseInfiniteQueryResult<_tanstack_react_query.InfiniteData<ConnectedXMResponse<
|
|
15112
|
+
declare const useGetMeetings: (params?: Omit<InfiniteQueryParams, "pageParam" | "queryClient" | "adminApiParams">, options?: InfiniteQueryOptions<Awaited<ReturnType<typeof GetMeetings>>>) => _tanstack_react_query.UseInfiniteQueryResult<_tanstack_react_query.InfiniteData<ConnectedXMResponse<BaseMeeting[]>, number>, axios.AxiosError<ConnectedXMResponse<null>, any>>;
|
|
15095
15113
|
|
|
15096
15114
|
/**
|
|
15097
15115
|
* @category Keys
|