@forge/cli-shared 6.1.0-next.4 → 6.1.0-next.6
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 +14 -0
- package/out/graphql/graphql-types.d.ts +58 -23
- package/out/graphql/graphql-types.d.ts.map +1 -1
- package/package.json +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,19 @@
|
|
|
1
1
|
# @forge/cli-shared
|
|
2
2
|
|
|
3
|
+
## 6.1.0-next.6
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- Updated dependencies [6e01e13]
|
|
8
|
+
- @forge/manifest@7.10.0-next.5
|
|
9
|
+
|
|
10
|
+
## 6.1.0-next.5
|
|
11
|
+
|
|
12
|
+
### Patch Changes
|
|
13
|
+
|
|
14
|
+
- Updated dependencies [51dc2a8]
|
|
15
|
+
- @forge/manifest@7.10.0-next.4
|
|
16
|
+
|
|
3
17
|
## 6.1.0-next.4
|
|
4
18
|
|
|
5
19
|
### Patch Changes
|
|
@@ -7025,6 +7025,12 @@ export declare enum ConfluenceContentType {
|
|
|
7025
7025
|
Page = "PAGE",
|
|
7026
7026
|
Whiteboard = "WHITEBOARD"
|
|
7027
7027
|
}
|
|
7028
|
+
export declare type ConfluenceContentVersion = {
|
|
7029
|
+
__typename?: 'ConfluenceContentVersion';
|
|
7030
|
+
author?: Maybe<ConfluenceUserInfo>;
|
|
7031
|
+
createdAt?: Maybe<Scalars['DateTime']['output']>;
|
|
7032
|
+
number?: Maybe<Scalars['Int']['output']>;
|
|
7033
|
+
};
|
|
7028
7034
|
export declare type ConfluenceContribution = {
|
|
7029
7035
|
__typename?: 'ConfluenceContribution';
|
|
7030
7036
|
status: ConfluenceContributionStatus;
|
|
@@ -7122,6 +7128,7 @@ export declare type ConfluenceDatabase = {
|
|
|
7122
7128
|
author?: Maybe<ConfluenceUserInfo>;
|
|
7123
7129
|
databaseId: Scalars['ID']['output'];
|
|
7124
7130
|
id: Scalars['ID']['output'];
|
|
7131
|
+
latestVersion?: Maybe<ConfluenceContentVersion>;
|
|
7125
7132
|
links?: Maybe<ConfluenceDatabaseLinks>;
|
|
7126
7133
|
owner?: Maybe<ConfluenceUserInfo>;
|
|
7127
7134
|
space?: Maybe<ConfluenceSpace>;
|
|
@@ -7180,6 +7187,7 @@ export declare type ConfluenceEmbed = {
|
|
|
7180
7187
|
author?: Maybe<ConfluenceUserInfo>;
|
|
7181
7188
|
embedId: Scalars['ID']['output'];
|
|
7182
7189
|
id: Scalars['ID']['output'];
|
|
7190
|
+
latestVersion?: Maybe<ConfluenceContentVersion>;
|
|
7183
7191
|
links?: Maybe<ConfluenceEmbedLinks>;
|
|
7184
7192
|
metadata?: Maybe<ConfluenceContentMetadata>;
|
|
7185
7193
|
owner?: Maybe<ConfluenceUserInfo>;
|
|
@@ -7202,6 +7210,7 @@ export declare type ConfluenceFolder = {
|
|
|
7202
7210
|
author?: Maybe<ConfluenceUserInfo>;
|
|
7203
7211
|
folderId: Scalars['ID']['output'];
|
|
7204
7212
|
id: Scalars['ID']['output'];
|
|
7213
|
+
latestVersion?: Maybe<ConfluenceContentVersion>;
|
|
7205
7214
|
links?: Maybe<ConfluenceFolderLinks>;
|
|
7206
7215
|
metadata?: Maybe<ConfluenceContentMetadata>;
|
|
7207
7216
|
owner?: Maybe<ConfluenceUserInfo>;
|
|
@@ -14055,6 +14064,7 @@ export declare type ConfluenceWhiteboard = {
|
|
|
14055
14064
|
author?: Maybe<ConfluenceUserInfo>;
|
|
14056
14065
|
comments?: Maybe<Array<Maybe<ConfluenceComment>>>;
|
|
14057
14066
|
id: Scalars['ID']['output'];
|
|
14067
|
+
latestVersion?: Maybe<ConfluenceContentVersion>;
|
|
14058
14068
|
links?: Maybe<ConfluenceWhiteboardLinks>;
|
|
14059
14069
|
owner?: Maybe<ConfluenceUserInfo>;
|
|
14060
14070
|
space?: Maybe<ConfluenceSpace>;
|
|
@@ -36603,14 +36613,6 @@ export declare enum GrowthUnifiedProfileEnterpriseAccountStatus {
|
|
|
36603
36613
|
Platimun = "PLATIMUN",
|
|
36604
36614
|
Silver = "SILVER"
|
|
36605
36615
|
}
|
|
36606
|
-
export declare type GrowthUnifiedProfileEntitlement = {
|
|
36607
|
-
__typename?: 'GrowthUnifiedProfileEntitlement';
|
|
36608
|
-
d0Entitlement?: Maybe<Scalars['Boolean']['output']>;
|
|
36609
|
-
d1tod6Entitlement?: Maybe<Scalars['Boolean']['output']>;
|
|
36610
|
-
productEdition?: Maybe<Scalars['String']['output']>;
|
|
36611
|
-
productKey?: Maybe<Scalars['String']['output']>;
|
|
36612
|
-
productName?: Maybe<Scalars['String']['output']>;
|
|
36613
|
-
};
|
|
36614
36616
|
export declare enum GrowthUnifiedProfileEntityType {
|
|
36615
36617
|
AjsAnonymousUser = "AJS_ANONYMOUS_USER",
|
|
36616
36618
|
AtlassianAccount = "ATLASSIAN_ACCOUNT",
|
|
@@ -36693,6 +36695,14 @@ export declare type GrowthUnifiedProfilePaidChannelContext = {
|
|
|
36693
36695
|
teamType?: Maybe<GrowthUnifiedProfileTeamType>;
|
|
36694
36696
|
utm?: Maybe<GrowthUnifiedProfileUtm>;
|
|
36695
36697
|
};
|
|
36698
|
+
export declare type GrowthUnifiedProfileProductDetails = {
|
|
36699
|
+
__typename?: 'GrowthUnifiedProfileProductDetails';
|
|
36700
|
+
d0Entitlement?: Maybe<Scalars['Boolean']['output']>;
|
|
36701
|
+
d1tod6Entitlement?: Maybe<Scalars['Boolean']['output']>;
|
|
36702
|
+
productEdition?: Maybe<Scalars['String']['output']>;
|
|
36703
|
+
productKey?: Maybe<Scalars['String']['output']>;
|
|
36704
|
+
productName?: Maybe<Scalars['String']['output']>;
|
|
36705
|
+
};
|
|
36696
36706
|
export declare enum GrowthUnifiedProfileProductType {
|
|
36697
36707
|
Confluence = "CONFLUENCE",
|
|
36698
36708
|
JiraSoftware = "JIRA_SOFTWARE",
|
|
@@ -36719,7 +36729,7 @@ export declare type GrowthUnifiedProfileSiteDetails = {
|
|
|
36719
36729
|
cloudId?: Maybe<Scalars['String']['output']>;
|
|
36720
36730
|
displayName?: Maybe<Scalars['String']['output']>;
|
|
36721
36731
|
hasAdminAccess?: Maybe<Scalars['Boolean']['output']>;
|
|
36722
|
-
products?: Maybe<Array<Maybe<
|
|
36732
|
+
products?: Maybe<Array<Maybe<GrowthUnifiedProfileProductDetails>>>;
|
|
36723
36733
|
siteCreatedAt?: Maybe<Scalars['Int']['output']>;
|
|
36724
36734
|
url?: Maybe<Scalars['String']['output']>;
|
|
36725
36735
|
};
|
|
@@ -37107,7 +37117,7 @@ export declare type HelpCenterMutationApi = {
|
|
|
37107
37117
|
deleteHelpCenter?: Maybe<HelpCenterDeletePayload>;
|
|
37108
37118
|
deleteTopic?: Maybe<HelpCenterDeleteUpdateTopicPayload>;
|
|
37109
37119
|
updateHelpCenter?: Maybe<HelpCenterUpdatePayload>;
|
|
37110
|
-
|
|
37120
|
+
updateHelpCenterPermissionSettings?: Maybe<HelpCenterPermissionSettingsPayload>;
|
|
37111
37121
|
updateHomePageAnnouncement?: Maybe<HelpCenterAnnouncementUpdatePayload>;
|
|
37112
37122
|
updateLoginAnnouncement?: Maybe<HelpCenterAnnouncementUpdatePayload>;
|
|
37113
37123
|
updatePortalsConfiguration?: Maybe<HelpCenterPortalsConfigurationUpdatePayload>;
|
|
@@ -37130,8 +37140,8 @@ export declare type HelpCenterMutationApiDeleteTopicArgs = {
|
|
|
37130
37140
|
export declare type HelpCenterMutationApiUpdateHelpCenterArgs = {
|
|
37131
37141
|
input: HelpCenterUpdateInput;
|
|
37132
37142
|
};
|
|
37133
|
-
export declare type
|
|
37134
|
-
input:
|
|
37143
|
+
export declare type HelpCenterMutationApiUpdateHelpCenterPermissionSettingsArgs = {
|
|
37144
|
+
input: HelpCenterPermissionSettingsInput;
|
|
37135
37145
|
};
|
|
37136
37146
|
export declare type HelpCenterMutationApiUpdateHomePageAnnouncementArgs = {
|
|
37137
37147
|
input: HelpCenterAnnouncementInput;
|
|
@@ -37160,23 +37170,23 @@ export declare type HelpCenterNameInput = {
|
|
|
37160
37170
|
default: Scalars['String']['input'];
|
|
37161
37171
|
translations?: InputMaybe<Array<InputMaybe<HelpCenterTranslationInput>>>;
|
|
37162
37172
|
};
|
|
37163
|
-
export declare type
|
|
37164
|
-
__typename?: '
|
|
37173
|
+
export declare type HelpCenterPermissionSettings = {
|
|
37174
|
+
__typename?: 'HelpCenterPermissionSettings';
|
|
37165
37175
|
accessControlType: HelpCenterAccessControlType;
|
|
37166
37176
|
allowedAccessGroups?: Maybe<Array<CustomerServiceOrganizationQueryResult>>;
|
|
37167
37177
|
};
|
|
37168
|
-
export declare type
|
|
37178
|
+
export declare type HelpCenterPermissionSettingsInput = {
|
|
37169
37179
|
accessControlType: HelpCenterAccessControlType;
|
|
37170
37180
|
addedAllowedAccessGroups?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
37171
37181
|
deletedAllowedAccessGroups?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
37172
37182
|
helpCenterAri: Scalars['String']['input'];
|
|
37173
37183
|
};
|
|
37174
|
-
export declare type
|
|
37175
|
-
__typename?: '
|
|
37184
|
+
export declare type HelpCenterPermissionSettingsPayload = Payload & {
|
|
37185
|
+
__typename?: 'HelpCenterPermissionSettingsPayload';
|
|
37176
37186
|
errors?: Maybe<Array<MutationError>>;
|
|
37177
37187
|
success: Scalars['Boolean']['output'];
|
|
37178
37188
|
};
|
|
37179
|
-
export declare type
|
|
37189
|
+
export declare type HelpCenterPermissionSettingsResult = HelpCenterPermissionSettings | QueryError;
|
|
37180
37190
|
export declare type HelpCenterPortal = {
|
|
37181
37191
|
__typename?: 'HelpCenterPortal';
|
|
37182
37192
|
description?: Maybe<Scalars['String']['output']>;
|
|
@@ -37256,7 +37266,7 @@ export declare type HelpCenterQueryApi = {
|
|
|
37256
37266
|
helpCenterByHoistedProjectId?: Maybe<HelpCenterQueryResult>;
|
|
37257
37267
|
helpCenterByHoistedProjectIdRouted?: Maybe<HelpCenterQueryResult>;
|
|
37258
37268
|
helpCenterById?: Maybe<HelpCenterQueryResult>;
|
|
37259
|
-
|
|
37269
|
+
helpCenterPermissionSettings?: Maybe<HelpCenterPermissionSettingsResult>;
|
|
37260
37270
|
helpCenterReportingById?: Maybe<HelpCenterReportingResult>;
|
|
37261
37271
|
helpCenterTopicById?: Maybe<HelpCenterTopicResult>;
|
|
37262
37272
|
helpCenters?: Maybe<HelpCenterQueryResultConnection>;
|
|
@@ -37275,7 +37285,7 @@ export declare type HelpCenterQueryApiHelpCenterByHoistedProjectIdRoutedArgs = {
|
|
|
37275
37285
|
export declare type HelpCenterQueryApiHelpCenterByIdArgs = {
|
|
37276
37286
|
helpCenterAri: Scalars['ID']['input'];
|
|
37277
37287
|
};
|
|
37278
|
-
export declare type
|
|
37288
|
+
export declare type HelpCenterQueryApiHelpCenterPermissionSettingsArgs = {
|
|
37279
37289
|
helpCenterAri: Scalars['ID']['input'];
|
|
37280
37290
|
};
|
|
37281
37291
|
export declare type HelpCenterQueryApiHelpCenterReportingByIdArgs = {
|
|
@@ -44586,6 +44596,10 @@ export declare type JiraIssueSearchByJqlContentByFieldSetIdsArgs = {
|
|
|
44586
44596
|
fieldSetIds: Array<Scalars['String']['input']>;
|
|
44587
44597
|
};
|
|
44588
44598
|
export declare type JiraIssueSearchByJqlResult = JiraIssueSearchByJql | QueryError;
|
|
44599
|
+
export declare type JiraIssueSearchChildIssuesInput = {
|
|
44600
|
+
filterByProjectKeys?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
44601
|
+
parentIssueKey: Scalars['String']['input'];
|
|
44602
|
+
};
|
|
44589
44603
|
export declare type JiraIssueSearchContextlessContent = JiraIssueSearchResultContent & {
|
|
44590
44604
|
__typename?: 'JiraIssueSearchContextlessContent';
|
|
44591
44605
|
issues?: Maybe<JiraIssueConnection>;
|
|
@@ -44662,6 +44676,7 @@ export declare type JiraIssueSearchHierarchyPreferenceMutationPayload = Payload
|
|
|
44662
44676
|
success: Scalars['Boolean']['output'];
|
|
44663
44677
|
};
|
|
44664
44678
|
export declare type JiraIssueSearchInput = {
|
|
44679
|
+
childIssuesInput?: InputMaybe<JiraIssueSearchChildIssuesInput>;
|
|
44665
44680
|
customInput?: InputMaybe<JiraIssueSearchCustomInput>;
|
|
44666
44681
|
filterId?: InputMaybe<Scalars['String']['input']>;
|
|
44667
44682
|
jql?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -56088,6 +56103,7 @@ export declare type MarketplaceConsoleAppSoftwareShort = {
|
|
|
56088
56103
|
isLatestVersionPaidViaAtlassian?: Maybe<Scalars['Boolean']['output']>;
|
|
56089
56104
|
latestVersion?: Maybe<MarketplaceConsoleAppSoftwareVersion>;
|
|
56090
56105
|
pricingParentSoftware?: Maybe<MarketplaceConsolePricingParentSoftware>;
|
|
56106
|
+
storesPersonalData?: Maybe<Scalars['Boolean']['output']>;
|
|
56091
56107
|
};
|
|
56092
56108
|
export declare type MarketplaceConsoleAppSoftwareVersion = {
|
|
56093
56109
|
__typename?: 'MarketplaceConsoleAppSoftwareVersion';
|
|
@@ -56174,6 +56190,7 @@ export declare type MarketplaceConsoleAppSoftwareVersionListingLinks = {
|
|
|
56174
56190
|
eula?: Maybe<Scalars['String']['output']>;
|
|
56175
56191
|
learnMore?: Maybe<Scalars['String']['output']>;
|
|
56176
56192
|
legacyVendorLinks?: Maybe<MarketplaceConsoleLegacyVendorLinks>;
|
|
56193
|
+
purchase?: Maybe<Scalars['String']['output']>;
|
|
56177
56194
|
};
|
|
56178
56195
|
export declare enum MarketplaceConsoleAppSoftwareVersionState {
|
|
56179
56196
|
Active = "ACTIVE",
|
|
@@ -56784,6 +56801,7 @@ export declare type MarketplaceConsoleQueryApi = {
|
|
|
56784
56801
|
appPrivateListings?: Maybe<MarketplaceConsolePrivateListings>;
|
|
56785
56802
|
appSoftwareVersionByAppId?: Maybe<MarketplaceConsoleAppSoftwareVersion>;
|
|
56786
56803
|
appSoftwareVersionListing?: Maybe<MarketplaceConsoleAppSoftwareVersionListing>;
|
|
56804
|
+
appSoftwareVersionsByAppId?: Maybe<Array<MarketplaceConsoleAppSoftwareVersion>>;
|
|
56787
56805
|
appSoftwareVersionsList: MarketplaceConsoleAppVersionsList;
|
|
56788
56806
|
appSoftwaresByAppId?: Maybe<MarketplaceConsoleAppSoftwares>;
|
|
56789
56807
|
canMakeServerVersionPublic?: Maybe<MarketplaceConsoleServerVersionPublicChecks>;
|
|
@@ -56814,6 +56832,10 @@ export declare type MarketplaceConsoleQueryApiAppSoftwareVersionListingArgs = {
|
|
|
56814
56832
|
appId: Scalars['ID']['input'];
|
|
56815
56833
|
buildNumber: Scalars['ID']['input'];
|
|
56816
56834
|
};
|
|
56835
|
+
export declare type MarketplaceConsoleQueryApiAppSoftwareVersionsByAppIdArgs = {
|
|
56836
|
+
appId: Scalars['ID']['input'];
|
|
56837
|
+
buildNumber: Scalars['ID']['input'];
|
|
56838
|
+
};
|
|
56817
56839
|
export declare type MarketplaceConsoleQueryApiAppSoftwareVersionsListArgs = {
|
|
56818
56840
|
versionsListInput: MarketplaceConsoleGetVersionsListInput;
|
|
56819
56841
|
};
|
|
@@ -62228,7 +62250,7 @@ export declare type Query = {
|
|
|
62228
62250
|
productListings: Array<ProductListingResult>;
|
|
62229
62251
|
radar_enlistment: RadarEnlistment;
|
|
62230
62252
|
radar_fieldValues: RadarFieldValuesConnection;
|
|
62231
|
-
radar_positions:
|
|
62253
|
+
radar_positions: RadarPositionConnectionResult;
|
|
62232
62254
|
releaseNote?: Maybe<ContentPlatformReleaseNote>;
|
|
62233
62255
|
releaseNotes: ContentPlatformReleaseNotesConnection;
|
|
62234
62256
|
repositoryRelationshipsForDevOpsService?: Maybe<DevOpsServiceAndRepositoryRelationshipConnection>;
|
|
@@ -63799,12 +63821,19 @@ export declare enum RadarEntityType {
|
|
|
63799
63821
|
}
|
|
63800
63822
|
export declare type RadarError = {
|
|
63801
63823
|
__typename?: 'RadarError';
|
|
63802
|
-
errorCode
|
|
63824
|
+
errorCode: Scalars['String']['output'];
|
|
63803
63825
|
errorType?: Maybe<Scalars['String']['output']>;
|
|
63826
|
+
extensions?: Maybe<Array<Maybe<RadarErrorExtension>>>;
|
|
63827
|
+
location?: Maybe<Array<Maybe<RadarLocation>>>;
|
|
63804
63828
|
message?: Maybe<Scalars['String']['output']>;
|
|
63805
|
-
stackTrace?: Maybe<Array<
|
|
63829
|
+
stackTrace?: Maybe<Array<Scalars['String']['output']>>;
|
|
63806
63830
|
statusCode?: Maybe<Scalars['Int']['output']>;
|
|
63807
63831
|
};
|
|
63832
|
+
export declare type RadarErrorExtension = {
|
|
63833
|
+
__typename?: 'RadarErrorExtension';
|
|
63834
|
+
property: Scalars['String']['output'];
|
|
63835
|
+
value: Scalars['String']['output'];
|
|
63836
|
+
};
|
|
63808
63837
|
export declare type RadarFieldDefinition = Node & {
|
|
63809
63838
|
__typename?: 'RadarFieldDefinition';
|
|
63810
63839
|
displayName?: Maybe<Scalars['String']['output']>;
|
|
@@ -63869,6 +63898,11 @@ export declare type RadarFocusAreaMappingsInput = {
|
|
|
63869
63898
|
focusAreaAri: Scalars['ID']['input'];
|
|
63870
63899
|
positionId: Scalars['ID']['input'];
|
|
63871
63900
|
};
|
|
63901
|
+
export declare type RadarLocation = {
|
|
63902
|
+
__typename?: 'RadarLocation';
|
|
63903
|
+
column?: Maybe<Scalars['Int']['output']>;
|
|
63904
|
+
line?: Maybe<Scalars['Int']['output']>;
|
|
63905
|
+
};
|
|
63872
63906
|
export declare type RadarMutationBaseResponse = {
|
|
63873
63907
|
errors?: Maybe<Array<RadarError>>;
|
|
63874
63908
|
success: Scalars['Boolean']['output'];
|
|
@@ -63896,6 +63930,7 @@ export declare type RadarPositionConnection = RadarConnection & {
|
|
|
63896
63930
|
pageInfo: PageInfo;
|
|
63897
63931
|
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
63898
63932
|
};
|
|
63933
|
+
export declare type RadarPositionConnectionResult = RadarError | RadarPositionConnection;
|
|
63899
63934
|
export declare type RadarPositionEdge = RadarEdge & {
|
|
63900
63935
|
__typename?: 'RadarPositionEdge';
|
|
63901
63936
|
cursor: Scalars['String']['output'];
|