@forge/cli-shared 3.2.3-next.2 → 3.2.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,23 @@
|
|
|
1
1
|
# @forge/cli-shared
|
|
2
2
|
|
|
3
|
+
## 3.2.3
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- 8e2a5a6: Update node-fetch version
|
|
8
|
+
- Updated dependencies [be216ec]
|
|
9
|
+
- Updated dependencies [34d81d4]
|
|
10
|
+
- Updated dependencies [72f098e]
|
|
11
|
+
- Updated dependencies [8e2a5a6]
|
|
12
|
+
- @forge/manifest@4.5.0
|
|
13
|
+
|
|
14
|
+
## 3.2.3-next.3
|
|
15
|
+
|
|
16
|
+
### Patch Changes
|
|
17
|
+
|
|
18
|
+
- Updated dependencies [72f098e]
|
|
19
|
+
- @forge/manifest@4.5.0-next.3
|
|
20
|
+
|
|
3
21
|
## 3.2.3-next.2
|
|
4
22
|
|
|
5
23
|
### Patch Changes
|
|
@@ -324,7 +324,8 @@ export declare enum ApiGroup {
|
|
|
324
324
|
DevopsAriGraph = "DEVOPS_ARI_GRAPH",
|
|
325
325
|
Help = "HELP",
|
|
326
326
|
VirtualAgent = "VIRTUAL_AGENT",
|
|
327
|
-
CollaborationGraph = "COLLABORATION_GRAPH"
|
|
327
|
+
CollaborationGraph = "COLLABORATION_GRAPH",
|
|
328
|
+
DevopsThirdParty = "DEVOPS_THIRD_PARTY"
|
|
328
329
|
}
|
|
329
330
|
export declare type App = {
|
|
330
331
|
__typename?: 'App';
|
|
@@ -984,7 +985,7 @@ export declare type AriGraphRelationshipNode = {
|
|
|
984
985
|
id: Scalars['ID'];
|
|
985
986
|
data?: Maybe<AriGraphRelationshipNodeData>;
|
|
986
987
|
};
|
|
987
|
-
export declare type AriGraphRelationshipNodeData = DeploymentSummary | ConfluencePage | ConfluenceSpace | DevOpsPullRequestDetails | JiraIssue;
|
|
988
|
+
export declare type AriGraphRelationshipNodeData = DeploymentSummary | ConfluencePage | ConfluenceSpace | ThirdPartySecurityWorkspace | ThirdPartySecurityContainer | DevOpsPullRequestDetails | JiraIssue;
|
|
988
989
|
export declare type AriGraphRelationshipsErrorReference = {
|
|
989
990
|
__typename?: 'AriGraphRelationshipsErrorReference';
|
|
990
991
|
from?: Maybe<Scalars['ID']>;
|
|
@@ -5663,7 +5664,9 @@ export declare type DevOps = {
|
|
|
5663
5664
|
summarisedDeployments?: Maybe<Array<Maybe<DevOpsSummarisedDeployments>>>;
|
|
5664
5665
|
pullRequestEntityDetails?: Maybe<Array<Maybe<DevOpsPullRequestDetails>>>;
|
|
5665
5666
|
summarisedEntities?: Maybe<Array<Maybe<DevOpsSummarisedEntities>>>;
|
|
5667
|
+
dataDepotProviders?: Maybe<DevOpsDataDepotProviders>;
|
|
5666
5668
|
ariGraph?: Maybe<AriGraph>;
|
|
5669
|
+
toolchain?: Maybe<Toolchain>;
|
|
5667
5670
|
};
|
|
5668
5671
|
export declare type DevOpsEntitiesByAssociationsArgs = {
|
|
5669
5672
|
ids: Array<Scalars['ID']>;
|
|
@@ -5677,6 +5680,10 @@ export declare type DevOpsPullRequestEntityDetailsArgs = {
|
|
|
5677
5680
|
export declare type DevOpsSummarisedEntitiesArgs = {
|
|
5678
5681
|
ids: Array<Scalars['ID']>;
|
|
5679
5682
|
};
|
|
5683
|
+
export declare type DevOpsDataDepotProvidersArgs = {
|
|
5684
|
+
id: Scalars['ID'];
|
|
5685
|
+
providerTypes?: Maybe<Array<DevOpsDataDepotProviderType>>;
|
|
5686
|
+
};
|
|
5680
5687
|
export declare type DevOpsAvatar = {
|
|
5681
5688
|
__typename?: 'DevOpsAvatar';
|
|
5682
5689
|
url?: Maybe<Scalars['URL']>;
|
|
@@ -5691,6 +5698,35 @@ export declare type DevOpsContainerRelationshipEntityPropertyInput = {
|
|
|
5691
5698
|
key: Scalars['String'];
|
|
5692
5699
|
value: Scalars['JSON'];
|
|
5693
5700
|
};
|
|
5701
|
+
export declare type DevOpsDataDepotProvider = {
|
|
5702
|
+
id: Scalars['ID'];
|
|
5703
|
+
name?: Maybe<Scalars['String']>;
|
|
5704
|
+
homeUrl?: Maybe<Scalars['URL']>;
|
|
5705
|
+
logoUrl?: Maybe<Scalars['URL']>;
|
|
5706
|
+
documentationUrl?: Maybe<Scalars['URL']>;
|
|
5707
|
+
appInstallationId?: Maybe<Scalars['ID']>;
|
|
5708
|
+
};
|
|
5709
|
+
export declare enum DevOpsDataDepotProviderType {
|
|
5710
|
+
DevInfo = "DEV_INFO",
|
|
5711
|
+
Build = "BUILD",
|
|
5712
|
+
Deployment = "DEPLOYMENT",
|
|
5713
|
+
FeatureFlag = "FEATURE_FLAG",
|
|
5714
|
+
RemoteLinks = "REMOTE_LINKS",
|
|
5715
|
+
Security = "SECURITY"
|
|
5716
|
+
}
|
|
5717
|
+
export declare type DevOpsDataDepotProviders = {
|
|
5718
|
+
__typename?: 'DevOpsDataDepotProviders';
|
|
5719
|
+
securityProviders?: Maybe<Array<DevOpsDataDepotSecurityProvider>>;
|
|
5720
|
+
};
|
|
5721
|
+
export declare type DevOpsDataDepotSecurityProvider = DevOpsDataDepotProvider & {
|
|
5722
|
+
__typename?: 'DevOpsDataDepotSecurityProvider';
|
|
5723
|
+
id: Scalars['ID'];
|
|
5724
|
+
name?: Maybe<Scalars['String']>;
|
|
5725
|
+
homeUrl?: Maybe<Scalars['URL']>;
|
|
5726
|
+
logoUrl?: Maybe<Scalars['URL']>;
|
|
5727
|
+
documentationUrl?: Maybe<Scalars['URL']>;
|
|
5728
|
+
appInstallationId?: Maybe<Scalars['ID']>;
|
|
5729
|
+
};
|
|
5694
5730
|
export declare type DevOpsEntities = {
|
|
5695
5731
|
__typename?: 'DevOpsEntities';
|
|
5696
5732
|
featureFlagEntities?: Maybe<DevOpsFeatureFlagConnection>;
|
|
@@ -6837,6 +6873,7 @@ export declare type ExtensionContext = {
|
|
|
6837
6873
|
__typename?: 'ExtensionContext';
|
|
6838
6874
|
id: Scalars['ID'];
|
|
6839
6875
|
extensionsByType: Array<Extension>;
|
|
6876
|
+
installationsSummary?: Maybe<Array<InstallationSummary>>;
|
|
6840
6877
|
appAuditLogs: AppAuditConnection;
|
|
6841
6878
|
installations?: Maybe<AppInstallationConnection>;
|
|
6842
6879
|
};
|
|
@@ -7553,6 +7590,30 @@ export declare type InstallationContextWithLogAccess = {
|
|
|
7553
7590
|
installationContext: Scalars['ID'];
|
|
7554
7591
|
tenantContext?: Maybe<TenantContext>;
|
|
7555
7592
|
};
|
|
7593
|
+
export declare type InstallationSummary = {
|
|
7594
|
+
__typename?: 'InstallationSummary';
|
|
7595
|
+
licenseId?: Maybe<Scalars['String']>;
|
|
7596
|
+
app: InstallationSummaryApp;
|
|
7597
|
+
};
|
|
7598
|
+
export declare type InstallationSummaryApp = {
|
|
7599
|
+
__typename?: 'InstallationSummaryApp';
|
|
7600
|
+
id?: Maybe<Scalars['ID']>;
|
|
7601
|
+
name?: Maybe<Scalars['String']>;
|
|
7602
|
+
description?: Maybe<Scalars['String']>;
|
|
7603
|
+
environment: InstallationSummaryAppEnvironment;
|
|
7604
|
+
};
|
|
7605
|
+
export declare type InstallationSummaryAppEnvironment = {
|
|
7606
|
+
__typename?: 'InstallationSummaryAppEnvironment';
|
|
7607
|
+
id?: Maybe<Scalars['ID']>;
|
|
7608
|
+
key?: Maybe<Scalars['String']>;
|
|
7609
|
+
type?: Maybe<Scalars['String']>;
|
|
7610
|
+
version: InstallationSummaryAppEnvironmentVersion;
|
|
7611
|
+
};
|
|
7612
|
+
export declare type InstallationSummaryAppEnvironmentVersion = {
|
|
7613
|
+
__typename?: 'InstallationSummaryAppEnvironmentVersion';
|
|
7614
|
+
id?: Maybe<Scalars['ID']>;
|
|
7615
|
+
version?: Maybe<Scalars['String']>;
|
|
7616
|
+
};
|
|
7556
7617
|
export declare type InstallationsListFilterByAppEnvironments = {
|
|
7557
7618
|
types: Array<AppEnvironmentType>;
|
|
7558
7619
|
};
|
|
@@ -9310,6 +9371,11 @@ export declare type JiraHierarchyConfigError = {
|
|
|
9310
9371
|
code?: Maybe<Scalars['String']>;
|
|
9311
9372
|
message?: Maybe<Scalars['String']>;
|
|
9312
9373
|
};
|
|
9374
|
+
export declare type JiraHierarchyConfigTask = {
|
|
9375
|
+
__typename?: 'JiraHierarchyConfigTask';
|
|
9376
|
+
taskProgress?: Maybe<JiraLongRunningTaskProgress>;
|
|
9377
|
+
errors?: Maybe<Array<JiraHierarchyConfigError>>;
|
|
9378
|
+
};
|
|
9313
9379
|
export declare enum JiraInstallDeploymentsBannerPrecondition {
|
|
9314
9380
|
NotAvailable = "NOT_AVAILABLE",
|
|
9315
9381
|
FeatureNotEnabled = "FEATURE_NOT_ENABLED",
|
|
@@ -10561,6 +10627,24 @@ export declare type JiraLabelsFieldPayload = Payload & {
|
|
|
10561
10627
|
errors?: Maybe<Array<MutationError>>;
|
|
10562
10628
|
field?: Maybe<JiraLabelsField>;
|
|
10563
10629
|
};
|
|
10630
|
+
export declare type JiraLongRunningTaskProgress = {
|
|
10631
|
+
__typename?: 'JiraLongRunningTaskProgress';
|
|
10632
|
+
description?: Maybe<Scalars['String']>;
|
|
10633
|
+
message?: Maybe<Scalars['String']>;
|
|
10634
|
+
status: JiraLongRunningTaskStatus;
|
|
10635
|
+
progress: Scalars['Long'];
|
|
10636
|
+
startTime?: Maybe<Scalars['DateTime']>;
|
|
10637
|
+
result?: Maybe<Scalars['String']>;
|
|
10638
|
+
};
|
|
10639
|
+
export declare enum JiraLongRunningTaskStatus {
|
|
10640
|
+
Enqueued = "ENQUEUED",
|
|
10641
|
+
Running = "RUNNING",
|
|
10642
|
+
Complete = "COMPLETE",
|
|
10643
|
+
Failed = "FAILED",
|
|
10644
|
+
CancelRequested = "CANCEL_REQUESTED",
|
|
10645
|
+
Cancelled = "CANCELLED",
|
|
10646
|
+
Dead = "DEAD"
|
|
10647
|
+
}
|
|
10564
10648
|
export declare type JiraMediaContext = {
|
|
10565
10649
|
__typename?: 'JiraMediaContext';
|
|
10566
10650
|
uploadToken?: Maybe<JiraMediaUploadTokenResult>;
|
|
@@ -11701,6 +11785,7 @@ export declare type JiraQuery = {
|
|
|
11701
11785
|
issueHierarchyConfig?: Maybe<JiraIssueHierarchyConfigurationQuery>;
|
|
11702
11786
|
issueHierarchyLimits?: Maybe<JiraIssueHierarchyLimits>;
|
|
11703
11787
|
lockedIssueTypeIds?: Maybe<Array<Scalars['ID']>>;
|
|
11788
|
+
issueHierarchyConfigUpdateTask?: Maybe<JiraHierarchyConfigTask>;
|
|
11704
11789
|
jiraProjects?: Maybe<Array<Maybe<JiraProject>>>;
|
|
11705
11790
|
jiraProjectByKey?: Maybe<JiraProject>;
|
|
11706
11791
|
version?: Maybe<JiraVersionResult>;
|
|
@@ -11851,6 +11936,9 @@ export declare type JiraQueryIssueHierarchyLimitsArgs = {
|
|
|
11851
11936
|
export declare type JiraQueryLockedIssueTypeIdsArgs = {
|
|
11852
11937
|
cloudId: Scalars['ID'];
|
|
11853
11938
|
};
|
|
11939
|
+
export declare type JiraQueryIssueHierarchyConfigUpdateTaskArgs = {
|
|
11940
|
+
cloudId: Scalars['ID'];
|
|
11941
|
+
};
|
|
11854
11942
|
export declare type JiraQueryJiraProjectsArgs = {
|
|
11855
11943
|
ids: Array<Scalars['ID']>;
|
|
11856
11944
|
};
|
|
@@ -13371,6 +13459,7 @@ export declare type JiraVersion = Node & {
|
|
|
13371
13459
|
project?: Maybe<JiraProject>;
|
|
13372
13460
|
canEdit?: Maybe<Scalars['Boolean']>;
|
|
13373
13461
|
canAddAndRemoveIssues?: Maybe<Scalars['Boolean']>;
|
|
13462
|
+
canViewDevTools?: Maybe<Scalars['Boolean']>;
|
|
13374
13463
|
releaseNotesOptionsIssueTypes?: Maybe<JiraIssueTypeConnection>;
|
|
13375
13464
|
releaseNotesOptionsIssueFields?: Maybe<JiraIssueFieldConnection>;
|
|
13376
13465
|
nativeReleaseNotesOptionsIssueFields?: Maybe<JiraIssueFieldConnection>;
|
|
@@ -17984,6 +18073,20 @@ export declare type SearchSpace = {
|
|
|
17984
18073
|
key: Scalars['String'];
|
|
17985
18074
|
iconUrl: Scalars['URL'];
|
|
17986
18075
|
};
|
|
18076
|
+
export declare type SecurityContainer = {
|
|
18077
|
+
name: Scalars['String'];
|
|
18078
|
+
url?: Maybe<Scalars['URL']>;
|
|
18079
|
+
icon?: Maybe<Scalars['URL']>;
|
|
18080
|
+
providerName?: Maybe<Scalars['String']>;
|
|
18081
|
+
lastUpdated?: Maybe<Scalars['DateTime']>;
|
|
18082
|
+
};
|
|
18083
|
+
export declare type SecurityWorkspace = {
|
|
18084
|
+
name: Scalars['String'];
|
|
18085
|
+
url?: Maybe<Scalars['URL']>;
|
|
18086
|
+
icon?: Maybe<Scalars['URL']>;
|
|
18087
|
+
providerName?: Maybe<Scalars['String']>;
|
|
18088
|
+
lastUpdated?: Maybe<Scalars['DateTime']>;
|
|
18089
|
+
};
|
|
17987
18090
|
export declare type SetAppEnvironmentVariableInput = {
|
|
17988
18091
|
environment: AppEnvironmentInput;
|
|
17989
18092
|
environmentVariable: AppEnvironmentVariableInput;
|
|
@@ -19372,6 +19475,24 @@ export declare type ThirdPartyRepositoryInput = {
|
|
|
19372
19475
|
name?: Maybe<Scalars['String']>;
|
|
19373
19476
|
avatar?: Maybe<AvatarInput>;
|
|
19374
19477
|
};
|
|
19478
|
+
export declare type ThirdPartySecurityContainer = SecurityContainer & Node & {
|
|
19479
|
+
__typename?: 'ThirdPartySecurityContainer';
|
|
19480
|
+
id: Scalars['ID'];
|
|
19481
|
+
name: Scalars['String'];
|
|
19482
|
+
url?: Maybe<Scalars['URL']>;
|
|
19483
|
+
icon?: Maybe<Scalars['URL']>;
|
|
19484
|
+
providerName?: Maybe<Scalars['String']>;
|
|
19485
|
+
lastUpdated?: Maybe<Scalars['DateTime']>;
|
|
19486
|
+
};
|
|
19487
|
+
export declare type ThirdPartySecurityWorkspace = SecurityWorkspace & Node & {
|
|
19488
|
+
__typename?: 'ThirdPartySecurityWorkspace';
|
|
19489
|
+
id: Scalars['ID'];
|
|
19490
|
+
name: Scalars['String'];
|
|
19491
|
+
url?: Maybe<Scalars['URL']>;
|
|
19492
|
+
icon?: Maybe<Scalars['URL']>;
|
|
19493
|
+
providerName?: Maybe<Scalars['String']>;
|
|
19494
|
+
lastUpdated?: Maybe<Scalars['DateTime']>;
|
|
19495
|
+
};
|
|
19375
19496
|
export declare type TimeSeriesPoint = {
|
|
19376
19497
|
__typename?: 'TimeSeriesPoint';
|
|
19377
19498
|
id: Scalars['ID'];
|
|
@@ -19390,6 +19511,32 @@ export declare type ToggleBoardFeatureOutput = MutationResponse & {
|
|
|
19390
19511
|
message: Scalars['String'];
|
|
19391
19512
|
clientMutationId?: Maybe<Scalars['ID']>;
|
|
19392
19513
|
};
|
|
19514
|
+
export declare type Toolchain = {
|
|
19515
|
+
__typename?: 'Toolchain';
|
|
19516
|
+
containers?: Maybe<ToolchainContainerConnection>;
|
|
19517
|
+
};
|
|
19518
|
+
export declare type ToolchainContainersArgs = {
|
|
19519
|
+
workspaceId: Scalars['ID'];
|
|
19520
|
+
query?: Maybe<Scalars['String']>;
|
|
19521
|
+
first?: Maybe<Scalars['Int']>;
|
|
19522
|
+
after?: Maybe<Scalars['String']>;
|
|
19523
|
+
};
|
|
19524
|
+
export declare type ToolchainContainer = Node & {
|
|
19525
|
+
__typename?: 'ToolchainContainer';
|
|
19526
|
+
id: Scalars['ID'];
|
|
19527
|
+
name: Scalars['String'];
|
|
19528
|
+
};
|
|
19529
|
+
export declare type ToolchainContainerConnection = {
|
|
19530
|
+
__typename?: 'ToolchainContainerConnection';
|
|
19531
|
+
edges?: Maybe<Array<Maybe<ToolchainContainerEdge>>>;
|
|
19532
|
+
nodes?: Maybe<Array<Maybe<ToolchainContainer>>>;
|
|
19533
|
+
pageInfo: PageInfo;
|
|
19534
|
+
};
|
|
19535
|
+
export declare type ToolchainContainerEdge = {
|
|
19536
|
+
__typename?: 'ToolchainContainerEdge';
|
|
19537
|
+
cursor: Scalars['String'];
|
|
19538
|
+
node?: Maybe<ToolchainContainer>;
|
|
19539
|
+
};
|
|
19393
19540
|
export declare type TownsquareComment = Node & {
|
|
19394
19541
|
__typename?: 'TownsquareComment';
|
|
19395
19542
|
creator?: Maybe<User>;
|