@forge/cli-shared 7.0.0-next.1 → 7.0.0-next.2-experimental-f44d099

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,30 @@
1
1
  # @forge/cli-shared
2
2
 
3
+ ## 7.0.0-next.2-experimental-f44d099
4
+
5
+ ### Major Changes
6
+
7
+ - 3b2ffa9: updated the type of appVersion
8
+ - 3b2ffa9: update appVersion type in logs command
9
+
10
+ ### Minor Changes
11
+
12
+ - 30d2f61: Add forge container tunnel MVP
13
+
14
+ ### Patch Changes
15
+
16
+ - a23892e: Update the variable name
17
+ - b011fe9: Add Forge container docker registry authentication
18
+ - 7c02425: Unhide forge build commands
19
+ - Updated dependencies [35165ba]
20
+ - @forge/manifest@9.4.0-next.0-experimental-f44d099
21
+
22
+ ## 7.0.0-next.2
23
+
24
+ ### Minor Changes
25
+
26
+ - 30d2f61: Add forge container tunnel MVP
27
+
3
28
  ## 7.0.0-next.1
4
29
 
5
30
  ### Major Changes
@@ -4096,6 +4096,21 @@ export declare type CcpOrderDefaultsInput = {
4096
4096
  currentEntitlementId?: InputMaybe<Scalars['String']['input']>;
4097
4097
  offeringId?: InputMaybe<Scalars['String']['input']>;
4098
4098
  };
4099
+ export declare type CcpPostalAddress = {
4100
+ __typename?: 'CcpPostalAddress';
4101
+ city?: Maybe<Scalars['String']['output']>;
4102
+ country?: Maybe<Scalars['String']['output']>;
4103
+ line1?: Maybe<Scalars['String']['output']>;
4104
+ line2?: Maybe<Scalars['String']['output']>;
4105
+ phone?: Maybe<Scalars['String']['output']>;
4106
+ postcode?: Maybe<Scalars['String']['output']>;
4107
+ state?: Maybe<Scalars['String']['output']>;
4108
+ };
4109
+ export declare type CcpPriceEligibilityMapEntry = {
4110
+ __typename?: 'CcpPriceEligibilityMapEntry';
4111
+ key?: Maybe<Scalars['String']['output']>;
4112
+ value?: Maybe<Scalars['Boolean']['output']>;
4113
+ };
4099
4114
  export declare type CcpPricingPlan = CommercePricingPlan & Node & {
4100
4115
  __typename?: 'CcpPricingPlan';
4101
4116
  activatedWithReason?: Maybe<CcpActivationReason>;
@@ -4199,6 +4214,7 @@ export declare type CcpQueryApi = {
4199
4214
  pricingPlans?: Maybe<Array<Maybe<CcpPricingPlan>>>;
4200
4215
  product?: Maybe<CcpProduct>;
4201
4216
  quotes?: Maybe<Array<Maybe<CcpQuote>>>;
4217
+ shipToParties?: Maybe<Array<Maybe<CcpShipToParty>>>;
4202
4218
  transactionAccount?: Maybe<CcpTransactionAccount>;
4203
4219
  transactionAccounts?: Maybe<Array<Maybe<CcpTransactionAccount>>>;
4204
4220
  };
@@ -4226,6 +4242,9 @@ export declare type CcpQueryApiProductArgs = {
4226
4242
  export declare type CcpQueryApiQuotesArgs = {
4227
4243
  ids: Array<Scalars['ID']['input']>;
4228
4244
  };
4245
+ export declare type CcpQueryApiShipToPartiesArgs = {
4246
+ ids: Array<Scalars['ID']['input']>;
4247
+ };
4229
4248
  export declare type CcpQueryApiTransactionAccountArgs = {
4230
4249
  id: Scalars['ID']['input'];
4231
4250
  };
@@ -4562,6 +4581,20 @@ export declare type CcpRootExperienceCapabilities = {
4562
4581
  export declare type CcpRootExperienceCapabilitiesCreateEntitlementArgs = {
4563
4582
  input: CcpCreateEntitlementInput;
4564
4583
  };
4584
+ export declare type CcpShipToParty = Node & {
4585
+ __typename?: 'CcpShipToParty';
4586
+ createdAt?: Maybe<Scalars['Float']['output']>;
4587
+ id: Scalars['ID']['output'];
4588
+ isActive?: Maybe<Scalars['Boolean']['output']>;
4589
+ name?: Maybe<Scalars['String']['output']>;
4590
+ postalAddress?: Maybe<CcpPostalAddress>;
4591
+ priceEligibility?: Maybe<Array<Maybe<CcpPriceEligibilityMapEntry>>>;
4592
+ taxId?: Maybe<Scalars['String']['output']>;
4593
+ taxIds?: Maybe<Array<Maybe<CcpTaxId>>>;
4594
+ transactionAccount?: Maybe<CcpTransactionAccountPartition>;
4595
+ updatedAt?: Maybe<Scalars['Float']['output']>;
4596
+ version?: Maybe<Scalars['Int']['output']>;
4597
+ };
4565
4598
  export declare type CcpSubscription = CommerceSubscription & {
4566
4599
  __typename?: 'CcpSubscription';
4567
4600
  accountDetails?: Maybe<CcpAccountDetails>;
@@ -4608,6 +4641,13 @@ export declare enum CcpSupportedBillingSystems {
4608
4641
  Hams = "HAMS",
4609
4642
  Opsgenie = "OPSGENIE"
4610
4643
  }
4644
+ export declare type CcpTaxId = {
4645
+ __typename?: 'CcpTaxId';
4646
+ id?: Maybe<Scalars['String']['output']>;
4647
+ label?: Maybe<Scalars['String']['output']>;
4648
+ taxIdDescription?: Maybe<Scalars['String']['output']>;
4649
+ taxIdLabel?: Maybe<Scalars['String']['output']>;
4650
+ };
4611
4651
  export declare enum CcpTiersMode {
4612
4652
  Graduated = "GRADUATED",
4613
4653
  Volume = "VOLUME"
@@ -4633,6 +4673,11 @@ export declare type CcpTransactionAccountExperienceCapabilities = CommerceTransa
4633
4673
  addPaymentMethodV2?: Maybe<CcpAddPaymentMethodExperienceCapability>;
4634
4674
  multipleProductUpgrades?: Maybe<CcpMultipleProductUpgradesExperienceCapability>;
4635
4675
  };
4676
+ export declare type CcpTransactionAccountPartition = {
4677
+ __typename?: 'CcpTransactionAccountPartition';
4678
+ key?: Maybe<Scalars['ID']['output']>;
4679
+ partitionKey?: Maybe<Scalars['String']['output']>;
4680
+ };
4636
4681
  export declare enum CcpTransactionAccountType {
4637
4682
  Direct = "DIRECT",
4638
4683
  Partner = "PARTNER",
@@ -5478,6 +5523,7 @@ export declare type CompassCatalogMutationApi = {
5478
5523
  createComponentFromTemplate?: Maybe<CreateCompassComponentFromTemplatePayload>;
5479
5524
  createComponentLink?: Maybe<CreateCompassComponentLinkPayload>;
5480
5525
  createComponentScorecardJiraIssue?: Maybe<CompassCreateComponentScorecardJiraIssuePayload>;
5526
+ createComponentScorecardWorkItem?: Maybe<CompassCreateComponentScorecardWorkItemPayload>;
5481
5527
  createComponentSubscription?: Maybe<CompassCreateComponentSubscriptionPayload>;
5482
5528
  createComponentType?: Maybe<CreateCompassComponentTypePayload>;
5483
5529
  createCriterionExemption?: Maybe<CompassCreateCriterionExemptionPayload>;
@@ -5536,6 +5582,7 @@ export declare type CompassCatalogMutationApi = {
5536
5582
  updateComponentDataManagerMetadata?: Maybe<UpdateCompassComponentDataManagerMetadataPayload>;
5537
5583
  updateComponentLink?: Maybe<UpdateCompassComponentLinkPayload>;
5538
5584
  updateComponentScorecardJiraIssue?: Maybe<CompassUpdateComponentScorecardJiraIssuePayload>;
5585
+ updateComponentScorecardWorkItem?: Maybe<CompassUpdateComponentScorecardWorkItemPayload>;
5539
5586
  updateComponentType?: Maybe<UpdateCompassComponentTypePayload>;
5540
5587
  updateComponentTypeMetadata?: Maybe<UpdateCompassComponentTypeMetadataPayload>;
5541
5588
  updateComponents?: Maybe<BulkUpdateCompassComponentsPayload>;
@@ -5609,6 +5656,10 @@ export declare type CompassCatalogMutationApiCreateComponentLinkArgs = {
5609
5656
  export declare type CompassCatalogMutationApiCreateComponentScorecardJiraIssueArgs = {
5610
5657
  input: CompassCreateComponentScorecardJiraIssueInput;
5611
5658
  };
5659
+ export declare type CompassCatalogMutationApiCreateComponentScorecardWorkItemArgs = {
5660
+ cloudId: Scalars['ID']['input'];
5661
+ input: CompassCreateComponentScorecardWorkItemInput;
5662
+ };
5612
5663
  export declare type CompassCatalogMutationApiCreateComponentSubscriptionArgs = {
5613
5664
  input: CompassCreateComponentSubscriptionInput;
5614
5665
  };
@@ -5793,6 +5844,10 @@ export declare type CompassCatalogMutationApiUpdateComponentLinkArgs = {
5793
5844
  export declare type CompassCatalogMutationApiUpdateComponentScorecardJiraIssueArgs = {
5794
5845
  input: CompassUpdateComponentScorecardJiraIssueInput;
5795
5846
  };
5847
+ export declare type CompassCatalogMutationApiUpdateComponentScorecardWorkItemArgs = {
5848
+ cloudId: Scalars['ID']['input'];
5849
+ input: CompassUpdateComponentScorecardWorkItemInput;
5850
+ };
5796
5851
  export declare type CompassCatalogMutationApiUpdateComponentTypeArgs = {
5797
5852
  input: UpdateCompassComponentTypeInput;
5798
5853
  };
@@ -6302,6 +6357,7 @@ export declare type CompassComponentHasScorecardsAppliedConnection = {
6302
6357
  export declare type CompassComponentHasScorecardsAppliedEdge = {
6303
6358
  __typename?: 'CompassComponentHasScorecardsAppliedEdge';
6304
6359
  activeIssues?: Maybe<CompassComponentScorecardJiraIssuesQueryResult>;
6360
+ activeWorkItems?: Maybe<CompassComponentScorecardWorkItemsQueryResult>;
6305
6361
  cursor: Scalars['String']['output'];
6306
6362
  node?: Maybe<CompassScorecard>;
6307
6363
  scorecardScore?: Maybe<CompassScorecardScore>;
@@ -6309,6 +6365,9 @@ export declare type CompassComponentHasScorecardsAppliedEdge = {
6309
6365
  export declare type CompassComponentHasScorecardsAppliedEdgeActiveIssuesArgs = {
6310
6366
  query?: InputMaybe<CompassComponentScorecardJiraIssuesQuery>;
6311
6367
  };
6368
+ export declare type CompassComponentHasScorecardsAppliedEdgeActiveWorkItemsArgs = {
6369
+ query?: InputMaybe<CompassComponentScorecardWorkItemsQuery>;
6370
+ };
6312
6371
  export declare type CompassComponentInstancePermissions = {
6313
6372
  __typename?: 'CompassComponentInstancePermissions';
6314
6373
  applyScorecard?: Maybe<CompassPermissionResult>;
@@ -6396,6 +6455,7 @@ export declare type CompassComponentScorecardJiraIssuesQueryResult = CompassComp
6396
6455
  export declare type CompassComponentScorecardRelationship = {
6397
6456
  __typename?: 'CompassComponentScorecardRelationship';
6398
6457
  activeIssues?: Maybe<CompassComponentScorecardJiraIssuesQueryResult>;
6458
+ activeWorkItems?: Maybe<CompassComponentScorecardWorkItemsQueryResult>;
6399
6459
  appliedSince: Scalars['DateTime']['output'];
6400
6460
  criteriaScoreHistories?: Maybe<CompassScorecardCriteriaScoreHistoryConnection>;
6401
6461
  score?: Maybe<CompassScorecardScoreResult>;
@@ -6405,6 +6465,9 @@ export declare type CompassComponentScorecardRelationship = {
6405
6465
  export declare type CompassComponentScorecardRelationshipActiveIssuesArgs = {
6406
6466
  query?: InputMaybe<CompassComponentScorecardJiraIssuesQuery>;
6407
6467
  };
6468
+ export declare type CompassComponentScorecardRelationshipActiveWorkItemsArgs = {
6469
+ query?: InputMaybe<CompassComponentScorecardWorkItemsQuery>;
6470
+ };
6408
6471
  export declare type CompassComponentScorecardRelationshipCriteriaScoreHistoriesArgs = {
6409
6472
  after?: InputMaybe<Scalars['String']['input']>;
6410
6473
  first?: InputMaybe<Scalars['Int']['input']>;
@@ -6418,12 +6481,30 @@ export declare type CompassComponentScorecardRelationshipScorecardScoreHistories
6418
6481
  export declare type CompassComponentScorecardRelationshipInstancePermissions = {
6419
6482
  __typename?: 'CompassComponentScorecardRelationshipInstancePermissions';
6420
6483
  createJiraIssueForAppliedScorecard?: Maybe<CompassPermissionResult>;
6484
+ createWorkItemForAppliedScorecard?: Maybe<CompassPermissionResult>;
6421
6485
  removeScorecard?: Maybe<CompassPermissionResult>;
6422
6486
  };
6423
6487
  export declare type CompassComponentScorecardRelationshipResult = CompassComponentScorecardRelationship | QueryError;
6424
6488
  export declare type CompassComponentScorecardScoreQuery = {
6425
6489
  scorecardId: Scalars['ID']['input'];
6426
6490
  };
6491
+ export declare type CompassComponentScorecardWorkItemConnection = {
6492
+ __typename?: 'CompassComponentScorecardWorkItemConnection';
6493
+ edges?: Maybe<Array<Maybe<CompassComponentScorecardWorkItemEdge>>>;
6494
+ nodes?: Maybe<Array<Maybe<CompassWorkItem>>>;
6495
+ pageInfo: PageInfo;
6496
+ };
6497
+ export declare type CompassComponentScorecardWorkItemEdge = CompassWorkItemEdge & {
6498
+ __typename?: 'CompassComponentScorecardWorkItemEdge';
6499
+ cursor: Scalars['String']['output'];
6500
+ isActive?: Maybe<Scalars['Boolean']['output']>;
6501
+ node?: Maybe<CompassWorkItem>;
6502
+ };
6503
+ export declare type CompassComponentScorecardWorkItemsQuery = {
6504
+ after?: InputMaybe<Scalars['String']['input']>;
6505
+ first?: InputMaybe<Scalars['Int']['input']>;
6506
+ };
6507
+ export declare type CompassComponentScorecardWorkItemsQueryResult = CompassComponentScorecardWorkItemConnection | QueryError;
6427
6508
  export declare type CompassComponentSpec = {
6428
6509
  __typename?: 'CompassComponentSpec';
6429
6510
  api?: Maybe<CompassComponentApi>;
@@ -6586,6 +6667,17 @@ export declare type CompassCreateComponentScorecardJiraIssuePayload = Payload &
6586
6667
  errors?: Maybe<Array<MutationError>>;
6587
6668
  success: Scalars['Boolean']['output'];
6588
6669
  };
6670
+ export declare type CompassCreateComponentScorecardWorkItemInput = {
6671
+ componentId: Scalars['ID']['input'];
6672
+ scorecardId: Scalars['ID']['input'];
6673
+ url: Scalars['URL']['input'];
6674
+ workItemId: Scalars['ID']['input'];
6675
+ };
6676
+ export declare type CompassCreateComponentScorecardWorkItemPayload = Payload & {
6677
+ __typename?: 'CompassCreateComponentScorecardWorkItemPayload';
6678
+ errors?: Maybe<Array<MutationError>>;
6679
+ success: Scalars['Boolean']['output'];
6680
+ };
6589
6681
  export declare type CompassCreateComponentSubscriptionInput = {
6590
6682
  componentId: Scalars['ID']['input'];
6591
6683
  };
@@ -7395,6 +7487,7 @@ export declare type CompassDeactivateScorecardForComponentPayload = Payload & {
7395
7487
  export declare type CompassDeactivatedScorecard = {
7396
7488
  __typename?: 'CompassDeactivatedScorecard';
7397
7489
  activeIssues?: Maybe<CompassComponentScorecardJiraIssuesQueryResult>;
7490
+ activeWorkItems?: Maybe<CompassComponentScorecardWorkItemsQueryResult>;
7398
7491
  applicationModel: CompassScorecardApplicationModel;
7399
7492
  description?: Maybe<Scalars['String']['output']>;
7400
7493
  id: Scalars['ID']['output'];
@@ -7406,6 +7499,9 @@ export declare type CompassDeactivatedScorecard = {
7406
7499
  export declare type CompassDeactivatedScorecardActiveIssuesArgs = {
7407
7500
  query?: InputMaybe<CompassComponentScorecardJiraIssuesQuery>;
7408
7501
  };
7502
+ export declare type CompassDeactivatedScorecardActiveWorkItemsArgs = {
7503
+ query?: InputMaybe<CompassComponentScorecardWorkItemsQuery>;
7504
+ };
7409
7505
  export declare type CompassDeactivatedScorecardsConnection = {
7410
7506
  __typename?: 'CompassDeactivatedScorecardsConnection';
7411
7507
  edges?: Maybe<Array<CompassComponentDeactivatedScorecardsEdge>>;
@@ -8801,6 +8897,7 @@ export declare type CompassScorecardAppliedToComponentsCriteriaFilter = {
8801
8897
  export declare type CompassScorecardAppliedToComponentsEdge = {
8802
8898
  __typename?: 'CompassScorecardAppliedToComponentsEdge';
8803
8899
  activeIssues?: Maybe<CompassComponentScorecardJiraIssuesQueryResult>;
8900
+ activeWorkItems?: Maybe<CompassComponentScorecardWorkItemsQueryResult>;
8804
8901
  cursor: Scalars['String']['output'];
8805
8902
  node?: Maybe<CompassComponent>;
8806
8903
  viewerPermissions?: Maybe<CompassComponentScorecardRelationshipInstancePermissions>;
@@ -8808,6 +8905,9 @@ export declare type CompassScorecardAppliedToComponentsEdge = {
8808
8905
  export declare type CompassScorecardAppliedToComponentsEdgeActiveIssuesArgs = {
8809
8906
  query?: InputMaybe<CompassComponentScorecardJiraIssuesQuery>;
8810
8907
  };
8908
+ export declare type CompassScorecardAppliedToComponentsEdgeActiveWorkItemsArgs = {
8909
+ query?: InputMaybe<CompassComponentScorecardWorkItemsQuery>;
8910
+ };
8811
8911
  export declare type CompassScorecardAppliedToComponentsFieldFilter = {
8812
8912
  definition: Scalars['ID']['input'];
8813
8913
  in: Array<CompassFieldValueInput>;
@@ -9146,6 +9246,7 @@ export declare type CompassScorecardDeactivatedComponentsConnection = {
9146
9246
  export declare type CompassScorecardDeactivatedComponentsEdge = {
9147
9247
  __typename?: 'CompassScorecardDeactivatedComponentsEdge';
9148
9248
  activeIssues?: Maybe<CompassComponentScorecardJiraIssuesQueryResult>;
9249
+ activeWorkItems?: Maybe<CompassComponentScorecardWorkItemsQueryResult>;
9149
9250
  cursor: Scalars['String']['output'];
9150
9251
  deactivatedBy?: Maybe<User>;
9151
9252
  deactivatedOn?: Maybe<Scalars['DateTime']['output']>;
@@ -9155,6 +9256,9 @@ export declare type CompassScorecardDeactivatedComponentsEdge = {
9155
9256
  export declare type CompassScorecardDeactivatedComponentsEdgeActiveIssuesArgs = {
9156
9257
  query?: InputMaybe<CompassComponentScorecardJiraIssuesQuery>;
9157
9258
  };
9259
+ export declare type CompassScorecardDeactivatedComponentsEdgeActiveWorkItemsArgs = {
9260
+ query?: InputMaybe<CompassComponentScorecardWorkItemsQuery>;
9261
+ };
9158
9262
  export declare type CompassScorecardDeactivatedComponentsQuery = {
9159
9263
  filter?: InputMaybe<CompassScorecardDeactivatedComponentsQueryFilter>;
9160
9264
  sort?: InputMaybe<CompassScorecardDeactivatedComponentsQuerySort>;
@@ -9632,6 +9736,17 @@ export declare type CompassUpdateComponentScorecardJiraIssuePayload = Payload &
9632
9736
  errors?: Maybe<Array<MutationError>>;
9633
9737
  success: Scalars['Boolean']['output'];
9634
9738
  };
9739
+ export declare type CompassUpdateComponentScorecardWorkItemInput = {
9740
+ componentId: Scalars['ID']['input'];
9741
+ isActive: Scalars['Boolean']['input'];
9742
+ scorecardId: Scalars['ID']['input'];
9743
+ workItemId: Scalars['ID']['input'];
9744
+ };
9745
+ export declare type CompassUpdateComponentScorecardWorkItemPayload = Payload & {
9746
+ __typename?: 'CompassUpdateComponentScorecardWorkItemPayload';
9747
+ errors?: Maybe<Array<MutationError>>;
9748
+ success: Scalars['Boolean']['output'];
9749
+ };
9635
9750
  export declare type CompassUpdateCustomBooleanFieldDefinitionInput = {
9636
9751
  componentTypeIds?: InputMaybe<Array<Scalars['ID']['input']>>;
9637
9752
  componentTypes?: InputMaybe<Array<CompassComponentType>>;
@@ -9997,6 +10112,18 @@ export declare type CompassWebhook = {
9997
10112
  id: Scalars['ID']['output'];
9998
10113
  url: Scalars['String']['output'];
9999
10114
  };
10115
+ export declare type CompassWorkItem = {
10116
+ __typename?: 'CompassWorkItem';
10117
+ changeMetadata: CompassChangeMetadata;
10118
+ id: Scalars['ID']['output'];
10119
+ url: Scalars['URL']['output'];
10120
+ workItemId?: Maybe<Scalars['ID']['output']>;
10121
+ };
10122
+ export declare type CompassWorkItemEdge = {
10123
+ cursor: Scalars['String']['output'];
10124
+ isActive?: Maybe<Scalars['Boolean']['output']>;
10125
+ node?: Maybe<CompassWorkItem>;
10126
+ };
10000
10127
  export declare type CompatibleAtlassianCloudProduct = CompatibleAtlassianProduct & {
10001
10128
  __typename?: 'CompatibleAtlassianCloudProduct';
10002
10129
  atlassianProduct?: Maybe<MarketplaceSupportedAtlassianProduct>;
@@ -22019,6 +22146,7 @@ export declare type CustomerServiceTemplateForm = Node & {
22019
22146
  helpCenter?: Maybe<HelpCenterQueryResult>;
22020
22147
  helpCenterId: Scalars['ID']['output'];
22021
22148
  id: Scalars['ID']['output'];
22149
+ isDefault?: Maybe<Scalars['Boolean']['output']>;
22022
22150
  name?: Maybe<Scalars['String']['output']>;
22023
22151
  };
22024
22152
  export declare type CustomerServiceTemplateFormConnection = {
@@ -38854,10 +38982,14 @@ export declare type GraphStoreCreateTeamConnectedToContainerPayload = Payload &
38854
38982
  };
38855
38983
  export declare type GraphStoreCreateTeamConnectedToContainerRelationshipInput = {
38856
38984
  from: Scalars['ID']['input'];
38985
+ relationshipMetadata?: InputMaybe<GraphStoreCreateTeamConnectedToContainerRelationshipMetadataInput>;
38857
38986
  sequenceNumber?: InputMaybe<Scalars['Long']['input']>;
38858
38987
  to: Scalars['ID']['input'];
38859
38988
  updatedAt?: InputMaybe<Scalars['DateTime']['input']>;
38860
38989
  };
38990
+ export declare type GraphStoreCreateTeamConnectedToContainerRelationshipMetadataInput = {
38991
+ createdFromAutocreate?: InputMaybe<Scalars['Boolean']['input']>;
38992
+ };
38861
38993
  export declare type GraphStoreCreateTestPerfhammerRelationshipInput = {
38862
38994
  relationships: Array<GraphStoreCreateTestPerfhammerRelationshipRelationshipInput>;
38863
38995
  };
@@ -52282,6 +52414,7 @@ export declare type GraphStoreTeamConnectedToContainerSortInput = {
52282
52414
  createdAt?: InputMaybe<GraphStoreSortInput>;
52283
52415
  fromAti?: InputMaybe<GraphStoreSortInput>;
52284
52416
  lastModified?: InputMaybe<GraphStoreSortInput>;
52417
+ relationship_createdFromAutocreate?: InputMaybe<GraphStoreSortInput>;
52285
52418
  toAti?: InputMaybe<GraphStoreSortInput>;
52286
52419
  };
52287
52420
  export declare type GraphStoreTeamOwnsComponentSortInput = {
@@ -58242,6 +58375,13 @@ export declare type JiraCmdbStatusType = {
58242
58375
  name?: Maybe<Scalars['String']['output']>;
58243
58376
  objectSchemaId?: Maybe<Scalars['String']['output']>;
58244
58377
  };
58378
+ export declare enum JiraCollapsibleSection {
58379
+ Activity = "ACTIVITY",
58380
+ Attachments = "ATTACHMENTS",
58381
+ ChildWorkItem = "CHILD_WORK_ITEM",
58382
+ Description = "DESCRIPTION",
58383
+ LinkedWorkItem = "LINKED_WORK_ITEM"
58384
+ }
58245
58385
  export declare type JiraColor = {
58246
58386
  __typename?: 'JiraColor';
58247
58387
  colorKey?: Maybe<Scalars['String']['output']>;
@@ -59158,6 +59298,7 @@ export declare type JiraCustomBackgroundEdge = {
59158
59298
  node?: Maybe<JiraCustomBackground>;
59159
59299
  };
59160
59300
  export declare type JiraCustomFieldOptionInput = {
59301
+ color?: InputMaybe<JiraOptionColorInput>;
59161
59302
  externalUuid?: InputMaybe<Scalars['String']['input']>;
59162
59303
  optionId?: InputMaybe<Scalars['Long']['input']>;
59163
59304
  parentExternalUuid?: InputMaybe<Scalars['String']['input']>;
@@ -60350,6 +60491,7 @@ export declare type JiraFieldOperation = {
60350
60491
  };
60351
60492
  export declare type JiraFieldOption = {
60352
60493
  __typename?: 'JiraFieldOption';
60494
+ color?: Maybe<JiraColor>;
60353
60495
  optionId?: Maybe<Scalars['Long']['output']>;
60354
60496
  parentOptionId?: Maybe<Scalars['Long']['output']>;
60355
60497
  value?: Maybe<Scalars['String']['output']>;
@@ -62849,6 +62991,10 @@ export declare type JiraIssueSearchViewInput = {
62849
62991
  namespace?: InputMaybe<Scalars['String']['input']>;
62850
62992
  viewId?: InputMaybe<Scalars['String']['input']>;
62851
62993
  };
62994
+ export declare enum JiraIssueSearchViewLayout {
62995
+ Detail = "DETAIL",
62996
+ List = "LIST"
62997
+ }
62852
62998
  export declare type JiraIssueSearchViewMetadata = {
62853
62999
  fieldSets?: Maybe<JiraIssueSearchFieldSetConnection>;
62854
63000
  filterId?: Maybe<Scalars['String']['output']>;
@@ -63084,6 +63230,15 @@ export declare enum JiraIssueViewAttachmentPanelViewMode {
63084
63230
  ListView = "LIST_VIEW",
63085
63231
  StripView = "STRIP_VIEW"
63086
63232
  }
63233
+ export declare type JiraIssueViewCollapsibleSection = {
63234
+ __typename?: 'JiraIssueViewCollapsibleSection';
63235
+ isCollapsed?: Maybe<Scalars['Boolean']['output']>;
63236
+ section?: Maybe<JiraCollapsibleSection>;
63237
+ };
63238
+ export declare type JiraIssueViewCollapsibleSections = {
63239
+ __typename?: 'JiraIssueViewCollapsibleSections';
63240
+ sections?: Maybe<Array<Maybe<JiraIssueViewCollapsibleSection>>>;
63241
+ };
63087
63242
  export declare type JiraIssueViewPanelAutomationDiscoverabilityDismissedTemplateType = {
63088
63243
  __typename?: 'JiraIssueViewPanelAutomationDiscoverabilityDismissedTemplateType';
63089
63244
  dismissUntilDateTime?: Maybe<Scalars['DateTime']['output']>;
@@ -63196,6 +63351,7 @@ export declare type JiraJourneyConfiguration = Node & {
63196
63351
  triggerConfiguration?: Maybe<JiraJourneyTriggerConfiguration>;
63197
63352
  updatedAt?: Maybe<Scalars['DateTime']['output']>;
63198
63353
  updatedBy?: Maybe<User>;
63354
+ validationErrors?: Maybe<Array<JiraJourneyValidationError>>;
63199
63355
  version?: Maybe<Scalars['Long']['output']>;
63200
63356
  };
63201
63357
  export declare type JiraJourneyConfigurationConnection = {
@@ -63214,6 +63370,7 @@ export declare type JiraJourneyItem = JiraJourneyStatusDependency | JiraJourneyW
63214
63370
  export declare type JiraJourneyItemCommon = {
63215
63371
  id: Scalars['ID']['output'];
63216
63372
  name?: Maybe<Scalars['String']['output']>;
63373
+ validationErrors?: Maybe<Array<JiraJourneyValidationError>>;
63217
63374
  };
63218
63375
  export declare type JiraJourneyItemConfigurationInput = {
63219
63376
  statusDependencyConfiguration?: InputMaybe<JiraJourneyStatusDependencyConfigurationInput>;
@@ -63222,6 +63379,7 @@ export declare type JiraJourneyItemConfigurationInput = {
63222
63379
  export declare type JiraJourneyParentIssue = {
63223
63380
  __typename?: 'JiraJourneyParentIssue';
63224
63381
  project?: Maybe<JiraProject>;
63382
+ validationErrors?: Maybe<Array<JiraJourneyValidationError>>;
63225
63383
  value?: Maybe<JiraJourneyParentIssueValueType>;
63226
63384
  };
63227
63385
  export declare type JiraJourneyParentIssueInput = {
@@ -63263,6 +63421,7 @@ export declare type JiraJourneyStatusDependency = JiraJourneyItemCommon & {
63263
63421
  statusIds?: Maybe<Array<Scalars['String']['output']>>;
63264
63422
  statusType?: Maybe<JiraJourneyStatusDependencyType>;
63265
63423
  statuses?: Maybe<Array<JiraJourneyStatusDependencyStatus>>;
63424
+ validationErrors?: Maybe<Array<JiraJourneyValidationError>>;
63266
63425
  workItemIds?: Maybe<Array<Scalars['ID']['output']>>;
63267
63426
  workItems?: Maybe<Array<JiraJourneyWorkItem>>;
63268
63427
  };
@@ -63300,6 +63459,10 @@ export declare enum JiraJourneyTriggerType {
63300
63459
  ParentIssueCreated = "PARENT_ISSUE_CREATED",
63301
63460
  WorkdayIntegrationTriggered = "WORKDAY_INTEGRATION_TRIGGERED"
63302
63461
  }
63462
+ export declare type JiraJourneyValidationError = {
63463
+ __typename?: 'JiraJourneyValidationError';
63464
+ key?: Maybe<Scalars['String']['output']>;
63465
+ };
63303
63466
  export declare type JiraJourneyWorkItem = JiraJourneyItemCommon & {
63304
63467
  __typename?: 'JiraJourneyWorkItem';
63305
63468
  associatedAutomationRules?: Maybe<Array<JiraJourneyBuilderAssociatedAutomationRule>>;
@@ -63309,6 +63472,7 @@ export declare type JiraJourneyWorkItem = JiraJourneyItemCommon & {
63309
63472
  name?: Maybe<Scalars['String']['output']>;
63310
63473
  project?: Maybe<JiraProject>;
63311
63474
  requestType?: Maybe<JiraServiceManagementRequestType>;
63475
+ validationErrors?: Maybe<Array<JiraJourneyValidationError>>;
63312
63476
  };
63313
63477
  export declare type JiraJourneyWorkItemConfigurationInput = {
63314
63478
  fieldValues?: InputMaybe<Array<InputMaybe<JiraJourneyWorkItemFieldValueKeyValuePairInput>>>;
@@ -70877,6 +71041,15 @@ export declare type JiraSetIssueSearchHideDoneItemsPayload = Payload & {
70877
71041
  errors?: Maybe<Array<MutationError>>;
70878
71042
  success: Scalars['Boolean']['output'];
70879
71043
  };
71044
+ export declare type JiraSetIssueSearchViewLayoutInput = {
71045
+ viewId: Scalars['ID']['input'];
71046
+ viewLayout: JiraIssueSearchViewLayout;
71047
+ };
71048
+ export declare type JiraSetIssueSearchViewLayoutPayload = Payload & {
71049
+ __typename?: 'JiraSetIssueSearchViewLayoutPayload';
71050
+ errors?: Maybe<Array<MutationError>>;
71051
+ success: Scalars['Boolean']['output'];
71052
+ };
70880
71053
  export declare type JiraSetMostRecentlyViewedBoardPayload = Payload & {
70881
71054
  __typename?: 'JiraSetMostRecentlyViewedBoardPayload';
70882
71055
  board?: Maybe<JiraBoard>;
@@ -72817,6 +72990,7 @@ export declare type JiraUserPreferences = {
72817
72990
  issueViewActivityFeedSortOrder?: Maybe<JiraIssueViewActivityFeedSortOrder>;
72818
72991
  issueViewActivityLayout?: Maybe<JiraIssueViewActivityLayout>;
72819
72992
  issueViewAttachmentPanelViewMode?: Maybe<JiraIssueViewAttachmentPanelViewMode>;
72993
+ issueViewCollapsibleSectionsState?: Maybe<JiraIssueViewCollapsibleSections>;
72820
72994
  issueViewDefaultPinnedFieldsBannerProject?: Maybe<Scalars['String']['output']>;
72821
72995
  issueViewDetailsPanelFieldsOrder?: Maybe<Scalars['String']['output']>;
72822
72996
  issueViewPinnedFields?: Maybe<Scalars['String']['output']>;
@@ -72835,6 +73009,9 @@ export declare type JiraUserPreferencesDismissedAutomationDiscoverabilityTemplat
72835
73009
  after?: InputMaybe<Scalars['String']['input']>;
72836
73010
  first?: InputMaybe<Scalars['Int']['input']>;
72837
73011
  };
73012
+ export declare type JiraUserPreferencesIssueViewCollapsibleSectionsStateArgs = {
73013
+ projectKey: Scalars['String']['input'];
73014
+ };
72838
73015
  export declare type JiraUserPreferencesIssueViewDefaultPinnedFieldsBannerProjectArgs = {
72839
73016
  projectKey: Scalars['String']['input'];
72840
73017
  };
@@ -75447,6 +75624,7 @@ export declare type KnowledgeDiscoveryQueryApi = {
75447
75624
  searchUser?: Maybe<KnowledgeDiscoveryUserSearchResult>;
75448
75625
  smartAnswersRoute?: Maybe<KnowledgeDiscoverySmartAnswersRouteResult>;
75449
75626
  topic?: Maybe<KnowledgeDiscoveryTopicResult>;
75627
+ zeroQueries?: Maybe<KnowledgeDiscoveryZeroQueriesResult>;
75450
75628
  };
75451
75629
  export declare type KnowledgeDiscoveryQueryApiAdminhubBookmarkArgs = {
75452
75630
  cloudId: Scalars['ID']['input'];
@@ -75546,6 +75724,9 @@ export declare type KnowledgeDiscoveryQueryApiTopicArgs = {
75546
75724
  id: Scalars['String']['input'];
75547
75725
  workspaceId?: InputMaybe<Scalars['String']['input']>;
75548
75726
  };
75727
+ export declare type KnowledgeDiscoveryQueryApiZeroQueriesArgs = {
75728
+ cloudId: Scalars['String']['input'];
75729
+ };
75549
75730
  export declare type KnowledgeDiscoveryRelatedEntitiesResult = KnowledgeDiscoveryRelatedEntityConnection | QueryError;
75550
75731
  export declare type KnowledgeDiscoveryRelatedEntityAction = {
75551
75732
  action?: InputMaybe<KnowledgeDiscoveryRelatedEntityActionType>;
@@ -75682,6 +75863,11 @@ export declare type KnowledgeDiscoveryUsers = {
75682
75863
  __typename?: 'KnowledgeDiscoveryUsers';
75683
75864
  users?: Maybe<Array<Maybe<KnowledgeDiscoverySearchUser>>>;
75684
75865
  };
75866
+ export declare type KnowledgeDiscoveryZeroQueries = {
75867
+ __typename?: 'KnowledgeDiscoveryZeroQueries';
75868
+ zeroQueries?: Maybe<Array<Maybe<Scalars['String']['output']>>>;
75869
+ };
75870
+ export declare type KnowledgeDiscoveryZeroQueriesResult = KnowledgeDiscoveryZeroQueries | QueryError;
75685
75871
  export declare enum KnowledgeGraphContentType {
75686
75872
  Blogpost = "BLOGPOST",
75687
75873
  Page = "PAGE"
@@ -76653,8 +76839,8 @@ export declare type MarketplaceConsoleAppSoftwareShort = {
76653
76839
  appKey: Scalars['ID']['output'];
76654
76840
  appSoftwareId: Scalars['ID']['output'];
76655
76841
  editionsEnabled?: Maybe<Scalars['Boolean']['output']>;
76842
+ hasActiveCoupledVersion?: Maybe<Scalars['Boolean']['output']>;
76656
76843
  hasConnectVersion?: Maybe<Scalars['Boolean']['output']>;
76657
- hasCoupledVersion?: Maybe<Scalars['Boolean']['output']>;
76658
76844
  hasDecoupledVersion?: Maybe<Scalars['Boolean']['output']>;
76659
76845
  hasPublicVersion?: Maybe<Scalars['Boolean']['output']>;
76660
76846
  hosting: MarketplaceConsoleHosting;
@@ -77390,6 +77576,7 @@ export declare type MarketplaceConsolePartnerContactPermissions = {
77390
77576
  canViewPartnerPaymentDetails: Scalars['Boolean']['output'];
77391
77577
  canViewSalesReport: Scalars['Boolean']['output'];
77392
77578
  canViewUsageReports: Scalars['Boolean']['output'];
77579
+ hasPartnerAdminRole: Scalars['Boolean']['output'];
77393
77580
  isMarketplaceReader: Scalars['Boolean']['output'];
77394
77581
  isPartnerAdmin: Scalars['Boolean']['output'];
77395
77582
  isSiteAdmin: Scalars['Boolean']['output'];
@@ -81786,6 +81973,7 @@ export declare type Mutation = {
81786
81973
  jira_setBoardViewGroupBy?: Maybe<JiraSetBoardViewGroupByPayload>;
81787
81974
  jira_setBoardViewWorkflowSelected?: Maybe<JiraSetBoardViewWorkflowSelectedPayload>;
81788
81975
  jira_setIssueSearchHideDoneItems?: Maybe<JiraSetIssueSearchHideDoneItemsPayload>;
81976
+ jira_setIssueSearchViewLayout?: Maybe<JiraSetIssueSearchViewLayoutPayload>;
81789
81977
  jira_setViewFilter?: Maybe<JiraSetViewFilterPayload>;
81790
81978
  jira_setViewGroupBy?: Maybe<JiraSetViewGroupByPayload>;
81791
81979
  jira_trashGlobalCustomFields?: Maybe<JiraTrashGlobalCustomFieldsPayload>;
@@ -83275,6 +83463,9 @@ export declare type MutationJira_SetBoardViewWorkflowSelectedArgs = {
83275
83463
  export declare type MutationJira_SetIssueSearchHideDoneItemsArgs = {
83276
83464
  input: JiraSetIssueSearchHideDoneItemsInput;
83277
83465
  };
83466
+ export declare type MutationJira_SetIssueSearchViewLayoutArgs = {
83467
+ input: JiraSetIssueSearchViewLayoutInput;
83468
+ };
83278
83469
  export declare type MutationJira_SetViewFilterArgs = {
83279
83470
  input: JiraSetViewFilterInput;
83280
83471
  };
@@ -92746,6 +92937,7 @@ export declare type SearchL2FeatureProvider = {
92746
92937
  l2Features?: Maybe<Array<Maybe<SearchL2Feature>>>;
92747
92938
  };
92748
92939
  export declare type SearchLayerDefinition = {
92940
+ abTestId?: InputMaybe<Scalars['String']['input']>;
92749
92941
  entity?: InputMaybe<Scalars['String']['input']>;
92750
92942
  layerId?: InputMaybe<Scalars['String']['input']>;
92751
92943
  shadowId?: InputMaybe<Scalars['String']['input']>;