@forge/cli-shared 5.5.0-next.13 → 5.5.0-next.14-experimental-470bc94
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 +45 -0
- package/out/graphql/graphql-types.d.ts +174 -89
- package/out/graphql/graphql-types.d.ts.map +1 -1
- package/out/graphql/graphql-types.js +18 -5
- package/package.json +3 -3
|
@@ -2536,6 +2536,8 @@ export declare type CcpEntitlementTemplate = {
|
|
|
2536
2536
|
export declare type CcpEntitlementUsage = {
|
|
2537
2537
|
__typename?: 'CcpEntitlementUsage';
|
|
2538
2538
|
offeringChargeElement?: Maybe<CcpOfferingChargeElement>;
|
|
2539
|
+
usageAmount?: Maybe<Scalars['Float']['output']>;
|
|
2540
|
+
usageIdentifier?: Maybe<Scalars['String']['output']>;
|
|
2539
2541
|
};
|
|
2540
2542
|
export declare type CcpExperienceCapability = CommerceExperienceCapability & {
|
|
2541
2543
|
__typename?: 'CcpExperienceCapability';
|
|
@@ -3309,6 +3311,7 @@ export declare type CompassCatalogMutationApi = {
|
|
|
3309
3311
|
detachEventSource?: Maybe<DetachEventSourcePayload>;
|
|
3310
3312
|
insertMetricValue?: Maybe<CompassInsertMetricValuePayload>;
|
|
3311
3313
|
insertMetricValueByExternalId?: Maybe<CompassInsertMetricValueByExternalIdPayload>;
|
|
3314
|
+
migrateComponentType?: Maybe<MigrateComponentTypePayload>;
|
|
3312
3315
|
reactivateScorecardForComponent?: Maybe<CompassReactivateScorecardForComponentPayload>;
|
|
3313
3316
|
removeComponentLabels?: Maybe<RemoveCompassComponentLabelsPayload>;
|
|
3314
3317
|
removeScorecardFromComponent?: Maybe<RemoveCompassScorecardFromComponentPayload>;
|
|
@@ -3500,6 +3503,10 @@ export declare type CompassCatalogMutationApiInsertMetricValueArgs = {
|
|
|
3500
3503
|
export declare type CompassCatalogMutationApiInsertMetricValueByExternalIdArgs = {
|
|
3501
3504
|
input: CompassInsertMetricValueByExternalIdInput;
|
|
3502
3505
|
};
|
|
3506
|
+
export declare type CompassCatalogMutationApiMigrateComponentTypeArgs = {
|
|
3507
|
+
cloudId: Scalars['ID']['input'];
|
|
3508
|
+
input: MigrateComponentTypeInput;
|
|
3509
|
+
};
|
|
3503
3510
|
export declare type CompassCatalogMutationApiReactivateScorecardForComponentArgs = {
|
|
3504
3511
|
componentId: Scalars['ID']['input'];
|
|
3505
3512
|
scorecardId: Scalars['ID']['input'];
|
|
@@ -15924,6 +15931,7 @@ export declare type CustomerServiceAttributes = {
|
|
|
15924
15931
|
};
|
|
15925
15932
|
export declare type CustomerServiceAttributesQueryResult = CustomerServiceAttributes | QueryError;
|
|
15926
15933
|
export declare type CustomerServiceContext = {
|
|
15934
|
+
issueId?: InputMaybe<Scalars['String']['input']>;
|
|
15927
15935
|
type: CustomerServiceContextType;
|
|
15928
15936
|
};
|
|
15929
15937
|
export declare type CustomerServiceContextConfiguration = {
|
|
@@ -15989,6 +15997,10 @@ export declare type CustomerServiceCustomDetailConfigMetadataUpdatePayload = Pay
|
|
|
15989
15997
|
success: Scalars['Boolean']['output'];
|
|
15990
15998
|
successfullyUpdatedCustomDetailConfig?: Maybe<CustomerServiceCustomDetailConfigMetadata>;
|
|
15991
15999
|
};
|
|
16000
|
+
export declare type CustomerServiceCustomDetailContextInput = {
|
|
16001
|
+
contextConfigurations?: InputMaybe<Array<CustomerServiceContextConfigurationInput>>;
|
|
16002
|
+
id: Scalars['ID']['input'];
|
|
16003
|
+
};
|
|
15992
16004
|
export declare enum CustomerServiceCustomDetailCreateErrorCode {
|
|
15993
16005
|
ColorNotSaved = "COLOR_NOT_SAVED"
|
|
15994
16006
|
}
|
|
@@ -16256,6 +16268,7 @@ export declare type CustomerServiceMutationApi = {
|
|
|
16256
16268
|
removeEntitlement?: Maybe<CustomerServiceEntitlementRemovePayload>;
|
|
16257
16269
|
updateCustomDetail?: Maybe<CustomerServiceCustomDetailUpdatePayload>;
|
|
16258
16270
|
updateCustomDetailConfig?: Maybe<CustomerServiceCustomDetailConfigMetadataUpdatePayload>;
|
|
16271
|
+
updateCustomDetailContextConfigs?: Maybe<CustomerServiceUpdateCustomDetailContextConfigsPayload>;
|
|
16259
16272
|
updateCustomDetailPermissions?: Maybe<CustomerServiceCustomDetailPermissionsUpdatePayload>;
|
|
16260
16273
|
updateCustomDetailValue?: Maybe<CustomerServiceUpdateCustomDetailValuePayload>;
|
|
16261
16274
|
updateIndividualAttribute?: Maybe<CustomerServiceAttributeUpdatePayload>;
|
|
@@ -16325,6 +16338,9 @@ export declare type CustomerServiceMutationApiUpdateCustomDetailArgs = {
|
|
|
16325
16338
|
export declare type CustomerServiceMutationApiUpdateCustomDetailConfigArgs = {
|
|
16326
16339
|
input: CustomerServiceCustomDetailConfigMetadataUpdateInput;
|
|
16327
16340
|
};
|
|
16341
|
+
export declare type CustomerServiceMutationApiUpdateCustomDetailContextConfigsArgs = {
|
|
16342
|
+
input: Array<CustomerServiceCustomDetailContextInput>;
|
|
16343
|
+
};
|
|
16328
16344
|
export declare type CustomerServiceMutationApiUpdateCustomDetailPermissionsArgs = {
|
|
16329
16345
|
input: CustomerServiceCustomDetailPermissionsUpdateInput;
|
|
16330
16346
|
};
|
|
@@ -16614,6 +16630,12 @@ export declare type CustomerServiceStatusPayload = Payload & {
|
|
|
16614
16630
|
errors?: Maybe<Array<MutationError>>;
|
|
16615
16631
|
success: Scalars['Boolean']['output'];
|
|
16616
16632
|
};
|
|
16633
|
+
export declare type CustomerServiceUpdateCustomDetailContextConfigsPayload = Payload & {
|
|
16634
|
+
__typename?: 'CustomerServiceUpdateCustomDetailContextConfigsPayload';
|
|
16635
|
+
errors?: Maybe<Array<MutationError>>;
|
|
16636
|
+
success: Scalars['Boolean']['output'];
|
|
16637
|
+
successfullyUpdatedCustomDetails: Array<CustomerServiceCustomDetail>;
|
|
16638
|
+
};
|
|
16617
16639
|
export declare type CustomerServiceUpdateCustomDetailValueInput = {
|
|
16618
16640
|
id: CustomerServiceCustomDetailEntityTypeId;
|
|
16619
16641
|
name: Scalars['String']['input'];
|
|
@@ -24993,6 +25015,7 @@ export declare type GraphStore = {
|
|
|
24993
25015
|
testPerfhammerRelationshipInverseBatch?: Maybe<GraphStoreBatchTestPerfhammerRelationshipConnection>;
|
|
24994
25016
|
testPerfhammerRelationshipInverseRelationship?: Maybe<GraphStoreFullTestPerfhammerRelationshipConnection>;
|
|
24995
25017
|
testPerfhammerRelationshipRelationship?: Maybe<GraphStoreFullTestPerfhammerRelationshipConnection>;
|
|
25018
|
+
userOwnsComponent?: Maybe<GraphStoreSimplifiedUserOwnsComponentConnection>;
|
|
24996
25019
|
versionAssociatedBranchInverse?: Maybe<GraphStoreSimplifiedVersionAssociatedBranchInverseConnection>;
|
|
24997
25020
|
versionAssociatedBranchInverseRelationship?: Maybe<GraphStoreFullVersionAssociatedBranchConnection>;
|
|
24998
25021
|
versionAssociatedBranchRelationship?: Maybe<GraphStoreFullVersionAssociatedBranchConnection>;
|
|
@@ -26951,6 +26974,12 @@ export declare type GraphStoreTestPerfhammerRelationshipRelationshipArgs = {
|
|
|
26951
26974
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
26952
26975
|
id: Scalars['ID']['input'];
|
|
26953
26976
|
};
|
|
26977
|
+
export declare type GraphStoreUserOwnsComponentArgs = {
|
|
26978
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
26979
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
26980
|
+
id: Scalars['ID']['input'];
|
|
26981
|
+
sort?: InputMaybe<GraphStoreUserOwnsComponentSortInput>;
|
|
26982
|
+
};
|
|
26954
26983
|
export declare type GraphStoreVersionAssociatedBranchInverseArgs = {
|
|
26955
26984
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
26956
26985
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
@@ -28258,6 +28287,7 @@ export declare type GraphStoreDateFilterInput = {
|
|
|
28258
28287
|
};
|
|
28259
28288
|
export declare type GraphStoreDeleteComponentImpactedByIncidentInput = {
|
|
28260
28289
|
relationships: Array<GraphStoreDeleteComponentImpactedByIncidentRelationshipInput>;
|
|
28290
|
+
synchronousWrite?: InputMaybe<Scalars['Boolean']['input']>;
|
|
28261
28291
|
};
|
|
28262
28292
|
export declare type GraphStoreDeleteComponentImpactedByIncidentPayload = Payload & {
|
|
28263
28293
|
__typename?: 'GraphStoreDeleteComponentImpactedByIncidentPayload';
|
|
@@ -28270,6 +28300,7 @@ export declare type GraphStoreDeleteComponentImpactedByIncidentRelationshipInput
|
|
|
28270
28300
|
};
|
|
28271
28301
|
export declare type GraphStoreDeleteFocusAreaHasAtlasGoalInput = {
|
|
28272
28302
|
relationships: Array<GraphStoreDeleteFocusAreaHasAtlasGoalRelationshipInput>;
|
|
28303
|
+
synchronousWrite?: InputMaybe<Scalars['Boolean']['input']>;
|
|
28273
28304
|
};
|
|
28274
28305
|
export declare type GraphStoreDeleteFocusAreaHasAtlasGoalPayload = Payload & {
|
|
28275
28306
|
__typename?: 'GraphStoreDeleteFocusAreaHasAtlasGoalPayload';
|
|
@@ -28282,6 +28313,7 @@ export declare type GraphStoreDeleteFocusAreaHasAtlasGoalRelationshipInput = {
|
|
|
28282
28313
|
};
|
|
28283
28314
|
export declare type GraphStoreDeleteIncidentAssociatedPostIncidentReviewLinkInput = {
|
|
28284
28315
|
relationships: Array<GraphStoreDeleteIncidentAssociatedPostIncidentReviewLinkRelationshipInput>;
|
|
28316
|
+
synchronousWrite?: InputMaybe<Scalars['Boolean']['input']>;
|
|
28285
28317
|
};
|
|
28286
28318
|
export declare type GraphStoreDeleteIncidentAssociatedPostIncidentReviewLinkPayload = Payload & {
|
|
28287
28319
|
__typename?: 'GraphStoreDeleteIncidentAssociatedPostIncidentReviewLinkPayload';
|
|
@@ -28294,6 +28326,7 @@ export declare type GraphStoreDeleteIncidentAssociatedPostIncidentReviewLinkRela
|
|
|
28294
28326
|
};
|
|
28295
28327
|
export declare type GraphStoreDeleteIncidentHasActionItemInput = {
|
|
28296
28328
|
relationships: Array<GraphStoreDeleteIncidentHasActionItemRelationshipInput>;
|
|
28329
|
+
synchronousWrite?: InputMaybe<Scalars['Boolean']['input']>;
|
|
28297
28330
|
};
|
|
28298
28331
|
export declare type GraphStoreDeleteIncidentHasActionItemPayload = Payload & {
|
|
28299
28332
|
__typename?: 'GraphStoreDeleteIncidentHasActionItemPayload';
|
|
@@ -28306,6 +28339,7 @@ export declare type GraphStoreDeleteIncidentHasActionItemRelationshipInput = {
|
|
|
28306
28339
|
};
|
|
28307
28340
|
export declare type GraphStoreDeleteIncidentLinkedJswIssueInput = {
|
|
28308
28341
|
relationships: Array<GraphStoreDeleteIncidentLinkedJswIssueRelationshipInput>;
|
|
28342
|
+
synchronousWrite?: InputMaybe<Scalars['Boolean']['input']>;
|
|
28309
28343
|
};
|
|
28310
28344
|
export declare type GraphStoreDeleteIncidentLinkedJswIssuePayload = Payload & {
|
|
28311
28345
|
__typename?: 'GraphStoreDeleteIncidentLinkedJswIssuePayload';
|
|
@@ -28318,6 +28352,7 @@ export declare type GraphStoreDeleteIncidentLinkedJswIssueRelationshipInput = {
|
|
|
28318
28352
|
};
|
|
28319
28353
|
export declare type GraphStoreDeleteIssueToWhiteboardInput = {
|
|
28320
28354
|
relationships: Array<GraphStoreDeleteIssueToWhiteboardRelationshipInput>;
|
|
28355
|
+
synchronousWrite?: InputMaybe<Scalars['Boolean']['input']>;
|
|
28321
28356
|
};
|
|
28322
28357
|
export declare type GraphStoreDeleteIssueToWhiteboardPayload = Payload & {
|
|
28323
28358
|
__typename?: 'GraphStoreDeleteIssueToWhiteboardPayload';
|
|
@@ -28330,6 +28365,7 @@ export declare type GraphStoreDeleteIssueToWhiteboardRelationshipInput = {
|
|
|
28330
28365
|
};
|
|
28331
28366
|
export declare type GraphStoreDeleteJswProjectAssociatedComponentInput = {
|
|
28332
28367
|
relationships: Array<GraphStoreDeleteJswProjectAssociatedComponentRelationshipInput>;
|
|
28368
|
+
synchronousWrite?: InputMaybe<Scalars['Boolean']['input']>;
|
|
28333
28369
|
};
|
|
28334
28370
|
export declare type GraphStoreDeleteJswProjectAssociatedComponentPayload = Payload & {
|
|
28335
28371
|
__typename?: 'GraphStoreDeleteJswProjectAssociatedComponentPayload';
|
|
@@ -28342,6 +28378,7 @@ export declare type GraphStoreDeleteJswProjectAssociatedComponentRelationshipInp
|
|
|
28342
28378
|
};
|
|
28343
28379
|
export declare type GraphStoreDeleteProjectAssociatedOpsgenieTeamInput = {
|
|
28344
28380
|
relationships: Array<GraphStoreDeleteProjectAssociatedOpsgenieTeamRelationshipInput>;
|
|
28381
|
+
synchronousWrite?: InputMaybe<Scalars['Boolean']['input']>;
|
|
28345
28382
|
};
|
|
28346
28383
|
export declare type GraphStoreDeleteProjectAssociatedOpsgenieTeamPayload = Payload & {
|
|
28347
28384
|
__typename?: 'GraphStoreDeleteProjectAssociatedOpsgenieTeamPayload';
|
|
@@ -28354,6 +28391,7 @@ export declare type GraphStoreDeleteProjectAssociatedOpsgenieTeamRelationshipInp
|
|
|
28354
28391
|
};
|
|
28355
28392
|
export declare type GraphStoreDeleteProjectAssociatedToSecurityContainerInput = {
|
|
28356
28393
|
relationships: Array<GraphStoreDeleteProjectAssociatedToSecurityContainerRelationshipInput>;
|
|
28394
|
+
synchronousWrite?: InputMaybe<Scalars['Boolean']['input']>;
|
|
28357
28395
|
};
|
|
28358
28396
|
export declare type GraphStoreDeleteProjectAssociatedToSecurityContainerPayload = Payload & {
|
|
28359
28397
|
__typename?: 'GraphStoreDeleteProjectAssociatedToSecurityContainerPayload';
|
|
@@ -28366,6 +28404,7 @@ export declare type GraphStoreDeleteProjectAssociatedToSecurityContainerRelation
|
|
|
28366
28404
|
};
|
|
28367
28405
|
export declare type GraphStoreDeleteProjectDisassociatedRepoInput = {
|
|
28368
28406
|
relationships: Array<GraphStoreDeleteProjectDisassociatedRepoRelationshipInput>;
|
|
28407
|
+
synchronousWrite?: InputMaybe<Scalars['Boolean']['input']>;
|
|
28369
28408
|
};
|
|
28370
28409
|
export declare type GraphStoreDeleteProjectDisassociatedRepoPayload = Payload & {
|
|
28371
28410
|
__typename?: 'GraphStoreDeleteProjectDisassociatedRepoPayload';
|
|
@@ -28378,6 +28417,7 @@ export declare type GraphStoreDeleteProjectDisassociatedRepoRelationshipInput =
|
|
|
28378
28417
|
};
|
|
28379
28418
|
export declare type GraphStoreDeleteProjectDocumentationEntityInput = {
|
|
28380
28419
|
relationships: Array<GraphStoreDeleteProjectDocumentationEntityRelationshipInput>;
|
|
28420
|
+
synchronousWrite?: InputMaybe<Scalars['Boolean']['input']>;
|
|
28381
28421
|
};
|
|
28382
28422
|
export declare type GraphStoreDeleteProjectDocumentationEntityPayload = Payload & {
|
|
28383
28423
|
__typename?: 'GraphStoreDeleteProjectDocumentationEntityPayload';
|
|
@@ -28390,6 +28430,7 @@ export declare type GraphStoreDeleteProjectDocumentationEntityRelationshipInput
|
|
|
28390
28430
|
};
|
|
28391
28431
|
export declare type GraphStoreDeleteProjectDocumentationPageInput = {
|
|
28392
28432
|
relationships: Array<GraphStoreDeleteProjectDocumentationPageRelationshipInput>;
|
|
28433
|
+
synchronousWrite?: InputMaybe<Scalars['Boolean']['input']>;
|
|
28393
28434
|
};
|
|
28394
28435
|
export declare type GraphStoreDeleteProjectDocumentationPagePayload = Payload & {
|
|
28395
28436
|
__typename?: 'GraphStoreDeleteProjectDocumentationPagePayload';
|
|
@@ -28402,6 +28443,7 @@ export declare type GraphStoreDeleteProjectDocumentationPageRelationshipInput =
|
|
|
28402
28443
|
};
|
|
28403
28444
|
export declare type GraphStoreDeleteProjectDocumentationSpaceInput = {
|
|
28404
28445
|
relationships: Array<GraphStoreDeleteProjectDocumentationSpaceRelationshipInput>;
|
|
28446
|
+
synchronousWrite?: InputMaybe<Scalars['Boolean']['input']>;
|
|
28405
28447
|
};
|
|
28406
28448
|
export declare type GraphStoreDeleteProjectDocumentationSpacePayload = Payload & {
|
|
28407
28449
|
__typename?: 'GraphStoreDeleteProjectDocumentationSpacePayload';
|
|
@@ -28414,6 +28456,7 @@ export declare type GraphStoreDeleteProjectDocumentationSpaceRelationshipInput =
|
|
|
28414
28456
|
};
|
|
28415
28457
|
export declare type GraphStoreDeleteProjectHasRelatedWorkWithProjectInput = {
|
|
28416
28458
|
relationships: Array<GraphStoreDeleteProjectHasRelatedWorkWithProjectRelationshipInput>;
|
|
28459
|
+
synchronousWrite?: InputMaybe<Scalars['Boolean']['input']>;
|
|
28417
28460
|
};
|
|
28418
28461
|
export declare type GraphStoreDeleteProjectHasRelatedWorkWithProjectPayload = Payload & {
|
|
28419
28462
|
__typename?: 'GraphStoreDeleteProjectHasRelatedWorkWithProjectPayload';
|
|
@@ -28426,6 +28469,7 @@ export declare type GraphStoreDeleteProjectHasRelatedWorkWithProjectRelationship
|
|
|
28426
28469
|
};
|
|
28427
28470
|
export declare type GraphStoreDeleteProjectHasSharedVersionWithInput = {
|
|
28428
28471
|
relationships: Array<GraphStoreDeleteProjectHasSharedVersionWithRelationshipInput>;
|
|
28472
|
+
synchronousWrite?: InputMaybe<Scalars['Boolean']['input']>;
|
|
28429
28473
|
};
|
|
28430
28474
|
export declare type GraphStoreDeleteProjectHasSharedVersionWithPayload = Payload & {
|
|
28431
28475
|
__typename?: 'GraphStoreDeleteProjectHasSharedVersionWithPayload';
|
|
@@ -28438,6 +28482,7 @@ export declare type GraphStoreDeleteProjectHasSharedVersionWithRelationshipInput
|
|
|
28438
28482
|
};
|
|
28439
28483
|
export declare type GraphStoreDeleteProjectHasVersionInput = {
|
|
28440
28484
|
relationships: Array<GraphStoreDeleteProjectHasVersionRelationshipInput>;
|
|
28485
|
+
synchronousWrite?: InputMaybe<Scalars['Boolean']['input']>;
|
|
28441
28486
|
};
|
|
28442
28487
|
export declare type GraphStoreDeleteProjectHasVersionPayload = Payload & {
|
|
28443
28488
|
__typename?: 'GraphStoreDeleteProjectHasVersionPayload';
|
|
@@ -28450,6 +28495,7 @@ export declare type GraphStoreDeleteProjectHasVersionRelationshipInput = {
|
|
|
28450
28495
|
};
|
|
28451
28496
|
export declare type GraphStoreDeleteSprintRetrospectivePageInput = {
|
|
28452
28497
|
relationships: Array<GraphStoreDeleteSprintRetrospectivePageRelationshipInput>;
|
|
28498
|
+
synchronousWrite?: InputMaybe<Scalars['Boolean']['input']>;
|
|
28453
28499
|
};
|
|
28454
28500
|
export declare type GraphStoreDeleteSprintRetrospectivePagePayload = Payload & {
|
|
28455
28501
|
__typename?: 'GraphStoreDeleteSprintRetrospectivePagePayload';
|
|
@@ -28462,6 +28508,7 @@ export declare type GraphStoreDeleteSprintRetrospectivePageRelationshipInput = {
|
|
|
28462
28508
|
};
|
|
28463
28509
|
export declare type GraphStoreDeleteSprintRetrospectiveWhiteboardInput = {
|
|
28464
28510
|
relationships: Array<GraphStoreDeleteSprintRetrospectiveWhiteboardRelationshipInput>;
|
|
28511
|
+
synchronousWrite?: InputMaybe<Scalars['Boolean']['input']>;
|
|
28465
28512
|
};
|
|
28466
28513
|
export declare type GraphStoreDeleteSprintRetrospectiveWhiteboardPayload = Payload & {
|
|
28467
28514
|
__typename?: 'GraphStoreDeleteSprintRetrospectiveWhiteboardPayload';
|
|
@@ -28474,6 +28521,7 @@ export declare type GraphStoreDeleteSprintRetrospectiveWhiteboardRelationshipInp
|
|
|
28474
28521
|
};
|
|
28475
28522
|
export declare type GraphStoreDeleteTestPerfhammerRelationshipInput = {
|
|
28476
28523
|
relationships: Array<GraphStoreDeleteTestPerfhammerRelationshipRelationshipInput>;
|
|
28524
|
+
synchronousWrite?: InputMaybe<Scalars['Boolean']['input']>;
|
|
28477
28525
|
};
|
|
28478
28526
|
export declare type GraphStoreDeleteTestPerfhammerRelationshipPayload = Payload & {
|
|
28479
28527
|
__typename?: 'GraphStoreDeleteTestPerfhammerRelationshipPayload';
|
|
@@ -28486,6 +28534,7 @@ export declare type GraphStoreDeleteTestPerfhammerRelationshipRelationshipInput
|
|
|
28486
28534
|
};
|
|
28487
28535
|
export declare type GraphStoreDeleteTownsquareTagIsAliasOfTownsquareTagInput = {
|
|
28488
28536
|
relationships: Array<GraphStoreDeleteTownsquareTagIsAliasOfTownsquareTagRelationshipInput>;
|
|
28537
|
+
synchronousWrite?: InputMaybe<Scalars['Boolean']['input']>;
|
|
28489
28538
|
};
|
|
28490
28539
|
export declare type GraphStoreDeleteTownsquareTagIsAliasOfTownsquareTagPayload = Payload & {
|
|
28491
28540
|
__typename?: 'GraphStoreDeleteTownsquareTagIsAliasOfTownsquareTagPayload';
|
|
@@ -28498,6 +28547,7 @@ export declare type GraphStoreDeleteTownsquareTagIsAliasOfTownsquareTagRelations
|
|
|
28498
28547
|
};
|
|
28499
28548
|
export declare type GraphStoreDeleteVersionUserAssociatedFeatureFlagInput = {
|
|
28500
28549
|
relationships: Array<GraphStoreDeleteVersionUserAssociatedFeatureFlagRelationshipInput>;
|
|
28550
|
+
synchronousWrite?: InputMaybe<Scalars['Boolean']['input']>;
|
|
28501
28551
|
};
|
|
28502
28552
|
export declare type GraphStoreDeleteVersionUserAssociatedFeatureFlagPayload = Payload & {
|
|
28503
28553
|
__typename?: 'GraphStoreDeleteVersionUserAssociatedFeatureFlagPayload';
|
|
@@ -28510,6 +28560,7 @@ export declare type GraphStoreDeleteVersionUserAssociatedFeatureFlagRelationship
|
|
|
28510
28560
|
};
|
|
28511
28561
|
export declare type GraphStoreDeleteVulnerabilityAssociatedIssueInput = {
|
|
28512
28562
|
relationships: Array<GraphStoreDeleteVulnerabilityAssociatedIssueRelationshipInput>;
|
|
28563
|
+
synchronousWrite?: InputMaybe<Scalars['Boolean']['input']>;
|
|
28513
28564
|
};
|
|
28514
28565
|
export declare type GraphStoreDeleteVulnerabilityAssociatedIssuePayload = Payload & {
|
|
28515
28566
|
__typename?: 'GraphStoreDeleteVulnerabilityAssociatedIssuePayload';
|
|
@@ -35166,6 +35217,22 @@ export declare type GraphStoreSimplifiedTestPerfhammerRelationshipInverseEdge =
|
|
|
35166
35217
|
node?: Maybe<GraphStoreSimplifiedTestPerfhammerRelationshipInverseUnion>;
|
|
35167
35218
|
};
|
|
35168
35219
|
export declare type GraphStoreSimplifiedTestPerfhammerRelationshipInverseUnion = JiraIssue;
|
|
35220
|
+
export declare type GraphStoreSimplifiedUserOwnsComponentConnection = HasPageInfo & HasTotal & {
|
|
35221
|
+
__typename?: 'GraphStoreSimplifiedUserOwnsComponentConnection';
|
|
35222
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedUserOwnsComponentEdge>>>;
|
|
35223
|
+
isExactCount?: Maybe<Scalars['Boolean']['output']>;
|
|
35224
|
+
pageInfo: PageInfo;
|
|
35225
|
+
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
35226
|
+
};
|
|
35227
|
+
export declare type GraphStoreSimplifiedUserOwnsComponentEdge = {
|
|
35228
|
+
__typename?: 'GraphStoreSimplifiedUserOwnsComponentEdge';
|
|
35229
|
+
createdAt: Scalars['DateTime']['output'];
|
|
35230
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
35231
|
+
id: Scalars['ID']['output'];
|
|
35232
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
35233
|
+
node?: Maybe<GraphStoreSimplifiedUserOwnsComponentUnion>;
|
|
35234
|
+
};
|
|
35235
|
+
export declare type GraphStoreSimplifiedUserOwnsComponentUnion = CompassComponent;
|
|
35169
35236
|
export declare type GraphStoreSimplifiedVersionAssociatedBranchInverseConnection = HasPageInfo & HasTotal & {
|
|
35170
35237
|
__typename?: 'GraphStoreSimplifiedVersionAssociatedBranchInverseConnection';
|
|
35171
35238
|
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedVersionAssociatedBranchInverseEdge>>>;
|
|
@@ -35800,6 +35867,12 @@ export declare type GraphStoreTestPerfhammerMaterializationSortInput = {
|
|
|
35800
35867
|
export declare type GraphStoreTestPerfhammerRelationshipSortInput = {
|
|
35801
35868
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
35802
35869
|
};
|
|
35870
|
+
export declare type GraphStoreUserOwnsComponentSortInput = {
|
|
35871
|
+
createdAt?: InputMaybe<GraphStoreSortInput>;
|
|
35872
|
+
fromAti?: InputMaybe<GraphStoreSortInput>;
|
|
35873
|
+
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
35874
|
+
toAti?: InputMaybe<GraphStoreSortInput>;
|
|
35875
|
+
};
|
|
35803
35876
|
export declare type GraphStoreVersionAssociatedBranchSortInput = {
|
|
35804
35877
|
createdAt?: InputMaybe<GraphStoreSortInput>;
|
|
35805
35878
|
fromAti?: InputMaybe<GraphStoreSortInput>;
|
|
@@ -37993,17 +38066,12 @@ export declare type InlineColumnEditConfig = {
|
|
|
37993
38066
|
export declare type Insights = {
|
|
37994
38067
|
__typename?: 'Insights';
|
|
37995
38068
|
githubOnboardingDetails: InsightsGithubOnboardingDetails;
|
|
37996
|
-
nextBestTasksByContextAri: Array<InsightsNextBestTask>;
|
|
37997
38069
|
nextBestTasksByContextAriPaginated: InsightsNextBestTaskConnection;
|
|
37998
38070
|
};
|
|
37999
38071
|
export declare type InsightsGithubOnboardingDetailsArgs = {
|
|
38000
38072
|
cloudId: Scalars['ID']['input'];
|
|
38001
38073
|
projectAri?: InputMaybe<Scalars['ID']['input']>;
|
|
38002
38074
|
};
|
|
38003
|
-
export declare type InsightsNextBestTasksByContextAriArgs = {
|
|
38004
|
-
contextAri: InsightsContextAri;
|
|
38005
|
-
statusId?: InputMaybe<Scalars['String']['input']>;
|
|
38006
|
-
};
|
|
38007
38075
|
export declare type InsightsNextBestTasksByContextAriPaginatedArgs = {
|
|
38008
38076
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
38009
38077
|
contextAri: InsightsContextAri;
|
|
@@ -38029,13 +38097,6 @@ export declare type InsightsBlockedIssue = {
|
|
|
38029
38097
|
issueKey: Scalars['String']['output'];
|
|
38030
38098
|
title: Scalars['String']['output'];
|
|
38031
38099
|
};
|
|
38032
|
-
export declare type InsightsBlockingIssueDetails = {
|
|
38033
|
-
__typename?: 'InsightsBlockingIssueDetails';
|
|
38034
|
-
blockedIssues?: Maybe<Array<InsightsBlockedIssue>>;
|
|
38035
|
-
issueIconUrl: Scalars['String']['output'];
|
|
38036
|
-
issueId: Scalars['String']['output'];
|
|
38037
|
-
issueKey: Scalars['String']['output'];
|
|
38038
|
-
};
|
|
38039
38100
|
export declare type InsightsBlockingIssueTask = InsightsNextBestTaskCommon & {
|
|
38040
38101
|
__typename?: 'InsightsBlockingIssueTask';
|
|
38041
38102
|
blockedIssues?: Maybe<Array<InsightsBlockedIssue>>;
|
|
@@ -38046,15 +38107,6 @@ export declare type InsightsBlockingIssueTask = InsightsNextBestTaskCommon & {
|
|
|
38046
38107
|
title: Scalars['String']['output'];
|
|
38047
38108
|
url: Scalars['String']['output'];
|
|
38048
38109
|
};
|
|
38049
|
-
export declare type InsightsBuildDetails = {
|
|
38050
|
-
__typename?: 'InsightsBuildDetails';
|
|
38051
|
-
buildNumber: Scalars['Int']['output'];
|
|
38052
|
-
issueId: Scalars['String']['output'];
|
|
38053
|
-
issueKey: Scalars['String']['output'];
|
|
38054
|
-
issueName: Scalars['String']['output'];
|
|
38055
|
-
lastUpdated: Scalars['String']['output'];
|
|
38056
|
-
numberOfFailedBuilds: Scalars['Int']['output'];
|
|
38057
|
-
};
|
|
38058
38110
|
export declare type InsightsBuildTask = InsightsNextBestTaskCommon & {
|
|
38059
38111
|
__typename?: 'InsightsBuildTask';
|
|
38060
38112
|
buildNumber: Scalars['Int']['output'];
|
|
@@ -38082,17 +38134,6 @@ export declare type InsightsCriticalVulnerabilityTask = InsightsNextBestTaskComm
|
|
|
38082
38134
|
title: Scalars['String']['output'];
|
|
38083
38135
|
url: Scalars['String']['output'];
|
|
38084
38136
|
};
|
|
38085
|
-
export declare type InsightsDeploymentDetails = {
|
|
38086
|
-
__typename?: 'InsightsDeploymentDetails';
|
|
38087
|
-
environmentNames: Array<Scalars['String']['output']>;
|
|
38088
|
-
environmentType: InsightsEnvironmentType;
|
|
38089
|
-
issueId: Scalars['String']['output'];
|
|
38090
|
-
issueKey: Scalars['String']['output'];
|
|
38091
|
-
issueName: Scalars['String']['output'];
|
|
38092
|
-
lastUpdated: Scalars['String']['output'];
|
|
38093
|
-
numberOfFailedDeployments: Scalars['Int']['output'];
|
|
38094
|
-
pipelineName: Scalars['String']['output'];
|
|
38095
|
-
};
|
|
38096
38137
|
export declare type InsightsDeploymentTask = InsightsNextBestTaskCommon & {
|
|
38097
38138
|
__typename?: 'InsightsDeploymentTask';
|
|
38098
38139
|
environmentNames: Array<Scalars['String']['output']>;
|
|
@@ -38166,14 +38207,6 @@ export declare type InsightsMutationErrorExtension = MutationErrorExtension & {
|
|
|
38166
38207
|
errorType?: Maybe<Scalars['String']['output']>;
|
|
38167
38208
|
statusCode?: Maybe<Scalars['Int']['output']>;
|
|
38168
38209
|
};
|
|
38169
|
-
export declare type InsightsNextBestTask = {
|
|
38170
|
-
__typename?: 'InsightsNextBestTask';
|
|
38171
|
-
details: InsightsNextBestTaskDetails;
|
|
38172
|
-
id: Scalars['String']['output'];
|
|
38173
|
-
task: InsightsTaskType;
|
|
38174
|
-
title: Scalars['String']['output'];
|
|
38175
|
-
url: Scalars['String']['output'];
|
|
38176
|
-
};
|
|
38177
38210
|
export declare enum InsightsNextBestTaskAction {
|
|
38178
38211
|
Remove = "REMOVE",
|
|
38179
38212
|
Snooze = "SNOOZE"
|
|
@@ -38190,24 +38223,11 @@ export declare type InsightsNextBestTaskConnection = {
|
|
|
38190
38223
|
pageInfo: PageInfo;
|
|
38191
38224
|
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
38192
38225
|
};
|
|
38193
|
-
export declare type InsightsNextBestTaskDetails = InsightsBlockingIssueDetails | InsightsBuildDetails | InsightsDeploymentDetails | InsightsPullRequestNeedsWorkDetails | InsightsPullRequestReviewDetails | InsightsVulnDetails;
|
|
38194
38226
|
export declare type InsightsNextBestTaskEdge = {
|
|
38195
38227
|
__typename?: 'InsightsNextBestTaskEdge';
|
|
38196
38228
|
cursor: Scalars['String']['output'];
|
|
38197
38229
|
node?: Maybe<InsightsNextBestTaskCommon>;
|
|
38198
38230
|
};
|
|
38199
|
-
export declare type InsightsPullRequestNeedsWorkDetails = {
|
|
38200
|
-
__typename?: 'InsightsPullRequestNeedsWorkDetails';
|
|
38201
|
-
commentCount: Scalars['Int']['output'];
|
|
38202
|
-
destinationBranchName?: Maybe<Scalars['String']['output']>;
|
|
38203
|
-
lastUpdated: Scalars['String']['output'];
|
|
38204
|
-
needsWorkCount: Scalars['Int']['output'];
|
|
38205
|
-
providerIconUrl?: Maybe<Scalars['String']['output']>;
|
|
38206
|
-
providerName?: Maybe<Scalars['String']['output']>;
|
|
38207
|
-
repositoryName?: Maybe<Scalars['String']['output']>;
|
|
38208
|
-
reviewers?: Maybe<Array<Maybe<InsightsUserDetail>>>;
|
|
38209
|
-
sourceBranchName?: Maybe<Scalars['String']['output']>;
|
|
38210
|
-
};
|
|
38211
38231
|
export declare type InsightsPullRequestNeedsWorkTask = InsightsNextBestTaskCommon & {
|
|
38212
38232
|
__typename?: 'InsightsPullRequestNeedsWorkTask';
|
|
38213
38233
|
commentCount: Scalars['Int']['output'];
|
|
@@ -38223,18 +38243,6 @@ export declare type InsightsPullRequestNeedsWorkTask = InsightsNextBestTaskCommo
|
|
|
38223
38243
|
title: Scalars['String']['output'];
|
|
38224
38244
|
url: Scalars['String']['output'];
|
|
38225
38245
|
};
|
|
38226
|
-
export declare type InsightsPullRequestReviewDetails = {
|
|
38227
|
-
__typename?: 'InsightsPullRequestReviewDetails';
|
|
38228
|
-
approvalsCount: Scalars['Int']['output'];
|
|
38229
|
-
author?: Maybe<InsightsUserDetail>;
|
|
38230
|
-
commentCount: Scalars['Int']['output'];
|
|
38231
|
-
destinationBranchName?: Maybe<Scalars['String']['output']>;
|
|
38232
|
-
lastUpdated: Scalars['String']['output'];
|
|
38233
|
-
providerIconUrl?: Maybe<Scalars['String']['output']>;
|
|
38234
|
-
providerName?: Maybe<Scalars['String']['output']>;
|
|
38235
|
-
repositoryName?: Maybe<Scalars['String']['output']>;
|
|
38236
|
-
sourceBranchName?: Maybe<Scalars['String']['output']>;
|
|
38237
|
-
};
|
|
38238
38246
|
export declare type InsightsPullRequestReviewTask = InsightsNextBestTaskCommon & {
|
|
38239
38247
|
__typename?: 'InsightsPullRequestReviewTask';
|
|
38240
38248
|
approvalsCount: Scalars['Int']['output'];
|
|
@@ -38280,15 +38288,6 @@ export declare type InsightsUserDetail = {
|
|
|
38280
38288
|
id: Scalars['ID']['output'];
|
|
38281
38289
|
name: Scalars['String']['output'];
|
|
38282
38290
|
};
|
|
38283
|
-
export declare type InsightsVulnDetails = {
|
|
38284
|
-
__typename?: 'InsightsVulnDetails';
|
|
38285
|
-
id: Scalars['ID']['output'];
|
|
38286
|
-
introducedDate: Scalars['String']['output'];
|
|
38287
|
-
issueId: Scalars['String']['output'];
|
|
38288
|
-
issueKey: Scalars['String']['output'];
|
|
38289
|
-
securityContainerName: Scalars['String']['output'];
|
|
38290
|
-
status: InsightsVulnerabilityStatus;
|
|
38291
|
-
};
|
|
38292
38291
|
export declare enum InsightsVulnerabilityStatus {
|
|
38293
38292
|
Closed = "CLOSED",
|
|
38294
38293
|
Ignored = "IGNORED",
|
|
@@ -39748,6 +39747,7 @@ export declare enum JiraBoardLocationType {
|
|
|
39748
39747
|
Project = "PROJECT",
|
|
39749
39748
|
User = "USER"
|
|
39750
39749
|
}
|
|
39750
|
+
export declare type JiraBoardResult = JiraBoard | QueryError;
|
|
39751
39751
|
export declare enum JiraBoardType {
|
|
39752
39752
|
Kanban = "KANBAN",
|
|
39753
39753
|
Scrum = "SCRUM"
|
|
@@ -43883,6 +43883,11 @@ export declare type JiraIssueSearchFieldSetsFilter = {
|
|
|
43883
43883
|
fieldSetSelectedState?: InputMaybe<JiraIssueSearchFieldSetSelectedState>;
|
|
43884
43884
|
searchString?: InputMaybe<Scalars['String']['input']>;
|
|
43885
43885
|
};
|
|
43886
|
+
export declare type JiraIssueSearchHierarchyPreferenceMutationPayload = Payload & {
|
|
43887
|
+
__typename?: 'JiraIssueSearchHierarchyPreferenceMutationPayload';
|
|
43888
|
+
errors?: Maybe<Array<MutationError>>;
|
|
43889
|
+
success: Scalars['Boolean']['output'];
|
|
43890
|
+
};
|
|
43886
43891
|
export declare type JiraIssueSearchInput = {
|
|
43887
43892
|
customInput?: InputMaybe<JiraIssueSearchCustomInput>;
|
|
43888
43893
|
filterId?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -43921,6 +43926,7 @@ export declare type JiraIssueSearchView = Node & {
|
|
|
43921
43926
|
filterId?: Maybe<Scalars['String']['output']>;
|
|
43922
43927
|
hasDefaultFieldSets?: Maybe<Scalars['Boolean']['output']>;
|
|
43923
43928
|
id: Scalars['ID']['output'];
|
|
43929
|
+
isHierarchyEnabled?: Maybe<Scalars['Boolean']['output']>;
|
|
43924
43930
|
namespace?: Maybe<Scalars['String']['output']>;
|
|
43925
43931
|
viewId?: Maybe<Scalars['String']['output']>;
|
|
43926
43932
|
};
|
|
@@ -45245,6 +45251,7 @@ export declare type JiraMutation = {
|
|
|
45245
45251
|
setApplicationProperties?: Maybe<JiraSetApplicationPropertiesPayload>;
|
|
45246
45252
|
setDefaultNavigationItem?: Maybe<JiraSetDefaultNavigationItemPayload>;
|
|
45247
45253
|
setEntityIsFavourite?: Maybe<JiraSetIsFavouritePayload>;
|
|
45254
|
+
setMostRecentlyViewedBoard?: Maybe<JiraSetMostRecentlyViewedBoardPayload>;
|
|
45248
45255
|
setUserBroadcastMessageDismissed?: Maybe<JiraUserBroadcastMessageActionPayload>;
|
|
45249
45256
|
sprintUpdate?: Maybe<JiraSprintMutationPayload>;
|
|
45250
45257
|
submitBulkOperation?: Maybe<JiraSubmitBulkOperationPayload>;
|
|
@@ -45266,6 +45273,7 @@ export declare type JiraMutation = {
|
|
|
45266
45273
|
updateGlobalNotificationOptions?: Maybe<JiraUpdateNotificationOptionsPayload>;
|
|
45267
45274
|
updateGlobalNotificationPreferences?: Maybe<JiraUpdateGlobalPreferencesPayload>;
|
|
45268
45275
|
updateIssueHierarchyConfig?: Maybe<JiraIssueHierarchyConfigurationMutationResult>;
|
|
45276
|
+
updateIssueSearchHierarchyPreference?: Maybe<JiraIssueSearchHierarchyPreferenceMutationPayload>;
|
|
45269
45277
|
updateIssueTypeField?: Maybe<JiraIssueTypeFieldPayload>;
|
|
45270
45278
|
updateJiraVersion?: Maybe<JiraUpdateVersionPayload>;
|
|
45271
45279
|
updateJiraVersionApproverDeclineReason?: Maybe<JiraVersionUpdateApproverDeclineReasonPayload>;
|
|
@@ -45574,6 +45582,9 @@ export declare type JiraMutationSetDefaultNavigationItemArgs = {
|
|
|
45574
45582
|
export declare type JiraMutationSetEntityIsFavouriteArgs = {
|
|
45575
45583
|
input: JiraSetIsFavouriteInput;
|
|
45576
45584
|
};
|
|
45585
|
+
export declare type JiraMutationSetMostRecentlyViewedBoardArgs = {
|
|
45586
|
+
id: Scalars['ID']['input'];
|
|
45587
|
+
};
|
|
45577
45588
|
export declare type JiraMutationSetUserBroadcastMessageDismissedArgs = {
|
|
45578
45589
|
cloudId: Scalars['ID']['input'];
|
|
45579
45590
|
id: Scalars['ID']['input'];
|
|
@@ -45642,6 +45653,10 @@ export declare type JiraMutationUpdateIssueHierarchyConfigArgs = {
|
|
|
45642
45653
|
cloudId: Scalars['ID']['input'];
|
|
45643
45654
|
input: JiraIssueHierarchyConfigurationMutationInput;
|
|
45644
45655
|
};
|
|
45656
|
+
export declare type JiraMutationUpdateIssueSearchHierarchyPreferenceArgs = {
|
|
45657
|
+
isHierarchyEnabled: Scalars['Boolean']['input'];
|
|
45658
|
+
viewId: Scalars['ID']['input'];
|
|
45659
|
+
};
|
|
45645
45660
|
export declare type JiraMutationUpdateIssueTypeFieldArgs = {
|
|
45646
45661
|
input: JiraUpdateIssueTypeFieldInput;
|
|
45647
45662
|
};
|
|
@@ -46772,6 +46787,7 @@ export declare type JiraProject = Node & {
|
|
|
46772
46787
|
linkedOperationsIncidentsByProject?: Maybe<GraphStoreSimplifiedJswProjectAssociatedIncidentConnection>;
|
|
46773
46788
|
linkedSecurityContainers?: Maybe<AriGraphRelationshipConnection>;
|
|
46774
46789
|
linkedSecurityVulnerabilitiesByProject?: Maybe<GraphJiraVulnerabilityConnection>;
|
|
46790
|
+
mostRecentlyViewedBoard?: Maybe<JiraBoardResult>;
|
|
46775
46791
|
name: Scalars['String']['output'];
|
|
46776
46792
|
navigationMetadata?: Maybe<JiraProjectNavigationMetadata>;
|
|
46777
46793
|
opsgenieTeamRelationships?: Maybe<JiraProjectAndOpsgenieTeamRelationshipConnection>;
|
|
@@ -47561,6 +47577,7 @@ export declare type JiraQuery = {
|
|
|
47561
47577
|
issueSearchViewByNamespaceAndViewId?: Maybe<JiraIssueSearchView>;
|
|
47562
47578
|
issueSearchViewResult?: Maybe<JiraIssueSearchViewResult>;
|
|
47563
47579
|
issuesByKey?: Maybe<Array<Maybe<JiraIssue>>>;
|
|
47580
|
+
jiraBoard?: Maybe<JiraBoardResult>;
|
|
47564
47581
|
jiraBulkTransitionsScreenDetails?: Maybe<JiraBulkTransitionScreenLayout>;
|
|
47565
47582
|
jiraCalendar?: Maybe<JiraCalendar>;
|
|
47566
47583
|
jiraFetchBulkOperationDetails?: Maybe<JiraFetchBulkOperationDetailsResponse>;
|
|
@@ -48049,6 +48066,9 @@ export declare type JiraQueryIssuesByKeyArgs = {
|
|
|
48049
48066
|
cloudId: Scalars['ID']['input'];
|
|
48050
48067
|
keys: Array<Scalars['String']['input']>;
|
|
48051
48068
|
};
|
|
48069
|
+
export declare type JiraQueryJiraBoardArgs = {
|
|
48070
|
+
id: Scalars['ID']['input'];
|
|
48071
|
+
};
|
|
48052
48072
|
export declare type JiraQueryJiraBulkTransitionsScreenDetailsArgs = {
|
|
48053
48073
|
issueIds: Array<Scalars['ID']['input']>;
|
|
48054
48074
|
transitionId: Scalars['Int']['input'];
|
|
@@ -48362,7 +48382,7 @@ export declare type JiraQuerySavedFiltersArgs = {
|
|
|
48362
48382
|
before?: InputMaybe<Scalars['String']['input']>;
|
|
48363
48383
|
cloudId: Scalars['ID']['input'];
|
|
48364
48384
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
48365
|
-
keyword
|
|
48385
|
+
keyword?: InputMaybe<Scalars['String']['input']>;
|
|
48366
48386
|
last?: InputMaybe<Scalars['Int']['input']>;
|
|
48367
48387
|
};
|
|
48368
48388
|
export declare type JiraQueryScreenIdByIssueIdArgs = {
|
|
@@ -50232,6 +50252,12 @@ export declare type JiraSetIsFavouritePayload = Payload & {
|
|
|
50232
50252
|
favouriteValue?: Maybe<JiraFavouriteValue>;
|
|
50233
50253
|
success: Scalars['Boolean']['output'];
|
|
50234
50254
|
};
|
|
50255
|
+
export declare type JiraSetMostRecentlyViewedBoardPayload = Payload & {
|
|
50256
|
+
__typename?: 'JiraSetMostRecentlyViewedBoardPayload';
|
|
50257
|
+
board?: Maybe<JiraBoard>;
|
|
50258
|
+
errors?: Maybe<Array<MutationError>>;
|
|
50259
|
+
success: Scalars['Boolean']['output'];
|
|
50260
|
+
};
|
|
50235
50261
|
export declare type JiraSetProjectSelectedDeploymentAppsPropertyInput = {
|
|
50236
50262
|
deploymentApps?: InputMaybe<Array<JiraDeploymentAppInput>>;
|
|
50237
50263
|
projectId: Scalars['ID']['input'];
|
|
@@ -51836,7 +51862,6 @@ export declare type JiraUserPreferences = {
|
|
|
51836
51862
|
issueViewDefaultPinnedFieldsBannerProject?: Maybe<Scalars['String']['output']>;
|
|
51837
51863
|
issueViewPinnedFields?: Maybe<Scalars['String']['output']>;
|
|
51838
51864
|
issueViewPinnedFieldsBannerLastInteracted?: Maybe<Scalars['DateTime']['output']>;
|
|
51839
|
-
issueViewPinnedFieldsWithDefault?: Maybe<Scalars['String']['output']>;
|
|
51840
51865
|
issueViewSidebarResizeRatio?: Maybe<Scalars['String']['output']>;
|
|
51841
51866
|
issueViewTimestampDisplayMode?: Maybe<JiraIssueViewTimestampDisplayMode>;
|
|
51842
51867
|
jqlBuilderSearchMode?: Maybe<JiraJqlBuilderSearchMode>;
|
|
@@ -51848,9 +51873,6 @@ export declare type JiraUserPreferencesIssueViewDefaultPinnedFieldsBannerProject
|
|
|
51848
51873
|
export declare type JiraUserPreferencesIssueViewPinnedFieldsArgs = {
|
|
51849
51874
|
projectKey: Scalars['String']['input'];
|
|
51850
51875
|
};
|
|
51851
|
-
export declare type JiraUserPreferencesIssueViewPinnedFieldsWithDefaultArgs = {
|
|
51852
|
-
projectKey: Scalars['String']['input'];
|
|
51853
|
-
};
|
|
51854
51876
|
export declare type JiraUserPreferencesMutation = {
|
|
51855
51877
|
__typename?: 'JiraUserPreferencesMutation';
|
|
51856
51878
|
setIssueNavigatorSearchLayout?: Maybe<JiraIssueNavigatorSearchLayoutMutationPayload>;
|
|
@@ -53795,10 +53817,12 @@ export declare type KnowledgeDiscoveryAdminhubBookmarkProperties = {
|
|
|
53795
53817
|
__typename?: 'KnowledgeDiscoveryAdminhubBookmarkProperties';
|
|
53796
53818
|
cloudId: Scalars['String']['output'];
|
|
53797
53819
|
createdTimestamp: Scalars['String']['output'];
|
|
53820
|
+
creator?: Maybe<User>;
|
|
53798
53821
|
creatorAccountId: Scalars['String']['output'];
|
|
53799
53822
|
description?: Maybe<Scalars['String']['output']>;
|
|
53800
53823
|
keyPhrases?: Maybe<Array<Scalars['String']['output']>>;
|
|
53801
53824
|
lastModifiedTimestamp: Scalars['String']['output'];
|
|
53825
|
+
lastModifier?: Maybe<User>;
|
|
53802
53826
|
lastModifierAccountId: Scalars['String']['output'];
|
|
53803
53827
|
orgId: Scalars['String']['output'];
|
|
53804
53828
|
title: Scalars['String']['output'];
|
|
@@ -54686,6 +54710,7 @@ export declare type MarketplaceConsoleArtifactFileInfo = {
|
|
|
54686
54710
|
};
|
|
54687
54711
|
export declare type MarketplaceConsoleConnectFrameworkAttributes = {
|
|
54688
54712
|
__typename?: 'MarketplaceConsoleConnectFrameworkAttributes';
|
|
54713
|
+
artifact?: Maybe<MarketplaceConsoleSoftwareArtifact>;
|
|
54689
54714
|
descriptorId: Scalars['ID']['output'];
|
|
54690
54715
|
descriptorUrl: Scalars['String']['output'];
|
|
54691
54716
|
scopes: Array<Scalars['String']['output']>;
|
|
@@ -54858,7 +54883,14 @@ export declare type MarketplaceConsoleForgeFrameworkAttributesInput = {
|
|
|
54858
54883
|
envId: Scalars['String']['input'];
|
|
54859
54884
|
versionId: Scalars['String']['input'];
|
|
54860
54885
|
};
|
|
54861
|
-
export declare type MarketplaceConsoleFrameworkAttributes =
|
|
54886
|
+
export declare type MarketplaceConsoleFrameworkAttributes = {
|
|
54887
|
+
__typename?: 'MarketplaceConsoleFrameworkAttributes';
|
|
54888
|
+
connect?: Maybe<MarketplaceConsoleConnectFrameworkAttributes>;
|
|
54889
|
+
external?: Maybe<MarketplaceConsoleExternalFrameworkAttributes>;
|
|
54890
|
+
forge?: Maybe<MarketplaceConsoleForgeFrameworkAttributes>;
|
|
54891
|
+
plugins?: Maybe<MarketplaceConsolePluginsFrameworkAttributes>;
|
|
54892
|
+
workflow?: Maybe<MarketplaceConsoleWorkflowFrameworkAttributes>;
|
|
54893
|
+
};
|
|
54862
54894
|
export declare type MarketplaceConsoleFrameworkAttributesInput = {
|
|
54863
54895
|
connect?: InputMaybe<MarketplaceConsoleConnectFrameworkAttributesInput>;
|
|
54864
54896
|
external?: InputMaybe<MarketplaceConsoleExternalFrameworkAttributesInput>;
|
|
@@ -54953,7 +54985,7 @@ export declare type MarketplaceConsoleMutationApi = {
|
|
|
54953
54985
|
deleteAppSoftwareToken?: Maybe<MarketplaceConsoleMutationVoidResponse>;
|
|
54954
54986
|
deleteAppVersion?: Maybe<MarketplaceConsoleMutationVoidResponse>;
|
|
54955
54987
|
editions?: Maybe<Array<Maybe<MarketplaceConsoleEditionResponse>>>;
|
|
54956
|
-
validateArtifactUrl?: Maybe<
|
|
54988
|
+
validateArtifactUrl?: Maybe<MarketplaceConsoleSoftwareArtifact>;
|
|
54957
54989
|
};
|
|
54958
54990
|
export declare type MarketplaceConsoleMutationApiActivateEditionsArgs = {
|
|
54959
54991
|
activationRequest: MarketplaceConsoleEditionsActivationRequest;
|
|
@@ -55045,6 +55077,7 @@ export declare enum MarketplaceConsolePluginFrameworkType {
|
|
|
55045
55077
|
}
|
|
55046
55078
|
export declare type MarketplaceConsolePluginsFrameworkAttributes = {
|
|
55047
55079
|
__typename?: 'MarketplaceConsolePluginsFrameworkAttributes';
|
|
55080
|
+
artifact?: Maybe<MarketplaceConsoleSoftwareArtifact>;
|
|
55048
55081
|
artifactId: Scalars['ID']['output'];
|
|
55049
55082
|
descriptorId?: Maybe<Scalars['String']['output']>;
|
|
55050
55083
|
pluginFrameworkType: MarketplaceConsolePluginFrameworkType;
|
|
@@ -55150,6 +55183,17 @@ export declare type MarketplaceConsoleProductMetadata = {
|
|
|
55150
55183
|
productId: Scalars['ID']['output'];
|
|
55151
55184
|
vendorId: Scalars['ID']['output'];
|
|
55152
55185
|
};
|
|
55186
|
+
export declare type MarketplaceConsoleProductTag = {
|
|
55187
|
+
__typename?: 'MarketplaceConsoleProductTag';
|
|
55188
|
+
description?: Maybe<Scalars['String']['output']>;
|
|
55189
|
+
id: Scalars['ID']['output'];
|
|
55190
|
+
name: Scalars['String']['output'];
|
|
55191
|
+
};
|
|
55192
|
+
export declare enum MarketplaceConsoleProductTagType {
|
|
55193
|
+
Category = "CATEGORY",
|
|
55194
|
+
Keywords = "KEYWORDS",
|
|
55195
|
+
Marketing = "MARKETING"
|
|
55196
|
+
}
|
|
55153
55197
|
export declare type MarketplaceConsoleQueryApi = {
|
|
55154
55198
|
__typename?: 'MarketplaceConsoleQueryApi';
|
|
55155
55199
|
appPrivateListings?: Maybe<MarketplaceConsolePrivateListings>;
|
|
@@ -55169,6 +55213,7 @@ export declare type MarketplaceConsoleQueryApi = {
|
|
|
55169
55213
|
product?: Maybe<MarketplaceConsoleProduct>;
|
|
55170
55214
|
productListingByAppId?: Maybe<MarketplaceConsoleProductListing>;
|
|
55171
55215
|
productMetadataByAppId?: Maybe<MarketplaceConsoleProductMetadata>;
|
|
55216
|
+
productTags: Array<MarketplaceConsoleProductTag>;
|
|
55172
55217
|
};
|
|
55173
55218
|
export declare type MarketplaceConsoleQueryApiAppPrivateListingsArgs = {
|
|
55174
55219
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -55218,14 +55263,17 @@ export declare type MarketplaceConsoleQueryApiProductListingByAppIdArgs = {
|
|
|
55218
55263
|
export declare type MarketplaceConsoleQueryApiProductMetadataByAppIdArgs = {
|
|
55219
55264
|
appId: Scalars['ID']['input'];
|
|
55220
55265
|
};
|
|
55266
|
+
export declare type MarketplaceConsoleQueryApiProductTagsArgs = {
|
|
55267
|
+
tagType: MarketplaceConsoleProductTagType;
|
|
55268
|
+
};
|
|
55221
55269
|
export declare type MarketplaceConsoleRemoteArtifactLinks = {
|
|
55222
55270
|
__typename?: 'MarketplaceConsoleRemoteArtifactLinks';
|
|
55223
55271
|
binary: MarketplaceConsoleLink;
|
|
55224
55272
|
remote?: Maybe<MarketplaceConsoleLink>;
|
|
55225
55273
|
self: MarketplaceConsoleLink;
|
|
55226
55274
|
};
|
|
55227
|
-
export declare type
|
|
55228
|
-
__typename?: '
|
|
55275
|
+
export declare type MarketplaceConsoleSoftwareArtifact = {
|
|
55276
|
+
__typename?: 'MarketplaceConsoleSoftwareArtifact';
|
|
55229
55277
|
fileInfo: MarketplaceConsoleArtifactFileInfo;
|
|
55230
55278
|
links: MarketplaceConsoleRemoteArtifactLinks;
|
|
55231
55279
|
};
|
|
@@ -55267,6 +55315,7 @@ export declare type MarketplaceConsoleVendorLinks = {
|
|
|
55267
55315
|
};
|
|
55268
55316
|
export declare type MarketplaceConsoleWorkflowFrameworkAttributes = {
|
|
55269
55317
|
__typename?: 'MarketplaceConsoleWorkflowFrameworkAttributes';
|
|
55318
|
+
artifact?: Maybe<MarketplaceConsoleSoftwareArtifact>;
|
|
55270
55319
|
artifactId: Scalars['ID']['output'];
|
|
55271
55320
|
};
|
|
55272
55321
|
export declare type MarketplaceConsoleWorkflowFrameworkAttributesInput = {
|
|
@@ -56982,6 +57031,18 @@ export declare type MercuryWorkspaceContext = {
|
|
|
56982
57031
|
aiEnabled: Scalars['Boolean']['output'];
|
|
56983
57032
|
cloudId: Scalars['String']['output'];
|
|
56984
57033
|
};
|
|
57034
|
+
export declare type MigrateComponentTypeInput = {
|
|
57035
|
+
destinationTypeId: Scalars['ID']['input'];
|
|
57036
|
+
sourceTypeId: Scalars['ID']['input'];
|
|
57037
|
+
};
|
|
57038
|
+
export declare type MigrateComponentTypePayload = Payload & {
|
|
57039
|
+
__typename?: 'MigrateComponentTypePayload';
|
|
57040
|
+
affectedComponentsCount?: Maybe<Scalars['Int']['output']>;
|
|
57041
|
+
errors?: Maybe<Array<MutationError>>;
|
|
57042
|
+
failedComponentsCount?: Maybe<Scalars['Int']['output']>;
|
|
57043
|
+
hasMore?: Maybe<Scalars['Boolean']['output']>;
|
|
57044
|
+
success: Scalars['Boolean']['output'];
|
|
57045
|
+
};
|
|
56985
57046
|
export declare type Migration = {
|
|
56986
57047
|
__typename?: 'Migration';
|
|
56987
57048
|
estimation?: Maybe<MigrationEstimation>;
|
|
@@ -64621,6 +64682,17 @@ export declare type ShepherdAlert = Node & {
|
|
|
64621
64682
|
updatedOn?: Maybe<Scalars['DateTime']['output']>;
|
|
64622
64683
|
workspaceId?: Maybe<Scalars['ID']['output']>;
|
|
64623
64684
|
};
|
|
64685
|
+
export declare enum ShepherdAlertAction {
|
|
64686
|
+
AddLabel = "ADD_LABEL",
|
|
64687
|
+
Redact = "REDACT",
|
|
64688
|
+
Restrict = "RESTRICT",
|
|
64689
|
+
UpdateDataClassification = "UPDATE_DATA_CLASSIFICATION"
|
|
64690
|
+
}
|
|
64691
|
+
export declare type ShepherdAlertAuthorizedActions = {
|
|
64692
|
+
__typename?: 'ShepherdAlertAuthorizedActions';
|
|
64693
|
+
actions?: Maybe<Array<ShepherdAlertAction>>;
|
|
64694
|
+
};
|
|
64695
|
+
export declare type ShepherdAlertAuthorizedActionsResult = QueryError | ShepherdAlertAuthorizedActions;
|
|
64624
64696
|
export declare enum ShepherdAlertDetectionCategory {
|
|
64625
64697
|
Data = "DATA",
|
|
64626
64698
|
Threat = "THREAT"
|
|
@@ -64637,9 +64709,14 @@ export declare type ShepherdAlertMetaData = {
|
|
|
64637
64709
|
};
|
|
64638
64710
|
export declare type ShepherdAlertQueries = {
|
|
64639
64711
|
__typename?: 'ShepherdAlertQueries';
|
|
64712
|
+
authorizedActions?: Maybe<ShepherdAlertAuthorizedActionsResult>;
|
|
64640
64713
|
byAri?: Maybe<ShepherdAlertResult>;
|
|
64641
64714
|
byWorkspace?: Maybe<ShepherdAlertsResult>;
|
|
64642
64715
|
};
|
|
64716
|
+
export declare type ShepherdAlertQueriesAuthorizedActionsArgs = {
|
|
64717
|
+
id: Scalars['ID']['input'];
|
|
64718
|
+
resource: Scalars['ID']['input'];
|
|
64719
|
+
};
|
|
64643
64720
|
export declare type ShepherdAlertQueriesByAriArgs = {
|
|
64644
64721
|
id: Scalars['ID']['input'];
|
|
64645
64722
|
};
|
|
@@ -66788,6 +66865,8 @@ export declare type TeamV2MembersArgs = {
|
|
|
66788
66865
|
};
|
|
66789
66866
|
export declare type TenantContext = {
|
|
66790
66867
|
__typename?: 'TenantContext';
|
|
66868
|
+
activationIdByProduct?: Maybe<TenantContextActivationId>;
|
|
66869
|
+
activationIds?: Maybe<Array<TenantContextActivationId>>;
|
|
66791
66870
|
cloudId?: Maybe<Scalars['ID']['output']>;
|
|
66792
66871
|
cloudUrl?: Maybe<Scalars['URL']['output']>;
|
|
66793
66872
|
customDomains?: Maybe<Array<TenantContextCustomDomain>>;
|
|
@@ -66795,9 +66874,17 @@ export declare type TenantContext = {
|
|
|
66795
66874
|
hostName?: Maybe<Scalars['String']['output']>;
|
|
66796
66875
|
orgId?: Maybe<Scalars['ID']['output']>;
|
|
66797
66876
|
};
|
|
66877
|
+
export declare type TenantContextActivationIdByProductArgs = {
|
|
66878
|
+
product: Scalars['String']['input'];
|
|
66879
|
+
};
|
|
66798
66880
|
export declare type TenantContextEntitlementInfoArgs = {
|
|
66799
66881
|
hamsProductKey: Scalars['String']['input'];
|
|
66800
66882
|
};
|
|
66883
|
+
export declare type TenantContextActivationId = {
|
|
66884
|
+
__typename?: 'TenantContextActivationId';
|
|
66885
|
+
active?: Maybe<Scalars['String']['output']>;
|
|
66886
|
+
product?: Maybe<Scalars['String']['output']>;
|
|
66887
|
+
};
|
|
66801
66888
|
export declare type TenantContextCustomDomain = {
|
|
66802
66889
|
__typename?: 'TenantContextCustomDomain';
|
|
66803
66890
|
hostName?: Maybe<Scalars['String']['output']>;
|
|
@@ -67703,7 +67790,6 @@ export declare type TrelloBoard = Node & {
|
|
|
67703
67790
|
members?: Maybe<TrelloBoardMembershipsConnection>;
|
|
67704
67791
|
name: Scalars['String']['output'];
|
|
67705
67792
|
objectId: Scalars['ID']['output'];
|
|
67706
|
-
popularLabelNamesByColor?: Maybe<Array<TrelloPopularLabelForColor>>;
|
|
67707
67793
|
powerUpData?: Maybe<TrelloPowerUpDataConnection>;
|
|
67708
67794
|
powerUps?: Maybe<TrelloBoardPowerUpConnection>;
|
|
67709
67795
|
powerUpsDisableAt?: Maybe<Scalars['DateTime']['output']>;
|
|
@@ -67907,11 +67993,14 @@ export declare type TrelloBoardUpdated = {
|
|
|
67907
67993
|
closed?: Maybe<Scalars['Boolean']['output']>;
|
|
67908
67994
|
description?: Maybe<TrelloDescription>;
|
|
67909
67995
|
id?: Maybe<Scalars['ID']['output']>;
|
|
67996
|
+
labels?: Maybe<Array<TrelloLabel>>;
|
|
67910
67997
|
lists?: Maybe<TrelloListUpdatedConnection>;
|
|
67998
|
+
members?: Maybe<Array<TrelloMember>>;
|
|
67911
67999
|
name?: Maybe<Scalars['String']['output']>;
|
|
67912
68000
|
objectId?: Maybe<Scalars['ID']['output']>;
|
|
67913
68001
|
prefs?: Maybe<TrelloBoardPrefs>;
|
|
67914
68002
|
premiumFeatures?: Maybe<Array<Scalars['String']['output']>>;
|
|
68003
|
+
url?: Maybe<Scalars['URL']['output']>;
|
|
67915
68004
|
};
|
|
67916
68005
|
export declare type TrelloBoardViewer = {
|
|
67917
68006
|
__typename?: 'TrelloBoardViewer';
|
|
@@ -68530,6 +68619,7 @@ export declare type TrelloPlannerCalendarAccount = Node & {
|
|
|
68530
68619
|
__typename?: 'TrelloPlannerCalendarAccount';
|
|
68531
68620
|
accountType: TrelloSupportedPlannerProviders;
|
|
68532
68621
|
allCalendars?: Maybe<TrelloPlannerCalendarConnection>;
|
|
68622
|
+
displayName: Scalars['String']['output'];
|
|
68533
68623
|
enabledCalendars?: Maybe<TrelloPlannerCalendarConnection>;
|
|
68534
68624
|
id: Scalars['ID']['output'];
|
|
68535
68625
|
};
|
|
@@ -68564,11 +68654,6 @@ export declare type TrelloPlannerCalendarEdge = {
|
|
|
68564
68654
|
cursor?: Maybe<Scalars['String']['output']>;
|
|
68565
68655
|
node?: Maybe<TrelloPlannerCalendar>;
|
|
68566
68656
|
};
|
|
68567
|
-
export declare type TrelloPopularLabelForColor = {
|
|
68568
|
-
__typename?: 'TrelloPopularLabelForColor';
|
|
68569
|
-
color?: Maybe<Scalars['String']['output']>;
|
|
68570
|
-
labelName?: Maybe<Scalars['String']['output']>;
|
|
68571
|
-
};
|
|
68572
68657
|
export declare type TrelloPowerUp = {
|
|
68573
68658
|
__typename?: 'TrelloPowerUp';
|
|
68574
68659
|
author?: Maybe<Scalars['String']['output']>;
|