@forge/cli-shared 3.21.0-next.12 → 3.21.0-next.14
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,25 @@
|
|
|
1
1
|
# @forge/cli-shared
|
|
2
2
|
|
|
3
|
+
## 3.21.0-next.14
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- ea83741: Bumping dependencies via Renovate:
|
|
8
|
+
|
|
9
|
+
- @types/ignore-walk
|
|
10
|
+
|
|
11
|
+
## 3.21.0-next.13
|
|
12
|
+
|
|
13
|
+
### Patch Changes
|
|
14
|
+
|
|
15
|
+
- 843fa1d: Bumping dependencies via Renovate:
|
|
16
|
+
|
|
17
|
+
- @types/fs-extra
|
|
18
|
+
|
|
19
|
+
- 598fb18: Bumping dependencies via Renovate:
|
|
20
|
+
|
|
21
|
+
- @types/inquirer
|
|
22
|
+
|
|
3
23
|
## 3.21.0-next.12
|
|
4
24
|
|
|
5
25
|
### Patch Changes
|
|
@@ -24458,6 +24458,34 @@ export declare enum MarketplaceProgramStatus {
|
|
|
24458
24458
|
NotAParticipant = "NOT_A_PARTICIPANT",
|
|
24459
24459
|
Rejected = "REJECTED"
|
|
24460
24460
|
}
|
|
24461
|
+
export declare enum MarketplaceStoreAppEditionType {
|
|
24462
|
+
Advanced = "ADVANCED",
|
|
24463
|
+
Free = "FREE",
|
|
24464
|
+
Sandbox = "SANDBOX",
|
|
24465
|
+
Standard = "STANDARD"
|
|
24466
|
+
}
|
|
24467
|
+
export type MarketplaceStoreInstallAppInput = {
|
|
24468
|
+
appKey: Scalars['String']['input'];
|
|
24469
|
+
editionType?: InputMaybe<MarketplaceStoreAppEditionType>;
|
|
24470
|
+
};
|
|
24471
|
+
export type MarketplaceStoreInstallAppRequest = {
|
|
24472
|
+
__typename?: 'MarketplaceStoreInstallAppRequest';
|
|
24473
|
+
id: Scalars['ID']['output'];
|
|
24474
|
+
};
|
|
24475
|
+
export type MarketplaceStoreMutationApi = {
|
|
24476
|
+
__typename?: 'MarketplaceStoreMutationApi';
|
|
24477
|
+
installApp: MarketplaceStoreInstallAppRequest;
|
|
24478
|
+
};
|
|
24479
|
+
export type MarketplaceStoreMutationApiInstallAppArgs = {
|
|
24480
|
+
input: MarketplaceStoreInstallAppInput;
|
|
24481
|
+
};
|
|
24482
|
+
export type MarketplaceStoreQueryApi = {
|
|
24483
|
+
__typename?: 'MarketplaceStoreQueryApi';
|
|
24484
|
+
installAppStatus: MarketplaceStoreInstallAppRequest;
|
|
24485
|
+
};
|
|
24486
|
+
export type MarketplaceStoreQueryApiInstallAppStatusArgs = {
|
|
24487
|
+
id: Scalars['ID']['input'];
|
|
24488
|
+
};
|
|
24461
24489
|
export type MarketplaceSupportedAtlassianProduct = {
|
|
24462
24490
|
__typename?: 'MarketplaceSupportedAtlassianProduct';
|
|
24463
24491
|
hostingOptions: Array<AtlassianProductHostingType>;
|
|
@@ -24643,6 +24671,7 @@ export type Mutation = {
|
|
|
24643
24671
|
jiraCannedResponse?: Maybe<JiraCannedResponseMutationApi>;
|
|
24644
24672
|
jiraOAuthApps?: Maybe<JiraOAuthAppsMutation>;
|
|
24645
24673
|
jsw?: Maybe<JswMutation>;
|
|
24674
|
+
marketplaceStore?: Maybe<MarketplaceStoreMutationApi>;
|
|
24646
24675
|
moveSprintDown?: Maybe<MoveSprintDownResponse>;
|
|
24647
24676
|
moveSprintUp?: Maybe<MoveSprintUpResponse>;
|
|
24648
24677
|
notifications?: Maybe<InfluentsNotificationMutation>;
|
|
@@ -25571,9 +25600,19 @@ export type PeapInternalMutationApi = {
|
|
|
25571
25600
|
__typename?: 'PEAPInternalMutationApi';
|
|
25572
25601
|
_module?: Maybe<Scalars['String']['output']>;
|
|
25573
25602
|
createProgram: PeapProgramMutationResponse;
|
|
25603
|
+
updateProgram: PeapProgramMutationResponse;
|
|
25604
|
+
updateProgramStatus: PeapProgramMutationResponse;
|
|
25574
25605
|
};
|
|
25575
25606
|
export type PeapInternalMutationApiCreateProgramArgs = {
|
|
25576
|
-
program:
|
|
25607
|
+
program: PeapNewProgramInput;
|
|
25608
|
+
};
|
|
25609
|
+
export type PeapInternalMutationApiUpdateProgramArgs = {
|
|
25610
|
+
id: Scalars['ID']['input'];
|
|
25611
|
+
program: PeapUpdateProgramInput;
|
|
25612
|
+
};
|
|
25613
|
+
export type PeapInternalMutationApiUpdateProgramStatusArgs = {
|
|
25614
|
+
id: Scalars['ID']['input'];
|
|
25615
|
+
status: PeapProgramStatus;
|
|
25577
25616
|
};
|
|
25578
25617
|
export type PeapInternalQueryApi = {
|
|
25579
25618
|
__typename?: 'PEAPInternalQueryApi';
|
|
@@ -25583,26 +25622,49 @@ export type PeapMutationApi = {
|
|
|
25583
25622
|
__typename?: 'PEAPMutationApi';
|
|
25584
25623
|
internal: PeapInternalMutationApi;
|
|
25585
25624
|
};
|
|
25625
|
+
export type PeapNewProgramInput = {
|
|
25626
|
+
cdacGroup?: InputMaybe<Scalars['String']['input']>;
|
|
25627
|
+
changeCategory?: InputMaybe<Scalars['String']['input']>;
|
|
25628
|
+
changeTicket?: InputMaybe<Scalars['String']['input']>;
|
|
25629
|
+
description: Scalars['String']['input'];
|
|
25630
|
+
documentationURL: Scalars['String']['input'];
|
|
25631
|
+
name: Scalars['String']['input'];
|
|
25632
|
+
serviceId?: InputMaybe<Scalars['String']['input']>;
|
|
25633
|
+
team?: InputMaybe<Scalars['String']['input']>;
|
|
25634
|
+
teamChannel?: InputMaybe<Scalars['String']['input']>;
|
|
25635
|
+
};
|
|
25586
25636
|
export type PeapProgram = {
|
|
25587
25637
|
__typename?: 'PEAPProgram';
|
|
25638
|
+
activatedAt?: Maybe<Scalars['Date']['output']>;
|
|
25639
|
+
cdacCategory?: Maybe<Scalars['String']['output']>;
|
|
25640
|
+
changeCategory?: Maybe<Scalars['String']['output']>;
|
|
25641
|
+
changeTicket?: Maybe<Scalars['String']['output']>;
|
|
25642
|
+
completedAt?: Maybe<Scalars['Date']['output']>;
|
|
25643
|
+
createdAt: Scalars['Date']['output'];
|
|
25588
25644
|
description: Scalars['String']['output'];
|
|
25589
|
-
|
|
25645
|
+
documentationURL: Scalars['String']['output'];
|
|
25590
25646
|
id: Scalars['ID']['output'];
|
|
25591
25647
|
internal?: Maybe<PeapProgramInternalData>;
|
|
25592
25648
|
name: Scalars['String']['output'];
|
|
25593
|
-
|
|
25594
|
-
status:
|
|
25649
|
+
serviceId?: Maybe<Scalars['String']['output']>;
|
|
25650
|
+
status: PeapProgramStatus;
|
|
25651
|
+
updatedAt: Scalars['Date']['output'];
|
|
25595
25652
|
};
|
|
25596
|
-
export type
|
|
25597
|
-
|
|
25598
|
-
|
|
25599
|
-
|
|
25600
|
-
|
|
25601
|
-
|
|
25653
|
+
export type PeapProgramConnection = HasPageInfo & {
|
|
25654
|
+
__typename?: 'PEAPProgramConnection';
|
|
25655
|
+
edges?: Maybe<Array<Maybe<PeapProgramEdge>>>;
|
|
25656
|
+
pageInfo: PageInfo;
|
|
25657
|
+
};
|
|
25658
|
+
export type PeapProgramEdge = {
|
|
25659
|
+
__typename?: 'PEAPProgramEdge';
|
|
25660
|
+
cursor: Scalars['String']['output'];
|
|
25661
|
+
node: PeapProgram;
|
|
25602
25662
|
};
|
|
25603
25663
|
export type PeapProgramInternalData = {
|
|
25604
25664
|
__typename?: 'PEAPProgramInternalData';
|
|
25665
|
+
cdacGroup?: Maybe<Scalars['String']['output']>;
|
|
25605
25666
|
owner?: Maybe<User>;
|
|
25667
|
+
team?: Maybe<Scalars['String']['output']>;
|
|
25606
25668
|
teamChannel?: Maybe<Scalars['String']['output']>;
|
|
25607
25669
|
};
|
|
25608
25670
|
export type PeapProgramMutationResponse = Payload & {
|
|
@@ -25611,14 +25673,35 @@ export type PeapProgramMutationResponse = Payload & {
|
|
|
25611
25673
|
program?: Maybe<PeapProgram>;
|
|
25612
25674
|
success: Scalars['Boolean']['output'];
|
|
25613
25675
|
};
|
|
25676
|
+
export declare enum PeapProgramStatus {
|
|
25677
|
+
Abandoned = "ABANDONED",
|
|
25678
|
+
Active = "ACTIVE",
|
|
25679
|
+
Ended = "ENDED",
|
|
25680
|
+
New = "NEW",
|
|
25681
|
+
Planned = "PLANNED"
|
|
25682
|
+
}
|
|
25614
25683
|
export type PeapQueryApi = {
|
|
25615
25684
|
__typename?: 'PEAPQueryApi';
|
|
25616
25685
|
internal: PeapInternalQueryApi;
|
|
25617
25686
|
program?: Maybe<PeapProgram>;
|
|
25687
|
+
programs?: Maybe<PeapProgramConnection>;
|
|
25618
25688
|
};
|
|
25619
25689
|
export type PeapQueryApiProgramArgs = {
|
|
25620
25690
|
id: Scalars['ID']['input'];
|
|
25621
25691
|
};
|
|
25692
|
+
export type PeapQueryApiProgramsArgs = {
|
|
25693
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
25694
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
25695
|
+
};
|
|
25696
|
+
export type PeapUpdateProgramInput = {
|
|
25697
|
+
changeCategory?: InputMaybe<Scalars['String']['input']>;
|
|
25698
|
+
description?: InputMaybe<Scalars['String']['input']>;
|
|
25699
|
+
documentationURL?: InputMaybe<Scalars['String']['input']>;
|
|
25700
|
+
name?: InputMaybe<Scalars['String']['input']>;
|
|
25701
|
+
serviceId?: InputMaybe<Scalars['String']['input']>;
|
|
25702
|
+
team?: InputMaybe<Scalars['String']['input']>;
|
|
25703
|
+
teamChannel?: InputMaybe<Scalars['String']['input']>;
|
|
25704
|
+
};
|
|
25622
25705
|
export type PageInfo = {
|
|
25623
25706
|
__typename?: 'PageInfo';
|
|
25624
25707
|
endCursor?: Maybe<Scalars['String']['output']>;
|
|
@@ -27290,6 +27373,7 @@ export type Query = {
|
|
|
27290
27373
|
marketplaceAppTrustInformation?: Maybe<MarketplaceAppTrustInformationResult>;
|
|
27291
27374
|
marketplacePartner?: Maybe<MarketplacePartner>;
|
|
27292
27375
|
marketplacePricingPlan?: Maybe<MarketplacePricingPlan>;
|
|
27376
|
+
marketplaceStore: MarketplaceStoreQueryApi;
|
|
27293
27377
|
marketplaceUser?: Maybe<MarketplaceUser>;
|
|
27294
27378
|
me: AuthenticationContext;
|
|
27295
27379
|
migration: MigrationQuery;
|
|
@@ -29455,6 +29539,7 @@ export declare enum ShepherdActionType {
|
|
|
29455
29539
|
Crawl = "CRAWL",
|
|
29456
29540
|
Create = "CREATE",
|
|
29457
29541
|
Delete = "DELETE",
|
|
29542
|
+
Download = "DOWNLOAD",
|
|
29458
29543
|
Export = "EXPORT",
|
|
29459
29544
|
Grant = "GRANT",
|
|
29460
29545
|
Install = "INSTALL",
|
|
@@ -29595,9 +29680,11 @@ export declare enum ShepherdAlertTemplateType {
|
|
|
29595
29680
|
ConfluenceDataDiscoveryCreditCard = "CONFLUENCE_DATA_DISCOVERY_CREDIT_CARD",
|
|
29596
29681
|
ConfluenceDataDiscoveryCrypto = "CONFLUENCE_DATA_DISCOVERY_CRYPTO",
|
|
29597
29682
|
ConfluenceDataDiscoveryIban = "CONFLUENCE_DATA_DISCOVERY_IBAN",
|
|
29683
|
+
ConfluenceDataDiscoveryPrivateKey = "CONFLUENCE_DATA_DISCOVERY_PRIVATE_KEY",
|
|
29598
29684
|
ConfluenceDataDiscoveryUsSsn = "CONFLUENCE_DATA_DISCOVERY_US_SSN",
|
|
29599
29685
|
ConfluencePageCrawling = "CONFLUENCE_PAGE_CRAWLING",
|
|
29600
29686
|
ConfluencePageExports = "CONFLUENCE_PAGE_EXPORTS",
|
|
29687
|
+
ConfluenceSiteBackupDownloaded = "CONFLUENCE_SITE_BACKUP_DOWNLOADED",
|
|
29601
29688
|
ConfluenceSpaceExports = "CONFLUENCE_SPACE_EXPORTS",
|
|
29602
29689
|
ConfluenceSuspiciousSearch = "CONFLUENCE_SUSPICIOUS_SEARCH",
|
|
29603
29690
|
CreatedAuthPolicy = "CREATED_AUTH_POLICY",
|