@forge/cli-shared 6.3.1-next.0 → 6.4.0-next.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/CHANGELOG.md CHANGED
@@ -1,5 +1,18 @@
1
1
  # @forge/cli-shared
2
2
 
3
+ ## 6.4.0-next.2
4
+
5
+ ### Minor Changes
6
+
7
+ - fa239b2: Error handling and logging for the cloudflared process used by tunnel
8
+
9
+ ## 6.3.1-next.1
10
+
11
+ ### Patch Changes
12
+
13
+ - Updated dependencies [f5a52b8]
14
+ - @forge/manifest@8.0.1-next.1
15
+
3
16
  ## 6.3.1-next.0
4
17
 
5
18
  ### Patch Changes
@@ -6128,6 +6128,7 @@ export declare type CompassScorecard = Node & {
6128
6128
  scorecardScoreStatisticsHistories?: Maybe<CompassScorecardScoreStatisticsHistoryConnection>;
6129
6129
  scoringStrategyType?: Maybe<Scalars['String']['output']>;
6130
6130
  state?: Maybe<Scalars['String']['output']>;
6131
+ statusConfig?: Maybe<CompassScorecardStatusConfig>;
6131
6132
  type: Scalars['String']['output'];
6132
6133
  viewerPermissions?: Maybe<CompassScorecardInstancePermissions>;
6133
6134
  };
@@ -6431,6 +6432,7 @@ export declare type CompassScorecardScore = {
6431
6432
  __typename?: 'CompassScorecardScore';
6432
6433
  criteriaScores?: Maybe<Array<CompassScorecardCriteriaScore>>;
6433
6434
  maxTotalScore: Scalars['Int']['output'];
6435
+ status?: Maybe<CompassScorecardScoreStatus>;
6434
6436
  statusDuration?: Maybe<CompassScorecardScoreStatusDuration>;
6435
6437
  totalScore: Scalars['Int']['output'];
6436
6438
  };
@@ -6532,6 +6534,26 @@ export declare enum CompassScorecardScoringStrategyType {
6532
6534
  PointBased = "POINT_BASED",
6533
6535
  WeightBased = "WEIGHT_BASED"
6534
6536
  }
6537
+ export declare type CompassScorecardStatusConfig = {
6538
+ __typename?: 'CompassScorecardStatusConfig';
6539
+ failing: CompassScorecardStatusThreshold;
6540
+ needsAttention: CompassScorecardStatusThreshold;
6541
+ passing: CompassScorecardStatusThreshold;
6542
+ };
6543
+ export declare type CompassScorecardStatusConfigInput = {
6544
+ failing: CompassScorecardStatusThresholdInput;
6545
+ needsAttention: CompassScorecardStatusThresholdInput;
6546
+ passing: CompassScorecardStatusThresholdInput;
6547
+ };
6548
+ export declare type CompassScorecardStatusThreshold = {
6549
+ __typename?: 'CompassScorecardStatusThreshold';
6550
+ lowerBound: Scalars['Int']['output'];
6551
+ upperBound: Scalars['Int']['output'];
6552
+ };
6553
+ export declare type CompassScorecardStatusThresholdInput = {
6554
+ lowerBound: Scalars['Int']['input'];
6555
+ upperBound: Scalars['Int']['input'];
6556
+ };
6535
6557
  export declare type CompassScorecardTypesFilter = {
6536
6558
  in: Array<Scalars['String']['input']>;
6537
6559
  };
@@ -15952,6 +15974,7 @@ export declare type CreateCompassScorecardInput = {
15952
15974
  repositoryValues?: InputMaybe<CompassRepositoryValueInput>;
15953
15975
  scoringStrategyType?: InputMaybe<CompassScorecardScoringStrategyType>;
15954
15976
  state?: InputMaybe<Scalars['String']['input']>;
15977
+ statusConfig?: InputMaybe<CompassScorecardStatusConfigInput>;
15955
15978
  };
15956
15979
  export declare type CreateCompassScorecardPayload = Payload & {
15957
15980
  __typename?: 'CreateCompassScorecardPayload';
@@ -19957,7 +19980,7 @@ export declare type ExternalAssociationEdge = {
19957
19980
  cursor?: Maybe<Scalars['String']['output']>;
19958
19981
  node?: Maybe<ExternalAssociation>;
19959
19982
  };
19960
- export declare type ExternalAssociationEntity = DevOpsService | ExternalBranch | ExternalBuildInfo | ExternalCalendarEvent | ExternalCommit | ExternalConversation | ExternalDeployment | ExternalDesign | ExternalDocument | ExternalFeatureFlag | ExternalMessage | ExternalPullRequest | ExternalRemoteLink | ExternalRepository | ExternalVideo | ExternalVulnerability | JiraIssue | JiraProject | JiraVersion | ThirdPartyUser;
19983
+ export declare type ExternalAssociationEntity = DevOpsService | ExternalBranch | ExternalBuildInfo | ExternalCalendarEvent | ExternalCommit | ExternalConversation | ExternalDeployment | ExternalDesign | ExternalDocument | ExternalFeatureFlag | ExternalMessage | ExternalPullRequest | ExternalRemoteLink | ExternalRepository | ExternalSpace | ExternalVideo | ExternalVulnerability | JiraIssue | JiraProject | JiraVersion | ThirdPartyUser;
19961
19984
  export declare type ExternalAttachment = {
19962
19985
  __typename?: 'ExternalAttachment';
19963
19986
  byteSize?: Maybe<Scalars['Long']['output']>;
@@ -20278,10 +20301,11 @@ export declare type ExternalEntities = {
20278
20301
  pullRequest?: Maybe<Array<Maybe<ExternalPullRequest>>>;
20279
20302
  remoteLink?: Maybe<Array<Maybe<ExternalRemoteLink>>>;
20280
20303
  repository?: Maybe<Array<Maybe<ExternalRepository>>>;
20304
+ space?: Maybe<Array<Maybe<ExternalSpace>>>;
20281
20305
  video?: Maybe<Array<Maybe<ExternalVideo>>>;
20282
20306
  vulnerability?: Maybe<Array<Maybe<ExternalVulnerability>>>;
20283
20307
  };
20284
- export declare type ExternalEntity = ExternalBranch | ExternalBuildInfo | ExternalCalendarEvent | ExternalCommit | ExternalConversation | ExternalDeployment | ExternalDesign | ExternalDocument | ExternalFeatureFlag | ExternalMessage | ExternalPullRequest | ExternalRemoteLink | ExternalRepository | ExternalVideo | ExternalVulnerability;
20308
+ export declare type ExternalEntity = ExternalBranch | ExternalBuildInfo | ExternalCalendarEvent | ExternalCommit | ExternalConversation | ExternalDeployment | ExternalDesign | ExternalDocument | ExternalFeatureFlag | ExternalMessage | ExternalPullRequest | ExternalRemoteLink | ExternalRepository | ExternalSpace | ExternalVideo | ExternalVulnerability;
20285
20309
  export declare type ExternalEnvironment = {
20286
20310
  __typename?: 'ExternalEnvironment';
20287
20311
  displayName?: Maybe<Scalars['String']['output']>;
@@ -20368,7 +20392,7 @@ export declare type ExternalIcon = {
20368
20392
  __typename?: 'ExternalIcon';
20369
20393
  height?: Maybe<Scalars['Int']['output']>;
20370
20394
  isDefault?: Maybe<Scalars['Boolean']['output']>;
20371
- uri?: Maybe<Scalars['String']['output']>;
20395
+ url?: Maybe<Scalars['String']['output']>;
20372
20396
  width?: Maybe<Scalars['Int']['output']>;
20373
20397
  };
20374
20398
  export declare type ExternalLargeContent = {
@@ -20499,6 +20523,24 @@ export declare type ExternalReviewer = {
20499
20523
  approvalStatus?: Maybe<ExternalApprovalStatus>;
20500
20524
  user?: Maybe<ExternalUser>;
20501
20525
  };
20526
+ export declare type ExternalSpace = Node & {
20527
+ __typename?: 'ExternalSpace';
20528
+ associatedWith?: Maybe<ExternalAssociationConnection>;
20529
+ createdAt?: Maybe<Scalars['String']['output']>;
20530
+ createdBy?: Maybe<ExternalUser>;
20531
+ description?: Maybe<Scalars['String']['output']>;
20532
+ displayName?: Maybe<Scalars['String']['output']>;
20533
+ externalId?: Maybe<Scalars['String']['output']>;
20534
+ icon?: Maybe<ExternalIcon>;
20535
+ id: Scalars['ID']['output'];
20536
+ key?: Maybe<Scalars['String']['output']>;
20537
+ labels?: Maybe<Array<Maybe<Scalars['String']['output']>>>;
20538
+ lastUpdated?: Maybe<Scalars['String']['output']>;
20539
+ lastUpdatedBy?: Maybe<ExternalUser>;
20540
+ spaceType?: Maybe<Scalars['String']['output']>;
20541
+ updateSequenceNumber?: Maybe<Scalars['Long']['output']>;
20542
+ url?: Maybe<Scalars['String']['output']>;
20543
+ };
20502
20544
  export declare type ExternalTestInfo = {
20503
20545
  __typename?: 'ExternalTestInfo';
20504
20546
  numberFailed?: Maybe<Scalars['Int']['output']>;
@@ -55287,6 +55329,7 @@ export declare type JsmChatCreateWebConversationMessagePayload = Payload & {
55287
55329
  success: Scalars['Boolean']['output'];
55288
55330
  };
55289
55331
  export declare enum JsmChatCreateWebConversationUserRole {
55332
+ Acknowledgment = "Acknowledgment",
55290
55333
  Init = "Init",
55291
55334
  JsmAgent = "JSM_Agent",
55292
55335
  Participant = "Participant",
@@ -56283,6 +56326,7 @@ export declare type KnowledgeDiscoveryMutationApi = {
56283
56326
  deleteBookmarks?: Maybe<KnowledgeDiscoveryDeleteBookmarksPayload>;
56284
56327
  updateBookmark?: Maybe<KnowledgeDiscoveryUpdateAdminhubBookmarkPayload>;
56285
56328
  updateRelatedEntities?: Maybe<KnowledgeDiscoveryUpdateRelatedEntitiesPayload>;
56329
+ updateUserKeyPhraseInteraction?: Maybe<KnowledgeDiscoveryUpdateUserKeyPhraseInteractionPayload>;
56286
56330
  };
56287
56331
  export declare type KnowledgeDiscoveryMutationApiCreateBookmarkArgs = {
56288
56332
  input: KnowledgeDiscoveryCreateAdminhubBookmarkInput;
@@ -56299,6 +56343,9 @@ export declare type KnowledgeDiscoveryMutationApiUpdateBookmarkArgs = {
56299
56343
  export declare type KnowledgeDiscoveryMutationApiUpdateRelatedEntitiesArgs = {
56300
56344
  input: KnowledgeDiscoveryUpdateRelatedEntitiesInput;
56301
56345
  };
56346
+ export declare type KnowledgeDiscoveryMutationApiUpdateUserKeyPhraseInteractionArgs = {
56347
+ input: KnowledgeDiscoveryUpdateUserKeyPhraseInteractionInput;
56348
+ };
56302
56349
  export declare type KnowledgeDiscoveryPageInfo = {
56303
56350
  __typename?: 'KnowledgeDiscoveryPageInfo';
56304
56351
  endCursor?: Maybe<Scalars['String']['output']>;
@@ -56490,6 +56537,16 @@ export declare type KnowledgeDiscoveryUpdateRelatedEntitiesPayload = Payload & {
56490
56537
  errors?: Maybe<Array<MutationError>>;
56491
56538
  success: Scalars['Boolean']['output'];
56492
56539
  };
56540
+ export declare type KnowledgeDiscoveryUpdateUserKeyPhraseInteractionInput = {
56541
+ accountId: Scalars['ID']['input'];
56542
+ keyPhrase: Scalars['String']['input'];
56543
+ workspaceId: Scalars['String']['input'];
56544
+ };
56545
+ export declare type KnowledgeDiscoveryUpdateUserKeyPhraseInteractionPayload = Payload & {
56546
+ __typename?: 'KnowledgeDiscoveryUpdateUserKeyPhraseInteractionPayload';
56547
+ errors?: Maybe<Array<MutationError>>;
56548
+ success: Scalars['Boolean']['output'];
56549
+ };
56493
56550
  export declare type KnowledgeDiscoveryUser = KnowledgeDiscoveryEntity & {
56494
56551
  __typename?: 'KnowledgeDiscoveryUser';
56495
56552
  id: Scalars['ID']['output'];
@@ -56997,9 +57054,9 @@ export declare type MarketplaceConsoleAppSoftwareVersionListing = {
56997
57054
  createdBy: Scalars['String']['output'];
56998
57055
  deploymentInstructions?: Maybe<Array<Maybe<MarketplaceConsoleDeploymentInstruction>>>;
56999
57056
  heroImage?: Maybe<Scalars['String']['output']>;
57000
- highlights?: Maybe<Array<Maybe<MarketplaceConsoleListingHighLights>>>;
57057
+ highlights?: Maybe<Array<Maybe<MarketplaceConsoleListingHighLight>>>;
57001
57058
  moreDetails?: Maybe<Scalars['String']['output']>;
57002
- screenshots?: Maybe<Array<Maybe<MarketplaceConsoleListingScreenshot>>>;
57059
+ screenshots?: Maybe<Array<MarketplaceConsoleListingScreenshot>>;
57003
57060
  status: Scalars['String']['output'];
57004
57061
  updatedAt?: Maybe<Scalars['String']['output']>;
57005
57062
  updatedBy?: Maybe<Scalars['String']['output']>;
@@ -57089,7 +57146,7 @@ export declare type MarketplaceConsoleDeleteAppVersionResponse = MarketplaceCons
57089
57146
  export declare type MarketplaceConsoleDeploymentInstruction = {
57090
57147
  __typename?: 'MarketplaceConsoleDeploymentInstruction';
57091
57148
  body: Scalars['String']['output'];
57092
- screenshots: MarketplaceConsoleListingScreenshot;
57149
+ screenshot?: Maybe<MarketplaceConsoleListingScreenshot>;
57093
57150
  };
57094
57151
  export declare type MarketplaceConsoleDeploymentInstructionInput = {
57095
57152
  body?: InputMaybe<Scalars['String']['input']>;
@@ -57263,7 +57320,6 @@ export declare type MarketplaceConsoleFrameworkAttributes = {
57263
57320
  external?: Maybe<MarketplaceConsoleExternalFrameworkAttributes>;
57264
57321
  forge?: Maybe<MarketplaceConsoleForgeFrameworkAttributes>;
57265
57322
  plugin?: Maybe<MarketplaceConsolePluginFrameworkAttributes>;
57266
- plugins?: Maybe<MarketplaceConsolePluginFrameworkAttributes>;
57267
57323
  workflow?: Maybe<MarketplaceConsoleWorkflowFrameworkAttributes>;
57268
57324
  };
57269
57325
  export declare type MarketplaceConsoleFrameworkAttributesInput = {
@@ -57345,6 +57401,13 @@ export declare type MarketplaceConsoleLink = {
57345
57401
  title?: Maybe<Scalars['String']['output']>;
57346
57402
  type?: Maybe<Scalars['String']['output']>;
57347
57403
  };
57404
+ export declare type MarketplaceConsoleListingHighLight = {
57405
+ __typename?: 'MarketplaceConsoleListingHighLight';
57406
+ caption?: Maybe<Scalars['String']['output']>;
57407
+ screenshot: MarketplaceConsoleListingScreenshot;
57408
+ summary?: Maybe<Scalars['String']['output']>;
57409
+ title?: Maybe<Scalars['String']['output']>;
57410
+ };
57348
57411
  export declare type MarketplaceConsoleListingHighLightInput = {
57349
57412
  caption?: InputMaybe<Scalars['String']['input']>;
57350
57413
  screenshotUrl: Scalars['String']['input'];
@@ -57352,17 +57415,9 @@ export declare type MarketplaceConsoleListingHighLightInput = {
57352
57415
  thumbnailUrl: Scalars['String']['input'];
57353
57416
  title: Scalars['String']['input'];
57354
57417
  };
57355
- export declare type MarketplaceConsoleListingHighLights = {
57356
- __typename?: 'MarketplaceConsoleListingHighLights';
57357
- caption?: Maybe<Scalars['String']['output']>;
57358
- screenshot: MarketplaceConsoleListingScreenshot;
57359
- summary?: Maybe<Scalars['String']['output']>;
57360
- title?: Maybe<Scalars['String']['output']>;
57361
- };
57362
57418
  export declare type MarketplaceConsoleListingScreenshot = {
57363
57419
  __typename?: 'MarketplaceConsoleListingScreenshot';
57364
57420
  caption?: Maybe<Scalars['String']['output']>;
57365
- imageId: Scalars['String']['output'];
57366
57421
  imageUrl?: Maybe<Scalars['String']['output']>;
57367
57422
  };
57368
57423
  export declare type MarketplaceConsoleListingScreenshotInput = {
@@ -59213,6 +59268,7 @@ export declare type MercuryPortfolio = Node & {
59213
59268
  linkedFocusAreaSummary?: Maybe<MercuryPortfolioFocusAreaSummary>;
59214
59269
  name: Scalars['String']['output'];
59215
59270
  owner?: Maybe<User>;
59271
+ url?: Maybe<Scalars['String']['output']>;
59216
59272
  };
59217
59273
  export declare type MercuryPortfolioAllocations = {
59218
59274
  __typename?: 'MercuryPortfolioAllocations';
@@ -60136,7 +60192,7 @@ export declare type Mutation = {
60136
60192
  polarisAddReaction?: Maybe<PolarisAddReactionPayload>;
60137
60193
  polarisDeleteReaction?: Maybe<PolarisDeleteReactionPayload>;
60138
60194
  publishReleaseNote: ContentPlatformReleaseNote;
60139
- radar_updateFocusAreaMappings: RadarMutationResponseResult;
60195
+ radar_updateFocusAreaMappings: RadarMutationResponse;
60140
60196
  rankCardParent?: Maybe<GenericMutationResponse>;
60141
60197
  rankColumn?: Maybe<RankColumnOutput>;
60142
60198
  rankCustomFilter?: Maybe<GenericMutationResponse>;
@@ -63112,7 +63168,7 @@ export declare type Query = {
63112
63168
  pricings: ContentPlatformPricingSearchConnection;
63113
63169
  productListing?: Maybe<ProductListingResult>;
63114
63170
  productListings: Array<ProductListingResult>;
63115
- radar_fieldValues: RadarFieldValueConnectionResult;
63171
+ radar_fieldValues: RadarFieldValuesConnectionResult;
63116
63172
  radar_positions: RadarPositionConnectionResult;
63117
63173
  radar_workspace: RadarWorkspace;
63118
63174
  releaseNote?: Maybe<ContentPlatformReleaseNote>;
@@ -64728,7 +64784,6 @@ export declare enum RadarFieldType {
64728
64784
  Url = "URL"
64729
64785
  }
64730
64786
  export declare type RadarFieldValue = RadarAriFieldValue | RadarBooleanFieldValue | RadarDateFieldValue | RadarNumericFieldValue | RadarStatusFieldValue | RadarStringFieldValue | RadarUrlFieldValue;
64731
- export declare type RadarFieldValueConnectionResult = RadarError | RadarFieldValuesConnection;
64732
64787
  export declare type RadarFieldValueIdPair = {
64733
64788
  __typename?: 'RadarFieldValueIdPair';
64734
64789
  fieldId: Scalars['ID']['output'];
@@ -64741,6 +64796,17 @@ export declare type RadarFieldValuesConnection = RadarConnection & {
64741
64796
  pageInfo: PageInfo;
64742
64797
  totalCount: Scalars['Int']['output'];
64743
64798
  };
64799
+ export declare type RadarFieldValuesConnectionResult = {
64800
+ __typename?: 'RadarFieldValuesConnectionResult';
64801
+ errors?: Maybe<Array<RadarError>>;
64802
+ result?: Maybe<RadarFieldValuesConnection>;
64803
+ };
64804
+ export declare type RadarFieldValuesConnectionResultResultArgs = {
64805
+ after?: InputMaybe<Scalars['String']['input']>;
64806
+ before?: InputMaybe<Scalars['String']['input']>;
64807
+ first?: InputMaybe<Scalars['Int']['input']>;
64808
+ last?: InputMaybe<Scalars['Int']['input']>;
64809
+ };
64744
64810
  export declare type RadarFieldValuesEdge = RadarEdge & {
64745
64811
  __typename?: 'RadarFieldValuesEdge';
64746
64812
  cursor: Scalars['String']['output'];
@@ -64782,9 +64848,9 @@ export declare type RadarLocation = {
64782
64848
  };
64783
64849
  export declare type RadarMutationResponse = {
64784
64850
  __typename?: 'RadarMutationResponse';
64785
- success: Scalars['Boolean']['output'];
64851
+ errors?: Maybe<Array<RadarError>>;
64852
+ success?: Maybe<Scalars['Boolean']['output']>;
64786
64853
  };
64787
- export declare type RadarMutationResponseResult = RadarError | RadarMutationResponse;
64788
64854
  export declare type RadarNumericFieldValue = {
64789
64855
  __typename?: 'RadarNumericFieldValue';
64790
64856
  displayValue?: Maybe<Scalars['Int']['output']>;
@@ -64803,7 +64869,17 @@ export declare type RadarPositionConnection = RadarConnection & {
64803
64869
  pageInfo: PageInfo;
64804
64870
  totalCount: Scalars['Int']['output'];
64805
64871
  };
64806
- export declare type RadarPositionConnectionResult = RadarError | RadarPositionConnection;
64872
+ export declare type RadarPositionConnectionResult = {
64873
+ __typename?: 'RadarPositionConnectionResult';
64874
+ errors?: Maybe<Array<RadarError>>;
64875
+ result?: Maybe<RadarPositionConnection>;
64876
+ };
64877
+ export declare type RadarPositionConnectionResultResultArgs = {
64878
+ after?: InputMaybe<Scalars['String']['input']>;
64879
+ before?: InputMaybe<Scalars['String']['input']>;
64880
+ first?: InputMaybe<Scalars['Int']['input']>;
64881
+ last?: InputMaybe<Scalars['Int']['input']>;
64882
+ };
64807
64883
  export declare type RadarPositionEdge = RadarEdge & {
64808
64884
  __typename?: 'RadarPositionEdge';
64809
64885
  cursor: Scalars['String']['output'];
@@ -70488,10 +70564,10 @@ export declare type TrelloArchiveCardPayload = Payload & {
70488
70564
  };
70489
70565
  export declare type TrelloAssignCardToPlannerCalendarEventInput = {
70490
70566
  cardId: Scalars['ID']['input'];
70567
+ plannerCalendarId: Scalars['ID']['input'];
70491
70568
  position?: InputMaybe<Scalars['Float']['input']>;
70492
- providerCalendarId: Scalars['ID']['input'];
70569
+ providerAccountId: Scalars['ID']['input'];
70493
70570
  providerEventId: Scalars['ID']['input'];
70494
- workspaceId: Scalars['ID']['input'];
70495
70571
  };
70496
70572
  export declare type TrelloAssignCardToPlannerCalendarEventPayload = Payload & {
70497
70573
  __typename?: 'TrelloAssignCardToPlannerCalendarEventPayload';
@@ -71039,6 +71115,7 @@ export declare type TrelloCreateCardPayload = Payload & {
71039
71115
  };
71040
71116
  export declare type TrelloCreateOrUpdatePlannerCalendarInput = {
71041
71117
  enabled: Scalars['Boolean']['input'];
71118
+ providerAccountId?: InputMaybe<Scalars['ID']['input']>;
71042
71119
  providerCalendarId: Scalars['ID']['input'];
71043
71120
  type: TrelloSupportedPlannerProviders;
71044
71121
  workspaceId: Scalars['ID']['input'];
@@ -71047,6 +71124,7 @@ export declare type TrelloCreateOrUpdatePlannerCalendarPayload = Payload & {
71047
71124
  __typename?: 'TrelloCreateOrUpdatePlannerCalendarPayload';
71048
71125
  errors?: Maybe<Array<MutationError>>;
71049
71126
  plannerCalendar?: Maybe<TrelloPlannerCalendarConnection>;
71127
+ plannerCalendarUpdated?: Maybe<TrelloPlannerCalendarConnectionUpdated>;
71050
71128
  success: Scalars['Boolean']['output'];
71051
71129
  };
71052
71130
  export declare type TrelloCreateOrUpdatePlannerCalendarPayloadPlannerCalendarArgs = {
@@ -71531,6 +71609,10 @@ export declare type TrelloPlannerCalendarConnection = {
71531
71609
  pageInfo: PageInfo;
71532
71610
  updateCursor?: Maybe<Scalars['String']['output']>;
71533
71611
  };
71612
+ export declare type TrelloPlannerCalendarConnectionUpdated = {
71613
+ __typename?: 'TrelloPlannerCalendarConnectionUpdated';
71614
+ edges?: Maybe<Array<TrelloPlannerCalendarEdge>>;
71615
+ };
71534
71616
  export declare type TrelloPlannerCalendarEdge = {
71535
71617
  __typename?: 'TrelloPlannerCalendarEdge';
71536
71618
  cursor?: Maybe<Scalars['String']['output']>;
@@ -71704,6 +71786,8 @@ export declare type TrelloQueryApi = {
71704
71786
  list?: Maybe<TrelloList>;
71705
71787
  member?: Maybe<TrelloMember>;
71706
71788
  plannerAccountsByMemberId?: Maybe<TrelloPlannerCalendarAccountConnection>;
71789
+ plannerByWorkspaceId?: Maybe<TrelloPlanner>;
71790
+ plannerCalendarAccountById?: Maybe<TrelloPlannerCalendarAccount>;
71707
71791
  plannerCalendarEventsByCalendarId?: Maybe<TrelloPlannerCalendarEventConnection>;
71708
71792
  providerPlannerCalendarsByAccountId?: Maybe<TrelloPlannerProviderCalendarConnection>;
71709
71793
  recentBoardsByIds?: Maybe<Array<Maybe<TrelloBoard>>>;
@@ -71752,6 +71836,13 @@ export declare type TrelloQueryApiPlannerAccountsByMemberIdArgs = {
71752
71836
  id: Scalars['ID']['input'];
71753
71837
  workspaceId: Scalars['ID']['input'];
71754
71838
  };
71839
+ export declare type TrelloQueryApiPlannerByWorkspaceIdArgs = {
71840
+ id: Scalars['ID']['input'];
71841
+ };
71842
+ export declare type TrelloQueryApiPlannerCalendarAccountByIdArgs = {
71843
+ id: Scalars['ID']['input'];
71844
+ workspaceId: Scalars['ID']['input'];
71845
+ };
71755
71846
  export declare type TrelloQueryApiPlannerCalendarEventsByCalendarIdArgs = {
71756
71847
  accountId: Scalars['ID']['input'];
71757
71848
  after?: InputMaybe<Scalars['String']['input']>;
@@ -72813,6 +72904,7 @@ export declare type UpdateCompassScorecardInput = {
72813
72904
  repositoryValues?: InputMaybe<CompassRepositoryValueInput>;
72814
72905
  scoringStrategyType?: InputMaybe<CompassScorecardScoringStrategyType>;
72815
72906
  state?: InputMaybe<Scalars['String']['input']>;
72907
+ statusConfig?: InputMaybe<CompassScorecardStatusConfigInput>;
72816
72908
  updateCriteria?: InputMaybe<Array<UpdateCompassScorecardCriteriaInput>>;
72817
72909
  };
72818
72910
  export declare type UpdateCompassScorecardPayload = Payload & {
@@ -73371,6 +73463,7 @@ export declare type VirtualAgentCreateChatChannelPayload = Payload & {
73371
73463
  };
73372
73464
  export declare type VirtualAgentCreateConfigurationInput = {
73373
73465
  defaultJiraRequestTypeId?: InputMaybe<Scalars['String']['input']>;
73466
+ isAiResponsesEnabled?: InputMaybe<Scalars['Boolean']['input']>;
73374
73467
  respondToQueries?: InputMaybe<Scalars['Boolean']['input']>;
73375
73468
  };
73376
73469
  export declare type VirtualAgentCreateConfigurationPayload = Payload & {