@forge/cli-shared 9.1.1-next.2 → 9.2.0-next.3

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/CHANGELOG.md CHANGED
@@ -1,5 +1,11 @@
1
1
  # @forge/cli-shared
2
2
 
3
+ ## 9.2.0-next.3
4
+
5
+ ### Minor Changes
6
+
7
+ - 757223b: Added Dashboard, bitbucket, rovo, teamwork, action templates
8
+
3
9
  ## 9.1.1-next.2
4
10
 
5
11
  ### Patch Changes
@@ -10770,6 +10770,47 @@ export type AppPermission = {
10770
10770
  securityPolicies?: Maybe<Array<AppSecurityPoliciesPermission>>;
10771
10771
  supportsConfigurableEgress?: Maybe<Scalars['Boolean']['output']>;
10772
10772
  };
10773
+ export type AppPreDeploymentCheckChange = {
10774
+ __typename?: 'AppPreDeploymentCheckChange';
10775
+ added?: Maybe<Array<Maybe<Scalars['String']['output']>>>;
10776
+ key: Scalars['String']['output'];
10777
+ removed?: Maybe<Array<Maybe<Scalars['String']['output']>>>;
10778
+ };
10779
+ export type AppPreDeploymentCheckError = {
10780
+ __typename?: 'AppPreDeploymentCheckError';
10781
+ column?: Maybe<Scalars['Int']['output']>;
10782
+ key: Scalars['String']['output'];
10783
+ line?: Maybe<Scalars['Int']['output']>;
10784
+ message?: Maybe<Scalars['String']['output']>;
10785
+ };
10786
+ export type AppPreDeploymentCheckInput = {
10787
+ appId: Scalars['ID']['input'];
10788
+ bypassRules?: InputMaybe<Array<AppPreDeploymentCheckRules>>;
10789
+ environmentKey: Scalars['String']['input'];
10790
+ manifestUrl: Scalars['URL']['input'];
10791
+ };
10792
+ export type AppPreDeploymentCheckOutcome = {
10793
+ __typename?: 'AppPreDeploymentCheckOutcome';
10794
+ category: AppPreDeploymentCheckRuleCategory;
10795
+ changes?: Maybe<Array<Maybe<AppPreDeploymentCheckChange>>>;
10796
+ errors?: Maybe<Array<Maybe<AppPreDeploymentCheckError>>>;
10797
+ reason: Scalars['String']['output'];
10798
+ rule: Scalars['String']['output'];
10799
+ value: Scalars['Boolean']['output'];
10800
+ };
10801
+ export type AppPreDeploymentCheckResponse = {
10802
+ __typename?: 'AppPreDeploymentCheckResponse';
10803
+ outcome?: Maybe<Array<Maybe<AppPreDeploymentCheckOutcome>>>;
10804
+ };
10805
+ export declare enum AppPreDeploymentCheckRuleCategory {
10806
+ Approval = "APPROVAL",
10807
+ Error = "ERROR"
10808
+ }
10809
+ export declare enum AppPreDeploymentCheckRules {
10810
+ MajorVersionRule = "MAJOR_VERSION_RULE",
10811
+ ManifestInvalidRule = "MANIFEST_INVALID_RULE",
10812
+ SystemUserChangeRule = "SYSTEM_USER_CHANGE_RULE"
10813
+ }
10773
10814
  export type AppPrincipal = {
10774
10815
  __typename?: 'AppPrincipal';
10775
10816
  id?: Maybe<Scalars['ID']['output']>;
@@ -39540,6 +39581,16 @@ export type CreateAppInput = {
39540
39581
  developerSpaceId?: InputMaybe<Scalars['ID']['input']>;
39541
39582
  name: Scalars['String']['input'];
39542
39583
  };
39584
+ export type CreateAppManifestUploadUrlInput = {
39585
+ appId: Scalars['ID']['input'];
39586
+ environmentKey: Scalars['String']['input'];
39587
+ };
39588
+ export type CreateAppManifestUploadUrlResponse = Payload & {
39589
+ __typename?: 'CreateAppManifestUploadUrlResponse';
39590
+ errors?: Maybe<Array<MutationError>>;
39591
+ preSignedUrl?: Maybe<Scalars['String']['output']>;
39592
+ success: Scalars['Boolean']['output'];
39593
+ };
39543
39594
  export type CreateAppResponse = Payload & {
39544
39595
  __typename?: 'CreateAppResponse';
39545
39596
  app?: Maybe<App>;
@@ -47338,6 +47389,7 @@ export declare enum EcosystemGlobalInstallationOverrideKeys {
47338
47389
  AllowEgressAnalytics = "ALLOW_EGRESS_ANALYTICS",
47339
47390
  AllowLlmCapability = "ALLOW_LLM_CAPABILITY",
47340
47391
  AllowLogsAccess = "ALLOW_LOGS_ACCESS",
47392
+ AllowPersonalApps = "ALLOW_PERSONAL_APPS",
47341
47393
  AllowRestApis = "ALLOW_REST_APIS"
47342
47394
  }
47343
47395
  export type EcosystemInstallationConfigInput = {
@@ -153331,6 +153383,19 @@ export type LoomCommentEdge = {
153331
153383
  cursor?: Maybe<Scalars['String']['output']>;
153332
153384
  node?: Maybe<LoomComment>;
153333
153385
  };
153386
+ export type LoomCompleteVideoFileUploadInput = {
153387
+ fileName?: InputMaybe<Scalars['String']['input']>;
153388
+ folderId?: InputMaybe<Scalars['String']['input']>;
153389
+ keyPath: Scalars['String']['input'];
153390
+ spaceId?: InputMaybe<Scalars['String']['input']>;
153391
+ videoPropertiesJson?: InputMaybe<Scalars['String']['input']>;
153392
+ workspaceId: Scalars['ID']['input'];
153393
+ };
153394
+ export type LoomCompleteVideoFileUploadPayload = {
153395
+ __typename?: 'LoomCompleteVideoFileUploadPayload';
153396
+ success: Scalars['Boolean']['output'];
153397
+ video?: Maybe<LoomVideo>;
153398
+ };
153334
153399
  export type LoomConnectedCalendar = {
153335
153400
  __typename?: 'LoomConnectedCalendar';
153336
153401
  guid: Scalars['ID']['output'];
@@ -153344,6 +153409,53 @@ export type LoomConnectedCalendarMeetingsArgs = {
153344
153409
  rangeEnd?: InputMaybe<Scalars['String']['input']>;
153345
153410
  rangeStart?: InputMaybe<Scalars['String']['input']>;
153346
153411
  };
153412
+ export type LoomCreateFileUploadCredentialsPayload = {
153413
+ __typename?: 'LoomCreateFileUploadCredentialsPayload';
153414
+ credentials?: Maybe<LoomUploadInfo>;
153415
+ success: Scalars['Boolean']['output'];
153416
+ };
153417
+ export type LoomCreateFolderError = {
153418
+ __typename?: 'LoomCreateFolderError';
153419
+ errorType: Scalars['String']['output'];
153420
+ message: Scalars['String']['output'];
153421
+ statusCode: Scalars['Int']['output'];
153422
+ };
153423
+ export type LoomCreateFolderInput = {
153424
+ id: Scalars['ID']['input'];
153425
+ name: Scalars['String']['input'];
153426
+ parentFolderId?: InputMaybe<Scalars['ID']['input']>;
153427
+ spaceId?: InputMaybe<Scalars['ID']['input']>;
153428
+ visibility?: InputMaybe<LoomFolderVisibilityType>;
153429
+ };
153430
+ export type LoomCreateFolderPayload = {
153431
+ __typename?: 'LoomCreateFolderPayload';
153432
+ errors: Array<LoomCreateFolderError>;
153433
+ folder?: Maybe<LoomFolder>;
153434
+ success: Scalars['Boolean']['output'];
153435
+ };
153436
+ export type LoomCreateVideoCommentInput = {
153437
+ content: Scalars['String']['input'];
153438
+ id: Scalars['ID']['input'];
153439
+ timestamp?: InputMaybe<Scalars['Int']['input']>;
153440
+ };
153441
+ export type LoomCreateVideoCommentPayload = {
153442
+ __typename?: 'LoomCreateVideoCommentPayload';
153443
+ comment?: Maybe<LoomComment>;
153444
+ success: Scalars['Boolean']['output'];
153445
+ };
153446
+ export type LoomCreateVideoReactionInput = {
153447
+ category?: InputMaybe<Scalars['String']['input']>;
153448
+ id: Scalars['ID']['input'];
153449
+ password?: InputMaybe<Scalars['String']['input']>;
153450
+ reactionName: Scalars['String']['input'];
153451
+ reactionType?: InputMaybe<LoomVideoReactionType>;
153452
+ timestamp?: InputMaybe<Scalars['Int']['input']>;
153453
+ };
153454
+ export type LoomCreateVideoReactionPayload = {
153455
+ __typename?: 'LoomCreateVideoReactionPayload';
153456
+ reaction?: Maybe<LoomVideoReaction>;
153457
+ success: Scalars['Boolean']['output'];
153458
+ };
153347
153459
  export type LoomDeleteVideo = {
153348
153460
  __typename?: 'LoomDeleteVideo';
153349
153461
  failed?: Maybe<Array<Maybe<LoomDeleteVideoFailure>>>;
@@ -153354,12 +153466,24 @@ export type LoomDeleteVideoFailure = {
153354
153466
  ari: Scalars['ID']['output'];
153355
153467
  error: Scalars['String']['output'];
153356
153468
  };
153469
+ export type LoomEnqueueVideoDownloadInput = {
153470
+ id: Scalars['ID']['input'];
153471
+ };
153472
+ export type LoomEnqueueVideoDownloadPayload = {
153473
+ __typename?: 'LoomEnqueueVideoDownloadPayload';
153474
+ status: LoomVideoDownloadStatus;
153475
+ success: Scalars['Boolean']['output'];
153476
+ };
153357
153477
  export type LoomFolder = {
153358
153478
  __typename?: 'LoomFolder';
153359
153479
  id: Scalars['ID']['output'];
153360
153480
  name: Scalars['String']['output'];
153361
153481
  parentSpaceId?: Maybe<Scalars['ID']['output']>;
153362
153482
  };
153483
+ export declare enum LoomFolderVisibilityType {
153484
+ Owner = "owner",
153485
+ Workspace = "workspace"
153486
+ }
153363
153487
  export type LoomJoinWorkspace = {
153364
153488
  __typename?: 'LoomJoinWorkspace';
153365
153489
  status: Scalars['String']['output'];
@@ -153388,6 +153512,12 @@ export type LoomMeeting = Node & {
153388
153512
  title: Scalars['String']['output'];
153389
153513
  video?: Maybe<LoomVideo>;
153390
153514
  };
153515
+ export type LoomMeetingActionItem = {
153516
+ __typename?: 'LoomMeetingActionItem';
153517
+ content?: Maybe<Scalars['String']['output']>;
153518
+ id: Scalars['ID']['output'];
153519
+ timestampSeconds?: Maybe<Scalars['Int']['output']>;
153520
+ };
153391
153521
  export type LoomMeetingConnection = {
153392
153522
  __typename?: 'LoomMeetingConnection';
153393
153523
  edges?: Maybe<Array<Maybe<LoomMeetingEdge>>>;
@@ -153425,6 +153555,30 @@ export type LoomMeetings = {
153425
153555
  recurring?: Maybe<Array<Maybe<LoomMeeting>>>;
153426
153556
  single?: Maybe<Array<Maybe<LoomMeeting>>>;
153427
153557
  };
153558
+ export type LoomMoveVideoToFolderInput = {
153559
+ folderId: Scalars['ID']['input'];
153560
+ id: Scalars['ID']['input'];
153561
+ };
153562
+ export type LoomMoveVideoToFolderPayload = {
153563
+ __typename?: 'LoomMoveVideoToFolderPayload';
153564
+ success: Scalars['Boolean']['output'];
153565
+ };
153566
+ export type LoomObjectStoreAuthToken = {
153567
+ __typename?: 'LoomObjectStoreAuthToken';
153568
+ expiration?: Maybe<Scalars['String']['output']>;
153569
+ value?: Maybe<Scalars['String']['output']>;
153570
+ };
153571
+ export type LoomObjectStoreUploadInfo = {
153572
+ __typename?: 'LoomObjectStoreUploadInfo';
153573
+ activationId?: Maybe<Scalars['String']['output']>;
153574
+ bucket?: Maybe<Scalars['String']['output']>;
153575
+ credentialType?: Maybe<Scalars['String']['output']>;
153576
+ hostname?: Maybe<Scalars['String']['output']>;
153577
+ siteId?: Maybe<Scalars['String']['output']>;
153578
+ token?: Maybe<LoomObjectStoreAuthToken>;
153579
+ url?: Maybe<Scalars['String']['output']>;
153580
+ workspaceType?: Maybe<Scalars['String']['output']>;
153581
+ };
153428
153582
  export type LoomPageInfo = {
153429
153583
  __typename?: 'LoomPageInfo';
153430
153584
  endCursor?: Maybe<Scalars['String']['output']>;
@@ -153468,11 +153622,49 @@ export type LoomPlaylistVideo = {
153468
153622
  sort?: Maybe<Scalars['Int']['output']>;
153469
153623
  videoAri: Scalars['ID']['output'];
153470
153624
  };
153625
+ export type LoomRecoverVideoError = {
153626
+ __typename?: 'LoomRecoverVideoError';
153627
+ errorType: Scalars['String']['output'];
153628
+ message: Scalars['String']['output'];
153629
+ statusCode: Scalars['Int']['output'];
153630
+ };
153631
+ export type LoomRecoverVideoInput = {
153632
+ force: Scalars['Boolean']['input'];
153633
+ id: Scalars['ID']['input'];
153634
+ };
153635
+ export type LoomRecoverVideoPayload = {
153636
+ __typename?: 'LoomRecoverVideoPayload';
153637
+ didRecoverVideo: Scalars['Boolean']['output'];
153638
+ errors: Array<LoomRecoverVideoError>;
153639
+ success: Scalars['Boolean']['output'];
153640
+ video?: Maybe<LoomVideo>;
153641
+ };
153642
+ export type LoomS3UploadInfo = {
153643
+ __typename?: 'LoomS3UploadInfo';
153644
+ accessKeyId?: Maybe<Scalars['String']['output']>;
153645
+ bucket?: Maybe<Scalars['String']['output']>;
153646
+ credentialType?: Maybe<Scalars['String']['output']>;
153647
+ durationSeconds?: Maybe<Scalars['Int']['output']>;
153648
+ endpoint?: Maybe<Scalars['String']['output']>;
153649
+ path?: Maybe<Scalars['String']['output']>;
153650
+ region?: Maybe<Scalars['String']['output']>;
153651
+ secretAccessKey?: Maybe<Scalars['String']['output']>;
153652
+ sessionToken?: Maybe<Scalars['String']['output']>;
153653
+ };
153471
153654
  export type LoomSettings = {
153472
153655
  __typename?: 'LoomSettings';
153473
153656
  meetingNotesAvailable?: Maybe<Scalars['Boolean']['output']>;
153474
153657
  meetingNotesEnabled?: Maybe<Scalars['Boolean']['output']>;
153475
153658
  };
153659
+ export type LoomShareVideoInput = {
153660
+ id: Scalars['ID']['input'];
153661
+ message?: InputMaybe<Scalars['String']['input']>;
153662
+ userAris: Array<Scalars['ID']['input']>;
153663
+ };
153664
+ export type LoomShareVideoPayload = {
153665
+ __typename?: 'LoomShareVideoPayload';
153666
+ success: Scalars['Boolean']['output'];
153667
+ };
153476
153668
  export declare enum LoomSortDirection {
153477
153669
  Asc = "ASC",
153478
153670
  Desc = "DESC"
@@ -153610,6 +153802,27 @@ export type LoomUnauthenticatedUserPrimaryAuthType = {
153610
153802
  hasActiveMemberships?: Maybe<Scalars['Boolean']['output']>;
153611
153803
  redirectUri?: Maybe<Scalars['String']['output']>;
153612
153804
  };
153805
+ export type LoomUpdateVideoPermissionsInput = {
153806
+ id: Scalars['ID']['input'];
153807
+ visibility: LoomVideoVisibility;
153808
+ };
153809
+ export type LoomUpdateVideoPermissionsPayload = {
153810
+ __typename?: 'LoomUpdateVideoPermissionsPayload';
153811
+ changed: Scalars['Boolean']['output'];
153812
+ success: Scalars['Boolean']['output'];
153813
+ video?: Maybe<LoomVideo>;
153814
+ };
153815
+ export type LoomUpdateVideoTitleInput = {
153816
+ id: Scalars['ID']['input'];
153817
+ title: Scalars['String']['input'];
153818
+ };
153819
+ export type LoomUpdateVideoTitlePayload = {
153820
+ __typename?: 'LoomUpdateVideoTitlePayload';
153821
+ changed: Scalars['Boolean']['output'];
153822
+ success: Scalars['Boolean']['output'];
153823
+ video?: Maybe<LoomVideo>;
153824
+ };
153825
+ export type LoomUploadInfo = LoomObjectStoreUploadInfo | LoomS3UploadInfo;
153613
153826
  export declare enum LoomUserStatus {
153614
153827
  Linked = "LINKED",
153615
153828
  LinkedEnterprise = "LINKED_ENTERPRISE",
@@ -153657,11 +153870,29 @@ export type LoomVideoDefaultThumbnailsSources = {
153657
153870
  default?: Maybe<Scalars['String']['output']>;
153658
153871
  static?: Maybe<Scalars['String']['output']>;
153659
153872
  };
153873
+ export declare enum LoomVideoDownloadStatus {
153874
+ NotReady = "NOT_READY",
153875
+ Ready = "READY"
153876
+ }
153877
+ export type LoomVideoDownloadUrl = {
153878
+ __typename?: 'LoomVideoDownloadUrl';
153879
+ expiresAt?: Maybe<Scalars['String']['output']>;
153880
+ status: LoomVideoDownloadStatus;
153881
+ url?: Maybe<Scalars['String']['output']>;
153882
+ };
153660
153883
  export type LoomVideoDurations = {
153661
153884
  __typename?: 'LoomVideoDurations';
153662
153885
  playableDuration?: Maybe<Scalars['Float']['output']>;
153663
153886
  sourceDuration?: Maybe<Scalars['Float']['output']>;
153664
153887
  };
153888
+ export type LoomVideoReaction = {
153889
+ __typename?: 'LoomVideoReaction';
153890
+ id: Scalars['ID']['output'];
153891
+ };
153892
+ export declare enum LoomVideoReactionType {
153893
+ Extended = "EXTENDED",
153894
+ Loom = "LOOM"
153895
+ }
153665
153896
  export type LoomVideoViewCounts = {
153666
153897
  __typename?: 'LoomVideoViewCounts';
153667
153898
  distinct?: Maybe<Scalars['Int']['output']>;
@@ -167326,6 +167557,7 @@ export type Mutation = {
167326
167557
  createAppCustomScopes?: Maybe<CreateAppCustomScopesPayload>;
167327
167558
  createAppDeployment?: Maybe<CreateAppDeploymentResponse>;
167328
167559
  createAppDeploymentUrl?: Maybe<CreateAppDeploymentUrlResponse>;
167560
+ createAppManifestUploadUrl?: Maybe<CreateAppManifestUploadUrlResponse>;
167329
167561
  createAppTunnels?: Maybe<CreateAppTunnelResponse>;
167330
167562
  createCardParent?: Maybe<CardParentCreateOutput>;
167331
167563
  createColumn?: Maybe<CreateColumnOutput>;
@@ -168033,9 +168265,20 @@ export type Mutation = {
168033
168265
  liveChat_sendTypingSignal?: Maybe<LiveChatTypingSignalPayload>;
168034
168266
  liveChat_sendUserMessage?: Maybe<LiveChatUserMessagePayload>;
168035
168267
  loom_acceptOrganizationInvite?: Maybe<LoomAcceptOrganizationInvitation>;
168268
+ loom_completeVideoFileUpload?: Maybe<LoomCompleteVideoFileUploadPayload>;
168269
+ loom_createFileUploadCredentials?: Maybe<LoomCreateFileUploadCredentialsPayload>;
168270
+ loom_createFolder?: Maybe<LoomCreateFolderPayload>;
168271
+ loom_createVideoComment?: Maybe<LoomCreateVideoCommentPayload>;
168272
+ loom_createVideoReaction?: Maybe<LoomCreateVideoReactionPayload>;
168036
168273
  loom_deleteVideos?: Maybe<LoomDeleteVideo>;
168274
+ loom_enqueueVideoDownload?: Maybe<LoomEnqueueVideoDownloadPayload>;
168037
168275
  loom_joinWorkspace?: Maybe<LoomJoinWorkspace>;
168276
+ loom_moveVideoToFolder?: Maybe<LoomMoveVideoToFolderPayload>;
168277
+ loom_recoverVideo?: Maybe<LoomRecoverVideoPayload>;
168278
+ loom_shareVideo?: Maybe<LoomShareVideoPayload>;
168038
168279
  loom_spaceCreate?: Maybe<LoomSpace>;
168280
+ loom_updateVideoPermissions?: Maybe<LoomUpdateVideoPermissionsPayload>;
168281
+ loom_updateVideoTitle?: Maybe<LoomUpdateVideoTitlePayload>;
168039
168282
  markCommentsAsRead?: Maybe<MarkCommentsAsReadPayload>;
168040
168283
  markFeatureDiscovered?: Maybe<FeatureDiscoveryPayload>;
168041
168284
  marketplaceConsole: MarketplaceConsoleMutationApi;
@@ -170425,6 +170668,9 @@ export type MutationCreateAppDeploymentArgs = {
170425
170668
  export type MutationCreateAppDeploymentUrlArgs = {
170426
170669
  input: CreateAppDeploymentUrlInput;
170427
170670
  };
170671
+ export type MutationCreateAppManifestUploadUrlArgs = {
170672
+ input: CreateAppManifestUploadUrlInput;
170673
+ };
170428
170674
  export type MutationCreateAppTunnelsArgs = {
170429
170675
  input: CreateAppTunnelsInput;
170430
170676
  };
@@ -172812,20 +173058,53 @@ export type MutationLoom_AcceptOrganizationInviteArgs = {
172812
173058
  inviteLinkId?: InputMaybe<Scalars['ID']['input']>;
172813
173059
  orgToken?: InputMaybe<Scalars['String']['input']>;
172814
173060
  };
173061
+ export type MutationLoom_CompleteVideoFileUploadArgs = {
173062
+ input: LoomCompleteVideoFileUploadInput;
173063
+ };
173064
+ export type MutationLoom_CreateFileUploadCredentialsArgs = {
173065
+ siteId: Scalars['ID']['input'];
173066
+ };
173067
+ export type MutationLoom_CreateFolderArgs = {
173068
+ input: LoomCreateFolderInput;
173069
+ };
173070
+ export type MutationLoom_CreateVideoCommentArgs = {
173071
+ input: LoomCreateVideoCommentInput;
173072
+ };
173073
+ export type MutationLoom_CreateVideoReactionArgs = {
173074
+ input: LoomCreateVideoReactionInput;
173075
+ };
172815
173076
  export type MutationLoom_DeleteVideosArgs = {
172816
173077
  ids: Array<Scalars['ID']['input']>;
172817
173078
  };
173079
+ export type MutationLoom_EnqueueVideoDownloadArgs = {
173080
+ input: LoomEnqueueVideoDownloadInput;
173081
+ };
172818
173082
  export type MutationLoom_JoinWorkspaceArgs = {
172819
173083
  extraLoomProperties?: InputMaybe<Scalars['JSON']['input']>;
172820
173084
  flowTraceId?: InputMaybe<Scalars['String']['input']>;
172821
173085
  workspaceId: Scalars['String']['input'];
172822
173086
  };
173087
+ export type MutationLoom_MoveVideoToFolderArgs = {
173088
+ input: LoomMoveVideoToFolderInput;
173089
+ };
173090
+ export type MutationLoom_RecoverVideoArgs = {
173091
+ input: LoomRecoverVideoInput;
173092
+ };
173093
+ export type MutationLoom_ShareVideoArgs = {
173094
+ input: LoomShareVideoInput;
173095
+ };
172823
173096
  export type MutationLoom_SpaceCreateArgs = {
172824
173097
  analyticsSource?: InputMaybe<Scalars['String']['input']>;
172825
173098
  name: Scalars['String']['input'];
172826
173099
  privacy?: InputMaybe<LoomSpacePrivacyType>;
172827
173100
  siteId: Scalars['ID']['input'];
172828
173101
  };
173102
+ export type MutationLoom_UpdateVideoPermissionsArgs = {
173103
+ input: LoomUpdateVideoPermissionsInput;
173104
+ };
173105
+ export type MutationLoom_UpdateVideoTitleArgs = {
173106
+ input: LoomUpdateVideoTitleInput;
173107
+ };
172829
173108
  export type MutationMarkCommentsAsReadArgs = {
172830
173109
  input: MarkCommentsAsReadInput;
172831
173110
  };
@@ -177383,6 +177662,7 @@ export type Query = {
177383
177662
  appLogLines?: Maybe<AppLogLineConnection>;
177384
177663
  appLogs?: Maybe<AppLogConnection>;
177385
177664
  appLogsWithMetaData?: Maybe<AppLogsWithMetaDataResponse>;
177665
+ appPreDeploymentCheck?: Maybe<AppPreDeploymentCheckResponse>;
177386
177666
  appServices?: Maybe<AppServicesConnection>;
177387
177667
  appStorage_admin?: Maybe<AppStorageAdmin>;
177388
177668
  appStorage_kvsAdmin?: Maybe<AppStorageKvsAdminQuery>;
@@ -180428,6 +180708,7 @@ export type Query = {
180428
180708
  loom_foldersSearch?: Maybe<Array<Maybe<LoomFolder>>>;
180429
180709
  loom_joinableWorkspaces?: Maybe<Array<Maybe<LoomJoinableWorkspace>>>;
180430
180710
  loom_meeting?: Maybe<LoomMeeting>;
180711
+ loom_meetingActionItems?: Maybe<Array<Maybe<LoomMeetingActionItem>>>;
180431
180712
  loom_meetingRecurrence?: Maybe<LoomMeetingRecurrence>;
180432
180713
  loom_meetingRecurrences?: Maybe<Array<Maybe<LoomMeetingRecurrence>>>;
180433
180714
  loom_meetings?: Maybe<Array<Maybe<LoomMeeting>>>;
@@ -180441,6 +180722,7 @@ export type Query = {
180441
180722
  loom_tagsSearch?: Maybe<Array<LoomTag>>;
180442
180723
  loom_validateSlackUserIds?: Maybe<Array<Maybe<LoomValidateSlackUserIds>>>;
180443
180724
  loom_video?: Maybe<LoomVideo>;
180725
+ loom_videoDownloadUrl?: Maybe<LoomVideoDownloadUrl>;
180444
180726
  loom_videoDurations?: Maybe<LoomVideoDurations>;
180445
180727
  loom_videos?: Maybe<Array<Maybe<LoomVideo>>>;
180446
180728
  loom_viewableVideo?: Maybe<LoomVideo>;
@@ -181664,6 +181946,8 @@ export type QueryAgentWorkspace_ServicesArgs = {
181664
181946
  first?: InputMaybe<Scalars['Int']['input']>;
181665
181947
  projectId: Scalars['ID']['input'];
181666
181948
  query?: InputMaybe<Scalars['String']['input']>;
181949
+ serviceFieldId?: InputMaybe<Scalars['ID']['input']>;
181950
+ serviceFieldType?: InputMaybe<AgentWorkspaceSmartRoutingServiceFieldType>;
181667
181951
  };
181668
181952
  export type QueryAgentWorkspace_ServicesConfiguredInProjectArgs = {
181669
181953
  after?: InputMaybe<Scalars['String']['input']>;
@@ -181995,6 +182279,9 @@ export type QueryAppLogsWithMetaDataArgs = {
181995
182279
  query?: InputMaybe<LogQueryInput>;
181996
182280
  queryStartTime: Scalars['String']['input'];
181997
182281
  };
182282
+ export type QueryAppPreDeploymentCheckArgs = {
182283
+ input: AppPreDeploymentCheckInput;
182284
+ };
181998
182285
  export type QueryAppServicesArgs = {
181999
182286
  after?: InputMaybe<Scalars['String']['input']>;
182000
182287
  appId: Scalars['ID']['input'];
@@ -201795,6 +202082,9 @@ export type QueryLoom_FoldersSearchArgs = {
201795
202082
  export type QueryLoom_MeetingArgs = {
201796
202083
  id: Scalars['ID']['input'];
201797
202084
  };
202085
+ export type QueryLoom_MeetingActionItemsArgs = {
202086
+ id: Scalars['ID']['input'];
202087
+ };
201798
202088
  export type QueryLoom_MeetingRecurrenceArgs = {
201799
202089
  id: Scalars['ID']['input'];
201800
202090
  };
@@ -201837,6 +202127,9 @@ export type QueryLoom_ValidateSlackUserIdsArgs = {
201837
202127
  export type QueryLoom_VideoArgs = {
201838
202128
  id: Scalars['ID']['input'];
201839
202129
  };
202130
+ export type QueryLoom_VideoDownloadUrlArgs = {
202131
+ id: Scalars['ID']['input'];
202132
+ };
201840
202133
  export type QueryLoom_VideoDurationsArgs = {
201841
202134
  id: Scalars['ID']['input'];
201842
202135
  };