@forge/cli-shared 3.2.2-next.0 → 3.2.2-next.1
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 +6 -0
- package/out/app-logs/view-logs.js +3 -3
- package/out/apps/app-config.d.ts.map +1 -1
- package/out/apps/app-config.js +3 -2
- package/out/apps/create-app-graphql-client.js +1 -1
- package/out/apps/package-installer.js +1 -1
- package/out/apps/register-app.js +1 -1
- package/out/apps/template.js +12 -12
- package/out/auth/personal/credential-store.js +5 -5
- package/out/auth/personal/me-graphql-client.js +1 -1
- package/out/auth/personal/token-authenticator.js +1 -1
- package/out/config/config-file-section-reader.js +2 -1
- package/out/config/config-file-section-writer.js +2 -1
- package/out/config/config-file.d.ts +1 -1
- package/out/config/config-file.d.ts.map +1 -1
- package/out/config/config-file.js +6 -7
- package/out/config/config-section.js +2 -1
- package/out/config/config.js +4 -2
- package/out/file-system/file-system-reader.d.ts +1 -0
- package/out/file-system/file-system-reader.d.ts.map +1 -1
- package/out/file-system/file-system-reader.js +7 -7
- package/out/file-system/file-system-writer.js +1 -1
- package/out/file-system/zip-accessor.js +1 -1
- package/out/graphql/gateway.js +5 -3
- package/out/graphql/graphql-types.d.ts +63 -70
- package/out/graphql/graphql-types.d.ts.map +1 -1
- package/out/graphql/graphql-types.js +27 -1
- package/out/graphql/mutation-aware-graphql-client.d.ts +2 -2
- package/out/graphql/mutation-aware-graphql-client.d.ts.map +1 -1
- package/out/http-client/feedback-post-client.js +1 -1
- package/out/http-client/file-uploader.js +1 -1
- package/out/service/bridge-script-service.d.ts +2 -0
- package/out/service/bridge-script-service.d.ts.map +1 -1
- package/out/service/bridge-script-service.js +4 -2
- package/out/service/feature-flag-service.js +3 -3
- package/out/service/iframe-resizer-script-service.d.ts +2 -0
- package/out/service/iframe-resizer-script-service.d.ts.map +1 -1
- package/out/service/iframe-resizer-script-service.js +4 -2
- package/out/shared/error-handling.d.ts +1 -1
- package/out/shared/error-handling.d.ts.map +1 -1
- package/out/shared/error-handling.js +6 -3
- package/out/shared/index.js +1 -1
- package/out/shared/pause.js +2 -1
- package/out/shared/product.js +8 -5
- package/out/shared/read-app-config-files.d.ts.map +1 -1
- package/out/shared/read-app-config-files.js +7 -5
- package/out/shared/validate.js +3 -2
- package/out/ui/command-line-ui.js +3 -3
- package/out/ui/multiple-table-prompt.js +4 -2
- package/out/ui/runtime-log.js +1 -1
- package/out/ui/single-table-prompt.js +4 -2
- package/out/ui/table-prompt.js +1 -1
- package/out/ui/text.d.ts +1 -1
- package/out/ui/text.d.ts.map +1 -1
- package/out/ui/text.js +5 -4
- package/package.json +3 -3
|
@@ -4507,36 +4507,10 @@ export declare type ContainerEventObject = {
|
|
|
4507
4507
|
attributes: Scalars['JSON'];
|
|
4508
4508
|
};
|
|
4509
4509
|
export declare type ContentPlatformAnyContext = ContentPlatformContextProduct | ContentPlatformContextApp | ContentPlatformContextTheme;
|
|
4510
|
-
export declare
|
|
4511
|
-
|
|
4512
|
-
|
|
4513
|
-
|
|
4514
|
-
};
|
|
4515
|
-
export declare type ContentPlatformChunkBestPractices = {
|
|
4516
|
-
__typename?: 'ContentPlatformChunkBestPractices';
|
|
4517
|
-
title: Scalars['String'];
|
|
4518
|
-
body: Scalars['String'];
|
|
4519
|
-
};
|
|
4520
|
-
export declare type ContentPlatformChunkDeepDive = {
|
|
4521
|
-
__typename?: 'ContentPlatformChunkDeepDive';
|
|
4522
|
-
title: Scalars['String'];
|
|
4523
|
-
body: Scalars['String'];
|
|
4524
|
-
};
|
|
4525
|
-
export declare type ContentPlatformChunkHowTo = {
|
|
4526
|
-
__typename?: 'ContentPlatformChunkHowTo';
|
|
4527
|
-
title: Scalars['String'];
|
|
4528
|
-
body: Scalars['String'];
|
|
4529
|
-
};
|
|
4530
|
-
export declare type ContentPlatformChunkInContext = {
|
|
4531
|
-
__typename?: 'ContentPlatformChunkInContext';
|
|
4532
|
-
title: Scalars['String'];
|
|
4533
|
-
body: Scalars['String'];
|
|
4534
|
-
};
|
|
4535
|
-
export declare type ContentPlatformChunkWhatIs = {
|
|
4536
|
-
__typename?: 'ContentPlatformChunkWhatIs';
|
|
4537
|
-
title: Scalars['String'];
|
|
4538
|
-
body: Scalars['String'];
|
|
4539
|
-
};
|
|
4510
|
+
export declare enum ContentPlatformBooleanOperators {
|
|
4511
|
+
And = "AND",
|
|
4512
|
+
Or = "OR"
|
|
4513
|
+
}
|
|
4540
4514
|
export declare type ContentPlatformContextApp = {
|
|
4541
4515
|
__typename?: 'ContentPlatformContextApp';
|
|
4542
4516
|
contextId: Scalars['String'];
|
|
@@ -4590,6 +4564,19 @@ export declare type ContentPlatformDateRangeFilter = {
|
|
|
4590
4564
|
before: Scalars['DateTime'];
|
|
4591
4565
|
after: Scalars['DateTime'];
|
|
4592
4566
|
};
|
|
4567
|
+
export declare type ContentPlatformField = {
|
|
4568
|
+
field: ContentPlatformFieldNames;
|
|
4569
|
+
weight?: Maybe<Scalars['Float']>;
|
|
4570
|
+
};
|
|
4571
|
+
export declare enum ContentPlatformFieldNames {
|
|
4572
|
+
Title = "TITLE",
|
|
4573
|
+
Description = "DESCRIPTION"
|
|
4574
|
+
}
|
|
4575
|
+
export declare type ContentPlatformFieldType = {
|
|
4576
|
+
__typename?: 'ContentPlatformFieldType';
|
|
4577
|
+
field: ContentPlatformFieldNames;
|
|
4578
|
+
weight?: Maybe<Scalars['Float']>;
|
|
4579
|
+
};
|
|
4593
4580
|
export declare type ContentPlatformImageAsset = {
|
|
4594
4581
|
__typename?: 'ContentPlatformImageAsset';
|
|
4595
4582
|
title: Scalars['String'];
|
|
@@ -4615,34 +4602,14 @@ export declare type ContentPlatformImageComponent = {
|
|
|
4615
4602
|
image: ContentPlatformImageAsset;
|
|
4616
4603
|
contextReference: Array<ContentPlatformAnyContext>;
|
|
4617
4604
|
};
|
|
4618
|
-
export declare type
|
|
4619
|
-
|
|
4620
|
-
|
|
4621
|
-
body: Scalars['String'];
|
|
4622
|
-
};
|
|
4623
|
-
export declare type ContentPlatformPracticePage = {
|
|
4624
|
-
__typename?: 'ContentPlatformPracticePage';
|
|
4625
|
-
name: Scalars['String'];
|
|
4626
|
-
tagline: Scalars['String'];
|
|
4627
|
-
introToPractice: ContentPlatformIntroToPractice;
|
|
4628
|
-
whatIs: ContentPlatformChunkWhatIs;
|
|
4629
|
-
benefits?: Maybe<ContentPlatformChunkBenefits>;
|
|
4630
|
-
deepDive?: Maybe<ContentPlatformChunkDeepDive>;
|
|
4631
|
-
bestPractices?: Maybe<ContentPlatformChunkBestPractices>;
|
|
4632
|
-
inContext?: Maybe<ContentPlatformChunkInContext>;
|
|
4633
|
-
howTo?: Maybe<ContentPlatformChunkHowTo>;
|
|
4634
|
-
practice: ContentPlatformWhatPractice;
|
|
4635
|
-
};
|
|
4636
|
-
export declare type ContentPlatformPracticePagesConnection = {
|
|
4637
|
-
__typename?: 'ContentPlatformPracticePagesConnection';
|
|
4638
|
-
pageInfo: PageInfo;
|
|
4639
|
-
edges: Array<ContentPlatformPracticePagesEdge>;
|
|
4640
|
-
};
|
|
4641
|
-
export declare type ContentPlatformPracticePagesEdge = {
|
|
4642
|
-
__typename?: 'ContentPlatformPracticePagesEdge';
|
|
4643
|
-
node: ContentPlatformPracticePage;
|
|
4644
|
-
cursor: Scalars['String'];
|
|
4605
|
+
export declare type ContentPlatformNestSearchOptions = {
|
|
4606
|
+
queries: Array<ContentPlatformSearchQuery>;
|
|
4607
|
+
operator?: Maybe<ContentPlatformBooleanOperators>;
|
|
4645
4608
|
};
|
|
4609
|
+
export declare enum ContentPlatformOperators {
|
|
4610
|
+
Any = "ANY",
|
|
4611
|
+
All = "ALL"
|
|
4612
|
+
}
|
|
4646
4613
|
export declare type ContentPlatformReleaseNote = {
|
|
4647
4614
|
__typename?: 'ContentPlatformReleaseNote';
|
|
4648
4615
|
releaseNoteId: Scalars['String'];
|
|
@@ -4699,6 +4666,25 @@ export declare type ContentPlatformReleaseNotesEdge = {
|
|
|
4699
4666
|
node: ContentPlatformReleaseNote;
|
|
4700
4667
|
cursor: Scalars['String'];
|
|
4701
4668
|
};
|
|
4669
|
+
export declare type ContentPlatformSearchQuery = {
|
|
4670
|
+
searchType: ContentPlatformSearchTypes;
|
|
4671
|
+
terms: Array<Scalars['String']>;
|
|
4672
|
+
termOperator?: Maybe<ContentPlatformOperators>;
|
|
4673
|
+
fields?: Maybe<Array<ContentPlatformField>>;
|
|
4674
|
+
fieldOperator?: Maybe<ContentPlatformOperators>;
|
|
4675
|
+
};
|
|
4676
|
+
export declare type ContentPlatformSearchQueryType = {
|
|
4677
|
+
__typename?: 'ContentPlatformSearchQueryType';
|
|
4678
|
+
searchType: ContentPlatformSearchTypes;
|
|
4679
|
+
terms: Array<Scalars['String']>;
|
|
4680
|
+
termOperator?: Maybe<ContentPlatformOperators>;
|
|
4681
|
+
fields?: Maybe<Array<ContentPlatformFieldType>>;
|
|
4682
|
+
fieldOperator?: Maybe<ContentPlatformOperators>;
|
|
4683
|
+
};
|
|
4684
|
+
export declare enum ContentPlatformSearchTypes {
|
|
4685
|
+
Contains = "CONTAINS",
|
|
4686
|
+
ExactMatch = "EXACT_MATCH"
|
|
4687
|
+
}
|
|
4702
4688
|
export declare type ContentPlatformStatusOfChange = {
|
|
4703
4689
|
__typename?: 'ContentPlatformStatusOfChange';
|
|
4704
4690
|
label: Scalars['String'];
|
|
@@ -4729,10 +4715,6 @@ export declare type ContentPlatformTypeOfChange = {
|
|
|
4729
4715
|
label: Scalars['String'];
|
|
4730
4716
|
icon: ContentPlatformImageAsset;
|
|
4731
4717
|
};
|
|
4732
|
-
export declare type ContentPlatformWhatPractice = {
|
|
4733
|
-
__typename?: 'ContentPlatformWhatPractice';
|
|
4734
|
-
title: Scalars['String'];
|
|
4735
|
-
};
|
|
4736
4718
|
export declare type ContextEventObject = {
|
|
4737
4719
|
__typename?: 'ContextEventObject';
|
|
4738
4720
|
id: Scalars['ID'];
|
|
@@ -8073,6 +8055,7 @@ export declare type JiraAttachment = {
|
|
|
8073
8055
|
fileSize?: Maybe<Scalars['Long']>;
|
|
8074
8056
|
parentName?: Maybe<Scalars['String']>;
|
|
8075
8057
|
parentId?: Maybe<Scalars['String']>;
|
|
8058
|
+
hasRestrictedParent?: Maybe<Scalars['Boolean']>;
|
|
8076
8059
|
};
|
|
8077
8060
|
export declare type JiraAttachmentConnection = {
|
|
8078
8061
|
__typename?: 'JiraAttachmentConnection';
|
|
@@ -11189,6 +11172,7 @@ export declare type JiraPlatformAttachment = JiraAttachment & Node & {
|
|
|
11189
11172
|
fileSize?: Maybe<Scalars['Long']>;
|
|
11190
11173
|
parentName?: Maybe<Scalars['String']>;
|
|
11191
11174
|
parentId?: Maybe<Scalars['String']>;
|
|
11175
|
+
hasRestrictedParent?: Maybe<Scalars['Boolean']>;
|
|
11192
11176
|
};
|
|
11193
11177
|
export declare type JiraPlatformComment = JiraComment & Node & {
|
|
11194
11178
|
__typename?: 'JiraPlatformComment';
|
|
@@ -12323,6 +12307,7 @@ export declare type JiraServiceManagementAttachment = JiraAttachment & Node & {
|
|
|
12323
12307
|
parentName?: Maybe<Scalars['String']>;
|
|
12324
12308
|
parentId?: Maybe<Scalars['String']>;
|
|
12325
12309
|
parentCommentVisibility?: Maybe<JiraServiceManagementCommentVisibility>;
|
|
12310
|
+
hasRestrictedParent?: Maybe<Scalars['Boolean']>;
|
|
12326
12311
|
};
|
|
12327
12312
|
export declare type JiraServiceManagementComment = JiraComment & Node & {
|
|
12328
12313
|
__typename?: 'JiraServiceManagementComment';
|
|
@@ -13435,6 +13420,15 @@ export declare type JiraVersionRelatedWork = {
|
|
|
13435
13420
|
addedOn?: Maybe<Scalars['DateTime']>;
|
|
13436
13421
|
addedBy?: Maybe<User>;
|
|
13437
13422
|
};
|
|
13423
|
+
export declare type JiraVersionRelatedWorkConfluenceReleaseNotes = JiraVersionRelatedWorkV2 & {
|
|
13424
|
+
__typename?: 'JiraVersionRelatedWorkConfluenceReleaseNotes';
|
|
13425
|
+
relatedWorkId?: Maybe<Scalars['ID']>;
|
|
13426
|
+
url?: Maybe<Scalars['URL']>;
|
|
13427
|
+
title?: Maybe<Scalars['String']>;
|
|
13428
|
+
category?: Maybe<Scalars['String']>;
|
|
13429
|
+
addedOn?: Maybe<Scalars['DateTime']>;
|
|
13430
|
+
addedBy?: Maybe<User>;
|
|
13431
|
+
};
|
|
13438
13432
|
export declare type JiraVersionRelatedWorkConnection = {
|
|
13439
13433
|
__typename?: 'JiraVersionRelatedWorkConnection';
|
|
13440
13434
|
pageInfo: PageInfo;
|
|
@@ -16213,14 +16207,13 @@ export declare type ProjectAvatars = {
|
|
|
16213
16207
|
};
|
|
16214
16208
|
export declare type Query = {
|
|
16215
16209
|
__typename?: 'Query';
|
|
16210
|
+
trello?: Maybe<TrelloQueryApi>;
|
|
16216
16211
|
customerSupport?: Maybe<SupportRequestCatalogQueryApi>;
|
|
16217
16212
|
jiraProjectAndDevOpsToolRelationship?: Maybe<JiraProjectAndDevOpsToolRelationship>;
|
|
16218
16213
|
bitbucket?: Maybe<BitbucketQuery>;
|
|
16219
16214
|
opsgenie?: Maybe<OpsgenieQuery>;
|
|
16220
16215
|
releaseNotes: ContentPlatformReleaseNotesConnection;
|
|
16221
16216
|
releaseNote?: Maybe<ContentPlatformReleaseNote>;
|
|
16222
|
-
practicePages: ContentPlatformPracticePagesConnection;
|
|
16223
|
-
practicePage?: Maybe<ContentPlatformPracticePage>;
|
|
16224
16217
|
smarts?: Maybe<SmartsQueryApi>;
|
|
16225
16218
|
townsquare?: Maybe<TownsquareQueryApi>;
|
|
16226
16219
|
devOps?: Maybe<DevOps>;
|
|
@@ -16329,6 +16322,7 @@ export declare type QueryJiraProjectAndDevOpsToolRelationshipArgs = {
|
|
|
16329
16322
|
export declare type QueryReleaseNotesArgs = {
|
|
16330
16323
|
after?: Maybe<Scalars['String']>;
|
|
16331
16324
|
first?: Maybe<Scalars['Int']>;
|
|
16325
|
+
search?: Maybe<ContentPlatformNestSearchOptions>;
|
|
16332
16326
|
filter?: Maybe<ContentPlatformReleaseNoteFilterOptions>;
|
|
16333
16327
|
filterByAnnouncementPlan?: Maybe<Scalars['Boolean']>;
|
|
16334
16328
|
productFeatureFlags?: Maybe<Scalars['JSON']>;
|
|
@@ -16339,13 +16333,6 @@ export declare type QueryReleaseNoteArgs = {
|
|
|
16339
16333
|
id: Scalars['String'];
|
|
16340
16334
|
publishedOnly?: Maybe<Scalars['Boolean']>;
|
|
16341
16335
|
};
|
|
16342
|
-
export declare type QueryPracticePagesArgs = {
|
|
16343
|
-
after?: Maybe<Scalars['String']>;
|
|
16344
|
-
first?: Maybe<Scalars['Int']>;
|
|
16345
|
-
};
|
|
16346
|
-
export declare type QueryPracticePageArgs = {
|
|
16347
|
-
id: Scalars['String'];
|
|
16348
|
-
};
|
|
16349
16336
|
export declare type QueryJiraProjectRelationshipsForRepositoryArgs = {
|
|
16350
16337
|
id: Scalars['ID'];
|
|
16351
16338
|
cloudId: Scalars['ID'];
|
|
@@ -18006,6 +17993,7 @@ export declare enum ShepherdAlertTemplateType {
|
|
|
18006
17993
|
EnableScimSync = "ENABLE_SCIM_SYNC",
|
|
18007
17994
|
ExportedOrgeventscsv = "EXPORTED_ORGEVENTSCSV",
|
|
18008
17995
|
InitiatedGsyncConnection = "INITIATED_GSYNC_CONNECTION",
|
|
17996
|
+
JiraIssueCrawling = "JIRA_ISSUE_CRAWLING",
|
|
18009
17997
|
RotateScimDirectoryToken = "ROTATE_SCIM_DIRECTORY_TOKEN",
|
|
18010
17998
|
TokenCreated = "TOKEN_CREATED",
|
|
18011
17999
|
UpdatedAuthPolicy = "UPDATED_AUTH_POLICY",
|
|
@@ -18355,6 +18343,7 @@ export declare type ShepherdWebhookSubscription = Node & ShepherdSubscription &
|
|
|
18355
18343
|
};
|
|
18356
18344
|
export declare enum ShepherdWebhookType {
|
|
18357
18345
|
Custom = "CUSTOM",
|
|
18346
|
+
MicrosoftTeams = "MICROSOFT_TEAMS",
|
|
18358
18347
|
Slack = "SLACK"
|
|
18359
18348
|
}
|
|
18360
18349
|
export declare type SmartsContext = {
|
|
@@ -19488,6 +19477,10 @@ export declare type TransitionFilter = {
|
|
|
19488
19477
|
from: Scalars['String'];
|
|
19489
19478
|
to: Scalars['String'];
|
|
19490
19479
|
};
|
|
19480
|
+
export declare type TrelloQueryApi = {
|
|
19481
|
+
__typename?: 'TrelloQueryApi';
|
|
19482
|
+
echo: Scalars['String'];
|
|
19483
|
+
};
|
|
19491
19484
|
export declare type TunnelDefinitionsInput = {
|
|
19492
19485
|
faasTunnelUrl?: Maybe<Scalars['URL']>;
|
|
19493
19486
|
customUI?: Maybe<Array<Maybe<CustomUiTunnelDefinitionInput>>>;
|