@forge/cli-shared 3.2.2-next.0 → 3.2.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 +14 -0
- package/out/app-logs/view-logs.js +3 -3
- package/out/apps/app-config.d.ts.map +1 -1
- package/out/apps/app-config.js +3 -2
- package/out/apps/create-app-graphql-client.js +1 -1
- package/out/apps/package-installer.js +1 -1
- package/out/apps/register-app.js +1 -1
- package/out/apps/template.js +12 -12
- package/out/auth/personal/credential-store.js +5 -5
- package/out/auth/personal/me-graphql-client.js +1 -1
- package/out/auth/personal/token-authenticator.js +1 -1
- package/out/config/config-file-section-reader.js +2 -1
- package/out/config/config-file-section-writer.js +2 -1
- package/out/config/config-file.d.ts +1 -1
- package/out/config/config-file.d.ts.map +1 -1
- package/out/config/config-file.js +6 -7
- package/out/config/config-section.js +2 -1
- package/out/config/config.js +4 -2
- package/out/file-system/file-system-reader.d.ts +1 -0
- package/out/file-system/file-system-reader.d.ts.map +1 -1
- package/out/file-system/file-system-reader.js +7 -7
- package/out/file-system/file-system-writer.js +1 -1
- package/out/file-system/zip-accessor.js +1 -1
- package/out/graphql/gateway.js +5 -3
- package/out/graphql/graphql-types.d.ts +171 -80
- package/out/graphql/graphql-types.d.ts.map +1 -1
- package/out/graphql/graphql-types.js +28 -1
- package/out/graphql/mutation-aware-graphql-client.d.ts +2 -2
- package/out/graphql/mutation-aware-graphql-client.d.ts.map +1 -1
- package/out/http-client/feedback-post-client.js +1 -1
- package/out/http-client/file-uploader.js +1 -1
- package/out/service/bridge-script-service.d.ts +2 -0
- package/out/service/bridge-script-service.d.ts.map +1 -1
- package/out/service/bridge-script-service.js +4 -2
- package/out/service/feature-flag-service.js +3 -3
- package/out/service/iframe-resizer-script-service.d.ts +2 -0
- package/out/service/iframe-resizer-script-service.d.ts.map +1 -1
- package/out/service/iframe-resizer-script-service.js +4 -2
- package/out/shared/error-handling.d.ts +1 -1
- package/out/shared/error-handling.d.ts.map +1 -1
- package/out/shared/error-handling.js +6 -3
- package/out/shared/index.js +1 -1
- package/out/shared/pause.js +2 -1
- package/out/shared/product.js +8 -5
- package/out/shared/read-app-config-files.d.ts.map +1 -1
- package/out/shared/read-app-config-files.js +7 -5
- package/out/shared/validate.js +3 -2
- package/out/ui/command-line-ui.js +3 -3
- package/out/ui/multiple-table-prompt.js +4 -2
- package/out/ui/runtime-log.js +1 -1
- package/out/ui/single-table-prompt.js +4 -2
- package/out/ui/table-prompt.js +1 -1
- package/out/ui/text.d.ts +1 -1
- package/out/ui/text.d.ts.map +1 -1
- package/out/ui/text.js +5 -4
- package/package.json +4 -4
|
@@ -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';
|
|
@@ -2010,6 +2011,8 @@ export declare type CompassCatalogQueryApi = {
|
|
|
2010
2011
|
__typename?: 'CompassCatalogQueryApi';
|
|
2011
2012
|
component?: Maybe<CompassComponentResult>;
|
|
2012
2013
|
componentByExternalAlias?: Maybe<CompassComponentResult>;
|
|
2014
|
+
componentType?: Maybe<CompassComponentTypeResult>;
|
|
2015
|
+
componentTypes?: Maybe<CompassComponentTypesQueryResult>;
|
|
2013
2016
|
fieldDefinitionsByComponentType?: Maybe<CompassFieldDefinitionsResult>;
|
|
2014
2017
|
searchComponents?: Maybe<CompassComponentQueryResult>;
|
|
2015
2018
|
searchComponentLabels?: Maybe<CompassComponentLabelsQueryResult>;
|
|
@@ -2034,6 +2037,14 @@ export declare type CompassCatalogQueryApiComponentByExternalAliasArgs = {
|
|
|
2034
2037
|
externalSource?: Maybe<Scalars['ID']>;
|
|
2035
2038
|
externalID: Scalars['ID'];
|
|
2036
2039
|
};
|
|
2040
|
+
export declare type CompassCatalogQueryApiComponentTypeArgs = {
|
|
2041
|
+
cloudId: Scalars['ID'];
|
|
2042
|
+
id: Scalars['ID'];
|
|
2043
|
+
};
|
|
2044
|
+
export declare type CompassCatalogQueryApiComponentTypesArgs = {
|
|
2045
|
+
cloudId: Scalars['ID'];
|
|
2046
|
+
query?: Maybe<CompassComponentTypeQueryInput>;
|
|
2047
|
+
};
|
|
2037
2048
|
export declare type CompassCatalogQueryApiFieldDefinitionsByComponentTypeArgs = {
|
|
2038
2049
|
cloudId: Scalars['ID'];
|
|
2039
2050
|
input: CompassComponentType;
|
|
@@ -2099,6 +2110,7 @@ export declare type CompassComponent = Node & {
|
|
|
2099
2110
|
__typename?: 'CompassComponent';
|
|
2100
2111
|
id: Scalars['ID'];
|
|
2101
2112
|
type: CompassComponentType;
|
|
2113
|
+
typeId: Scalars['ID'];
|
|
2102
2114
|
name: Scalars['String'];
|
|
2103
2115
|
description?: Maybe<Scalars['String']>;
|
|
2104
2116
|
ownerId?: Maybe<Scalars['ID']>;
|
|
@@ -2165,6 +2177,29 @@ export declare enum CompassComponentType {
|
|
|
2165
2177
|
Service = "SERVICE",
|
|
2166
2178
|
Other = "OTHER"
|
|
2167
2179
|
}
|
|
2180
|
+
export declare type CompassComponentTypeConnection = {
|
|
2181
|
+
__typename?: 'CompassComponentTypeConnection';
|
|
2182
|
+
edges?: Maybe<Array<CompassComponentTypeEdge>>;
|
|
2183
|
+
nodes?: Maybe<Array<CompassComponentTypeObject>>;
|
|
2184
|
+
totalCount?: Maybe<Scalars['Int']>;
|
|
2185
|
+
pageInfo: PageInfo;
|
|
2186
|
+
};
|
|
2187
|
+
export declare type CompassComponentTypeEdge = {
|
|
2188
|
+
__typename?: 'CompassComponentTypeEdge';
|
|
2189
|
+
cursor: Scalars['String'];
|
|
2190
|
+
node?: Maybe<CompassComponentTypeObject>;
|
|
2191
|
+
};
|
|
2192
|
+
export declare type CompassComponentTypeObject = {
|
|
2193
|
+
__typename?: 'CompassComponentTypeObject';
|
|
2194
|
+
id: Scalars['ID'];
|
|
2195
|
+
fieldDefinitions?: Maybe<CompassFieldDefinitionsResult>;
|
|
2196
|
+
};
|
|
2197
|
+
export declare type CompassComponentTypeQueryInput = {
|
|
2198
|
+
first?: Maybe<Scalars['Int']>;
|
|
2199
|
+
after?: Maybe<Scalars['String']>;
|
|
2200
|
+
};
|
|
2201
|
+
export declare type CompassComponentTypeResult = CompassComponentTypeObject | QueryError;
|
|
2202
|
+
export declare type CompassComponentTypesQueryResult = CompassComponentTypeConnection | QueryError;
|
|
2168
2203
|
export declare type CompassCreateAlertEventInput = {
|
|
2169
2204
|
displayName: Scalars['String'];
|
|
2170
2205
|
lastUpdated: Scalars['DateTime'];
|
|
@@ -2207,7 +2242,8 @@ export declare type CompassCreateCustomBooleanFieldDefinitionInput = {
|
|
|
2207
2242
|
cloudId: Scalars['ID'];
|
|
2208
2243
|
name: Scalars['String'];
|
|
2209
2244
|
description?: Maybe<Scalars['String']>;
|
|
2210
|
-
componentTypes
|
|
2245
|
+
componentTypes?: Maybe<Array<CompassComponentType>>;
|
|
2246
|
+
componentTypeIds?: Maybe<Array<Scalars['ID']>>;
|
|
2211
2247
|
};
|
|
2212
2248
|
export declare type CompassCreateCustomEventInput = {
|
|
2213
2249
|
displayName: Scalars['String'];
|
|
@@ -2233,13 +2269,15 @@ export declare type CompassCreateCustomNumberFieldDefinitionInput = {
|
|
|
2233
2269
|
cloudId: Scalars['ID'];
|
|
2234
2270
|
name: Scalars['String'];
|
|
2235
2271
|
description?: Maybe<Scalars['String']>;
|
|
2236
|
-
componentTypes
|
|
2272
|
+
componentTypes?: Maybe<Array<CompassComponentType>>;
|
|
2273
|
+
componentTypeIds?: Maybe<Array<Scalars['ID']>>;
|
|
2237
2274
|
};
|
|
2238
2275
|
export declare type CompassCreateCustomTextFieldDefinitionInput = {
|
|
2239
2276
|
cloudId: Scalars['ID'];
|
|
2240
2277
|
name: Scalars['String'];
|
|
2241
2278
|
description?: Maybe<Scalars['String']>;
|
|
2242
|
-
componentTypes
|
|
2279
|
+
componentTypes?: Maybe<Array<CompassComponentType>>;
|
|
2280
|
+
componentTypeIds?: Maybe<Array<Scalars['ID']>>;
|
|
2243
2281
|
};
|
|
2244
2282
|
export declare type CompassCreateDeploymentEventInput = {
|
|
2245
2283
|
updateSequenceNumber: Scalars['Long'];
|
|
@@ -2401,6 +2439,7 @@ export declare type CompassCustomBooleanFieldDefinition = CompassCustomFieldDefi
|
|
|
2401
2439
|
name?: Maybe<Scalars['String']>;
|
|
2402
2440
|
description?: Maybe<Scalars['String']>;
|
|
2403
2441
|
componentTypes?: Maybe<Array<CompassComponentType>>;
|
|
2442
|
+
componentTypeIds?: Maybe<Array<Scalars['ID']>>;
|
|
2404
2443
|
};
|
|
2405
2444
|
export declare type CompassCustomBooleanFieldInput = {
|
|
2406
2445
|
definitionId: Scalars['ID'];
|
|
@@ -2438,6 +2477,7 @@ export declare type CompassCustomFieldDefinition = {
|
|
|
2438
2477
|
name?: Maybe<Scalars['String']>;
|
|
2439
2478
|
description?: Maybe<Scalars['String']>;
|
|
2440
2479
|
componentTypes?: Maybe<Array<CompassComponentType>>;
|
|
2480
|
+
componentTypeIds?: Maybe<Array<Scalars['ID']>>;
|
|
2441
2481
|
};
|
|
2442
2482
|
export declare type CompassCustomFieldDefinitionEdge = {
|
|
2443
2483
|
__typename?: 'CompassCustomFieldDefinitionEdge';
|
|
@@ -2453,6 +2493,7 @@ export declare type CompassCustomFieldDefinitionsConnection = {
|
|
|
2453
2493
|
export declare type CompassCustomFieldDefinitionsQuery = {
|
|
2454
2494
|
cloudId: Scalars['ID'];
|
|
2455
2495
|
componentTypes?: Maybe<Array<CompassComponentType>>;
|
|
2496
|
+
componentTypeIds?: Maybe<Array<Scalars['ID']>>;
|
|
2456
2497
|
};
|
|
2457
2498
|
export declare type CompassCustomFieldDefinitionsResult = CompassCustomFieldDefinitionsConnection | QueryError;
|
|
2458
2499
|
export declare type CompassCustomFieldInput = {
|
|
@@ -2479,6 +2520,7 @@ export declare type CompassCustomNumberFieldDefinition = CompassCustomFieldDefin
|
|
|
2479
2520
|
name?: Maybe<Scalars['String']>;
|
|
2480
2521
|
description?: Maybe<Scalars['String']>;
|
|
2481
2522
|
componentTypes?: Maybe<Array<CompassComponentType>>;
|
|
2523
|
+
componentTypeIds?: Maybe<Array<Scalars['ID']>>;
|
|
2482
2524
|
};
|
|
2483
2525
|
export declare type CompassCustomNumberFieldInput = {
|
|
2484
2526
|
definitionId: Scalars['ID'];
|
|
@@ -2495,6 +2537,7 @@ export declare type CompassCustomTextFieldDefinition = CompassCustomFieldDefinit
|
|
|
2495
2537
|
name?: Maybe<Scalars['String']>;
|
|
2496
2538
|
description?: Maybe<Scalars['String']>;
|
|
2497
2539
|
componentTypes?: Maybe<Array<CompassComponentType>>;
|
|
2540
|
+
componentTypeIds?: Maybe<Array<Scalars['ID']>>;
|
|
2498
2541
|
};
|
|
2499
2542
|
export declare type CompassCustomTextFieldInput = {
|
|
2500
2543
|
definitionId: Scalars['ID'];
|
|
@@ -3133,6 +3176,7 @@ export declare type CompassScorecard = Node & {
|
|
|
3133
3176
|
criterias?: Maybe<Array<CompassScorecardCriteria>>;
|
|
3134
3177
|
owner?: Maybe<User>;
|
|
3135
3178
|
componentType: CompassComponentType;
|
|
3179
|
+
componentTypeId: Scalars['ID'];
|
|
3136
3180
|
importance: CompassScorecardImportance;
|
|
3137
3181
|
scorecardScore?: Maybe<CompassScorecardScore>;
|
|
3138
3182
|
appliedToComponents?: Maybe<CompassScorecardAppliedToComponentsQueryResult>;
|
|
@@ -3351,6 +3395,7 @@ export declare type CompassTeamData = {
|
|
|
3351
3395
|
teamId?: Maybe<Scalars['ID']>;
|
|
3352
3396
|
team?: Maybe<Team>;
|
|
3353
3397
|
labels?: Maybe<Array<CompassTeamLabel>>;
|
|
3398
|
+
currentCheckin?: Maybe<CompassTeamCheckin>;
|
|
3354
3399
|
};
|
|
3355
3400
|
export declare type CompassTeamDataInput = {
|
|
3356
3401
|
cloudId: Scalars['ID'];
|
|
@@ -3380,6 +3425,7 @@ export declare type CompassUpdateCustomBooleanFieldDefinitionInput = {
|
|
|
3380
3425
|
name?: Maybe<Scalars['String']>;
|
|
3381
3426
|
description?: Maybe<Scalars['String']>;
|
|
3382
3427
|
componentTypes?: Maybe<Array<CompassComponentType>>;
|
|
3428
|
+
componentTypeIds?: Maybe<Array<Scalars['ID']>>;
|
|
3383
3429
|
};
|
|
3384
3430
|
export declare type CompassUpdateCustomFieldDefinitionInput = {
|
|
3385
3431
|
booleanFieldDefinition?: Maybe<CompassUpdateCustomBooleanFieldDefinitionInput>;
|
|
@@ -3397,12 +3443,14 @@ export declare type CompassUpdateCustomNumberFieldDefinitionInput = {
|
|
|
3397
3443
|
name?: Maybe<Scalars['String']>;
|
|
3398
3444
|
description?: Maybe<Scalars['String']>;
|
|
3399
3445
|
componentTypes?: Maybe<Array<CompassComponentType>>;
|
|
3446
|
+
componentTypeIds?: Maybe<Array<Scalars['ID']>>;
|
|
3400
3447
|
};
|
|
3401
3448
|
export declare type CompassUpdateCustomTextFieldDefinitionInput = {
|
|
3402
3449
|
id: Scalars['ID'];
|
|
3403
3450
|
name?: Maybe<Scalars['String']>;
|
|
3404
3451
|
description?: Maybe<Scalars['String']>;
|
|
3405
3452
|
componentTypes?: Maybe<Array<CompassComponentType>>;
|
|
3453
|
+
componentTypeIds?: Maybe<Array<Scalars['ID']>>;
|
|
3406
3454
|
};
|
|
3407
3455
|
export declare type CompassUpdateHasCustomBooleanFieldScorecardCriteriaInput = {
|
|
3408
3456
|
id: Scalars['ID'];
|
|
@@ -4507,36 +4555,10 @@ export declare type ContainerEventObject = {
|
|
|
4507
4555
|
attributes: Scalars['JSON'];
|
|
4508
4556
|
};
|
|
4509
4557
|
export declare type ContentPlatformAnyContext = ContentPlatformContextProduct | ContentPlatformContextApp | ContentPlatformContextTheme;
|
|
4510
|
-
export declare
|
|
4511
|
-
|
|
4512
|
-
|
|
4513
|
-
|
|
4514
|
-
};
|
|
4515
|
-
export declare type ContentPlatformChunkBestPractices = {
|
|
4516
|
-
__typename?: 'ContentPlatformChunkBestPractices';
|
|
4517
|
-
title: Scalars['String'];
|
|
4518
|
-
body: Scalars['String'];
|
|
4519
|
-
};
|
|
4520
|
-
export declare type ContentPlatformChunkDeepDive = {
|
|
4521
|
-
__typename?: 'ContentPlatformChunkDeepDive';
|
|
4522
|
-
title: Scalars['String'];
|
|
4523
|
-
body: Scalars['String'];
|
|
4524
|
-
};
|
|
4525
|
-
export declare type ContentPlatformChunkHowTo = {
|
|
4526
|
-
__typename?: 'ContentPlatformChunkHowTo';
|
|
4527
|
-
title: Scalars['String'];
|
|
4528
|
-
body: Scalars['String'];
|
|
4529
|
-
};
|
|
4530
|
-
export declare type ContentPlatformChunkInContext = {
|
|
4531
|
-
__typename?: 'ContentPlatformChunkInContext';
|
|
4532
|
-
title: Scalars['String'];
|
|
4533
|
-
body: Scalars['String'];
|
|
4534
|
-
};
|
|
4535
|
-
export declare type ContentPlatformChunkWhatIs = {
|
|
4536
|
-
__typename?: 'ContentPlatformChunkWhatIs';
|
|
4537
|
-
title: Scalars['String'];
|
|
4538
|
-
body: Scalars['String'];
|
|
4539
|
-
};
|
|
4558
|
+
export declare enum ContentPlatformBooleanOperators {
|
|
4559
|
+
And = "AND",
|
|
4560
|
+
Or = "OR"
|
|
4561
|
+
}
|
|
4540
4562
|
export declare type ContentPlatformContextApp = {
|
|
4541
4563
|
__typename?: 'ContentPlatformContextApp';
|
|
4542
4564
|
contextId: Scalars['String'];
|
|
@@ -4590,6 +4612,17 @@ export declare type ContentPlatformDateRangeFilter = {
|
|
|
4590
4612
|
before: Scalars['DateTime'];
|
|
4591
4613
|
after: Scalars['DateTime'];
|
|
4592
4614
|
};
|
|
4615
|
+
export declare type ContentPlatformField = {
|
|
4616
|
+
field: ContentPlatformFieldNames;
|
|
4617
|
+
};
|
|
4618
|
+
export declare enum ContentPlatformFieldNames {
|
|
4619
|
+
Title = "TITLE",
|
|
4620
|
+
Description = "DESCRIPTION"
|
|
4621
|
+
}
|
|
4622
|
+
export declare type ContentPlatformFieldType = {
|
|
4623
|
+
__typename?: 'ContentPlatformFieldType';
|
|
4624
|
+
field: ContentPlatformFieldNames;
|
|
4625
|
+
};
|
|
4593
4626
|
export declare type ContentPlatformImageAsset = {
|
|
4594
4627
|
__typename?: 'ContentPlatformImageAsset';
|
|
4595
4628
|
title: Scalars['String'];
|
|
@@ -4615,34 +4648,10 @@ export declare type ContentPlatformImageComponent = {
|
|
|
4615
4648
|
image: ContentPlatformImageAsset;
|
|
4616
4649
|
contextReference: Array<ContentPlatformAnyContext>;
|
|
4617
4650
|
};
|
|
4618
|
-
export declare
|
|
4619
|
-
|
|
4620
|
-
|
|
4621
|
-
|
|
4622
|
-
};
|
|
4623
|
-
export declare type ContentPlatformPracticePage = {
|
|
4624
|
-
__typename?: 'ContentPlatformPracticePage';
|
|
4625
|
-
name: Scalars['String'];
|
|
4626
|
-
tagline: Scalars['String'];
|
|
4627
|
-
introToPractice: ContentPlatformIntroToPractice;
|
|
4628
|
-
whatIs: ContentPlatformChunkWhatIs;
|
|
4629
|
-
benefits?: Maybe<ContentPlatformChunkBenefits>;
|
|
4630
|
-
deepDive?: Maybe<ContentPlatformChunkDeepDive>;
|
|
4631
|
-
bestPractices?: Maybe<ContentPlatformChunkBestPractices>;
|
|
4632
|
-
inContext?: Maybe<ContentPlatformChunkInContext>;
|
|
4633
|
-
howTo?: Maybe<ContentPlatformChunkHowTo>;
|
|
4634
|
-
practice: ContentPlatformWhatPractice;
|
|
4635
|
-
};
|
|
4636
|
-
export declare type ContentPlatformPracticePagesConnection = {
|
|
4637
|
-
__typename?: 'ContentPlatformPracticePagesConnection';
|
|
4638
|
-
pageInfo: PageInfo;
|
|
4639
|
-
edges: Array<ContentPlatformPracticePagesEdge>;
|
|
4640
|
-
};
|
|
4641
|
-
export declare type ContentPlatformPracticePagesEdge = {
|
|
4642
|
-
__typename?: 'ContentPlatformPracticePagesEdge';
|
|
4643
|
-
node: ContentPlatformPracticePage;
|
|
4644
|
-
cursor: Scalars['String'];
|
|
4645
|
-
};
|
|
4651
|
+
export declare enum ContentPlatformOperators {
|
|
4652
|
+
Any = "ANY",
|
|
4653
|
+
All = "ALL"
|
|
4654
|
+
}
|
|
4646
4655
|
export declare type ContentPlatformReleaseNote = {
|
|
4647
4656
|
__typename?: 'ContentPlatformReleaseNote';
|
|
4648
4657
|
releaseNoteId: Scalars['String'];
|
|
@@ -4686,7 +4695,6 @@ export declare type ContentPlatformReleaseNoteFilterOptions = {
|
|
|
4686
4695
|
releaseNoteFlags?: Maybe<Array<Scalars['String']>>;
|
|
4687
4696
|
productFeatureFlags?: Maybe<Scalars['JSON']>;
|
|
4688
4697
|
releaseNoteFlagOffValues?: Maybe<Array<Scalars['String']>>;
|
|
4689
|
-
publishStatus?: Maybe<Array<Scalars['String']>>;
|
|
4690
4698
|
updatedAt?: Maybe<ContentPlatformDateRangeFilter>;
|
|
4691
4699
|
};
|
|
4692
4700
|
export declare type ContentPlatformReleaseNotesConnection = {
|
|
@@ -4699,6 +4707,29 @@ export declare type ContentPlatformReleaseNotesEdge = {
|
|
|
4699
4707
|
node: ContentPlatformReleaseNote;
|
|
4700
4708
|
cursor: Scalars['String'];
|
|
4701
4709
|
};
|
|
4710
|
+
export declare type ContentPlatformSearchOptions = {
|
|
4711
|
+
queries: Array<ContentPlatformSearchQuery>;
|
|
4712
|
+
operator?: Maybe<ContentPlatformBooleanOperators>;
|
|
4713
|
+
};
|
|
4714
|
+
export declare type ContentPlatformSearchQuery = {
|
|
4715
|
+
searchType: ContentPlatformSearchTypes;
|
|
4716
|
+
terms: Array<Scalars['String']>;
|
|
4717
|
+
termOperator?: Maybe<ContentPlatformOperators>;
|
|
4718
|
+
fields?: Maybe<Array<ContentPlatformField>>;
|
|
4719
|
+
fieldOperator?: Maybe<ContentPlatformOperators>;
|
|
4720
|
+
};
|
|
4721
|
+
export declare type ContentPlatformSearchQueryType = {
|
|
4722
|
+
__typename?: 'ContentPlatformSearchQueryType';
|
|
4723
|
+
searchType: ContentPlatformSearchTypes;
|
|
4724
|
+
terms: Array<Scalars['String']>;
|
|
4725
|
+
termOperator?: Maybe<ContentPlatformOperators>;
|
|
4726
|
+
fields?: Maybe<Array<ContentPlatformFieldType>>;
|
|
4727
|
+
fieldOperator?: Maybe<ContentPlatformOperators>;
|
|
4728
|
+
};
|
|
4729
|
+
export declare enum ContentPlatformSearchTypes {
|
|
4730
|
+
Contains = "CONTAINS",
|
|
4731
|
+
ExactMatch = "EXACT_MATCH"
|
|
4732
|
+
}
|
|
4702
4733
|
export declare type ContentPlatformStatusOfChange = {
|
|
4703
4734
|
__typename?: 'ContentPlatformStatusOfChange';
|
|
4704
4735
|
label: Scalars['String'];
|
|
@@ -4729,10 +4760,6 @@ export declare type ContentPlatformTypeOfChange = {
|
|
|
4729
4760
|
label: Scalars['String'];
|
|
4730
4761
|
icon: ContentPlatformImageAsset;
|
|
4731
4762
|
};
|
|
4732
|
-
export declare type ContentPlatformWhatPractice = {
|
|
4733
|
-
__typename?: 'ContentPlatformWhatPractice';
|
|
4734
|
-
title: Scalars['String'];
|
|
4735
|
-
};
|
|
4736
4763
|
export declare type ContextEventObject = {
|
|
4737
4764
|
__typename?: 'ContextEventObject';
|
|
4738
4765
|
id: Scalars['ID'];
|
|
@@ -4824,7 +4851,8 @@ export declare type CreateCompassComponentExternalAliasPayload = Payload & {
|
|
|
4824
4851
|
export declare type CreateCompassComponentInput = {
|
|
4825
4852
|
name: Scalars['String'];
|
|
4826
4853
|
description?: Maybe<Scalars['String']>;
|
|
4827
|
-
type
|
|
4854
|
+
type?: Maybe<CompassComponentType>;
|
|
4855
|
+
typeId?: Maybe<Scalars['ID']>;
|
|
4828
4856
|
ownerId?: Maybe<Scalars['ID']>;
|
|
4829
4857
|
fields?: Maybe<Array<CreateCompassFieldInput>>;
|
|
4830
4858
|
customFields?: Maybe<Array<CompassCustomFieldInput>>;
|
|
@@ -4909,7 +4937,8 @@ export declare type CreateCompassScorecardInput = {
|
|
|
4909
4937
|
name: Scalars['String'];
|
|
4910
4938
|
description?: Maybe<Scalars['String']>;
|
|
4911
4939
|
ownerId?: Maybe<Scalars['ID']>;
|
|
4912
|
-
componentType
|
|
4940
|
+
componentType?: Maybe<CompassComponentType>;
|
|
4941
|
+
componentTypeId?: Maybe<Scalars['ID']>;
|
|
4913
4942
|
importance: CompassScorecardImportance;
|
|
4914
4943
|
criterias?: Maybe<Array<CreateCompassScorecardCriteriaInput>>;
|
|
4915
4944
|
componentLabelNames?: Maybe<Array<Scalars['String']>>;
|
|
@@ -8073,6 +8102,7 @@ export declare type JiraAttachment = {
|
|
|
8073
8102
|
fileSize?: Maybe<Scalars['Long']>;
|
|
8074
8103
|
parentName?: Maybe<Scalars['String']>;
|
|
8075
8104
|
parentId?: Maybe<Scalars['String']>;
|
|
8105
|
+
hasRestrictedParent?: Maybe<Scalars['Boolean']>;
|
|
8076
8106
|
};
|
|
8077
8107
|
export declare type JiraAttachmentConnection = {
|
|
8078
8108
|
__typename?: 'JiraAttachmentConnection';
|
|
@@ -8656,6 +8686,7 @@ export declare type JiraCreateReleaseNoteConfluencePageInput = {
|
|
|
8656
8686
|
parentPageId?: Maybe<Scalars['ID']>;
|
|
8657
8687
|
issueFieldIds: Array<Scalars['ID']>;
|
|
8658
8688
|
issueTypeIds: Array<Scalars['ID']>;
|
|
8689
|
+
excludeIssueKey?: Maybe<Scalars['Boolean']>;
|
|
8659
8690
|
};
|
|
8660
8691
|
export declare type JiraCreateReleaseNoteConfluencePagePayload = Payload & {
|
|
8661
8692
|
__typename?: 'JiraCreateReleaseNoteConfluencePagePayload';
|
|
@@ -11189,6 +11220,7 @@ export declare type JiraPlatformAttachment = JiraAttachment & Node & {
|
|
|
11189
11220
|
fileSize?: Maybe<Scalars['Long']>;
|
|
11190
11221
|
parentName?: Maybe<Scalars['String']>;
|
|
11191
11222
|
parentId?: Maybe<Scalars['String']>;
|
|
11223
|
+
hasRestrictedParent?: Maybe<Scalars['Boolean']>;
|
|
11192
11224
|
};
|
|
11193
11225
|
export declare type JiraPlatformComment = JiraComment & Node & {
|
|
11194
11226
|
__typename?: 'JiraPlatformComment';
|
|
@@ -11814,6 +11846,7 @@ export declare type JiraQueryVersionsForProjectArgs = {
|
|
|
11814
11846
|
last?: Maybe<Scalars['Int']>;
|
|
11815
11847
|
before?: Maybe<Scalars['String']>;
|
|
11816
11848
|
filter?: Maybe<Array<Maybe<JiraVersionStatus>>>;
|
|
11849
|
+
searchString?: Maybe<Scalars['String']>;
|
|
11817
11850
|
};
|
|
11818
11851
|
export declare type JiraQueryVersionDetailPageArgs = {
|
|
11819
11852
|
versionId: Scalars['ID'];
|
|
@@ -12323,6 +12356,7 @@ export declare type JiraServiceManagementAttachment = JiraAttachment & Node & {
|
|
|
12323
12356
|
parentName?: Maybe<Scalars['String']>;
|
|
12324
12357
|
parentId?: Maybe<Scalars['String']>;
|
|
12325
12358
|
parentCommentVisibility?: Maybe<JiraServiceManagementCommentVisibility>;
|
|
12359
|
+
hasRestrictedParent?: Maybe<Scalars['Boolean']>;
|
|
12326
12360
|
};
|
|
12327
12361
|
export declare type JiraServiceManagementComment = JiraComment & Node & {
|
|
12328
12362
|
__typename?: 'JiraServiceManagementComment';
|
|
@@ -13435,6 +13469,15 @@ export declare type JiraVersionRelatedWork = {
|
|
|
13435
13469
|
addedOn?: Maybe<Scalars['DateTime']>;
|
|
13436
13470
|
addedBy?: Maybe<User>;
|
|
13437
13471
|
};
|
|
13472
|
+
export declare type JiraVersionRelatedWorkConfluenceReleaseNotes = JiraVersionRelatedWorkV2 & {
|
|
13473
|
+
__typename?: 'JiraVersionRelatedWorkConfluenceReleaseNotes';
|
|
13474
|
+
relatedWorkId?: Maybe<Scalars['ID']>;
|
|
13475
|
+
url?: Maybe<Scalars['URL']>;
|
|
13476
|
+
title?: Maybe<Scalars['String']>;
|
|
13477
|
+
category?: Maybe<Scalars['String']>;
|
|
13478
|
+
addedOn?: Maybe<Scalars['DateTime']>;
|
|
13479
|
+
addedBy?: Maybe<User>;
|
|
13480
|
+
};
|
|
13438
13481
|
export declare type JiraVersionRelatedWorkConnection = {
|
|
13439
13482
|
__typename?: 'JiraVersionRelatedWorkConnection';
|
|
13440
13483
|
pageInfo: PageInfo;
|
|
@@ -14059,6 +14102,7 @@ export declare type MercuryCreateStrategyInput = {
|
|
|
14059
14102
|
};
|
|
14060
14103
|
export declare type MercuryCreateTeamInput = {
|
|
14061
14104
|
name: Scalars['String'];
|
|
14105
|
+
teamsServiceTeamId: Scalars['ID'];
|
|
14062
14106
|
active?: Maybe<Scalars['Boolean']>;
|
|
14063
14107
|
};
|
|
14064
14108
|
export declare type MercuryDeleteJobFunctionInput = {
|
|
@@ -14070,6 +14114,23 @@ export declare type MercuryDeleteStrategyInput = {
|
|
|
14070
14114
|
export declare type MercuryDeleteTeamInput = {
|
|
14071
14115
|
teamId: Scalars['ID'];
|
|
14072
14116
|
};
|
|
14117
|
+
export declare type MercuryInitiative = {
|
|
14118
|
+
__typename?: 'MercuryInitiative';
|
|
14119
|
+
name?: Maybe<Scalars['String']>;
|
|
14120
|
+
key?: Maybe<Scalars['String']>;
|
|
14121
|
+
definition?: Maybe<Scalars['String']>;
|
|
14122
|
+
};
|
|
14123
|
+
export declare type MercuryInitiativeConnection = {
|
|
14124
|
+
__typename?: 'MercuryInitiativeConnection';
|
|
14125
|
+
edges?: Maybe<Array<Maybe<MercuryInitiativeEdge>>>;
|
|
14126
|
+
nodes?: Maybe<Array<Maybe<MercuryInitiative>>>;
|
|
14127
|
+
pageInfo: PageInfo;
|
|
14128
|
+
};
|
|
14129
|
+
export declare type MercuryInitiativeEdge = {
|
|
14130
|
+
__typename?: 'MercuryInitiativeEdge';
|
|
14131
|
+
cursor: Scalars['String'];
|
|
14132
|
+
node?: Maybe<MercuryInitiative>;
|
|
14133
|
+
};
|
|
14073
14134
|
export declare type MercuryJobFunction = Node & {
|
|
14074
14135
|
__typename?: 'MercuryJobFunction';
|
|
14075
14136
|
id: Scalars['ID'];
|
|
@@ -14154,6 +14215,8 @@ export declare type MercuryQueryApi = {
|
|
|
14154
14215
|
jobFunctions?: Maybe<MercuryJobFunctionConnection>;
|
|
14155
14216
|
teams?: Maybe<MercuryTeamConnection>;
|
|
14156
14217
|
team?: Maybe<MercuryTeam>;
|
|
14218
|
+
initiative?: Maybe<MercuryInitiative>;
|
|
14219
|
+
initiatives?: Maybe<MercuryInitiativeConnection>;
|
|
14157
14220
|
};
|
|
14158
14221
|
export declare type MercuryQueryApiStrategiesArgs = {
|
|
14159
14222
|
first?: Maybe<Scalars['Int']>;
|
|
@@ -14176,6 +14239,13 @@ export declare type MercuryQueryApiTeamsArgs = {
|
|
|
14176
14239
|
export declare type MercuryQueryApiTeamArgs = {
|
|
14177
14240
|
id: Scalars['ID'];
|
|
14178
14241
|
};
|
|
14242
|
+
export declare type MercuryQueryApiInitiativeArgs = {
|
|
14243
|
+
key: Scalars['String'];
|
|
14244
|
+
};
|
|
14245
|
+
export declare type MercuryQueryApiInitiativesArgs = {
|
|
14246
|
+
first?: Maybe<Scalars['Int']>;
|
|
14247
|
+
after?: Maybe<Scalars['String']>;
|
|
14248
|
+
};
|
|
14179
14249
|
export declare type MercuryRemoveGoalsFromStrategyInput = {
|
|
14180
14250
|
strategyId: Scalars['ID'];
|
|
14181
14251
|
goals?: Maybe<Array<MercuryLinkGoalInput>>;
|
|
@@ -14219,6 +14289,7 @@ export declare type MercuryStrategyMutationPayload = Payload & {
|
|
|
14219
14289
|
export declare type MercuryTeam = Node & {
|
|
14220
14290
|
__typename?: 'MercuryTeam';
|
|
14221
14291
|
id: Scalars['ID'];
|
|
14292
|
+
teamsServiceTeamId: Scalars['ID'];
|
|
14222
14293
|
name: Scalars['String'];
|
|
14223
14294
|
active?: Maybe<Scalars['Boolean']>;
|
|
14224
14295
|
};
|
|
@@ -14271,8 +14342,8 @@ export declare type MercuryUpdateStrategyInput = {
|
|
|
14271
14342
|
};
|
|
14272
14343
|
export declare type MercuryUpdateTeamInput = {
|
|
14273
14344
|
teamId: Scalars['ID'];
|
|
14274
|
-
name
|
|
14275
|
-
active
|
|
14345
|
+
name: Scalars['String'];
|
|
14346
|
+
active: Scalars['Boolean'];
|
|
14276
14347
|
};
|
|
14277
14348
|
export declare type MigrationKeys = {
|
|
14278
14349
|
__typename?: 'MigrationKeys';
|
|
@@ -14392,6 +14463,7 @@ export declare type Mutation = {
|
|
|
14392
14463
|
createAppTunnels?: Maybe<CreateAppTunnelResponse>;
|
|
14393
14464
|
deleteAppTunnels?: Maybe<GenericMutationResponse>;
|
|
14394
14465
|
invokeExtension?: Maybe<InvokeExtensionResponse>;
|
|
14466
|
+
rateLimitTest?: Maybe<GenericMutationResponse>;
|
|
14395
14467
|
invokeAuxEffects?: Maybe<InvokeAuxEffectsResponse>;
|
|
14396
14468
|
userAuthTokenForExtension?: Maybe<UserAuthTokenForExtensionResponse>;
|
|
14397
14469
|
createWebTriggerUrl?: Maybe<CreateWebTriggerUrlResponse>;
|
|
@@ -14726,6 +14798,9 @@ export declare type MutationDeleteAppTunnelsArgs = {
|
|
|
14726
14798
|
export declare type MutationInvokeExtensionArgs = {
|
|
14727
14799
|
input: InvokeExtensionInput;
|
|
14728
14800
|
};
|
|
14801
|
+
export declare type MutationRateLimitTestArgs = {
|
|
14802
|
+
input: InvokeExtensionInput;
|
|
14803
|
+
};
|
|
14729
14804
|
export declare type MutationInvokeAuxEffectsArgs = {
|
|
14730
14805
|
input: InvokeAuxEffectsInput;
|
|
14731
14806
|
};
|
|
@@ -16213,14 +16288,13 @@ export declare type ProjectAvatars = {
|
|
|
16213
16288
|
};
|
|
16214
16289
|
export declare type Query = {
|
|
16215
16290
|
__typename?: 'Query';
|
|
16291
|
+
trello?: Maybe<TrelloQueryApi>;
|
|
16216
16292
|
customerSupport?: Maybe<SupportRequestCatalogQueryApi>;
|
|
16217
16293
|
jiraProjectAndDevOpsToolRelationship?: Maybe<JiraProjectAndDevOpsToolRelationship>;
|
|
16218
16294
|
bitbucket?: Maybe<BitbucketQuery>;
|
|
16219
16295
|
opsgenie?: Maybe<OpsgenieQuery>;
|
|
16220
16296
|
releaseNotes: ContentPlatformReleaseNotesConnection;
|
|
16221
16297
|
releaseNote?: Maybe<ContentPlatformReleaseNote>;
|
|
16222
|
-
practicePages: ContentPlatformPracticePagesConnection;
|
|
16223
|
-
practicePage?: Maybe<ContentPlatformPracticePage>;
|
|
16224
16298
|
smarts?: Maybe<SmartsQueryApi>;
|
|
16225
16299
|
townsquare?: Maybe<TownsquareQueryApi>;
|
|
16226
16300
|
devOps?: Maybe<DevOps>;
|
|
@@ -16329,6 +16403,7 @@ export declare type QueryJiraProjectAndDevOpsToolRelationshipArgs = {
|
|
|
16329
16403
|
export declare type QueryReleaseNotesArgs = {
|
|
16330
16404
|
after?: Maybe<Scalars['String']>;
|
|
16331
16405
|
first?: Maybe<Scalars['Int']>;
|
|
16406
|
+
search?: Maybe<ContentPlatformSearchOptions>;
|
|
16332
16407
|
filter?: Maybe<ContentPlatformReleaseNoteFilterOptions>;
|
|
16333
16408
|
filterByAnnouncementPlan?: Maybe<Scalars['Boolean']>;
|
|
16334
16409
|
productFeatureFlags?: Maybe<Scalars['JSON']>;
|
|
@@ -16339,13 +16414,6 @@ export declare type QueryReleaseNoteArgs = {
|
|
|
16339
16414
|
id: Scalars['String'];
|
|
16340
16415
|
publishedOnly?: Maybe<Scalars['Boolean']>;
|
|
16341
16416
|
};
|
|
16342
|
-
export declare type QueryPracticePagesArgs = {
|
|
16343
|
-
after?: Maybe<Scalars['String']>;
|
|
16344
|
-
first?: Maybe<Scalars['Int']>;
|
|
16345
|
-
};
|
|
16346
|
-
export declare type QueryPracticePageArgs = {
|
|
16347
|
-
id: Scalars['String'];
|
|
16348
|
-
};
|
|
16349
16417
|
export declare type QueryJiraProjectRelationshipsForRepositoryArgs = {
|
|
16350
16418
|
id: Scalars['ID'];
|
|
16351
16419
|
cloudId: Scalars['ID'];
|
|
@@ -18006,6 +18074,8 @@ export declare enum ShepherdAlertTemplateType {
|
|
|
18006
18074
|
EnableScimSync = "ENABLE_SCIM_SYNC",
|
|
18007
18075
|
ExportedOrgeventscsv = "EXPORTED_ORGEVENTSCSV",
|
|
18008
18076
|
InitiatedGsyncConnection = "INITIATED_GSYNC_CONNECTION",
|
|
18077
|
+
JiraIssueCrawling = "JIRA_ISSUE_CRAWLING",
|
|
18078
|
+
OrgLoggedInAsUser = "ORG_LOGGED_IN_AS_USER",
|
|
18009
18079
|
RotateScimDirectoryToken = "ROTATE_SCIM_DIRECTORY_TOKEN",
|
|
18010
18080
|
TokenCreated = "TOKEN_CREATED",
|
|
18011
18081
|
UpdatedAuthPolicy = "UPDATED_AUTH_POLICY",
|
|
@@ -18355,6 +18425,7 @@ export declare type ShepherdWebhookSubscription = Node & ShepherdSubscription &
|
|
|
18355
18425
|
};
|
|
18356
18426
|
export declare enum ShepherdWebhookType {
|
|
18357
18427
|
Custom = "CUSTOM",
|
|
18428
|
+
MicrosoftTeams = "MICROSOFT_TEAMS",
|
|
18358
18429
|
Slack = "SLACK"
|
|
18359
18430
|
}
|
|
18360
18431
|
export declare type SmartsContext = {
|
|
@@ -19488,6 +19559,24 @@ export declare type TransitionFilter = {
|
|
|
19488
19559
|
from: Scalars['String'];
|
|
19489
19560
|
to: Scalars['String'];
|
|
19490
19561
|
};
|
|
19562
|
+
export declare type TrelloQueryApi = {
|
|
19563
|
+
__typename?: 'TrelloQueryApi';
|
|
19564
|
+
echo: Scalars['String'];
|
|
19565
|
+
templateCategories: Array<TrelloTemplateGalleryCategory>;
|
|
19566
|
+
templateLanguages: Array<TrelloTemplateGalleryLanguage>;
|
|
19567
|
+
};
|
|
19568
|
+
export declare type TrelloTemplateGalleryCategory = {
|
|
19569
|
+
__typename?: 'TrelloTemplateGalleryCategory';
|
|
19570
|
+
key: Scalars['String'];
|
|
19571
|
+
};
|
|
19572
|
+
export declare type TrelloTemplateGalleryLanguage = {
|
|
19573
|
+
__typename?: 'TrelloTemplateGalleryLanguage';
|
|
19574
|
+
description: Scalars['String'];
|
|
19575
|
+
enabled: Scalars['Boolean'];
|
|
19576
|
+
language: Scalars['String'];
|
|
19577
|
+
locale: Scalars['String'];
|
|
19578
|
+
localizedDescription: Scalars['String'];
|
|
19579
|
+
};
|
|
19491
19580
|
export declare type TunnelDefinitionsInput = {
|
|
19492
19581
|
faasTunnelUrl?: Maybe<Scalars['URL']>;
|
|
19493
19582
|
customUI?: Maybe<Array<Maybe<CustomUiTunnelDefinitionInput>>>;
|
|
@@ -19596,7 +19685,8 @@ export declare type UpdateCompassComponentPayload = Payload & {
|
|
|
19596
19685
|
};
|
|
19597
19686
|
export declare type UpdateCompassComponentTypeInput = {
|
|
19598
19687
|
id: Scalars['ID'];
|
|
19599
|
-
type
|
|
19688
|
+
type?: Maybe<CompassComponentType>;
|
|
19689
|
+
typeId?: Maybe<Scalars['ID']>;
|
|
19600
19690
|
};
|
|
19601
19691
|
export declare type UpdateCompassComponentTypePayload = Payload & {
|
|
19602
19692
|
__typename?: 'UpdateCompassComponentTypePayload';
|
|
@@ -19663,6 +19753,7 @@ export declare type UpdateCompassScorecardInput = {
|
|
|
19663
19753
|
description?: Maybe<Scalars['String']>;
|
|
19664
19754
|
ownerId?: Maybe<Scalars['ID']>;
|
|
19665
19755
|
componentType?: Maybe<CompassComponentType>;
|
|
19756
|
+
componentTypeId?: Maybe<Scalars['ID']>;
|
|
19666
19757
|
importance?: Maybe<CompassScorecardImportance>;
|
|
19667
19758
|
componentLabelNames?: Maybe<Array<Scalars['String']>>;
|
|
19668
19759
|
};
|