@forge/cli-shared 3.11.0-next.5 → 3.11.0-next.7
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 +12 -0
- package/out/graphql/graphql-types.d.ts +75 -15
- package/out/graphql/graphql-types.d.ts.map +1 -1
- package/out/graphql/graphql-types.js +2 -0
- package/out/graphql/minimal-graphql-runner.d.ts +0 -2
- package/out/graphql/minimal-graphql-runner.d.ts.map +1 -1
- package/out/graphql/minimal-graphql-runner.js +1 -5
- package/out/graphql/mutation-aware-graphql-client.d.ts +1 -2
- package/out/graphql/mutation-aware-graphql-client.d.ts.map +1 -1
- package/out/graphql/mutation-aware-graphql-client.js +1 -4
- package/out/shared/environment.d.ts +3 -1
- package/out/shared/environment.d.ts.map +1 -1
- package/out/shared/environment.js +15 -4
- package/out/shared/error-handling.d.ts +4 -0
- package/out/shared/error-handling.d.ts.map +1 -1
- package/out/shared/error-handling.js +12 -1
- package/out/ui/text.d.ts +6 -6
- package/out/ui/text.d.ts.map +1 -1
- package/out/ui/text.js +6 -6
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,17 @@
|
|
|
1
1
|
# @forge/cli-shared
|
|
2
2
|
|
|
3
|
+
## 3.11.0-next.7
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- 3e7edfb: Fix consistency of environment name in the CLI
|
|
8
|
+
|
|
9
|
+
## 3.11.0-next.6
|
|
10
|
+
|
|
11
|
+
### Patch Changes
|
|
12
|
+
|
|
13
|
+
- b91c323: output request ID in analytics for all GraphQL errors
|
|
14
|
+
|
|
3
15
|
## 3.11.0-next.5
|
|
4
16
|
|
|
5
17
|
### Patch Changes
|
|
@@ -350,9 +350,11 @@ export declare enum ApiGroup {
|
|
|
350
350
|
VirtualAgent = "VIRTUAL_AGENT",
|
|
351
351
|
CollaborationGraph = "COLLABORATION_GRAPH",
|
|
352
352
|
DevopsThirdParty = "DEVOPS_THIRD_PARTY",
|
|
353
|
+
DevopsToolchain = "DEVOPS_TOOLCHAIN",
|
|
353
354
|
CloudAdmin = "CLOUD_ADMIN",
|
|
354
355
|
CustomerService = "CUSTOMER_SERVICE",
|
|
355
|
-
SurfacePlatform = "SURFACE_PLATFORM"
|
|
356
|
+
SurfacePlatform = "SURFACE_PLATFORM",
|
|
357
|
+
AppRecommendations = "APP_RECOMMENDATIONS"
|
|
356
358
|
}
|
|
357
359
|
export declare type App = {
|
|
358
360
|
__typename?: 'App';
|
|
@@ -6046,6 +6048,15 @@ export declare type DateSearchInput = {
|
|
|
6046
6048
|
earliestStart?: Maybe<Scalars['String']>;
|
|
6047
6049
|
latestStart?: Maybe<Scalars['String']>;
|
|
6048
6050
|
};
|
|
6051
|
+
export declare type DeleteAppEnvironmentInput = {
|
|
6052
|
+
appAri: Scalars['ID'];
|
|
6053
|
+
environmentKey: Scalars['String'];
|
|
6054
|
+
};
|
|
6055
|
+
export declare type DeleteAppEnvironmentResponse = Payload & {
|
|
6056
|
+
__typename?: 'DeleteAppEnvironmentResponse';
|
|
6057
|
+
success: Scalars['Boolean'];
|
|
6058
|
+
errors?: Maybe<Array<MutationError>>;
|
|
6059
|
+
};
|
|
6049
6060
|
export declare type DeleteAppEnvironmentVariableInput = {
|
|
6050
6061
|
environment: AppEnvironmentInput;
|
|
6051
6062
|
key: Scalars['String'];
|
|
@@ -6740,6 +6751,7 @@ export declare type DevOpsMutation = {
|
|
|
6740
6751
|
__typename?: 'DevOpsMutation';
|
|
6741
6752
|
_empty?: Maybe<Scalars['String']>;
|
|
6742
6753
|
ariGraph?: Maybe<AriGraphMutation>;
|
|
6754
|
+
toolchain?: Maybe<ToolchainMutation>;
|
|
6743
6755
|
};
|
|
6744
6756
|
export declare type DevOpsMutation_EmptyArgs = {
|
|
6745
6757
|
cloudId?: Maybe<Scalars['ID']>;
|
|
@@ -7527,6 +7539,7 @@ export declare type EcosystemMutation = {
|
|
|
7527
7539
|
deleteUserGrant?: Maybe<DeleteUserGrantPayload>;
|
|
7528
7540
|
updateUserInstallationRules?: Maybe<UserInstallationRulesPayload>;
|
|
7529
7541
|
createAppEnvironment?: Maybe<CreateAppEnvironmentResponse>;
|
|
7542
|
+
deleteAppEnvironment?: Maybe<DeleteAppEnvironmentResponse>;
|
|
7530
7543
|
forgeAlerts?: Maybe<ForgeAlertsMutation>;
|
|
7531
7544
|
};
|
|
7532
7545
|
export declare type EcosystemMutationUpdateAppHostServiceScopesArgs = {
|
|
@@ -7547,6 +7560,9 @@ export declare type EcosystemMutationUpdateUserInstallationRulesArgs = {
|
|
|
7547
7560
|
export declare type EcosystemMutationCreateAppEnvironmentArgs = {
|
|
7548
7561
|
input: CreateAppEnvironmentInput;
|
|
7549
7562
|
};
|
|
7563
|
+
export declare type EcosystemMutationDeleteAppEnvironmentArgs = {
|
|
7564
|
+
input: DeleteAppEnvironmentInput;
|
|
7565
|
+
};
|
|
7550
7566
|
export declare type EcosystemMutationForgeAlertsArgs = {
|
|
7551
7567
|
appId: Scalars['ID'];
|
|
7552
7568
|
};
|
|
@@ -9407,6 +9423,7 @@ export declare type JiraCannedResponseUpdatePayload = Payload & {
|
|
|
9407
9423
|
export declare type JiraCascadingOption = {
|
|
9408
9424
|
__typename?: 'JiraCascadingOption';
|
|
9409
9425
|
parentOptionValue?: Maybe<JiraOption>;
|
|
9426
|
+
parentValue?: Maybe<JiraParentOption>;
|
|
9410
9427
|
childOptionValue?: Maybe<JiraOption>;
|
|
9411
9428
|
};
|
|
9412
9429
|
export declare type JiraCascadingOptions = {
|
|
@@ -9436,6 +9453,7 @@ export declare type JiraCascadingSelectField = Node & JiraIssueField & JiraIssue
|
|
|
9436
9453
|
description?: Maybe<Scalars['String']>;
|
|
9437
9454
|
cascadingOption?: Maybe<JiraCascadingOption>;
|
|
9438
9455
|
cascadingOptions?: Maybe<JiraCascadingOptionsConnection>;
|
|
9456
|
+
parentOptions?: Maybe<JiraParentOptionConnection>;
|
|
9439
9457
|
fieldConfig?: Maybe<JiraFieldConfig>;
|
|
9440
9458
|
userFieldConfig?: Maybe<JiraUserFieldConfig>;
|
|
9441
9459
|
};
|
|
@@ -9445,6 +9463,13 @@ export declare type JiraCascadingSelectFieldCascadingOptionsArgs = {
|
|
|
9445
9463
|
last?: Maybe<Scalars['Int']>;
|
|
9446
9464
|
before?: Maybe<Scalars['String']>;
|
|
9447
9465
|
};
|
|
9466
|
+
export declare type JiraCascadingSelectFieldParentOptionsArgs = {
|
|
9467
|
+
first?: Maybe<Scalars['Int']>;
|
|
9468
|
+
after?: Maybe<Scalars['String']>;
|
|
9469
|
+
last?: Maybe<Scalars['Int']>;
|
|
9470
|
+
before?: Maybe<Scalars['String']>;
|
|
9471
|
+
searchBy?: Maybe<Scalars['String']>;
|
|
9472
|
+
};
|
|
9448
9473
|
export declare type JiraCascadingSelectFieldOperationInput = {
|
|
9449
9474
|
operation: JiraSingleValueFieldOperations;
|
|
9450
9475
|
parentOption?: Maybe<Scalars['ID']>;
|
|
@@ -10522,7 +10547,7 @@ export declare type JiraGlobalPermission = {
|
|
|
10522
10547
|
};
|
|
10523
10548
|
export declare type JiraGlobalPermissionAddGroupGrantInput = {
|
|
10524
10549
|
key: Scalars['String'];
|
|
10525
|
-
|
|
10550
|
+
groupAri: Scalars['ID'];
|
|
10526
10551
|
};
|
|
10527
10552
|
export declare type JiraGlobalPermissionAddGroupGrantPayload = Payload & {
|
|
10528
10553
|
__typename?: 'JiraGlobalPermissionAddGroupGrantPayload';
|
|
@@ -10531,7 +10556,7 @@ export declare type JiraGlobalPermissionAddGroupGrantPayload = Payload & {
|
|
|
10531
10556
|
};
|
|
10532
10557
|
export declare type JiraGlobalPermissionDeleteGroupGrantInput = {
|
|
10533
10558
|
key: Scalars['String'];
|
|
10534
|
-
|
|
10559
|
+
groupAri: Scalars['ID'];
|
|
10535
10560
|
};
|
|
10536
10561
|
export declare type JiraGlobalPermissionDeleteGroupGrantPayload = Payload & {
|
|
10537
10562
|
__typename?: 'JiraGlobalPermissionDeleteGroupGrantPayload';
|
|
@@ -12661,6 +12686,32 @@ export declare type JiraParentIssueField = Node & JiraIssueField & JiraIssueFiel
|
|
|
12661
12686
|
fieldConfig?: Maybe<JiraFieldConfig>;
|
|
12662
12687
|
userFieldConfig?: Maybe<JiraUserFieldConfig>;
|
|
12663
12688
|
};
|
|
12689
|
+
export declare type JiraParentOption = Node & {
|
|
12690
|
+
__typename?: 'JiraParentOption';
|
|
12691
|
+
id: Scalars['ID'];
|
|
12692
|
+
value?: Maybe<Scalars['String']>;
|
|
12693
|
+
isDisabled?: Maybe<Scalars['Boolean']>;
|
|
12694
|
+
childOptions?: Maybe<JiraOptionConnection>;
|
|
12695
|
+
};
|
|
12696
|
+
export declare type JiraParentOptionChildOptionsArgs = {
|
|
12697
|
+
first?: Maybe<Scalars['Int']>;
|
|
12698
|
+
after?: Maybe<Scalars['String']>;
|
|
12699
|
+
last?: Maybe<Scalars['Int']>;
|
|
12700
|
+
before?: Maybe<Scalars['String']>;
|
|
12701
|
+
searchBy?: Maybe<Scalars['String']>;
|
|
12702
|
+
};
|
|
12703
|
+
export declare type JiraParentOptionConnection = {
|
|
12704
|
+
__typename?: 'JiraParentOptionConnection';
|
|
12705
|
+
totalCount?: Maybe<Scalars['Int']>;
|
|
12706
|
+
pageInfo: PageInfo;
|
|
12707
|
+
edges?: Maybe<Array<Maybe<JiraParentOptionEdge>>>;
|
|
12708
|
+
errors?: Maybe<Array<QueryError>>;
|
|
12709
|
+
};
|
|
12710
|
+
export declare type JiraParentOptionEdge = {
|
|
12711
|
+
__typename?: 'JiraParentOptionEdge';
|
|
12712
|
+
node?: Maybe<JiraParentOption>;
|
|
12713
|
+
cursor: Scalars['String'];
|
|
12714
|
+
};
|
|
12664
12715
|
export declare type JiraParentVisibility = {
|
|
12665
12716
|
__typename?: 'JiraParentVisibility';
|
|
12666
12717
|
hasEpicLinkFieldDependency?: Maybe<Scalars['Boolean']>;
|
|
@@ -19166,7 +19217,7 @@ export declare type Query = {
|
|
|
19166
19217
|
jwmOverviews?: Maybe<JiraWorkManagementOverviewConnectionResult>;
|
|
19167
19218
|
tenantContexts?: Maybe<Array<Maybe<TenantContext>>>;
|
|
19168
19219
|
surfacePlatform: SurfacePlatformQueryApi;
|
|
19169
|
-
xflow?: Maybe<
|
|
19220
|
+
xflow?: Maybe<Scalars['String']>;
|
|
19170
19221
|
virtualAgent?: Maybe<VirtualAgentQueryApi>;
|
|
19171
19222
|
jiraReleases?: Maybe<JiraReleases>;
|
|
19172
19223
|
appDeployment?: Maybe<AppDeployment>;
|
|
@@ -22599,6 +22650,26 @@ export declare type ToolchainContainerEdge = {
|
|
|
22599
22650
|
cursor: Scalars['String'];
|
|
22600
22651
|
node?: Maybe<ToolchainContainer>;
|
|
22601
22652
|
};
|
|
22653
|
+
export declare type ToolchainCreateContainerInput = {
|
|
22654
|
+
cloudId: Scalars['ID'];
|
|
22655
|
+
providerId?: Maybe<Scalars['ID']>;
|
|
22656
|
+
workspaceId?: Maybe<Scalars['ID']>;
|
|
22657
|
+
name: Scalars['String'];
|
|
22658
|
+
type?: Maybe<Scalars['String']>;
|
|
22659
|
+
};
|
|
22660
|
+
export declare type ToolchainCreateContainerPayload = Payload & {
|
|
22661
|
+
__typename?: 'ToolchainCreateContainerPayload';
|
|
22662
|
+
success: Scalars['Boolean'];
|
|
22663
|
+
errors?: Maybe<Array<MutationError>>;
|
|
22664
|
+
createdContainer?: Maybe<ToolchainContainer>;
|
|
22665
|
+
};
|
|
22666
|
+
export declare type ToolchainMutation = {
|
|
22667
|
+
__typename?: 'ToolchainMutation';
|
|
22668
|
+
createContainer?: Maybe<ToolchainCreateContainerPayload>;
|
|
22669
|
+
};
|
|
22670
|
+
export declare type ToolchainMutationCreateContainerArgs = {
|
|
22671
|
+
input: ToolchainCreateContainerInput;
|
|
22672
|
+
};
|
|
22602
22673
|
export declare type TownsquareComment = Node & {
|
|
22603
22674
|
__typename?: 'TownsquareComment';
|
|
22604
22675
|
creator?: Maybe<User>;
|
|
@@ -24022,17 +24093,6 @@ export declare type WebTriggerUrlInput = {
|
|
|
24022
24093
|
triggerKey: Scalars['String'];
|
|
24023
24094
|
contextId: Scalars['ID'];
|
|
24024
24095
|
};
|
|
24025
|
-
export declare type XFlowQuery = {
|
|
24026
|
-
__typename?: 'XFlowQuery';
|
|
24027
|
-
recommendedApps?: Maybe<Array<XFlowRecommendedApp>>;
|
|
24028
|
-
};
|
|
24029
|
-
export declare type XFlowQueryRecommendedAppsArgs = {
|
|
24030
|
-
site: Scalars['ID'];
|
|
24031
|
-
};
|
|
24032
|
-
export declare type XFlowRecommendedApp = {
|
|
24033
|
-
__typename?: 'XFlowRecommendedApp';
|
|
24034
|
-
appKey: Scalars['String'];
|
|
24035
|
-
};
|
|
24036
24096
|
export declare type _AppliedDirective = {
|
|
24037
24097
|
__typename?: '_AppliedDirective';
|
|
24038
24098
|
name: Scalars['String'];
|