@contio/partner-sdk 1.7.1 → 1.9.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/dist/client/admin/idp.d.ts +4 -1
- package/dist/client/admin/idp.d.ts.map +1 -1
- package/dist/client/admin/idp.js +12 -0
- package/dist/client/admin/idp.js.map +1 -1
- package/dist/client/admin/index.d.ts +6 -1
- package/dist/client/admin/index.d.ts.map +1 -1
- package/dist/client/admin/index.js +16 -0
- package/dist/client/admin/index.js.map +1 -1
- package/dist/client/admin/workflows.d.ts +5 -0
- package/dist/client/admin/workflows.d.ts.map +1 -0
- package/dist/client/admin/workflows.js +11 -0
- package/dist/client/admin/workflows.js.map +1 -0
- package/dist/client/base.d.ts +4 -1
- package/dist/client/base.d.ts.map +1 -1
- package/dist/client/base.js +10 -2
- package/dist/client/base.js.map +1 -1
- package/dist/client/user/index.d.ts +5 -1
- package/dist/client/user/index.d.ts.map +1 -1
- package/dist/client/user/index.js +13 -0
- package/dist/client/user/index.js.map +1 -1
- package/dist/client/user/meetings.d.ts +2 -1
- package/dist/client/user/meetings.d.ts.map +1 -1
- package/dist/client/user/meetings.js +5 -0
- package/dist/client/user/meetings.js.map +1 -1
- package/dist/client/user/workflowRuns.d.ts +7 -0
- package/dist/client/user/workflowRuns.d.ts.map +1 -0
- package/dist/client/user/workflowRuns.js +15 -0
- package/dist/client/user/workflowRuns.js.map +1 -0
- package/dist/esm/client/admin/idp.js +12 -0
- package/dist/esm/client/admin/idp.js.map +1 -1
- package/dist/esm/client/admin/index.js +16 -0
- package/dist/esm/client/admin/index.js.map +1 -1
- package/dist/esm/client/admin/workflows.js +11 -0
- package/dist/esm/client/admin/workflows.js.map +1 -0
- package/dist/esm/client/base.js +10 -2
- package/dist/esm/client/base.js.map +1 -1
- package/dist/esm/client/user/index.js +13 -0
- package/dist/esm/client/user/index.js.map +1 -1
- package/dist/esm/client/user/meetings.js +5 -0
- package/dist/esm/client/user/meetings.js.map +1 -1
- package/dist/esm/client/user/workflowRuns.js +15 -0
- package/dist/esm/client/user/workflowRuns.js.map +1 -0
- package/dist/esm/generated/webhook-types.js +4 -0
- package/dist/esm/generated/webhook-types.js.map +1 -1
- package/dist/esm/index.js +3 -1
- package/dist/esm/index.js.map +1 -1
- package/dist/esm/models/index.js +1 -0
- package/dist/esm/models/index.js.map +1 -1
- package/dist/esm/models/workflows.js +3 -0
- package/dist/esm/models/workflows.js.map +1 -0
- package/dist/esm/webhooks/types.js +4 -0
- package/dist/esm/webhooks/types.js.map +1 -1
- package/dist/generated/api-types.d.ts +845 -655
- package/dist/generated/api-types.d.ts.map +1 -1
- package/dist/generated/webhook-types.d.ts +117 -10
- package/dist/generated/webhook-types.d.ts.map +1 -1
- package/dist/generated/webhook-types.js +4 -0
- package/dist/generated/webhook-types.js.map +1 -1
- package/dist/index.d.ts +1 -1
- package/dist/index.d.ts.map +1 -1
- package/dist/index.js +3 -1
- package/dist/index.js.map +1 -1
- package/dist/models/idp.d.ts +9 -0
- package/dist/models/idp.d.ts.map +1 -1
- package/dist/models/index.d.ts +1 -0
- package/dist/models/index.d.ts.map +1 -1
- package/dist/models/index.js +1 -0
- package/dist/models/index.js.map +1 -1
- package/dist/models/workflows.d.ts +72 -0
- package/dist/models/workflows.d.ts.map +1 -0
- package/dist/models/workflows.js +3 -0
- package/dist/models/workflows.js.map +1 -0
- package/dist/webhooks/types.d.ts +7 -3
- package/dist/webhooks/types.d.ts.map +1 -1
- package/dist/webhooks/types.js +4 -0
- package/dist/webhooks/types.js.map +1 -1
- package/package.json +1 -1
|
@@ -44,6 +44,93 @@ export interface ActionItemUpdateActionItemRequest {
|
|
|
44
44
|
status?: "needs_review" | "accepted" | "in_progress" | "blocked" | "completed" | "cancelled";
|
|
45
45
|
title?: string;
|
|
46
46
|
}
|
|
47
|
+
export type AddMeetingParticipantData = MeetingPartnerMeetingParticipantResponse;
|
|
48
|
+
export type AddMeetingParticipantError = ErrorsPartnerErrorResponse;
|
|
49
|
+
export interface AddMeetingParticipantParams {
|
|
50
|
+
id: string;
|
|
51
|
+
}
|
|
52
|
+
export type AddTemplateNextStepData = any;
|
|
53
|
+
export type AddTemplateNextStepError = ErrorsPartnerErrorResponse;
|
|
54
|
+
export interface AddTemplateNextStepParams {
|
|
55
|
+
templateId: string;
|
|
56
|
+
}
|
|
57
|
+
export type AdminCreateToolkitData = ToolkitCreateToolkitResponse;
|
|
58
|
+
export type AdminCreateToolkitError = ErrorsPartnerErrorResponse;
|
|
59
|
+
export type AdminCreateToolkitVersionData = ToolkitCreateVersionResponse;
|
|
60
|
+
export type AdminCreateToolkitVersionError = ErrorsPartnerErrorResponse;
|
|
61
|
+
export interface AdminCreateToolkitVersionParams {
|
|
62
|
+
toolkitId: string;
|
|
63
|
+
}
|
|
64
|
+
export type AdminDeleteToolkitData = any;
|
|
65
|
+
export type AdminDeleteToolkitError = ErrorsPartnerErrorResponse;
|
|
66
|
+
export interface AdminDeleteToolkitParams {
|
|
67
|
+
toolkitId: string;
|
|
68
|
+
}
|
|
69
|
+
export type AdminDiscardToolkitVersionData = any;
|
|
70
|
+
export type AdminDiscardToolkitVersionError = ErrorsPartnerErrorResponse;
|
|
71
|
+
export interface AdminDiscardToolkitVersionParams {
|
|
72
|
+
toolkitId: string;
|
|
73
|
+
versionId: string;
|
|
74
|
+
}
|
|
75
|
+
export type AdminExportEntitiesData = ToolkitExportResponse;
|
|
76
|
+
export type AdminExportEntitiesError = ErrorsPartnerErrorResponse;
|
|
77
|
+
export type AdminExportToolkitData = ToolkitExportResponse;
|
|
78
|
+
export type AdminExportToolkitError = ErrorsPartnerErrorResponse;
|
|
79
|
+
export interface AdminExportToolkitParams {
|
|
80
|
+
toolkitId: string;
|
|
81
|
+
}
|
|
82
|
+
export type AdminGetToolkitData = RomeApiControllersExternalPartnerAdminToolkitToolkitResponse;
|
|
83
|
+
export type AdminGetToolkitError = ErrorsPartnerErrorResponse;
|
|
84
|
+
export interface AdminGetToolkitParams {
|
|
85
|
+
toolkitId: string;
|
|
86
|
+
}
|
|
87
|
+
export type AdminGetToolkitVersionData = ToolkitVersionResponse;
|
|
88
|
+
export type AdminGetToolkitVersionError = ErrorsPartnerErrorResponse;
|
|
89
|
+
export interface AdminGetToolkitVersionParams {
|
|
90
|
+
toolkitId: string;
|
|
91
|
+
versionId: string;
|
|
92
|
+
}
|
|
93
|
+
export type AdminListToolkitInstallationsData = ToolkitListInstallationsResponse;
|
|
94
|
+
export type AdminListToolkitInstallationsError = ErrorsPartnerErrorResponse;
|
|
95
|
+
export interface AdminListToolkitInstallationsParams {
|
|
96
|
+
limit?: number;
|
|
97
|
+
offset?: number;
|
|
98
|
+
toolkitId: string;
|
|
99
|
+
}
|
|
100
|
+
export type AdminListToolkitVersionsData = ToolkitVersionResponse[];
|
|
101
|
+
export type AdminListToolkitVersionsError = ErrorsPartnerErrorResponse;
|
|
102
|
+
export interface AdminListToolkitVersionsParams {
|
|
103
|
+
toolkitId: string;
|
|
104
|
+
}
|
|
105
|
+
export type AdminListToolkitsData = RomeApiControllersExternalPartnerUserSharedListResponseRomeApiControllersExternalPartnerAdminToolkitToolkitResponse;
|
|
106
|
+
export type AdminListToolkitsError = ErrorsPartnerErrorResponse;
|
|
107
|
+
export interface AdminListToolkitsParams {
|
|
108
|
+
limit?: number;
|
|
109
|
+
offset?: number;
|
|
110
|
+
}
|
|
111
|
+
export type AdminPublishToolkitVersionData = any;
|
|
112
|
+
export type AdminPublishToolkitVersionError = ErrorsPartnerErrorResponse;
|
|
113
|
+
export interface AdminPublishToolkitVersionParams {
|
|
114
|
+
toolkitId: string;
|
|
115
|
+
versionId: string;
|
|
116
|
+
}
|
|
117
|
+
export type AdminRepublishToolkitVersionData = any;
|
|
118
|
+
export type AdminRepublishToolkitVersionError = ErrorsPartnerErrorResponse;
|
|
119
|
+
export interface AdminRepublishToolkitVersionParams {
|
|
120
|
+
toolkitId: string;
|
|
121
|
+
versionId: string;
|
|
122
|
+
}
|
|
123
|
+
export type AdminUpdateToolkitData = RomeApiControllersExternalPartnerAdminToolkitToolkitResponse;
|
|
124
|
+
export type AdminUpdateToolkitError = ErrorsPartnerErrorResponse;
|
|
125
|
+
export interface AdminUpdateToolkitParams {
|
|
126
|
+
toolkitId: string;
|
|
127
|
+
}
|
|
128
|
+
export type AdminUpdateToolkitVersionData = ToolkitVersionResponse;
|
|
129
|
+
export type AdminUpdateToolkitVersionError = ErrorsPartnerErrorResponse;
|
|
130
|
+
export interface AdminUpdateToolkitVersionParams {
|
|
131
|
+
toolkitId: string;
|
|
132
|
+
versionId: string;
|
|
133
|
+
}
|
|
47
134
|
export interface AppManagementSetWebhookFilterRequest {
|
|
48
135
|
events: string[];
|
|
49
136
|
type: "include" | "exclude";
|
|
@@ -78,10 +165,13 @@ export interface AppManagementUpdateWebhookStatusRequest {
|
|
|
78
165
|
enabled: boolean;
|
|
79
166
|
pending_disposition?: "deliver" | "abandon";
|
|
80
167
|
}
|
|
81
|
-
export type
|
|
82
|
-
export type
|
|
83
|
-
export
|
|
84
|
-
|
|
168
|
+
export type ApplyMeetingTemplateData = MeetingTemplateApplyTemplateResponse;
|
|
169
|
+
export type ApplyMeetingTemplateError = ErrorsPartnerErrorResponse | MiddlewareFeatureNotAvailableResponse;
|
|
170
|
+
export interface ApplyMeetingTemplateParams {
|
|
171
|
+
id: string;
|
|
172
|
+
}
|
|
173
|
+
export type AuthorizeOauthError = ErrorsErrorResponse;
|
|
174
|
+
export interface AuthorizeOauthParams {
|
|
85
175
|
client_id: string;
|
|
86
176
|
code_challenge?: string;
|
|
87
177
|
code_challenge_method?: string;
|
|
@@ -136,7 +226,7 @@ export interface CalendarGetCalendarEventsError400 {
|
|
|
136
226
|
request_id?: string;
|
|
137
227
|
}
|
|
138
228
|
export interface CalendarLinkCalendarEventError400 {
|
|
139
|
-
code?: "invalid_meeting_id" | "invalid_request_body" | "calendar_event_already_linked" | "meeting_already_linked";
|
|
229
|
+
code?: "invalid_meeting_id" | "invalid_request_body" | "calendar_event_already_linked" | "meeting_already_linked" | "calendar_workspace_mismatch";
|
|
140
230
|
error?: string;
|
|
141
231
|
request_id?: string;
|
|
142
232
|
}
|
|
@@ -170,8 +260,15 @@ export interface CalendarPartnerCreateMeetingFromCalendarEventResponse {
|
|
|
170
260
|
export interface CalendarPartnerLinkCalendarEventRequest {
|
|
171
261
|
calendar_event_id: string;
|
|
172
262
|
}
|
|
173
|
-
export type
|
|
174
|
-
export type
|
|
263
|
+
export type CheckIdpDomainVerificationData = IdpDomainVerificationResponse;
|
|
264
|
+
export type CheckIdpDomainVerificationError = IdpDomainVerificationError400 | ErrorsPartnerErrorResponse;
|
|
265
|
+
export interface CheckIdpDomainVerificationParams {
|
|
266
|
+
domain: string;
|
|
267
|
+
}
|
|
268
|
+
export type CheckOauthConsentData = OauthOAuthConsentCheckResponse;
|
|
269
|
+
export type CheckOauthConsentError = ErrorsErrorResponse;
|
|
270
|
+
export type CompleteOauthAuthorizationData = OauthOAuthConsentResponse;
|
|
271
|
+
export type CompleteOauthAuthorizationError = ErrorsPartnerErrorResponse | Record<string, unknown>;
|
|
175
272
|
export interface ConnectionUserConnectionResponse {
|
|
176
273
|
created_at?: string;
|
|
177
274
|
feature_activated_at?: string;
|
|
@@ -207,6 +304,51 @@ export interface ContextMeetingContextResponse {
|
|
|
207
304
|
updated_at?: string;
|
|
208
305
|
workspace_id?: string;
|
|
209
306
|
}
|
|
307
|
+
export type CreateActionItemData = ActionItemPartnerActionItemResponse;
|
|
308
|
+
export type CreateActionItemError = ActionItemCreateActionItemError400 | ErrorsPartnerErrorResponse;
|
|
309
|
+
export type CreateAutomationData = AutomationAutomationResponse;
|
|
310
|
+
export type CreateAutomationError = AutomationCreateAutomationError400 | ErrorsPartnerErrorResponse;
|
|
311
|
+
export type CreateCalendarEventMeetingData = CalendarPartnerCreateMeetingFromCalendarEventResponse;
|
|
312
|
+
export type CreateCalendarEventMeetingError = CalendarCreateMeetingFromCalendarEventError400 | ErrorsPartnerErrorResponse;
|
|
313
|
+
export interface CreateCalendarEventMeetingParams {
|
|
314
|
+
calendarEventId: string;
|
|
315
|
+
}
|
|
316
|
+
export type CreateIdpConfigData = IdpIdPConfigResponse;
|
|
317
|
+
export type CreateIdpConfigError = IdpCreateIdPConfigError400 | ErrorsPartnerErrorResponse;
|
|
318
|
+
export type CreateMeetingAgendaItemData = MeetingPartnerAgendaItemResponse;
|
|
319
|
+
export type CreateMeetingAgendaItemError = ErrorsPartnerErrorResponse;
|
|
320
|
+
export interface CreateMeetingAgendaItemParams {
|
|
321
|
+
id: string;
|
|
322
|
+
}
|
|
323
|
+
export type CreateMeetingData = SharedPartnerMeetingResponse;
|
|
324
|
+
export type CreateMeetingError = MeetingCreateMeetingError400 | ErrorsPartnerErrorResponse;
|
|
325
|
+
export type CreateSessionData = SessionCreateSessionResponse;
|
|
326
|
+
export type CreateSessionError = ErrorsPartnerErrorResponse | MiddlewareFeatureNotAvailableResponse;
|
|
327
|
+
export type CreateTemplateData = TemplateTemplateResponse;
|
|
328
|
+
export type CreateTemplateError = ErrorsPartnerErrorResponse;
|
|
329
|
+
export type CreateWorkflowRunData = WorkflowRunPartnerWorkflowRunResponse;
|
|
330
|
+
export type CreateWorkflowRunError = ErrorsPartnerErrorResponse | MiddlewareFeatureNotAvailableResponse;
|
|
331
|
+
export interface CredentialCredentialHistoryEvent {
|
|
332
|
+
action?: string;
|
|
333
|
+
created_at?: string;
|
|
334
|
+
credential_type?: string;
|
|
335
|
+
id?: string;
|
|
336
|
+
initiated_by?: string;
|
|
337
|
+
ip_address?: string;
|
|
338
|
+
metadata?: Record<string, unknown>;
|
|
339
|
+
partner_app_id?: string;
|
|
340
|
+
reason?: string;
|
|
341
|
+
user_agent?: string;
|
|
342
|
+
}
|
|
343
|
+
export interface CredentialCredentialHistoryPagination {
|
|
344
|
+
count?: number;
|
|
345
|
+
limit?: number;
|
|
346
|
+
offset?: number;
|
|
347
|
+
}
|
|
348
|
+
export interface CredentialCredentialHistoryResponse {
|
|
349
|
+
events?: CredentialCredentialHistoryEvent[];
|
|
350
|
+
pagination?: CredentialCredentialHistoryPagination;
|
|
351
|
+
}
|
|
210
352
|
export interface CredentialCredentialRollbackRequest {
|
|
211
353
|
reason?: string;
|
|
212
354
|
rollback_token: string;
|
|
@@ -248,8 +390,45 @@ export interface CredentialRotateWebhookSecretError400 {
|
|
|
248
390
|
error?: string;
|
|
249
391
|
request_id?: string;
|
|
250
392
|
}
|
|
393
|
+
export type DeleteActionItemData = any;
|
|
394
|
+
export type DeleteActionItemError = ErrorsPartnerErrorResponse;
|
|
395
|
+
export interface DeleteActionItemParams {
|
|
396
|
+
id: string;
|
|
397
|
+
}
|
|
398
|
+
export type DeleteAutomationData = any;
|
|
399
|
+
export type DeleteAutomationError = ErrorsPartnerErrorResponse;
|
|
400
|
+
export interface DeleteAutomationParams {
|
|
401
|
+
automationId: string;
|
|
402
|
+
}
|
|
403
|
+
export type DeleteIdpConfigData = any;
|
|
404
|
+
export type DeleteIdpConfigError = ErrorsPartnerErrorResponse;
|
|
405
|
+
export type DeleteMeetingAgendaItemData = any;
|
|
406
|
+
export type DeleteMeetingAgendaItemError = ErrorsPartnerErrorResponse;
|
|
407
|
+
export interface DeleteMeetingAgendaItemParams {
|
|
408
|
+
id: string;
|
|
409
|
+
itemId: string;
|
|
410
|
+
}
|
|
411
|
+
export type DeleteMeetingContextData = any;
|
|
412
|
+
export type DeleteMeetingContextError = ErrorsPartnerErrorResponse;
|
|
413
|
+
export interface DeleteMeetingContextParams {
|
|
414
|
+
contextId: string;
|
|
415
|
+
id: string;
|
|
416
|
+
}
|
|
417
|
+
export type DeleteTemplateData = any;
|
|
418
|
+
export type DeleteTemplateError = ErrorsPartnerErrorResponse;
|
|
419
|
+
export interface DeleteTemplateParams {
|
|
420
|
+
templateId: string;
|
|
421
|
+
}
|
|
422
|
+
export type DeleteWebhookFilterData = SharedPartnerAppResponse;
|
|
423
|
+
export type DeleteWebhookFilterError = ErrorsPartnerErrorResponse;
|
|
424
|
+
export type DownloadMeetingContextContentData = File;
|
|
425
|
+
export type DownloadMeetingContextContentError = ErrorsPartnerErrorResponse;
|
|
426
|
+
export interface DownloadMeetingContextContentParams {
|
|
427
|
+
contextId: string;
|
|
428
|
+
id: string;
|
|
429
|
+
}
|
|
251
430
|
export interface ErrorsErrorResponse {
|
|
252
|
-
code?: "not_found" | "note_not_found" | "bad_request" | "validation_error" | "unauthorized" | "forbidden" | "conflict" | "resource_already_exists" | "too_many_requests" | "internal_server_error";
|
|
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";
|
|
253
432
|
message?: string;
|
|
254
433
|
request_id?: string;
|
|
255
434
|
}
|
|
@@ -266,10 +445,140 @@ export interface ErrorsPartnerErrorResponse {
|
|
|
266
445
|
message?: string;
|
|
267
446
|
request_id?: string;
|
|
268
447
|
}
|
|
269
|
-
export type
|
|
270
|
-
export type
|
|
448
|
+
export type ExchangeOauthTokenData = RomeApiControllersExternalPartnerOauthTokenResponse;
|
|
449
|
+
export type ExchangeOauthTokenError = ErrorsErrorResponse;
|
|
450
|
+
export interface ExchangeOauthTokenPayload {
|
|
451
|
+
client_id: string;
|
|
452
|
+
client_secret?: string;
|
|
453
|
+
code: string;
|
|
454
|
+
code_verifier?: string;
|
|
455
|
+
grant_type: string;
|
|
456
|
+
redirect_uri: string;
|
|
457
|
+
}
|
|
458
|
+
export type ExecuteMeetingNextStepData = SharedExecuteNextStepResponse;
|
|
459
|
+
export type ExecuteMeetingNextStepError = ErrorsPartnerErrorResponse;
|
|
460
|
+
export interface ExecuteMeetingNextStepParams {
|
|
461
|
+
id: string;
|
|
462
|
+
nextStepId: string;
|
|
463
|
+
}
|
|
464
|
+
export type ExportMeetingTranscriptData = string;
|
|
465
|
+
export type ExportMeetingTranscriptError = ErrorsPartnerErrorResponse | MiddlewareFeatureNotAvailableResponse;
|
|
466
|
+
export interface ExportMeetingTranscriptParams {
|
|
467
|
+
format?: "srt";
|
|
468
|
+
id: string;
|
|
469
|
+
}
|
|
470
|
+
export type GetActionItemData = ActionItemPartnerActionItemResponse;
|
|
471
|
+
export type GetActionItemError = ErrorsPartnerErrorResponse;
|
|
472
|
+
export interface GetActionItemParams {
|
|
473
|
+
id: string;
|
|
474
|
+
}
|
|
475
|
+
export type GetAppData = SharedPartnerAppResponse;
|
|
476
|
+
export type GetAppError = ErrorsPartnerErrorResponse;
|
|
477
|
+
export type GetAutomationData = AutomationAutomationResponse;
|
|
478
|
+
export type GetAutomationError = ErrorsPartnerErrorResponse;
|
|
479
|
+
export interface GetAutomationParams {
|
|
480
|
+
automationId: string;
|
|
481
|
+
}
|
|
482
|
+
export type GetCalendarEventData = CalendarPartnerCalendarEventResponse;
|
|
483
|
+
export type GetCalendarEventError = ErrorsPartnerErrorResponse;
|
|
484
|
+
export interface GetCalendarEventParams {
|
|
485
|
+
calendarEventId: string;
|
|
486
|
+
}
|
|
487
|
+
export type GetConnectionData = ConnectionUserConnectionResponse;
|
|
488
|
+
export type GetConnectionError = ErrorsPartnerErrorResponse;
|
|
489
|
+
export interface GetConnectionParams {
|
|
490
|
+
connectionId: string;
|
|
491
|
+
}
|
|
492
|
+
export type GetCredentialStatusData = Record<string, CredentialCredentialStatusResponse>;
|
|
493
|
+
export type GetCredentialStatusError = ErrorsPartnerErrorResponse;
|
|
494
|
+
export type GetIdpConfigData = IdpIdPConfigResponse;
|
|
495
|
+
export type GetIdpConfigError = ErrorsPartnerErrorResponse;
|
|
496
|
+
export type GetIdpDomainVerificationData = IdpDomainVerificationResponse;
|
|
497
|
+
export type GetIdpDomainVerificationError = IdpDomainVerificationError400 | ErrorsPartnerErrorResponse;
|
|
498
|
+
export interface GetIdpDomainVerificationParams {
|
|
499
|
+
domain: string;
|
|
500
|
+
}
|
|
501
|
+
export type GetMeetingContextData = ContextMeetingContextResponse;
|
|
502
|
+
export type GetMeetingContextError = ErrorsPartnerErrorResponse;
|
|
503
|
+
export interface GetMeetingContextParams {
|
|
504
|
+
contextId: string;
|
|
505
|
+
id: string;
|
|
506
|
+
}
|
|
507
|
+
export type GetMeetingData = SharedPartnerMeetingResponse;
|
|
508
|
+
export type GetMeetingError = ErrorsPartnerErrorResponse;
|
|
509
|
+
export interface GetMeetingParams {
|
|
510
|
+
id: string;
|
|
511
|
+
}
|
|
512
|
+
export type GetMeetingTemplateData = MeetingTemplatePartnerMeetingTemplateDetailResponse;
|
|
513
|
+
export type GetMeetingTemplateError = ErrorsPartnerErrorResponse;
|
|
514
|
+
export interface GetMeetingTemplateParams {
|
|
515
|
+
id: string;
|
|
516
|
+
}
|
|
517
|
+
export type GetNextStepResultData = NextStepResultNextStepResultResponse;
|
|
518
|
+
export type GetNextStepResultError = ErrorsPartnerErrorResponse;
|
|
519
|
+
export interface GetNextStepResultParams {
|
|
520
|
+
resultId: string;
|
|
521
|
+
}
|
|
522
|
+
export type GetOauthHealthData = OauthHealthResponse;
|
|
523
|
+
export type GetOauthHealthError = ErrorsErrorResponse;
|
|
524
|
+
export type GetOauthJwksData = RomeApiControllersExternalPartnerOauthJWKSResponse;
|
|
525
|
+
export type GetOauthJwksError = ErrorsErrorResponse;
|
|
526
|
+
export type GetOauthUserInfoData = RomeApiControllersExternalPartnerOauthUserInfo;
|
|
527
|
+
export type GetOauthUserInfoError = ErrorsErrorResponse;
|
|
528
|
+
export type GetOpenidConfigurationData = RomeApiControllersExternalPartnerOauthDiscoveryDocument;
|
|
529
|
+
export type GetOpenidConfigurationError = ErrorsErrorResponse;
|
|
530
|
+
export type GetProfileData = ProfileUserProfileResponse;
|
|
531
|
+
export type GetProfileError = ErrorsPartnerErrorResponse;
|
|
532
|
+
export type GetPublicPartnerInfoData = OauthPartnerInfoResponse;
|
|
533
|
+
export type GetPublicPartnerInfoError = ErrorsErrorResponse;
|
|
534
|
+
export interface GetPublicPartnerInfoParams {
|
|
535
|
+
clientId: string;
|
|
536
|
+
}
|
|
537
|
+
export type GetSessionData = SessionGetSessionResponse;
|
|
538
|
+
export type GetSessionError = ErrorsPartnerErrorResponse;
|
|
539
|
+
export interface GetSessionParams {
|
|
540
|
+
id: string;
|
|
541
|
+
turn_limit?: number;
|
|
542
|
+
turn_offset?: number;
|
|
543
|
+
}
|
|
544
|
+
export type GetSessionTurnData = SessionGetTurnResponse;
|
|
545
|
+
export type GetSessionTurnError = ErrorsPartnerErrorResponse;
|
|
546
|
+
export interface GetSessionTurnParams {
|
|
547
|
+
id: string;
|
|
548
|
+
turnId: string;
|
|
549
|
+
}
|
|
550
|
+
export type GetSsoInfoData = SsoPartnerSSOInfoResponse;
|
|
551
|
+
export type GetSsoInfoError = SsoErrorResponse;
|
|
552
|
+
export interface GetSsoInfoParams {
|
|
553
|
+
slug: string;
|
|
554
|
+
}
|
|
555
|
+
export type GetSsoSessionData = SsoSessionStatusResponse;
|
|
556
|
+
export type GetSsoSessionError = ErrorsPartnerErrorResponse | Record<string, unknown>;
|
|
557
|
+
export interface GetSsoSessionParams {
|
|
558
|
+
sessionId: string;
|
|
559
|
+
}
|
|
560
|
+
export type GetTemplateData = TemplateTemplateResponse;
|
|
561
|
+
export type GetTemplateError = ErrorsPartnerErrorResponse;
|
|
562
|
+
export interface GetTemplateParams {
|
|
563
|
+
templateId: string;
|
|
564
|
+
}
|
|
565
|
+
export type GetWebhookDeliveryData = WebhookWebhookDeliveryResponse;
|
|
566
|
+
export type GetWebhookDeliveryError = ErrorsPartnerErrorResponse;
|
|
567
|
+
export interface GetWebhookDeliveryParams {
|
|
568
|
+
deliveryId: string;
|
|
569
|
+
}
|
|
570
|
+
export type GetWorkflowRunData = WorkflowRunPartnerWorkflowRunResponse;
|
|
571
|
+
export type GetWorkflowRunError = ErrorsPartnerErrorResponse;
|
|
572
|
+
export interface GetWorkflowRunParams {
|
|
573
|
+
id: string;
|
|
574
|
+
}
|
|
575
|
+
export type GetWorkflowTemplateData = WorkflowPartnerWorkflowTemplateResponse;
|
|
576
|
+
export type GetWorkflowTemplateError = ErrorsPartnerErrorResponse;
|
|
577
|
+
export interface GetWorkflowTemplateParams {
|
|
578
|
+
id: string;
|
|
579
|
+
}
|
|
271
580
|
export interface IdpCreateIdPConfigError400 {
|
|
272
|
-
code?: "invalid_request_body" | "invalid_idp_credentials" | "invalid_idp" | "domain_is_generic" | "domain_already_claimed" | "strict_mode_requires_domains" | "discovery_fetch_failed" | "idp_config_exists";
|
|
581
|
+
code?: "invalid_request_body" | "invalid_idp_credentials" | "invalid_idp" | "domain_is_generic" | "domain_already_claimed" | "domain_reserved" | "domain_not_verified" | "invalid_domain" | "strict_mode_requires_domains" | "discovery_fetch_failed" | "idp_config_exists";
|
|
273
582
|
error?: string;
|
|
274
583
|
request_id?: string;
|
|
275
584
|
}
|
|
@@ -283,6 +592,19 @@ export interface IdpCreateIdPConfigRequest {
|
|
|
283
592
|
name: string;
|
|
284
593
|
scopes?: string[];
|
|
285
594
|
}
|
|
595
|
+
export interface IdpDomainVerificationError400 {
|
|
596
|
+
code?: "invalid_domain" | "domain_reserved" | "domain_is_generic";
|
|
597
|
+
error?: string;
|
|
598
|
+
request_id?: string;
|
|
599
|
+
}
|
|
600
|
+
export interface IdpDomainVerificationResponse {
|
|
601
|
+
dns_record_name?: string;
|
|
602
|
+
dns_record_value?: string;
|
|
603
|
+
domain?: string;
|
|
604
|
+
expires_at?: string;
|
|
605
|
+
status?: string;
|
|
606
|
+
verified_at?: string;
|
|
607
|
+
}
|
|
286
608
|
export interface IdpIdPConfigResponse {
|
|
287
609
|
allowed_email_domains?: string[];
|
|
288
610
|
authorization_endpoint?: string;
|
|
@@ -305,7 +627,7 @@ export interface IdpIdPConfigResponse {
|
|
|
305
627
|
userinfo_endpoint?: string;
|
|
306
628
|
}
|
|
307
629
|
export interface IdpUpdateIdPConfigError400 {
|
|
308
|
-
code?: "invalid_request_body" | "invalid_idp_credentials" | "invalid_idp" | "domain_is_generic" | "domain_already_claimed" | "strict_mode_requires_domains" | "discovery_fetch_failed";
|
|
630
|
+
code?: "invalid_request_body" | "invalid_idp_credentials" | "invalid_idp" | "domain_is_generic" | "domain_already_claimed" | "domain_reserved" | "domain_not_verified" | "invalid_domain" | "strict_mode_requires_domains" | "discovery_fetch_failed";
|
|
309
631
|
error?: string;
|
|
310
632
|
request_id?: string;
|
|
311
633
|
}
|
|
@@ -320,15 +642,178 @@ export interface IdpUpdateIdPConfigRequest {
|
|
|
320
642
|
name?: string;
|
|
321
643
|
scopes?: string[];
|
|
322
644
|
}
|
|
323
|
-
export type
|
|
324
|
-
export type
|
|
325
|
-
export
|
|
326
|
-
|
|
327
|
-
|
|
645
|
+
export type InitiateIdpDomainVerificationData = IdpDomainVerificationResponse;
|
|
646
|
+
export type InitiateIdpDomainVerificationError = IdpDomainVerificationError400 | ErrorsPartnerErrorResponse;
|
|
647
|
+
export interface InitiateIdpDomainVerificationParams {
|
|
648
|
+
domain: string;
|
|
649
|
+
}
|
|
650
|
+
export type InitiatePartnerAuthData = OauthPartnerAuthInitiateResponse;
|
|
651
|
+
export type InitiatePartnerAuthError = ErrorsErrorResponse | ErrorsPartnerErrorResponse | ErrorsPartnerConflictErrorResponse;
|
|
652
|
+
export type InitiateSsoData = SsoInitiateResponse;
|
|
653
|
+
export type InitiateSsoError = string | ErrorsPartnerErrorResponse | Record<string, unknown>;
|
|
654
|
+
export interface InitiateSsoParams {
|
|
655
|
+
auto?: boolean;
|
|
656
|
+
slug: string;
|
|
657
|
+
target?: "web" | "desktop" | "backlog";
|
|
658
|
+
}
|
|
659
|
+
export type InstallToolkitData = ToolkitInstallationResponse;
|
|
660
|
+
export type InstallToolkitError = ErrorsPartnerErrorResponse;
|
|
661
|
+
export interface InstallToolkitParams {
|
|
662
|
+
toolkitId: string;
|
|
663
|
+
}
|
|
664
|
+
export type IntrospectOauthTokenData = RomeApiControllersExternalPartnerOauthTokenIntrospection;
|
|
665
|
+
export type IntrospectOauthTokenError = ErrorsErrorResponse;
|
|
666
|
+
export interface IntrospectOauthTokenPayload {
|
|
328
667
|
token: string;
|
|
329
668
|
}
|
|
330
|
-
export type
|
|
331
|
-
export type
|
|
669
|
+
export type LinkCalendarEventData = CalendarLinkCalendarEventResponse;
|
|
670
|
+
export type LinkCalendarEventError = CalendarLinkCalendarEventError400 | ErrorsPartnerErrorResponse;
|
|
671
|
+
export interface LinkCalendarEventParams {
|
|
672
|
+
id: string;
|
|
673
|
+
}
|
|
674
|
+
export type ListActionItemsData = RomeApiControllersExternalPartnerUserSharedListResponseActionItemPartnerActionItemResponse;
|
|
675
|
+
export type ListActionItemsError = ActionItemGetActionItemsError400 | ErrorsPartnerErrorResponse;
|
|
676
|
+
export interface ListActionItemsParams {
|
|
677
|
+
end_date?: string;
|
|
678
|
+
has_partner_assignment?: boolean;
|
|
679
|
+
is_completed?: boolean;
|
|
680
|
+
limit?: number;
|
|
681
|
+
meeting_id?: string;
|
|
682
|
+
offset?: number;
|
|
683
|
+
start_date?: string;
|
|
684
|
+
}
|
|
685
|
+
export type ListAutomationsData = RomeApiControllersExternalPartnerAdminSharedListResponseAutomationAutomationResponse;
|
|
686
|
+
export type ListAutomationsError = ErrorsPartnerErrorResponse;
|
|
687
|
+
export interface ListAutomationsParams {
|
|
688
|
+
limit?: number;
|
|
689
|
+
offset?: number;
|
|
690
|
+
}
|
|
691
|
+
export type ListCalendarEventsData = RomeApiControllersExternalPartnerUserSharedListResponseCalendarPartnerCalendarEventResponse;
|
|
692
|
+
export type ListCalendarEventsError = CalendarGetCalendarEventsError400 | ErrorsPartnerErrorResponse;
|
|
693
|
+
export interface ListCalendarEventsParams {
|
|
694
|
+
direction?: string;
|
|
695
|
+
end?: string;
|
|
696
|
+
end_date?: string;
|
|
697
|
+
limit?: number;
|
|
698
|
+
offset?: number;
|
|
699
|
+
start?: string;
|
|
700
|
+
start_date?: string;
|
|
701
|
+
}
|
|
702
|
+
export type ListConnectionsData = RomeApiControllersExternalPartnerAdminSharedListResponseConnectionUserConnectionResponse;
|
|
703
|
+
export type ListConnectionsError = ErrorsPartnerErrorResponse;
|
|
704
|
+
export interface ListConnectionsParams {
|
|
705
|
+
limit?: number;
|
|
706
|
+
offset?: number;
|
|
707
|
+
status?: "active" | "revoked" | "expired";
|
|
708
|
+
user_id?: string;
|
|
709
|
+
}
|
|
710
|
+
export type ListCredentialHistoryData = CredentialCredentialHistoryResponse;
|
|
711
|
+
export type ListCredentialHistoryError = ErrorsPartnerErrorResponse;
|
|
712
|
+
export interface ListCredentialHistoryParams {
|
|
713
|
+
credential_type?: string;
|
|
714
|
+
limit?: number;
|
|
715
|
+
offset?: number;
|
|
716
|
+
}
|
|
717
|
+
export type ListInstalledToolkitsData = RomeApiControllersExternalPartnerUserSharedListResponseToolkitToolkitWithInstallationResponse;
|
|
718
|
+
export type ListInstalledToolkitsError = ErrorsPartnerErrorResponse;
|
|
719
|
+
export interface ListInstalledToolkitsParams {
|
|
720
|
+
workspaceId: string;
|
|
721
|
+
}
|
|
722
|
+
export type ListMeetingActionButtonsData = RomeApiControllersExternalPartnerUserSharedListResponseSharedActionButtonResponse;
|
|
723
|
+
export type ListMeetingActionButtonsError = ErrorsPartnerErrorResponse;
|
|
724
|
+
export interface ListMeetingActionButtonsParams {
|
|
725
|
+
id: string;
|
|
726
|
+
}
|
|
727
|
+
export type ListMeetingAgendaItemsData = RomeApiControllersExternalPartnerUserSharedListResponseMeetingPartnerAgendaItemResponse;
|
|
728
|
+
export type ListMeetingAgendaItemsError = ErrorsPartnerErrorResponse;
|
|
729
|
+
export interface ListMeetingAgendaItemsParams {
|
|
730
|
+
id: string;
|
|
731
|
+
}
|
|
732
|
+
export type ListMeetingContextsData = ContextMeetingContextListResponse;
|
|
733
|
+
export type ListMeetingContextsError = ErrorsPartnerErrorResponse;
|
|
734
|
+
export interface ListMeetingContextsParams {
|
|
735
|
+
id: string;
|
|
736
|
+
limit?: number;
|
|
737
|
+
offset?: number;
|
|
738
|
+
}
|
|
739
|
+
export type ListMeetingNextStepsData = RomeApiControllersExternalPartnerUserSharedListResponseSharedNextStepResponse;
|
|
740
|
+
export type ListMeetingNextStepsError = ErrorsPartnerErrorResponse;
|
|
741
|
+
export interface ListMeetingNextStepsParams {
|
|
742
|
+
id: string;
|
|
743
|
+
}
|
|
744
|
+
export type ListMeetingParticipantsData = RomeApiControllersExternalPartnerUserSharedListResponseMeetingPartnerMeetingParticipantResponse;
|
|
745
|
+
export type ListMeetingParticipantsError = ErrorsPartnerErrorResponse;
|
|
746
|
+
export interface ListMeetingParticipantsParams {
|
|
747
|
+
id: string;
|
|
748
|
+
}
|
|
749
|
+
export type ListMeetingTemplateNextStepsData = RomeApiControllersExternalPartnerUserSharedListResponseMeetingTemplateTemplateNextStepResponse;
|
|
750
|
+
export type ListMeetingTemplateNextStepsError = ErrorsPartnerErrorResponse;
|
|
751
|
+
export interface ListMeetingTemplateNextStepsParams {
|
|
752
|
+
id: string;
|
|
753
|
+
}
|
|
754
|
+
export type ListMeetingTemplatesData = RomeApiControllersExternalPartnerUserSharedListResponseMeetingTemplatePartnerMeetingTemplateResponse;
|
|
755
|
+
export type ListMeetingTemplatesError = ErrorsPartnerErrorResponse;
|
|
756
|
+
export interface ListMeetingTemplatesParams {
|
|
757
|
+
limit?: number;
|
|
758
|
+
offset?: number;
|
|
759
|
+
}
|
|
760
|
+
export type ListMeetingsData = RomeApiControllersExternalPartnerUserSharedListResponseSharedPartnerMeetingResponse;
|
|
761
|
+
export type ListMeetingsError = MeetingGetMeetingsError400 | ErrorsPartnerErrorResponse;
|
|
762
|
+
export interface ListMeetingsParams {
|
|
763
|
+
end_date?: string;
|
|
764
|
+
limit?: number;
|
|
765
|
+
offset?: number;
|
|
766
|
+
start_date?: string;
|
|
767
|
+
}
|
|
768
|
+
export type ListOauthScopesData = OauthScopesResponse;
|
|
769
|
+
export type ListOauthScopesError = ErrorsErrorResponse;
|
|
770
|
+
export type ListSessionsData = RomeApiControllersExternalPartnerUserSharedListResponseSessionPartnerChatSessionResponse;
|
|
771
|
+
export type ListSessionsError = ErrorsPartnerErrorResponse;
|
|
772
|
+
export interface ListSessionsParams {
|
|
773
|
+
limit?: number;
|
|
774
|
+
meeting_id?: string;
|
|
775
|
+
offset?: number;
|
|
776
|
+
}
|
|
777
|
+
export type ListTemplateNextStepsData = RomeApiControllersExternalPartnerAdminSharedListResponseTemplateTemplateNextStepResponse;
|
|
778
|
+
export type ListTemplateNextStepsError = ErrorsPartnerErrorResponse;
|
|
779
|
+
export interface ListTemplateNextStepsParams {
|
|
780
|
+
templateId: string;
|
|
781
|
+
}
|
|
782
|
+
export type ListTemplatesData = RomeApiControllersExternalPartnerAdminSharedListResponseTemplateTemplateResponse;
|
|
783
|
+
export type ListTemplatesError = ErrorsPartnerErrorResponse;
|
|
784
|
+
export interface ListTemplatesParams {
|
|
785
|
+
limit?: number;
|
|
786
|
+
offset?: number;
|
|
787
|
+
}
|
|
788
|
+
export type ListToolkitsData = RomeApiControllersExternalPartnerUserSharedListResponseRomeApiControllersExternalPartnerUserToolkitToolkitResponse;
|
|
789
|
+
export type ListToolkitsError = ErrorsPartnerErrorResponse;
|
|
790
|
+
export interface ListToolkitsParams {
|
|
791
|
+
limit?: number;
|
|
792
|
+
offset?: number;
|
|
793
|
+
}
|
|
794
|
+
export type ListWebhookDeliveriesData = WebhookWebhookDeliveriesResponse;
|
|
795
|
+
export type ListWebhookDeliveriesError = ErrorsPartnerErrorResponse;
|
|
796
|
+
export interface ListWebhookDeliveriesParams {
|
|
797
|
+
event_type?: string;
|
|
798
|
+
limit?: number;
|
|
799
|
+
offset?: number;
|
|
800
|
+
status?: string;
|
|
801
|
+
}
|
|
802
|
+
export type ListWorkflowRunsData = RomeApiControllersExternalPartnerUserSharedListResponseWorkflowRunPartnerWorkflowRunResponse;
|
|
803
|
+
export type ListWorkflowRunsError = ErrorsPartnerErrorResponse;
|
|
804
|
+
export interface ListWorkflowRunsParams {
|
|
805
|
+
limit?: number;
|
|
806
|
+
offset?: number;
|
|
807
|
+
originating_type?: "meeting" | "canvas";
|
|
808
|
+
status?: "pending" | "active" | "completed" | "failed" | "cancelled" | "frozen";
|
|
809
|
+
workflow_template_id?: string;
|
|
810
|
+
}
|
|
811
|
+
export type ListWorkflowTemplatesData = RomeApiControllersExternalPartnerAdminSharedListResponseWorkflowPartnerWorkflowTemplateSummary;
|
|
812
|
+
export type ListWorkflowTemplatesError = ErrorsPartnerErrorResponse;
|
|
813
|
+
export interface ListWorkflowTemplatesParams {
|
|
814
|
+
limit?: number;
|
|
815
|
+
offset?: number;
|
|
816
|
+
}
|
|
332
817
|
export interface MeetingAddParticipantRequest {
|
|
333
818
|
email: string;
|
|
334
819
|
name: string;
|
|
@@ -339,6 +824,7 @@ export interface MeetingCreateAgendaItemRequest {
|
|
|
339
824
|
item_type: "DISCUSSION" | "DECISION" | "ACTION_ITEM" | "INFORMATION";
|
|
340
825
|
presenters?: string[];
|
|
341
826
|
restricted_to_leads?: boolean;
|
|
827
|
+
talking_points?: string;
|
|
342
828
|
time_allocation_minutes?: number;
|
|
343
829
|
title: string;
|
|
344
830
|
}
|
|
@@ -362,6 +848,7 @@ export interface MeetingPartnerAgendaItemResponse {
|
|
|
362
848
|
restricted_to_leads?: boolean;
|
|
363
849
|
sequence?: string;
|
|
364
850
|
status?: string;
|
|
851
|
+
talking_points?: string;
|
|
365
852
|
time_allocation_minutes?: number;
|
|
366
853
|
title?: string;
|
|
367
854
|
updated_at?: string;
|
|
@@ -400,654 +887,219 @@ export interface MeetingTemplateAppliedItemsCountsResponse {
|
|
|
400
887
|
export interface MeetingTemplateApplyTemplateRequest {
|
|
401
888
|
meeting_id: string;
|
|
402
889
|
}
|
|
403
|
-
export interface MeetingTemplateApplyTemplateResponse {
|
|
404
|
-
application_id?: string;
|
|
405
|
-
applied_items?: MeetingTemplateAppliedItemsCountsResponse;
|
|
406
|
-
success?: boolean;
|
|
407
|
-
}
|
|
408
|
-
export interface MeetingTemplatePartnerMeetingTemplateDetailResponse {
|
|
409
|
-
agenda_item_count?: number;
|
|
410
|
-
can_edit?: boolean;
|
|
411
|
-
created_at?: string;
|
|
412
|
-
description?: string;
|
|
413
|
-
document_count?: number;
|
|
414
|
-
id?: string;
|
|
415
|
-
is_active?: boolean;
|
|
416
|
-
name?: string;
|
|
417
|
-
ownership_type?: "SYSTEM" | "VERTICAL" | "WORKSPACE" | "USER";
|
|
418
|
-
participant_count?: number;
|
|
419
|
-
updated_at?: string;
|
|
420
|
-
}
|
|
421
|
-
export interface MeetingTemplatePartnerMeetingTemplateResponse {
|
|
422
|
-
created_at?: string;
|
|
423
|
-
description?: string;
|
|
424
|
-
id?: string;
|
|
425
|
-
is_active?: boolean;
|
|
426
|
-
name?: string;
|
|
427
|
-
ownership_type?: "SYSTEM" | "VERTICAL" | "WORKSPACE" | "USER";
|
|
428
|
-
updated_at?: string;
|
|
429
|
-
}
|
|
430
|
-
export interface MeetingTemplateTemplateNextStepResponse {
|
|
431
|
-
autopilot?: boolean;
|
|
432
|
-
color?: string;
|
|
433
|
-
description?: string;
|
|
434
|
-
icon_name?: string;
|
|
435
|
-
id?: string;
|
|
436
|
-
name?: string;
|
|
437
|
-
sort_order?: number;
|
|
438
|
-
}
|
|
439
|
-
export interface MeetingUpdateAgendaItemRequest {
|
|
440
|
-
description?: string;
|
|
441
|
-
item_type?: "DISCUSSION" | "DECISION" | "ACTION_ITEM" | "INFORMATION";
|
|
442
|
-
presenters?: string[];
|
|
443
|
-
restricted_to_leads?: boolean;
|
|
444
|
-
status?: "pending" | "in_progress" | "completed";
|
|
445
|
-
time_allocation_minutes?: number;
|
|
446
|
-
title?: string;
|
|
447
|
-
}
|
|
448
|
-
export interface MeetingUpdateMeetingError400 {
|
|
449
|
-
code?: "invalid_meeting_id" | "invalid_request" | "invalid_start_time" | "invalid_end_time" | "invalid_time_range";
|
|
450
|
-
error?: string;
|
|
451
|
-
request_id?: string;
|
|
452
|
-
}
|
|
453
|
-
export interface NextStepResultNextStepResultResponse {
|
|
454
|
-
content_format?: string;
|
|
455
|
-
created_at?: string;
|
|
456
|
-
execution_log_id?: string;
|
|
457
|
-
expires_at?: string;
|
|
458
|
-
generated_text?: string;
|
|
459
|
-
id?: string;
|
|
460
|
-
}
|
|
461
|
-
export interface OauthHealthResponse {
|
|
462
|
-
checks?: Record<string, unknown>;
|
|
463
|
-
service?: string;
|
|
464
|
-
status?: string;
|
|
465
|
-
timestamp?: string;
|
|
466
|
-
}
|
|
467
|
-
export interface OauthOAuthConsentCheckRequest {
|
|
468
|
-
client_id: string;
|
|
469
|
-
code_challenge?: string;
|
|
470
|
-
code_challenge_method?: string;
|
|
471
|
-
email: string;
|
|
472
|
-
redirect_uri?: string;
|
|
473
|
-
response_type?: string;
|
|
474
|
-
scopes?: string[];
|
|
475
|
-
state?: string;
|
|
476
|
-
}
|
|
477
|
-
export interface OauthOAuthConsentCheckResponse {
|
|
478
|
-
has_consent?: boolean;
|
|
479
|
-
redirect_url?: string;
|
|
480
|
-
requires_consent?: boolean;
|
|
481
|
-
session_valid?: boolean;
|
|
482
|
-
}
|
|
483
|
-
export interface OauthOAuthConsentRequest {
|
|
484
|
-
client_id: string;
|
|
485
|
-
code_challenge?: string;
|
|
486
|
-
code_challenge_method?: string;
|
|
487
|
-
consent: boolean;
|
|
488
|
-
email: string;
|
|
489
|
-
redirect_uri: string;
|
|
490
|
-
response_type: string;
|
|
491
|
-
scope?: string;
|
|
492
|
-
state?: string;
|
|
493
|
-
}
|
|
494
|
-
export interface OauthOAuthConsentResponse {
|
|
495
|
-
code?: string;
|
|
496
|
-
redirect_url?: string;
|
|
497
|
-
state?: string;
|
|
498
|
-
}
|
|
499
|
-
export interface OauthPartnerAuthInitiateRequest {
|
|
500
|
-
client_id: string;
|
|
501
|
-
email: string;
|
|
502
|
-
is_admin?: boolean;
|
|
503
|
-
name?: string;
|
|
504
|
-
workspace_id?: string;
|
|
505
|
-
}
|
|
506
|
-
export interface OauthPartnerAuthInitiateResponse {
|
|
507
|
-
challenge_name?: string;
|
|
508
|
-
challenge_params?: Record<string, string>;
|
|
509
|
-
session?: string;
|
|
510
|
-
user_provisioned?: boolean;
|
|
511
|
-
}
|
|
512
|
-
export interface OauthPartnerAuthResponse {
|
|
513
|
-
access_token?: string;
|
|
514
|
-
expires_in?: number;
|
|
515
|
-
id_token?: string;
|
|
516
|
-
message?: string;
|
|
517
|
-
redirect?: string;
|
|
518
|
-
refresh_token?: string;
|
|
519
|
-
success?: boolean;
|
|
520
|
-
}
|
|
521
|
-
export interface OauthPartnerAuthVerifyRequest {
|
|
522
|
-
client_id: string;
|
|
523
|
-
code: string;
|
|
524
|
-
email: string;
|
|
525
|
-
session: string;
|
|
526
|
-
}
|
|
527
|
-
export interface OauthPartnerInfoResponse {
|
|
528
|
-
client_id?: string;
|
|
529
|
-
co_brand_name?: string;
|
|
530
|
-
company_name?: string;
|
|
531
|
-
name?: string;
|
|
532
|
-
}
|
|
533
|
-
export interface OauthScopesResponse {
|
|
534
|
-
scopes?: string[];
|
|
535
|
-
}
|
|
536
|
-
export type OpenidConfigurationListData = RomeApiControllersExternalPartnerOauthDiscoveryDocument;
|
|
537
|
-
export type OpenidConfigurationListError = ErrorsErrorResponse;
|
|
538
|
-
export type PartnerAdminAppListData = SharedPartnerAppResponse;
|
|
539
|
-
export type PartnerAdminAppListError = ErrorsPartnerErrorResponse;
|
|
540
|
-
export type PartnerAdminAppStatusUpdateData = SharedPartnerAppResponse;
|
|
541
|
-
export type PartnerAdminAppStatusUpdateError = AppManagementUpdateAppStatusError400 | ErrorsPartnerErrorResponse;
|
|
542
|
-
export type PartnerAdminAppUpdateData = SharedPartnerAppResponse;
|
|
543
|
-
export type PartnerAdminAppUpdateError = AppManagementUpdateAppError400 | ErrorsPartnerErrorResponse;
|
|
544
|
-
export type PartnerAdminAutomationCreateData = AutomationAutomationResponse;
|
|
545
|
-
export type PartnerAdminAutomationCreateError = AutomationCreateAutomationError400 | ErrorsPartnerErrorResponse;
|
|
546
|
-
export type PartnerAdminAutomationDeleteData = any;
|
|
547
|
-
export type PartnerAdminAutomationDeleteError = ErrorsPartnerErrorResponse;
|
|
548
|
-
export interface PartnerAdminAutomationDeleteParams {
|
|
549
|
-
automationId: string;
|
|
550
|
-
}
|
|
551
|
-
export type PartnerAdminAutomationDetailData = AutomationAutomationResponse;
|
|
552
|
-
export type PartnerAdminAutomationDetailError = ErrorsPartnerErrorResponse;
|
|
553
|
-
export interface PartnerAdminAutomationDetailParams {
|
|
554
|
-
automationId: string;
|
|
555
|
-
}
|
|
556
|
-
export type PartnerAdminAutomationListData = RomeApiControllersExternalPartnerAdminSharedListResponseAutomationAutomationResponse;
|
|
557
|
-
export type PartnerAdminAutomationListError = ErrorsPartnerErrorResponse;
|
|
558
|
-
export interface PartnerAdminAutomationListParams {
|
|
559
|
-
limit?: number;
|
|
560
|
-
offset?: number;
|
|
561
|
-
}
|
|
562
|
-
export type PartnerAdminAutomationUpdateData = AutomationAutomationResponse;
|
|
563
|
-
export type PartnerAdminAutomationUpdateError = AutomationUpdateAutomationError400 | ErrorsPartnerErrorResponse;
|
|
564
|
-
export interface PartnerAdminAutomationUpdateParams {
|
|
565
|
-
automationId: string;
|
|
566
|
-
}
|
|
567
|
-
export type PartnerAdminConnectionsDeleteData = any;
|
|
568
|
-
export type PartnerAdminConnectionsDeleteError = ErrorsPartnerErrorResponse;
|
|
569
|
-
export interface PartnerAdminConnectionsDeleteParams {
|
|
570
|
-
connectionId: string;
|
|
571
|
-
}
|
|
572
|
-
export type PartnerAdminConnectionsDetailData = ConnectionUserConnectionResponse;
|
|
573
|
-
export type PartnerAdminConnectionsDetailError = ErrorsPartnerErrorResponse;
|
|
574
|
-
export interface PartnerAdminConnectionsDetailParams {
|
|
575
|
-
connectionId: string;
|
|
576
|
-
}
|
|
577
|
-
export type PartnerAdminConnectionsListData = RomeApiControllersExternalPartnerAdminSharedListResponseConnectionUserConnectionResponse;
|
|
578
|
-
export type PartnerAdminConnectionsListError = ErrorsPartnerErrorResponse;
|
|
579
|
-
export interface PartnerAdminConnectionsListParams {
|
|
580
|
-
limit?: number;
|
|
581
|
-
offset?: number;
|
|
582
|
-
status?: "active" | "revoked" | "expired";
|
|
583
|
-
user_id?: string;
|
|
584
|
-
}
|
|
585
|
-
export type PartnerAdminCredentialsApiKeyRollbackCreateData = any;
|
|
586
|
-
export type PartnerAdminCredentialsApiKeyRollbackCreateError = ErrorsPartnerErrorResponse;
|
|
587
|
-
export type PartnerAdminCredentialsApiKeyRotateCreateData = CredentialCredentialRotationResponse;
|
|
588
|
-
export type PartnerAdminCredentialsApiKeyRotateCreateError = CredentialRotateAPIKeyError400 | ErrorsPartnerErrorResponse;
|
|
589
|
-
export type PartnerAdminCredentialsClientSecretRollbackCreateData = any;
|
|
590
|
-
export type PartnerAdminCredentialsClientSecretRollbackCreateError = ErrorsPartnerErrorResponse;
|
|
591
|
-
export type PartnerAdminCredentialsClientSecretRotateCreateData = CredentialCredentialRotationResponse;
|
|
592
|
-
export type PartnerAdminCredentialsClientSecretRotateCreateError = CredentialRotateClientSecretError400 | ErrorsPartnerErrorResponse;
|
|
593
|
-
export type PartnerAdminCredentialsHistoryListData = Record<string, unknown>;
|
|
594
|
-
export type PartnerAdminCredentialsHistoryListError = ErrorsPartnerErrorResponse;
|
|
595
|
-
export interface PartnerAdminCredentialsHistoryListParams {
|
|
596
|
-
credential_type?: string;
|
|
597
|
-
limit?: number;
|
|
598
|
-
offset?: number;
|
|
599
|
-
}
|
|
600
|
-
export type PartnerAdminCredentialsListData = Record<string, CredentialCredentialStatusResponse>;
|
|
601
|
-
export type PartnerAdminCredentialsListError = ErrorsPartnerErrorResponse;
|
|
602
|
-
export type PartnerAdminCredentialsWebhookSecretRotateCreateData = CredentialCredentialRotationResponse;
|
|
603
|
-
export type PartnerAdminCredentialsWebhookSecretRotateCreateError = CredentialRotateWebhookSecretError400 | ErrorsPartnerErrorResponse;
|
|
604
|
-
export type PartnerAdminIdpCreateData = IdpIdPConfigResponse;
|
|
605
|
-
export type PartnerAdminIdpCreateError = IdpCreateIdPConfigError400 | ErrorsPartnerErrorResponse;
|
|
606
|
-
export type PartnerAdminIdpDeleteData = any;
|
|
607
|
-
export type PartnerAdminIdpDeleteError = ErrorsPartnerErrorResponse;
|
|
608
|
-
export type PartnerAdminIdpListData = IdpIdPConfigResponse;
|
|
609
|
-
export type PartnerAdminIdpListError = ErrorsPartnerErrorResponse;
|
|
610
|
-
export type PartnerAdminIdpUpdateData = IdpIdPConfigResponse;
|
|
611
|
-
export type PartnerAdminIdpUpdateError = IdpUpdateIdPConfigError400 | ErrorsPartnerErrorResponse;
|
|
612
|
-
export type PartnerAdminTemplatesCreateData = TemplateTemplateResponse;
|
|
613
|
-
export type PartnerAdminTemplatesCreateError = ErrorsPartnerErrorResponse;
|
|
614
|
-
export type PartnerAdminTemplatesDeleteData = any;
|
|
615
|
-
export type PartnerAdminTemplatesDeleteError = ErrorsPartnerErrorResponse;
|
|
616
|
-
export interface PartnerAdminTemplatesDeleteParams {
|
|
617
|
-
templateId: string;
|
|
618
|
-
}
|
|
619
|
-
export type PartnerAdminTemplatesDetailData = TemplateTemplateResponse;
|
|
620
|
-
export type PartnerAdminTemplatesDetailError = ErrorsPartnerErrorResponse;
|
|
621
|
-
export interface PartnerAdminTemplatesDetailParams {
|
|
622
|
-
templateId: string;
|
|
623
|
-
}
|
|
624
|
-
export type PartnerAdminTemplatesListData = RomeApiControllersExternalPartnerAdminSharedListResponseTemplateTemplateResponse;
|
|
625
|
-
export type PartnerAdminTemplatesListError = ErrorsPartnerErrorResponse;
|
|
626
|
-
export interface PartnerAdminTemplatesListParams {
|
|
627
|
-
limit?: number;
|
|
628
|
-
offset?: number;
|
|
629
|
-
}
|
|
630
|
-
export type PartnerAdminTemplatesNextStepsCreateData = any;
|
|
631
|
-
export type PartnerAdminTemplatesNextStepsCreateError = ErrorsPartnerErrorResponse;
|
|
632
|
-
export interface PartnerAdminTemplatesNextStepsCreateParams {
|
|
633
|
-
templateId: string;
|
|
634
|
-
}
|
|
635
|
-
export type PartnerAdminTemplatesNextStepsDeleteData = any;
|
|
636
|
-
export type PartnerAdminTemplatesNextStepsDeleteError = ErrorsPartnerErrorResponse;
|
|
637
|
-
export interface PartnerAdminTemplatesNextStepsDeleteParams {
|
|
638
|
-
nextStepId: string;
|
|
639
|
-
templateId: string;
|
|
640
|
-
}
|
|
641
|
-
export type PartnerAdminTemplatesNextStepsListData = RomeApiControllersExternalPartnerAdminSharedListResponseTemplateTemplateNextStepResponse;
|
|
642
|
-
export type PartnerAdminTemplatesNextStepsListError = ErrorsPartnerErrorResponse;
|
|
643
|
-
export interface PartnerAdminTemplatesNextStepsListParams {
|
|
644
|
-
templateId: string;
|
|
645
|
-
}
|
|
646
|
-
export type PartnerAdminTemplatesNextStepsUpdateData = any;
|
|
647
|
-
export type PartnerAdminTemplatesNextStepsUpdateError = ErrorsPartnerErrorResponse;
|
|
648
|
-
export interface PartnerAdminTemplatesNextStepsUpdateParams {
|
|
649
|
-
nextStepId: string;
|
|
650
|
-
templateId: string;
|
|
651
|
-
}
|
|
652
|
-
export type PartnerAdminTemplatesUpdateData = TemplateTemplateResponse;
|
|
653
|
-
export type PartnerAdminTemplatesUpdateError = ErrorsPartnerErrorResponse;
|
|
654
|
-
export interface PartnerAdminTemplatesUpdateParams {
|
|
655
|
-
templateId: string;
|
|
656
|
-
}
|
|
657
|
-
export type PartnerAdminToolkitsCreateData = ToolkitCreateToolkitResponse;
|
|
658
|
-
export type PartnerAdminToolkitsCreateError = ErrorsPartnerErrorResponse;
|
|
659
|
-
export type PartnerAdminToolkitsDeleteData = any;
|
|
660
|
-
export type PartnerAdminToolkitsDeleteError = ErrorsPartnerErrorResponse;
|
|
661
|
-
export interface PartnerAdminToolkitsDeleteParams {
|
|
662
|
-
toolkitId: string;
|
|
663
|
-
}
|
|
664
|
-
export type PartnerAdminToolkitsDetailData = RomeApiControllersExternalPartnerAdminToolkitToolkitResponse;
|
|
665
|
-
export type PartnerAdminToolkitsDetailError = ErrorsPartnerErrorResponse;
|
|
666
|
-
export interface PartnerAdminToolkitsDetailParams {
|
|
667
|
-
toolkitId: string;
|
|
668
|
-
}
|
|
669
|
-
export type PartnerAdminToolkitsExportCreateData = ToolkitExportResponse;
|
|
670
|
-
export type PartnerAdminToolkitsExportCreateError = ErrorsPartnerErrorResponse;
|
|
671
|
-
export type PartnerAdminToolkitsExportListData = ToolkitExportResponse;
|
|
672
|
-
export type PartnerAdminToolkitsExportListError = ErrorsPartnerErrorResponse;
|
|
673
|
-
export interface PartnerAdminToolkitsExportListParams {
|
|
674
|
-
toolkitId: string;
|
|
675
|
-
}
|
|
676
|
-
export type PartnerAdminToolkitsListData = RomeApiControllersExternalPartnerUserSharedListResponseRomeApiControllersExternalPartnerAdminToolkitToolkitResponse;
|
|
677
|
-
export type PartnerAdminToolkitsListError = ErrorsPartnerErrorResponse;
|
|
678
|
-
export interface PartnerAdminToolkitsListParams {
|
|
679
|
-
limit?: number;
|
|
680
|
-
offset?: number;
|
|
681
|
-
}
|
|
682
|
-
export type PartnerAdminToolkitsUpdateData = RomeApiControllersExternalPartnerAdminToolkitToolkitResponse;
|
|
683
|
-
export type PartnerAdminToolkitsUpdateError = ErrorsPartnerErrorResponse;
|
|
684
|
-
export interface PartnerAdminToolkitsUpdateParams {
|
|
685
|
-
toolkitId: string;
|
|
686
|
-
}
|
|
687
|
-
export type PartnerAdminToolkitsVersionsCreateData = ToolkitCreateVersionResponse;
|
|
688
|
-
export type PartnerAdminToolkitsVersionsCreateError = ErrorsPartnerErrorResponse;
|
|
689
|
-
export interface PartnerAdminToolkitsVersionsCreateParams {
|
|
690
|
-
toolkitId: string;
|
|
691
|
-
}
|
|
692
|
-
export type PartnerAdminToolkitsVersionsDeleteData = any;
|
|
693
|
-
export type PartnerAdminToolkitsVersionsDeleteError = ErrorsPartnerErrorResponse;
|
|
694
|
-
export interface PartnerAdminToolkitsVersionsDeleteParams {
|
|
695
|
-
toolkitId: string;
|
|
696
|
-
versionId: string;
|
|
697
|
-
}
|
|
698
|
-
export type PartnerAdminToolkitsVersionsDetailData = ToolkitVersionResponse;
|
|
699
|
-
export type PartnerAdminToolkitsVersionsDetailError = ErrorsPartnerErrorResponse;
|
|
700
|
-
export interface PartnerAdminToolkitsVersionsDetailParams {
|
|
701
|
-
toolkitId: string;
|
|
702
|
-
versionId: string;
|
|
703
|
-
}
|
|
704
|
-
export type PartnerAdminToolkitsVersionsListData = ToolkitVersionResponse[];
|
|
705
|
-
export type PartnerAdminToolkitsVersionsListError = ErrorsPartnerErrorResponse;
|
|
706
|
-
export interface PartnerAdminToolkitsVersionsListParams {
|
|
707
|
-
toolkitId: string;
|
|
708
|
-
}
|
|
709
|
-
export type PartnerAdminToolkitsVersionsPartialUpdateData = ToolkitVersionResponse;
|
|
710
|
-
export type PartnerAdminToolkitsVersionsPartialUpdateError = ErrorsPartnerErrorResponse;
|
|
711
|
-
export interface PartnerAdminToolkitsVersionsPartialUpdateParams {
|
|
712
|
-
toolkitId: string;
|
|
713
|
-
versionId: string;
|
|
714
|
-
}
|
|
715
|
-
export type PartnerAdminToolkitsVersionsPublishCreateData = any;
|
|
716
|
-
export type PartnerAdminToolkitsVersionsPublishCreateError = ErrorsPartnerErrorResponse;
|
|
717
|
-
export interface PartnerAdminToolkitsVersionsPublishCreateParams {
|
|
718
|
-
toolkitId: string;
|
|
719
|
-
versionId: string;
|
|
720
|
-
}
|
|
721
|
-
export type PartnerAdminToolkitsVersionsRepublishCreateData = any;
|
|
722
|
-
export type PartnerAdminToolkitsVersionsRepublishCreateError = ErrorsPartnerErrorResponse;
|
|
723
|
-
export interface PartnerAdminToolkitsVersionsRepublishCreateParams {
|
|
724
|
-
toolkitId: string;
|
|
725
|
-
versionId: string;
|
|
726
|
-
}
|
|
727
|
-
export type PartnerAdminWebhookDeliveriesDetailData = WebhookWebhookDeliveryResponse;
|
|
728
|
-
export type PartnerAdminWebhookDeliveriesDetailError = ErrorsPartnerErrorResponse;
|
|
729
|
-
export interface PartnerAdminWebhookDeliveriesDetailParams {
|
|
730
|
-
deliveryId: string;
|
|
731
|
-
}
|
|
732
|
-
export type PartnerAdminWebhookDeliveriesListData = WebhookWebhookDeliveriesResponse;
|
|
733
|
-
export type PartnerAdminWebhookDeliveriesListError = ErrorsPartnerErrorResponse;
|
|
734
|
-
export interface PartnerAdminWebhookDeliveriesListParams {
|
|
735
|
-
event_type?: string;
|
|
736
|
-
limit?: number;
|
|
737
|
-
offset?: number;
|
|
738
|
-
status?: string;
|
|
739
|
-
}
|
|
740
|
-
export type PartnerAdminWebhookDeliveriesRetryCreateData = Record<string, unknown>;
|
|
741
|
-
export type PartnerAdminWebhookDeliveriesRetryCreateError = ErrorsPartnerErrorResponse;
|
|
742
|
-
export interface PartnerAdminWebhookDeliveriesRetryCreateParams {
|
|
743
|
-
deliveryId: string;
|
|
744
|
-
}
|
|
745
|
-
export type PartnerAdminWebhookFilterDeleteData = SharedPartnerAppResponse;
|
|
746
|
-
export type PartnerAdminWebhookFilterDeleteError = ErrorsPartnerErrorResponse;
|
|
747
|
-
export type PartnerAdminWebhookFilterUpdateData = SharedPartnerAppResponse;
|
|
748
|
-
export type PartnerAdminWebhookFilterUpdateError = AppManagementUpdateWebhookFilterError400 | ErrorsPartnerErrorResponse;
|
|
749
|
-
export type PartnerAdminWebhookStatusUpdateData = SharedPartnerAppResponse;
|
|
750
|
-
export type PartnerAdminWebhookStatusUpdateError = ErrorsPartnerErrorResponse;
|
|
751
|
-
export interface PartnerAutomationAction {
|
|
752
|
-
config?: Record<string, string>;
|
|
753
|
-
type: string;
|
|
754
|
-
}
|
|
755
|
-
export type PartnerInfoPublicListData = OauthPartnerInfoResponse;
|
|
756
|
-
export type PartnerInfoPublicListError = ErrorsErrorResponse;
|
|
757
|
-
export interface PartnerInfoPublicListParams {
|
|
758
|
-
clientId: string;
|
|
759
|
-
}
|
|
760
|
-
export type PartnerSsoCallbackListError = string | Record<string, unknown>;
|
|
761
|
-
export interface PartnerSsoCallbackListParams {
|
|
762
|
-
code?: string;
|
|
763
|
-
error?: string;
|
|
764
|
-
error_description?: string;
|
|
765
|
-
state: string;
|
|
766
|
-
}
|
|
767
|
-
export type PartnerSsoInfoDetailData = SsoPartnerSSOInfoResponse;
|
|
768
|
-
export type PartnerSsoInfoDetailError = SsoErrorResponse;
|
|
769
|
-
export interface PartnerSsoInfoDetailParams {
|
|
770
|
-
slug: string;
|
|
771
|
-
}
|
|
772
|
-
export type PartnerSsoInitiateListData = SsoInitiateResponse;
|
|
773
|
-
export type PartnerSsoInitiateListError = string | Record<string, unknown>;
|
|
774
|
-
export interface PartnerSsoInitiateListParams {
|
|
775
|
-
auto?: boolean;
|
|
776
|
-
slug: string;
|
|
777
|
-
target?: "web" | "desktop" | "backlog";
|
|
778
|
-
}
|
|
779
|
-
export type PartnerSsoSessionDetailData = SsoSessionStatusResponse;
|
|
780
|
-
export type PartnerSsoSessionDetailError = Record<string, unknown>;
|
|
781
|
-
export interface PartnerSsoSessionDetailParams {
|
|
782
|
-
sessionId: string;
|
|
783
|
-
}
|
|
784
|
-
export type PartnerUserActionItemsCreateData = ActionItemPartnerActionItemResponse;
|
|
785
|
-
export type PartnerUserActionItemsCreateError = ActionItemCreateActionItemError400 | ErrorsPartnerErrorResponse;
|
|
786
|
-
export type PartnerUserActionItemsDeleteData = any;
|
|
787
|
-
export type PartnerUserActionItemsDeleteError = ErrorsPartnerErrorResponse;
|
|
788
|
-
export interface PartnerUserActionItemsDeleteParams {
|
|
789
|
-
id: string;
|
|
790
|
-
}
|
|
791
|
-
export type PartnerUserActionItemsDetailData = ActionItemPartnerActionItemResponse;
|
|
792
|
-
export type PartnerUserActionItemsDetailError = ErrorsPartnerErrorResponse;
|
|
793
|
-
export interface PartnerUserActionItemsDetailParams {
|
|
794
|
-
id: string;
|
|
795
|
-
}
|
|
796
|
-
export type PartnerUserActionItemsListData = RomeApiControllersExternalPartnerUserSharedListResponseActionItemPartnerActionItemResponse;
|
|
797
|
-
export type PartnerUserActionItemsListError = ActionItemGetActionItemsError400 | ErrorsPartnerErrorResponse;
|
|
798
|
-
export interface PartnerUserActionItemsListParams {
|
|
799
|
-
end_date?: string;
|
|
800
|
-
has_partner_assignment?: boolean;
|
|
801
|
-
is_completed?: boolean;
|
|
802
|
-
limit?: number;
|
|
803
|
-
meeting_id?: string;
|
|
804
|
-
offset?: number;
|
|
805
|
-
start_date?: string;
|
|
806
|
-
}
|
|
807
|
-
export type PartnerUserActionItemsUpdateData = ActionItemPartnerActionItemResponse;
|
|
808
|
-
export type PartnerUserActionItemsUpdateError = ActionItemUpdateActionItemError400 | ErrorsPartnerErrorResponse;
|
|
809
|
-
export interface PartnerUserActionItemsUpdateParams {
|
|
810
|
-
id: string;
|
|
811
|
-
}
|
|
812
|
-
export type PartnerUserCalendarEventsDetailData = CalendarPartnerCalendarEventResponse;
|
|
813
|
-
export type PartnerUserCalendarEventsDetailError = ErrorsPartnerErrorResponse;
|
|
814
|
-
export interface PartnerUserCalendarEventsDetailParams {
|
|
815
|
-
calendarEventId: string;
|
|
816
|
-
}
|
|
817
|
-
export type PartnerUserCalendarEventsListData = RomeApiControllersExternalPartnerUserSharedListResponseCalendarPartnerCalendarEventResponse;
|
|
818
|
-
export type PartnerUserCalendarEventsListError = CalendarGetCalendarEventsError400 | ErrorsPartnerErrorResponse;
|
|
819
|
-
export interface PartnerUserCalendarEventsListParams {
|
|
820
|
-
direction?: string;
|
|
821
|
-
end?: string;
|
|
822
|
-
end_date?: string;
|
|
823
|
-
limit?: number;
|
|
824
|
-
offset?: number;
|
|
825
|
-
start?: string;
|
|
826
|
-
start_date?: string;
|
|
827
|
-
}
|
|
828
|
-
export type PartnerUserCalendarEventsMeetingCreateData = CalendarPartnerCreateMeetingFromCalendarEventResponse;
|
|
829
|
-
export type PartnerUserCalendarEventsMeetingCreateError = CalendarCreateMeetingFromCalendarEventError400 | ErrorsPartnerErrorResponse;
|
|
830
|
-
export interface PartnerUserCalendarEventsMeetingCreateParams {
|
|
831
|
-
calendarEventId: string;
|
|
832
|
-
}
|
|
833
|
-
export type PartnerUserMeetingTemplatesApplyCreateData = MeetingTemplateApplyTemplateResponse;
|
|
834
|
-
export type PartnerUserMeetingTemplatesApplyCreateError = ErrorsPartnerErrorResponse;
|
|
835
|
-
export interface PartnerUserMeetingTemplatesApplyCreateParams {
|
|
836
|
-
id: string;
|
|
837
|
-
}
|
|
838
|
-
export type PartnerUserMeetingTemplatesDetailData = MeetingTemplatePartnerMeetingTemplateDetailResponse;
|
|
839
|
-
export type PartnerUserMeetingTemplatesDetailError = ErrorsPartnerErrorResponse;
|
|
840
|
-
export interface PartnerUserMeetingTemplatesDetailParams {
|
|
841
|
-
id: string;
|
|
842
|
-
}
|
|
843
|
-
export type PartnerUserMeetingTemplatesListData = RomeApiControllersExternalPartnerUserSharedListResponseMeetingTemplatePartnerMeetingTemplateResponse;
|
|
844
|
-
export type PartnerUserMeetingTemplatesListError = ErrorsPartnerErrorResponse;
|
|
845
|
-
export interface PartnerUserMeetingTemplatesListParams {
|
|
846
|
-
limit?: number;
|
|
847
|
-
offset?: number;
|
|
848
|
-
}
|
|
849
|
-
export type PartnerUserMeetingTemplatesNextStepsListData = RomeApiControllersExternalPartnerUserSharedListResponseMeetingTemplateTemplateNextStepResponse;
|
|
850
|
-
export type PartnerUserMeetingTemplatesNextStepsListError = ErrorsPartnerErrorResponse;
|
|
851
|
-
export interface PartnerUserMeetingTemplatesNextStepsListParams {
|
|
852
|
-
id: string;
|
|
853
|
-
}
|
|
854
|
-
export type PartnerUserMeetingsActionButtonsListData = RomeApiControllersExternalPartnerUserSharedListResponseSharedActionButtonResponse;
|
|
855
|
-
export type PartnerUserMeetingsActionButtonsListError = ErrorsPartnerErrorResponse;
|
|
856
|
-
export interface PartnerUserMeetingsActionButtonsListParams {
|
|
857
|
-
id: string;
|
|
858
|
-
}
|
|
859
|
-
export type PartnerUserMeetingsActionButtonsTriggerCreateData = SharedTriggerActionButtonResponse;
|
|
860
|
-
export type PartnerUserMeetingsActionButtonsTriggerCreateError = ErrorsPartnerErrorResponse;
|
|
861
|
-
export interface PartnerUserMeetingsActionButtonsTriggerCreateParams {
|
|
862
|
-
buttonId: string;
|
|
863
|
-
id: string;
|
|
864
|
-
}
|
|
865
|
-
export type PartnerUserMeetingsAgendaItemsCreateData = MeetingPartnerAgendaItemResponse;
|
|
866
|
-
export type PartnerUserMeetingsAgendaItemsCreateError = ErrorsPartnerErrorResponse;
|
|
867
|
-
export interface PartnerUserMeetingsAgendaItemsCreateParams {
|
|
868
|
-
id: string;
|
|
869
|
-
}
|
|
870
|
-
export type PartnerUserMeetingsAgendaItemsDeleteData = any;
|
|
871
|
-
export type PartnerUserMeetingsAgendaItemsDeleteError = ErrorsPartnerErrorResponse;
|
|
872
|
-
export interface PartnerUserMeetingsAgendaItemsDeleteParams {
|
|
873
|
-
id: string;
|
|
874
|
-
itemId: string;
|
|
875
|
-
}
|
|
876
|
-
export type PartnerUserMeetingsAgendaItemsListData = RomeApiControllersExternalPartnerUserSharedListResponseMeetingPartnerAgendaItemResponse;
|
|
877
|
-
export type PartnerUserMeetingsAgendaItemsListError = ErrorsPartnerErrorResponse;
|
|
878
|
-
export interface PartnerUserMeetingsAgendaItemsListParams {
|
|
879
|
-
id: string;
|
|
880
|
-
}
|
|
881
|
-
export type PartnerUserMeetingsAgendaItemsUpdateData = MeetingPartnerAgendaItemResponse;
|
|
882
|
-
export type PartnerUserMeetingsAgendaItemsUpdateError = ErrorsPartnerErrorResponse;
|
|
883
|
-
export interface PartnerUserMeetingsAgendaItemsUpdateParams {
|
|
884
|
-
id: string;
|
|
885
|
-
itemId: string;
|
|
886
|
-
}
|
|
887
|
-
export type PartnerUserMeetingsCalendarLinkCreateData = CalendarLinkCalendarEventResponse;
|
|
888
|
-
export type PartnerUserMeetingsCalendarLinkCreateError = CalendarLinkCalendarEventError400 | ErrorsPartnerErrorResponse;
|
|
889
|
-
export interface PartnerUserMeetingsCalendarLinkCreateParams {
|
|
890
|
-
id: string;
|
|
891
|
-
}
|
|
892
|
-
export type PartnerUserMeetingsCalendarUnlinkDeleteData = CalendarLinkCalendarEventResponse;
|
|
893
|
-
export type PartnerUserMeetingsCalendarUnlinkDeleteError = ErrorsPartnerErrorResponse;
|
|
894
|
-
export interface PartnerUserMeetingsCalendarUnlinkDeleteParams {
|
|
895
|
-
id: string;
|
|
896
|
-
}
|
|
897
|
-
export type PartnerUserMeetingsContextContentListData = File;
|
|
898
|
-
export type PartnerUserMeetingsContextContentListError = ErrorsPartnerErrorResponse;
|
|
899
|
-
export interface PartnerUserMeetingsContextContentListParams {
|
|
900
|
-
contextId: string;
|
|
901
|
-
id: string;
|
|
902
|
-
}
|
|
903
|
-
export type PartnerUserMeetingsContextCreateData = ContextMeetingContextResponse;
|
|
904
|
-
export type PartnerUserMeetingsContextCreateError = ErrorsPartnerErrorResponse;
|
|
905
|
-
export interface PartnerUserMeetingsContextCreateParams {
|
|
906
|
-
id: string;
|
|
907
|
-
}
|
|
908
|
-
export interface PartnerUserMeetingsContextCreatePayload {
|
|
909
|
-
context_type?: string;
|
|
910
|
-
file: File;
|
|
911
|
-
source_format: string;
|
|
912
|
-
title?: string;
|
|
913
|
-
}
|
|
914
|
-
export type PartnerUserMeetingsContextDeleteData = any;
|
|
915
|
-
export type PartnerUserMeetingsContextDeleteError = ErrorsPartnerErrorResponse;
|
|
916
|
-
export interface PartnerUserMeetingsContextDeleteParams {
|
|
917
|
-
contextId: string;
|
|
918
|
-
id: string;
|
|
919
|
-
}
|
|
920
|
-
export type PartnerUserMeetingsContextDetailData = ContextMeetingContextResponse;
|
|
921
|
-
export type PartnerUserMeetingsContextDetailError = ErrorsPartnerErrorResponse;
|
|
922
|
-
export interface PartnerUserMeetingsContextDetailParams {
|
|
923
|
-
contextId: string;
|
|
924
|
-
id: string;
|
|
890
|
+
export interface MeetingTemplateApplyTemplateResponse {
|
|
891
|
+
application_id?: string;
|
|
892
|
+
applied_items?: MeetingTemplateAppliedItemsCountsResponse;
|
|
893
|
+
success?: boolean;
|
|
925
894
|
}
|
|
926
|
-
export
|
|
927
|
-
|
|
928
|
-
|
|
929
|
-
|
|
930
|
-
|
|
931
|
-
|
|
895
|
+
export interface MeetingTemplatePartnerMeetingTemplateDetailResponse {
|
|
896
|
+
agenda_item_count?: number;
|
|
897
|
+
can_edit?: boolean;
|
|
898
|
+
created_at?: string;
|
|
899
|
+
description?: string;
|
|
900
|
+
document_count?: number;
|
|
901
|
+
id?: string;
|
|
902
|
+
is_active?: boolean;
|
|
903
|
+
name?: string;
|
|
904
|
+
ownership_type?: "SYSTEM" | "VERTICAL" | "WORKSPACE" | "USER" | "PARTNER";
|
|
905
|
+
participant_count?: number;
|
|
906
|
+
updated_at?: string;
|
|
932
907
|
}
|
|
933
|
-
export
|
|
934
|
-
|
|
935
|
-
|
|
936
|
-
|
|
937
|
-
|
|
938
|
-
|
|
908
|
+
export interface MeetingTemplatePartnerMeetingTemplateResponse {
|
|
909
|
+
created_at?: string;
|
|
910
|
+
description?: string;
|
|
911
|
+
id?: string;
|
|
912
|
+
is_active?: boolean;
|
|
913
|
+
name?: string;
|
|
914
|
+
ownership_type?: "SYSTEM" | "VERTICAL" | "WORKSPACE" | "USER" | "PARTNER";
|
|
915
|
+
updated_at?: string;
|
|
939
916
|
}
|
|
940
|
-
export
|
|
941
|
-
|
|
942
|
-
|
|
943
|
-
|
|
944
|
-
|
|
945
|
-
|
|
946
|
-
|
|
917
|
+
export interface MeetingTemplateTemplateNextStepResponse {
|
|
918
|
+
autopilot?: boolean;
|
|
919
|
+
color?: string;
|
|
920
|
+
description?: string;
|
|
921
|
+
icon_name?: string;
|
|
922
|
+
id?: string;
|
|
923
|
+
name?: string;
|
|
924
|
+
sort_order?: number;
|
|
947
925
|
}
|
|
948
|
-
export
|
|
949
|
-
|
|
950
|
-
|
|
951
|
-
|
|
952
|
-
|
|
926
|
+
export interface MeetingUpdateAgendaItemRequest {
|
|
927
|
+
description?: string;
|
|
928
|
+
item_type?: "DISCUSSION" | "DECISION" | "ACTION_ITEM" | "INFORMATION";
|
|
929
|
+
presenters?: string[];
|
|
930
|
+
restricted_to_leads?: boolean;
|
|
931
|
+
status?: "pending" | "in_progress" | "completed";
|
|
932
|
+
talking_points?: string;
|
|
933
|
+
time_allocation_minutes?: number;
|
|
934
|
+
title?: string;
|
|
953
935
|
}
|
|
954
|
-
export
|
|
955
|
-
|
|
956
|
-
|
|
957
|
-
|
|
936
|
+
export interface MeetingUpdateMeetingError400 {
|
|
937
|
+
code?: "invalid_meeting_id" | "invalid_request" | "invalid_start_time" | "invalid_end_time" | "invalid_time_range";
|
|
938
|
+
error?: string;
|
|
939
|
+
request_id?: string;
|
|
958
940
|
}
|
|
959
|
-
export
|
|
960
|
-
|
|
961
|
-
|
|
962
|
-
|
|
941
|
+
export interface MiddlewareFeatureNotAvailableResponse {
|
|
942
|
+
code?: string;
|
|
943
|
+
current_plan?: string;
|
|
944
|
+
feature?: string;
|
|
945
|
+
message?: string;
|
|
946
|
+
required_plan?: string;
|
|
963
947
|
}
|
|
964
|
-
export
|
|
965
|
-
|
|
966
|
-
|
|
967
|
-
|
|
948
|
+
export interface NextStepResultNextStepResultResponse {
|
|
949
|
+
content_format?: string;
|
|
950
|
+
created_at?: string;
|
|
951
|
+
execution_log_id?: string;
|
|
952
|
+
expires_at?: string;
|
|
953
|
+
generated_text?: string;
|
|
954
|
+
id?: string;
|
|
968
955
|
}
|
|
969
|
-
export
|
|
970
|
-
|
|
971
|
-
|
|
972
|
-
|
|
973
|
-
|
|
956
|
+
export interface OauthHealthResponse {
|
|
957
|
+
checks?: Record<string, unknown>;
|
|
958
|
+
service?: string;
|
|
959
|
+
status?: string;
|
|
960
|
+
timestamp?: string;
|
|
974
961
|
}
|
|
975
|
-
export
|
|
976
|
-
|
|
977
|
-
|
|
978
|
-
|
|
962
|
+
export interface OauthOAuthConsentCheckRequest {
|
|
963
|
+
client_id: string;
|
|
964
|
+
code_challenge?: string;
|
|
965
|
+
code_challenge_method?: string;
|
|
966
|
+
email: string;
|
|
967
|
+
redirect_uri?: string;
|
|
968
|
+
response_type?: string;
|
|
969
|
+
scopes?: string[];
|
|
970
|
+
state?: string;
|
|
979
971
|
}
|
|
980
|
-
export
|
|
981
|
-
|
|
982
|
-
|
|
983
|
-
|
|
972
|
+
export interface OauthOAuthConsentCheckResponse {
|
|
973
|
+
has_consent?: boolean;
|
|
974
|
+
redirect_url?: string;
|
|
975
|
+
requires_consent?: boolean;
|
|
976
|
+
session_valid?: boolean;
|
|
984
977
|
}
|
|
985
|
-
export
|
|
986
|
-
|
|
987
|
-
|
|
988
|
-
|
|
989
|
-
|
|
990
|
-
|
|
991
|
-
|
|
992
|
-
|
|
993
|
-
|
|
994
|
-
|
|
978
|
+
export interface OauthOAuthConsentRequest {
|
|
979
|
+
client_id: string;
|
|
980
|
+
code_challenge?: string;
|
|
981
|
+
code_challenge_method?: string;
|
|
982
|
+
consent: boolean;
|
|
983
|
+
email: string;
|
|
984
|
+
redirect_uri: string;
|
|
985
|
+
response_type: string;
|
|
986
|
+
scope?: string;
|
|
987
|
+
state?: string;
|
|
995
988
|
}
|
|
996
|
-
export
|
|
997
|
-
|
|
998
|
-
|
|
999
|
-
|
|
1000
|
-
meeting_id?: string;
|
|
1001
|
-
offset?: number;
|
|
989
|
+
export interface OauthOAuthConsentResponse {
|
|
990
|
+
code?: string;
|
|
991
|
+
redirect_url?: string;
|
|
992
|
+
state?: string;
|
|
1002
993
|
}
|
|
1003
|
-
export
|
|
1004
|
-
|
|
1005
|
-
|
|
1006
|
-
|
|
1007
|
-
|
|
994
|
+
export interface OauthPartnerAuthInitiateRequest {
|
|
995
|
+
client_id: string;
|
|
996
|
+
email: string;
|
|
997
|
+
is_admin?: boolean;
|
|
998
|
+
name?: string;
|
|
999
|
+
workspace_id?: string;
|
|
1008
1000
|
}
|
|
1009
|
-
export
|
|
1010
|
-
|
|
1011
|
-
|
|
1012
|
-
|
|
1001
|
+
export interface OauthPartnerAuthInitiateResponse {
|
|
1002
|
+
challenge_name?: string;
|
|
1003
|
+
challenge_params?: Record<string, string>;
|
|
1004
|
+
session?: string;
|
|
1005
|
+
user_provisioned?: boolean;
|
|
1013
1006
|
}
|
|
1014
|
-
export
|
|
1015
|
-
|
|
1016
|
-
|
|
1017
|
-
|
|
1007
|
+
export interface OauthPartnerAuthResponse {
|
|
1008
|
+
access_token?: string;
|
|
1009
|
+
expires_in?: number;
|
|
1010
|
+
id_token?: string;
|
|
1011
|
+
message?: string;
|
|
1012
|
+
redirect?: string;
|
|
1013
|
+
refresh_token?: string;
|
|
1014
|
+
success?: boolean;
|
|
1018
1015
|
}
|
|
1019
|
-
export
|
|
1020
|
-
|
|
1021
|
-
|
|
1022
|
-
|
|
1023
|
-
|
|
1016
|
+
export interface OauthPartnerAuthVerifyRequest {
|
|
1017
|
+
client_id: string;
|
|
1018
|
+
code: string;
|
|
1019
|
+
email: string;
|
|
1020
|
+
session: string;
|
|
1024
1021
|
}
|
|
1025
|
-
export
|
|
1026
|
-
|
|
1027
|
-
|
|
1028
|
-
|
|
1029
|
-
|
|
1022
|
+
export interface OauthPartnerInfoResponse {
|
|
1023
|
+
client_id?: string;
|
|
1024
|
+
co_brand_name?: string;
|
|
1025
|
+
company_name?: string;
|
|
1026
|
+
name?: string;
|
|
1030
1027
|
}
|
|
1031
|
-
export
|
|
1032
|
-
|
|
1033
|
-
|
|
1034
|
-
|
|
1028
|
+
export interface OauthScopesResponse {
|
|
1029
|
+
scopes?: string[];
|
|
1030
|
+
}
|
|
1031
|
+
export interface PartnerAutomationAction {
|
|
1032
|
+
config?: Record<string, string>;
|
|
1033
|
+
type: string;
|
|
1035
1034
|
}
|
|
1036
1035
|
export interface ProfileUserProfileResponse {
|
|
1037
1036
|
created_at?: string;
|
|
1038
1037
|
display_name?: string;
|
|
1039
1038
|
email?: string;
|
|
1040
1039
|
id?: string;
|
|
1040
|
+
plan_type?: string;
|
|
1041
1041
|
workspace_id?: string;
|
|
1042
1042
|
workspace_name?: string;
|
|
1043
1043
|
workspace_role?: string;
|
|
1044
1044
|
}
|
|
1045
|
-
export type
|
|
1046
|
-
export type
|
|
1047
|
-
export interface
|
|
1045
|
+
export type RemoveMeetingParticipantData = any;
|
|
1046
|
+
export type RemoveMeetingParticipantError = ErrorsPartnerErrorResponse;
|
|
1047
|
+
export interface RemoveMeetingParticipantParams {
|
|
1048
|
+
id: string;
|
|
1049
|
+
participantId: string;
|
|
1050
|
+
}
|
|
1051
|
+
export type RemoveTemplateNextStepData = any;
|
|
1052
|
+
export type RemoveTemplateNextStepError = ErrorsPartnerErrorResponse;
|
|
1053
|
+
export interface RemoveTemplateNextStepParams {
|
|
1054
|
+
nextStepId: string;
|
|
1055
|
+
templateId: string;
|
|
1056
|
+
}
|
|
1057
|
+
export type ReplaceAppData = SharedPartnerAppResponse;
|
|
1058
|
+
export type ReplaceAppError = AppManagementUpdateAppError400 | ErrorsPartnerErrorResponse;
|
|
1059
|
+
export type ReplaceAppStatusData = SharedPartnerAppResponse;
|
|
1060
|
+
export type ReplaceAppStatusError = AppManagementUpdateAppStatusError400 | ErrorsPartnerErrorResponse;
|
|
1061
|
+
export type ReplaceAutomationData = AutomationAutomationResponse;
|
|
1062
|
+
export type ReplaceAutomationError = AutomationUpdateAutomationError400 | ErrorsPartnerErrorResponse;
|
|
1063
|
+
export interface ReplaceAutomationParams {
|
|
1064
|
+
automationId: string;
|
|
1065
|
+
}
|
|
1066
|
+
export type ReplaceIdpConfigData = IdpIdPConfigResponse;
|
|
1067
|
+
export type ReplaceIdpConfigError = IdpUpdateIdPConfigError400 | ErrorsPartnerErrorResponse;
|
|
1068
|
+
export type ReplaceTemplateData = TemplateTemplateResponse;
|
|
1069
|
+
export type ReplaceTemplateError = ErrorsPartnerErrorResponse;
|
|
1070
|
+
export type ReplaceTemplateNextStepData = any;
|
|
1071
|
+
export type ReplaceTemplateNextStepError = ErrorsPartnerErrorResponse;
|
|
1072
|
+
export interface ReplaceTemplateNextStepParams {
|
|
1073
|
+
nextStepId: string;
|
|
1074
|
+
templateId: string;
|
|
1075
|
+
}
|
|
1076
|
+
export interface ReplaceTemplateParams {
|
|
1077
|
+
templateId: string;
|
|
1078
|
+
}
|
|
1079
|
+
export type ReplaceWebhookFilterData = SharedPartnerAppResponse;
|
|
1080
|
+
export type ReplaceWebhookFilterError = AppManagementUpdateWebhookFilterError400 | ErrorsPartnerErrorResponse;
|
|
1081
|
+
export type ReplaceWebhookStatusData = SharedPartnerAppResponse;
|
|
1082
|
+
export type ReplaceWebhookStatusError = ErrorsPartnerErrorResponse;
|
|
1083
|
+
export type RetryWebhookDeliveryData = WebhookWebhookRetryResponse;
|
|
1084
|
+
export type RetryWebhookDeliveryError = ErrorsPartnerErrorResponse;
|
|
1085
|
+
export interface RetryWebhookDeliveryParams {
|
|
1086
|
+
deliveryId: string;
|
|
1087
|
+
}
|
|
1088
|
+
export type RevokeConnectionData = any;
|
|
1089
|
+
export type RevokeConnectionError = ErrorsPartnerErrorResponse;
|
|
1090
|
+
export interface RevokeConnectionParams {
|
|
1091
|
+
connectionId: string;
|
|
1092
|
+
}
|
|
1093
|
+
export type RevokeOauthTokenData = any;
|
|
1094
|
+
export type RevokeOauthTokenError = ErrorsErrorResponse;
|
|
1095
|
+
export interface RevokeOauthTokenPayload {
|
|
1048
1096
|
token: string;
|
|
1049
1097
|
token_type_hint?: string;
|
|
1050
1098
|
}
|
|
1099
|
+
export type RollbackApiKeyData = any;
|
|
1100
|
+
export type RollbackApiKeyError = ErrorsPartnerErrorResponse;
|
|
1101
|
+
export type RollbackClientSecretData = any;
|
|
1102
|
+
export type RollbackClientSecretError = ErrorsPartnerErrorResponse;
|
|
1051
1103
|
export interface RomeApiControllersExternalPartnerAdminSharedListResponseAutomationAutomationResponse {
|
|
1052
1104
|
items?: AutomationAutomationResponse[];
|
|
1053
1105
|
limit?: number;
|
|
@@ -1072,7 +1124,15 @@ export interface RomeApiControllersExternalPartnerAdminSharedListResponseTemplat
|
|
|
1072
1124
|
offset?: number;
|
|
1073
1125
|
total?: number;
|
|
1074
1126
|
}
|
|
1127
|
+
export interface RomeApiControllersExternalPartnerAdminSharedListResponseWorkflowPartnerWorkflowTemplateSummary {
|
|
1128
|
+
items?: WorkflowPartnerWorkflowTemplateSummary[];
|
|
1129
|
+
limit?: number;
|
|
1130
|
+
offset?: number;
|
|
1131
|
+
total?: number;
|
|
1132
|
+
}
|
|
1075
1133
|
export interface RomeApiControllersExternalPartnerAdminToolkitToolkitResponse {
|
|
1134
|
+
auto_install_on_new_workspaces?: boolean;
|
|
1135
|
+
auto_propagate?: boolean;
|
|
1076
1136
|
created_at?: string;
|
|
1077
1137
|
description?: string;
|
|
1078
1138
|
id?: string;
|
|
@@ -1227,6 +1287,12 @@ export interface RomeApiControllersExternalPartnerUserSharedListResponseToolkitT
|
|
|
1227
1287
|
offset?: number;
|
|
1228
1288
|
total?: number;
|
|
1229
1289
|
}
|
|
1290
|
+
export interface RomeApiControllersExternalPartnerUserSharedListResponseWorkflowRunPartnerWorkflowRunResponse {
|
|
1291
|
+
items?: WorkflowRunPartnerWorkflowRunResponse[];
|
|
1292
|
+
limit?: number;
|
|
1293
|
+
offset?: number;
|
|
1294
|
+
total?: number;
|
|
1295
|
+
}
|
|
1230
1296
|
export interface RomeApiControllersExternalPartnerUserToolkitToolkitResponse {
|
|
1231
1297
|
action_buttons_count?: number;
|
|
1232
1298
|
created_at?: string;
|
|
@@ -1241,8 +1307,17 @@ export interface RomeApiControllersExternalPartnerUserToolkitToolkitResponse {
|
|
|
1241
1307
|
updated_at?: string;
|
|
1242
1308
|
version?: string;
|
|
1243
1309
|
}
|
|
1244
|
-
export type
|
|
1245
|
-
export type
|
|
1310
|
+
export type RotateApiKeyData = CredentialCredentialRotationResponse;
|
|
1311
|
+
export type RotateApiKeyError = CredentialRotateAPIKeyError400 | ErrorsPartnerErrorResponse;
|
|
1312
|
+
export type RotateClientSecretData = CredentialCredentialRotationResponse;
|
|
1313
|
+
export type RotateClientSecretError = CredentialRotateClientSecretError400 | ErrorsPartnerErrorResponse;
|
|
1314
|
+
export type RotateWebhookSecretData = CredentialCredentialRotationResponse;
|
|
1315
|
+
export type RotateWebhookSecretError = CredentialRotateWebhookSecretError400 | ErrorsPartnerErrorResponse;
|
|
1316
|
+
export type SendSessionMessageData = SessionSendMessageResponse;
|
|
1317
|
+
export type SendSessionMessageError = ErrorsPartnerErrorResponse | MiddlewareFeatureNotAvailableResponse;
|
|
1318
|
+
export interface SendSessionMessageParams {
|
|
1319
|
+
id: string;
|
|
1320
|
+
}
|
|
1246
1321
|
export interface SessionCreateSessionRequest {
|
|
1247
1322
|
context_document_ids?: string[];
|
|
1248
1323
|
meeting_id?: string;
|
|
@@ -1319,7 +1394,7 @@ export interface SessionTurnPaginationResponse {
|
|
|
1319
1394
|
total?: number;
|
|
1320
1395
|
}
|
|
1321
1396
|
export interface SharedActionButtonResponse {
|
|
1322
|
-
|
|
1397
|
+
icon_name?: string;
|
|
1323
1398
|
id?: string;
|
|
1324
1399
|
is_default?: boolean;
|
|
1325
1400
|
name?: string;
|
|
@@ -1377,10 +1452,14 @@ export interface SharedPartnerMeetingResponse {
|
|
|
1377
1452
|
workspace_id?: string;
|
|
1378
1453
|
}
|
|
1379
1454
|
export interface SharedTriggerActionButtonRequest {
|
|
1455
|
+
addressing_values?: Record<string, string>;
|
|
1456
|
+
content?: string;
|
|
1457
|
+
content_format?: string;
|
|
1380
1458
|
next_step_id?: string;
|
|
1381
1459
|
result_id?: string;
|
|
1382
1460
|
}
|
|
1383
1461
|
export interface SharedTriggerActionButtonResponse {
|
|
1462
|
+
invocation_id?: string;
|
|
1384
1463
|
message?: string;
|
|
1385
1464
|
}
|
|
1386
1465
|
export interface SharedWebhookFilterResponse {
|
|
@@ -1440,16 +1519,6 @@ export interface TemplateUpdateTemplateRequest {
|
|
|
1440
1519
|
description?: string;
|
|
1441
1520
|
name?: string;
|
|
1442
1521
|
}
|
|
1443
|
-
export type TokenCreateData = RomeApiControllersExternalPartnerOauthTokenResponse;
|
|
1444
|
-
export type TokenCreateError = ErrorsErrorResponse;
|
|
1445
|
-
export interface TokenCreatePayload {
|
|
1446
|
-
client_id: string;
|
|
1447
|
-
client_secret?: string;
|
|
1448
|
-
code: string;
|
|
1449
|
-
code_verifier?: string;
|
|
1450
|
-
grant_type: string;
|
|
1451
|
-
redirect_uri: string;
|
|
1452
|
-
}
|
|
1453
1522
|
export interface ToolkitConflictInfoResponse {
|
|
1454
1523
|
conflict_type?: string;
|
|
1455
1524
|
entity_name?: string;
|
|
@@ -1530,6 +1599,13 @@ export interface ToolkitInstallationResponse {
|
|
|
1530
1599
|
toolkit_id?: string;
|
|
1531
1600
|
workspace_id?: string;
|
|
1532
1601
|
}
|
|
1602
|
+
export interface ToolkitListInstallationsResponse {
|
|
1603
|
+
items?: ToolkitToolkitInstallationItemResponse[];
|
|
1604
|
+
limit?: number;
|
|
1605
|
+
offset?: number;
|
|
1606
|
+
summary?: ToolkitToolkitInstallationSummaryResponse;
|
|
1607
|
+
total_connected_workspaces?: number;
|
|
1608
|
+
}
|
|
1533
1609
|
export interface ToolkitManifestActionButton {
|
|
1534
1610
|
id?: string;
|
|
1535
1611
|
spec?: ToolkitManifestActionButtonSpec;
|
|
@@ -1539,7 +1615,7 @@ export interface ToolkitManifestActionButtonSpec {
|
|
|
1539
1615
|
content_format: "rich_text" | "markdown" | "plain_text" | "html";
|
|
1540
1616
|
delivery_mechanism: "clipboard" | "email" | "os_email_client" | "file_download" | "integration" | "webhook" | "redirect";
|
|
1541
1617
|
file_format?: string;
|
|
1542
|
-
|
|
1618
|
+
icon_name?: string;
|
|
1543
1619
|
integration_type?: string;
|
|
1544
1620
|
is_default_for_next_step?: boolean;
|
|
1545
1621
|
name: string;
|
|
@@ -1591,7 +1667,7 @@ export interface ToolkitManifestShortcutSpec {
|
|
|
1591
1667
|
$id?: string;
|
|
1592
1668
|
color?: string;
|
|
1593
1669
|
description?: string;
|
|
1594
|
-
|
|
1670
|
+
icon_name?: string;
|
|
1595
1671
|
name: string;
|
|
1596
1672
|
prompt: string;
|
|
1597
1673
|
surfaces?: ToolkitManifestShortcutSurfaceInput[];
|
|
@@ -1637,6 +1713,20 @@ export interface ToolkitTemplateNextStepRelation {
|
|
|
1637
1713
|
next_step: ToolkitManifestRef;
|
|
1638
1714
|
sort_order?: number;
|
|
1639
1715
|
}
|
|
1716
|
+
export interface ToolkitToolkitInstallationItemResponse {
|
|
1717
|
+
installed_at?: string;
|
|
1718
|
+
status?: "active" | "opted_out";
|
|
1719
|
+
uninstalled_at?: string;
|
|
1720
|
+
version_label?: string;
|
|
1721
|
+
workspace_id?: string;
|
|
1722
|
+
workspace_name?: string;
|
|
1723
|
+
}
|
|
1724
|
+
export type ToolkitToolkitInstallationStatus = "active" | "opted_out";
|
|
1725
|
+
export interface ToolkitToolkitInstallationSummaryResponse {
|
|
1726
|
+
active?: number;
|
|
1727
|
+
never_installed?: number;
|
|
1728
|
+
opted_out?: number;
|
|
1729
|
+
}
|
|
1640
1730
|
export interface ToolkitToolkitManifestRequest {
|
|
1641
1731
|
action_buttons?: ToolkitManifestActionButton[];
|
|
1642
1732
|
next_steps?: ToolkitManifestNextStep[];
|
|
@@ -1649,6 +1739,8 @@ export interface ToolkitToolkitWithInstallationResponse {
|
|
|
1649
1739
|
toolkit?: RomeApiControllersExternalPartnerUserToolkitToolkitResponse;
|
|
1650
1740
|
}
|
|
1651
1741
|
export interface ToolkitUpdateToolkitRequest {
|
|
1742
|
+
auto_install_on_new_workspaces?: boolean;
|
|
1743
|
+
auto_propagate?: boolean;
|
|
1652
1744
|
description?: string;
|
|
1653
1745
|
is_active?: boolean;
|
|
1654
1746
|
manifest?: ToolkitToolkitManifestRequest;
|
|
@@ -1679,10 +1771,59 @@ export interface ToolkitVersionResponse {
|
|
|
1679
1771
|
version_label?: string;
|
|
1680
1772
|
version_number?: number;
|
|
1681
1773
|
}
|
|
1682
|
-
export type
|
|
1683
|
-
export type
|
|
1684
|
-
export
|
|
1685
|
-
|
|
1774
|
+
export type TriggerMeetingActionButtonData = SharedTriggerActionButtonResponse;
|
|
1775
|
+
export type TriggerMeetingActionButtonError = ErrorsPartnerErrorResponse;
|
|
1776
|
+
export interface TriggerMeetingActionButtonParams {
|
|
1777
|
+
buttonId: string;
|
|
1778
|
+
id: string;
|
|
1779
|
+
}
|
|
1780
|
+
export type UninstallToolkitData = any;
|
|
1781
|
+
export type UninstallToolkitError = ErrorsPartnerErrorResponse;
|
|
1782
|
+
export interface UninstallToolkitParams {
|
|
1783
|
+
toolkitId: string;
|
|
1784
|
+
workspaceId: string;
|
|
1785
|
+
}
|
|
1786
|
+
export type UnlinkCalendarEventData = CalendarLinkCalendarEventResponse;
|
|
1787
|
+
export type UnlinkCalendarEventError = ErrorsPartnerErrorResponse;
|
|
1788
|
+
export interface UnlinkCalendarEventParams {
|
|
1789
|
+
id: string;
|
|
1790
|
+
}
|
|
1791
|
+
export type UpdateActionItemData = ActionItemPartnerActionItemResponse;
|
|
1792
|
+
export type UpdateActionItemError = ActionItemUpdateActionItemError400 | ErrorsPartnerErrorResponse;
|
|
1793
|
+
export interface UpdateActionItemParams {
|
|
1794
|
+
id: string;
|
|
1795
|
+
}
|
|
1796
|
+
export type UpdateMeetingAgendaItemData = MeetingPartnerAgendaItemResponse;
|
|
1797
|
+
export type UpdateMeetingAgendaItemError = ErrorsPartnerErrorResponse;
|
|
1798
|
+
export interface UpdateMeetingAgendaItemParams {
|
|
1799
|
+
id: string;
|
|
1800
|
+
itemId: string;
|
|
1801
|
+
}
|
|
1802
|
+
export type UpdateMeetingData = SharedPartnerMeetingResponse;
|
|
1803
|
+
export type UpdateMeetingError = MeetingUpdateMeetingError400 | ErrorsPartnerErrorResponse;
|
|
1804
|
+
export interface UpdateMeetingParams {
|
|
1805
|
+
id: string;
|
|
1806
|
+
}
|
|
1807
|
+
export type UploadMeetingContextData = ContextMeetingContextResponse;
|
|
1808
|
+
export type UploadMeetingContextError = ErrorsPartnerErrorResponse;
|
|
1809
|
+
export interface UploadMeetingContextParams {
|
|
1810
|
+
id: string;
|
|
1811
|
+
}
|
|
1812
|
+
export interface UploadMeetingContextPayload {
|
|
1813
|
+
context_type?: string;
|
|
1814
|
+
file: File;
|
|
1815
|
+
source_format: string;
|
|
1816
|
+
title?: string;
|
|
1817
|
+
}
|
|
1818
|
+
export type VerifyPartnerAuthData = OauthPartnerAuthResponse;
|
|
1819
|
+
export type VerifyPartnerAuthError = ErrorsErrorResponse;
|
|
1820
|
+
export type VerifySsoCallbackError = string | Record<string, unknown>;
|
|
1821
|
+
export interface VerifySsoCallbackParams {
|
|
1822
|
+
code?: string;
|
|
1823
|
+
error?: string;
|
|
1824
|
+
error_description?: string;
|
|
1825
|
+
state: string;
|
|
1826
|
+
}
|
|
1686
1827
|
export interface WebhookWebhookDeliveriesResponse {
|
|
1687
1828
|
deliveries?: WebhookWebhookDeliveryResponse[];
|
|
1688
1829
|
limit?: number;
|
|
@@ -1702,4 +1843,53 @@ export interface WebhookWebhookDeliveryResponse {
|
|
|
1702
1843
|
partner_app_id?: string;
|
|
1703
1844
|
retry_count?: number;
|
|
1704
1845
|
}
|
|
1846
|
+
export interface WebhookWebhookRetryResponse {
|
|
1847
|
+
delivery_id?: string;
|
|
1848
|
+
message?: string;
|
|
1849
|
+
next_retry_at?: string;
|
|
1850
|
+
retry_count?: number;
|
|
1851
|
+
retry_scheduled?: boolean;
|
|
1852
|
+
}
|
|
1853
|
+
export interface WorkflowPartnerWorkflowTemplateResponse {
|
|
1854
|
+
created_at?: string;
|
|
1855
|
+
description?: string;
|
|
1856
|
+
id?: string;
|
|
1857
|
+
is_active?: boolean;
|
|
1858
|
+
name?: string;
|
|
1859
|
+
spec?: object;
|
|
1860
|
+
updated_at?: string;
|
|
1861
|
+
workspace_id?: string;
|
|
1862
|
+
}
|
|
1863
|
+
export interface WorkflowPartnerWorkflowTemplateSummary {
|
|
1864
|
+
created_at?: string;
|
|
1865
|
+
description?: string;
|
|
1866
|
+
id?: string;
|
|
1867
|
+
is_active?: boolean;
|
|
1868
|
+
name?: string;
|
|
1869
|
+
updated_at?: string;
|
|
1870
|
+
workspace_id?: string;
|
|
1871
|
+
}
|
|
1872
|
+
export interface WorkflowRunPartnerCreateWorkflowRunRequest {
|
|
1873
|
+
originating_id: string;
|
|
1874
|
+
originating_type: "meeting" | "canvas";
|
|
1875
|
+
workflow_template_id: string;
|
|
1876
|
+
}
|
|
1877
|
+
export interface WorkflowRunPartnerWorkflowRunResponse {
|
|
1878
|
+
completed_at?: string;
|
|
1879
|
+
context_json?: object;
|
|
1880
|
+
created_at?: string;
|
|
1881
|
+
current_step_ids?: string[];
|
|
1882
|
+
id?: string;
|
|
1883
|
+
name?: string;
|
|
1884
|
+
originating_id?: string;
|
|
1885
|
+
originating_type?: "meeting" | "canvas";
|
|
1886
|
+
owner_user_id?: string;
|
|
1887
|
+
started_at?: string;
|
|
1888
|
+
status?: "pending" | "active" | "completed" | "failed" | "cancelled" | "frozen";
|
|
1889
|
+
trigger_type?: "manual" | "autopilot";
|
|
1890
|
+
triggered_by?: string;
|
|
1891
|
+
updated_at?: string;
|
|
1892
|
+
workflow_template_id?: string;
|
|
1893
|
+
workspace_id?: string;
|
|
1894
|
+
}
|
|
1705
1895
|
//# sourceMappingURL=api-types.d.ts.map
|