@forge/cli-shared 6.11.0-next.9 → 6.11.1-next.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +112 -0
- package/out/app-logs/view-logs.d.ts +3 -3
- package/out/app-logs/view-logs.d.ts.map +1 -1
- 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 +996 -11
- package/out/graphql/graphql-types.d.ts.map +1 -1
- package/out/graphql/graphql-types.js +112 -26
- package/out/ui/text.d.ts +22 -6
- package/out/ui/text.d.ts.map +1 -1
- package/out/ui/text.js +38 -22
- 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;
|
|
@@ -833,6 +837,7 @@ export declare type AgentStudioAssistant = AgentStudioAgent & Node & {
|
|
|
833
837
|
description?: Maybe<Scalars['String']['output']>;
|
|
834
838
|
id: Scalars['ID']['output'];
|
|
835
839
|
instructions?: Maybe<Scalars['String']['output']>;
|
|
840
|
+
isFavourite?: Maybe<Scalars['Boolean']['output']>;
|
|
836
841
|
knowledgeSources?: Maybe<AgentStudioKnowledgeConfiguration>;
|
|
837
842
|
name?: Maybe<Scalars['String']['output']>;
|
|
838
843
|
};
|
|
@@ -1057,12 +1062,41 @@ export declare type AgentStudioUpdateConversationStartersPayload = Payload & {
|
|
|
1057
1062
|
errors?: Maybe<Array<MutationError>>;
|
|
1058
1063
|
success: Scalars['Boolean']['output'];
|
|
1059
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
|
+
};
|
|
1060
1088
|
export declare type AiCoreApiVsaQuestions = {
|
|
1061
1089
|
__typename?: 'AiCoreApiVSAQuestions';
|
|
1062
1090
|
projectAri: Scalars['ID']['output'];
|
|
1063
1091
|
questions: Array<Maybe<Scalars['String']['output']>>;
|
|
1064
1092
|
};
|
|
1065
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;
|
|
1066
1100
|
export declare type AiCoreApiVsaReporting = {
|
|
1067
1101
|
__typename?: 'AiCoreApiVSAReporting';
|
|
1068
1102
|
projectAri: Scalars['ID']['output'];
|
|
@@ -1844,11 +1878,12 @@ export declare type AppLogsWithMetaData = {
|
|
|
1844
1878
|
appId: Scalars['String']['output'];
|
|
1845
1879
|
appVersion: Scalars['String']['output'];
|
|
1846
1880
|
cloudwatchId?: Maybe<Scalars['String']['output']>;
|
|
1881
|
+
context?: Maybe<Context>;
|
|
1847
1882
|
edition?: Maybe<EditionValue>;
|
|
1848
1883
|
environmentId: Scalars['String']['output'];
|
|
1849
1884
|
error?: Maybe<Scalars['String']['output']>;
|
|
1850
1885
|
functionKey?: Maybe<Scalars['String']['output']>;
|
|
1851
|
-
installationContext
|
|
1886
|
+
installationContext?: Maybe<Scalars['String']['output']>;
|
|
1852
1887
|
invocationId: Scalars['String']['output'];
|
|
1853
1888
|
licenseState?: Maybe<LicenseValue>;
|
|
1854
1889
|
lvl?: Maybe<Scalars['String']['output']>;
|
|
@@ -1995,6 +2030,14 @@ export declare enum AppSecurityPoliciesPermissionTypeExtension {
|
|
|
1995
2030
|
export declare type AppServicesFilter = {
|
|
1996
2031
|
name: Scalars['String']['input'];
|
|
1997
2032
|
};
|
|
2033
|
+
export declare type AppStorageAdmin = {
|
|
2034
|
+
__typename?: 'AppStorageAdmin';
|
|
2035
|
+
appId: Scalars['ID']['output'];
|
|
2036
|
+
kvsQuery: AppStorageKvsQueryPayload;
|
|
2037
|
+
};
|
|
2038
|
+
export declare type AppStorageAdminKvsQueryArgs = {
|
|
2039
|
+
input: AppStorageKvsQueryInput;
|
|
2040
|
+
};
|
|
1998
2041
|
export declare type AppStorageCustomEntityMutation = {
|
|
1999
2042
|
__typename?: 'AppStorageCustomEntityMutation';
|
|
2000
2043
|
deleteAppStoredCustomEntity?: Maybe<DeleteAppStoredCustomEntityPayload>;
|
|
@@ -2006,6 +2049,26 @@ export declare type AppStorageCustomEntityMutationDeleteAppStoredCustomEntityArg
|
|
|
2006
2049
|
export declare type AppStorageCustomEntityMutationSetAppStoredCustomEntityArgs = {
|
|
2007
2050
|
input: SetAppStoredCustomEntityMutationInput;
|
|
2008
2051
|
};
|
|
2052
|
+
export declare type AppStorageEntityNode = {
|
|
2053
|
+
__typename?: 'AppStorageEntityNode';
|
|
2054
|
+
key: Scalars['String']['output'];
|
|
2055
|
+
value: Scalars['AppStorageEntityValue']['output'];
|
|
2056
|
+
};
|
|
2057
|
+
export declare type AppStorageKvsQueryInput = {
|
|
2058
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
2059
|
+
contextAri: Scalars['ID']['input'];
|
|
2060
|
+
environmentId: Scalars['ID']['input'];
|
|
2061
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
2062
|
+
installationId: Scalars['ID']['input'];
|
|
2063
|
+
oauthClientId: Scalars['ID']['input'];
|
|
2064
|
+
};
|
|
2065
|
+
export declare type AppStorageKvsQueryPayload = {
|
|
2066
|
+
__typename?: 'AppStorageKvsQueryPayload';
|
|
2067
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
2068
|
+
nodes: Array<AppStorageEntityNode>;
|
|
2069
|
+
pageInfo: AppStoragePageInfo;
|
|
2070
|
+
totalCount: Scalars['Int']['output'];
|
|
2071
|
+
};
|
|
2009
2072
|
export declare type AppStorageMutation = {
|
|
2010
2073
|
__typename?: 'AppStorageMutation';
|
|
2011
2074
|
deleteAppStoredEntity?: Maybe<DeleteAppStoredEntityPayload>;
|
|
@@ -2021,6 +2084,11 @@ export declare type AppStorageOrderByInput = {
|
|
|
2021
2084
|
columnName: Scalars['String']['input'];
|
|
2022
2085
|
direction: AppStorageSqlTableDataSortDirection;
|
|
2023
2086
|
};
|
|
2087
|
+
export declare type AppStoragePageInfo = {
|
|
2088
|
+
__typename?: 'AppStoragePageInfo';
|
|
2089
|
+
hasNextPage: Scalars['Boolean']['output'];
|
|
2090
|
+
hasPreviousPage: Scalars['Boolean']['output'];
|
|
2091
|
+
};
|
|
2024
2092
|
export declare type AppStorageSqlDatabaseColumn = {
|
|
2025
2093
|
__typename?: 'AppStorageSqlDatabaseColumn';
|
|
2026
2094
|
default: Scalars['String']['output'];
|
|
@@ -4126,10 +4194,13 @@ export declare type CcpQueryApi = {
|
|
|
4126
4194
|
entitlements?: Maybe<Array<Maybe<CcpEntitlement>>>;
|
|
4127
4195
|
experienceCapabilities?: Maybe<CcpRootExperienceCapabilities>;
|
|
4128
4196
|
offering?: Maybe<CcpOffering>;
|
|
4197
|
+
offerings?: Maybe<Array<Maybe<CcpOffering>>>;
|
|
4129
4198
|
pricingPlan?: Maybe<CcpPricingPlan>;
|
|
4199
|
+
pricingPlans?: Maybe<Array<Maybe<CcpPricingPlan>>>;
|
|
4130
4200
|
product?: Maybe<CcpProduct>;
|
|
4131
4201
|
quotes?: Maybe<Array<Maybe<CcpQuote>>>;
|
|
4132
4202
|
transactionAccount?: Maybe<CcpTransactionAccount>;
|
|
4203
|
+
transactionAccounts?: Maybe<Array<Maybe<CcpTransactionAccount>>>;
|
|
4133
4204
|
};
|
|
4134
4205
|
export declare type CcpQueryApiEntitlementArgs = {
|
|
4135
4206
|
id: Scalars['ID']['input'];
|
|
@@ -4140,9 +4211,15 @@ export declare type CcpQueryApiEntitlementsArgs = {
|
|
|
4140
4211
|
export declare type CcpQueryApiOfferingArgs = {
|
|
4141
4212
|
key: Scalars['ID']['input'];
|
|
4142
4213
|
};
|
|
4214
|
+
export declare type CcpQueryApiOfferingsArgs = {
|
|
4215
|
+
ids: Array<Scalars['ID']['input']>;
|
|
4216
|
+
};
|
|
4143
4217
|
export declare type CcpQueryApiPricingPlanArgs = {
|
|
4144
4218
|
id: Scalars['ID']['input'];
|
|
4145
4219
|
};
|
|
4220
|
+
export declare type CcpQueryApiPricingPlansArgs = {
|
|
4221
|
+
ids: Array<Scalars['ID']['input']>;
|
|
4222
|
+
};
|
|
4146
4223
|
export declare type CcpQueryApiProductArgs = {
|
|
4147
4224
|
id: Scalars['ID']['input'];
|
|
4148
4225
|
};
|
|
@@ -4152,6 +4229,9 @@ export declare type CcpQueryApiQuotesArgs = {
|
|
|
4152
4229
|
export declare type CcpQueryApiTransactionAccountArgs = {
|
|
4153
4230
|
id: Scalars['ID']['input'];
|
|
4154
4231
|
};
|
|
4232
|
+
export declare type CcpQueryApiTransactionAccountsArgs = {
|
|
4233
|
+
ids: Array<Scalars['ID']['input']>;
|
|
4234
|
+
};
|
|
4155
4235
|
export declare type CcpQuote = Node & {
|
|
4156
4236
|
__typename?: 'CcpQuote';
|
|
4157
4237
|
autoRefresh?: Maybe<CcpQuoteAutoRefresh>;
|
|
@@ -4532,14 +4612,20 @@ export declare enum CcpTiersMode {
|
|
|
4532
4612
|
Graduated = "GRADUATED",
|
|
4533
4613
|
Volume = "VOLUME"
|
|
4534
4614
|
}
|
|
4535
|
-
export declare type CcpTransactionAccount = CommerceTransactionAccount & {
|
|
4615
|
+
export declare type CcpTransactionAccount = CommerceTransactionAccount & Node & {
|
|
4536
4616
|
__typename?: 'CcpTransactionAccount';
|
|
4617
|
+
description?: Maybe<Scalars['String']['output']>;
|
|
4537
4618
|
experienceCapabilities?: Maybe<CcpTransactionAccountExperienceCapabilities>;
|
|
4538
4619
|
id: Scalars['ID']['output'];
|
|
4620
|
+
isActive?: Maybe<Scalars['Boolean']['output']>;
|
|
4539
4621
|
isBillToPresent?: Maybe<Scalars['Boolean']['output']>;
|
|
4540
4622
|
isCurrentUserBillingAdmin?: Maybe<Scalars['Boolean']['output']>;
|
|
4541
4623
|
isManagedByPartner?: Maybe<Scalars['Boolean']['output']>;
|
|
4624
|
+
isMonetized?: Maybe<Scalars['Boolean']['output']>;
|
|
4542
4625
|
key?: Maybe<Scalars['String']['output']>;
|
|
4626
|
+
name?: Maybe<Scalars['String']['output']>;
|
|
4627
|
+
number?: Maybe<Scalars['String']['output']>;
|
|
4628
|
+
type?: Maybe<CcpTransactionAccountType>;
|
|
4543
4629
|
};
|
|
4544
4630
|
export declare type CcpTransactionAccountExperienceCapabilities = CommerceTransactionAccountExperienceCapabilities & {
|
|
4545
4631
|
__typename?: 'CcpTransactionAccountExperienceCapabilities';
|
|
@@ -4547,6 +4633,11 @@ export declare type CcpTransactionAccountExperienceCapabilities = CommerceTransa
|
|
|
4547
4633
|
addPaymentMethodV2?: Maybe<CcpAddPaymentMethodExperienceCapability>;
|
|
4548
4634
|
multipleProductUpgrades?: Maybe<CcpMultipleProductUpgradesExperienceCapability>;
|
|
4549
4635
|
};
|
|
4636
|
+
export declare enum CcpTransactionAccountType {
|
|
4637
|
+
Direct = "DIRECT",
|
|
4638
|
+
Partner = "PARTNER",
|
|
4639
|
+
UnaffiliatedReseller = "UNAFFILIATED_RESELLER"
|
|
4640
|
+
}
|
|
4550
4641
|
export declare type CcpTrial = CommerceTrial & {
|
|
4551
4642
|
__typename?: 'CcpTrial';
|
|
4552
4643
|
endBehaviour?: Maybe<CcpTrialEndBehaviour>;
|
|
@@ -6467,7 +6558,7 @@ export declare type CompassCreateBuildEventInput = {
|
|
|
6467
6558
|
export declare type CompassCreateCampaignInput = {
|
|
6468
6559
|
description: Scalars['String']['input'];
|
|
6469
6560
|
dueDate: Scalars['DateTime']['input'];
|
|
6470
|
-
goalId
|
|
6561
|
+
goalId: Scalars['ID']['input'];
|
|
6471
6562
|
name: Scalars['String']['input'];
|
|
6472
6563
|
scorecardId: Scalars['ID']['input'];
|
|
6473
6564
|
startDate?: InputMaybe<Scalars['DateTime']['input']>;
|
|
@@ -6667,6 +6758,15 @@ export declare type CompassCreateHasCustomTextFieldScorecardCriteriaInput = {
|
|
|
6667
6758
|
textComparatorValue?: InputMaybe<Scalars['String']['input']>;
|
|
6668
6759
|
weight: Scalars['Int']['input'];
|
|
6669
6760
|
};
|
|
6761
|
+
export declare type CompassCreateHasPackageDependencyScorecardCriteriaInput = {
|
|
6762
|
+
comparators: Array<CompassPackageDependencyComparatorInput>;
|
|
6763
|
+
description?: InputMaybe<Scalars['String']['input']>;
|
|
6764
|
+
name?: InputMaybe<Scalars['String']['input']>;
|
|
6765
|
+
packageManager: CompassPackageDependencyManagerOptions;
|
|
6766
|
+
packageName: Scalars['String']['input'];
|
|
6767
|
+
scoringStrategyRules?: InputMaybe<CompassCreateScorecardCriteriaScoringStrategyRulesInput>;
|
|
6768
|
+
weight: Scalars['Int']['input'];
|
|
6769
|
+
};
|
|
6670
6770
|
export declare type CompassCreateIncidentEventInput = {
|
|
6671
6771
|
description: Scalars['String']['input'];
|
|
6672
6772
|
displayName: Scalars['String']['input'];
|
|
@@ -7904,6 +8004,21 @@ export declare type CompassHasOwnerScorecardCriteria = CompassScorecardCriteria
|
|
|
7904
8004
|
export declare type CompassHasOwnerScorecardCriteriaScorecardCriteriaScoreArgs = {
|
|
7905
8005
|
query?: InputMaybe<CompassScorecardCriteriaScoreQuery>;
|
|
7906
8006
|
};
|
|
8007
|
+
export declare type CompassHasPackageDependencyScorecardCriteria = CompassScorecardCriteria & {
|
|
8008
|
+
__typename?: 'CompassHasPackageDependencyScorecardCriteria';
|
|
8009
|
+
comparators?: Maybe<Array<CompassPackageDependencyComparator>>;
|
|
8010
|
+
description?: Maybe<Scalars['String']['output']>;
|
|
8011
|
+
id: Scalars['ID']['output'];
|
|
8012
|
+
name?: Maybe<Scalars['String']['output']>;
|
|
8013
|
+
packageManager?: Maybe<Scalars['String']['output']>;
|
|
8014
|
+
packageName?: Maybe<Scalars['String']['output']>;
|
|
8015
|
+
scorecardCriteriaScore?: Maybe<CompassScorecardCriteriaScore>;
|
|
8016
|
+
scoringStrategyRules?: Maybe<CompassScorecardCriteriaScoringStrategyRules>;
|
|
8017
|
+
weight: Scalars['Int']['output'];
|
|
8018
|
+
};
|
|
8019
|
+
export declare type CompassHasPackageDependencyScorecardCriteriaScorecardCriteriaScoreArgs = {
|
|
8020
|
+
query?: InputMaybe<CompassScorecardCriteriaScoreQuery>;
|
|
8021
|
+
};
|
|
7907
8022
|
export declare type CompassIncidentEvent = CompassEvent & {
|
|
7908
8023
|
__typename?: 'CompassIncidentEvent';
|
|
7909
8024
|
description?: Maybe<Scalars['String']['output']>;
|
|
@@ -8102,6 +8217,15 @@ export declare type CompassLink = {
|
|
|
8102
8217
|
type: CompassLinkType;
|
|
8103
8218
|
url: Scalars['URL']['output'];
|
|
8104
8219
|
};
|
|
8220
|
+
export declare type CompassLinkNode = Node & {
|
|
8221
|
+
__typename?: 'CompassLinkNode';
|
|
8222
|
+
eventSources?: Maybe<Array<EventSource>>;
|
|
8223
|
+
id: Scalars['ID']['output'];
|
|
8224
|
+
name?: Maybe<Scalars['String']['output']>;
|
|
8225
|
+
objectId?: Maybe<Scalars['ID']['output']>;
|
|
8226
|
+
type: CompassLinkType;
|
|
8227
|
+
url: Scalars['URL']['output'];
|
|
8228
|
+
};
|
|
8105
8229
|
export declare enum CompassLinkType {
|
|
8106
8230
|
ChatChannel = "CHAT_CHANNEL",
|
|
8107
8231
|
Dashboard = "DASHBOARD",
|
|
@@ -8278,6 +8402,44 @@ export declare type CompassPackageDependentComponentsArgs = {
|
|
|
8278
8402
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
8279
8403
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
8280
8404
|
};
|
|
8405
|
+
export declare type CompassPackageDependencyComparator = CompassPackageDependencyNullaryComparator | CompassPackageDependencyUnaryComparator;
|
|
8406
|
+
export declare type CompassPackageDependencyComparatorInput = {
|
|
8407
|
+
packageDependencyNullaryComparatorInput?: InputMaybe<CompassPackageDependencyNullaryComparatorInput>;
|
|
8408
|
+
packageDependencyUnaryComparatorInput?: InputMaybe<CompassPackageDependencyUnaryComparatorInput>;
|
|
8409
|
+
};
|
|
8410
|
+
export declare enum CompassPackageDependencyManagerOptions {
|
|
8411
|
+
Npm = "NPM"
|
|
8412
|
+
}
|
|
8413
|
+
export declare type CompassPackageDependencyNullaryComparator = {
|
|
8414
|
+
__typename?: 'CompassPackageDependencyNullaryComparator';
|
|
8415
|
+
comparator?: Maybe<Scalars['String']['output']>;
|
|
8416
|
+
};
|
|
8417
|
+
export declare type CompassPackageDependencyNullaryComparatorInput = {
|
|
8418
|
+
comparator: CompassPackageDependencyNullaryComparatorOptions;
|
|
8419
|
+
};
|
|
8420
|
+
export declare enum CompassPackageDependencyNullaryComparatorOptions {
|
|
8421
|
+
IsAbsent = "IS_ABSENT",
|
|
8422
|
+
IsPresent = "IS_PRESENT"
|
|
8423
|
+
}
|
|
8424
|
+
export declare type CompassPackageDependencyUnaryComparator = {
|
|
8425
|
+
__typename?: 'CompassPackageDependencyUnaryComparator';
|
|
8426
|
+
comparator?: Maybe<Scalars['String']['output']>;
|
|
8427
|
+
comparatorValue?: Maybe<Scalars['String']['output']>;
|
|
8428
|
+
};
|
|
8429
|
+
export declare type CompassPackageDependencyUnaryComparatorInput = {
|
|
8430
|
+
comparator: CompassPackageDependencyUnaryComparatorOptions;
|
|
8431
|
+
comparatorValue: Scalars['String']['input'];
|
|
8432
|
+
};
|
|
8433
|
+
export declare enum CompassPackageDependencyUnaryComparatorOptions {
|
|
8434
|
+
CompatibleWith = "COMPATIBLE_WITH",
|
|
8435
|
+
Equals = "EQUALS",
|
|
8436
|
+
GreaterThan = "GREATER_THAN",
|
|
8437
|
+
GreaterThanOrEqualTo = "GREATER_THAN_OR_EQUAL_TO",
|
|
8438
|
+
LessThan = "LESS_THAN",
|
|
8439
|
+
LessThanOrEqualTo = "LESS_THAN_OR_EQUAL_TO",
|
|
8440
|
+
MatchesRegex = "MATCHES_REGEX",
|
|
8441
|
+
NotEqualTo = "NOT_EQUAL_TO"
|
|
8442
|
+
}
|
|
8281
8443
|
export declare type CompassPackageDependentComponentVersionsBySourceConnection = {
|
|
8282
8444
|
__typename?: 'CompassPackageDependentComponentVersionsBySourceConnection';
|
|
8283
8445
|
edges?: Maybe<Array<CompassPackageDependentComponentVersionsBySourceEdge>>;
|
|
@@ -9599,6 +9761,16 @@ export declare type CompassUpdateHasCustomTextFieldScorecardCriteriaInput = {
|
|
|
9599
9761
|
textComparatorValue?: InputMaybe<Scalars['String']['input']>;
|
|
9600
9762
|
weight?: InputMaybe<Scalars['Int']['input']>;
|
|
9601
9763
|
};
|
|
9764
|
+
export declare type CompassUpdateHasPackageDependencyScorecardCriteriaInput = {
|
|
9765
|
+
comparators?: InputMaybe<Array<CompassPackageDependencyComparatorInput>>;
|
|
9766
|
+
description?: InputMaybe<Scalars['String']['input']>;
|
|
9767
|
+
id: Scalars['ID']['input'];
|
|
9768
|
+
name?: InputMaybe<Scalars['String']['input']>;
|
|
9769
|
+
packageManager?: InputMaybe<CompassPackageDependencyManagerOptions>;
|
|
9770
|
+
packageName?: InputMaybe<Scalars['String']['input']>;
|
|
9771
|
+
scoringStrategyRules?: InputMaybe<CompassUpdateScorecardCriteriaScoringStrategyRulesInput>;
|
|
9772
|
+
weight?: InputMaybe<Scalars['Int']['input']>;
|
|
9773
|
+
};
|
|
9602
9774
|
export declare type CompassUpdateJqlMetricSourceUserInput = {
|
|
9603
9775
|
metricSourceId: Scalars['ID']['input'];
|
|
9604
9776
|
};
|
|
@@ -17517,6 +17689,12 @@ export declare type ConfluenceUserContentAccessResult = {
|
|
|
17517
17689
|
canAccessList: Array<Maybe<Scalars['String']['output']>>;
|
|
17518
17690
|
cannotAccessList: Array<Maybe<Scalars['String']['output']>>;
|
|
17519
17691
|
};
|
|
17692
|
+
export declare type ConfluenceUserHasPermission = {
|
|
17693
|
+
__typename?: 'ConfluenceUserHasPermission';
|
|
17694
|
+
hasPermission: Scalars['Boolean']['output'];
|
|
17695
|
+
principalId: Scalars['String']['output'];
|
|
17696
|
+
reason?: Maybe<Scalars['String']['output']>;
|
|
17697
|
+
};
|
|
17520
17698
|
export declare type ConfluenceUserInfo = {
|
|
17521
17699
|
__typename?: 'ConfluenceUserInfo';
|
|
17522
17700
|
type: ConfluenceUserType;
|
|
@@ -17526,6 +17704,10 @@ export declare enum ConfluenceUserType {
|
|
|
17526
17704
|
Anonymous = "ANONYMOUS",
|
|
17527
17705
|
Known = "KNOWN"
|
|
17528
17706
|
}
|
|
17707
|
+
export declare type ConfluenceUsersHavePermissionList = {
|
|
17708
|
+
__typename?: 'ConfluenceUsersHavePermissionList';
|
|
17709
|
+
usersHavePermissionList: Array<Maybe<ConfluenceUserHasPermission>>;
|
|
17710
|
+
};
|
|
17529
17711
|
export declare type ConfluenceValidateSpaceKeyResponse = {
|
|
17530
17712
|
__typename?: 'ConfluenceValidateSpaceKeyResponse';
|
|
17531
17713
|
generatedUniqueKey?: Maybe<Scalars['String']['output']>;
|
|
@@ -17746,6 +17928,7 @@ export declare type Content = {
|
|
|
17746
17928
|
archivableDescendantsCount: Scalars['Long']['output'];
|
|
17747
17929
|
archiveNote?: Maybe<Scalars['String']['output']>;
|
|
17748
17930
|
archivedContentMetadata?: Maybe<ArchivedContentMetadata>;
|
|
17931
|
+
ari?: Maybe<Scalars['ID']['output']>;
|
|
17749
17932
|
attachments?: Maybe<PaginatedContentList>;
|
|
17750
17933
|
blank: Scalars['Boolean']['output'];
|
|
17751
17934
|
body?: Maybe<ContentBodyPerRepresentation>;
|
|
@@ -17770,6 +17953,7 @@ export declare type Content = {
|
|
|
17770
17953
|
dataClassificationLevel?: Maybe<ContentDataClassificationLevel>;
|
|
17771
17954
|
dataClassificationLevelId?: Maybe<Scalars['String']['output']>;
|
|
17772
17955
|
deletableDescendantsCount: Scalars['Long']['output'];
|
|
17956
|
+
draftVersion?: Maybe<Version>;
|
|
17773
17957
|
dynamicMobileBody?: Maybe<ContentBody>;
|
|
17774
17958
|
embeddedProduct?: Maybe<Scalars['String']['output']>;
|
|
17775
17959
|
excerpt: Scalars['String']['output'];
|
|
@@ -19696,6 +19880,11 @@ export declare type ContentVersionHistoryPageInfo = {
|
|
|
19696
19880
|
hasPreviousPage: Scalars['Boolean']['output'];
|
|
19697
19881
|
startCursor?: Maybe<Scalars['String']['output']>;
|
|
19698
19882
|
};
|
|
19883
|
+
export declare enum Context {
|
|
19884
|
+
Compass = "COMPASS",
|
|
19885
|
+
Confluence = "CONFLUENCE",
|
|
19886
|
+
Jira = "JIRA"
|
|
19887
|
+
}
|
|
19699
19888
|
export declare type ContextEventObject = {
|
|
19700
19889
|
__typename?: 'ContextEventObject';
|
|
19701
19890
|
attributes: Scalars['JSON']['output'];
|
|
@@ -20037,6 +20226,7 @@ export declare type CreateCompassHasOwnerScorecardCriteriaInput = {
|
|
|
20037
20226
|
};
|
|
20038
20227
|
export declare type CreateCompassLinkInput = {
|
|
20039
20228
|
name?: InputMaybe<Scalars['String']['input']>;
|
|
20229
|
+
objectId?: InputMaybe<Scalars['ID']['input']>;
|
|
20040
20230
|
type: CompassLinkType;
|
|
20041
20231
|
url: Scalars['URL']['input'];
|
|
20042
20232
|
};
|
|
@@ -20064,6 +20254,7 @@ export declare type CreateCompassScorecardCriteriaInput = {
|
|
|
20064
20254
|
hasLink?: InputMaybe<CreateCompassHasLinkScorecardCriteriaInput>;
|
|
20065
20255
|
hasMetricValue?: InputMaybe<CreateCompassHasMetricValueCriteriaInput>;
|
|
20066
20256
|
hasOwner?: InputMaybe<CreateCompassHasOwnerScorecardCriteriaInput>;
|
|
20257
|
+
hasPackageDependency?: InputMaybe<CompassCreateHasPackageDependencyScorecardCriteriaInput>;
|
|
20067
20258
|
};
|
|
20068
20259
|
export declare type CreateCompassScorecardInput = {
|
|
20069
20260
|
componentCreationTimeFilter?: InputMaybe<CompassComponentCreationTimeFilterInput>;
|
|
@@ -20318,6 +20509,7 @@ export declare type CreateJiraPlaybookStepInput = {
|
|
|
20318
20509
|
};
|
|
20319
20510
|
export declare type CreateJiraPlaybookStepRunInput = {
|
|
20320
20511
|
playbookInstanceStepAri: Scalars['ID']['input'];
|
|
20512
|
+
targetTransition?: InputMaybe<TargetTransition>;
|
|
20321
20513
|
userInputs?: InputMaybe<Array<UserInput>>;
|
|
20322
20514
|
};
|
|
20323
20515
|
export declare type CreateJiraPlaybookStepRunPayload = Payload & {
|
|
@@ -20353,6 +20545,23 @@ export declare type CreateMentionReminderNotificationPayload = Payload & {
|
|
|
20353
20545
|
failedAccountIds?: Maybe<Array<Maybe<Scalars['String']['output']>>>;
|
|
20354
20546
|
success: Scalars['Boolean']['output'];
|
|
20355
20547
|
};
|
|
20548
|
+
export declare type CreateMetadataInput = {
|
|
20549
|
+
extraProps?: InputMaybe<Array<PropInput>>;
|
|
20550
|
+
isPinned?: InputMaybe<Scalars['Boolean']['input']>;
|
|
20551
|
+
labels?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
20552
|
+
productLink?: InputMaybe<Scalars['String']['input']>;
|
|
20553
|
+
};
|
|
20554
|
+
export declare type CreateNoteInput = {
|
|
20555
|
+
body?: InputMaybe<Scalars['String']['input']>;
|
|
20556
|
+
metadata?: InputMaybe<CreateMetadataInput>;
|
|
20557
|
+
title?: InputMaybe<Scalars['String']['input']>;
|
|
20558
|
+
};
|
|
20559
|
+
export declare type CreateNotePayload = {
|
|
20560
|
+
__typename?: 'CreateNotePayload';
|
|
20561
|
+
errors?: Maybe<Array<NoteMutationError>>;
|
|
20562
|
+
note?: Maybe<NoteResponse>;
|
|
20563
|
+
success: Scalars['Boolean']['output'];
|
|
20564
|
+
};
|
|
20356
20565
|
export declare type CreatePersonalSpaceInput = {
|
|
20357
20566
|
copySpacePermissionsFromSpaceKey?: InputMaybe<Scalars['String']['input']>;
|
|
20358
20567
|
initialPermissionOption?: InputMaybe<InitialPermissionOptions>;
|
|
@@ -20606,6 +20815,11 @@ export declare type CsmAiAuthenticationInput = {
|
|
|
20606
20815
|
export declare enum CsmAiAuthenticationType {
|
|
20607
20816
|
NoAuth = "NO_AUTH"
|
|
20608
20817
|
}
|
|
20818
|
+
export declare type CsmAiConnectorConfiguration = CsmAiMessageHandoff | CsmAiTicketingHandoff;
|
|
20819
|
+
export declare type CsmAiConnectorConfigurationInput = {
|
|
20820
|
+
messageHandoff?: InputMaybe<CsmAiMessageHandoffInput>;
|
|
20821
|
+
ticketingHandoff?: InputMaybe<CsmAiTicketingHandoffInput>;
|
|
20822
|
+
};
|
|
20609
20823
|
export declare type CsmAiCreateActionInput = {
|
|
20610
20824
|
actionType: CsmAiActionType;
|
|
20611
20825
|
apiOperation: CsmAiApiOperationInput;
|
|
@@ -20626,6 +20840,22 @@ export declare type CsmAiDeleteActionPayload = Payload & {
|
|
|
20626
20840
|
errors?: Maybe<Array<MutationError>>;
|
|
20627
20841
|
success: Scalars['Boolean']['output'];
|
|
20628
20842
|
};
|
|
20843
|
+
export declare type CsmAiHandoffConfig = {
|
|
20844
|
+
__typename?: 'CsmAiHandoffConfig';
|
|
20845
|
+
connectorConfiguration: CsmAiConnectorConfiguration;
|
|
20846
|
+
enabled: Scalars['Boolean']['output'];
|
|
20847
|
+
id: Scalars['ID']['output'];
|
|
20848
|
+
type: CsmAiHandoffType;
|
|
20849
|
+
};
|
|
20850
|
+
export declare type CsmAiHandoffConfigResult = CsmAiHandoffConfig | QueryError;
|
|
20851
|
+
export declare enum CsmAiHandoffType {
|
|
20852
|
+
Csm = "CSM",
|
|
20853
|
+
Message = "MESSAGE"
|
|
20854
|
+
}
|
|
20855
|
+
export declare enum CsmAiHandoffTypeInput {
|
|
20856
|
+
Csm = "CSM",
|
|
20857
|
+
Message = "MESSAGE"
|
|
20858
|
+
}
|
|
20629
20859
|
export declare enum CsmAiHttpMethod {
|
|
20630
20860
|
Delete = "DELETE",
|
|
20631
20861
|
Get = "GET",
|
|
@@ -20637,6 +20867,7 @@ export declare type CsmAiHub = {
|
|
|
20637
20867
|
__typename?: 'CsmAiHub';
|
|
20638
20868
|
actions?: Maybe<Array<Maybe<CsmAiActionResult>>>;
|
|
20639
20869
|
agent?: Maybe<CsmAiAgentResult>;
|
|
20870
|
+
handoffConfigs?: Maybe<Array<Maybe<CsmAiHandoffConfigResult>>>;
|
|
20640
20871
|
id: Scalars['ID']['output'];
|
|
20641
20872
|
};
|
|
20642
20873
|
export declare type CsmAiHubResult = CsmAiHub | QueryError;
|
|
@@ -20649,6 +20880,20 @@ export declare type CsmAiKeyValuePair = {
|
|
|
20649
20880
|
key?: Maybe<Scalars['String']['output']>;
|
|
20650
20881
|
value?: Maybe<Scalars['String']['output']>;
|
|
20651
20882
|
};
|
|
20883
|
+
export declare type CsmAiMessageHandoff = {
|
|
20884
|
+
__typename?: 'CsmAiMessageHandoff';
|
|
20885
|
+
message: Scalars['String']['output'];
|
|
20886
|
+
};
|
|
20887
|
+
export declare type CsmAiMessageHandoffInput = {
|
|
20888
|
+
message: Scalars['String']['input'];
|
|
20889
|
+
};
|
|
20890
|
+
export declare type CsmAiTicketingHandoff = {
|
|
20891
|
+
__typename?: 'CsmAiTicketingHandoff';
|
|
20892
|
+
formId: Scalars['ID']['output'];
|
|
20893
|
+
};
|
|
20894
|
+
export declare type CsmAiTicketingHandoffInput = {
|
|
20895
|
+
formId: Scalars['ID']['input'];
|
|
20896
|
+
};
|
|
20652
20897
|
export declare type CsmAiUpdateActionInput = {
|
|
20653
20898
|
actionType?: InputMaybe<CsmAiActionType>;
|
|
20654
20899
|
apiOperation?: InputMaybe<CsmAiApiOperationInput>;
|
|
@@ -20684,6 +20929,17 @@ export declare type CsmAiUpdateAgentPayload = Payload & {
|
|
|
20684
20929
|
errors?: Maybe<Array<MutationError>>;
|
|
20685
20930
|
success: Scalars['Boolean']['output'];
|
|
20686
20931
|
};
|
|
20932
|
+
export declare type CsmAiUpdateHandoffConfigInput = {
|
|
20933
|
+
connectorConfiguration: CsmAiConnectorConfigurationInput;
|
|
20934
|
+
enabled: Scalars['Boolean']['input'];
|
|
20935
|
+
type: CsmAiHandoffTypeInput;
|
|
20936
|
+
};
|
|
20937
|
+
export declare type CsmAiUpdateHandoffConfigPayload = Payload & {
|
|
20938
|
+
__typename?: 'CsmAiUpdateHandoffConfigPayload';
|
|
20939
|
+
errors?: Maybe<Array<MutationError>>;
|
|
20940
|
+
handoffConfig?: Maybe<CsmAiHandoffConfig>;
|
|
20941
|
+
success: Scalars['Boolean']['output'];
|
|
20942
|
+
};
|
|
20687
20943
|
export declare type CumulativeFlowDiagram = {
|
|
20688
20944
|
__typename?: 'CumulativeFlowDiagram';
|
|
20689
20945
|
chart: CfdChartConnection;
|
|
@@ -21244,6 +21500,7 @@ export declare type CustomerServiceIndividualNotesArgs = {
|
|
|
21244
21500
|
export declare type CustomerServiceIndividualRequestsArgs = {
|
|
21245
21501
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
21246
21502
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
21503
|
+
helpCenterId?: InputMaybe<Scalars['ID']['input']>;
|
|
21247
21504
|
};
|
|
21248
21505
|
export declare type CustomerServiceIndividualDeletePayload = Payload & {
|
|
21249
21506
|
__typename?: 'CustomerServiceIndividualDeletePayload';
|
|
@@ -21666,6 +21923,7 @@ export declare type CustomerServiceQueryApiProductsArgs = {
|
|
|
21666
21923
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
21667
21924
|
};
|
|
21668
21925
|
export declare type CustomerServiceQueryApiRequestByIssueKeyArgs = {
|
|
21926
|
+
helpCenterId?: InputMaybe<Scalars['ID']['input']>;
|
|
21669
21927
|
issueKey: Scalars['String']['input'];
|
|
21670
21928
|
};
|
|
21671
21929
|
export declare type CustomerServiceQueryApiTemplateFormByIdArgs = {
|
|
@@ -21685,6 +21943,7 @@ export declare type CustomerServiceRequest = {
|
|
|
21685
21943
|
key?: Maybe<Scalars['String']['output']>;
|
|
21686
21944
|
statusKey?: Maybe<CustomerServiceStatusKey>;
|
|
21687
21945
|
summary?: Maybe<Scalars['String']['output']>;
|
|
21946
|
+
templateForm?: Maybe<CustomerServiceTemplateForm>;
|
|
21688
21947
|
};
|
|
21689
21948
|
export declare type CustomerServiceRequestByKeyResult = CustomerServiceRequest | QueryError;
|
|
21690
21949
|
export declare type CustomerServiceRequestConnection = {
|
|
@@ -22249,6 +22508,15 @@ export declare type DeleteLabelPayload = {
|
|
|
22249
22508
|
contentId: Scalars['ID']['output'];
|
|
22250
22509
|
label: Scalars['String']['output'];
|
|
22251
22510
|
};
|
|
22511
|
+
export declare type DeleteNoteInput = {
|
|
22512
|
+
ari: Scalars['String']['input'];
|
|
22513
|
+
};
|
|
22514
|
+
export declare type DeleteNotePayload = {
|
|
22515
|
+
__typename?: 'DeleteNotePayload';
|
|
22516
|
+
ari?: Maybe<Scalars['String']['output']>;
|
|
22517
|
+
errors?: Maybe<Array<NoteMutationError>>;
|
|
22518
|
+
success: Scalars['Boolean']['output'];
|
|
22519
|
+
};
|
|
22252
22520
|
export declare type DeletePagesInput = {
|
|
22253
22521
|
areChildrenIncluded?: InputMaybe<Scalars['Boolean']['input']>;
|
|
22254
22522
|
excludedBranchRootPageIDs?: InputMaybe<Array<InputMaybe<Scalars['Long']['input']>>>;
|
|
@@ -23597,6 +23865,7 @@ export declare type DevOpsMetricsPerIssueMetricsFilter = {
|
|
|
23597
23865
|
};
|
|
23598
23866
|
export declare type DevOpsMetricsPerProjectPrCycleTimeMetrics = {
|
|
23599
23867
|
__typename?: 'DevOpsMetricsPerProjectPRCycleTimeMetrics';
|
|
23868
|
+
medianHistoricalPRCycleTime: Scalars['Float']['output'];
|
|
23600
23869
|
medianPRCycleTime: Scalars['Float']['output'];
|
|
23601
23870
|
perDayPRMetrics: Array<Maybe<DevOpsMetricsDailyReviewTimeData>>;
|
|
23602
23871
|
};
|
|
@@ -31471,13 +31740,16 @@ export declare type GraphStore = {
|
|
|
31471
31740
|
componentAssociatedDocumentInverse?: Maybe<GraphStoreSimplifiedComponentAssociatedDocumentInverseConnection>;
|
|
31472
31741
|
componentAssociatedDocumentInverseRelationship?: Maybe<GraphStoreFullComponentAssociatedDocumentConnection>;
|
|
31473
31742
|
componentAssociatedDocumentRelationship?: Maybe<GraphStoreFullComponentAssociatedDocumentConnection>;
|
|
31743
|
+
componentHasComponentLink?: Maybe<GraphStoreSimplifiedComponentHasComponentLinkConnection>;
|
|
31474
31744
|
componentHasComponentLinkInverse?: Maybe<GraphStoreSimplifiedComponentHasComponentLinkInverseConnection>;
|
|
31475
31745
|
componentImpactedByIncident?: Maybe<GraphStoreSimplifiedComponentImpactedByIncidentConnection>;
|
|
31476
31746
|
componentImpactedByIncidentInverse?: Maybe<GraphStoreSimplifiedComponentImpactedByIncidentInverseConnection>;
|
|
31477
31747
|
componentImpactedByIncidentInverseRelationship?: Maybe<GraphStoreFullComponentImpactedByIncidentConnection>;
|
|
31478
31748
|
componentImpactedByIncidentRelationship?: Maybe<GraphStoreFullComponentImpactedByIncidentConnection>;
|
|
31479
31749
|
componentLinkIsJiraProject?: Maybe<GraphStoreSimplifiedComponentLinkIsJiraProjectConnection>;
|
|
31750
|
+
componentLinkIsJiraProjectInverse?: Maybe<GraphStoreSimplifiedComponentLinkIsJiraProjectInverseConnection>;
|
|
31480
31751
|
componentLinkIsProviderRepo?: Maybe<GraphStoreSimplifiedComponentLinkIsProviderRepoConnection>;
|
|
31752
|
+
componentLinkIsProviderRepoInverse?: Maybe<GraphStoreSimplifiedComponentLinkIsProviderRepoInverseConnection>;
|
|
31481
31753
|
componentLinkedJswIssue?: Maybe<GraphStoreSimplifiedComponentLinkedJswIssueConnection>;
|
|
31482
31754
|
componentLinkedJswIssueInverse?: Maybe<GraphStoreSimplifiedComponentLinkedJswIssueInverseConnection>;
|
|
31483
31755
|
componentLinkedJswIssueInverseRelationship?: Maybe<GraphStoreFullComponentLinkedJswIssueConnection>;
|
|
@@ -31641,6 +31913,7 @@ export declare type GraphStore = {
|
|
|
31641
31913
|
issueHasAutodevJobInverse?: Maybe<GraphStoreSimplifiedIssueHasAutodevJobInverseConnection>;
|
|
31642
31914
|
issueHasChangedPriority?: Maybe<GraphStoreSimplifiedIssueHasChangedPriorityConnection>;
|
|
31643
31915
|
issueHasChangedPriorityInverse?: Maybe<GraphStoreSimplifiedIssueHasChangedPriorityInverseConnection>;
|
|
31916
|
+
issueHasChangedStatus?: Maybe<GraphStoreSimplifiedIssueHasChangedStatusConnection>;
|
|
31644
31917
|
issueHasChangedStatusInverse?: Maybe<GraphStoreSimplifiedIssueHasChangedStatusInverseConnection>;
|
|
31645
31918
|
issueMentionedInConversation?: Maybe<GraphStoreSimplifiedIssueMentionedInConversationConnection>;
|
|
31646
31919
|
issueMentionedInConversationInverse?: Maybe<GraphStoreSimplifiedIssueMentionedInConversationInverseConnection>;
|
|
@@ -31710,9 +31983,11 @@ export declare type GraphStore = {
|
|
|
31710
31983
|
mediaAttachedToContentBatch?: Maybe<GraphStoreBatchMediaAttachedToContentConnection>;
|
|
31711
31984
|
mediaAttachedToContentInverseBatch?: Maybe<GraphStoreBatchMediaAttachedToContentConnection>;
|
|
31712
31985
|
meetingHasMeetingNotesPage?: Maybe<GraphStoreSimplifiedMeetingHasMeetingNotesPageConnection>;
|
|
31986
|
+
meetingHasMeetingNotesPageInverse?: Maybe<GraphStoreSimplifiedMeetingHasMeetingNotesPageInverseConnection>;
|
|
31713
31987
|
meetingRecordingOwnerHasMeetingNotesFolder?: Maybe<GraphStoreSimplifiedMeetingRecordingOwnerHasMeetingNotesFolderConnection>;
|
|
31714
31988
|
meetingRecordingOwnerHasMeetingNotesFolderInverse?: Maybe<GraphStoreSimplifiedMeetingRecordingOwnerHasMeetingNotesFolderInverseConnection>;
|
|
31715
31989
|
meetingRecurrenceHasMeetingRecurrenceNotesPage?: Maybe<GraphStoreSimplifiedMeetingRecurrenceHasMeetingRecurrenceNotesPageConnection>;
|
|
31990
|
+
meetingRecurrenceHasMeetingRecurrenceNotesPageInverse?: Maybe<GraphStoreSimplifiedMeetingRecurrenceHasMeetingRecurrenceNotesPageInverseConnection>;
|
|
31716
31991
|
onPremProjectHasIssue?: Maybe<GraphStoreSimplifiedOnPremProjectHasIssueConnection>;
|
|
31717
31992
|
onPremProjectHasIssueInverse?: Maybe<GraphStoreSimplifiedOnPremProjectHasIssueInverseConnection>;
|
|
31718
31993
|
operationsContainerImpactedByIncident?: Maybe<GraphStoreSimplifiedOperationsContainerImpactedByIncidentConnection>;
|
|
@@ -31956,6 +32231,8 @@ export declare type GraphStore = {
|
|
|
31956
32231
|
userContributedConfluenceWhiteboardInverse?: Maybe<GraphStoreSimplifiedUserContributedConfluenceWhiteboardInverseConnection>;
|
|
31957
32232
|
userCreatedAtlasGoal?: Maybe<GraphStoreSimplifiedUserCreatedAtlasGoalConnection>;
|
|
31958
32233
|
userCreatedAtlasGoalInverse?: Maybe<GraphStoreSimplifiedUserCreatedAtlasGoalInverseConnection>;
|
|
32234
|
+
userCreatedAtlasProject?: Maybe<GraphStoreSimplifiedUserCreatedAtlasProjectConnection>;
|
|
32235
|
+
userCreatedAtlasProjectInverse?: Maybe<GraphStoreSimplifiedUserCreatedAtlasProjectInverseConnection>;
|
|
31959
32236
|
userCreatedBranch?: Maybe<GraphStoreSimplifiedUserCreatedBranchConnection>;
|
|
31960
32237
|
userCreatedBranchInverse?: Maybe<GraphStoreSimplifiedUserCreatedBranchInverseConnection>;
|
|
31961
32238
|
userCreatedCalendarEvent?: Maybe<GraphStoreSimplifiedUserCreatedCalendarEventConnection>;
|
|
@@ -31976,8 +32253,10 @@ export declare type GraphStore = {
|
|
|
31976
32253
|
userCreatedDesignInverse?: Maybe<GraphStoreSimplifiedUserCreatedDesignInverseConnection>;
|
|
31977
32254
|
userCreatedDocument?: Maybe<GraphStoreSimplifiedUserCreatedDocumentConnection>;
|
|
31978
32255
|
userCreatedDocumentInverse?: Maybe<GraphStoreSimplifiedUserCreatedDocumentInverseConnection>;
|
|
32256
|
+
userCreatedIssue?: Maybe<GraphStoreSimplifiedUserCreatedIssueConnection>;
|
|
31979
32257
|
userCreatedIssueComment?: Maybe<GraphStoreSimplifiedUserCreatedIssueCommentConnection>;
|
|
31980
32258
|
userCreatedIssueCommentInverse?: Maybe<GraphStoreSimplifiedUserCreatedIssueCommentInverseConnection>;
|
|
32259
|
+
userCreatedIssueInverse?: Maybe<GraphStoreSimplifiedUserCreatedIssueInverseConnection>;
|
|
31981
32260
|
userCreatedIssueWorklog?: Maybe<GraphStoreSimplifiedUserCreatedIssueWorklogConnection>;
|
|
31982
32261
|
userCreatedIssueWorklogInverse?: Maybe<GraphStoreSimplifiedUserCreatedIssueWorklogInverseConnection>;
|
|
31983
32262
|
userCreatedMessage?: Maybe<GraphStoreSimplifiedUserCreatedMessageConnection>;
|
|
@@ -31988,6 +32267,8 @@ export declare type GraphStore = {
|
|
|
31988
32267
|
userCreatedRemoteLinkInverse?: Maybe<GraphStoreSimplifiedUserCreatedRemoteLinkInverseConnection>;
|
|
31989
32268
|
userCreatedRepository?: Maybe<GraphStoreSimplifiedUserCreatedRepositoryConnection>;
|
|
31990
32269
|
userCreatedRepositoryInverse?: Maybe<GraphStoreSimplifiedUserCreatedRepositoryInverseConnection>;
|
|
32270
|
+
userCreatedTownsquareComment?: Maybe<GraphStoreSimplifiedUserCreatedTownsquareCommentConnection>;
|
|
32271
|
+
userCreatedTownsquareCommentInverse?: Maybe<GraphStoreSimplifiedUserCreatedTownsquareCommentInverseConnection>;
|
|
31991
32272
|
userCreatedVideo?: Maybe<GraphStoreSimplifiedUserCreatedVideoConnection>;
|
|
31992
32273
|
userCreatedVideoComment?: Maybe<GraphStoreSimplifiedUserCreatedVideoCommentConnection>;
|
|
31993
32274
|
userCreatedVideoCommentInverse?: Maybe<GraphStoreSimplifiedUserCreatedVideoCommentInverseConnection>;
|
|
@@ -32514,6 +32795,13 @@ export declare type GraphStoreComponentAssociatedDocumentRelationshipArgs = {
|
|
|
32514
32795
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
32515
32796
|
id: Scalars['ID']['input'];
|
|
32516
32797
|
};
|
|
32798
|
+
export declare type GraphStoreComponentHasComponentLinkArgs = {
|
|
32799
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
32800
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
32801
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
32802
|
+
id: Scalars['ID']['input'];
|
|
32803
|
+
sort?: InputMaybe<GraphStoreComponentHasComponentLinkSortInput>;
|
|
32804
|
+
};
|
|
32517
32805
|
export declare type GraphStoreComponentHasComponentLinkInverseArgs = {
|
|
32518
32806
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
32519
32807
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -32552,6 +32840,13 @@ export declare type GraphStoreComponentLinkIsJiraProjectArgs = {
|
|
|
32552
32840
|
id: Scalars['ID']['input'];
|
|
32553
32841
|
sort?: InputMaybe<GraphStoreComponentLinkIsJiraProjectSortInput>;
|
|
32554
32842
|
};
|
|
32843
|
+
export declare type GraphStoreComponentLinkIsJiraProjectInverseArgs = {
|
|
32844
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
32845
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
32846
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
32847
|
+
id: Scalars['ID']['input'];
|
|
32848
|
+
sort?: InputMaybe<GraphStoreComponentLinkIsJiraProjectSortInput>;
|
|
32849
|
+
};
|
|
32555
32850
|
export declare type GraphStoreComponentLinkIsProviderRepoArgs = {
|
|
32556
32851
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
32557
32852
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -32559,6 +32854,13 @@ export declare type GraphStoreComponentLinkIsProviderRepoArgs = {
|
|
|
32559
32854
|
id: Scalars['ID']['input'];
|
|
32560
32855
|
sort?: InputMaybe<GraphStoreComponentLinkIsProviderRepoSortInput>;
|
|
32561
32856
|
};
|
|
32857
|
+
export declare type GraphStoreComponentLinkIsProviderRepoInverseArgs = {
|
|
32858
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
32859
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
32860
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
32861
|
+
id: Scalars['ID']['input'];
|
|
32862
|
+
sort?: InputMaybe<GraphStoreComponentLinkIsProviderRepoSortInput>;
|
|
32863
|
+
};
|
|
32562
32864
|
export declare type GraphStoreComponentLinkedJswIssueArgs = {
|
|
32563
32865
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
32564
32866
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -33620,6 +33922,13 @@ export declare type GraphStoreIssueHasChangedPriorityInverseArgs = {
|
|
|
33620
33922
|
id: Scalars['ID']['input'];
|
|
33621
33923
|
sort?: InputMaybe<GraphStoreIssueHasChangedPrioritySortInput>;
|
|
33622
33924
|
};
|
|
33925
|
+
export declare type GraphStoreIssueHasChangedStatusArgs = {
|
|
33926
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
33927
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
33928
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
33929
|
+
id: Scalars['ID']['input'];
|
|
33930
|
+
sort?: InputMaybe<GraphStoreIssueHasChangedStatusSortInput>;
|
|
33931
|
+
};
|
|
33623
33932
|
export declare type GraphStoreIssueHasChangedStatusInverseArgs = {
|
|
33624
33933
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
33625
33934
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -34067,6 +34376,13 @@ export declare type GraphStoreMeetingHasMeetingNotesPageArgs = {
|
|
|
34067
34376
|
id: Scalars['ID']['input'];
|
|
34068
34377
|
sort?: InputMaybe<GraphStoreMeetingHasMeetingNotesPageSortInput>;
|
|
34069
34378
|
};
|
|
34379
|
+
export declare type GraphStoreMeetingHasMeetingNotesPageInverseArgs = {
|
|
34380
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
34381
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
34382
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
34383
|
+
id: Scalars['ID']['input'];
|
|
34384
|
+
sort?: InputMaybe<GraphStoreMeetingHasMeetingNotesPageSortInput>;
|
|
34385
|
+
};
|
|
34070
34386
|
export declare type GraphStoreMeetingRecordingOwnerHasMeetingNotesFolderArgs = {
|
|
34071
34387
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
34072
34388
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -34088,6 +34404,13 @@ export declare type GraphStoreMeetingRecurrenceHasMeetingRecurrenceNotesPageArgs
|
|
|
34088
34404
|
id: Scalars['ID']['input'];
|
|
34089
34405
|
sort?: InputMaybe<GraphStoreMeetingRecurrenceHasMeetingRecurrenceNotesPageSortInput>;
|
|
34090
34406
|
};
|
|
34407
|
+
export declare type GraphStoreMeetingRecurrenceHasMeetingRecurrenceNotesPageInverseArgs = {
|
|
34408
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
34409
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
34410
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
34411
|
+
id: Scalars['ID']['input'];
|
|
34412
|
+
sort?: InputMaybe<GraphStoreMeetingRecurrenceHasMeetingRecurrenceNotesPageSortInput>;
|
|
34413
|
+
};
|
|
34091
34414
|
export declare type GraphStoreOnPremProjectHasIssueArgs = {
|
|
34092
34415
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
34093
34416
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -35707,6 +36030,20 @@ export declare type GraphStoreUserCreatedAtlasGoalInverseArgs = {
|
|
|
35707
36030
|
id: Scalars['ID']['input'];
|
|
35708
36031
|
sort?: InputMaybe<GraphStoreUserCreatedAtlasGoalSortInput>;
|
|
35709
36032
|
};
|
|
36033
|
+
export declare type GraphStoreUserCreatedAtlasProjectArgs = {
|
|
36034
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
36035
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
36036
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
36037
|
+
id: Scalars['ID']['input'];
|
|
36038
|
+
sort?: InputMaybe<GraphStoreUserCreatedAtlasProjectSortInput>;
|
|
36039
|
+
};
|
|
36040
|
+
export declare type GraphStoreUserCreatedAtlasProjectInverseArgs = {
|
|
36041
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
36042
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
36043
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
36044
|
+
id: Scalars['ID']['input'];
|
|
36045
|
+
sort?: InputMaybe<GraphStoreUserCreatedAtlasProjectSortInput>;
|
|
36046
|
+
};
|
|
35710
36047
|
export declare type GraphStoreUserCreatedBranchArgs = {
|
|
35711
36048
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
35712
36049
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -35849,6 +36186,13 @@ export declare type GraphStoreUserCreatedDocumentInverseArgs = {
|
|
|
35849
36186
|
id: Scalars['ID']['input'];
|
|
35850
36187
|
sort?: InputMaybe<GraphStoreUserCreatedDocumentSortInput>;
|
|
35851
36188
|
};
|
|
36189
|
+
export declare type GraphStoreUserCreatedIssueArgs = {
|
|
36190
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
36191
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
36192
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
36193
|
+
id: Scalars['ID']['input'];
|
|
36194
|
+
sort?: InputMaybe<GraphStoreUserCreatedIssueSortInput>;
|
|
36195
|
+
};
|
|
35852
36196
|
export declare type GraphStoreUserCreatedIssueCommentArgs = {
|
|
35853
36197
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
35854
36198
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -35863,6 +36207,13 @@ export declare type GraphStoreUserCreatedIssueCommentInverseArgs = {
|
|
|
35863
36207
|
id: Scalars['ID']['input'];
|
|
35864
36208
|
sort?: InputMaybe<GraphStoreUserCreatedIssueCommentSortInput>;
|
|
35865
36209
|
};
|
|
36210
|
+
export declare type GraphStoreUserCreatedIssueInverseArgs = {
|
|
36211
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
36212
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
36213
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
36214
|
+
id: Scalars['ID']['input'];
|
|
36215
|
+
sort?: InputMaybe<GraphStoreUserCreatedIssueSortInput>;
|
|
36216
|
+
};
|
|
35866
36217
|
export declare type GraphStoreUserCreatedIssueWorklogArgs = {
|
|
35867
36218
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
35868
36219
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -35933,6 +36284,20 @@ export declare type GraphStoreUserCreatedRepositoryInverseArgs = {
|
|
|
35933
36284
|
id: Scalars['ID']['input'];
|
|
35934
36285
|
sort?: InputMaybe<GraphStoreUserCreatedRepositorySortInput>;
|
|
35935
36286
|
};
|
|
36287
|
+
export declare type GraphStoreUserCreatedTownsquareCommentArgs = {
|
|
36288
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
36289
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
36290
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
36291
|
+
id: Scalars['ID']['input'];
|
|
36292
|
+
sort?: InputMaybe<GraphStoreUserCreatedTownsquareCommentSortInput>;
|
|
36293
|
+
};
|
|
36294
|
+
export declare type GraphStoreUserCreatedTownsquareCommentInverseArgs = {
|
|
36295
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
36296
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
36297
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
36298
|
+
id: Scalars['ID']['input'];
|
|
36299
|
+
sort?: InputMaybe<GraphStoreUserCreatedTownsquareCommentSortInput>;
|
|
36300
|
+
};
|
|
35936
36301
|
export declare type GraphStoreUserCreatedVideoArgs = {
|
|
35937
36302
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
35938
36303
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -38608,7 +38973,7 @@ export declare type GraphStoreCypherQueryFromNode = {
|
|
|
38608
38973
|
data?: Maybe<GraphStoreCypherQueryFromNodeUnion>;
|
|
38609
38974
|
id: Scalars['ID']['output'];
|
|
38610
38975
|
};
|
|
38611
|
-
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;
|
|
38976
|
+
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 | LoomMeeting | LoomMeetingRecurrence | LoomSpace | LoomVideo | MercuryFocusArea | OpsgenieTeam | RadarPosition | SpfDependency | TeamV2 | ThirdPartySecurityContainer | ThirdPartyUser | TownsquareComment | TownsquareGoal | TownsquareGoalUpdate | TownsquareProject | TownsquareProjectUpdate;
|
|
38612
38977
|
export declare type GraphStoreCypherQueryIntObject = {
|
|
38613
38978
|
__typename?: 'GraphStoreCypherQueryIntObject';
|
|
38614
38979
|
value: Scalars['Int']['output'];
|
|
@@ -38643,7 +39008,7 @@ export declare type GraphStoreCypherQueryRowItemNode = {
|
|
|
38643
39008
|
data?: Maybe<GraphStoreCypherQueryRowItemNodeNodeUnion>;
|
|
38644
39009
|
id: Scalars['ID']['output'];
|
|
38645
39010
|
};
|
|
38646
|
-
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;
|
|
39011
|
+
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 | LoomMeeting | LoomMeetingRecurrence | LoomSpace | LoomVideo | MercuryFocusArea | OpsgenieTeam | RadarPosition | SpfDependency | TeamV2 | ThirdPartySecurityContainer | ThirdPartyUser | TownsquareComment | TownsquareGoal | TownsquareGoalUpdate | TownsquareProject | TownsquareProjectUpdate;
|
|
38647
39012
|
export declare type GraphStoreCypherQueryStringObject = {
|
|
38648
39013
|
__typename?: 'GraphStoreCypherQueryStringObject';
|
|
38649
39014
|
value: Scalars['String']['output'];
|
|
@@ -38653,13 +39018,13 @@ export declare type GraphStoreCypherQueryToNode = {
|
|
|
38653
39018
|
data?: Maybe<GraphStoreCypherQueryToNodeUnion>;
|
|
38654
39019
|
id: Scalars['ID']['output'];
|
|
38655
39020
|
};
|
|
38656
|
-
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;
|
|
39021
|
+
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 | LoomMeeting | LoomMeetingRecurrence | LoomSpace | LoomVideo | MercuryFocusArea | OpsgenieTeam | RadarPosition | SpfDependency | TeamV2 | ThirdPartySecurityContainer | ThirdPartyUser | TownsquareComment | TownsquareGoal | TownsquareGoalUpdate | TownsquareProject | TownsquareProjectUpdate;
|
|
38657
39022
|
export declare type GraphStoreCypherQueryV2AriNode = {
|
|
38658
39023
|
__typename?: 'GraphStoreCypherQueryV2AriNode';
|
|
38659
39024
|
data?: Maybe<GraphStoreCypherQueryV2AriNodeUnion>;
|
|
38660
39025
|
id: Scalars['ID']['output'];
|
|
38661
39026
|
};
|
|
38662
|
-
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;
|
|
39027
|
+
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 | LoomMeeting | LoomMeetingRecurrence | LoomSpace | LoomVideo | MercuryFocusArea | OpsgenieTeam | RadarPosition | SpfDependency | TeamV2 | ThirdPartySecurityContainer | ThirdPartyUser | TownsquareComment | TownsquareGoal | TownsquareGoalUpdate | TownsquareProject | TownsquareProjectUpdate;
|
|
38663
39028
|
export declare type GraphStoreCypherQueryV2BooleanObject = {
|
|
38664
39029
|
__typename?: 'GraphStoreCypherQueryV2BooleanObject';
|
|
38665
39030
|
value: Scalars['Boolean']['output'];
|
|
@@ -38704,7 +39069,7 @@ export declare enum GraphStoreCypherQueryV2VersionEnum {
|
|
|
38704
39069
|
V2 = "V2",
|
|
38705
39070
|
V3 = "V3"
|
|
38706
39071
|
}
|
|
38707
|
-
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;
|
|
39072
|
+
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 | LoomMeeting | LoomMeetingRecurrence | LoomSpace | LoomVideo | MercuryFocusArea | OpsgenieTeam | RadarPosition | SpfDependency | TeamV2 | ThirdPartySecurityContainer | ThirdPartyUser | TownsquareComment | TownsquareGoal | TownsquareGoalUpdate | TownsquareProject | TownsquareProjectUpdate;
|
|
38708
39073
|
export declare type GraphStoreCypherQueryValueNode = {
|
|
38709
39074
|
__typename?: 'GraphStoreCypherQueryValueNode';
|
|
38710
39075
|
data?: Maybe<GraphStoreCypherQueryValueItemUnion>;
|
|
@@ -44425,6 +44790,19 @@ export declare type GraphStoreSimplifiedComponentAssociatedDocumentInverseEdge =
|
|
|
44425
44790
|
};
|
|
44426
44791
|
export declare type GraphStoreSimplifiedComponentAssociatedDocumentInverseUnion = CompassComponent;
|
|
44427
44792
|
export declare type GraphStoreSimplifiedComponentAssociatedDocumentUnion = DevOpsDocument | ExternalDocument;
|
|
44793
|
+
export declare type GraphStoreSimplifiedComponentHasComponentLinkConnection = HasPageInfo & {
|
|
44794
|
+
__typename?: 'GraphStoreSimplifiedComponentHasComponentLinkConnection';
|
|
44795
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedComponentHasComponentLinkEdge>>>;
|
|
44796
|
+
pageInfo: PageInfo;
|
|
44797
|
+
};
|
|
44798
|
+
export declare type GraphStoreSimplifiedComponentHasComponentLinkEdge = {
|
|
44799
|
+
__typename?: 'GraphStoreSimplifiedComponentHasComponentLinkEdge';
|
|
44800
|
+
createdAt: Scalars['DateTime']['output'];
|
|
44801
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
44802
|
+
id: Scalars['ID']['output'];
|
|
44803
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
44804
|
+
node?: Maybe<GraphStoreSimplifiedComponentHasComponentLinkUnion>;
|
|
44805
|
+
};
|
|
44428
44806
|
export declare type GraphStoreSimplifiedComponentHasComponentLinkInverseConnection = HasPageInfo & {
|
|
44429
44807
|
__typename?: 'GraphStoreSimplifiedComponentHasComponentLinkInverseConnection';
|
|
44430
44808
|
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedComponentHasComponentLinkInverseEdge>>>;
|
|
@@ -44439,6 +44817,7 @@ export declare type GraphStoreSimplifiedComponentHasComponentLinkInverseEdge = {
|
|
|
44439
44817
|
node?: Maybe<GraphStoreSimplifiedComponentHasComponentLinkInverseUnion>;
|
|
44440
44818
|
};
|
|
44441
44819
|
export declare type GraphStoreSimplifiedComponentHasComponentLinkInverseUnion = CompassComponent;
|
|
44820
|
+
export declare type GraphStoreSimplifiedComponentHasComponentLinkUnion = CompassLinkNode;
|
|
44442
44821
|
export declare type GraphStoreSimplifiedComponentImpactedByIncidentConnection = HasPageInfo & {
|
|
44443
44822
|
__typename?: 'GraphStoreSimplifiedComponentImpactedByIncidentConnection';
|
|
44444
44823
|
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedComponentImpactedByIncidentEdge>>>;
|
|
@@ -44480,6 +44859,20 @@ export declare type GraphStoreSimplifiedComponentLinkIsJiraProjectEdge = {
|
|
|
44480
44859
|
lastUpdated: Scalars['DateTime']['output'];
|
|
44481
44860
|
node?: Maybe<GraphStoreSimplifiedComponentLinkIsJiraProjectUnion>;
|
|
44482
44861
|
};
|
|
44862
|
+
export declare type GraphStoreSimplifiedComponentLinkIsJiraProjectInverseConnection = HasPageInfo & {
|
|
44863
|
+
__typename?: 'GraphStoreSimplifiedComponentLinkIsJiraProjectInverseConnection';
|
|
44864
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedComponentLinkIsJiraProjectInverseEdge>>>;
|
|
44865
|
+
pageInfo: PageInfo;
|
|
44866
|
+
};
|
|
44867
|
+
export declare type GraphStoreSimplifiedComponentLinkIsJiraProjectInverseEdge = {
|
|
44868
|
+
__typename?: 'GraphStoreSimplifiedComponentLinkIsJiraProjectInverseEdge';
|
|
44869
|
+
createdAt: Scalars['DateTime']['output'];
|
|
44870
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
44871
|
+
id: Scalars['ID']['output'];
|
|
44872
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
44873
|
+
node?: Maybe<GraphStoreSimplifiedComponentLinkIsJiraProjectInverseUnion>;
|
|
44874
|
+
};
|
|
44875
|
+
export declare type GraphStoreSimplifiedComponentLinkIsJiraProjectInverseUnion = CompassLinkNode;
|
|
44483
44876
|
export declare type GraphStoreSimplifiedComponentLinkIsJiraProjectUnion = JiraProject;
|
|
44484
44877
|
export declare type GraphStoreSimplifiedComponentLinkIsProviderRepoConnection = HasPageInfo & {
|
|
44485
44878
|
__typename?: 'GraphStoreSimplifiedComponentLinkIsProviderRepoConnection';
|
|
@@ -44494,6 +44887,20 @@ export declare type GraphStoreSimplifiedComponentLinkIsProviderRepoEdge = {
|
|
|
44494
44887
|
lastUpdated: Scalars['DateTime']['output'];
|
|
44495
44888
|
node?: Maybe<GraphStoreSimplifiedComponentLinkIsProviderRepoUnion>;
|
|
44496
44889
|
};
|
|
44890
|
+
export declare type GraphStoreSimplifiedComponentLinkIsProviderRepoInverseConnection = HasPageInfo & {
|
|
44891
|
+
__typename?: 'GraphStoreSimplifiedComponentLinkIsProviderRepoInverseConnection';
|
|
44892
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedComponentLinkIsProviderRepoInverseEdge>>>;
|
|
44893
|
+
pageInfo: PageInfo;
|
|
44894
|
+
};
|
|
44895
|
+
export declare type GraphStoreSimplifiedComponentLinkIsProviderRepoInverseEdge = {
|
|
44896
|
+
__typename?: 'GraphStoreSimplifiedComponentLinkIsProviderRepoInverseEdge';
|
|
44897
|
+
createdAt: Scalars['DateTime']['output'];
|
|
44898
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
44899
|
+
id: Scalars['ID']['output'];
|
|
44900
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
44901
|
+
node?: Maybe<GraphStoreSimplifiedComponentLinkIsProviderRepoInverseUnion>;
|
|
44902
|
+
};
|
|
44903
|
+
export declare type GraphStoreSimplifiedComponentLinkIsProviderRepoInverseUnion = CompassLinkNode;
|
|
44497
44904
|
export declare type GraphStoreSimplifiedComponentLinkIsProviderRepoUnion = BitbucketRepository;
|
|
44498
44905
|
export declare type GraphStoreSimplifiedComponentLinkedJswIssueConnection = HasPageInfo & HasTotal & {
|
|
44499
44906
|
__typename?: 'GraphStoreSimplifiedComponentLinkedJswIssueConnection';
|
|
@@ -46015,6 +46422,19 @@ export declare type GraphStoreSimplifiedIssueHasChangedPriorityInverseEdge = {
|
|
|
46015
46422
|
};
|
|
46016
46423
|
export declare type GraphStoreSimplifiedIssueHasChangedPriorityInverseUnion = JiraIssue;
|
|
46017
46424
|
export declare type GraphStoreSimplifiedIssueHasChangedPriorityUnion = JiraPriority;
|
|
46425
|
+
export declare type GraphStoreSimplifiedIssueHasChangedStatusConnection = HasPageInfo & {
|
|
46426
|
+
__typename?: 'GraphStoreSimplifiedIssueHasChangedStatusConnection';
|
|
46427
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedIssueHasChangedStatusEdge>>>;
|
|
46428
|
+
pageInfo: PageInfo;
|
|
46429
|
+
};
|
|
46430
|
+
export declare type GraphStoreSimplifiedIssueHasChangedStatusEdge = {
|
|
46431
|
+
__typename?: 'GraphStoreSimplifiedIssueHasChangedStatusEdge';
|
|
46432
|
+
createdAt: Scalars['DateTime']['output'];
|
|
46433
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
46434
|
+
id: Scalars['ID']['output'];
|
|
46435
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
46436
|
+
node?: Maybe<GraphStoreSimplifiedIssueHasChangedStatusUnion>;
|
|
46437
|
+
};
|
|
46018
46438
|
export declare type GraphStoreSimplifiedIssueHasChangedStatusInverseConnection = HasPageInfo & {
|
|
46019
46439
|
__typename?: 'GraphStoreSimplifiedIssueHasChangedStatusInverseConnection';
|
|
46020
46440
|
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedIssueHasChangedStatusInverseEdge>>>;
|
|
@@ -46029,6 +46449,7 @@ export declare type GraphStoreSimplifiedIssueHasChangedStatusInverseEdge = {
|
|
|
46029
46449
|
node?: Maybe<GraphStoreSimplifiedIssueHasChangedStatusInverseUnion>;
|
|
46030
46450
|
};
|
|
46031
46451
|
export declare type GraphStoreSimplifiedIssueHasChangedStatusInverseUnion = JiraIssue;
|
|
46452
|
+
export declare type GraphStoreSimplifiedIssueHasChangedStatusUnion = JiraStatus;
|
|
46032
46453
|
export declare type GraphStoreSimplifiedIssueMentionedInConversationConnection = HasPageInfo & {
|
|
46033
46454
|
__typename?: 'GraphStoreSimplifiedIssueMentionedInConversationConnection';
|
|
46034
46455
|
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedIssueMentionedInConversationEdge>>>;
|
|
@@ -46664,6 +47085,20 @@ export declare type GraphStoreSimplifiedMeetingHasMeetingNotesPageEdge = {
|
|
|
46664
47085
|
lastUpdated: Scalars['DateTime']['output'];
|
|
46665
47086
|
node?: Maybe<GraphStoreSimplifiedMeetingHasMeetingNotesPageUnion>;
|
|
46666
47087
|
};
|
|
47088
|
+
export declare type GraphStoreSimplifiedMeetingHasMeetingNotesPageInverseConnection = HasPageInfo & {
|
|
47089
|
+
__typename?: 'GraphStoreSimplifiedMeetingHasMeetingNotesPageInverseConnection';
|
|
47090
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedMeetingHasMeetingNotesPageInverseEdge>>>;
|
|
47091
|
+
pageInfo: PageInfo;
|
|
47092
|
+
};
|
|
47093
|
+
export declare type GraphStoreSimplifiedMeetingHasMeetingNotesPageInverseEdge = {
|
|
47094
|
+
__typename?: 'GraphStoreSimplifiedMeetingHasMeetingNotesPageInverseEdge';
|
|
47095
|
+
createdAt: Scalars['DateTime']['output'];
|
|
47096
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
47097
|
+
id: Scalars['ID']['output'];
|
|
47098
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
47099
|
+
node?: Maybe<GraphStoreSimplifiedMeetingHasMeetingNotesPageInverseUnion>;
|
|
47100
|
+
};
|
|
47101
|
+
export declare type GraphStoreSimplifiedMeetingHasMeetingNotesPageInverseUnion = LoomMeeting;
|
|
46667
47102
|
export declare type GraphStoreSimplifiedMeetingHasMeetingNotesPageUnion = ConfluencePage;
|
|
46668
47103
|
export declare type GraphStoreSimplifiedMeetingRecordingOwnerHasMeetingNotesFolderConnection = HasPageInfo & HasTotal & {
|
|
46669
47104
|
__typename?: 'GraphStoreSimplifiedMeetingRecordingOwnerHasMeetingNotesFolderConnection';
|
|
@@ -46710,6 +47145,20 @@ export declare type GraphStoreSimplifiedMeetingRecurrenceHasMeetingRecurrenceNot
|
|
|
46710
47145
|
lastUpdated: Scalars['DateTime']['output'];
|
|
46711
47146
|
node?: Maybe<GraphStoreSimplifiedMeetingRecurrenceHasMeetingRecurrenceNotesPageUnion>;
|
|
46712
47147
|
};
|
|
47148
|
+
export declare type GraphStoreSimplifiedMeetingRecurrenceHasMeetingRecurrenceNotesPageInverseConnection = HasPageInfo & {
|
|
47149
|
+
__typename?: 'GraphStoreSimplifiedMeetingRecurrenceHasMeetingRecurrenceNotesPageInverseConnection';
|
|
47150
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedMeetingRecurrenceHasMeetingRecurrenceNotesPageInverseEdge>>>;
|
|
47151
|
+
pageInfo: PageInfo;
|
|
47152
|
+
};
|
|
47153
|
+
export declare type GraphStoreSimplifiedMeetingRecurrenceHasMeetingRecurrenceNotesPageInverseEdge = {
|
|
47154
|
+
__typename?: 'GraphStoreSimplifiedMeetingRecurrenceHasMeetingRecurrenceNotesPageInverseEdge';
|
|
47155
|
+
createdAt: Scalars['DateTime']['output'];
|
|
47156
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
47157
|
+
id: Scalars['ID']['output'];
|
|
47158
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
47159
|
+
node?: Maybe<GraphStoreSimplifiedMeetingRecurrenceHasMeetingRecurrenceNotesPageInverseUnion>;
|
|
47160
|
+
};
|
|
47161
|
+
export declare type GraphStoreSimplifiedMeetingRecurrenceHasMeetingRecurrenceNotesPageInverseUnion = LoomMeetingRecurrence;
|
|
46713
47162
|
export declare type GraphStoreSimplifiedMeetingRecurrenceHasMeetingRecurrenceNotesPageUnion = ConfluencePage;
|
|
46714
47163
|
export declare type GraphStoreSimplifiedOnPremProjectHasIssueConnection = HasPageInfo & {
|
|
46715
47164
|
__typename?: 'GraphStoreSimplifiedOnPremProjectHasIssueConnection';
|
|
@@ -49105,6 +49554,34 @@ export declare type GraphStoreSimplifiedUserCreatedAtlasGoalInverseEdge = {
|
|
|
49105
49554
|
};
|
|
49106
49555
|
export declare type GraphStoreSimplifiedUserCreatedAtlasGoalInverseUnion = AppUser | AtlassianAccountUser | CustomerUser;
|
|
49107
49556
|
export declare type GraphStoreSimplifiedUserCreatedAtlasGoalUnion = TownsquareGoal;
|
|
49557
|
+
export declare type GraphStoreSimplifiedUserCreatedAtlasProjectConnection = HasPageInfo & {
|
|
49558
|
+
__typename?: 'GraphStoreSimplifiedUserCreatedAtlasProjectConnection';
|
|
49559
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedUserCreatedAtlasProjectEdge>>>;
|
|
49560
|
+
pageInfo: PageInfo;
|
|
49561
|
+
};
|
|
49562
|
+
export declare type GraphStoreSimplifiedUserCreatedAtlasProjectEdge = {
|
|
49563
|
+
__typename?: 'GraphStoreSimplifiedUserCreatedAtlasProjectEdge';
|
|
49564
|
+
createdAt: Scalars['DateTime']['output'];
|
|
49565
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
49566
|
+
id: Scalars['ID']['output'];
|
|
49567
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
49568
|
+
node?: Maybe<GraphStoreSimplifiedUserCreatedAtlasProjectUnion>;
|
|
49569
|
+
};
|
|
49570
|
+
export declare type GraphStoreSimplifiedUserCreatedAtlasProjectInverseConnection = HasPageInfo & {
|
|
49571
|
+
__typename?: 'GraphStoreSimplifiedUserCreatedAtlasProjectInverseConnection';
|
|
49572
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedUserCreatedAtlasProjectInverseEdge>>>;
|
|
49573
|
+
pageInfo: PageInfo;
|
|
49574
|
+
};
|
|
49575
|
+
export declare type GraphStoreSimplifiedUserCreatedAtlasProjectInverseEdge = {
|
|
49576
|
+
__typename?: 'GraphStoreSimplifiedUserCreatedAtlasProjectInverseEdge';
|
|
49577
|
+
createdAt: Scalars['DateTime']['output'];
|
|
49578
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
49579
|
+
id: Scalars['ID']['output'];
|
|
49580
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
49581
|
+
node?: Maybe<GraphStoreSimplifiedUserCreatedAtlasProjectInverseUnion>;
|
|
49582
|
+
};
|
|
49583
|
+
export declare type GraphStoreSimplifiedUserCreatedAtlasProjectInverseUnion = AppUser | AtlassianAccountUser | CustomerUser;
|
|
49584
|
+
export declare type GraphStoreSimplifiedUserCreatedAtlasProjectUnion = TownsquareProject;
|
|
49108
49585
|
export declare type GraphStoreSimplifiedUserCreatedBranchConnection = HasPageInfo & {
|
|
49109
49586
|
__typename?: 'GraphStoreSimplifiedUserCreatedBranchConnection';
|
|
49110
49587
|
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedUserCreatedBranchEdge>>>;
|
|
@@ -49417,6 +49894,34 @@ export declare type GraphStoreSimplifiedUserCreatedIssueCommentInverseEdge = {
|
|
|
49417
49894
|
};
|
|
49418
49895
|
export declare type GraphStoreSimplifiedUserCreatedIssueCommentInverseUnion = AppUser | AtlassianAccountUser | CustomerUser;
|
|
49419
49896
|
export declare type GraphStoreSimplifiedUserCreatedIssueCommentUnion = JiraPlatformComment | JiraServiceManagementComment;
|
|
49897
|
+
export declare type GraphStoreSimplifiedUserCreatedIssueConnection = HasPageInfo & {
|
|
49898
|
+
__typename?: 'GraphStoreSimplifiedUserCreatedIssueConnection';
|
|
49899
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedUserCreatedIssueEdge>>>;
|
|
49900
|
+
pageInfo: PageInfo;
|
|
49901
|
+
};
|
|
49902
|
+
export declare type GraphStoreSimplifiedUserCreatedIssueEdge = {
|
|
49903
|
+
__typename?: 'GraphStoreSimplifiedUserCreatedIssueEdge';
|
|
49904
|
+
createdAt: Scalars['DateTime']['output'];
|
|
49905
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
49906
|
+
id: Scalars['ID']['output'];
|
|
49907
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
49908
|
+
node?: Maybe<GraphStoreSimplifiedUserCreatedIssueUnion>;
|
|
49909
|
+
};
|
|
49910
|
+
export declare type GraphStoreSimplifiedUserCreatedIssueInverseConnection = HasPageInfo & {
|
|
49911
|
+
__typename?: 'GraphStoreSimplifiedUserCreatedIssueInverseConnection';
|
|
49912
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedUserCreatedIssueInverseEdge>>>;
|
|
49913
|
+
pageInfo: PageInfo;
|
|
49914
|
+
};
|
|
49915
|
+
export declare type GraphStoreSimplifiedUserCreatedIssueInverseEdge = {
|
|
49916
|
+
__typename?: 'GraphStoreSimplifiedUserCreatedIssueInverseEdge';
|
|
49917
|
+
createdAt: Scalars['DateTime']['output'];
|
|
49918
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
49919
|
+
id: Scalars['ID']['output'];
|
|
49920
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
49921
|
+
node?: Maybe<GraphStoreSimplifiedUserCreatedIssueInverseUnion>;
|
|
49922
|
+
};
|
|
49923
|
+
export declare type GraphStoreSimplifiedUserCreatedIssueInverseUnion = AppUser | AtlassianAccountUser | CustomerUser;
|
|
49924
|
+
export declare type GraphStoreSimplifiedUserCreatedIssueUnion = JiraIssue;
|
|
49420
49925
|
export declare type GraphStoreSimplifiedUserCreatedIssueWorklogConnection = HasPageInfo & {
|
|
49421
49926
|
__typename?: 'GraphStoreSimplifiedUserCreatedIssueWorklogConnection';
|
|
49422
49927
|
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedUserCreatedIssueWorklogEdge>>>;
|
|
@@ -49557,6 +50062,34 @@ export declare type GraphStoreSimplifiedUserCreatedRepositoryInverseEdge = {
|
|
|
49557
50062
|
};
|
|
49558
50063
|
export declare type GraphStoreSimplifiedUserCreatedRepositoryInverseUnion = AppUser | AtlassianAccountUser | CustomerUser | ThirdPartyUser;
|
|
49559
50064
|
export declare type GraphStoreSimplifiedUserCreatedRepositoryUnion = ExternalRepository;
|
|
50065
|
+
export declare type GraphStoreSimplifiedUserCreatedTownsquareCommentConnection = HasPageInfo & {
|
|
50066
|
+
__typename?: 'GraphStoreSimplifiedUserCreatedTownsquareCommentConnection';
|
|
50067
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedUserCreatedTownsquareCommentEdge>>>;
|
|
50068
|
+
pageInfo: PageInfo;
|
|
50069
|
+
};
|
|
50070
|
+
export declare type GraphStoreSimplifiedUserCreatedTownsquareCommentEdge = {
|
|
50071
|
+
__typename?: 'GraphStoreSimplifiedUserCreatedTownsquareCommentEdge';
|
|
50072
|
+
createdAt: Scalars['DateTime']['output'];
|
|
50073
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
50074
|
+
id: Scalars['ID']['output'];
|
|
50075
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
50076
|
+
node?: Maybe<GraphStoreSimplifiedUserCreatedTownsquareCommentUnion>;
|
|
50077
|
+
};
|
|
50078
|
+
export declare type GraphStoreSimplifiedUserCreatedTownsquareCommentInverseConnection = HasPageInfo & {
|
|
50079
|
+
__typename?: 'GraphStoreSimplifiedUserCreatedTownsquareCommentInverseConnection';
|
|
50080
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedUserCreatedTownsquareCommentInverseEdge>>>;
|
|
50081
|
+
pageInfo: PageInfo;
|
|
50082
|
+
};
|
|
50083
|
+
export declare type GraphStoreSimplifiedUserCreatedTownsquareCommentInverseEdge = {
|
|
50084
|
+
__typename?: 'GraphStoreSimplifiedUserCreatedTownsquareCommentInverseEdge';
|
|
50085
|
+
createdAt: Scalars['DateTime']['output'];
|
|
50086
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
50087
|
+
id: Scalars['ID']['output'];
|
|
50088
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
50089
|
+
node?: Maybe<GraphStoreSimplifiedUserCreatedTownsquareCommentInverseUnion>;
|
|
50090
|
+
};
|
|
50091
|
+
export declare type GraphStoreSimplifiedUserCreatedTownsquareCommentInverseUnion = AppUser | AtlassianAccountUser | CustomerUser;
|
|
50092
|
+
export declare type GraphStoreSimplifiedUserCreatedTownsquareCommentUnion = TownsquareComment;
|
|
49560
50093
|
export declare type GraphStoreSimplifiedUserCreatedVideoCommentConnection = HasPageInfo & {
|
|
49561
50094
|
__typename?: 'GraphStoreSimplifiedUserCreatedVideoCommentConnection';
|
|
49562
50095
|
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedUserCreatedVideoCommentEdge>>>;
|
|
@@ -51844,6 +52377,9 @@ export declare type GraphStoreUserContributedConfluenceWhiteboardSortInput = {
|
|
|
51844
52377
|
export declare type GraphStoreUserCreatedAtlasGoalSortInput = {
|
|
51845
52378
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
51846
52379
|
};
|
|
52380
|
+
export declare type GraphStoreUserCreatedAtlasProjectSortInput = {
|
|
52381
|
+
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
52382
|
+
};
|
|
51847
52383
|
export declare type GraphStoreUserCreatedBranchSortInput = {
|
|
51848
52384
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
51849
52385
|
};
|
|
@@ -51894,6 +52430,9 @@ export declare type GraphStoreUserCreatedDocumentSortInput = {
|
|
|
51894
52430
|
export declare type GraphStoreUserCreatedIssueCommentSortInput = {
|
|
51895
52431
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
51896
52432
|
};
|
|
52433
|
+
export declare type GraphStoreUserCreatedIssueSortInput = {
|
|
52434
|
+
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
52435
|
+
};
|
|
51897
52436
|
export declare type GraphStoreUserCreatedIssueWorklogSortInput = {
|
|
51898
52437
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
51899
52438
|
};
|
|
@@ -51909,6 +52448,9 @@ export declare type GraphStoreUserCreatedRemoteLinkSortInput = {
|
|
|
51909
52448
|
export declare type GraphStoreUserCreatedRepositorySortInput = {
|
|
51910
52449
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
51911
52450
|
};
|
|
52451
|
+
export declare type GraphStoreUserCreatedTownsquareCommentSortInput = {
|
|
52452
|
+
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
52453
|
+
};
|
|
51912
52454
|
export declare type GraphStoreUserCreatedVideoCommentSortInput = {
|
|
51913
52455
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
51914
52456
|
};
|
|
@@ -52426,27 +52968,40 @@ export declare type GrowthUnifiedProfileIssueTypeInput = {
|
|
|
52426
52968
|
};
|
|
52427
52969
|
export declare enum GrowthUnifiedProfileJtbd {
|
|
52428
52970
|
AdHocTaskAndIncidentManagement = "AD_HOC_TASK_AND_INCIDENT_MANAGEMENT",
|
|
52971
|
+
Brainstorming = "BRAINSTORMING",
|
|
52429
52972
|
Budgets = "BUDGETS",
|
|
52973
|
+
CampaignPlanning = "CAMPAIGN_PLANNING",
|
|
52430
52974
|
CdWrtng = "CD_WRTNG",
|
|
52431
52975
|
CentralizedDocumentation = "CENTRALIZED_DOCUMENTATION",
|
|
52432
52976
|
ComplianceAndRiskManagement = "COMPLIANCE_AND_RISK_MANAGEMENT",
|
|
52977
|
+
CreativeBriefs = "CREATIVE_BRIEFS",
|
|
52978
|
+
CustomerJourneys = "CUSTOMER_JOURNEYS",
|
|
52433
52979
|
EstimateTimeAndEffort = "ESTIMATE_TIME_AND_EFFORT",
|
|
52980
|
+
FlowchartAndDiagrams = "FLOWCHART_AND_DIAGRAMS",
|
|
52981
|
+
GanttChart = "GANTT_CHART",
|
|
52434
52982
|
ImproveTeamProcesses = "IMPROVE_TEAM_PROCESSES",
|
|
52435
52983
|
ImproveWorkflow = "IMPROVE_WORKFLOW",
|
|
52984
|
+
KnowledgeHub = "KNOWLEDGE_HUB",
|
|
52436
52985
|
LaunchCampaigns = "LAUNCH_CAMPAIGNS",
|
|
52437
52986
|
ManageTasks = "MANAGE_TASKS",
|
|
52438
52987
|
ManagingClientAndVendorRelationships = "MANAGING_CLIENT_AND_VENDOR_RELATIONSHIPS",
|
|
52439
52988
|
MapWorkDependencies = "MAP_WORK_DEPENDENCIES",
|
|
52440
52989
|
MarketingContent = "MARKETING_CONTENT",
|
|
52990
|
+
MeetingNotes = "MEETING_NOTES",
|
|
52441
52991
|
PlanAndManage = "PLAN_AND_MANAGE",
|
|
52442
52992
|
PrioritizeWork = "PRIORITIZE_WORK",
|
|
52993
|
+
ProcessMapping = "PROCESS_MAPPING",
|
|
52994
|
+
ProjectPlan = "PROJECT_PLAN",
|
|
52443
52995
|
ProjectPlanning = "PROJECT_PLANNING",
|
|
52444
52996
|
ProjectPlanningAndCoordination = "PROJECT_PLANNING_AND_COORDINATION",
|
|
52445
52997
|
ProjectProgress = "PROJECT_PROGRESS",
|
|
52998
|
+
RequirementsDoc = "REQUIREMENTS_DOC",
|
|
52446
52999
|
RunSprints = "RUN_SPRINTS",
|
|
52447
53000
|
Stakeholders = "STAKEHOLDERS",
|
|
52448
53001
|
StrategiesAndGoals = "STRATEGIES_AND_GOALS",
|
|
52449
53002
|
SystemAndToolEvaluations = "SYSTEM_AND_TOOL_EVALUATIONS",
|
|
53003
|
+
TaskTracking = "TASK_TRACKING",
|
|
53004
|
+
TeamStatusUpdate = "TEAM_STATUS_UPDATE",
|
|
52450
53005
|
TrackingRprtng = "TRACKING_RPRTNG",
|
|
52451
53006
|
TrackBugs = "TRACK_BUGS",
|
|
52452
53007
|
UseKanbanBoard = "USE_KANBAN_BOARD",
|
|
@@ -56341,6 +56896,13 @@ export declare type JiraAutodevCreateJobPayload = Payload & {
|
|
|
56341
56896
|
job?: Maybe<JiraAutodevJob>;
|
|
56342
56897
|
success: Scalars['Boolean']['output'];
|
|
56343
56898
|
};
|
|
56899
|
+
export declare enum JiraAutodevCreatePullRequestOptionEnumType {
|
|
56900
|
+
Always = "ALWAYS",
|
|
56901
|
+
Draft = "DRAFT",
|
|
56902
|
+
DraftOnBuildPass = "DRAFT_ON_BUILD_PASS",
|
|
56903
|
+
Never = "NEVER",
|
|
56904
|
+
OnBuildPass = "ON_BUILD_PASS"
|
|
56905
|
+
}
|
|
56344
56906
|
export declare type JiraAutodevDeletedPayload = Payload & {
|
|
56345
56907
|
__typename?: 'JiraAutodevDeletedPayload';
|
|
56346
56908
|
errors?: Maybe<Array<MutationError>>;
|
|
@@ -56355,6 +56917,7 @@ export declare type JiraAutodevJob = {
|
|
|
56355
56917
|
branchUrl?: Maybe<Scalars['String']['output']>;
|
|
56356
56918
|
changesSummary?: Maybe<Scalars['String']['output']>;
|
|
56357
56919
|
codeChanges?: Maybe<JiraAutodevCodeChangeConnection>;
|
|
56920
|
+
createPullRequestOption?: Maybe<JiraAutodevCreatePullRequestOptionEnumType>;
|
|
56358
56921
|
currentWorkflow?: Maybe<Scalars['String']['output']>;
|
|
56359
56922
|
error?: Maybe<JiraAutodevJobPermissionError>;
|
|
56360
56923
|
gitDiff?: Maybe<Scalars['String']['output']>;
|
|
@@ -56856,6 +57419,20 @@ export declare enum JiraBulkEditMultiSelectFieldOptions {
|
|
|
56856
57419
|
RemoveAll = "REMOVE_ALL",
|
|
56857
57420
|
Replace = "REPLACE"
|
|
56858
57421
|
}
|
|
57422
|
+
export declare type JiraBulkLabelColorUpdateInput = {
|
|
57423
|
+
labelColorUpdate: Array<JiraBulkLabelColorUpdateInputItem>;
|
|
57424
|
+
projectId: Scalars['ID']['input'];
|
|
57425
|
+
};
|
|
57426
|
+
export declare type JiraBulkLabelColorUpdateInputItem = {
|
|
57427
|
+
color?: InputMaybe<JiraOptionColorInput>;
|
|
57428
|
+
fieldId: Scalars['ID']['input'];
|
|
57429
|
+
label: Scalars['String']['input'];
|
|
57430
|
+
};
|
|
57431
|
+
export declare type JiraBulkLabelColorUpdatePayload = Payload & {
|
|
57432
|
+
__typename?: 'JiraBulkLabelColorUpdatePayload';
|
|
57433
|
+
errors?: Maybe<Array<MutationError>>;
|
|
57434
|
+
success: Scalars['Boolean']['output'];
|
|
57435
|
+
};
|
|
56859
57436
|
export declare type JiraBulkOperationInput = {
|
|
56860
57437
|
bulkDeleteInput?: InputMaybe<JiraBulkDeleteInput>;
|
|
56861
57438
|
bulkEditInput?: InputMaybe<JiraBulkEditInput>;
|
|
@@ -59119,6 +59696,7 @@ export declare type JiraDevOpsMutationApproveJiraBitbucketWorkspaceAccessRequest
|
|
|
59119
59696
|
input: JiraApproveJiraBitbucketWorkspaceAccessRequestInput;
|
|
59120
59697
|
};
|
|
59121
59698
|
export declare type JiraDevOpsMutationCreateAutodevJobArgs = {
|
|
59699
|
+
createPullRequestOption?: InputMaybe<JiraAutodevCreatePullRequestOptionEnumType>;
|
|
59122
59700
|
issueAri: Scalars['ID']['input'];
|
|
59123
59701
|
prompt?: InputMaybe<Scalars['String']['input']>;
|
|
59124
59702
|
repoUrl: Scalars['String']['input'];
|
|
@@ -59632,6 +60210,7 @@ export declare type JiraField = {
|
|
|
59632
60210
|
export declare type JiraFieldAssociationWithIssueTypes = JiraProjectFieldAssociationInterface & {
|
|
59633
60211
|
__typename?: 'JiraFieldAssociationWithIssueTypes';
|
|
59634
60212
|
field?: Maybe<JiraField>;
|
|
60213
|
+
fieldFormatConfig?: Maybe<JiraFieldFormatConfig>;
|
|
59635
60214
|
fieldOperation?: Maybe<JiraFieldOperation>;
|
|
59636
60215
|
fieldOptions?: Maybe<JiraFieldOptionConnection>;
|
|
59637
60216
|
hasMissingConfiguration?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -59691,6 +60270,7 @@ export declare type JiraFieldConfigFilterInput = {
|
|
|
59691
60270
|
};
|
|
59692
60271
|
export declare enum JiraFieldConfigOrderBy {
|
|
59693
60272
|
ContextCount = "CONTEXT_COUNT",
|
|
60273
|
+
FieldType = "FIELD_TYPE",
|
|
59694
60274
|
LastUsed = "LAST_USED",
|
|
59695
60275
|
Name = "NAME",
|
|
59696
60276
|
PlannedDeleteDate = "PLANNED_DELETE_DATE",
|
|
@@ -59709,6 +60289,7 @@ export declare type JiraFieldConfigScheme = {
|
|
|
59709
60289
|
id: Scalars['ID']['output'];
|
|
59710
60290
|
name?: Maybe<Scalars['String']['output']>;
|
|
59711
60291
|
projectsCount?: Maybe<Scalars['Int']['output']>;
|
|
60292
|
+
schemeId?: Maybe<Scalars['ID']['output']>;
|
|
59712
60293
|
};
|
|
59713
60294
|
export declare type JiraFieldConfigSchemesConnection = {
|
|
59714
60295
|
__typename?: 'JiraFieldConfigSchemesConnection';
|
|
@@ -59733,6 +60314,7 @@ export declare type JiraFieldEdge = {
|
|
|
59733
60314
|
cursor?: Maybe<Scalars['String']['output']>;
|
|
59734
60315
|
node?: Maybe<JiraField>;
|
|
59735
60316
|
};
|
|
60317
|
+
export declare type JiraFieldFormatConfig = JiraNumberFieldFormatConfig;
|
|
59736
60318
|
export declare type JiraFieldKeyValueInput = {
|
|
59737
60319
|
key?: InputMaybe<Scalars['String']['input']>;
|
|
59738
60320
|
value?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -60876,6 +61458,7 @@ export declare type JiraIssueContentPanelsArgs = {
|
|
|
60876
61458
|
};
|
|
60877
61459
|
export declare type JiraIssueDesignsArgs = {
|
|
60878
61460
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
61461
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
60879
61462
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
60880
61463
|
};
|
|
60881
61464
|
export declare type JiraIssueEndDateViewFieldArgs = {
|
|
@@ -61407,6 +61990,8 @@ export declare type JiraIssueFieldConfig = Node & {
|
|
|
61407
61990
|
trashedByUser?: Maybe<User>;
|
|
61408
61991
|
trashedTimestamp?: Maybe<Scalars['Long']['output']>;
|
|
61409
61992
|
type: JiraConfigFieldType;
|
|
61993
|
+
typeDisplayName?: Maybe<Scalars['String']['output']>;
|
|
61994
|
+
typeKey?: Maybe<Scalars['String']['output']>;
|
|
61410
61995
|
};
|
|
61411
61996
|
export declare type JiraIssueFieldConfigAssociatedContextsArgs = {
|
|
61412
61997
|
after?: InputMaybe<Scalars['Int']['input']>;
|
|
@@ -62270,6 +62855,15 @@ export declare type JiraIssueSearchViewPayload = Payload & {
|
|
|
62270
62855
|
success: Scalars['Boolean']['output'];
|
|
62271
62856
|
view?: Maybe<JiraIssueSearchView>;
|
|
62272
62857
|
};
|
|
62858
|
+
export declare type JiraIssueSearchViewProjectKeyAndItemIdQuery = {
|
|
62859
|
+
cloudId: Scalars['ID']['input'];
|
|
62860
|
+
itemId: Scalars['String']['input'];
|
|
62861
|
+
projectKey: Scalars['String']['input'];
|
|
62862
|
+
};
|
|
62863
|
+
export declare type JiraIssueSearchViewQueryInput = {
|
|
62864
|
+
projectKeyAndItemIdQuery?: InputMaybe<JiraIssueSearchViewProjectKeyAndItemIdQuery>;
|
|
62865
|
+
viewAri?: InputMaybe<Scalars['ID']['input']>;
|
|
62866
|
+
};
|
|
62273
62867
|
export declare type JiraIssueSearchViewResult = JiraIssueSearchView | QueryError;
|
|
62274
62868
|
export declare type JiraIssueStreamHubEventPayloadProject = {
|
|
62275
62869
|
__typename?: 'JiraIssueStreamHubEventPayloadProject';
|
|
@@ -63327,6 +63921,18 @@ export declare type JiraLabel = {
|
|
|
63327
63921
|
labelId?: Maybe<Scalars['String']['output']>;
|
|
63328
63922
|
name?: Maybe<Scalars['String']['output']>;
|
|
63329
63923
|
};
|
|
63924
|
+
export declare type JiraLabelColorUpdateInput = {
|
|
63925
|
+
color?: InputMaybe<JiraOptionColorInput>;
|
|
63926
|
+
fieldId: Scalars['ID']['input'];
|
|
63927
|
+
label: Scalars['String']['input'];
|
|
63928
|
+
};
|
|
63929
|
+
export declare type JiraLabelColorUpdatePayload = Payload & {
|
|
63930
|
+
__typename?: 'JiraLabelColorUpdatePayload';
|
|
63931
|
+
errors?: Maybe<Array<MutationError>>;
|
|
63932
|
+
fieldId?: Maybe<Scalars['ID']['output']>;
|
|
63933
|
+
label?: Maybe<JiraLabel>;
|
|
63934
|
+
success: Scalars['Boolean']['output'];
|
|
63935
|
+
};
|
|
63330
63936
|
export declare type JiraLabelConnection = {
|
|
63331
63937
|
__typename?: 'JiraLabelConnection';
|
|
63332
63938
|
edges?: Maybe<Array<Maybe<JiraLabelEdge>>>;
|
|
@@ -63862,6 +64468,7 @@ export declare type JiraMutation = {
|
|
|
63862
64468
|
assignRelatedWorkToUser?: Maybe<JiraAssignRelatedWorkPayload>;
|
|
63863
64469
|
attributeUnsplashImage?: Maybe<JiraUnsplashAttributionPayload>;
|
|
63864
64470
|
bulkCreateRequestTypeFromTemplate?: Maybe<JiraServiceManagementCreateRequestTypeFromTemplatePayload>;
|
|
64471
|
+
bulkUpdateLabelColor?: Maybe<JiraBulkLabelColorUpdatePayload>;
|
|
63865
64472
|
cloneIssue?: Maybe<JiraCloneIssueResponse>;
|
|
63866
64473
|
createAndAssociateWorkflowFromJsmTemplate?: Maybe<JiraServiceManagementCreateAndAssociateWorkflowFromTemplatePayload>;
|
|
63867
64474
|
createAppNavigationItem?: Maybe<JiraCreateNavigationItemPayload>;
|
|
@@ -64004,6 +64611,7 @@ export declare type JiraMutation = {
|
|
|
64004
64611
|
updateJsmOrganizationField?: Maybe<JiraServiceManagementOrganizationFieldPayload>;
|
|
64005
64612
|
updateJwmFilter?: Maybe<JiraWorkManagementUpdateFilterPayload>;
|
|
64006
64613
|
updateJwmOverview?: Maybe<JiraWorkManagementGiraUpdateOverviewPayload>;
|
|
64614
|
+
updateLabelColor?: Maybe<JiraLabelColorUpdatePayload>;
|
|
64007
64615
|
updateLabelsField?: Maybe<JiraLabelsFieldPayload>;
|
|
64008
64616
|
updateLegacyTeamField?: Maybe<JiraLegacyTeamFieldPayload>;
|
|
64009
64617
|
updateMultipleGroupPickerField?: Maybe<JiraMultipleGroupPickerFieldPayload>;
|
|
@@ -64092,6 +64700,9 @@ export declare type JiraMutationAttributeUnsplashImageArgs = {
|
|
|
64092
64700
|
export declare type JiraMutationBulkCreateRequestTypeFromTemplateArgs = {
|
|
64093
64701
|
input: JiraServiceManagementBulkCreateRequestTypeFromTemplateInput;
|
|
64094
64702
|
};
|
|
64703
|
+
export declare type JiraMutationBulkUpdateLabelColorArgs = {
|
|
64704
|
+
input: JiraBulkLabelColorUpdateInput;
|
|
64705
|
+
};
|
|
64095
64706
|
export declare type JiraMutationCloneIssueArgs = {
|
|
64096
64707
|
input: JiraCloneIssueInput;
|
|
64097
64708
|
};
|
|
@@ -64573,6 +65184,9 @@ export declare type JiraMutationUpdateJwmFilterArgs = {
|
|
|
64573
65184
|
export declare type JiraMutationUpdateJwmOverviewArgs = {
|
|
64574
65185
|
input: JiraWorkManagementUpdateOverviewInput;
|
|
64575
65186
|
};
|
|
65187
|
+
export declare type JiraMutationUpdateLabelColorArgs = {
|
|
65188
|
+
input: JiraLabelColorUpdateInput;
|
|
65189
|
+
};
|
|
64576
65190
|
export declare type JiraMutationUpdateLabelsFieldArgs = {
|
|
64577
65191
|
input: JiraUpdateLabelsFieldInput;
|
|
64578
65192
|
};
|
|
@@ -65862,6 +66476,7 @@ export declare enum JiraPlaybookStepRunStatus {
|
|
|
65862
66476
|
QueuedForRetry = "QUEUED_FOR_RETRY",
|
|
65863
66477
|
SomeErrors = "SOME_ERRORS",
|
|
65864
66478
|
Success = "SUCCESS",
|
|
66479
|
+
SuccessUndone = "SUCCESS_UNDONE",
|
|
65865
66480
|
Throttled = "THROTTLED",
|
|
65866
66481
|
Waiting = "WAITING"
|
|
65867
66482
|
}
|
|
@@ -66738,6 +67353,7 @@ export declare type JiraProjectsSidebarMenu = {
|
|
|
66738
67353
|
id: Scalars['ID']['output'];
|
|
66739
67354
|
moreFavourites?: Maybe<JiraProjectConnection>;
|
|
66740
67355
|
moreRecents?: Maybe<JiraProjectConnection>;
|
|
67356
|
+
mostRecent?: Maybe<JiraProject>;
|
|
66741
67357
|
recentLimit?: Maybe<Scalars['Int']['output']>;
|
|
66742
67358
|
recents?: Maybe<JiraProjectConnection>;
|
|
66743
67359
|
};
|
|
@@ -67504,6 +68120,7 @@ export declare type JiraQueryJiraIssueSearchViewArgs = {
|
|
|
67504
68120
|
namespace?: InputMaybe<Scalars['String']['input']>;
|
|
67505
68121
|
viewConfigInput?: InputMaybe<JiraIssueSearchStaticViewInput>;
|
|
67506
68122
|
viewId?: InputMaybe<Scalars['String']['input']>;
|
|
68123
|
+
viewQueryInput?: InputMaybe<JiraIssueSearchViewQueryInput>;
|
|
67507
68124
|
};
|
|
67508
68125
|
export declare type JiraQueryJiraJourneyConfigurationArgs = {
|
|
67509
68126
|
cloudId: Scalars['ID']['input'];
|
|
@@ -68624,6 +69241,16 @@ export declare enum JiraResourceUsageRecommendationStatus {
|
|
|
68624
69241
|
Obsolete = "OBSOLETE",
|
|
68625
69242
|
Trashed = "TRASHED"
|
|
68626
69243
|
}
|
|
69244
|
+
export declare type JiraRestoreGlobalCustomFieldsInput = {
|
|
69245
|
+
fieldIds: Array<Scalars['String']['input']>;
|
|
69246
|
+
};
|
|
69247
|
+
export declare type JiraRestoreGlobalCustomFieldsPayload = Payload & {
|
|
69248
|
+
__typename?: 'JiraRestoreGlobalCustomFieldsPayload';
|
|
69249
|
+
errors?: Maybe<Array<MutationError>>;
|
|
69250
|
+
failedFieldIds?: Maybe<Array<Scalars['String']['output']>>;
|
|
69251
|
+
succeededNodeIds?: Maybe<Array<Scalars['ID']['output']>>;
|
|
69252
|
+
success: Scalars['Boolean']['output'];
|
|
69253
|
+
};
|
|
68627
69254
|
export declare type JiraRestoreJourneyConfigurationInput = {
|
|
68628
69255
|
etag?: InputMaybe<Scalars['String']['input']>;
|
|
68629
69256
|
id: Scalars['ID']['input'];
|
|
@@ -71467,6 +72094,7 @@ export declare type JiraTrashGlobalCustomFieldsPayload = Payload & {
|
|
|
71467
72094
|
__typename?: 'JiraTrashGlobalCustomFieldsPayload';
|
|
71468
72095
|
errors?: Maybe<Array<MutationError>>;
|
|
71469
72096
|
failedFieldIds?: Maybe<Array<Scalars['String']['output']>>;
|
|
72097
|
+
succeededNodeIds?: Maybe<Array<Scalars['ID']['output']>>;
|
|
71470
72098
|
success: Scalars['Boolean']['output'];
|
|
71471
72099
|
};
|
|
71472
72100
|
export declare type JiraUiExposedError = {
|
|
@@ -75290,7 +75918,7 @@ export declare type LogDetails = {
|
|
|
75290
75918
|
export declare type LogQueryInput = {
|
|
75291
75919
|
appVersion?: InputMaybe<Scalars['String']['input']>;
|
|
75292
75920
|
appVersions?: InputMaybe<Array<InputMaybe<Scalars['String']['input']>>>;
|
|
75293
|
-
contexts?: InputMaybe<Array<InputMaybe<
|
|
75921
|
+
contexts?: InputMaybe<Array<InputMaybe<Context>>>;
|
|
75294
75922
|
dates?: InputMaybe<DateSearchInput>;
|
|
75295
75923
|
editions?: InputMaybe<Array<InputMaybe<EditionValue>>>;
|
|
75296
75924
|
functionKey?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -75997,6 +76625,8 @@ export declare type MarketplaceConsoleAppSoftwareShort = {
|
|
|
75997
76625
|
appSoftwareId: Scalars['ID']['output'];
|
|
75998
76626
|
editionsEnabled?: Maybe<Scalars['Boolean']['output']>;
|
|
75999
76627
|
hasConnectVersion?: Maybe<Scalars['Boolean']['output']>;
|
|
76628
|
+
hasCoupledVersion?: Maybe<Scalars['Boolean']['output']>;
|
|
76629
|
+
hasDecoupledVersion?: Maybe<Scalars['Boolean']['output']>;
|
|
76000
76630
|
hasPublicVersion?: Maybe<Scalars['Boolean']['output']>;
|
|
76001
76631
|
hosting: MarketplaceConsoleHosting;
|
|
76002
76632
|
isLatestActiveVersionPaidViaAtlassian?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -76272,6 +76902,7 @@ export declare enum MarketplaceConsoleDevSpaceTier {
|
|
|
76272
76902
|
}
|
|
76273
76903
|
export declare type MarketplaceConsoleEditAppVersionRequest = {
|
|
76274
76904
|
appKey: Scalars['ID']['input'];
|
|
76905
|
+
bonTermsSupported?: InputMaybe<Scalars['Boolean']['input']>;
|
|
76275
76906
|
buildNumber: Scalars['ID']['input'];
|
|
76276
76907
|
compatibilities?: InputMaybe<Array<MarketplaceConsoleAppSoftwareVersionCompatibilityInput>>;
|
|
76277
76908
|
deploymentInstructions?: InputMaybe<Array<MarketplaceConsoleDeploymentInstructionInput>>;
|
|
@@ -76284,6 +76915,7 @@ export declare type MarketplaceConsoleEditAppVersionRequest = {
|
|
|
76284
76915
|
learnMoreUrl?: InputMaybe<Scalars['String']['input']>;
|
|
76285
76916
|
licenseType?: InputMaybe<MarketplaceConsoleAppSoftwareVersionLicenseTypeId>;
|
|
76286
76917
|
moreDetails?: InputMaybe<Scalars['String']['input']>;
|
|
76918
|
+
partnerSpecificTerms?: InputMaybe<Scalars['String']['input']>;
|
|
76287
76919
|
purchaseUrl?: InputMaybe<Scalars['String']['input']>;
|
|
76288
76920
|
releaseNotes?: InputMaybe<Scalars['String']['input']>;
|
|
76289
76921
|
releaseSummary?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -76394,6 +77026,7 @@ export declare type MarketplaceConsoleFeatureInput = {
|
|
|
76394
77026
|
};
|
|
76395
77027
|
export declare type MarketplaceConsoleForgeFrameworkAttributes = {
|
|
76396
77028
|
__typename?: 'MarketplaceConsoleForgeFrameworkAttributes';
|
|
77029
|
+
appAccess: Array<Scalars['String']['output']>;
|
|
76397
77030
|
appId: Scalars['ID']['output'];
|
|
76398
77031
|
envId: Scalars['ID']['output'];
|
|
76399
77032
|
scopes: Array<Scalars['String']['output']>;
|
|
@@ -76727,6 +77360,7 @@ export declare type MarketplaceConsolePartnerContactPermissions = {
|
|
|
76727
77360
|
canViewPartnerPaymentDetails: Scalars['Boolean']['output'];
|
|
76728
77361
|
canViewSalesReport: Scalars['Boolean']['output'];
|
|
76729
77362
|
canViewUsageReports: Scalars['Boolean']['output'];
|
|
77363
|
+
isMarketplaceReader: Scalars['Boolean']['output'];
|
|
76730
77364
|
isPartnerAdmin: Scalars['Boolean']['output'];
|
|
76731
77365
|
isSiteAdmin: Scalars['Boolean']['output'];
|
|
76732
77366
|
partnerId: Scalars['ID']['output'];
|
|
@@ -78263,10 +78897,12 @@ export declare type MercuryChangeProposal = Node & {
|
|
|
78263
78897
|
createdDate: Scalars['String']['output'];
|
|
78264
78898
|
description?: Maybe<Scalars['String']['output']>;
|
|
78265
78899
|
focusArea?: Maybe<MercuryFocusArea>;
|
|
78900
|
+
funding?: Maybe<MercuryChangeProposalFunding>;
|
|
78266
78901
|
id: Scalars['ID']['output'];
|
|
78267
78902
|
impact?: Maybe<MercuryChangeProposalImpact>;
|
|
78268
78903
|
name: Scalars['String']['output'];
|
|
78269
78904
|
owner?: Maybe<User>;
|
|
78905
|
+
positionDetails?: Maybe<MercuryChangeProposalPositionDetails>;
|
|
78270
78906
|
status?: Maybe<MercuryChangeProposalStatus>;
|
|
78271
78907
|
statusTransitions?: Maybe<MercuryChangeProposalStatusTransitions>;
|
|
78272
78908
|
strategicEvent?: Maybe<MercuryStrategicEvent>;
|
|
@@ -78312,17 +78948,23 @@ export declare type MercuryChangeProposalEdge = {
|
|
|
78312
78948
|
};
|
|
78313
78949
|
export declare type MercuryChangeProposalFundSummary = {
|
|
78314
78950
|
__typename?: 'MercuryChangeProposalFundSummary';
|
|
78315
|
-
changeProposalId: Scalars['ID']['output'];
|
|
78316
78951
|
laborAmount?: Maybe<Scalars['BigDecimal']['output']>;
|
|
78317
78952
|
nonLaborAmount?: Maybe<Scalars['BigDecimal']['output']>;
|
|
78318
78953
|
};
|
|
78954
|
+
export declare type MercuryChangeProposalFunding = {
|
|
78955
|
+
__typename?: 'MercuryChangeProposalFunding';
|
|
78956
|
+
fundsRequested?: Maybe<Scalars['BigDecimal']['output']>;
|
|
78957
|
+
};
|
|
78319
78958
|
export declare type MercuryChangeProposalImpact = {
|
|
78320
78959
|
__typename?: 'MercuryChangeProposalImpact';
|
|
78321
78960
|
value: Scalars['Int']['output'];
|
|
78322
78961
|
};
|
|
78962
|
+
export declare type MercuryChangeProposalPositionDetails = {
|
|
78963
|
+
__typename?: 'MercuryChangeProposalPositionDetails';
|
|
78964
|
+
positionsRequested?: Maybe<Scalars['Int']['output']>;
|
|
78965
|
+
};
|
|
78323
78966
|
export declare type MercuryChangeProposalPositionSummary = {
|
|
78324
78967
|
__typename?: 'MercuryChangeProposalPositionSummary';
|
|
78325
|
-
changeProposalId: Scalars['ID']['output'];
|
|
78326
78968
|
movedCount?: Maybe<Scalars['Int']['output']>;
|
|
78327
78969
|
newCount?: Maybe<Scalars['Int']['output']>;
|
|
78328
78970
|
};
|
|
@@ -79465,6 +80107,7 @@ export declare type MercuryProposeChangesInput = {
|
|
|
79465
80107
|
changeParentFocusAreas?: InputMaybe<Array<MercuryChangeParentFocusAreaChangeInput>>;
|
|
79466
80108
|
changeProposalId: Scalars['ID']['input'];
|
|
79467
80109
|
createFocusAreas?: InputMaybe<Array<MercuryCreateFocusAreaChangeInput>>;
|
|
80110
|
+
implementFocusAreaChanges?: InputMaybe<Scalars['Boolean']['input']>;
|
|
79468
80111
|
moveFunds?: InputMaybe<Array<MercuryMoveFundsChangeInput>>;
|
|
79469
80112
|
movePositions?: InputMaybe<Array<MercuryMovePositionsChangeInput>>;
|
|
79470
80113
|
positionAllocations?: InputMaybe<Array<MercuryPositionAllocationChangeInput>>;
|
|
@@ -79628,6 +80271,7 @@ export declare type MercuryProviderWorkSearchEdge = {
|
|
|
79628
80271
|
node?: Maybe<MercuryProviderWorkSearchItem>;
|
|
79629
80272
|
};
|
|
79630
80273
|
export declare type MercuryProviderWorkSearchFilters = {
|
|
80274
|
+
jql?: InputMaybe<Scalars['String']['input']>;
|
|
79631
80275
|
project?: InputMaybe<MercuryProviderWorkSearchProjectFilters>;
|
|
79632
80276
|
};
|
|
79633
80277
|
export declare type MercuryProviderWorkSearchItem = {
|
|
@@ -80729,6 +81373,7 @@ export declare type Mutation = {
|
|
|
80729
81373
|
agentStudio_updateAgentDetails?: Maybe<AgentStudioUpdateAgentDetailsPayload>;
|
|
80730
81374
|
agentStudio_updateAgentKnowledgeSources?: Maybe<AgentStudioUpdateAgentKnowledgeSourcesPayload>;
|
|
80731
81375
|
agentStudio_updateConversationStarters?: Maybe<AgentStudioUpdateConversationStartersPayload>;
|
|
81376
|
+
agentStudio_updateCustomAction?: Maybe<AgentStudioUpdateCustomActionPayload>;
|
|
80732
81377
|
appRecommendations?: Maybe<AppRecMutation>;
|
|
80733
81378
|
appStorage?: Maybe<AppStorageMutation>;
|
|
80734
81379
|
appStorageCustomEntity?: Maybe<AppStorageCustomEntityMutation>;
|
|
@@ -80984,6 +81629,7 @@ export declare type Mutation = {
|
|
|
80984
81629
|
createLivePage?: Maybe<Content>;
|
|
80985
81630
|
createMentionNotification?: Maybe<CreateMentionNotificationPayload>;
|
|
80986
81631
|
createMentionReminderNotification?: Maybe<CreateMentionReminderNotificationPayload>;
|
|
81632
|
+
createNote?: Maybe<CreateNotePayload>;
|
|
80987
81633
|
createOnboardingSpace?: Maybe<Scalars['String']['output']>;
|
|
80988
81634
|
createOrUpdateArchivePageNote?: Maybe<Scalars['String']['output']>;
|
|
80989
81635
|
createPersonalSpace?: Maybe<Space>;
|
|
@@ -81005,6 +81651,7 @@ export declare type Mutation = {
|
|
|
81005
81651
|
csmAi_deleteAction?: Maybe<CsmAiDeleteActionPayload>;
|
|
81006
81652
|
csmAi_updateAction?: Maybe<CsmAiUpdateActionPayload>;
|
|
81007
81653
|
csmAi_updateAgent?: Maybe<CsmAiUpdateAgentPayload>;
|
|
81654
|
+
csmAi_updateHandoffConfig?: Maybe<CsmAiUpdateHandoffConfigPayload>;
|
|
81008
81655
|
customerService?: Maybe<CustomerServiceMutationApi>;
|
|
81009
81656
|
customerSupport?: Maybe<SupportRequestCatalogMutationApi>;
|
|
81010
81657
|
deactivatePaywallContent?: Maybe<DeactivatePaywallContentPayload>;
|
|
@@ -81029,6 +81676,7 @@ export declare type Mutation = {
|
|
|
81029
81676
|
deleteDevOpsServiceRelationship?: Maybe<DeleteDevOpsServiceRelationshipPayload>;
|
|
81030
81677
|
deleteInlineComment?: Maybe<Scalars['Boolean']['output']>;
|
|
81031
81678
|
deleteLabel?: Maybe<DeleteLabelPayload>;
|
|
81679
|
+
deleteNote?: Maybe<DeleteNotePayload>;
|
|
81032
81680
|
deletePages?: Maybe<DeletePagesPayload>;
|
|
81033
81681
|
deletePolarisIdeaTemplate?: Maybe<DeletePolarisIdeaTemplatePayload>;
|
|
81034
81682
|
deletePolarisInsight?: Maybe<DeletePolarisInsightPayload>;
|
|
@@ -81097,6 +81745,7 @@ export declare type Mutation = {
|
|
|
81097
81745
|
jira_publishIssueSearchConfig?: Maybe<JiraPublishIssueSearchConfigPayload>;
|
|
81098
81746
|
jira_reorderBoardViewColumn?: Maybe<JiraReorderBoardViewColumnPayload>;
|
|
81099
81747
|
jira_reorderProjectsSidebarMenuItem?: Maybe<JiraProjectsSidebarMenu>;
|
|
81748
|
+
jira_restoreGlobalCustomFields?: Maybe<JiraRestoreGlobalCustomFieldsPayload>;
|
|
81100
81749
|
jira_setBoardIssueCardCover?: Maybe<JiraSetBoardIssueCardCoverPayload>;
|
|
81101
81750
|
jira_setBoardViewCardFieldSelected?: Maybe<JiraSetBoardViewCardFieldSelectedPayload>;
|
|
81102
81751
|
jira_setBoardViewCardOptionState?: Maybe<JiraSetBoardViewCardOptionStatePayload>;
|
|
@@ -81284,6 +81933,7 @@ export declare type Mutation = {
|
|
|
81284
81933
|
updateHomeUserSettings?: Maybe<HomeUserSettings>;
|
|
81285
81934
|
updateLocalStorage?: Maybe<LocalStorage>;
|
|
81286
81935
|
updateNestedPageOwners?: Maybe<UpdateNestedPageOwnersPayload>;
|
|
81936
|
+
updateNote?: Maybe<UpdateNotePayload>;
|
|
81287
81937
|
updateOwner?: Maybe<UpdateOwnerPayload>;
|
|
81288
81938
|
updatePage?: Maybe<UpdatePagePayload>;
|
|
81289
81939
|
updatePageOwners?: Maybe<UpdatePageOwnersPayload>;
|
|
@@ -81375,6 +82025,10 @@ export declare type MutationAgentStudio_UpdateConversationStartersArgs = {
|
|
|
81375
82025
|
id: Scalars['ID']['input'];
|
|
81376
82026
|
input: AgentStudioUpdateConversationStartersInput;
|
|
81377
82027
|
};
|
|
82028
|
+
export declare type MutationAgentStudio_UpdateCustomActionArgs = {
|
|
82029
|
+
id: Scalars['ID']['input'];
|
|
82030
|
+
input: AgentStudioUpdateCustomActionInput;
|
|
82031
|
+
};
|
|
81378
82032
|
export declare type MutationApplyPolarisProjectTemplateArgs = {
|
|
81379
82033
|
input: ApplyPolarisProjectTemplateInput;
|
|
81380
82034
|
};
|
|
@@ -82184,6 +82838,9 @@ export declare type MutationCreateMentionNotificationArgs = {
|
|
|
82184
82838
|
export declare type MutationCreateMentionReminderNotificationArgs = {
|
|
82185
82839
|
input: CreateMentionReminderNotificationInput;
|
|
82186
82840
|
};
|
|
82841
|
+
export declare type MutationCreateNoteArgs = {
|
|
82842
|
+
input: CreateNoteInput;
|
|
82843
|
+
};
|
|
82187
82844
|
export declare type MutationCreateOnboardingSpaceArgs = {
|
|
82188
82845
|
spaceType: Scalars['String']['input'];
|
|
82189
82846
|
};
|
|
@@ -82276,6 +82933,12 @@ export declare type MutationCsmAi_UpdateAgentArgs = {
|
|
|
82276
82933
|
helpCenterAri: Scalars['ID']['input'];
|
|
82277
82934
|
input?: InputMaybe<CsmAiUpdateAgentInput>;
|
|
82278
82935
|
};
|
|
82936
|
+
export declare type MutationCsmAi_UpdateHandoffConfigArgs = {
|
|
82937
|
+
configId: Scalars['ID']['input'];
|
|
82938
|
+
csmAiHubId: Scalars['ID']['input'];
|
|
82939
|
+
helpCenterAri: Scalars['ID']['input'];
|
|
82940
|
+
input: CsmAiUpdateHandoffConfigInput;
|
|
82941
|
+
};
|
|
82279
82942
|
export declare type MutationCustomerServiceArgs = {
|
|
82280
82943
|
cloudId: Scalars['ID']['input'];
|
|
82281
82944
|
};
|
|
@@ -82349,6 +83012,9 @@ export declare type MutationDeleteLabelArgs = {
|
|
|
82349
83012
|
cloudId?: InputMaybe<Scalars['ID']['input']>;
|
|
82350
83013
|
input: DeleteLabelInput;
|
|
82351
83014
|
};
|
|
83015
|
+
export declare type MutationDeleteNoteArgs = {
|
|
83016
|
+
input: DeleteNoteInput;
|
|
83017
|
+
};
|
|
82352
83018
|
export declare type MutationDeletePagesArgs = {
|
|
82353
83019
|
input: Array<InputMaybe<DeletePagesInput>>;
|
|
82354
83020
|
};
|
|
@@ -82545,6 +83211,10 @@ export declare type MutationJira_ReorderBoardViewColumnArgs = {
|
|
|
82545
83211
|
export declare type MutationJira_ReorderProjectsSidebarMenuItemArgs = {
|
|
82546
83212
|
input: JiraReorderSidebarMenuItemInput;
|
|
82547
83213
|
};
|
|
83214
|
+
export declare type MutationJira_RestoreGlobalCustomFieldsArgs = {
|
|
83215
|
+
cloudId: Scalars['ID']['input'];
|
|
83216
|
+
input: JiraRestoreGlobalCustomFieldsInput;
|
|
83217
|
+
};
|
|
82548
83218
|
export declare type MutationJira_SetBoardIssueCardCoverArgs = {
|
|
82549
83219
|
input: JiraSetBoardIssueCardCoverInput;
|
|
82550
83220
|
};
|
|
@@ -83088,6 +83758,9 @@ export declare type MutationUpdateLocalStorageArgs = {
|
|
|
83088
83758
|
export declare type MutationUpdateNestedPageOwnersArgs = {
|
|
83089
83759
|
input: UpdatedNestedPageOwnersInput;
|
|
83090
83760
|
};
|
|
83761
|
+
export declare type MutationUpdateNoteArgs = {
|
|
83762
|
+
input: UpdateNoteInput;
|
|
83763
|
+
};
|
|
83091
83764
|
export declare type MutationUpdateOwnerArgs = {
|
|
83092
83765
|
input: UpdateOwnerInput;
|
|
83093
83766
|
};
|
|
@@ -83313,10 +83986,14 @@ export declare type MyVisitedSpacesInfo = {
|
|
|
83313
83986
|
export declare type MyVisitedSpacesItems = {
|
|
83314
83987
|
__typename?: 'MyVisitedSpacesItems';
|
|
83315
83988
|
spaces?: Maybe<Array<Maybe<Space>>>;
|
|
83989
|
+
spacesWithCloudId?: Maybe<Array<Maybe<Space>>>;
|
|
83316
83990
|
};
|
|
83317
83991
|
export declare type MyVisitedSpacesItemsSpacesArgs = {
|
|
83318
83992
|
cloudId?: InputMaybe<Scalars['ID']['input']>;
|
|
83319
83993
|
};
|
|
83994
|
+
export declare type MyVisitedSpacesItemsSpacesWithCloudIdArgs = {
|
|
83995
|
+
cloudId?: InputMaybe<Scalars['ID']['input']>;
|
|
83996
|
+
};
|
|
83320
83997
|
export declare type NadelBatchObjectIdentifiedBy = {
|
|
83321
83998
|
resultId: Scalars['String']['input'];
|
|
83322
83999
|
sourceId: Scalars['String']['input'];
|
|
@@ -83469,6 +84146,60 @@ export declare type NlpSource = {
|
|
|
83469
84146
|
export declare type Node = {
|
|
83470
84147
|
id: Scalars['ID']['output'];
|
|
83471
84148
|
};
|
|
84149
|
+
export declare type NoteConnection = {
|
|
84150
|
+
__typename?: 'NoteConnection';
|
|
84151
|
+
edges?: Maybe<Array<Maybe<NoteEdge>>>;
|
|
84152
|
+
nodes?: Maybe<Array<Maybe<NoteResponse>>>;
|
|
84153
|
+
noteInfo: NoteInfo;
|
|
84154
|
+
};
|
|
84155
|
+
export declare type NoteEdge = {
|
|
84156
|
+
__typename?: 'NoteEdge';
|
|
84157
|
+
cursor: Scalars['String']['output'];
|
|
84158
|
+
node: NoteResponse;
|
|
84159
|
+
};
|
|
84160
|
+
export declare type NoteInfo = {
|
|
84161
|
+
__typename?: 'NoteInfo';
|
|
84162
|
+
endCursor?: Maybe<Scalars['String']['output']>;
|
|
84163
|
+
hasNextNode: Scalars['Boolean']['output'];
|
|
84164
|
+
hasPreviousNode: Scalars['Boolean']['output'];
|
|
84165
|
+
startCursor?: Maybe<Scalars['String']['output']>;
|
|
84166
|
+
};
|
|
84167
|
+
export declare type NoteMutationError = {
|
|
84168
|
+
__typename?: 'NoteMutationError';
|
|
84169
|
+
extensions?: Maybe<Array<Maybe<NoteMutationErrorExtension>>>;
|
|
84170
|
+
message?: Maybe<Scalars['String']['output']>;
|
|
84171
|
+
};
|
|
84172
|
+
export declare type NoteMutationErrorExtension = {
|
|
84173
|
+
__typename?: 'NoteMutationErrorExtension';
|
|
84174
|
+
errorType?: Maybe<Scalars['String']['output']>;
|
|
84175
|
+
statusCode?: Maybe<Scalars['Int']['output']>;
|
|
84176
|
+
};
|
|
84177
|
+
export declare type NoteResponse = {
|
|
84178
|
+
__typename?: 'NoteResponse';
|
|
84179
|
+
ari: Scalars['String']['output'];
|
|
84180
|
+
body?: Maybe<Scalars['String']['output']>;
|
|
84181
|
+
bodyExcerpt?: Maybe<Scalars['String']['output']>;
|
|
84182
|
+
collectionName: Scalars['String']['output'];
|
|
84183
|
+
createdAt?: Maybe<Scalars['DateTime']['output']>;
|
|
84184
|
+
extraProps?: Maybe<Array<Prop>>;
|
|
84185
|
+
isPinned: Scalars['Boolean']['output'];
|
|
84186
|
+
labels?: Maybe<Array<Scalars['String']['output']>>;
|
|
84187
|
+
productLink?: Maybe<Scalars['String']['output']>;
|
|
84188
|
+
thumbnailId?: Maybe<Scalars['String']['output']>;
|
|
84189
|
+
title?: Maybe<Scalars['String']['output']>;
|
|
84190
|
+
updatedAt?: Maybe<Scalars['DateTime']['output']>;
|
|
84191
|
+
};
|
|
84192
|
+
export declare type NotesByCreatorInput = {
|
|
84193
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
84194
|
+
before?: InputMaybe<Scalars['String']['input']>;
|
|
84195
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
84196
|
+
isAscending?: InputMaybe<Scalars['Boolean']['input']>;
|
|
84197
|
+
last?: InputMaybe<Scalars['Int']['input']>;
|
|
84198
|
+
orderBy?: InputMaybe<NotesByDateLastModifiedOrder>;
|
|
84199
|
+
};
|
|
84200
|
+
export declare enum NotesByDateLastModifiedOrder {
|
|
84201
|
+
DateLastModified = "DATE_LAST_MODIFIED"
|
|
84202
|
+
}
|
|
83472
84203
|
export declare enum NotificationAction {
|
|
83473
84204
|
DontNotify = "DONT_NOTIFY",
|
|
83474
84205
|
Notify = "NOTIFY"
|
|
@@ -83715,6 +84446,14 @@ export declare type OpsgenieTeamMemberEdge = {
|
|
|
83715
84446
|
cursor: Scalars['String']['output'];
|
|
83716
84447
|
node?: Maybe<OpsgenieTeamMember>;
|
|
83717
84448
|
};
|
|
84449
|
+
export declare type OrgPolicyPolicyDetails = Node & {
|
|
84450
|
+
__typename?: 'OrgPolicyPolicyDetails';
|
|
84451
|
+
id: Scalars['ID']['output'];
|
|
84452
|
+
metadata?: Maybe<Scalars['JSON']['output']>;
|
|
84453
|
+
name: Scalars['String']['output'];
|
|
84454
|
+
rule?: Maybe<Scalars['JSON']['output']>;
|
|
84455
|
+
status: Scalars['String']['output'];
|
|
84456
|
+
};
|
|
83718
84457
|
export declare type Organization = {
|
|
83719
84458
|
__typename?: 'Organization';
|
|
83720
84459
|
orgId?: Maybe<Scalars['String']['output']>;
|
|
@@ -85579,6 +86318,15 @@ export declare type ProjectAvatars = {
|
|
|
85579
86318
|
x32: Scalars['URL']['output'];
|
|
85580
86319
|
x48: Scalars['URL']['output'];
|
|
85581
86320
|
};
|
|
86321
|
+
export declare type Prop = {
|
|
86322
|
+
__typename?: 'Prop';
|
|
86323
|
+
key: Scalars['String']['output'];
|
|
86324
|
+
value: Scalars['String']['output'];
|
|
86325
|
+
};
|
|
86326
|
+
export declare type PropInput = {
|
|
86327
|
+
key: Scalars['String']['input'];
|
|
86328
|
+
value: Scalars['String']['input'];
|
|
86329
|
+
};
|
|
85582
86330
|
export declare type Properties = {
|
|
85583
86331
|
__typename?: 'Properties';
|
|
85584
86332
|
formStatus: FormStatus;
|
|
@@ -85888,6 +86636,7 @@ export declare type Query = {
|
|
|
85888
86636
|
agentStudio_getAgents?: Maybe<AgentStudioAgentsConnection>;
|
|
85889
86637
|
agentStudio_suggestConversationStarters?: Maybe<AgentStudioSuggestConversationStartersResult>;
|
|
85890
86638
|
aiCoreApi_vsaQuestionsByProject?: Maybe<AiCoreApiVsaQuestionsResult>;
|
|
86639
|
+
aiCoreApi_vsaQuestionsByProjectAndType?: Maybe<AiCoreApiVsaQuestionsWithTypeResult>;
|
|
85891
86640
|
aiCoreApi_vsaReportingByProject?: Maybe<AiCoreApiVsaReportingResult>;
|
|
85892
86641
|
allIndividualSpaces?: Maybe<SpaceInfoConnection>;
|
|
85893
86642
|
allTemplates?: Maybe<PaginatedTemplateInfoList>;
|
|
@@ -85908,6 +86657,7 @@ export declare type Query = {
|
|
|
85908
86657
|
appLogLines?: Maybe<AppLogLineConnection>;
|
|
85909
86658
|
appLogs?: Maybe<AppLogConnection>;
|
|
85910
86659
|
appLogsWithMetaData?: Maybe<AppLogsWithMetaDataResponse>;
|
|
86660
|
+
appStorage_admin?: Maybe<AppStorageAdmin>;
|
|
85911
86661
|
appStorage_sqlDatabase?: Maybe<AppStorageSqlDatabasePayload>;
|
|
85912
86662
|
appStorage_sqlTableData?: Maybe<AppStorageSqlTableDataPayload>;
|
|
85913
86663
|
appStoredCustomEntities?: Maybe<AppStoredCustomEntityConnection>;
|
|
@@ -86175,6 +86925,7 @@ export declare type Query = {
|
|
|
86175
86925
|
confluence_template?: Maybe<ContentTemplate>;
|
|
86176
86926
|
confluence_tenantContext?: Maybe<ConfluenceTenantContext>;
|
|
86177
86927
|
confluence_userContentAccess?: Maybe<ConfluenceUserContentAccessResult>;
|
|
86928
|
+
confluence_usersHavePermission?: Maybe<ConfluenceUsersHavePermissionList>;
|
|
86178
86929
|
confluence_validateCalendarJql?: Maybe<ConfluenceCalendarJqlValidationResult>;
|
|
86179
86930
|
connectionManager_connectionsByJiraProject?: Maybe<ConnectionManagerConnectionsByJiraProjectResult>;
|
|
86180
86931
|
contactAdminPageConfig?: Maybe<ContactAdminPageConfig>;
|
|
@@ -86418,12 +87169,15 @@ export declare type Query = {
|
|
|
86418
87169
|
myVisitedSpaces?: Maybe<MyVisitedSpaces>;
|
|
86419
87170
|
nlpSearch?: Maybe<NlpSearchResponse>;
|
|
86420
87171
|
node?: Maybe<Node>;
|
|
87172
|
+
notesByCreator?: Maybe<NoteConnection>;
|
|
86421
87173
|
notifications?: Maybe<InfluentsNotificationQuery>;
|
|
86422
87174
|
oauthClients?: Maybe<OAuthClientsQuery>;
|
|
86423
87175
|
onboardingState?: Maybe<Array<OnboardingState>>;
|
|
86424
87176
|
opsgenie?: Maybe<OpsgenieQuery>;
|
|
86425
87177
|
opsgenieTeamRelationshipForDevOpsService?: Maybe<DevOpsServiceAndOpsgenieTeamRelationship>;
|
|
86426
87178
|
orgDefaultClassificationLevelId?: Maybe<Scalars['ID']['output']>;
|
|
87179
|
+
orgPolicy_policiesDetails?: Maybe<Array<Maybe<OrgPolicyPolicyDetails>>>;
|
|
87180
|
+
orgPolicy_policyDetails?: Maybe<OrgPolicyPolicyDetails>;
|
|
86427
87181
|
organization?: Maybe<Organization>;
|
|
86428
87182
|
organizationContext?: Maybe<OrganizationContext>;
|
|
86429
87183
|
page?: Maybe<Page>;
|
|
@@ -86476,6 +87230,7 @@ export declare type Query = {
|
|
|
86476
87230
|
publicLinksByCriteria?: Maybe<PublicLinkConnection>;
|
|
86477
87231
|
publishConditions?: Maybe<Array<Maybe<PublishConditions>>>;
|
|
86478
87232
|
pushNotificationSettings?: Maybe<ConfluencePushNotificationSettings>;
|
|
87233
|
+
queuesprioritygroups_priorityGroups?: Maybe<QueuesPriorityGroupsResults>;
|
|
86479
87234
|
quickReload?: Maybe<QuickReload>;
|
|
86480
87235
|
radar_connectors?: Maybe<Array<RadarConnector>>;
|
|
86481
87236
|
radar_fieldValues?: Maybe<RadarFieldValuesConnection>;
|
|
@@ -86638,6 +87393,11 @@ export declare type QueryAgentStudio_SuggestConversationStartersArgs = {
|
|
|
86638
87393
|
export declare type QueryAiCoreApi_VsaQuestionsByProjectArgs = {
|
|
86639
87394
|
projectAri: Scalars['ID']['input'];
|
|
86640
87395
|
};
|
|
87396
|
+
export declare type QueryAiCoreApi_VsaQuestionsByProjectAndTypeArgs = {
|
|
87397
|
+
limit?: InputMaybe<Scalars['Int']['input']>;
|
|
87398
|
+
projectAri: Scalars['ID']['input'];
|
|
87399
|
+
types?: InputMaybe<Array<InputMaybe<AiCoreApiQuestionType>>>;
|
|
87400
|
+
};
|
|
86641
87401
|
export declare type QueryAiCoreApi_VsaReportingByProjectArgs = {
|
|
86642
87402
|
projectAri: Scalars['ID']['input'];
|
|
86643
87403
|
};
|
|
@@ -86730,6 +87490,9 @@ export declare type QueryAppLogsWithMetaDataArgs = {
|
|
|
86730
87490
|
query?: InputMaybe<LogQueryInput>;
|
|
86731
87491
|
queryStartTime: Scalars['String']['input'];
|
|
86732
87492
|
};
|
|
87493
|
+
export declare type QueryAppStorage_AdminArgs = {
|
|
87494
|
+
appId: Scalars['ID']['input'];
|
|
87495
|
+
};
|
|
86733
87496
|
export declare type QueryAppStorage_SqlDatabaseArgs = {
|
|
86734
87497
|
input: AppStorageSqlDatabaseInput;
|
|
86735
87498
|
};
|
|
@@ -87896,6 +88659,13 @@ export declare type QueryConfluence_UserContentAccessArgs = {
|
|
|
87896
88659
|
cloudId: Scalars['ID']['input'];
|
|
87897
88660
|
contentId: Scalars['ID']['input'];
|
|
87898
88661
|
};
|
|
88662
|
+
export declare type QueryConfluence_UsersHavePermissionArgs = {
|
|
88663
|
+
cloudId: Scalars['ID']['input'];
|
|
88664
|
+
permission: Scalars['String']['input'];
|
|
88665
|
+
principalIds: Array<InputMaybe<Scalars['String']['input']>>;
|
|
88666
|
+
resourceId: Scalars['ID']['input'];
|
|
88667
|
+
resourceType: Scalars['String']['input'];
|
|
88668
|
+
};
|
|
87899
88669
|
export declare type QueryConfluence_ValidateCalendarJqlArgs = {
|
|
87900
88670
|
applicationId: Scalars['ID']['input'];
|
|
87901
88671
|
cloudId: Scalars['ID']['input'];
|
|
@@ -88118,6 +88888,9 @@ export declare type QueryCustomerStoryArgs = {
|
|
|
88118
88888
|
locale?: InputMaybe<Scalars['String']['input']>;
|
|
88119
88889
|
publishedOnly?: InputMaybe<Scalars['Boolean']['input']>;
|
|
88120
88890
|
};
|
|
88891
|
+
export declare type QueryDataSecurityPolicyArgs = {
|
|
88892
|
+
cloudId?: InputMaybe<Scalars['ID']['input']>;
|
|
88893
|
+
};
|
|
88121
88894
|
export declare type QueryDeactivatedOwnerPagesArgs = {
|
|
88122
88895
|
cursor?: InputMaybe<Scalars['String']['input']>;
|
|
88123
88896
|
limit?: InputMaybe<Scalars['Int']['input']>;
|
|
@@ -88770,12 +89543,21 @@ export declare type QueryNlpSearchArgs = {
|
|
|
88770
89543
|
export declare type QueryNodeArgs = {
|
|
88771
89544
|
id: Scalars['ID']['input'];
|
|
88772
89545
|
};
|
|
89546
|
+
export declare type QueryNotesByCreatorArgs = {
|
|
89547
|
+
input?: InputMaybe<NotesByCreatorInput>;
|
|
89548
|
+
};
|
|
88773
89549
|
export declare type QueryOnboardingStateArgs = {
|
|
88774
89550
|
key?: InputMaybe<Array<InputMaybe<Scalars['String']['input']>>>;
|
|
88775
89551
|
};
|
|
88776
89552
|
export declare type QueryOpsgenieTeamRelationshipForDevOpsServiceArgs = {
|
|
88777
89553
|
id: Scalars['ID']['input'];
|
|
88778
89554
|
};
|
|
89555
|
+
export declare type QueryOrgPolicy_PoliciesDetailsArgs = {
|
|
89556
|
+
ids: Array<InputMaybe<Scalars['ID']['input']>>;
|
|
89557
|
+
};
|
|
89558
|
+
export declare type QueryOrgPolicy_PolicyDetailsArgs = {
|
|
89559
|
+
id: Scalars['ID']['input'];
|
|
89560
|
+
};
|
|
88779
89561
|
export declare type QueryPageArgs = {
|
|
88780
89562
|
enablePaging?: InputMaybe<Scalars['Boolean']['input']>;
|
|
88781
89563
|
id: Scalars['ID']['input'];
|
|
@@ -88969,6 +89751,9 @@ export declare type QueryPublicLinksByCriteriaArgs = {
|
|
|
88969
89751
|
export declare type QueryPublishConditionsArgs = {
|
|
88970
89752
|
contentId: Scalars['ID']['input'];
|
|
88971
89753
|
};
|
|
89754
|
+
export declare type QueryQueuesprioritygroups_PriorityGroupsArgs = {
|
|
89755
|
+
projectId: Scalars['ID']['input'];
|
|
89756
|
+
};
|
|
88972
89757
|
export declare type QueryQuickReloadArgs = {
|
|
88973
89758
|
pageId: Scalars['Long']['input'];
|
|
88974
89759
|
since: Scalars['Long']['input'];
|
|
@@ -89383,6 +90168,7 @@ export declare type QueryUserAccessStatusArgs = {
|
|
|
89383
90168
|
cloudId?: InputMaybe<Scalars['ID']['input']>;
|
|
89384
90169
|
};
|
|
89385
90170
|
export declare type QueryUserGroupSearchArgs = {
|
|
90171
|
+
cloudId?: InputMaybe<Scalars['ID']['input']>;
|
|
89386
90172
|
maxResults?: InputMaybe<Scalars['Int']['input']>;
|
|
89387
90173
|
query?: InputMaybe<Scalars['String']['input']>;
|
|
89388
90174
|
sitePermissionTypeFilter?: InputMaybe<SitePermissionTypeFilter>;
|
|
@@ -89502,6 +90288,20 @@ export declare enum QueryType {
|
|
|
89502
90288
|
Select = "SELECT",
|
|
89503
90289
|
Update = "UPDATE"
|
|
89504
90290
|
}
|
|
90291
|
+
export declare type QueuesPriorityGroupsResults = {
|
|
90292
|
+
__typename?: 'QueuesPriorityGroupsResults';
|
|
90293
|
+
results?: Maybe<Array<Maybe<QueuesPriorityGroupsResultsGroup>>>;
|
|
90294
|
+
};
|
|
90295
|
+
export declare type QueuesPriorityGroupsResultsGroup = {
|
|
90296
|
+
__typename?: 'QueuesPriorityGroupsResultsGroup';
|
|
90297
|
+
category?: Maybe<Scalars['String']['output']>;
|
|
90298
|
+
creationMethod?: Maybe<Scalars['String']['output']>;
|
|
90299
|
+
id?: Maybe<Scalars['String']['output']>;
|
|
90300
|
+
name?: Maybe<Scalars['String']['output']>;
|
|
90301
|
+
projectId?: Maybe<Scalars['String']['output']>;
|
|
90302
|
+
queueIds?: Maybe<Array<Maybe<Scalars['Int']['output']>>>;
|
|
90303
|
+
version?: Maybe<Scalars['Int']['output']>;
|
|
90304
|
+
};
|
|
89505
90305
|
export declare type QuickReload = {
|
|
89506
90306
|
__typename?: 'QuickReload';
|
|
89507
90307
|
comments: Array<QuickReloadComment>;
|
|
@@ -89561,6 +90361,7 @@ export declare type RadarCustomFieldDefinition = RadarFieldDefinition & {
|
|
|
89561
90361
|
isHidden?: Maybe<Scalars['Boolean']['output']>;
|
|
89562
90362
|
relativeId: Scalars['String']['output'];
|
|
89563
90363
|
sensitivityLevel: RadarSensitivityLevel;
|
|
90364
|
+
sourceField: Scalars['String']['output'];
|
|
89564
90365
|
syncStatus: RadarCustomFieldSyncStatus;
|
|
89565
90366
|
type: RadarFieldType;
|
|
89566
90367
|
};
|
|
@@ -91721,6 +92522,7 @@ export declare type SearchConfluencePageBlogAttachment = SearchL2FeatureProvider
|
|
|
91721
92522
|
__typename?: 'SearchConfluencePageBlogAttachment';
|
|
91722
92523
|
bodyText?: Maybe<Scalars['String']['output']>;
|
|
91723
92524
|
confluenceEntity?: Maybe<SearchConfluenceEntity>;
|
|
92525
|
+
content?: Maybe<Array<Maybe<Content>>>;
|
|
91724
92526
|
createdDate?: Maybe<Scalars['DateTime']['output']>;
|
|
91725
92527
|
description: Scalars['String']['output'];
|
|
91726
92528
|
entityId?: Maybe<Scalars['String']['output']>;
|
|
@@ -91853,6 +92655,7 @@ export declare type SearchFilterInput = {
|
|
|
91853
92655
|
locations: Array<Scalars['String']['input']>;
|
|
91854
92656
|
mercuryFilters?: InputMaybe<SearchMercuryFilter>;
|
|
91855
92657
|
thirdPartyFilters?: InputMaybe<SearchThirdPartyFilter>;
|
|
92658
|
+
trelloFilters?: InputMaybe<SearchTrelloFilter>;
|
|
91856
92659
|
};
|
|
91857
92660
|
export declare type SearchInterleaverScrapingResult = {
|
|
91858
92661
|
__typename?: 'SearchInterleaverScrapingResult';
|
|
@@ -92419,6 +93222,9 @@ export declare type SearchTimeseriesCount = {
|
|
|
92419
93222
|
__typename?: 'SearchTimeseriesCount';
|
|
92420
93223
|
nodes: Array<TimeseriesCountItem>;
|
|
92421
93224
|
};
|
|
93225
|
+
export declare type SearchTrelloFilter = {
|
|
93226
|
+
isRecentBias?: InputMaybe<Scalars['Boolean']['input']>;
|
|
93227
|
+
};
|
|
92422
93228
|
export declare type SearchesByTerm = {
|
|
92423
93229
|
__typename?: 'SearchesByTerm';
|
|
92424
93230
|
nodes: Array<SearchesByTermItems>;
|
|
@@ -93709,6 +94515,7 @@ export declare type ShepherdQuery = {
|
|
|
93709
94515
|
shepherdAppInfo: ShepherdAppInfo;
|
|
93710
94516
|
subscriptions?: Maybe<ShepherdSubscriptionsResult>;
|
|
93711
94517
|
workspace?: Maybe<ShepherdWorkspaceResult>;
|
|
94518
|
+
workspaceByOrgId?: Maybe<ShepherdWorkspaceByOrgId>;
|
|
93712
94519
|
workspacesByUserContext?: Maybe<ShepherdWorkspaceResult>;
|
|
93713
94520
|
};
|
|
93714
94521
|
export declare type ShepherdQueryShepherdActivityArgs = {
|
|
@@ -93741,6 +94548,9 @@ export declare type ShepherdQueryWorkspaceArgs = {
|
|
|
93741
94548
|
id?: InputMaybe<Scalars['ID']['input']>;
|
|
93742
94549
|
orgId?: InputMaybe<Scalars['ID']['input']>;
|
|
93743
94550
|
};
|
|
94551
|
+
export declare type ShepherdQueryWorkspaceByOrgIdArgs = {
|
|
94552
|
+
orgId: Scalars['ID']['input'];
|
|
94553
|
+
};
|
|
93744
94554
|
export declare enum ShepherdQueryErrorType {
|
|
93745
94555
|
BadRequest = "BAD_REQUEST",
|
|
93746
94556
|
InternalServerError = "INTERNAL_SERVER_ERROR",
|
|
@@ -94120,6 +94930,10 @@ export declare type ShepherdWorkspaceDetectionsArgs = {
|
|
|
94120
94930
|
detectionId?: InputMaybe<Scalars['ID']['input']>;
|
|
94121
94931
|
settingId?: InputMaybe<Scalars['ID']['input']>;
|
|
94122
94932
|
};
|
|
94933
|
+
export declare type ShepherdWorkspaceByOrgId = {
|
|
94934
|
+
__typename?: 'ShepherdWorkspaceByOrgId';
|
|
94935
|
+
ari?: Maybe<Scalars['ID']['output']>;
|
|
94936
|
+
};
|
|
94123
94937
|
export declare type ShepherdWorkspaceConnection = {
|
|
94124
94938
|
__typename?: 'ShepherdWorkspaceConnection';
|
|
94125
94939
|
edges?: Maybe<Array<Maybe<ShepherdWorkspaceEdge>>>;
|
|
@@ -94967,12 +95781,14 @@ export declare type SpaceOrContent = {
|
|
|
94967
95781
|
__typename?: 'SpaceOrContent';
|
|
94968
95782
|
alias?: Maybe<Scalars['String']['output']>;
|
|
94969
95783
|
ancestors?: Maybe<Array<Maybe<Content>>>;
|
|
95784
|
+
ari?: Maybe<Scalars['ID']['output']>;
|
|
94970
95785
|
body?: Maybe<ContentBodyPerRepresentation>;
|
|
94971
95786
|
childTypes?: Maybe<ChildContentTypesAvailable>;
|
|
94972
95787
|
container?: Maybe<SpaceOrContent>;
|
|
94973
95788
|
creatorAccountId?: Maybe<Scalars['String']['output']>;
|
|
94974
95789
|
dataClassificationTags: Array<Maybe<Scalars['String']['output']>>;
|
|
94975
95790
|
description?: Maybe<SpaceDescriptions>;
|
|
95791
|
+
draftVersion?: Maybe<Version>;
|
|
94976
95792
|
extensions?: Maybe<Array<Maybe<KeyValueHierarchyMap>>>;
|
|
94977
95793
|
history?: Maybe<History>;
|
|
94978
95794
|
homepage?: Maybe<Content>;
|
|
@@ -95119,6 +95935,8 @@ export declare type SpacePermissionsSubjectsWithPermissionsArgs = {
|
|
|
95119
95935
|
};
|
|
95120
95936
|
export declare type SpaceRole = {
|
|
95121
95937
|
__typename?: 'SpaceRole';
|
|
95938
|
+
inUseByDefaultSpaceRoleAssignments?: Maybe<Scalars['Boolean']['output']>;
|
|
95939
|
+
inUseByPrincipals?: Maybe<Scalars['Boolean']['output']>;
|
|
95122
95940
|
roleDescription: Scalars['String']['output'];
|
|
95123
95941
|
roleDisplayName: Scalars['String']['output'];
|
|
95124
95942
|
roleId: Scalars['ID']['output'];
|
|
@@ -96256,6 +97074,10 @@ export declare type TargetLocation = {
|
|
|
96256
97074
|
links?: Maybe<LinksContextBase>;
|
|
96257
97075
|
parentId?: Maybe<Scalars['ID']['output']>;
|
|
96258
97076
|
};
|
|
97077
|
+
export declare enum TargetTransition {
|
|
97078
|
+
Done = "DONE",
|
|
97079
|
+
Undone = "UNDONE"
|
|
97080
|
+
}
|
|
96259
97081
|
export declare enum TaskStatus {
|
|
96260
97082
|
Checked = "CHECKED",
|
|
96261
97083
|
Unchecked = "UNCHECKED"
|
|
@@ -98650,6 +99472,49 @@ export declare type TrelloCardBadges = {
|
|
|
98650
99472
|
viewer?: Maybe<TrelloCardViewer>;
|
|
98651
99473
|
votes?: Maybe<Scalars['Int']['output']>;
|
|
98652
99474
|
};
|
|
99475
|
+
export declare type TrelloCardBatch = {
|
|
99476
|
+
__typename?: 'TrelloCardBatch';
|
|
99477
|
+
objectId: Scalars['ID']['output'];
|
|
99478
|
+
processed?: Maybe<Scalars['Int']['output']>;
|
|
99479
|
+
status?: Maybe<TrelloCardBatchStatus>;
|
|
99480
|
+
total?: Maybe<Scalars['Int']['output']>;
|
|
99481
|
+
};
|
|
99482
|
+
export declare type TrelloCardBatchJobPayload = Payload & {
|
|
99483
|
+
__typename?: 'TrelloCardBatchJobPayload';
|
|
99484
|
+
errors?: Maybe<Array<MutationError>>;
|
|
99485
|
+
job?: Maybe<TrelloCardBatch>;
|
|
99486
|
+
success: Scalars['Boolean']['output'];
|
|
99487
|
+
};
|
|
99488
|
+
export declare type TrelloCardBatchScript = {
|
|
99489
|
+
commands?: InputMaybe<Array<TrelloCardCommand>>;
|
|
99490
|
+
};
|
|
99491
|
+
export declare type TrelloCardBatchSelection = {
|
|
99492
|
+
clauses?: InputMaybe<Array<TrelloCardClause>>;
|
|
99493
|
+
};
|
|
99494
|
+
export declare type TrelloCardBatchSpecificationInput = {
|
|
99495
|
+
boardId: Scalars['ID']['input'];
|
|
99496
|
+
script?: InputMaybe<TrelloCardBatchScript>;
|
|
99497
|
+
selection?: InputMaybe<TrelloCardBatchSelection>;
|
|
99498
|
+
};
|
|
99499
|
+
export declare enum TrelloCardBatchStatus {
|
|
99500
|
+
Completed = "COMPLETED",
|
|
99501
|
+
Executing = "EXECUTING",
|
|
99502
|
+
Failed = "FAILED",
|
|
99503
|
+
Pending = "PENDING"
|
|
99504
|
+
}
|
|
99505
|
+
export declare type TrelloCardClause = {
|
|
99506
|
+
closed?: InputMaybe<TrelloCardClosedClause>;
|
|
99507
|
+
list?: InputMaybe<TrelloCardListClause>;
|
|
99508
|
+
};
|
|
99509
|
+
export declare type TrelloCardCloseCommand = {
|
|
99510
|
+
close: Scalars['Boolean']['input'];
|
|
99511
|
+
};
|
|
99512
|
+
export declare type TrelloCardClosedClause = {
|
|
99513
|
+
closed: Scalars['Boolean']['input'];
|
|
99514
|
+
};
|
|
99515
|
+
export declare type TrelloCardCommand = {
|
|
99516
|
+
close?: InputMaybe<TrelloCardCloseCommand>;
|
|
99517
|
+
};
|
|
98653
99518
|
export declare type TrelloCardConnection = {
|
|
98654
99519
|
__typename?: 'TrelloCardConnection';
|
|
98655
99520
|
edges?: Maybe<Array<TrelloCardEdge>>;
|
|
@@ -98754,6 +99619,9 @@ export declare type TrelloCardLimits = {
|
|
|
98754
99619
|
checklists?: Maybe<TrelloCardLimit>;
|
|
98755
99620
|
stickers?: Maybe<TrelloCardLimit>;
|
|
98756
99621
|
};
|
|
99622
|
+
export declare type TrelloCardListClause = {
|
|
99623
|
+
listId: Scalars['ID']['input'];
|
|
99624
|
+
};
|
|
98757
99625
|
export declare type TrelloCardLocation = {
|
|
98758
99626
|
__typename?: 'TrelloCardLocation';
|
|
98759
99627
|
address?: Maybe<Scalars['String']['output']>;
|
|
@@ -99392,6 +100260,7 @@ export declare type TrelloMemberNonPublicData = {
|
|
|
99392
100260
|
export declare type TrelloMemberPrefs = {
|
|
99393
100261
|
__typename?: 'TrelloMemberPrefs';
|
|
99394
100262
|
colorBlind?: Maybe<Scalars['Boolean']['output']>;
|
|
100263
|
+
keyboardShortcutsEnabled?: Maybe<Scalars['Boolean']['output']>;
|
|
99395
100264
|
};
|
|
99396
100265
|
export declare type TrelloMemberUpdated = {
|
|
99397
100266
|
__typename?: 'TrelloMemberUpdated';
|
|
@@ -99515,6 +100384,7 @@ export declare type TrelloMutationApi = {
|
|
|
99515
100384
|
removeCardFromPlannerCalendarEvent?: Maybe<TrelloRemoveCardFromPlannerCalendarEventPayload>;
|
|
99516
100385
|
removeMemberFromCard?: Maybe<TrelloRemoveMemberFromCardPayload>;
|
|
99517
100386
|
removeMemberFromWorkspace?: Maybe<TrelloRemoveMemberFromWorkspacePayload>;
|
|
100387
|
+
submitCardBatchToBoard?: Maybe<TrelloCardBatchJobPayload>;
|
|
99518
100388
|
unarchiveCard?: Maybe<TrelloUnarchiveCardPayload>;
|
|
99519
100389
|
unwatchCard?: Maybe<TrelloWatchCardPayload>;
|
|
99520
100390
|
updateBoardIsTemplate?: Maybe<TrelloUpdateBoardIsTemplatePayload>;
|
|
@@ -99524,6 +100394,7 @@ export declare type TrelloMutationApi = {
|
|
|
99524
100394
|
updateBoardViewerAISlack?: Maybe<TrelloUpdateBoardViewerAiSlackPayload>;
|
|
99525
100395
|
updateBoardViewerMirrorCard?: Maybe<TrelloUpdateBoardViewerShowCompactMirrorCardPayload>;
|
|
99526
100396
|
updateCardName?: Maybe<TrelloUpdateCardNamePayload>;
|
|
100397
|
+
updateKeyboardShortcutsPref?: Maybe<TrelloUpdateKeyboardShortcutsPrefPayload>;
|
|
99527
100398
|
watchCard?: Maybe<TrelloWatchCardPayload>;
|
|
99528
100399
|
};
|
|
99529
100400
|
export declare type TrelloMutationApiAddMemberToCardArgs = {
|
|
@@ -99562,6 +100433,9 @@ export declare type TrelloMutationApiRemoveMemberFromCardArgs = {
|
|
|
99562
100433
|
export declare type TrelloMutationApiRemoveMemberFromWorkspaceArgs = {
|
|
99563
100434
|
input: TrelloRemoveMemberFromWorkspaceInput;
|
|
99564
100435
|
};
|
|
100436
|
+
export declare type TrelloMutationApiSubmitCardBatchToBoardArgs = {
|
|
100437
|
+
input: TrelloCardBatchSpecificationInput;
|
|
100438
|
+
};
|
|
99565
100439
|
export declare type TrelloMutationApiUnarchiveCardArgs = {
|
|
99566
100440
|
input: TrelloUnarchiveCardInput;
|
|
99567
100441
|
};
|
|
@@ -99589,6 +100463,9 @@ export declare type TrelloMutationApiUpdateBoardViewerMirrorCardArgs = {
|
|
|
99589
100463
|
export declare type TrelloMutationApiUpdateCardNameArgs = {
|
|
99590
100464
|
input: TrelloUpdateCardNameInput;
|
|
99591
100465
|
};
|
|
100466
|
+
export declare type TrelloMutationApiUpdateKeyboardShortcutsPrefArgs = {
|
|
100467
|
+
input: TrelloUpdateKeyboardShortcutsPrefInput;
|
|
100468
|
+
};
|
|
99592
100469
|
export declare type TrelloMutationApiWatchCardArgs = {
|
|
99593
100470
|
input: TrelloWatchCardInput;
|
|
99594
100471
|
};
|
|
@@ -100025,6 +100902,7 @@ export declare type TrelloQueryApi = {
|
|
|
100025
100902
|
boardByShortLink?: Maybe<TrelloBoard>;
|
|
100026
100903
|
boardMirrorCardInfo?: Maybe<TrelloBoardMirrorCards>;
|
|
100027
100904
|
card?: Maybe<TrelloCard>;
|
|
100905
|
+
cardBatch?: Maybe<TrelloCardBatch>;
|
|
100028
100906
|
echo?: Maybe<Scalars['String']['output']>;
|
|
100029
100907
|
echos?: Maybe<Array<Maybe<Scalars['String']['output']>>>;
|
|
100030
100908
|
enabledPlannerCalendarsByAccountId?: Maybe<TrelloPlannerCalendarConnection>;
|
|
@@ -100065,6 +100943,9 @@ export declare type TrelloQueryApiBoardMirrorCardInfoArgs = {
|
|
|
100065
100943
|
export declare type TrelloQueryApiCardArgs = {
|
|
100066
100944
|
id: Scalars['ID']['input'];
|
|
100067
100945
|
};
|
|
100946
|
+
export declare type TrelloQueryApiCardBatchArgs = {
|
|
100947
|
+
id: Scalars['ID']['input'];
|
|
100948
|
+
};
|
|
100068
100949
|
export declare type TrelloQueryApiEchosArgs = {
|
|
100069
100950
|
echo: Array<Scalars['String']['input']>;
|
|
100070
100951
|
};
|
|
@@ -100480,6 +101361,15 @@ export declare type TrelloUpdateCardNamePayload = Payload & {
|
|
|
100480
101361
|
errors?: Maybe<Array<MutationError>>;
|
|
100481
101362
|
success: Scalars['Boolean']['output'];
|
|
100482
101363
|
};
|
|
101364
|
+
export declare type TrelloUpdateKeyboardShortcutsPrefInput = {
|
|
101365
|
+
userId: Scalars['ID']['input'];
|
|
101366
|
+
value: Scalars['Boolean']['input'];
|
|
101367
|
+
};
|
|
101368
|
+
export declare type TrelloUpdateKeyboardShortcutsPrefPayload = Payload & {
|
|
101369
|
+
__typename?: 'TrelloUpdateKeyboardShortcutsPrefPayload';
|
|
101370
|
+
errors?: Maybe<Array<MutationError>>;
|
|
101371
|
+
success: Scalars['Boolean']['output'];
|
|
101372
|
+
};
|
|
100483
101373
|
export declare type TrelloUploadedBackground = {
|
|
100484
101374
|
__typename?: 'TrelloUploadedBackground';
|
|
100485
101375
|
objectId: Scalars['ID']['output'];
|
|
@@ -100640,6 +101530,7 @@ export declare type UnifiedAccount = UnifiedINode & {
|
|
|
100640
101530
|
isLinked: Scalars['Boolean']['output'];
|
|
100641
101531
|
isManaged: Scalars['Boolean']['output'];
|
|
100642
101532
|
isPrimary: Scalars['Boolean']['output'];
|
|
101533
|
+
isProfileOwnerConsented: Scalars['Boolean']['output'];
|
|
100643
101534
|
khorosUserId: Scalars['Int']['output'];
|
|
100644
101535
|
linkedAccounts?: Maybe<UnifiedULinkedAccountResult>;
|
|
100645
101536
|
nickname: Scalars['String']['output'];
|
|
@@ -101247,6 +102138,7 @@ export declare type UnifiedProfile = UnifiedINode & {
|
|
|
101247
102138
|
isPersonalView?: Maybe<Scalars['Boolean']['output']>;
|
|
101248
102139
|
isPrivate: Scalars['Boolean']['output'];
|
|
101249
102140
|
isProfileBanned?: Maybe<Scalars['Boolean']['output']>;
|
|
102141
|
+
isProfileOwnerConsented?: Maybe<Scalars['Boolean']['output']>;
|
|
101250
102142
|
learning?: Maybe<UnifiedULearningResult>;
|
|
101251
102143
|
linkedinUrl?: Maybe<Scalars['String']['output']>;
|
|
101252
102144
|
location?: Maybe<Scalars['String']['output']>;
|
|
@@ -101658,6 +102550,7 @@ export declare type UpdateCompassHasOwnerScorecardCriteriaInput = {
|
|
|
101658
102550
|
export declare type UpdateCompassLinkInput = {
|
|
101659
102551
|
id: Scalars['ID']['input'];
|
|
101660
102552
|
name?: InputMaybe<Scalars['String']['input']>;
|
|
102553
|
+
objectId?: InputMaybe<Scalars['ID']['input']>;
|
|
101661
102554
|
type?: InputMaybe<CompassLinkType>;
|
|
101662
102555
|
url?: InputMaybe<Scalars['URL']['input']>;
|
|
101663
102556
|
};
|
|
@@ -101673,6 +102566,7 @@ export declare type UpdateCompassScorecardCriteriaInput = {
|
|
|
101673
102566
|
hasLink?: InputMaybe<UpdateCompassHasLinkScorecardCriteriaInput>;
|
|
101674
102567
|
hasMetricValue?: InputMaybe<UpdateCompassHasMetricValueCriteriaInput>;
|
|
101675
102568
|
hasOwner?: InputMaybe<UpdateCompassHasOwnerScorecardCriteriaInput>;
|
|
102569
|
+
hasPackageDependency?: InputMaybe<CompassUpdateHasPackageDependencyScorecardCriteriaInput>;
|
|
101676
102570
|
};
|
|
101677
102571
|
export declare type UpdateCompassScorecardInput = {
|
|
101678
102572
|
componentCreationTimeFilter?: InputMaybe<CompassComponentCreationTimeFilterInput>;
|
|
@@ -101948,6 +102842,14 @@ export declare type UpdateJiraPlaybookStepInput = {
|
|
|
101948
102842
|
stepId?: InputMaybe<Scalars['ID']['input']>;
|
|
101949
102843
|
type: JiraPlaybookStepType;
|
|
101950
102844
|
};
|
|
102845
|
+
export declare type UpdateMetadataInput = {
|
|
102846
|
+
ari: Scalars['String']['input'];
|
|
102847
|
+
extraProps?: InputMaybe<Array<PropInput>>;
|
|
102848
|
+
isPinned?: InputMaybe<Scalars['Boolean']['input']>;
|
|
102849
|
+
labels?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
102850
|
+
productLink?: InputMaybe<Scalars['String']['input']>;
|
|
102851
|
+
thumbnailId?: InputMaybe<Scalars['String']['input']>;
|
|
102852
|
+
};
|
|
101951
102853
|
export declare type UpdateNestedPageOwnersPayload = Payload & {
|
|
101952
102854
|
__typename?: 'UpdateNestedPageOwnersPayload';
|
|
101953
102855
|
errors?: Maybe<Array<MutationError>>;
|
|
@@ -101955,6 +102857,17 @@ export declare type UpdateNestedPageOwnersPayload = Payload & {
|
|
|
101955
102857
|
taskId: Scalars['ID']['output'];
|
|
101956
102858
|
warnings?: Maybe<Array<Maybe<ChangeOwnerWarning>>>;
|
|
101957
102859
|
};
|
|
102860
|
+
export declare type UpdateNoteInput = {
|
|
102861
|
+
body?: InputMaybe<Scalars['String']['input']>;
|
|
102862
|
+
metadata: UpdateMetadataInput;
|
|
102863
|
+
title?: InputMaybe<Scalars['String']['input']>;
|
|
102864
|
+
};
|
|
102865
|
+
export declare type UpdateNotePayload = {
|
|
102866
|
+
__typename?: 'UpdateNotePayload';
|
|
102867
|
+
errors?: Maybe<Array<NoteMutationError>>;
|
|
102868
|
+
note?: Maybe<NoteResponse>;
|
|
102869
|
+
success: Scalars['Boolean']['output'];
|
|
102870
|
+
};
|
|
101958
102871
|
export declare type UpdateOwnerInput = {
|
|
101959
102872
|
contentId: Scalars['ID']['input'];
|
|
101960
102873
|
ownerId: Scalars['String']['input'];
|
|
@@ -102583,6 +103496,26 @@ export declare type VirtualAgentAiAnswerStatusForChannel = {
|
|
|
102583
103496
|
isAiResponsesChannel?: Maybe<Scalars['Boolean']['output']>;
|
|
102584
103497
|
slackChannelId: Scalars['String']['output'];
|
|
102585
103498
|
};
|
|
103499
|
+
export declare type VirtualAgentAutoCloseConfig = {
|
|
103500
|
+
__typename?: 'VirtualAgentAutoCloseConfig';
|
|
103501
|
+
autoCloseMessage?: Maybe<Scalars['String']['output']>;
|
|
103502
|
+
};
|
|
103503
|
+
export declare type VirtualAgentAutoCloseConfigInput = {
|
|
103504
|
+
autoCloseMessage?: InputMaybe<Scalars['String']['input']>;
|
|
103505
|
+
};
|
|
103506
|
+
export declare type VirtualAgentCsatConfig = {
|
|
103507
|
+
__typename?: 'VirtualAgentCSATConfig';
|
|
103508
|
+
askForCSATMessage?: Maybe<Scalars['String']['output']>;
|
|
103509
|
+
noFeedbackProvidedMessage?: Maybe<Scalars['String']['output']>;
|
|
103510
|
+
requestAdditionalFeedbackMessage?: Maybe<Scalars['String']['output']>;
|
|
103511
|
+
thanksForFeedbackMessage?: Maybe<Scalars['String']['output']>;
|
|
103512
|
+
};
|
|
103513
|
+
export declare type VirtualAgentCsatConfigInput = {
|
|
103514
|
+
askForCSATMessage?: InputMaybe<Scalars['String']['input']>;
|
|
103515
|
+
noFeedbackProvidedMessage?: InputMaybe<Scalars['String']['input']>;
|
|
103516
|
+
requestAdditionalFeedbackMessage?: InputMaybe<Scalars['String']['input']>;
|
|
103517
|
+
thanksForFeedbackMessage?: InputMaybe<Scalars['String']['input']>;
|
|
103518
|
+
};
|
|
102586
103519
|
export declare type VirtualAgentChannelConfig = {
|
|
102587
103520
|
__typename?: 'VirtualAgentChannelConfig';
|
|
102588
103521
|
aiAnswersProductionStatus?: Maybe<Array<Maybe<VirtualAgentAiAnswerStatusForChannel>>>;
|
|
@@ -102605,6 +103538,7 @@ export declare type VirtualAgentConfiguration = Node & {
|
|
|
102605
103538
|
liveIntentsCount?: Maybe<Scalars['Int']['output']>;
|
|
102606
103539
|
offerEscalationConfig?: Maybe<VirtualAgentOfferEscalationConfig>;
|
|
102607
103540
|
respondToQueries: Scalars['Boolean']['output'];
|
|
103541
|
+
standardConfig?: Maybe<VirtualAgentStandardConfig>;
|
|
102608
103542
|
standardFlowEditors?: Maybe<VirtualAgentFlowEditorsConnection>;
|
|
102609
103543
|
virtualAgentChannelConfig?: Maybe<VirtualAgentChannelConfig>;
|
|
102610
103544
|
virtualAgentStatisticsProjection?: Maybe<VirtualAgentStatisticsProjection>;
|
|
@@ -102808,6 +103742,13 @@ export declare type VirtualAgentGlobalStatisticsProjection = {
|
|
|
102808
103742
|
totalMatched?: Maybe<Scalars['Float']['output']>;
|
|
102809
103743
|
totalTraffic?: Maybe<Scalars['Int']['output']>;
|
|
102810
103744
|
};
|
|
103745
|
+
export declare type VirtualAgentGreetingConfig = {
|
|
103746
|
+
__typename?: 'VirtualAgentGreetingConfig';
|
|
103747
|
+
greetingMessage?: Maybe<Scalars['String']['output']>;
|
|
103748
|
+
};
|
|
103749
|
+
export declare type VirtualAgentGreetingConfigInput = {
|
|
103750
|
+
greetingMessage?: InputMaybe<Scalars['String']['input']>;
|
|
103751
|
+
};
|
|
102811
103752
|
export declare type VirtualAgentIntent = Node & {
|
|
102812
103753
|
__typename?: 'VirtualAgentIntent';
|
|
102813
103754
|
confirmationMessage?: Maybe<Scalars['String']['output']>;
|
|
@@ -102935,6 +103876,17 @@ export declare type VirtualAgentLiveIntentCountResponse = {
|
|
|
102935
103876
|
containerId: Scalars['ID']['output'];
|
|
102936
103877
|
liveIntentsCount: Scalars['Int']['output'];
|
|
102937
103878
|
};
|
|
103879
|
+
export declare type VirtualAgentMatchIntentConfig = {
|
|
103880
|
+
__typename?: 'VirtualAgentMatchIntentConfig';
|
|
103881
|
+
askToRephraseAgainMessage?: Maybe<Scalars['String']['output']>;
|
|
103882
|
+
rephraseMessage?: Maybe<Scalars['String']['output']>;
|
|
103883
|
+
suggestMultipleIntentsMessage?: Maybe<Scalars['String']['output']>;
|
|
103884
|
+
};
|
|
103885
|
+
export declare type VirtualAgentMatchIntentConfigInput = {
|
|
103886
|
+
askToRephraseAgainMessage?: InputMaybe<Scalars['String']['input']>;
|
|
103887
|
+
rephraseMessage?: InputMaybe<Scalars['String']['input']>;
|
|
103888
|
+
suggestMultipleIntentsMessage?: InputMaybe<Scalars['String']['input']>;
|
|
103889
|
+
};
|
|
102938
103890
|
export declare type VirtualAgentMutationApi = {
|
|
102939
103891
|
__typename?: 'VirtualAgentMutationApi';
|
|
102940
103892
|
copyIntentRuleProjection?: Maybe<VirtualAgentCopyIntentRuleProjectionPayload>;
|
|
@@ -102944,10 +103896,14 @@ export declare type VirtualAgentMutationApi = {
|
|
|
102944
103896
|
deleteIntentRuleProjection?: Maybe<VirtualAgentDeleteIntentRuleProjectionPayload>;
|
|
102945
103897
|
handleFlowEditorActions?: Maybe<VirtualAgentFlowEditorActionPayload>;
|
|
102946
103898
|
updateAiAnswerForSlackChannel?: Maybe<VirtualAgentUpdateAiAnswerForSlackChannelPayload>;
|
|
103899
|
+
updateAutoCloseConfig?: Maybe<VirtualAgentStandardConfigUpdatePayload>;
|
|
103900
|
+
updateCSATConfig?: Maybe<VirtualAgentStandardConfigUpdatePayload>;
|
|
102947
103901
|
updateChatChannel?: Maybe<VirtualAgentUpdateChatChannelPayload>;
|
|
102948
103902
|
updateFlowEditorFlow?: Maybe<VirtualAgentFlowEditorPayload>;
|
|
103903
|
+
updateGreetingConfig?: Maybe<VirtualAgentStandardConfigUpdatePayload>;
|
|
102949
103904
|
updateIntentRuleProjection?: Maybe<VirtualAgentUpdateIntentRuleProjectionPayload>;
|
|
102950
103905
|
updateIntentRuleProjectionQuestions?: Maybe<VirtualAgentUpdateIntentRuleProjectionQuestionsPayload>;
|
|
103906
|
+
updateMatchIntentConfig?: Maybe<VirtualAgentStandardConfigUpdatePayload>;
|
|
102951
103907
|
updateVirtualAgentConfiguration?: Maybe<VirtualAgentUpdateConfigurationPayload>;
|
|
102952
103908
|
};
|
|
102953
103909
|
export declare type VirtualAgentMutationApiCopyIntentRuleProjectionArgs = {
|
|
@@ -102976,6 +103932,14 @@ export declare type VirtualAgentMutationApiUpdateAiAnswerForSlackChannelArgs = {
|
|
|
102976
103932
|
input: VirtualAgentUpdateAiAnswerForSlackChannelInput;
|
|
102977
103933
|
virtualAgentConfigurationId: Scalars['ID']['input'];
|
|
102978
103934
|
};
|
|
103935
|
+
export declare type VirtualAgentMutationApiUpdateAutoCloseConfigArgs = {
|
|
103936
|
+
input: VirtualAgentAutoCloseConfigInput;
|
|
103937
|
+
virtualAgentConfigurationId: Scalars['ID']['input'];
|
|
103938
|
+
};
|
|
103939
|
+
export declare type VirtualAgentMutationApiUpdateCsatConfigArgs = {
|
|
103940
|
+
input: VirtualAgentCsatConfigInput;
|
|
103941
|
+
virtualAgentConfigurationId: Scalars['ID']['input'];
|
|
103942
|
+
};
|
|
102979
103943
|
export declare type VirtualAgentMutationApiUpdateChatChannelArgs = {
|
|
102980
103944
|
input: VirtualAgentUpdateChatChannelInput;
|
|
102981
103945
|
virtualAgentConfigurationId: Scalars['ID']['input'];
|
|
@@ -102984,6 +103948,10 @@ export declare type VirtualAgentMutationApiUpdateFlowEditorFlowArgs = {
|
|
|
102984
103948
|
input: VirtualAgentFlowEditorInput;
|
|
102985
103949
|
virtualAgentFlowEditorId: Scalars['ID']['input'];
|
|
102986
103950
|
};
|
|
103951
|
+
export declare type VirtualAgentMutationApiUpdateGreetingConfigArgs = {
|
|
103952
|
+
input: VirtualAgentGreetingConfigInput;
|
|
103953
|
+
virtualAgentConfigurationId: Scalars['ID']['input'];
|
|
103954
|
+
};
|
|
102987
103955
|
export declare type VirtualAgentMutationApiUpdateIntentRuleProjectionArgs = {
|
|
102988
103956
|
input: VirtualAgentUpdateIntentRuleProjectionInput;
|
|
102989
103957
|
virtualAgentIntentRuleProjectionId: Scalars['ID']['input'];
|
|
@@ -102992,6 +103960,10 @@ export declare type VirtualAgentMutationApiUpdateIntentRuleProjectionQuestionsAr
|
|
|
102992
103960
|
input: VirtualAgentUpdateIntentRuleProjectionQuestionsInput;
|
|
102993
103961
|
virtualAgentIntentRuleProjectionId: Scalars['ID']['input'];
|
|
102994
103962
|
};
|
|
103963
|
+
export declare type VirtualAgentMutationApiUpdateMatchIntentConfigArgs = {
|
|
103964
|
+
input: VirtualAgentMatchIntentConfigInput;
|
|
103965
|
+
virtualAgentConfigurationId: Scalars['ID']['input'];
|
|
103966
|
+
};
|
|
102995
103967
|
export declare type VirtualAgentMutationApiUpdateVirtualAgentConfigurationArgs = {
|
|
102996
103968
|
input: VirtualAgentUpdateConfigurationInput;
|
|
102997
103969
|
virtualAgentConfigurationId: Scalars['ID']['input'];
|
|
@@ -103073,6 +104045,19 @@ export declare type VirtualAgentSlackChannel = {
|
|
|
103073
104045
|
isVirtualAgentTestChannel?: Maybe<Scalars['Boolean']['output']>;
|
|
103074
104046
|
slackChannelId?: Maybe<Scalars['String']['output']>;
|
|
103075
104047
|
};
|
|
104048
|
+
export declare type VirtualAgentStandardConfig = {
|
|
104049
|
+
__typename?: 'VirtualAgentStandardConfig';
|
|
104050
|
+
autoCloseConfig?: Maybe<VirtualAgentAutoCloseConfig>;
|
|
104051
|
+
csatConfig?: Maybe<VirtualAgentCsatConfig>;
|
|
104052
|
+
greetingConfig?: Maybe<VirtualAgentGreetingConfig>;
|
|
104053
|
+
matchIntentConfig?: Maybe<VirtualAgentMatchIntentConfig>;
|
|
104054
|
+
};
|
|
104055
|
+
export declare type VirtualAgentStandardConfigUpdatePayload = Payload & {
|
|
104056
|
+
__typename?: 'VirtualAgentStandardConfigUpdatePayload';
|
|
104057
|
+
errors?: Maybe<Array<MutationError>>;
|
|
104058
|
+
success: Scalars['Boolean']['output'];
|
|
104059
|
+
virtualAgentConfiguration?: Maybe<VirtualAgentConfiguration>;
|
|
104060
|
+
};
|
|
103076
104061
|
export declare type VirtualAgentStatisticsPercentageChangeProjection = {
|
|
103077
104062
|
__typename?: 'VirtualAgentStatisticsPercentageChangeProjection';
|
|
103078
104063
|
aiResolution?: Maybe<Scalars['Float']['output']>;
|