@forge/cli-shared 3.4.0-next.1 → 3.4.0-next.2
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
|
@@ -13937,6 +13937,25 @@ export declare type JiraWorkLogEdge = {
|
|
|
13937
13937
|
node?: Maybe<JiraWorklog>;
|
|
13938
13938
|
cursor: Scalars['String'];
|
|
13939
13939
|
};
|
|
13940
|
+
export declare type JiraWorkManagementCreateOverviewInput = {
|
|
13941
|
+
name: Scalars['String'];
|
|
13942
|
+
theme?: Maybe<Scalars['String']>;
|
|
13943
|
+
projectIds: Array<Scalars['ID']>;
|
|
13944
|
+
};
|
|
13945
|
+
export declare type JiraWorkManagementCreateOverviewPayload = Payload & {
|
|
13946
|
+
__typename?: 'JiraWorkManagementCreateOverviewPayload';
|
|
13947
|
+
success: Scalars['Boolean'];
|
|
13948
|
+
errors?: Maybe<Array<MutationError>>;
|
|
13949
|
+
jwmOverview?: Maybe<JiraWorkManagementOverview>;
|
|
13950
|
+
};
|
|
13951
|
+
export declare type JiraWorkManagementDeleteOverviewInput = {
|
|
13952
|
+
id: Scalars['ID'];
|
|
13953
|
+
};
|
|
13954
|
+
export declare type JiraWorkManagementDeleteOverviewPayload = Payload & {
|
|
13955
|
+
__typename?: 'JiraWorkManagementDeleteOverviewPayload';
|
|
13956
|
+
success: Scalars['Boolean'];
|
|
13957
|
+
errors?: Maybe<Array<MutationError>>;
|
|
13958
|
+
};
|
|
13940
13959
|
export declare type JiraWorkManagementOverview = Node & {
|
|
13941
13960
|
__typename?: 'JiraWorkManagementOverview';
|
|
13942
13961
|
id: Scalars['ID'];
|
|
@@ -13977,6 +13996,18 @@ export declare type JiraWorkManagementProjectNavigationMetadata = {
|
|
|
13977
13996
|
__typename?: 'JiraWorkManagementProjectNavigationMetadata';
|
|
13978
13997
|
boardName: Scalars['String'];
|
|
13979
13998
|
};
|
|
13999
|
+
export declare type JiraWorkManagementUpdateOverviewInput = {
|
|
14000
|
+
id: Scalars['ID'];
|
|
14001
|
+
name?: Maybe<Scalars['String']>;
|
|
14002
|
+
theme?: Maybe<Scalars['String']>;
|
|
14003
|
+
projectIds?: Maybe<Array<Scalars['ID']>>;
|
|
14004
|
+
};
|
|
14005
|
+
export declare type JiraWorkManagementUpdateOverviewPayload = Payload & {
|
|
14006
|
+
__typename?: 'JiraWorkManagementUpdateOverviewPayload';
|
|
14007
|
+
success: Scalars['Boolean'];
|
|
14008
|
+
errors?: Maybe<Array<MutationError>>;
|
|
14009
|
+
jwmOverview?: Maybe<JiraWorkManagementOverview>;
|
|
14010
|
+
};
|
|
13980
14011
|
export declare type JiraWorklog = Node & {
|
|
13981
14012
|
__typename?: 'JiraWorklog';
|
|
13982
14013
|
id: Scalars['ID'];
|
|
@@ -14484,6 +14515,7 @@ export declare type MercuryCreateTeamInput = {
|
|
|
14484
14515
|
name: Scalars['String'];
|
|
14485
14516
|
teamsServiceTeamId: Scalars['ID'];
|
|
14486
14517
|
active?: Maybe<Scalars['Boolean']>;
|
|
14518
|
+
orgLevelId?: Maybe<Scalars['ID']>;
|
|
14487
14519
|
};
|
|
14488
14520
|
export declare type MercuryDeleteJobFunctionInput = {
|
|
14489
14521
|
id: Scalars['ID'];
|
|
@@ -14597,6 +14629,7 @@ export declare type MercuryMutationApi = {
|
|
|
14597
14629
|
createTeam?: Maybe<MercuryTeamMutationPayload>;
|
|
14598
14630
|
updateTeam?: Maybe<MercuryTeamMutationPayload>;
|
|
14599
14631
|
deleteTeam?: Maybe<MercuryTeamDeletePayload>;
|
|
14632
|
+
updateOrgLevelOnTeam?: Maybe<MercuryTeamMutationPayload>;
|
|
14600
14633
|
createTeamAllocation?: Maybe<MercuryTeamAllocationMutationPayload>;
|
|
14601
14634
|
deleteTeamAllocation?: Maybe<MercuryTeamAllocationDeletePayload>;
|
|
14602
14635
|
allocateTeamCapacity?: Maybe<MercuryTeamAllocationMutationPayload>;
|
|
@@ -14638,6 +14671,9 @@ export declare type MercuryMutationApiUpdateTeamArgs = {
|
|
|
14638
14671
|
export declare type MercuryMutationApiDeleteTeamArgs = {
|
|
14639
14672
|
input: MercuryDeleteTeamInput;
|
|
14640
14673
|
};
|
|
14674
|
+
export declare type MercuryMutationApiUpdateOrgLevelOnTeamArgs = {
|
|
14675
|
+
input: MercuryUpdateOrgLevelOnTeamInput;
|
|
14676
|
+
};
|
|
14641
14677
|
export declare type MercuryMutationApiCreateTeamAllocationArgs = {
|
|
14642
14678
|
input: MercuryCreateTeamAllocationInput;
|
|
14643
14679
|
};
|
|
@@ -14667,6 +14703,7 @@ export declare type MercuryQueryApi = {
|
|
|
14667
14703
|
jobFunction?: Maybe<MercuryJobFunction>;
|
|
14668
14704
|
jobFunctions?: Maybe<MercuryJobFunctionConnection>;
|
|
14669
14705
|
teams?: Maybe<MercuryTeamConnection>;
|
|
14706
|
+
teamsByOrgLevel?: Maybe<MercuryTeamConnection>;
|
|
14670
14707
|
team?: Maybe<MercuryTeam>;
|
|
14671
14708
|
initiative?: Maybe<MercuryInitiative>;
|
|
14672
14709
|
initiatives?: Maybe<MercuryInitiativeConnection>;
|
|
@@ -14692,6 +14729,11 @@ export declare type MercuryQueryApiTeamsArgs = {
|
|
|
14692
14729
|
first?: Maybe<Scalars['Int']>;
|
|
14693
14730
|
after?: Maybe<Scalars['String']>;
|
|
14694
14731
|
};
|
|
14732
|
+
export declare type MercuryQueryApiTeamsByOrgLevelArgs = {
|
|
14733
|
+
orgLevelId: Scalars['ID'];
|
|
14734
|
+
first?: Maybe<Scalars['Int']>;
|
|
14735
|
+
after?: Maybe<Scalars['String']>;
|
|
14736
|
+
};
|
|
14695
14737
|
export declare type MercuryQueryApiTeamArgs = {
|
|
14696
14738
|
id: Scalars['ID'];
|
|
14697
14739
|
};
|
|
@@ -14759,6 +14801,7 @@ export declare type MercuryTeam = Node & {
|
|
|
14759
14801
|
teamsServiceTeamId: Scalars['ID'];
|
|
14760
14802
|
name: Scalars['String'];
|
|
14761
14803
|
active?: Maybe<Scalars['Boolean']>;
|
|
14804
|
+
orgLevelId?: Maybe<Scalars['ID']>;
|
|
14762
14805
|
};
|
|
14763
14806
|
export declare type MercuryTeamAllocation = {
|
|
14764
14807
|
__typename?: 'MercuryTeamAllocation';
|
|
@@ -14862,6 +14905,10 @@ export declare type MercuryUpdateJobFunctionPayload = Payload & {
|
|
|
14862
14905
|
statusCode: Scalars['Int'];
|
|
14863
14906
|
message: Scalars['String'];
|
|
14864
14907
|
};
|
|
14908
|
+
export declare type MercuryUpdateOrgLevelOnTeamInput = {
|
|
14909
|
+
teamId: Scalars['ID'];
|
|
14910
|
+
orgLevelId?: Maybe<Scalars['ID']>;
|
|
14911
|
+
};
|
|
14865
14912
|
export declare type MercuryUpdateStrategyInput = {
|
|
14866
14913
|
strategyId: Scalars['ID'];
|
|
14867
14914
|
name?: Maybe<Scalars['String']>;
|
|
@@ -15039,6 +15086,11 @@ export declare type Mutation = {
|
|
|
15039
15086
|
deleteApp?: Maybe<DeleteAppResponse>;
|
|
15040
15087
|
updateAtlassianOAuthClient?: Maybe<UpdateAtlassianOAuthClientResponse>;
|
|
15041
15088
|
ecosystem?: Maybe<EcosystemMutation>;
|
|
15089
|
+
installApp?: Maybe<AppInstallationResponse>;
|
|
15090
|
+
uninstallApp?: Maybe<AppUninstallationResponse>;
|
|
15091
|
+
upgradeApp?: Maybe<AppInstallationUpgradeResponse>;
|
|
15092
|
+
subscribeToApp?: Maybe<AppSubscribePayload>;
|
|
15093
|
+
unsubscribeFromApp?: Maybe<AppUnsubscribePayload>;
|
|
15042
15094
|
updateNavbarConnectionStateTabSeen?: Maybe<DevOpsToolUpdateNavbarConnectionStateTabSeenPayload>;
|
|
15043
15095
|
createDevOpsService?: Maybe<CreateDevOpsServicePayload>;
|
|
15044
15096
|
updateDevOpsService?: Maybe<UpdateDevOpsServicePayload>;
|
|
@@ -15050,12 +15102,10 @@ export declare type Mutation = {
|
|
|
15050
15102
|
deleteDevOpsServiceEntityProperties?: Maybe<DeleteDevOpsServiceEntityPropertiesPayload>;
|
|
15051
15103
|
updateDeveloperLogAccess?: Maybe<UpdateDeveloperLogAccessPayload>;
|
|
15052
15104
|
roadmaps?: Maybe<RoadmapsMutation>;
|
|
15105
|
+
createJwmOverview?: Maybe<JiraWorkManagementCreateOverviewPayload>;
|
|
15106
|
+
updateJwmOverview?: Maybe<JiraWorkManagementUpdateOverviewPayload>;
|
|
15107
|
+
deleteJwmOverview?: Maybe<JiraWorkManagementDeleteOverviewPayload>;
|
|
15053
15108
|
virtualAgent?: Maybe<VirtualAgentMutationApi>;
|
|
15054
|
-
installApp?: Maybe<AppInstallationResponse>;
|
|
15055
|
-
uninstallApp?: Maybe<AppUninstallationResponse>;
|
|
15056
|
-
upgradeApp?: Maybe<AppInstallationUpgradeResponse>;
|
|
15057
|
-
subscribeToApp?: Maybe<AppSubscribePayload>;
|
|
15058
|
-
unsubscribeFromApp?: Maybe<AppUnsubscribePayload>;
|
|
15059
15109
|
createAppDeploymentUrl?: Maybe<CreateAppDeploymentUrlResponse>;
|
|
15060
15110
|
createHostedResourceUploadUrl?: Maybe<CreateHostedResourceUploadUrlPayload>;
|
|
15061
15111
|
setExternalAuthCredentials?: Maybe<SetExternalAuthCredentialsPayload>;
|
|
@@ -15451,6 +15501,21 @@ export declare type MutationDeleteAppArgs = {
|
|
|
15451
15501
|
export declare type MutationUpdateAtlassianOAuthClientArgs = {
|
|
15452
15502
|
input: UpdateAtlassianOAuthClientInput;
|
|
15453
15503
|
};
|
|
15504
|
+
export declare type MutationInstallAppArgs = {
|
|
15505
|
+
input: AppInstallationInput;
|
|
15506
|
+
};
|
|
15507
|
+
export declare type MutationUninstallAppArgs = {
|
|
15508
|
+
input: AppUninstallationInput;
|
|
15509
|
+
};
|
|
15510
|
+
export declare type MutationUpgradeAppArgs = {
|
|
15511
|
+
input: AppInstallationUpgradeInput;
|
|
15512
|
+
};
|
|
15513
|
+
export declare type MutationSubscribeToAppArgs = {
|
|
15514
|
+
input: AppSubscribeInput;
|
|
15515
|
+
};
|
|
15516
|
+
export declare type MutationUnsubscribeFromAppArgs = {
|
|
15517
|
+
input: AppUnsubscribeInput;
|
|
15518
|
+
};
|
|
15454
15519
|
export declare type MutationUpdateNavbarConnectionStateTabSeenArgs = {
|
|
15455
15520
|
input: DevOpsToolUpdateNavbarConnectionStateTabSeenInput;
|
|
15456
15521
|
};
|
|
@@ -15481,20 +15546,15 @@ export declare type MutationDeleteDevOpsServiceEntityPropertiesArgs = {
|
|
|
15481
15546
|
export declare type MutationUpdateDeveloperLogAccessArgs = {
|
|
15482
15547
|
input: UpdateDeveloperLogAccessInput;
|
|
15483
15548
|
};
|
|
15484
|
-
export declare type
|
|
15485
|
-
|
|
15486
|
-
|
|
15487
|
-
export declare type MutationUninstallAppArgs = {
|
|
15488
|
-
input: AppUninstallationInput;
|
|
15489
|
-
};
|
|
15490
|
-
export declare type MutationUpgradeAppArgs = {
|
|
15491
|
-
input: AppInstallationUpgradeInput;
|
|
15549
|
+
export declare type MutationCreateJwmOverviewArgs = {
|
|
15550
|
+
cloudId: Scalars['ID'];
|
|
15551
|
+
input: JiraWorkManagementCreateOverviewInput;
|
|
15492
15552
|
};
|
|
15493
|
-
export declare type
|
|
15494
|
-
input:
|
|
15553
|
+
export declare type MutationUpdateJwmOverviewArgs = {
|
|
15554
|
+
input: JiraWorkManagementUpdateOverviewInput;
|
|
15495
15555
|
};
|
|
15496
|
-
export declare type
|
|
15497
|
-
input:
|
|
15556
|
+
export declare type MutationDeleteJwmOverviewArgs = {
|
|
15557
|
+
input: JiraWorkManagementDeleteOverviewInput;
|
|
15498
15558
|
};
|
|
15499
15559
|
export declare type MutationCreateAppDeploymentUrlArgs = {
|
|
15500
15560
|
input: CreateAppDeploymentUrlInput;
|
|
@@ -17005,6 +17065,8 @@ export declare type Query = {
|
|
|
17005
17065
|
apps?: Maybe<AppConnection>;
|
|
17006
17066
|
app?: Maybe<App>;
|
|
17007
17067
|
appHostServices?: Maybe<Array<AppHostService>>;
|
|
17068
|
+
appInstallationTask?: Maybe<AppInstallationTask>;
|
|
17069
|
+
ecosystem?: Maybe<EcosystemQuery>;
|
|
17008
17070
|
devOpsTools?: Maybe<DevOpsTools>;
|
|
17009
17071
|
search?: Maybe<SearchQueryApi>;
|
|
17010
17072
|
me: AuthenticationContext;
|
|
@@ -17026,8 +17088,6 @@ export declare type Query = {
|
|
|
17026
17088
|
tenantContexts?: Maybe<Array<Maybe<TenantContext>>>;
|
|
17027
17089
|
virtualAgent?: Maybe<VirtualAgentQueryApi>;
|
|
17028
17090
|
jiraReleases?: Maybe<JiraReleases>;
|
|
17029
|
-
appInstallationTask?: Maybe<AppInstallationTask>;
|
|
17030
|
-
ecosystem?: Maybe<EcosystemQuery>;
|
|
17031
17091
|
appDeployment?: Maybe<AppDeployment>;
|
|
17032
17092
|
jiraOAuthApps?: Maybe<JiraOAuthAppsApps>;
|
|
17033
17093
|
oauthClients?: Maybe<OAuthClientsQuery>;
|
|
@@ -17283,6 +17343,9 @@ export declare type QueryAppArgs = {
|
|
|
17283
17343
|
export declare type QueryAppHostServicesArgs = {
|
|
17284
17344
|
filter?: Maybe<AppServicesFilter>;
|
|
17285
17345
|
};
|
|
17346
|
+
export declare type QueryAppInstallationTaskArgs = {
|
|
17347
|
+
id: Scalars['ID'];
|
|
17348
|
+
};
|
|
17286
17349
|
export declare type QueryUserArgs = {
|
|
17287
17350
|
accountId: Scalars['ID'];
|
|
17288
17351
|
};
|
|
@@ -17350,9 +17413,6 @@ export declare type QueryTenantContextsArgs = {
|
|
|
17350
17413
|
cloudIds?: Maybe<Array<Scalars['ID']>>;
|
|
17351
17414
|
hostNames?: Maybe<Array<Scalars['String']>>;
|
|
17352
17415
|
};
|
|
17353
|
-
export declare type QueryAppInstallationTaskArgs = {
|
|
17354
|
-
id: Scalars['ID'];
|
|
17355
|
-
};
|
|
17356
17416
|
export declare type QueryAppDeploymentArgs = {
|
|
17357
17417
|
appId: Scalars['ID'];
|
|
17358
17418
|
environmentKey: Scalars['String'];
|
|
@@ -20990,6 +21050,7 @@ export declare type VirtualAgentIntentProjection = Node & {
|
|
|
20990
21050
|
__typename?: 'VirtualAgentIntentProjection';
|
|
20991
21051
|
id: Scalars['ID'];
|
|
20992
21052
|
name: Scalars['String'];
|
|
21053
|
+
description?: Maybe<Scalars['String']>;
|
|
20993
21054
|
questionProjections?: Maybe<VirtualAgentIntentQuestionProjectionsConnection>;
|
|
20994
21055
|
};
|
|
20995
21056
|
export declare type VirtualAgentIntentProjectionQuestionProjectionsArgs = {
|