@forge/cli-shared 3.23.2 → 3.23.3-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,23 @@
|
|
|
1
1
|
# @forge/cli-shared
|
|
2
2
|
|
|
3
|
+
## 3.23.3-next.1
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- Updated dependencies [96feb0c]
|
|
8
|
+
- @forge/manifest@5.5.3-next.1
|
|
9
|
+
|
|
10
|
+
## 3.23.3-next.0
|
|
11
|
+
|
|
12
|
+
### Patch Changes
|
|
13
|
+
|
|
14
|
+
- 32fa518: Bumping dependencies via Renovate:
|
|
15
|
+
|
|
16
|
+
- @types/node-fetch
|
|
17
|
+
|
|
18
|
+
- Updated dependencies [32fa518]
|
|
19
|
+
- @forge/manifest@5.5.3-next.0
|
|
20
|
+
|
|
3
21
|
## 3.23.2
|
|
4
22
|
|
|
5
23
|
### Patch Changes
|
|
@@ -6376,6 +6376,7 @@ export declare type ConfluenceSpaceMetadata = {
|
|
|
6376
6376
|
recentCommenters?: Maybe<Array<Maybe<ConfluenceUserInfo>>>;
|
|
6377
6377
|
recentWatchers?: Maybe<Array<Maybe<ConfluenceUserInfo>>>;
|
|
6378
6378
|
totalCommenters?: Maybe<Scalars['Int']['output']>;
|
|
6379
|
+
totalCurrentBlogPosts?: Maybe<Scalars['Int']['output']>;
|
|
6379
6380
|
totalCurrentPages?: Maybe<Scalars['Int']['output']>;
|
|
6380
6381
|
totalWatchers?: Maybe<Scalars['Int']['output']>;
|
|
6381
6382
|
};
|
|
@@ -26064,7 +26065,33 @@ export declare type JiraClassificationLevel = {
|
|
|
26064
26065
|
guidelines?: Maybe<Scalars['String']['output']>;
|
|
26065
26066
|
id: Scalars['ID']['output'];
|
|
26066
26067
|
name?: Maybe<Scalars['String']['output']>;
|
|
26068
|
+
status?: Maybe<JiraClassificationLevelStatus>;
|
|
26067
26069
|
};
|
|
26070
|
+
export declare type JiraClassificationLevelConnection = {
|
|
26071
|
+
__typename?: 'JiraClassificationLevelConnection';
|
|
26072
|
+
edges?: Maybe<Array<Maybe<JiraClassificationLevelEdge>>>;
|
|
26073
|
+
errors?: Maybe<Array<QueryError>>;
|
|
26074
|
+
pageInfo?: Maybe<PageInfo>;
|
|
26075
|
+
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
26076
|
+
};
|
|
26077
|
+
export declare type JiraClassificationLevelEdge = {
|
|
26078
|
+
__typename?: 'JiraClassificationLevelEdge';
|
|
26079
|
+
cursor: Scalars['String']['output'];
|
|
26080
|
+
node?: Maybe<JiraClassificationLevel>;
|
|
26081
|
+
};
|
|
26082
|
+
export declare type JiraClassificationLevelFilterInput = {
|
|
26083
|
+
filterByStatus: Array<JiraClassificationLevelStatus>;
|
|
26084
|
+
filterByType: Array<JiraClassificationLevelType>;
|
|
26085
|
+
};
|
|
26086
|
+
export declare enum JiraClassificationLevelStatus {
|
|
26087
|
+
Archived = "ARCHIVED",
|
|
26088
|
+
Draft = "DRAFT",
|
|
26089
|
+
Published = "PUBLISHED"
|
|
26090
|
+
}
|
|
26091
|
+
export declare enum JiraClassificationLevelType {
|
|
26092
|
+
System = "SYSTEM",
|
|
26093
|
+
User = "USER"
|
|
26094
|
+
}
|
|
26068
26095
|
export declare type JiraClearableNumberFieldInput = {
|
|
26069
26096
|
fieldId: Scalars['ID']['input'];
|
|
26070
26097
|
value?: InputMaybe<Scalars['Float']['input']>;
|
|
@@ -26652,12 +26679,23 @@ export declare type JiraDataClassificationField = JiraIssueField & Node & {
|
|
|
26652
26679
|
aliasFieldId?: Maybe<Scalars['ID']['output']>;
|
|
26653
26680
|
classification?: Maybe<JiraDataClassification>;
|
|
26654
26681
|
classificationLevel?: Maybe<JiraClassificationLevel>;
|
|
26682
|
+
classificationLevels?: Maybe<JiraClassificationLevelConnection>;
|
|
26683
|
+
defaultClassificationLevel?: Maybe<JiraClassificationLevel>;
|
|
26655
26684
|
description?: Maybe<Scalars['String']['output']>;
|
|
26656
26685
|
fieldId: Scalars['String']['output'];
|
|
26657
26686
|
id: Scalars['ID']['output'];
|
|
26658
26687
|
name: Scalars['String']['output'];
|
|
26659
26688
|
type: Scalars['String']['output'];
|
|
26660
26689
|
};
|
|
26690
|
+
export declare type JiraDataClassificationFieldClassificationLevelsArgs = {
|
|
26691
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
26692
|
+
before?: InputMaybe<Scalars['String']['input']>;
|
|
26693
|
+
filterByCriteria?: InputMaybe<JiraClassificationLevelFilterInput>;
|
|
26694
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
26695
|
+
last?: InputMaybe<Scalars['Int']['input']>;
|
|
26696
|
+
searchBy?: InputMaybe<Scalars['String']['input']>;
|
|
26697
|
+
suggested?: InputMaybe<Scalars['Boolean']['input']>;
|
|
26698
|
+
};
|
|
26661
26699
|
export declare type JiraDataClassificationFieldOperationInput = {
|
|
26662
26700
|
classificationLevel: Scalars['ID']['input'];
|
|
26663
26701
|
operation: JiraSingleValueFieldOperations;
|
|
@@ -28499,6 +28537,7 @@ export declare type JiraIssueTransitionFieldLevelInput = {
|
|
|
28499
28537
|
JiraSingleLineTextField?: InputMaybe<Array<JiraUpdateSingleLineTextFieldInput>>;
|
|
28500
28538
|
JiraSingleSelectField?: InputMaybe<Array<JiraUpdateSingleSelectFieldInput>>;
|
|
28501
28539
|
JiraSingleSelectUserPickerField?: InputMaybe<Array<JiraUpdateSingleSelectUserPickerFieldInput>>;
|
|
28540
|
+
JiraSprintField?: InputMaybe<Array<JiraUpdateSprintFieldInput>>;
|
|
28502
28541
|
JiraTeamField?: InputMaybe<Array<JiraUpdateTeamFieldInput>>;
|
|
28503
28542
|
JiraUrlField?: InputMaybe<Array<JiraUpdateUrlFieldInput>>;
|
|
28504
28543
|
};
|
|
@@ -28663,7 +28702,6 @@ export declare enum JiraJqlAutocompleteType {
|
|
|
28663
28702
|
}
|
|
28664
28703
|
export declare type JiraJqlBuilder = {
|
|
28665
28704
|
__typename?: 'JiraJqlBuilder';
|
|
28666
|
-
cascadingSelectOptions?: Maybe<JiraJqlOptionFieldValueConnection>;
|
|
28667
28705
|
cascadingSelectValues?: Maybe<JiraJqlCascadingOptionFieldValueConnection>;
|
|
28668
28706
|
fieldValues?: Maybe<JiraJqlFieldValueConnection>;
|
|
28669
28707
|
fields?: Maybe<JiraJqlFieldConnectionResult>;
|
|
@@ -28678,16 +28716,6 @@ export declare type JiraJqlBuilder = {
|
|
|
28678
28716
|
suggestedGroups?: Maybe<JiraJqlGroupFieldValueConnection>;
|
|
28679
28717
|
versions?: Maybe<JiraJqlVersions>;
|
|
28680
28718
|
};
|
|
28681
|
-
export declare type JiraJqlBuilderCascadingSelectOptionsArgs = {
|
|
28682
|
-
after?: InputMaybe<Scalars['String']['input']>;
|
|
28683
|
-
before?: InputMaybe<Scalars['String']['input']>;
|
|
28684
|
-
filter: JiraCascadingSelectOptionsFilter;
|
|
28685
|
-
first?: InputMaybe<Scalars['Int']['input']>;
|
|
28686
|
-
jqlContext?: InputMaybe<Scalars['String']['input']>;
|
|
28687
|
-
jqlTerm: Scalars['String']['input'];
|
|
28688
|
-
last?: InputMaybe<Scalars['Int']['input']>;
|
|
28689
|
-
searchString?: InputMaybe<Scalars['String']['input']>;
|
|
28690
|
-
};
|
|
28691
28719
|
export declare type JiraJqlBuilderCascadingSelectValuesArgs = {
|
|
28692
28720
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
28693
28721
|
before?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -33492,6 +33520,7 @@ export declare type JiraSprintFieldSprintsArgs = {
|
|
|
33492
33520
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
33493
33521
|
before?: InputMaybe<Scalars['String']['input']>;
|
|
33494
33522
|
currentProjectOnly?: InputMaybe<Scalars['Boolean']['input']>;
|
|
33523
|
+
filterById?: InputMaybe<JiraFieldOptionIdsFilterInput>;
|
|
33495
33524
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
33496
33525
|
last?: InputMaybe<Scalars['Int']['input']>;
|
|
33497
33526
|
searchBy?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -40959,6 +40988,7 @@ export declare type ShepherdActivityHighlightInput = {
|
|
|
40959
40988
|
actorSessionInfo?: InputMaybe<ShepherdActorSessionInfoInput>;
|
|
40960
40989
|
eventIds?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
40961
40990
|
histogram?: InputMaybe<Array<InputMaybe<ShepherdHistogramBucketInput>>>;
|
|
40991
|
+
resourceEvents?: InputMaybe<Array<ShepherdResourceEventInput>>;
|
|
40962
40992
|
subject?: InputMaybe<ShepherdSubjectInput>;
|
|
40963
40993
|
time: ShepherdTimeInput;
|
|
40964
40994
|
};
|
|
@@ -40984,6 +41014,7 @@ export declare type ShepherdActorOrgInfoArgs = {
|
|
|
40984
41014
|
export declare type ShepherdActorActivity = {
|
|
40985
41015
|
__typename?: 'ShepherdActorActivity';
|
|
40986
41016
|
actor: ShepherdActor;
|
|
41017
|
+
context: Array<ShepherdAuditLogContext>;
|
|
40987
41018
|
eventType: Scalars['String']['output'];
|
|
40988
41019
|
id: Scalars['String']['output'];
|
|
40989
41020
|
message?: Maybe<Scalars['JSON']['output']>;
|
|
@@ -41186,6 +41217,16 @@ export declare enum ShepherdAtlassianProduct {
|
|
|
41186
41217
|
JiraSoftware = "JIRA_SOFTWARE",
|
|
41187
41218
|
Marketplace = "MARKETPLACE"
|
|
41188
41219
|
}
|
|
41220
|
+
export declare type ShepherdAuditLogAttribute = {
|
|
41221
|
+
__typename?: 'ShepherdAuditLogAttribute';
|
|
41222
|
+
name: Scalars['String']['output'];
|
|
41223
|
+
value: Scalars['String']['output'];
|
|
41224
|
+
};
|
|
41225
|
+
export declare type ShepherdAuditLogContext = {
|
|
41226
|
+
__typename?: 'ShepherdAuditLogContext';
|
|
41227
|
+
attributes: Array<ShepherdAuditLogAttribute>;
|
|
41228
|
+
id: Scalars['String']['output'];
|
|
41229
|
+
};
|
|
41189
41230
|
export declare type ShepherdCategorizedAlertMetadata = {
|
|
41190
41231
|
__typename?: 'ShepherdCategorizedAlertMetadata';
|
|
41191
41232
|
category: Scalars['String']['output'];
|
|
@@ -41499,6 +41540,7 @@ export declare type ShepherdResourceActivity = {
|
|
|
41499
41540
|
__typename?: 'ShepherdResourceActivity';
|
|
41500
41541
|
action: ShepherdActionType;
|
|
41501
41542
|
actor: ShepherdActor;
|
|
41543
|
+
context: Array<ShepherdAuditLogContext>;
|
|
41502
41544
|
id: Scalars['String']['output'];
|
|
41503
41545
|
resourceAri: Scalars['String']['output'];
|
|
41504
41546
|
resourceUrl?: Maybe<Scalars['String']['output']>;
|
|
@@ -41509,6 +41551,10 @@ export declare type ShepherdResourceEvent = {
|
|
|
41509
41551
|
ari: Scalars['String']['output'];
|
|
41510
41552
|
time: Scalars['DateTime']['output'];
|
|
41511
41553
|
};
|
|
41554
|
+
export declare type ShepherdResourceEventInput = {
|
|
41555
|
+
ari: Scalars['String']['input'];
|
|
41556
|
+
time: Scalars['DateTime']['input'];
|
|
41557
|
+
};
|
|
41512
41558
|
export declare type ShepherdSite = {
|
|
41513
41559
|
__typename?: 'ShepherdSite';
|
|
41514
41560
|
cloudId: Scalars['ID']['output'];
|
|
@@ -44034,6 +44080,7 @@ export declare type TrelloJwmWorkspaceLink = {
|
|
|
44034
44080
|
__typename?: 'TrelloJwmWorkspaceLink';
|
|
44035
44081
|
cloudId?: Maybe<Scalars['String']['output']>;
|
|
44036
44082
|
entityUrl?: Maybe<Scalars['URL']['output']>;
|
|
44083
|
+
inaccessible?: Maybe<Scalars['Boolean']['output']>;
|
|
44037
44084
|
};
|
|
44038
44085
|
export declare type TrelloLabel = {
|
|
44039
44086
|
__typename?: 'TrelloLabel';
|
|
@@ -44291,10 +44338,6 @@ export declare type TrelloPowerUpUpdated = {
|
|
|
44291
44338
|
__typename?: 'TrelloPowerUpUpdated';
|
|
44292
44339
|
objectId?: Maybe<Scalars['ID']['output']>;
|
|
44293
44340
|
};
|
|
44294
|
-
export declare type TrelloProduct = {
|
|
44295
|
-
__typename?: 'TrelloProduct';
|
|
44296
|
-
sku: Scalars['Int']['output'];
|
|
44297
|
-
};
|
|
44298
44341
|
export declare type TrelloQueryApi = {
|
|
44299
44342
|
__typename?: 'TrelloQueryApi';
|
|
44300
44343
|
board?: Maybe<TrelloBoard>;
|
|
@@ -44527,7 +44570,6 @@ export declare type TrelloWorkspace = Node & {
|
|
|
44527
44570
|
offering?: Maybe<Scalars['String']['output']>;
|
|
44528
44571
|
prefs: TrelloWorkspacePrefs;
|
|
44529
44572
|
premiumFeatures?: Maybe<Array<Scalars['String']['output']>>;
|
|
44530
|
-
products?: Maybe<Array<Maybe<TrelloProduct>>>;
|
|
44531
44573
|
tags?: Maybe<TrelloTagConnection>;
|
|
44532
44574
|
url: Scalars['String']['output'];
|
|
44533
44575
|
website?: Maybe<Scalars['String']['output']>;
|
|
@@ -45466,6 +45508,7 @@ export declare type VirtualAgentIntentStatisticsProjection = {
|
|
|
45466
45508
|
};
|
|
45467
45509
|
export declare type VirtualAgentIntentTemplate = Node & {
|
|
45468
45510
|
__typename?: 'VirtualAgentIntentTemplate';
|
|
45511
|
+
createdAt?: Maybe<Scalars['DateTime']['output']>;
|
|
45469
45512
|
description?: Maybe<Scalars['String']['output']>;
|
|
45470
45513
|
id: Scalars['ID']['output'];
|
|
45471
45514
|
name: Scalars['String']['output'];
|