@forge/cli-shared 3.2.2-next.1 → 3.2.3-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 +15 -0
- package/out/graphql/graphql-types.d.ts +178 -37
- package/out/graphql/graphql-types.d.ts.map +1 -1
- package/out/graphql/graphql-types.js +17 -2
- package/package.json +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,20 @@
|
|
|
1
1
|
# @forge/cli-shared
|
|
2
2
|
|
|
3
|
+
## 3.2.3-next.0
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- Updated dependencies [34d81d4e]
|
|
8
|
+
- @forge/manifest@4.4.2-next.0
|
|
9
|
+
|
|
10
|
+
## 3.2.2
|
|
11
|
+
|
|
12
|
+
### Patch Changes
|
|
13
|
+
|
|
14
|
+
- 652e9f2: Bump Typescript and ESlint to latest
|
|
15
|
+
- Updated dependencies [138bb0a]
|
|
16
|
+
- @forge/manifest@4.4.1
|
|
17
|
+
|
|
3
18
|
## 3.2.2-next.1
|
|
4
19
|
|
|
5
20
|
### Patch Changes
|
|
@@ -521,6 +521,7 @@ export declare type AppInstallationByIndexConnection = {
|
|
|
521
521
|
edges?: Maybe<Array<Maybe<AppInstallationByIndexEdge>>>;
|
|
522
522
|
nodes?: Maybe<Array<Maybe<AppInstallation>>>;
|
|
523
523
|
pageInfo: AppInstallationPageInfo;
|
|
524
|
+
totalCount?: Maybe<Scalars['Int']>;
|
|
524
525
|
};
|
|
525
526
|
export declare type AppInstallationByIndexEdge = {
|
|
526
527
|
__typename?: 'AppInstallationByIndexEdge';
|
|
@@ -1431,7 +1432,9 @@ export declare enum BuiltinPolarisIdeaField {
|
|
|
1431
1432
|
LinkedIssues = "LINKED_ISSUES",
|
|
1432
1433
|
NumDataPoints = "NUM_DATA_POINTS",
|
|
1433
1434
|
AtlasGoal = "ATLAS_GOAL",
|
|
1434
|
-
AtlasProject = "ATLAS_PROJECT"
|
|
1435
|
+
AtlasProject = "ATLAS_PROJECT",
|
|
1436
|
+
AtlasProjectStatus = "ATLAS_PROJECT_STATUS",
|
|
1437
|
+
AtlasProjectTarget = "ATLAS_PROJECT_TARGET"
|
|
1435
1438
|
}
|
|
1436
1439
|
export declare type BurndownChart = {
|
|
1437
1440
|
__typename?: 'BurndownChart';
|
|
@@ -2010,6 +2013,8 @@ export declare type CompassCatalogQueryApi = {
|
|
|
2010
2013
|
__typename?: 'CompassCatalogQueryApi';
|
|
2011
2014
|
component?: Maybe<CompassComponentResult>;
|
|
2012
2015
|
componentByExternalAlias?: Maybe<CompassComponentResult>;
|
|
2016
|
+
componentType?: Maybe<CompassComponentTypeResult>;
|
|
2017
|
+
componentTypes?: Maybe<CompassComponentTypesQueryResult>;
|
|
2013
2018
|
fieldDefinitionsByComponentType?: Maybe<CompassFieldDefinitionsResult>;
|
|
2014
2019
|
searchComponents?: Maybe<CompassComponentQueryResult>;
|
|
2015
2020
|
searchComponentLabels?: Maybe<CompassComponentLabelsQueryResult>;
|
|
@@ -2034,6 +2039,14 @@ export declare type CompassCatalogQueryApiComponentByExternalAliasArgs = {
|
|
|
2034
2039
|
externalSource?: Maybe<Scalars['ID']>;
|
|
2035
2040
|
externalID: Scalars['ID'];
|
|
2036
2041
|
};
|
|
2042
|
+
export declare type CompassCatalogQueryApiComponentTypeArgs = {
|
|
2043
|
+
cloudId: Scalars['ID'];
|
|
2044
|
+
id: Scalars['ID'];
|
|
2045
|
+
};
|
|
2046
|
+
export declare type CompassCatalogQueryApiComponentTypesArgs = {
|
|
2047
|
+
cloudId: Scalars['ID'];
|
|
2048
|
+
query?: Maybe<CompassComponentTypeQueryInput>;
|
|
2049
|
+
};
|
|
2037
2050
|
export declare type CompassCatalogQueryApiFieldDefinitionsByComponentTypeArgs = {
|
|
2038
2051
|
cloudId: Scalars['ID'];
|
|
2039
2052
|
input: CompassComponentType;
|
|
@@ -2099,6 +2112,7 @@ export declare type CompassComponent = Node & {
|
|
|
2099
2112
|
__typename?: 'CompassComponent';
|
|
2100
2113
|
id: Scalars['ID'];
|
|
2101
2114
|
type: CompassComponentType;
|
|
2115
|
+
typeId: Scalars['ID'];
|
|
2102
2116
|
name: Scalars['String'];
|
|
2103
2117
|
description?: Maybe<Scalars['String']>;
|
|
2104
2118
|
ownerId?: Maybe<Scalars['ID']>;
|
|
@@ -2165,6 +2179,29 @@ export declare enum CompassComponentType {
|
|
|
2165
2179
|
Service = "SERVICE",
|
|
2166
2180
|
Other = "OTHER"
|
|
2167
2181
|
}
|
|
2182
|
+
export declare type CompassComponentTypeConnection = {
|
|
2183
|
+
__typename?: 'CompassComponentTypeConnection';
|
|
2184
|
+
edges?: Maybe<Array<CompassComponentTypeEdge>>;
|
|
2185
|
+
nodes?: Maybe<Array<CompassComponentTypeObject>>;
|
|
2186
|
+
totalCount?: Maybe<Scalars['Int']>;
|
|
2187
|
+
pageInfo: PageInfo;
|
|
2188
|
+
};
|
|
2189
|
+
export declare type CompassComponentTypeEdge = {
|
|
2190
|
+
__typename?: 'CompassComponentTypeEdge';
|
|
2191
|
+
cursor: Scalars['String'];
|
|
2192
|
+
node?: Maybe<CompassComponentTypeObject>;
|
|
2193
|
+
};
|
|
2194
|
+
export declare type CompassComponentTypeObject = {
|
|
2195
|
+
__typename?: 'CompassComponentTypeObject';
|
|
2196
|
+
id: Scalars['ID'];
|
|
2197
|
+
fieldDefinitions?: Maybe<CompassFieldDefinitionsResult>;
|
|
2198
|
+
};
|
|
2199
|
+
export declare type CompassComponentTypeQueryInput = {
|
|
2200
|
+
first?: Maybe<Scalars['Int']>;
|
|
2201
|
+
after?: Maybe<Scalars['String']>;
|
|
2202
|
+
};
|
|
2203
|
+
export declare type CompassComponentTypeResult = CompassComponentTypeObject | QueryError;
|
|
2204
|
+
export declare type CompassComponentTypesQueryResult = CompassComponentTypeConnection | QueryError;
|
|
2168
2205
|
export declare type CompassCreateAlertEventInput = {
|
|
2169
2206
|
displayName: Scalars['String'];
|
|
2170
2207
|
lastUpdated: Scalars['DateTime'];
|
|
@@ -2207,7 +2244,8 @@ export declare type CompassCreateCustomBooleanFieldDefinitionInput = {
|
|
|
2207
2244
|
cloudId: Scalars['ID'];
|
|
2208
2245
|
name: Scalars['String'];
|
|
2209
2246
|
description?: Maybe<Scalars['String']>;
|
|
2210
|
-
componentTypes
|
|
2247
|
+
componentTypes?: Maybe<Array<CompassComponentType>>;
|
|
2248
|
+
componentTypeIds?: Maybe<Array<Scalars['ID']>>;
|
|
2211
2249
|
};
|
|
2212
2250
|
export declare type CompassCreateCustomEventInput = {
|
|
2213
2251
|
displayName: Scalars['String'];
|
|
@@ -2233,13 +2271,15 @@ export declare type CompassCreateCustomNumberFieldDefinitionInput = {
|
|
|
2233
2271
|
cloudId: Scalars['ID'];
|
|
2234
2272
|
name: Scalars['String'];
|
|
2235
2273
|
description?: Maybe<Scalars['String']>;
|
|
2236
|
-
componentTypes
|
|
2274
|
+
componentTypes?: Maybe<Array<CompassComponentType>>;
|
|
2275
|
+
componentTypeIds?: Maybe<Array<Scalars['ID']>>;
|
|
2237
2276
|
};
|
|
2238
2277
|
export declare type CompassCreateCustomTextFieldDefinitionInput = {
|
|
2239
2278
|
cloudId: Scalars['ID'];
|
|
2240
2279
|
name: Scalars['String'];
|
|
2241
2280
|
description?: Maybe<Scalars['String']>;
|
|
2242
|
-
componentTypes
|
|
2281
|
+
componentTypes?: Maybe<Array<CompassComponentType>>;
|
|
2282
|
+
componentTypeIds?: Maybe<Array<Scalars['ID']>>;
|
|
2243
2283
|
};
|
|
2244
2284
|
export declare type CompassCreateDeploymentEventInput = {
|
|
2245
2285
|
updateSequenceNumber: Scalars['Long'];
|
|
@@ -2401,6 +2441,7 @@ export declare type CompassCustomBooleanFieldDefinition = CompassCustomFieldDefi
|
|
|
2401
2441
|
name?: Maybe<Scalars['String']>;
|
|
2402
2442
|
description?: Maybe<Scalars['String']>;
|
|
2403
2443
|
componentTypes?: Maybe<Array<CompassComponentType>>;
|
|
2444
|
+
componentTypeIds?: Maybe<Array<Scalars['ID']>>;
|
|
2404
2445
|
};
|
|
2405
2446
|
export declare type CompassCustomBooleanFieldInput = {
|
|
2406
2447
|
definitionId: Scalars['ID'];
|
|
@@ -2438,6 +2479,7 @@ export declare type CompassCustomFieldDefinition = {
|
|
|
2438
2479
|
name?: Maybe<Scalars['String']>;
|
|
2439
2480
|
description?: Maybe<Scalars['String']>;
|
|
2440
2481
|
componentTypes?: Maybe<Array<CompassComponentType>>;
|
|
2482
|
+
componentTypeIds?: Maybe<Array<Scalars['ID']>>;
|
|
2441
2483
|
};
|
|
2442
2484
|
export declare type CompassCustomFieldDefinitionEdge = {
|
|
2443
2485
|
__typename?: 'CompassCustomFieldDefinitionEdge';
|
|
@@ -2453,6 +2495,7 @@ export declare type CompassCustomFieldDefinitionsConnection = {
|
|
|
2453
2495
|
export declare type CompassCustomFieldDefinitionsQuery = {
|
|
2454
2496
|
cloudId: Scalars['ID'];
|
|
2455
2497
|
componentTypes?: Maybe<Array<CompassComponentType>>;
|
|
2498
|
+
componentTypeIds?: Maybe<Array<Scalars['ID']>>;
|
|
2456
2499
|
};
|
|
2457
2500
|
export declare type CompassCustomFieldDefinitionsResult = CompassCustomFieldDefinitionsConnection | QueryError;
|
|
2458
2501
|
export declare type CompassCustomFieldInput = {
|
|
@@ -2479,6 +2522,7 @@ export declare type CompassCustomNumberFieldDefinition = CompassCustomFieldDefin
|
|
|
2479
2522
|
name?: Maybe<Scalars['String']>;
|
|
2480
2523
|
description?: Maybe<Scalars['String']>;
|
|
2481
2524
|
componentTypes?: Maybe<Array<CompassComponentType>>;
|
|
2525
|
+
componentTypeIds?: Maybe<Array<Scalars['ID']>>;
|
|
2482
2526
|
};
|
|
2483
2527
|
export declare type CompassCustomNumberFieldInput = {
|
|
2484
2528
|
definitionId: Scalars['ID'];
|
|
@@ -2495,6 +2539,7 @@ export declare type CompassCustomTextFieldDefinition = CompassCustomFieldDefinit
|
|
|
2495
2539
|
name?: Maybe<Scalars['String']>;
|
|
2496
2540
|
description?: Maybe<Scalars['String']>;
|
|
2497
2541
|
componentTypes?: Maybe<Array<CompassComponentType>>;
|
|
2542
|
+
componentTypeIds?: Maybe<Array<Scalars['ID']>>;
|
|
2498
2543
|
};
|
|
2499
2544
|
export declare type CompassCustomTextFieldInput = {
|
|
2500
2545
|
definitionId: Scalars['ID'];
|
|
@@ -3133,6 +3178,7 @@ export declare type CompassScorecard = Node & {
|
|
|
3133
3178
|
criterias?: Maybe<Array<CompassScorecardCriteria>>;
|
|
3134
3179
|
owner?: Maybe<User>;
|
|
3135
3180
|
componentType: CompassComponentType;
|
|
3181
|
+
componentTypeId: Scalars['ID'];
|
|
3136
3182
|
importance: CompassScorecardImportance;
|
|
3137
3183
|
scorecardScore?: Maybe<CompassScorecardScore>;
|
|
3138
3184
|
appliedToComponents?: Maybe<CompassScorecardAppliedToComponentsQueryResult>;
|
|
@@ -3351,6 +3397,7 @@ export declare type CompassTeamData = {
|
|
|
3351
3397
|
teamId?: Maybe<Scalars['ID']>;
|
|
3352
3398
|
team?: Maybe<Team>;
|
|
3353
3399
|
labels?: Maybe<Array<CompassTeamLabel>>;
|
|
3400
|
+
currentCheckin?: Maybe<CompassTeamCheckin>;
|
|
3354
3401
|
};
|
|
3355
3402
|
export declare type CompassTeamDataInput = {
|
|
3356
3403
|
cloudId: Scalars['ID'];
|
|
@@ -3380,6 +3427,7 @@ export declare type CompassUpdateCustomBooleanFieldDefinitionInput = {
|
|
|
3380
3427
|
name?: Maybe<Scalars['String']>;
|
|
3381
3428
|
description?: Maybe<Scalars['String']>;
|
|
3382
3429
|
componentTypes?: Maybe<Array<CompassComponentType>>;
|
|
3430
|
+
componentTypeIds?: Maybe<Array<Scalars['ID']>>;
|
|
3383
3431
|
};
|
|
3384
3432
|
export declare type CompassUpdateCustomFieldDefinitionInput = {
|
|
3385
3433
|
booleanFieldDefinition?: Maybe<CompassUpdateCustomBooleanFieldDefinitionInput>;
|
|
@@ -3397,12 +3445,14 @@ export declare type CompassUpdateCustomNumberFieldDefinitionInput = {
|
|
|
3397
3445
|
name?: Maybe<Scalars['String']>;
|
|
3398
3446
|
description?: Maybe<Scalars['String']>;
|
|
3399
3447
|
componentTypes?: Maybe<Array<CompassComponentType>>;
|
|
3448
|
+
componentTypeIds?: Maybe<Array<Scalars['ID']>>;
|
|
3400
3449
|
};
|
|
3401
3450
|
export declare type CompassUpdateCustomTextFieldDefinitionInput = {
|
|
3402
3451
|
id: Scalars['ID'];
|
|
3403
3452
|
name?: Maybe<Scalars['String']>;
|
|
3404
3453
|
description?: Maybe<Scalars['String']>;
|
|
3405
3454
|
componentTypes?: Maybe<Array<CompassComponentType>>;
|
|
3455
|
+
componentTypeIds?: Maybe<Array<Scalars['ID']>>;
|
|
3406
3456
|
};
|
|
3407
3457
|
export declare type CompassUpdateHasCustomBooleanFieldScorecardCriteriaInput = {
|
|
3408
3458
|
id: Scalars['ID'];
|
|
@@ -4566,7 +4616,6 @@ export declare type ContentPlatformDateRangeFilter = {
|
|
|
4566
4616
|
};
|
|
4567
4617
|
export declare type ContentPlatformField = {
|
|
4568
4618
|
field: ContentPlatformFieldNames;
|
|
4569
|
-
weight?: Maybe<Scalars['Float']>;
|
|
4570
4619
|
};
|
|
4571
4620
|
export declare enum ContentPlatformFieldNames {
|
|
4572
4621
|
Title = "TITLE",
|
|
@@ -4575,7 +4624,6 @@ export declare enum ContentPlatformFieldNames {
|
|
|
4575
4624
|
export declare type ContentPlatformFieldType = {
|
|
4576
4625
|
__typename?: 'ContentPlatformFieldType';
|
|
4577
4626
|
field: ContentPlatformFieldNames;
|
|
4578
|
-
weight?: Maybe<Scalars['Float']>;
|
|
4579
4627
|
};
|
|
4580
4628
|
export declare type ContentPlatformImageAsset = {
|
|
4581
4629
|
__typename?: 'ContentPlatformImageAsset';
|
|
@@ -4602,10 +4650,6 @@ export declare type ContentPlatformImageComponent = {
|
|
|
4602
4650
|
image: ContentPlatformImageAsset;
|
|
4603
4651
|
contextReference: Array<ContentPlatformAnyContext>;
|
|
4604
4652
|
};
|
|
4605
|
-
export declare type ContentPlatformNestSearchOptions = {
|
|
4606
|
-
queries: Array<ContentPlatformSearchQuery>;
|
|
4607
|
-
operator?: Maybe<ContentPlatformBooleanOperators>;
|
|
4608
|
-
};
|
|
4609
4653
|
export declare enum ContentPlatformOperators {
|
|
4610
4654
|
Any = "ANY",
|
|
4611
4655
|
All = "ALL"
|
|
@@ -4653,7 +4697,6 @@ export declare type ContentPlatformReleaseNoteFilterOptions = {
|
|
|
4653
4697
|
releaseNoteFlags?: Maybe<Array<Scalars['String']>>;
|
|
4654
4698
|
productFeatureFlags?: Maybe<Scalars['JSON']>;
|
|
4655
4699
|
releaseNoteFlagOffValues?: Maybe<Array<Scalars['String']>>;
|
|
4656
|
-
publishStatus?: Maybe<Array<Scalars['String']>>;
|
|
4657
4700
|
updatedAt?: Maybe<ContentPlatformDateRangeFilter>;
|
|
4658
4701
|
};
|
|
4659
4702
|
export declare type ContentPlatformReleaseNotesConnection = {
|
|
@@ -4666,6 +4709,10 @@ export declare type ContentPlatformReleaseNotesEdge = {
|
|
|
4666
4709
|
node: ContentPlatformReleaseNote;
|
|
4667
4710
|
cursor: Scalars['String'];
|
|
4668
4711
|
};
|
|
4712
|
+
export declare type ContentPlatformSearchOptions = {
|
|
4713
|
+
queries: Array<ContentPlatformSearchQuery>;
|
|
4714
|
+
operator?: Maybe<ContentPlatformBooleanOperators>;
|
|
4715
|
+
};
|
|
4669
4716
|
export declare type ContentPlatformSearchQuery = {
|
|
4670
4717
|
searchType: ContentPlatformSearchTypes;
|
|
4671
4718
|
terms: Array<Scalars['String']>;
|
|
@@ -4806,7 +4853,8 @@ export declare type CreateCompassComponentExternalAliasPayload = Payload & {
|
|
|
4806
4853
|
export declare type CreateCompassComponentInput = {
|
|
4807
4854
|
name: Scalars['String'];
|
|
4808
4855
|
description?: Maybe<Scalars['String']>;
|
|
4809
|
-
type
|
|
4856
|
+
type?: Maybe<CompassComponentType>;
|
|
4857
|
+
typeId?: Maybe<Scalars['ID']>;
|
|
4810
4858
|
ownerId?: Maybe<Scalars['ID']>;
|
|
4811
4859
|
fields?: Maybe<Array<CreateCompassFieldInput>>;
|
|
4812
4860
|
customFields?: Maybe<Array<CompassCustomFieldInput>>;
|
|
@@ -4891,7 +4939,8 @@ export declare type CreateCompassScorecardInput = {
|
|
|
4891
4939
|
name: Scalars['String'];
|
|
4892
4940
|
description?: Maybe<Scalars['String']>;
|
|
4893
4941
|
ownerId?: Maybe<Scalars['ID']>;
|
|
4894
|
-
componentType
|
|
4942
|
+
componentType?: Maybe<CompassComponentType>;
|
|
4943
|
+
componentTypeId?: Maybe<Scalars['ID']>;
|
|
4895
4944
|
importance: CompassScorecardImportance;
|
|
4896
4945
|
criterias?: Maybe<Array<CreateCompassScorecardCriteriaInput>>;
|
|
4897
4946
|
componentLabelNames?: Maybe<Array<Scalars['String']>>;
|
|
@@ -8639,6 +8688,7 @@ export declare type JiraCreateReleaseNoteConfluencePageInput = {
|
|
|
8639
8688
|
parentPageId?: Maybe<Scalars['ID']>;
|
|
8640
8689
|
issueFieldIds: Array<Scalars['ID']>;
|
|
8641
8690
|
issueTypeIds: Array<Scalars['ID']>;
|
|
8691
|
+
excludeIssueKey?: Maybe<Scalars['Boolean']>;
|
|
8642
8692
|
};
|
|
8643
8693
|
export declare type JiraCreateReleaseNoteConfluencePagePayload = Payload & {
|
|
8644
8694
|
__typename?: 'JiraCreateReleaseNoteConfluencePagePayload';
|
|
@@ -11798,6 +11848,7 @@ export declare type JiraQueryVersionsForProjectArgs = {
|
|
|
11798
11848
|
last?: Maybe<Scalars['Int']>;
|
|
11799
11849
|
before?: Maybe<Scalars['String']>;
|
|
11800
11850
|
filter?: Maybe<Array<Maybe<JiraVersionStatus>>>;
|
|
11851
|
+
searchString?: Maybe<Scalars['String']>;
|
|
11801
11852
|
};
|
|
11802
11853
|
export declare type JiraQueryVersionDetailPageArgs = {
|
|
11803
11854
|
versionId: Scalars['ID'];
|
|
@@ -14053,6 +14104,7 @@ export declare type MercuryCreateStrategyInput = {
|
|
|
14053
14104
|
};
|
|
14054
14105
|
export declare type MercuryCreateTeamInput = {
|
|
14055
14106
|
name: Scalars['String'];
|
|
14107
|
+
teamsServiceTeamId: Scalars['ID'];
|
|
14056
14108
|
active?: Maybe<Scalars['Boolean']>;
|
|
14057
14109
|
};
|
|
14058
14110
|
export declare type MercuryDeleteJobFunctionInput = {
|
|
@@ -14064,6 +14116,23 @@ export declare type MercuryDeleteStrategyInput = {
|
|
|
14064
14116
|
export declare type MercuryDeleteTeamInput = {
|
|
14065
14117
|
teamId: Scalars['ID'];
|
|
14066
14118
|
};
|
|
14119
|
+
export declare type MercuryInitiative = {
|
|
14120
|
+
__typename?: 'MercuryInitiative';
|
|
14121
|
+
name?: Maybe<Scalars['String']>;
|
|
14122
|
+
key?: Maybe<Scalars['String']>;
|
|
14123
|
+
definition?: Maybe<Scalars['String']>;
|
|
14124
|
+
};
|
|
14125
|
+
export declare type MercuryInitiativeConnection = {
|
|
14126
|
+
__typename?: 'MercuryInitiativeConnection';
|
|
14127
|
+
edges?: Maybe<Array<Maybe<MercuryInitiativeEdge>>>;
|
|
14128
|
+
nodes?: Maybe<Array<Maybe<MercuryInitiative>>>;
|
|
14129
|
+
pageInfo: PageInfo;
|
|
14130
|
+
};
|
|
14131
|
+
export declare type MercuryInitiativeEdge = {
|
|
14132
|
+
__typename?: 'MercuryInitiativeEdge';
|
|
14133
|
+
cursor: Scalars['String'];
|
|
14134
|
+
node?: Maybe<MercuryInitiative>;
|
|
14135
|
+
};
|
|
14067
14136
|
export declare type MercuryJobFunction = Node & {
|
|
14068
14137
|
__typename?: 'MercuryJobFunction';
|
|
14069
14138
|
id: Scalars['ID'];
|
|
@@ -14148,6 +14217,8 @@ export declare type MercuryQueryApi = {
|
|
|
14148
14217
|
jobFunctions?: Maybe<MercuryJobFunctionConnection>;
|
|
14149
14218
|
teams?: Maybe<MercuryTeamConnection>;
|
|
14150
14219
|
team?: Maybe<MercuryTeam>;
|
|
14220
|
+
initiative?: Maybe<MercuryInitiative>;
|
|
14221
|
+
initiatives?: Maybe<MercuryInitiativeConnection>;
|
|
14151
14222
|
};
|
|
14152
14223
|
export declare type MercuryQueryApiStrategiesArgs = {
|
|
14153
14224
|
first?: Maybe<Scalars['Int']>;
|
|
@@ -14170,6 +14241,13 @@ export declare type MercuryQueryApiTeamsArgs = {
|
|
|
14170
14241
|
export declare type MercuryQueryApiTeamArgs = {
|
|
14171
14242
|
id: Scalars['ID'];
|
|
14172
14243
|
};
|
|
14244
|
+
export declare type MercuryQueryApiInitiativeArgs = {
|
|
14245
|
+
key: Scalars['String'];
|
|
14246
|
+
};
|
|
14247
|
+
export declare type MercuryQueryApiInitiativesArgs = {
|
|
14248
|
+
first?: Maybe<Scalars['Int']>;
|
|
14249
|
+
after?: Maybe<Scalars['String']>;
|
|
14250
|
+
};
|
|
14173
14251
|
export declare type MercuryRemoveGoalsFromStrategyInput = {
|
|
14174
14252
|
strategyId: Scalars['ID'];
|
|
14175
14253
|
goals?: Maybe<Array<MercuryLinkGoalInput>>;
|
|
@@ -14213,6 +14291,7 @@ export declare type MercuryStrategyMutationPayload = Payload & {
|
|
|
14213
14291
|
export declare type MercuryTeam = Node & {
|
|
14214
14292
|
__typename?: 'MercuryTeam';
|
|
14215
14293
|
id: Scalars['ID'];
|
|
14294
|
+
teamsServiceTeamId: Scalars['ID'];
|
|
14216
14295
|
name: Scalars['String'];
|
|
14217
14296
|
active?: Maybe<Scalars['Boolean']>;
|
|
14218
14297
|
};
|
|
@@ -14265,8 +14344,8 @@ export declare type MercuryUpdateStrategyInput = {
|
|
|
14265
14344
|
};
|
|
14266
14345
|
export declare type MercuryUpdateTeamInput = {
|
|
14267
14346
|
teamId: Scalars['ID'];
|
|
14268
|
-
name
|
|
14269
|
-
active
|
|
14347
|
+
name: Scalars['String'];
|
|
14348
|
+
active: Scalars['Boolean'];
|
|
14270
14349
|
};
|
|
14271
14350
|
export declare type MigrationKeys = {
|
|
14272
14351
|
__typename?: 'MigrationKeys';
|
|
@@ -14386,6 +14465,7 @@ export declare type Mutation = {
|
|
|
14386
14465
|
createAppTunnels?: Maybe<CreateAppTunnelResponse>;
|
|
14387
14466
|
deleteAppTunnels?: Maybe<GenericMutationResponse>;
|
|
14388
14467
|
invokeExtension?: Maybe<InvokeExtensionResponse>;
|
|
14468
|
+
rateLimitTest?: Maybe<GenericMutationResponse>;
|
|
14389
14469
|
invokeAuxEffects?: Maybe<InvokeAuxEffectsResponse>;
|
|
14390
14470
|
userAuthTokenForExtension?: Maybe<UserAuthTokenForExtensionResponse>;
|
|
14391
14471
|
createWebTriggerUrl?: Maybe<CreateWebTriggerUrlResponse>;
|
|
@@ -14424,6 +14504,7 @@ export declare type Mutation = {
|
|
|
14424
14504
|
setIssueMediaVisibility?: Maybe<SetIssueMediaVisibilityOutput>;
|
|
14425
14505
|
toggleBoardFeature?: Maybe<ToggleBoardFeatureOutput>;
|
|
14426
14506
|
setBoardEstimationType?: Maybe<ToggleBoardFeatureOutput>;
|
|
14507
|
+
planModeCardMove?: Maybe<MoveCardOutput>;
|
|
14427
14508
|
createApp?: Maybe<CreateAppResponse>;
|
|
14428
14509
|
updateAppDetails?: Maybe<UpdateAppDetailsResponse>;
|
|
14429
14510
|
deleteApp?: Maybe<DeleteAppResponse>;
|
|
@@ -14720,6 +14801,9 @@ export declare type MutationDeleteAppTunnelsArgs = {
|
|
|
14720
14801
|
export declare type MutationInvokeExtensionArgs = {
|
|
14721
14802
|
input: InvokeExtensionInput;
|
|
14722
14803
|
};
|
|
14804
|
+
export declare type MutationRateLimitTestArgs = {
|
|
14805
|
+
input: InvokeExtensionInput;
|
|
14806
|
+
};
|
|
14723
14807
|
export declare type MutationInvokeAuxEffectsArgs = {
|
|
14724
14808
|
input: InvokeAuxEffectsInput;
|
|
14725
14809
|
};
|
|
@@ -14820,6 +14904,9 @@ export declare type MutationToggleBoardFeatureArgs = {
|
|
|
14820
14904
|
export declare type MutationSetBoardEstimationTypeArgs = {
|
|
14821
14905
|
input?: Maybe<SetBoardEstimationTypeInput>;
|
|
14822
14906
|
};
|
|
14907
|
+
export declare type MutationPlanModeCardMoveArgs = {
|
|
14908
|
+
input?: Maybe<PlanModeCardMoveInput>;
|
|
14909
|
+
};
|
|
14823
14910
|
export declare type MutationCreateAppArgs = {
|
|
14824
14911
|
input: CreateAppInput;
|
|
14825
14912
|
};
|
|
@@ -15164,6 +15251,19 @@ export declare type PermissionToConsentByOauthId = {
|
|
|
15164
15251
|
isAllowed: Scalars['Boolean'];
|
|
15165
15252
|
isSiteAdmin: Scalars['Boolean'];
|
|
15166
15253
|
};
|
|
15254
|
+
export declare type PlanModeCardMoveInput = {
|
|
15255
|
+
cardIds: Array<Scalars['ID']>;
|
|
15256
|
+
boardId: Scalars['ID'];
|
|
15257
|
+
destination: PlanModeDestination;
|
|
15258
|
+
rankBeforeCardId?: Maybe<Scalars['Long']>;
|
|
15259
|
+
rankAfterCardId?: Maybe<Scalars['Long']>;
|
|
15260
|
+
sprintId?: Maybe<Scalars['ID']>;
|
|
15261
|
+
};
|
|
15262
|
+
export declare enum PlanModeDestination {
|
|
15263
|
+
Board = "BOARD",
|
|
15264
|
+
Backlog = "BACKLOG",
|
|
15265
|
+
Sprint = "SPRINT"
|
|
15266
|
+
}
|
|
15167
15267
|
export declare type PolarisAnonymousVisitorHash = PolarisAnonymousVisitorViewHash;
|
|
15168
15268
|
export declare type PolarisAnonymousVisitorViewHash = {
|
|
15169
15269
|
__typename?: 'PolarisAnonymousVisitorViewHash';
|
|
@@ -15225,6 +15325,7 @@ export declare enum PolarisFieldType {
|
|
|
15225
15325
|
PolarisIdeaLabelsField = "PolarisIdeaLabelsField",
|
|
15226
15326
|
PolarisIdeaNumberField = "PolarisIdeaNumberField",
|
|
15227
15327
|
PolarisIdeaExternalReferenceField = "PolarisIdeaExternalReferenceField",
|
|
15328
|
+
PolarisIdeaExternalReferencePropertyField = "PolarisIdeaExternalReferencePropertyField",
|
|
15228
15329
|
PolarisIdeaIntervalField = "PolarisIdeaIntervalField",
|
|
15229
15330
|
PolarisIdeaPlayField = "PolarisIdeaPlayField"
|
|
15230
15331
|
}
|
|
@@ -15382,6 +15483,25 @@ export declare type PolarisIdeaExternalReferenceField = PolarisIdeaField & {
|
|
|
15382
15483
|
builtin?: Maybe<BuiltinPolarisIdeaField>;
|
|
15383
15484
|
configuration?: Maybe<Scalars['JSON']>;
|
|
15384
15485
|
};
|
|
15486
|
+
export declare type PolarisIdeaExternalReferencePropertyField = PolarisIdeaField & {
|
|
15487
|
+
__typename?: 'PolarisIdeaExternalReferencePropertyField';
|
|
15488
|
+
id: Scalars['ID'];
|
|
15489
|
+
fieldId?: Maybe<Scalars['Int']>;
|
|
15490
|
+
fieldName?: Maybe<Scalars['String']>;
|
|
15491
|
+
label: Scalars['String'];
|
|
15492
|
+
editable: Scalars['Boolean'];
|
|
15493
|
+
sortable: Scalars['Boolean'];
|
|
15494
|
+
groupable: Scalars['Boolean'];
|
|
15495
|
+
linearizable: Scalars['Boolean'];
|
|
15496
|
+
defaultSortOrder?: Maybe<PolarisSortOrder>;
|
|
15497
|
+
jiraFieldKey?: Maybe<Scalars['String']>;
|
|
15498
|
+
decorations?: Maybe<Array<PolarisDecoration>>;
|
|
15499
|
+
formula?: Maybe<Scalars['JSON']>;
|
|
15500
|
+
presentation?: Maybe<PolarisPresentation>;
|
|
15501
|
+
description?: Maybe<Scalars['String']>;
|
|
15502
|
+
emoji?: Maybe<Scalars['String']>;
|
|
15503
|
+
builtin?: Maybe<BuiltinPolarisIdeaField>;
|
|
15504
|
+
};
|
|
15385
15505
|
export declare type PolarisIdeaField = {
|
|
15386
15506
|
id: Scalars['ID'];
|
|
15387
15507
|
jiraFieldKey?: Maybe<Scalars['String']>;
|
|
@@ -16210,6 +16330,8 @@ export declare type Query = {
|
|
|
16210
16330
|
trello?: Maybe<TrelloQueryApi>;
|
|
16211
16331
|
customerSupport?: Maybe<SupportRequestCatalogQueryApi>;
|
|
16212
16332
|
jiraProjectAndDevOpsToolRelationship?: Maybe<JiraProjectAndDevOpsToolRelationship>;
|
|
16333
|
+
devOpsToolRelationshipsForJiraProject?: Maybe<JiraProjectAndDevOpsToolRelationshipConnection>;
|
|
16334
|
+
jiraProjectRelationshipsForDevOpsTool?: Maybe<JiraProjectAndDevOpsToolRelationshipConnection>;
|
|
16213
16335
|
bitbucket?: Maybe<BitbucketQuery>;
|
|
16214
16336
|
opsgenie?: Maybe<OpsgenieQuery>;
|
|
16215
16337
|
releaseNotes: ContentPlatformReleaseNotesConnection;
|
|
@@ -16319,10 +16441,23 @@ export declare type Query = {
|
|
|
16319
16441
|
export declare type QueryJiraProjectAndDevOpsToolRelationshipArgs = {
|
|
16320
16442
|
id: Scalars['ID'];
|
|
16321
16443
|
};
|
|
16444
|
+
export declare type QueryDevOpsToolRelationshipsForJiraProjectArgs = {
|
|
16445
|
+
id: Scalars['ID'];
|
|
16446
|
+
limit?: Maybe<Scalars['Int']>;
|
|
16447
|
+
after?: Maybe<Scalars['String']>;
|
|
16448
|
+
filter?: Maybe<JiraProjectAndDevOpsToolRelationshipFilter>;
|
|
16449
|
+
};
|
|
16450
|
+
export declare type QueryJiraProjectRelationshipsForDevOpsToolArgs = {
|
|
16451
|
+
id: Scalars['ID'];
|
|
16452
|
+
jiraProjectId?: Maybe<Scalars['ID']>;
|
|
16453
|
+
first?: Maybe<Scalars['Int']>;
|
|
16454
|
+
after?: Maybe<Scalars['String']>;
|
|
16455
|
+
filter?: Maybe<JiraProjectAndDevOpsToolRelationshipFilter>;
|
|
16456
|
+
};
|
|
16322
16457
|
export declare type QueryReleaseNotesArgs = {
|
|
16323
16458
|
after?: Maybe<Scalars['String']>;
|
|
16324
16459
|
first?: Maybe<Scalars['Int']>;
|
|
16325
|
-
search?: Maybe<
|
|
16460
|
+
search?: Maybe<ContentPlatformSearchOptions>;
|
|
16326
16461
|
filter?: Maybe<ContentPlatformReleaseNoteFilterOptions>;
|
|
16327
16462
|
filterByAnnouncementPlan?: Maybe<Scalars['Boolean']>;
|
|
16328
16463
|
productFeatureFlags?: Maybe<Scalars['JSON']>;
|
|
@@ -16868,21 +17003,6 @@ export declare type RoadmapExternalConfiguration = {
|
|
|
16868
17003
|
epicNameField?: Maybe<Scalars['ID']>;
|
|
16869
17004
|
sprintField?: Maybe<Scalars['ID']>;
|
|
16870
17005
|
};
|
|
16871
|
-
export declare type RoadmapFeatureToggleInput = {
|
|
16872
|
-
sourceARI: Scalars['ID'];
|
|
16873
|
-
enabled: Scalars['Boolean'];
|
|
16874
|
-
};
|
|
16875
|
-
export declare type RoadmapFeatureToggleOutput = {
|
|
16876
|
-
__typename?: 'RoadmapFeatureToggleOutput';
|
|
16877
|
-
enabled: Scalars['Boolean'];
|
|
16878
|
-
isCrossProject: Scalars['Boolean'];
|
|
16879
|
-
};
|
|
16880
|
-
export declare type RoadmapFeatureTogglePayload = Payload & {
|
|
16881
|
-
__typename?: 'RoadmapFeatureTogglePayload';
|
|
16882
|
-
success: Scalars['Boolean'];
|
|
16883
|
-
errors?: Maybe<Array<MutationError>>;
|
|
16884
|
-
output?: Maybe<RoadmapFeatureToggleOutput>;
|
|
16885
|
-
};
|
|
16886
17006
|
export declare type RoadmapFilterConfiguration = {
|
|
16887
17007
|
__typename?: 'RoadmapFilterConfiguration';
|
|
16888
17008
|
customFilters?: Maybe<Array<RoadmapCustomFilter>>;
|
|
@@ -17200,7 +17320,6 @@ export declare type RoadmapViewSettings = {
|
|
|
17200
17320
|
};
|
|
17201
17321
|
export declare type RoadmapsMutation = {
|
|
17202
17322
|
__typename?: 'RoadmapsMutation';
|
|
17203
|
-
toggleRoadmapFeature?: Maybe<RoadmapFeatureTogglePayload>;
|
|
17204
17323
|
resolveRoadmapHealthcheck?: Maybe<RoadmapResolveHealthcheckPayload>;
|
|
17205
17324
|
updateRoadmapSettings?: Maybe<RoadmapUpdateSettingsPayload>;
|
|
17206
17325
|
addRoadmapItem?: Maybe<RoadmapAddItemPayload>;
|
|
@@ -17209,9 +17328,6 @@ export declare type RoadmapsMutation = {
|
|
|
17209
17328
|
addRoadmapDependency?: Maybe<RoadmapToggleDependencyPayload>;
|
|
17210
17329
|
removeRoadmapDependency?: Maybe<RoadmapToggleDependencyPayload>;
|
|
17211
17330
|
};
|
|
17212
|
-
export declare type RoadmapsMutationToggleRoadmapFeatureArgs = {
|
|
17213
|
-
input: RoadmapFeatureToggleInput;
|
|
17214
|
-
};
|
|
17215
17331
|
export declare type RoadmapsMutationResolveRoadmapHealthcheckArgs = {
|
|
17216
17332
|
sourceARI: Scalars['ID'];
|
|
17217
17333
|
input: RoadmapResolveHealthcheckInput;
|
|
@@ -17605,7 +17721,9 @@ export declare enum Scope {
|
|
|
17605
17721
|
ReadContainer = "READ_CONTAINER",
|
|
17606
17722
|
WriteContainer = "WRITE_CONTAINER",
|
|
17607
17723
|
MigrateConfluence = "MIGRATE_CONFLUENCE",
|
|
17608
|
-
ReadAvocadoEntity = "READ_AVOCADO_ENTITY"
|
|
17724
|
+
ReadAvocadoEntity = "READ_AVOCADO_ENTITY",
|
|
17725
|
+
ReadTeam = "READ_TEAM",
|
|
17726
|
+
ReadTeamMembers = "READ_TEAM_MEMBERS"
|
|
17609
17727
|
}
|
|
17610
17728
|
export declare type ScopeSprintIssue = {
|
|
17611
17729
|
__typename?: 'ScopeSprintIssue';
|
|
@@ -17920,6 +18038,7 @@ export declare type SetSwimlaneStrategyResponse = MutationResponse & {
|
|
|
17920
18038
|
export declare enum ShepherdActionType {
|
|
17921
18039
|
Create = "CREATE",
|
|
17922
18040
|
Delete = "DELETE",
|
|
18041
|
+
Export = "EXPORT",
|
|
17923
18042
|
Read = "READ",
|
|
17924
18043
|
Update = "UPDATE"
|
|
17925
18044
|
}
|
|
@@ -17980,6 +18099,8 @@ export declare enum ShepherdAlertTemplateType {
|
|
|
17980
18099
|
AddedOrgadmin = "ADDED_ORGADMIN",
|
|
17981
18100
|
AdminPasswordReset = "ADMIN_PASSWORD_RESET",
|
|
17982
18101
|
ConfluencePageCrawling = "CONFLUENCE_PAGE_CRAWLING",
|
|
18102
|
+
ConfluencePageExports = "CONFLUENCE_PAGE_EXPORTS",
|
|
18103
|
+
ConfluenceSpaceExports = "CONFLUENCE_SPACE_EXPORTS",
|
|
17983
18104
|
CreatedAuthPolicy = "CREATED_AUTH_POLICY",
|
|
17984
18105
|
CreatedPolicy = "CREATED_POLICY",
|
|
17985
18106
|
CreatedSamlConfig = "CREATED_SAML_CONFIG",
|
|
@@ -17994,6 +18115,7 @@ export declare enum ShepherdAlertTemplateType {
|
|
|
17994
18115
|
ExportedOrgeventscsv = "EXPORTED_ORGEVENTSCSV",
|
|
17995
18116
|
InitiatedGsyncConnection = "INITIATED_GSYNC_CONNECTION",
|
|
17996
18117
|
JiraIssueCrawling = "JIRA_ISSUE_CRAWLING",
|
|
18118
|
+
OrgLoggedInAsUser = "ORG_LOGGED_IN_AS_USER",
|
|
17997
18119
|
RotateScimDirectoryToken = "ROTATE_SCIM_DIRECTORY_TOKEN",
|
|
17998
18120
|
TokenCreated = "TOKEN_CREATED",
|
|
17999
18121
|
UpdatedAuthPolicy = "UPDATED_AUTH_POLICY",
|
|
@@ -18193,6 +18315,9 @@ export declare type ShepherdQueryShepherdOrganizationArgs = {
|
|
|
18193
18315
|
export declare type ShepherdQueryShepherdSubscriptionsArgs = {
|
|
18194
18316
|
orgId: Scalars['ID'];
|
|
18195
18317
|
};
|
|
18318
|
+
export declare type ShepherdQueryShepherdUserArgs = {
|
|
18319
|
+
id?: Maybe<Scalars['ID']>;
|
|
18320
|
+
};
|
|
18196
18321
|
export declare enum ShepherdQueryErrorType {
|
|
18197
18322
|
NoProductAccess = "NO_PRODUCT_ACCESS",
|
|
18198
18323
|
Unauthorized = "UNAUTHORIZED"
|
|
@@ -19480,6 +19605,20 @@ export declare type TransitionFilter = {
|
|
|
19480
19605
|
export declare type TrelloQueryApi = {
|
|
19481
19606
|
__typename?: 'TrelloQueryApi';
|
|
19482
19607
|
echo: Scalars['String'];
|
|
19608
|
+
templateCategories: Array<TrelloTemplateGalleryCategory>;
|
|
19609
|
+
templateLanguages: Array<TrelloTemplateGalleryLanguage>;
|
|
19610
|
+
};
|
|
19611
|
+
export declare type TrelloTemplateGalleryCategory = {
|
|
19612
|
+
__typename?: 'TrelloTemplateGalleryCategory';
|
|
19613
|
+
key: Scalars['String'];
|
|
19614
|
+
};
|
|
19615
|
+
export declare type TrelloTemplateGalleryLanguage = {
|
|
19616
|
+
__typename?: 'TrelloTemplateGalleryLanguage';
|
|
19617
|
+
description: Scalars['String'];
|
|
19618
|
+
enabled: Scalars['Boolean'];
|
|
19619
|
+
language: Scalars['String'];
|
|
19620
|
+
locale: Scalars['String'];
|
|
19621
|
+
localizedDescription: Scalars['String'];
|
|
19483
19622
|
};
|
|
19484
19623
|
export declare type TunnelDefinitionsInput = {
|
|
19485
19624
|
faasTunnelUrl?: Maybe<Scalars['URL']>;
|
|
@@ -19589,7 +19728,8 @@ export declare type UpdateCompassComponentPayload = Payload & {
|
|
|
19589
19728
|
};
|
|
19590
19729
|
export declare type UpdateCompassComponentTypeInput = {
|
|
19591
19730
|
id: Scalars['ID'];
|
|
19592
|
-
type
|
|
19731
|
+
type?: Maybe<CompassComponentType>;
|
|
19732
|
+
typeId?: Maybe<Scalars['ID']>;
|
|
19593
19733
|
};
|
|
19594
19734
|
export declare type UpdateCompassComponentTypePayload = Payload & {
|
|
19595
19735
|
__typename?: 'UpdateCompassComponentTypePayload';
|
|
@@ -19656,6 +19796,7 @@ export declare type UpdateCompassScorecardInput = {
|
|
|
19656
19796
|
description?: Maybe<Scalars['String']>;
|
|
19657
19797
|
ownerId?: Maybe<Scalars['ID']>;
|
|
19658
19798
|
componentType?: Maybe<CompassComponentType>;
|
|
19799
|
+
componentTypeId?: Maybe<Scalars['ID']>;
|
|
19659
19800
|
importance?: Maybe<CompassScorecardImportance>;
|
|
19660
19801
|
componentLabelNames?: Maybe<Array<Scalars['String']>>;
|
|
19661
19802
|
};
|