@forge/cli-shared 3.20.2-next.1 → 3.20.2-next.3
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,21 @@
|
|
|
1
1
|
# @forge/cli-shared
|
|
2
2
|
|
|
3
|
+
## 3.20.2-next.3
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- Updated dependencies [863f7eb]
|
|
8
|
+
- @forge/util@1.3.2-next.0
|
|
9
|
+
- @forge/manifest@4.20.3-next.2
|
|
10
|
+
|
|
11
|
+
## 3.20.2-next.2
|
|
12
|
+
|
|
13
|
+
### Patch Changes
|
|
14
|
+
|
|
15
|
+
- ce14925: Bumping dependencies via Renovate:
|
|
16
|
+
|
|
17
|
+
- @types/inquirer
|
|
18
|
+
|
|
3
19
|
## 3.20.2-next.1
|
|
4
20
|
|
|
5
21
|
### Patch Changes
|
|
@@ -7107,6 +7107,7 @@ export type CustomerServiceAttributeValue = Node & {
|
|
|
7107
7107
|
export type CustomerServiceAttributes = {
|
|
7108
7108
|
__typename?: 'CustomerServiceAttributes';
|
|
7109
7109
|
attributes?: Maybe<Array<CustomerServiceAttribute>>;
|
|
7110
|
+
maxAllowedAttributes?: Maybe<Scalars['Int']['output']>;
|
|
7110
7111
|
};
|
|
7111
7112
|
export type CustomerServiceAttributesQueryResult = CustomerServiceAttributes | QueryError;
|
|
7112
7113
|
export type CustomerServiceContext = {
|
|
@@ -7125,7 +7126,7 @@ export type CustomerServiceIndividual = Node & {
|
|
|
7125
7126
|
id: Scalars['ID']['output'];
|
|
7126
7127
|
links: Array<CustomerServiceLink>;
|
|
7127
7128
|
name: Scalars['String']['output'];
|
|
7128
|
-
notes:
|
|
7129
|
+
notes: CustomerServiceNotes;
|
|
7129
7130
|
organizations: Array<CustomerServiceOrganization>;
|
|
7130
7131
|
};
|
|
7131
7132
|
export type CustomerServiceIndividualLinksArgs = {
|
|
@@ -7339,13 +7340,19 @@ export type CustomerServiceNoteUpdatePayload = Payload & {
|
|
|
7339
7340
|
success: Scalars['Boolean']['output'];
|
|
7340
7341
|
successfullyUpdatedNote?: Maybe<CustomerServiceNote>;
|
|
7341
7342
|
};
|
|
7343
|
+
export type CustomerServiceNotes = {
|
|
7344
|
+
__typename?: 'CustomerServiceNotes';
|
|
7345
|
+
results: Array<CustomerServiceNote>;
|
|
7346
|
+
total: Scalars['Int']['output'];
|
|
7347
|
+
};
|
|
7348
|
+
export type CustomerServiceNotesQueryResult = CustomerServiceNotes | QueryError;
|
|
7342
7349
|
export type CustomerServiceOrganization = Node & {
|
|
7343
7350
|
__typename?: 'CustomerServiceOrganization';
|
|
7344
7351
|
attributes: Array<CustomerServiceAttributeValue>;
|
|
7345
7352
|
id: Scalars['ID']['output'];
|
|
7346
7353
|
links: Array<CustomerServiceLink>;
|
|
7347
7354
|
name: Scalars['String']['output'];
|
|
7348
|
-
notes:
|
|
7355
|
+
notes: CustomerServiceNotes;
|
|
7349
7356
|
};
|
|
7350
7357
|
export type CustomerServiceOrganizationLinksArgs = {
|
|
7351
7358
|
maxResults?: InputMaybe<Scalars['Int']['input']>;
|
|
@@ -14549,9 +14556,11 @@ export type JiraCommentEdge = {
|
|
|
14549
14556
|
};
|
|
14550
14557
|
export type JiraComponent = Node & {
|
|
14551
14558
|
__typename?: 'JiraComponent';
|
|
14559
|
+
ari?: Maybe<Scalars['String']['output']>;
|
|
14552
14560
|
componentId: Scalars['String']['output'];
|
|
14553
14561
|
description?: Maybe<Scalars['String']['output']>;
|
|
14554
14562
|
id: Scalars['ID']['output'];
|
|
14563
|
+
metadata?: Maybe<Scalars['JSON']['output']>;
|
|
14555
14564
|
name?: Maybe<Scalars['String']['output']>;
|
|
14556
14565
|
};
|
|
14557
14566
|
export type JiraComponentConnection = {
|
|
@@ -16457,6 +16466,7 @@ export type JiraIssueSearchViewPayload = Payload & {
|
|
|
16457
16466
|
view?: Maybe<JiraIssueSearchView>;
|
|
16458
16467
|
};
|
|
16459
16468
|
export type JiraIssueTransitionFieldLevelInput = {
|
|
16469
|
+
JiraPriorityField?: InputMaybe<Array<JiraUpdatePriorityFieldInput>>;
|
|
16460
16470
|
JiraResolutionField?: InputMaybe<Array<JiraUpdateResolutionFieldInput>>;
|
|
16461
16471
|
JiraSingleLineTextField?: InputMaybe<Array<JiraUpdateSingleLineTextFieldInput>>;
|
|
16462
16472
|
JiraSingleSelectField?: InputMaybe<Array<JiraUpdateSingleSelectFieldInput>>;
|
|
@@ -26634,6 +26644,15 @@ export type RoadmapFilterConfiguration = {
|
|
|
26634
26644
|
customFilters?: Maybe<Array<RoadmapCustomFilter>>;
|
|
26635
26645
|
quickFilters?: Maybe<Array<RoadmapQuickFilter>>;
|
|
26636
26646
|
};
|
|
26647
|
+
export type RoadmapGoalDetails = {
|
|
26648
|
+
__typename?: 'RoadmapGoalDetails';
|
|
26649
|
+
issueIds?: Maybe<Array<Scalars['Long']['output']>>;
|
|
26650
|
+
key: Scalars['String']['output'];
|
|
26651
|
+
};
|
|
26652
|
+
export type RoadmapGoals = {
|
|
26653
|
+
__typename?: 'RoadmapGoals';
|
|
26654
|
+
goals?: Maybe<Array<RoadmapGoalDetails>>;
|
|
26655
|
+
};
|
|
26637
26656
|
export type RoadmapHealthCheck = {
|
|
26638
26657
|
__typename?: 'RoadmapHealthCheck';
|
|
26639
26658
|
explanation: Scalars['String']['output'];
|
|
@@ -27056,6 +27075,7 @@ export type RoadmapsQuery = {
|
|
|
27056
27075
|
roadmapFilterConfiguration?: Maybe<RoadmapFilterConfiguration>;
|
|
27057
27076
|
roadmapFilterItems: Array<Scalars['ID']['output']>;
|
|
27058
27077
|
roadmapForSource?: Maybe<RoadmapDetails>;
|
|
27078
|
+
roadmapGoals?: Maybe<RoadmapGoals>;
|
|
27059
27079
|
roadmapItemByIds?: Maybe<Array<Maybe<RoadmapItem>>>;
|
|
27060
27080
|
roadmapSubtasksByIds?: Maybe<RoadmapSubtasksWithStatusCategories>;
|
|
27061
27081
|
};
|
|
@@ -27076,6 +27096,9 @@ export type RoadmapsQueryRoadmapForSourceArgs = {
|
|
|
27076
27096
|
locationARI?: InputMaybe<Scalars['ID']['input']>;
|
|
27077
27097
|
sourceARI: Scalars['ID']['input'];
|
|
27078
27098
|
};
|
|
27099
|
+
export type RoadmapsQueryRoadmapGoalsArgs = {
|
|
27100
|
+
sourceARI: Scalars['ID']['input'];
|
|
27101
|
+
};
|
|
27079
27102
|
export type RoadmapsQueryRoadmapItemByIdsArgs = {
|
|
27080
27103
|
ids: Array<Scalars['ID']['input']>;
|
|
27081
27104
|
sourceARI: Scalars['ID']['input'];
|
|
@@ -30197,6 +30220,7 @@ export type TrelloBoard = Node & {
|
|
|
30197
30220
|
closed: Scalars['Boolean']['output'];
|
|
30198
30221
|
creationMethod?: Maybe<Scalars['String']['output']>;
|
|
30199
30222
|
creator?: Maybe<TrelloMember>;
|
|
30223
|
+
customFields?: Maybe<TrelloCustomFieldConnection>;
|
|
30200
30224
|
description?: Maybe<TrelloDescription>;
|
|
30201
30225
|
enterprise?: Maybe<TrelloEnterprise>;
|
|
30202
30226
|
enterpriseOwned: Scalars['Boolean']['output'];
|
|
@@ -30222,6 +30246,10 @@ export type TrelloBoard = Node & {
|
|
|
30222
30246
|
viewer?: Maybe<TrelloBoardViewer>;
|
|
30223
30247
|
workspace?: Maybe<TrelloWorkspace>;
|
|
30224
30248
|
};
|
|
30249
|
+
export type TrelloBoardCustomFieldsArgs = {
|
|
30250
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
30251
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
30252
|
+
};
|
|
30225
30253
|
export type TrelloBoardLabelsArgs = {
|
|
30226
30254
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
30227
30255
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
@@ -30677,7 +30705,21 @@ export type TrelloCreateCardPayload = Payload & {
|
|
|
30677
30705
|
};
|
|
30678
30706
|
export type TrelloCustomField = {
|
|
30679
30707
|
__typename?: 'TrelloCustomField';
|
|
30708
|
+
name?: Maybe<Scalars['String']['output']>;
|
|
30680
30709
|
objectId: Scalars['ID']['output'];
|
|
30710
|
+
position?: Maybe<Scalars['Float']['output']>;
|
|
30711
|
+
type?: Maybe<Scalars['String']['output']>;
|
|
30712
|
+
};
|
|
30713
|
+
export type TrelloCustomFieldConnection = {
|
|
30714
|
+
__typename?: 'TrelloCustomFieldConnection';
|
|
30715
|
+
edges?: Maybe<Array<TrelloCustomFieldEdge>>;
|
|
30716
|
+
nodes?: Maybe<Array<TrelloCustomField>>;
|
|
30717
|
+
pageInfo: PageInfo;
|
|
30718
|
+
};
|
|
30719
|
+
export type TrelloCustomFieldEdge = {
|
|
30720
|
+
__typename?: 'TrelloCustomFieldEdge';
|
|
30721
|
+
cursor: Scalars['String']['output'];
|
|
30722
|
+
node?: Maybe<TrelloCustomField>;
|
|
30681
30723
|
};
|
|
30682
30724
|
export type TrelloCustomFieldItem = {
|
|
30683
30725
|
__typename?: 'TrelloCustomFieldItem';
|