@forge/cli-shared 6.5.5-next.1 → 6.6.0-next.3
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 +12 -0
- package/out/graphql/graphql-types.d.ts +334 -1
- package/out/graphql/graphql-types.d.ts.map +1 -1
- package/out/shared/product.d.ts +7 -4
- package/out/shared/product.d.ts.map +1 -1
- package/out/shared/product.js +5 -2
- package/out/ui/text.d.ts +133 -1
- package/out/ui/text.d.ts.map +1 -1
- package/out/ui/text.js +146 -6
- package/package.json +1 -1
|
@@ -1227,6 +1227,7 @@ export declare type AppInstallation = {
|
|
|
1227
1227
|
installationContext: Scalars['ID']['output'];
|
|
1228
1228
|
isRecoverable: Scalars['Boolean']['output'];
|
|
1229
1229
|
license?: Maybe<AppInstallationLicense>;
|
|
1230
|
+
secondaryInstallationContexts?: Maybe<Array<Scalars['ID']['output']>>;
|
|
1230
1231
|
version?: Maybe<AppVersion>;
|
|
1231
1232
|
};
|
|
1232
1233
|
export declare type AppInstallationByIndexConnection = {
|
|
@@ -1329,6 +1330,12 @@ export declare type AppInstallationSubscribeTask = AppInstallationTask & {
|
|
|
1329
1330
|
id: Scalars['ID']['output'];
|
|
1330
1331
|
state: AppTaskState;
|
|
1331
1332
|
};
|
|
1333
|
+
export declare type AppInstallationSummary = {
|
|
1334
|
+
__typename?: 'AppInstallationSummary';
|
|
1335
|
+
installationContext: Scalars['ID']['output'];
|
|
1336
|
+
primaryInstallationContext: Scalars['ID']['output'];
|
|
1337
|
+
secondaryInstallationContexts?: Maybe<Array<Scalars['ID']['output']>>;
|
|
1338
|
+
};
|
|
1332
1339
|
export declare type AppInstallationTask = {
|
|
1333
1340
|
appEnvironmentId?: Maybe<Scalars['ID']['output']>;
|
|
1334
1341
|
appId: Scalars['ID']['output'];
|
|
@@ -1855,6 +1862,7 @@ export declare type ApplyPolarisProjectTemplatePayload = Payload & {
|
|
|
1855
1862
|
export declare type AppsFilter = {
|
|
1856
1863
|
isPublishable?: InputMaybe<Scalars['Boolean']['input']>;
|
|
1857
1864
|
migrationKey?: InputMaybe<Scalars['String']['input']>;
|
|
1865
|
+
storesPersonalData?: InputMaybe<Scalars['Boolean']['input']>;
|
|
1858
1866
|
};
|
|
1859
1867
|
export declare type AquaIssueContext = {
|
|
1860
1868
|
__typename?: 'AquaIssueContext';
|
|
@@ -3097,7 +3105,7 @@ export declare type CcpChargeDetails = CommerceChargeDetails & {
|
|
|
3097
3105
|
pricingPlanId?: Maybe<Scalars['ID']['output']>;
|
|
3098
3106
|
promotionInstances?: Maybe<Array<Maybe<CcpPromotionInstance>>>;
|
|
3099
3107
|
};
|
|
3100
|
-
export declare type CcpChargeElement = {
|
|
3108
|
+
export declare type CcpChargeElement = CommerceChargeElement & {
|
|
3101
3109
|
__typename?: 'CcpChargeElement';
|
|
3102
3110
|
ceiling?: Maybe<Scalars['Int']['output']>;
|
|
3103
3111
|
unit?: Maybe<Scalars['String']['output']>;
|
|
@@ -3197,6 +3205,7 @@ export declare type CcpEntitlement = CommerceEntitlement & Node & {
|
|
|
3197
3205
|
context?: Maybe<CcpContext>;
|
|
3198
3206
|
createdAt?: Maybe<Scalars['Float']['output']>;
|
|
3199
3207
|
defaultOfferingTransitions?: Maybe<Array<Maybe<CcpEntitlementOfferingTransition>>>;
|
|
3208
|
+
defaultStandaloneOfferingTransitions?: Maybe<Array<Maybe<CcpEntitlementOfferingTransition>>>;
|
|
3200
3209
|
enableAbuseProneFeatures?: Maybe<Scalars['Boolean']['output']>;
|
|
3201
3210
|
entitlementId?: Maybe<Scalars['ID']['output']>;
|
|
3202
3211
|
entitlementTemplate?: Maybe<CcpEntitlementTemplate>;
|
|
@@ -3225,6 +3234,9 @@ export declare type CcpEntitlement = CommerceEntitlement & Node & {
|
|
|
3225
3234
|
export declare type CcpEntitlementDefaultOfferingTransitionsArgs = {
|
|
3226
3235
|
offeringName?: InputMaybe<Scalars['String']['input']>;
|
|
3227
3236
|
};
|
|
3237
|
+
export declare type CcpEntitlementDefaultStandaloneOfferingTransitionsArgs = {
|
|
3238
|
+
offeringName?: InputMaybe<Scalars['String']['input']>;
|
|
3239
|
+
};
|
|
3228
3240
|
export declare type CcpEntitlementLatestUsageForChargeElementArgs = {
|
|
3229
3241
|
chargeElement?: InputMaybe<Scalars['String']['input']>;
|
|
3230
3242
|
};
|
|
@@ -3992,6 +4004,10 @@ export declare type CommerceAccountDetails = {
|
|
|
3992
4004
|
export declare type CommerceChargeDetails = {
|
|
3993
4005
|
chargeQuantities?: Maybe<Array<Maybe<CommerceChargeQuantity>>>;
|
|
3994
4006
|
};
|
|
4007
|
+
export declare type CommerceChargeElement = {
|
|
4008
|
+
ceiling?: Maybe<Scalars['Int']['output']>;
|
|
4009
|
+
unit?: Maybe<Scalars['String']['output']>;
|
|
4010
|
+
};
|
|
3995
4011
|
export declare type CommerceChargeQuantity = {
|
|
3996
4012
|
chargeElement?: Maybe<Scalars['String']['output']>;
|
|
3997
4013
|
lastUpdatedAt?: Maybe<Scalars['Float']['output']>;
|
|
@@ -4068,6 +4084,7 @@ export declare type CommerceInvoiceGroupExperienceCapabilities = {
|
|
|
4068
4084
|
configurePaymentV2?: Maybe<CommerceExperienceCapability>;
|
|
4069
4085
|
};
|
|
4070
4086
|
export declare type CommerceOffering = {
|
|
4087
|
+
chargeElements?: Maybe<Array<Maybe<CommerceChargeElement>>>;
|
|
4071
4088
|
name?: Maybe<Scalars['String']['output']>;
|
|
4072
4089
|
trial?: Maybe<CommerceOfferingTrial>;
|
|
4073
4090
|
};
|
|
@@ -23173,6 +23190,7 @@ export declare type Extension = {
|
|
|
23173
23190
|
environmentKey: Scalars['String']['output'];
|
|
23174
23191
|
environmentType: Scalars['String']['output'];
|
|
23175
23192
|
id: Scalars['ID']['output'];
|
|
23193
|
+
installation?: Maybe<AppInstallationSummary>;
|
|
23176
23194
|
installationId: Scalars['String']['output'];
|
|
23177
23195
|
key: Scalars['String']['output'];
|
|
23178
23196
|
license?: Maybe<AppInstallationLicense>;
|
|
@@ -23312,6 +23330,7 @@ export declare type ExternalBranch = Node & {
|
|
|
23312
23330
|
name?: Maybe<Scalars['String']['output']>;
|
|
23313
23331
|
owners?: Maybe<Array<Maybe<ExternalUser>>>;
|
|
23314
23332
|
repositoryId?: Maybe<Scalars['String']['output']>;
|
|
23333
|
+
thirdPartyId?: Maybe<Scalars['String']['output']>;
|
|
23315
23334
|
url?: Maybe<Scalars['String']['output']>;
|
|
23316
23335
|
};
|
|
23317
23336
|
export declare type ExternalBranchReference = {
|
|
@@ -23328,15 +23347,24 @@ export declare type ExternalBuildInfo = Node & {
|
|
|
23328
23347
|
__typename?: 'ExternalBuildInfo';
|
|
23329
23348
|
associatedWith?: Maybe<ExternalAssociationConnection>;
|
|
23330
23349
|
buildNumber?: Maybe<Scalars['Long']['output']>;
|
|
23350
|
+
container?: Maybe<ExternalEntity>;
|
|
23351
|
+
containerId?: Maybe<Scalars['ID']['output']>;
|
|
23352
|
+
createdAt?: Maybe<Scalars['String']['output']>;
|
|
23353
|
+
createdBy?: Maybe<ExternalUser>;
|
|
23331
23354
|
description?: Maybe<Scalars['String']['output']>;
|
|
23332
23355
|
displayName?: Maybe<Scalars['String']['output']>;
|
|
23333
23356
|
duration?: Maybe<Scalars['Long']['output']>;
|
|
23357
|
+
externalId?: Maybe<Scalars['String']['output']>;
|
|
23334
23358
|
id: Scalars['ID']['output'];
|
|
23335
23359
|
lastUpdated?: Maybe<Scalars['String']['output']>;
|
|
23360
|
+
lastUpdatedBy?: Maybe<ExternalUser>;
|
|
23361
|
+
owners?: Maybe<Array<Maybe<ExternalUser>>>;
|
|
23336
23362
|
pipelineId?: Maybe<Scalars['String']['output']>;
|
|
23337
23363
|
references?: Maybe<Array<Maybe<ExternalBuildReferences>>>;
|
|
23338
23364
|
state?: Maybe<ExternalBuildState>;
|
|
23339
23365
|
testInfo?: Maybe<ExternalTestInfo>;
|
|
23366
|
+
thirdPartyId?: Maybe<Scalars['String']['output']>;
|
|
23367
|
+
thumbnail?: Maybe<ExternalThumbnail>;
|
|
23340
23368
|
url?: Maybe<Scalars['String']['output']>;
|
|
23341
23369
|
};
|
|
23342
23370
|
export declare type ExternalBuildRefReference = {
|
|
@@ -23377,6 +23405,7 @@ export declare type ExternalCalendarEvent = Node & {
|
|
|
23377
23405
|
parent?: Maybe<ExternalEntity>;
|
|
23378
23406
|
parentId?: Maybe<Scalars['ID']['output']>;
|
|
23379
23407
|
recurringEventId?: Maybe<Scalars['String']['output']>;
|
|
23408
|
+
thirdPartyId?: Maybe<Scalars['String']['output']>;
|
|
23380
23409
|
updateSequenceNumber?: Maybe<Scalars['Long']['output']>;
|
|
23381
23410
|
url?: Maybe<Scalars['String']['output']>;
|
|
23382
23411
|
videoMeetingUrl?: Maybe<Scalars['String']['output']>;
|
|
@@ -23429,6 +23458,7 @@ export declare type ExternalComment = Node & {
|
|
|
23429
23458
|
parentId?: Maybe<Scalars['ID']['output']>;
|
|
23430
23459
|
reactions?: Maybe<Array<Maybe<ExternalReactions>>>;
|
|
23431
23460
|
text?: Maybe<Scalars['String']['output']>;
|
|
23461
|
+
thirdPartyId?: Maybe<Scalars['String']['output']>;
|
|
23432
23462
|
updateSequenceNumber?: Maybe<Scalars['Long']['output']>;
|
|
23433
23463
|
url?: Maybe<Scalars['String']['output']>;
|
|
23434
23464
|
};
|
|
@@ -23455,6 +23485,7 @@ export declare type ExternalCommit = Node & {
|
|
|
23455
23485
|
message?: Maybe<Scalars['String']['output']>;
|
|
23456
23486
|
owners?: Maybe<Array<Maybe<ExternalUser>>>;
|
|
23457
23487
|
repositoryId?: Maybe<Scalars['String']['output']>;
|
|
23488
|
+
thirdPartyId?: Maybe<Scalars['String']['output']>;
|
|
23458
23489
|
url?: Maybe<Scalars['String']['output']>;
|
|
23459
23490
|
};
|
|
23460
23491
|
export declare enum ExternalCommitFlags {
|
|
@@ -23482,6 +23513,7 @@ export declare type ExternalConversation = Node & {
|
|
|
23482
23513
|
members?: Maybe<Array<Maybe<ExternalUser>>>;
|
|
23483
23514
|
membershipType?: Maybe<ExternalMembershipType>;
|
|
23484
23515
|
owners?: Maybe<Array<Maybe<ExternalUser>>>;
|
|
23516
|
+
thirdPartyId?: Maybe<Scalars['String']['output']>;
|
|
23485
23517
|
topic?: Maybe<Scalars['String']['output']>;
|
|
23486
23518
|
type?: Maybe<ExternalConversationType>;
|
|
23487
23519
|
updateSequenceNumber?: Maybe<Scalars['Long']['output']>;
|
|
@@ -23503,16 +23535,26 @@ export declare type ExternalCue = {
|
|
|
23503
23535
|
export declare type ExternalDeployment = Node & {
|
|
23504
23536
|
__typename?: 'ExternalDeployment';
|
|
23505
23537
|
associatedWith?: Maybe<ExternalAssociationConnection>;
|
|
23538
|
+
container?: Maybe<ExternalEntity>;
|
|
23539
|
+
containerId?: Maybe<Scalars['ID']['output']>;
|
|
23540
|
+
createdAt?: Maybe<Scalars['String']['output']>;
|
|
23541
|
+
createdBy?: Maybe<ExternalUser>;
|
|
23506
23542
|
deploymentSequenceNumber?: Maybe<Scalars['Long']['output']>;
|
|
23507
23543
|
description?: Maybe<Scalars['String']['output']>;
|
|
23508
23544
|
displayName?: Maybe<Scalars['String']['output']>;
|
|
23509
23545
|
duration?: Maybe<Scalars['Long']['output']>;
|
|
23510
23546
|
environment?: Maybe<ExternalEnvironment>;
|
|
23547
|
+
externalId?: Maybe<Scalars['String']['output']>;
|
|
23511
23548
|
id: Scalars['ID']['output'];
|
|
23512
23549
|
label?: Maybe<Scalars['String']['output']>;
|
|
23513
23550
|
lastUpdated?: Maybe<Scalars['String']['output']>;
|
|
23551
|
+
lastUpdatedBy?: Maybe<ExternalUser>;
|
|
23552
|
+
owners?: Maybe<Array<Maybe<ExternalUser>>>;
|
|
23514
23553
|
pipeline?: Maybe<ExternalPipeline>;
|
|
23554
|
+
region?: Maybe<Scalars['String']['output']>;
|
|
23515
23555
|
state?: Maybe<ExternalDeploymentState>;
|
|
23556
|
+
thirdPartyId?: Maybe<Scalars['String']['output']>;
|
|
23557
|
+
thumbnail?: Maybe<ExternalThumbnail>;
|
|
23516
23558
|
triggeredBy?: Maybe<ExternalUser>;
|
|
23517
23559
|
updateSequenceNumber?: Maybe<Scalars['Long']['output']>;
|
|
23518
23560
|
url?: Maybe<Scalars['String']['output']>;
|
|
@@ -23542,6 +23584,7 @@ export declare type ExternalDesign = Node & {
|
|
|
23542
23584
|
liveEmbedUrl?: Maybe<Scalars['String']['output']>;
|
|
23543
23585
|
owners?: Maybe<Array<Maybe<ExternalUser>>>;
|
|
23544
23586
|
status?: Maybe<ExternalDesignStatus>;
|
|
23587
|
+
thirdPartyId?: Maybe<Scalars['String']['output']>;
|
|
23545
23588
|
thumbnail?: Maybe<ExternalThumbnail>;
|
|
23546
23589
|
type?: Maybe<ExternalDesignType>;
|
|
23547
23590
|
updateSequenceNumber?: Maybe<Scalars['Long']['output']>;
|
|
@@ -23580,6 +23623,7 @@ export declare type ExternalDocument = Node & {
|
|
|
23580
23623
|
owners?: Maybe<Array<Maybe<ExternalUser>>>;
|
|
23581
23624
|
parent?: Maybe<ExternalEntity>;
|
|
23582
23625
|
parentId?: Maybe<Scalars['ID']['output']>;
|
|
23626
|
+
thirdPartyId?: Maybe<Scalars['String']['output']>;
|
|
23583
23627
|
thumbnail?: Maybe<ExternalThumbnail>;
|
|
23584
23628
|
truncatedDisplayName?: Maybe<Scalars['Boolean']['output']>;
|
|
23585
23629
|
type?: Maybe<ExternalDocumentType>;
|
|
@@ -23676,6 +23720,7 @@ export declare type ExternalFeatureFlag = Node & {
|
|
|
23676
23720
|
id: Scalars['ID']['output'];
|
|
23677
23721
|
key?: Maybe<Scalars['String']['output']>;
|
|
23678
23722
|
summary?: Maybe<ExternalFeatureFlagSummary>;
|
|
23723
|
+
thirdPartyId?: Maybe<Scalars['String']['output']>;
|
|
23679
23724
|
};
|
|
23680
23725
|
export declare type ExternalFeatureFlagDetail = {
|
|
23681
23726
|
__typename?: 'ExternalFeatureFlagDetail';
|
|
@@ -23765,6 +23810,7 @@ export declare type ExternalMessage = Node & {
|
|
|
23765
23810
|
owners?: Maybe<Array<Maybe<ExternalUser>>>;
|
|
23766
23811
|
parent?: Maybe<ExternalEntity>;
|
|
23767
23812
|
parentId?: Maybe<Scalars['ID']['output']>;
|
|
23813
|
+
thirdPartyId?: Maybe<Scalars['String']['output']>;
|
|
23768
23814
|
thumbnail?: Maybe<ExternalThumbnail>;
|
|
23769
23815
|
updateSequenceNumber?: Maybe<Scalars['Long']['output']>;
|
|
23770
23816
|
url?: Maybe<Scalars['String']['output']>;
|
|
@@ -23782,6 +23828,7 @@ export declare type ExternalOrganisation = Node & {
|
|
|
23782
23828
|
owners?: Maybe<Array<Maybe<ExternalUser>>>;
|
|
23783
23829
|
parent?: Maybe<ExternalEntity>;
|
|
23784
23830
|
parentId?: Maybe<Scalars['ID']['output']>;
|
|
23831
|
+
thirdPartyId?: Maybe<Scalars['String']['output']>;
|
|
23785
23832
|
thumbnail?: Maybe<ExternalThumbnail>;
|
|
23786
23833
|
updateSequenceNumber?: Maybe<Scalars['Long']['output']>;
|
|
23787
23834
|
url?: Maybe<Scalars['String']['output']>;
|
|
@@ -23806,6 +23853,7 @@ export declare type ExternalPosition = Node & {
|
|
|
23806
23853
|
parent?: Maybe<ExternalEntity>;
|
|
23807
23854
|
parentId?: Maybe<Scalars['ID']['output']>;
|
|
23808
23855
|
status?: Maybe<Scalars['String']['output']>;
|
|
23856
|
+
thirdPartyId?: Maybe<Scalars['String']['output']>;
|
|
23809
23857
|
thumbnail?: Maybe<ExternalThumbnail>;
|
|
23810
23858
|
updateSequenceNumber?: Maybe<Scalars['Long']['output']>;
|
|
23811
23859
|
url?: Maybe<Scalars['String']['output']>;
|
|
@@ -23838,6 +23886,7 @@ export declare type ExternalPullRequest = Node & {
|
|
|
23838
23886
|
status?: Maybe<ExternalPullRequestStatus>;
|
|
23839
23887
|
supportedActions?: Maybe<Array<Maybe<Scalars['String']['output']>>>;
|
|
23840
23888
|
tasksCount?: Maybe<Scalars['Int']['output']>;
|
|
23889
|
+
thirdPartyId?: Maybe<Scalars['String']['output']>;
|
|
23841
23890
|
title?: Maybe<Scalars['String']['output']>;
|
|
23842
23891
|
url?: Maybe<Scalars['String']['output']>;
|
|
23843
23892
|
};
|
|
@@ -23871,6 +23920,7 @@ export declare type ExternalRemoteLink = Node & {
|
|
|
23871
23920
|
owners?: Maybe<Array<Maybe<ExternalUser>>>;
|
|
23872
23921
|
remoteLinkId?: Maybe<Scalars['String']['output']>;
|
|
23873
23922
|
status?: Maybe<ExternalRemoteLinkStatus>;
|
|
23923
|
+
thirdPartyId?: Maybe<Scalars['String']['output']>;
|
|
23874
23924
|
thumbnail?: Maybe<ExternalThumbnail>;
|
|
23875
23925
|
type?: Maybe<Scalars['String']['output']>;
|
|
23876
23926
|
updateSequenceNumber?: Maybe<Scalars['Long']['output']>;
|
|
@@ -23900,6 +23950,7 @@ export declare type ExternalRepository = Node & {
|
|
|
23900
23950
|
name?: Maybe<Scalars['String']['output']>;
|
|
23901
23951
|
owners?: Maybe<Array<Maybe<ExternalUser>>>;
|
|
23902
23952
|
repositoryId?: Maybe<Scalars['String']['output']>;
|
|
23953
|
+
thirdPartyId?: Maybe<Scalars['String']['output']>;
|
|
23903
23954
|
url?: Maybe<Scalars['String']['output']>;
|
|
23904
23955
|
};
|
|
23905
23956
|
export declare type ExternalReviewer = {
|
|
@@ -23922,6 +23973,7 @@ export declare type ExternalSpace = Node & {
|
|
|
23922
23973
|
lastUpdated?: Maybe<Scalars['String']['output']>;
|
|
23923
23974
|
lastUpdatedBy?: Maybe<ExternalUser>;
|
|
23924
23975
|
spaceType?: Maybe<Scalars['String']['output']>;
|
|
23976
|
+
thirdPartyId?: Maybe<Scalars['String']['output']>;
|
|
23925
23977
|
updateSequenceNumber?: Maybe<Scalars['Long']['output']>;
|
|
23926
23978
|
url?: Maybe<Scalars['String']['output']>;
|
|
23927
23979
|
};
|
|
@@ -23966,6 +24018,7 @@ export declare type ExternalVideo = Node & {
|
|
|
23966
24018
|
lastUpdatedBy?: Maybe<ExternalUser>;
|
|
23967
24019
|
owners?: Maybe<Array<Maybe<ExternalUser>>>;
|
|
23968
24020
|
textTracks?: Maybe<Array<Maybe<ExternalTrack>>>;
|
|
24021
|
+
thirdPartyId?: Maybe<Scalars['String']['output']>;
|
|
23969
24022
|
thumbnailUrl?: Maybe<Scalars['String']['output']>;
|
|
23970
24023
|
updateSequenceNumber?: Maybe<Scalars['Long']['output']>;
|
|
23971
24024
|
url?: Maybe<Scalars['String']['output']>;
|
|
@@ -23984,6 +24037,7 @@ export declare type ExternalVulnerability = Node & {
|
|
|
23984
24037
|
lastUpdated?: Maybe<Scalars['String']['output']>;
|
|
23985
24038
|
severity?: Maybe<ExternalVulnerabilitySeverity>;
|
|
23986
24039
|
status?: Maybe<ExternalVulnerabilityStatus>;
|
|
24040
|
+
thirdPartyId?: Maybe<Scalars['String']['output']>;
|
|
23987
24041
|
type?: Maybe<ExternalVulnerabilityType>;
|
|
23988
24042
|
updateSequenceNumber?: Maybe<Scalars['Long']['output']>;
|
|
23989
24043
|
url?: Maybe<Scalars['String']['output']>;
|
|
@@ -24043,6 +24097,7 @@ export declare type ExternalWorkItem = Node & {
|
|
|
24043
24097
|
status?: Maybe<Scalars['String']['output']>;
|
|
24044
24098
|
subtype?: Maybe<ExternalWorkItemSubtype>;
|
|
24045
24099
|
team?: Maybe<Scalars['String']['output']>;
|
|
24100
|
+
thirdPartyId?: Maybe<Scalars['String']['output']>;
|
|
24046
24101
|
updateSequenceNumber?: Maybe<Scalars['Long']['output']>;
|
|
24047
24102
|
url?: Maybe<Scalars['String']['output']>;
|
|
24048
24103
|
};
|
|
@@ -24081,6 +24136,7 @@ export declare type ExternalWorker = Node & {
|
|
|
24081
24136
|
lastUpdated?: Maybe<Scalars['String']['output']>;
|
|
24082
24137
|
lastUpdatedBy?: Maybe<ExternalUser>;
|
|
24083
24138
|
owners?: Maybe<Array<Maybe<ExternalUser>>>;
|
|
24139
|
+
thirdPartyId?: Maybe<Scalars['String']['output']>;
|
|
24084
24140
|
thumbnail?: Maybe<ExternalThumbnail>;
|
|
24085
24141
|
updateSequenceNumber?: Maybe<Scalars['Long']['output']>;
|
|
24086
24142
|
url?: Maybe<Scalars['String']['output']>;
|
|
@@ -29104,6 +29160,8 @@ export declare type GraphStore = {
|
|
|
29104
29160
|
componentLinkedJswIssueInverse?: Maybe<GraphStoreSimplifiedComponentLinkedJswIssueInverseConnection>;
|
|
29105
29161
|
componentLinkedJswIssueInverseRelationship?: Maybe<GraphStoreFullComponentLinkedJswIssueConnection>;
|
|
29106
29162
|
componentLinkedJswIssueRelationship?: Maybe<GraphStoreFullComponentLinkedJswIssueConnection>;
|
|
29163
|
+
confluenceBlogpostSharedWithUser?: Maybe<GraphStoreSimplifiedConfluenceBlogpostSharedWithUserConnection>;
|
|
29164
|
+
confluenceBlogpostSharedWithUserInverse?: Maybe<GraphStoreSimplifiedConfluenceBlogpostSharedWithUserInverseConnection>;
|
|
29107
29165
|
confluencePageHasConfluenceComment?: Maybe<GraphStoreSimplifiedConfluencePageHasConfluenceCommentConnection>;
|
|
29108
29166
|
confluencePageHasConfluenceCommentInverse?: Maybe<GraphStoreSimplifiedConfluencePageHasConfluenceCommentInverseConnection>;
|
|
29109
29167
|
confluencePageHasConfluenceDatabase?: Maybe<GraphStoreSimplifiedConfluencePageHasConfluenceDatabaseConnection>;
|
|
@@ -29117,6 +29175,7 @@ export declare type GraphStore = {
|
|
|
29117
29175
|
confluenceSpaceHasConfluenceBlogpostInverse?: Maybe<GraphStoreSimplifiedConfluenceSpaceHasConfluenceBlogpostInverseConnection>;
|
|
29118
29176
|
confluenceSpaceHasConfluenceDatabase?: Maybe<GraphStoreSimplifiedConfluenceSpaceHasConfluenceDatabaseConnection>;
|
|
29119
29177
|
confluenceSpaceHasConfluenceDatabaseInverse?: Maybe<GraphStoreSimplifiedConfluenceSpaceHasConfluenceDatabaseInverseConnection>;
|
|
29178
|
+
confluenceSpaceHasConfluenceFolderInverse?: Maybe<GraphStoreSimplifiedConfluenceSpaceHasConfluenceFolderInverseConnection>;
|
|
29120
29179
|
confluenceSpaceHasConfluenceWhiteboard?: Maybe<GraphStoreSimplifiedConfluenceSpaceHasConfluenceWhiteboardConnection>;
|
|
29121
29180
|
confluenceSpaceHasConfluenceWhiteboardInverse?: Maybe<GraphStoreSimplifiedConfluenceSpaceHasConfluenceWhiteboardInverseConnection>;
|
|
29122
29181
|
contentReferencedEntity?: Maybe<GraphStoreSimplifiedContentReferencedEntityConnection>;
|
|
@@ -29242,6 +29301,8 @@ export declare type GraphStore = {
|
|
|
29242
29301
|
jiraEpicContributesToAtlasGoalInverse?: Maybe<GraphStoreSimplifiedJiraEpicContributesToAtlasGoalInverseConnection>;
|
|
29243
29302
|
jiraEpicContributesToAtlasGoalInverseRelationship?: Maybe<GraphStoreFullJiraEpicContributesToAtlasGoalConnection>;
|
|
29244
29303
|
jiraEpicContributesToAtlasGoalRelationship?: Maybe<GraphStoreFullJiraEpicContributesToAtlasGoalConnection>;
|
|
29304
|
+
jiraIssueBlockedByJiraIssue?: Maybe<GraphStoreSimplifiedJiraIssueBlockedByJiraIssueConnection>;
|
|
29305
|
+
jiraIssueBlockedByJiraIssueInverse?: Maybe<GraphStoreSimplifiedJiraIssueBlockedByJiraIssueInverseConnection>;
|
|
29245
29306
|
jiraIssueToJiraPriorityInverse?: Maybe<GraphStoreSimplifiedJiraIssueToJiraPriorityInverseConnection>;
|
|
29246
29307
|
jiraProjectAssociatedAtlasGoal?: Maybe<GraphStoreSimplifiedJiraProjectAssociatedAtlasGoalConnection>;
|
|
29247
29308
|
jiraProjectAssociatedAtlasGoalInverse?: Maybe<GraphStoreSimplifiedJiraProjectAssociatedAtlasGoalInverseConnection>;
|
|
@@ -29903,6 +29964,20 @@ export declare type GraphStoreComponentLinkedJswIssueRelationshipArgs = {
|
|
|
29903
29964
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
29904
29965
|
id: Scalars['ID']['input'];
|
|
29905
29966
|
};
|
|
29967
|
+
export declare type GraphStoreConfluenceBlogpostSharedWithUserArgs = {
|
|
29968
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
29969
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
29970
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
29971
|
+
id: Scalars['ID']['input'];
|
|
29972
|
+
sort?: InputMaybe<GraphStoreConfluenceBlogpostSharedWithUserSortInput>;
|
|
29973
|
+
};
|
|
29974
|
+
export declare type GraphStoreConfluenceBlogpostSharedWithUserInverseArgs = {
|
|
29975
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
29976
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
29977
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
29978
|
+
id: Scalars['ID']['input'];
|
|
29979
|
+
sort?: InputMaybe<GraphStoreConfluenceBlogpostSharedWithUserSortInput>;
|
|
29980
|
+
};
|
|
29906
29981
|
export declare type GraphStoreConfluencePageHasConfluenceCommentArgs = {
|
|
29907
29982
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
29908
29983
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -29994,6 +30069,13 @@ export declare type GraphStoreConfluenceSpaceHasConfluenceDatabaseInverseArgs =
|
|
|
29994
30069
|
id: Scalars['ID']['input'];
|
|
29995
30070
|
sort?: InputMaybe<GraphStoreConfluenceSpaceHasConfluenceDatabaseSortInput>;
|
|
29996
30071
|
};
|
|
30072
|
+
export declare type GraphStoreConfluenceSpaceHasConfluenceFolderInverseArgs = {
|
|
30073
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
30074
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
30075
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
30076
|
+
id: Scalars['ID']['input'];
|
|
30077
|
+
sort?: InputMaybe<GraphStoreConfluenceSpaceHasConfluenceFolderSortInput>;
|
|
30078
|
+
};
|
|
29997
30079
|
export declare type GraphStoreConfluenceSpaceHasConfluenceWhiteboardArgs = {
|
|
29998
30080
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
29999
30081
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -30771,6 +30853,20 @@ export declare type GraphStoreJiraEpicContributesToAtlasGoalRelationshipArgs = {
|
|
|
30771
30853
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
30772
30854
|
id: Scalars['ID']['input'];
|
|
30773
30855
|
};
|
|
30856
|
+
export declare type GraphStoreJiraIssueBlockedByJiraIssueArgs = {
|
|
30857
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
30858
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
30859
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
30860
|
+
id: Scalars['ID']['input'];
|
|
30861
|
+
sort?: InputMaybe<GraphStoreJiraIssueBlockedByJiraIssueSortInput>;
|
|
30862
|
+
};
|
|
30863
|
+
export declare type GraphStoreJiraIssueBlockedByJiraIssueInverseArgs = {
|
|
30864
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
30865
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
30866
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
30867
|
+
id: Scalars['ID']['input'];
|
|
30868
|
+
sort?: InputMaybe<GraphStoreJiraIssueBlockedByJiraIssueSortInput>;
|
|
30869
|
+
};
|
|
30774
30870
|
export declare type GraphStoreJiraIssueToJiraPriorityInverseArgs = {
|
|
30775
30871
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
30776
30872
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -34054,6 +34150,9 @@ export declare type GraphStoreComponentLinkedJswIssueSortInput = {
|
|
|
34054
34150
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
34055
34151
|
toAti?: InputMaybe<GraphStoreSortInput>;
|
|
34056
34152
|
};
|
|
34153
|
+
export declare type GraphStoreConfluenceBlogpostSharedWithUserSortInput = {
|
|
34154
|
+
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
34155
|
+
};
|
|
34057
34156
|
export declare type GraphStoreConfluencePageHasConfluenceCommentSortInput = {
|
|
34058
34157
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
34059
34158
|
};
|
|
@@ -34075,6 +34174,9 @@ export declare type GraphStoreConfluenceSpaceHasConfluenceBlogpostSortInput = {
|
|
|
34075
34174
|
export declare type GraphStoreConfluenceSpaceHasConfluenceDatabaseSortInput = {
|
|
34076
34175
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
34077
34176
|
};
|
|
34177
|
+
export declare type GraphStoreConfluenceSpaceHasConfluenceFolderSortInput = {
|
|
34178
|
+
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
34179
|
+
};
|
|
34078
34180
|
export declare type GraphStoreConfluenceSpaceHasConfluenceWhiteboardSortInput = {
|
|
34079
34181
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
34080
34182
|
};
|
|
@@ -38423,6 +38525,9 @@ export declare type GraphStoreIssueToWhiteboardSortInput = {
|
|
|
38423
38525
|
export declare type GraphStoreJiraEpicContributesToAtlasGoalSortInput = {
|
|
38424
38526
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
38425
38527
|
};
|
|
38528
|
+
export declare type GraphStoreJiraIssueBlockedByJiraIssueSortInput = {
|
|
38529
|
+
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
38530
|
+
};
|
|
38426
38531
|
export declare type GraphStoreJiraIssueToJiraPrioritySortInput = {
|
|
38427
38532
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
38428
38533
|
};
|
|
@@ -39651,6 +39756,34 @@ export declare type GraphStoreSimplifiedComponentLinkedJswIssueInverseEdge = {
|
|
|
39651
39756
|
};
|
|
39652
39757
|
export declare type GraphStoreSimplifiedComponentLinkedJswIssueInverseUnion = CompassComponent | DevOpsOperationsComponentDetails | DevOpsService;
|
|
39653
39758
|
export declare type GraphStoreSimplifiedComponentLinkedJswIssueUnion = JiraIssue;
|
|
39759
|
+
export declare type GraphStoreSimplifiedConfluenceBlogpostSharedWithUserConnection = HasPageInfo & {
|
|
39760
|
+
__typename?: 'GraphStoreSimplifiedConfluenceBlogpostSharedWithUserConnection';
|
|
39761
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedConfluenceBlogpostSharedWithUserEdge>>>;
|
|
39762
|
+
pageInfo: PageInfo;
|
|
39763
|
+
};
|
|
39764
|
+
export declare type GraphStoreSimplifiedConfluenceBlogpostSharedWithUserEdge = {
|
|
39765
|
+
__typename?: 'GraphStoreSimplifiedConfluenceBlogpostSharedWithUserEdge';
|
|
39766
|
+
createdAt: Scalars['DateTime']['output'];
|
|
39767
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
39768
|
+
id: Scalars['ID']['output'];
|
|
39769
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
39770
|
+
node?: Maybe<GraphStoreSimplifiedConfluenceBlogpostSharedWithUserUnion>;
|
|
39771
|
+
};
|
|
39772
|
+
export declare type GraphStoreSimplifiedConfluenceBlogpostSharedWithUserInverseConnection = HasPageInfo & {
|
|
39773
|
+
__typename?: 'GraphStoreSimplifiedConfluenceBlogpostSharedWithUserInverseConnection';
|
|
39774
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedConfluenceBlogpostSharedWithUserInverseEdge>>>;
|
|
39775
|
+
pageInfo: PageInfo;
|
|
39776
|
+
};
|
|
39777
|
+
export declare type GraphStoreSimplifiedConfluenceBlogpostSharedWithUserInverseEdge = {
|
|
39778
|
+
__typename?: 'GraphStoreSimplifiedConfluenceBlogpostSharedWithUserInverseEdge';
|
|
39779
|
+
createdAt: Scalars['DateTime']['output'];
|
|
39780
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
39781
|
+
id: Scalars['ID']['output'];
|
|
39782
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
39783
|
+
node?: Maybe<GraphStoreSimplifiedConfluenceBlogpostSharedWithUserInverseUnion>;
|
|
39784
|
+
};
|
|
39785
|
+
export declare type GraphStoreSimplifiedConfluenceBlogpostSharedWithUserInverseUnion = ConfluenceBlogPost;
|
|
39786
|
+
export declare type GraphStoreSimplifiedConfluenceBlogpostSharedWithUserUnion = AppUser | AtlassianAccountUser | CustomerUser;
|
|
39654
39787
|
export declare type GraphStoreSimplifiedConfluencePageHasConfluenceCommentConnection = HasPageInfo & {
|
|
39655
39788
|
__typename?: 'GraphStoreSimplifiedConfluencePageHasConfluenceCommentConnection';
|
|
39656
39789
|
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedConfluencePageHasConfluenceCommentEdge>>>;
|
|
@@ -39833,6 +39966,20 @@ export declare type GraphStoreSimplifiedConfluenceSpaceHasConfluenceDatabaseInve
|
|
|
39833
39966
|
};
|
|
39834
39967
|
export declare type GraphStoreSimplifiedConfluenceSpaceHasConfluenceDatabaseInverseUnion = ConfluenceSpace;
|
|
39835
39968
|
export declare type GraphStoreSimplifiedConfluenceSpaceHasConfluenceDatabaseUnion = ConfluenceDatabase;
|
|
39969
|
+
export declare type GraphStoreSimplifiedConfluenceSpaceHasConfluenceFolderInverseConnection = HasPageInfo & {
|
|
39970
|
+
__typename?: 'GraphStoreSimplifiedConfluenceSpaceHasConfluenceFolderInverseConnection';
|
|
39971
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedConfluenceSpaceHasConfluenceFolderInverseEdge>>>;
|
|
39972
|
+
pageInfo: PageInfo;
|
|
39973
|
+
};
|
|
39974
|
+
export declare type GraphStoreSimplifiedConfluenceSpaceHasConfluenceFolderInverseEdge = {
|
|
39975
|
+
__typename?: 'GraphStoreSimplifiedConfluenceSpaceHasConfluenceFolderInverseEdge';
|
|
39976
|
+
createdAt: Scalars['DateTime']['output'];
|
|
39977
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
39978
|
+
id: Scalars['ID']['output'];
|
|
39979
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
39980
|
+
node?: Maybe<GraphStoreSimplifiedConfluenceSpaceHasConfluenceFolderInverseUnion>;
|
|
39981
|
+
};
|
|
39982
|
+
export declare type GraphStoreSimplifiedConfluenceSpaceHasConfluenceFolderInverseUnion = ConfluenceSpace;
|
|
39836
39983
|
export declare type GraphStoreSimplifiedConfluenceSpaceHasConfluenceWhiteboardConnection = HasPageInfo & {
|
|
39837
39984
|
__typename?: 'GraphStoreSimplifiedConfluenceSpaceHasConfluenceWhiteboardConnection';
|
|
39838
39985
|
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedConfluenceSpaceHasConfluenceWhiteboardEdge>>>;
|
|
@@ -40699,6 +40846,34 @@ export declare type GraphStoreSimplifiedJiraEpicContributesToAtlasGoalInverseEdg
|
|
|
40699
40846
|
};
|
|
40700
40847
|
export declare type GraphStoreSimplifiedJiraEpicContributesToAtlasGoalInverseUnion = JiraIssue;
|
|
40701
40848
|
export declare type GraphStoreSimplifiedJiraEpicContributesToAtlasGoalUnion = TownsquareGoal;
|
|
40849
|
+
export declare type GraphStoreSimplifiedJiraIssueBlockedByJiraIssueConnection = HasPageInfo & {
|
|
40850
|
+
__typename?: 'GraphStoreSimplifiedJiraIssueBlockedByJiraIssueConnection';
|
|
40851
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedJiraIssueBlockedByJiraIssueEdge>>>;
|
|
40852
|
+
pageInfo: PageInfo;
|
|
40853
|
+
};
|
|
40854
|
+
export declare type GraphStoreSimplifiedJiraIssueBlockedByJiraIssueEdge = {
|
|
40855
|
+
__typename?: 'GraphStoreSimplifiedJiraIssueBlockedByJiraIssueEdge';
|
|
40856
|
+
createdAt: Scalars['DateTime']['output'];
|
|
40857
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
40858
|
+
id: Scalars['ID']['output'];
|
|
40859
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
40860
|
+
node?: Maybe<GraphStoreSimplifiedJiraIssueBlockedByJiraIssueUnion>;
|
|
40861
|
+
};
|
|
40862
|
+
export declare type GraphStoreSimplifiedJiraIssueBlockedByJiraIssueInverseConnection = HasPageInfo & {
|
|
40863
|
+
__typename?: 'GraphStoreSimplifiedJiraIssueBlockedByJiraIssueInverseConnection';
|
|
40864
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedJiraIssueBlockedByJiraIssueInverseEdge>>>;
|
|
40865
|
+
pageInfo: PageInfo;
|
|
40866
|
+
};
|
|
40867
|
+
export declare type GraphStoreSimplifiedJiraIssueBlockedByJiraIssueInverseEdge = {
|
|
40868
|
+
__typename?: 'GraphStoreSimplifiedJiraIssueBlockedByJiraIssueInverseEdge';
|
|
40869
|
+
createdAt: Scalars['DateTime']['output'];
|
|
40870
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
40871
|
+
id: Scalars['ID']['output'];
|
|
40872
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
40873
|
+
node?: Maybe<GraphStoreSimplifiedJiraIssueBlockedByJiraIssueInverseUnion>;
|
|
40874
|
+
};
|
|
40875
|
+
export declare type GraphStoreSimplifiedJiraIssueBlockedByJiraIssueInverseUnion = JiraIssue;
|
|
40876
|
+
export declare type GraphStoreSimplifiedJiraIssueBlockedByJiraIssueUnion = JiraIssue;
|
|
40702
40877
|
export declare type GraphStoreSimplifiedJiraIssueToJiraPriorityInverseConnection = HasPageInfo & {
|
|
40703
40878
|
__typename?: 'GraphStoreSimplifiedJiraIssueToJiraPriorityInverseConnection';
|
|
40704
40879
|
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedJiraIssueToJiraPriorityInverseEdge>>>;
|
|
@@ -45575,6 +45750,11 @@ export declare type HamsChargeDetails = CommerceChargeDetails & {
|
|
|
45575
45750
|
__typename?: 'HamsChargeDetails';
|
|
45576
45751
|
chargeQuantities?: Maybe<Array<Maybe<HamsChargeQuantity>>>;
|
|
45577
45752
|
};
|
|
45753
|
+
export declare type HamsChargeElement = CommerceChargeElement & {
|
|
45754
|
+
__typename?: 'HamsChargeElement';
|
|
45755
|
+
ceiling?: Maybe<Scalars['Int']['output']>;
|
|
45756
|
+
unit?: Maybe<Scalars['String']['output']>;
|
|
45757
|
+
};
|
|
45578
45758
|
export declare type HamsChargeQuantity = CommerceChargeQuantity & {
|
|
45579
45759
|
__typename?: 'HamsChargeQuantity';
|
|
45580
45760
|
chargeElement?: Maybe<Scalars['String']['output']>;
|
|
@@ -45665,6 +45845,7 @@ export declare type HamsInvoiceGroupExperienceCapabilities = CommerceInvoiceGrou
|
|
|
45665
45845
|
};
|
|
45666
45846
|
export declare type HamsOffering = CommerceOffering & {
|
|
45667
45847
|
__typename?: 'HamsOffering';
|
|
45848
|
+
chargeElements?: Maybe<Array<Maybe<HamsChargeElement>>>;
|
|
45668
45849
|
name?: Maybe<Scalars['String']['output']>;
|
|
45669
45850
|
trial?: Maybe<HamsOfferingTrial>;
|
|
45670
45851
|
};
|
|
@@ -49450,6 +49631,13 @@ export declare type JiraBoard = Node & {
|
|
|
49450
49631
|
id: Scalars['ID']['output'];
|
|
49451
49632
|
lastViewedTimestamp?: Maybe<Scalars['Long']['output']>;
|
|
49452
49633
|
name?: Maybe<Scalars['String']['output']>;
|
|
49634
|
+
reportCategories?: Maybe<JiraReportCategoryConnection>;
|
|
49635
|
+
};
|
|
49636
|
+
export declare type JiraBoardReportCategoriesArgs = {
|
|
49637
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
49638
|
+
before?: InputMaybe<Scalars['String']['input']>;
|
|
49639
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
49640
|
+
last?: InputMaybe<Scalars['Int']['input']>;
|
|
49453
49641
|
};
|
|
49454
49642
|
export declare type JiraBoardConnection = {
|
|
49455
49643
|
__typename?: 'JiraBoardConnection';
|
|
@@ -50177,6 +50365,25 @@ export declare type JiraClearableNumberFieldInput = {
|
|
|
50177
50365
|
fieldId: Scalars['ID']['input'];
|
|
50178
50366
|
value?: InputMaybe<Scalars['Float']['input']>;
|
|
50179
50367
|
};
|
|
50368
|
+
export declare type JiraCloneIssueInput = {
|
|
50369
|
+
assignee?: InputMaybe<JiraUserInfoInput>;
|
|
50370
|
+
includeAttachments?: InputMaybe<Scalars['Boolean']['input']>;
|
|
50371
|
+
includeComments?: InputMaybe<Scalars['Boolean']['input']>;
|
|
50372
|
+
includeLinks?: InputMaybe<Scalars['Boolean']['input']>;
|
|
50373
|
+
includeSubtasksOrChildren?: InputMaybe<Scalars['Boolean']['input']>;
|
|
50374
|
+
issueId: Scalars['ID']['input'];
|
|
50375
|
+
optionalFields?: InputMaybe<Array<JiraOptionalFieldInput>>;
|
|
50376
|
+
reporter?: InputMaybe<JiraUserInfoInput>;
|
|
50377
|
+
summary?: InputMaybe<Scalars['String']['input']>;
|
|
50378
|
+
};
|
|
50379
|
+
export declare type JiraCloneIssueResponse = Payload & {
|
|
50380
|
+
__typename?: 'JiraCloneIssueResponse';
|
|
50381
|
+
errors?: Maybe<Array<MutationError>>;
|
|
50382
|
+
success: Scalars['Boolean']['output'];
|
|
50383
|
+
taskDescription?: Maybe<Scalars['String']['output']>;
|
|
50384
|
+
taskId?: Maybe<Scalars['ID']['output']>;
|
|
50385
|
+
taskStatus?: Maybe<JiraLongRunningTaskStatus>;
|
|
50386
|
+
};
|
|
50180
50387
|
export declare type JiraCmdbAttribute = {
|
|
50181
50388
|
__typename?: 'JiraCmdbAttribute';
|
|
50182
50389
|
attributeId?: Maybe<Scalars['String']['output']>;
|
|
@@ -50269,6 +50476,16 @@ export declare type JiraCmdbFieldConfigAttributesIncludedInAutoCompleteSearchArg
|
|
|
50269
50476
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
50270
50477
|
last?: InputMaybe<Scalars['Int']['input']>;
|
|
50271
50478
|
};
|
|
50479
|
+
export declare type JiraCmdbFieldOperationInput = {
|
|
50480
|
+
ids?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
50481
|
+
operation: JiraSingleValueFieldOperations;
|
|
50482
|
+
};
|
|
50483
|
+
export declare type JiraCmdbFieldPayload = Payload & {
|
|
50484
|
+
__typename?: 'JiraCmdbFieldPayload';
|
|
50485
|
+
errors?: Maybe<Array<MutationError>>;
|
|
50486
|
+
field?: Maybe<JiraCmdbField>;
|
|
50487
|
+
success: Scalars['Boolean']['output'];
|
|
50488
|
+
};
|
|
50272
50489
|
export declare type JiraCmdbIcon = {
|
|
50273
50490
|
__typename?: 'JiraCmdbIcon';
|
|
50274
50491
|
id: Scalars['String']['output'];
|
|
@@ -54351,6 +54568,7 @@ export declare type JiraIssueSearchScope = {
|
|
|
54351
54568
|
};
|
|
54352
54569
|
export declare type JiraIssueSearchStaticViewInput = {
|
|
54353
54570
|
isGroupingEnabled?: InputMaybe<Scalars['Boolean']['input']>;
|
|
54571
|
+
isHideDoneEnabled?: InputMaybe<Scalars['Boolean']['input']>;
|
|
54354
54572
|
isHierarchyEnabled?: InputMaybe<Scalars['Boolean']['input']>;
|
|
54355
54573
|
};
|
|
54356
54574
|
export declare type JiraIssueSearchStatus = {
|
|
@@ -54488,6 +54706,7 @@ export declare type JiraIssueTransitionCommentVisibilityInput = {
|
|
|
54488
54706
|
export declare type JiraIssueTransitionFieldLevelInput = {
|
|
54489
54707
|
JiraAffectedServicesField?: InputMaybe<Array<JiraUpdateAffectedServicesFieldInput>>;
|
|
54490
54708
|
JiraAttachmentsField?: InputMaybe<Array<JiraUpdateAttachmentFieldInput>>;
|
|
54709
|
+
JiraCMDBField?: InputMaybe<Array<JiraUpdateCmdbFieldInput>>;
|
|
54491
54710
|
JiraCascadingSelectField?: InputMaybe<Array<JiraUpdateCascadingSelectFieldInput>>;
|
|
54492
54711
|
JiraCheckboxesField?: InputMaybe<Array<JiraUpdateCheckboxesFieldInput>>;
|
|
54493
54712
|
JiraColorField?: InputMaybe<Array<JiraUpdateColorFieldInput>>;
|
|
@@ -55925,6 +56144,7 @@ export declare type JiraMutation = {
|
|
|
55925
56144
|
assignRelatedWorkToUser?: Maybe<JiraAssignRelatedWorkPayload>;
|
|
55926
56145
|
attributeUnsplashImage?: Maybe<JiraUnsplashAttributionPayload>;
|
|
55927
56146
|
bulkCreateRequestTypeFromTemplate?: Maybe<JiraServiceManagementCreateRequestTypeFromTemplatePayload>;
|
|
56147
|
+
cloneIssue?: Maybe<JiraCloneIssueResponse>;
|
|
55928
56148
|
createAndAssociateWorkflowFromJsmTemplate?: Maybe<JiraServiceManagementCreateAndAssociateWorkflowFromTemplatePayload>;
|
|
55929
56149
|
createAppNavigationItem?: Maybe<JiraCreateNavigationItemPayload>;
|
|
55930
56150
|
createApproverListField?: Maybe<JiraCreateApproverListFieldPayload>;
|
|
@@ -56021,6 +56241,7 @@ export declare type JiraMutation = {
|
|
|
56021
56241
|
updateAttachmentField?: Maybe<JiraAttachmentFieldPayload>;
|
|
56022
56242
|
updateCascadingSelectField?: Maybe<JiraCascadingSelectFieldPayload>;
|
|
56023
56243
|
updateCheckboxesField?: Maybe<JiraCheckboxesFieldPayload>;
|
|
56244
|
+
updateCmdbField?: Maybe<JiraCmdbFieldPayload>;
|
|
56024
56245
|
updateColorField?: Maybe<JiraColorFieldPayload>;
|
|
56025
56246
|
updateComponentsField?: Maybe<JiraComponentsFieldPayload>;
|
|
56026
56247
|
updateCustomBackground?: Maybe<JiraUpdateCustomBackgroundPayload>;
|
|
@@ -56140,6 +56361,9 @@ export declare type JiraMutationAttributeUnsplashImageArgs = {
|
|
|
56140
56361
|
export declare type JiraMutationBulkCreateRequestTypeFromTemplateArgs = {
|
|
56141
56362
|
input: JiraServiceManagementBulkCreateRequestTypeFromTemplateInput;
|
|
56142
56363
|
};
|
|
56364
|
+
export declare type JiraMutationCloneIssueArgs = {
|
|
56365
|
+
input: JiraCloneIssueInput;
|
|
56366
|
+
};
|
|
56143
56367
|
export declare type JiraMutationCreateAndAssociateWorkflowFromJsmTemplateArgs = {
|
|
56144
56368
|
input: JiraServiceManagementCreateAndAssociateWorkflowFromTemplateInput;
|
|
56145
56369
|
};
|
|
@@ -56462,6 +56686,9 @@ export declare type JiraMutationUpdateCascadingSelectFieldArgs = {
|
|
|
56462
56686
|
export declare type JiraMutationUpdateCheckboxesFieldArgs = {
|
|
56463
56687
|
input: JiraUpdateCheckboxesFieldInput;
|
|
56464
56688
|
};
|
|
56689
|
+
export declare type JiraMutationUpdateCmdbFieldArgs = {
|
|
56690
|
+
input: JiraUpdateCmdbFieldInput;
|
|
56691
|
+
};
|
|
56465
56692
|
export declare type JiraMutationUpdateColorFieldArgs = {
|
|
56466
56693
|
input: JiraUpdateColorFieldInput;
|
|
56467
56694
|
};
|
|
@@ -57176,6 +57403,10 @@ export declare type JiraOptionEdge = {
|
|
|
57176
57403
|
cursor: Scalars['String']['output'];
|
|
57177
57404
|
node?: Maybe<JiraOption>;
|
|
57178
57405
|
};
|
|
57406
|
+
export declare type JiraOptionalFieldInput = {
|
|
57407
|
+
fieldId: Scalars['String']['input'];
|
|
57408
|
+
shouldClone: Scalars['Boolean']['input'];
|
|
57409
|
+
};
|
|
57179
57410
|
export declare type JiraOptoutDevOpsIssuePanelNotConnectedInput = {
|
|
57180
57411
|
cloudId: Scalars['ID']['input'];
|
|
57181
57412
|
};
|
|
@@ -57918,6 +58149,7 @@ export declare type JiraProject = Node & {
|
|
|
57918
58149
|
projectTypeName?: Maybe<Scalars['String']['output']>;
|
|
57919
58150
|
projectUrl?: Maybe<Scalars['String']['output']>;
|
|
57920
58151
|
projectWithVisibleIssueTypeIds?: Maybe<JiraProjectWithIssueTypeIds>;
|
|
58152
|
+
reportCategories?: Maybe<JiraReportCategoryConnection>;
|
|
57921
58153
|
repositories?: Maybe<GraphStoreSimplifiedProjectAssociatedRepoConnection>;
|
|
57922
58154
|
requestTypes?: Maybe<JiraServiceManagementRequestTypeConnection>;
|
|
57923
58155
|
selectedDeploymentAppsProperty?: Maybe<Array<JiraDeploymentApp>>;
|
|
@@ -58033,6 +58265,12 @@ export declare type JiraProjectProjectFieldTypeGroupsArgs = {
|
|
|
58033
58265
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
58034
58266
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
58035
58267
|
};
|
|
58268
|
+
export declare type JiraProjectReportCategoriesArgs = {
|
|
58269
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
58270
|
+
before?: InputMaybe<Scalars['String']['input']>;
|
|
58271
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
58272
|
+
last?: InputMaybe<Scalars['Int']['input']>;
|
|
58273
|
+
};
|
|
58036
58274
|
export declare type JiraProjectRepositoriesArgs = {
|
|
58037
58275
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
58038
58276
|
filter?: InputMaybe<GraphStoreProjectAssociatedRepoFilterInput>;
|
|
@@ -58194,6 +58432,12 @@ export declare type JiraProjectConnection = HasPageInfo & HasTotal & {
|
|
|
58194
58432
|
pageInfo: PageInfo;
|
|
58195
58433
|
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
58196
58434
|
};
|
|
58435
|
+
export declare type JiraProjectCreateCustomBackgroundMutationPayload = Payload & {
|
|
58436
|
+
__typename?: 'JiraProjectCreateCustomBackgroundMutationPayload';
|
|
58437
|
+
errors?: Maybe<Array<MutationError>>;
|
|
58438
|
+
project?: Maybe<JiraProject>;
|
|
58439
|
+
success: Scalars['Boolean']['output'];
|
|
58440
|
+
};
|
|
58197
58441
|
export declare enum JiraProjectDateTimeFormat {
|
|
58198
58442
|
CompleteDatetimeFormat = "COMPLETE_DATETIME_FORMAT",
|
|
58199
58443
|
DayFormat = "DAY_FORMAT",
|
|
@@ -58201,6 +58445,16 @@ export declare enum JiraProjectDateTimeFormat {
|
|
|
58201
58445
|
Relative = "RELATIVE",
|
|
58202
58446
|
TimeFormat = "TIME_FORMAT"
|
|
58203
58447
|
}
|
|
58448
|
+
export declare type JiraProjectDeleteCustomBackgroundInput = {
|
|
58449
|
+
customBackgroundId: Scalars['ID']['input'];
|
|
58450
|
+
entityId: Scalars['ID']['input'];
|
|
58451
|
+
};
|
|
58452
|
+
export declare type JiraProjectDeleteCustomBackgroundMutationPayload = Payload & {
|
|
58453
|
+
__typename?: 'JiraProjectDeleteCustomBackgroundMutationPayload';
|
|
58454
|
+
errors?: Maybe<Array<MutationError>>;
|
|
58455
|
+
project?: Maybe<JiraProject>;
|
|
58456
|
+
success: Scalars['Boolean']['output'];
|
|
58457
|
+
};
|
|
58204
58458
|
export declare type JiraProjectEdge = {
|
|
58205
58459
|
__typename?: 'JiraProjectEdge';
|
|
58206
58460
|
cursor: Scalars['String']['output'];
|
|
@@ -60066,6 +60320,40 @@ export declare type JiraReportCategory = {
|
|
|
60066
60320
|
name?: Maybe<Scalars['String']['output']>;
|
|
60067
60321
|
reports?: Maybe<Array<Maybe<JiraReport>>>;
|
|
60068
60322
|
};
|
|
60323
|
+
export declare type JiraReportCategoryConnection = {
|
|
60324
|
+
__typename?: 'JiraReportCategoryConnection';
|
|
60325
|
+
edges?: Maybe<Array<Maybe<JiraReportCategoryEdge>>>;
|
|
60326
|
+
pageInfo: PageInfo;
|
|
60327
|
+
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
60328
|
+
};
|
|
60329
|
+
export declare type JiraReportCategoryEdge = {
|
|
60330
|
+
__typename?: 'JiraReportCategoryEdge';
|
|
60331
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
60332
|
+
node?: Maybe<JiraReportCategoryNode>;
|
|
60333
|
+
};
|
|
60334
|
+
export declare type JiraReportCategoryNode = {
|
|
60335
|
+
__typename?: 'JiraReportCategoryNode';
|
|
60336
|
+
id: Scalars['ID']['output'];
|
|
60337
|
+
name?: Maybe<Scalars['String']['output']>;
|
|
60338
|
+
reports?: Maybe<JiraReportConnection>;
|
|
60339
|
+
};
|
|
60340
|
+
export declare type JiraReportCategoryNodeReportsArgs = {
|
|
60341
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
60342
|
+
before?: InputMaybe<Scalars['String']['input']>;
|
|
60343
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
60344
|
+
last?: InputMaybe<Scalars['Int']['input']>;
|
|
60345
|
+
};
|
|
60346
|
+
export declare type JiraReportConnection = {
|
|
60347
|
+
__typename?: 'JiraReportConnection';
|
|
60348
|
+
edges?: Maybe<Array<Maybe<JiraReportConnectionEdge>>>;
|
|
60349
|
+
pageInfo: PageInfo;
|
|
60350
|
+
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
60351
|
+
};
|
|
60352
|
+
export declare type JiraReportConnectionEdge = {
|
|
60353
|
+
__typename?: 'JiraReportConnectionEdge';
|
|
60354
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
60355
|
+
node?: Maybe<JiraReport>;
|
|
60356
|
+
};
|
|
60069
60357
|
export declare type JiraReportsPage = {
|
|
60070
60358
|
__typename?: 'JiraReportsPage';
|
|
60071
60359
|
categories?: Maybe<Array<Maybe<JiraReportCategory>>>;
|
|
@@ -63017,6 +63305,10 @@ export declare type JiraUpdateCheckboxesFieldInput = {
|
|
|
63017
63305
|
id: Scalars['ID']['input'];
|
|
63018
63306
|
operations: Array<JiraCheckboxesFieldOperationInput>;
|
|
63019
63307
|
};
|
|
63308
|
+
export declare type JiraUpdateCmdbFieldInput = {
|
|
63309
|
+
id: Scalars['ID']['input'];
|
|
63310
|
+
operation: JiraCmdbFieldOperationInput;
|
|
63311
|
+
};
|
|
63020
63312
|
export declare type JiraUpdateColorFieldInput = {
|
|
63021
63313
|
id: Scalars['ID']['input'];
|
|
63022
63314
|
operation: JiraColorFieldOperationInput;
|
|
@@ -63513,6 +63805,9 @@ export declare type JiraUserGroup = {
|
|
|
63513
63805
|
accountId?: Maybe<Scalars['String']['output']>;
|
|
63514
63806
|
displayName?: Maybe<Scalars['String']['output']>;
|
|
63515
63807
|
};
|
|
63808
|
+
export declare type JiraUserInfoInput = {
|
|
63809
|
+
id?: InputMaybe<Scalars['ID']['input']>;
|
|
63810
|
+
};
|
|
63516
63811
|
export declare type JiraUserInput = {
|
|
63517
63812
|
accountId: Scalars['ID']['input'];
|
|
63518
63813
|
};
|
|
@@ -64976,10 +65271,25 @@ export declare type JsmChatInitializeNativeConfigResponse = {
|
|
|
64976
65271
|
};
|
|
64977
65272
|
export declare type JsmChatJiraFieldAppendix = {
|
|
64978
65273
|
__typename?: 'JsmChatJiraFieldAppendix';
|
|
65274
|
+
field?: Maybe<JsmChatRequestTypeField>;
|
|
64979
65275
|
fieldId: Scalars['String']['output'];
|
|
64980
65276
|
jiraProjectId: Scalars['String']['output'];
|
|
64981
65277
|
requestTypeId: Scalars['String']['output'];
|
|
64982
65278
|
};
|
|
65279
|
+
export declare type JsmChatJiraFieldOption = {
|
|
65280
|
+
__typename?: 'JsmChatJiraFieldOption';
|
|
65281
|
+
children?: Maybe<Array<Maybe<JsmChatJiraFieldOption>>>;
|
|
65282
|
+
label?: Maybe<Scalars['String']['output']>;
|
|
65283
|
+
value?: Maybe<Scalars['String']['output']>;
|
|
65284
|
+
};
|
|
65285
|
+
export declare type JsmChatJiraSchema = {
|
|
65286
|
+
__typename?: 'JsmChatJiraSchema';
|
|
65287
|
+
custom?: Maybe<Scalars['String']['output']>;
|
|
65288
|
+
customId?: Maybe<Scalars['String']['output']>;
|
|
65289
|
+
items?: Maybe<Scalars['String']['output']>;
|
|
65290
|
+
system?: Maybe<Scalars['String']['output']>;
|
|
65291
|
+
type?: Maybe<Scalars['String']['output']>;
|
|
65292
|
+
};
|
|
64983
65293
|
export declare type JsmChatMessageConnection = {
|
|
64984
65294
|
__typename?: 'JsmChatMessageConnection';
|
|
64985
65295
|
edges?: Maybe<Array<Maybe<JsmChatMessageEdge>>>;
|
|
@@ -65167,6 +65477,17 @@ export declare type JsmChatRequestTypeData = {
|
|
|
65167
65477
|
requestTypeId?: Maybe<Scalars['String']['output']>;
|
|
65168
65478
|
requestTypeName?: Maybe<Scalars['String']['output']>;
|
|
65169
65479
|
};
|
|
65480
|
+
export declare type JsmChatRequestTypeField = {
|
|
65481
|
+
__typename?: 'JsmChatRequestTypeField';
|
|
65482
|
+
defaultValues?: Maybe<Array<Maybe<JsmChatJiraFieldOption>>>;
|
|
65483
|
+
description?: Maybe<Scalars['String']['output']>;
|
|
65484
|
+
fieldId?: Maybe<Scalars['String']['output']>;
|
|
65485
|
+
jiraSchema?: Maybe<JsmChatJiraSchema>;
|
|
65486
|
+
name?: Maybe<Scalars['String']['output']>;
|
|
65487
|
+
required?: Maybe<Scalars['Boolean']['output']>;
|
|
65488
|
+
validValues?: Maybe<Array<Maybe<JsmChatJiraFieldOption>>>;
|
|
65489
|
+
visible?: Maybe<Scalars['Boolean']['output']>;
|
|
65490
|
+
};
|
|
65170
65491
|
export declare type JsmChatRequestTypesMappedResponse = {
|
|
65171
65492
|
__typename?: 'JsmChatRequestTypesMappedResponse';
|
|
65172
65493
|
requestTypeId?: Maybe<Scalars['String']['output']>;
|
|
@@ -70672,6 +70993,8 @@ export declare type Mutation = {
|
|
|
70672
70993
|
jira?: Maybe<JiraMutation>;
|
|
70673
70994
|
jiraCannedResponse?: Maybe<JiraCannedResponseMutationApi>;
|
|
70674
70995
|
jiraOAuthApps?: Maybe<JiraOAuthAppsMutation>;
|
|
70996
|
+
jira_createCustomBackground?: Maybe<JiraProjectCreateCustomBackgroundMutationPayload>;
|
|
70997
|
+
jira_deleteCustomBackground?: Maybe<JiraProjectDeleteCustomBackgroundMutationPayload>;
|
|
70675
70998
|
jira_reorderBoardViewColumn?: Maybe<JiraReorderBoardViewColumnPayload>;
|
|
70676
70999
|
jira_setBoardViewCardFieldSelected?: Maybe<JiraSetBoardViewCardFieldSelectedPayload>;
|
|
70677
71000
|
jira_setBoardViewCardOptionState?: Maybe<JiraSetBoardViewCardOptionStatePayload>;
|
|
@@ -71880,6 +72203,12 @@ export declare type MutationInvokeExtensionArgs = {
|
|
|
71880
72203
|
export declare type MutationInvokePolarisObjectArgs = {
|
|
71881
72204
|
input: InvokePolarisObjectInput;
|
|
71882
72205
|
};
|
|
72206
|
+
export declare type MutationJira_CreateCustomBackgroundArgs = {
|
|
72207
|
+
input: JiraCreateCustomBackgroundInput;
|
|
72208
|
+
};
|
|
72209
|
+
export declare type MutationJira_DeleteCustomBackgroundArgs = {
|
|
72210
|
+
input: JiraProjectDeleteCustomBackgroundInput;
|
|
72211
|
+
};
|
|
71883
72212
|
export declare type MutationJira_ReorderBoardViewColumnArgs = {
|
|
71884
72213
|
input: JiraReorderBoardViewColumnInput;
|
|
71885
72214
|
};
|
|
@@ -76985,6 +77314,7 @@ export declare type QueryConnectionManager_ConnectionsByJiraProjectArgs = {
|
|
|
76985
77314
|
};
|
|
76986
77315
|
export declare type QueryContentArgs = {
|
|
76987
77316
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
77317
|
+
cloudId?: InputMaybe<Scalars['ID']['input']>;
|
|
76988
77318
|
draftShareId?: InputMaybe<Scalars['String']['input']>;
|
|
76989
77319
|
embeddedContentRender?: InputMaybe<Scalars['String']['input']>;
|
|
76990
77320
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
@@ -78041,6 +78371,7 @@ export declare type QuerySettings_NavigationCustomisationArgs = {
|
|
|
78041
78371
|
ownerAri?: InputMaybe<Scalars['ID']['input']>;
|
|
78042
78372
|
};
|
|
78043
78373
|
export declare type QuerySingleContentArgs = {
|
|
78374
|
+
cloudId?: InputMaybe<Scalars['ID']['input']>;
|
|
78044
78375
|
id?: InputMaybe<Scalars['ID']['input']>;
|
|
78045
78376
|
shareToken?: InputMaybe<Scalars['String']['input']>;
|
|
78046
78377
|
status?: InputMaybe<Array<InputMaybe<Scalars['String']['input']>>>;
|
|
@@ -88051,7 +88382,9 @@ export declare type UnifiedAccountDetails = UnifiedINode & {
|
|
|
88051
88382
|
aaid?: Maybe<Scalars['String']['output']>;
|
|
88052
88383
|
emailId?: Maybe<Scalars['String']['output']>;
|
|
88053
88384
|
id: Scalars['ID']['output'];
|
|
88385
|
+
nickname?: Maybe<Scalars['String']['output']>;
|
|
88054
88386
|
orgId?: Maybe<Scalars['String']['output']>;
|
|
88387
|
+
picture?: Maybe<Scalars['String']['output']>;
|
|
88055
88388
|
};
|
|
88056
88389
|
export declare type UnifiedAccountMutation = {
|
|
88057
88390
|
__typename?: 'UnifiedAccountMutation';
|