@forge/cli-shared 6.11.0-next.8 → 6.11.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +111 -0
- package/out/graphql/app-environment-graphql-client.d.ts +1 -0
- package/out/graphql/app-environment-graphql-client.d.ts.map +1 -1
- package/out/graphql/graphql-types.d.ts +1353 -39
- package/out/graphql/graphql-types.d.ts.map +1 -1
- package/out/graphql/graphql-types.js +112 -26
- package/out/shared/error-handling.d.ts +3 -0
- package/out/shared/error-handling.d.ts.map +1 -1
- package/out/shared/error-handling.js +7 -1
- package/out/ui/text.d.ts +17 -9
- package/out/ui/text.d.ts.map +1 -1
- package/out/ui/text.js +34 -26
- package/package.json +4 -4
|
@@ -40,6 +40,10 @@ export declare type Scalars = {
|
|
|
40
40
|
input: number;
|
|
41
41
|
output: number;
|
|
42
42
|
};
|
|
43
|
+
AppStorageEntityValue: {
|
|
44
|
+
input: any;
|
|
45
|
+
output: any;
|
|
46
|
+
};
|
|
43
47
|
AppStoredCustomEntityFieldValue: {
|
|
44
48
|
input: any;
|
|
45
49
|
output: any;
|
|
@@ -812,6 +816,7 @@ export declare type AgentStudioAgentEdge = {
|
|
|
812
816
|
export declare type AgentStudioAgentQueryInput = {
|
|
813
817
|
name?: InputMaybe<Scalars['String']['input']>;
|
|
814
818
|
onlyFavouriteAgents?: InputMaybe<Scalars['Boolean']['input']>;
|
|
819
|
+
onlyMyAgents?: InputMaybe<Scalars['Boolean']['input']>;
|
|
815
820
|
};
|
|
816
821
|
export declare type AgentStudioAgentResult = AgentStudioAssistant | AgentStudioServiceAgent | QueryError;
|
|
817
822
|
export declare enum AgentStudioAgentType {
|
|
@@ -832,6 +837,7 @@ export declare type AgentStudioAssistant = AgentStudioAgent & Node & {
|
|
|
832
837
|
description?: Maybe<Scalars['String']['output']>;
|
|
833
838
|
id: Scalars['ID']['output'];
|
|
834
839
|
instructions?: Maybe<Scalars['String']['output']>;
|
|
840
|
+
isFavourite?: Maybe<Scalars['Boolean']['output']>;
|
|
835
841
|
knowledgeSources?: Maybe<AgentStudioKnowledgeConfiguration>;
|
|
836
842
|
name?: Maybe<Scalars['String']['output']>;
|
|
837
843
|
};
|
|
@@ -910,6 +916,11 @@ export declare type AgentStudioCustomAction = {
|
|
|
910
916
|
knowledgeSources?: Maybe<AgentStudioKnowledgeConfiguration>;
|
|
911
917
|
name: Scalars['String']['output'];
|
|
912
918
|
};
|
|
919
|
+
export declare type AgentStudioCustomActionList = {
|
|
920
|
+
__typename?: 'AgentStudioCustomActionList';
|
|
921
|
+
customActionList: Array<AgentStudioCustomAction>;
|
|
922
|
+
};
|
|
923
|
+
export declare type AgentStudioCustomActionListResult = AgentStudioCustomActionList | QueryError;
|
|
913
924
|
export declare type AgentStudioCustomActionResult = AgentStudioAssistantCustomAction | QueryError;
|
|
914
925
|
export declare type AgentStudioEmailChannel = AgentStudioChannel & {
|
|
915
926
|
__typename?: 'AgentStudioEmailChannel';
|
|
@@ -1051,12 +1062,41 @@ export declare type AgentStudioUpdateConversationStartersPayload = Payload & {
|
|
|
1051
1062
|
errors?: Maybe<Array<MutationError>>;
|
|
1052
1063
|
success: Scalars['Boolean']['output'];
|
|
1053
1064
|
};
|
|
1065
|
+
export declare type AgentStudioUpdateCustomActionInput = {
|
|
1066
|
+
action?: InputMaybe<AgentStudioActionInput>;
|
|
1067
|
+
creatorId: Scalars['ID']['input'];
|
|
1068
|
+
instructions: Scalars['String']['input'];
|
|
1069
|
+
invocationDescription: Scalars['String']['input'];
|
|
1070
|
+
knowledgeSources?: InputMaybe<AgentStudioKnowledgeConfigurationInput>;
|
|
1071
|
+
name: Scalars['String']['input'];
|
|
1072
|
+
};
|
|
1073
|
+
export declare type AgentStudioUpdateCustomActionPayload = Payload & {
|
|
1074
|
+
__typename?: 'AgentStudioUpdateCustomActionPayload';
|
|
1075
|
+
customAction?: Maybe<AgentStudioCustomAction>;
|
|
1076
|
+
errors?: Maybe<Array<MutationError>>;
|
|
1077
|
+
success: Scalars['Boolean']['output'];
|
|
1078
|
+
};
|
|
1079
|
+
export declare enum AiCoreApiQuestionType {
|
|
1080
|
+
DraftDocument = "DRAFT_DOCUMENT",
|
|
1081
|
+
KnowledgeBase = "KNOWLEDGE_BASE"
|
|
1082
|
+
}
|
|
1083
|
+
export declare type AiCoreApiQuestionWithType = {
|
|
1084
|
+
__typename?: 'AiCoreApiQuestionWithType';
|
|
1085
|
+
question: Scalars['String']['output'];
|
|
1086
|
+
type: AiCoreApiQuestionType;
|
|
1087
|
+
};
|
|
1054
1088
|
export declare type AiCoreApiVsaQuestions = {
|
|
1055
1089
|
__typename?: 'AiCoreApiVSAQuestions';
|
|
1056
1090
|
projectAri: Scalars['ID']['output'];
|
|
1057
1091
|
questions: Array<Maybe<Scalars['String']['output']>>;
|
|
1058
1092
|
};
|
|
1059
1093
|
export declare type AiCoreApiVsaQuestionsResult = AiCoreApiVsaQuestions | QueryError;
|
|
1094
|
+
export declare type AiCoreApiVsaQuestionsWithType = {
|
|
1095
|
+
__typename?: 'AiCoreApiVSAQuestionsWithType';
|
|
1096
|
+
projectAri: Scalars['ID']['output'];
|
|
1097
|
+
questions: Array<Maybe<AiCoreApiQuestionWithType>>;
|
|
1098
|
+
};
|
|
1099
|
+
export declare type AiCoreApiVsaQuestionsWithTypeResult = AiCoreApiVsaQuestionsWithType | QueryError;
|
|
1060
1100
|
export declare type AiCoreApiVsaReporting = {
|
|
1061
1101
|
__typename?: 'AiCoreApiVSAReporting';
|
|
1062
1102
|
projectAri: Scalars['ID']['output'];
|
|
@@ -1842,7 +1882,7 @@ export declare type AppLogsWithMetaData = {
|
|
|
1842
1882
|
environmentId: Scalars['String']['output'];
|
|
1843
1883
|
error?: Maybe<Scalars['String']['output']>;
|
|
1844
1884
|
functionKey?: Maybe<Scalars['String']['output']>;
|
|
1845
|
-
installationContext
|
|
1885
|
+
installationContext?: Maybe<Scalars['String']['output']>;
|
|
1846
1886
|
invocationId: Scalars['String']['output'];
|
|
1847
1887
|
licenseState?: Maybe<LicenseValue>;
|
|
1848
1888
|
lvl?: Maybe<Scalars['String']['output']>;
|
|
@@ -1989,6 +2029,14 @@ export declare enum AppSecurityPoliciesPermissionTypeExtension {
|
|
|
1989
2029
|
export declare type AppServicesFilter = {
|
|
1990
2030
|
name: Scalars['String']['input'];
|
|
1991
2031
|
};
|
|
2032
|
+
export declare type AppStorageAdmin = {
|
|
2033
|
+
__typename?: 'AppStorageAdmin';
|
|
2034
|
+
appId: Scalars['ID']['output'];
|
|
2035
|
+
kvsQuery: AppStorageKvsQueryPayload;
|
|
2036
|
+
};
|
|
2037
|
+
export declare type AppStorageAdminKvsQueryArgs = {
|
|
2038
|
+
input: AppStorageKvsQueryInput;
|
|
2039
|
+
};
|
|
1992
2040
|
export declare type AppStorageCustomEntityMutation = {
|
|
1993
2041
|
__typename?: 'AppStorageCustomEntityMutation';
|
|
1994
2042
|
deleteAppStoredCustomEntity?: Maybe<DeleteAppStoredCustomEntityPayload>;
|
|
@@ -2000,6 +2048,26 @@ export declare type AppStorageCustomEntityMutationDeleteAppStoredCustomEntityArg
|
|
|
2000
2048
|
export declare type AppStorageCustomEntityMutationSetAppStoredCustomEntityArgs = {
|
|
2001
2049
|
input: SetAppStoredCustomEntityMutationInput;
|
|
2002
2050
|
};
|
|
2051
|
+
export declare type AppStorageEntityNode = {
|
|
2052
|
+
__typename?: 'AppStorageEntityNode';
|
|
2053
|
+
key: Scalars['String']['output'];
|
|
2054
|
+
value: Scalars['AppStorageEntityValue']['output'];
|
|
2055
|
+
};
|
|
2056
|
+
export declare type AppStorageKvsQueryInput = {
|
|
2057
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
2058
|
+
contextAri: Scalars['ID']['input'];
|
|
2059
|
+
environmentId: Scalars['ID']['input'];
|
|
2060
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
2061
|
+
installationId: Scalars['ID']['input'];
|
|
2062
|
+
oauthClientId: Scalars['ID']['input'];
|
|
2063
|
+
};
|
|
2064
|
+
export declare type AppStorageKvsQueryPayload = {
|
|
2065
|
+
__typename?: 'AppStorageKvsQueryPayload';
|
|
2066
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
2067
|
+
nodes: Array<AppStorageEntityNode>;
|
|
2068
|
+
pageInfo: AppStoragePageInfo;
|
|
2069
|
+
totalCount: Scalars['Int']['output'];
|
|
2070
|
+
};
|
|
2003
2071
|
export declare type AppStorageMutation = {
|
|
2004
2072
|
__typename?: 'AppStorageMutation';
|
|
2005
2073
|
deleteAppStoredEntity?: Maybe<DeleteAppStoredEntityPayload>;
|
|
@@ -2015,6 +2083,11 @@ export declare type AppStorageOrderByInput = {
|
|
|
2015
2083
|
columnName: Scalars['String']['input'];
|
|
2016
2084
|
direction: AppStorageSqlTableDataSortDirection;
|
|
2017
2085
|
};
|
|
2086
|
+
export declare type AppStoragePageInfo = {
|
|
2087
|
+
__typename?: 'AppStoragePageInfo';
|
|
2088
|
+
hasNextPage: Scalars['Boolean']['output'];
|
|
2089
|
+
hasPreviousPage: Scalars['Boolean']['output'];
|
|
2090
|
+
};
|
|
2018
2091
|
export declare type AppStorageSqlDatabaseColumn = {
|
|
2019
2092
|
__typename?: 'AppStorageSqlDatabaseColumn';
|
|
2020
2093
|
default: Scalars['String']['output'];
|
|
@@ -3132,6 +3205,7 @@ export declare type Build = {
|
|
|
3132
3205
|
__typename?: 'Build';
|
|
3133
3206
|
appId: Scalars['ID']['output'];
|
|
3134
3207
|
createdAt: Scalars['String']['output'];
|
|
3208
|
+
createdByUser?: Maybe<User>;
|
|
3135
3209
|
tag: Scalars['String']['output'];
|
|
3136
3210
|
};
|
|
3137
3211
|
export declare type BuildConnection = {
|
|
@@ -3655,6 +3729,7 @@ export declare enum CcpCreateEntitlementExperienceOptionsConfirmationScreen {
|
|
|
3655
3729
|
export declare type CcpCreateEntitlementInput = {
|
|
3656
3730
|
experienceOptions?: InputMaybe<CcpCreateEntitlementExperienceOptions>;
|
|
3657
3731
|
offeringKey?: InputMaybe<Scalars['ID']['input']>;
|
|
3732
|
+
offeringName?: InputMaybe<Scalars['String']['input']>;
|
|
3658
3733
|
orderOptions?: InputMaybe<CcpCreateEntitlementOrderOptions>;
|
|
3659
3734
|
productKey?: InputMaybe<Scalars['ID']['input']>;
|
|
3660
3735
|
relatedEntitlements?: InputMaybe<Array<CcpCreateEntitlementRelationship>>;
|
|
@@ -3906,6 +3981,7 @@ export declare type CcpOffering = CommerceOffering & Node & {
|
|
|
3906
3981
|
name?: Maybe<Scalars['String']['output']>;
|
|
3907
3982
|
offeringChargeElements?: Maybe<Array<Maybe<CcpOfferingChargeElement>>>;
|
|
3908
3983
|
offeringGroup?: Maybe<CcpOfferingGroup>;
|
|
3984
|
+
offeringRelationships?: Maybe<CcpOfferingRelationshipConnection>;
|
|
3909
3985
|
pricingType?: Maybe<CcpPricingType>;
|
|
3910
3986
|
product?: Maybe<CcpProduct>;
|
|
3911
3987
|
productKey?: Maybe<Scalars['ID']['output']>;
|
|
@@ -3925,6 +4001,11 @@ export declare type CcpOffering = CommerceOffering & Node & {
|
|
|
3925
4001
|
export declare type CcpOfferingDefaultTransitionsArgs = {
|
|
3926
4002
|
offeringName?: InputMaybe<Scalars['String']['input']>;
|
|
3927
4003
|
};
|
|
4004
|
+
export declare type CcpOfferingOfferingRelationshipsArgs = {
|
|
4005
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
4006
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
4007
|
+
relationshipType?: InputMaybe<CcpRelationshipType>;
|
|
4008
|
+
};
|
|
3928
4009
|
export declare type CcpOfferingTransitionsArgs = {
|
|
3929
4010
|
offeringGroupSlug?: InputMaybe<Scalars['String']['input']>;
|
|
3930
4011
|
offeringName?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -3970,10 +4051,21 @@ export declare type CcpOfferingRelationship = {
|
|
|
3970
4051
|
updatedAt?: Maybe<Scalars['Float']['output']>;
|
|
3971
4052
|
version?: Maybe<Scalars['Int']['output']>;
|
|
3972
4053
|
};
|
|
4054
|
+
export declare type CcpOfferingRelationshipConnection = {
|
|
4055
|
+
__typename?: 'CcpOfferingRelationshipConnection';
|
|
4056
|
+
edges?: Maybe<Array<CcpOfferingRelationshipEdge>>;
|
|
4057
|
+
nodes?: Maybe<Array<Maybe<CcpOfferingRelationship>>>;
|
|
4058
|
+
pageInfo: PageInfo;
|
|
4059
|
+
};
|
|
3973
4060
|
export declare enum CcpOfferingRelationshipDirection {
|
|
3974
4061
|
From = "FROM",
|
|
3975
4062
|
To = "TO"
|
|
3976
4063
|
}
|
|
4064
|
+
export declare type CcpOfferingRelationshipEdge = {
|
|
4065
|
+
__typename?: 'CcpOfferingRelationshipEdge';
|
|
4066
|
+
cursor: Scalars['String']['output'];
|
|
4067
|
+
node?: Maybe<CcpOfferingRelationship>;
|
|
4068
|
+
};
|
|
3977
4069
|
export declare enum CcpOfferingStatus {
|
|
3978
4070
|
Active = "ACTIVE",
|
|
3979
4071
|
AtNotice = "AT_NOTICE",
|
|
@@ -4101,10 +4193,13 @@ export declare type CcpQueryApi = {
|
|
|
4101
4193
|
entitlements?: Maybe<Array<Maybe<CcpEntitlement>>>;
|
|
4102
4194
|
experienceCapabilities?: Maybe<CcpRootExperienceCapabilities>;
|
|
4103
4195
|
offering?: Maybe<CcpOffering>;
|
|
4196
|
+
offerings?: Maybe<Array<Maybe<CcpOffering>>>;
|
|
4104
4197
|
pricingPlan?: Maybe<CcpPricingPlan>;
|
|
4198
|
+
pricingPlans?: Maybe<Array<Maybe<CcpPricingPlan>>>;
|
|
4105
4199
|
product?: Maybe<CcpProduct>;
|
|
4106
4200
|
quotes?: Maybe<Array<Maybe<CcpQuote>>>;
|
|
4107
4201
|
transactionAccount?: Maybe<CcpTransactionAccount>;
|
|
4202
|
+
transactionAccounts?: Maybe<Array<Maybe<CcpTransactionAccount>>>;
|
|
4108
4203
|
};
|
|
4109
4204
|
export declare type CcpQueryApiEntitlementArgs = {
|
|
4110
4205
|
id: Scalars['ID']['input'];
|
|
@@ -4115,9 +4210,15 @@ export declare type CcpQueryApiEntitlementsArgs = {
|
|
|
4115
4210
|
export declare type CcpQueryApiOfferingArgs = {
|
|
4116
4211
|
key: Scalars['ID']['input'];
|
|
4117
4212
|
};
|
|
4213
|
+
export declare type CcpQueryApiOfferingsArgs = {
|
|
4214
|
+
ids: Array<Scalars['ID']['input']>;
|
|
4215
|
+
};
|
|
4118
4216
|
export declare type CcpQueryApiPricingPlanArgs = {
|
|
4119
4217
|
id: Scalars['ID']['input'];
|
|
4120
4218
|
};
|
|
4219
|
+
export declare type CcpQueryApiPricingPlansArgs = {
|
|
4220
|
+
ids: Array<Scalars['ID']['input']>;
|
|
4221
|
+
};
|
|
4121
4222
|
export declare type CcpQueryApiProductArgs = {
|
|
4122
4223
|
id: Scalars['ID']['input'];
|
|
4123
4224
|
};
|
|
@@ -4127,6 +4228,9 @@ export declare type CcpQueryApiQuotesArgs = {
|
|
|
4127
4228
|
export declare type CcpQueryApiTransactionAccountArgs = {
|
|
4128
4229
|
id: Scalars['ID']['input'];
|
|
4129
4230
|
};
|
|
4231
|
+
export declare type CcpQueryApiTransactionAccountsArgs = {
|
|
4232
|
+
ids: Array<Scalars['ID']['input']>;
|
|
4233
|
+
};
|
|
4130
4234
|
export declare type CcpQuote = Node & {
|
|
4131
4235
|
__typename?: 'CcpQuote';
|
|
4132
4236
|
autoRefresh?: Maybe<CcpQuoteAutoRefresh>;
|
|
@@ -4440,6 +4544,7 @@ export declare enum CcpRelationshipStatus {
|
|
|
4440
4544
|
export declare enum CcpRelationshipType {
|
|
4441
4545
|
AddonDependence = "ADDON_DEPENDENCE",
|
|
4442
4546
|
AppCompatibility = "APP_COMPATIBILITY",
|
|
4547
|
+
AppDependence = "APP_DEPENDENCE",
|
|
4443
4548
|
Collection = "COLLECTION",
|
|
4444
4549
|
CollectionTrial = "COLLECTION_TRIAL",
|
|
4445
4550
|
Enterprise = "ENTERPRISE",
|
|
@@ -4506,14 +4611,20 @@ export declare enum CcpTiersMode {
|
|
|
4506
4611
|
Graduated = "GRADUATED",
|
|
4507
4612
|
Volume = "VOLUME"
|
|
4508
4613
|
}
|
|
4509
|
-
export declare type CcpTransactionAccount = CommerceTransactionAccount & {
|
|
4614
|
+
export declare type CcpTransactionAccount = CommerceTransactionAccount & Node & {
|
|
4510
4615
|
__typename?: 'CcpTransactionAccount';
|
|
4616
|
+
description?: Maybe<Scalars['String']['output']>;
|
|
4511
4617
|
experienceCapabilities?: Maybe<CcpTransactionAccountExperienceCapabilities>;
|
|
4512
4618
|
id: Scalars['ID']['output'];
|
|
4619
|
+
isActive?: Maybe<Scalars['Boolean']['output']>;
|
|
4513
4620
|
isBillToPresent?: Maybe<Scalars['Boolean']['output']>;
|
|
4514
4621
|
isCurrentUserBillingAdmin?: Maybe<Scalars['Boolean']['output']>;
|
|
4515
4622
|
isManagedByPartner?: Maybe<Scalars['Boolean']['output']>;
|
|
4623
|
+
isMonetized?: Maybe<Scalars['Boolean']['output']>;
|
|
4516
4624
|
key?: Maybe<Scalars['String']['output']>;
|
|
4625
|
+
name?: Maybe<Scalars['String']['output']>;
|
|
4626
|
+
number?: Maybe<Scalars['String']['output']>;
|
|
4627
|
+
type?: Maybe<CcpTransactionAccountType>;
|
|
4517
4628
|
};
|
|
4518
4629
|
export declare type CcpTransactionAccountExperienceCapabilities = CommerceTransactionAccountExperienceCapabilities & {
|
|
4519
4630
|
__typename?: 'CcpTransactionAccountExperienceCapabilities';
|
|
@@ -4521,6 +4632,11 @@ export declare type CcpTransactionAccountExperienceCapabilities = CommerceTransa
|
|
|
4521
4632
|
addPaymentMethodV2?: Maybe<CcpAddPaymentMethodExperienceCapability>;
|
|
4522
4633
|
multipleProductUpgrades?: Maybe<CcpMultipleProductUpgradesExperienceCapability>;
|
|
4523
4634
|
};
|
|
4635
|
+
export declare enum CcpTransactionAccountType {
|
|
4636
|
+
Direct = "DIRECT",
|
|
4637
|
+
Partner = "PARTNER",
|
|
4638
|
+
UnaffiliatedReseller = "UNAFFILIATED_RESELLER"
|
|
4639
|
+
}
|
|
4524
4640
|
export declare type CcpTrial = CommerceTrial & {
|
|
4525
4641
|
__typename?: 'CcpTrial';
|
|
4526
4642
|
endBehaviour?: Maybe<CcpTrialEndBehaviour>;
|
|
@@ -4582,6 +4698,7 @@ export declare type ChannelPlatformChannelAvailabilityResponse = {
|
|
|
4582
4698
|
};
|
|
4583
4699
|
export declare enum ChannelPlatformChannelType {
|
|
4584
4700
|
Chat = "CHAT",
|
|
4701
|
+
Ticket = "TICKET",
|
|
4585
4702
|
Voice = "VOICE"
|
|
4586
4703
|
}
|
|
4587
4704
|
export declare type ChannelPlatformConnectDetails = {
|
|
@@ -4614,6 +4731,7 @@ export declare type ChannelPlatformGetChannelTokenResponse = {
|
|
|
4614
4731
|
contactId?: Maybe<Scalars['String']['output']>;
|
|
4615
4732
|
participantId?: Maybe<Scalars['String']['output']>;
|
|
4616
4733
|
participantToken?: Maybe<Scalars['String']['output']>;
|
|
4734
|
+
region?: Maybe<Scalars['String']['output']>;
|
|
4617
4735
|
};
|
|
4618
4736
|
export declare type ChannelPlatformMediaPlacement = {
|
|
4619
4737
|
__typename?: 'ChannelPlatformMediaPlacement';
|
|
@@ -4653,11 +4771,16 @@ export declare type ChannelPlatformSubmitRequestInput = {
|
|
|
4653
4771
|
name?: InputMaybe<Scalars['String']['input']>;
|
|
4654
4772
|
payload?: InputMaybe<Scalars['JSON']['input']>;
|
|
4655
4773
|
};
|
|
4656
|
-
export declare type ChannelPlatformSubmitRequestResponse =
|
|
4774
|
+
export declare type ChannelPlatformSubmitRequestResponse = {
|
|
4775
|
+
__typename?: 'ChannelPlatformSubmitRequestResponse';
|
|
4776
|
+
channel?: Maybe<ChannelPlatformChannelType>;
|
|
4777
|
+
value?: Maybe<ChannelPlatformTokenResponse>;
|
|
4778
|
+
};
|
|
4657
4779
|
export declare type ChannelPlatformSubmitTicketResponse = {
|
|
4658
4780
|
__typename?: 'ChannelPlatformSubmitTicketResponse';
|
|
4659
|
-
|
|
4781
|
+
requestUuid?: Maybe<Scalars['String']['output']>;
|
|
4660
4782
|
};
|
|
4783
|
+
export declare type ChannelPlatformTokenResponse = ChannelPlatformGetChannelTokenResponse | ChannelPlatformSubmitTicketResponse;
|
|
4661
4784
|
export declare type CheckConsentPermissionByOAuthClientIdInput = {
|
|
4662
4785
|
cloudId: Scalars['ID']['input'];
|
|
4663
4786
|
oauthClientId: Scalars['ID']['input'];
|
|
@@ -6434,7 +6557,7 @@ export declare type CompassCreateBuildEventInput = {
|
|
|
6434
6557
|
export declare type CompassCreateCampaignInput = {
|
|
6435
6558
|
description: Scalars['String']['input'];
|
|
6436
6559
|
dueDate: Scalars['DateTime']['input'];
|
|
6437
|
-
goalId
|
|
6560
|
+
goalId: Scalars['ID']['input'];
|
|
6438
6561
|
name: Scalars['String']['input'];
|
|
6439
6562
|
scorecardId: Scalars['ID']['input'];
|
|
6440
6563
|
startDate?: InputMaybe<Scalars['DateTime']['input']>;
|
|
@@ -6634,6 +6757,15 @@ export declare type CompassCreateHasCustomTextFieldScorecardCriteriaInput = {
|
|
|
6634
6757
|
textComparatorValue?: InputMaybe<Scalars['String']['input']>;
|
|
6635
6758
|
weight: Scalars['Int']['input'];
|
|
6636
6759
|
};
|
|
6760
|
+
export declare type CompassCreateHasPackageDependencyScorecardCriteriaInput = {
|
|
6761
|
+
comparators: Array<CompassPackageDependencyComparatorInput>;
|
|
6762
|
+
description?: InputMaybe<Scalars['String']['input']>;
|
|
6763
|
+
name?: InputMaybe<Scalars['String']['input']>;
|
|
6764
|
+
packageManager: CompassPackageDependencyManagerOptions;
|
|
6765
|
+
packageName: Scalars['String']['input'];
|
|
6766
|
+
scoringStrategyRules?: InputMaybe<CompassCreateScorecardCriteriaScoringStrategyRulesInput>;
|
|
6767
|
+
weight: Scalars['Int']['input'];
|
|
6768
|
+
};
|
|
6637
6769
|
export declare type CompassCreateIncidentEventInput = {
|
|
6638
6770
|
description: Scalars['String']['input'];
|
|
6639
6771
|
displayName: Scalars['String']['input'];
|
|
@@ -7871,6 +8003,21 @@ export declare type CompassHasOwnerScorecardCriteria = CompassScorecardCriteria
|
|
|
7871
8003
|
export declare type CompassHasOwnerScorecardCriteriaScorecardCriteriaScoreArgs = {
|
|
7872
8004
|
query?: InputMaybe<CompassScorecardCriteriaScoreQuery>;
|
|
7873
8005
|
};
|
|
8006
|
+
export declare type CompassHasPackageDependencyScorecardCriteria = CompassScorecardCriteria & {
|
|
8007
|
+
__typename?: 'CompassHasPackageDependencyScorecardCriteria';
|
|
8008
|
+
comparators?: Maybe<Array<CompassPackageDependencyComparator>>;
|
|
8009
|
+
description?: Maybe<Scalars['String']['output']>;
|
|
8010
|
+
id: Scalars['ID']['output'];
|
|
8011
|
+
name?: Maybe<Scalars['String']['output']>;
|
|
8012
|
+
packageManager?: Maybe<Scalars['String']['output']>;
|
|
8013
|
+
packageName?: Maybe<Scalars['String']['output']>;
|
|
8014
|
+
scorecardCriteriaScore?: Maybe<CompassScorecardCriteriaScore>;
|
|
8015
|
+
scoringStrategyRules?: Maybe<CompassScorecardCriteriaScoringStrategyRules>;
|
|
8016
|
+
weight: Scalars['Int']['output'];
|
|
8017
|
+
};
|
|
8018
|
+
export declare type CompassHasPackageDependencyScorecardCriteriaScorecardCriteriaScoreArgs = {
|
|
8019
|
+
query?: InputMaybe<CompassScorecardCriteriaScoreQuery>;
|
|
8020
|
+
};
|
|
7874
8021
|
export declare type CompassIncidentEvent = CompassEvent & {
|
|
7875
8022
|
__typename?: 'CompassIncidentEvent';
|
|
7876
8023
|
description?: Maybe<Scalars['String']['output']>;
|
|
@@ -8069,6 +8216,15 @@ export declare type CompassLink = {
|
|
|
8069
8216
|
type: CompassLinkType;
|
|
8070
8217
|
url: Scalars['URL']['output'];
|
|
8071
8218
|
};
|
|
8219
|
+
export declare type CompassLinkNode = Node & {
|
|
8220
|
+
__typename?: 'CompassLinkNode';
|
|
8221
|
+
eventSources?: Maybe<Array<EventSource>>;
|
|
8222
|
+
id: Scalars['ID']['output'];
|
|
8223
|
+
name?: Maybe<Scalars['String']['output']>;
|
|
8224
|
+
objectId?: Maybe<Scalars['ID']['output']>;
|
|
8225
|
+
type: CompassLinkType;
|
|
8226
|
+
url: Scalars['URL']['output'];
|
|
8227
|
+
};
|
|
8072
8228
|
export declare enum CompassLinkType {
|
|
8073
8229
|
ChatChannel = "CHAT_CHANNEL",
|
|
8074
8230
|
Dashboard = "DASHBOARD",
|
|
@@ -8245,6 +8401,44 @@ export declare type CompassPackageDependentComponentsArgs = {
|
|
|
8245
8401
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
8246
8402
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
8247
8403
|
};
|
|
8404
|
+
export declare type CompassPackageDependencyComparator = CompassPackageDependencyNullaryComparator | CompassPackageDependencyUnaryComparator;
|
|
8405
|
+
export declare type CompassPackageDependencyComparatorInput = {
|
|
8406
|
+
packageDependencyNullaryComparatorInput?: InputMaybe<CompassPackageDependencyNullaryComparatorInput>;
|
|
8407
|
+
packageDependencyUnaryComparatorInput?: InputMaybe<CompassPackageDependencyUnaryComparatorInput>;
|
|
8408
|
+
};
|
|
8409
|
+
export declare enum CompassPackageDependencyManagerOptions {
|
|
8410
|
+
Npm = "NPM"
|
|
8411
|
+
}
|
|
8412
|
+
export declare type CompassPackageDependencyNullaryComparator = {
|
|
8413
|
+
__typename?: 'CompassPackageDependencyNullaryComparator';
|
|
8414
|
+
comparator?: Maybe<Scalars['String']['output']>;
|
|
8415
|
+
};
|
|
8416
|
+
export declare type CompassPackageDependencyNullaryComparatorInput = {
|
|
8417
|
+
comparator: CompassPackageDependencyNullaryComparatorOptions;
|
|
8418
|
+
};
|
|
8419
|
+
export declare enum CompassPackageDependencyNullaryComparatorOptions {
|
|
8420
|
+
IsAbsent = "IS_ABSENT",
|
|
8421
|
+
IsPresent = "IS_PRESENT"
|
|
8422
|
+
}
|
|
8423
|
+
export declare type CompassPackageDependencyUnaryComparator = {
|
|
8424
|
+
__typename?: 'CompassPackageDependencyUnaryComparator';
|
|
8425
|
+
comparator?: Maybe<Scalars['String']['output']>;
|
|
8426
|
+
comparatorValue?: Maybe<Scalars['String']['output']>;
|
|
8427
|
+
};
|
|
8428
|
+
export declare type CompassPackageDependencyUnaryComparatorInput = {
|
|
8429
|
+
comparator: CompassPackageDependencyUnaryComparatorOptions;
|
|
8430
|
+
comparatorValue: Scalars['String']['input'];
|
|
8431
|
+
};
|
|
8432
|
+
export declare enum CompassPackageDependencyUnaryComparatorOptions {
|
|
8433
|
+
CompatibleWith = "COMPATIBLE_WITH",
|
|
8434
|
+
Equals = "EQUALS",
|
|
8435
|
+
GreaterThan = "GREATER_THAN",
|
|
8436
|
+
GreaterThanOrEqualTo = "GREATER_THAN_OR_EQUAL_TO",
|
|
8437
|
+
LessThan = "LESS_THAN",
|
|
8438
|
+
LessThanOrEqualTo = "LESS_THAN_OR_EQUAL_TO",
|
|
8439
|
+
MatchesRegex = "MATCHES_REGEX",
|
|
8440
|
+
NotEqualTo = "NOT_EQUAL_TO"
|
|
8441
|
+
}
|
|
8248
8442
|
export declare type CompassPackageDependentComponentVersionsBySourceConnection = {
|
|
8249
8443
|
__typename?: 'CompassPackageDependentComponentVersionsBySourceConnection';
|
|
8250
8444
|
edges?: Maybe<Array<CompassPackageDependentComponentVersionsBySourceEdge>>;
|
|
@@ -9566,6 +9760,16 @@ export declare type CompassUpdateHasCustomTextFieldScorecardCriteriaInput = {
|
|
|
9566
9760
|
textComparatorValue?: InputMaybe<Scalars['String']['input']>;
|
|
9567
9761
|
weight?: InputMaybe<Scalars['Int']['input']>;
|
|
9568
9762
|
};
|
|
9763
|
+
export declare type CompassUpdateHasPackageDependencyScorecardCriteriaInput = {
|
|
9764
|
+
comparators?: InputMaybe<Array<CompassPackageDependencyComparatorInput>>;
|
|
9765
|
+
description?: InputMaybe<Scalars['String']['input']>;
|
|
9766
|
+
id: Scalars['ID']['input'];
|
|
9767
|
+
name?: InputMaybe<Scalars['String']['input']>;
|
|
9768
|
+
packageManager?: InputMaybe<CompassPackageDependencyManagerOptions>;
|
|
9769
|
+
packageName?: InputMaybe<Scalars['String']['input']>;
|
|
9770
|
+
scoringStrategyRules?: InputMaybe<CompassUpdateScorecardCriteriaScoringStrategyRulesInput>;
|
|
9771
|
+
weight?: InputMaybe<Scalars['Int']['input']>;
|
|
9772
|
+
};
|
|
9569
9773
|
export declare type CompassUpdateJqlMetricSourceUserInput = {
|
|
9570
9774
|
metricSourceId: Scalars['ID']['input'];
|
|
9571
9775
|
};
|
|
@@ -10156,14 +10360,6 @@ export declare type ConfluenceCommentUpdated = {
|
|
|
10156
10360
|
__typename?: 'ConfluenceCommentUpdated';
|
|
10157
10361
|
commentId?: Maybe<Scalars['ID']['output']>;
|
|
10158
10362
|
};
|
|
10159
|
-
export declare type ConfluenceContent = {
|
|
10160
|
-
__typename?: 'ConfluenceContent';
|
|
10161
|
-
contentTitleUpdate?: Maybe<ConfluenceContentTitleUpdate>;
|
|
10162
|
-
contentType: ConfluenceSubscriptionContentType;
|
|
10163
|
-
deltas?: Maybe<Array<Maybe<Scalars['String']['output']>>>;
|
|
10164
|
-
eventType: Scalars['String']['output'];
|
|
10165
|
-
id: Scalars['ID']['output'];
|
|
10166
|
-
};
|
|
10167
10363
|
export declare type ConfluenceContentAnalyticsCountUserByContentType = {
|
|
10168
10364
|
__typename?: 'ConfluenceContentAnalyticsCountUserByContentType';
|
|
10169
10365
|
nodes: Array<ConfluenceCountGroupByContentItem>;
|
|
@@ -10277,11 +10473,6 @@ export declare type ConfluenceContentTitleEmoji = {
|
|
|
10277
10473
|
key?: Maybe<Scalars['String']['output']>;
|
|
10278
10474
|
value?: Maybe<Scalars['String']['output']>;
|
|
10279
10475
|
};
|
|
10280
|
-
export declare type ConfluenceContentTitleUpdate = {
|
|
10281
|
-
__typename?: 'ConfluenceContentTitleUpdate';
|
|
10282
|
-
contentTitle: Scalars['String']['output'];
|
|
10283
|
-
id: Scalars['ID']['output'];
|
|
10284
|
-
};
|
|
10285
10476
|
export declare type ConfluenceContentTitleUpdated = {
|
|
10286
10477
|
__typename?: 'ConfluenceContentTitleUpdated';
|
|
10287
10478
|
contentTitle?: Maybe<Scalars['String']['output']>;
|
|
@@ -17497,6 +17688,12 @@ export declare type ConfluenceUserContentAccessResult = {
|
|
|
17497
17688
|
canAccessList: Array<Maybe<Scalars['String']['output']>>;
|
|
17498
17689
|
cannotAccessList: Array<Maybe<Scalars['String']['output']>>;
|
|
17499
17690
|
};
|
|
17691
|
+
export declare type ConfluenceUserHasPermission = {
|
|
17692
|
+
__typename?: 'ConfluenceUserHasPermission';
|
|
17693
|
+
hasPermission: Scalars['Boolean']['output'];
|
|
17694
|
+
principalId: Scalars['String']['output'];
|
|
17695
|
+
reason?: Maybe<Scalars['String']['output']>;
|
|
17696
|
+
};
|
|
17500
17697
|
export declare type ConfluenceUserInfo = {
|
|
17501
17698
|
__typename?: 'ConfluenceUserInfo';
|
|
17502
17699
|
type: ConfluenceUserType;
|
|
@@ -17506,6 +17703,10 @@ export declare enum ConfluenceUserType {
|
|
|
17506
17703
|
Anonymous = "ANONYMOUS",
|
|
17507
17704
|
Known = "KNOWN"
|
|
17508
17705
|
}
|
|
17706
|
+
export declare type ConfluenceUsersHavePermissionList = {
|
|
17707
|
+
__typename?: 'ConfluenceUsersHavePermissionList';
|
|
17708
|
+
usersHavePermissionList: Array<Maybe<ConfluenceUserHasPermission>>;
|
|
17709
|
+
};
|
|
17509
17710
|
export declare type ConfluenceValidateSpaceKeyResponse = {
|
|
17510
17711
|
__typename?: 'ConfluenceValidateSpaceKeyResponse';
|
|
17511
17712
|
generatedUniqueKey?: Maybe<Scalars['String']['output']>;
|
|
@@ -17726,6 +17927,7 @@ export declare type Content = {
|
|
|
17726
17927
|
archivableDescendantsCount: Scalars['Long']['output'];
|
|
17727
17928
|
archiveNote?: Maybe<Scalars['String']['output']>;
|
|
17728
17929
|
archivedContentMetadata?: Maybe<ArchivedContentMetadata>;
|
|
17930
|
+
ari?: Maybe<Scalars['ID']['output']>;
|
|
17729
17931
|
attachments?: Maybe<PaginatedContentList>;
|
|
17730
17932
|
blank: Scalars['Boolean']['output'];
|
|
17731
17933
|
body?: Maybe<ContentBodyPerRepresentation>;
|
|
@@ -17750,6 +17952,7 @@ export declare type Content = {
|
|
|
17750
17952
|
dataClassificationLevel?: Maybe<ContentDataClassificationLevel>;
|
|
17751
17953
|
dataClassificationLevelId?: Maybe<Scalars['String']['output']>;
|
|
17752
17954
|
deletableDescendantsCount: Scalars['Long']['output'];
|
|
17955
|
+
draftVersion?: Maybe<Version>;
|
|
17753
17956
|
dynamicMobileBody?: Maybe<ContentBody>;
|
|
17754
17957
|
embeddedProduct?: Maybe<Scalars['String']['output']>;
|
|
17755
17958
|
excerpt: Scalars['String']['output'];
|
|
@@ -20044,6 +20247,7 @@ export declare type CreateCompassScorecardCriteriaInput = {
|
|
|
20044
20247
|
hasLink?: InputMaybe<CreateCompassHasLinkScorecardCriteriaInput>;
|
|
20045
20248
|
hasMetricValue?: InputMaybe<CreateCompassHasMetricValueCriteriaInput>;
|
|
20046
20249
|
hasOwner?: InputMaybe<CreateCompassHasOwnerScorecardCriteriaInput>;
|
|
20250
|
+
hasPackageDependency?: InputMaybe<CompassCreateHasPackageDependencyScorecardCriteriaInput>;
|
|
20047
20251
|
};
|
|
20048
20252
|
export declare type CreateCompassScorecardInput = {
|
|
20049
20253
|
componentCreationTimeFilter?: InputMaybe<CompassComponentCreationTimeFilterInput>;
|
|
@@ -20298,6 +20502,7 @@ export declare type CreateJiraPlaybookStepInput = {
|
|
|
20298
20502
|
};
|
|
20299
20503
|
export declare type CreateJiraPlaybookStepRunInput = {
|
|
20300
20504
|
playbookInstanceStepAri: Scalars['ID']['input'];
|
|
20505
|
+
targetTransition?: InputMaybe<TargetTransition>;
|
|
20301
20506
|
userInputs?: InputMaybe<Array<UserInput>>;
|
|
20302
20507
|
};
|
|
20303
20508
|
export declare type CreateJiraPlaybookStepRunPayload = Payload & {
|
|
@@ -20333,6 +20538,23 @@ export declare type CreateMentionReminderNotificationPayload = Payload & {
|
|
|
20333
20538
|
failedAccountIds?: Maybe<Array<Maybe<Scalars['String']['output']>>>;
|
|
20334
20539
|
success: Scalars['Boolean']['output'];
|
|
20335
20540
|
};
|
|
20541
|
+
export declare type CreateMetadataInput = {
|
|
20542
|
+
extraProps?: InputMaybe<Array<PropInput>>;
|
|
20543
|
+
isPinned?: InputMaybe<Scalars['Boolean']['input']>;
|
|
20544
|
+
labels?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
20545
|
+
productLink?: InputMaybe<Scalars['String']['input']>;
|
|
20546
|
+
};
|
|
20547
|
+
export declare type CreateNoteInput = {
|
|
20548
|
+
body?: InputMaybe<Scalars['String']['input']>;
|
|
20549
|
+
metadata?: InputMaybe<CreateMetadataInput>;
|
|
20550
|
+
title?: InputMaybe<Scalars['String']['input']>;
|
|
20551
|
+
};
|
|
20552
|
+
export declare type CreateNotePayload = {
|
|
20553
|
+
__typename?: 'CreateNotePayload';
|
|
20554
|
+
errors?: Maybe<Array<NoteMutationError>>;
|
|
20555
|
+
note?: Maybe<NoteResponse>;
|
|
20556
|
+
success: Scalars['Boolean']['output'];
|
|
20557
|
+
};
|
|
20336
20558
|
export declare type CreatePersonalSpaceInput = {
|
|
20337
20559
|
copySpacePermissionsFromSpaceKey?: InputMaybe<Scalars['String']['input']>;
|
|
20338
20560
|
initialPermissionOption?: InputMaybe<InitialPermissionOptions>;
|
|
@@ -20586,6 +20808,11 @@ export declare type CsmAiAuthenticationInput = {
|
|
|
20586
20808
|
export declare enum CsmAiAuthenticationType {
|
|
20587
20809
|
NoAuth = "NO_AUTH"
|
|
20588
20810
|
}
|
|
20811
|
+
export declare type CsmAiConnectorConfiguration = CsmAiMessageHandoff | CsmAiTicketingHandoff;
|
|
20812
|
+
export declare type CsmAiConnectorConfigurationInput = {
|
|
20813
|
+
messageHandoff?: InputMaybe<CsmAiMessageHandoffInput>;
|
|
20814
|
+
ticketingHandoff?: InputMaybe<CsmAiTicketingHandoffInput>;
|
|
20815
|
+
};
|
|
20589
20816
|
export declare type CsmAiCreateActionInput = {
|
|
20590
20817
|
actionType: CsmAiActionType;
|
|
20591
20818
|
apiOperation: CsmAiApiOperationInput;
|
|
@@ -20606,6 +20833,22 @@ export declare type CsmAiDeleteActionPayload = Payload & {
|
|
|
20606
20833
|
errors?: Maybe<Array<MutationError>>;
|
|
20607
20834
|
success: Scalars['Boolean']['output'];
|
|
20608
20835
|
};
|
|
20836
|
+
export declare type CsmAiHandoffConfig = {
|
|
20837
|
+
__typename?: 'CsmAiHandoffConfig';
|
|
20838
|
+
connectorConfiguration: CsmAiConnectorConfiguration;
|
|
20839
|
+
enabled: Scalars['Boolean']['output'];
|
|
20840
|
+
id: Scalars['ID']['output'];
|
|
20841
|
+
type: CsmAiHandoffType;
|
|
20842
|
+
};
|
|
20843
|
+
export declare type CsmAiHandoffConfigResult = CsmAiHandoffConfig | QueryError;
|
|
20844
|
+
export declare enum CsmAiHandoffType {
|
|
20845
|
+
Csm = "CSM",
|
|
20846
|
+
Message = "MESSAGE"
|
|
20847
|
+
}
|
|
20848
|
+
export declare enum CsmAiHandoffTypeInput {
|
|
20849
|
+
Csm = "CSM",
|
|
20850
|
+
Message = "MESSAGE"
|
|
20851
|
+
}
|
|
20609
20852
|
export declare enum CsmAiHttpMethod {
|
|
20610
20853
|
Delete = "DELETE",
|
|
20611
20854
|
Get = "GET",
|
|
@@ -20617,6 +20860,7 @@ export declare type CsmAiHub = {
|
|
|
20617
20860
|
__typename?: 'CsmAiHub';
|
|
20618
20861
|
actions?: Maybe<Array<Maybe<CsmAiActionResult>>>;
|
|
20619
20862
|
agent?: Maybe<CsmAiAgentResult>;
|
|
20863
|
+
handoffConfigs?: Maybe<Array<Maybe<CsmAiHandoffConfigResult>>>;
|
|
20620
20864
|
id: Scalars['ID']['output'];
|
|
20621
20865
|
};
|
|
20622
20866
|
export declare type CsmAiHubResult = CsmAiHub | QueryError;
|
|
@@ -20629,6 +20873,20 @@ export declare type CsmAiKeyValuePair = {
|
|
|
20629
20873
|
key?: Maybe<Scalars['String']['output']>;
|
|
20630
20874
|
value?: Maybe<Scalars['String']['output']>;
|
|
20631
20875
|
};
|
|
20876
|
+
export declare type CsmAiMessageHandoff = {
|
|
20877
|
+
__typename?: 'CsmAiMessageHandoff';
|
|
20878
|
+
message: Scalars['String']['output'];
|
|
20879
|
+
};
|
|
20880
|
+
export declare type CsmAiMessageHandoffInput = {
|
|
20881
|
+
message: Scalars['String']['input'];
|
|
20882
|
+
};
|
|
20883
|
+
export declare type CsmAiTicketingHandoff = {
|
|
20884
|
+
__typename?: 'CsmAiTicketingHandoff';
|
|
20885
|
+
formId: Scalars['ID']['output'];
|
|
20886
|
+
};
|
|
20887
|
+
export declare type CsmAiTicketingHandoffInput = {
|
|
20888
|
+
formId: Scalars['ID']['input'];
|
|
20889
|
+
};
|
|
20632
20890
|
export declare type CsmAiUpdateActionInput = {
|
|
20633
20891
|
actionType?: InputMaybe<CsmAiActionType>;
|
|
20634
20892
|
apiOperation?: InputMaybe<CsmAiApiOperationInput>;
|
|
@@ -20664,6 +20922,17 @@ export declare type CsmAiUpdateAgentPayload = Payload & {
|
|
|
20664
20922
|
errors?: Maybe<Array<MutationError>>;
|
|
20665
20923
|
success: Scalars['Boolean']['output'];
|
|
20666
20924
|
};
|
|
20925
|
+
export declare type CsmAiUpdateHandoffConfigInput = {
|
|
20926
|
+
connectorConfiguration: CsmAiConnectorConfigurationInput;
|
|
20927
|
+
enabled: Scalars['Boolean']['input'];
|
|
20928
|
+
type: CsmAiHandoffTypeInput;
|
|
20929
|
+
};
|
|
20930
|
+
export declare type CsmAiUpdateHandoffConfigPayload = Payload & {
|
|
20931
|
+
__typename?: 'CsmAiUpdateHandoffConfigPayload';
|
|
20932
|
+
errors?: Maybe<Array<MutationError>>;
|
|
20933
|
+
handoffConfig?: Maybe<CsmAiHandoffConfig>;
|
|
20934
|
+
success: Scalars['Boolean']['output'];
|
|
20935
|
+
};
|
|
20667
20936
|
export declare type CumulativeFlowDiagram = {
|
|
20668
20937
|
__typename?: 'CumulativeFlowDiagram';
|
|
20669
20938
|
chart: CfdChartConnection;
|
|
@@ -21224,6 +21493,7 @@ export declare type CustomerServiceIndividualNotesArgs = {
|
|
|
21224
21493
|
export declare type CustomerServiceIndividualRequestsArgs = {
|
|
21225
21494
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
21226
21495
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
21496
|
+
helpCenterId?: InputMaybe<Scalars['ID']['input']>;
|
|
21227
21497
|
};
|
|
21228
21498
|
export declare type CustomerServiceIndividualDeletePayload = Payload & {
|
|
21229
21499
|
__typename?: 'CustomerServiceIndividualDeletePayload';
|
|
@@ -21646,6 +21916,7 @@ export declare type CustomerServiceQueryApiProductsArgs = {
|
|
|
21646
21916
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
21647
21917
|
};
|
|
21648
21918
|
export declare type CustomerServiceQueryApiRequestByIssueKeyArgs = {
|
|
21919
|
+
helpCenterId?: InputMaybe<Scalars['ID']['input']>;
|
|
21649
21920
|
issueKey: Scalars['String']['input'];
|
|
21650
21921
|
};
|
|
21651
21922
|
export declare type CustomerServiceQueryApiTemplateFormByIdArgs = {
|
|
@@ -21665,6 +21936,7 @@ export declare type CustomerServiceRequest = {
|
|
|
21665
21936
|
key?: Maybe<Scalars['String']['output']>;
|
|
21666
21937
|
statusKey?: Maybe<CustomerServiceStatusKey>;
|
|
21667
21938
|
summary?: Maybe<Scalars['String']['output']>;
|
|
21939
|
+
templateForm?: Maybe<CustomerServiceTemplateForm>;
|
|
21668
21940
|
};
|
|
21669
21941
|
export declare type CustomerServiceRequestByKeyResult = CustomerServiceRequest | QueryError;
|
|
21670
21942
|
export declare type CustomerServiceRequestConnection = {
|
|
@@ -22229,6 +22501,15 @@ export declare type DeleteLabelPayload = {
|
|
|
22229
22501
|
contentId: Scalars['ID']['output'];
|
|
22230
22502
|
label: Scalars['String']['output'];
|
|
22231
22503
|
};
|
|
22504
|
+
export declare type DeleteNoteInput = {
|
|
22505
|
+
ari: Scalars['String']['input'];
|
|
22506
|
+
};
|
|
22507
|
+
export declare type DeleteNotePayload = {
|
|
22508
|
+
__typename?: 'DeleteNotePayload';
|
|
22509
|
+
ari?: Maybe<Scalars['String']['output']>;
|
|
22510
|
+
errors?: Maybe<Array<NoteMutationError>>;
|
|
22511
|
+
success: Scalars['Boolean']['output'];
|
|
22512
|
+
};
|
|
22232
22513
|
export declare type DeletePagesInput = {
|
|
22233
22514
|
areChildrenIncluded?: InputMaybe<Scalars['Boolean']['input']>;
|
|
22234
22515
|
excludedBranchRootPageIDs?: InputMaybe<Array<InputMaybe<Scalars['Long']['input']>>>;
|
|
@@ -22704,6 +22985,18 @@ export declare type DevAiFlowSession = {
|
|
|
22704
22985
|
status?: Maybe<DevAiFlowSessionsStatus>;
|
|
22705
22986
|
updatedAt?: Maybe<Scalars['String']['output']>;
|
|
22706
22987
|
};
|
|
22988
|
+
export declare type DevAiFlowSessionCompletePayload = Payload & {
|
|
22989
|
+
__typename?: 'DevAiFlowSessionCompletePayload';
|
|
22990
|
+
data?: Maybe<DevAiFlowSession>;
|
|
22991
|
+
errors?: Maybe<Array<MutationError>>;
|
|
22992
|
+
success: Scalars['Boolean']['output'];
|
|
22993
|
+
};
|
|
22994
|
+
export declare type DevAiFlowSessionCreatePayload = Payload & {
|
|
22995
|
+
__typename?: 'DevAiFlowSessionCreatePayload';
|
|
22996
|
+
data?: Maybe<DevAiFlowSession>;
|
|
22997
|
+
errors?: Maybe<Array<MutationError>>;
|
|
22998
|
+
success: Scalars['Boolean']['output'];
|
|
22999
|
+
};
|
|
22707
23000
|
export declare enum DevAiFlowSessionsStatus {
|
|
22708
23001
|
Completed = "COMPLETED",
|
|
22709
23002
|
Failed = "FAILED",
|
|
@@ -23565,6 +23858,7 @@ export declare type DevOpsMetricsPerIssueMetricsFilter = {
|
|
|
23565
23858
|
};
|
|
23566
23859
|
export declare type DevOpsMetricsPerProjectPrCycleTimeMetrics = {
|
|
23567
23860
|
__typename?: 'DevOpsMetricsPerProjectPRCycleTimeMetrics';
|
|
23861
|
+
medianHistoricalPRCycleTime: Scalars['Float']['output'];
|
|
23568
23862
|
medianPRCycleTime: Scalars['Float']['output'];
|
|
23569
23863
|
perDayPRMetrics: Array<Maybe<DevOpsMetricsDailyReviewTimeData>>;
|
|
23570
23864
|
};
|
|
@@ -31439,13 +31733,16 @@ export declare type GraphStore = {
|
|
|
31439
31733
|
componentAssociatedDocumentInverse?: Maybe<GraphStoreSimplifiedComponentAssociatedDocumentInverseConnection>;
|
|
31440
31734
|
componentAssociatedDocumentInverseRelationship?: Maybe<GraphStoreFullComponentAssociatedDocumentConnection>;
|
|
31441
31735
|
componentAssociatedDocumentRelationship?: Maybe<GraphStoreFullComponentAssociatedDocumentConnection>;
|
|
31736
|
+
componentHasComponentLink?: Maybe<GraphStoreSimplifiedComponentHasComponentLinkConnection>;
|
|
31442
31737
|
componentHasComponentLinkInverse?: Maybe<GraphStoreSimplifiedComponentHasComponentLinkInverseConnection>;
|
|
31443
31738
|
componentImpactedByIncident?: Maybe<GraphStoreSimplifiedComponentImpactedByIncidentConnection>;
|
|
31444
31739
|
componentImpactedByIncidentInverse?: Maybe<GraphStoreSimplifiedComponentImpactedByIncidentInverseConnection>;
|
|
31445
31740
|
componentImpactedByIncidentInverseRelationship?: Maybe<GraphStoreFullComponentImpactedByIncidentConnection>;
|
|
31446
31741
|
componentImpactedByIncidentRelationship?: Maybe<GraphStoreFullComponentImpactedByIncidentConnection>;
|
|
31447
31742
|
componentLinkIsJiraProject?: Maybe<GraphStoreSimplifiedComponentLinkIsJiraProjectConnection>;
|
|
31743
|
+
componentLinkIsJiraProjectInverse?: Maybe<GraphStoreSimplifiedComponentLinkIsJiraProjectInverseConnection>;
|
|
31448
31744
|
componentLinkIsProviderRepo?: Maybe<GraphStoreSimplifiedComponentLinkIsProviderRepoConnection>;
|
|
31745
|
+
componentLinkIsProviderRepoInverse?: Maybe<GraphStoreSimplifiedComponentLinkIsProviderRepoInverseConnection>;
|
|
31449
31746
|
componentLinkedJswIssue?: Maybe<GraphStoreSimplifiedComponentLinkedJswIssueConnection>;
|
|
31450
31747
|
componentLinkedJswIssueInverse?: Maybe<GraphStoreSimplifiedComponentLinkedJswIssueInverseConnection>;
|
|
31451
31748
|
componentLinkedJswIssueInverseRelationship?: Maybe<GraphStoreFullComponentLinkedJswIssueConnection>;
|
|
@@ -31609,6 +31906,7 @@ export declare type GraphStore = {
|
|
|
31609
31906
|
issueHasAutodevJobInverse?: Maybe<GraphStoreSimplifiedIssueHasAutodevJobInverseConnection>;
|
|
31610
31907
|
issueHasChangedPriority?: Maybe<GraphStoreSimplifiedIssueHasChangedPriorityConnection>;
|
|
31611
31908
|
issueHasChangedPriorityInverse?: Maybe<GraphStoreSimplifiedIssueHasChangedPriorityInverseConnection>;
|
|
31909
|
+
issueHasChangedStatus?: Maybe<GraphStoreSimplifiedIssueHasChangedStatusConnection>;
|
|
31612
31910
|
issueHasChangedStatusInverse?: Maybe<GraphStoreSimplifiedIssueHasChangedStatusInverseConnection>;
|
|
31613
31911
|
issueMentionedInConversation?: Maybe<GraphStoreSimplifiedIssueMentionedInConversationConnection>;
|
|
31614
31912
|
issueMentionedInConversationInverse?: Maybe<GraphStoreSimplifiedIssueMentionedInConversationInverseConnection>;
|
|
@@ -31626,6 +31924,8 @@ export declare type GraphStore = {
|
|
|
31626
31924
|
issueRecursiveAssociatedPrInverse?: Maybe<GraphStoreSimplifiedIssueRecursiveAssociatedPrInverseConnection>;
|
|
31627
31925
|
issueRecursiveAssociatedPrInverseRelationship?: Maybe<GraphStoreFullIssueRecursiveAssociatedPrConnection>;
|
|
31628
31926
|
issueRecursiveAssociatedPrRelationship?: Maybe<GraphStoreFullIssueRecursiveAssociatedPrConnection>;
|
|
31927
|
+
issueRelatedToIssue?: Maybe<GraphStoreSimplifiedIssueRelatedToIssueConnection>;
|
|
31928
|
+
issueRelatedToIssueInverse?: Maybe<GraphStoreSimplifiedIssueRelatedToIssueInverseConnection>;
|
|
31629
31929
|
issueToWhiteboard?: Maybe<GraphStoreSimplifiedIssueToWhiteboardConnection>;
|
|
31630
31930
|
issueToWhiteboardInverse?: Maybe<GraphStoreSimplifiedIssueToWhiteboardInverseConnection>;
|
|
31631
31931
|
issueToWhiteboardInverseRelationship?: Maybe<GraphStoreFullIssueToWhiteboardConnection>;
|
|
@@ -31920,6 +32220,10 @@ export declare type GraphStore = {
|
|
|
31920
32220
|
userContributedConfluencePageInverse?: Maybe<GraphStoreSimplifiedUserContributedConfluencePageInverseConnection>;
|
|
31921
32221
|
userContributedConfluenceWhiteboard?: Maybe<GraphStoreSimplifiedUserContributedConfluenceWhiteboardConnection>;
|
|
31922
32222
|
userContributedConfluenceWhiteboardInverse?: Maybe<GraphStoreSimplifiedUserContributedConfluenceWhiteboardInverseConnection>;
|
|
32223
|
+
userCreatedAtlasGoal?: Maybe<GraphStoreSimplifiedUserCreatedAtlasGoalConnection>;
|
|
32224
|
+
userCreatedAtlasGoalInverse?: Maybe<GraphStoreSimplifiedUserCreatedAtlasGoalInverseConnection>;
|
|
32225
|
+
userCreatedAtlasProject?: Maybe<GraphStoreSimplifiedUserCreatedAtlasProjectConnection>;
|
|
32226
|
+
userCreatedAtlasProjectInverse?: Maybe<GraphStoreSimplifiedUserCreatedAtlasProjectInverseConnection>;
|
|
31923
32227
|
userCreatedBranch?: Maybe<GraphStoreSimplifiedUserCreatedBranchConnection>;
|
|
31924
32228
|
userCreatedBranchInverse?: Maybe<GraphStoreSimplifiedUserCreatedBranchInverseConnection>;
|
|
31925
32229
|
userCreatedCalendarEvent?: Maybe<GraphStoreSimplifiedUserCreatedCalendarEventConnection>;
|
|
@@ -31940,8 +32244,10 @@ export declare type GraphStore = {
|
|
|
31940
32244
|
userCreatedDesignInverse?: Maybe<GraphStoreSimplifiedUserCreatedDesignInverseConnection>;
|
|
31941
32245
|
userCreatedDocument?: Maybe<GraphStoreSimplifiedUserCreatedDocumentConnection>;
|
|
31942
32246
|
userCreatedDocumentInverse?: Maybe<GraphStoreSimplifiedUserCreatedDocumentInverseConnection>;
|
|
32247
|
+
userCreatedIssue?: Maybe<GraphStoreSimplifiedUserCreatedIssueConnection>;
|
|
31943
32248
|
userCreatedIssueComment?: Maybe<GraphStoreSimplifiedUserCreatedIssueCommentConnection>;
|
|
31944
32249
|
userCreatedIssueCommentInverse?: Maybe<GraphStoreSimplifiedUserCreatedIssueCommentInverseConnection>;
|
|
32250
|
+
userCreatedIssueInverse?: Maybe<GraphStoreSimplifiedUserCreatedIssueInverseConnection>;
|
|
31945
32251
|
userCreatedIssueWorklog?: Maybe<GraphStoreSimplifiedUserCreatedIssueWorklogConnection>;
|
|
31946
32252
|
userCreatedIssueWorklogInverse?: Maybe<GraphStoreSimplifiedUserCreatedIssueWorklogInverseConnection>;
|
|
31947
32253
|
userCreatedMessage?: Maybe<GraphStoreSimplifiedUserCreatedMessageConnection>;
|
|
@@ -32018,6 +32324,8 @@ export declare type GraphStore = {
|
|
|
32018
32324
|
userTaggedInIssueCommentInverse?: Maybe<GraphStoreSimplifiedUserTaggedInIssueCommentInverseConnection>;
|
|
32019
32325
|
userTriggeredDeployment?: Maybe<GraphStoreSimplifiedUserTriggeredDeploymentConnection>;
|
|
32020
32326
|
userTriggeredDeploymentInverse?: Maybe<GraphStoreSimplifiedUserTriggeredDeploymentInverseConnection>;
|
|
32327
|
+
userUpdatedAtlasGoal?: Maybe<GraphStoreSimplifiedUserUpdatedAtlasGoalConnection>;
|
|
32328
|
+
userUpdatedAtlasGoalInverse?: Maybe<GraphStoreSimplifiedUserUpdatedAtlasGoalInverseConnection>;
|
|
32021
32329
|
userUpdatedAtlasProject?: Maybe<GraphStoreSimplifiedUserUpdatedAtlasProjectConnection>;
|
|
32022
32330
|
userUpdatedAtlasProjectInverse?: Maybe<GraphStoreSimplifiedUserUpdatedAtlasProjectInverseConnection>;
|
|
32023
32331
|
userUpdatedComment?: Maybe<GraphStoreSimplifiedUserUpdatedCommentConnection>;
|
|
@@ -32476,6 +32784,13 @@ export declare type GraphStoreComponentAssociatedDocumentRelationshipArgs = {
|
|
|
32476
32784
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
32477
32785
|
id: Scalars['ID']['input'];
|
|
32478
32786
|
};
|
|
32787
|
+
export declare type GraphStoreComponentHasComponentLinkArgs = {
|
|
32788
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
32789
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
32790
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
32791
|
+
id: Scalars['ID']['input'];
|
|
32792
|
+
sort?: InputMaybe<GraphStoreComponentHasComponentLinkSortInput>;
|
|
32793
|
+
};
|
|
32479
32794
|
export declare type GraphStoreComponentHasComponentLinkInverseArgs = {
|
|
32480
32795
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
32481
32796
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -32514,6 +32829,13 @@ export declare type GraphStoreComponentLinkIsJiraProjectArgs = {
|
|
|
32514
32829
|
id: Scalars['ID']['input'];
|
|
32515
32830
|
sort?: InputMaybe<GraphStoreComponentLinkIsJiraProjectSortInput>;
|
|
32516
32831
|
};
|
|
32832
|
+
export declare type GraphStoreComponentLinkIsJiraProjectInverseArgs = {
|
|
32833
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
32834
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
32835
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
32836
|
+
id: Scalars['ID']['input'];
|
|
32837
|
+
sort?: InputMaybe<GraphStoreComponentLinkIsJiraProjectSortInput>;
|
|
32838
|
+
};
|
|
32517
32839
|
export declare type GraphStoreComponentLinkIsProviderRepoArgs = {
|
|
32518
32840
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
32519
32841
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -32521,6 +32843,13 @@ export declare type GraphStoreComponentLinkIsProviderRepoArgs = {
|
|
|
32521
32843
|
id: Scalars['ID']['input'];
|
|
32522
32844
|
sort?: InputMaybe<GraphStoreComponentLinkIsProviderRepoSortInput>;
|
|
32523
32845
|
};
|
|
32846
|
+
export declare type GraphStoreComponentLinkIsProviderRepoInverseArgs = {
|
|
32847
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
32848
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
32849
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
32850
|
+
id: Scalars['ID']['input'];
|
|
32851
|
+
sort?: InputMaybe<GraphStoreComponentLinkIsProviderRepoSortInput>;
|
|
32852
|
+
};
|
|
32524
32853
|
export declare type GraphStoreComponentLinkedJswIssueArgs = {
|
|
32525
32854
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
32526
32855
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -33582,6 +33911,13 @@ export declare type GraphStoreIssueHasChangedPriorityInverseArgs = {
|
|
|
33582
33911
|
id: Scalars['ID']['input'];
|
|
33583
33912
|
sort?: InputMaybe<GraphStoreIssueHasChangedPrioritySortInput>;
|
|
33584
33913
|
};
|
|
33914
|
+
export declare type GraphStoreIssueHasChangedStatusArgs = {
|
|
33915
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
33916
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
33917
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
33918
|
+
id: Scalars['ID']['input'];
|
|
33919
|
+
sort?: InputMaybe<GraphStoreIssueHasChangedStatusSortInput>;
|
|
33920
|
+
};
|
|
33585
33921
|
export declare type GraphStoreIssueHasChangedStatusInverseArgs = {
|
|
33586
33922
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
33587
33923
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -33689,6 +34025,20 @@ export declare type GraphStoreIssueRecursiveAssociatedPrRelationshipArgs = {
|
|
|
33689
34025
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
33690
34026
|
id: Scalars['ID']['input'];
|
|
33691
34027
|
};
|
|
34028
|
+
export declare type GraphStoreIssueRelatedToIssueArgs = {
|
|
34029
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
34030
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
34031
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
34032
|
+
id: Scalars['ID']['input'];
|
|
34033
|
+
sort?: InputMaybe<GraphStoreIssueRelatedToIssueSortInput>;
|
|
34034
|
+
};
|
|
34035
|
+
export declare type GraphStoreIssueRelatedToIssueInverseArgs = {
|
|
34036
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
34037
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
34038
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
34039
|
+
id: Scalars['ID']['input'];
|
|
34040
|
+
sort?: InputMaybe<GraphStoreIssueRelatedToIssueSortInput>;
|
|
34041
|
+
};
|
|
33692
34042
|
export declare type GraphStoreIssueToWhiteboardArgs = {
|
|
33693
34043
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
33694
34044
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -35641,6 +35991,34 @@ export declare type GraphStoreUserContributedConfluenceWhiteboardInverseArgs = {
|
|
|
35641
35991
|
id: Scalars['ID']['input'];
|
|
35642
35992
|
sort?: InputMaybe<GraphStoreUserContributedConfluenceWhiteboardSortInput>;
|
|
35643
35993
|
};
|
|
35994
|
+
export declare type GraphStoreUserCreatedAtlasGoalArgs = {
|
|
35995
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
35996
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
35997
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
35998
|
+
id: Scalars['ID']['input'];
|
|
35999
|
+
sort?: InputMaybe<GraphStoreUserCreatedAtlasGoalSortInput>;
|
|
36000
|
+
};
|
|
36001
|
+
export declare type GraphStoreUserCreatedAtlasGoalInverseArgs = {
|
|
36002
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
36003
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
36004
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
36005
|
+
id: Scalars['ID']['input'];
|
|
36006
|
+
sort?: InputMaybe<GraphStoreUserCreatedAtlasGoalSortInput>;
|
|
36007
|
+
};
|
|
36008
|
+
export declare type GraphStoreUserCreatedAtlasProjectArgs = {
|
|
36009
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
36010
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
36011
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
36012
|
+
id: Scalars['ID']['input'];
|
|
36013
|
+
sort?: InputMaybe<GraphStoreUserCreatedAtlasProjectSortInput>;
|
|
36014
|
+
};
|
|
36015
|
+
export declare type GraphStoreUserCreatedAtlasProjectInverseArgs = {
|
|
36016
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
36017
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
36018
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
36019
|
+
id: Scalars['ID']['input'];
|
|
36020
|
+
sort?: InputMaybe<GraphStoreUserCreatedAtlasProjectSortInput>;
|
|
36021
|
+
};
|
|
35644
36022
|
export declare type GraphStoreUserCreatedBranchArgs = {
|
|
35645
36023
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
35646
36024
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -35783,6 +36161,13 @@ export declare type GraphStoreUserCreatedDocumentInverseArgs = {
|
|
|
35783
36161
|
id: Scalars['ID']['input'];
|
|
35784
36162
|
sort?: InputMaybe<GraphStoreUserCreatedDocumentSortInput>;
|
|
35785
36163
|
};
|
|
36164
|
+
export declare type GraphStoreUserCreatedIssueArgs = {
|
|
36165
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
36166
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
36167
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
36168
|
+
id: Scalars['ID']['input'];
|
|
36169
|
+
sort?: InputMaybe<GraphStoreUserCreatedIssueSortInput>;
|
|
36170
|
+
};
|
|
35786
36171
|
export declare type GraphStoreUserCreatedIssueCommentArgs = {
|
|
35787
36172
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
35788
36173
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -35797,6 +36182,13 @@ export declare type GraphStoreUserCreatedIssueCommentInverseArgs = {
|
|
|
35797
36182
|
id: Scalars['ID']['input'];
|
|
35798
36183
|
sort?: InputMaybe<GraphStoreUserCreatedIssueCommentSortInput>;
|
|
35799
36184
|
};
|
|
36185
|
+
export declare type GraphStoreUserCreatedIssueInverseArgs = {
|
|
36186
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
36187
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
36188
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
36189
|
+
id: Scalars['ID']['input'];
|
|
36190
|
+
sort?: InputMaybe<GraphStoreUserCreatedIssueSortInput>;
|
|
36191
|
+
};
|
|
35800
36192
|
export declare type GraphStoreUserCreatedIssueWorklogArgs = {
|
|
35801
36193
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
35802
36194
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -36333,6 +36725,20 @@ export declare type GraphStoreUserTriggeredDeploymentInverseArgs = {
|
|
|
36333
36725
|
id: Scalars['ID']['input'];
|
|
36334
36726
|
sort?: InputMaybe<GraphStoreUserTriggeredDeploymentSortInput>;
|
|
36335
36727
|
};
|
|
36728
|
+
export declare type GraphStoreUserUpdatedAtlasGoalArgs = {
|
|
36729
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
36730
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
36731
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
36732
|
+
id: Scalars['ID']['input'];
|
|
36733
|
+
sort?: InputMaybe<GraphStoreUserUpdatedAtlasGoalSortInput>;
|
|
36734
|
+
};
|
|
36735
|
+
export declare type GraphStoreUserUpdatedAtlasGoalInverseArgs = {
|
|
36736
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
36737
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
36738
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
36739
|
+
id: Scalars['ID']['input'];
|
|
36740
|
+
sort?: InputMaybe<GraphStoreUserUpdatedAtlasGoalSortInput>;
|
|
36741
|
+
};
|
|
36336
36742
|
export declare type GraphStoreUserUpdatedAtlasProjectArgs = {
|
|
36337
36743
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
36338
36744
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -38528,7 +38934,7 @@ export declare type GraphStoreCypherQueryFromNode = {
|
|
|
38528
38934
|
data?: Maybe<GraphStoreCypherQueryFromNodeUnion>;
|
|
38529
38935
|
id: Scalars['ID']['output'];
|
|
38530
38936
|
};
|
|
38531
|
-
export declare type GraphStoreCypherQueryFromNodeUnion = AppUser | AtlassianAccountUser | BitbucketRepository | CompassComponent | CompassScorecard | ConfluenceBlogPost | ConfluenceDatabase | ConfluenceFolder | ConfluenceFooterComment | ConfluenceInlineComment | ConfluencePage | ConfluenceSpace | ConfluenceWhiteboard | CustomerUser | DeploymentSummary | DevOpsDesign | DevOpsDocument | DevOpsFeatureFlag | DevOpsOperationsComponentDetails | DevOpsOperationsIncidentDetails | DevOpsOperationsPostIncidentReviewDetails | DevOpsProjectDetails | DevOpsPullRequestDetails | DevOpsRepository | DevOpsSecurityVulnerabilityDetails | DevOpsService | ExternalBranch | ExternalBuildInfo | ExternalCalendarEvent | ExternalCommit | ExternalConversation | ExternalDeployment | ExternalDesign | ExternalDocument | ExternalFeatureFlag | ExternalMessage | ExternalOrganisation | ExternalPosition | ExternalPullRequest | ExternalRemoteLink | ExternalRepository | ExternalVideo | ExternalVulnerability | ExternalWorker | IdentityGroup | JiraAlignAggProject | JiraAutodevJob | JiraBoard | JiraConfluenceRemoteIssueLink | JiraCustomRemoteIssueLink | JiraIssue | JiraIssueRemoteIssueLink | JiraPlatformComment | JiraPostIncidentReviewLink | JiraPriority | JiraProject | JiraServiceManagementComment | JiraSprint | JiraVersion | JiraWebRemoteIssueLink | JiraWorklog | LoomComment | LoomSpace | LoomVideo | MercuryFocusArea | OpsgenieTeam | RadarPosition | SpfDependency | TeamV2 | ThirdPartySecurityContainer | ThirdPartyUser | TownsquareGoal | TownsquareGoalUpdate | TownsquareProject | TownsquareProjectUpdate;
|
|
38937
|
+
export declare type GraphStoreCypherQueryFromNodeUnion = AppUser | AtlassianAccountUser | BitbucketRepository | CompassComponent | CompassLinkNode | CompassScorecard | ConfluenceBlogPost | ConfluenceDatabase | ConfluenceFolder | ConfluenceFooterComment | ConfluenceInlineComment | ConfluencePage | ConfluenceSpace | ConfluenceWhiteboard | CustomerUser | DeploymentSummary | DevOpsDesign | DevOpsDocument | DevOpsFeatureFlag | DevOpsOperationsComponentDetails | DevOpsOperationsIncidentDetails | DevOpsOperationsPostIncidentReviewDetails | DevOpsProjectDetails | DevOpsPullRequestDetails | DevOpsRepository | DevOpsSecurityVulnerabilityDetails | DevOpsService | ExternalBranch | ExternalBuildInfo | ExternalCalendarEvent | ExternalCommit | ExternalConversation | ExternalDeployment | ExternalDesign | ExternalDocument | ExternalFeatureFlag | ExternalMessage | ExternalOrganisation | ExternalPosition | ExternalPullRequest | ExternalRemoteLink | ExternalRepository | ExternalVideo | ExternalVulnerability | ExternalWorker | IdentityGroup | JiraAlignAggProject | JiraAutodevJob | JiraBoard | JiraConfluenceRemoteIssueLink | JiraCustomRemoteIssueLink | JiraIssue | JiraIssueRemoteIssueLink | JiraPlatformComment | JiraPostIncidentReviewLink | JiraPriority | JiraProject | JiraServiceManagementComment | JiraSprint | JiraStatus | JiraVersion | JiraWebRemoteIssueLink | JiraWorklog | LoomComment | LoomSpace | LoomVideo | MercuryFocusArea | OpsgenieTeam | RadarPosition | SpfDependency | TeamV2 | ThirdPartySecurityContainer | ThirdPartyUser | TownsquareGoal | TownsquareGoalUpdate | TownsquareProject | TownsquareProjectUpdate;
|
|
38532
38938
|
export declare type GraphStoreCypherQueryIntObject = {
|
|
38533
38939
|
__typename?: 'GraphStoreCypherQueryIntObject';
|
|
38534
38940
|
value: Scalars['Int']['output'];
|
|
@@ -38563,7 +38969,7 @@ export declare type GraphStoreCypherQueryRowItemNode = {
|
|
|
38563
38969
|
data?: Maybe<GraphStoreCypherQueryRowItemNodeNodeUnion>;
|
|
38564
38970
|
id: Scalars['ID']['output'];
|
|
38565
38971
|
};
|
|
38566
|
-
export declare type GraphStoreCypherQueryRowItemNodeNodeUnion = AppUser | AtlassianAccountUser | BitbucketRepository | CompassComponent | CompassScorecard | ConfluenceBlogPost | ConfluenceDatabase | ConfluenceFolder | ConfluenceFooterComment | ConfluenceInlineComment | ConfluencePage | ConfluenceSpace | ConfluenceWhiteboard | CustomerUser | DeploymentSummary | DevOpsDesign | DevOpsDocument | DevOpsFeatureFlag | DevOpsOperationsComponentDetails | DevOpsOperationsIncidentDetails | DevOpsOperationsPostIncidentReviewDetails | DevOpsProjectDetails | DevOpsPullRequestDetails | DevOpsRepository | DevOpsSecurityVulnerabilityDetails | DevOpsService | ExternalBranch | ExternalBuildInfo | ExternalCalendarEvent | ExternalCommit | ExternalConversation | ExternalDeployment | ExternalDesign | ExternalDocument | ExternalFeatureFlag | ExternalMessage | ExternalOrganisation | ExternalPosition | ExternalPullRequest | ExternalRemoteLink | ExternalRepository | ExternalVideo | ExternalVulnerability | ExternalWorker | IdentityGroup | JiraAlignAggProject | JiraAutodevJob | JiraBoard | JiraConfluenceRemoteIssueLink | JiraCustomRemoteIssueLink | JiraIssue | JiraIssueRemoteIssueLink | JiraPlatformComment | JiraPostIncidentReviewLink | JiraPriority | JiraProject | JiraServiceManagementComment | JiraSprint | JiraVersion | JiraWebRemoteIssueLink | JiraWorklog | LoomComment | LoomSpace | LoomVideo | MercuryFocusArea | OpsgenieTeam | RadarPosition | SpfDependency | TeamV2 | ThirdPartySecurityContainer | ThirdPartyUser | TownsquareGoal | TownsquareGoalUpdate | TownsquareProject | TownsquareProjectUpdate;
|
|
38972
|
+
export declare type GraphStoreCypherQueryRowItemNodeNodeUnion = AppUser | AtlassianAccountUser | BitbucketRepository | CompassComponent | CompassLinkNode | CompassScorecard | ConfluenceBlogPost | ConfluenceDatabase | ConfluenceFolder | ConfluenceFooterComment | ConfluenceInlineComment | ConfluencePage | ConfluenceSpace | ConfluenceWhiteboard | CustomerUser | DeploymentSummary | DevOpsDesign | DevOpsDocument | DevOpsFeatureFlag | DevOpsOperationsComponentDetails | DevOpsOperationsIncidentDetails | DevOpsOperationsPostIncidentReviewDetails | DevOpsProjectDetails | DevOpsPullRequestDetails | DevOpsRepository | DevOpsSecurityVulnerabilityDetails | DevOpsService | ExternalBranch | ExternalBuildInfo | ExternalCalendarEvent | ExternalCommit | ExternalConversation | ExternalDeployment | ExternalDesign | ExternalDocument | ExternalFeatureFlag | ExternalMessage | ExternalOrganisation | ExternalPosition | ExternalPullRequest | ExternalRemoteLink | ExternalRepository | ExternalVideo | ExternalVulnerability | ExternalWorker | IdentityGroup | JiraAlignAggProject | JiraAutodevJob | JiraBoard | JiraConfluenceRemoteIssueLink | JiraCustomRemoteIssueLink | JiraIssue | JiraIssueRemoteIssueLink | JiraPlatformComment | JiraPostIncidentReviewLink | JiraPriority | JiraProject | JiraServiceManagementComment | JiraSprint | JiraStatus | JiraVersion | JiraWebRemoteIssueLink | JiraWorklog | LoomComment | LoomSpace | LoomVideo | MercuryFocusArea | OpsgenieTeam | RadarPosition | SpfDependency | TeamV2 | ThirdPartySecurityContainer | ThirdPartyUser | TownsquareGoal | TownsquareGoalUpdate | TownsquareProject | TownsquareProjectUpdate;
|
|
38567
38973
|
export declare type GraphStoreCypherQueryStringObject = {
|
|
38568
38974
|
__typename?: 'GraphStoreCypherQueryStringObject';
|
|
38569
38975
|
value: Scalars['String']['output'];
|
|
@@ -38573,13 +38979,13 @@ export declare type GraphStoreCypherQueryToNode = {
|
|
|
38573
38979
|
data?: Maybe<GraphStoreCypherQueryToNodeUnion>;
|
|
38574
38980
|
id: Scalars['ID']['output'];
|
|
38575
38981
|
};
|
|
38576
|
-
export declare type GraphStoreCypherQueryToNodeUnion = AppUser | AtlassianAccountUser | BitbucketRepository | CompassComponent | CompassScorecard | ConfluenceBlogPost | ConfluenceDatabase | ConfluenceFolder | ConfluenceFooterComment | ConfluenceInlineComment | ConfluencePage | ConfluenceSpace | ConfluenceWhiteboard | CustomerUser | DeploymentSummary | DevOpsDesign | DevOpsDocument | DevOpsFeatureFlag | DevOpsOperationsComponentDetails | DevOpsOperationsIncidentDetails | DevOpsOperationsPostIncidentReviewDetails | DevOpsProjectDetails | DevOpsPullRequestDetails | DevOpsRepository | DevOpsSecurityVulnerabilityDetails | DevOpsService | ExternalBranch | ExternalBuildInfo | ExternalCalendarEvent | ExternalCommit | ExternalConversation | ExternalDeployment | ExternalDesign | ExternalDocument | ExternalFeatureFlag | ExternalMessage | ExternalOrganisation | ExternalPosition | ExternalPullRequest | ExternalRemoteLink | ExternalRepository | ExternalVideo | ExternalVulnerability | ExternalWorker | IdentityGroup | JiraAlignAggProject | JiraAutodevJob | JiraBoard | JiraConfluenceRemoteIssueLink | JiraCustomRemoteIssueLink | JiraIssue | JiraIssueRemoteIssueLink | JiraPlatformComment | JiraPostIncidentReviewLink | JiraPriority | JiraProject | JiraServiceManagementComment | JiraSprint | JiraVersion | JiraWebRemoteIssueLink | JiraWorklog | LoomComment | LoomSpace | LoomVideo | MercuryFocusArea | OpsgenieTeam | RadarPosition | SpfDependency | TeamV2 | ThirdPartySecurityContainer | ThirdPartyUser | TownsquareGoal | TownsquareGoalUpdate | TownsquareProject | TownsquareProjectUpdate;
|
|
38982
|
+
export declare type GraphStoreCypherQueryToNodeUnion = AppUser | AtlassianAccountUser | BitbucketRepository | CompassComponent | CompassLinkNode | CompassScorecard | ConfluenceBlogPost | ConfluenceDatabase | ConfluenceFolder | ConfluenceFooterComment | ConfluenceInlineComment | ConfluencePage | ConfluenceSpace | ConfluenceWhiteboard | CustomerUser | DeploymentSummary | DevOpsDesign | DevOpsDocument | DevOpsFeatureFlag | DevOpsOperationsComponentDetails | DevOpsOperationsIncidentDetails | DevOpsOperationsPostIncidentReviewDetails | DevOpsProjectDetails | DevOpsPullRequestDetails | DevOpsRepository | DevOpsSecurityVulnerabilityDetails | DevOpsService | ExternalBranch | ExternalBuildInfo | ExternalCalendarEvent | ExternalCommit | ExternalConversation | ExternalDeployment | ExternalDesign | ExternalDocument | ExternalFeatureFlag | ExternalMessage | ExternalOrganisation | ExternalPosition | ExternalPullRequest | ExternalRemoteLink | ExternalRepository | ExternalVideo | ExternalVulnerability | ExternalWorker | IdentityGroup | JiraAlignAggProject | JiraAutodevJob | JiraBoard | JiraConfluenceRemoteIssueLink | JiraCustomRemoteIssueLink | JiraIssue | JiraIssueRemoteIssueLink | JiraPlatformComment | JiraPostIncidentReviewLink | JiraPriority | JiraProject | JiraServiceManagementComment | JiraSprint | JiraStatus | JiraVersion | JiraWebRemoteIssueLink | JiraWorklog | LoomComment | LoomSpace | LoomVideo | MercuryFocusArea | OpsgenieTeam | RadarPosition | SpfDependency | TeamV2 | ThirdPartySecurityContainer | ThirdPartyUser | TownsquareGoal | TownsquareGoalUpdate | TownsquareProject | TownsquareProjectUpdate;
|
|
38577
38983
|
export declare type GraphStoreCypherQueryV2AriNode = {
|
|
38578
38984
|
__typename?: 'GraphStoreCypherQueryV2AriNode';
|
|
38579
38985
|
data?: Maybe<GraphStoreCypherQueryV2AriNodeUnion>;
|
|
38580
38986
|
id: Scalars['ID']['output'];
|
|
38581
38987
|
};
|
|
38582
|
-
export declare type GraphStoreCypherQueryV2AriNodeUnion = AppUser | AtlassianAccountUser | BitbucketRepository | CompassComponent | CompassScorecard | ConfluenceBlogPost | ConfluenceDatabase | ConfluenceFolder | ConfluenceFooterComment | ConfluenceInlineComment | ConfluencePage | ConfluenceSpace | ConfluenceWhiteboard | CustomerUser | DeploymentSummary | DevOpsDesign | DevOpsDocument | DevOpsFeatureFlag | DevOpsOperationsComponentDetails | DevOpsOperationsIncidentDetails | DevOpsOperationsPostIncidentReviewDetails | DevOpsProjectDetails | DevOpsPullRequestDetails | DevOpsRepository | DevOpsSecurityVulnerabilityDetails | DevOpsService | ExternalBranch | ExternalBuildInfo | ExternalCalendarEvent | ExternalCommit | ExternalConversation | ExternalDeployment | ExternalDesign | ExternalDocument | ExternalFeatureFlag | ExternalMessage | ExternalOrganisation | ExternalPosition | ExternalPullRequest | ExternalRemoteLink | ExternalRepository | ExternalVideo | ExternalVulnerability | ExternalWorker | IdentityGroup | JiraAlignAggProject | JiraAutodevJob | JiraBoard | JiraConfluenceRemoteIssueLink | JiraCustomRemoteIssueLink | JiraIssue | JiraIssueRemoteIssueLink | JiraPlatformComment | JiraPostIncidentReviewLink | JiraPriority | JiraProject | JiraServiceManagementComment | JiraSprint | JiraVersion | JiraWebRemoteIssueLink | JiraWorklog | LoomComment | LoomSpace | LoomVideo | MercuryFocusArea | OpsgenieTeam | RadarPosition | SpfDependency | TeamV2 | ThirdPartySecurityContainer | ThirdPartyUser | TownsquareGoal | TownsquareGoalUpdate | TownsquareProject | TownsquareProjectUpdate;
|
|
38988
|
+
export declare type GraphStoreCypherQueryV2AriNodeUnion = AppUser | AtlassianAccountUser | BitbucketRepository | CompassComponent | CompassLinkNode | CompassScorecard | ConfluenceBlogPost | ConfluenceDatabase | ConfluenceFolder | ConfluenceFooterComment | ConfluenceInlineComment | ConfluencePage | ConfluenceSpace | ConfluenceWhiteboard | CustomerUser | DeploymentSummary | DevOpsDesign | DevOpsDocument | DevOpsFeatureFlag | DevOpsOperationsComponentDetails | DevOpsOperationsIncidentDetails | DevOpsOperationsPostIncidentReviewDetails | DevOpsProjectDetails | DevOpsPullRequestDetails | DevOpsRepository | DevOpsSecurityVulnerabilityDetails | DevOpsService | ExternalBranch | ExternalBuildInfo | ExternalCalendarEvent | ExternalCommit | ExternalConversation | ExternalDeployment | ExternalDesign | ExternalDocument | ExternalFeatureFlag | ExternalMessage | ExternalOrganisation | ExternalPosition | ExternalPullRequest | ExternalRemoteLink | ExternalRepository | ExternalVideo | ExternalVulnerability | ExternalWorker | IdentityGroup | JiraAlignAggProject | JiraAutodevJob | JiraBoard | JiraConfluenceRemoteIssueLink | JiraCustomRemoteIssueLink | JiraIssue | JiraIssueRemoteIssueLink | JiraPlatformComment | JiraPostIncidentReviewLink | JiraPriority | JiraProject | JiraServiceManagementComment | JiraSprint | JiraStatus | JiraVersion | JiraWebRemoteIssueLink | JiraWorklog | LoomComment | LoomSpace | LoomVideo | MercuryFocusArea | OpsgenieTeam | RadarPosition | SpfDependency | TeamV2 | ThirdPartySecurityContainer | ThirdPartyUser | TownsquareGoal | TownsquareGoalUpdate | TownsquareProject | TownsquareProjectUpdate;
|
|
38583
38989
|
export declare type GraphStoreCypherQueryV2BooleanObject = {
|
|
38584
38990
|
__typename?: 'GraphStoreCypherQueryV2BooleanObject';
|
|
38585
38991
|
value: Scalars['Boolean']['output'];
|
|
@@ -38624,7 +39030,7 @@ export declare enum GraphStoreCypherQueryV2VersionEnum {
|
|
|
38624
39030
|
V2 = "V2",
|
|
38625
39031
|
V3 = "V3"
|
|
38626
39032
|
}
|
|
38627
|
-
export declare type GraphStoreCypherQueryValueItemUnion = AppUser | AtlassianAccountUser | BitbucketRepository | CompassComponent | CompassScorecard | ConfluenceBlogPost | ConfluenceDatabase | ConfluenceFolder | ConfluenceFooterComment | ConfluenceInlineComment | ConfluencePage | ConfluenceSpace | ConfluenceWhiteboard | CustomerUser | DeploymentSummary | DevOpsDesign | DevOpsDocument | DevOpsFeatureFlag | DevOpsOperationsComponentDetails | DevOpsOperationsIncidentDetails | DevOpsOperationsPostIncidentReviewDetails | DevOpsProjectDetails | DevOpsPullRequestDetails | DevOpsRepository | DevOpsSecurityVulnerabilityDetails | DevOpsService | ExternalBranch | ExternalBuildInfo | ExternalCalendarEvent | ExternalCommit | ExternalConversation | ExternalDeployment | ExternalDesign | ExternalDocument | ExternalFeatureFlag | ExternalMessage | ExternalOrganisation | ExternalPosition | ExternalPullRequest | ExternalRemoteLink | ExternalRepository | ExternalVideo | ExternalVulnerability | ExternalWorker | IdentityGroup | JiraAlignAggProject | JiraAutodevJob | JiraBoard | JiraConfluenceRemoteIssueLink | JiraCustomRemoteIssueLink | JiraIssue | JiraIssueRemoteIssueLink | JiraPlatformComment | JiraPostIncidentReviewLink | JiraPriority | JiraProject | JiraServiceManagementComment | JiraSprint | JiraVersion | JiraWebRemoteIssueLink | JiraWorklog | LoomComment | LoomSpace | LoomVideo | MercuryFocusArea | OpsgenieTeam | RadarPosition | SpfDependency | TeamV2 | ThirdPartySecurityContainer | ThirdPartyUser | TownsquareGoal | TownsquareGoalUpdate | TownsquareProject | TownsquareProjectUpdate;
|
|
39033
|
+
export declare type GraphStoreCypherQueryValueItemUnion = AppUser | AtlassianAccountUser | BitbucketRepository | CompassComponent | CompassLinkNode | CompassScorecard | ConfluenceBlogPost | ConfluenceDatabase | ConfluenceFolder | ConfluenceFooterComment | ConfluenceInlineComment | ConfluencePage | ConfluenceSpace | ConfluenceWhiteboard | CustomerUser | DeploymentSummary | DevOpsDesign | DevOpsDocument | DevOpsFeatureFlag | DevOpsOperationsComponentDetails | DevOpsOperationsIncidentDetails | DevOpsOperationsPostIncidentReviewDetails | DevOpsProjectDetails | DevOpsPullRequestDetails | DevOpsRepository | DevOpsSecurityVulnerabilityDetails | DevOpsService | ExternalBranch | ExternalBuildInfo | ExternalCalendarEvent | ExternalCommit | ExternalConversation | ExternalDeployment | ExternalDesign | ExternalDocument | ExternalFeatureFlag | ExternalMessage | ExternalOrganisation | ExternalPosition | ExternalPullRequest | ExternalRemoteLink | ExternalRepository | ExternalVideo | ExternalVulnerability | ExternalWorker | IdentityGroup | JiraAlignAggProject | JiraAutodevJob | JiraBoard | JiraConfluenceRemoteIssueLink | JiraCustomRemoteIssueLink | JiraIssue | JiraIssueRemoteIssueLink | JiraPlatformComment | JiraPostIncidentReviewLink | JiraPriority | JiraProject | JiraServiceManagementComment | JiraSprint | JiraStatus | JiraVersion | JiraWebRemoteIssueLink | JiraWorklog | LoomComment | LoomSpace | LoomVideo | MercuryFocusArea | OpsgenieTeam | RadarPosition | SpfDependency | TeamV2 | ThirdPartySecurityContainer | ThirdPartyUser | TownsquareGoal | TownsquareGoalUpdate | TownsquareProject | TownsquareProjectUpdate;
|
|
38628
39034
|
export declare type GraphStoreCypherQueryValueNode = {
|
|
38629
39035
|
__typename?: 'GraphStoreCypherQueryValueNode';
|
|
38630
39036
|
data?: Maybe<GraphStoreCypherQueryValueItemUnion>;
|
|
@@ -42681,6 +43087,9 @@ export declare type GraphStoreIssueRecursiveAssociatedPrSortInput = {
|
|
|
42681
43087
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
42682
43088
|
toAti?: InputMaybe<GraphStoreSortInput>;
|
|
42683
43089
|
};
|
|
43090
|
+
export declare type GraphStoreIssueRelatedToIssueSortInput = {
|
|
43091
|
+
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
43092
|
+
};
|
|
42684
43093
|
export declare type GraphStoreIssueToWhiteboardConditionalFilterInput = {
|
|
42685
43094
|
createdAt?: InputMaybe<GraphStoreDateFilterInput>;
|
|
42686
43095
|
fromAti?: InputMaybe<GraphStoreAtiFilterInput>;
|
|
@@ -44342,6 +44751,19 @@ export declare type GraphStoreSimplifiedComponentAssociatedDocumentInverseEdge =
|
|
|
44342
44751
|
};
|
|
44343
44752
|
export declare type GraphStoreSimplifiedComponentAssociatedDocumentInverseUnion = CompassComponent;
|
|
44344
44753
|
export declare type GraphStoreSimplifiedComponentAssociatedDocumentUnion = DevOpsDocument | ExternalDocument;
|
|
44754
|
+
export declare type GraphStoreSimplifiedComponentHasComponentLinkConnection = HasPageInfo & {
|
|
44755
|
+
__typename?: 'GraphStoreSimplifiedComponentHasComponentLinkConnection';
|
|
44756
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedComponentHasComponentLinkEdge>>>;
|
|
44757
|
+
pageInfo: PageInfo;
|
|
44758
|
+
};
|
|
44759
|
+
export declare type GraphStoreSimplifiedComponentHasComponentLinkEdge = {
|
|
44760
|
+
__typename?: 'GraphStoreSimplifiedComponentHasComponentLinkEdge';
|
|
44761
|
+
createdAt: Scalars['DateTime']['output'];
|
|
44762
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
44763
|
+
id: Scalars['ID']['output'];
|
|
44764
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
44765
|
+
node?: Maybe<GraphStoreSimplifiedComponentHasComponentLinkUnion>;
|
|
44766
|
+
};
|
|
44345
44767
|
export declare type GraphStoreSimplifiedComponentHasComponentLinkInverseConnection = HasPageInfo & {
|
|
44346
44768
|
__typename?: 'GraphStoreSimplifiedComponentHasComponentLinkInverseConnection';
|
|
44347
44769
|
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedComponentHasComponentLinkInverseEdge>>>;
|
|
@@ -44356,6 +44778,7 @@ export declare type GraphStoreSimplifiedComponentHasComponentLinkInverseEdge = {
|
|
|
44356
44778
|
node?: Maybe<GraphStoreSimplifiedComponentHasComponentLinkInverseUnion>;
|
|
44357
44779
|
};
|
|
44358
44780
|
export declare type GraphStoreSimplifiedComponentHasComponentLinkInverseUnion = CompassComponent;
|
|
44781
|
+
export declare type GraphStoreSimplifiedComponentHasComponentLinkUnion = CompassLinkNode;
|
|
44359
44782
|
export declare type GraphStoreSimplifiedComponentImpactedByIncidentConnection = HasPageInfo & {
|
|
44360
44783
|
__typename?: 'GraphStoreSimplifiedComponentImpactedByIncidentConnection';
|
|
44361
44784
|
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedComponentImpactedByIncidentEdge>>>;
|
|
@@ -44397,6 +44820,20 @@ export declare type GraphStoreSimplifiedComponentLinkIsJiraProjectEdge = {
|
|
|
44397
44820
|
lastUpdated: Scalars['DateTime']['output'];
|
|
44398
44821
|
node?: Maybe<GraphStoreSimplifiedComponentLinkIsJiraProjectUnion>;
|
|
44399
44822
|
};
|
|
44823
|
+
export declare type GraphStoreSimplifiedComponentLinkIsJiraProjectInverseConnection = HasPageInfo & {
|
|
44824
|
+
__typename?: 'GraphStoreSimplifiedComponentLinkIsJiraProjectInverseConnection';
|
|
44825
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedComponentLinkIsJiraProjectInverseEdge>>>;
|
|
44826
|
+
pageInfo: PageInfo;
|
|
44827
|
+
};
|
|
44828
|
+
export declare type GraphStoreSimplifiedComponentLinkIsJiraProjectInverseEdge = {
|
|
44829
|
+
__typename?: 'GraphStoreSimplifiedComponentLinkIsJiraProjectInverseEdge';
|
|
44830
|
+
createdAt: Scalars['DateTime']['output'];
|
|
44831
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
44832
|
+
id: Scalars['ID']['output'];
|
|
44833
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
44834
|
+
node?: Maybe<GraphStoreSimplifiedComponentLinkIsJiraProjectInverseUnion>;
|
|
44835
|
+
};
|
|
44836
|
+
export declare type GraphStoreSimplifiedComponentLinkIsJiraProjectInverseUnion = CompassLinkNode;
|
|
44400
44837
|
export declare type GraphStoreSimplifiedComponentLinkIsJiraProjectUnion = JiraProject;
|
|
44401
44838
|
export declare type GraphStoreSimplifiedComponentLinkIsProviderRepoConnection = HasPageInfo & {
|
|
44402
44839
|
__typename?: 'GraphStoreSimplifiedComponentLinkIsProviderRepoConnection';
|
|
@@ -44411,6 +44848,20 @@ export declare type GraphStoreSimplifiedComponentLinkIsProviderRepoEdge = {
|
|
|
44411
44848
|
lastUpdated: Scalars['DateTime']['output'];
|
|
44412
44849
|
node?: Maybe<GraphStoreSimplifiedComponentLinkIsProviderRepoUnion>;
|
|
44413
44850
|
};
|
|
44851
|
+
export declare type GraphStoreSimplifiedComponentLinkIsProviderRepoInverseConnection = HasPageInfo & {
|
|
44852
|
+
__typename?: 'GraphStoreSimplifiedComponentLinkIsProviderRepoInverseConnection';
|
|
44853
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedComponentLinkIsProviderRepoInverseEdge>>>;
|
|
44854
|
+
pageInfo: PageInfo;
|
|
44855
|
+
};
|
|
44856
|
+
export declare type GraphStoreSimplifiedComponentLinkIsProviderRepoInverseEdge = {
|
|
44857
|
+
__typename?: 'GraphStoreSimplifiedComponentLinkIsProviderRepoInverseEdge';
|
|
44858
|
+
createdAt: Scalars['DateTime']['output'];
|
|
44859
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
44860
|
+
id: Scalars['ID']['output'];
|
|
44861
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
44862
|
+
node?: Maybe<GraphStoreSimplifiedComponentLinkIsProviderRepoInverseUnion>;
|
|
44863
|
+
};
|
|
44864
|
+
export declare type GraphStoreSimplifiedComponentLinkIsProviderRepoInverseUnion = CompassLinkNode;
|
|
44414
44865
|
export declare type GraphStoreSimplifiedComponentLinkIsProviderRepoUnion = BitbucketRepository;
|
|
44415
44866
|
export declare type GraphStoreSimplifiedComponentLinkedJswIssueConnection = HasPageInfo & HasTotal & {
|
|
44416
44867
|
__typename?: 'GraphStoreSimplifiedComponentLinkedJswIssueConnection';
|
|
@@ -45932,6 +46383,19 @@ export declare type GraphStoreSimplifiedIssueHasChangedPriorityInverseEdge = {
|
|
|
45932
46383
|
};
|
|
45933
46384
|
export declare type GraphStoreSimplifiedIssueHasChangedPriorityInverseUnion = JiraIssue;
|
|
45934
46385
|
export declare type GraphStoreSimplifiedIssueHasChangedPriorityUnion = JiraPriority;
|
|
46386
|
+
export declare type GraphStoreSimplifiedIssueHasChangedStatusConnection = HasPageInfo & {
|
|
46387
|
+
__typename?: 'GraphStoreSimplifiedIssueHasChangedStatusConnection';
|
|
46388
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedIssueHasChangedStatusEdge>>>;
|
|
46389
|
+
pageInfo: PageInfo;
|
|
46390
|
+
};
|
|
46391
|
+
export declare type GraphStoreSimplifiedIssueHasChangedStatusEdge = {
|
|
46392
|
+
__typename?: 'GraphStoreSimplifiedIssueHasChangedStatusEdge';
|
|
46393
|
+
createdAt: Scalars['DateTime']['output'];
|
|
46394
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
46395
|
+
id: Scalars['ID']['output'];
|
|
46396
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
46397
|
+
node?: Maybe<GraphStoreSimplifiedIssueHasChangedStatusUnion>;
|
|
46398
|
+
};
|
|
45935
46399
|
export declare type GraphStoreSimplifiedIssueHasChangedStatusInverseConnection = HasPageInfo & {
|
|
45936
46400
|
__typename?: 'GraphStoreSimplifiedIssueHasChangedStatusInverseConnection';
|
|
45937
46401
|
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedIssueHasChangedStatusInverseEdge>>>;
|
|
@@ -45946,6 +46410,7 @@ export declare type GraphStoreSimplifiedIssueHasChangedStatusInverseEdge = {
|
|
|
45946
46410
|
node?: Maybe<GraphStoreSimplifiedIssueHasChangedStatusInverseUnion>;
|
|
45947
46411
|
};
|
|
45948
46412
|
export declare type GraphStoreSimplifiedIssueHasChangedStatusInverseUnion = JiraIssue;
|
|
46413
|
+
export declare type GraphStoreSimplifiedIssueHasChangedStatusUnion = JiraStatus;
|
|
45949
46414
|
export declare type GraphStoreSimplifiedIssueMentionedInConversationConnection = HasPageInfo & {
|
|
45950
46415
|
__typename?: 'GraphStoreSimplifiedIssueMentionedInConversationConnection';
|
|
45951
46416
|
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedIssueMentionedInConversationEdge>>>;
|
|
@@ -46098,6 +46563,34 @@ export declare type GraphStoreSimplifiedIssueRecursiveAssociatedPrInverseEdge =
|
|
|
46098
46563
|
};
|
|
46099
46564
|
export declare type GraphStoreSimplifiedIssueRecursiveAssociatedPrInverseUnion = JiraIssue;
|
|
46100
46565
|
export declare type GraphStoreSimplifiedIssueRecursiveAssociatedPrUnion = DevOpsPullRequestDetails | ExternalPullRequest;
|
|
46566
|
+
export declare type GraphStoreSimplifiedIssueRelatedToIssueConnection = HasPageInfo & {
|
|
46567
|
+
__typename?: 'GraphStoreSimplifiedIssueRelatedToIssueConnection';
|
|
46568
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedIssueRelatedToIssueEdge>>>;
|
|
46569
|
+
pageInfo: PageInfo;
|
|
46570
|
+
};
|
|
46571
|
+
export declare type GraphStoreSimplifiedIssueRelatedToIssueEdge = {
|
|
46572
|
+
__typename?: 'GraphStoreSimplifiedIssueRelatedToIssueEdge';
|
|
46573
|
+
createdAt: Scalars['DateTime']['output'];
|
|
46574
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
46575
|
+
id: Scalars['ID']['output'];
|
|
46576
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
46577
|
+
node?: Maybe<GraphStoreSimplifiedIssueRelatedToIssueUnion>;
|
|
46578
|
+
};
|
|
46579
|
+
export declare type GraphStoreSimplifiedIssueRelatedToIssueInverseConnection = HasPageInfo & {
|
|
46580
|
+
__typename?: 'GraphStoreSimplifiedIssueRelatedToIssueInverseConnection';
|
|
46581
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedIssueRelatedToIssueInverseEdge>>>;
|
|
46582
|
+
pageInfo: PageInfo;
|
|
46583
|
+
};
|
|
46584
|
+
export declare type GraphStoreSimplifiedIssueRelatedToIssueInverseEdge = {
|
|
46585
|
+
__typename?: 'GraphStoreSimplifiedIssueRelatedToIssueInverseEdge';
|
|
46586
|
+
createdAt: Scalars['DateTime']['output'];
|
|
46587
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
46588
|
+
id: Scalars['ID']['output'];
|
|
46589
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
46590
|
+
node?: Maybe<GraphStoreSimplifiedIssueRelatedToIssueInverseUnion>;
|
|
46591
|
+
};
|
|
46592
|
+
export declare type GraphStoreSimplifiedIssueRelatedToIssueInverseUnion = JiraIssue;
|
|
46593
|
+
export declare type GraphStoreSimplifiedIssueRelatedToIssueUnion = JiraIssue;
|
|
46101
46594
|
export declare type GraphStoreSimplifiedIssueToWhiteboardConnection = HasPageInfo & HasTotal & {
|
|
46102
46595
|
__typename?: 'GraphStoreSimplifiedIssueToWhiteboardConnection';
|
|
46103
46596
|
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedIssueToWhiteboardEdge>>>;
|
|
@@ -48966,6 +49459,62 @@ export declare type GraphStoreSimplifiedUserContributedConfluenceWhiteboardInver
|
|
|
48966
49459
|
};
|
|
48967
49460
|
export declare type GraphStoreSimplifiedUserContributedConfluenceWhiteboardInverseUnion = AppUser | AtlassianAccountUser | CustomerUser;
|
|
48968
49461
|
export declare type GraphStoreSimplifiedUserContributedConfluenceWhiteboardUnion = ConfluenceWhiteboard;
|
|
49462
|
+
export declare type GraphStoreSimplifiedUserCreatedAtlasGoalConnection = HasPageInfo & {
|
|
49463
|
+
__typename?: 'GraphStoreSimplifiedUserCreatedAtlasGoalConnection';
|
|
49464
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedUserCreatedAtlasGoalEdge>>>;
|
|
49465
|
+
pageInfo: PageInfo;
|
|
49466
|
+
};
|
|
49467
|
+
export declare type GraphStoreSimplifiedUserCreatedAtlasGoalEdge = {
|
|
49468
|
+
__typename?: 'GraphStoreSimplifiedUserCreatedAtlasGoalEdge';
|
|
49469
|
+
createdAt: Scalars['DateTime']['output'];
|
|
49470
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
49471
|
+
id: Scalars['ID']['output'];
|
|
49472
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
49473
|
+
node?: Maybe<GraphStoreSimplifiedUserCreatedAtlasGoalUnion>;
|
|
49474
|
+
};
|
|
49475
|
+
export declare type GraphStoreSimplifiedUserCreatedAtlasGoalInverseConnection = HasPageInfo & {
|
|
49476
|
+
__typename?: 'GraphStoreSimplifiedUserCreatedAtlasGoalInverseConnection';
|
|
49477
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedUserCreatedAtlasGoalInverseEdge>>>;
|
|
49478
|
+
pageInfo: PageInfo;
|
|
49479
|
+
};
|
|
49480
|
+
export declare type GraphStoreSimplifiedUserCreatedAtlasGoalInverseEdge = {
|
|
49481
|
+
__typename?: 'GraphStoreSimplifiedUserCreatedAtlasGoalInverseEdge';
|
|
49482
|
+
createdAt: Scalars['DateTime']['output'];
|
|
49483
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
49484
|
+
id: Scalars['ID']['output'];
|
|
49485
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
49486
|
+
node?: Maybe<GraphStoreSimplifiedUserCreatedAtlasGoalInverseUnion>;
|
|
49487
|
+
};
|
|
49488
|
+
export declare type GraphStoreSimplifiedUserCreatedAtlasGoalInverseUnion = AppUser | AtlassianAccountUser | CustomerUser;
|
|
49489
|
+
export declare type GraphStoreSimplifiedUserCreatedAtlasGoalUnion = TownsquareGoal;
|
|
49490
|
+
export declare type GraphStoreSimplifiedUserCreatedAtlasProjectConnection = HasPageInfo & {
|
|
49491
|
+
__typename?: 'GraphStoreSimplifiedUserCreatedAtlasProjectConnection';
|
|
49492
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedUserCreatedAtlasProjectEdge>>>;
|
|
49493
|
+
pageInfo: PageInfo;
|
|
49494
|
+
};
|
|
49495
|
+
export declare type GraphStoreSimplifiedUserCreatedAtlasProjectEdge = {
|
|
49496
|
+
__typename?: 'GraphStoreSimplifiedUserCreatedAtlasProjectEdge';
|
|
49497
|
+
createdAt: Scalars['DateTime']['output'];
|
|
49498
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
49499
|
+
id: Scalars['ID']['output'];
|
|
49500
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
49501
|
+
node?: Maybe<GraphStoreSimplifiedUserCreatedAtlasProjectUnion>;
|
|
49502
|
+
};
|
|
49503
|
+
export declare type GraphStoreSimplifiedUserCreatedAtlasProjectInverseConnection = HasPageInfo & {
|
|
49504
|
+
__typename?: 'GraphStoreSimplifiedUserCreatedAtlasProjectInverseConnection';
|
|
49505
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedUserCreatedAtlasProjectInverseEdge>>>;
|
|
49506
|
+
pageInfo: PageInfo;
|
|
49507
|
+
};
|
|
49508
|
+
export declare type GraphStoreSimplifiedUserCreatedAtlasProjectInverseEdge = {
|
|
49509
|
+
__typename?: 'GraphStoreSimplifiedUserCreatedAtlasProjectInverseEdge';
|
|
49510
|
+
createdAt: Scalars['DateTime']['output'];
|
|
49511
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
49512
|
+
id: Scalars['ID']['output'];
|
|
49513
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
49514
|
+
node?: Maybe<GraphStoreSimplifiedUserCreatedAtlasProjectInverseUnion>;
|
|
49515
|
+
};
|
|
49516
|
+
export declare type GraphStoreSimplifiedUserCreatedAtlasProjectInverseUnion = AppUser | AtlassianAccountUser | CustomerUser;
|
|
49517
|
+
export declare type GraphStoreSimplifiedUserCreatedAtlasProjectUnion = TownsquareProject;
|
|
48969
49518
|
export declare type GraphStoreSimplifiedUserCreatedBranchConnection = HasPageInfo & {
|
|
48970
49519
|
__typename?: 'GraphStoreSimplifiedUserCreatedBranchConnection';
|
|
48971
49520
|
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedUserCreatedBranchEdge>>>;
|
|
@@ -49278,6 +49827,34 @@ export declare type GraphStoreSimplifiedUserCreatedIssueCommentInverseEdge = {
|
|
|
49278
49827
|
};
|
|
49279
49828
|
export declare type GraphStoreSimplifiedUserCreatedIssueCommentInverseUnion = AppUser | AtlassianAccountUser | CustomerUser;
|
|
49280
49829
|
export declare type GraphStoreSimplifiedUserCreatedIssueCommentUnion = JiraPlatformComment | JiraServiceManagementComment;
|
|
49830
|
+
export declare type GraphStoreSimplifiedUserCreatedIssueConnection = HasPageInfo & {
|
|
49831
|
+
__typename?: 'GraphStoreSimplifiedUserCreatedIssueConnection';
|
|
49832
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedUserCreatedIssueEdge>>>;
|
|
49833
|
+
pageInfo: PageInfo;
|
|
49834
|
+
};
|
|
49835
|
+
export declare type GraphStoreSimplifiedUserCreatedIssueEdge = {
|
|
49836
|
+
__typename?: 'GraphStoreSimplifiedUserCreatedIssueEdge';
|
|
49837
|
+
createdAt: Scalars['DateTime']['output'];
|
|
49838
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
49839
|
+
id: Scalars['ID']['output'];
|
|
49840
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
49841
|
+
node?: Maybe<GraphStoreSimplifiedUserCreatedIssueUnion>;
|
|
49842
|
+
};
|
|
49843
|
+
export declare type GraphStoreSimplifiedUserCreatedIssueInverseConnection = HasPageInfo & {
|
|
49844
|
+
__typename?: 'GraphStoreSimplifiedUserCreatedIssueInverseConnection';
|
|
49845
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedUserCreatedIssueInverseEdge>>>;
|
|
49846
|
+
pageInfo: PageInfo;
|
|
49847
|
+
};
|
|
49848
|
+
export declare type GraphStoreSimplifiedUserCreatedIssueInverseEdge = {
|
|
49849
|
+
__typename?: 'GraphStoreSimplifiedUserCreatedIssueInverseEdge';
|
|
49850
|
+
createdAt: Scalars['DateTime']['output'];
|
|
49851
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
49852
|
+
id: Scalars['ID']['output'];
|
|
49853
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
49854
|
+
node?: Maybe<GraphStoreSimplifiedUserCreatedIssueInverseUnion>;
|
|
49855
|
+
};
|
|
49856
|
+
export declare type GraphStoreSimplifiedUserCreatedIssueInverseUnion = AppUser | AtlassianAccountUser | CustomerUser;
|
|
49857
|
+
export declare type GraphStoreSimplifiedUserCreatedIssueUnion = JiraIssue;
|
|
49281
49858
|
export declare type GraphStoreSimplifiedUserCreatedIssueWorklogConnection = HasPageInfo & {
|
|
49282
49859
|
__typename?: 'GraphStoreSimplifiedUserCreatedIssueWorklogConnection';
|
|
49283
49860
|
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedUserCreatedIssueWorklogEdge>>>;
|
|
@@ -50354,6 +50931,34 @@ export declare type GraphStoreSimplifiedUserTriggeredDeploymentInverseEdge = {
|
|
|
50354
50931
|
};
|
|
50355
50932
|
export declare type GraphStoreSimplifiedUserTriggeredDeploymentInverseUnion = AppUser | AtlassianAccountUser | CustomerUser;
|
|
50356
50933
|
export declare type GraphStoreSimplifiedUserTriggeredDeploymentUnion = DeploymentSummary | ExternalDeployment;
|
|
50934
|
+
export declare type GraphStoreSimplifiedUserUpdatedAtlasGoalConnection = HasPageInfo & {
|
|
50935
|
+
__typename?: 'GraphStoreSimplifiedUserUpdatedAtlasGoalConnection';
|
|
50936
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedUserUpdatedAtlasGoalEdge>>>;
|
|
50937
|
+
pageInfo: PageInfo;
|
|
50938
|
+
};
|
|
50939
|
+
export declare type GraphStoreSimplifiedUserUpdatedAtlasGoalEdge = {
|
|
50940
|
+
__typename?: 'GraphStoreSimplifiedUserUpdatedAtlasGoalEdge';
|
|
50941
|
+
createdAt: Scalars['DateTime']['output'];
|
|
50942
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
50943
|
+
id: Scalars['ID']['output'];
|
|
50944
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
50945
|
+
node?: Maybe<GraphStoreSimplifiedUserUpdatedAtlasGoalUnion>;
|
|
50946
|
+
};
|
|
50947
|
+
export declare type GraphStoreSimplifiedUserUpdatedAtlasGoalInverseConnection = HasPageInfo & {
|
|
50948
|
+
__typename?: 'GraphStoreSimplifiedUserUpdatedAtlasGoalInverseConnection';
|
|
50949
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedUserUpdatedAtlasGoalInverseEdge>>>;
|
|
50950
|
+
pageInfo: PageInfo;
|
|
50951
|
+
};
|
|
50952
|
+
export declare type GraphStoreSimplifiedUserUpdatedAtlasGoalInverseEdge = {
|
|
50953
|
+
__typename?: 'GraphStoreSimplifiedUserUpdatedAtlasGoalInverseEdge';
|
|
50954
|
+
createdAt: Scalars['DateTime']['output'];
|
|
50955
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
50956
|
+
id: Scalars['ID']['output'];
|
|
50957
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
50958
|
+
node?: Maybe<GraphStoreSimplifiedUserUpdatedAtlasGoalInverseUnion>;
|
|
50959
|
+
};
|
|
50960
|
+
export declare type GraphStoreSimplifiedUserUpdatedAtlasGoalInverseUnion = AppUser | AtlassianAccountUser | CustomerUser;
|
|
50961
|
+
export declare type GraphStoreSimplifiedUserUpdatedAtlasGoalUnion = TownsquareGoal;
|
|
50357
50962
|
export declare type GraphStoreSimplifiedUserUpdatedAtlasProjectConnection = HasPageInfo & {
|
|
50358
50963
|
__typename?: 'GraphStoreSimplifiedUserUpdatedAtlasProjectConnection';
|
|
50359
50964
|
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedUserUpdatedAtlasProjectEdge>>>;
|
|
@@ -51674,6 +52279,12 @@ export declare type GraphStoreUserContributedConfluencePageSortInput = {
|
|
|
51674
52279
|
export declare type GraphStoreUserContributedConfluenceWhiteboardSortInput = {
|
|
51675
52280
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
51676
52281
|
};
|
|
52282
|
+
export declare type GraphStoreUserCreatedAtlasGoalSortInput = {
|
|
52283
|
+
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
52284
|
+
};
|
|
52285
|
+
export declare type GraphStoreUserCreatedAtlasProjectSortInput = {
|
|
52286
|
+
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
52287
|
+
};
|
|
51677
52288
|
export declare type GraphStoreUserCreatedBranchSortInput = {
|
|
51678
52289
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
51679
52290
|
};
|
|
@@ -51724,6 +52335,9 @@ export declare type GraphStoreUserCreatedDocumentSortInput = {
|
|
|
51724
52335
|
export declare type GraphStoreUserCreatedIssueCommentSortInput = {
|
|
51725
52336
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
51726
52337
|
};
|
|
52338
|
+
export declare type GraphStoreUserCreatedIssueSortInput = {
|
|
52339
|
+
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
52340
|
+
};
|
|
51727
52341
|
export declare type GraphStoreUserCreatedIssueWorklogSortInput = {
|
|
51728
52342
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
51729
52343
|
};
|
|
@@ -51871,6 +52485,9 @@ export declare type GraphStoreUserTaggedInIssueCommentSortInput = {
|
|
|
51871
52485
|
export declare type GraphStoreUserTriggeredDeploymentSortInput = {
|
|
51872
52486
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
51873
52487
|
};
|
|
52488
|
+
export declare type GraphStoreUserUpdatedAtlasGoalSortInput = {
|
|
52489
|
+
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
52490
|
+
};
|
|
51874
52491
|
export declare type GraphStoreUserUpdatedAtlasProjectSortInput = {
|
|
51875
52492
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
51876
52493
|
};
|
|
@@ -52253,27 +52870,40 @@ export declare type GrowthUnifiedProfileIssueTypeInput = {
|
|
|
52253
52870
|
};
|
|
52254
52871
|
export declare enum GrowthUnifiedProfileJtbd {
|
|
52255
52872
|
AdHocTaskAndIncidentManagement = "AD_HOC_TASK_AND_INCIDENT_MANAGEMENT",
|
|
52873
|
+
Brainstorming = "BRAINSTORMING",
|
|
52256
52874
|
Budgets = "BUDGETS",
|
|
52875
|
+
CampaignPlanning = "CAMPAIGN_PLANNING",
|
|
52257
52876
|
CdWrtng = "CD_WRTNG",
|
|
52258
52877
|
CentralizedDocumentation = "CENTRALIZED_DOCUMENTATION",
|
|
52259
52878
|
ComplianceAndRiskManagement = "COMPLIANCE_AND_RISK_MANAGEMENT",
|
|
52879
|
+
CreativeBriefs = "CREATIVE_BRIEFS",
|
|
52880
|
+
CustomerJourneys = "CUSTOMER_JOURNEYS",
|
|
52260
52881
|
EstimateTimeAndEffort = "ESTIMATE_TIME_AND_EFFORT",
|
|
52882
|
+
FlowchartAndDiagrams = "FLOWCHART_AND_DIAGRAMS",
|
|
52883
|
+
GanttChart = "GANTT_CHART",
|
|
52261
52884
|
ImproveTeamProcesses = "IMPROVE_TEAM_PROCESSES",
|
|
52262
52885
|
ImproveWorkflow = "IMPROVE_WORKFLOW",
|
|
52886
|
+
KnowledgeHub = "KNOWLEDGE_HUB",
|
|
52263
52887
|
LaunchCampaigns = "LAUNCH_CAMPAIGNS",
|
|
52264
52888
|
ManageTasks = "MANAGE_TASKS",
|
|
52265
52889
|
ManagingClientAndVendorRelationships = "MANAGING_CLIENT_AND_VENDOR_RELATIONSHIPS",
|
|
52266
52890
|
MapWorkDependencies = "MAP_WORK_DEPENDENCIES",
|
|
52267
52891
|
MarketingContent = "MARKETING_CONTENT",
|
|
52892
|
+
MeetingNotes = "MEETING_NOTES",
|
|
52268
52893
|
PlanAndManage = "PLAN_AND_MANAGE",
|
|
52269
52894
|
PrioritizeWork = "PRIORITIZE_WORK",
|
|
52895
|
+
ProcessMapping = "PROCESS_MAPPING",
|
|
52896
|
+
ProjectPlan = "PROJECT_PLAN",
|
|
52270
52897
|
ProjectPlanning = "PROJECT_PLANNING",
|
|
52271
52898
|
ProjectPlanningAndCoordination = "PROJECT_PLANNING_AND_COORDINATION",
|
|
52272
52899
|
ProjectProgress = "PROJECT_PROGRESS",
|
|
52900
|
+
RequirementsDoc = "REQUIREMENTS_DOC",
|
|
52273
52901
|
RunSprints = "RUN_SPRINTS",
|
|
52274
52902
|
Stakeholders = "STAKEHOLDERS",
|
|
52275
52903
|
StrategiesAndGoals = "STRATEGIES_AND_GOALS",
|
|
52276
52904
|
SystemAndToolEvaluations = "SYSTEM_AND_TOOL_EVALUATIONS",
|
|
52905
|
+
TaskTracking = "TASK_TRACKING",
|
|
52906
|
+
TeamStatusUpdate = "TEAM_STATUS_UPDATE",
|
|
52277
52907
|
TrackingRprtng = "TRACKING_RPRTNG",
|
|
52278
52908
|
TrackBugs = "TRACK_BUGS",
|
|
52279
52909
|
UseKanbanBoard = "USE_KANBAN_BOARD",
|
|
@@ -56168,6 +56798,13 @@ export declare type JiraAutodevCreateJobPayload = Payload & {
|
|
|
56168
56798
|
job?: Maybe<JiraAutodevJob>;
|
|
56169
56799
|
success: Scalars['Boolean']['output'];
|
|
56170
56800
|
};
|
|
56801
|
+
export declare enum JiraAutodevCreatePullRequestOptionEnumType {
|
|
56802
|
+
Always = "ALWAYS",
|
|
56803
|
+
Draft = "DRAFT",
|
|
56804
|
+
DraftOnBuildPass = "DRAFT_ON_BUILD_PASS",
|
|
56805
|
+
Never = "NEVER",
|
|
56806
|
+
OnBuildPass = "ON_BUILD_PASS"
|
|
56807
|
+
}
|
|
56171
56808
|
export declare type JiraAutodevDeletedPayload = Payload & {
|
|
56172
56809
|
__typename?: 'JiraAutodevDeletedPayload';
|
|
56173
56810
|
errors?: Maybe<Array<MutationError>>;
|
|
@@ -56182,6 +56819,7 @@ export declare type JiraAutodevJob = {
|
|
|
56182
56819
|
branchUrl?: Maybe<Scalars['String']['output']>;
|
|
56183
56820
|
changesSummary?: Maybe<Scalars['String']['output']>;
|
|
56184
56821
|
codeChanges?: Maybe<JiraAutodevCodeChangeConnection>;
|
|
56822
|
+
createPullRequestOption?: Maybe<JiraAutodevCreatePullRequestOptionEnumType>;
|
|
56185
56823
|
currentWorkflow?: Maybe<Scalars['String']['output']>;
|
|
56186
56824
|
error?: Maybe<JiraAutodevJobPermissionError>;
|
|
56187
56825
|
gitDiff?: Maybe<Scalars['String']['output']>;
|
|
@@ -56683,6 +57321,20 @@ export declare enum JiraBulkEditMultiSelectFieldOptions {
|
|
|
56683
57321
|
RemoveAll = "REMOVE_ALL",
|
|
56684
57322
|
Replace = "REPLACE"
|
|
56685
57323
|
}
|
|
57324
|
+
export declare type JiraBulkLabelColorUpdateInput = {
|
|
57325
|
+
labelColorUpdate: Array<JiraBulkLabelColorUpdateInputItem>;
|
|
57326
|
+
projectId: Scalars['ID']['input'];
|
|
57327
|
+
};
|
|
57328
|
+
export declare type JiraBulkLabelColorUpdateInputItem = {
|
|
57329
|
+
color?: InputMaybe<JiraOptionColorInput>;
|
|
57330
|
+
fieldId: Scalars['ID']['input'];
|
|
57331
|
+
label: Scalars['String']['input'];
|
|
57332
|
+
};
|
|
57333
|
+
export declare type JiraBulkLabelColorUpdatePayload = Payload & {
|
|
57334
|
+
__typename?: 'JiraBulkLabelColorUpdatePayload';
|
|
57335
|
+
errors?: Maybe<Array<MutationError>>;
|
|
57336
|
+
success: Scalars['Boolean']['output'];
|
|
57337
|
+
};
|
|
56686
57338
|
export declare type JiraBulkOperationInput = {
|
|
56687
57339
|
bulkDeleteInput?: InputMaybe<JiraBulkDeleteInput>;
|
|
56688
57340
|
bulkEditInput?: InputMaybe<JiraBulkEditInput>;
|
|
@@ -58946,6 +59598,7 @@ export declare type JiraDevOpsMutationApproveJiraBitbucketWorkspaceAccessRequest
|
|
|
58946
59598
|
input: JiraApproveJiraBitbucketWorkspaceAccessRequestInput;
|
|
58947
59599
|
};
|
|
58948
59600
|
export declare type JiraDevOpsMutationCreateAutodevJobArgs = {
|
|
59601
|
+
createPullRequestOption?: InputMaybe<JiraAutodevCreatePullRequestOptionEnumType>;
|
|
58949
59602
|
issueAri: Scalars['ID']['input'];
|
|
58950
59603
|
prompt?: InputMaybe<Scalars['String']['input']>;
|
|
58951
59604
|
repoUrl: Scalars['String']['input'];
|
|
@@ -59459,6 +60112,7 @@ export declare type JiraField = {
|
|
|
59459
60112
|
export declare type JiraFieldAssociationWithIssueTypes = JiraProjectFieldAssociationInterface & {
|
|
59460
60113
|
__typename?: 'JiraFieldAssociationWithIssueTypes';
|
|
59461
60114
|
field?: Maybe<JiraField>;
|
|
60115
|
+
fieldFormatConfig?: Maybe<JiraFieldFormatConfig>;
|
|
59462
60116
|
fieldOperation?: Maybe<JiraFieldOperation>;
|
|
59463
60117
|
fieldOptions?: Maybe<JiraFieldOptionConnection>;
|
|
59464
60118
|
hasMissingConfiguration?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -59518,6 +60172,7 @@ export declare type JiraFieldConfigFilterInput = {
|
|
|
59518
60172
|
};
|
|
59519
60173
|
export declare enum JiraFieldConfigOrderBy {
|
|
59520
60174
|
ContextCount = "CONTEXT_COUNT",
|
|
60175
|
+
FieldType = "FIELD_TYPE",
|
|
59521
60176
|
LastUsed = "LAST_USED",
|
|
59522
60177
|
Name = "NAME",
|
|
59523
60178
|
PlannedDeleteDate = "PLANNED_DELETE_DATE",
|
|
@@ -59536,6 +60191,7 @@ export declare type JiraFieldConfigScheme = {
|
|
|
59536
60191
|
id: Scalars['ID']['output'];
|
|
59537
60192
|
name?: Maybe<Scalars['String']['output']>;
|
|
59538
60193
|
projectsCount?: Maybe<Scalars['Int']['output']>;
|
|
60194
|
+
schemeId?: Maybe<Scalars['ID']['output']>;
|
|
59539
60195
|
};
|
|
59540
60196
|
export declare type JiraFieldConfigSchemesConnection = {
|
|
59541
60197
|
__typename?: 'JiraFieldConfigSchemesConnection';
|
|
@@ -59560,6 +60216,7 @@ export declare type JiraFieldEdge = {
|
|
|
59560
60216
|
cursor?: Maybe<Scalars['String']['output']>;
|
|
59561
60217
|
node?: Maybe<JiraField>;
|
|
59562
60218
|
};
|
|
60219
|
+
export declare type JiraFieldFormatConfig = JiraNumberFieldFormatConfig;
|
|
59563
60220
|
export declare type JiraFieldKeyValueInput = {
|
|
59564
60221
|
key?: InputMaybe<Scalars['String']['input']>;
|
|
59565
60222
|
value?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -60620,6 +61277,7 @@ export declare type JiraIssue = HasMercuryProjectFields & JiraScenarioIssueLike
|
|
|
60620
61277
|
mercuryTargetDateStart?: Maybe<Scalars['DateTime']['output']>;
|
|
60621
61278
|
mercuryTargetDateType?: Maybe<MercuryProjectTargetDateType>;
|
|
60622
61279
|
parentIssueField?: Maybe<JiraParentIssueField>;
|
|
61280
|
+
pinnedComments?: Maybe<JiraPinnedCommentsResponse>;
|
|
60623
61281
|
planScenarioValues?: Maybe<JiraScenarioIssueValues>;
|
|
60624
61282
|
postIncidentReviewLinks?: Maybe<GraphIncidentAssociatedPostIncidentReviewLinkRelationshipConnection>;
|
|
60625
61283
|
priorityField?: Maybe<JiraPriorityField>;
|
|
@@ -60702,6 +61360,7 @@ export declare type JiraIssueContentPanelsArgs = {
|
|
|
60702
61360
|
};
|
|
60703
61361
|
export declare type JiraIssueDesignsArgs = {
|
|
60704
61362
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
61363
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
60705
61364
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
60706
61365
|
};
|
|
60707
61366
|
export declare type JiraIssueEndDateViewFieldArgs = {
|
|
@@ -61233,6 +61892,8 @@ export declare type JiraIssueFieldConfig = Node & {
|
|
|
61233
61892
|
trashedByUser?: Maybe<User>;
|
|
61234
61893
|
trashedTimestamp?: Maybe<Scalars['Long']['output']>;
|
|
61235
61894
|
type: JiraConfigFieldType;
|
|
61895
|
+
typeDisplayName?: Maybe<Scalars['String']['output']>;
|
|
61896
|
+
typeKey?: Maybe<Scalars['String']['output']>;
|
|
61236
61897
|
};
|
|
61237
61898
|
export declare type JiraIssueFieldConfigAssociatedContextsArgs = {
|
|
61238
61899
|
after?: InputMaybe<Scalars['Int']['input']>;
|
|
@@ -62024,6 +62685,7 @@ export declare type JiraIssueSearchViewConfigSettings = {
|
|
|
62024
62685
|
hideDone?: Maybe<Scalars['Boolean']['output']>;
|
|
62025
62686
|
isGroupingEnabled?: Maybe<Scalars['Boolean']['output']>;
|
|
62026
62687
|
isHierarchyEnabled?: Maybe<Scalars['Boolean']['output']>;
|
|
62688
|
+
isSortedByGlobalRankOnly?: Maybe<Scalars['Boolean']['output']>;
|
|
62027
62689
|
isViewConfigModified?: Maybe<Scalars['Boolean']['output']>;
|
|
62028
62690
|
};
|
|
62029
62691
|
export declare type JiraIssueSearchViewContextInput = {
|
|
@@ -62095,6 +62757,15 @@ export declare type JiraIssueSearchViewPayload = Payload & {
|
|
|
62095
62757
|
success: Scalars['Boolean']['output'];
|
|
62096
62758
|
view?: Maybe<JiraIssueSearchView>;
|
|
62097
62759
|
};
|
|
62760
|
+
export declare type JiraIssueSearchViewProjectKeyAndItemIdQuery = {
|
|
62761
|
+
cloudId: Scalars['ID']['input'];
|
|
62762
|
+
itemId: Scalars['String']['input'];
|
|
62763
|
+
projectKey: Scalars['String']['input'];
|
|
62764
|
+
};
|
|
62765
|
+
export declare type JiraIssueSearchViewQueryInput = {
|
|
62766
|
+
projectKeyAndItemIdQuery?: InputMaybe<JiraIssueSearchViewProjectKeyAndItemIdQuery>;
|
|
62767
|
+
viewAri?: InputMaybe<Scalars['ID']['input']>;
|
|
62768
|
+
};
|
|
62098
62769
|
export declare type JiraIssueSearchViewResult = JiraIssueSearchView | QueryError;
|
|
62099
62770
|
export declare type JiraIssueStreamHubEventPayloadProject = {
|
|
62100
62771
|
__typename?: 'JiraIssueStreamHubEventPayloadProject';
|
|
@@ -62454,6 +63125,10 @@ export declare enum JiraJourneyParentIssueType {
|
|
|
62454
63125
|
Request = "REQUEST"
|
|
62455
63126
|
}
|
|
62456
63127
|
export declare type JiraJourneyParentIssueValueType = JiraServiceManagementRequestType;
|
|
63128
|
+
export declare type JiraJourneyProjectSettings = {
|
|
63129
|
+
__typename?: 'JiraJourneyProjectSettings';
|
|
63130
|
+
isJourneyFeatureEnabled?: Maybe<Scalars['Boolean']['output']>;
|
|
63131
|
+
};
|
|
62457
63132
|
export declare type JiraJourneySettings = {
|
|
62458
63133
|
__typename?: 'JiraJourneySettings';
|
|
62459
63134
|
maxJourneyItems?: Maybe<Scalars['Long']['output']>;
|
|
@@ -62729,9 +63404,13 @@ export declare type JiraJqlField = {
|
|
|
62729
63404
|
jqlTerm: Scalars['ID']['output'];
|
|
62730
63405
|
operators: Array<JiraJqlOperator>;
|
|
62731
63406
|
searchTemplate?: Maybe<JiraJqlSearchTemplate>;
|
|
63407
|
+
shouldExcludeInScope?: Maybe<Scalars['Boolean']['output']>;
|
|
62732
63408
|
shouldShowInContext?: Maybe<Scalars['Boolean']['output']>;
|
|
62733
63409
|
type?: Maybe<Scalars['String']['output']>;
|
|
62734
63410
|
};
|
|
63411
|
+
export declare type JiraJqlFieldShouldExcludeInScopeArgs = {
|
|
63412
|
+
scope?: InputMaybe<JiraJqlScopeInput>;
|
|
63413
|
+
};
|
|
62735
63414
|
export declare type JiraJqlFieldConnection = {
|
|
62736
63415
|
__typename?: 'JiraJqlFieldConnection';
|
|
62737
63416
|
edges?: Maybe<Array<Maybe<JiraJqlFieldEdge>>>;
|
|
@@ -63144,6 +63823,18 @@ export declare type JiraLabel = {
|
|
|
63144
63823
|
labelId?: Maybe<Scalars['String']['output']>;
|
|
63145
63824
|
name?: Maybe<Scalars['String']['output']>;
|
|
63146
63825
|
};
|
|
63826
|
+
export declare type JiraLabelColorUpdateInput = {
|
|
63827
|
+
color?: InputMaybe<JiraOptionColorInput>;
|
|
63828
|
+
fieldId: Scalars['ID']['input'];
|
|
63829
|
+
label: Scalars['String']['input'];
|
|
63830
|
+
};
|
|
63831
|
+
export declare type JiraLabelColorUpdatePayload = Payload & {
|
|
63832
|
+
__typename?: 'JiraLabelColorUpdatePayload';
|
|
63833
|
+
errors?: Maybe<Array<MutationError>>;
|
|
63834
|
+
fieldId?: Maybe<Scalars['ID']['output']>;
|
|
63835
|
+
label?: Maybe<JiraLabel>;
|
|
63836
|
+
success: Scalars['Boolean']['output'];
|
|
63837
|
+
};
|
|
63147
63838
|
export declare type JiraLabelConnection = {
|
|
63148
63839
|
__typename?: 'JiraLabelConnection';
|
|
63149
63840
|
edges?: Maybe<Array<Maybe<JiraLabelEdge>>>;
|
|
@@ -63679,6 +64370,7 @@ export declare type JiraMutation = {
|
|
|
63679
64370
|
assignRelatedWorkToUser?: Maybe<JiraAssignRelatedWorkPayload>;
|
|
63680
64371
|
attributeUnsplashImage?: Maybe<JiraUnsplashAttributionPayload>;
|
|
63681
64372
|
bulkCreateRequestTypeFromTemplate?: Maybe<JiraServiceManagementCreateRequestTypeFromTemplatePayload>;
|
|
64373
|
+
bulkUpdateLabelColor?: Maybe<JiraBulkLabelColorUpdatePayload>;
|
|
63682
64374
|
cloneIssue?: Maybe<JiraCloneIssueResponse>;
|
|
63683
64375
|
createAndAssociateWorkflowFromJsmTemplate?: Maybe<JiraServiceManagementCreateAndAssociateWorkflowFromTemplatePayload>;
|
|
63684
64376
|
createAppNavigationItem?: Maybe<JiraCreateNavigationItemPayload>;
|
|
@@ -63821,6 +64513,7 @@ export declare type JiraMutation = {
|
|
|
63821
64513
|
updateJsmOrganizationField?: Maybe<JiraServiceManagementOrganizationFieldPayload>;
|
|
63822
64514
|
updateJwmFilter?: Maybe<JiraWorkManagementUpdateFilterPayload>;
|
|
63823
64515
|
updateJwmOverview?: Maybe<JiraWorkManagementGiraUpdateOverviewPayload>;
|
|
64516
|
+
updateLabelColor?: Maybe<JiraLabelColorUpdatePayload>;
|
|
63824
64517
|
updateLabelsField?: Maybe<JiraLabelsFieldPayload>;
|
|
63825
64518
|
updateLegacyTeamField?: Maybe<JiraLegacyTeamFieldPayload>;
|
|
63826
64519
|
updateMultipleGroupPickerField?: Maybe<JiraMultipleGroupPickerFieldPayload>;
|
|
@@ -63909,6 +64602,9 @@ export declare type JiraMutationAttributeUnsplashImageArgs = {
|
|
|
63909
64602
|
export declare type JiraMutationBulkCreateRequestTypeFromTemplateArgs = {
|
|
63910
64603
|
input: JiraServiceManagementBulkCreateRequestTypeFromTemplateInput;
|
|
63911
64604
|
};
|
|
64605
|
+
export declare type JiraMutationBulkUpdateLabelColorArgs = {
|
|
64606
|
+
input: JiraBulkLabelColorUpdateInput;
|
|
64607
|
+
};
|
|
63912
64608
|
export declare type JiraMutationCloneIssueArgs = {
|
|
63913
64609
|
input: JiraCloneIssueInput;
|
|
63914
64610
|
};
|
|
@@ -64390,6 +65086,9 @@ export declare type JiraMutationUpdateJwmFilterArgs = {
|
|
|
64390
65086
|
export declare type JiraMutationUpdateJwmOverviewArgs = {
|
|
64391
65087
|
input: JiraWorkManagementUpdateOverviewInput;
|
|
64392
65088
|
};
|
|
65089
|
+
export declare type JiraMutationUpdateLabelColorArgs = {
|
|
65090
|
+
input: JiraLabelColorUpdateInput;
|
|
65091
|
+
};
|
|
64393
65092
|
export declare type JiraMutationUpdateLabelsFieldArgs = {
|
|
64394
65093
|
input: JiraUpdateLabelsFieldInput;
|
|
64395
65094
|
};
|
|
@@ -65430,6 +66129,11 @@ export declare enum JiraPermissionType {
|
|
|
65430
66129
|
BrowseProjects = "BROWSE_PROJECTS",
|
|
65431
66130
|
BulkChange = "BULK_CHANGE"
|
|
65432
66131
|
}
|
|
66132
|
+
export declare type JiraPinnedCommentsResponse = {
|
|
66133
|
+
__typename?: 'JiraPinnedCommentsResponse';
|
|
66134
|
+
maxPinnedCommentLimitReached?: Maybe<Scalars['Boolean']['output']>;
|
|
66135
|
+
pinnedComments?: Maybe<Array<Maybe<JiraComment>>>;
|
|
66136
|
+
};
|
|
65433
66137
|
export declare type JiraPlan = Node & {
|
|
65434
66138
|
__typename?: 'JiraPlan';
|
|
65435
66139
|
defaultNavigationItem?: Maybe<JiraNavigationItemResult>;
|
|
@@ -65674,6 +66378,7 @@ export declare enum JiraPlaybookStepRunStatus {
|
|
|
65674
66378
|
QueuedForRetry = "QUEUED_FOR_RETRY",
|
|
65675
66379
|
SomeErrors = "SOME_ERRORS",
|
|
65676
66380
|
Success = "SUCCESS",
|
|
66381
|
+
SuccessUndone = "SUCCESS_UNDONE",
|
|
65677
66382
|
Throttled = "THROTTLED",
|
|
65678
66383
|
Waiting = "WAITING"
|
|
65679
66384
|
}
|
|
@@ -66550,6 +67255,7 @@ export declare type JiraProjectsSidebarMenu = {
|
|
|
66550
67255
|
id: Scalars['ID']['output'];
|
|
66551
67256
|
moreFavourites?: Maybe<JiraProjectConnection>;
|
|
66552
67257
|
moreRecents?: Maybe<JiraProjectConnection>;
|
|
67258
|
+
mostRecent?: Maybe<JiraProject>;
|
|
66553
67259
|
recentLimit?: Maybe<Scalars['Int']['output']>;
|
|
66554
67260
|
recents?: Maybe<JiraProjectConnection>;
|
|
66555
67261
|
};
|
|
@@ -66715,6 +67421,7 @@ export declare type JiraQuery = {
|
|
|
66715
67421
|
jiraIssueSearchView?: Maybe<JiraView>;
|
|
66716
67422
|
jiraJourneyConfiguration?: Maybe<JiraJourneyConfiguration>;
|
|
66717
67423
|
jiraJourneyItem?: Maybe<JiraJourneyItem>;
|
|
67424
|
+
jiraJourneyProjectSettings?: Maybe<JiraJourneyProjectSettings>;
|
|
66718
67425
|
jiraJourneySettings?: Maybe<JiraJourneySettings>;
|
|
66719
67426
|
jiraProject?: Maybe<JiraProject>;
|
|
66720
67427
|
jiraProjectByKey?: Maybe<JiraProject>;
|
|
@@ -67315,6 +68022,7 @@ export declare type JiraQueryJiraIssueSearchViewArgs = {
|
|
|
67315
68022
|
namespace?: InputMaybe<Scalars['String']['input']>;
|
|
67316
68023
|
viewConfigInput?: InputMaybe<JiraIssueSearchStaticViewInput>;
|
|
67317
68024
|
viewId?: InputMaybe<Scalars['String']['input']>;
|
|
68025
|
+
viewQueryInput?: InputMaybe<JiraIssueSearchViewQueryInput>;
|
|
67318
68026
|
};
|
|
67319
68027
|
export declare type JiraQueryJiraJourneyConfigurationArgs = {
|
|
67320
68028
|
cloudId: Scalars['ID']['input'];
|
|
@@ -67327,6 +68035,10 @@ export declare type JiraQueryJiraJourneyItemArgs = {
|
|
|
67327
68035
|
isEditing?: InputMaybe<Scalars['Boolean']['input']>;
|
|
67328
68036
|
journeyId: Scalars['ID']['input'];
|
|
67329
68037
|
};
|
|
68038
|
+
export declare type JiraQueryJiraJourneyProjectSettingsArgs = {
|
|
68039
|
+
cloudId: Scalars['ID']['input'];
|
|
68040
|
+
projectKey: Scalars['String']['input'];
|
|
68041
|
+
};
|
|
67330
68042
|
export declare type JiraQueryJiraJourneySettingsArgs = {
|
|
67331
68043
|
cloudId: Scalars['ID']['input'];
|
|
67332
68044
|
};
|
|
@@ -68431,6 +69143,16 @@ export declare enum JiraResourceUsageRecommendationStatus {
|
|
|
68431
69143
|
Obsolete = "OBSOLETE",
|
|
68432
69144
|
Trashed = "TRASHED"
|
|
68433
69145
|
}
|
|
69146
|
+
export declare type JiraRestoreGlobalCustomFieldsInput = {
|
|
69147
|
+
fieldIds: Array<Scalars['String']['input']>;
|
|
69148
|
+
};
|
|
69149
|
+
export declare type JiraRestoreGlobalCustomFieldsPayload = Payload & {
|
|
69150
|
+
__typename?: 'JiraRestoreGlobalCustomFieldsPayload';
|
|
69151
|
+
errors?: Maybe<Array<MutationError>>;
|
|
69152
|
+
failedFieldIds?: Maybe<Array<Scalars['String']['output']>>;
|
|
69153
|
+
succeededNodeIds?: Maybe<Array<Scalars['ID']['output']>>;
|
|
69154
|
+
success: Scalars['Boolean']['output'];
|
|
69155
|
+
};
|
|
68434
69156
|
export declare type JiraRestoreJourneyConfigurationInput = {
|
|
68435
69157
|
etag?: InputMaybe<Scalars['String']['input']>;
|
|
68436
69158
|
id: Scalars['ID']['input'];
|
|
@@ -71267,6 +71989,16 @@ export declare enum JiraTransitionSortOption {
|
|
|
71267
71989
|
OpsBar = "OPS_BAR",
|
|
71268
71990
|
OpsBarThenStatusCategory = "OPS_BAR_THEN_STATUS_CATEGORY"
|
|
71269
71991
|
}
|
|
71992
|
+
export declare type JiraTrashGlobalCustomFieldsInput = {
|
|
71993
|
+
fieldIds: Array<Scalars['String']['input']>;
|
|
71994
|
+
};
|
|
71995
|
+
export declare type JiraTrashGlobalCustomFieldsPayload = Payload & {
|
|
71996
|
+
__typename?: 'JiraTrashGlobalCustomFieldsPayload';
|
|
71997
|
+
errors?: Maybe<Array<MutationError>>;
|
|
71998
|
+
failedFieldIds?: Maybe<Array<Scalars['String']['output']>>;
|
|
71999
|
+
succeededNodeIds?: Maybe<Array<Scalars['ID']['output']>>;
|
|
72000
|
+
success: Scalars['Boolean']['output'];
|
|
72001
|
+
};
|
|
71270
72002
|
export declare type JiraUiExposedError = {
|
|
71271
72003
|
__typename?: 'JiraUIExposedError';
|
|
71272
72004
|
message?: Maybe<Scalars['String']['output']>;
|
|
@@ -74565,6 +75297,11 @@ export declare type KnowledgeDiscoveryPageInfo = {
|
|
|
74565
75297
|
hasPreviousPage: Scalars['Boolean']['output'];
|
|
74566
75298
|
startCursor?: Maybe<Scalars['String']['output']>;
|
|
74567
75299
|
};
|
|
75300
|
+
export declare type KnowledgeDiscoveryPopularSearchQuery = {
|
|
75301
|
+
__typename?: 'KnowledgeDiscoveryPopularSearchQuery';
|
|
75302
|
+
isPopular: Scalars['Boolean']['output'];
|
|
75303
|
+
};
|
|
75304
|
+
export declare type KnowledgeDiscoveryPopularSearchQueryResult = KnowledgeDiscoveryPopularSearchQuery | QueryError;
|
|
74568
75305
|
export declare type KnowledgeDiscoveryQueryApi = {
|
|
74569
75306
|
__typename?: 'KnowledgeDiscoveryQueryApi';
|
|
74570
75307
|
adminhubBookmark?: Maybe<KnowledgeDiscoveryAdminhubBookmarkResult>;
|
|
@@ -74576,6 +75313,7 @@ export declare type KnowledgeDiscoveryQueryApi = {
|
|
|
74576
75313
|
definitionHistoryV2?: Maybe<KnowledgeDiscoveryDefinitionHistoryResult>;
|
|
74577
75314
|
definitionV2?: Maybe<KnowledgeDiscoveryDefinitionResult>;
|
|
74578
75315
|
keyPhrases?: Maybe<KnowledgeDiscoveryKeyPhrasesResult>;
|
|
75316
|
+
popularSearchQuery?: Maybe<KnowledgeDiscoveryPopularSearchQueryResult>;
|
|
74579
75317
|
relatedEntities?: Maybe<KnowledgeDiscoveryRelatedEntitiesResult>;
|
|
74580
75318
|
searchRelatedEntities?: Maybe<KnowledgeDiscoverySearchRelatedEntitiesResult>;
|
|
74581
75319
|
searchTeam?: Maybe<KnowledgeDiscoveryTeamSearchResult>;
|
|
@@ -74641,6 +75379,10 @@ export declare type KnowledgeDiscoveryQueryApiKeyPhrasesArgs = {
|
|
|
74641
75379
|
limited?: InputMaybe<Scalars['Boolean']['input']>;
|
|
74642
75380
|
workspaceId?: InputMaybe<Scalars['String']['input']>;
|
|
74643
75381
|
};
|
|
75382
|
+
export declare type KnowledgeDiscoveryQueryApiPopularSearchQueryArgs = {
|
|
75383
|
+
cloudId: Scalars['String']['input'];
|
|
75384
|
+
searchQuery: Scalars['String']['input'];
|
|
75385
|
+
};
|
|
74644
75386
|
export declare type KnowledgeDiscoveryQueryApiRelatedEntitiesArgs = {
|
|
74645
75387
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
74646
75388
|
cloudId?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -75785,6 +76527,8 @@ export declare type MarketplaceConsoleAppSoftwareShort = {
|
|
|
75785
76527
|
appSoftwareId: Scalars['ID']['output'];
|
|
75786
76528
|
editionsEnabled?: Maybe<Scalars['Boolean']['output']>;
|
|
75787
76529
|
hasConnectVersion?: Maybe<Scalars['Boolean']['output']>;
|
|
76530
|
+
hasCoupledVersion?: Maybe<Scalars['Boolean']['output']>;
|
|
76531
|
+
hasDecoupledVersion?: Maybe<Scalars['Boolean']['output']>;
|
|
75788
76532
|
hasPublicVersion?: Maybe<Scalars['Boolean']['output']>;
|
|
75789
76533
|
hosting: MarketplaceConsoleHosting;
|
|
75790
76534
|
isLatestActiveVersionPaidViaAtlassian?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -76060,6 +76804,7 @@ export declare enum MarketplaceConsoleDevSpaceTier {
|
|
|
76060
76804
|
}
|
|
76061
76805
|
export declare type MarketplaceConsoleEditAppVersionRequest = {
|
|
76062
76806
|
appKey: Scalars['ID']['input'];
|
|
76807
|
+
bonTermsSupported?: InputMaybe<Scalars['Boolean']['input']>;
|
|
76063
76808
|
buildNumber: Scalars['ID']['input'];
|
|
76064
76809
|
compatibilities?: InputMaybe<Array<MarketplaceConsoleAppSoftwareVersionCompatibilityInput>>;
|
|
76065
76810
|
deploymentInstructions?: InputMaybe<Array<MarketplaceConsoleDeploymentInstructionInput>>;
|
|
@@ -76072,6 +76817,7 @@ export declare type MarketplaceConsoleEditAppVersionRequest = {
|
|
|
76072
76817
|
learnMoreUrl?: InputMaybe<Scalars['String']['input']>;
|
|
76073
76818
|
licenseType?: InputMaybe<MarketplaceConsoleAppSoftwareVersionLicenseTypeId>;
|
|
76074
76819
|
moreDetails?: InputMaybe<Scalars['String']['input']>;
|
|
76820
|
+
partnerSpecificTerms?: InputMaybe<Scalars['String']['input']>;
|
|
76075
76821
|
purchaseUrl?: InputMaybe<Scalars['String']['input']>;
|
|
76076
76822
|
releaseNotes?: InputMaybe<Scalars['String']['input']>;
|
|
76077
76823
|
releaseSummary?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -76182,6 +76928,7 @@ export declare type MarketplaceConsoleFeatureInput = {
|
|
|
76182
76928
|
};
|
|
76183
76929
|
export declare type MarketplaceConsoleForgeFrameworkAttributes = {
|
|
76184
76930
|
__typename?: 'MarketplaceConsoleForgeFrameworkAttributes';
|
|
76931
|
+
appAccess: Array<Scalars['String']['output']>;
|
|
76185
76932
|
appId: Scalars['ID']['output'];
|
|
76186
76933
|
envId: Scalars['ID']['output'];
|
|
76187
76934
|
scopes: Array<Scalars['String']['output']>;
|
|
@@ -76515,6 +77262,7 @@ export declare type MarketplaceConsolePartnerContactPermissions = {
|
|
|
76515
77262
|
canViewPartnerPaymentDetails: Scalars['Boolean']['output'];
|
|
76516
77263
|
canViewSalesReport: Scalars['Boolean']['output'];
|
|
76517
77264
|
canViewUsageReports: Scalars['Boolean']['output'];
|
|
77265
|
+
isMarketplaceReader: Scalars['Boolean']['output'];
|
|
76518
77266
|
isPartnerAdmin: Scalars['Boolean']['output'];
|
|
76519
77267
|
isSiteAdmin: Scalars['Boolean']['output'];
|
|
76520
77268
|
partnerId: Scalars['ID']['output'];
|
|
@@ -78051,10 +78799,12 @@ export declare type MercuryChangeProposal = Node & {
|
|
|
78051
78799
|
createdDate: Scalars['String']['output'];
|
|
78052
78800
|
description?: Maybe<Scalars['String']['output']>;
|
|
78053
78801
|
focusArea?: Maybe<MercuryFocusArea>;
|
|
78802
|
+
funding?: Maybe<MercuryChangeProposalFunding>;
|
|
78054
78803
|
id: Scalars['ID']['output'];
|
|
78055
78804
|
impact?: Maybe<MercuryChangeProposalImpact>;
|
|
78056
78805
|
name: Scalars['String']['output'];
|
|
78057
78806
|
owner?: Maybe<User>;
|
|
78807
|
+
positionDetails?: Maybe<MercuryChangeProposalPositionDetails>;
|
|
78058
78808
|
status?: Maybe<MercuryChangeProposalStatus>;
|
|
78059
78809
|
statusTransitions?: Maybe<MercuryChangeProposalStatusTransitions>;
|
|
78060
78810
|
strategicEvent?: Maybe<MercuryStrategicEvent>;
|
|
@@ -78100,17 +78850,23 @@ export declare type MercuryChangeProposalEdge = {
|
|
|
78100
78850
|
};
|
|
78101
78851
|
export declare type MercuryChangeProposalFundSummary = {
|
|
78102
78852
|
__typename?: 'MercuryChangeProposalFundSummary';
|
|
78103
|
-
changeProposalId: Scalars['ID']['output'];
|
|
78104
78853
|
laborAmount?: Maybe<Scalars['BigDecimal']['output']>;
|
|
78105
78854
|
nonLaborAmount?: Maybe<Scalars['BigDecimal']['output']>;
|
|
78106
78855
|
};
|
|
78856
|
+
export declare type MercuryChangeProposalFunding = {
|
|
78857
|
+
__typename?: 'MercuryChangeProposalFunding';
|
|
78858
|
+
fundsRequested?: Maybe<Scalars['BigDecimal']['output']>;
|
|
78859
|
+
};
|
|
78107
78860
|
export declare type MercuryChangeProposalImpact = {
|
|
78108
78861
|
__typename?: 'MercuryChangeProposalImpact';
|
|
78109
78862
|
value: Scalars['Int']['output'];
|
|
78110
78863
|
};
|
|
78864
|
+
export declare type MercuryChangeProposalPositionDetails = {
|
|
78865
|
+
__typename?: 'MercuryChangeProposalPositionDetails';
|
|
78866
|
+
positionsRequested?: Maybe<Scalars['Int']['output']>;
|
|
78867
|
+
};
|
|
78111
78868
|
export declare type MercuryChangeProposalPositionSummary = {
|
|
78112
78869
|
__typename?: 'MercuryChangeProposalPositionSummary';
|
|
78113
|
-
changeProposalId: Scalars['ID']['output'];
|
|
78114
78870
|
movedCount?: Maybe<Scalars['Int']['output']>;
|
|
78115
78871
|
newCount?: Maybe<Scalars['Int']['output']>;
|
|
78116
78872
|
};
|
|
@@ -78259,6 +79015,7 @@ export declare type MercuryCreateFocusAreaChange = MercuryChangeInterface & Node
|
|
|
78259
79015
|
focusAreaOwner?: Maybe<User>;
|
|
78260
79016
|
focusAreaType?: Maybe<Scalars['ID']['output']>;
|
|
78261
79017
|
id: Scalars['ID']['output'];
|
|
79018
|
+
sourceFocusArea?: Maybe<MercuryFocusArea>;
|
|
78262
79019
|
updatedBy?: Maybe<User>;
|
|
78263
79020
|
updatedDate: Scalars['DateTime']['output'];
|
|
78264
79021
|
};
|
|
@@ -79252,6 +80009,7 @@ export declare type MercuryProposeChangesInput = {
|
|
|
79252
80009
|
changeParentFocusAreas?: InputMaybe<Array<MercuryChangeParentFocusAreaChangeInput>>;
|
|
79253
80010
|
changeProposalId: Scalars['ID']['input'];
|
|
79254
80011
|
createFocusAreas?: InputMaybe<Array<MercuryCreateFocusAreaChangeInput>>;
|
|
80012
|
+
implementFocusAreaChanges?: InputMaybe<Scalars['Boolean']['input']>;
|
|
79255
80013
|
moveFunds?: InputMaybe<Array<MercuryMoveFundsChangeInput>>;
|
|
79256
80014
|
movePositions?: InputMaybe<Array<MercuryMovePositionsChangeInput>>;
|
|
79257
80015
|
positionAllocations?: InputMaybe<Array<MercuryPositionAllocationChangeInput>>;
|
|
@@ -79415,6 +80173,7 @@ export declare type MercuryProviderWorkSearchEdge = {
|
|
|
79415
80173
|
node?: Maybe<MercuryProviderWorkSearchItem>;
|
|
79416
80174
|
};
|
|
79417
80175
|
export declare type MercuryProviderWorkSearchFilters = {
|
|
80176
|
+
jql?: InputMaybe<Scalars['String']['input']>;
|
|
79418
80177
|
project?: InputMaybe<MercuryProviderWorkSearchProjectFilters>;
|
|
79419
80178
|
};
|
|
79420
80179
|
export declare type MercuryProviderWorkSearchItem = {
|
|
@@ -80516,6 +81275,7 @@ export declare type Mutation = {
|
|
|
80516
81275
|
agentStudio_updateAgentDetails?: Maybe<AgentStudioUpdateAgentDetailsPayload>;
|
|
80517
81276
|
agentStudio_updateAgentKnowledgeSources?: Maybe<AgentStudioUpdateAgentKnowledgeSourcesPayload>;
|
|
80518
81277
|
agentStudio_updateConversationStarters?: Maybe<AgentStudioUpdateConversationStartersPayload>;
|
|
81278
|
+
agentStudio_updateCustomAction?: Maybe<AgentStudioUpdateCustomActionPayload>;
|
|
80519
81279
|
appRecommendations?: Maybe<AppRecMutation>;
|
|
80520
81280
|
appStorage?: Maybe<AppStorageMutation>;
|
|
80521
81281
|
appStorageCustomEntity?: Maybe<AppStorageCustomEntityMutation>;
|
|
@@ -80771,6 +81531,7 @@ export declare type Mutation = {
|
|
|
80771
81531
|
createLivePage?: Maybe<Content>;
|
|
80772
81532
|
createMentionNotification?: Maybe<CreateMentionNotificationPayload>;
|
|
80773
81533
|
createMentionReminderNotification?: Maybe<CreateMentionReminderNotificationPayload>;
|
|
81534
|
+
createNote?: Maybe<CreateNotePayload>;
|
|
80774
81535
|
createOnboardingSpace?: Maybe<Scalars['String']['output']>;
|
|
80775
81536
|
createOrUpdateArchivePageNote?: Maybe<Scalars['String']['output']>;
|
|
80776
81537
|
createPersonalSpace?: Maybe<Space>;
|
|
@@ -80792,6 +81553,7 @@ export declare type Mutation = {
|
|
|
80792
81553
|
csmAi_deleteAction?: Maybe<CsmAiDeleteActionPayload>;
|
|
80793
81554
|
csmAi_updateAction?: Maybe<CsmAiUpdateActionPayload>;
|
|
80794
81555
|
csmAi_updateAgent?: Maybe<CsmAiUpdateAgentPayload>;
|
|
81556
|
+
csmAi_updateHandoffConfig?: Maybe<CsmAiUpdateHandoffConfigPayload>;
|
|
80795
81557
|
customerService?: Maybe<CustomerServiceMutationApi>;
|
|
80796
81558
|
customerSupport?: Maybe<SupportRequestCatalogMutationApi>;
|
|
80797
81559
|
deactivatePaywallContent?: Maybe<DeactivatePaywallContentPayload>;
|
|
@@ -80816,6 +81578,7 @@ export declare type Mutation = {
|
|
|
80816
81578
|
deleteDevOpsServiceRelationship?: Maybe<DeleteDevOpsServiceRelationshipPayload>;
|
|
80817
81579
|
deleteInlineComment?: Maybe<Scalars['Boolean']['output']>;
|
|
80818
81580
|
deleteLabel?: Maybe<DeleteLabelPayload>;
|
|
81581
|
+
deleteNote?: Maybe<DeleteNotePayload>;
|
|
80819
81582
|
deletePages?: Maybe<DeletePagesPayload>;
|
|
80820
81583
|
deletePolarisIdeaTemplate?: Maybe<DeletePolarisIdeaTemplatePayload>;
|
|
80821
81584
|
deletePolarisInsight?: Maybe<DeletePolarisInsightPayload>;
|
|
@@ -80831,7 +81594,9 @@ export declare type Mutation = {
|
|
|
80831
81594
|
deleteWebTriggerUrl?: Maybe<DeleteWebTriggerUrlResponse>;
|
|
80832
81595
|
devAi?: Maybe<DevAiMutations>;
|
|
80833
81596
|
devOps?: Maybe<DevOpsMutation>;
|
|
81597
|
+
devai_completeFlowSession?: Maybe<DevAiFlowSessionCompletePayload>;
|
|
80834
81598
|
devai_continueJobWithPrompt?: Maybe<DevAiAutodevContinueJobWithPromptPayload>;
|
|
81599
|
+
devai_createFlow?: Maybe<DevAiFlowSessionCreatePayload>;
|
|
80835
81600
|
devai_createTechnicalPlannerJob?: Maybe<DevAiCreateTechnicalPlannerJobPayload>;
|
|
80836
81601
|
devai_flowCreate?: Maybe<DevAiFlowSession>;
|
|
80837
81602
|
devai_flowSessionComplete?: Maybe<DevAiFlowSession>;
|
|
@@ -80882,6 +81647,7 @@ export declare type Mutation = {
|
|
|
80882
81647
|
jira_publishIssueSearchConfig?: Maybe<JiraPublishIssueSearchConfigPayload>;
|
|
80883
81648
|
jira_reorderBoardViewColumn?: Maybe<JiraReorderBoardViewColumnPayload>;
|
|
80884
81649
|
jira_reorderProjectsSidebarMenuItem?: Maybe<JiraProjectsSidebarMenu>;
|
|
81650
|
+
jira_restoreGlobalCustomFields?: Maybe<JiraRestoreGlobalCustomFieldsPayload>;
|
|
80885
81651
|
jira_setBoardIssueCardCover?: Maybe<JiraSetBoardIssueCardCoverPayload>;
|
|
80886
81652
|
jira_setBoardViewCardFieldSelected?: Maybe<JiraSetBoardViewCardFieldSelectedPayload>;
|
|
80887
81653
|
jira_setBoardViewCardOptionState?: Maybe<JiraSetBoardViewCardOptionStatePayload>;
|
|
@@ -80894,6 +81660,7 @@ export declare type Mutation = {
|
|
|
80894
81660
|
jira_setIssueSearchHideDoneItems?: Maybe<JiraSetIssueSearchHideDoneItemsPayload>;
|
|
80895
81661
|
jira_setViewFilter?: Maybe<JiraSetViewFilterPayload>;
|
|
80896
81662
|
jira_setViewGroupBy?: Maybe<JiraSetViewGroupByPayload>;
|
|
81663
|
+
jira_trashGlobalCustomFields?: Maybe<JiraTrashGlobalCustomFieldsPayload>;
|
|
80897
81664
|
jira_updateFieldToFieldConfigSchemeAssociations?: Maybe<JiraFieldToFieldConfigSchemeAssociationsPayload>;
|
|
80898
81665
|
jira_updateProjectBackground?: Maybe<JiraProjectUpdateBackgroundMutationPayload>;
|
|
80899
81666
|
jira_updateProjectsSidebarMenu?: Maybe<JiraProjectsSidebarMenu>;
|
|
@@ -81007,6 +81774,21 @@ export declare type Mutation = {
|
|
|
81007
81774
|
shareResource?: Maybe<ShareResourcePayload>;
|
|
81008
81775
|
shepherd?: Maybe<ShepherdMutation>;
|
|
81009
81776
|
softDeleteSpace?: Maybe<SoftDeleteSpacePayload>;
|
|
81777
|
+
spf_attachRelatedContent?: Maybe<SpfAttachRelatedContentPayload>;
|
|
81778
|
+
spf_createComment?: Maybe<SpfCreateCommentPayload>;
|
|
81779
|
+
spf_createDependency?: Maybe<SpfCreateDependencyPayload>;
|
|
81780
|
+
spf_deleteDependency?: Maybe<SpfDeleteDependencyPayload>;
|
|
81781
|
+
spf_updateComment?: Maybe<SpfUpdateCommentPayload>;
|
|
81782
|
+
spf_updateDependencyDescription?: Maybe<SpfUpdateDependencyPayload>;
|
|
81783
|
+
spf_updateDependencyImpactedWork?: Maybe<SpfUpdateDependencyPayload>;
|
|
81784
|
+
spf_updateDependencyJustification?: Maybe<SpfUpdateDependencyPayload>;
|
|
81785
|
+
spf_updateDependencyName?: Maybe<SpfUpdateDependencyPayload>;
|
|
81786
|
+
spf_updateDependencyOwner?: Maybe<SpfUpdateDependencyPayload>;
|
|
81787
|
+
spf_updateDependencyPriority?: Maybe<SpfUpdateDependencyPayload>;
|
|
81788
|
+
spf_updateDependencyReceivingTeam?: Maybe<SpfUpdateDependencyPayload>;
|
|
81789
|
+
spf_updateDependencyRequestingTeam?: Maybe<SpfUpdateDependencyPayload>;
|
|
81790
|
+
spf_updateDependencyStatus?: Maybe<SpfUpdateDependencyPayload>;
|
|
81791
|
+
spf_updateDependencyTargetDate?: Maybe<SpfUpdateDependencyPayload>;
|
|
81010
81792
|
splitIssue?: Maybe<SplitIssueOutput>;
|
|
81011
81793
|
startSprint?: Maybe<SprintResponse>;
|
|
81012
81794
|
subscribeToApp?: Maybe<AppSubscribePayload>;
|
|
@@ -81053,6 +81835,7 @@ export declare type Mutation = {
|
|
|
81053
81835
|
updateHomeUserSettings?: Maybe<HomeUserSettings>;
|
|
81054
81836
|
updateLocalStorage?: Maybe<LocalStorage>;
|
|
81055
81837
|
updateNestedPageOwners?: Maybe<UpdateNestedPageOwnersPayload>;
|
|
81838
|
+
updateNote?: Maybe<UpdateNotePayload>;
|
|
81056
81839
|
updateOwner?: Maybe<UpdateOwnerPayload>;
|
|
81057
81840
|
updatePage?: Maybe<UpdatePagePayload>;
|
|
81058
81841
|
updatePageOwners?: Maybe<UpdatePageOwnersPayload>;
|
|
@@ -81144,6 +81927,10 @@ export declare type MutationAgentStudio_UpdateConversationStartersArgs = {
|
|
|
81144
81927
|
id: Scalars['ID']['input'];
|
|
81145
81928
|
input: AgentStudioUpdateConversationStartersInput;
|
|
81146
81929
|
};
|
|
81930
|
+
export declare type MutationAgentStudio_UpdateCustomActionArgs = {
|
|
81931
|
+
id: Scalars['ID']['input'];
|
|
81932
|
+
input: AgentStudioUpdateCustomActionInput;
|
|
81933
|
+
};
|
|
81147
81934
|
export declare type MutationApplyPolarisProjectTemplateArgs = {
|
|
81148
81935
|
input: ApplyPolarisProjectTemplateInput;
|
|
81149
81936
|
};
|
|
@@ -81953,6 +82740,9 @@ export declare type MutationCreateMentionNotificationArgs = {
|
|
|
81953
82740
|
export declare type MutationCreateMentionReminderNotificationArgs = {
|
|
81954
82741
|
input: CreateMentionReminderNotificationInput;
|
|
81955
82742
|
};
|
|
82743
|
+
export declare type MutationCreateNoteArgs = {
|
|
82744
|
+
input: CreateNoteInput;
|
|
82745
|
+
};
|
|
81956
82746
|
export declare type MutationCreateOnboardingSpaceArgs = {
|
|
81957
82747
|
spaceType: Scalars['String']['input'];
|
|
81958
82748
|
};
|
|
@@ -82045,6 +82835,12 @@ export declare type MutationCsmAi_UpdateAgentArgs = {
|
|
|
82045
82835
|
helpCenterAri: Scalars['ID']['input'];
|
|
82046
82836
|
input?: InputMaybe<CsmAiUpdateAgentInput>;
|
|
82047
82837
|
};
|
|
82838
|
+
export declare type MutationCsmAi_UpdateHandoffConfigArgs = {
|
|
82839
|
+
configId: Scalars['ID']['input'];
|
|
82840
|
+
csmAiHubId: Scalars['ID']['input'];
|
|
82841
|
+
helpCenterAri: Scalars['ID']['input'];
|
|
82842
|
+
input: CsmAiUpdateHandoffConfigInput;
|
|
82843
|
+
};
|
|
82048
82844
|
export declare type MutationCustomerServiceArgs = {
|
|
82049
82845
|
cloudId: Scalars['ID']['input'];
|
|
82050
82846
|
};
|
|
@@ -82118,6 +82914,9 @@ export declare type MutationDeleteLabelArgs = {
|
|
|
82118
82914
|
cloudId?: InputMaybe<Scalars['ID']['input']>;
|
|
82119
82915
|
input: DeleteLabelInput;
|
|
82120
82916
|
};
|
|
82917
|
+
export declare type MutationDeleteNoteArgs = {
|
|
82918
|
+
input: DeleteNoteInput;
|
|
82919
|
+
};
|
|
82121
82920
|
export declare type MutationDeletePagesArgs = {
|
|
82122
82921
|
input: Array<InputMaybe<DeletePagesInput>>;
|
|
82123
82922
|
};
|
|
@@ -82162,12 +82961,24 @@ export declare type MutationDeleteTemplateArgs = {
|
|
|
82162
82961
|
export declare type MutationDeleteWebTriggerUrlArgs = {
|
|
82163
82962
|
id: Scalars['ID']['input'];
|
|
82164
82963
|
};
|
|
82964
|
+
export declare type MutationDevai_CompleteFlowSessionArgs = {
|
|
82965
|
+
id: Scalars['ID']['input'];
|
|
82966
|
+
};
|
|
82165
82967
|
export declare type MutationDevai_ContinueJobWithPromptArgs = {
|
|
82166
82968
|
cloudId: Scalars['ID']['input'];
|
|
82167
82969
|
jobId: Scalars['ID']['input'];
|
|
82168
82970
|
prompt?: InputMaybe<Scalars['String']['input']>;
|
|
82169
82971
|
repoUrl: Scalars['String']['input'];
|
|
82170
82972
|
};
|
|
82973
|
+
export declare type MutationDevai_CreateFlowArgs = {
|
|
82974
|
+
additionalInfoJSON?: InputMaybe<Scalars['String']['input']>;
|
|
82975
|
+
cloudId: Scalars['String']['input'];
|
|
82976
|
+
createdBy: Scalars['String']['input'];
|
|
82977
|
+
issueARI?: InputMaybe<Scalars['ID']['input']>;
|
|
82978
|
+
jiraHost: Scalars['String']['input'];
|
|
82979
|
+
jiraIssueJSON?: InputMaybe<Scalars['String']['input']>;
|
|
82980
|
+
repoUrl: Scalars['URL']['input'];
|
|
82981
|
+
};
|
|
82171
82982
|
export declare type MutationDevai_CreateTechnicalPlannerJobArgs = {
|
|
82172
82983
|
description?: InputMaybe<Scalars['String']['input']>;
|
|
82173
82984
|
issueAri: Scalars['ID']['input'];
|
|
@@ -82302,6 +83113,10 @@ export declare type MutationJira_ReorderBoardViewColumnArgs = {
|
|
|
82302
83113
|
export declare type MutationJira_ReorderProjectsSidebarMenuItemArgs = {
|
|
82303
83114
|
input: JiraReorderSidebarMenuItemInput;
|
|
82304
83115
|
};
|
|
83116
|
+
export declare type MutationJira_RestoreGlobalCustomFieldsArgs = {
|
|
83117
|
+
cloudId: Scalars['ID']['input'];
|
|
83118
|
+
input: JiraRestoreGlobalCustomFieldsInput;
|
|
83119
|
+
};
|
|
82305
83120
|
export declare type MutationJira_SetBoardIssueCardCoverArgs = {
|
|
82306
83121
|
input: JiraSetBoardIssueCardCoverInput;
|
|
82307
83122
|
};
|
|
@@ -82338,6 +83153,10 @@ export declare type MutationJira_SetViewFilterArgs = {
|
|
|
82338
83153
|
export declare type MutationJira_SetViewGroupByArgs = {
|
|
82339
83154
|
input: JiraSetViewGroupByInput;
|
|
82340
83155
|
};
|
|
83156
|
+
export declare type MutationJira_TrashGlobalCustomFieldsArgs = {
|
|
83157
|
+
cloudId: Scalars['ID']['input'];
|
|
83158
|
+
input: JiraTrashGlobalCustomFieldsInput;
|
|
83159
|
+
};
|
|
82341
83160
|
export declare type MutationJira_UpdateFieldToFieldConfigSchemeAssociationsArgs = {
|
|
82342
83161
|
cloudId: Scalars['ID']['input'];
|
|
82343
83162
|
input: JiraFieldToFieldConfigSchemeAssociationsInput;
|
|
@@ -82666,6 +83485,51 @@ export declare type MutationShareResourceArgs = {
|
|
|
82666
83485
|
export declare type MutationSoftDeleteSpaceArgs = {
|
|
82667
83486
|
spaceKey: Scalars['String']['input'];
|
|
82668
83487
|
};
|
|
83488
|
+
export declare type MutationSpf_AttachRelatedContentArgs = {
|
|
83489
|
+
input: SpfAttachRelatedContentInput;
|
|
83490
|
+
};
|
|
83491
|
+
export declare type MutationSpf_CreateCommentArgs = {
|
|
83492
|
+
input: SpfCreateCommentInput;
|
|
83493
|
+
};
|
|
83494
|
+
export declare type MutationSpf_CreateDependencyArgs = {
|
|
83495
|
+
input: SpfCreateDependencyInput;
|
|
83496
|
+
};
|
|
83497
|
+
export declare type MutationSpf_DeleteDependencyArgs = {
|
|
83498
|
+
input: SpfDeleteDependencyInput;
|
|
83499
|
+
};
|
|
83500
|
+
export declare type MutationSpf_UpdateCommentArgs = {
|
|
83501
|
+
input: SpfUpdateCommentDataInput;
|
|
83502
|
+
};
|
|
83503
|
+
export declare type MutationSpf_UpdateDependencyDescriptionArgs = {
|
|
83504
|
+
input: SpfUpdateDependencyDescriptionInput;
|
|
83505
|
+
};
|
|
83506
|
+
export declare type MutationSpf_UpdateDependencyImpactedWorkArgs = {
|
|
83507
|
+
input: SpfUpdateDependencyImpactedWorkInput;
|
|
83508
|
+
};
|
|
83509
|
+
export declare type MutationSpf_UpdateDependencyJustificationArgs = {
|
|
83510
|
+
input: SpfUpdateDependencyJustificationInput;
|
|
83511
|
+
};
|
|
83512
|
+
export declare type MutationSpf_UpdateDependencyNameArgs = {
|
|
83513
|
+
input: SpfUpdateDependencyNameInput;
|
|
83514
|
+
};
|
|
83515
|
+
export declare type MutationSpf_UpdateDependencyOwnerArgs = {
|
|
83516
|
+
input: SpfUpdateDependencyOwnerInput;
|
|
83517
|
+
};
|
|
83518
|
+
export declare type MutationSpf_UpdateDependencyPriorityArgs = {
|
|
83519
|
+
input: SpfUpdateDependencyPriorityInput;
|
|
83520
|
+
};
|
|
83521
|
+
export declare type MutationSpf_UpdateDependencyReceivingTeamArgs = {
|
|
83522
|
+
input: SpfUpdateDependencyReceivingTeamInput;
|
|
83523
|
+
};
|
|
83524
|
+
export declare type MutationSpf_UpdateDependencyRequestingTeamArgs = {
|
|
83525
|
+
input: SpfUpdateDependencyRequestingTeamInput;
|
|
83526
|
+
};
|
|
83527
|
+
export declare type MutationSpf_UpdateDependencyStatusArgs = {
|
|
83528
|
+
input: SpfUpdateDependencyStatusInput;
|
|
83529
|
+
};
|
|
83530
|
+
export declare type MutationSpf_UpdateDependencyTargetDateArgs = {
|
|
83531
|
+
input: SpfUpdateDependencyTargetDateInput;
|
|
83532
|
+
};
|
|
82669
83533
|
export declare type MutationSplitIssueArgs = {
|
|
82670
83534
|
input?: InputMaybe<SplitIssueInput>;
|
|
82671
83535
|
};
|
|
@@ -82796,6 +83660,9 @@ export declare type MutationUpdateLocalStorageArgs = {
|
|
|
82796
83660
|
export declare type MutationUpdateNestedPageOwnersArgs = {
|
|
82797
83661
|
input: UpdatedNestedPageOwnersInput;
|
|
82798
83662
|
};
|
|
83663
|
+
export declare type MutationUpdateNoteArgs = {
|
|
83664
|
+
input: UpdateNoteInput;
|
|
83665
|
+
};
|
|
82799
83666
|
export declare type MutationUpdateOwnerArgs = {
|
|
82800
83667
|
input: UpdateOwnerInput;
|
|
82801
83668
|
};
|
|
@@ -83021,10 +83888,14 @@ export declare type MyVisitedSpacesInfo = {
|
|
|
83021
83888
|
export declare type MyVisitedSpacesItems = {
|
|
83022
83889
|
__typename?: 'MyVisitedSpacesItems';
|
|
83023
83890
|
spaces?: Maybe<Array<Maybe<Space>>>;
|
|
83891
|
+
spacesWithCloudId?: Maybe<Array<Maybe<Space>>>;
|
|
83024
83892
|
};
|
|
83025
83893
|
export declare type MyVisitedSpacesItemsSpacesArgs = {
|
|
83026
83894
|
cloudId?: InputMaybe<Scalars['ID']['input']>;
|
|
83027
83895
|
};
|
|
83896
|
+
export declare type MyVisitedSpacesItemsSpacesWithCloudIdArgs = {
|
|
83897
|
+
cloudId?: InputMaybe<Scalars['ID']['input']>;
|
|
83898
|
+
};
|
|
83028
83899
|
export declare type NadelBatchObjectIdentifiedBy = {
|
|
83029
83900
|
resultId: Scalars['String']['input'];
|
|
83030
83901
|
sourceId: Scalars['String']['input'];
|
|
@@ -83177,6 +84048,60 @@ export declare type NlpSource = {
|
|
|
83177
84048
|
export declare type Node = {
|
|
83178
84049
|
id: Scalars['ID']['output'];
|
|
83179
84050
|
};
|
|
84051
|
+
export declare type NoteConnection = {
|
|
84052
|
+
__typename?: 'NoteConnection';
|
|
84053
|
+
edges?: Maybe<Array<Maybe<NoteEdge>>>;
|
|
84054
|
+
nodes?: Maybe<Array<Maybe<NoteResponse>>>;
|
|
84055
|
+
noteInfo: NoteInfo;
|
|
84056
|
+
};
|
|
84057
|
+
export declare type NoteEdge = {
|
|
84058
|
+
__typename?: 'NoteEdge';
|
|
84059
|
+
cursor: Scalars['String']['output'];
|
|
84060
|
+
node: NoteResponse;
|
|
84061
|
+
};
|
|
84062
|
+
export declare type NoteInfo = {
|
|
84063
|
+
__typename?: 'NoteInfo';
|
|
84064
|
+
endCursor?: Maybe<Scalars['String']['output']>;
|
|
84065
|
+
hasNextNode: Scalars['Boolean']['output'];
|
|
84066
|
+
hasPreviousNode: Scalars['Boolean']['output'];
|
|
84067
|
+
startCursor?: Maybe<Scalars['String']['output']>;
|
|
84068
|
+
};
|
|
84069
|
+
export declare type NoteMutationError = {
|
|
84070
|
+
__typename?: 'NoteMutationError';
|
|
84071
|
+
extensions?: Maybe<Array<Maybe<NoteMutationErrorExtension>>>;
|
|
84072
|
+
message?: Maybe<Scalars['String']['output']>;
|
|
84073
|
+
};
|
|
84074
|
+
export declare type NoteMutationErrorExtension = {
|
|
84075
|
+
__typename?: 'NoteMutationErrorExtension';
|
|
84076
|
+
errorType?: Maybe<Scalars['String']['output']>;
|
|
84077
|
+
statusCode?: Maybe<Scalars['Int']['output']>;
|
|
84078
|
+
};
|
|
84079
|
+
export declare type NoteResponse = {
|
|
84080
|
+
__typename?: 'NoteResponse';
|
|
84081
|
+
ari: Scalars['String']['output'];
|
|
84082
|
+
body?: Maybe<Scalars['String']['output']>;
|
|
84083
|
+
bodyExcerpt?: Maybe<Scalars['String']['output']>;
|
|
84084
|
+
collectionName: Scalars['String']['output'];
|
|
84085
|
+
createdAt?: Maybe<Scalars['DateTime']['output']>;
|
|
84086
|
+
extraProps?: Maybe<Array<Prop>>;
|
|
84087
|
+
isPinned: Scalars['Boolean']['output'];
|
|
84088
|
+
labels?: Maybe<Array<Scalars['String']['output']>>;
|
|
84089
|
+
productLink?: Maybe<Scalars['String']['output']>;
|
|
84090
|
+
thumbnailId?: Maybe<Scalars['String']['output']>;
|
|
84091
|
+
title?: Maybe<Scalars['String']['output']>;
|
|
84092
|
+
updatedAt?: Maybe<Scalars['DateTime']['output']>;
|
|
84093
|
+
};
|
|
84094
|
+
export declare type NotesByCreatorInput = {
|
|
84095
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
84096
|
+
before?: InputMaybe<Scalars['String']['input']>;
|
|
84097
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
84098
|
+
isAscending?: InputMaybe<Scalars['Boolean']['input']>;
|
|
84099
|
+
last?: InputMaybe<Scalars['Int']['input']>;
|
|
84100
|
+
orderBy?: InputMaybe<NotesByDateLastModifiedOrder>;
|
|
84101
|
+
};
|
|
84102
|
+
export declare enum NotesByDateLastModifiedOrder {
|
|
84103
|
+
DateLastModified = "DATE_LAST_MODIFIED"
|
|
84104
|
+
}
|
|
83180
84105
|
export declare enum NotificationAction {
|
|
83181
84106
|
DontNotify = "DONT_NOTIFY",
|
|
83182
84107
|
Notify = "NOTIFY"
|
|
@@ -83423,6 +84348,14 @@ export declare type OpsgenieTeamMemberEdge = {
|
|
|
83423
84348
|
cursor: Scalars['String']['output'];
|
|
83424
84349
|
node?: Maybe<OpsgenieTeamMember>;
|
|
83425
84350
|
};
|
|
84351
|
+
export declare type OrgPolicyPolicyDetails = Node & {
|
|
84352
|
+
__typename?: 'OrgPolicyPolicyDetails';
|
|
84353
|
+
id: Scalars['ID']['output'];
|
|
84354
|
+
metadata?: Maybe<Scalars['JSON']['output']>;
|
|
84355
|
+
name: Scalars['String']['output'];
|
|
84356
|
+
rule?: Maybe<Scalars['JSON']['output']>;
|
|
84357
|
+
status: Scalars['String']['output'];
|
|
84358
|
+
};
|
|
83426
84359
|
export declare type Organization = {
|
|
83427
84360
|
__typename?: 'Organization';
|
|
83428
84361
|
orgId?: Maybe<Scalars['String']['output']>;
|
|
@@ -85287,6 +86220,15 @@ export declare type ProjectAvatars = {
|
|
|
85287
86220
|
x32: Scalars['URL']['output'];
|
|
85288
86221
|
x48: Scalars['URL']['output'];
|
|
85289
86222
|
};
|
|
86223
|
+
export declare type Prop = {
|
|
86224
|
+
__typename?: 'Prop';
|
|
86225
|
+
key: Scalars['String']['output'];
|
|
86226
|
+
value: Scalars['String']['output'];
|
|
86227
|
+
};
|
|
86228
|
+
export declare type PropInput = {
|
|
86229
|
+
key: Scalars['String']['input'];
|
|
86230
|
+
value: Scalars['String']['input'];
|
|
86231
|
+
};
|
|
85290
86232
|
export declare type Properties = {
|
|
85291
86233
|
__typename?: 'Properties';
|
|
85292
86234
|
formStatus: FormStatus;
|
|
@@ -85591,10 +86533,12 @@ export declare type Query = {
|
|
|
85591
86533
|
agentAI_summarizeIssue?: Maybe<AgentAiIssueSummaryResult>;
|
|
85592
86534
|
agentStudio_agentById?: Maybe<AgentStudioAgentResult>;
|
|
85593
86535
|
agentStudio_customActionById?: Maybe<AgentStudioCustomActionResult>;
|
|
86536
|
+
agentStudio_customActionListByContainerId?: Maybe<AgentStudioCustomActionListResult>;
|
|
85594
86537
|
agentStudio_customActionsByIds?: Maybe<Array<Maybe<AgentStudioCustomAction>>>;
|
|
85595
86538
|
agentStudio_getAgents?: Maybe<AgentStudioAgentsConnection>;
|
|
85596
86539
|
agentStudio_suggestConversationStarters?: Maybe<AgentStudioSuggestConversationStartersResult>;
|
|
85597
86540
|
aiCoreApi_vsaQuestionsByProject?: Maybe<AiCoreApiVsaQuestionsResult>;
|
|
86541
|
+
aiCoreApi_vsaQuestionsByProjectAndType?: Maybe<AiCoreApiVsaQuestionsWithTypeResult>;
|
|
85598
86542
|
aiCoreApi_vsaReportingByProject?: Maybe<AiCoreApiVsaReportingResult>;
|
|
85599
86543
|
allIndividualSpaces?: Maybe<SpaceInfoConnection>;
|
|
85600
86544
|
allTemplates?: Maybe<PaginatedTemplateInfoList>;
|
|
@@ -85615,6 +86559,7 @@ export declare type Query = {
|
|
|
85615
86559
|
appLogLines?: Maybe<AppLogLineConnection>;
|
|
85616
86560
|
appLogs?: Maybe<AppLogConnection>;
|
|
85617
86561
|
appLogsWithMetaData?: Maybe<AppLogsWithMetaDataResponse>;
|
|
86562
|
+
appStorage_admin?: Maybe<AppStorageAdmin>;
|
|
85618
86563
|
appStorage_sqlDatabase?: Maybe<AppStorageSqlDatabasePayload>;
|
|
85619
86564
|
appStorage_sqlTableData?: Maybe<AppStorageSqlTableDataPayload>;
|
|
85620
86565
|
appStoredCustomEntities?: Maybe<AppStoredCustomEntityConnection>;
|
|
@@ -85882,6 +86827,7 @@ export declare type Query = {
|
|
|
85882
86827
|
confluence_template?: Maybe<ContentTemplate>;
|
|
85883
86828
|
confluence_tenantContext?: Maybe<ConfluenceTenantContext>;
|
|
85884
86829
|
confluence_userContentAccess?: Maybe<ConfluenceUserContentAccessResult>;
|
|
86830
|
+
confluence_usersHavePermission?: Maybe<ConfluenceUsersHavePermissionList>;
|
|
85885
86831
|
confluence_validateCalendarJql?: Maybe<ConfluenceCalendarJqlValidationResult>;
|
|
85886
86832
|
connectionManager_connectionsByJiraProject?: Maybe<ConnectionManagerConnectionsByJiraProjectResult>;
|
|
85887
86833
|
contactAdminPageConfig?: Maybe<ContactAdminPageConfig>;
|
|
@@ -86112,6 +87058,7 @@ export declare type Query = {
|
|
|
86112
87058
|
marketplacePricingPlan?: Maybe<MarketplacePricingPlan>;
|
|
86113
87059
|
marketplaceStore: MarketplaceStoreQueryApi;
|
|
86114
87060
|
me: AuthenticationContext;
|
|
87061
|
+
mediaConfiguration?: Maybe<MediaConfiguration>;
|
|
86115
87062
|
mercury?: Maybe<MercuryQueryApi>;
|
|
86116
87063
|
mercury_jiraAlignProvider?: Maybe<MercuryJiraAlignProviderQueryApi>;
|
|
86117
87064
|
mercury_providerOrchestration?: Maybe<MercuryProviderOrchestrationQueryApi>;
|
|
@@ -86124,12 +87071,15 @@ export declare type Query = {
|
|
|
86124
87071
|
myVisitedSpaces?: Maybe<MyVisitedSpaces>;
|
|
86125
87072
|
nlpSearch?: Maybe<NlpSearchResponse>;
|
|
86126
87073
|
node?: Maybe<Node>;
|
|
87074
|
+
notesByCreator?: Maybe<NoteConnection>;
|
|
86127
87075
|
notifications?: Maybe<InfluentsNotificationQuery>;
|
|
86128
87076
|
oauthClients?: Maybe<OAuthClientsQuery>;
|
|
86129
87077
|
onboardingState?: Maybe<Array<OnboardingState>>;
|
|
86130
87078
|
opsgenie?: Maybe<OpsgenieQuery>;
|
|
86131
87079
|
opsgenieTeamRelationshipForDevOpsService?: Maybe<DevOpsServiceAndOpsgenieTeamRelationship>;
|
|
86132
87080
|
orgDefaultClassificationLevelId?: Maybe<Scalars['ID']['output']>;
|
|
87081
|
+
orgPolicy_policiesDetails?: Maybe<Array<Maybe<OrgPolicyPolicyDetails>>>;
|
|
87082
|
+
orgPolicy_policyDetails?: Maybe<OrgPolicyPolicyDetails>;
|
|
86133
87083
|
organization?: Maybe<Organization>;
|
|
86134
87084
|
organizationContext?: Maybe<OrganizationContext>;
|
|
86135
87085
|
page?: Maybe<Page>;
|
|
@@ -86182,12 +87132,14 @@ export declare type Query = {
|
|
|
86182
87132
|
publicLinksByCriteria?: Maybe<PublicLinkConnection>;
|
|
86183
87133
|
publishConditions?: Maybe<Array<Maybe<PublishConditions>>>;
|
|
86184
87134
|
pushNotificationSettings?: Maybe<ConfluencePushNotificationSettings>;
|
|
87135
|
+
queuesprioritygroups_priorityGroups?: Maybe<QueuesPriorityGroupsResults>;
|
|
86185
87136
|
quickReload?: Maybe<QuickReload>;
|
|
86186
87137
|
radar_connectors?: Maybe<Array<RadarConnector>>;
|
|
86187
87138
|
radar_fieldValues?: Maybe<RadarFieldValuesConnection>;
|
|
86188
87139
|
radar_groupMetrics?: Maybe<RadarGroupMetricsConnection>;
|
|
86189
87140
|
radar_positionByAri?: Maybe<RadarPosition>;
|
|
86190
87141
|
radar_positionsByAris?: Maybe<Array<RadarPosition>>;
|
|
87142
|
+
radar_positionsByEntitySearch?: Maybe<RadarPositionsByEntityConnection>;
|
|
86191
87143
|
radar_positionsSearch?: Maybe<RadarPositionConnection>;
|
|
86192
87144
|
radar_workerByAri?: Maybe<RadarWorker>;
|
|
86193
87145
|
radar_workersByAris?: Maybe<Array<RadarWorker>>;
|
|
@@ -86323,6 +87275,10 @@ export declare type QueryAgentStudio_AgentByIdArgs = {
|
|
|
86323
87275
|
export declare type QueryAgentStudio_CustomActionByIdArgs = {
|
|
86324
87276
|
id: Scalars['ID']['input'];
|
|
86325
87277
|
};
|
|
87278
|
+
export declare type QueryAgentStudio_CustomActionListByContainerIdArgs = {
|
|
87279
|
+
cloudId: Scalars['String']['input'];
|
|
87280
|
+
containerId: Scalars['String']['input'];
|
|
87281
|
+
};
|
|
86326
87282
|
export declare type QueryAgentStudio_CustomActionsByIdsArgs = {
|
|
86327
87283
|
ids: Array<Scalars['ID']['input']>;
|
|
86328
87284
|
};
|
|
@@ -86339,6 +87295,11 @@ export declare type QueryAgentStudio_SuggestConversationStartersArgs = {
|
|
|
86339
87295
|
export declare type QueryAiCoreApi_VsaQuestionsByProjectArgs = {
|
|
86340
87296
|
projectAri: Scalars['ID']['input'];
|
|
86341
87297
|
};
|
|
87298
|
+
export declare type QueryAiCoreApi_VsaQuestionsByProjectAndTypeArgs = {
|
|
87299
|
+
limit?: InputMaybe<Scalars['Int']['input']>;
|
|
87300
|
+
projectAri: Scalars['ID']['input'];
|
|
87301
|
+
types?: InputMaybe<Array<InputMaybe<AiCoreApiQuestionType>>>;
|
|
87302
|
+
};
|
|
86342
87303
|
export declare type QueryAiCoreApi_VsaReportingByProjectArgs = {
|
|
86343
87304
|
projectAri: Scalars['ID']['input'];
|
|
86344
87305
|
};
|
|
@@ -86431,6 +87392,9 @@ export declare type QueryAppLogsWithMetaDataArgs = {
|
|
|
86431
87392
|
query?: InputMaybe<LogQueryInput>;
|
|
86432
87393
|
queryStartTime: Scalars['String']['input'];
|
|
86433
87394
|
};
|
|
87395
|
+
export declare type QueryAppStorage_AdminArgs = {
|
|
87396
|
+
appId: Scalars['ID']['input'];
|
|
87397
|
+
};
|
|
86434
87398
|
export declare type QueryAppStorage_SqlDatabaseArgs = {
|
|
86435
87399
|
input: AppStorageSqlDatabaseInput;
|
|
86436
87400
|
};
|
|
@@ -86554,7 +87518,7 @@ export declare type QueryChannelPlatform_SampleQueueByIdArgs = {
|
|
|
86554
87518
|
};
|
|
86555
87519
|
export declare type QueryChannelPlatform_SubmitRequestArgs = {
|
|
86556
87520
|
request?: InputMaybe<ChannelPlatformSubmitRequestInput>;
|
|
86557
|
-
requestType?: InputMaybe<
|
|
87521
|
+
requestType?: InputMaybe<ChannelPlatformChannelType>;
|
|
86558
87522
|
};
|
|
86559
87523
|
export declare type QueryClassificationLevelArgs = {
|
|
86560
87524
|
id: Scalars['String']['input'];
|
|
@@ -87597,6 +88561,13 @@ export declare type QueryConfluence_UserContentAccessArgs = {
|
|
|
87597
88561
|
cloudId: Scalars['ID']['input'];
|
|
87598
88562
|
contentId: Scalars['ID']['input'];
|
|
87599
88563
|
};
|
|
88564
|
+
export declare type QueryConfluence_UsersHavePermissionArgs = {
|
|
88565
|
+
cloudId: Scalars['ID']['input'];
|
|
88566
|
+
permission: Scalars['String']['input'];
|
|
88567
|
+
principalIds: Array<InputMaybe<Scalars['String']['input']>>;
|
|
88568
|
+
resourceId: Scalars['ID']['input'];
|
|
88569
|
+
resourceType: Scalars['String']['input'];
|
|
88570
|
+
};
|
|
87600
88571
|
export declare type QueryConfluence_ValidateCalendarJqlArgs = {
|
|
87601
88572
|
applicationId: Scalars['ID']['input'];
|
|
87602
88573
|
cloudId: Scalars['ID']['input'];
|
|
@@ -87819,6 +88790,9 @@ export declare type QueryCustomerStoryArgs = {
|
|
|
87819
88790
|
locale?: InputMaybe<Scalars['String']['input']>;
|
|
87820
88791
|
publishedOnly?: InputMaybe<Scalars['Boolean']['input']>;
|
|
87821
88792
|
};
|
|
88793
|
+
export declare type QueryDataSecurityPolicyArgs = {
|
|
88794
|
+
cloudId?: InputMaybe<Scalars['ID']['input']>;
|
|
88795
|
+
};
|
|
87822
88796
|
export declare type QueryDeactivatedOwnerPagesArgs = {
|
|
87823
88797
|
cursor?: InputMaybe<Scalars['String']['input']>;
|
|
87824
88798
|
limit?: InputMaybe<Scalars['Int']['input']>;
|
|
@@ -88471,12 +89445,21 @@ export declare type QueryNlpSearchArgs = {
|
|
|
88471
89445
|
export declare type QueryNodeArgs = {
|
|
88472
89446
|
id: Scalars['ID']['input'];
|
|
88473
89447
|
};
|
|
89448
|
+
export declare type QueryNotesByCreatorArgs = {
|
|
89449
|
+
input?: InputMaybe<NotesByCreatorInput>;
|
|
89450
|
+
};
|
|
88474
89451
|
export declare type QueryOnboardingStateArgs = {
|
|
88475
89452
|
key?: InputMaybe<Array<InputMaybe<Scalars['String']['input']>>>;
|
|
88476
89453
|
};
|
|
88477
89454
|
export declare type QueryOpsgenieTeamRelationshipForDevOpsServiceArgs = {
|
|
88478
89455
|
id: Scalars['ID']['input'];
|
|
88479
89456
|
};
|
|
89457
|
+
export declare type QueryOrgPolicy_PoliciesDetailsArgs = {
|
|
89458
|
+
ids: Array<InputMaybe<Scalars['ID']['input']>>;
|
|
89459
|
+
};
|
|
89460
|
+
export declare type QueryOrgPolicy_PolicyDetailsArgs = {
|
|
89461
|
+
id: Scalars['ID']['input'];
|
|
89462
|
+
};
|
|
88480
89463
|
export declare type QueryPageArgs = {
|
|
88481
89464
|
enablePaging?: InputMaybe<Scalars['Boolean']['input']>;
|
|
88482
89465
|
id: Scalars['ID']['input'];
|
|
@@ -88670,6 +89653,9 @@ export declare type QueryPublicLinksByCriteriaArgs = {
|
|
|
88670
89653
|
export declare type QueryPublishConditionsArgs = {
|
|
88671
89654
|
contentId: Scalars['ID']['input'];
|
|
88672
89655
|
};
|
|
89656
|
+
export declare type QueryQueuesprioritygroups_PriorityGroupsArgs = {
|
|
89657
|
+
projectId: Scalars['ID']['input'];
|
|
89658
|
+
};
|
|
88673
89659
|
export declare type QueryQuickReloadArgs = {
|
|
88674
89660
|
pageId: Scalars['Long']['input'];
|
|
88675
89661
|
since: Scalars['Long']['input'];
|
|
@@ -88701,6 +89687,15 @@ export declare type QueryRadar_PositionByAriArgs = {
|
|
|
88701
89687
|
export declare type QueryRadar_PositionsByArisArgs = {
|
|
88702
89688
|
ids: Array<Scalars['ID']['input']>;
|
|
88703
89689
|
};
|
|
89690
|
+
export declare type QueryRadar_PositionsByEntitySearchArgs = {
|
|
89691
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
89692
|
+
before?: InputMaybe<Scalars['String']['input']>;
|
|
89693
|
+
cloudId: Scalars['ID']['input'];
|
|
89694
|
+
entity: RadarPositionsByEntityType;
|
|
89695
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
89696
|
+
last?: InputMaybe<Scalars['Int']['input']>;
|
|
89697
|
+
rql?: InputMaybe<Scalars['String']['input']>;
|
|
89698
|
+
};
|
|
88704
89699
|
export declare type QueryRadar_PositionsSearchArgs = {
|
|
88705
89700
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
88706
89701
|
before?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -89194,6 +90189,20 @@ export declare enum QueryType {
|
|
|
89194
90189
|
Select = "SELECT",
|
|
89195
90190
|
Update = "UPDATE"
|
|
89196
90191
|
}
|
|
90192
|
+
export declare type QueuesPriorityGroupsResults = {
|
|
90193
|
+
__typename?: 'QueuesPriorityGroupsResults';
|
|
90194
|
+
results?: Maybe<Array<Maybe<QueuesPriorityGroupsResultsGroup>>>;
|
|
90195
|
+
};
|
|
90196
|
+
export declare type QueuesPriorityGroupsResultsGroup = {
|
|
90197
|
+
__typename?: 'QueuesPriorityGroupsResultsGroup';
|
|
90198
|
+
category?: Maybe<Scalars['String']['output']>;
|
|
90199
|
+
creationMethod?: Maybe<Scalars['String']['output']>;
|
|
90200
|
+
id?: Maybe<Scalars['String']['output']>;
|
|
90201
|
+
name?: Maybe<Scalars['String']['output']>;
|
|
90202
|
+
projectId?: Maybe<Scalars['String']['output']>;
|
|
90203
|
+
queueIds?: Maybe<Array<Maybe<Scalars['Int']['output']>>>;
|
|
90204
|
+
version?: Maybe<Scalars['Int']['output']>;
|
|
90205
|
+
};
|
|
89197
90206
|
export declare type QuickReload = {
|
|
89198
90207
|
__typename?: 'QuickReload';
|
|
89199
90208
|
comments: Array<QuickReloadComment>;
|
|
@@ -89215,14 +90224,12 @@ export declare type QuotaInfo = {
|
|
|
89215
90224
|
};
|
|
89216
90225
|
export declare type RadarAriFieldValue = {
|
|
89217
90226
|
__typename?: 'RadarAriFieldValue';
|
|
89218
|
-
isHidden?: Maybe<Scalars['Boolean']['output']>;
|
|
89219
90227
|
isRestricted?: Maybe<Scalars['Boolean']['output']>;
|
|
89220
90228
|
value?: Maybe<RadarAriObject>;
|
|
89221
90229
|
};
|
|
89222
90230
|
export declare type RadarAriObject = MercuryChangeProposal | MercuryFocusArea | RadarPosition | RadarWorker;
|
|
89223
90231
|
export declare type RadarBooleanFieldValue = {
|
|
89224
90232
|
__typename?: 'RadarBooleanFieldValue';
|
|
89225
|
-
isHidden?: Maybe<Scalars['Boolean']['output']>;
|
|
89226
90233
|
isRestricted?: Maybe<Scalars['Boolean']['output']>;
|
|
89227
90234
|
value?: Maybe<Scalars['Boolean']['output']>;
|
|
89228
90235
|
};
|
|
@@ -89255,6 +90262,7 @@ export declare type RadarCustomFieldDefinition = RadarFieldDefinition & {
|
|
|
89255
90262
|
isHidden?: Maybe<Scalars['Boolean']['output']>;
|
|
89256
90263
|
relativeId: Scalars['String']['output'];
|
|
89257
90264
|
sensitivityLevel: RadarSensitivityLevel;
|
|
90265
|
+
sourceField: Scalars['String']['output'];
|
|
89258
90266
|
syncStatus: RadarCustomFieldSyncStatus;
|
|
89259
90267
|
type: RadarFieldType;
|
|
89260
90268
|
};
|
|
@@ -89273,7 +90281,6 @@ export declare enum RadarCustomFieldSyncStatus {
|
|
|
89273
90281
|
}
|
|
89274
90282
|
export declare type RadarDateFieldValue = {
|
|
89275
90283
|
__typename?: 'RadarDateFieldValue';
|
|
89276
|
-
isHidden?: Maybe<Scalars['Boolean']['output']>;
|
|
89277
90284
|
isRestricted?: Maybe<Scalars['Boolean']['output']>;
|
|
89278
90285
|
value?: Maybe<Scalars['DateTime']['output']>;
|
|
89279
90286
|
};
|
|
@@ -89463,7 +90470,6 @@ export declare type RadarNumericFieldDefinition = RadarFieldDefinition & {
|
|
|
89463
90470
|
export declare type RadarNumericFieldValue = {
|
|
89464
90471
|
__typename?: 'RadarNumericFieldValue';
|
|
89465
90472
|
displayValue?: Maybe<Scalars['Int']['output']>;
|
|
89466
|
-
isHidden?: Maybe<Scalars['Boolean']['output']>;
|
|
89467
90473
|
isRestricted?: Maybe<Scalars['Boolean']['output']>;
|
|
89468
90474
|
value?: Maybe<Scalars['Int']['output']>;
|
|
89469
90475
|
};
|
|
@@ -89479,11 +90485,9 @@ export declare type RadarPermissionsInput = {
|
|
|
89479
90485
|
};
|
|
89480
90486
|
export declare type RadarPosition = Node & RadarEntity & {
|
|
89481
90487
|
__typename?: 'RadarPosition';
|
|
89482
|
-
directReports?: Maybe<Array<RadarPosition>>;
|
|
89483
90488
|
entityId: Scalars['ID']['output'];
|
|
89484
90489
|
fieldValues: Array<RadarFieldValueIdPair>;
|
|
89485
90490
|
id: Scalars['ID']['output'];
|
|
89486
|
-
isManager: Scalars['Boolean']['output'];
|
|
89487
90491
|
manager?: Maybe<RadarPosition>;
|
|
89488
90492
|
reportingLine?: Maybe<Array<RadarPosition>>;
|
|
89489
90493
|
role?: Maybe<RadarPositionRole>;
|
|
@@ -89520,6 +90524,32 @@ export declare enum RadarPositionRole {
|
|
|
89520
90524
|
IndividualContributor = "INDIVIDUAL_CONTRIBUTOR",
|
|
89521
90525
|
Manager = "MANAGER"
|
|
89522
90526
|
}
|
|
90527
|
+
export declare type RadarPositionsByAriObject = MercuryFocusArea;
|
|
90528
|
+
export declare type RadarPositionsByEntity = {
|
|
90529
|
+
__typename?: 'RadarPositionsByEntity';
|
|
90530
|
+
entity?: Maybe<RadarPositionsByAriObject>;
|
|
90531
|
+
fieldValues: Array<RadarFieldValueIdPair>;
|
|
90532
|
+
id: Scalars['ID']['output'];
|
|
90533
|
+
type: RadarEntityType;
|
|
90534
|
+
};
|
|
90535
|
+
export declare type RadarPositionsByEntityFieldValuesArgs = {
|
|
90536
|
+
fieldIdIsIn?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
90537
|
+
};
|
|
90538
|
+
export declare type RadarPositionsByEntityConnection = RadarConnection & {
|
|
90539
|
+
__typename?: 'RadarPositionsByEntityConnection';
|
|
90540
|
+
edges?: Maybe<Array<RadarPositionsByEntityEdge>>;
|
|
90541
|
+
nodes?: Maybe<Array<RadarPositionsByEntity>>;
|
|
90542
|
+
pageInfo: PageInfo;
|
|
90543
|
+
totalCount: Scalars['Int']['output'];
|
|
90544
|
+
};
|
|
90545
|
+
export declare type RadarPositionsByEntityEdge = RadarEdge & {
|
|
90546
|
+
__typename?: 'RadarPositionsByEntityEdge';
|
|
90547
|
+
cursor: Scalars['String']['output'];
|
|
90548
|
+
node: RadarPositionsByEntity;
|
|
90549
|
+
};
|
|
90550
|
+
export declare enum RadarPositionsByEntityType {
|
|
90551
|
+
FocusArea = "focusArea"
|
|
90552
|
+
}
|
|
89523
90553
|
export declare type RadarPrincipalByResourceRole = {
|
|
89524
90554
|
__typename?: 'RadarPrincipalByResourceRole';
|
|
89525
90555
|
principals: Array<RadarGroupPrincipal>;
|
|
@@ -89558,13 +90588,11 @@ export declare type RadarStatusFieldValue = {
|
|
|
89558
90588
|
__typename?: 'RadarStatusFieldValue';
|
|
89559
90589
|
appearance?: Maybe<RadarStatusAppearance>;
|
|
89560
90590
|
displayValue?: Maybe<Scalars['String']['output']>;
|
|
89561
|
-
isHidden?: Maybe<Scalars['Boolean']['output']>;
|
|
89562
90591
|
isRestricted?: Maybe<Scalars['Boolean']['output']>;
|
|
89563
90592
|
value?: Maybe<Scalars['String']['output']>;
|
|
89564
90593
|
};
|
|
89565
90594
|
export declare type RadarStringFieldValue = {
|
|
89566
90595
|
__typename?: 'RadarStringFieldValue';
|
|
89567
|
-
isHidden?: Maybe<Scalars['Boolean']['output']>;
|
|
89568
90596
|
isRestricted?: Maybe<Scalars['Boolean']['output']>;
|
|
89569
90597
|
value?: Maybe<Scalars['String']['output']>;
|
|
89570
90598
|
};
|
|
@@ -89577,7 +90605,6 @@ export declare type RadarUrlFieldValue = {
|
|
|
89577
90605
|
__typename?: 'RadarUrlFieldValue';
|
|
89578
90606
|
displayValue?: Maybe<Scalars['String']['output']>;
|
|
89579
90607
|
icon?: Maybe<Scalars['String']['output']>;
|
|
89580
|
-
isHidden?: Maybe<Scalars['Boolean']['output']>;
|
|
89581
90608
|
isRestricted?: Maybe<Scalars['Boolean']['output']>;
|
|
89582
90609
|
value?: Maybe<Scalars['String']['output']>;
|
|
89583
90610
|
};
|
|
@@ -91396,6 +92423,7 @@ export declare type SearchConfluencePageBlogAttachment = SearchL2FeatureProvider
|
|
|
91396
92423
|
__typename?: 'SearchConfluencePageBlogAttachment';
|
|
91397
92424
|
bodyText?: Maybe<Scalars['String']['output']>;
|
|
91398
92425
|
confluenceEntity?: Maybe<SearchConfluenceEntity>;
|
|
92426
|
+
content?: Maybe<Array<Maybe<Content>>>;
|
|
91399
92427
|
createdDate?: Maybe<Scalars['DateTime']['output']>;
|
|
91400
92428
|
description: Scalars['String']['output'];
|
|
91401
92429
|
entityId?: Maybe<Scalars['String']['output']>;
|
|
@@ -91528,6 +92556,7 @@ export declare type SearchFilterInput = {
|
|
|
91528
92556
|
locations: Array<Scalars['String']['input']>;
|
|
91529
92557
|
mercuryFilters?: InputMaybe<SearchMercuryFilter>;
|
|
91530
92558
|
thirdPartyFilters?: InputMaybe<SearchThirdPartyFilter>;
|
|
92559
|
+
trelloFilters?: InputMaybe<SearchTrelloFilter>;
|
|
91531
92560
|
};
|
|
91532
92561
|
export declare type SearchInterleaverScrapingResult = {
|
|
91533
92562
|
__typename?: 'SearchInterleaverScrapingResult';
|
|
@@ -92094,6 +93123,9 @@ export declare type SearchTimeseriesCount = {
|
|
|
92094
93123
|
__typename?: 'SearchTimeseriesCount';
|
|
92095
93124
|
nodes: Array<TimeseriesCountItem>;
|
|
92096
93125
|
};
|
|
93126
|
+
export declare type SearchTrelloFilter = {
|
|
93127
|
+
isRecentBias?: InputMaybe<Scalars['Boolean']['input']>;
|
|
93128
|
+
};
|
|
92097
93129
|
export declare type SearchesByTerm = {
|
|
92098
93130
|
__typename?: 'SearchesByTerm';
|
|
92099
93131
|
nodes: Array<SearchesByTermItems>;
|
|
@@ -93384,6 +94416,7 @@ export declare type ShepherdQuery = {
|
|
|
93384
94416
|
shepherdAppInfo: ShepherdAppInfo;
|
|
93385
94417
|
subscriptions?: Maybe<ShepherdSubscriptionsResult>;
|
|
93386
94418
|
workspace?: Maybe<ShepherdWorkspaceResult>;
|
|
94419
|
+
workspaceByOrgId?: Maybe<ShepherdWorkspaceByOrgId>;
|
|
93387
94420
|
workspacesByUserContext?: Maybe<ShepherdWorkspaceResult>;
|
|
93388
94421
|
};
|
|
93389
94422
|
export declare type ShepherdQueryShepherdActivityArgs = {
|
|
@@ -93416,6 +94449,9 @@ export declare type ShepherdQueryWorkspaceArgs = {
|
|
|
93416
94449
|
id?: InputMaybe<Scalars['ID']['input']>;
|
|
93417
94450
|
orgId?: InputMaybe<Scalars['ID']['input']>;
|
|
93418
94451
|
};
|
|
94452
|
+
export declare type ShepherdQueryWorkspaceByOrgIdArgs = {
|
|
94453
|
+
orgId: Scalars['ID']['input'];
|
|
94454
|
+
};
|
|
93419
94455
|
export declare enum ShepherdQueryErrorType {
|
|
93420
94456
|
BadRequest = "BAD_REQUEST",
|
|
93421
94457
|
InternalServerError = "INTERNAL_SERVER_ERROR",
|
|
@@ -93795,6 +94831,10 @@ export declare type ShepherdWorkspaceDetectionsArgs = {
|
|
|
93795
94831
|
detectionId?: InputMaybe<Scalars['ID']['input']>;
|
|
93796
94832
|
settingId?: InputMaybe<Scalars['ID']['input']>;
|
|
93797
94833
|
};
|
|
94834
|
+
export declare type ShepherdWorkspaceByOrgId = {
|
|
94835
|
+
__typename?: 'ShepherdWorkspaceByOrgId';
|
|
94836
|
+
ari?: Maybe<Scalars['ID']['output']>;
|
|
94837
|
+
};
|
|
93798
94838
|
export declare type ShepherdWorkspaceConnection = {
|
|
93799
94839
|
__typename?: 'ShepherdWorkspaceConnection';
|
|
93800
94840
|
edges?: Maybe<Array<Maybe<ShepherdWorkspaceEdge>>>;
|
|
@@ -94642,12 +95682,14 @@ export declare type SpaceOrContent = {
|
|
|
94642
95682
|
__typename?: 'SpaceOrContent';
|
|
94643
95683
|
alias?: Maybe<Scalars['String']['output']>;
|
|
94644
95684
|
ancestors?: Maybe<Array<Maybe<Content>>>;
|
|
95685
|
+
ari?: Maybe<Scalars['ID']['output']>;
|
|
94645
95686
|
body?: Maybe<ContentBodyPerRepresentation>;
|
|
94646
95687
|
childTypes?: Maybe<ChildContentTypesAvailable>;
|
|
94647
95688
|
container?: Maybe<SpaceOrContent>;
|
|
94648
95689
|
creatorAccountId?: Maybe<Scalars['String']['output']>;
|
|
94649
95690
|
dataClassificationTags: Array<Maybe<Scalars['String']['output']>>;
|
|
94650
95691
|
description?: Maybe<SpaceDescriptions>;
|
|
95692
|
+
draftVersion?: Maybe<Version>;
|
|
94651
95693
|
extensions?: Maybe<Array<Maybe<KeyValueHierarchyMap>>>;
|
|
94652
95694
|
history?: Maybe<History>;
|
|
94653
95695
|
homepage?: Maybe<Content>;
|
|
@@ -94794,6 +95836,8 @@ export declare type SpacePermissionsSubjectsWithPermissionsArgs = {
|
|
|
94794
95836
|
};
|
|
94795
95837
|
export declare type SpaceRole = {
|
|
94796
95838
|
__typename?: 'SpaceRole';
|
|
95839
|
+
inUseByDefaultSpaceRoleAssignments?: Maybe<Scalars['Boolean']['output']>;
|
|
95840
|
+
inUseByPrincipals?: Maybe<Scalars['Boolean']['output']>;
|
|
94797
95841
|
roleDescription: Scalars['String']['output'];
|
|
94798
95842
|
roleDisplayName: Scalars['String']['output'];
|
|
94799
95843
|
roleId: Scalars['ID']['output'];
|
|
@@ -94956,6 +96000,16 @@ export declare type SpaceWithExemption = {
|
|
|
94956
96000
|
status?: Maybe<Scalars['String']['output']>;
|
|
94957
96001
|
type?: Maybe<Scalars['String']['output']>;
|
|
94958
96002
|
};
|
|
96003
|
+
export declare type SpfAttachRelatedContentInput = {
|
|
96004
|
+
dependencyId: Scalars['ID']['input'];
|
|
96005
|
+
url: Scalars['URL']['input'];
|
|
96006
|
+
};
|
|
96007
|
+
export declare type SpfAttachRelatedContentPayload = Payload & {
|
|
96008
|
+
__typename?: 'SpfAttachRelatedContentPayload';
|
|
96009
|
+
errors?: Maybe<Array<MutationError>>;
|
|
96010
|
+
relatedContent?: Maybe<SpfRelatedContent>;
|
|
96011
|
+
success: Scalars['Boolean']['output'];
|
|
96012
|
+
};
|
|
94959
96013
|
export declare type SpfComment = {
|
|
94960
96014
|
__typename?: 'SpfComment';
|
|
94961
96015
|
createdAt: Scalars['DateTime']['output'];
|
|
@@ -94975,6 +96029,44 @@ export declare type SpfCommentEdge = {
|
|
|
94975
96029
|
cursor: Scalars['String']['output'];
|
|
94976
96030
|
node?: Maybe<SpfComment>;
|
|
94977
96031
|
};
|
|
96032
|
+
export declare type SpfCreateCommentInput = {
|
|
96033
|
+
data: Scalars['String']['input'];
|
|
96034
|
+
dependencyId: Scalars['ID']['input'];
|
|
96035
|
+
};
|
|
96036
|
+
export declare type SpfCreateCommentPayload = Payload & {
|
|
96037
|
+
__typename?: 'SpfCreateCommentPayload';
|
|
96038
|
+
comment?: Maybe<SpfComment>;
|
|
96039
|
+
errors?: Maybe<Array<MutationError>>;
|
|
96040
|
+
success: Scalars['Boolean']['output'];
|
|
96041
|
+
};
|
|
96042
|
+
export declare type SpfCreateDependencyInput = {
|
|
96043
|
+
cloudId: Scalars['ID']['input'];
|
|
96044
|
+
description?: InputMaybe<Scalars['String']['input']>;
|
|
96045
|
+
impactedWorkId: Scalars['String']['input'];
|
|
96046
|
+
justification?: InputMaybe<Scalars['String']['input']>;
|
|
96047
|
+
name: Scalars['String']['input'];
|
|
96048
|
+
ownerId?: InputMaybe<Scalars['String']['input']>;
|
|
96049
|
+
priority: SpfPriority;
|
|
96050
|
+
receivingTeamId?: InputMaybe<Scalars['String']['input']>;
|
|
96051
|
+
requesterId: Scalars['String']['input'];
|
|
96052
|
+
requestingTeamId?: InputMaybe<Scalars['String']['input']>;
|
|
96053
|
+
status: SpfDependencyStatus;
|
|
96054
|
+
targetDate?: InputMaybe<SpfTargetDateInput>;
|
|
96055
|
+
};
|
|
96056
|
+
export declare type SpfCreateDependencyPayload = Payload & {
|
|
96057
|
+
__typename?: 'SpfCreateDependencyPayload';
|
|
96058
|
+
dependency?: Maybe<SpfDependency>;
|
|
96059
|
+
errors?: Maybe<Array<MutationError>>;
|
|
96060
|
+
success: Scalars['Boolean']['output'];
|
|
96061
|
+
};
|
|
96062
|
+
export declare type SpfDeleteDependencyInput = {
|
|
96063
|
+
id: Scalars['ID']['input'];
|
|
96064
|
+
};
|
|
96065
|
+
export declare type SpfDeleteDependencyPayload = Payload & {
|
|
96066
|
+
__typename?: 'SpfDeleteDependencyPayload';
|
|
96067
|
+
errors?: Maybe<Array<MutationError>>;
|
|
96068
|
+
success: Scalars['Boolean']['output'];
|
|
96069
|
+
};
|
|
94978
96070
|
export declare type SpfDependency = Node & {
|
|
94979
96071
|
__typename?: 'SpfDependency';
|
|
94980
96072
|
comments?: Maybe<SpfCommentConnection>;
|
|
@@ -95064,11 +96156,71 @@ export declare type SpfTargetDate = {
|
|
|
95064
96156
|
targetDate?: Maybe<Scalars['String']['output']>;
|
|
95065
96157
|
targetDateType?: Maybe<SpfTargetDateType>;
|
|
95066
96158
|
};
|
|
96159
|
+
export declare type SpfTargetDateInput = {
|
|
96160
|
+
targetDate: Scalars['String']['input'];
|
|
96161
|
+
targetDateType: SpfTargetDateType;
|
|
96162
|
+
};
|
|
95067
96163
|
export declare enum SpfTargetDateType {
|
|
95068
96164
|
Day = "DAY",
|
|
95069
96165
|
Month = "MONTH",
|
|
95070
96166
|
Quarter = "QUARTER"
|
|
95071
96167
|
}
|
|
96168
|
+
export declare type SpfUpdateCommentDataInput = {
|
|
96169
|
+
data: Scalars['String']['input'];
|
|
96170
|
+
id: Scalars['ID']['input'];
|
|
96171
|
+
};
|
|
96172
|
+
export declare type SpfUpdateCommentPayload = Payload & {
|
|
96173
|
+
__typename?: 'SpfUpdateCommentPayload';
|
|
96174
|
+
comment?: Maybe<SpfComment>;
|
|
96175
|
+
errors?: Maybe<Array<MutationError>>;
|
|
96176
|
+
success: Scalars['Boolean']['output'];
|
|
96177
|
+
};
|
|
96178
|
+
export declare type SpfUpdateDependencyDescriptionInput = {
|
|
96179
|
+
description?: InputMaybe<Scalars['String']['input']>;
|
|
96180
|
+
id: Scalars['ID']['input'];
|
|
96181
|
+
};
|
|
96182
|
+
export declare type SpfUpdateDependencyImpactedWorkInput = {
|
|
96183
|
+
id: Scalars['ID']['input'];
|
|
96184
|
+
impactedWorkId: Scalars['String']['input'];
|
|
96185
|
+
};
|
|
96186
|
+
export declare type SpfUpdateDependencyJustificationInput = {
|
|
96187
|
+
id: Scalars['ID']['input'];
|
|
96188
|
+
justification?: InputMaybe<Scalars['String']['input']>;
|
|
96189
|
+
};
|
|
96190
|
+
export declare type SpfUpdateDependencyNameInput = {
|
|
96191
|
+
id: Scalars['ID']['input'];
|
|
96192
|
+
name: Scalars['String']['input'];
|
|
96193
|
+
};
|
|
96194
|
+
export declare type SpfUpdateDependencyOwnerInput = {
|
|
96195
|
+
id: Scalars['ID']['input'];
|
|
96196
|
+
ownerId?: InputMaybe<Scalars['String']['input']>;
|
|
96197
|
+
};
|
|
96198
|
+
export declare type SpfUpdateDependencyPayload = Payload & {
|
|
96199
|
+
__typename?: 'SpfUpdateDependencyPayload';
|
|
96200
|
+
dependency?: Maybe<SpfDependency>;
|
|
96201
|
+
errors?: Maybe<Array<MutationError>>;
|
|
96202
|
+
success: Scalars['Boolean']['output'];
|
|
96203
|
+
};
|
|
96204
|
+
export declare type SpfUpdateDependencyPriorityInput = {
|
|
96205
|
+
id: Scalars['ID']['input'];
|
|
96206
|
+
priority: SpfPriority;
|
|
96207
|
+
};
|
|
96208
|
+
export declare type SpfUpdateDependencyReceivingTeamInput = {
|
|
96209
|
+
id: Scalars['ID']['input'];
|
|
96210
|
+
receivingTeamId?: InputMaybe<Scalars['String']['input']>;
|
|
96211
|
+
};
|
|
96212
|
+
export declare type SpfUpdateDependencyRequestingTeamInput = {
|
|
96213
|
+
id: Scalars['ID']['input'];
|
|
96214
|
+
requestingTeamId?: InputMaybe<Scalars['String']['input']>;
|
|
96215
|
+
};
|
|
96216
|
+
export declare type SpfUpdateDependencyStatusInput = {
|
|
96217
|
+
id: Scalars['ID']['input'];
|
|
96218
|
+
status: SpfDependencyStatus;
|
|
96219
|
+
};
|
|
96220
|
+
export declare type SpfUpdateDependencyTargetDateInput = {
|
|
96221
|
+
id: Scalars['ID']['input'];
|
|
96222
|
+
targetDate?: InputMaybe<SpfTargetDateInput>;
|
|
96223
|
+
};
|
|
95072
96224
|
export declare type SplitIssueInput = {
|
|
95073
96225
|
newIssues: Array<InputMaybe<NewSplitIssueRequest>>;
|
|
95074
96226
|
originalIssue: OriginalSplitIssue;
|
|
@@ -95281,7 +96433,6 @@ export declare type SubjectsByTypeUserWithRestrictionsArgs = {
|
|
|
95281
96433
|
export declare type Subscription = {
|
|
95282
96434
|
__typename?: 'Subscription';
|
|
95283
96435
|
confluence_onContentModified?: Maybe<ConfluenceContentModified>;
|
|
95284
|
-
confluence_onContentUpdated?: Maybe<ConfluenceContent>;
|
|
95285
96436
|
devOps?: Maybe<AriGraphSubscriptions>;
|
|
95286
96437
|
devai_onAutodevJobLogGroupsUpdated?: Maybe<DevAiAutodevLogGroupConnection>;
|
|
95287
96438
|
devai_onAutodevJobLogsListUpdated?: Maybe<DevAiAutodevLogConnection>;
|
|
@@ -95300,9 +96451,6 @@ export declare type Subscription = {
|
|
|
95300
96451
|
export declare type SubscriptionConfluence_OnContentModifiedArgs = {
|
|
95301
96452
|
id: Scalars['ID']['input'];
|
|
95302
96453
|
};
|
|
95303
|
-
export declare type SubscriptionConfluence_OnContentUpdatedArgs = {
|
|
95304
|
-
id: Scalars['ID']['input'];
|
|
95305
|
-
};
|
|
95306
96454
|
export declare type SubscriptionDevai_OnAutodevJobLogGroupsUpdatedArgs = {
|
|
95307
96455
|
cloudId: Scalars['ID']['input'];
|
|
95308
96456
|
jobId: Scalars['ID']['input'];
|
|
@@ -95827,6 +96975,10 @@ export declare type TargetLocation = {
|
|
|
95827
96975
|
links?: Maybe<LinksContextBase>;
|
|
95828
96976
|
parentId?: Maybe<Scalars['ID']['output']>;
|
|
95829
96977
|
};
|
|
96978
|
+
export declare enum TargetTransition {
|
|
96979
|
+
Done = "DONE",
|
|
96980
|
+
Undone = "UNDONE"
|
|
96981
|
+
}
|
|
95830
96982
|
export declare enum TaskStatus {
|
|
95831
96983
|
Checked = "CHECKED",
|
|
95832
96984
|
Unchecked = "UNCHECKED"
|
|
@@ -98221,6 +99373,49 @@ export declare type TrelloCardBadges = {
|
|
|
98221
99373
|
viewer?: Maybe<TrelloCardViewer>;
|
|
98222
99374
|
votes?: Maybe<Scalars['Int']['output']>;
|
|
98223
99375
|
};
|
|
99376
|
+
export declare type TrelloCardBatch = {
|
|
99377
|
+
__typename?: 'TrelloCardBatch';
|
|
99378
|
+
objectId: Scalars['ID']['output'];
|
|
99379
|
+
processed?: Maybe<Scalars['Int']['output']>;
|
|
99380
|
+
status?: Maybe<TrelloCardBatchStatus>;
|
|
99381
|
+
total?: Maybe<Scalars['Int']['output']>;
|
|
99382
|
+
};
|
|
99383
|
+
export declare type TrelloCardBatchJobPayload = Payload & {
|
|
99384
|
+
__typename?: 'TrelloCardBatchJobPayload';
|
|
99385
|
+
errors?: Maybe<Array<MutationError>>;
|
|
99386
|
+
job?: Maybe<TrelloCardBatch>;
|
|
99387
|
+
success: Scalars['Boolean']['output'];
|
|
99388
|
+
};
|
|
99389
|
+
export declare type TrelloCardBatchScript = {
|
|
99390
|
+
commands?: InputMaybe<Array<TrelloCardCommand>>;
|
|
99391
|
+
};
|
|
99392
|
+
export declare type TrelloCardBatchSelection = {
|
|
99393
|
+
clauses?: InputMaybe<Array<TrelloCardClause>>;
|
|
99394
|
+
};
|
|
99395
|
+
export declare type TrelloCardBatchSpecificationInput = {
|
|
99396
|
+
boardId: Scalars['ID']['input'];
|
|
99397
|
+
script?: InputMaybe<TrelloCardBatchScript>;
|
|
99398
|
+
selection?: InputMaybe<TrelloCardBatchSelection>;
|
|
99399
|
+
};
|
|
99400
|
+
export declare enum TrelloCardBatchStatus {
|
|
99401
|
+
Completed = "COMPLETED",
|
|
99402
|
+
Executing = "EXECUTING",
|
|
99403
|
+
Failed = "FAILED",
|
|
99404
|
+
Pending = "PENDING"
|
|
99405
|
+
}
|
|
99406
|
+
export declare type TrelloCardClause = {
|
|
99407
|
+
closed?: InputMaybe<TrelloCardClosedClause>;
|
|
99408
|
+
list?: InputMaybe<TrelloCardListClause>;
|
|
99409
|
+
};
|
|
99410
|
+
export declare type TrelloCardCloseCommand = {
|
|
99411
|
+
close: Scalars['Boolean']['input'];
|
|
99412
|
+
};
|
|
99413
|
+
export declare type TrelloCardClosedClause = {
|
|
99414
|
+
closed: Scalars['Boolean']['input'];
|
|
99415
|
+
};
|
|
99416
|
+
export declare type TrelloCardCommand = {
|
|
99417
|
+
close?: InputMaybe<TrelloCardCloseCommand>;
|
|
99418
|
+
};
|
|
98224
99419
|
export declare type TrelloCardConnection = {
|
|
98225
99420
|
__typename?: 'TrelloCardConnection';
|
|
98226
99421
|
edges?: Maybe<Array<TrelloCardEdge>>;
|
|
@@ -98325,6 +99520,9 @@ export declare type TrelloCardLimits = {
|
|
|
98325
99520
|
checklists?: Maybe<TrelloCardLimit>;
|
|
98326
99521
|
stickers?: Maybe<TrelloCardLimit>;
|
|
98327
99522
|
};
|
|
99523
|
+
export declare type TrelloCardListClause = {
|
|
99524
|
+
listId: Scalars['ID']['input'];
|
|
99525
|
+
};
|
|
98328
99526
|
export declare type TrelloCardLocation = {
|
|
98329
99527
|
__typename?: 'TrelloCardLocation';
|
|
98330
99528
|
address?: Maybe<Scalars['String']['output']>;
|
|
@@ -98963,6 +100161,7 @@ export declare type TrelloMemberNonPublicData = {
|
|
|
98963
100161
|
export declare type TrelloMemberPrefs = {
|
|
98964
100162
|
__typename?: 'TrelloMemberPrefs';
|
|
98965
100163
|
colorBlind?: Maybe<Scalars['Boolean']['output']>;
|
|
100164
|
+
keyboardShortcutsEnabled?: Maybe<Scalars['Boolean']['output']>;
|
|
98966
100165
|
};
|
|
98967
100166
|
export declare type TrelloMemberUpdated = {
|
|
98968
100167
|
__typename?: 'TrelloMemberUpdated';
|
|
@@ -99086,6 +100285,7 @@ export declare type TrelloMutationApi = {
|
|
|
99086
100285
|
removeCardFromPlannerCalendarEvent?: Maybe<TrelloRemoveCardFromPlannerCalendarEventPayload>;
|
|
99087
100286
|
removeMemberFromCard?: Maybe<TrelloRemoveMemberFromCardPayload>;
|
|
99088
100287
|
removeMemberFromWorkspace?: Maybe<TrelloRemoveMemberFromWorkspacePayload>;
|
|
100288
|
+
submitCardBatchToBoard?: Maybe<TrelloCardBatchJobPayload>;
|
|
99089
100289
|
unarchiveCard?: Maybe<TrelloUnarchiveCardPayload>;
|
|
99090
100290
|
unwatchCard?: Maybe<TrelloWatchCardPayload>;
|
|
99091
100291
|
updateBoardIsTemplate?: Maybe<TrelloUpdateBoardIsTemplatePayload>;
|
|
@@ -99095,6 +100295,7 @@ export declare type TrelloMutationApi = {
|
|
|
99095
100295
|
updateBoardViewerAISlack?: Maybe<TrelloUpdateBoardViewerAiSlackPayload>;
|
|
99096
100296
|
updateBoardViewerMirrorCard?: Maybe<TrelloUpdateBoardViewerShowCompactMirrorCardPayload>;
|
|
99097
100297
|
updateCardName?: Maybe<TrelloUpdateCardNamePayload>;
|
|
100298
|
+
updateKeyboardShortcutsPref?: Maybe<TrelloUpdateKeyboardShortcutsPrefPayload>;
|
|
99098
100299
|
watchCard?: Maybe<TrelloWatchCardPayload>;
|
|
99099
100300
|
};
|
|
99100
100301
|
export declare type TrelloMutationApiAddMemberToCardArgs = {
|
|
@@ -99133,6 +100334,9 @@ export declare type TrelloMutationApiRemoveMemberFromCardArgs = {
|
|
|
99133
100334
|
export declare type TrelloMutationApiRemoveMemberFromWorkspaceArgs = {
|
|
99134
100335
|
input: TrelloRemoveMemberFromWorkspaceInput;
|
|
99135
100336
|
};
|
|
100337
|
+
export declare type TrelloMutationApiSubmitCardBatchToBoardArgs = {
|
|
100338
|
+
input: TrelloCardBatchSpecificationInput;
|
|
100339
|
+
};
|
|
99136
100340
|
export declare type TrelloMutationApiUnarchiveCardArgs = {
|
|
99137
100341
|
input: TrelloUnarchiveCardInput;
|
|
99138
100342
|
};
|
|
@@ -99160,6 +100364,9 @@ export declare type TrelloMutationApiUpdateBoardViewerMirrorCardArgs = {
|
|
|
99160
100364
|
export declare type TrelloMutationApiUpdateCardNameArgs = {
|
|
99161
100365
|
input: TrelloUpdateCardNameInput;
|
|
99162
100366
|
};
|
|
100367
|
+
export declare type TrelloMutationApiUpdateKeyboardShortcutsPrefArgs = {
|
|
100368
|
+
input: TrelloUpdateKeyboardShortcutsPrefInput;
|
|
100369
|
+
};
|
|
99163
100370
|
export declare type TrelloMutationApiWatchCardArgs = {
|
|
99164
100371
|
input: TrelloWatchCardInput;
|
|
99165
100372
|
};
|
|
@@ -99596,6 +100803,7 @@ export declare type TrelloQueryApi = {
|
|
|
99596
100803
|
boardByShortLink?: Maybe<TrelloBoard>;
|
|
99597
100804
|
boardMirrorCardInfo?: Maybe<TrelloBoardMirrorCards>;
|
|
99598
100805
|
card?: Maybe<TrelloCard>;
|
|
100806
|
+
cardBatch?: Maybe<TrelloCardBatch>;
|
|
99599
100807
|
echo?: Maybe<Scalars['String']['output']>;
|
|
99600
100808
|
echos?: Maybe<Array<Maybe<Scalars['String']['output']>>>;
|
|
99601
100809
|
enabledPlannerCalendarsByAccountId?: Maybe<TrelloPlannerCalendarConnection>;
|
|
@@ -99636,6 +100844,9 @@ export declare type TrelloQueryApiBoardMirrorCardInfoArgs = {
|
|
|
99636
100844
|
export declare type TrelloQueryApiCardArgs = {
|
|
99637
100845
|
id: Scalars['ID']['input'];
|
|
99638
100846
|
};
|
|
100847
|
+
export declare type TrelloQueryApiCardBatchArgs = {
|
|
100848
|
+
id: Scalars['ID']['input'];
|
|
100849
|
+
};
|
|
99639
100850
|
export declare type TrelloQueryApiEchosArgs = {
|
|
99640
100851
|
echo: Array<Scalars['String']['input']>;
|
|
99641
100852
|
};
|
|
@@ -100051,6 +101262,15 @@ export declare type TrelloUpdateCardNamePayload = Payload & {
|
|
|
100051
101262
|
errors?: Maybe<Array<MutationError>>;
|
|
100052
101263
|
success: Scalars['Boolean']['output'];
|
|
100053
101264
|
};
|
|
101265
|
+
export declare type TrelloUpdateKeyboardShortcutsPrefInput = {
|
|
101266
|
+
userId: Scalars['ID']['input'];
|
|
101267
|
+
value: Scalars['Boolean']['input'];
|
|
101268
|
+
};
|
|
101269
|
+
export declare type TrelloUpdateKeyboardShortcutsPrefPayload = Payload & {
|
|
101270
|
+
__typename?: 'TrelloUpdateKeyboardShortcutsPrefPayload';
|
|
101271
|
+
errors?: Maybe<Array<MutationError>>;
|
|
101272
|
+
success: Scalars['Boolean']['output'];
|
|
101273
|
+
};
|
|
100054
101274
|
export declare type TrelloUploadedBackground = {
|
|
100055
101275
|
__typename?: 'TrelloUploadedBackground';
|
|
100056
101276
|
objectId: Scalars['ID']['output'];
|
|
@@ -100211,6 +101431,7 @@ export declare type UnifiedAccount = UnifiedINode & {
|
|
|
100211
101431
|
isLinked: Scalars['Boolean']['output'];
|
|
100212
101432
|
isManaged: Scalars['Boolean']['output'];
|
|
100213
101433
|
isPrimary: Scalars['Boolean']['output'];
|
|
101434
|
+
isProfileOwnerConsented: Scalars['Boolean']['output'];
|
|
100214
101435
|
khorosUserId: Scalars['Int']['output'];
|
|
100215
101436
|
linkedAccounts?: Maybe<UnifiedULinkedAccountResult>;
|
|
100216
101437
|
nickname: Scalars['String']['output'];
|
|
@@ -100818,6 +102039,7 @@ export declare type UnifiedProfile = UnifiedINode & {
|
|
|
100818
102039
|
isPersonalView?: Maybe<Scalars['Boolean']['output']>;
|
|
100819
102040
|
isPrivate: Scalars['Boolean']['output'];
|
|
100820
102041
|
isProfileBanned?: Maybe<Scalars['Boolean']['output']>;
|
|
102042
|
+
isProfileOwnerConsented?: Maybe<Scalars['Boolean']['output']>;
|
|
100821
102043
|
learning?: Maybe<UnifiedULearningResult>;
|
|
100822
102044
|
linkedinUrl?: Maybe<Scalars['String']['output']>;
|
|
100823
102045
|
location?: Maybe<Scalars['String']['output']>;
|
|
@@ -101244,6 +102466,7 @@ export declare type UpdateCompassScorecardCriteriaInput = {
|
|
|
101244
102466
|
hasLink?: InputMaybe<UpdateCompassHasLinkScorecardCriteriaInput>;
|
|
101245
102467
|
hasMetricValue?: InputMaybe<UpdateCompassHasMetricValueCriteriaInput>;
|
|
101246
102468
|
hasOwner?: InputMaybe<UpdateCompassHasOwnerScorecardCriteriaInput>;
|
|
102469
|
+
hasPackageDependency?: InputMaybe<CompassUpdateHasPackageDependencyScorecardCriteriaInput>;
|
|
101247
102470
|
};
|
|
101248
102471
|
export declare type UpdateCompassScorecardInput = {
|
|
101249
102472
|
componentCreationTimeFilter?: InputMaybe<CompassComponentCreationTimeFilterInput>;
|
|
@@ -101519,6 +102742,14 @@ export declare type UpdateJiraPlaybookStepInput = {
|
|
|
101519
102742
|
stepId?: InputMaybe<Scalars['ID']['input']>;
|
|
101520
102743
|
type: JiraPlaybookStepType;
|
|
101521
102744
|
};
|
|
102745
|
+
export declare type UpdateMetadataInput = {
|
|
102746
|
+
ari: Scalars['String']['input'];
|
|
102747
|
+
extraProps?: InputMaybe<Array<PropInput>>;
|
|
102748
|
+
isPinned?: InputMaybe<Scalars['Boolean']['input']>;
|
|
102749
|
+
labels?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
102750
|
+
productLink?: InputMaybe<Scalars['String']['input']>;
|
|
102751
|
+
thumbnailId?: InputMaybe<Scalars['String']['input']>;
|
|
102752
|
+
};
|
|
101522
102753
|
export declare type UpdateNestedPageOwnersPayload = Payload & {
|
|
101523
102754
|
__typename?: 'UpdateNestedPageOwnersPayload';
|
|
101524
102755
|
errors?: Maybe<Array<MutationError>>;
|
|
@@ -101526,6 +102757,17 @@ export declare type UpdateNestedPageOwnersPayload = Payload & {
|
|
|
101526
102757
|
taskId: Scalars['ID']['output'];
|
|
101527
102758
|
warnings?: Maybe<Array<Maybe<ChangeOwnerWarning>>>;
|
|
101528
102759
|
};
|
|
102760
|
+
export declare type UpdateNoteInput = {
|
|
102761
|
+
body?: InputMaybe<Scalars['String']['input']>;
|
|
102762
|
+
metadata: UpdateMetadataInput;
|
|
102763
|
+
title?: InputMaybe<Scalars['String']['input']>;
|
|
102764
|
+
};
|
|
102765
|
+
export declare type UpdateNotePayload = {
|
|
102766
|
+
__typename?: 'UpdateNotePayload';
|
|
102767
|
+
errors?: Maybe<Array<NoteMutationError>>;
|
|
102768
|
+
note?: Maybe<NoteResponse>;
|
|
102769
|
+
success: Scalars['Boolean']['output'];
|
|
102770
|
+
};
|
|
101529
102771
|
export declare type UpdateOwnerInput = {
|
|
101530
102772
|
contentId: Scalars['ID']['input'];
|
|
101531
102773
|
ownerId: Scalars['String']['input'];
|
|
@@ -102154,6 +103396,26 @@ export declare type VirtualAgentAiAnswerStatusForChannel = {
|
|
|
102154
103396
|
isAiResponsesChannel?: Maybe<Scalars['Boolean']['output']>;
|
|
102155
103397
|
slackChannelId: Scalars['String']['output'];
|
|
102156
103398
|
};
|
|
103399
|
+
export declare type VirtualAgentAutoCloseConfig = {
|
|
103400
|
+
__typename?: 'VirtualAgentAutoCloseConfig';
|
|
103401
|
+
autoCloseMessage?: Maybe<Scalars['String']['output']>;
|
|
103402
|
+
};
|
|
103403
|
+
export declare type VirtualAgentAutoCloseConfigInput = {
|
|
103404
|
+
autoCloseMessage?: InputMaybe<Scalars['String']['input']>;
|
|
103405
|
+
};
|
|
103406
|
+
export declare type VirtualAgentCsatConfig = {
|
|
103407
|
+
__typename?: 'VirtualAgentCSATConfig';
|
|
103408
|
+
askForCSATMessage?: Maybe<Scalars['String']['output']>;
|
|
103409
|
+
noFeedbackProvidedMessage?: Maybe<Scalars['String']['output']>;
|
|
103410
|
+
requestAdditionalFeedbackMessage?: Maybe<Scalars['String']['output']>;
|
|
103411
|
+
thanksForFeedbackMessage?: Maybe<Scalars['String']['output']>;
|
|
103412
|
+
};
|
|
103413
|
+
export declare type VirtualAgentCsatConfigInput = {
|
|
103414
|
+
askForCSATMessage?: InputMaybe<Scalars['String']['input']>;
|
|
103415
|
+
noFeedbackProvidedMessage?: InputMaybe<Scalars['String']['input']>;
|
|
103416
|
+
requestAdditionalFeedbackMessage?: InputMaybe<Scalars['String']['input']>;
|
|
103417
|
+
thanksForFeedbackMessage?: InputMaybe<Scalars['String']['input']>;
|
|
103418
|
+
};
|
|
102157
103419
|
export declare type VirtualAgentChannelConfig = {
|
|
102158
103420
|
__typename?: 'VirtualAgentChannelConfig';
|
|
102159
103421
|
aiAnswersProductionStatus?: Maybe<Array<Maybe<VirtualAgentAiAnswerStatusForChannel>>>;
|
|
@@ -102176,6 +103438,7 @@ export declare type VirtualAgentConfiguration = Node & {
|
|
|
102176
103438
|
liveIntentsCount?: Maybe<Scalars['Int']['output']>;
|
|
102177
103439
|
offerEscalationConfig?: Maybe<VirtualAgentOfferEscalationConfig>;
|
|
102178
103440
|
respondToQueries: Scalars['Boolean']['output'];
|
|
103441
|
+
standardConfig?: Maybe<VirtualAgentStandardConfig>;
|
|
102179
103442
|
standardFlowEditors?: Maybe<VirtualAgentFlowEditorsConnection>;
|
|
102180
103443
|
virtualAgentChannelConfig?: Maybe<VirtualAgentChannelConfig>;
|
|
102181
103444
|
virtualAgentStatisticsProjection?: Maybe<VirtualAgentStatisticsProjection>;
|
|
@@ -102379,6 +103642,13 @@ export declare type VirtualAgentGlobalStatisticsProjection = {
|
|
|
102379
103642
|
totalMatched?: Maybe<Scalars['Float']['output']>;
|
|
102380
103643
|
totalTraffic?: Maybe<Scalars['Int']['output']>;
|
|
102381
103644
|
};
|
|
103645
|
+
export declare type VirtualAgentGreetingConfig = {
|
|
103646
|
+
__typename?: 'VirtualAgentGreetingConfig';
|
|
103647
|
+
greetingMessage?: Maybe<Scalars['String']['output']>;
|
|
103648
|
+
};
|
|
103649
|
+
export declare type VirtualAgentGreetingConfigInput = {
|
|
103650
|
+
greetingMessage?: InputMaybe<Scalars['String']['input']>;
|
|
103651
|
+
};
|
|
102382
103652
|
export declare type VirtualAgentIntent = Node & {
|
|
102383
103653
|
__typename?: 'VirtualAgentIntent';
|
|
102384
103654
|
confirmationMessage?: Maybe<Scalars['String']['output']>;
|
|
@@ -102506,6 +103776,17 @@ export declare type VirtualAgentLiveIntentCountResponse = {
|
|
|
102506
103776
|
containerId: Scalars['ID']['output'];
|
|
102507
103777
|
liveIntentsCount: Scalars['Int']['output'];
|
|
102508
103778
|
};
|
|
103779
|
+
export declare type VirtualAgentMatchIntentConfig = {
|
|
103780
|
+
__typename?: 'VirtualAgentMatchIntentConfig';
|
|
103781
|
+
askToRephraseAgainMessage?: Maybe<Scalars['String']['output']>;
|
|
103782
|
+
rephraseMessage?: Maybe<Scalars['String']['output']>;
|
|
103783
|
+
suggestMultipleIntentsMessage?: Maybe<Scalars['String']['output']>;
|
|
103784
|
+
};
|
|
103785
|
+
export declare type VirtualAgentMatchIntentConfigInput = {
|
|
103786
|
+
askToRephraseAgainMessage?: InputMaybe<Scalars['String']['input']>;
|
|
103787
|
+
rephraseMessage?: InputMaybe<Scalars['String']['input']>;
|
|
103788
|
+
suggestMultipleIntentsMessage?: InputMaybe<Scalars['String']['input']>;
|
|
103789
|
+
};
|
|
102509
103790
|
export declare type VirtualAgentMutationApi = {
|
|
102510
103791
|
__typename?: 'VirtualAgentMutationApi';
|
|
102511
103792
|
copyIntentRuleProjection?: Maybe<VirtualAgentCopyIntentRuleProjectionPayload>;
|
|
@@ -102515,10 +103796,14 @@ export declare type VirtualAgentMutationApi = {
|
|
|
102515
103796
|
deleteIntentRuleProjection?: Maybe<VirtualAgentDeleteIntentRuleProjectionPayload>;
|
|
102516
103797
|
handleFlowEditorActions?: Maybe<VirtualAgentFlowEditorActionPayload>;
|
|
102517
103798
|
updateAiAnswerForSlackChannel?: Maybe<VirtualAgentUpdateAiAnswerForSlackChannelPayload>;
|
|
103799
|
+
updateAutoCloseConfig?: Maybe<VirtualAgentStandardConfigUpdatePayload>;
|
|
103800
|
+
updateCSATConfig?: Maybe<VirtualAgentStandardConfigUpdatePayload>;
|
|
102518
103801
|
updateChatChannel?: Maybe<VirtualAgentUpdateChatChannelPayload>;
|
|
102519
103802
|
updateFlowEditorFlow?: Maybe<VirtualAgentFlowEditorPayload>;
|
|
103803
|
+
updateGreetingConfig?: Maybe<VirtualAgentStandardConfigUpdatePayload>;
|
|
102520
103804
|
updateIntentRuleProjection?: Maybe<VirtualAgentUpdateIntentRuleProjectionPayload>;
|
|
102521
103805
|
updateIntentRuleProjectionQuestions?: Maybe<VirtualAgentUpdateIntentRuleProjectionQuestionsPayload>;
|
|
103806
|
+
updateMatchIntentConfig?: Maybe<VirtualAgentStandardConfigUpdatePayload>;
|
|
102522
103807
|
updateVirtualAgentConfiguration?: Maybe<VirtualAgentUpdateConfigurationPayload>;
|
|
102523
103808
|
};
|
|
102524
103809
|
export declare type VirtualAgentMutationApiCopyIntentRuleProjectionArgs = {
|
|
@@ -102547,6 +103832,14 @@ export declare type VirtualAgentMutationApiUpdateAiAnswerForSlackChannelArgs = {
|
|
|
102547
103832
|
input: VirtualAgentUpdateAiAnswerForSlackChannelInput;
|
|
102548
103833
|
virtualAgentConfigurationId: Scalars['ID']['input'];
|
|
102549
103834
|
};
|
|
103835
|
+
export declare type VirtualAgentMutationApiUpdateAutoCloseConfigArgs = {
|
|
103836
|
+
input: VirtualAgentAutoCloseConfigInput;
|
|
103837
|
+
virtualAgentConfigurationId: Scalars['ID']['input'];
|
|
103838
|
+
};
|
|
103839
|
+
export declare type VirtualAgentMutationApiUpdateCsatConfigArgs = {
|
|
103840
|
+
input: VirtualAgentCsatConfigInput;
|
|
103841
|
+
virtualAgentConfigurationId: Scalars['ID']['input'];
|
|
103842
|
+
};
|
|
102550
103843
|
export declare type VirtualAgentMutationApiUpdateChatChannelArgs = {
|
|
102551
103844
|
input: VirtualAgentUpdateChatChannelInput;
|
|
102552
103845
|
virtualAgentConfigurationId: Scalars['ID']['input'];
|
|
@@ -102555,6 +103848,10 @@ export declare type VirtualAgentMutationApiUpdateFlowEditorFlowArgs = {
|
|
|
102555
103848
|
input: VirtualAgentFlowEditorInput;
|
|
102556
103849
|
virtualAgentFlowEditorId: Scalars['ID']['input'];
|
|
102557
103850
|
};
|
|
103851
|
+
export declare type VirtualAgentMutationApiUpdateGreetingConfigArgs = {
|
|
103852
|
+
input: VirtualAgentGreetingConfigInput;
|
|
103853
|
+
virtualAgentConfigurationId: Scalars['ID']['input'];
|
|
103854
|
+
};
|
|
102558
103855
|
export declare type VirtualAgentMutationApiUpdateIntentRuleProjectionArgs = {
|
|
102559
103856
|
input: VirtualAgentUpdateIntentRuleProjectionInput;
|
|
102560
103857
|
virtualAgentIntentRuleProjectionId: Scalars['ID']['input'];
|
|
@@ -102563,6 +103860,10 @@ export declare type VirtualAgentMutationApiUpdateIntentRuleProjectionQuestionsAr
|
|
|
102563
103860
|
input: VirtualAgentUpdateIntentRuleProjectionQuestionsInput;
|
|
102564
103861
|
virtualAgentIntentRuleProjectionId: Scalars['ID']['input'];
|
|
102565
103862
|
};
|
|
103863
|
+
export declare type VirtualAgentMutationApiUpdateMatchIntentConfigArgs = {
|
|
103864
|
+
input: VirtualAgentMatchIntentConfigInput;
|
|
103865
|
+
virtualAgentConfigurationId: Scalars['ID']['input'];
|
|
103866
|
+
};
|
|
102566
103867
|
export declare type VirtualAgentMutationApiUpdateVirtualAgentConfigurationArgs = {
|
|
102567
103868
|
input: VirtualAgentUpdateConfigurationInput;
|
|
102568
103869
|
virtualAgentConfigurationId: Scalars['ID']['input'];
|
|
@@ -102644,6 +103945,19 @@ export declare type VirtualAgentSlackChannel = {
|
|
|
102644
103945
|
isVirtualAgentTestChannel?: Maybe<Scalars['Boolean']['output']>;
|
|
102645
103946
|
slackChannelId?: Maybe<Scalars['String']['output']>;
|
|
102646
103947
|
};
|
|
103948
|
+
export declare type VirtualAgentStandardConfig = {
|
|
103949
|
+
__typename?: 'VirtualAgentStandardConfig';
|
|
103950
|
+
autoCloseConfig?: Maybe<VirtualAgentAutoCloseConfig>;
|
|
103951
|
+
csatConfig?: Maybe<VirtualAgentCsatConfig>;
|
|
103952
|
+
greetingConfig?: Maybe<VirtualAgentGreetingConfig>;
|
|
103953
|
+
matchIntentConfig?: Maybe<VirtualAgentMatchIntentConfig>;
|
|
103954
|
+
};
|
|
103955
|
+
export declare type VirtualAgentStandardConfigUpdatePayload = Payload & {
|
|
103956
|
+
__typename?: 'VirtualAgentStandardConfigUpdatePayload';
|
|
103957
|
+
errors?: Maybe<Array<MutationError>>;
|
|
103958
|
+
success: Scalars['Boolean']['output'];
|
|
103959
|
+
virtualAgentConfiguration?: Maybe<VirtualAgentConfiguration>;
|
|
103960
|
+
};
|
|
102647
103961
|
export declare type VirtualAgentStatisticsPercentageChangeProjection = {
|
|
102648
103962
|
__typename?: 'VirtualAgentStatisticsPercentageChangeProjection';
|
|
102649
103963
|
aiResolution?: Maybe<Scalars['Float']['output']>;
|