@forge/cli-shared 3.20.2-next.1 → 3.20.2-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.
package/CHANGELOG.md
CHANGED
|
@@ -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']>;
|
|
@@ -16457,6 +16464,7 @@ export type JiraIssueSearchViewPayload = Payload & {
|
|
|
16457
16464
|
view?: Maybe<JiraIssueSearchView>;
|
|
16458
16465
|
};
|
|
16459
16466
|
export type JiraIssueTransitionFieldLevelInput = {
|
|
16467
|
+
JiraPriorityField?: InputMaybe<Array<JiraUpdatePriorityFieldInput>>;
|
|
16460
16468
|
JiraResolutionField?: InputMaybe<Array<JiraUpdateResolutionFieldInput>>;
|
|
16461
16469
|
JiraSingleLineTextField?: InputMaybe<Array<JiraUpdateSingleLineTextFieldInput>>;
|
|
16462
16470
|
JiraSingleSelectField?: InputMaybe<Array<JiraUpdateSingleSelectFieldInput>>;
|
|
@@ -26634,6 +26642,15 @@ export type RoadmapFilterConfiguration = {
|
|
|
26634
26642
|
customFilters?: Maybe<Array<RoadmapCustomFilter>>;
|
|
26635
26643
|
quickFilters?: Maybe<Array<RoadmapQuickFilter>>;
|
|
26636
26644
|
};
|
|
26645
|
+
export type RoadmapGoalDetails = {
|
|
26646
|
+
__typename?: 'RoadmapGoalDetails';
|
|
26647
|
+
issueIds?: Maybe<Array<Scalars['Long']['output']>>;
|
|
26648
|
+
key: Scalars['String']['output'];
|
|
26649
|
+
};
|
|
26650
|
+
export type RoadmapGoals = {
|
|
26651
|
+
__typename?: 'RoadmapGoals';
|
|
26652
|
+
goals?: Maybe<Array<RoadmapGoalDetails>>;
|
|
26653
|
+
};
|
|
26637
26654
|
export type RoadmapHealthCheck = {
|
|
26638
26655
|
__typename?: 'RoadmapHealthCheck';
|
|
26639
26656
|
explanation: Scalars['String']['output'];
|
|
@@ -27056,6 +27073,7 @@ export type RoadmapsQuery = {
|
|
|
27056
27073
|
roadmapFilterConfiguration?: Maybe<RoadmapFilterConfiguration>;
|
|
27057
27074
|
roadmapFilterItems: Array<Scalars['ID']['output']>;
|
|
27058
27075
|
roadmapForSource?: Maybe<RoadmapDetails>;
|
|
27076
|
+
roadmapGoals?: Maybe<RoadmapGoals>;
|
|
27059
27077
|
roadmapItemByIds?: Maybe<Array<Maybe<RoadmapItem>>>;
|
|
27060
27078
|
roadmapSubtasksByIds?: Maybe<RoadmapSubtasksWithStatusCategories>;
|
|
27061
27079
|
};
|
|
@@ -27076,6 +27094,9 @@ export type RoadmapsQueryRoadmapForSourceArgs = {
|
|
|
27076
27094
|
locationARI?: InputMaybe<Scalars['ID']['input']>;
|
|
27077
27095
|
sourceARI: Scalars['ID']['input'];
|
|
27078
27096
|
};
|
|
27097
|
+
export type RoadmapsQueryRoadmapGoalsArgs = {
|
|
27098
|
+
sourceARI: Scalars['ID']['input'];
|
|
27099
|
+
};
|
|
27079
27100
|
export type RoadmapsQueryRoadmapItemByIdsArgs = {
|
|
27080
27101
|
ids: Array<Scalars['ID']['input']>;
|
|
27081
27102
|
sourceARI: Scalars['ID']['input'];
|
|
@@ -30197,6 +30218,7 @@ export type TrelloBoard = Node & {
|
|
|
30197
30218
|
closed: Scalars['Boolean']['output'];
|
|
30198
30219
|
creationMethod?: Maybe<Scalars['String']['output']>;
|
|
30199
30220
|
creator?: Maybe<TrelloMember>;
|
|
30221
|
+
customFields?: Maybe<TrelloCustomFieldConnection>;
|
|
30200
30222
|
description?: Maybe<TrelloDescription>;
|
|
30201
30223
|
enterprise?: Maybe<TrelloEnterprise>;
|
|
30202
30224
|
enterpriseOwned: Scalars['Boolean']['output'];
|
|
@@ -30222,6 +30244,10 @@ export type TrelloBoard = Node & {
|
|
|
30222
30244
|
viewer?: Maybe<TrelloBoardViewer>;
|
|
30223
30245
|
workspace?: Maybe<TrelloWorkspace>;
|
|
30224
30246
|
};
|
|
30247
|
+
export type TrelloBoardCustomFieldsArgs = {
|
|
30248
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
30249
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
30250
|
+
};
|
|
30225
30251
|
export type TrelloBoardLabelsArgs = {
|
|
30226
30252
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
30227
30253
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
@@ -30677,7 +30703,21 @@ export type TrelloCreateCardPayload = Payload & {
|
|
|
30677
30703
|
};
|
|
30678
30704
|
export type TrelloCustomField = {
|
|
30679
30705
|
__typename?: 'TrelloCustomField';
|
|
30706
|
+
name?: Maybe<Scalars['String']['output']>;
|
|
30680
30707
|
objectId: Scalars['ID']['output'];
|
|
30708
|
+
position?: Maybe<Scalars['Float']['output']>;
|
|
30709
|
+
type?: Maybe<Scalars['String']['output']>;
|
|
30710
|
+
};
|
|
30711
|
+
export type TrelloCustomFieldConnection = {
|
|
30712
|
+
__typename?: 'TrelloCustomFieldConnection';
|
|
30713
|
+
edges?: Maybe<Array<TrelloCustomFieldEdge>>;
|
|
30714
|
+
nodes?: Maybe<Array<TrelloCustomField>>;
|
|
30715
|
+
pageInfo: PageInfo;
|
|
30716
|
+
};
|
|
30717
|
+
export type TrelloCustomFieldEdge = {
|
|
30718
|
+
__typename?: 'TrelloCustomFieldEdge';
|
|
30719
|
+
cursor: Scalars['String']['output'];
|
|
30720
|
+
node?: Maybe<TrelloCustomField>;
|
|
30681
30721
|
};
|
|
30682
30722
|
export type TrelloCustomFieldItem = {
|
|
30683
30723
|
__typename?: 'TrelloCustomFieldItem';
|