@forge/cli-shared 3.25.0 → 3.25.1-next.1

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,17 @@
1
1
  # @forge/cli-shared
2
2
 
3
+ ## 3.25.1-next.1
4
+
5
+ ### Patch Changes
6
+
7
+ - 23a32d6: Fix Docker error reporting when ngrok not configured
8
+
9
+ ## 3.25.1-next.0
10
+
11
+ ### Patch Changes
12
+
13
+ - 629f31a: Increase maximum app name length
14
+
3
15
  ## 3.25.0
4
16
 
5
17
  ### Minor Changes
@@ -196,14 +196,9 @@ export declare type ActionsExecuteActionInput = {
196
196
  };
197
197
  export declare type ActionsExecuteResponse = {
198
198
  __typename?: 'ActionsExecuteResponse';
199
- outputs?: Maybe<Array<Maybe<ActionsExecuteResponseOutputTuple>>>;
199
+ outputs?: Maybe<Scalars['JSON']['output']>;
200
200
  status?: Maybe<Scalars['Int']['output']>;
201
201
  };
202
- export declare type ActionsExecuteResponseOutputTuple = {
203
- __typename?: 'ActionsExecuteResponseOutputTuple';
204
- key?: Maybe<Scalars['String']['output']>;
205
- value?: Maybe<Scalars['JSON']['output']>;
206
- };
207
202
  export declare type ActionsMutation = {
208
203
  __typename?: 'ActionsMutation';
209
204
  execute?: Maybe<ActionsExecuteResponse>;
@@ -2750,6 +2745,7 @@ export declare type CcpQueryApi = {
2750
2745
  entitlement?: Maybe<CcpEntitlement>;
2751
2746
  offering?: Maybe<CcpOffering>;
2752
2747
  pricingPlan?: Maybe<CcpPricingPlan>;
2748
+ transactionAccount?: Maybe<CcpTransactionAccount>;
2753
2749
  };
2754
2750
  export declare type CcpQueryApiEntitlementArgs = {
2755
2751
  id: Scalars['ID']['input'];
@@ -2760,6 +2756,9 @@ export declare type CcpQueryApiOfferingArgs = {
2760
2756
  export declare type CcpQueryApiPricingPlanArgs = {
2761
2757
  id: Scalars['ID']['input'];
2762
2758
  };
2759
+ export declare type CcpQueryApiTransactionAccountArgs = {
2760
+ id: Scalars['ID']['input'];
2761
+ };
2763
2762
  export declare enum CcpRelationshipPricingType {
2764
2763
  AdvantagePricing = "ADVANTAGE_PRICING",
2765
2764
  CurrencyGenerated = "CURRENCY_GENERATED",
@@ -11130,6 +11129,7 @@ export declare type ForgeMetricsApiRequestQueryInput = {
11130
11129
  groupBy?: InputMaybe<Array<ForgeMetricsApiRequestGroupByDimensions>>;
11131
11130
  };
11132
11131
  export declare enum ForgeMetricsApiRequestStatus {
11132
+ '2Xx' = "_2XX",
11133
11133
  '4Xx' = "_4XX",
11134
11134
  '5Xx' = "_5XX"
11135
11135
  }
@@ -11137,6 +11137,50 @@ export declare enum ForgeMetricsApiRequestType {
11137
11137
  External = "EXTERNAL",
11138
11138
  Product = "PRODUCT"
11139
11139
  }
11140
+ export declare type ForgeMetricsChartInsightChoiceData = {
11141
+ __typename?: 'ForgeMetricsChartInsightChoiceData';
11142
+ finishReason: Scalars['String']['output'];
11143
+ index: Scalars['Int']['output'];
11144
+ message: ForgeMetricsChartInsightChoiceMessageData;
11145
+ };
11146
+ export declare type ForgeMetricsChartInsightChoiceMessageData = {
11147
+ __typename?: 'ForgeMetricsChartInsightChoiceMessageData';
11148
+ content: Scalars['String']['output'];
11149
+ role: Scalars['String']['output'];
11150
+ };
11151
+ export declare type ForgeMetricsChartInsightData = {
11152
+ __typename?: 'ForgeMetricsChartInsightData';
11153
+ choices?: Maybe<Array<ForgeMetricsChartInsightChoiceData>>;
11154
+ created: Scalars['Int']['output'];
11155
+ id: Scalars['ID']['output'];
11156
+ model: Scalars['String']['output'];
11157
+ object: Scalars['String']['output'];
11158
+ usage: ForgeMetricsChartInsightUsage;
11159
+ };
11160
+ export declare type ForgeMetricsChartInsightQueryInput = {
11161
+ apiRequestChartFilters?: InputMaybe<ForgeMetricsApiRequestQueryFilters>;
11162
+ apiRequestGroupBy?: InputMaybe<Array<ForgeMetricsApiRequestGroupByDimensions>>;
11163
+ chartName?: InputMaybe<ForgeMetricsChartName>;
11164
+ invocationChartFilters?: InputMaybe<ForgeMetricsQueryFilters>;
11165
+ invocationGroupBy?: InputMaybe<Array<ForgeMetricsGroupByDimensions>>;
11166
+ };
11167
+ export declare type ForgeMetricsChartInsightResult = ForgeMetricsChartInsightData | QueryError;
11168
+ export declare type ForgeMetricsChartInsightUsage = {
11169
+ __typename?: 'ForgeMetricsChartInsightUsage';
11170
+ completionTokens: Scalars['Int']['output'];
11171
+ promptTokens: Scalars['Int']['output'];
11172
+ totalTokens: Scalars['Int']['output'];
11173
+ };
11174
+ export declare enum ForgeMetricsChartName {
11175
+ ApiRequestCount_2Xx = "API_REQUEST_COUNT_2XX",
11176
+ ApiRequestCount_4Xx = "API_REQUEST_COUNT_4XX",
11177
+ ApiRequestCount_5Xx = "API_REQUEST_COUNT_5XX",
11178
+ ApiRequestLatency = "API_REQUEST_LATENCY",
11179
+ InvocationCount = "INVOCATION_COUNT",
11180
+ InvocationError = "INVOCATION_ERROR",
11181
+ InvocationLatency = "INVOCATION_LATENCY",
11182
+ InvocationSuccessRate = "INVOCATION_SUCCESS_RATE"
11183
+ }
11140
11184
  export declare type ForgeMetricsData = {
11141
11185
  name: Scalars['String']['output'];
11142
11186
  series?: Maybe<Array<ForgeMetricsSeries>>;
@@ -11289,6 +11333,7 @@ export declare type ForgeMetricsQuery = {
11289
11333
  apiRequestLatencyValue: ForgeMetricsApiRequestLatencyValueResult;
11290
11334
  appId: Scalars['ID']['output'];
11291
11335
  appMetrics: ForgeMetricsOtlpResult;
11336
+ chartInsight: ForgeMetricsChartInsightResult;
11292
11337
  errors: ForgeMetricsErrorsResult;
11293
11338
  errorsValue: ForgeMetricsErrorsValueResult;
11294
11339
  invocations: ForgeMetricsInvocationsResult;
@@ -11318,6 +11363,9 @@ export declare type ForgeMetricsQueryApiRequestLatencyValueArgs = {
11318
11363
  export declare type ForgeMetricsQueryAppMetricsArgs = {
11319
11364
  query: ForgeMetricsOtlpQueryInput;
11320
11365
  };
11366
+ export declare type ForgeMetricsQueryChartInsightArgs = {
11367
+ query: ForgeMetricsChartInsightQueryInput;
11368
+ };
11321
11369
  export declare type ForgeMetricsQueryErrorsArgs = {
11322
11370
  query: ForgeMetricsQueryInput;
11323
11371
  };
@@ -14904,7 +14952,9 @@ export declare type GraphStore = {
14904
14952
  componentLinkedJswIssueInverseRelationship?: Maybe<GraphStoreFullComponentLinkedJswIssueConnection>;
14905
14953
  componentLinkedJswIssueRelationship?: Maybe<GraphStoreFullComponentLinkedJswIssueConnection>;
14906
14954
  contentReferencedEntity?: Maybe<GraphStoreSimplifiedContentReferencedEntityConnection>;
14955
+ contentReferencedEntityBatch?: Maybe<GraphStoreBatchContentReferencedEntityConnection>;
14907
14956
  contentReferencedEntityInverse?: Maybe<GraphStoreSimplifiedContentReferencedEntityInverseConnection>;
14957
+ contentReferencedEntityInverseBatch?: Maybe<GraphStoreBatchContentReferencedEntityConnection>;
14908
14958
  contentReferencedEntityInverseRelationship?: Maybe<GraphStoreFullContentReferencedEntityConnection>;
14909
14959
  contentReferencedEntityRelationship?: Maybe<GraphStoreFullContentReferencedEntityConnection>;
14910
14960
  fetchAllRelationships: GraphStoreAllRelationshipsConnection;
@@ -15335,11 +15385,21 @@ export declare type GraphStoreContentReferencedEntityArgs = {
15335
15385
  first?: InputMaybe<Scalars['Int']['input']>;
15336
15386
  id: Scalars['ID']['input'];
15337
15387
  };
15388
+ export declare type GraphStoreContentReferencedEntityBatchArgs = {
15389
+ after?: InputMaybe<Scalars['String']['input']>;
15390
+ first?: InputMaybe<Scalars['Int']['input']>;
15391
+ ids: Array<Scalars['ID']['input']>;
15392
+ };
15338
15393
  export declare type GraphStoreContentReferencedEntityInverseArgs = {
15339
15394
  after?: InputMaybe<Scalars['String']['input']>;
15340
15395
  first?: InputMaybe<Scalars['Int']['input']>;
15341
15396
  id: Scalars['ID']['input'];
15342
15397
  };
15398
+ export declare type GraphStoreContentReferencedEntityInverseBatchArgs = {
15399
+ after?: InputMaybe<Scalars['String']['input']>;
15400
+ first?: InputMaybe<Scalars['Int']['input']>;
15401
+ ids: Array<Scalars['ID']['input']>;
15402
+ };
15343
15403
  export declare type GraphStoreContentReferencedEntityInverseRelationshipArgs = {
15344
15404
  after?: InputMaybe<Scalars['String']['input']>;
15345
15405
  first?: InputMaybe<Scalars['Int']['input']>;
@@ -17031,6 +17091,47 @@ export declare type GraphStoreAtiFilterInput = {
17031
17091
  is?: InputMaybe<Array<Scalars['String']['input']>>;
17032
17092
  isNot?: InputMaybe<Array<Scalars['String']['input']>>;
17033
17093
  };
17094
+ export declare type GraphStoreBatchContentReferencedEntityConnection = HasPageInfo & {
17095
+ __typename?: 'GraphStoreBatchContentReferencedEntityConnection';
17096
+ edges: Array<Maybe<GraphStoreBatchContentReferencedEntityEdge>>;
17097
+ nodes: Array<Maybe<GraphStoreBatchContentReferencedEntityNode>>;
17098
+ pageInfo: PageInfo;
17099
+ };
17100
+ export declare type GraphStoreBatchContentReferencedEntityEdge = {
17101
+ __typename?: 'GraphStoreBatchContentReferencedEntityEdge';
17102
+ node: GraphStoreBatchContentReferencedEntityInnerConnection;
17103
+ };
17104
+ export declare type GraphStoreBatchContentReferencedEntityEndNode = Node & {
17105
+ __typename?: 'GraphStoreBatchContentReferencedEntityEndNode';
17106
+ data?: Maybe<GraphStoreBatchContentReferencedEntityEndUnion>;
17107
+ id: Scalars['ID']['output'];
17108
+ };
17109
+ export declare type GraphStoreBatchContentReferencedEntityEndUnion = ConfluencePage | JiraIssue;
17110
+ export declare type GraphStoreBatchContentReferencedEntityInnerConnection = {
17111
+ __typename?: 'GraphStoreBatchContentReferencedEntityInnerConnection';
17112
+ edges: Array<Maybe<GraphStoreBatchContentReferencedEntityInnerEdge>>;
17113
+ nodes: Array<Maybe<GraphStoreBatchContentReferencedEntityNode>>;
17114
+ requestedId: Scalars['ID']['output'];
17115
+ };
17116
+ export declare type GraphStoreBatchContentReferencedEntityInnerEdge = {
17117
+ __typename?: 'GraphStoreBatchContentReferencedEntityInnerEdge';
17118
+ cursor?: Maybe<Scalars['String']['output']>;
17119
+ node: GraphStoreBatchContentReferencedEntityNode;
17120
+ };
17121
+ export declare type GraphStoreBatchContentReferencedEntityNode = Node & {
17122
+ __typename?: 'GraphStoreBatchContentReferencedEntityNode';
17123
+ createdAt: Scalars['DateTime']['output'];
17124
+ from: GraphStoreBatchContentReferencedEntityStartNode;
17125
+ id: Scalars['ID']['output'];
17126
+ lastUpdated: Scalars['DateTime']['output'];
17127
+ to: GraphStoreBatchContentReferencedEntityEndNode;
17128
+ };
17129
+ export declare type GraphStoreBatchContentReferencedEntityStartNode = Node & {
17130
+ __typename?: 'GraphStoreBatchContentReferencedEntityStartNode';
17131
+ data?: Maybe<GraphStoreBatchContentReferencedEntityStartUnion>;
17132
+ id: Scalars['ID']['output'];
17133
+ };
17134
+ export declare type GraphStoreBatchContentReferencedEntityStartUnion = ConfluencePage | JiraIssue;
17034
17135
  export declare type GraphStoreBatchIncidentAssociatedPostIncidentReviewConnection = HasPageInfo & {
17035
17136
  __typename?: 'GraphStoreBatchIncidentAssociatedPostIncidentReviewConnection';
17036
17137
  edges: Array<Maybe<GraphStoreBatchIncidentAssociatedPostIncidentReviewEdge>>;
@@ -18500,10 +18601,40 @@ export declare type GraphStoreFullIssueAssociatedIssueRemoteLinkEndNode = {
18500
18601
  metadata?: Maybe<GraphStoreFullIssueAssociatedIssueRemoteLinkRelationshipObjectMetadataOutput>;
18501
18602
  };
18502
18603
  export declare enum GraphStoreFullIssueAssociatedIssueRemoteLinkLinkApplicationTypeOutput {
18604
+ Bamboo = "BAMBOO",
18605
+ BbPrComment = "BB_PR_COMMENT",
18503
18606
  ConfluencePage = "CONFLUENCE_PAGE",
18607
+ Jira = "JIRA",
18504
18608
  NotSet = "NOT_SET",
18609
+ Snyk = "SNYK",
18610
+ Trello = "TRELLO",
18505
18611
  WebLink = "WEB_LINK"
18506
18612
  }
18613
+ export declare enum GraphStoreFullIssueAssociatedIssueRemoteLinkLinkRelationshipOutput {
18614
+ AddedToIdea = "ADDED_TO_IDEA",
18615
+ Blocks = "BLOCKS",
18616
+ Causes = "CAUSES",
18617
+ Clones = "CLONES",
18618
+ CreatedFrom = "CREATED_FROM",
18619
+ Duplicates = "DUPLICATES",
18620
+ Implements = "IMPLEMENTS",
18621
+ IsBlockedBy = "IS_BLOCKED_BY",
18622
+ IsCausedBy = "IS_CAUSED_BY",
18623
+ IsClonedBy = "IS_CLONED_BY",
18624
+ IsDuplicatedBy = "IS_DUPLICATED_BY",
18625
+ IsIdeaFor = "IS_IDEA_FOR",
18626
+ IsImplementedBy = "IS_IMPLEMENTED_BY",
18627
+ IsReviewedBy = "IS_REVIEWED_BY",
18628
+ MentionedIn = "MENTIONED_IN",
18629
+ MergedFrom = "MERGED_FROM",
18630
+ MergedInto = "MERGED_INTO",
18631
+ NotSet = "NOT_SET",
18632
+ RelatesTo = "RELATES_TO",
18633
+ Reviews = "REVIEWS",
18634
+ SplitFrom = "SPLIT_FROM",
18635
+ SplitTo = "SPLIT_TO",
18636
+ WikiPage = "WIKI_PAGE"
18637
+ }
18507
18638
  export declare type GraphStoreFullIssueAssociatedIssueRemoteLinkNode = Node & {
18508
18639
  __typename?: 'GraphStoreFullIssueAssociatedIssueRemoteLinkNode';
18509
18640
  createdAt: Scalars['DateTime']['output'];
@@ -18515,6 +18646,7 @@ export declare type GraphStoreFullIssueAssociatedIssueRemoteLinkNode = Node & {
18515
18646
  export declare type GraphStoreFullIssueAssociatedIssueRemoteLinkRelationshipObjectMetadataOutput = {
18516
18647
  __typename?: 'GraphStoreFullIssueAssociatedIssueRemoteLinkRelationshipObjectMetadataOutput';
18517
18648
  applicationType?: Maybe<GraphStoreFullIssueAssociatedIssueRemoteLinkLinkApplicationTypeOutput>;
18649
+ relationship?: Maybe<GraphStoreFullIssueAssociatedIssueRemoteLinkLinkRelationshipOutput>;
18518
18650
  };
18519
18651
  export declare type GraphStoreFullIssueAssociatedIssueRemoteLinkStartNode = {
18520
18652
  __typename?: 'GraphStoreFullIssueAssociatedIssueRemoteLinkStartNode';
@@ -24624,6 +24756,14 @@ export declare type HelpCenterCreateTopicPayload = Payload & {
24624
24756
  success: Scalars['Boolean']['output'];
24625
24757
  successfullyCreatedTopicIds: Array<Maybe<HelpCenterSuccessfullyCreatedTopicIds>>;
24626
24758
  };
24759
+ export declare type HelpCenterDeleteInput = {
24760
+ helpCenterAri: Scalars['String']['input'];
24761
+ };
24762
+ export declare type HelpCenterDeletePayload = Payload & {
24763
+ __typename?: 'HelpCenterDeletePayload';
24764
+ errors?: Maybe<Array<MutationError>>;
24765
+ success: Scalars['Boolean']['output'];
24766
+ };
24627
24767
  export declare type HelpCenterDeleteUpdateTopicPayload = Payload & {
24628
24768
  __typename?: 'HelpCenterDeleteUpdateTopicPayload';
24629
24769
  errors?: Maybe<Array<MutationError>>;
@@ -24745,6 +24885,7 @@ export declare type HelpCenterMutationApi = {
24745
24885
  createHelpCenter?: Maybe<HelpCenterCreatePayload>;
24746
24886
  createHelpDesk?: Maybe<HelpCenterHelpDeskPayload>;
24747
24887
  createTopic?: Maybe<HelpCenterCreateTopicPayload>;
24888
+ deleteHelpCenter?: Maybe<HelpCenterDeletePayload>;
24748
24889
  deleteHelpDesk?: Maybe<HelpCenterHelpDeskPayload>;
24749
24890
  deleteTopic?: Maybe<HelpCenterDeleteUpdateTopicPayload>;
24750
24891
  updateHelpCenter?: Maybe<HelpCenterUpdatePayload>;
@@ -24764,6 +24905,9 @@ export declare type HelpCenterMutationApiCreateHelpDeskArgs = {
24764
24905
  export declare type HelpCenterMutationApiCreateTopicArgs = {
24765
24906
  input: HelpCenterBulkCreateTopicsInput;
24766
24907
  };
24908
+ export declare type HelpCenterMutationApiDeleteHelpCenterArgs = {
24909
+ input: HelpCenterDeleteInput;
24910
+ };
24767
24911
  export declare type HelpCenterMutationApiDeleteHelpDeskArgs = {
24768
24912
  input: HelpCenterHelpDeskDeleteInput;
24769
24913
  };
@@ -24953,7 +25097,7 @@ export declare type HelpCenterTranslation = {
24953
25097
  };
24954
25098
  export declare type HelpCenterTranslationInput = {
24955
25099
  locale: Scalars['String']['input'];
24956
- localeDisplayName: Scalars['String']['input'];
25100
+ localeDisplayName?: InputMaybe<Scalars['String']['input']>;
24957
25101
  value: Scalars['String']['input'];
24958
25102
  };
24959
25103
  export declare enum HelpCenterType {
@@ -24970,9 +25114,7 @@ export declare type HelpCenterUpdateInput = {
24970
25114
  };
24971
25115
  export declare type HelpCenterUpdatePayload = Payload & {
24972
25116
  __typename?: 'HelpCenterUpdatePayload';
24973
- banner?: Maybe<HelpCenterBanner>;
24974
25117
  errors?: Maybe<Array<MutationError>>;
24975
- logo?: Maybe<HelpCenterLogo>;
24976
25118
  success: Scalars['Boolean']['output'];
24977
25119
  };
24978
25120
  export declare type HelpCenterUpdateTopicInput = {
@@ -26803,6 +26945,9 @@ export declare type JiraAddRelatedWorkToVersionPayload = Payload & {
26803
26945
  relatedWorkV2Edge?: Maybe<JiraVersionRelatedWorkV2Edge>;
26804
26946
  success: Scalars['Boolean']['output'];
26805
26947
  };
26948
+ export declare enum JiraAddValueFieldOperations {
26949
+ Add = "ADD"
26950
+ }
26806
26951
  export declare type JiraAdfToConvertedPlainText = {
26807
26952
  __typename?: 'JiraAdfToConvertedPlainText';
26808
26953
  isTruncated?: Maybe<Scalars['Boolean']['output']>;
@@ -27106,6 +27251,7 @@ export declare type JiraAttachment = {
27106
27251
  fileName?: Maybe<Scalars['String']['output']>;
27107
27252
  fileSize?: Maybe<Scalars['Long']['output']>;
27108
27253
  hasRestrictedParent?: Maybe<Scalars['Boolean']['output']>;
27254
+ issue?: Maybe<JiraIssue>;
27109
27255
  mediaApiFileId?: Maybe<Scalars['String']['output']>;
27110
27256
  mediaReadToken?: Maybe<Scalars['String']['output']>;
27111
27257
  mimeType?: Maybe<Scalars['String']['output']>;
@@ -27132,6 +27278,16 @@ export declare type JiraAttachmentEdge = {
27132
27278
  cursor: Scalars['String']['output'];
27133
27279
  node?: Maybe<JiraAttachment>;
27134
27280
  };
27281
+ export declare type JiraAttachmentFieldOperationInput = {
27282
+ operation: JiraAddValueFieldOperations;
27283
+ temporaryAttachmentIds: Array<Scalars['String']['input']>;
27284
+ };
27285
+ export declare type JiraAttachmentFieldPayload = Payload & {
27286
+ __typename?: 'JiraAttachmentFieldPayload';
27287
+ errors?: Maybe<Array<MutationError>>;
27288
+ field?: Maybe<JiraAttachmentsField>;
27289
+ success: Scalars['Boolean']['output'];
27290
+ };
27135
27291
  export declare type JiraAttachmentFilterInput = {
27136
27292
  authorIds?: InputMaybe<Array<Scalars['String']['input']>>;
27137
27293
  dateRange?: InputMaybe<JiraDateRange>;
@@ -30393,6 +30549,7 @@ export declare type JiraIssueSearchViewPayload = Payload & {
30393
30549
  view?: Maybe<JiraIssueSearchView>;
30394
30550
  };
30395
30551
  export declare type JiraIssueTransitionFieldLevelInput = {
30552
+ JiraAttachmentsField?: InputMaybe<Array<JiraUpdateAttachmentFieldInput>>;
30396
30553
  JiraCascadingSelectField?: InputMaybe<Array<JiraUpdateCascadingSelectFieldInput>>;
30397
30554
  JiraCheckboxesField?: InputMaybe<Array<JiraUpdateCheckboxesFieldInput>>;
30398
30555
  JiraComponentsField?: InputMaybe<Array<JiraUpdateComponentsFieldInput>>;
@@ -31410,6 +31567,16 @@ export declare type JiraMultipleSelectUserPickerFieldInput = {
31410
31567
  fieldId: Scalars['ID']['input'];
31411
31568
  users: Array<JiraUserInput>;
31412
31569
  };
31570
+ export declare type JiraMultipleSelectUserPickerFieldOperationInput = {
31571
+ ids: Array<Scalars['ID']['input']>;
31572
+ operation: JiraMultiValueFieldOperations;
31573
+ };
31574
+ export declare type JiraMultipleSelectUserPickerFieldPayload = Payload & {
31575
+ __typename?: 'JiraMultipleSelectUserPickerFieldPayload';
31576
+ errors?: Maybe<Array<MutationError>>;
31577
+ field?: Maybe<JiraMultipleSelectUserPickerField>;
31578
+ success: Scalars['Boolean']['output'];
31579
+ };
31413
31580
  export declare type JiraMultipleVersionPickerField = JiraIssueField & JiraIssueFieldConfiguration & JiraUserIssueFieldConfiguration & Node & {
31414
31581
  __typename?: 'JiraMultipleVersionPickerField';
31415
31582
  aliasFieldId?: Maybe<Scalars['ID']['output']>;
@@ -31434,6 +31601,7 @@ export declare type JiraMultipleVersionPickerFieldSelectedVersionsConnectionArgs
31434
31601
  export declare type JiraMultipleVersionPickerFieldVersionsArgs = {
31435
31602
  after?: InputMaybe<Scalars['String']['input']>;
31436
31603
  before?: InputMaybe<Scalars['String']['input']>;
31604
+ filterById?: InputMaybe<JiraFieldOptionIdsFilterInput>;
31437
31605
  first?: InputMaybe<Scalars['Int']['input']>;
31438
31606
  last?: InputMaybe<Scalars['Int']['input']>;
31439
31607
  searchBy?: InputMaybe<Scalars['String']['input']>;
@@ -31519,6 +31687,7 @@ export declare type JiraMutation = {
31519
31687
  setUserBroadcastMessageDismissed?: Maybe<JiraUserBroadcastMessageActionPayload>;
31520
31688
  submitBulkOperation?: Maybe<JiraSubmitBulkOperationPayload>;
31521
31689
  unlinkIssuesFromIncident?: Maybe<JiraUnlinkIssuesFromIncidentMutationPayload>;
31690
+ updateAttachmentField?: Maybe<JiraAttachmentFieldPayload>;
31522
31691
  updateCascadingSelectField?: Maybe<JiraCascadingSelectFieldPayload>;
31523
31692
  updateCheckboxesField?: Maybe<JiraCheckboxesFieldPayload>;
31524
31693
  updateColorField?: Maybe<JiraColorFieldPayload>;
@@ -31543,6 +31712,7 @@ export declare type JiraMutation = {
31543
31712
  updateLabelsField?: Maybe<JiraLabelsFieldPayload>;
31544
31713
  updateLegacyTeamField?: Maybe<JiraLegacyTeamFieldPayload>;
31545
31714
  updateMultipleSelectField?: Maybe<JiraMultipleSelectFieldPayload>;
31715
+ updateMultipleSelectUserPickerField?: Maybe<JiraMultipleSelectUserPickerFieldPayload>;
31546
31716
  updateMultipleVersionPickerField?: Maybe<JiraMultipleVersionPickerFieldPayload>;
31547
31717
  updateNumberField?: Maybe<JiraNumberFieldPayload>;
31548
31718
  updateParentField?: Maybe<JiraParentFieldPayload>;
@@ -31770,6 +31940,9 @@ export declare type JiraMutationSubmitBulkOperationArgs = {
31770
31940
  export declare type JiraMutationUnlinkIssuesFromIncidentArgs = {
31771
31941
  input: JiraUnlinkIssuesFromIncidentMutationInput;
31772
31942
  };
31943
+ export declare type JiraMutationUpdateAttachmentFieldArgs = {
31944
+ input: JiraUpdateAttachmentFieldInput;
31945
+ };
31773
31946
  export declare type JiraMutationUpdateCascadingSelectFieldArgs = {
31774
31947
  input: JiraUpdateCascadingSelectFieldInput;
31775
31948
  };
@@ -31845,6 +32018,9 @@ export declare type JiraMutationUpdateLegacyTeamFieldArgs = {
31845
32018
  export declare type JiraMutationUpdateMultipleSelectFieldArgs = {
31846
32019
  input: JiraUpdateMultipleSelectFieldInput;
31847
32020
  };
32021
+ export declare type JiraMutationUpdateMultipleSelectUserPickerFieldArgs = {
32022
+ input: JiraUpdateMultipleSelectUserPickerFieldInput;
32023
+ };
31848
32024
  export declare type JiraMutationUpdateMultipleVersionPickerFieldArgs = {
31849
32025
  input: JiraUpdateMultipleVersionPickerFieldInput;
31850
32026
  };
@@ -31999,6 +32175,7 @@ export declare type JiraNotificationOptions = {
31999
32175
  id: Scalars['ID']['output'];
32000
32176
  isEmailMimeTypeEditable?: Maybe<Scalars['Boolean']['output']>;
32001
32177
  isEmailNotificationEnabled?: Maybe<Scalars['Boolean']['output']>;
32178
+ notifyOwnChangesEnabled?: Maybe<Scalars['Boolean']['output']>;
32002
32179
  };
32003
32180
  export declare type JiraNotificationPreference = {
32004
32181
  __typename?: 'JiraNotificationPreference';
@@ -32585,6 +32762,7 @@ export declare type JiraPlatformAttachment = JiraAttachment & Node & {
32585
32762
  fileSize?: Maybe<Scalars['Long']['output']>;
32586
32763
  hasRestrictedParent?: Maybe<Scalars['Boolean']['output']>;
32587
32764
  id: Scalars['ID']['output'];
32765
+ issue?: Maybe<JiraIssue>;
32588
32766
  mediaApiFileId?: Maybe<Scalars['String']['output']>;
32589
32767
  mediaReadToken?: Maybe<Scalars['String']['output']>;
32590
32768
  mimeType?: Maybe<Scalars['String']['output']>;
@@ -34844,6 +35022,7 @@ export declare type JiraServiceManagementAttachment = JiraAttachment & Node & {
34844
35022
  fileSize?: Maybe<Scalars['Long']['output']>;
34845
35023
  hasRestrictedParent?: Maybe<Scalars['Boolean']['output']>;
34846
35024
  id: Scalars['ID']['output'];
35025
+ issue?: Maybe<JiraIssue>;
34847
35026
  mediaApiFileId?: Maybe<Scalars['String']['output']>;
34848
35027
  mediaReadToken?: Maybe<Scalars['String']['output']>;
34849
35028
  mimeType?: Maybe<Scalars['String']['output']>;
@@ -36251,6 +36430,7 @@ export declare type JiraTeamViewField = JiraIssueField & JiraIssueFieldConfigura
36251
36430
  id: Scalars['ID']['output'];
36252
36431
  isEditableInIssueView?: Maybe<Scalars['Boolean']['output']>;
36253
36432
  name: Scalars['String']['output'];
36433
+ nonEditableReason?: Maybe<JiraFieldNonEditableReason>;
36254
36434
  searchUrl?: Maybe<Scalars['String']['output']>;
36255
36435
  selectedTeam?: Maybe<JiraTeamView>;
36256
36436
  teams?: Maybe<JiraTeamViewConnection>;
@@ -36397,6 +36577,10 @@ export declare type JiraUnsupportedLanguageError = {
36397
36577
  __typename?: 'JiraUnsupportedLanguageError';
36398
36578
  message?: Maybe<Scalars['String']['output']>;
36399
36579
  };
36580
+ export declare type JiraUpdateAttachmentFieldInput = {
36581
+ id: Scalars['ID']['input'];
36582
+ operation: JiraAttachmentFieldOperationInput;
36583
+ };
36400
36584
  export declare type JiraUpdateCascadingSelectFieldInput = {
36401
36585
  id: Scalars['ID']['input'];
36402
36586
  operation: JiraCascadingSelectFieldOperationInput;
@@ -36478,6 +36662,10 @@ export declare type JiraUpdateMultipleSelectFieldInput = {
36478
36662
  id: Scalars['ID']['input'];
36479
36663
  operations: Array<JiraMultipleSelectFieldOperationInput>;
36480
36664
  };
36665
+ export declare type JiraUpdateMultipleSelectUserPickerFieldInput = {
36666
+ id: Scalars['ID']['input'];
36667
+ operations: Array<JiraMultipleSelectUserPickerFieldOperationInput>;
36668
+ };
36481
36669
  export declare type JiraUpdateMultipleVersionPickerFieldInput = {
36482
36670
  id: Scalars['ID']['input'];
36483
36671
  operations: Array<JiraMultipleVersionPickerFieldOperationInput>;
@@ -36485,6 +36673,7 @@ export declare type JiraUpdateMultipleVersionPickerFieldInput = {
36485
36673
  export declare type JiraUpdateNotificationOptionsInput = {
36486
36674
  emailMimeType?: InputMaybe<JiraEmailMimeType>;
36487
36675
  isEmailNotificationEnabled?: InputMaybe<Scalars['Boolean']['input']>;
36676
+ notifyOwnChangesEnabled?: InputMaybe<Scalars['Boolean']['input']>;
36488
36677
  };
36489
36678
  export declare type JiraUpdateNotificationOptionsPayload = Payload & {
36490
36679
  __typename?: 'JiraUpdateNotificationOptionsPayload';
@@ -38402,7 +38591,7 @@ export declare type MarketplaceStoreAlgoliaQuerySort = {
38402
38591
  };
38403
38592
  export declare type MarketplaceStoreCategoryHeroSection = {
38404
38593
  __typename?: 'MarketplaceStoreCategoryHeroSection';
38405
- backgroundColorHex: Scalars['String']['output'];
38594
+ backgroundColor: Scalars['String']['output'];
38406
38595
  description: Scalars['String']['output'];
38407
38596
  image: MarketplaceStoreCategoryHeroSectionImage;
38408
38597
  title: Scalars['String']['output'];
@@ -38422,7 +38611,7 @@ export declare type MarketplaceStoreCategoryResponse = {
38422
38611
  };
38423
38612
  export declare type MarketplaceStoreCollectionHeroSection = {
38424
38613
  __typename?: 'MarketplaceStoreCollectionHeroSection';
38425
- backgroundColorHex: Scalars['String']['output'];
38614
+ backgroundColor: Scalars['String']['output'];
38426
38615
  description: Scalars['String']['output'];
38427
38616
  image: MarketplaceStoreCollectionHeroSectionImage;
38428
38617
  title: Scalars['String']['output'];
@@ -38450,7 +38639,6 @@ export declare type MarketplaceStoreCollectionUsecasesValues = {
38450
38639
  __typename?: 'MarketplaceStoreCollectionUsecasesValues';
38451
38640
  description: Scalars['String']['output'];
38452
38641
  title: Scalars['String']['output'];
38453
- titleColorHex: Scalars['String']['output'];
38454
38642
  };
38455
38643
  export declare type MarketplaceStoreHomePageFeaturedSection = MarketplaceStoreHomePageSection & {
38456
38644
  __typename?: 'MarketplaceStoreHomePageFeaturedSection';
@@ -43728,6 +43916,7 @@ export declare type ShepherdActor = {
43728
43916
  aaid: Scalars['ID']['output'];
43729
43917
  createdOn?: Maybe<Scalars['DateTime']['output']>;
43730
43918
  mfaEnabled?: Maybe<Scalars['Boolean']['output']>;
43919
+ orgId?: Maybe<Scalars['ID']['output']>;
43731
43920
  orgInfo?: Maybe<ShepherdActorOrgInfo>;
43732
43921
  productAccess?: Maybe<Array<Maybe<ShepherdActorProductAccess>>>;
43733
43922
  sessions?: Maybe<Array<Maybe<ShepherdActorSession>>>;
@@ -43961,6 +44150,12 @@ export declare type ShepherdAuditLogContext = {
43961
44150
  attributes: Array<ShepherdAuditLogAttribute>;
43962
44151
  id: Scalars['String']['output'];
43963
44152
  };
44153
+ export declare type ShepherdBitbucketWorkspace = {
44154
+ __typename?: 'ShepherdBitbucketWorkspace';
44155
+ ari: Scalars['ID']['output'];
44156
+ slug?: Maybe<Scalars['String']['output']>;
44157
+ url?: Maybe<Scalars['String']['output']>;
44158
+ };
43964
44159
  export declare type ShepherdCategorizedAlertMetadata = {
43965
44160
  __typename?: 'ShepherdCategorizedAlertMetadata';
43966
44161
  category: Scalars['String']['output'];
@@ -44589,6 +44784,7 @@ export declare enum ShepherdWebhookType {
44589
44784
  }
44590
44785
  export declare type ShepherdWorkspace = {
44591
44786
  __typename?: 'ShepherdWorkspace';
44787
+ bitbucketWorkspaces?: Maybe<Array<ShepherdBitbucketWorkspace>>;
44592
44788
  cloudId: Scalars['ID']['output'];
44593
44789
  cloudName?: Maybe<Scalars['String']['output']>;
44594
44790
  currentUser?: Maybe<ShepherdCurrentUser>;
@@ -48202,6 +48398,7 @@ export declare type VirtualAgentConfiguration = Node & {
48202
48398
  id: Scalars['ID']['output'];
48203
48399
  intentRuleProjection?: Maybe<VirtualAgentIntentRuleProjectionResult>;
48204
48400
  intentRuleProjections?: Maybe<VirtualAgentIntentRuleProjectionsConnection>;
48401
+ isEnabledOnJsmPortal?: Maybe<Scalars['Boolean']['output']>;
48205
48402
  properties?: Maybe<VirtualAgentProperties>;
48206
48403
  respondToQueries: Scalars['Boolean']['output'];
48207
48404
  standardFlowEditors?: Maybe<VirtualAgentFlowEditorsConnection>;
@@ -48617,6 +48814,7 @@ export declare type VirtualAgentUpdateChatChannelPayload = Payload & {
48617
48814
  success: Scalars['Boolean']['output'];
48618
48815
  };
48619
48816
  export declare type VirtualAgentUpdateConfigurationInput = {
48817
+ isEnabledOnJsmPortal?: InputMaybe<Scalars['Boolean']['input']>;
48620
48818
  properties?: InputMaybe<VirtualAgentPropertiesInput>;
48621
48819
  respondToQueries?: InputMaybe<Scalars['Boolean']['input']>;
48622
48820
  };