@forge/cli-shared 3.19.0-next.6 → 3.19.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
CHANGED
|
@@ -1072,6 +1072,31 @@ export type AppLogLines = {
|
|
|
1072
1072
|
nodes?: Maybe<Array<Maybe<AppLogLine>>>;
|
|
1073
1073
|
pageInfo: PageInfo;
|
|
1074
1074
|
};
|
|
1075
|
+
export type AppLogsWithMetaData = {
|
|
1076
|
+
__typename?: 'AppLogsWithMetaData';
|
|
1077
|
+
invocationId: Scalars['String'];
|
|
1078
|
+
appId: Scalars['String'];
|
|
1079
|
+
environmentId: Scalars['String'];
|
|
1080
|
+
appVersion: Scalars['String'];
|
|
1081
|
+
installationContext: Scalars['String'];
|
|
1082
|
+
ts: Scalars['String'];
|
|
1083
|
+
message?: Maybe<Scalars['String']>;
|
|
1084
|
+
lvl?: Maybe<Scalars['String']>;
|
|
1085
|
+
functionKey?: Maybe<Scalars['String']>;
|
|
1086
|
+
cloudwatchId?: Maybe<Scalars['String']>;
|
|
1087
|
+
moduleKey?: Maybe<Scalars['String']>;
|
|
1088
|
+
moduleType?: Maybe<Scalars['String']>;
|
|
1089
|
+
other?: Maybe<Scalars['String']>;
|
|
1090
|
+
traceId?: Maybe<Scalars['String']>;
|
|
1091
|
+
p?: Maybe<Scalars['String']>;
|
|
1092
|
+
error?: Maybe<Scalars['String']>;
|
|
1093
|
+
};
|
|
1094
|
+
export type AppLogsWithMetaDataResponse = {
|
|
1095
|
+
__typename?: 'AppLogsWithMetaDataResponse';
|
|
1096
|
+
appLogs: Array<AppLogsWithMetaData>;
|
|
1097
|
+
hasNextPage: Scalars['Boolean'];
|
|
1098
|
+
totalLogs: Scalars['Int'];
|
|
1099
|
+
};
|
|
1075
1100
|
export type AppNetworkEgressPermission = {
|
|
1076
1101
|
__typename?: 'AppNetworkEgressPermission';
|
|
1077
1102
|
type?: Maybe<AppNetworkPermissionType>;
|
|
@@ -5943,11 +5968,16 @@ export type ConnectAppScope = {
|
|
|
5943
5968
|
export type ConnectedDataQuery = {
|
|
5944
5969
|
__typename?: 'ConnectedDataQuery';
|
|
5945
5970
|
services?: Maybe<DevOpsService>;
|
|
5971
|
+
incidentWithId?: Maybe<JsmIncident>;
|
|
5946
5972
|
};
|
|
5947
5973
|
export type ConnectedDataQueryServicesArgs = {
|
|
5948
5974
|
id: Scalars['ID'];
|
|
5949
5975
|
cloudId: Scalars['ID'];
|
|
5950
5976
|
};
|
|
5977
|
+
export type ConnectedDataQueryIncidentWithIdArgs = {
|
|
5978
|
+
id: Scalars['ID'];
|
|
5979
|
+
cloudId: Scalars['ID'];
|
|
5980
|
+
};
|
|
5951
5981
|
export type ContainerEventObject = {
|
|
5952
5982
|
__typename?: 'ContainerEventObject';
|
|
5953
5983
|
id: Scalars['ID'];
|
|
@@ -7840,6 +7870,10 @@ export type DevOpsDevInfoProvider = DevOpsDataProvider & {
|
|
|
7840
7870
|
appInstallationId?: Maybe<Scalars['ID']>;
|
|
7841
7871
|
supportedActions?: Maybe<DevOpsSupportedActions>;
|
|
7842
7872
|
providerType?: Maybe<DevOpsProviderType>;
|
|
7873
|
+
workspaces?: Maybe<ToolchainWorkspaceConnection>;
|
|
7874
|
+
};
|
|
7875
|
+
export type DevOpsDevInfoProviderWorkspacesArgs = {
|
|
7876
|
+
cloudId: Scalars['ID'];
|
|
7843
7877
|
};
|
|
7844
7878
|
export type DevOpsDocument = Node & {
|
|
7845
7879
|
__typename?: 'DevOpsDocument';
|
|
@@ -11079,7 +11113,7 @@ export type HelpCenterHelpDeskPayload = Payload & {
|
|
|
11079
11113
|
__typename?: 'HelpCenterHelpDeskPayload';
|
|
11080
11114
|
success: Scalars['Boolean'];
|
|
11081
11115
|
errors?: Maybe<Array<MutationError>>;
|
|
11082
|
-
helpDeskId
|
|
11116
|
+
helpDeskId?: Maybe<Scalars['ID']>;
|
|
11083
11117
|
};
|
|
11084
11118
|
export type HelpCenterHelpDeskQueryResult = HelpCenterHelpDesk | QueryError;
|
|
11085
11119
|
export type HelpCenterHelpDeskUpdateInput = {
|
|
@@ -11231,7 +11265,8 @@ export type HelpCenterTopicItemInput = {
|
|
|
11231
11265
|
export type HelpCenterTopicResult = HelpCenterTopic | QueryError;
|
|
11232
11266
|
export declare enum HelpCenterType {
|
|
11233
11267
|
Advanced = "ADVANCED",
|
|
11234
|
-
Basic = "BASIC"
|
|
11268
|
+
Basic = "BASIC",
|
|
11269
|
+
Unified = "UNIFIED"
|
|
11235
11270
|
}
|
|
11236
11271
|
export type HelpCenterUpdateInput = {
|
|
11237
11272
|
helpCenterAri: Scalars['String'];
|
|
@@ -12387,6 +12422,75 @@ export type IssueDevOpsTestSummary = {
|
|
|
12387
12422
|
numberFailed?: Maybe<Scalars['Int']>;
|
|
12388
12423
|
numberSkipped?: Maybe<Scalars['Int']>;
|
|
12389
12424
|
};
|
|
12425
|
+
export type JsmAssignee = {
|
|
12426
|
+
__typename?: 'JSMAssignee';
|
|
12427
|
+
id: Scalars['ID'];
|
|
12428
|
+
};
|
|
12429
|
+
export type JsmIncident = {
|
|
12430
|
+
__typename?: 'JSMIncident';
|
|
12431
|
+
id: Scalars['ID'];
|
|
12432
|
+
summary?: Maybe<Scalars['String']>;
|
|
12433
|
+
description?: Maybe<Scalars['String']>;
|
|
12434
|
+
reporter?: Maybe<User>;
|
|
12435
|
+
assignee?: Maybe<User>;
|
|
12436
|
+
priority?: Maybe<JsmPriority>;
|
|
12437
|
+
status?: Maybe<JsmStatus>;
|
|
12438
|
+
participants?: Maybe<Array<Maybe<User>>>;
|
|
12439
|
+
issueLinks?: Maybe<Array<Maybe<JsmIssueLink>>>;
|
|
12440
|
+
majorIncident?: Maybe<JsmMajorIncident>;
|
|
12441
|
+
affectedServices?: Maybe<Array<Maybe<DevOpsService>>>;
|
|
12442
|
+
responders?: Maybe<Array<Maybe<JsmResponder>>>;
|
|
12443
|
+
linkedAlerts?: Maybe<Array<Maybe<JsmLinkedAlerts>>>;
|
|
12444
|
+
};
|
|
12445
|
+
export type JsmIssueKey = {
|
|
12446
|
+
__typename?: 'JSMIssueKey';
|
|
12447
|
+
key?: Maybe<Scalars['String']>;
|
|
12448
|
+
};
|
|
12449
|
+
export type JsmIssueLink = {
|
|
12450
|
+
__typename?: 'JSMIssueLink';
|
|
12451
|
+
type?: Maybe<JsmIssueLinkType>;
|
|
12452
|
+
inwardIssue?: Maybe<JiraIssue>;
|
|
12453
|
+
outwardIssue?: Maybe<JiraIssue>;
|
|
12454
|
+
};
|
|
12455
|
+
export type JsmIssueLinkInwardIssueArgs = {
|
|
12456
|
+
cloudId: Scalars['ID'];
|
|
12457
|
+
};
|
|
12458
|
+
export type JsmIssueLinkOutwardIssueArgs = {
|
|
12459
|
+
cloudId: Scalars['ID'];
|
|
12460
|
+
};
|
|
12461
|
+
export type JsmIssueLinkType = {
|
|
12462
|
+
__typename?: 'JSMIssueLinkType';
|
|
12463
|
+
id: Scalars['ID'];
|
|
12464
|
+
};
|
|
12465
|
+
export type JsmLinkedAlerts = {
|
|
12466
|
+
__typename?: 'JSMLinkedAlerts';
|
|
12467
|
+
id: Scalars['ID'];
|
|
12468
|
+
};
|
|
12469
|
+
export declare enum JsmMajorIncident {
|
|
12470
|
+
MajorIncident = "MAJOR_INCIDENT"
|
|
12471
|
+
}
|
|
12472
|
+
export type JsmPriority = {
|
|
12473
|
+
__typename?: 'JSMPriority';
|
|
12474
|
+
id: Scalars['ID'];
|
|
12475
|
+
name?: Maybe<Scalars['String']>;
|
|
12476
|
+
};
|
|
12477
|
+
export type JsmReporter = {
|
|
12478
|
+
__typename?: 'JSMReporter';
|
|
12479
|
+
id: Scalars['ID'];
|
|
12480
|
+
};
|
|
12481
|
+
export type JsmResponder = AppUser | AtlassianAccountUser | CustomerUser | OpsgenieTeam;
|
|
12482
|
+
export type JsmStatus = {
|
|
12483
|
+
__typename?: 'JSMStatus';
|
|
12484
|
+
id: Scalars['ID'];
|
|
12485
|
+
name?: Maybe<Scalars['String']>;
|
|
12486
|
+
statusCategory?: Maybe<JsmStatusCategory>;
|
|
12487
|
+
};
|
|
12488
|
+
export type JsmStatusCategory = {
|
|
12489
|
+
__typename?: 'JSMStatusCategory';
|
|
12490
|
+
id: Scalars['ID'];
|
|
12491
|
+
key?: Maybe<Scalars['String']>;
|
|
12492
|
+
name?: Maybe<Scalars['String']>;
|
|
12493
|
+
};
|
|
12390
12494
|
export type JiraAdf = {
|
|
12391
12495
|
__typename?: 'JiraADF';
|
|
12392
12496
|
json?: Maybe<Scalars['JSON']>;
|
|
@@ -24219,6 +24323,7 @@ export type Query = {
|
|
|
24219
24323
|
appLogLines?: Maybe<AppLogLineConnection>;
|
|
24220
24324
|
developerLogAccess?: Maybe<Array<Maybe<DeveloperLogAccessResult>>>;
|
|
24221
24325
|
installationContextsWithLogAccess?: Maybe<Array<InstallationContextWithLogAccess>>;
|
|
24326
|
+
appLogsWithMetaData?: Maybe<AppLogsWithMetaDataResponse>;
|
|
24222
24327
|
team?: Maybe<TeamQuery>;
|
|
24223
24328
|
roadmaps?: Maybe<RoadmapsQuery>;
|
|
24224
24329
|
jwmOverview?: Maybe<JiraWorkManagementOverviewResult>;
|
|
@@ -24591,6 +24696,14 @@ export type QueryDeveloperLogAccessArgs = {
|
|
|
24591
24696
|
export type QueryInstallationContextsWithLogAccessArgs = {
|
|
24592
24697
|
appId: Scalars['ID'];
|
|
24593
24698
|
};
|
|
24699
|
+
export type QueryAppLogsWithMetaDataArgs = {
|
|
24700
|
+
appId: Scalars['String'];
|
|
24701
|
+
environmentId: Scalars['String'];
|
|
24702
|
+
offset: Scalars['Int'];
|
|
24703
|
+
limit: Scalars['Int'];
|
|
24704
|
+
queryStartTime: Scalars['String'];
|
|
24705
|
+
query?: Maybe<LogQueryInput>;
|
|
24706
|
+
};
|
|
24594
24707
|
export type QueryJwmOverviewArgs = {
|
|
24595
24708
|
id: Scalars['ID'];
|
|
24596
24709
|
};
|
|
@@ -28510,6 +28623,7 @@ export type TrelloBoard = Node & {
|
|
|
28510
28623
|
__typename?: 'TrelloBoard';
|
|
28511
28624
|
closed: Scalars['Boolean'];
|
|
28512
28625
|
creationMethod?: Maybe<Scalars['String']>;
|
|
28626
|
+
creator?: Maybe<TrelloMember>;
|
|
28513
28627
|
description?: Maybe<TrelloDescription>;
|
|
28514
28628
|
enterprise?: Maybe<TrelloEnterprise>;
|
|
28515
28629
|
enterpriseOwned: Scalars['Boolean'];
|
|
@@ -28522,10 +28636,12 @@ export type TrelloBoard = Node & {
|
|
|
28522
28636
|
members?: Maybe<TrelloBoardMembershipsConnection>;
|
|
28523
28637
|
name: Scalars['String'];
|
|
28524
28638
|
objectId: Scalars['ID'];
|
|
28639
|
+
popularLabelNamesByColor?: Maybe<Array<TrelloPopularLabelForColor>>;
|
|
28525
28640
|
prefs: TrelloBoardPrefs;
|
|
28526
28641
|
premiumFeatures?: Maybe<Array<Maybe<Scalars['String']>>>;
|
|
28527
28642
|
shortLink: Scalars['TrelloShortLink'];
|
|
28528
28643
|
shortUrl?: Maybe<Scalars['URL']>;
|
|
28644
|
+
tags?: Maybe<TrelloTagConnection>;
|
|
28529
28645
|
url?: Maybe<Scalars['URL']>;
|
|
28530
28646
|
viewer?: Maybe<TrelloBoardViewer>;
|
|
28531
28647
|
workspace?: Maybe<TrelloWorkspace>;
|
|
@@ -28544,6 +28660,10 @@ export type TrelloBoardMembersArgs = {
|
|
|
28544
28660
|
filter?: Maybe<TrelloBoardMembershipFilterInput>;
|
|
28545
28661
|
first?: Maybe<Scalars['Int']>;
|
|
28546
28662
|
};
|
|
28663
|
+
export type TrelloBoardTagsArgs = {
|
|
28664
|
+
after?: Maybe<Scalars['String']>;
|
|
28665
|
+
first?: Maybe<Scalars['Int']>;
|
|
28666
|
+
};
|
|
28547
28667
|
export type TrelloBoardAttachmentsLimits = {
|
|
28548
28668
|
__typename?: 'TrelloBoardAttachmentsLimits';
|
|
28549
28669
|
perBoard?: Maybe<TrelloLimitProps>;
|
|
@@ -29253,6 +29373,11 @@ export declare enum TrelloPluginDataScope {
|
|
|
29253
29373
|
Card = "CARD",
|
|
29254
29374
|
Organization = "ORGANIZATION"
|
|
29255
29375
|
}
|
|
29376
|
+
export type TrelloPopularLabelForColor = {
|
|
29377
|
+
__typename?: 'TrelloPopularLabelForColor';
|
|
29378
|
+
color?: Maybe<Scalars['String']>;
|
|
29379
|
+
labelName?: Maybe<Scalars['String']>;
|
|
29380
|
+
};
|
|
29256
29381
|
export type TrelloQueryApi = {
|
|
29257
29382
|
__typename?: 'TrelloQueryApi';
|
|
29258
29383
|
board?: Maybe<TrelloBoard>;
|
|
@@ -29467,12 +29592,14 @@ export type TrelloWorkspace = Node & {
|
|
|
29467
29592
|
__typename?: 'TrelloWorkspace';
|
|
29468
29593
|
description: Scalars['String'];
|
|
29469
29594
|
displayName: Scalars['String'];
|
|
29595
|
+
enterprise?: Maybe<TrelloEnterprise>;
|
|
29470
29596
|
id: Scalars['ID'];
|
|
29471
29597
|
logoHash?: Maybe<Scalars['String']>;
|
|
29472
29598
|
logoUrl?: Maybe<Scalars['String']>;
|
|
29473
29599
|
members?: Maybe<TrelloWorkspaceMembershipsConnection>;
|
|
29474
29600
|
name: Scalars['String'];
|
|
29475
29601
|
objectId: Scalars['ID'];
|
|
29602
|
+
prefs: TrelloWorkspacePrefs;
|
|
29476
29603
|
tags?: Maybe<TrelloTagConnection>;
|
|
29477
29604
|
url: Scalars['String'];
|
|
29478
29605
|
website?: Maybe<Scalars['String']>;
|
|
@@ -29509,6 +29636,10 @@ export type TrelloWorkspaceMembershipsConnection = {
|
|
|
29509
29636
|
nodes?: Maybe<Array<TrelloMember>>;
|
|
29510
29637
|
pageInfo: PageInfo;
|
|
29511
29638
|
};
|
|
29639
|
+
export type TrelloWorkspacePrefs = {
|
|
29640
|
+
__typename?: 'TrelloWorkspacePrefs';
|
|
29641
|
+
associatedDomain?: Maybe<Scalars['String']>;
|
|
29642
|
+
};
|
|
29512
29643
|
export type TunnelDefinitionsInput = {
|
|
29513
29644
|
faasTunnelUrl?: Maybe<Scalars['URL']>;
|
|
29514
29645
|
customUI?: Maybe<Array<Maybe<CustomUiTunnelDefinitionInput>>>;
|