@forge/cli-shared 5.4.1-next.0 → 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
  };
@@ -39295,6 +39397,7 @@ export declare type JiraCalendarSprintsInput = {
39295
39397
  };
39296
39398
  export declare type JiraCalendarVersionsInput = {
39297
39399
  additionalProjectAris?: InputMaybe<Array<Scalars['ID']['input']>>;
39400
+ includeSharedReleases?: InputMaybe<Scalars['Boolean']['input']>;
39298
39401
  versionStatuses?: InputMaybe<Array<JiraVersionStatus>>;
39299
39402
  };
39300
39403
  export declare type JiraCalendarViewConfigurationInput = {
@@ -41110,6 +41213,10 @@ export declare type JiraEntityPropertyString = JiraEntityProperty & Node & {
41110
41213
  propertyKey?: Maybe<Scalars['String']['output']>;
41111
41214
  stringValue?: Maybe<Scalars['String']['output']>;
41112
41215
  };
41216
+ export declare enum JiraEntityScope {
41217
+ Global = "GLOBAL",
41218
+ Project = "PROJECT"
41219
+ }
41113
41220
  export declare type JiraEpic = {
41114
41221
  __typename?: 'JiraEpic';
41115
41222
  color?: Maybe<Scalars['String']['output']>;
@@ -41238,6 +41345,32 @@ export declare type JiraFetchBulkOperationDetailsResponseBulkTransitionsArgs = {
41238
41345
  first?: InputMaybe<Scalars['Int']['input']>;
41239
41346
  last?: InputMaybe<Scalars['Int']['input']>;
41240
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
+ };
41241
41374
  export declare type JiraFieldConfig = {
41242
41375
  __typename?: 'JiraFieldConfig';
41243
41376
  isEditable?: Maybe<Scalars['Boolean']['output']>;
@@ -41268,6 +41401,13 @@ export declare type JiraFieldNonEditableReason = {
41268
41401
  __typename?: 'JiraFieldNonEditableReason';
41269
41402
  message?: Maybe<Scalars['String']['output']>;
41270
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
+ };
41271
41411
  export declare type JiraFieldOptionIdsFilterInput = {
41272
41412
  operation: JiraFieldOptionIdsFilterOperation;
41273
41413
  optionIds: Array<Scalars['ID']['input']>;
@@ -43161,11 +43301,13 @@ export declare type JiraIssueTransitionCommentVisibilityInput = {
43161
43301
  roleId?: InputMaybe<Scalars['ID']['input']>;
43162
43302
  };
43163
43303
  export declare type JiraIssueTransitionFieldLevelInput = {
43304
+ JiraAffectedServicesField?: InputMaybe<Array<JiraUpdateAffectedServicesFieldInput>>;
43164
43305
  JiraAttachmentsField?: InputMaybe<Array<JiraUpdateAttachmentFieldInput>>;
43165
43306
  JiraCascadingSelectField?: InputMaybe<Array<JiraUpdateCascadingSelectFieldInput>>;
43166
43307
  JiraCheckboxesField?: InputMaybe<Array<JiraUpdateCheckboxesFieldInput>>;
43167
43308
  JiraColorField?: InputMaybe<Array<JiraUpdateColorFieldInput>>;
43168
43309
  JiraComponentsField?: InputMaybe<Array<JiraUpdateComponentsFieldInput>>;
43310
+ JiraConnectMultipleSelectField?: InputMaybe<Array<JiraUpdateMultipleSelectFieldInput>>;
43169
43311
  JiraConnectNumberField?: InputMaybe<Array<JiraUpdateNumberFieldInput>>;
43170
43312
  JiraConnectRichTextField?: InputMaybe<Array<JiraUpdateRichTextFieldInput>>;
43171
43313
  JiraConnectSingleSelectField?: InputMaybe<Array<JiraUpdateSingleSelectFieldInput>>;
@@ -43508,6 +43650,7 @@ export declare enum JiraJqlClauseType {
43508
43650
  }
43509
43651
  export declare type JiraJqlComponentFieldValue = JiraJqlFieldValue & {
43510
43652
  __typename?: 'JiraJqlComponentFieldValue';
43653
+ component?: Maybe<JiraComponent>;
43511
43654
  displayName: Scalars['String']['output'];
43512
43655
  encodedJqlTerm?: Maybe<Scalars['String']['output']>;
43513
43656
  jqlTerm: Scalars['String']['output'];
@@ -43690,6 +43833,7 @@ export declare type JiraJqlOptionFieldValue = JiraJqlFieldValue & {
43690
43833
  displayName: Scalars['String']['output'];
43691
43834
  encodedJqlTerm?: Maybe<Scalars['String']['output']>;
43692
43835
  jqlTerm: Scalars['String']['output'];
43836
+ option?: Maybe<JiraOption>;
43693
43837
  };
43694
43838
  export declare type JiraJqlOptionFieldValueConnection = {
43695
43839
  __typename?: 'JiraJqlOptionFieldValueConnection';
@@ -43794,6 +43938,7 @@ export declare type JiraJqlStatusFieldValue = JiraJqlFieldValue & {
43794
43938
  displayName: Scalars['String']['output'];
43795
43939
  encodedJqlTerm?: Maybe<Scalars['String']['output']>;
43796
43940
  jqlTerm: Scalars['String']['output'];
43941
+ status?: Maybe<JiraStatus>;
43797
43942
  statusCategory: JiraStatusCategory;
43798
43943
  };
43799
43944
  export declare enum JiraJqlSyntaxError {
@@ -43842,6 +43987,7 @@ export declare type JiraJqlVersionFieldValue = JiraJqlFieldValue & {
43842
43987
  displayName: Scalars['String']['output'];
43843
43988
  encodedJqlTerm?: Maybe<Scalars['String']['output']>;
43844
43989
  jqlTerm: Scalars['String']['output'];
43990
+ version?: Maybe<JiraVersion>;
43845
43991
  };
43846
43992
  export declare type JiraJqlVersionFieldValueConnection = {
43847
43993
  __typename?: 'JiraJqlVersionFieldValueConnection';
@@ -45940,6 +46086,7 @@ export declare type JiraProject = Node & {
45940
46086
  projectType?: Maybe<JiraProjectType>;
45941
46087
  projectTypeName?: Maybe<Scalars['String']['output']>;
45942
46088
  projectUrl?: Maybe<Scalars['String']['output']>;
46089
+ projectWithVisibleIssueTypeIds?: Maybe<JiraProjectWithIssueTypeIds>;
45943
46090
  repositories?: Maybe<GraphStoreSimplifiedProjectAssociatedRepoConnection>;
45944
46091
  repositoryRelationships?: Maybe<JiraProjectAndRepositoryRelationshipConnection>;
45945
46092
  selectedDeploymentAppsProperty?: Maybe<Array<JiraDeploymentApp>>;
@@ -46596,6 +46743,14 @@ export declare type JiraProjectUpdateNameMutationPayload = Payload & {
46596
46743
  project?: Maybe<JiraProject>;
46597
46744
  success: Scalars['Boolean']['output'];
46598
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
+ };
46599
46754
  export declare type JiraPullRequestReviewer = {
46600
46755
  __typename?: 'JiraPullRequestReviewer';
46601
46756
  avatar?: Maybe<JiraAvatar>;
@@ -48271,6 +48426,7 @@ export declare type JiraScreenTabLayoutItem = {
48271
48426
  __typename?: 'JiraScreenTabLayoutItem';
48272
48427
  fields?: Maybe<JiraScreenTabLayoutFieldsConnection>;
48273
48428
  id: Scalars['ID']['output'];
48429
+ tabId?: Maybe<Scalars['String']['output']>;
48274
48430
  title: Scalars['String']['output'];
48275
48431
  };
48276
48432
  export declare type JiraScreenTabLayoutItemFieldsArgs = {
@@ -50318,7 +50474,7 @@ export declare type JiraUnlinkIssuesFromIncidentMutationPayload = Payload & {
50318
50474
  };
50319
50475
  export declare type JiraUnsplashAttributionInput = {
50320
50476
  cloudId: Scalars['ID']['input'];
50321
- imageIds: Array<Scalars['ID']['input']>;
50477
+ filePaths: Array<Scalars['ID']['input']>;
50322
50478
  };
50323
50479
  export declare type JiraUnsplashAttributionPayload = Payload & {
50324
50480
  __typename?: 'JiraUnsplashAttributionPayload';
@@ -52993,7 +53149,6 @@ export declare type KnowledgeDiscoveryKeyPhrase = {
52993
53149
  };
52994
53150
  export declare enum KnowledgeDiscoveryKeyPhraseCategory {
52995
53151
  Acronym = "ACRONYM",
52996
- IndustryJargon = "INDUSTRY_JARGON",
52997
53152
  Other = "OTHER",
52998
53153
  Project = "PROJECT",
52999
53154
  Team = "TEAM"
@@ -53805,32 +53960,31 @@ export declare enum MarketplaceConsoleDevSpaceTier {
53805
53960
  }
53806
53961
  export declare type MarketplaceConsoleEdition = {
53807
53962
  __typename?: 'MarketplaceConsoleEdition';
53808
- features?: Maybe<Array<Maybe<MarketplaceConsoleFeature>>>;
53963
+ features: Array<MarketplaceConsoleFeature>;
53809
53964
  id: Scalars['ID']['output'];
53810
53965
  isDefault: Scalars['Boolean']['output'];
53811
- name?: Maybe<Scalars['String']['output']>;
53812
53966
  pricingPlan: MarketplaceConsolePricingPlan;
53813
53967
  type: MarketplaceConsoleEditionType;
53814
53968
  };
53815
- export declare type MarketplaceConsoleEditionCreate = {
53816
- features?: InputMaybe<Array<InputMaybe<MarketplaceConsoleFeatureCreate>>>;
53969
+ export declare type MarketplaceConsoleEditionInput = {
53970
+ features: Array<MarketplaceConsoleFeatureInput>;
53971
+ id?: InputMaybe<Scalars['ID']['input']>;
53817
53972
  isDefault: Scalars['Boolean']['input'];
53818
- name: Scalars['String']['input'];
53819
- pricingPlan: MarketplaceConsolePricingPlanModify;
53973
+ pricingPlan: MarketplaceConsolePricingPlanInput;
53820
53974
  type: MarketplaceConsoleEditionType;
53821
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;
53822
53984
  export declare enum MarketplaceConsoleEditionType {
53823
53985
  Advanced = "ADVANCED",
53824
53986
  Standard = "STANDARD"
53825
53987
  }
53826
- export declare type MarketplaceConsoleEditionUpdate = {
53827
- features?: InputMaybe<Array<InputMaybe<MarketplaceConsoleFeatureUpdate>>>;
53828
- id: Scalars['ID']['input'];
53829
- isDefault: Scalars['Boolean']['input'];
53830
- name: Scalars['String']['input'];
53831
- pricingPlan: MarketplaceConsolePricingPlanModify;
53832
- type: Scalars['String']['input'];
53833
- };
53834
53988
  export declare type MarketplaceConsoleEditionsActivation = {
53835
53989
  __typename?: 'MarketplaceConsoleEditionsActivation';
53836
53990
  lastUpdated: Scalars['String']['output'];
@@ -53867,14 +54021,9 @@ export declare type MarketplaceConsoleFeature = {
53867
54021
  name: Scalars['String']['output'];
53868
54022
  position: Scalars['Int']['output'];
53869
54023
  };
53870
- export declare type MarketplaceConsoleFeatureCreate = {
53871
- description: Scalars['String']['input'];
53872
- name: Scalars['String']['input'];
53873
- position: Scalars['Int']['input'];
53874
- };
53875
- export declare type MarketplaceConsoleFeatureUpdate = {
54024
+ export declare type MarketplaceConsoleFeatureInput = {
53876
54025
  description: Scalars['String']['input'];
53877
- id: Scalars['ID']['input'];
54026
+ id?: InputMaybe<Scalars['ID']['input']>;
53878
54027
  name: Scalars['String']['input'];
53879
54028
  position: Scalars['Int']['input'];
53880
54029
  };
@@ -53961,10 +54110,9 @@ export declare type MarketplaceConsoleMutationApi = {
53961
54110
  __typename?: 'MarketplaceConsoleMutationApi';
53962
54111
  activateEditions?: Maybe<MarketplaceConsoleEditionsActivation>;
53963
54112
  createAppSoftwareToken?: Maybe<MarketplaceConsoleTokenDetails>;
53964
- createEditions?: Maybe<Array<Maybe<MarketplaceConsoleEdition>>>;
53965
54113
  deleteAppSoftwareToken?: Maybe<MarketplaceConsoleMutationVoidResponse>;
53966
54114
  deleteAppVersion?: Maybe<MarketplaceConsoleMutationVoidResponse>;
53967
- updateEdition?: Maybe<Array<Maybe<MarketplaceConsoleEdition>>>;
54115
+ editions?: Maybe<Array<Maybe<MarketplaceConsoleEditionResponse>>>;
53968
54116
  };
53969
54117
  export declare type MarketplaceConsoleMutationApiActivateEditionsArgs = {
53970
54118
  activationRequest: MarketplaceConsoleEditionsActivationRequest;
@@ -53973,10 +54121,6 @@ export declare type MarketplaceConsoleMutationApiActivateEditionsArgs = {
53973
54121
  export declare type MarketplaceConsoleMutationApiCreateAppSoftwareTokenArgs = {
53974
54122
  appSoftwareId: Scalars['String']['input'];
53975
54123
  };
53976
- export declare type MarketplaceConsoleMutationApiCreateEditionsArgs = {
53977
- editions: Array<MarketplaceConsoleEditionCreate>;
53978
- product: MarketplaceConsoleEditionsInput;
53979
- };
53980
54124
  export declare type MarketplaceConsoleMutationApiDeleteAppSoftwareTokenArgs = {
53981
54125
  appSoftwareId: Scalars['String']['input'];
53982
54126
  token: Scalars['String']['input'];
@@ -53984,8 +54128,8 @@ export declare type MarketplaceConsoleMutationApiDeleteAppSoftwareTokenArgs = {
53984
54128
  export declare type MarketplaceConsoleMutationApiDeleteAppVersionArgs = {
53985
54129
  deleteVersion: MarketplaceConsoleAppVersionDeleteRequestInput;
53986
54130
  };
53987
- export declare type MarketplaceConsoleMutationApiUpdateEditionArgs = {
53988
- edition: MarketplaceConsoleEditionUpdate;
54131
+ export declare type MarketplaceConsoleMutationApiEditionsArgs = {
54132
+ editions: Array<MarketplaceConsoleEditionInput>;
53989
54133
  product: MarketplaceConsoleEditionsInput;
53990
54134
  };
53991
54135
  export declare type MarketplaceConsoleMutationVoidResponse = {
@@ -54058,7 +54202,7 @@ export declare type MarketplaceConsolePricingItem = {
54058
54202
  ceiling: Scalars['Float']['output'];
54059
54203
  floor: Scalars['Float']['output'];
54060
54204
  };
54061
- export declare type MarketplaceConsolePricingItemModify = {
54205
+ export declare type MarketplaceConsolePricingItemInput = {
54062
54206
  amount: Scalars['Float']['input'];
54063
54207
  ceiling: Scalars['Float']['input'];
54064
54208
  floor: Scalars['Float']['input'];
@@ -54068,13 +54212,13 @@ export declare type MarketplaceConsolePricingPlan = {
54068
54212
  currency: MarketplaceConsolePricingCurrency;
54069
54213
  expertDiscountOptOut: Scalars['Boolean']['output'];
54070
54214
  status: MarketplaceConsolePricingPlanStatus;
54071
- tieredPricing: MarketplaceConsoleTieredPricing;
54215
+ tieredPricing: Array<MarketplaceConsolePricingItem>;
54072
54216
  };
54073
- export declare type MarketplaceConsolePricingPlanModify = {
54217
+ export declare type MarketplaceConsolePricingPlanInput = {
54074
54218
  currency: MarketplaceConsolePricingCurrency;
54075
54219
  expertDiscountOptOut: Scalars['Boolean']['input'];
54076
54220
  status: MarketplaceConsolePricingPlanStatus;
54077
- tieredPricing: MarketplaceConsoleTieredPricingModify;
54221
+ tieredPricing: Array<MarketplaceConsolePricingItemInput>;
54078
54222
  };
54079
54223
  export declare enum MarketplaceConsolePricingPlanStatus {
54080
54224
  Draft = "DRAFT",
@@ -54221,13 +54365,6 @@ export declare type MarketplaceConsoleTagsContent = {
54221
54365
  id: Scalars['ID']['output'];
54222
54366
  name: Scalars['String']['output'];
54223
54367
  };
54224
- export declare type MarketplaceConsoleTieredPricing = {
54225
- __typename?: 'MarketplaceConsoleTieredPricing';
54226
- items: Array<MarketplaceConsolePricingItem>;
54227
- };
54228
- export declare type MarketplaceConsoleTieredPricingModify = {
54229
- items: Array<MarketplaceConsolePricingItemModify>;
54230
- };
54231
54368
  export declare type MarketplaceConsoleTokenDetails = {
54232
54369
  __typename?: 'MarketplaceConsoleTokenDetails';
54233
54370
  cloudId?: Maybe<Scalars['String']['output']>;
@@ -62851,6 +62988,7 @@ export declare type SearchQueryApiSearchArgs = {
62851
62988
  after?: InputMaybe<Scalars['String']['input']>;
62852
62989
  analytics?: InputMaybe<SearchAnalyticsInput>;
62853
62990
  before?: InputMaybe<Scalars['String']['input']>;
62991
+ disableWildcardMatching?: InputMaybe<Scalars['Boolean']['input']>;
62854
62992
  enableHighlighting?: InputMaybe<Scalars['Boolean']['input']>;
62855
62993
  enableRelevanceDebugging?: InputMaybe<Scalars['Boolean']['input']>;
62856
62994
  experience: Scalars['String']['input'];
@@ -66817,6 +66955,7 @@ export declare type TrelloBoardUpdated = {
66817
66955
  __typename?: 'TrelloBoardUpdated';
66818
66956
  _deltas?: Maybe<Array<Scalars['String']['output']>>;
66819
66957
  closed?: Maybe<Scalars['Boolean']['output']>;
66958
+ description?: Maybe<TrelloDescription>;
66820
66959
  id?: Maybe<Scalars['ID']['output']>;
66821
66960
  lists?: Maybe<TrelloListUpdatedConnection>;
66822
66961
  name?: Maybe<Scalars['String']['output']>;
@@ -67312,6 +67451,7 @@ export declare type TrelloMember = Node & {
67312
67451
  initials?: Maybe<Scalars['String']['output']>;
67313
67452
  nonPublicData?: Maybe<TrelloMemberNonPublicData>;
67314
67453
  objectId: Scalars['ID']['output'];
67454
+ planner?: Maybe<TrelloPlanner>;
67315
67455
  referrer?: Maybe<TrelloMember>;
67316
67456
  url?: Maybe<Scalars['String']['output']>;
67317
67457
  user?: Maybe<User>;
@@ -67406,6 +67546,59 @@ export declare type TrelloMutationApiUpdateCardNameArgs = {
67406
67546
  export declare type TrelloMutationApiWatchCardArgs = {
67407
67547
  input: TrelloWatchCardInput;
67408
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
+ };
67409
67602
  export declare type TrelloPopularLabelForColor = {
67410
67603
  __typename?: 'TrelloPopularLabelForColor';
67411
67604
  color?: Maybe<Scalars['String']['output']>;
@@ -67470,6 +67663,8 @@ export declare type TrelloQueryApi = {
67470
67663
  enterprise?: Maybe<TrelloEnterprise>;
67471
67664
  list?: Maybe<TrelloList>;
67472
67665
  member?: Maybe<TrelloMember>;
67666
+ plannerAccountsByMemberId?: Maybe<TrelloPlannerAccountConnection>;
67667
+ plannerCalendarsByAccountId?: Maybe<TrelloPlannerCalendarConnection>;
67473
67668
  recentBoardsByIds?: Maybe<Array<Maybe<TrelloBoard>>>;
67474
67669
  templateCategories?: Maybe<Array<TrelloTemplateGalleryCategory>>;
67475
67670
  templateGallery?: Maybe<TrelloTemplateGalleryConnection>;
@@ -67497,6 +67692,16 @@ export declare type TrelloQueryApiListArgs = {
67497
67692
  export declare type TrelloQueryApiMemberArgs = {
67498
67693
  id: Scalars['ID']['input'];
67499
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
+ };
67500
67705
  export declare type TrelloQueryApiRecentBoardsByIdsArgs = {
67501
67706
  ids: Array<Scalars['ID']['input']>;
67502
67707
  };
@@ -67561,6 +67766,9 @@ export declare type TrelloSubscriptionApi = {
67561
67766
  export declare type TrelloSubscriptionApiOnBoardUpdatedArgs = {
67562
67767
  id: Scalars['ID']['input'];
67563
67768
  };
67769
+ export declare enum TrelloSupportedPlannerProviders {
67770
+ Google = "GOOGLE"
67771
+ }
67564
67772
  export declare type TrelloSwitcherViewsInfo = {
67565
67773
  __typename?: 'TrelloSwitcherViewsInfo';
67566
67774
  enabled?: Maybe<Scalars['Boolean']['output']>;
@@ -67747,6 +67955,7 @@ export declare type TrelloWorkspaceMembershipsConnection = {
67747
67955
  export declare type TrelloWorkspacePrefs = {
67748
67956
  __typename?: 'TrelloWorkspacePrefs';
67749
67957
  associatedDomain?: Maybe<Scalars['String']['output']>;
67958
+ atlassianIntelligenceEnabled?: Maybe<Scalars['Boolean']['output']>;
67750
67959
  attachmentRestrictions?: Maybe<Array<Maybe<Scalars['String']['output']>>>;
67751
67960
  boardDeleteRestrict?: Maybe<TrelloBoardRestrictions>;
67752
67961
  boardInviteRestrict?: Maybe<Scalars['String']['output']>;
@@ -68334,6 +68543,18 @@ export declare type UpdateCompassComponentTypeInput = {
68334
68543
  type?: InputMaybe<CompassComponentType>;
68335
68544
  typeId?: InputMaybe<Scalars['ID']['input']>;
68336
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
+ };
68337
68558
  export declare type UpdateCompassComponentTypePayload = Payload & {
68338
68559
  __typename?: 'UpdateCompassComponentTypePayload';
68339
68560
  componentDetails?: Maybe<CompassComponent>;