@forge/cli-shared 5.6.0-next.14 → 5.6.0-next.15
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 +8 -0
- package/out/graphql/graphql-types.d.ts +86 -1
- package/out/graphql/graphql-types.d.ts.map +1 -1
- package/out/graphql/graphql-types.js +3 -0
- package/out/service/feature-flag-service.d.ts +0 -2
- package/out/service/feature-flag-service.d.ts.map +1 -1
- package/out/service/feature-flag-service.js +0 -3
- package/out/ui/command-line-ui.d.ts +3 -3
- package/out/ui/command-line-ui.d.ts.map +1 -1
- package/package.json +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -832,9 +832,13 @@ export declare type AppEnvironmentVersion = {
|
|
|
832
832
|
permissions: Array<AppPermission>;
|
|
833
833
|
requiresLicense: Scalars['Boolean']['output'];
|
|
834
834
|
storage: Storage;
|
|
835
|
+
trustSignal: TrustSignal;
|
|
835
836
|
updatedAt: Scalars['String']['output'];
|
|
836
837
|
version: Scalars['String']['output'];
|
|
837
838
|
};
|
|
839
|
+
export declare type AppEnvironmentVersionTrustSignalArgs = {
|
|
840
|
+
key: Scalars['ID']['input'];
|
|
841
|
+
};
|
|
838
842
|
export declare type AppEnvironmentVersionConnection = {
|
|
839
843
|
__typename?: 'AppEnvironmentVersionConnection';
|
|
840
844
|
edges?: Maybe<Array<Maybe<AppEnvironmentVersionEdge>>>;
|
|
@@ -3842,6 +3846,7 @@ export declare type CompassComponent = Node & {
|
|
|
3842
3846
|
type: CompassComponentType;
|
|
3843
3847
|
typeId: Scalars['ID']['output'];
|
|
3844
3848
|
typeMetadata?: Maybe<CompassComponentTypeObject>;
|
|
3849
|
+
viewerApplicableScorecards?: Maybe<CompassComponentViewerApplicableScorecardsConnection>;
|
|
3845
3850
|
viewerPermissions?: Maybe<CompassComponentInstancePermissions>;
|
|
3846
3851
|
viewerSubscription?: Maybe<CompassViewerSubscription>;
|
|
3847
3852
|
};
|
|
@@ -3865,6 +3870,10 @@ export declare type CompassComponentRelationshipsArgs = {
|
|
|
3865
3870
|
export declare type CompassComponentScorecardScoreArgs = {
|
|
3866
3871
|
query?: InputMaybe<CompassComponentScorecardScoreQuery>;
|
|
3867
3872
|
};
|
|
3873
|
+
export declare type CompassComponentViewerApplicableScorecardsArgs = {
|
|
3874
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
3875
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
3876
|
+
};
|
|
3868
3877
|
export declare type CompassComponentApi = {
|
|
3869
3878
|
__typename?: 'CompassComponentApi';
|
|
3870
3879
|
changelog: CompassComponentApiChangelogConnection;
|
|
@@ -4219,6 +4228,17 @@ export declare type CompassComponentTypeQueryInput = {
|
|
|
4219
4228
|
};
|
|
4220
4229
|
export declare type CompassComponentTypeResult = CompassComponentTypeObject | QueryError;
|
|
4221
4230
|
export declare type CompassComponentTypesQueryResult = CompassComponentTypeConnection | QueryError;
|
|
4231
|
+
export declare type CompassComponentViewerApplicableScorecardEdge = {
|
|
4232
|
+
__typename?: 'CompassComponentViewerApplicableScorecardEdge';
|
|
4233
|
+
cursor: Scalars['String']['output'];
|
|
4234
|
+
node?: Maybe<CompassScorecard>;
|
|
4235
|
+
};
|
|
4236
|
+
export declare type CompassComponentViewerApplicableScorecardsConnection = {
|
|
4237
|
+
__typename?: 'CompassComponentViewerApplicableScorecardsConnection';
|
|
4238
|
+
edges?: Maybe<Array<CompassComponentViewerApplicableScorecardEdge>>;
|
|
4239
|
+
nodes?: Maybe<Array<CompassScorecard>>;
|
|
4240
|
+
pageInfo: PageInfo;
|
|
4241
|
+
};
|
|
4222
4242
|
export declare type CompassCreateAlertEventInput = {
|
|
4223
4243
|
alertProperties: CompassAlertEventPropertiesInput;
|
|
4224
4244
|
description: Scalars['String']['input'];
|
|
@@ -5461,7 +5481,7 @@ export declare enum CompassLifecycleEventStage {
|
|
|
5461
5481
|
export declare type CompassLifecycleFilter = {
|
|
5462
5482
|
__typename?: 'CompassLifecycleFilter';
|
|
5463
5483
|
operator: Scalars['String']['output'];
|
|
5464
|
-
values?: Maybe<Array<
|
|
5484
|
+
values?: Maybe<Array<Scalars['String']['output']>>;
|
|
5465
5485
|
};
|
|
5466
5486
|
export declare type CompassLifecycleFilterInput = {
|
|
5467
5487
|
operator: CompassLifecycleFilterOperator;
|
|
@@ -43379,6 +43399,7 @@ export declare type JiraIssue = JiraScenarioIssueLike & Node & {
|
|
|
43379
43399
|
fields?: Maybe<JiraIssueFieldConnection>;
|
|
43380
43400
|
fieldsById?: Maybe<JiraIssueFieldConnection>;
|
|
43381
43401
|
fieldsByIdOrAlias?: Maybe<Array<Maybe<JiraIssueField>>>;
|
|
43402
|
+
hasChildren?: Maybe<Scalars['Boolean']['output']>;
|
|
43382
43403
|
hasCustomisedContentPanels?: Maybe<Scalars['Boolean']['output']>;
|
|
43383
43404
|
hasProjectPermission?: Maybe<Scalars['Boolean']['output']>;
|
|
43384
43405
|
hasRelationshipToVersion?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -44500,6 +44521,7 @@ export declare type JiraIssueSearchView = Node & {
|
|
|
44500
44521
|
id: Scalars['ID']['output'];
|
|
44501
44522
|
isHierarchyEnabled?: Maybe<Scalars['Boolean']['output']>;
|
|
44502
44523
|
namespace?: Maybe<Scalars['String']['output']>;
|
|
44524
|
+
viewConfigSettings?: Maybe<JiraIssueSearchViewConfigSettings>;
|
|
44503
44525
|
viewId?: Maybe<Scalars['String']['output']>;
|
|
44504
44526
|
};
|
|
44505
44527
|
export declare type JiraIssueSearchViewFieldSetsArgs = {
|
|
@@ -44509,10 +44531,18 @@ export declare type JiraIssueSearchViewFieldSetsArgs = {
|
|
|
44509
44531
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
44510
44532
|
last?: InputMaybe<Scalars['Int']['input']>;
|
|
44511
44533
|
};
|
|
44534
|
+
export declare type JiraIssueSearchViewViewConfigSettingsArgs = {
|
|
44535
|
+
staticViewInput?: InputMaybe<JiraIssueSearchStaticViewInput>;
|
|
44536
|
+
};
|
|
44512
44537
|
export declare type JiraIssueSearchViewConfigInput = {
|
|
44513
44538
|
staticViewInput?: InputMaybe<JiraIssueSearchStaticViewInput>;
|
|
44514
44539
|
viewInput?: InputMaybe<JiraIssueSearchViewInput>;
|
|
44515
44540
|
};
|
|
44541
|
+
export declare type JiraIssueSearchViewConfigSettings = {
|
|
44542
|
+
__typename?: 'JiraIssueSearchViewConfigSettings';
|
|
44543
|
+
canEnableHierarchy?: Maybe<Scalars['Boolean']['output']>;
|
|
44544
|
+
isHierarchyEnabled?: Maybe<Scalars['Boolean']['output']>;
|
|
44545
|
+
};
|
|
44516
44546
|
export declare type JiraIssueSearchViewFieldSetsContext = {
|
|
44517
44547
|
projectContext?: InputMaybe<JiraIssueSearchViewFieldSetsProjectContext>;
|
|
44518
44548
|
};
|
|
@@ -44567,7 +44597,13 @@ export declare type JiraIssueTransitionFieldLevelInput = {
|
|
|
44567
44597
|
JiraConnectTextField?: InputMaybe<Array<JiraUpdateSingleLineTextFieldInput>>;
|
|
44568
44598
|
JiraDatePickerField?: InputMaybe<Array<JiraUpdateDateFieldInput>>;
|
|
44569
44599
|
JiraDateTimePickerField?: InputMaybe<Array<JiraUpdateDateTimeFieldInput>>;
|
|
44600
|
+
JiraForgeDateField?: InputMaybe<Array<JiraUpdateDateFieldInput>>;
|
|
44601
|
+
JiraForgeDatetimeField?: InputMaybe<Array<JiraUpdateDateTimeFieldInput>>;
|
|
44602
|
+
JiraForgeNumberField?: InputMaybe<Array<JiraUpdateNumberFieldInput>>;
|
|
44603
|
+
JiraForgeObjectField?: InputMaybe<Array<JiraUpdateForgeObjectFieldInput>>;
|
|
44570
44604
|
JiraForgeStringField?: InputMaybe<Array<JiraUpdateSingleLineTextFieldInput>>;
|
|
44605
|
+
JiraForgeStringsField?: InputMaybe<Array<JiraUpdateLabelsFieldInput>>;
|
|
44606
|
+
JiraForgeUserField?: InputMaybe<Array<JiraUpdateSingleSelectUserPickerFieldInput>>;
|
|
44571
44607
|
JiraIssueLinkField?: InputMaybe<Array<JiraUpdateIssueLinkFieldInputForIssueTransitions>>;
|
|
44572
44608
|
JiraIssueTypeField?: InputMaybe<Array<JiraUpdateIssueTypeFieldInput>>;
|
|
44573
44609
|
JiraLabelsField?: InputMaybe<Array<JiraUpdateLabelsFieldInput>>;
|
|
@@ -48855,6 +48891,7 @@ export declare type JiraQueryIssueSearchViewByNamespaceAndViewIdArgs = {
|
|
|
48855
48891
|
export declare type JiraQueryIssueSearchViewResultArgs = {
|
|
48856
48892
|
cloudId: Scalars['ID']['input'];
|
|
48857
48893
|
filterId?: InputMaybe<Scalars['String']['input']>;
|
|
48894
|
+
issueSearchInput?: InputMaybe<JiraIssueSearchInput>;
|
|
48858
48895
|
namespace?: InputMaybe<Scalars['String']['input']>;
|
|
48859
48896
|
viewId?: InputMaybe<Scalars['String']['input']>;
|
|
48860
48897
|
};
|
|
@@ -65799,9 +65836,11 @@ export declare type ShepherdActorSessionInfoInput = {
|
|
|
65799
65836
|
};
|
|
65800
65837
|
export declare type ShepherdAlert = Node & {
|
|
65801
65838
|
__typename?: 'ShepherdAlert';
|
|
65839
|
+
actor: ShepherdAlertActor;
|
|
65802
65840
|
assignee?: Maybe<ShepherdUser>;
|
|
65803
65841
|
cloudId?: Maybe<Scalars['ID']['output']>;
|
|
65804
65842
|
createdOn: Scalars['DateTime']['output'];
|
|
65843
|
+
customFields?: Maybe<Scalars['JSON']['output']>;
|
|
65805
65844
|
description?: Maybe<ShepherdDescriptionTemplate>;
|
|
65806
65845
|
id: Scalars['ID']['output'];
|
|
65807
65846
|
linkedResources?: Maybe<Array<Maybe<ShepherdLinkedResource>>>;
|
|
@@ -65811,7 +65850,9 @@ export declare type ShepherdAlert = Node & {
|
|
|
65811
65850
|
statusUpdatedOn?: Maybe<Scalars['DateTime']['output']>;
|
|
65812
65851
|
supportingData?: Maybe<ShepherdAlertSupportingData>;
|
|
65813
65852
|
template?: Maybe<ShepherdAlertTemplateType>;
|
|
65853
|
+
time: ShepherdTime;
|
|
65814
65854
|
title: Scalars['String']['output'];
|
|
65855
|
+
type: Scalars['String']['output'];
|
|
65815
65856
|
updatedBy?: Maybe<ShepherdUser>;
|
|
65816
65857
|
updatedOn?: Maybe<Scalars['DateTime']['output']>;
|
|
65817
65858
|
workspaceId?: Maybe<Scalars['ID']['output']>;
|
|
@@ -65822,6 +65863,7 @@ export declare enum ShepherdAlertAction {
|
|
|
65822
65863
|
Restrict = "RESTRICT",
|
|
65823
65864
|
UpdateDataClassification = "UPDATE_DATA_CLASSIFICATION"
|
|
65824
65865
|
}
|
|
65866
|
+
export declare type ShepherdAlertActor = ShepherdActor | ShepherdAnonymousActor | ShepherdAtlassianSystemActor;
|
|
65825
65867
|
export declare type ShepherdAlertAuthorizedActions = {
|
|
65826
65868
|
__typename?: 'ShepherdAlertAuthorizedActions';
|
|
65827
65869
|
actions?: Maybe<Array<ShepherdAlertAction>>;
|
|
@@ -65990,6 +66032,10 @@ export declare type ShepherdAlertsConnection = {
|
|
|
65990
66032
|
pageInfo: PageInfo;
|
|
65991
66033
|
};
|
|
65992
66034
|
export declare type ShepherdAlertsResult = QueryError | ShepherdAlertsConnection;
|
|
66035
|
+
export declare type ShepherdAnonymousActor = {
|
|
66036
|
+
__typename?: 'ShepherdAnonymousActor';
|
|
66037
|
+
ipAddress?: Maybe<Scalars['String']['output']>;
|
|
66038
|
+
};
|
|
65993
66039
|
export declare type ShepherdAppInfo = {
|
|
65994
66040
|
__typename?: 'ShepherdAppInfo';
|
|
65995
66041
|
apiVersion: Scalars['Int']['output'];
|
|
@@ -66005,6 +66051,10 @@ export declare enum ShepherdAtlassianProduct {
|
|
|
66005
66051
|
JiraSoftware = "JIRA_SOFTWARE",
|
|
66006
66052
|
Marketplace = "MARKETPLACE"
|
|
66007
66053
|
}
|
|
66054
|
+
export declare type ShepherdAtlassianSystemActor = {
|
|
66055
|
+
__typename?: 'ShepherdAtlassianSystemActor';
|
|
66056
|
+
name: Scalars['String']['output'];
|
|
66057
|
+
};
|
|
66008
66058
|
export declare type ShepherdAuditLogAttribute = {
|
|
66009
66059
|
__typename?: 'ShepherdAuditLogAttribute';
|
|
66010
66060
|
name: Scalars['String']['output'];
|
|
@@ -69486,6 +69536,22 @@ export declare type TrelloCreateCardPayload = Payload & {
|
|
|
69486
69536
|
errors?: Maybe<Array<MutationError>>;
|
|
69487
69537
|
success: Scalars['Boolean']['output'];
|
|
69488
69538
|
};
|
|
69539
|
+
export declare type TrelloCreateOrUpdatePlannerCalendarInput = {
|
|
69540
|
+
enabled: Scalars['Boolean']['input'];
|
|
69541
|
+
providerCalendarId: Scalars['ID']['input'];
|
|
69542
|
+
type: TrelloSupportedPlannerProviders;
|
|
69543
|
+
workspaceId: Scalars['ID']['input'];
|
|
69544
|
+
};
|
|
69545
|
+
export declare type TrelloCreateOrUpdatePlannerCalendarPayload = Payload & {
|
|
69546
|
+
__typename?: 'TrelloCreateOrUpdatePlannerCalendarPayload';
|
|
69547
|
+
errors?: Maybe<Array<MutationError>>;
|
|
69548
|
+
plannerCalendar?: Maybe<TrelloPlannerCalendarConnection>;
|
|
69549
|
+
success: Scalars['Boolean']['output'];
|
|
69550
|
+
};
|
|
69551
|
+
export declare type TrelloCreateOrUpdatePlannerCalendarPayloadPlannerCalendarArgs = {
|
|
69552
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
69553
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
69554
|
+
};
|
|
69489
69555
|
export declare type TrelloCustomField = {
|
|
69490
69556
|
__typename?: 'TrelloCustomField';
|
|
69491
69557
|
display?: Maybe<TrelloCustomFieldDisplay>;
|
|
@@ -69806,6 +69872,7 @@ export declare type TrelloMutationApi = {
|
|
|
69806
69872
|
addMemberToCard?: Maybe<TrelloAddMemberToCardPayload>;
|
|
69807
69873
|
archiveCard?: Maybe<TrelloArchiveCardPayload>;
|
|
69808
69874
|
createCard?: Maybe<TrelloCreateCardPayload>;
|
|
69875
|
+
createOrUpdatePlannerCalendar?: Maybe<TrelloCreateOrUpdatePlannerCalendarPayload>;
|
|
69809
69876
|
pinCard?: Maybe<TrelloPinCardPayload>;
|
|
69810
69877
|
removeMemberFromCard?: Maybe<TrelloRemoveMemberFromCardPayload>;
|
|
69811
69878
|
removeMemberFromWorkspace?: Maybe<TrelloRemoveMemberFromWorkspacePayload>;
|
|
@@ -69827,6 +69894,9 @@ export declare type TrelloMutationApiArchiveCardArgs = {
|
|
|
69827
69894
|
export declare type TrelloMutationApiCreateCardArgs = {
|
|
69828
69895
|
input: TrelloCreateCardInput;
|
|
69829
69896
|
};
|
|
69897
|
+
export declare type TrelloMutationApiCreateOrUpdatePlannerCalendarArgs = {
|
|
69898
|
+
input: TrelloCreateOrUpdatePlannerCalendarInput;
|
|
69899
|
+
};
|
|
69830
69900
|
export declare type TrelloMutationApiPinCardArgs = {
|
|
69831
69901
|
input: TrelloPinCardInput;
|
|
69832
69902
|
};
|
|
@@ -70010,8 +70080,11 @@ export declare type TrelloPlannerCalendarEventEdge = {
|
|
|
70010
70080
|
node?: Maybe<TrelloPlannerCalendarEvent>;
|
|
70011
70081
|
};
|
|
70012
70082
|
export declare enum TrelloPlannerCalendarEventStatus {
|
|
70083
|
+
Accepted = "ACCEPTED",
|
|
70013
70084
|
Cancelled = "CANCELLED",
|
|
70014
70085
|
Confirmed = "CONFIRMED",
|
|
70086
|
+
Declined = "DECLINED",
|
|
70087
|
+
NeedsAction = "NEEDS_ACTION",
|
|
70015
70088
|
Tentative = "TENTATIVE"
|
|
70016
70089
|
}
|
|
70017
70090
|
export declare enum TrelloPlannerCalendarEventVisibility {
|
|
@@ -70443,6 +70516,17 @@ export declare type TrelloWorkspacePrefs = {
|
|
|
70443
70516
|
export declare enum TrelloWorkspaceTier {
|
|
70444
70517
|
Paid = "PAID"
|
|
70445
70518
|
}
|
|
70519
|
+
export declare type TrustSignal = {
|
|
70520
|
+
__typename?: 'TrustSignal';
|
|
70521
|
+
key: Scalars['ID']['output'];
|
|
70522
|
+
result: Scalars['Boolean']['output'];
|
|
70523
|
+
rules?: Maybe<Array<TrustSignalRule>>;
|
|
70524
|
+
};
|
|
70525
|
+
export declare type TrustSignalRule = {
|
|
70526
|
+
__typename?: 'TrustSignalRule';
|
|
70527
|
+
name: Scalars['String']['output'];
|
|
70528
|
+
value: Scalars['Boolean']['output'];
|
|
70529
|
+
};
|
|
70446
70530
|
export declare type TunnelDefinitionsInput = {
|
|
70447
70531
|
customUI?: InputMaybe<Array<InputMaybe<CustomUiTunnelDefinitionInput>>>;
|
|
70448
70532
|
faasTunnelUrl?: InputMaybe<Scalars['URL']['input']>;
|
|
@@ -70488,6 +70572,7 @@ export declare type UnifiedAllowList = UnifiedINode & {
|
|
|
70488
70572
|
export declare type UnifiedAtlassianProduct = UnifiedINode & {
|
|
70489
70573
|
__typename?: 'UnifiedAtlassianProduct';
|
|
70490
70574
|
id: Scalars['ID']['output'];
|
|
70575
|
+
productId: Scalars['String']['output'];
|
|
70491
70576
|
title?: Maybe<Scalars['String']['output']>;
|
|
70492
70577
|
type?: Maybe<Scalars['String']['output']>;
|
|
70493
70578
|
viewHref?: Maybe<Scalars['String']['output']>;
|