@forge/cli-shared 3.20.4-next.4 → 3.20.5-next.0

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,42 @@
1
1
  # @forge/cli-shared
2
2
 
3
+ ## 3.20.5-next.0
4
+
5
+ ### Patch Changes
6
+
7
+ - Updated dependencies [e06a091]
8
+ - @forge/manifest@5.0.2-next.0
9
+
10
+ ## 3.20.4
11
+
12
+ ### Patch Changes
13
+
14
+ - a45ba82: Bumping dependencies via Renovate:
15
+
16
+ - @sentry/node
17
+
18
+ - cde16c5: Bumping dependencies via Renovate:
19
+
20
+ - @types/jest
21
+
22
+ - b136f20: Bumping dependencies via Renovate:
23
+
24
+ - @sentry/node
25
+
26
+ - a52c60e: Bumping dependencies via Renovate:
27
+
28
+ - @types/node-fetch
29
+
30
+ - e5c1e4e: Bumping dependencies via Renovate:
31
+
32
+ - yaml
33
+
34
+ - Updated dependencies [cde16c5]
35
+ - Updated dependencies [a52c60e]
36
+ - Updated dependencies [6a30243]
37
+ - Updated dependencies [5fadc46]
38
+ - @forge/manifest@5.0.1
39
+
3
40
  ## 3.20.4-next.4
4
41
 
5
42
  ### Patch Changes
@@ -7188,9 +7188,11 @@ export type CustomerServiceAttribute = Node & {
7188
7188
  };
7189
7189
  export type CustomerServiceAttributeConfigMetadata = {
7190
7190
  __typename?: 'CustomerServiceAttributeConfigMetadata';
7191
+ contextConfigurations?: Maybe<Array<CustomerServiceContextConfiguration>>;
7191
7192
  position?: Maybe<Scalars['Int']['output']>;
7192
7193
  };
7193
7194
  export type CustomerServiceAttributeConfigMetadataUpdateInput = {
7195
+ contextConfigurations?: InputMaybe<Array<InputMaybe<CustomerServiceContextConfigurationInput>>>;
7194
7196
  id: Scalars['ID']['input'];
7195
7197
  position?: InputMaybe<Scalars['Int']['input']>;
7196
7198
  };
@@ -7200,6 +7202,7 @@ export type CustomerServiceAttributeConfigMetadataUpdatePayload = Payload & {
7200
7202
  success: Scalars['Boolean']['output'];
7201
7203
  };
7202
7204
  export type CustomerServiceAttributeCreateInput = {
7205
+ contextConfigurations?: InputMaybe<Array<InputMaybe<CustomerServiceContextConfigurationInput>>>;
7203
7206
  name: Scalars['String']['input'];
7204
7207
  type?: InputMaybe<CustomerServiceAttributeCreateTypeInput>;
7205
7208
  };
@@ -7270,6 +7273,15 @@ export type CustomerServiceAttributesQueryResult = CustomerServiceAttributes | Q
7270
7273
  export type CustomerServiceContext = {
7271
7274
  type: CustomerServiceContextType;
7272
7275
  };
7276
+ export type CustomerServiceContextConfiguration = {
7277
+ __typename?: 'CustomerServiceContextConfiguration';
7278
+ context: CustomerServiceContextType;
7279
+ enabled: Scalars['Boolean']['output'];
7280
+ };
7281
+ export type CustomerServiceContextConfigurationInput = {
7282
+ contexts: CustomerServiceContextType;
7283
+ enabled: Scalars['Boolean']['input'];
7284
+ };
7273
7285
  export declare enum CustomerServiceContextType {
7274
7286
  Default = "DEFAULT",
7275
7287
  Issue = "ISSUE"
@@ -10539,6 +10551,7 @@ export type Graph = {
10539
10551
  issueAssociatedPrInverse?: Maybe<GraphJiraIssueConnection>;
10540
10552
  issueAssociatedPrRelationship?: Maybe<GraphIssueAssociatedPrRelationshipConnection>;
10541
10553
  issueAssociatedPrRelationshipInverse?: Maybe<GraphIssueAssociatedPrRelationshipConnection>;
10554
+ jswProjectAssociatedComponent?: Maybe<GraphGenericConnection>;
10542
10555
  parentDocumentHasChildDocument?: Maybe<GraphJiraDocumentConnection>;
10543
10556
  parentDocumentHasChildDocumentInverse?: Maybe<GraphJiraDocumentConnection>;
10544
10557
  parentDocumentHasChildDocumentRelationship?: Maybe<GraphParentDocumentHasChildDocumentRelationshipConnection>;
@@ -10650,6 +10663,11 @@ export type GraphIssueAssociatedPrRelationshipInverseArgs = {
10650
10663
  first?: InputMaybe<Scalars['Int']['input']>;
10651
10664
  to: Scalars['ID']['input'];
10652
10665
  };
10666
+ export type GraphJswProjectAssociatedComponentArgs = {
10667
+ after?: InputMaybe<Scalars['String']['input']>;
10668
+ first?: InputMaybe<Scalars['Int']['input']>;
10669
+ from: Scalars['ID']['input'];
10670
+ };
10653
10671
  export type GraphParentDocumentHasChildDocumentArgs = {
10654
10672
  after?: InputMaybe<Scalars['String']['input']>;
10655
10673
  first?: InputMaybe<Scalars['Int']['input']>;
@@ -10861,12 +10879,24 @@ export type GraphConfluencePageEdge = {
10861
10879
  cursor?: Maybe<Scalars['String']['output']>;
10862
10880
  node: GraphConfluencePage;
10863
10881
  };
10882
+ export type GraphCreateIncidentAssociatedPostIncidentReviewLinkInput = {
10883
+ from: Scalars['ID']['input'];
10884
+ sequenceNumber?: InputMaybe<Scalars['Long']['input']>;
10885
+ to: Scalars['ID']['input'];
10886
+ updatedAt?: InputMaybe<Scalars['DateTime']['input']>;
10887
+ };
10864
10888
  export type GraphCreateIncidentHasActionItemInput = {
10865
10889
  from: Scalars['ID']['input'];
10866
10890
  sequenceNumber?: InputMaybe<Scalars['Long']['input']>;
10867
10891
  to: Scalars['ID']['input'];
10868
10892
  updatedAt?: InputMaybe<Scalars['DateTime']['input']>;
10869
10893
  };
10894
+ export type GraphCreateIncidentLinkedJswIssueInput = {
10895
+ from: Scalars['ID']['input'];
10896
+ sequenceNumber?: InputMaybe<Scalars['Long']['input']>;
10897
+ to: Scalars['ID']['input'];
10898
+ updatedAt?: InputMaybe<Scalars['DateTime']['input']>;
10899
+ };
10870
10900
  export type GraphCreateIssueAssociatedDesignInput = {
10871
10901
  from: Scalars['ID']['input'];
10872
10902
  sequenceNumber?: InputMaybe<Scalars['Long']['input']>;
@@ -11037,6 +11067,16 @@ export type GraphGenericFetchAllRelationshipsArgs = {
11037
11067
  updatedFrom?: InputMaybe<Scalars['DateTime']['input']>;
11038
11068
  updatedTo?: InputMaybe<Scalars['DateTime']['input']>;
11039
11069
  };
11070
+ export type GraphGenericConnection = {
11071
+ __typename?: 'GraphGenericConnection';
11072
+ edges: Array<Maybe<GraphGenericEdge>>;
11073
+ pageInfo: PageInfo;
11074
+ };
11075
+ export type GraphGenericEdge = {
11076
+ __typename?: 'GraphGenericEdge';
11077
+ cursor?: Maybe<Scalars['String']['output']>;
11078
+ node: GraphGeneric;
11079
+ };
11040
11080
  export type GraphIncidentAssociatedPostIncidentReviewLinkPayload = Payload & {
11041
11081
  __typename?: 'GraphIncidentAssociatedPostIncidentReviewLinkPayload';
11042
11082
  errors?: Maybe<Array<MutationError>>;
@@ -11083,6 +11123,29 @@ export type GraphIncidentHasActionItemRelationshipEdge = {
11083
11123
  cursor?: Maybe<Scalars['String']['output']>;
11084
11124
  node: GraphIncidentHasActionItemRelationship;
11085
11125
  };
11126
+ export type GraphIncidentLinkedJswIssuePayload = Payload & {
11127
+ __typename?: 'GraphIncidentLinkedJswIssuePayload';
11128
+ errors?: Maybe<Array<MutationError>>;
11129
+ incidentLinkedJswIssueRelationship: Array<Maybe<GraphIncidentLinkedJswIssueRelationship>>;
11130
+ success: Scalars['Boolean']['output'];
11131
+ };
11132
+ export type GraphIncidentLinkedJswIssueRelationship = Node & {
11133
+ __typename?: 'GraphIncidentLinkedJswIssueRelationship';
11134
+ from: GraphGeneric;
11135
+ id: Scalars['ID']['output'];
11136
+ lastUpdated: Scalars['DateTime']['output'];
11137
+ to: GraphJiraIssue;
11138
+ };
11139
+ export type GraphIncidentLinkedJswIssueRelationshipConnection = {
11140
+ __typename?: 'GraphIncidentLinkedJswIssueRelationshipConnection';
11141
+ edges: Array<Maybe<GraphIncidentLinkedJswIssueRelationshipEdge>>;
11142
+ pageInfo: PageInfo;
11143
+ };
11144
+ export type GraphIncidentLinkedJswIssueRelationshipEdge = {
11145
+ __typename?: 'GraphIncidentLinkedJswIssueRelationshipEdge';
11146
+ cursor?: Maybe<Scalars['String']['output']>;
11147
+ node: GraphIncidentLinkedJswIssueRelationship;
11148
+ };
11086
11149
  export type GraphIssueAssociatedDesignPayload = Payload & {
11087
11150
  __typename?: 'GraphIssueAssociatedDesignPayload';
11088
11151
  errors?: Maybe<Array<MutationError>>;
@@ -11290,14 +11353,22 @@ export type GraphJiraVulnerabilityEdge = {
11290
11353
  };
11291
11354
  export type GraphMutation = {
11292
11355
  __typename?: 'GraphMutation';
11356
+ createIncidentAssociatedPostIncidentReviewLink?: Maybe<GraphIncidentAssociatedPostIncidentReviewLinkPayload>;
11293
11357
  createIncidentHasActionItem?: Maybe<GraphIncidentHasActionItemPayload>;
11358
+ createIncidentLinkedJswIssue?: Maybe<GraphIncidentLinkedJswIssuePayload>;
11294
11359
  createIssueAssociatedDesign?: Maybe<GraphIssueAssociatedDesignPayload>;
11295
11360
  createIssueAssociatedPr?: Maybe<GraphIssueAssociatedPrPayload>;
11296
11361
  createSprintRetrospectivePage?: Maybe<GraphSprintRetrospectivePagePayload>;
11297
11362
  };
11363
+ export type GraphMutationCreateIncidentAssociatedPostIncidentReviewLinkArgs = {
11364
+ input: GraphCreateIncidentAssociatedPostIncidentReviewLinkInput;
11365
+ };
11298
11366
  export type GraphMutationCreateIncidentHasActionItemArgs = {
11299
11367
  input: GraphCreateIncidentHasActionItemInput;
11300
11368
  };
11369
+ export type GraphMutationCreateIncidentLinkedJswIssueArgs = {
11370
+ input: GraphCreateIncidentLinkedJswIssueInput;
11371
+ };
11301
11372
  export type GraphMutationCreateIssueAssociatedDesignArgs = {
11302
11373
  input: GraphCreateIssueAssociatedDesignInput;
11303
11374
  };
@@ -17070,7 +17141,7 @@ export type JiraJqlFromNaturalLanguage = {
17070
17141
  generatedJQL?: Maybe<Scalars['String']['output']>;
17071
17142
  generatedJQLError?: Maybe<JiraJqlGenerationError>;
17072
17143
  };
17073
- export type JiraJqlGenerationError = JiraInvalidJqlError | JiraInvalidSyntaxError | JiraServerError | JiraUiExposedError;
17144
+ export type JiraJqlGenerationError = JiraInvalidJqlError | JiraInvalidSyntaxError | JiraServerError | JiraUiExposedError | JiraUsageLimitExceededError;
17074
17145
  export type JiraJqlHistory = Node & {
17075
17146
  __typename?: 'JiraJQLHistory';
17076
17147
  id: Scalars['ID']['output'];
@@ -18895,6 +18966,7 @@ export type JiraProformaFormsField = JiraIssueField & JiraIssueFieldConfiguratio
18895
18966
  export type JiraProject = Node & {
18896
18967
  __typename?: 'JiraProject';
18897
18968
  action?: Maybe<JiraProjectAction>;
18969
+ associatedComponents?: Maybe<GraphGenericConnection>;
18898
18970
  associatedServices?: Maybe<GraphProjectServiceConnection>;
18899
18971
  avatar?: Maybe<JiraAvatar>;
18900
18972
  canSetIssueRestriction?: Maybe<Scalars['Boolean']['output']>;
@@ -18945,6 +19017,10 @@ export type JiraProject = Node & {
18945
19017
  export type JiraProjectActionArgs = {
18946
19018
  type: JiraProjectActionType;
18947
19019
  };
19020
+ export type JiraProjectAssociatedComponentsArgs = {
19021
+ after?: InputMaybe<Scalars['String']['input']>;
19022
+ first?: InputMaybe<Scalars['Int']['input']>;
19023
+ };
18948
19024
  export type JiraProjectConfluenceSpaceRelationshipsArgs = {
18949
19025
  after?: InputMaybe<Scalars['String']['input']>;
18950
19026
  first?: InputMaybe<Scalars['Int']['input']>;
@@ -19302,6 +19378,7 @@ export type JiraProjectListViewTemplateConnection = {
19302
19378
  edges?: Maybe<Array<Maybe<JiraProjectListViewTemplateEdge>>>;
19303
19379
  nodes?: Maybe<Array<Maybe<JiraProjectListViewTemplateItem>>>;
19304
19380
  pageInfo: PageInfo;
19381
+ totalCount?: Maybe<Scalars['Int']['output']>;
19305
19382
  };
19306
19383
  export type JiraProjectListViewTemplateEdge = {
19307
19384
  __typename?: 'JiraProjectListViewTemplateEdge';
@@ -22292,6 +22369,10 @@ export type JiraUrlFieldPayload = Payload & {
22292
22369
  field?: Maybe<JiraUrlField>;
22293
22370
  success: Scalars['Boolean']['output'];
22294
22371
  };
22372
+ export type JiraUsageLimitExceededError = {
22373
+ __typename?: 'JiraUsageLimitExceededError';
22374
+ message?: Maybe<Scalars['String']['output']>;
22375
+ };
22295
22376
  export type JiraUser = {
22296
22377
  __typename?: 'JiraUser';
22297
22378
  accountId?: Maybe<Scalars['String']['output']>;
@@ -26960,7 +27041,6 @@ export declare enum RateLimitingCurrency {
26960
27041
  HelpCenterCurrency = "HELP_CENTER_CURRENCY",
26961
27042
  HelpLayoutCurrency = "HELP_LAYOUT_CURRENCY",
26962
27043
  HelpObjectStoreCurrency = "HELP_OBJECT_STORE_CURRENCY",
26963
- NaturalLanguageToJqlCurrency = "NATURAL_LANGUAGE_TO_JQL_CURRENCY",
26964
27044
  PolarisBetaUserCurrency = "POLARIS_BETA_USER_CURRENCY",
26965
27045
  PolarisCollabTokenQueryCurrency = "POLARIS_COLLAB_TOKEN_QUERY_CURRENCY",
26966
27046
  PolarisCommentCurrency = "POLARIS_COMMENT_CURRENCY",