@forge/cli-shared 3.1.0-next.0 → 3.1.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
|
@@ -1,5 +1,31 @@
|
|
|
1
1
|
# @forge/cli-shared
|
|
2
2
|
|
|
3
|
+
## 3.1.0
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- 89ae99e: Add support for auto-bundling resources
|
|
8
|
+
|
|
9
|
+
### Patch Changes
|
|
10
|
+
|
|
11
|
+
- Updated dependencies [237e3c7]
|
|
12
|
+
- Updated dependencies [151c4d8]
|
|
13
|
+
- @forge/manifest@4.2.0
|
|
14
|
+
|
|
15
|
+
## 3.1.0-next.2
|
|
16
|
+
|
|
17
|
+
### Patch Changes
|
|
18
|
+
|
|
19
|
+
- Updated dependencies [237e3c72]
|
|
20
|
+
- @forge/manifest@4.2.0-next.1
|
|
21
|
+
|
|
22
|
+
## 3.1.0-next.1
|
|
23
|
+
|
|
24
|
+
### Patch Changes
|
|
25
|
+
|
|
26
|
+
- Updated dependencies [151c4d8]
|
|
27
|
+
- @forge/manifest@4.2.0-next.0
|
|
28
|
+
|
|
3
29
|
## 3.1.0-next.0
|
|
4
30
|
|
|
5
31
|
### Minor Changes
|
|
@@ -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
|
};
|
|
@@ -2173,6 +2196,8 @@ export declare type CompassCreateDeploymentEventPropertiesInput = {
|
|
|
2173
2196
|
state: CompassDeploymentEventState;
|
|
2174
2197
|
pipeline: CompassDeploymentEventPipelineInput;
|
|
2175
2198
|
environment: CompassDeploymentEventEnvironmentInput;
|
|
2199
|
+
startedAt?: Maybe<Scalars['DateTime']>;
|
|
2200
|
+
completedAt?: Maybe<Scalars['DateTime']>;
|
|
2176
2201
|
};
|
|
2177
2202
|
export declare type CompassCreateEventInput = {
|
|
2178
2203
|
cloudId: Scalars['ID'];
|
|
@@ -2199,14 +2224,18 @@ export declare type CompassCreateFlagEventPropertiesInput = {
|
|
|
2199
2224
|
export declare type CompassCreateHasCustomBooleanFieldScorecardCriteriaInput = {
|
|
2200
2225
|
weight: Scalars['Int'];
|
|
2201
2226
|
customFieldDefinitionId: Scalars['ID'];
|
|
2202
|
-
comparator
|
|
2203
|
-
comparatorValue
|
|
2227
|
+
comparator?: Maybe<CompassCriteriaBooleanComparatorOptions>;
|
|
2228
|
+
comparatorValue?: Maybe<Scalars['Boolean']>;
|
|
2229
|
+
booleanComparator?: Maybe<CompassCriteriaBooleanComparatorOptions>;
|
|
2230
|
+
booleanComparatorValue?: Maybe<Scalars['Boolean']>;
|
|
2204
2231
|
};
|
|
2205
2232
|
export declare type CompassCreateHasCustomNumberFieldScorecardCriteriaInput = {
|
|
2206
2233
|
weight: Scalars['Int'];
|
|
2207
2234
|
customFieldDefinitionId: Scalars['ID'];
|
|
2208
|
-
|
|
2209
|
-
|
|
2235
|
+
comparator?: Maybe<CompassCriteriaNumberComparatorOptions>;
|
|
2236
|
+
comparatorValue?: Maybe<Scalars['Float']>;
|
|
2237
|
+
numberComparator?: Maybe<CompassCriteriaNumberComparatorOptions>;
|
|
2238
|
+
numberComparatorValue?: Maybe<Scalars['Float']>;
|
|
2210
2239
|
};
|
|
2211
2240
|
export declare type CompassCreateHasCustomTextFieldScorecardCriteriaInput = {
|
|
2212
2241
|
weight: Scalars['Int'];
|
|
@@ -2514,6 +2543,8 @@ export declare type CompassDeploymentEventProperties = {
|
|
|
2514
2543
|
state?: Maybe<CompassDeploymentEventState>;
|
|
2515
2544
|
pipeline?: Maybe<CompassDeploymentEventPipeline>;
|
|
2516
2545
|
environment?: Maybe<CompassDeploymentEventEnvironment>;
|
|
2546
|
+
startedAt?: Maybe<Scalars['DateTime']>;
|
|
2547
|
+
completedAt?: Maybe<Scalars['DateTime']>;
|
|
2517
2548
|
};
|
|
2518
2549
|
export declare enum CompassDeploymentEventState {
|
|
2519
2550
|
Pending = "PENDING",
|
|
@@ -2648,6 +2679,8 @@ export declare type CompassHasCustomBooleanFieldScorecardCriteria = CompassScore
|
|
|
2648
2679
|
customFieldDefinition?: Maybe<CompassCustomBooleanFieldDefinition>;
|
|
2649
2680
|
comparator?: Maybe<CompassCriteriaBooleanComparatorOptions>;
|
|
2650
2681
|
comparatorValue?: Maybe<Scalars['Boolean']>;
|
|
2682
|
+
booleanComparator?: Maybe<CompassCriteriaBooleanComparatorOptions>;
|
|
2683
|
+
booleanComparatorValue?: Maybe<Scalars['Boolean']>;
|
|
2651
2684
|
scorecardCriteriaScore?: Maybe<CompassScorecardCriteriaScore>;
|
|
2652
2685
|
};
|
|
2653
2686
|
export declare type CompassHasCustomBooleanFieldScorecardCriteriaScorecardCriteriaScoreArgs = {
|
|
@@ -2660,6 +2693,8 @@ export declare type CompassHasCustomNumberFieldScorecardCriteria = CompassScorec
|
|
|
2660
2693
|
customFieldDefinition?: Maybe<CompassCustomNumberFieldDefinition>;
|
|
2661
2694
|
comparator?: Maybe<CompassCriteriaNumberComparatorOptions>;
|
|
2662
2695
|
comparatorValue?: Maybe<Scalars['Float']>;
|
|
2696
|
+
numberComparator?: Maybe<CompassCriteriaNumberComparatorOptions>;
|
|
2697
|
+
numberComparatorValue?: Maybe<Scalars['Float']>;
|
|
2663
2698
|
scorecardCriteriaScore?: Maybe<CompassScorecardCriteriaScore>;
|
|
2664
2699
|
};
|
|
2665
2700
|
export declare type CompassHasCustomNumberFieldScorecardCriteriaScorecardCriteriaScoreArgs = {
|
|
@@ -2987,6 +3022,17 @@ export declare type CompassRelationshipQueryFilters = {
|
|
|
2987
3022
|
export declare enum CompassRelationshipType {
|
|
2988
3023
|
DependsOn = "DEPENDS_ON"
|
|
2989
3024
|
}
|
|
3025
|
+
export declare type CompassRemoveTeamLabelsInput = {
|
|
3026
|
+
cloudId: Scalars['ID'];
|
|
3027
|
+
teamId: Scalars['ID'];
|
|
3028
|
+
labels: Array<Scalars['String']>;
|
|
3029
|
+
};
|
|
3030
|
+
export declare type CompassRemoveTeamLabelsPayload = Payload & {
|
|
3031
|
+
__typename?: 'CompassRemoveTeamLabelsPayload';
|
|
3032
|
+
success: Scalars['Boolean'];
|
|
3033
|
+
errors?: Maybe<Array<MutationError>>;
|
|
3034
|
+
removedLabels?: Maybe<Array<CompassTeamLabel>>;
|
|
3035
|
+
};
|
|
2990
3036
|
export declare type CompassRichTextObject = {
|
|
2991
3037
|
__typename?: 'CompassRichTextObject';
|
|
2992
3038
|
adf?: Maybe<Scalars['String']>;
|
|
@@ -3016,6 +3062,7 @@ export declare type CompassScorecardAppliedToComponentsConnection = {
|
|
|
3016
3062
|
edges?: Maybe<Array<CompassScorecardAppliedToComponentsEdge>>;
|
|
3017
3063
|
nodes?: Maybe<Array<CompassComponent>>;
|
|
3018
3064
|
pageInfo: PageInfo;
|
|
3065
|
+
totalCount?: Maybe<Scalars['Int']>;
|
|
3019
3066
|
};
|
|
3020
3067
|
export declare type CompassScorecardAppliedToComponentsEdge = {
|
|
3021
3068
|
__typename?: 'CompassScorecardAppliedToComponentsEdge';
|
|
@@ -3179,6 +3226,20 @@ export declare type CompassTeamCheckinsInput = {
|
|
|
3179
3226
|
cloudId: Scalars['ID'];
|
|
3180
3227
|
teamId: Scalars['ID'];
|
|
3181
3228
|
};
|
|
3229
|
+
export declare type CompassTeamData = {
|
|
3230
|
+
__typename?: 'CompassTeamData';
|
|
3231
|
+
teamId?: Maybe<Scalars['ID']>;
|
|
3232
|
+
labels?: Maybe<Array<CompassTeamLabel>>;
|
|
3233
|
+
};
|
|
3234
|
+
export declare type CompassTeamDataInput = {
|
|
3235
|
+
cloudId: Scalars['ID'];
|
|
3236
|
+
teamId: Scalars['ID'];
|
|
3237
|
+
};
|
|
3238
|
+
export declare type CompassTeamDataResult = CompassTeamData | QueryError;
|
|
3239
|
+
export declare type CompassTeamLabel = {
|
|
3240
|
+
__typename?: 'CompassTeamLabel';
|
|
3241
|
+
name: Scalars['String'];
|
|
3242
|
+
};
|
|
3182
3243
|
export declare type CompassUpdateAnnouncementInput = {
|
|
3183
3244
|
cloudId: Scalars['ID'];
|
|
3184
3245
|
id: Scalars['ID'];
|
|
@@ -3228,13 +3289,17 @@ export declare type CompassUpdateHasCustomBooleanFieldScorecardCriteriaInput = {
|
|
|
3228
3289
|
customFieldDefinitionId?: Maybe<Scalars['ID']>;
|
|
3229
3290
|
comparator?: Maybe<CompassCriteriaBooleanComparatorOptions>;
|
|
3230
3291
|
comparatorValue?: Maybe<Scalars['Boolean']>;
|
|
3292
|
+
booleanComparator?: Maybe<CompassCriteriaBooleanComparatorOptions>;
|
|
3293
|
+
booleanComparatorValue?: Maybe<Scalars['Boolean']>;
|
|
3231
3294
|
};
|
|
3232
3295
|
export declare type CompassUpdateHasCustomNumberFieldScorecardCriteriaInput = {
|
|
3233
3296
|
id: Scalars['ID'];
|
|
3234
3297
|
weight?: Maybe<Scalars['Int']>;
|
|
3235
3298
|
customFieldDefinitionId?: Maybe<Scalars['ID']>;
|
|
3236
|
-
comparatorValue?: Maybe<Scalars['Float']>;
|
|
3237
3299
|
comparator?: Maybe<CompassCriteriaNumberComparatorOptions>;
|
|
3300
|
+
comparatorValue?: Maybe<Scalars['Float']>;
|
|
3301
|
+
numberComparator?: Maybe<CompassCriteriaNumberComparatorOptions>;
|
|
3302
|
+
numberComparatorValue?: Maybe<Scalars['Float']>;
|
|
3238
3303
|
};
|
|
3239
3304
|
export declare type CompassUpdateHasCustomTextFieldScorecardCriteriaInput = {
|
|
3240
3305
|
id: Scalars['ID'];
|
|
@@ -4760,6 +4825,8 @@ export declare type CreateDeploymentEventInput = {
|
|
|
4760
4825
|
pipeline: CompassDeploymentEventPipelineInput;
|
|
4761
4826
|
environment: CompassDeploymentEventEnvironmentInput;
|
|
4762
4827
|
externalEventSourceId: Scalars['ID'];
|
|
4828
|
+
startedAt?: Maybe<Scalars['DateTime']>;
|
|
4829
|
+
completedAt?: Maybe<Scalars['DateTime']>;
|
|
4763
4830
|
};
|
|
4764
4831
|
export declare type CreateDeploymentEventsPayload = Payload & {
|
|
4765
4832
|
__typename?: 'CreateDeploymentEventsPayload';
|
|
@@ -6394,7 +6461,7 @@ export declare type DirectoryMutationRemoveUserFromOrganizationArgs = {
|
|
|
6394
6461
|
};
|
|
6395
6462
|
export declare type DirectoryQuery = {
|
|
6396
6463
|
__typename?: 'DirectoryQuery';
|
|
6397
|
-
|
|
6464
|
+
_version?: Maybe<Scalars['String']>;
|
|
6398
6465
|
};
|
|
6399
6466
|
export declare type DirectoryRemoveUserInput = {
|
|
6400
6467
|
orgId: Scalars['ID'];
|
|
@@ -6605,11 +6672,12 @@ export declare type FilterQuery = {
|
|
|
6605
6672
|
errors?: Maybe<Array<Maybe<Scalars['String']>>>;
|
|
6606
6673
|
};
|
|
6607
6674
|
export declare type ForgeAlertsActivitiesQueryInput = {
|
|
6608
|
-
after?: Maybe<Scalars['
|
|
6675
|
+
after?: Maybe<Scalars['String']>;
|
|
6609
6676
|
endTime: Scalars['String'];
|
|
6610
6677
|
environment: Scalars['String'];
|
|
6611
6678
|
first?: Maybe<Scalars['Int']>;
|
|
6612
6679
|
startTime: Scalars['String'];
|
|
6680
|
+
onlyOpenResolvedActivityType?: Maybe<Scalars['Boolean']>;
|
|
6613
6681
|
};
|
|
6614
6682
|
export declare type ForgeAlertsActivitiesResult = ForgeAlertsActivityConnection | QueryError;
|
|
6615
6683
|
export declare type ForgeAlertsActivity = {
|
|
@@ -6623,7 +6691,7 @@ export declare type ForgeAlertsActivity = {
|
|
|
6623
6691
|
export declare type ForgeAlertsActivityConnection = {
|
|
6624
6692
|
__typename?: 'ForgeAlertsActivityConnection';
|
|
6625
6693
|
edges: Array<Maybe<ForgeAlertsActivityEdge>>;
|
|
6626
|
-
nodes: Array<
|
|
6694
|
+
nodes: Array<ForgeAlertsActivity>;
|
|
6627
6695
|
pageInfo: PageInfo;
|
|
6628
6696
|
};
|
|
6629
6697
|
export declare type ForgeAlertsActivityEdge = {
|
|
@@ -6987,15 +7055,19 @@ export declare type FortifiedMetricsSuccessRateSeries = {
|
|
|
6987
7055
|
};
|
|
6988
7056
|
export declare type FortifiedSuccessRateMetricQuery = {
|
|
6989
7057
|
__typename?: 'FortifiedSuccessRateMetricQuery';
|
|
6990
|
-
|
|
7058
|
+
successRate?: Maybe<FortifiedMetricsSuccessRateResult>;
|
|
6991
7059
|
alertConditionSuccessRate?: Maybe<FortifiedMetricsSuccessRateResult>;
|
|
7060
|
+
serviceLevelObjectiveSuccessRate?: Maybe<FortifiedMetricsSuccessRateResult>;
|
|
6992
7061
|
};
|
|
6993
|
-
export declare type
|
|
7062
|
+
export declare type FortifiedSuccessRateMetricQuerySuccessRateArgs = {
|
|
6994
7063
|
query: FortifiedMetricsQueryInput;
|
|
6995
7064
|
};
|
|
6996
7065
|
export declare type FortifiedSuccessRateMetricQueryAlertConditionSuccessRateArgs = {
|
|
6997
7066
|
query: FortifiedMetricsQueryInput;
|
|
6998
7067
|
};
|
|
7068
|
+
export declare type FortifiedSuccessRateMetricQueryServiceLevelObjectiveSuccessRateArgs = {
|
|
7069
|
+
query: FortifiedMetricsQueryInput;
|
|
7070
|
+
};
|
|
6999
7071
|
export declare type FunctionDescription = {
|
|
7000
7072
|
__typename?: 'FunctionDescription';
|
|
7001
7073
|
key: Scalars['String'];
|
|
@@ -8443,6 +8515,16 @@ export declare type JiraCustomFilterEditGrantsArgs = {
|
|
|
8443
8515
|
last?: Maybe<Scalars['Int']>;
|
|
8444
8516
|
before?: Maybe<Scalars['String']>;
|
|
8445
8517
|
};
|
|
8518
|
+
export declare type JiraDateFieldOperationInput = {
|
|
8519
|
+
operation: JiraSingleValueFieldOperations;
|
|
8520
|
+
date?: Maybe<Scalars['Date']>;
|
|
8521
|
+
};
|
|
8522
|
+
export declare type JiraDateFieldPayload = Payload & {
|
|
8523
|
+
__typename?: 'JiraDateFieldPayload';
|
|
8524
|
+
success: Scalars['Boolean'];
|
|
8525
|
+
errors?: Maybe<Array<MutationError>>;
|
|
8526
|
+
field?: Maybe<JiraDatePickerField>;
|
|
8527
|
+
};
|
|
8446
8528
|
export declare type JiraDatePickerField = Node & JiraIssueField & JiraIssueFieldConfiguration & JiraUserIssueFieldConfiguration & {
|
|
8447
8529
|
__typename?: 'JiraDatePickerField';
|
|
8448
8530
|
id: Scalars['ID'];
|
|
@@ -8455,6 +8537,16 @@ export declare type JiraDatePickerField = Node & JiraIssueField & JiraIssueField
|
|
|
8455
8537
|
fieldConfig?: Maybe<JiraFieldConfig>;
|
|
8456
8538
|
userFieldConfig?: Maybe<JiraUserFieldConfig>;
|
|
8457
8539
|
};
|
|
8540
|
+
export declare type JiraDateTimeFieldOperationInput = {
|
|
8541
|
+
operation: JiraSingleValueFieldOperations;
|
|
8542
|
+
datetime?: Maybe<Scalars['DateTime']>;
|
|
8543
|
+
};
|
|
8544
|
+
export declare type JiraDateTimeFieldPayload = Payload & {
|
|
8545
|
+
__typename?: 'JiraDateTimeFieldPayload';
|
|
8546
|
+
success: Scalars['Boolean'];
|
|
8547
|
+
errors?: Maybe<Array<MutationError>>;
|
|
8548
|
+
field?: Maybe<JiraDateTimePickerField>;
|
|
8549
|
+
};
|
|
8458
8550
|
export declare type JiraDateTimePickerField = Node & JiraIssueField & JiraIssueFieldConfiguration & JiraUserIssueFieldConfiguration & {
|
|
8459
8551
|
__typename?: 'JiraDateTimePickerField';
|
|
8460
8552
|
id: Scalars['ID'];
|
|
@@ -9408,8 +9500,7 @@ export declare type JiraIssueItemTabContainerItemEdge = {
|
|
|
9408
9500
|
};
|
|
9409
9501
|
export declare enum JiraIssueLifecycleState {
|
|
9410
9502
|
Active = "ACTIVE",
|
|
9411
|
-
Archived = "ARCHIVED"
|
|
9412
|
-
HardDeleted = "HARD_DELETED"
|
|
9503
|
+
Archived = "ARCHIVED"
|
|
9413
9504
|
}
|
|
9414
9505
|
export declare type JiraIssueLink = {
|
|
9415
9506
|
__typename?: 'JiraIssueLink';
|
|
@@ -10374,6 +10465,9 @@ export declare type JiraMutation = {
|
|
|
10374
10465
|
jiraFilterMutation?: Maybe<JiraFilterMutation>;
|
|
10375
10466
|
setApplicationProperties?: Maybe<JiraSetApplicationPropertiesPayload>;
|
|
10376
10467
|
updateLabelsField?: Maybe<JiraLabelsFieldPayload>;
|
|
10468
|
+
updateDateField?: Maybe<JiraDateFieldPayload>;
|
|
10469
|
+
updateDateTimeField?: Maybe<JiraDateTimeFieldPayload>;
|
|
10470
|
+
updateNumberField?: Maybe<JiraNumberFieldPayload>;
|
|
10377
10471
|
addPermissionSchemeGrants?: Maybe<JiraPermissionSchemeAddGrantPayload>;
|
|
10378
10472
|
removePermissionSchemeGrants?: Maybe<JiraPermissionSchemeRemoveGrantPayload>;
|
|
10379
10473
|
updateIssueHierarchyConfig?: Maybe<JiraIssueHierarchyConfigurationMutationResult>;
|
|
@@ -10398,6 +10492,15 @@ export declare type JiraMutationSetApplicationPropertiesArgs = {
|
|
|
10398
10492
|
export declare type JiraMutationUpdateLabelsFieldArgs = {
|
|
10399
10493
|
input: JiraUpdateLabelsFieldInput;
|
|
10400
10494
|
};
|
|
10495
|
+
export declare type JiraMutationUpdateDateFieldArgs = {
|
|
10496
|
+
input: JiraUpdateDateFieldInput;
|
|
10497
|
+
};
|
|
10498
|
+
export declare type JiraMutationUpdateDateTimeFieldArgs = {
|
|
10499
|
+
input: JiraUpdateDateTimeFieldInput;
|
|
10500
|
+
};
|
|
10501
|
+
export declare type JiraMutationUpdateNumberFieldArgs = {
|
|
10502
|
+
input?: Maybe<JiraUpdateNumberFieldInput>;
|
|
10503
|
+
};
|
|
10401
10504
|
export declare type JiraMutationAddPermissionSchemeGrantsArgs = {
|
|
10402
10505
|
input: JiraPermissionSchemeAddGrantInput;
|
|
10403
10506
|
};
|
|
@@ -10449,6 +10552,16 @@ export declare type JiraNumberField = Node & JiraIssueField & JiraIssueFieldConf
|
|
|
10449
10552
|
userFieldConfig?: Maybe<JiraUserFieldConfig>;
|
|
10450
10553
|
isStoryPointField?: Maybe<Scalars['Boolean']>;
|
|
10451
10554
|
};
|
|
10555
|
+
export declare type JiraNumberFieldOperationInput = {
|
|
10556
|
+
operation: JiraSingleValueFieldOperations;
|
|
10557
|
+
number?: Maybe<Scalars['Float']>;
|
|
10558
|
+
};
|
|
10559
|
+
export declare type JiraNumberFieldPayload = Payload & {
|
|
10560
|
+
__typename?: 'JiraNumberFieldPayload';
|
|
10561
|
+
success: Scalars['Boolean'];
|
|
10562
|
+
errors?: Maybe<Array<MutationError>>;
|
|
10563
|
+
field?: Maybe<JiraNumberField>;
|
|
10564
|
+
};
|
|
10452
10565
|
export declare type JiraOAuthAppsApp = {
|
|
10453
10566
|
__typename?: 'JiraOAuthAppsApp';
|
|
10454
10567
|
id: Scalars['ID'];
|
|
@@ -10951,6 +11064,8 @@ export declare type JiraProject = Node & {
|
|
|
10951
11064
|
canSetIssueRestriction?: Maybe<Scalars['Boolean']>;
|
|
10952
11065
|
navigationMetadata?: Maybe<JiraProjectNavigationMetadata>;
|
|
10953
11066
|
action?: Maybe<JiraProjectAction>;
|
|
11067
|
+
virtualAgentConfiguration?: Maybe<VirtualAgentConfigurationResult>;
|
|
11068
|
+
isFavourite?: Maybe<Scalars['Boolean']>;
|
|
10954
11069
|
devOpsToolRelationships?: Maybe<JiraProjectAndDevOpsToolRelationshipConnection>;
|
|
10955
11070
|
devOpsEntityRelationships?: Maybe<AriGraphRelationshipConnection>;
|
|
10956
11071
|
repositoryRelationships?: Maybe<JiraProjectAndRepositoryRelationshipConnection>;
|
|
@@ -12507,6 +12622,9 @@ export declare type JiraSingleSelectUserPickerFieldUsersArgs = {
|
|
|
12507
12622
|
before?: Maybe<Scalars['String']>;
|
|
12508
12623
|
suggested?: Maybe<Scalars['Boolean']>;
|
|
12509
12624
|
};
|
|
12625
|
+
export declare enum JiraSingleValueFieldOperations {
|
|
12626
|
+
Set = "SET"
|
|
12627
|
+
}
|
|
12510
12628
|
export declare type JiraSingleVersionPickerField = Node & JiraIssueField & JiraIssueFieldConfiguration & JiraUserIssueFieldConfiguration & {
|
|
12511
12629
|
__typename?: 'JiraSingleVersionPickerField';
|
|
12512
12630
|
id: Scalars['ID'];
|
|
@@ -12797,10 +12915,22 @@ export declare type JiraUpdateCustomFilterPayload = Payload & {
|
|
|
12797
12915
|
errors?: Maybe<Array<MutationError>>;
|
|
12798
12916
|
filter?: Maybe<JiraCustomFilter>;
|
|
12799
12917
|
};
|
|
12918
|
+
export declare type JiraUpdateDateFieldInput = {
|
|
12919
|
+
id: Scalars['ID'];
|
|
12920
|
+
operation: JiraDateFieldOperationInput;
|
|
12921
|
+
};
|
|
12922
|
+
export declare type JiraUpdateDateTimeFieldInput = {
|
|
12923
|
+
id: Scalars['ID'];
|
|
12924
|
+
operation: JiraDateTimeFieldOperationInput;
|
|
12925
|
+
};
|
|
12800
12926
|
export declare type JiraUpdateLabelsFieldInput = {
|
|
12801
12927
|
id: Scalars['ID'];
|
|
12802
12928
|
operations: Array<JiraLabelsFieldOperationInput>;
|
|
12803
12929
|
};
|
|
12930
|
+
export declare type JiraUpdateNumberFieldInput = {
|
|
12931
|
+
id: Scalars['ID'];
|
|
12932
|
+
operation: JiraNumberFieldOperationInput;
|
|
12933
|
+
};
|
|
12804
12934
|
export declare type JiraUpdateReleaseNotesConfigurationInput = {
|
|
12805
12935
|
id: Scalars['ID'];
|
|
12806
12936
|
issueFieldIds: Array<Scalars['ID']>;
|
|
@@ -12812,6 +12942,7 @@ export declare type JiraUpdateReleaseNotesConfigurationPayload = Payload & {
|
|
|
12812
12942
|
success: Scalars['Boolean'];
|
|
12813
12943
|
errors?: Maybe<Array<MutationError>>;
|
|
12814
12944
|
releaseNotesConfiguration?: Maybe<JiraReleaseNotesConfiguration>;
|
|
12945
|
+
version?: Maybe<JiraVersion>;
|
|
12815
12946
|
};
|
|
12816
12947
|
export declare type JiraUpdateVersionDescriptionInput = {
|
|
12817
12948
|
id: Scalars['ID'];
|
|
@@ -13384,6 +13515,7 @@ export declare type MarketplacePartner = {
|
|
|
13384
13515
|
programs?: Maybe<MarketplacePartnerPrograms>;
|
|
13385
13516
|
partnerType?: Maybe<MarketplacePartnerType>;
|
|
13386
13517
|
partnerTier?: Maybe<MarketplacePartnerTier>;
|
|
13518
|
+
isUserContact?: Maybe<Scalars['Boolean']>;
|
|
13387
13519
|
};
|
|
13388
13520
|
export declare type MarketplacePartnerAddress = {
|
|
13389
13521
|
__typename?: 'MarketplacePartnerAddress';
|
|
@@ -13541,6 +13673,105 @@ export declare enum MembershipState {
|
|
|
13541
13673
|
Alumni = "ALUMNI",
|
|
13542
13674
|
RequestingToJoin = "REQUESTING_TO_JOIN"
|
|
13543
13675
|
}
|
|
13676
|
+
export declare type MercuryAddGoalsToStrategyInput = {
|
|
13677
|
+
strategyId: Scalars['ID'];
|
|
13678
|
+
goals?: Maybe<Array<MercuryLinkGoalInput>>;
|
|
13679
|
+
};
|
|
13680
|
+
export declare type MercuryAtlasGoal = Node & {
|
|
13681
|
+
__typename?: 'MercuryAtlasGoal';
|
|
13682
|
+
id: Scalars['ID'];
|
|
13683
|
+
};
|
|
13684
|
+
export declare type MercuryCreateStrategyInput = {
|
|
13685
|
+
name: Scalars['String'];
|
|
13686
|
+
description?: Maybe<Scalars['String']>;
|
|
13687
|
+
createdBy: Scalars['String'];
|
|
13688
|
+
goals?: Maybe<Array<Maybe<MercuryLinkGoalInput>>>;
|
|
13689
|
+
};
|
|
13690
|
+
export declare type MercuryDeleteStrategyInput = {
|
|
13691
|
+
strategyId: Scalars['ID'];
|
|
13692
|
+
};
|
|
13693
|
+
export declare type MercuryLinkGoalInput = {
|
|
13694
|
+
goalId: Scalars['ID'];
|
|
13695
|
+
};
|
|
13696
|
+
export declare type MercuryMutationApi = {
|
|
13697
|
+
__typename?: 'MercuryMutationApi';
|
|
13698
|
+
createStrategy?: Maybe<MercuryStrategyMutationPayload>;
|
|
13699
|
+
updateStrategy?: Maybe<MercuryStrategyMutationPayload>;
|
|
13700
|
+
deleteStrategy?: Maybe<MercuryStrategyDeletePayload>;
|
|
13701
|
+
addGoalsToStrategy?: Maybe<MercuryStrategyMutationPayload>;
|
|
13702
|
+
removeGoalsFromStrategy?: Maybe<MercuryStrategyMutationPayload>;
|
|
13703
|
+
};
|
|
13704
|
+
export declare type MercuryMutationApiCreateStrategyArgs = {
|
|
13705
|
+
input: MercuryCreateStrategyInput;
|
|
13706
|
+
};
|
|
13707
|
+
export declare type MercuryMutationApiUpdateStrategyArgs = {
|
|
13708
|
+
input: MercuryUpdateStrategyInput;
|
|
13709
|
+
};
|
|
13710
|
+
export declare type MercuryMutationApiDeleteStrategyArgs = {
|
|
13711
|
+
input: MercuryDeleteStrategyInput;
|
|
13712
|
+
};
|
|
13713
|
+
export declare type MercuryMutationApiAddGoalsToStrategyArgs = {
|
|
13714
|
+
input: MercuryAddGoalsToStrategyInput;
|
|
13715
|
+
};
|
|
13716
|
+
export declare type MercuryMutationApiRemoveGoalsFromStrategyArgs = {
|
|
13717
|
+
input?: Maybe<MercuryRemoveGoalsFromStrategyInput>;
|
|
13718
|
+
};
|
|
13719
|
+
export declare type MercuryQueryApi = {
|
|
13720
|
+
__typename?: 'MercuryQueryApi';
|
|
13721
|
+
strategies?: Maybe<MercuryStrategyConnection>;
|
|
13722
|
+
strategy?: Maybe<MercuryStrategy>;
|
|
13723
|
+
};
|
|
13724
|
+
export declare type MercuryQueryApiStrategiesArgs = {
|
|
13725
|
+
first?: Maybe<Scalars['Int']>;
|
|
13726
|
+
after?: Maybe<Scalars['String']>;
|
|
13727
|
+
};
|
|
13728
|
+
export declare type MercuryQueryApiStrategyArgs = {
|
|
13729
|
+
id: Scalars['ID'];
|
|
13730
|
+
};
|
|
13731
|
+
export declare type MercuryRemoveGoalsFromStrategyInput = {
|
|
13732
|
+
strategyId: Scalars['ID'];
|
|
13733
|
+
goals?: Maybe<Array<MercuryLinkGoalInput>>;
|
|
13734
|
+
};
|
|
13735
|
+
export declare type MercuryStrategy = Node & {
|
|
13736
|
+
__typename?: 'MercuryStrategy';
|
|
13737
|
+
id: Scalars['ID'];
|
|
13738
|
+
name: Scalars['String'];
|
|
13739
|
+
description?: Maybe<Scalars['String']>;
|
|
13740
|
+
createdBy: Scalars['String'];
|
|
13741
|
+
goals?: Maybe<Array<Maybe<MercuryAtlasGoal>>>;
|
|
13742
|
+
};
|
|
13743
|
+
export declare type MercuryStrategyConnection = {
|
|
13744
|
+
__typename?: 'MercuryStrategyConnection';
|
|
13745
|
+
edges?: Maybe<Array<Maybe<MercuryStrategyEdge>>>;
|
|
13746
|
+
nodes?: Maybe<Array<Maybe<MercuryStrategy>>>;
|
|
13747
|
+
pageInfo: PageInfo;
|
|
13748
|
+
};
|
|
13749
|
+
export declare type MercuryStrategyDeletePayload = Payload & {
|
|
13750
|
+
__typename?: 'MercuryStrategyDeletePayload';
|
|
13751
|
+
success: Scalars['Boolean'];
|
|
13752
|
+
errors?: Maybe<Array<MutationError>>;
|
|
13753
|
+
statusCode: Scalars['Int'];
|
|
13754
|
+
message: Scalars['String'];
|
|
13755
|
+
};
|
|
13756
|
+
export declare type MercuryStrategyEdge = {
|
|
13757
|
+
__typename?: 'MercuryStrategyEdge';
|
|
13758
|
+
cursor: Scalars['String'];
|
|
13759
|
+
node?: Maybe<MercuryStrategy>;
|
|
13760
|
+
};
|
|
13761
|
+
export declare type MercuryStrategyMutationPayload = Payload & {
|
|
13762
|
+
__typename?: 'MercuryStrategyMutationPayload';
|
|
13763
|
+
strategy: MercuryStrategy;
|
|
13764
|
+
success: Scalars['Boolean'];
|
|
13765
|
+
errors?: Maybe<Array<MutationError>>;
|
|
13766
|
+
statusCode: Scalars['Int'];
|
|
13767
|
+
message: Scalars['String'];
|
|
13768
|
+
};
|
|
13769
|
+
export declare type MercuryUpdateStrategyInput = {
|
|
13770
|
+
strategyId: Scalars['ID'];
|
|
13771
|
+
name?: Maybe<Scalars['String']>;
|
|
13772
|
+
description?: Maybe<Scalars['String']>;
|
|
13773
|
+
createdBy?: Maybe<Scalars['String']>;
|
|
13774
|
+
};
|
|
13544
13775
|
export declare type MigrationKeys = {
|
|
13545
13776
|
__typename?: 'MigrationKeys';
|
|
13546
13777
|
jira: Scalars['String'];
|
|
@@ -13649,6 +13880,7 @@ export declare type Mutation = {
|
|
|
13649
13880
|
createPolarisView?: Maybe<CreatePolarisViewPayload>;
|
|
13650
13881
|
updatePolarisView?: Maybe<UpdatePolarisViewPayload>;
|
|
13651
13882
|
updatePolarisViewRankV2?: Maybe<UpdatePolarisViewRankV2Payload>;
|
|
13883
|
+
updatePolarisViewArrangementInfo?: Maybe<UpdatePolarisViewArrangementInfoPayload>;
|
|
13652
13884
|
deletePolarisView?: Maybe<DeletePolarisViewPayload>;
|
|
13653
13885
|
updatePolarisViewLastViewedTimestamp?: Maybe<UpdatePolarisViewTimestampPayload>;
|
|
13654
13886
|
createPolarisViewSet?: Maybe<CreatePolarisViewSetPayload>;
|
|
@@ -13664,6 +13896,7 @@ export declare type Mutation = {
|
|
|
13664
13896
|
watchMarketplaceApp?: Maybe<WatchMarketplaceAppPayload>;
|
|
13665
13897
|
unwatchMarketplaceApp?: Maybe<UnwatchMarketplaceAppPayload>;
|
|
13666
13898
|
compass?: Maybe<CompassCatalogMutationApi>;
|
|
13899
|
+
mercury?: Maybe<MercuryMutationApi>;
|
|
13667
13900
|
shepherd?: Maybe<ShepherdMutation>;
|
|
13668
13901
|
directory?: Maybe<DirectoryMutation>;
|
|
13669
13902
|
helpObjectStore?: Maybe<HelpObjectStoreMutationApi>;
|
|
@@ -13958,6 +14191,10 @@ export declare type MutationUpdatePolarisViewRankV2Args = {
|
|
|
13958
14191
|
id: Scalars['ID'];
|
|
13959
14192
|
input: UpdatePolarisViewRankInput;
|
|
13960
14193
|
};
|
|
14194
|
+
export declare type MutationUpdatePolarisViewArrangementInfoArgs = {
|
|
14195
|
+
id: Scalars['ID'];
|
|
14196
|
+
input?: Maybe<Scalars['JSON']>;
|
|
14197
|
+
};
|
|
13961
14198
|
export declare type MutationDeletePolarisViewArgs = {
|
|
13962
14199
|
id: Scalars['ID'];
|
|
13963
14200
|
};
|
|
@@ -15255,6 +15492,8 @@ export declare type PolarisTimelineConfig = {
|
|
|
15255
15492
|
startDateField?: Maybe<PolarisIdeaField>;
|
|
15256
15493
|
dueDateField?: Maybe<PolarisIdeaField>;
|
|
15257
15494
|
mode: PolarisTimelineMode;
|
|
15495
|
+
startTimestamp?: Maybe<Scalars['String']>;
|
|
15496
|
+
endTimestamp?: Maybe<Scalars['String']>;
|
|
15258
15497
|
};
|
|
15259
15498
|
export declare enum PolarisTimelineMode {
|
|
15260
15499
|
Months = "MONTHS",
|
|
@@ -15468,6 +15707,7 @@ export declare type Query = {
|
|
|
15468
15707
|
polarisLinkedDeliveryTickets?: Maybe<Array<Maybe<Scalars['JSON']>>>;
|
|
15469
15708
|
polaris?: Maybe<PolarisQueryNamespace>;
|
|
15470
15709
|
polarisIdeaTemplates?: Maybe<Array<PolarisIdeaTemplate>>;
|
|
15710
|
+
polarisViewArrangementInfo?: Maybe<Scalars['JSON']>;
|
|
15471
15711
|
appActiveTunnels?: Maybe<AppTunnelDefinitions>;
|
|
15472
15712
|
dvcs?: Maybe<DvcsQuery>;
|
|
15473
15713
|
webTriggerUrlsByAppContext?: Maybe<Array<WebTriggerUrl>>;
|
|
@@ -15486,6 +15726,7 @@ export declare type Query = {
|
|
|
15486
15726
|
node?: Maybe<Node>;
|
|
15487
15727
|
activities?: Maybe<Activities>;
|
|
15488
15728
|
activity?: Maybe<Activity>;
|
|
15729
|
+
mercury?: Maybe<MercuryQueryApi>;
|
|
15489
15730
|
devOpsMetrics?: Maybe<DevOpsMetrics>;
|
|
15490
15731
|
shepherd?: Maybe<ShepherdQuery>;
|
|
15491
15732
|
directory?: Maybe<DirectoryQuery>;
|
|
@@ -15693,6 +15934,9 @@ export declare type QueryPolarisLinkedDeliveryTicketsArgs = {
|
|
|
15693
15934
|
export declare type QueryPolarisIdeaTemplatesArgs = {
|
|
15694
15935
|
project: Scalars['ID'];
|
|
15695
15936
|
};
|
|
15937
|
+
export declare type QueryPolarisViewArrangementInfoArgs = {
|
|
15938
|
+
id: Scalars['ID'];
|
|
15939
|
+
};
|
|
15696
15940
|
export declare type QueryAppActiveTunnelsArgs = {
|
|
15697
15941
|
appId: Scalars['ID'];
|
|
15698
15942
|
environmentId: Scalars['ID'];
|
|
@@ -16979,22 +17223,8 @@ export declare type SearchResultJiraProject = SearchResult & {
|
|
|
16979
17223
|
favourite: Scalars['Boolean'];
|
|
16980
17224
|
canView: Scalars['Boolean'];
|
|
16981
17225
|
simplified: Scalars['Boolean'];
|
|
16982
|
-
landingPageInfo?: Maybe<SearchResultProjectLandingPageInfo>;
|
|
16983
17226
|
project?: Maybe<JiraProject>;
|
|
16984
17227
|
};
|
|
16985
|
-
export declare type SearchResultProjectLandingPageInfo = SearchResultSoftwareProjectLandingPageInfo | SearchResultServiceDeskProjectLandingPageInfo | SearchResultWorkManagementProjectLandingPageInfo;
|
|
16986
|
-
export declare type SearchResultServiceDeskProjectLandingPageInfo = {
|
|
16987
|
-
__typename?: 'SearchResultServiceDeskProjectLandingPageInfo';
|
|
16988
|
-
id: Scalars['ID'];
|
|
16989
|
-
queueId: Scalars['Int'];
|
|
16990
|
-
queueName: Scalars['String'];
|
|
16991
|
-
};
|
|
16992
|
-
export declare type SearchResultSoftwareProjectLandingPageInfo = {
|
|
16993
|
-
__typename?: 'SearchResultSoftwareProjectLandingPageInfo';
|
|
16994
|
-
id: Scalars['ID'];
|
|
16995
|
-
boardId: Scalars['Int'];
|
|
16996
|
-
boardName: Scalars['String'];
|
|
16997
|
-
};
|
|
16998
17228
|
export declare enum SearchResultType {
|
|
16999
17229
|
Blogpost = "blogpost",
|
|
17000
17230
|
Space = "space",
|
|
@@ -17004,10 +17234,6 @@ export declare enum SearchResultType {
|
|
|
17004
17234
|
Plan = "plan",
|
|
17005
17235
|
Project = "project"
|
|
17006
17236
|
}
|
|
17007
|
-
export declare type SearchResultWorkManagementProjectLandingPageInfo = {
|
|
17008
|
-
__typename?: 'SearchResultWorkManagementProjectLandingPageInfo';
|
|
17009
|
-
boardName: Scalars['String'];
|
|
17010
|
-
};
|
|
17011
17237
|
export declare type SearchSpace = {
|
|
17012
17238
|
__typename?: 'SearchSpace';
|
|
17013
17239
|
key: Scalars['String'];
|
|
@@ -18958,6 +19184,13 @@ export declare type UpdatePolarisTimelineConfig = {
|
|
|
18958
19184
|
startDateField?: Maybe<Scalars['ID']>;
|
|
18959
19185
|
dueDateField?: Maybe<Scalars['ID']>;
|
|
18960
19186
|
mode?: Maybe<PolarisTimelineMode>;
|
|
19187
|
+
startTimestamp?: Maybe<Scalars['String']>;
|
|
19188
|
+
endTimestamp?: Maybe<Scalars['String']>;
|
|
19189
|
+
};
|
|
19190
|
+
export declare type UpdatePolarisViewArrangementInfoPayload = Payload & {
|
|
19191
|
+
__typename?: 'UpdatePolarisViewArrangementInfoPayload';
|
|
19192
|
+
success: Scalars['Boolean'];
|
|
19193
|
+
errors?: Maybe<Array<MutationError>>;
|
|
18961
19194
|
};
|
|
18962
19195
|
export declare type UpdatePolarisViewInput = {
|
|
18963
19196
|
view?: Maybe<Scalars['ID']>;
|