@forge/cli-shared 3.1.0-next.1 → 3.1.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
|
@@ -1637,6 +1637,17 @@ export declare type CompassAcknowledgeAnnouncementPayload = Payload & {
|
|
|
1637
1637
|
success: Scalars['Boolean'];
|
|
1638
1638
|
errors?: Maybe<Array<MutationError>>;
|
|
1639
1639
|
};
|
|
1640
|
+
export declare type CompassAddTeamLabelsInput = {
|
|
1641
|
+
cloudId: Scalars['ID'];
|
|
1642
|
+
teamId: Scalars['ID'];
|
|
1643
|
+
labels: Array<Scalars['String']>;
|
|
1644
|
+
};
|
|
1645
|
+
export declare type CompassAddTeamLabelsPayload = Payload & {
|
|
1646
|
+
__typename?: 'CompassAddTeamLabelsPayload';
|
|
1647
|
+
success: Scalars['Boolean'];
|
|
1648
|
+
errors?: Maybe<Array<MutationError>>;
|
|
1649
|
+
addedLabels?: Maybe<Array<CompassTeamLabel>>;
|
|
1650
|
+
};
|
|
1640
1651
|
export declare type CompassAlertEvent = CompassEvent & {
|
|
1641
1652
|
__typename?: 'CompassAlertEvent';
|
|
1642
1653
|
eventType: CompassEventType;
|
|
@@ -1755,6 +1766,8 @@ export declare type CompassCatalogMutationApi = {
|
|
|
1755
1766
|
createTeamCheckin?: Maybe<CompassCreateTeamCheckinPayload>;
|
|
1756
1767
|
updateTeamCheckin?: Maybe<CompassUpdateTeamCheckinPayload>;
|
|
1757
1768
|
deleteTeamCheckin?: Maybe<CompassDeleteTeamCheckinPayload>;
|
|
1769
|
+
addTeamLabels?: Maybe<CompassAddTeamLabelsPayload>;
|
|
1770
|
+
removeTeamLabels?: Maybe<CompassRemoveTeamLabelsPayload>;
|
|
1758
1771
|
createMetricDefinition?: Maybe<CompassCreateMetricDefinitionPayload>;
|
|
1759
1772
|
updateMetricDefinition?: Maybe<CompassUpdateMetricDefinitionPayload>;
|
|
1760
1773
|
deleteMetricDefinition?: Maybe<CompassDeleteMetricDefinitionPayload>;
|
|
@@ -1903,6 +1916,12 @@ export declare type CompassCatalogMutationApiUpdateTeamCheckinArgs = {
|
|
|
1903
1916
|
export declare type CompassCatalogMutationApiDeleteTeamCheckinArgs = {
|
|
1904
1917
|
input: CompassDeleteTeamCheckinInput;
|
|
1905
1918
|
};
|
|
1919
|
+
export declare type CompassCatalogMutationApiAddTeamLabelsArgs = {
|
|
1920
|
+
input: CompassAddTeamLabelsInput;
|
|
1921
|
+
};
|
|
1922
|
+
export declare type CompassCatalogMutationApiRemoveTeamLabelsArgs = {
|
|
1923
|
+
input: CompassRemoveTeamLabelsInput;
|
|
1924
|
+
};
|
|
1906
1925
|
export declare type CompassCatalogMutationApiCreateMetricDefinitionArgs = {
|
|
1907
1926
|
input: CompassCreateMetricDefinitionInput;
|
|
1908
1927
|
};
|
|
@@ -1947,6 +1966,7 @@ export declare type CompassCatalogQueryApi = {
|
|
|
1947
1966
|
scorecards?: Maybe<CompassScorecardsQueryResult>;
|
|
1948
1967
|
starredComponents?: Maybe<CompassStarredComponentQueryResult>;
|
|
1949
1968
|
teamCheckins?: Maybe<Array<CompassTeamCheckin>>;
|
|
1969
|
+
teamData?: Maybe<CompassTeamDataResult>;
|
|
1950
1970
|
metricDefinitions?: Maybe<CompassMetricDefinitionsQueryResult>;
|
|
1951
1971
|
metricDefinition?: Maybe<CompassMetricDefinitionResult>;
|
|
1952
1972
|
eventSource?: Maybe<CompassEventSourceResult>;
|
|
@@ -1987,6 +2007,9 @@ export declare type CompassCatalogQueryApiStarredComponentsArgs = {
|
|
|
1987
2007
|
export declare type CompassCatalogQueryApiTeamCheckinsArgs = {
|
|
1988
2008
|
input: CompassTeamCheckinsInput;
|
|
1989
2009
|
};
|
|
2010
|
+
export declare type CompassCatalogQueryApiTeamDataArgs = {
|
|
2011
|
+
input: CompassTeamDataInput;
|
|
2012
|
+
};
|
|
1990
2013
|
export declare type CompassCatalogQueryApiMetricDefinitionsArgs = {
|
|
1991
2014
|
query: CompassMetricDefinitionsQuery;
|
|
1992
2015
|
};
|
|
@@ -2987,6 +3010,17 @@ export declare type CompassRelationshipQueryFilters = {
|
|
|
2987
3010
|
export declare enum CompassRelationshipType {
|
|
2988
3011
|
DependsOn = "DEPENDS_ON"
|
|
2989
3012
|
}
|
|
3013
|
+
export declare type CompassRemoveTeamLabelsInput = {
|
|
3014
|
+
cloudId: Scalars['ID'];
|
|
3015
|
+
teamId: Scalars['ID'];
|
|
3016
|
+
labels: Array<Scalars['String']>;
|
|
3017
|
+
};
|
|
3018
|
+
export declare type CompassRemoveTeamLabelsPayload = Payload & {
|
|
3019
|
+
__typename?: 'CompassRemoveTeamLabelsPayload';
|
|
3020
|
+
success: Scalars['Boolean'];
|
|
3021
|
+
errors?: Maybe<Array<MutationError>>;
|
|
3022
|
+
removedLabels?: Maybe<Array<CompassTeamLabel>>;
|
|
3023
|
+
};
|
|
2990
3024
|
export declare type CompassRichTextObject = {
|
|
2991
3025
|
__typename?: 'CompassRichTextObject';
|
|
2992
3026
|
adf?: Maybe<Scalars['String']>;
|
|
@@ -3179,6 +3213,20 @@ export declare type CompassTeamCheckinsInput = {
|
|
|
3179
3213
|
cloudId: Scalars['ID'];
|
|
3180
3214
|
teamId: Scalars['ID'];
|
|
3181
3215
|
};
|
|
3216
|
+
export declare type CompassTeamData = {
|
|
3217
|
+
__typename?: 'CompassTeamData';
|
|
3218
|
+
teamId?: Maybe<Scalars['ID']>;
|
|
3219
|
+
labels?: Maybe<Array<CompassTeamLabel>>;
|
|
3220
|
+
};
|
|
3221
|
+
export declare type CompassTeamDataInput = {
|
|
3222
|
+
cloudId: Scalars['ID'];
|
|
3223
|
+
teamId: Scalars['ID'];
|
|
3224
|
+
};
|
|
3225
|
+
export declare type CompassTeamDataResult = CompassTeamData | QueryError;
|
|
3226
|
+
export declare type CompassTeamLabel = {
|
|
3227
|
+
__typename?: 'CompassTeamLabel';
|
|
3228
|
+
name: Scalars['String'];
|
|
3229
|
+
};
|
|
3182
3230
|
export declare type CompassUpdateAnnouncementInput = {
|
|
3183
3231
|
cloudId: Scalars['ID'];
|
|
3184
3232
|
id: Scalars['ID'];
|
|
@@ -6394,7 +6442,7 @@ export declare type DirectoryMutationRemoveUserFromOrganizationArgs = {
|
|
|
6394
6442
|
};
|
|
6395
6443
|
export declare type DirectoryQuery = {
|
|
6396
6444
|
__typename?: 'DirectoryQuery';
|
|
6397
|
-
|
|
6445
|
+
_version?: Maybe<Scalars['String']>;
|
|
6398
6446
|
};
|
|
6399
6447
|
export declare type DirectoryRemoveUserInput = {
|
|
6400
6448
|
orgId: Scalars['ID'];
|
|
@@ -8447,6 +8495,16 @@ export declare type JiraCustomFilterEditGrantsArgs = {
|
|
|
8447
8495
|
last?: Maybe<Scalars['Int']>;
|
|
8448
8496
|
before?: Maybe<Scalars['String']>;
|
|
8449
8497
|
};
|
|
8498
|
+
export declare type JiraDateFieldOperationInput = {
|
|
8499
|
+
operation: JiraSingleValueFieldOperations;
|
|
8500
|
+
date?: Maybe<Scalars['Date']>;
|
|
8501
|
+
};
|
|
8502
|
+
export declare type JiraDateFieldPayload = Payload & {
|
|
8503
|
+
__typename?: 'JiraDateFieldPayload';
|
|
8504
|
+
success: Scalars['Boolean'];
|
|
8505
|
+
errors?: Maybe<Array<MutationError>>;
|
|
8506
|
+
field?: Maybe<JiraDatePickerField>;
|
|
8507
|
+
};
|
|
8450
8508
|
export declare type JiraDatePickerField = Node & JiraIssueField & JiraIssueFieldConfiguration & JiraUserIssueFieldConfiguration & {
|
|
8451
8509
|
__typename?: 'JiraDatePickerField';
|
|
8452
8510
|
id: Scalars['ID'];
|
|
@@ -8459,6 +8517,16 @@ export declare type JiraDatePickerField = Node & JiraIssueField & JiraIssueField
|
|
|
8459
8517
|
fieldConfig?: Maybe<JiraFieldConfig>;
|
|
8460
8518
|
userFieldConfig?: Maybe<JiraUserFieldConfig>;
|
|
8461
8519
|
};
|
|
8520
|
+
export declare type JiraDateTimeFieldOperationInput = {
|
|
8521
|
+
operation: JiraSingleValueFieldOperations;
|
|
8522
|
+
datetime?: Maybe<Scalars['DateTime']>;
|
|
8523
|
+
};
|
|
8524
|
+
export declare type JiraDateTimeFieldPayload = Payload & {
|
|
8525
|
+
__typename?: 'JiraDateTimeFieldPayload';
|
|
8526
|
+
success: Scalars['Boolean'];
|
|
8527
|
+
errors?: Maybe<Array<MutationError>>;
|
|
8528
|
+
field?: Maybe<JiraDateTimePickerField>;
|
|
8529
|
+
};
|
|
8462
8530
|
export declare type JiraDateTimePickerField = Node & JiraIssueField & JiraIssueFieldConfiguration & JiraUserIssueFieldConfiguration & {
|
|
8463
8531
|
__typename?: 'JiraDateTimePickerField';
|
|
8464
8532
|
id: Scalars['ID'];
|
|
@@ -10377,6 +10445,9 @@ export declare type JiraMutation = {
|
|
|
10377
10445
|
jiraFilterMutation?: Maybe<JiraFilterMutation>;
|
|
10378
10446
|
setApplicationProperties?: Maybe<JiraSetApplicationPropertiesPayload>;
|
|
10379
10447
|
updateLabelsField?: Maybe<JiraLabelsFieldPayload>;
|
|
10448
|
+
updateDateField?: Maybe<JiraDateFieldPayload>;
|
|
10449
|
+
updateDateTimeField?: Maybe<JiraDateTimeFieldPayload>;
|
|
10450
|
+
updateNumberField?: Maybe<JiraNumberFieldPayload>;
|
|
10380
10451
|
addPermissionSchemeGrants?: Maybe<JiraPermissionSchemeAddGrantPayload>;
|
|
10381
10452
|
removePermissionSchemeGrants?: Maybe<JiraPermissionSchemeRemoveGrantPayload>;
|
|
10382
10453
|
updateIssueHierarchyConfig?: Maybe<JiraIssueHierarchyConfigurationMutationResult>;
|
|
@@ -10401,6 +10472,15 @@ export declare type JiraMutationSetApplicationPropertiesArgs = {
|
|
|
10401
10472
|
export declare type JiraMutationUpdateLabelsFieldArgs = {
|
|
10402
10473
|
input: JiraUpdateLabelsFieldInput;
|
|
10403
10474
|
};
|
|
10475
|
+
export declare type JiraMutationUpdateDateFieldArgs = {
|
|
10476
|
+
input: JiraUpdateDateFieldInput;
|
|
10477
|
+
};
|
|
10478
|
+
export declare type JiraMutationUpdateDateTimeFieldArgs = {
|
|
10479
|
+
input: JiraUpdateDateTimeFieldInput;
|
|
10480
|
+
};
|
|
10481
|
+
export declare type JiraMutationUpdateNumberFieldArgs = {
|
|
10482
|
+
input?: Maybe<JiraUpdateNumberFieldInput>;
|
|
10483
|
+
};
|
|
10404
10484
|
export declare type JiraMutationAddPermissionSchemeGrantsArgs = {
|
|
10405
10485
|
input: JiraPermissionSchemeAddGrantInput;
|
|
10406
10486
|
};
|
|
@@ -10452,6 +10532,16 @@ export declare type JiraNumberField = Node & JiraIssueField & JiraIssueFieldConf
|
|
|
10452
10532
|
userFieldConfig?: Maybe<JiraUserFieldConfig>;
|
|
10453
10533
|
isStoryPointField?: Maybe<Scalars['Boolean']>;
|
|
10454
10534
|
};
|
|
10535
|
+
export declare type JiraNumberFieldOperationInput = {
|
|
10536
|
+
operation: JiraSingleValueFieldOperations;
|
|
10537
|
+
number?: Maybe<Scalars['Float']>;
|
|
10538
|
+
};
|
|
10539
|
+
export declare type JiraNumberFieldPayload = Payload & {
|
|
10540
|
+
__typename?: 'JiraNumberFieldPayload';
|
|
10541
|
+
success: Scalars['Boolean'];
|
|
10542
|
+
errors?: Maybe<Array<MutationError>>;
|
|
10543
|
+
field?: Maybe<JiraNumberField>;
|
|
10544
|
+
};
|
|
10455
10545
|
export declare type JiraOAuthAppsApp = {
|
|
10456
10546
|
__typename?: 'JiraOAuthAppsApp';
|
|
10457
10547
|
id: Scalars['ID'];
|
|
@@ -10954,6 +11044,7 @@ export declare type JiraProject = Node & {
|
|
|
10954
11044
|
canSetIssueRestriction?: Maybe<Scalars['Boolean']>;
|
|
10955
11045
|
navigationMetadata?: Maybe<JiraProjectNavigationMetadata>;
|
|
10956
11046
|
action?: Maybe<JiraProjectAction>;
|
|
11047
|
+
virtualAgentConfiguration?: Maybe<VirtualAgentConfigurationResult>;
|
|
10957
11048
|
devOpsToolRelationships?: Maybe<JiraProjectAndDevOpsToolRelationshipConnection>;
|
|
10958
11049
|
devOpsEntityRelationships?: Maybe<AriGraphRelationshipConnection>;
|
|
10959
11050
|
repositoryRelationships?: Maybe<JiraProjectAndRepositoryRelationshipConnection>;
|
|
@@ -12510,6 +12601,9 @@ export declare type JiraSingleSelectUserPickerFieldUsersArgs = {
|
|
|
12510
12601
|
before?: Maybe<Scalars['String']>;
|
|
12511
12602
|
suggested?: Maybe<Scalars['Boolean']>;
|
|
12512
12603
|
};
|
|
12604
|
+
export declare enum JiraSingleValueFieldOperations {
|
|
12605
|
+
Set = "SET"
|
|
12606
|
+
}
|
|
12513
12607
|
export declare type JiraSingleVersionPickerField = Node & JiraIssueField & JiraIssueFieldConfiguration & JiraUserIssueFieldConfiguration & {
|
|
12514
12608
|
__typename?: 'JiraSingleVersionPickerField';
|
|
12515
12609
|
id: Scalars['ID'];
|
|
@@ -12800,10 +12894,22 @@ export declare type JiraUpdateCustomFilterPayload = Payload & {
|
|
|
12800
12894
|
errors?: Maybe<Array<MutationError>>;
|
|
12801
12895
|
filter?: Maybe<JiraCustomFilter>;
|
|
12802
12896
|
};
|
|
12897
|
+
export declare type JiraUpdateDateFieldInput = {
|
|
12898
|
+
id: Scalars['ID'];
|
|
12899
|
+
operation: JiraDateFieldOperationInput;
|
|
12900
|
+
};
|
|
12901
|
+
export declare type JiraUpdateDateTimeFieldInput = {
|
|
12902
|
+
id: Scalars['ID'];
|
|
12903
|
+
operation: JiraDateTimeFieldOperationInput;
|
|
12904
|
+
};
|
|
12803
12905
|
export declare type JiraUpdateLabelsFieldInput = {
|
|
12804
12906
|
id: Scalars['ID'];
|
|
12805
12907
|
operations: Array<JiraLabelsFieldOperationInput>;
|
|
12806
12908
|
};
|
|
12909
|
+
export declare type JiraUpdateNumberFieldInput = {
|
|
12910
|
+
id: Scalars['ID'];
|
|
12911
|
+
operation: JiraNumberFieldOperationInput;
|
|
12912
|
+
};
|
|
12807
12913
|
export declare type JiraUpdateReleaseNotesConfigurationInput = {
|
|
12808
12914
|
id: Scalars['ID'];
|
|
12809
12915
|
issueFieldIds: Array<Scalars['ID']>;
|
|
@@ -13544,6 +13650,105 @@ export declare enum MembershipState {
|
|
|
13544
13650
|
Alumni = "ALUMNI",
|
|
13545
13651
|
RequestingToJoin = "REQUESTING_TO_JOIN"
|
|
13546
13652
|
}
|
|
13653
|
+
export declare type MercuryAddGoalsToStrategyInput = {
|
|
13654
|
+
strategyId: Scalars['ID'];
|
|
13655
|
+
goals?: Maybe<Array<MercuryLinkGoalInput>>;
|
|
13656
|
+
};
|
|
13657
|
+
export declare type MercuryAtlasGoal = Node & {
|
|
13658
|
+
__typename?: 'MercuryAtlasGoal';
|
|
13659
|
+
id: Scalars['ID'];
|
|
13660
|
+
};
|
|
13661
|
+
export declare type MercuryCreateStrategyInput = {
|
|
13662
|
+
name: Scalars['String'];
|
|
13663
|
+
description?: Maybe<Scalars['String']>;
|
|
13664
|
+
createdBy: Scalars['String'];
|
|
13665
|
+
goals?: Maybe<Array<Maybe<MercuryLinkGoalInput>>>;
|
|
13666
|
+
};
|
|
13667
|
+
export declare type MercuryDeleteStrategyInput = {
|
|
13668
|
+
strategyId: Scalars['ID'];
|
|
13669
|
+
};
|
|
13670
|
+
export declare type MercuryLinkGoalInput = {
|
|
13671
|
+
goalId: Scalars['ID'];
|
|
13672
|
+
};
|
|
13673
|
+
export declare type MercuryMutationApi = {
|
|
13674
|
+
__typename?: 'MercuryMutationApi';
|
|
13675
|
+
createStrategy?: Maybe<MercuryStrategyMutationPayload>;
|
|
13676
|
+
updateStrategy?: Maybe<MercuryStrategyMutationPayload>;
|
|
13677
|
+
deleteStrategy?: Maybe<MercuryStrategyDeletePayload>;
|
|
13678
|
+
addGoalsToStrategy?: Maybe<MercuryStrategyMutationPayload>;
|
|
13679
|
+
removeGoalsFromStrategy?: Maybe<MercuryStrategyMutationPayload>;
|
|
13680
|
+
};
|
|
13681
|
+
export declare type MercuryMutationApiCreateStrategyArgs = {
|
|
13682
|
+
input: MercuryCreateStrategyInput;
|
|
13683
|
+
};
|
|
13684
|
+
export declare type MercuryMutationApiUpdateStrategyArgs = {
|
|
13685
|
+
input: MercuryUpdateStrategyInput;
|
|
13686
|
+
};
|
|
13687
|
+
export declare type MercuryMutationApiDeleteStrategyArgs = {
|
|
13688
|
+
input: MercuryDeleteStrategyInput;
|
|
13689
|
+
};
|
|
13690
|
+
export declare type MercuryMutationApiAddGoalsToStrategyArgs = {
|
|
13691
|
+
input: MercuryAddGoalsToStrategyInput;
|
|
13692
|
+
};
|
|
13693
|
+
export declare type MercuryMutationApiRemoveGoalsFromStrategyArgs = {
|
|
13694
|
+
input?: Maybe<MercuryRemoveGoalsFromStrategyInput>;
|
|
13695
|
+
};
|
|
13696
|
+
export declare type MercuryQueryApi = {
|
|
13697
|
+
__typename?: 'MercuryQueryApi';
|
|
13698
|
+
strategies?: Maybe<MercuryStrategyConnection>;
|
|
13699
|
+
strategy?: Maybe<MercuryStrategy>;
|
|
13700
|
+
};
|
|
13701
|
+
export declare type MercuryQueryApiStrategiesArgs = {
|
|
13702
|
+
first?: Maybe<Scalars['Int']>;
|
|
13703
|
+
after?: Maybe<Scalars['String']>;
|
|
13704
|
+
};
|
|
13705
|
+
export declare type MercuryQueryApiStrategyArgs = {
|
|
13706
|
+
id: Scalars['ID'];
|
|
13707
|
+
};
|
|
13708
|
+
export declare type MercuryRemoveGoalsFromStrategyInput = {
|
|
13709
|
+
strategyId: Scalars['ID'];
|
|
13710
|
+
goals?: Maybe<Array<MercuryLinkGoalInput>>;
|
|
13711
|
+
};
|
|
13712
|
+
export declare type MercuryStrategy = Node & {
|
|
13713
|
+
__typename?: 'MercuryStrategy';
|
|
13714
|
+
id: Scalars['ID'];
|
|
13715
|
+
name: Scalars['String'];
|
|
13716
|
+
description?: Maybe<Scalars['String']>;
|
|
13717
|
+
createdBy: Scalars['String'];
|
|
13718
|
+
goals?: Maybe<Array<Maybe<MercuryAtlasGoal>>>;
|
|
13719
|
+
};
|
|
13720
|
+
export declare type MercuryStrategyConnection = {
|
|
13721
|
+
__typename?: 'MercuryStrategyConnection';
|
|
13722
|
+
edges?: Maybe<Array<Maybe<MercuryStrategyEdge>>>;
|
|
13723
|
+
nodes?: Maybe<Array<Maybe<MercuryStrategy>>>;
|
|
13724
|
+
pageInfo: PageInfo;
|
|
13725
|
+
};
|
|
13726
|
+
export declare type MercuryStrategyDeletePayload = Payload & {
|
|
13727
|
+
__typename?: 'MercuryStrategyDeletePayload';
|
|
13728
|
+
success: Scalars['Boolean'];
|
|
13729
|
+
errors?: Maybe<Array<MutationError>>;
|
|
13730
|
+
statusCode: Scalars['Int'];
|
|
13731
|
+
message: Scalars['String'];
|
|
13732
|
+
};
|
|
13733
|
+
export declare type MercuryStrategyEdge = {
|
|
13734
|
+
__typename?: 'MercuryStrategyEdge';
|
|
13735
|
+
cursor: Scalars['String'];
|
|
13736
|
+
node?: Maybe<MercuryStrategy>;
|
|
13737
|
+
};
|
|
13738
|
+
export declare type MercuryStrategyMutationPayload = Payload & {
|
|
13739
|
+
__typename?: 'MercuryStrategyMutationPayload';
|
|
13740
|
+
strategy: MercuryStrategy;
|
|
13741
|
+
success: Scalars['Boolean'];
|
|
13742
|
+
errors?: Maybe<Array<MutationError>>;
|
|
13743
|
+
statusCode: Scalars['Int'];
|
|
13744
|
+
message: Scalars['String'];
|
|
13745
|
+
};
|
|
13746
|
+
export declare type MercuryUpdateStrategyInput = {
|
|
13747
|
+
strategyId: Scalars['ID'];
|
|
13748
|
+
name?: Maybe<Scalars['String']>;
|
|
13749
|
+
description?: Maybe<Scalars['String']>;
|
|
13750
|
+
createdBy?: Maybe<Scalars['String']>;
|
|
13751
|
+
};
|
|
13547
13752
|
export declare type MigrationKeys = {
|
|
13548
13753
|
__typename?: 'MigrationKeys';
|
|
13549
13754
|
jira: Scalars['String'];
|
|
@@ -13667,6 +13872,7 @@ export declare type Mutation = {
|
|
|
13667
13872
|
watchMarketplaceApp?: Maybe<WatchMarketplaceAppPayload>;
|
|
13668
13873
|
unwatchMarketplaceApp?: Maybe<UnwatchMarketplaceAppPayload>;
|
|
13669
13874
|
compass?: Maybe<CompassCatalogMutationApi>;
|
|
13875
|
+
mercury?: Maybe<MercuryMutationApi>;
|
|
13670
13876
|
shepherd?: Maybe<ShepherdMutation>;
|
|
13671
13877
|
directory?: Maybe<DirectoryMutation>;
|
|
13672
13878
|
helpObjectStore?: Maybe<HelpObjectStoreMutationApi>;
|
|
@@ -15489,6 +15695,7 @@ export declare type Query = {
|
|
|
15489
15695
|
node?: Maybe<Node>;
|
|
15490
15696
|
activities?: Maybe<Activities>;
|
|
15491
15697
|
activity?: Maybe<Activity>;
|
|
15698
|
+
mercury?: Maybe<MercuryQueryApi>;
|
|
15492
15699
|
devOpsMetrics?: Maybe<DevOpsMetrics>;
|
|
15493
15700
|
shepherd?: Maybe<ShepherdQuery>;
|
|
15494
15701
|
directory?: Maybe<DirectoryQuery>;
|