@forge/cli-shared 5.4.1-next.1 → 5.4.1-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.
@@ -136,8 +136,10 @@ export declare type ActionsAction = {
136
136
  auth: Array<ActionsAuthType>;
137
137
  description?: Maybe<ActionsDescription>;
138
138
  extensionAri?: Maybe<Scalars['String']['output']>;
139
+ icon?: Maybe<Scalars['String']['output']>;
139
140
  inputs?: Maybe<Array<ActionsActionInputTuple>>;
140
141
  isConsequential: Scalars['Boolean']['output'];
142
+ name?: Maybe<Scalars['String']['output']>;
141
143
  };
142
144
  export declare type ActionsActionInput = {
143
145
  __typename?: 'ActionsActionInput';
@@ -146,6 +148,7 @@ export declare type ActionsActionInput = {
146
148
  items?: Maybe<ActionsActionInputItems>;
147
149
  pattern?: Maybe<Scalars['String']['output']>;
148
150
  required: Scalars['Boolean']['output'];
151
+ title?: Maybe<Scalars['String']['output']>;
149
152
  type: Scalars['String']['output'];
150
153
  };
151
154
  export declare type ActionsActionInputItems = {
@@ -3257,6 +3260,7 @@ export declare type CompassCatalogMutationApi = {
3257
3260
  createStarredComponent?: Maybe<CreateCompassStarredComponentPayload>;
3258
3261
  createTeamCheckin?: Maybe<CompassCreateTeamCheckinPayload>;
3259
3262
  createWebhook?: Maybe<CompassCreateWebhookPayload>;
3263
+ deactivateScorecardForComponent?: Maybe<CompassDeactivateScorecardForComponentPayload>;
3260
3264
  deleteAnnouncement?: Maybe<CompassDeleteAnnouncementPayload>;
3261
3265
  deleteCampaign?: Maybe<CompassDeleteCampaignPayload>;
3262
3266
  deleteComponent?: Maybe<DeleteCompassComponentPayload>;
@@ -3277,6 +3281,7 @@ export declare type CompassCatalogMutationApi = {
3277
3281
  detachEventSource?: Maybe<DetachEventSourcePayload>;
3278
3282
  insertMetricValue?: Maybe<CompassInsertMetricValuePayload>;
3279
3283
  insertMetricValueByExternalId?: Maybe<CompassInsertMetricValueByExternalIdPayload>;
3284
+ reactivateScorecardForComponent?: Maybe<CompassReactivateScorecardForComponentPayload>;
3280
3285
  removeComponentLabels?: Maybe<RemoveCompassComponentLabelsPayload>;
3281
3286
  removeScorecardFromComponent?: Maybe<RemoveCompassScorecardFromComponentPayload>;
3282
3287
  removeTeamLabels?: Maybe<CompassRemoveTeamLabelsPayload>;
@@ -3291,6 +3296,7 @@ export declare type CompassCatalogMutationApi = {
3291
3296
  updateComponentLink?: Maybe<UpdateCompassComponentLinkPayload>;
3292
3297
  updateComponentScorecardJiraIssue?: Maybe<CompassUpdateComponentScorecardJiraIssuePayload>;
3293
3298
  updateComponentType?: Maybe<UpdateCompassComponentTypePayload>;
3299
+ updateComponentTypeMetadata?: Maybe<UpdateCompassComponentTypeMetadataPayload>;
3294
3300
  updateComponents?: Maybe<BulkUpdateCompassComponentsPayload>;
3295
3301
  updateCustomFieldDefinition?: Maybe<CompassUpdateCustomFieldDefinitionPayload>;
3296
3302
  updateCustomPermissionConfigs?: Maybe<CompassUpdatePermissionConfigsPayload>;
@@ -3396,6 +3402,10 @@ export declare type CompassCatalogMutationApiCreateTeamCheckinArgs = {
3396
3402
  export declare type CompassCatalogMutationApiCreateWebhookArgs = {
3397
3403
  input: CompassCreateWebhookInput;
3398
3404
  };
3405
+ export declare type CompassCatalogMutationApiDeactivateScorecardForComponentArgs = {
3406
+ componentId: Scalars['ID']['input'];
3407
+ scorecardId: Scalars['ID']['input'];
3408
+ };
3399
3409
  export declare type CompassCatalogMutationApiDeleteAnnouncementArgs = {
3400
3410
  input: CompassDeleteAnnouncementInput;
3401
3411
  };
@@ -3456,6 +3466,10 @@ export declare type CompassCatalogMutationApiInsertMetricValueArgs = {
3456
3466
  export declare type CompassCatalogMutationApiInsertMetricValueByExternalIdArgs = {
3457
3467
  input: CompassInsertMetricValueByExternalIdInput;
3458
3468
  };
3469
+ export declare type CompassCatalogMutationApiReactivateScorecardForComponentArgs = {
3470
+ componentId: Scalars['ID']['input'];
3471
+ scorecardId: Scalars['ID']['input'];
3472
+ };
3459
3473
  export declare type CompassCatalogMutationApiRemoveComponentLabelsArgs = {
3460
3474
  input: RemoveCompassComponentLabelsInput;
3461
3475
  };
@@ -3501,6 +3515,9 @@ export declare type CompassCatalogMutationApiUpdateComponentScorecardJiraIssueAr
3501
3515
  export declare type CompassCatalogMutationApiUpdateComponentTypeArgs = {
3502
3516
  input: UpdateCompassComponentTypeInput;
3503
3517
  };
3518
+ export declare type CompassCatalogMutationApiUpdateComponentTypeMetadataArgs = {
3519
+ input: UpdateCompassComponentTypeMetadataInput;
3520
+ };
3504
3521
  export declare type CompassCatalogMutationApiUpdateComponentsArgs = {
3505
3522
  input: BulkUpdateCompassComponentsInput;
3506
3523
  };
@@ -3702,6 +3719,7 @@ export declare type CompassComponent = Node & {
3702
3719
  changeMetadata: CompassChangeMetadata;
3703
3720
  customFields?: Maybe<Array<CompassCustomField>>;
3704
3721
  dataManager?: Maybe<CompassComponentDataManager>;
3722
+ deactivatedScorecards?: Maybe<CompassDeactivatedScorecardsConnection>;
3705
3723
  description?: Maybe<Scalars['String']['output']>;
3706
3724
  eventSources?: Maybe<Array<EventSource>>;
3707
3725
  events?: Maybe<CompassEventsQueryResult>;
@@ -3723,6 +3741,10 @@ export declare type CompassComponent = Node & {
3723
3741
  viewerPermissions?: Maybe<CompassComponentInstancePermissions>;
3724
3742
  viewerSubscription?: Maybe<CompassViewerSubscription>;
3725
3743
  };
3744
+ export declare type CompassComponentDeactivatedScorecardsArgs = {
3745
+ after?: InputMaybe<Scalars['String']['input']>;
3746
+ first?: InputMaybe<Scalars['Int']['input']>;
3747
+ };
3726
3748
  export declare type CompassComponentEventsArgs = {
3727
3749
  query?: InputMaybe<CompassEventsQuery>;
3728
3750
  };
@@ -3856,6 +3878,14 @@ export declare type CompassComponentDataManager = {
3856
3878
  externalSourceURL?: Maybe<Scalars['URL']['output']>;
3857
3879
  lastSyncEvent?: Maybe<ComponentSyncEvent>;
3858
3880
  };
3881
+ export declare type CompassComponentDeactivatedScorecardsEdge = {
3882
+ __typename?: 'CompassComponentDeactivatedScorecardsEdge';
3883
+ cursor: Scalars['String']['output'];
3884
+ deactivatedBy?: Maybe<User>;
3885
+ deactivatedOn?: Maybe<Scalars['DateTime']['output']>;
3886
+ lastScorecardScore?: Maybe<Scalars['Int']['output']>;
3887
+ node?: Maybe<CompassDeactivatedScorecard>;
3888
+ };
3859
3889
  export declare type CompassComponentEndpoint = {
3860
3890
  __typename?: 'CompassComponentEndpoint';
3861
3891
  checksum: Scalars['String']['output'];
@@ -4624,6 +4654,31 @@ export declare type CompassCustomUserFieldInput = {
4624
4654
  definitionId: Scalars['ID']['input'];
4625
4655
  userIdValue?: InputMaybe<Scalars['ID']['input']>;
4626
4656
  };
4657
+ export declare type CompassDeactivateScorecardForComponentPayload = Payload & {
4658
+ __typename?: 'CompassDeactivateScorecardForComponentPayload';
4659
+ componentDetails?: Maybe<CompassComponent>;
4660
+ errors?: Maybe<Array<MutationError>>;
4661
+ success: Scalars['Boolean']['output'];
4662
+ };
4663
+ export declare type CompassDeactivatedScorecard = {
4664
+ __typename?: 'CompassDeactivatedScorecard';
4665
+ activeIssues?: Maybe<CompassComponentScorecardJiraIssuesQueryResult>;
4666
+ applicationModel: CompassScorecardApplicationModel;
4667
+ description?: Maybe<Scalars['String']['output']>;
4668
+ id: Scalars['ID']['output'];
4669
+ name: Scalars['String']['output'];
4670
+ ownerId?: Maybe<Scalars['ID']['output']>;
4671
+ type: Scalars['String']['output'];
4672
+ };
4673
+ export declare type CompassDeactivatedScorecardActiveIssuesArgs = {
4674
+ query?: InputMaybe<CompassComponentScorecardJiraIssuesQuery>;
4675
+ };
4676
+ export declare type CompassDeactivatedScorecardsConnection = {
4677
+ __typename?: 'CompassDeactivatedScorecardsConnection';
4678
+ edges?: Maybe<Array<CompassComponentDeactivatedScorecardsEdge>>;
4679
+ nodes?: Maybe<Array<CompassDeactivatedScorecard>>;
4680
+ pageInfo: PageInfo;
4681
+ };
4627
4682
  export declare type CompassDeleteAnnouncementInput = {
4628
4683
  cloudId: Scalars['ID']['input'];
4629
4684
  id: Scalars['ID']['input'];
@@ -5514,6 +5569,12 @@ export declare type CompassQueryTimeRange = {
5514
5569
  endDate: Scalars['DateTime']['input'];
5515
5570
  startDate: Scalars['DateTime']['input'];
5516
5571
  };
5572
+ export declare type CompassReactivateScorecardForComponentPayload = Payload & {
5573
+ __typename?: 'CompassReactivateScorecardForComponentPayload';
5574
+ componentDetails?: Maybe<CompassComponent>;
5575
+ errors?: Maybe<Array<MutationError>>;
5576
+ success: Scalars['Boolean']['output'];
5577
+ };
5517
5578
  export declare type CompassRelationship = {
5518
5579
  __typename?: 'CompassRelationship';
5519
5580
  changeMetadata?: Maybe<CompassChangeMetadata>;
@@ -5584,9 +5645,11 @@ export declare type CompassScorecard = Node & {
5584
5645
  componentTypeIds: Array<Scalars['ID']['output']>;
5585
5646
  criteriaScoreStatisticsHistories?: Maybe<CompassScorecardCriteriaScoreStatisticsHistoryConnection>;
5586
5647
  criterias?: Maybe<Array<CompassScorecardCriteria>>;
5648
+ deactivatedComponents?: Maybe<CompassScorecardDeactivatedComponentsConnection>;
5587
5649
  description?: Maybe<Scalars['String']['output']>;
5588
5650
  id: Scalars['ID']['output'];
5589
5651
  importance: CompassScorecardImportance;
5652
+ isDeactivationEnabled: Scalars['Boolean']['output'];
5590
5653
  name: Scalars['String']['output'];
5591
5654
  owner?: Maybe<User>;
5592
5655
  scorecardScore?: Maybe<CompassScorecardScore>;
@@ -5608,6 +5671,11 @@ export declare type CompassScorecardCriteriaScoreStatisticsHistoriesArgs = {
5608
5671
  first?: InputMaybe<Scalars['Int']['input']>;
5609
5672
  query?: InputMaybe<CompassScorecardCriteriaScoreStatisticsHistoryQuery>;
5610
5673
  };
5674
+ export declare type CompassScorecardDeactivatedComponentsArgs = {
5675
+ after?: InputMaybe<Scalars['String']['input']>;
5676
+ first?: InputMaybe<Scalars['Int']['input']>;
5677
+ query?: InputMaybe<CompassScorecardDeactivatedComponentsQuery>;
5678
+ };
5611
5679
  export declare type CompassScorecardScorecardScoreArgs = {
5612
5680
  query?: InputMaybe<CompassScorecardScoreQuery>;
5613
5681
  };
@@ -5791,6 +5859,33 @@ export declare type CompassScorecardCriterionScoreStatusStatistic = {
5791
5859
  count: Scalars['Int']['output'];
5792
5860
  scoreStatus: CompassScorecardCriterionScoreStatus;
5793
5861
  };
5862
+ export declare type CompassScorecardDeactivatedComponentsConnection = {
5863
+ __typename?: 'CompassScorecardDeactivatedComponentsConnection';
5864
+ edges?: Maybe<Array<CompassScorecardDeactivatedComponentsEdge>>;
5865
+ nodes?: Maybe<Array<CompassComponent>>;
5866
+ pageInfo: PageInfo;
5867
+ };
5868
+ export declare type CompassScorecardDeactivatedComponentsEdge = {
5869
+ __typename?: 'CompassScorecardDeactivatedComponentsEdge';
5870
+ cursor: Scalars['String']['output'];
5871
+ deactivatedBy?: Maybe<User>;
5872
+ deactivatedOn?: Maybe<Scalars['DateTime']['output']>;
5873
+ lastScorecardScore?: Maybe<Scalars['Int']['output']>;
5874
+ node?: Maybe<CompassComponent>;
5875
+ };
5876
+ export declare type CompassScorecardDeactivatedComponentsQuery = {
5877
+ filter?: InputMaybe<CompassScorecardDeactivatedComponentsQueryFilter>;
5878
+ sort?: InputMaybe<CompassScorecardDeactivatedComponentsQuerySort>;
5879
+ };
5880
+ export declare type CompassScorecardDeactivatedComponentsQueryFilter = {
5881
+ fields?: InputMaybe<Array<CompassScorecardAppliedToComponentsFieldFilter>>;
5882
+ owners?: InputMaybe<CompassScorecardAppliedToComponentsOwnerFilter>;
5883
+ types?: InputMaybe<CompassScorecardAppliedToComponentsTypesFilter>;
5884
+ };
5885
+ export declare type CompassScorecardDeactivatedComponentsQuerySort = {
5886
+ name: Scalars['String']['input'];
5887
+ order: CompassScorecardQuerySortOrder;
5888
+ };
5794
5889
  export declare type CompassScorecardEdge = {
5795
5890
  __typename?: 'CompassScorecardEdge';
5796
5891
  cursor: Scalars['String']['output'];
@@ -7748,6 +7843,7 @@ export declare enum ConfluenceLegacyContentDataClassificationQueryContentStatus
7748
7843
  }
7749
7844
  export declare enum ConfluenceLegacyContentDeleteActionType {
7750
7845
  DeleteDraft = "DELETE_DRAFT",
7846
+ DeleteDraftIfBlank = "DELETE_DRAFT_IF_BLANK",
7751
7847
  MoveToTrash = "MOVE_TO_TRASH",
7752
7848
  PurgeFromTrash = "PURGE_FROM_TRASH"
7753
7849
  }
@@ -8308,6 +8404,7 @@ export declare type ConfluenceLegacyDeleteContentDataClassificationLevelPayload
8308
8404
  export declare type ConfluenceLegacyDeleteContentResponsePayload = {
8309
8405
  __typename?: 'ConfluenceLegacyDeleteContentResponsePayload';
8310
8406
  contentId: Scalars['ID']['output'];
8407
+ wasDeleted: Scalars['Boolean']['output'];
8311
8408
  };
8312
8409
  export declare type ConfluenceLegacyDeleteContentTemplateLabelInput = {
8313
8410
  contentTemplateId: Scalars['ID']['input'];
@@ -35938,6 +36035,7 @@ export declare type HelpCenterQueryApi = {
35938
36035
  __typename?: 'HelpCenterQueryApi';
35939
36036
  getHelpDeskById?: Maybe<HelpCenterHelpDeskQueryResult>;
35940
36037
  helpCenterByHoistedProjectId?: Maybe<HelpCenterQueryResult>;
36038
+ helpCenterByHoistedProjectIdRouted?: Maybe<HelpCenterQueryResult>;
35941
36039
  helpCenterById?: Maybe<HelpCenterQueryResult>;
35942
36040
  helpCenterReportingById?: Maybe<HelpCenterReportingResult>;
35943
36041
  helpCenterTopicById?: Maybe<HelpCenterTopicResult>;
@@ -35954,6 +36052,10 @@ export declare type HelpCenterQueryApiGetHelpDeskByIdArgs = {
35954
36052
  export declare type HelpCenterQueryApiHelpCenterByHoistedProjectIdArgs = {
35955
36053
  projectAri: Scalars['ID']['input'];
35956
36054
  };
36055
+ export declare type HelpCenterQueryApiHelpCenterByHoistedProjectIdRoutedArgs = {
36056
+ projectAri: Scalars['ID']['input'];
36057
+ workspaceAri: Scalars['ID']['input'];
36058
+ };
35957
36059
  export declare type HelpCenterQueryApiHelpCenterByIdArgs = {
35958
36060
  helpCenterAri: Scalars['ID']['input'];
35959
36061
  };
@@ -41111,6 +41213,10 @@ export declare type JiraEntityPropertyString = JiraEntityProperty & Node & {
41111
41213
  propertyKey?: Maybe<Scalars['String']['output']>;
41112
41214
  stringValue?: Maybe<Scalars['String']['output']>;
41113
41215
  };
41216
+ export declare enum JiraEntityScope {
41217
+ Global = "GLOBAL",
41218
+ Project = "PROJECT"
41219
+ }
41114
41220
  export declare type JiraEpic = {
41115
41221
  __typename?: 'JiraEpic';
41116
41222
  color?: Maybe<Scalars['String']['output']>;
@@ -41239,6 +41345,32 @@ export declare type JiraFetchBulkOperationDetailsResponseBulkTransitionsArgs = {
41239
41345
  first?: InputMaybe<Scalars['Int']['input']>;
41240
41346
  last?: InputMaybe<Scalars['Int']['input']>;
41241
41347
  };
41348
+ export declare type JiraField = {
41349
+ __typename?: 'JiraField';
41350
+ description?: Maybe<Scalars['String']['output']>;
41351
+ fieldId?: Maybe<Scalars['String']['output']>;
41352
+ id: Scalars['ID']['output'];
41353
+ name?: Maybe<Scalars['String']['output']>;
41354
+ scope?: Maybe<JiraEntityScope>;
41355
+ typeKey?: Maybe<Scalars['String']['output']>;
41356
+ typeName?: Maybe<Scalars['String']['output']>;
41357
+ };
41358
+ export declare type JiraFieldAssociationWithIssueTypes = {
41359
+ __typename?: 'JiraFieldAssociationWithIssueTypes';
41360
+ field?: Maybe<JiraField>;
41361
+ fieldOperation?: Maybe<JiraFieldOperation>;
41362
+ issueTypes?: Maybe<JiraIssueTypeConnection>;
41363
+ };
41364
+ export declare type JiraFieldAssociationWithIssueTypesConnection = {
41365
+ __typename?: 'JiraFieldAssociationWithIssueTypesConnection';
41366
+ edges?: Maybe<Array<Maybe<JiraFieldAssociationWithIssueTypesEdge>>>;
41367
+ pageInfo: PageInfo;
41368
+ };
41369
+ export declare type JiraFieldAssociationWithIssueTypesEdge = {
41370
+ __typename?: 'JiraFieldAssociationWithIssueTypesEdge';
41371
+ cursor?: Maybe<Scalars['String']['output']>;
41372
+ node?: Maybe<JiraFieldAssociationWithIssueTypes>;
41373
+ };
41242
41374
  export declare type JiraFieldConfig = {
41243
41375
  __typename?: 'JiraFieldConfig';
41244
41376
  isEditable?: Maybe<Scalars['Boolean']['output']>;
@@ -41269,6 +41401,13 @@ export declare type JiraFieldNonEditableReason = {
41269
41401
  __typename?: 'JiraFieldNonEditableReason';
41270
41402
  message?: Maybe<Scalars['String']['output']>;
41271
41403
  };
41404
+ export declare type JiraFieldOperation = {
41405
+ __typename?: 'JiraFieldOperation';
41406
+ canDelete?: Maybe<Scalars['Boolean']['output']>;
41407
+ canEdit?: Maybe<Scalars['Boolean']['output']>;
41408
+ canModifyOptions?: Maybe<Scalars['Boolean']['output']>;
41409
+ canRemove?: Maybe<Scalars['Boolean']['output']>;
41410
+ };
41272
41411
  export declare type JiraFieldOptionIdsFilterInput = {
41273
41412
  operation: JiraFieldOptionIdsFilterOperation;
41274
41413
  optionIds: Array<Scalars['ID']['input']>;
@@ -43162,11 +43301,13 @@ export declare type JiraIssueTransitionCommentVisibilityInput = {
43162
43301
  roleId?: InputMaybe<Scalars['ID']['input']>;
43163
43302
  };
43164
43303
  export declare type JiraIssueTransitionFieldLevelInput = {
43304
+ JiraAffectedServicesField?: InputMaybe<Array<JiraUpdateAffectedServicesFieldInput>>;
43165
43305
  JiraAttachmentsField?: InputMaybe<Array<JiraUpdateAttachmentFieldInput>>;
43166
43306
  JiraCascadingSelectField?: InputMaybe<Array<JiraUpdateCascadingSelectFieldInput>>;
43167
43307
  JiraCheckboxesField?: InputMaybe<Array<JiraUpdateCheckboxesFieldInput>>;
43168
43308
  JiraColorField?: InputMaybe<Array<JiraUpdateColorFieldInput>>;
43169
43309
  JiraComponentsField?: InputMaybe<Array<JiraUpdateComponentsFieldInput>>;
43310
+ JiraConnectMultipleSelectField?: InputMaybe<Array<JiraUpdateMultipleSelectFieldInput>>;
43170
43311
  JiraConnectNumberField?: InputMaybe<Array<JiraUpdateNumberFieldInput>>;
43171
43312
  JiraConnectRichTextField?: InputMaybe<Array<JiraUpdateRichTextFieldInput>>;
43172
43313
  JiraConnectSingleSelectField?: InputMaybe<Array<JiraUpdateSingleSelectFieldInput>>;
@@ -43509,6 +43650,7 @@ export declare enum JiraJqlClauseType {
43509
43650
  }
43510
43651
  export declare type JiraJqlComponentFieldValue = JiraJqlFieldValue & {
43511
43652
  __typename?: 'JiraJqlComponentFieldValue';
43653
+ component?: Maybe<JiraComponent>;
43512
43654
  displayName: Scalars['String']['output'];
43513
43655
  encodedJqlTerm?: Maybe<Scalars['String']['output']>;
43514
43656
  jqlTerm: Scalars['String']['output'];
@@ -43691,6 +43833,7 @@ export declare type JiraJqlOptionFieldValue = JiraJqlFieldValue & {
43691
43833
  displayName: Scalars['String']['output'];
43692
43834
  encodedJqlTerm?: Maybe<Scalars['String']['output']>;
43693
43835
  jqlTerm: Scalars['String']['output'];
43836
+ option?: Maybe<JiraOption>;
43694
43837
  };
43695
43838
  export declare type JiraJqlOptionFieldValueConnection = {
43696
43839
  __typename?: 'JiraJqlOptionFieldValueConnection';
@@ -43795,6 +43938,7 @@ export declare type JiraJqlStatusFieldValue = JiraJqlFieldValue & {
43795
43938
  displayName: Scalars['String']['output'];
43796
43939
  encodedJqlTerm?: Maybe<Scalars['String']['output']>;
43797
43940
  jqlTerm: Scalars['String']['output'];
43941
+ status?: Maybe<JiraStatus>;
43798
43942
  statusCategory: JiraStatusCategory;
43799
43943
  };
43800
43944
  export declare enum JiraJqlSyntaxError {
@@ -43843,6 +43987,7 @@ export declare type JiraJqlVersionFieldValue = JiraJqlFieldValue & {
43843
43987
  displayName: Scalars['String']['output'];
43844
43988
  encodedJqlTerm?: Maybe<Scalars['String']['output']>;
43845
43989
  jqlTerm: Scalars['String']['output'];
43990
+ version?: Maybe<JiraVersion>;
43846
43991
  };
43847
43992
  export declare type JiraJqlVersionFieldValueConnection = {
43848
43993
  __typename?: 'JiraJqlVersionFieldValueConnection';
@@ -45941,6 +46086,7 @@ export declare type JiraProject = Node & {
45941
46086
  projectType?: Maybe<JiraProjectType>;
45942
46087
  projectTypeName?: Maybe<Scalars['String']['output']>;
45943
46088
  projectUrl?: Maybe<Scalars['String']['output']>;
46089
+ projectWithVisibleIssueTypeIds?: Maybe<JiraProjectWithIssueTypeIds>;
45944
46090
  repositories?: Maybe<GraphStoreSimplifiedProjectAssociatedRepoConnection>;
45945
46091
  repositoryRelationships?: Maybe<JiraProjectAndRepositoryRelationshipConnection>;
45946
46092
  selectedDeploymentAppsProperty?: Maybe<Array<JiraDeploymentApp>>;
@@ -46597,6 +46743,14 @@ export declare type JiraProjectUpdateNameMutationPayload = Payload & {
46597
46743
  project?: Maybe<JiraProject>;
46598
46744
  success: Scalars['Boolean']['output'];
46599
46745
  };
46746
+ export declare type JiraProjectWithIssueTypeIds = {
46747
+ __typename?: 'JiraProjectWithIssueTypeIds';
46748
+ fieldAssociationWithIssueTypes?: Maybe<JiraFieldAssociationWithIssueTypesConnection>;
46749
+ };
46750
+ export declare type JiraProjectWithIssueTypeIdsFieldAssociationWithIssueTypesArgs = {
46751
+ after?: InputMaybe<Scalars['String']['input']>;
46752
+ first?: InputMaybe<Scalars['Int']['input']>;
46753
+ };
46600
46754
  export declare type JiraPullRequestReviewer = {
46601
46755
  __typename?: 'JiraPullRequestReviewer';
46602
46756
  avatar?: Maybe<JiraAvatar>;
@@ -48272,6 +48426,7 @@ export declare type JiraScreenTabLayoutItem = {
48272
48426
  __typename?: 'JiraScreenTabLayoutItem';
48273
48427
  fields?: Maybe<JiraScreenTabLayoutFieldsConnection>;
48274
48428
  id: Scalars['ID']['output'];
48429
+ tabId?: Maybe<Scalars['String']['output']>;
48275
48430
  title: Scalars['String']['output'];
48276
48431
  };
48277
48432
  export declare type JiraScreenTabLayoutItemFieldsArgs = {
@@ -50319,7 +50474,7 @@ export declare type JiraUnlinkIssuesFromIncidentMutationPayload = Payload & {
50319
50474
  };
50320
50475
  export declare type JiraUnsplashAttributionInput = {
50321
50476
  cloudId: Scalars['ID']['input'];
50322
- imageIds: Array<Scalars['ID']['input']>;
50477
+ filePaths: Array<Scalars['ID']['input']>;
50323
50478
  };
50324
50479
  export declare type JiraUnsplashAttributionPayload = Payload & {
50325
50480
  __typename?: 'JiraUnsplashAttributionPayload';
@@ -52994,7 +53149,6 @@ export declare type KnowledgeDiscoveryKeyPhrase = {
52994
53149
  };
52995
53150
  export declare enum KnowledgeDiscoveryKeyPhraseCategory {
52996
53151
  Acronym = "ACRONYM",
52997
- IndustryJargon = "INDUSTRY_JARGON",
52998
53152
  Other = "OTHER",
52999
53153
  Project = "PROJECT",
53000
53154
  Team = "TEAM"
@@ -53806,32 +53960,31 @@ export declare enum MarketplaceConsoleDevSpaceTier {
53806
53960
  }
53807
53961
  export declare type MarketplaceConsoleEdition = {
53808
53962
  __typename?: 'MarketplaceConsoleEdition';
53809
- features?: Maybe<Array<Maybe<MarketplaceConsoleFeature>>>;
53963
+ features: Array<MarketplaceConsoleFeature>;
53810
53964
  id: Scalars['ID']['output'];
53811
53965
  isDefault: Scalars['Boolean']['output'];
53812
- name?: Maybe<Scalars['String']['output']>;
53813
53966
  pricingPlan: MarketplaceConsolePricingPlan;
53814
53967
  type: MarketplaceConsoleEditionType;
53815
53968
  };
53816
- export declare type MarketplaceConsoleEditionCreate = {
53817
- features?: InputMaybe<Array<InputMaybe<MarketplaceConsoleFeatureCreate>>>;
53969
+ export declare type MarketplaceConsoleEditionInput = {
53970
+ features: Array<MarketplaceConsoleFeatureInput>;
53971
+ id?: InputMaybe<Scalars['ID']['input']>;
53818
53972
  isDefault: Scalars['Boolean']['input'];
53819
- name: Scalars['String']['input'];
53820
- pricingPlan: MarketplaceConsolePricingPlanModify;
53973
+ pricingPlan: MarketplaceConsolePricingPlanInput;
53821
53974
  type: MarketplaceConsoleEditionType;
53822
53975
  };
53976
+ export declare type MarketplaceConsoleEditionPricingKnownError = MarketplaceConsoleError & {
53977
+ __typename?: 'MarketplaceConsoleEditionPricingKnownError';
53978
+ id: Scalars['ID']['output'];
53979
+ message: Scalars['String']['output'];
53980
+ subCode?: Maybe<Scalars['String']['output']>;
53981
+ type: MarketplaceConsoleEditionType;
53982
+ };
53983
+ export declare type MarketplaceConsoleEditionResponse = MarketplaceConsoleEdition | MarketplaceConsoleEditionPricingKnownError;
53823
53984
  export declare enum MarketplaceConsoleEditionType {
53824
53985
  Advanced = "ADVANCED",
53825
53986
  Standard = "STANDARD"
53826
53987
  }
53827
- export declare type MarketplaceConsoleEditionUpdate = {
53828
- features?: InputMaybe<Array<InputMaybe<MarketplaceConsoleFeatureUpdate>>>;
53829
- id: Scalars['ID']['input'];
53830
- isDefault: Scalars['Boolean']['input'];
53831
- name: Scalars['String']['input'];
53832
- pricingPlan: MarketplaceConsolePricingPlanModify;
53833
- type: Scalars['String']['input'];
53834
- };
53835
53988
  export declare type MarketplaceConsoleEditionsActivation = {
53836
53989
  __typename?: 'MarketplaceConsoleEditionsActivation';
53837
53990
  lastUpdated: Scalars['String']['output'];
@@ -53868,14 +54021,9 @@ export declare type MarketplaceConsoleFeature = {
53868
54021
  name: Scalars['String']['output'];
53869
54022
  position: Scalars['Int']['output'];
53870
54023
  };
53871
- export declare type MarketplaceConsoleFeatureCreate = {
53872
- description: Scalars['String']['input'];
53873
- name: Scalars['String']['input'];
53874
- position: Scalars['Int']['input'];
53875
- };
53876
- export declare type MarketplaceConsoleFeatureUpdate = {
54024
+ export declare type MarketplaceConsoleFeatureInput = {
53877
54025
  description: Scalars['String']['input'];
53878
- id: Scalars['ID']['input'];
54026
+ id?: InputMaybe<Scalars['ID']['input']>;
53879
54027
  name: Scalars['String']['input'];
53880
54028
  position: Scalars['Int']['input'];
53881
54029
  };
@@ -53962,10 +54110,9 @@ export declare type MarketplaceConsoleMutationApi = {
53962
54110
  __typename?: 'MarketplaceConsoleMutationApi';
53963
54111
  activateEditions?: Maybe<MarketplaceConsoleEditionsActivation>;
53964
54112
  createAppSoftwareToken?: Maybe<MarketplaceConsoleTokenDetails>;
53965
- createEditions?: Maybe<Array<Maybe<MarketplaceConsoleEdition>>>;
53966
54113
  deleteAppSoftwareToken?: Maybe<MarketplaceConsoleMutationVoidResponse>;
53967
54114
  deleteAppVersion?: Maybe<MarketplaceConsoleMutationVoidResponse>;
53968
- updateEdition?: Maybe<Array<Maybe<MarketplaceConsoleEdition>>>;
54115
+ editions?: Maybe<Array<Maybe<MarketplaceConsoleEditionResponse>>>;
53969
54116
  };
53970
54117
  export declare type MarketplaceConsoleMutationApiActivateEditionsArgs = {
53971
54118
  activationRequest: MarketplaceConsoleEditionsActivationRequest;
@@ -53974,10 +54121,6 @@ export declare type MarketplaceConsoleMutationApiActivateEditionsArgs = {
53974
54121
  export declare type MarketplaceConsoleMutationApiCreateAppSoftwareTokenArgs = {
53975
54122
  appSoftwareId: Scalars['String']['input'];
53976
54123
  };
53977
- export declare type MarketplaceConsoleMutationApiCreateEditionsArgs = {
53978
- editions: Array<MarketplaceConsoleEditionCreate>;
53979
- product: MarketplaceConsoleEditionsInput;
53980
- };
53981
54124
  export declare type MarketplaceConsoleMutationApiDeleteAppSoftwareTokenArgs = {
53982
54125
  appSoftwareId: Scalars['String']['input'];
53983
54126
  token: Scalars['String']['input'];
@@ -53985,8 +54128,8 @@ export declare type MarketplaceConsoleMutationApiDeleteAppSoftwareTokenArgs = {
53985
54128
  export declare type MarketplaceConsoleMutationApiDeleteAppVersionArgs = {
53986
54129
  deleteVersion: MarketplaceConsoleAppVersionDeleteRequestInput;
53987
54130
  };
53988
- export declare type MarketplaceConsoleMutationApiUpdateEditionArgs = {
53989
- edition: MarketplaceConsoleEditionUpdate;
54131
+ export declare type MarketplaceConsoleMutationApiEditionsArgs = {
54132
+ editions: Array<MarketplaceConsoleEditionInput>;
53990
54133
  product: MarketplaceConsoleEditionsInput;
53991
54134
  };
53992
54135
  export declare type MarketplaceConsoleMutationVoidResponse = {
@@ -54059,7 +54202,7 @@ export declare type MarketplaceConsolePricingItem = {
54059
54202
  ceiling: Scalars['Float']['output'];
54060
54203
  floor: Scalars['Float']['output'];
54061
54204
  };
54062
- export declare type MarketplaceConsolePricingItemModify = {
54205
+ export declare type MarketplaceConsolePricingItemInput = {
54063
54206
  amount: Scalars['Float']['input'];
54064
54207
  ceiling: Scalars['Float']['input'];
54065
54208
  floor: Scalars['Float']['input'];
@@ -54069,13 +54212,13 @@ export declare type MarketplaceConsolePricingPlan = {
54069
54212
  currency: MarketplaceConsolePricingCurrency;
54070
54213
  expertDiscountOptOut: Scalars['Boolean']['output'];
54071
54214
  status: MarketplaceConsolePricingPlanStatus;
54072
- tieredPricing: MarketplaceConsoleTieredPricing;
54215
+ tieredPricing: Array<MarketplaceConsolePricingItem>;
54073
54216
  };
54074
- export declare type MarketplaceConsolePricingPlanModify = {
54217
+ export declare type MarketplaceConsolePricingPlanInput = {
54075
54218
  currency: MarketplaceConsolePricingCurrency;
54076
54219
  expertDiscountOptOut: Scalars['Boolean']['input'];
54077
54220
  status: MarketplaceConsolePricingPlanStatus;
54078
- tieredPricing: MarketplaceConsoleTieredPricingModify;
54221
+ tieredPricing: Array<MarketplaceConsolePricingItemInput>;
54079
54222
  };
54080
54223
  export declare enum MarketplaceConsolePricingPlanStatus {
54081
54224
  Draft = "DRAFT",
@@ -54222,13 +54365,6 @@ export declare type MarketplaceConsoleTagsContent = {
54222
54365
  id: Scalars['ID']['output'];
54223
54366
  name: Scalars['String']['output'];
54224
54367
  };
54225
- export declare type MarketplaceConsoleTieredPricing = {
54226
- __typename?: 'MarketplaceConsoleTieredPricing';
54227
- items: Array<MarketplaceConsolePricingItem>;
54228
- };
54229
- export declare type MarketplaceConsoleTieredPricingModify = {
54230
- items: Array<MarketplaceConsolePricingItemModify>;
54231
- };
54232
54368
  export declare type MarketplaceConsoleTokenDetails = {
54233
54369
  __typename?: 'MarketplaceConsoleTokenDetails';
54234
54370
  cloudId?: Maybe<Scalars['String']['output']>;
@@ -66819,6 +66955,7 @@ export declare type TrelloBoardUpdated = {
66819
66955
  __typename?: 'TrelloBoardUpdated';
66820
66956
  _deltas?: Maybe<Array<Scalars['String']['output']>>;
66821
66957
  closed?: Maybe<Scalars['Boolean']['output']>;
66958
+ description?: Maybe<TrelloDescription>;
66822
66959
  id?: Maybe<Scalars['ID']['output']>;
66823
66960
  lists?: Maybe<TrelloListUpdatedConnection>;
66824
66961
  name?: Maybe<Scalars['String']['output']>;
@@ -67314,6 +67451,7 @@ export declare type TrelloMember = Node & {
67314
67451
  initials?: Maybe<Scalars['String']['output']>;
67315
67452
  nonPublicData?: Maybe<TrelloMemberNonPublicData>;
67316
67453
  objectId: Scalars['ID']['output'];
67454
+ planner?: Maybe<TrelloPlanner>;
67317
67455
  referrer?: Maybe<TrelloMember>;
67318
67456
  url?: Maybe<Scalars['String']['output']>;
67319
67457
  user?: Maybe<User>;
@@ -67408,6 +67546,59 @@ export declare type TrelloMutationApiUpdateCardNameArgs = {
67408
67546
  export declare type TrelloMutationApiWatchCardArgs = {
67409
67547
  input: TrelloWatchCardInput;
67410
67548
  };
67549
+ export declare type TrelloPlanner = {
67550
+ __typename?: 'TrelloPlanner';
67551
+ accounts?: Maybe<TrelloPlannerAccountConnection>;
67552
+ };
67553
+ export declare type TrelloPlannerAccountsArgs = {
67554
+ after?: InputMaybe<Scalars['String']['input']>;
67555
+ first?: InputMaybe<Scalars['Int']['input']>;
67556
+ };
67557
+ export declare type TrelloPlannerAccount = Node & {
67558
+ __typename?: 'TrelloPlannerAccount';
67559
+ accountType: TrelloSupportedPlannerProviders;
67560
+ enabledCalendars?: Maybe<TrelloPlannerCalendarConnection>;
67561
+ id: Scalars['ID']['output'];
67562
+ };
67563
+ export declare type TrelloPlannerAccountEnabledCalendarsArgs = {
67564
+ after?: InputMaybe<Scalars['String']['input']>;
67565
+ first?: InputMaybe<Scalars['Int']['input']>;
67566
+ };
67567
+ export declare type TrelloPlannerAccountConnection = {
67568
+ __typename?: 'TrelloPlannerAccountConnection';
67569
+ edges?: Maybe<Array<TrelloPlannerAccountEdge>>;
67570
+ nodes?: Maybe<Array<TrelloPlannerAccount>>;
67571
+ pageInfo: PageInfo;
67572
+ };
67573
+ export declare type TrelloPlannerAccountEdge = {
67574
+ __typename?: 'TrelloPlannerAccountEdge';
67575
+ cursor?: Maybe<Scalars['String']['output']>;
67576
+ node?: Maybe<TrelloPlannerAccount>;
67577
+ };
67578
+ export declare type TrelloPlannerCalendar = Node & {
67579
+ __typename?: 'TrelloPlannerCalendar';
67580
+ color: Scalars['String']['output'];
67581
+ enabled: Scalars['Boolean']['output'];
67582
+ id: Scalars['ID']['output'];
67583
+ memberId: Scalars['ID']['output'];
67584
+ objectId?: Maybe<Scalars['ID']['output']>;
67585
+ timezone: Scalars['String']['output'];
67586
+ title: Scalars['String']['output'];
67587
+ type: TrelloSupportedPlannerProviders;
67588
+ workspaceId: Scalars['ID']['output'];
67589
+ };
67590
+ export declare type TrelloPlannerCalendarConnection = {
67591
+ __typename?: 'TrelloPlannerCalendarConnection';
67592
+ edges?: Maybe<Array<TrelloPlannerCalendarEdge>>;
67593
+ nodes?: Maybe<Array<TrelloPlannerCalendar>>;
67594
+ pageInfo: PageInfo;
67595
+ updateCursor?: Maybe<Scalars['String']['output']>;
67596
+ };
67597
+ export declare type TrelloPlannerCalendarEdge = {
67598
+ __typename?: 'TrelloPlannerCalendarEdge';
67599
+ cursor?: Maybe<Scalars['String']['output']>;
67600
+ node?: Maybe<TrelloPlannerCalendar>;
67601
+ };
67411
67602
  export declare type TrelloPopularLabelForColor = {
67412
67603
  __typename?: 'TrelloPopularLabelForColor';
67413
67604
  color?: Maybe<Scalars['String']['output']>;
@@ -67472,6 +67663,8 @@ export declare type TrelloQueryApi = {
67472
67663
  enterprise?: Maybe<TrelloEnterprise>;
67473
67664
  list?: Maybe<TrelloList>;
67474
67665
  member?: Maybe<TrelloMember>;
67666
+ plannerAccountsByMemberId?: Maybe<TrelloPlannerAccountConnection>;
67667
+ plannerCalendarsByAccountId?: Maybe<TrelloPlannerCalendarConnection>;
67475
67668
  recentBoardsByIds?: Maybe<Array<Maybe<TrelloBoard>>>;
67476
67669
  templateCategories?: Maybe<Array<TrelloTemplateGalleryCategory>>;
67477
67670
  templateGallery?: Maybe<TrelloTemplateGalleryConnection>;
@@ -67499,6 +67692,16 @@ export declare type TrelloQueryApiListArgs = {
67499
67692
  export declare type TrelloQueryApiMemberArgs = {
67500
67693
  id: Scalars['ID']['input'];
67501
67694
  };
67695
+ export declare type TrelloQueryApiPlannerAccountsByMemberIdArgs = {
67696
+ after?: InputMaybe<Scalars['String']['input']>;
67697
+ first?: InputMaybe<Scalars['Int']['input']>;
67698
+ id: Scalars['ID']['input'];
67699
+ };
67700
+ export declare type TrelloQueryApiPlannerCalendarsByAccountIdArgs = {
67701
+ after?: InputMaybe<Scalars['String']['input']>;
67702
+ first?: InputMaybe<Scalars['Int']['input']>;
67703
+ id: Scalars['ID']['input'];
67704
+ };
67502
67705
  export declare type TrelloQueryApiRecentBoardsByIdsArgs = {
67503
67706
  ids: Array<Scalars['ID']['input']>;
67504
67707
  };
@@ -67563,6 +67766,9 @@ export declare type TrelloSubscriptionApi = {
67563
67766
  export declare type TrelloSubscriptionApiOnBoardUpdatedArgs = {
67564
67767
  id: Scalars['ID']['input'];
67565
67768
  };
67769
+ export declare enum TrelloSupportedPlannerProviders {
67770
+ Google = "GOOGLE"
67771
+ }
67566
67772
  export declare type TrelloSwitcherViewsInfo = {
67567
67773
  __typename?: 'TrelloSwitcherViewsInfo';
67568
67774
  enabled?: Maybe<Scalars['Boolean']['output']>;
@@ -67749,6 +67955,7 @@ export declare type TrelloWorkspaceMembershipsConnection = {
67749
67955
  export declare type TrelloWorkspacePrefs = {
67750
67956
  __typename?: 'TrelloWorkspacePrefs';
67751
67957
  associatedDomain?: Maybe<Scalars['String']['output']>;
67958
+ atlassianIntelligenceEnabled?: Maybe<Scalars['Boolean']['output']>;
67752
67959
  attachmentRestrictions?: Maybe<Array<Maybe<Scalars['String']['output']>>>;
67753
67960
  boardDeleteRestrict?: Maybe<TrelloBoardRestrictions>;
67754
67961
  boardInviteRestrict?: Maybe<Scalars['String']['output']>;
@@ -68336,6 +68543,18 @@ export declare type UpdateCompassComponentTypeInput = {
68336
68543
  type?: InputMaybe<CompassComponentType>;
68337
68544
  typeId?: InputMaybe<Scalars['ID']['input']>;
68338
68545
  };
68546
+ export declare type UpdateCompassComponentTypeMetadataInput = {
68547
+ description?: InputMaybe<Scalars['String']['input']>;
68548
+ iconKey?: InputMaybe<Scalars['String']['input']>;
68549
+ id: Scalars['ID']['input'];
68550
+ name?: InputMaybe<Scalars['String']['input']>;
68551
+ };
68552
+ export declare type UpdateCompassComponentTypeMetadataPayload = {
68553
+ __typename?: 'UpdateCompassComponentTypeMetadataPayload';
68554
+ errors?: Maybe<Array<MutationError>>;
68555
+ success: Scalars['Boolean']['output'];
68556
+ updatedComponentType?: Maybe<CompassComponentTypeObject>;
68557
+ };
68339
68558
  export declare type UpdateCompassComponentTypePayload = Payload & {
68340
68559
  __typename?: 'UpdateCompassComponentTypePayload';
68341
68560
  componentDetails?: Maybe<CompassComponent>;