@contio/partner-sdk 1.9.0 → 1.11.0
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/README.md +28 -0
- package/dist/client/base.d.ts +1 -1
- package/dist/client/base.d.ts.map +1 -1
- package/dist/client/base.js +1 -1
- package/dist/client/base.js.map +1 -1
- package/dist/client/user/attachments.d.ts +10 -0
- package/dist/client/user/attachments.d.ts.map +1 -0
- package/dist/client/user/attachments.js +55 -0
- package/dist/client/user/attachments.js.map +1 -0
- package/dist/client/user/backlogItems.d.ts +13 -0
- package/dist/client/user/backlogItems.d.ts.map +1 -0
- package/dist/client/user/backlogItems.js +59 -0
- package/dist/client/user/backlogItems.js.map +1 -0
- package/dist/client/user/index.d.ts +18 -1
- package/dist/client/user/index.d.ts.map +1 -1
- package/dist/client/user/index.js +53 -0
- package/dist/client/user/index.js.map +1 -1
- package/dist/client/user/meetings.d.ts +3 -1
- package/dist/client/user/meetings.d.ts.map +1 -1
- package/dist/client/user/meetings.js +18 -0
- package/dist/client/user/meetings.js.map +1 -1
- package/dist/esm/client/base.js +1 -1
- package/dist/esm/client/base.js.map +1 -1
- package/dist/esm/client/user/attachments.js +55 -0
- package/dist/esm/client/user/attachments.js.map +1 -0
- package/dist/esm/client/user/backlogItems.js +59 -0
- package/dist/esm/client/user/backlogItems.js.map +1 -0
- package/dist/esm/client/user/index.js +53 -0
- package/dist/esm/client/user/index.js.map +1 -1
- package/dist/esm/client/user/meetings.js +18 -0
- package/dist/esm/client/user/meetings.js.map +1 -1
- package/dist/esm/models/attachments.js +3 -0
- package/dist/esm/models/attachments.js.map +1 -0
- package/dist/esm/models/backlogItems.js +3 -0
- package/dist/esm/models/backlogItems.js.map +1 -0
- package/dist/esm/models/index.js +2 -0
- package/dist/esm/models/index.js.map +1 -1
- package/dist/generated/api-types.d.ts +202 -8
- package/dist/generated/api-types.d.ts.map +1 -1
- package/dist/models/agendaItems.d.ts +9 -4
- package/dist/models/agendaItems.d.ts.map +1 -1
- package/dist/models/attachments.d.ts +38 -0
- package/dist/models/attachments.d.ts.map +1 -0
- package/dist/models/attachments.js +3 -0
- package/dist/models/attachments.js.map +1 -0
- package/dist/models/backlogItems.d.ts +62 -0
- package/dist/models/backlogItems.d.ts.map +1 -0
- package/dist/models/backlogItems.js +3 -0
- package/dist/models/backlogItems.js.map +1 -0
- package/dist/models/index.d.ts +2 -0
- package/dist/models/index.d.ts.map +1 -1
- package/dist/models/index.js +2 -0
- package/dist/models/index.js.map +1 -1
- package/dist/models/meetings.d.ts +12 -0
- package/dist/models/meetings.d.ts.map +1 -1
- package/package.json +1 -1
|
@@ -170,6 +170,31 @@ export type ApplyMeetingTemplateError = ErrorsPartnerErrorResponse | MiddlewareF
|
|
|
170
170
|
export interface ApplyMeetingTemplateParams {
|
|
171
171
|
id: string;
|
|
172
172
|
}
|
|
173
|
+
export type AssignBacklogItemData = BacklogItemAssignBacklogItemResponse;
|
|
174
|
+
export type AssignBacklogItemError = ErrorsPartnerErrorResponse;
|
|
175
|
+
export interface AssignBacklogItemParams {
|
|
176
|
+
id: string;
|
|
177
|
+
}
|
|
178
|
+
export interface AttachmentsAttachmentListResponse {
|
|
179
|
+
items?: AttachmentsAttachmentResponse[];
|
|
180
|
+
limit?: number;
|
|
181
|
+
offset?: number;
|
|
182
|
+
total?: number;
|
|
183
|
+
}
|
|
184
|
+
export interface AttachmentsAttachmentResponse {
|
|
185
|
+
access_level?: "just_me" | "meeting" | "workspace";
|
|
186
|
+
created_at?: string;
|
|
187
|
+
created_by_user_id?: string;
|
|
188
|
+
external_content_url?: string;
|
|
189
|
+
file_name?: string;
|
|
190
|
+
id?: string;
|
|
191
|
+
kind?: "file" | "link";
|
|
192
|
+
meeting_id?: string;
|
|
193
|
+
mime_type?: string;
|
|
194
|
+
size_bytes?: number;
|
|
195
|
+
updated_at?: string;
|
|
196
|
+
workspace_id?: string;
|
|
197
|
+
}
|
|
173
198
|
export type AuthorizeOauthError = ErrorsErrorResponse;
|
|
174
199
|
export interface AuthorizeOauthParams {
|
|
175
200
|
client_id: string;
|
|
@@ -215,6 +240,49 @@ export interface AutomationUpdateAutomationRequest {
|
|
|
215
240
|
status?: "active" | "inactive";
|
|
216
241
|
trigger_type?: "action_item_created" | "action_item_updated" | "action_item_completed" | "meeting_ended" | "meeting_summary_ready";
|
|
217
242
|
}
|
|
243
|
+
export interface BacklogItemAssignBacklogItemRequest {
|
|
244
|
+
meeting_id: string;
|
|
245
|
+
}
|
|
246
|
+
export interface BacklogItemAssignBacklogItemResponse {
|
|
247
|
+
agenda_item_id?: string;
|
|
248
|
+
backlog_item_id?: string;
|
|
249
|
+
meeting_id?: string;
|
|
250
|
+
}
|
|
251
|
+
export interface BacklogItemCreateBacklogItemRequest {
|
|
252
|
+
description?: string;
|
|
253
|
+
item_type: "DISCUSSION" | "QUESTIONS_TO_ANSWER" | "BREAK" | "ADJOURN";
|
|
254
|
+
presenters?: string[];
|
|
255
|
+
talking_points?: string;
|
|
256
|
+
time_allocation_minutes?: number;
|
|
257
|
+
title: string;
|
|
258
|
+
}
|
|
259
|
+
export interface BacklogItemPartnerBacklogItemResponse {
|
|
260
|
+
agenda_item_id?: string;
|
|
261
|
+
assigned_at?: string;
|
|
262
|
+
deferred_at?: string;
|
|
263
|
+
deferrer_user_id?: string;
|
|
264
|
+
deleted_at?: string;
|
|
265
|
+
description?: string;
|
|
266
|
+
destination_agenda_item_id?: string;
|
|
267
|
+
destination_meeting_id?: string;
|
|
268
|
+
id?: string;
|
|
269
|
+
item_type?: "DISCUSSION" | "QUESTIONS_TO_ANSWER" | "BREAK" | "ADJOURN";
|
|
270
|
+
origin_meeting_id?: string;
|
|
271
|
+
origin_meeting_title?: string;
|
|
272
|
+
origin_type?: "MANUAL" | "MEETING" | "SMS";
|
|
273
|
+
presenters?: string[];
|
|
274
|
+
talking_points?: string;
|
|
275
|
+
time_allocation_minutes?: number;
|
|
276
|
+
title?: string;
|
|
277
|
+
}
|
|
278
|
+
export interface BacklogItemUpdateBacklogItemRequest {
|
|
279
|
+
description?: string;
|
|
280
|
+
item_type?: "DISCUSSION" | "QUESTIONS_TO_ANSWER" | "BREAK" | "ADJOURN";
|
|
281
|
+
presenters?: string[];
|
|
282
|
+
talking_points?: string;
|
|
283
|
+
time_allocation_minutes?: number;
|
|
284
|
+
title?: string;
|
|
285
|
+
}
|
|
218
286
|
export interface CalendarCreateMeetingFromCalendarEventError400 {
|
|
219
287
|
code?: "invalid_calendar_event_id" | "invalid_request";
|
|
220
288
|
error?: string;
|
|
@@ -300,6 +368,8 @@ export interface ContextMeetingContextResponse {
|
|
|
300
368
|
partner_app_id?: string;
|
|
301
369
|
platform_name?: string;
|
|
302
370
|
source_format?: string;
|
|
371
|
+
source_id?: string;
|
|
372
|
+
source_name?: string;
|
|
303
373
|
title?: string;
|
|
304
374
|
updated_at?: string;
|
|
305
375
|
workspace_id?: string;
|
|
@@ -308,6 +378,8 @@ export type CreateActionItemData = ActionItemPartnerActionItemResponse;
|
|
|
308
378
|
export type CreateActionItemError = ActionItemCreateActionItemError400 | ErrorsPartnerErrorResponse;
|
|
309
379
|
export type CreateAutomationData = AutomationAutomationResponse;
|
|
310
380
|
export type CreateAutomationError = AutomationCreateAutomationError400 | ErrorsPartnerErrorResponse;
|
|
381
|
+
export type CreateBacklogItemData = BacklogItemPartnerBacklogItemResponse;
|
|
382
|
+
export type CreateBacklogItemError = ErrorsPartnerErrorResponse;
|
|
311
383
|
export type CreateCalendarEventMeetingData = CalendarPartnerCreateMeetingFromCalendarEventResponse;
|
|
312
384
|
export type CreateCalendarEventMeetingError = CalendarCreateMeetingFromCalendarEventError400 | ErrorsPartnerErrorResponse;
|
|
313
385
|
export interface CreateCalendarEventMeetingParams {
|
|
@@ -320,6 +392,16 @@ export type CreateMeetingAgendaItemError = ErrorsPartnerErrorResponse;
|
|
|
320
392
|
export interface CreateMeetingAgendaItemParams {
|
|
321
393
|
id: string;
|
|
322
394
|
}
|
|
395
|
+
export type CreateMeetingAttachmentData = AttachmentsAttachmentResponse;
|
|
396
|
+
export type CreateMeetingAttachmentError = ErrorsPartnerErrorResponse;
|
|
397
|
+
export interface CreateMeetingAttachmentParams {
|
|
398
|
+
id: string;
|
|
399
|
+
}
|
|
400
|
+
export interface CreateMeetingAttachmentPayload {
|
|
401
|
+
access_level?: "just_me" | "meeting" | "workspace";
|
|
402
|
+
file: File;
|
|
403
|
+
kind?: "file";
|
|
404
|
+
}
|
|
323
405
|
export type CreateMeetingData = SharedPartnerMeetingResponse;
|
|
324
406
|
export type CreateMeetingError = MeetingCreateMeetingError400 | ErrorsPartnerErrorResponse;
|
|
325
407
|
export type CreateSessionData = SessionCreateSessionResponse;
|
|
@@ -400,6 +482,11 @@ export type DeleteAutomationError = ErrorsPartnerErrorResponse;
|
|
|
400
482
|
export interface DeleteAutomationParams {
|
|
401
483
|
automationId: string;
|
|
402
484
|
}
|
|
485
|
+
export type DeleteBacklogItemData = any;
|
|
486
|
+
export type DeleteBacklogItemError = ErrorsPartnerErrorResponse;
|
|
487
|
+
export interface DeleteBacklogItemParams {
|
|
488
|
+
id: string;
|
|
489
|
+
}
|
|
403
490
|
export type DeleteIdpConfigData = any;
|
|
404
491
|
export type DeleteIdpConfigError = ErrorsPartnerErrorResponse;
|
|
405
492
|
export type DeleteMeetingAgendaItemData = any;
|
|
@@ -408,6 +495,12 @@ export interface DeleteMeetingAgendaItemParams {
|
|
|
408
495
|
id: string;
|
|
409
496
|
itemId: string;
|
|
410
497
|
}
|
|
498
|
+
export type DeleteMeetingAttachmentData = any;
|
|
499
|
+
export type DeleteMeetingAttachmentError = ErrorsPartnerErrorResponse;
|
|
500
|
+
export interface DeleteMeetingAttachmentParams {
|
|
501
|
+
attachmentId: string;
|
|
502
|
+
id: string;
|
|
503
|
+
}
|
|
411
504
|
export type DeleteMeetingContextData = any;
|
|
412
505
|
export type DeleteMeetingContextError = ErrorsPartnerErrorResponse;
|
|
413
506
|
export interface DeleteMeetingContextParams {
|
|
@@ -421,6 +514,12 @@ export interface DeleteTemplateParams {
|
|
|
421
514
|
}
|
|
422
515
|
export type DeleteWebhookFilterData = SharedPartnerAppResponse;
|
|
423
516
|
export type DeleteWebhookFilterError = ErrorsPartnerErrorResponse;
|
|
517
|
+
export type DownloadMeetingAttachmentData = File;
|
|
518
|
+
export type DownloadMeetingAttachmentError = ErrorsPartnerErrorResponse;
|
|
519
|
+
export interface DownloadMeetingAttachmentParams {
|
|
520
|
+
attachmentId: string;
|
|
521
|
+
id: string;
|
|
522
|
+
}
|
|
424
523
|
export type DownloadMeetingContextContentData = File;
|
|
425
524
|
export type DownloadMeetingContextContentError = ErrorsPartnerErrorResponse;
|
|
426
525
|
export interface DownloadMeetingContextContentParams {
|
|
@@ -428,7 +527,7 @@ export interface DownloadMeetingContextContentParams {
|
|
|
428
527
|
id: string;
|
|
429
528
|
}
|
|
430
529
|
export interface ErrorsErrorResponse {
|
|
431
|
-
code?: "not_found" | "note_not_found" | "bad_request" | "validation_error" | "next_step_prompt_rejected" | "next_step_no_meeting_content" | "unauthorized" | "forbidden" | "conflict" | "resource_already_exists" | "too_many_requests" | "internal_server_error" | "toolkit_slug_collision" | "manifest_validation_failed" | "toolkit_requires_annual";
|
|
530
|
+
code?: "not_found" | "note_not_found" | "bad_request" | "validation_error" | "next_step_prompt_rejected" | "next_step_no_meeting_content" | "unauthorized" | "forbidden" | "conflict" | "resource_already_exists" | "too_many_requests" | "internal_server_error" | "toolkit_slug_collision" | "manifest_validation_failed" | "toolkit_requires_annual" | "product_has_no_purchasable_plans";
|
|
432
531
|
message?: string;
|
|
433
532
|
request_id?: string;
|
|
434
533
|
}
|
|
@@ -479,6 +578,11 @@ export type GetAutomationError = ErrorsPartnerErrorResponse;
|
|
|
479
578
|
export interface GetAutomationParams {
|
|
480
579
|
automationId: string;
|
|
481
580
|
}
|
|
581
|
+
export type GetBacklogItemData = BacklogItemPartnerBacklogItemResponse;
|
|
582
|
+
export type GetBacklogItemError = ErrorsPartnerErrorResponse;
|
|
583
|
+
export interface GetBacklogItemParams {
|
|
584
|
+
id: string;
|
|
585
|
+
}
|
|
482
586
|
export type GetCalendarEventData = CalendarPartnerCalendarEventResponse;
|
|
483
587
|
export type GetCalendarEventError = ErrorsPartnerErrorResponse;
|
|
484
588
|
export interface GetCalendarEventParams {
|
|
@@ -498,6 +602,12 @@ export type GetIdpDomainVerificationError = IdpDomainVerificationError400 | Erro
|
|
|
498
602
|
export interface GetIdpDomainVerificationParams {
|
|
499
603
|
domain: string;
|
|
500
604
|
}
|
|
605
|
+
export type GetMeetingAttachmentData = AttachmentsAttachmentResponse;
|
|
606
|
+
export type GetMeetingAttachmentError = ErrorsPartnerErrorResponse;
|
|
607
|
+
export interface GetMeetingAttachmentParams {
|
|
608
|
+
attachmentId: string;
|
|
609
|
+
id: string;
|
|
610
|
+
}
|
|
501
611
|
export type GetMeetingContextData = ContextMeetingContextResponse;
|
|
502
612
|
export type GetMeetingContextError = ErrorsPartnerErrorResponse;
|
|
503
613
|
export interface GetMeetingContextParams {
|
|
@@ -688,6 +798,20 @@ export interface ListAutomationsParams {
|
|
|
688
798
|
limit?: number;
|
|
689
799
|
offset?: number;
|
|
690
800
|
}
|
|
801
|
+
export type ListBacklogItemHistoryData = RomeApiControllersExternalPartnerUserSharedListResponseBacklogItemPartnerBacklogItemResponse;
|
|
802
|
+
export type ListBacklogItemHistoryError = ErrorsPartnerErrorResponse;
|
|
803
|
+
export interface ListBacklogItemHistoryParams {
|
|
804
|
+
limit?: number;
|
|
805
|
+
offset?: number;
|
|
806
|
+
sort_order?: "asc" | "desc";
|
|
807
|
+
}
|
|
808
|
+
export type ListBacklogItemsData = RomeApiControllersExternalPartnerUserSharedListResponseBacklogItemPartnerBacklogItemResponse;
|
|
809
|
+
export type ListBacklogItemsError = ErrorsPartnerErrorResponse;
|
|
810
|
+
export interface ListBacklogItemsParams {
|
|
811
|
+
limit?: number;
|
|
812
|
+
offset?: number;
|
|
813
|
+
sort_order?: "asc" | "desc";
|
|
814
|
+
}
|
|
691
815
|
export type ListCalendarEventsData = RomeApiControllersExternalPartnerUserSharedListResponseCalendarPartnerCalendarEventResponse;
|
|
692
816
|
export type ListCalendarEventsError = CalendarGetCalendarEventsError400 | ErrorsPartnerErrorResponse;
|
|
693
817
|
export interface ListCalendarEventsParams {
|
|
@@ -729,6 +853,13 @@ export type ListMeetingAgendaItemsError = ErrorsPartnerErrorResponse;
|
|
|
729
853
|
export interface ListMeetingAgendaItemsParams {
|
|
730
854
|
id: string;
|
|
731
855
|
}
|
|
856
|
+
export type ListMeetingAttachmentsData = AttachmentsAttachmentListResponse;
|
|
857
|
+
export type ListMeetingAttachmentsError = ErrorsPartnerErrorResponse;
|
|
858
|
+
export interface ListMeetingAttachmentsParams {
|
|
859
|
+
id: string;
|
|
860
|
+
limit?: number;
|
|
861
|
+
offset?: number;
|
|
862
|
+
}
|
|
732
863
|
export type ListMeetingContextsData = ContextMeetingContextListResponse;
|
|
733
864
|
export type ListMeetingContextsError = ErrorsPartnerErrorResponse;
|
|
734
865
|
export interface ListMeetingContextsParams {
|
|
@@ -821,9 +952,9 @@ export interface MeetingAddParticipantRequest {
|
|
|
821
952
|
}
|
|
822
953
|
export interface MeetingCreateAgendaItemRequest {
|
|
823
954
|
description?: string;
|
|
824
|
-
item_type: "DISCUSSION" | "
|
|
955
|
+
item_type: "DISCUSSION" | "QUESTIONS_TO_ANSWER" | "BREAK" | "ADJOURN";
|
|
825
956
|
presenters?: string[];
|
|
826
|
-
|
|
957
|
+
sequence?: string;
|
|
827
958
|
talking_points?: string;
|
|
828
959
|
time_allocation_minutes?: number;
|
|
829
960
|
title: string;
|
|
@@ -844,8 +975,8 @@ export interface MeetingPartnerAgendaItemResponse {
|
|
|
844
975
|
id?: string;
|
|
845
976
|
item_type?: string;
|
|
846
977
|
meeting_id?: string;
|
|
978
|
+
presenter_details?: SharedV1UserRef[];
|
|
847
979
|
presenters?: string[];
|
|
848
|
-
restricted_to_leads?: boolean;
|
|
849
980
|
sequence?: string;
|
|
850
981
|
status?: string;
|
|
851
982
|
talking_points?: string;
|
|
@@ -879,6 +1010,11 @@ export interface MeetingPartnerUpdateMeetingRequest {
|
|
|
879
1010
|
template_id?: string;
|
|
880
1011
|
title?: string;
|
|
881
1012
|
}
|
|
1013
|
+
export interface MeetingSearchMeetingsError400 {
|
|
1014
|
+
code?: "invalid_query_parameters" | "invalid_start_date" | "invalid_end_date";
|
|
1015
|
+
error?: string;
|
|
1016
|
+
request_id?: string;
|
|
1017
|
+
}
|
|
882
1018
|
export interface MeetingTemplateAppliedItemsCountsResponse {
|
|
883
1019
|
agenda_items?: number;
|
|
884
1020
|
documents?: number;
|
|
@@ -925,9 +1061,9 @@ export interface MeetingTemplateTemplateNextStepResponse {
|
|
|
925
1061
|
}
|
|
926
1062
|
export interface MeetingUpdateAgendaItemRequest {
|
|
927
1063
|
description?: string;
|
|
928
|
-
item_type?: "DISCUSSION" | "
|
|
1064
|
+
item_type?: "DISCUSSION" | "QUESTIONS_TO_ANSWER" | "BREAK" | "ADJOURN";
|
|
929
1065
|
presenters?: string[];
|
|
930
|
-
|
|
1066
|
+
sequence?: string;
|
|
931
1067
|
status?: "pending" | "in_progress" | "completed";
|
|
932
1068
|
talking_points?: string;
|
|
933
1069
|
time_allocation_minutes?: number;
|
|
@@ -1032,12 +1168,24 @@ export interface PartnerAutomationAction {
|
|
|
1032
1168
|
config?: Record<string, string>;
|
|
1033
1169
|
type: string;
|
|
1034
1170
|
}
|
|
1171
|
+
export type PatchActionItemData = ActionItemPartnerActionItemResponse;
|
|
1172
|
+
export type PatchActionItemError = ActionItemUpdateActionItemError400 | ErrorsPartnerErrorResponse;
|
|
1173
|
+
export interface PatchActionItemParams {
|
|
1174
|
+
id: string;
|
|
1175
|
+
}
|
|
1176
|
+
export type PatchMeetingAgendaItemData = MeetingPartnerAgendaItemResponse;
|
|
1177
|
+
export type PatchMeetingAgendaItemError = ErrorsPartnerErrorResponse;
|
|
1178
|
+
export interface PatchMeetingAgendaItemParams {
|
|
1179
|
+
id: string;
|
|
1180
|
+
itemId: string;
|
|
1181
|
+
}
|
|
1035
1182
|
export interface ProfileUserProfileResponse {
|
|
1036
1183
|
created_at?: string;
|
|
1037
1184
|
display_name?: string;
|
|
1038
1185
|
email?: string;
|
|
1039
1186
|
id?: string;
|
|
1040
1187
|
plan_type?: string;
|
|
1188
|
+
timezone?: string;
|
|
1041
1189
|
workspace_id?: string;
|
|
1042
1190
|
workspace_name?: string;
|
|
1043
1191
|
workspace_role?: string;
|
|
@@ -1215,6 +1363,12 @@ export interface RomeApiControllersExternalPartnerUserSharedListResponseActionIt
|
|
|
1215
1363
|
offset?: number;
|
|
1216
1364
|
total?: number;
|
|
1217
1365
|
}
|
|
1366
|
+
export interface RomeApiControllersExternalPartnerUserSharedListResponseBacklogItemPartnerBacklogItemResponse {
|
|
1367
|
+
items?: BacklogItemPartnerBacklogItemResponse[];
|
|
1368
|
+
limit?: number;
|
|
1369
|
+
offset?: number;
|
|
1370
|
+
total?: number;
|
|
1371
|
+
}
|
|
1218
1372
|
export interface RomeApiControllersExternalPartnerUserSharedListResponseCalendarPartnerCalendarEventResponse {
|
|
1219
1373
|
items?: CalendarPartnerCalendarEventResponse[];
|
|
1220
1374
|
limit?: number;
|
|
@@ -1313,6 +1467,19 @@ export type RotateClientSecretData = CredentialCredentialRotationResponse;
|
|
|
1313
1467
|
export type RotateClientSecretError = CredentialRotateClientSecretError400 | ErrorsPartnerErrorResponse;
|
|
1314
1468
|
export type RotateWebhookSecretData = CredentialCredentialRotationResponse;
|
|
1315
1469
|
export type RotateWebhookSecretError = CredentialRotateWebhookSecretError400 | ErrorsPartnerErrorResponse;
|
|
1470
|
+
export type SearchMeetingsData = RomeApiControllersExternalPartnerUserSharedListResponseSharedPartnerMeetingResponse;
|
|
1471
|
+
export type SearchMeetingsError = MeetingSearchMeetingsError400 | ErrorsPartnerErrorResponse;
|
|
1472
|
+
export interface SearchMeetingsParams {
|
|
1473
|
+
has_action_items?: boolean;
|
|
1474
|
+
limit?: number;
|
|
1475
|
+
offset?: number;
|
|
1476
|
+
participant_emails?: string;
|
|
1477
|
+
q?: string;
|
|
1478
|
+
start_time_from?: string;
|
|
1479
|
+
start_time_to?: string;
|
|
1480
|
+
status?: "scheduled" | "completed";
|
|
1481
|
+
title_contains?: string;
|
|
1482
|
+
}
|
|
1316
1483
|
export type SendSessionMessageData = SessionSendMessageResponse;
|
|
1317
1484
|
export type SendSessionMessageError = ErrorsPartnerErrorResponse | MiddlewareFeatureNotAvailableResponse;
|
|
1318
1485
|
export interface SendSessionMessageParams {
|
|
@@ -1438,6 +1605,7 @@ export interface SharedPartnerAppResponse {
|
|
|
1438
1605
|
webhook_url?: string;
|
|
1439
1606
|
}
|
|
1440
1607
|
export interface SharedPartnerMeetingResponse {
|
|
1608
|
+
applied_template_ids?: string[];
|
|
1441
1609
|
calendar_event_id?: string;
|
|
1442
1610
|
created_at?: string;
|
|
1443
1611
|
created_by_user_id?: string;
|
|
@@ -1462,6 +1630,11 @@ export interface SharedTriggerActionButtonResponse {
|
|
|
1462
1630
|
invocation_id?: string;
|
|
1463
1631
|
message?: string;
|
|
1464
1632
|
}
|
|
1633
|
+
export interface SharedV1UserRef {
|
|
1634
|
+
email?: string;
|
|
1635
|
+
name?: string;
|
|
1636
|
+
user_id?: string;
|
|
1637
|
+
}
|
|
1465
1638
|
export interface SharedWebhookFilterResponse {
|
|
1466
1639
|
events?: string[];
|
|
1467
1640
|
type?: string;
|
|
@@ -1613,7 +1786,7 @@ export interface ToolkitManifestActionButton {
|
|
|
1613
1786
|
export interface ToolkitManifestActionButtonSpec {
|
|
1614
1787
|
$id?: string;
|
|
1615
1788
|
content_format: "rich_text" | "markdown" | "plain_text" | "html";
|
|
1616
|
-
delivery_mechanism: "clipboard" | "email" | "os_email_client" | "file_download" | "integration" | "webhook" | "redirect";
|
|
1789
|
+
delivery_mechanism: "clipboard" | "email" | "os_email_client" | "file_download" | "integration" | "webhook" | "redirect" | "canvas";
|
|
1617
1790
|
file_format?: string;
|
|
1618
1791
|
icon_name?: string;
|
|
1619
1792
|
integration_type?: string;
|
|
@@ -1621,6 +1794,7 @@ export interface ToolkitManifestActionButtonSpec {
|
|
|
1621
1794
|
name: string;
|
|
1622
1795
|
redirect_url?: string;
|
|
1623
1796
|
requires_connected_integration?: boolean;
|
|
1797
|
+
slug?: string;
|
|
1624
1798
|
sort_order?: number;
|
|
1625
1799
|
webhook_url?: string;
|
|
1626
1800
|
}
|
|
@@ -1628,7 +1802,6 @@ export interface ToolkitManifestAgendaItemSpec {
|
|
|
1628
1802
|
content?: string;
|
|
1629
1803
|
description?: string;
|
|
1630
1804
|
item_type: string;
|
|
1631
|
-
restricted_to_leads?: boolean;
|
|
1632
1805
|
sequence?: string;
|
|
1633
1806
|
time_allocation_minutes?: number;
|
|
1634
1807
|
title: string;
|
|
@@ -1689,12 +1862,14 @@ export interface ToolkitManifestTemplate {
|
|
|
1689
1862
|
}
|
|
1690
1863
|
export interface ToolkitManifestTemplateSpec {
|
|
1691
1864
|
$id?: string;
|
|
1865
|
+
action_items_prompt?: string;
|
|
1692
1866
|
agenda_items?: ToolkitManifestAgendaItemSpec[];
|
|
1693
1867
|
backing_meeting_id?: string;
|
|
1694
1868
|
description?: string;
|
|
1695
1869
|
detail_level?: "BULLET_POINTS" | "STANDARD" | "VERBATIM";
|
|
1696
1870
|
meeting_duration_seconds?: number;
|
|
1697
1871
|
name: string;
|
|
1872
|
+
notes_prompt?: string;
|
|
1698
1873
|
participants?: ToolkitManifestParticipantSpec[];
|
|
1699
1874
|
start_time_offset_seconds?: number;
|
|
1700
1875
|
title?: string;
|
|
@@ -1793,6 +1968,20 @@ export type UpdateActionItemError = ActionItemUpdateActionItemError400 | ErrorsP
|
|
|
1793
1968
|
export interface UpdateActionItemParams {
|
|
1794
1969
|
id: string;
|
|
1795
1970
|
}
|
|
1971
|
+
export type UpdateAppData = SharedPartnerAppResponse;
|
|
1972
|
+
export type UpdateAppError = AppManagementUpdateAppError400 | ErrorsPartnerErrorResponse;
|
|
1973
|
+
export type UpdateAutomationData = AutomationAutomationResponse;
|
|
1974
|
+
export type UpdateAutomationError = AutomationUpdateAutomationError400 | ErrorsPartnerErrorResponse;
|
|
1975
|
+
export interface UpdateAutomationParams {
|
|
1976
|
+
automationId: string;
|
|
1977
|
+
}
|
|
1978
|
+
export type UpdateBacklogItemData = BacklogItemPartnerBacklogItemResponse;
|
|
1979
|
+
export type UpdateBacklogItemError = ErrorsPartnerErrorResponse;
|
|
1980
|
+
export interface UpdateBacklogItemParams {
|
|
1981
|
+
id: string;
|
|
1982
|
+
}
|
|
1983
|
+
export type UpdateIdpConfigData = IdpIdPConfigResponse;
|
|
1984
|
+
export type UpdateIdpConfigError = IdpUpdateIdPConfigError400 | ErrorsPartnerErrorResponse;
|
|
1796
1985
|
export type UpdateMeetingAgendaItemData = MeetingPartnerAgendaItemResponse;
|
|
1797
1986
|
export type UpdateMeetingAgendaItemError = ErrorsPartnerErrorResponse;
|
|
1798
1987
|
export interface UpdateMeetingAgendaItemParams {
|
|
@@ -1804,6 +1993,11 @@ export type UpdateMeetingError = MeetingUpdateMeetingError400 | ErrorsPartnerErr
|
|
|
1804
1993
|
export interface UpdateMeetingParams {
|
|
1805
1994
|
id: string;
|
|
1806
1995
|
}
|
|
1996
|
+
export type UpdateTemplateData = TemplateTemplateResponse;
|
|
1997
|
+
export type UpdateTemplateError = ErrorsPartnerErrorResponse;
|
|
1998
|
+
export interface UpdateTemplateParams {
|
|
1999
|
+
templateId: string;
|
|
2000
|
+
}
|
|
1807
2001
|
export type UploadMeetingContextData = ContextMeetingContextResponse;
|
|
1808
2002
|
export type UploadMeetingContextError = ErrorsPartnerErrorResponse;
|
|
1809
2003
|
export interface UploadMeetingContextParams {
|