@forge/cli-shared 2.6.0-next.3 → 2.6.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,18 @@
|
|
|
1
1
|
# @forge/cli-shared
|
|
2
2
|
|
|
3
|
+
## 2.6.0
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- 69f42bd: Added a utility function to wrap potentially unknown errors in an error, or return the original error"
|
|
8
|
+
|
|
9
|
+
### Patch Changes
|
|
10
|
+
|
|
11
|
+
- Updated dependencies [b447be2]
|
|
12
|
+
- Updated dependencies [4285fc3]
|
|
13
|
+
- Updated dependencies [74e00c8]
|
|
14
|
+
- @forge/manifest@3.9.0
|
|
15
|
+
|
|
3
16
|
## 2.6.0-next.3
|
|
4
17
|
|
|
5
18
|
### Patch Changes
|
|
@@ -1687,6 +1687,8 @@ export declare type CompassCatalogMutationApi = {
|
|
|
1687
1687
|
updateComponentDataManagerMetadata?: Maybe<UpdateCompassComponentDataManagerMetadataPayload>;
|
|
1688
1688
|
createComponentExternalAlias?: Maybe<CreateCompassComponentExternalAliasPayload>;
|
|
1689
1689
|
deleteComponentExternalAlias?: Maybe<DeleteCompassComponentExternalAliasPayload>;
|
|
1690
|
+
createComponentSubscription?: Maybe<CompassCreateComponentSubscriptionPayload>;
|
|
1691
|
+
deleteComponentSubscription?: Maybe<CompassDeleteComponentSubscriptionPayload>;
|
|
1690
1692
|
unlinkExternalSource?: Maybe<UnlinkExternalSourcePayload>;
|
|
1691
1693
|
createRelationship?: Maybe<CreateCompassRelationshipPayload>;
|
|
1692
1694
|
deleteRelationship?: Maybe<DeleteCompassRelationshipPayload>;
|
|
@@ -1761,6 +1763,12 @@ export declare type CompassCatalogMutationApiCreateComponentExternalAliasArgs =
|
|
|
1761
1763
|
export declare type CompassCatalogMutationApiDeleteComponentExternalAliasArgs = {
|
|
1762
1764
|
input: DeleteCompassComponentExternalAliasInput;
|
|
1763
1765
|
};
|
|
1766
|
+
export declare type CompassCatalogMutationApiCreateComponentSubscriptionArgs = {
|
|
1767
|
+
input: CompassCreateComponentSubscriptionInput;
|
|
1768
|
+
};
|
|
1769
|
+
export declare type CompassCatalogMutationApiDeleteComponentSubscriptionArgs = {
|
|
1770
|
+
input: CompassDeleteComponentSubscriptionInput;
|
|
1771
|
+
};
|
|
1764
1772
|
export declare type CompassCatalogMutationApiUnlinkExternalSourceArgs = {
|
|
1765
1773
|
input: UnlinkExternalSourceInput;
|
|
1766
1774
|
};
|
|
@@ -1981,6 +1989,7 @@ export declare type CompassComponent = Node & {
|
|
|
1981
1989
|
eventSources?: Maybe<Array<EventSource>>;
|
|
1982
1990
|
scorecardScore?: Maybe<CompassScorecardScore>;
|
|
1983
1991
|
metricSources?: Maybe<CompassComponentMetricSourcesQueryResult>;
|
|
1992
|
+
viewerSubscription?: Maybe<CompassViewerSubscription>;
|
|
1984
1993
|
customFields?: Maybe<Array<CompassCustomField>>;
|
|
1985
1994
|
};
|
|
1986
1995
|
export declare type CompassComponentRelationshipsArgs = {
|
|
@@ -2058,6 +2067,15 @@ export declare type CompassCreateBuildEventInput = {
|
|
|
2058
2067
|
externalEventSourceId: Scalars['ID'];
|
|
2059
2068
|
buildProperties: CompassBuildEventPropertiesInput;
|
|
2060
2069
|
};
|
|
2070
|
+
export declare type CompassCreateComponentSubscriptionInput = {
|
|
2071
|
+
componentId: Scalars['ID'];
|
|
2072
|
+
};
|
|
2073
|
+
export declare type CompassCreateComponentSubscriptionPayload = Payload & {
|
|
2074
|
+
__typename?: 'CompassCreateComponentSubscriptionPayload';
|
|
2075
|
+
component?: Maybe<CompassComponent>;
|
|
2076
|
+
success: Scalars['Boolean'];
|
|
2077
|
+
errors?: Maybe<Array<MutationError>>;
|
|
2078
|
+
};
|
|
2061
2079
|
export declare type CompassCreateCustomBooleanFieldDefinitionInput = {
|
|
2062
2080
|
cloudId: Scalars['ID'];
|
|
2063
2081
|
name: Scalars['String'];
|
|
@@ -2342,6 +2360,14 @@ export declare type CompassDeleteAnnouncementPayload = Payload & {
|
|
|
2342
2360
|
success: Scalars['Boolean'];
|
|
2343
2361
|
errors?: Maybe<Array<MutationError>>;
|
|
2344
2362
|
};
|
|
2363
|
+
export declare type CompassDeleteComponentSubscriptionInput = {
|
|
2364
|
+
componentId: Scalars['ID'];
|
|
2365
|
+
};
|
|
2366
|
+
export declare type CompassDeleteComponentSubscriptionPayload = Payload & {
|
|
2367
|
+
__typename?: 'CompassDeleteComponentSubscriptionPayload';
|
|
2368
|
+
success: Scalars['Boolean'];
|
|
2369
|
+
errors?: Maybe<Array<MutationError>>;
|
|
2370
|
+
};
|
|
2345
2371
|
export declare type CompassDeleteCustomFieldDefinitionInput = {
|
|
2346
2372
|
id: Scalars['ID'];
|
|
2347
2373
|
};
|
|
@@ -3169,6 +3195,10 @@ export declare type CompassUpdateTeamCheckinPayload = Payload & {
|
|
|
3169
3195
|
export declare type CompassUpdateTeamCheckinResponseRichText = {
|
|
3170
3196
|
adf?: Maybe<Scalars['String']>;
|
|
3171
3197
|
};
|
|
3198
|
+
export declare type CompassViewerSubscription = {
|
|
3199
|
+
__typename?: 'CompassViewerSubscription';
|
|
3200
|
+
subscribed: Scalars['Boolean'];
|
|
3201
|
+
};
|
|
3172
3202
|
export declare type CompatibleAtlassianCloudProduct = CompatibleAtlassianProduct & {
|
|
3173
3203
|
__typename?: 'CompatibleAtlassianCloudProduct';
|
|
3174
3204
|
id: Scalars['ID'];
|
|
@@ -7203,6 +7233,12 @@ export declare type JiraAvatar = {
|
|
|
7203
7233
|
medium?: Maybe<Scalars['String']>;
|
|
7204
7234
|
large?: Maybe<Scalars['String']>;
|
|
7205
7235
|
};
|
|
7236
|
+
export declare type JiraBitbucketDevOpsProvider = JiraDevOpsProvider & {
|
|
7237
|
+
__typename?: 'JiraBitbucketDevOpsProvider';
|
|
7238
|
+
displayName?: Maybe<Scalars['String']>;
|
|
7239
|
+
webUrl?: Maybe<Scalars['URL']>;
|
|
7240
|
+
capabilities?: Maybe<Array<Maybe<JiraDevOpsCapability>>>;
|
|
7241
|
+
};
|
|
7206
7242
|
export declare type JiraBooleanField = Node & JiraIssueField & JiraIssueFieldConfiguration & JiraUserIssueFieldConfiguration & {
|
|
7207
7243
|
__typename?: 'JiraBooleanField';
|
|
7208
7244
|
id: Scalars['ID'];
|
|
@@ -7330,6 +7366,15 @@ export declare type JiraChildIssuesWithinLimitIssuesArgs = {
|
|
|
7330
7366
|
last?: Maybe<Scalars['Int']>;
|
|
7331
7367
|
before?: Maybe<Scalars['String']>;
|
|
7332
7368
|
};
|
|
7369
|
+
export declare type JiraClassicConnectDevOpsProvider = JiraDevOpsProvider & {
|
|
7370
|
+
__typename?: 'JiraClassicConnectDevOpsProvider';
|
|
7371
|
+
displayName?: Maybe<Scalars['String']>;
|
|
7372
|
+
webUrl?: Maybe<Scalars['URL']>;
|
|
7373
|
+
capabilities?: Maybe<Array<Maybe<JiraDevOpsCapability>>>;
|
|
7374
|
+
iconUrl?: Maybe<Scalars['URL']>;
|
|
7375
|
+
connectAppId?: Maybe<Scalars['ID']>;
|
|
7376
|
+
marketplaceApp?: Maybe<MarketplaceApp>;
|
|
7377
|
+
};
|
|
7333
7378
|
export declare type JiraCmdbAttribute = {
|
|
7334
7379
|
__typename?: 'JiraCmdbAttribute';
|
|
7335
7380
|
objectTypeAttributeId?: Maybe<Scalars['String']>;
|
|
@@ -7786,6 +7831,15 @@ export declare type JiraDevOpsBranchDetails = {
|
|
|
7786
7831
|
name?: Maybe<Scalars['String']>;
|
|
7787
7832
|
scmRepository?: Maybe<JiraScmRepository>;
|
|
7788
7833
|
};
|
|
7834
|
+
export declare enum JiraDevOpsCapability {
|
|
7835
|
+
Commit = "COMMIT",
|
|
7836
|
+
Branch = "BRANCH",
|
|
7837
|
+
PullRequest = "PULL_REQUEST",
|
|
7838
|
+
Build = "BUILD",
|
|
7839
|
+
Deployment = "DEPLOYMENT",
|
|
7840
|
+
FeatureFlag = "FEATURE_FLAG",
|
|
7841
|
+
Review = "REVIEW"
|
|
7842
|
+
}
|
|
7789
7843
|
export declare type JiraDevOpsCommitDetails = {
|
|
7790
7844
|
__typename?: 'JiraDevOpsCommitDetails';
|
|
7791
7845
|
providerCommitId?: Maybe<Scalars['String']>;
|
|
@@ -7828,6 +7882,11 @@ export declare type JiraDevOpsMutationOptoutOfDevOpsIssuePanelNotConnectedStateA
|
|
|
7828
7882
|
export declare type JiraDevOpsMutationDismissDevOpsIssuePanelBannerArgs = {
|
|
7829
7883
|
input: JiraDismissDevOpsIssuePanelBannerInput;
|
|
7830
7884
|
};
|
|
7885
|
+
export declare type JiraDevOpsProvider = {
|
|
7886
|
+
displayName?: Maybe<Scalars['String']>;
|
|
7887
|
+
webUrl?: Maybe<Scalars['URL']>;
|
|
7888
|
+
capabilities?: Maybe<Array<Maybe<JiraDevOpsCapability>>>;
|
|
7889
|
+
};
|
|
7831
7890
|
export declare type JiraDevOpsPullRequestDetails = {
|
|
7832
7891
|
__typename?: 'JiraDevOpsPullRequestDetails';
|
|
7833
7892
|
providerPullRequestId?: Maybe<Scalars['String']>;
|
|
@@ -9807,6 +9866,15 @@ export declare type JiraOAuthAppsUrlTemplate = {
|
|
|
9807
9866
|
export declare type JiraOAuthAppsUrlTemplateInput = {
|
|
9808
9867
|
urlTemplate: Scalars['String'];
|
|
9809
9868
|
};
|
|
9869
|
+
export declare type JiraOAuthDevOpsProvider = JiraDevOpsProvider & {
|
|
9870
|
+
__typename?: 'JiraOAuthDevOpsProvider';
|
|
9871
|
+
displayName?: Maybe<Scalars['String']>;
|
|
9872
|
+
webUrl?: Maybe<Scalars['URL']>;
|
|
9873
|
+
capabilities?: Maybe<Array<Maybe<JiraDevOpsCapability>>>;
|
|
9874
|
+
iconUrl?: Maybe<Scalars['URL']>;
|
|
9875
|
+
oauthAppId?: Maybe<Scalars['ID']>;
|
|
9876
|
+
marketplaceApp?: Maybe<MarketplaceApp>;
|
|
9877
|
+
};
|
|
9810
9878
|
export declare type JiraOption = Node & {
|
|
9811
9879
|
__typename?: 'JiraOption';
|
|
9812
9880
|
id: Scalars['ID'];
|
|
@@ -10132,7 +10200,7 @@ export declare type JiraProject = Node & {
|
|
|
10132
10200
|
confluenceSpaceRelationships?: Maybe<JiraProjectAndConfluenceSpaceRelationshipConnection>;
|
|
10133
10201
|
};
|
|
10134
10202
|
export declare type JiraProjectDevOpsToolRelationshipsArgs = {
|
|
10135
|
-
|
|
10203
|
+
first?: Maybe<Scalars['Int']>;
|
|
10136
10204
|
after?: Maybe<Scalars['String']>;
|
|
10137
10205
|
filter?: Maybe<JiraProjectAndDevOpsToolRelationshipFilter>;
|
|
10138
10206
|
};
|
|
@@ -10442,6 +10510,7 @@ export declare type JiraQuery = {
|
|
|
10442
10510
|
filter?: Maybe<JiraFilter>;
|
|
10443
10511
|
favouriteFilters?: Maybe<JiraFilterConnection>;
|
|
10444
10512
|
systemFilters?: Maybe<JiraSystemFilterConnection>;
|
|
10513
|
+
devOpsProviders?: Maybe<Array<Maybe<JiraDevOpsProvider>>>;
|
|
10445
10514
|
applicationPropertiesByKey?: Maybe<Array<JiraApplicationProperty>>;
|
|
10446
10515
|
issueContainersByType?: Maybe<JiraIssueItemContainersResult>;
|
|
10447
10516
|
issueContainersByTypeByKey?: Maybe<JiraIssueItemContainersResult>;
|
|
@@ -10511,6 +10580,10 @@ export declare type JiraQuerySystemFiltersArgs = {
|
|
|
10511
10580
|
last?: Maybe<Scalars['Int']>;
|
|
10512
10581
|
before?: Maybe<Scalars['String']>;
|
|
10513
10582
|
};
|
|
10583
|
+
export declare type JiraQueryDevOpsProvidersArgs = {
|
|
10584
|
+
cloudId: Scalars['ID'];
|
|
10585
|
+
filter?: Maybe<Array<JiraDevOpsCapability>>;
|
|
10586
|
+
};
|
|
10514
10587
|
export declare type JiraQueryApplicationPropertiesByKeyArgs = {
|
|
10515
10588
|
cloudId: Scalars['ID'];
|
|
10516
10589
|
keys: Array<Scalars['String']>;
|
|
@@ -12730,7 +12803,7 @@ export declare type Mutation = {
|
|
|
12730
12803
|
deleteAppTunnels?: Maybe<GenericMutationResponse>;
|
|
12731
12804
|
invokeExtension?: Maybe<InvokeExtensionResponse>;
|
|
12732
12805
|
invokeAuxEffects?: Maybe<InvokeAuxEffectsResponse>;
|
|
12733
|
-
userAuthTokenForExtension
|
|
12806
|
+
userAuthTokenForExtension?: Maybe<UserAuthTokenForExtensionResponse>;
|
|
12734
12807
|
createWebTriggerUrl?: Maybe<CreateWebTriggerUrlResponse>;
|
|
12735
12808
|
deleteWebTriggerUrl?: Maybe<DeleteWebTriggerUrlResponse>;
|
|
12736
12809
|
watchMarketplaceApp?: Maybe<WatchMarketplaceAppPayload>;
|
|
@@ -16250,6 +16323,7 @@ export declare type ShepherdMutation = {
|
|
|
16250
16323
|
createExampleAlert?: Maybe<ShepherdCreateExampleAlertPayload>;
|
|
16251
16324
|
createOrganization?: Maybe<ShepherdCreateOrganizationPayload>;
|
|
16252
16325
|
createSubscription?: Maybe<ShepherdCreateSubscriptionPayload>;
|
|
16326
|
+
testSubscription?: Maybe<ShepherdTestSubscriptionPayload>;
|
|
16253
16327
|
updateAlert?: Maybe<ShepherdUpdateAlertPayload>;
|
|
16254
16328
|
updateOrganization?: Maybe<ShepherdUpdateOrganizationPayload>;
|
|
16255
16329
|
updateSubscription?: Maybe<ShepherdUpdateSubscriptionPayload>;
|
|
@@ -16266,6 +16340,10 @@ export declare type ShepherdMutationCreateOrganizationArgs = {
|
|
|
16266
16340
|
export declare type ShepherdMutationCreateSubscriptionArgs = {
|
|
16267
16341
|
input: ShepherdCreateSubscriptionInput;
|
|
16268
16342
|
};
|
|
16343
|
+
export declare type ShepherdMutationTestSubscriptionArgs = {
|
|
16344
|
+
orgId: Scalars['ID'];
|
|
16345
|
+
subscriptionId: Scalars['ID'];
|
|
16346
|
+
};
|
|
16269
16347
|
export declare type ShepherdMutationUpdateAlertArgs = {
|
|
16270
16348
|
id: Scalars['ID'];
|
|
16271
16349
|
input: ShepherdUpdateAlertInput;
|
|
@@ -16321,6 +16399,17 @@ export declare enum ShepherdSubscriptionStatus {
|
|
|
16321
16399
|
Inactive = "INACTIVE"
|
|
16322
16400
|
}
|
|
16323
16401
|
export declare type ShepherdSubscriptionsResult = ShepherdEmailConnection | ShepherdWebhookConnection;
|
|
16402
|
+
export declare type ShepherdTestSubscriptionError = {
|
|
16403
|
+
__typename?: 'ShepherdTestSubscriptionError';
|
|
16404
|
+
reason?: Maybe<Scalars['String']>;
|
|
16405
|
+
statusCode?: Maybe<Scalars['Int']>;
|
|
16406
|
+
};
|
|
16407
|
+
export declare type ShepherdTestSubscriptionPayload = Payload & {
|
|
16408
|
+
__typename?: 'ShepherdTestSubscriptionPayload';
|
|
16409
|
+
errors?: Maybe<Array<MutationError>>;
|
|
16410
|
+
node?: Maybe<ShepherdSubscription>;
|
|
16411
|
+
success: Scalars['Boolean'];
|
|
16412
|
+
};
|
|
16324
16413
|
export declare type ShepherdUpdateAlertInput = {
|
|
16325
16414
|
assignee?: Maybe<Scalars['ID']>;
|
|
16326
16415
|
status?: Maybe<ShepherdAlertStatus>;
|
|
@@ -17036,6 +17125,7 @@ export declare type Testing = {
|
|
|
17036
17125
|
movie?: Maybe<TestingMovie>;
|
|
17037
17126
|
movies?: Maybe<Array<Maybe<TestingMovie>>>;
|
|
17038
17127
|
performance?: Maybe<TestingPerformance>;
|
|
17128
|
+
books?: Maybe<Array<Maybe<TestingBook>>>;
|
|
17039
17129
|
};
|
|
17040
17130
|
export declare type TestingEchoArgs = {
|
|
17041
17131
|
message?: Maybe<Scalars['String']>;
|
|
@@ -17049,6 +17139,9 @@ export declare type TestingThrowExceptionArgs = {
|
|
|
17049
17139
|
export declare type TestingMovieArgs = {
|
|
17050
17140
|
id: Scalars['ID'];
|
|
17051
17141
|
};
|
|
17142
|
+
export declare type TestingBooksArgs = {
|
|
17143
|
+
howMany?: Maybe<Scalars['Int']>;
|
|
17144
|
+
};
|
|
17052
17145
|
export declare type TestingActivityConnection = {
|
|
17053
17146
|
__typename?: 'TestingActivityConnection';
|
|
17054
17147
|
nodes: Array<Maybe<TestingActivityItem>>;
|
|
@@ -17092,6 +17185,17 @@ export declare type TestingActivityUser = {
|
|
|
17092
17185
|
name?: Maybe<Scalars['String']>;
|
|
17093
17186
|
picture?: Maybe<Scalars['String']>;
|
|
17094
17187
|
};
|
|
17188
|
+
export declare type TestingAuthor = {
|
|
17189
|
+
__typename?: 'TestingAuthor';
|
|
17190
|
+
id: Scalars['ID'];
|
|
17191
|
+
name?: Maybe<Scalars['String']>;
|
|
17192
|
+
};
|
|
17193
|
+
export declare type TestingBook = {
|
|
17194
|
+
__typename?: 'TestingBook';
|
|
17195
|
+
id: Scalars['ID'];
|
|
17196
|
+
title?: Maybe<Scalars['String']>;
|
|
17197
|
+
author?: Maybe<Array<Maybe<TestingAuthor>>>;
|
|
17198
|
+
};
|
|
17095
17199
|
export declare type TestingCharacter = {
|
|
17096
17200
|
__typename?: 'TestingCharacter';
|
|
17097
17201
|
id: Scalars['ID'];
|