@forge/cli-shared 5.4.0 → 5.4.1-next.0
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
|
@@ -2997,6 +2997,7 @@ export declare type CommerceOffering = {
|
|
|
2997
2997
|
name?: Maybe<Scalars['String']['output']>;
|
|
2998
2998
|
};
|
|
2999
2999
|
export declare type CommercePricingPlan = {
|
|
3000
|
+
currency?: Maybe<CcpCurrency>;
|
|
3000
3001
|
primaryCycle?: Maybe<CommercePrimaryCycle>;
|
|
3001
3002
|
type?: Maybe<Scalars['String']['output']>;
|
|
3002
3003
|
};
|
|
@@ -6777,6 +6778,22 @@ export declare type ConfluenceFavoritedSummary = {
|
|
|
6777
6778
|
favoritedAt?: Maybe<Scalars['String']['output']>;
|
|
6778
6779
|
isFavorite: Scalars['Boolean']['output'];
|
|
6779
6780
|
};
|
|
6781
|
+
export declare type ConfluenceFolder = {
|
|
6782
|
+
__typename?: 'ConfluenceFolder';
|
|
6783
|
+
author?: Maybe<ConfluenceUserInfo>;
|
|
6784
|
+
folderId: Scalars['ID']['output'];
|
|
6785
|
+
id: Scalars['ID']['output'];
|
|
6786
|
+
links?: Maybe<ConfluenceFolderLinks>;
|
|
6787
|
+
metadata?: Maybe<ConfluenceContentMetadata>;
|
|
6788
|
+
owner?: Maybe<ConfluenceUserInfo>;
|
|
6789
|
+
space?: Maybe<ConfluenceSpace>;
|
|
6790
|
+
title?: Maybe<Scalars['String']['output']>;
|
|
6791
|
+
};
|
|
6792
|
+
export declare type ConfluenceFolderLinks = {
|
|
6793
|
+
__typename?: 'ConfluenceFolderLinks';
|
|
6794
|
+
base?: Maybe<Scalars['String']['output']>;
|
|
6795
|
+
webUi?: Maybe<Scalars['String']['output']>;
|
|
6796
|
+
};
|
|
6780
6797
|
export declare type ConfluenceFooterComment = ConfluenceComment & {
|
|
6781
6798
|
__typename?: 'ConfluenceFooterComment';
|
|
6782
6799
|
author?: Maybe<ConfluenceUserInfo>;
|
|
@@ -12758,6 +12775,8 @@ export declare type ConfluenceQueryApi = {
|
|
|
12758
12775
|
embed?: Maybe<ConfluenceEmbed>;
|
|
12759
12776
|
embeds?: Maybe<Array<Maybe<ConfluenceEmbed>>>;
|
|
12760
12777
|
findSpaces?: Maybe<ConfluenceSpaceConnection>;
|
|
12778
|
+
folder?: Maybe<ConfluenceFolder>;
|
|
12779
|
+
folders?: Maybe<Array<Maybe<ConfluenceFolder>>>;
|
|
12761
12780
|
inlineTask?: Maybe<ConfluenceInlineTask>;
|
|
12762
12781
|
longTask?: Maybe<ConfluenceLongTask>;
|
|
12763
12782
|
page?: Maybe<ConfluencePage>;
|
|
@@ -12798,6 +12817,12 @@ export declare type ConfluenceQueryApiFindSpacesArgs = {
|
|
|
12798
12817
|
filters?: InputMaybe<ConfluenceSpaceFilters>;
|
|
12799
12818
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
12800
12819
|
};
|
|
12820
|
+
export declare type ConfluenceQueryApiFolderArgs = {
|
|
12821
|
+
id: Scalars['ID']['input'];
|
|
12822
|
+
};
|
|
12823
|
+
export declare type ConfluenceQueryApiFoldersArgs = {
|
|
12824
|
+
ids: Array<Scalars['ID']['input']>;
|
|
12825
|
+
};
|
|
12801
12826
|
export declare type ConfluenceQueryApiInlineTaskArgs = {
|
|
12802
12827
|
id: Scalars['ID']['input'];
|
|
12803
12828
|
};
|
|
@@ -15720,8 +15745,10 @@ export declare type CustomerServiceCustomAttributeStyleConfigurationInput = {
|
|
|
15720
15745
|
export declare type CustomerServiceCustomDetail = Node & {
|
|
15721
15746
|
__typename?: 'CustomerServiceCustomDetail';
|
|
15722
15747
|
config?: Maybe<CustomerServiceCustomDetailConfigMetadata>;
|
|
15748
|
+
editPermissions?: Maybe<CustomerServicePermissionGroupConnection>;
|
|
15723
15749
|
id: Scalars['ID']['output'];
|
|
15724
15750
|
name: Scalars['String']['output'];
|
|
15751
|
+
readPermissions?: Maybe<CustomerServicePermissionGroupConnection>;
|
|
15725
15752
|
type: CustomerServiceCustomDetailType;
|
|
15726
15753
|
};
|
|
15727
15754
|
export declare type CustomerServiceCustomDetailConfigMetadata = {
|
|
@@ -15754,7 +15781,9 @@ export declare type CustomerServiceCustomDetailCreateErrorExtension = MutationEr
|
|
|
15754
15781
|
export declare type CustomerServiceCustomDetailCreateInput = {
|
|
15755
15782
|
contextConfigurations?: InputMaybe<Array<CustomerServiceContextConfigurationInput>>;
|
|
15756
15783
|
customDetailEntityType: CustomerServiceCustomDetailsEntityType;
|
|
15784
|
+
editPermissions?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
15757
15785
|
name: Scalars['String']['input'];
|
|
15786
|
+
readPermissions?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
15758
15787
|
styleConfiguration?: InputMaybe<CustomerServiceCustomAttributeStyleConfigurationInput>;
|
|
15759
15788
|
type?: InputMaybe<CustomerServiceCustomDetailCreateTypeInput>;
|
|
15760
15789
|
};
|
|
@@ -15828,11 +15857,9 @@ export declare type CustomerServiceCustomDetailValue = Node & {
|
|
|
15828
15857
|
__typename?: 'CustomerServiceCustomDetailValue';
|
|
15829
15858
|
canEdit?: Maybe<Scalars['Boolean']['output']>;
|
|
15830
15859
|
config?: Maybe<CustomerServiceCustomDetailConfigMetadata>;
|
|
15831
|
-
editPermissions?: Maybe<CustomerServicePermissionGroupConnection>;
|
|
15832
15860
|
id: Scalars['ID']['output'];
|
|
15833
15861
|
name: Scalars['String']['output'];
|
|
15834
15862
|
platformValue?: Maybe<CustomerServicePlatformDetailValue>;
|
|
15835
|
-
readPermissions?: Maybe<CustomerServicePermissionGroupConnection>;
|
|
15836
15863
|
type: CustomerServiceCustomDetailType;
|
|
15837
15864
|
value?: Maybe<Scalars['String']['output']>;
|
|
15838
15865
|
values?: Maybe<Array<Scalars['String']['output']>>;
|
|
@@ -19127,6 +19154,7 @@ export declare type ExternalAuthProvider = {
|
|
|
19127
19154
|
export declare type ExternalBranch = Node & {
|
|
19128
19155
|
__typename?: 'ExternalBranch';
|
|
19129
19156
|
branchId?: Maybe<Scalars['String']['output']>;
|
|
19157
|
+
container?: Maybe<ExternalEntity>;
|
|
19130
19158
|
createPullRequestUrl?: Maybe<Scalars['String']['output']>;
|
|
19131
19159
|
id: Scalars['ID']['output'];
|
|
19132
19160
|
name?: Maybe<Scalars['String']['output']>;
|
|
@@ -19192,6 +19220,7 @@ export declare type ExternalCommit = Node & {
|
|
|
19192
19220
|
__typename?: 'ExternalCommit';
|
|
19193
19221
|
author?: Maybe<ExternalUser>;
|
|
19194
19222
|
commitId?: Maybe<Scalars['String']['output']>;
|
|
19223
|
+
container?: Maybe<ExternalEntity>;
|
|
19195
19224
|
createdAt?: Maybe<Scalars['String']['output']>;
|
|
19196
19225
|
displayId?: Maybe<Scalars['String']['output']>;
|
|
19197
19226
|
fileInfo?: Maybe<ExternalFileInfo>;
|
|
@@ -19358,6 +19387,7 @@ export declare type ExternalEntities = {
|
|
|
19358
19387
|
video?: Maybe<Array<Maybe<ExternalVideo>>>;
|
|
19359
19388
|
vulnerability?: Maybe<Array<Maybe<ExternalVulnerability>>>;
|
|
19360
19389
|
};
|
|
19390
|
+
export declare type ExternalEntity = ExternalBranch | ExternalBuildInfo | ExternalCommit | ExternalConversation | ExternalDeployment | ExternalDesign | ExternalDocument | ExternalFeatureFlag | ExternalMessage | ExternalPullRequest | ExternalRemoteLink | ExternalRepository | ExternalVideo | ExternalVulnerability;
|
|
19361
19391
|
export declare type ExternalEnvironment = {
|
|
19362
19392
|
__typename?: 'ExternalEnvironment';
|
|
19363
19393
|
displayName?: Maybe<Scalars['String']['output']>;
|
|
@@ -19469,6 +19499,7 @@ export declare type ExternalPullRequest = Node & {
|
|
|
19469
19499
|
__typename?: 'ExternalPullRequest';
|
|
19470
19500
|
author?: Maybe<ExternalUser>;
|
|
19471
19501
|
commentCount?: Maybe<Scalars['Int']['output']>;
|
|
19502
|
+
container?: Maybe<ExternalEntity>;
|
|
19472
19503
|
destinationBranch?: Maybe<ExternalBranchReference>;
|
|
19473
19504
|
displayId?: Maybe<Scalars['String']['output']>;
|
|
19474
19505
|
id: Scalars['ID']['output'];
|
|
@@ -35485,6 +35516,7 @@ export declare type HamsOffering = CommerceOffering & {
|
|
|
35485
35516
|
};
|
|
35486
35517
|
export declare type HamsPricingPlan = CommercePricingPlan & {
|
|
35487
35518
|
__typename?: 'HamsPricingPlan';
|
|
35519
|
+
currency?: Maybe<CcpCurrency>;
|
|
35488
35520
|
primaryCycle?: Maybe<HamsPrimaryCycle>;
|
|
35489
35521
|
type?: Maybe<Scalars['String']['output']>;
|
|
35490
35522
|
};
|
|
@@ -42439,7 +42471,7 @@ export declare type JiraIssueExportError = {
|
|
|
42439
42471
|
errorType?: Maybe<Scalars['String']['output']>;
|
|
42440
42472
|
statusCode?: Maybe<Scalars['Int']['output']>;
|
|
42441
42473
|
};
|
|
42442
|
-
export declare type JiraIssueExportEvent = JiraIssueExportTaskCompleted | JiraIssueExportTaskProgress |
|
|
42474
|
+
export declare type JiraIssueExportEvent = JiraIssueExportTaskCompleted | JiraIssueExportTaskProgress | JiraIssueExportTaskSubmitted | JiraIssueExportTaskTerminated;
|
|
42443
42475
|
export declare type JiraIssueExportInput = {
|
|
42444
42476
|
cloudId: Scalars['ID']['input'];
|
|
42445
42477
|
exportType?: InputMaybe<JiraIssueExportType>;
|
|
@@ -42466,10 +42498,6 @@ export declare type JiraIssueExportTaskProgress = {
|
|
|
42466
42498
|
status?: Maybe<JiraLongRunningTaskStatus>;
|
|
42467
42499
|
task?: Maybe<JiraIssueExportTask>;
|
|
42468
42500
|
};
|
|
42469
|
-
export declare type JiraIssueExportTaskSubmissionFailed = {
|
|
42470
|
-
__typename?: 'JiraIssueExportTaskSubmissionFailed';
|
|
42471
|
-
error?: Maybe<JiraIssueExportError>;
|
|
42472
|
-
};
|
|
42473
42501
|
export declare type JiraIssueExportTaskSubmitted = {
|
|
42474
42502
|
__typename?: 'JiraIssueExportTaskSubmitted';
|
|
42475
42503
|
task?: Maybe<JiraIssueExportTask>;
|
|
@@ -45016,6 +45044,7 @@ export declare enum JiraNavigationItemTypeKey {
|
|
|
45016
45044
|
Code = "CODE",
|
|
45017
45045
|
Components = "COMPONENTS",
|
|
45018
45046
|
Deployments = "DEPLOYMENTS",
|
|
45047
|
+
Development = "DEVELOPMENT",
|
|
45019
45048
|
Forms = "FORMS",
|
|
45020
45049
|
Goals = "GOALS",
|
|
45021
45050
|
Incidents = "INCIDENTS",
|
|
@@ -62627,7 +62656,7 @@ export declare enum SearchConfluenceDocumentStatus {
|
|
|
62627
62656
|
Current = "CURRENT",
|
|
62628
62657
|
Draft = "DRAFT"
|
|
62629
62658
|
}
|
|
62630
|
-
export declare type SearchConfluenceEntity = ConfluenceBlogPost | ConfluenceDatabase | ConfluenceEmbed | ConfluencePage | ConfluenceWhiteboard;
|
|
62659
|
+
export declare type SearchConfluenceEntity = ConfluenceBlogPost | ConfluenceDatabase | ConfluenceEmbed | ConfluenceFolder | ConfluencePage | ConfluenceWhiteboard;
|
|
62631
62660
|
export declare type SearchConfluenceFilter = {
|
|
62632
62661
|
ancestorIdsFilter?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
62633
62662
|
containerARIs?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
@@ -63114,6 +63143,7 @@ export declare type SearchResultSlackMessage = SearchL2FeatureProvider & SearchR
|
|
|
63114
63143
|
linkedEntities?: Maybe<Array<SearchResultSlackMessage>>;
|
|
63115
63144
|
mentions?: Maybe<Array<ThirdPartyUser>>;
|
|
63116
63145
|
scoreL2Ranker?: Maybe<Scalars['Float']['output']>;
|
|
63146
|
+
subtype?: Maybe<Scalars['String']['output']>;
|
|
63117
63147
|
title: Scalars['String']['output'];
|
|
63118
63148
|
type: SearchResultType;
|
|
63119
63149
|
url: Scalars['URL']['output'];
|
|
@@ -63507,6 +63537,7 @@ export declare type ShepherdAlert = Node & {
|
|
|
63507
63537
|
id: Scalars['ID']['output'];
|
|
63508
63538
|
linkedResources?: Maybe<Array<Maybe<ShepherdLinkedResource>>>;
|
|
63509
63539
|
orgId?: Maybe<Scalars['ID']['output']>;
|
|
63540
|
+
product: ShepherdAtlassianProduct;
|
|
63510
63541
|
status: ShepherdAlertStatus;
|
|
63511
63542
|
statusUpdatedOn?: Maybe<Scalars['DateTime']['output']>;
|
|
63512
63543
|
supportingData?: Maybe<ShepherdAlertSupportingData>;
|
|
@@ -64001,15 +64032,39 @@ export declare type ShepherdExclusionContentInfo = {
|
|
|
64001
64032
|
url?: Maybe<Scalars['URL']['output']>;
|
|
64002
64033
|
};
|
|
64003
64034
|
export declare type ShepherdExclusionContentInfoResult = QueryError | ShepherdExclusionContentInfo;
|
|
64035
|
+
export declare type ShepherdExclusionUserSearchConnection = {
|
|
64036
|
+
__typename?: 'ShepherdExclusionUserSearchConnection';
|
|
64037
|
+
edges?: Maybe<Array<Maybe<ShepherdExclusionUserSearchEdge>>>;
|
|
64038
|
+
pageInfo: PageInfo;
|
|
64039
|
+
};
|
|
64040
|
+
export declare type ShepherdExclusionUserSearchEdge = {
|
|
64041
|
+
__typename?: 'ShepherdExclusionUserSearchEdge';
|
|
64042
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
64043
|
+
node?: Maybe<ShepherdExclusionUserSearchNode>;
|
|
64044
|
+
};
|
|
64045
|
+
export declare type ShepherdExclusionUserSearchNode = {
|
|
64046
|
+
__typename?: 'ShepherdExclusionUserSearchNode';
|
|
64047
|
+
aaid: Scalars['ID']['output'];
|
|
64048
|
+
accountType?: Maybe<Scalars['String']['output']>;
|
|
64049
|
+
createdOn?: Maybe<Scalars['DateTime']['output']>;
|
|
64050
|
+
email?: Maybe<Scalars['String']['output']>;
|
|
64051
|
+
name?: Maybe<Scalars['String']['output']>;
|
|
64052
|
+
};
|
|
64053
|
+
export declare type ShepherdExclusionUserSearchResult = QueryError | ShepherdExclusionUserSearchConnection;
|
|
64004
64054
|
export declare type ShepherdExclusionsQueries = {
|
|
64005
64055
|
__typename?: 'ShepherdExclusionsQueries';
|
|
64006
64056
|
contentInfo?: Maybe<ShepherdExclusionContentInfoResult>;
|
|
64057
|
+
userSearch?: Maybe<ShepherdExclusionUserSearchResult>;
|
|
64007
64058
|
};
|
|
64008
64059
|
export declare type ShepherdExclusionsQueriesContentInfoArgs = {
|
|
64009
64060
|
contentUrlOrAri: Scalars['String']['input'];
|
|
64010
64061
|
productAti: Scalars['String']['input'];
|
|
64011
64062
|
workspaceId: Scalars['ID']['input'];
|
|
64012
64063
|
};
|
|
64064
|
+
export declare type ShepherdExclusionsQueriesUserSearchArgs = {
|
|
64065
|
+
searchQuery?: InputMaybe<Scalars['String']['input']>;
|
|
64066
|
+
workspaceId: Scalars['ID']['input'];
|
|
64067
|
+
};
|
|
64013
64068
|
export declare type ShepherdExternalResource = JiraIssue;
|
|
64014
64069
|
export declare type ShepherdGenericMutationErrorExtension = MutationErrorExtension & {
|
|
64015
64070
|
__typename?: 'ShepherdGenericMutationErrorExtension';
|
|
@@ -64196,6 +64251,7 @@ export declare enum ShepherdRateThresholdValue {
|
|
|
64196
64251
|
}
|
|
64197
64252
|
export declare type ShepherdRelatedAlertType = {
|
|
64198
64253
|
__typename?: 'ShepherdRelatedAlertType';
|
|
64254
|
+
product?: Maybe<ShepherdAtlassianProduct>;
|
|
64199
64255
|
template?: Maybe<ShepherdAlertTemplateType>;
|
|
64200
64256
|
title?: Maybe<ShepherdAlertTitle>;
|
|
64201
64257
|
};
|
|
@@ -64562,6 +64618,7 @@ export declare type ShepherdWorkspaceSettingUpdateInput = {
|
|
|
64562
64618
|
};
|
|
64563
64619
|
export declare type ShepherdWorkspaceSettingValueInput = {
|
|
64564
64620
|
enabledValue?: InputMaybe<Scalars['Boolean']['input']>;
|
|
64621
|
+
jiraEnabledValue?: InputMaybe<Scalars['Boolean']['input']>;
|
|
64565
64622
|
thresholdValue?: InputMaybe<ShepherdRateThresholdValue>;
|
|
64566
64623
|
};
|
|
64567
64624
|
export declare type ShepherdWorkspaceUpdateCustomDetectionInput = {
|
|
@@ -66237,6 +66294,7 @@ export declare enum TownsquareGoalTypeState {
|
|
|
66237
66294
|
}
|
|
66238
66295
|
export declare type TownsquareLocalizationField = {
|
|
66239
66296
|
__typename?: 'TownsquareLocalizationField';
|
|
66297
|
+
defaultValue?: Maybe<Scalars['String']['output']>;
|
|
66240
66298
|
messageId?: Maybe<Scalars['String']['output']>;
|
|
66241
66299
|
};
|
|
66242
66300
|
export declare type TownsquareMutationApi = {
|
|
@@ -67762,6 +67820,7 @@ export declare type UnifiedForumsGroupsArgs = {
|
|
|
67762
67820
|
};
|
|
67763
67821
|
export declare type UnifiedForumsBadge = UnifiedIBadge & UnifiedINode & {
|
|
67764
67822
|
__typename?: 'UnifiedForumsBadge';
|
|
67823
|
+
actionUrl?: Maybe<Scalars['String']['output']>;
|
|
67765
67824
|
description?: Maybe<Scalars['String']['output']>;
|
|
67766
67825
|
id: Scalars['ID']['output'];
|
|
67767
67826
|
imageUrl?: Maybe<Scalars['String']['output']>;
|
|
@@ -67884,6 +67943,7 @@ export declare type UnifiedGamificationRecognitionsTotal = {
|
|
|
67884
67943
|
count?: Maybe<Scalars['Int']['output']>;
|
|
67885
67944
|
};
|
|
67886
67945
|
export declare type UnifiedIBadge = {
|
|
67946
|
+
actionUrl?: Maybe<Scalars['String']['output']>;
|
|
67887
67947
|
description?: Maybe<Scalars['String']['output']>;
|
|
67888
67948
|
id: Scalars['ID']['output'];
|
|
67889
67949
|
imageUrl?: Maybe<Scalars['String']['output']>;
|
|
@@ -67977,13 +68037,9 @@ export declare type UnifiedMutationCreateLinkedAccountArgs = {
|
|
|
67977
68037
|
connectedProductsReferenceId: Scalars['String']['input'];
|
|
67978
68038
|
parentAccountInternalId: Scalars['String']['input'];
|
|
67979
68039
|
};
|
|
67980
|
-
export declare type UnifiedMutationCreateParentAccountArgs = {
|
|
67981
|
-
parentAccountEmailId: Scalars['String']['input'];
|
|
67982
|
-
};
|
|
67983
68040
|
export declare type UnifiedMutationCreateUnifiedSystemArgs = {
|
|
67984
68041
|
aaid: Scalars['String']['input'];
|
|
67985
68042
|
name?: InputMaybe<Scalars['String']['input']>;
|
|
67986
|
-
parentAccountEmailId: Scalars['String']['input'];
|
|
67987
68043
|
unifiedProfileUsername?: InputMaybe<Scalars['String']['input']>;
|
|
67988
68044
|
};
|
|
67989
68045
|
export declare type UnifiedMutationUpdateUnifiedProfileArgs = {
|
|
@@ -68009,7 +68065,6 @@ export declare type UnifiedPageInfo = {
|
|
|
68009
68065
|
export declare type UnifiedParentAccount = UnifiedINode & {
|
|
68010
68066
|
__typename?: 'UnifiedParentAccount';
|
|
68011
68067
|
id: Scalars['ID']['output'];
|
|
68012
|
-
parentAccountEmailId?: Maybe<Scalars['String']['output']>;
|
|
68013
68068
|
parentAccountInternalId?: Maybe<Scalars['ID']['output']>;
|
|
68014
68069
|
};
|
|
68015
68070
|
export declare type UnifiedParentAccountPayload = UnifiedPayload & {
|