@forge/cli-shared 6.11.0-next.9 → 6.11.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +105 -0
- package/out/graphql/app-environment-graphql-client.d.ts +1 -0
- package/out/graphql/app-environment-graphql-client.d.ts.map +1 -1
- package/out/graphql/graphql-types.d.ts +895 -10
- package/out/graphql/graphql-types.d.ts.map +1 -1
- package/out/graphql/graphql-types.js +106 -26
- package/out/ui/text.d.ts +17 -6
- package/out/ui/text.d.ts.map +1 -1
- package/out/ui/text.js +33 -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'];
|
|
@@ -1848,7 +1882,7 @@ export declare type AppLogsWithMetaData = {
|
|
|
1848
1882
|
environmentId: Scalars['String']['output'];
|
|
1849
1883
|
error?: Maybe<Scalars['String']['output']>;
|
|
1850
1884
|
functionKey?: Maybe<Scalars['String']['output']>;
|
|
1851
|
-
installationContext
|
|
1885
|
+
installationContext?: Maybe<Scalars['String']['output']>;
|
|
1852
1886
|
invocationId: Scalars['String']['output'];
|
|
1853
1887
|
licenseState?: Maybe<LicenseValue>;
|
|
1854
1888
|
lvl?: Maybe<Scalars['String']['output']>;
|
|
@@ -1995,6 +2029,14 @@ export declare enum AppSecurityPoliciesPermissionTypeExtension {
|
|
|
1995
2029
|
export declare type AppServicesFilter = {
|
|
1996
2030
|
name: Scalars['String']['input'];
|
|
1997
2031
|
};
|
|
2032
|
+
export declare type AppStorageAdmin = {
|
|
2033
|
+
__typename?: 'AppStorageAdmin';
|
|
2034
|
+
appId: Scalars['ID']['output'];
|
|
2035
|
+
kvsQuery: AppStorageKvsQueryPayload;
|
|
2036
|
+
};
|
|
2037
|
+
export declare type AppStorageAdminKvsQueryArgs = {
|
|
2038
|
+
input: AppStorageKvsQueryInput;
|
|
2039
|
+
};
|
|
1998
2040
|
export declare type AppStorageCustomEntityMutation = {
|
|
1999
2041
|
__typename?: 'AppStorageCustomEntityMutation';
|
|
2000
2042
|
deleteAppStoredCustomEntity?: Maybe<DeleteAppStoredCustomEntityPayload>;
|
|
@@ -2006,6 +2048,26 @@ export declare type AppStorageCustomEntityMutationDeleteAppStoredCustomEntityArg
|
|
|
2006
2048
|
export declare type AppStorageCustomEntityMutationSetAppStoredCustomEntityArgs = {
|
|
2007
2049
|
input: SetAppStoredCustomEntityMutationInput;
|
|
2008
2050
|
};
|
|
2051
|
+
export declare type AppStorageEntityNode = {
|
|
2052
|
+
__typename?: 'AppStorageEntityNode';
|
|
2053
|
+
key: Scalars['String']['output'];
|
|
2054
|
+
value: Scalars['AppStorageEntityValue']['output'];
|
|
2055
|
+
};
|
|
2056
|
+
export declare type AppStorageKvsQueryInput = {
|
|
2057
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
2058
|
+
contextAri: Scalars['ID']['input'];
|
|
2059
|
+
environmentId: Scalars['ID']['input'];
|
|
2060
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
2061
|
+
installationId: Scalars['ID']['input'];
|
|
2062
|
+
oauthClientId: Scalars['ID']['input'];
|
|
2063
|
+
};
|
|
2064
|
+
export declare type AppStorageKvsQueryPayload = {
|
|
2065
|
+
__typename?: 'AppStorageKvsQueryPayload';
|
|
2066
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
2067
|
+
nodes: Array<AppStorageEntityNode>;
|
|
2068
|
+
pageInfo: AppStoragePageInfo;
|
|
2069
|
+
totalCount: Scalars['Int']['output'];
|
|
2070
|
+
};
|
|
2009
2071
|
export declare type AppStorageMutation = {
|
|
2010
2072
|
__typename?: 'AppStorageMutation';
|
|
2011
2073
|
deleteAppStoredEntity?: Maybe<DeleteAppStoredEntityPayload>;
|
|
@@ -2021,6 +2083,11 @@ export declare type AppStorageOrderByInput = {
|
|
|
2021
2083
|
columnName: Scalars['String']['input'];
|
|
2022
2084
|
direction: AppStorageSqlTableDataSortDirection;
|
|
2023
2085
|
};
|
|
2086
|
+
export declare type AppStoragePageInfo = {
|
|
2087
|
+
__typename?: 'AppStoragePageInfo';
|
|
2088
|
+
hasNextPage: Scalars['Boolean']['output'];
|
|
2089
|
+
hasPreviousPage: Scalars['Boolean']['output'];
|
|
2090
|
+
};
|
|
2024
2091
|
export declare type AppStorageSqlDatabaseColumn = {
|
|
2025
2092
|
__typename?: 'AppStorageSqlDatabaseColumn';
|
|
2026
2093
|
default: Scalars['String']['output'];
|
|
@@ -4126,10 +4193,13 @@ export declare type CcpQueryApi = {
|
|
|
4126
4193
|
entitlements?: Maybe<Array<Maybe<CcpEntitlement>>>;
|
|
4127
4194
|
experienceCapabilities?: Maybe<CcpRootExperienceCapabilities>;
|
|
4128
4195
|
offering?: Maybe<CcpOffering>;
|
|
4196
|
+
offerings?: Maybe<Array<Maybe<CcpOffering>>>;
|
|
4129
4197
|
pricingPlan?: Maybe<CcpPricingPlan>;
|
|
4198
|
+
pricingPlans?: Maybe<Array<Maybe<CcpPricingPlan>>>;
|
|
4130
4199
|
product?: Maybe<CcpProduct>;
|
|
4131
4200
|
quotes?: Maybe<Array<Maybe<CcpQuote>>>;
|
|
4132
4201
|
transactionAccount?: Maybe<CcpTransactionAccount>;
|
|
4202
|
+
transactionAccounts?: Maybe<Array<Maybe<CcpTransactionAccount>>>;
|
|
4133
4203
|
};
|
|
4134
4204
|
export declare type CcpQueryApiEntitlementArgs = {
|
|
4135
4205
|
id: Scalars['ID']['input'];
|
|
@@ -4140,9 +4210,15 @@ export declare type CcpQueryApiEntitlementsArgs = {
|
|
|
4140
4210
|
export declare type CcpQueryApiOfferingArgs = {
|
|
4141
4211
|
key: Scalars['ID']['input'];
|
|
4142
4212
|
};
|
|
4213
|
+
export declare type CcpQueryApiOfferingsArgs = {
|
|
4214
|
+
ids: Array<Scalars['ID']['input']>;
|
|
4215
|
+
};
|
|
4143
4216
|
export declare type CcpQueryApiPricingPlanArgs = {
|
|
4144
4217
|
id: Scalars['ID']['input'];
|
|
4145
4218
|
};
|
|
4219
|
+
export declare type CcpQueryApiPricingPlansArgs = {
|
|
4220
|
+
ids: Array<Scalars['ID']['input']>;
|
|
4221
|
+
};
|
|
4146
4222
|
export declare type CcpQueryApiProductArgs = {
|
|
4147
4223
|
id: Scalars['ID']['input'];
|
|
4148
4224
|
};
|
|
@@ -4152,6 +4228,9 @@ export declare type CcpQueryApiQuotesArgs = {
|
|
|
4152
4228
|
export declare type CcpQueryApiTransactionAccountArgs = {
|
|
4153
4229
|
id: Scalars['ID']['input'];
|
|
4154
4230
|
};
|
|
4231
|
+
export declare type CcpQueryApiTransactionAccountsArgs = {
|
|
4232
|
+
ids: Array<Scalars['ID']['input']>;
|
|
4233
|
+
};
|
|
4155
4234
|
export declare type CcpQuote = Node & {
|
|
4156
4235
|
__typename?: 'CcpQuote';
|
|
4157
4236
|
autoRefresh?: Maybe<CcpQuoteAutoRefresh>;
|
|
@@ -4532,14 +4611,20 @@ export declare enum CcpTiersMode {
|
|
|
4532
4611
|
Graduated = "GRADUATED",
|
|
4533
4612
|
Volume = "VOLUME"
|
|
4534
4613
|
}
|
|
4535
|
-
export declare type CcpTransactionAccount = CommerceTransactionAccount & {
|
|
4614
|
+
export declare type CcpTransactionAccount = CommerceTransactionAccount & Node & {
|
|
4536
4615
|
__typename?: 'CcpTransactionAccount';
|
|
4616
|
+
description?: Maybe<Scalars['String']['output']>;
|
|
4537
4617
|
experienceCapabilities?: Maybe<CcpTransactionAccountExperienceCapabilities>;
|
|
4538
4618
|
id: Scalars['ID']['output'];
|
|
4619
|
+
isActive?: Maybe<Scalars['Boolean']['output']>;
|
|
4539
4620
|
isBillToPresent?: Maybe<Scalars['Boolean']['output']>;
|
|
4540
4621
|
isCurrentUserBillingAdmin?: Maybe<Scalars['Boolean']['output']>;
|
|
4541
4622
|
isManagedByPartner?: Maybe<Scalars['Boolean']['output']>;
|
|
4623
|
+
isMonetized?: Maybe<Scalars['Boolean']['output']>;
|
|
4542
4624
|
key?: Maybe<Scalars['String']['output']>;
|
|
4625
|
+
name?: Maybe<Scalars['String']['output']>;
|
|
4626
|
+
number?: Maybe<Scalars['String']['output']>;
|
|
4627
|
+
type?: Maybe<CcpTransactionAccountType>;
|
|
4543
4628
|
};
|
|
4544
4629
|
export declare type CcpTransactionAccountExperienceCapabilities = CommerceTransactionAccountExperienceCapabilities & {
|
|
4545
4630
|
__typename?: 'CcpTransactionAccountExperienceCapabilities';
|
|
@@ -4547,6 +4632,11 @@ export declare type CcpTransactionAccountExperienceCapabilities = CommerceTransa
|
|
|
4547
4632
|
addPaymentMethodV2?: Maybe<CcpAddPaymentMethodExperienceCapability>;
|
|
4548
4633
|
multipleProductUpgrades?: Maybe<CcpMultipleProductUpgradesExperienceCapability>;
|
|
4549
4634
|
};
|
|
4635
|
+
export declare enum CcpTransactionAccountType {
|
|
4636
|
+
Direct = "DIRECT",
|
|
4637
|
+
Partner = "PARTNER",
|
|
4638
|
+
UnaffiliatedReseller = "UNAFFILIATED_RESELLER"
|
|
4639
|
+
}
|
|
4550
4640
|
export declare type CcpTrial = CommerceTrial & {
|
|
4551
4641
|
__typename?: 'CcpTrial';
|
|
4552
4642
|
endBehaviour?: Maybe<CcpTrialEndBehaviour>;
|
|
@@ -6467,7 +6557,7 @@ export declare type CompassCreateBuildEventInput = {
|
|
|
6467
6557
|
export declare type CompassCreateCampaignInput = {
|
|
6468
6558
|
description: Scalars['String']['input'];
|
|
6469
6559
|
dueDate: Scalars['DateTime']['input'];
|
|
6470
|
-
goalId
|
|
6560
|
+
goalId: Scalars['ID']['input'];
|
|
6471
6561
|
name: Scalars['String']['input'];
|
|
6472
6562
|
scorecardId: Scalars['ID']['input'];
|
|
6473
6563
|
startDate?: InputMaybe<Scalars['DateTime']['input']>;
|
|
@@ -6667,6 +6757,15 @@ export declare type CompassCreateHasCustomTextFieldScorecardCriteriaInput = {
|
|
|
6667
6757
|
textComparatorValue?: InputMaybe<Scalars['String']['input']>;
|
|
6668
6758
|
weight: Scalars['Int']['input'];
|
|
6669
6759
|
};
|
|
6760
|
+
export declare type CompassCreateHasPackageDependencyScorecardCriteriaInput = {
|
|
6761
|
+
comparators: Array<CompassPackageDependencyComparatorInput>;
|
|
6762
|
+
description?: InputMaybe<Scalars['String']['input']>;
|
|
6763
|
+
name?: InputMaybe<Scalars['String']['input']>;
|
|
6764
|
+
packageManager: CompassPackageDependencyManagerOptions;
|
|
6765
|
+
packageName: Scalars['String']['input'];
|
|
6766
|
+
scoringStrategyRules?: InputMaybe<CompassCreateScorecardCriteriaScoringStrategyRulesInput>;
|
|
6767
|
+
weight: Scalars['Int']['input'];
|
|
6768
|
+
};
|
|
6670
6769
|
export declare type CompassCreateIncidentEventInput = {
|
|
6671
6770
|
description: Scalars['String']['input'];
|
|
6672
6771
|
displayName: Scalars['String']['input'];
|
|
@@ -7904,6 +8003,21 @@ export declare type CompassHasOwnerScorecardCriteria = CompassScorecardCriteria
|
|
|
7904
8003
|
export declare type CompassHasOwnerScorecardCriteriaScorecardCriteriaScoreArgs = {
|
|
7905
8004
|
query?: InputMaybe<CompassScorecardCriteriaScoreQuery>;
|
|
7906
8005
|
};
|
|
8006
|
+
export declare type CompassHasPackageDependencyScorecardCriteria = CompassScorecardCriteria & {
|
|
8007
|
+
__typename?: 'CompassHasPackageDependencyScorecardCriteria';
|
|
8008
|
+
comparators?: Maybe<Array<CompassPackageDependencyComparator>>;
|
|
8009
|
+
description?: Maybe<Scalars['String']['output']>;
|
|
8010
|
+
id: Scalars['ID']['output'];
|
|
8011
|
+
name?: Maybe<Scalars['String']['output']>;
|
|
8012
|
+
packageManager?: Maybe<Scalars['String']['output']>;
|
|
8013
|
+
packageName?: Maybe<Scalars['String']['output']>;
|
|
8014
|
+
scorecardCriteriaScore?: Maybe<CompassScorecardCriteriaScore>;
|
|
8015
|
+
scoringStrategyRules?: Maybe<CompassScorecardCriteriaScoringStrategyRules>;
|
|
8016
|
+
weight: Scalars['Int']['output'];
|
|
8017
|
+
};
|
|
8018
|
+
export declare type CompassHasPackageDependencyScorecardCriteriaScorecardCriteriaScoreArgs = {
|
|
8019
|
+
query?: InputMaybe<CompassScorecardCriteriaScoreQuery>;
|
|
8020
|
+
};
|
|
7907
8021
|
export declare type CompassIncidentEvent = CompassEvent & {
|
|
7908
8022
|
__typename?: 'CompassIncidentEvent';
|
|
7909
8023
|
description?: Maybe<Scalars['String']['output']>;
|
|
@@ -8102,6 +8216,15 @@ export declare type CompassLink = {
|
|
|
8102
8216
|
type: CompassLinkType;
|
|
8103
8217
|
url: Scalars['URL']['output'];
|
|
8104
8218
|
};
|
|
8219
|
+
export declare type CompassLinkNode = Node & {
|
|
8220
|
+
__typename?: 'CompassLinkNode';
|
|
8221
|
+
eventSources?: Maybe<Array<EventSource>>;
|
|
8222
|
+
id: Scalars['ID']['output'];
|
|
8223
|
+
name?: Maybe<Scalars['String']['output']>;
|
|
8224
|
+
objectId?: Maybe<Scalars['ID']['output']>;
|
|
8225
|
+
type: CompassLinkType;
|
|
8226
|
+
url: Scalars['URL']['output'];
|
|
8227
|
+
};
|
|
8105
8228
|
export declare enum CompassLinkType {
|
|
8106
8229
|
ChatChannel = "CHAT_CHANNEL",
|
|
8107
8230
|
Dashboard = "DASHBOARD",
|
|
@@ -8278,6 +8401,44 @@ export declare type CompassPackageDependentComponentsArgs = {
|
|
|
8278
8401
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
8279
8402
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
8280
8403
|
};
|
|
8404
|
+
export declare type CompassPackageDependencyComparator = CompassPackageDependencyNullaryComparator | CompassPackageDependencyUnaryComparator;
|
|
8405
|
+
export declare type CompassPackageDependencyComparatorInput = {
|
|
8406
|
+
packageDependencyNullaryComparatorInput?: InputMaybe<CompassPackageDependencyNullaryComparatorInput>;
|
|
8407
|
+
packageDependencyUnaryComparatorInput?: InputMaybe<CompassPackageDependencyUnaryComparatorInput>;
|
|
8408
|
+
};
|
|
8409
|
+
export declare enum CompassPackageDependencyManagerOptions {
|
|
8410
|
+
Npm = "NPM"
|
|
8411
|
+
}
|
|
8412
|
+
export declare type CompassPackageDependencyNullaryComparator = {
|
|
8413
|
+
__typename?: 'CompassPackageDependencyNullaryComparator';
|
|
8414
|
+
comparator?: Maybe<Scalars['String']['output']>;
|
|
8415
|
+
};
|
|
8416
|
+
export declare type CompassPackageDependencyNullaryComparatorInput = {
|
|
8417
|
+
comparator: CompassPackageDependencyNullaryComparatorOptions;
|
|
8418
|
+
};
|
|
8419
|
+
export declare enum CompassPackageDependencyNullaryComparatorOptions {
|
|
8420
|
+
IsAbsent = "IS_ABSENT",
|
|
8421
|
+
IsPresent = "IS_PRESENT"
|
|
8422
|
+
}
|
|
8423
|
+
export declare type CompassPackageDependencyUnaryComparator = {
|
|
8424
|
+
__typename?: 'CompassPackageDependencyUnaryComparator';
|
|
8425
|
+
comparator?: Maybe<Scalars['String']['output']>;
|
|
8426
|
+
comparatorValue?: Maybe<Scalars['String']['output']>;
|
|
8427
|
+
};
|
|
8428
|
+
export declare type CompassPackageDependencyUnaryComparatorInput = {
|
|
8429
|
+
comparator: CompassPackageDependencyUnaryComparatorOptions;
|
|
8430
|
+
comparatorValue: Scalars['String']['input'];
|
|
8431
|
+
};
|
|
8432
|
+
export declare enum CompassPackageDependencyUnaryComparatorOptions {
|
|
8433
|
+
CompatibleWith = "COMPATIBLE_WITH",
|
|
8434
|
+
Equals = "EQUALS",
|
|
8435
|
+
GreaterThan = "GREATER_THAN",
|
|
8436
|
+
GreaterThanOrEqualTo = "GREATER_THAN_OR_EQUAL_TO",
|
|
8437
|
+
LessThan = "LESS_THAN",
|
|
8438
|
+
LessThanOrEqualTo = "LESS_THAN_OR_EQUAL_TO",
|
|
8439
|
+
MatchesRegex = "MATCHES_REGEX",
|
|
8440
|
+
NotEqualTo = "NOT_EQUAL_TO"
|
|
8441
|
+
}
|
|
8281
8442
|
export declare type CompassPackageDependentComponentVersionsBySourceConnection = {
|
|
8282
8443
|
__typename?: 'CompassPackageDependentComponentVersionsBySourceConnection';
|
|
8283
8444
|
edges?: Maybe<Array<CompassPackageDependentComponentVersionsBySourceEdge>>;
|
|
@@ -9599,6 +9760,16 @@ export declare type CompassUpdateHasCustomTextFieldScorecardCriteriaInput = {
|
|
|
9599
9760
|
textComparatorValue?: InputMaybe<Scalars['String']['input']>;
|
|
9600
9761
|
weight?: InputMaybe<Scalars['Int']['input']>;
|
|
9601
9762
|
};
|
|
9763
|
+
export declare type CompassUpdateHasPackageDependencyScorecardCriteriaInput = {
|
|
9764
|
+
comparators?: InputMaybe<Array<CompassPackageDependencyComparatorInput>>;
|
|
9765
|
+
description?: InputMaybe<Scalars['String']['input']>;
|
|
9766
|
+
id: Scalars['ID']['input'];
|
|
9767
|
+
name?: InputMaybe<Scalars['String']['input']>;
|
|
9768
|
+
packageManager?: InputMaybe<CompassPackageDependencyManagerOptions>;
|
|
9769
|
+
packageName?: InputMaybe<Scalars['String']['input']>;
|
|
9770
|
+
scoringStrategyRules?: InputMaybe<CompassUpdateScorecardCriteriaScoringStrategyRulesInput>;
|
|
9771
|
+
weight?: InputMaybe<Scalars['Int']['input']>;
|
|
9772
|
+
};
|
|
9602
9773
|
export declare type CompassUpdateJqlMetricSourceUserInput = {
|
|
9603
9774
|
metricSourceId: Scalars['ID']['input'];
|
|
9604
9775
|
};
|
|
@@ -17517,6 +17688,12 @@ export declare type ConfluenceUserContentAccessResult = {
|
|
|
17517
17688
|
canAccessList: Array<Maybe<Scalars['String']['output']>>;
|
|
17518
17689
|
cannotAccessList: Array<Maybe<Scalars['String']['output']>>;
|
|
17519
17690
|
};
|
|
17691
|
+
export declare type ConfluenceUserHasPermission = {
|
|
17692
|
+
__typename?: 'ConfluenceUserHasPermission';
|
|
17693
|
+
hasPermission: Scalars['Boolean']['output'];
|
|
17694
|
+
principalId: Scalars['String']['output'];
|
|
17695
|
+
reason?: Maybe<Scalars['String']['output']>;
|
|
17696
|
+
};
|
|
17520
17697
|
export declare type ConfluenceUserInfo = {
|
|
17521
17698
|
__typename?: 'ConfluenceUserInfo';
|
|
17522
17699
|
type: ConfluenceUserType;
|
|
@@ -17526,6 +17703,10 @@ export declare enum ConfluenceUserType {
|
|
|
17526
17703
|
Anonymous = "ANONYMOUS",
|
|
17527
17704
|
Known = "KNOWN"
|
|
17528
17705
|
}
|
|
17706
|
+
export declare type ConfluenceUsersHavePermissionList = {
|
|
17707
|
+
__typename?: 'ConfluenceUsersHavePermissionList';
|
|
17708
|
+
usersHavePermissionList: Array<Maybe<ConfluenceUserHasPermission>>;
|
|
17709
|
+
};
|
|
17529
17710
|
export declare type ConfluenceValidateSpaceKeyResponse = {
|
|
17530
17711
|
__typename?: 'ConfluenceValidateSpaceKeyResponse';
|
|
17531
17712
|
generatedUniqueKey?: Maybe<Scalars['String']['output']>;
|
|
@@ -17746,6 +17927,7 @@ export declare type Content = {
|
|
|
17746
17927
|
archivableDescendantsCount: Scalars['Long']['output'];
|
|
17747
17928
|
archiveNote?: Maybe<Scalars['String']['output']>;
|
|
17748
17929
|
archivedContentMetadata?: Maybe<ArchivedContentMetadata>;
|
|
17930
|
+
ari?: Maybe<Scalars['ID']['output']>;
|
|
17749
17931
|
attachments?: Maybe<PaginatedContentList>;
|
|
17750
17932
|
blank: Scalars['Boolean']['output'];
|
|
17751
17933
|
body?: Maybe<ContentBodyPerRepresentation>;
|
|
@@ -17770,6 +17952,7 @@ export declare type Content = {
|
|
|
17770
17952
|
dataClassificationLevel?: Maybe<ContentDataClassificationLevel>;
|
|
17771
17953
|
dataClassificationLevelId?: Maybe<Scalars['String']['output']>;
|
|
17772
17954
|
deletableDescendantsCount: Scalars['Long']['output'];
|
|
17955
|
+
draftVersion?: Maybe<Version>;
|
|
17773
17956
|
dynamicMobileBody?: Maybe<ContentBody>;
|
|
17774
17957
|
embeddedProduct?: Maybe<Scalars['String']['output']>;
|
|
17775
17958
|
excerpt: Scalars['String']['output'];
|
|
@@ -20064,6 +20247,7 @@ export declare type CreateCompassScorecardCriteriaInput = {
|
|
|
20064
20247
|
hasLink?: InputMaybe<CreateCompassHasLinkScorecardCriteriaInput>;
|
|
20065
20248
|
hasMetricValue?: InputMaybe<CreateCompassHasMetricValueCriteriaInput>;
|
|
20066
20249
|
hasOwner?: InputMaybe<CreateCompassHasOwnerScorecardCriteriaInput>;
|
|
20250
|
+
hasPackageDependency?: InputMaybe<CompassCreateHasPackageDependencyScorecardCriteriaInput>;
|
|
20067
20251
|
};
|
|
20068
20252
|
export declare type CreateCompassScorecardInput = {
|
|
20069
20253
|
componentCreationTimeFilter?: InputMaybe<CompassComponentCreationTimeFilterInput>;
|
|
@@ -20318,6 +20502,7 @@ export declare type CreateJiraPlaybookStepInput = {
|
|
|
20318
20502
|
};
|
|
20319
20503
|
export declare type CreateJiraPlaybookStepRunInput = {
|
|
20320
20504
|
playbookInstanceStepAri: Scalars['ID']['input'];
|
|
20505
|
+
targetTransition?: InputMaybe<TargetTransition>;
|
|
20321
20506
|
userInputs?: InputMaybe<Array<UserInput>>;
|
|
20322
20507
|
};
|
|
20323
20508
|
export declare type CreateJiraPlaybookStepRunPayload = Payload & {
|
|
@@ -20353,6 +20538,23 @@ export declare type CreateMentionReminderNotificationPayload = Payload & {
|
|
|
20353
20538
|
failedAccountIds?: Maybe<Array<Maybe<Scalars['String']['output']>>>;
|
|
20354
20539
|
success: Scalars['Boolean']['output'];
|
|
20355
20540
|
};
|
|
20541
|
+
export declare type CreateMetadataInput = {
|
|
20542
|
+
extraProps?: InputMaybe<Array<PropInput>>;
|
|
20543
|
+
isPinned?: InputMaybe<Scalars['Boolean']['input']>;
|
|
20544
|
+
labels?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
20545
|
+
productLink?: InputMaybe<Scalars['String']['input']>;
|
|
20546
|
+
};
|
|
20547
|
+
export declare type CreateNoteInput = {
|
|
20548
|
+
body?: InputMaybe<Scalars['String']['input']>;
|
|
20549
|
+
metadata?: InputMaybe<CreateMetadataInput>;
|
|
20550
|
+
title?: InputMaybe<Scalars['String']['input']>;
|
|
20551
|
+
};
|
|
20552
|
+
export declare type CreateNotePayload = {
|
|
20553
|
+
__typename?: 'CreateNotePayload';
|
|
20554
|
+
errors?: Maybe<Array<NoteMutationError>>;
|
|
20555
|
+
note?: Maybe<NoteResponse>;
|
|
20556
|
+
success: Scalars['Boolean']['output'];
|
|
20557
|
+
};
|
|
20356
20558
|
export declare type CreatePersonalSpaceInput = {
|
|
20357
20559
|
copySpacePermissionsFromSpaceKey?: InputMaybe<Scalars['String']['input']>;
|
|
20358
20560
|
initialPermissionOption?: InputMaybe<InitialPermissionOptions>;
|
|
@@ -20606,6 +20808,11 @@ export declare type CsmAiAuthenticationInput = {
|
|
|
20606
20808
|
export declare enum CsmAiAuthenticationType {
|
|
20607
20809
|
NoAuth = "NO_AUTH"
|
|
20608
20810
|
}
|
|
20811
|
+
export declare type CsmAiConnectorConfiguration = CsmAiMessageHandoff | CsmAiTicketingHandoff;
|
|
20812
|
+
export declare type CsmAiConnectorConfigurationInput = {
|
|
20813
|
+
messageHandoff?: InputMaybe<CsmAiMessageHandoffInput>;
|
|
20814
|
+
ticketingHandoff?: InputMaybe<CsmAiTicketingHandoffInput>;
|
|
20815
|
+
};
|
|
20609
20816
|
export declare type CsmAiCreateActionInput = {
|
|
20610
20817
|
actionType: CsmAiActionType;
|
|
20611
20818
|
apiOperation: CsmAiApiOperationInput;
|
|
@@ -20626,6 +20833,22 @@ export declare type CsmAiDeleteActionPayload = Payload & {
|
|
|
20626
20833
|
errors?: Maybe<Array<MutationError>>;
|
|
20627
20834
|
success: Scalars['Boolean']['output'];
|
|
20628
20835
|
};
|
|
20836
|
+
export declare type CsmAiHandoffConfig = {
|
|
20837
|
+
__typename?: 'CsmAiHandoffConfig';
|
|
20838
|
+
connectorConfiguration: CsmAiConnectorConfiguration;
|
|
20839
|
+
enabled: Scalars['Boolean']['output'];
|
|
20840
|
+
id: Scalars['ID']['output'];
|
|
20841
|
+
type: CsmAiHandoffType;
|
|
20842
|
+
};
|
|
20843
|
+
export declare type CsmAiHandoffConfigResult = CsmAiHandoffConfig | QueryError;
|
|
20844
|
+
export declare enum CsmAiHandoffType {
|
|
20845
|
+
Csm = "CSM",
|
|
20846
|
+
Message = "MESSAGE"
|
|
20847
|
+
}
|
|
20848
|
+
export declare enum CsmAiHandoffTypeInput {
|
|
20849
|
+
Csm = "CSM",
|
|
20850
|
+
Message = "MESSAGE"
|
|
20851
|
+
}
|
|
20629
20852
|
export declare enum CsmAiHttpMethod {
|
|
20630
20853
|
Delete = "DELETE",
|
|
20631
20854
|
Get = "GET",
|
|
@@ -20637,6 +20860,7 @@ export declare type CsmAiHub = {
|
|
|
20637
20860
|
__typename?: 'CsmAiHub';
|
|
20638
20861
|
actions?: Maybe<Array<Maybe<CsmAiActionResult>>>;
|
|
20639
20862
|
agent?: Maybe<CsmAiAgentResult>;
|
|
20863
|
+
handoffConfigs?: Maybe<Array<Maybe<CsmAiHandoffConfigResult>>>;
|
|
20640
20864
|
id: Scalars['ID']['output'];
|
|
20641
20865
|
};
|
|
20642
20866
|
export declare type CsmAiHubResult = CsmAiHub | QueryError;
|
|
@@ -20649,6 +20873,20 @@ export declare type CsmAiKeyValuePair = {
|
|
|
20649
20873
|
key?: Maybe<Scalars['String']['output']>;
|
|
20650
20874
|
value?: Maybe<Scalars['String']['output']>;
|
|
20651
20875
|
};
|
|
20876
|
+
export declare type CsmAiMessageHandoff = {
|
|
20877
|
+
__typename?: 'CsmAiMessageHandoff';
|
|
20878
|
+
message: Scalars['String']['output'];
|
|
20879
|
+
};
|
|
20880
|
+
export declare type CsmAiMessageHandoffInput = {
|
|
20881
|
+
message: Scalars['String']['input'];
|
|
20882
|
+
};
|
|
20883
|
+
export declare type CsmAiTicketingHandoff = {
|
|
20884
|
+
__typename?: 'CsmAiTicketingHandoff';
|
|
20885
|
+
formId: Scalars['ID']['output'];
|
|
20886
|
+
};
|
|
20887
|
+
export declare type CsmAiTicketingHandoffInput = {
|
|
20888
|
+
formId: Scalars['ID']['input'];
|
|
20889
|
+
};
|
|
20652
20890
|
export declare type CsmAiUpdateActionInput = {
|
|
20653
20891
|
actionType?: InputMaybe<CsmAiActionType>;
|
|
20654
20892
|
apiOperation?: InputMaybe<CsmAiApiOperationInput>;
|
|
@@ -20684,6 +20922,17 @@ export declare type CsmAiUpdateAgentPayload = Payload & {
|
|
|
20684
20922
|
errors?: Maybe<Array<MutationError>>;
|
|
20685
20923
|
success: Scalars['Boolean']['output'];
|
|
20686
20924
|
};
|
|
20925
|
+
export declare type CsmAiUpdateHandoffConfigInput = {
|
|
20926
|
+
connectorConfiguration: CsmAiConnectorConfigurationInput;
|
|
20927
|
+
enabled: Scalars['Boolean']['input'];
|
|
20928
|
+
type: CsmAiHandoffTypeInput;
|
|
20929
|
+
};
|
|
20930
|
+
export declare type CsmAiUpdateHandoffConfigPayload = Payload & {
|
|
20931
|
+
__typename?: 'CsmAiUpdateHandoffConfigPayload';
|
|
20932
|
+
errors?: Maybe<Array<MutationError>>;
|
|
20933
|
+
handoffConfig?: Maybe<CsmAiHandoffConfig>;
|
|
20934
|
+
success: Scalars['Boolean']['output'];
|
|
20935
|
+
};
|
|
20687
20936
|
export declare type CumulativeFlowDiagram = {
|
|
20688
20937
|
__typename?: 'CumulativeFlowDiagram';
|
|
20689
20938
|
chart: CfdChartConnection;
|
|
@@ -21244,6 +21493,7 @@ export declare type CustomerServiceIndividualNotesArgs = {
|
|
|
21244
21493
|
export declare type CustomerServiceIndividualRequestsArgs = {
|
|
21245
21494
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
21246
21495
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
21496
|
+
helpCenterId?: InputMaybe<Scalars['ID']['input']>;
|
|
21247
21497
|
};
|
|
21248
21498
|
export declare type CustomerServiceIndividualDeletePayload = Payload & {
|
|
21249
21499
|
__typename?: 'CustomerServiceIndividualDeletePayload';
|
|
@@ -21666,6 +21916,7 @@ export declare type CustomerServiceQueryApiProductsArgs = {
|
|
|
21666
21916
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
21667
21917
|
};
|
|
21668
21918
|
export declare type CustomerServiceQueryApiRequestByIssueKeyArgs = {
|
|
21919
|
+
helpCenterId?: InputMaybe<Scalars['ID']['input']>;
|
|
21669
21920
|
issueKey: Scalars['String']['input'];
|
|
21670
21921
|
};
|
|
21671
21922
|
export declare type CustomerServiceQueryApiTemplateFormByIdArgs = {
|
|
@@ -21685,6 +21936,7 @@ export declare type CustomerServiceRequest = {
|
|
|
21685
21936
|
key?: Maybe<Scalars['String']['output']>;
|
|
21686
21937
|
statusKey?: Maybe<CustomerServiceStatusKey>;
|
|
21687
21938
|
summary?: Maybe<Scalars['String']['output']>;
|
|
21939
|
+
templateForm?: Maybe<CustomerServiceTemplateForm>;
|
|
21688
21940
|
};
|
|
21689
21941
|
export declare type CustomerServiceRequestByKeyResult = CustomerServiceRequest | QueryError;
|
|
21690
21942
|
export declare type CustomerServiceRequestConnection = {
|
|
@@ -22249,6 +22501,15 @@ export declare type DeleteLabelPayload = {
|
|
|
22249
22501
|
contentId: Scalars['ID']['output'];
|
|
22250
22502
|
label: Scalars['String']['output'];
|
|
22251
22503
|
};
|
|
22504
|
+
export declare type DeleteNoteInput = {
|
|
22505
|
+
ari: Scalars['String']['input'];
|
|
22506
|
+
};
|
|
22507
|
+
export declare type DeleteNotePayload = {
|
|
22508
|
+
__typename?: 'DeleteNotePayload';
|
|
22509
|
+
ari?: Maybe<Scalars['String']['output']>;
|
|
22510
|
+
errors?: Maybe<Array<NoteMutationError>>;
|
|
22511
|
+
success: Scalars['Boolean']['output'];
|
|
22512
|
+
};
|
|
22252
22513
|
export declare type DeletePagesInput = {
|
|
22253
22514
|
areChildrenIncluded?: InputMaybe<Scalars['Boolean']['input']>;
|
|
22254
22515
|
excludedBranchRootPageIDs?: InputMaybe<Array<InputMaybe<Scalars['Long']['input']>>>;
|
|
@@ -23597,6 +23858,7 @@ export declare type DevOpsMetricsPerIssueMetricsFilter = {
|
|
|
23597
23858
|
};
|
|
23598
23859
|
export declare type DevOpsMetricsPerProjectPrCycleTimeMetrics = {
|
|
23599
23860
|
__typename?: 'DevOpsMetricsPerProjectPRCycleTimeMetrics';
|
|
23861
|
+
medianHistoricalPRCycleTime: Scalars['Float']['output'];
|
|
23600
23862
|
medianPRCycleTime: Scalars['Float']['output'];
|
|
23601
23863
|
perDayPRMetrics: Array<Maybe<DevOpsMetricsDailyReviewTimeData>>;
|
|
23602
23864
|
};
|
|
@@ -31471,13 +31733,16 @@ export declare type GraphStore = {
|
|
|
31471
31733
|
componentAssociatedDocumentInverse?: Maybe<GraphStoreSimplifiedComponentAssociatedDocumentInverseConnection>;
|
|
31472
31734
|
componentAssociatedDocumentInverseRelationship?: Maybe<GraphStoreFullComponentAssociatedDocumentConnection>;
|
|
31473
31735
|
componentAssociatedDocumentRelationship?: Maybe<GraphStoreFullComponentAssociatedDocumentConnection>;
|
|
31736
|
+
componentHasComponentLink?: Maybe<GraphStoreSimplifiedComponentHasComponentLinkConnection>;
|
|
31474
31737
|
componentHasComponentLinkInverse?: Maybe<GraphStoreSimplifiedComponentHasComponentLinkInverseConnection>;
|
|
31475
31738
|
componentImpactedByIncident?: Maybe<GraphStoreSimplifiedComponentImpactedByIncidentConnection>;
|
|
31476
31739
|
componentImpactedByIncidentInverse?: Maybe<GraphStoreSimplifiedComponentImpactedByIncidentInverseConnection>;
|
|
31477
31740
|
componentImpactedByIncidentInverseRelationship?: Maybe<GraphStoreFullComponentImpactedByIncidentConnection>;
|
|
31478
31741
|
componentImpactedByIncidentRelationship?: Maybe<GraphStoreFullComponentImpactedByIncidentConnection>;
|
|
31479
31742
|
componentLinkIsJiraProject?: Maybe<GraphStoreSimplifiedComponentLinkIsJiraProjectConnection>;
|
|
31743
|
+
componentLinkIsJiraProjectInverse?: Maybe<GraphStoreSimplifiedComponentLinkIsJiraProjectInverseConnection>;
|
|
31480
31744
|
componentLinkIsProviderRepo?: Maybe<GraphStoreSimplifiedComponentLinkIsProviderRepoConnection>;
|
|
31745
|
+
componentLinkIsProviderRepoInverse?: Maybe<GraphStoreSimplifiedComponentLinkIsProviderRepoInverseConnection>;
|
|
31481
31746
|
componentLinkedJswIssue?: Maybe<GraphStoreSimplifiedComponentLinkedJswIssueConnection>;
|
|
31482
31747
|
componentLinkedJswIssueInverse?: Maybe<GraphStoreSimplifiedComponentLinkedJswIssueInverseConnection>;
|
|
31483
31748
|
componentLinkedJswIssueInverseRelationship?: Maybe<GraphStoreFullComponentLinkedJswIssueConnection>;
|
|
@@ -31641,6 +31906,7 @@ export declare type GraphStore = {
|
|
|
31641
31906
|
issueHasAutodevJobInverse?: Maybe<GraphStoreSimplifiedIssueHasAutodevJobInverseConnection>;
|
|
31642
31907
|
issueHasChangedPriority?: Maybe<GraphStoreSimplifiedIssueHasChangedPriorityConnection>;
|
|
31643
31908
|
issueHasChangedPriorityInverse?: Maybe<GraphStoreSimplifiedIssueHasChangedPriorityInverseConnection>;
|
|
31909
|
+
issueHasChangedStatus?: Maybe<GraphStoreSimplifiedIssueHasChangedStatusConnection>;
|
|
31644
31910
|
issueHasChangedStatusInverse?: Maybe<GraphStoreSimplifiedIssueHasChangedStatusInverseConnection>;
|
|
31645
31911
|
issueMentionedInConversation?: Maybe<GraphStoreSimplifiedIssueMentionedInConversationConnection>;
|
|
31646
31912
|
issueMentionedInConversationInverse?: Maybe<GraphStoreSimplifiedIssueMentionedInConversationInverseConnection>;
|
|
@@ -31956,6 +32222,8 @@ export declare type GraphStore = {
|
|
|
31956
32222
|
userContributedConfluenceWhiteboardInverse?: Maybe<GraphStoreSimplifiedUserContributedConfluenceWhiteboardInverseConnection>;
|
|
31957
32223
|
userCreatedAtlasGoal?: Maybe<GraphStoreSimplifiedUserCreatedAtlasGoalConnection>;
|
|
31958
32224
|
userCreatedAtlasGoalInverse?: Maybe<GraphStoreSimplifiedUserCreatedAtlasGoalInverseConnection>;
|
|
32225
|
+
userCreatedAtlasProject?: Maybe<GraphStoreSimplifiedUserCreatedAtlasProjectConnection>;
|
|
32226
|
+
userCreatedAtlasProjectInverse?: Maybe<GraphStoreSimplifiedUserCreatedAtlasProjectInverseConnection>;
|
|
31959
32227
|
userCreatedBranch?: Maybe<GraphStoreSimplifiedUserCreatedBranchConnection>;
|
|
31960
32228
|
userCreatedBranchInverse?: Maybe<GraphStoreSimplifiedUserCreatedBranchInverseConnection>;
|
|
31961
32229
|
userCreatedCalendarEvent?: Maybe<GraphStoreSimplifiedUserCreatedCalendarEventConnection>;
|
|
@@ -31976,8 +32244,10 @@ export declare type GraphStore = {
|
|
|
31976
32244
|
userCreatedDesignInverse?: Maybe<GraphStoreSimplifiedUserCreatedDesignInverseConnection>;
|
|
31977
32245
|
userCreatedDocument?: Maybe<GraphStoreSimplifiedUserCreatedDocumentConnection>;
|
|
31978
32246
|
userCreatedDocumentInverse?: Maybe<GraphStoreSimplifiedUserCreatedDocumentInverseConnection>;
|
|
32247
|
+
userCreatedIssue?: Maybe<GraphStoreSimplifiedUserCreatedIssueConnection>;
|
|
31979
32248
|
userCreatedIssueComment?: Maybe<GraphStoreSimplifiedUserCreatedIssueCommentConnection>;
|
|
31980
32249
|
userCreatedIssueCommentInverse?: Maybe<GraphStoreSimplifiedUserCreatedIssueCommentInverseConnection>;
|
|
32250
|
+
userCreatedIssueInverse?: Maybe<GraphStoreSimplifiedUserCreatedIssueInverseConnection>;
|
|
31981
32251
|
userCreatedIssueWorklog?: Maybe<GraphStoreSimplifiedUserCreatedIssueWorklogConnection>;
|
|
31982
32252
|
userCreatedIssueWorklogInverse?: Maybe<GraphStoreSimplifiedUserCreatedIssueWorklogInverseConnection>;
|
|
31983
32253
|
userCreatedMessage?: Maybe<GraphStoreSimplifiedUserCreatedMessageConnection>;
|
|
@@ -32514,6 +32784,13 @@ export declare type GraphStoreComponentAssociatedDocumentRelationshipArgs = {
|
|
|
32514
32784
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
32515
32785
|
id: Scalars['ID']['input'];
|
|
32516
32786
|
};
|
|
32787
|
+
export declare type GraphStoreComponentHasComponentLinkArgs = {
|
|
32788
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
32789
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
32790
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
32791
|
+
id: Scalars['ID']['input'];
|
|
32792
|
+
sort?: InputMaybe<GraphStoreComponentHasComponentLinkSortInput>;
|
|
32793
|
+
};
|
|
32517
32794
|
export declare type GraphStoreComponentHasComponentLinkInverseArgs = {
|
|
32518
32795
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
32519
32796
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -32552,6 +32829,13 @@ export declare type GraphStoreComponentLinkIsJiraProjectArgs = {
|
|
|
32552
32829
|
id: Scalars['ID']['input'];
|
|
32553
32830
|
sort?: InputMaybe<GraphStoreComponentLinkIsJiraProjectSortInput>;
|
|
32554
32831
|
};
|
|
32832
|
+
export declare type GraphStoreComponentLinkIsJiraProjectInverseArgs = {
|
|
32833
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
32834
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
32835
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
32836
|
+
id: Scalars['ID']['input'];
|
|
32837
|
+
sort?: InputMaybe<GraphStoreComponentLinkIsJiraProjectSortInput>;
|
|
32838
|
+
};
|
|
32555
32839
|
export declare type GraphStoreComponentLinkIsProviderRepoArgs = {
|
|
32556
32840
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
32557
32841
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -32559,6 +32843,13 @@ export declare type GraphStoreComponentLinkIsProviderRepoArgs = {
|
|
|
32559
32843
|
id: Scalars['ID']['input'];
|
|
32560
32844
|
sort?: InputMaybe<GraphStoreComponentLinkIsProviderRepoSortInput>;
|
|
32561
32845
|
};
|
|
32846
|
+
export declare type GraphStoreComponentLinkIsProviderRepoInverseArgs = {
|
|
32847
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
32848
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
32849
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
32850
|
+
id: Scalars['ID']['input'];
|
|
32851
|
+
sort?: InputMaybe<GraphStoreComponentLinkIsProviderRepoSortInput>;
|
|
32852
|
+
};
|
|
32562
32853
|
export declare type GraphStoreComponentLinkedJswIssueArgs = {
|
|
32563
32854
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
32564
32855
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -33620,6 +33911,13 @@ export declare type GraphStoreIssueHasChangedPriorityInverseArgs = {
|
|
|
33620
33911
|
id: Scalars['ID']['input'];
|
|
33621
33912
|
sort?: InputMaybe<GraphStoreIssueHasChangedPrioritySortInput>;
|
|
33622
33913
|
};
|
|
33914
|
+
export declare type GraphStoreIssueHasChangedStatusArgs = {
|
|
33915
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
33916
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
33917
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
33918
|
+
id: Scalars['ID']['input'];
|
|
33919
|
+
sort?: InputMaybe<GraphStoreIssueHasChangedStatusSortInput>;
|
|
33920
|
+
};
|
|
33623
33921
|
export declare type GraphStoreIssueHasChangedStatusInverseArgs = {
|
|
33624
33922
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
33625
33923
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -35707,6 +36005,20 @@ export declare type GraphStoreUserCreatedAtlasGoalInverseArgs = {
|
|
|
35707
36005
|
id: Scalars['ID']['input'];
|
|
35708
36006
|
sort?: InputMaybe<GraphStoreUserCreatedAtlasGoalSortInput>;
|
|
35709
36007
|
};
|
|
36008
|
+
export declare type GraphStoreUserCreatedAtlasProjectArgs = {
|
|
36009
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
36010
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
36011
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
36012
|
+
id: Scalars['ID']['input'];
|
|
36013
|
+
sort?: InputMaybe<GraphStoreUserCreatedAtlasProjectSortInput>;
|
|
36014
|
+
};
|
|
36015
|
+
export declare type GraphStoreUserCreatedAtlasProjectInverseArgs = {
|
|
36016
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
36017
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
36018
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
36019
|
+
id: Scalars['ID']['input'];
|
|
36020
|
+
sort?: InputMaybe<GraphStoreUserCreatedAtlasProjectSortInput>;
|
|
36021
|
+
};
|
|
35710
36022
|
export declare type GraphStoreUserCreatedBranchArgs = {
|
|
35711
36023
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
35712
36024
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -35849,6 +36161,13 @@ export declare type GraphStoreUserCreatedDocumentInverseArgs = {
|
|
|
35849
36161
|
id: Scalars['ID']['input'];
|
|
35850
36162
|
sort?: InputMaybe<GraphStoreUserCreatedDocumentSortInput>;
|
|
35851
36163
|
};
|
|
36164
|
+
export declare type GraphStoreUserCreatedIssueArgs = {
|
|
36165
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
36166
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
36167
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
36168
|
+
id: Scalars['ID']['input'];
|
|
36169
|
+
sort?: InputMaybe<GraphStoreUserCreatedIssueSortInput>;
|
|
36170
|
+
};
|
|
35852
36171
|
export declare type GraphStoreUserCreatedIssueCommentArgs = {
|
|
35853
36172
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
35854
36173
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -35863,6 +36182,13 @@ export declare type GraphStoreUserCreatedIssueCommentInverseArgs = {
|
|
|
35863
36182
|
id: Scalars['ID']['input'];
|
|
35864
36183
|
sort?: InputMaybe<GraphStoreUserCreatedIssueCommentSortInput>;
|
|
35865
36184
|
};
|
|
36185
|
+
export declare type GraphStoreUserCreatedIssueInverseArgs = {
|
|
36186
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
36187
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
36188
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
36189
|
+
id: Scalars['ID']['input'];
|
|
36190
|
+
sort?: InputMaybe<GraphStoreUserCreatedIssueSortInput>;
|
|
36191
|
+
};
|
|
35866
36192
|
export declare type GraphStoreUserCreatedIssueWorklogArgs = {
|
|
35867
36193
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
35868
36194
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -38608,7 +38934,7 @@ export declare type GraphStoreCypherQueryFromNode = {
|
|
|
38608
38934
|
data?: Maybe<GraphStoreCypherQueryFromNodeUnion>;
|
|
38609
38935
|
id: Scalars['ID']['output'];
|
|
38610
38936
|
};
|
|
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;
|
|
38937
|
+
export declare type GraphStoreCypherQueryFromNodeUnion = AppUser | AtlassianAccountUser | BitbucketRepository | CompassComponent | CompassLinkNode | CompassScorecard | ConfluenceBlogPost | ConfluenceDatabase | ConfluenceFolder | ConfluenceFooterComment | ConfluenceInlineComment | ConfluencePage | ConfluenceSpace | ConfluenceWhiteboard | CustomerUser | DeploymentSummary | DevOpsDesign | DevOpsDocument | DevOpsFeatureFlag | DevOpsOperationsComponentDetails | DevOpsOperationsIncidentDetails | DevOpsOperationsPostIncidentReviewDetails | DevOpsProjectDetails | DevOpsPullRequestDetails | DevOpsRepository | DevOpsSecurityVulnerabilityDetails | DevOpsService | ExternalBranch | ExternalBuildInfo | ExternalCalendarEvent | ExternalCommit | ExternalConversation | ExternalDeployment | ExternalDesign | ExternalDocument | ExternalFeatureFlag | ExternalMessage | ExternalOrganisation | ExternalPosition | ExternalPullRequest | ExternalRemoteLink | ExternalRepository | ExternalVideo | ExternalVulnerability | ExternalWorker | IdentityGroup | JiraAlignAggProject | JiraAutodevJob | JiraBoard | JiraConfluenceRemoteIssueLink | JiraCustomRemoteIssueLink | JiraIssue | JiraIssueRemoteIssueLink | JiraPlatformComment | JiraPostIncidentReviewLink | JiraPriority | JiraProject | JiraServiceManagementComment | JiraSprint | JiraStatus | JiraVersion | JiraWebRemoteIssueLink | JiraWorklog | LoomComment | LoomSpace | LoomVideo | MercuryFocusArea | OpsgenieTeam | RadarPosition | SpfDependency | TeamV2 | ThirdPartySecurityContainer | ThirdPartyUser | TownsquareGoal | TownsquareGoalUpdate | TownsquareProject | TownsquareProjectUpdate;
|
|
38612
38938
|
export declare type GraphStoreCypherQueryIntObject = {
|
|
38613
38939
|
__typename?: 'GraphStoreCypherQueryIntObject';
|
|
38614
38940
|
value: Scalars['Int']['output'];
|
|
@@ -38643,7 +38969,7 @@ export declare type GraphStoreCypherQueryRowItemNode = {
|
|
|
38643
38969
|
data?: Maybe<GraphStoreCypherQueryRowItemNodeNodeUnion>;
|
|
38644
38970
|
id: Scalars['ID']['output'];
|
|
38645
38971
|
};
|
|
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;
|
|
38972
|
+
export declare type GraphStoreCypherQueryRowItemNodeNodeUnion = AppUser | AtlassianAccountUser | BitbucketRepository | CompassComponent | CompassLinkNode | CompassScorecard | ConfluenceBlogPost | ConfluenceDatabase | ConfluenceFolder | ConfluenceFooterComment | ConfluenceInlineComment | ConfluencePage | ConfluenceSpace | ConfluenceWhiteboard | CustomerUser | DeploymentSummary | DevOpsDesign | DevOpsDocument | DevOpsFeatureFlag | DevOpsOperationsComponentDetails | DevOpsOperationsIncidentDetails | DevOpsOperationsPostIncidentReviewDetails | DevOpsProjectDetails | DevOpsPullRequestDetails | DevOpsRepository | DevOpsSecurityVulnerabilityDetails | DevOpsService | ExternalBranch | ExternalBuildInfo | ExternalCalendarEvent | ExternalCommit | ExternalConversation | ExternalDeployment | ExternalDesign | ExternalDocument | ExternalFeatureFlag | ExternalMessage | ExternalOrganisation | ExternalPosition | ExternalPullRequest | ExternalRemoteLink | ExternalRepository | ExternalVideo | ExternalVulnerability | ExternalWorker | IdentityGroup | JiraAlignAggProject | JiraAutodevJob | JiraBoard | JiraConfluenceRemoteIssueLink | JiraCustomRemoteIssueLink | JiraIssue | JiraIssueRemoteIssueLink | JiraPlatformComment | JiraPostIncidentReviewLink | JiraPriority | JiraProject | JiraServiceManagementComment | JiraSprint | JiraStatus | JiraVersion | JiraWebRemoteIssueLink | JiraWorklog | LoomComment | LoomSpace | LoomVideo | MercuryFocusArea | OpsgenieTeam | RadarPosition | SpfDependency | TeamV2 | ThirdPartySecurityContainer | ThirdPartyUser | TownsquareGoal | TownsquareGoalUpdate | TownsquareProject | TownsquareProjectUpdate;
|
|
38647
38973
|
export declare type GraphStoreCypherQueryStringObject = {
|
|
38648
38974
|
__typename?: 'GraphStoreCypherQueryStringObject';
|
|
38649
38975
|
value: Scalars['String']['output'];
|
|
@@ -38653,13 +38979,13 @@ export declare type GraphStoreCypherQueryToNode = {
|
|
|
38653
38979
|
data?: Maybe<GraphStoreCypherQueryToNodeUnion>;
|
|
38654
38980
|
id: Scalars['ID']['output'];
|
|
38655
38981
|
};
|
|
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;
|
|
38982
|
+
export declare type GraphStoreCypherQueryToNodeUnion = AppUser | AtlassianAccountUser | BitbucketRepository | CompassComponent | CompassLinkNode | CompassScorecard | ConfluenceBlogPost | ConfluenceDatabase | ConfluenceFolder | ConfluenceFooterComment | ConfluenceInlineComment | ConfluencePage | ConfluenceSpace | ConfluenceWhiteboard | CustomerUser | DeploymentSummary | DevOpsDesign | DevOpsDocument | DevOpsFeatureFlag | DevOpsOperationsComponentDetails | DevOpsOperationsIncidentDetails | DevOpsOperationsPostIncidentReviewDetails | DevOpsProjectDetails | DevOpsPullRequestDetails | DevOpsRepository | DevOpsSecurityVulnerabilityDetails | DevOpsService | ExternalBranch | ExternalBuildInfo | ExternalCalendarEvent | ExternalCommit | ExternalConversation | ExternalDeployment | ExternalDesign | ExternalDocument | ExternalFeatureFlag | ExternalMessage | ExternalOrganisation | ExternalPosition | ExternalPullRequest | ExternalRemoteLink | ExternalRepository | ExternalVideo | ExternalVulnerability | ExternalWorker | IdentityGroup | JiraAlignAggProject | JiraAutodevJob | JiraBoard | JiraConfluenceRemoteIssueLink | JiraCustomRemoteIssueLink | JiraIssue | JiraIssueRemoteIssueLink | JiraPlatformComment | JiraPostIncidentReviewLink | JiraPriority | JiraProject | JiraServiceManagementComment | JiraSprint | JiraStatus | JiraVersion | JiraWebRemoteIssueLink | JiraWorklog | LoomComment | LoomSpace | LoomVideo | MercuryFocusArea | OpsgenieTeam | RadarPosition | SpfDependency | TeamV2 | ThirdPartySecurityContainer | ThirdPartyUser | TownsquareGoal | TownsquareGoalUpdate | TownsquareProject | TownsquareProjectUpdate;
|
|
38657
38983
|
export declare type GraphStoreCypherQueryV2AriNode = {
|
|
38658
38984
|
__typename?: 'GraphStoreCypherQueryV2AriNode';
|
|
38659
38985
|
data?: Maybe<GraphStoreCypherQueryV2AriNodeUnion>;
|
|
38660
38986
|
id: Scalars['ID']['output'];
|
|
38661
38987
|
};
|
|
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;
|
|
38988
|
+
export declare type GraphStoreCypherQueryV2AriNodeUnion = AppUser | AtlassianAccountUser | BitbucketRepository | CompassComponent | CompassLinkNode | CompassScorecard | ConfluenceBlogPost | ConfluenceDatabase | ConfluenceFolder | ConfluenceFooterComment | ConfluenceInlineComment | ConfluencePage | ConfluenceSpace | ConfluenceWhiteboard | CustomerUser | DeploymentSummary | DevOpsDesign | DevOpsDocument | DevOpsFeatureFlag | DevOpsOperationsComponentDetails | DevOpsOperationsIncidentDetails | DevOpsOperationsPostIncidentReviewDetails | DevOpsProjectDetails | DevOpsPullRequestDetails | DevOpsRepository | DevOpsSecurityVulnerabilityDetails | DevOpsService | ExternalBranch | ExternalBuildInfo | ExternalCalendarEvent | ExternalCommit | ExternalConversation | ExternalDeployment | ExternalDesign | ExternalDocument | ExternalFeatureFlag | ExternalMessage | ExternalOrganisation | ExternalPosition | ExternalPullRequest | ExternalRemoteLink | ExternalRepository | ExternalVideo | ExternalVulnerability | ExternalWorker | IdentityGroup | JiraAlignAggProject | JiraAutodevJob | JiraBoard | JiraConfluenceRemoteIssueLink | JiraCustomRemoteIssueLink | JiraIssue | JiraIssueRemoteIssueLink | JiraPlatformComment | JiraPostIncidentReviewLink | JiraPriority | JiraProject | JiraServiceManagementComment | JiraSprint | JiraStatus | JiraVersion | JiraWebRemoteIssueLink | JiraWorklog | LoomComment | LoomSpace | LoomVideo | MercuryFocusArea | OpsgenieTeam | RadarPosition | SpfDependency | TeamV2 | ThirdPartySecurityContainer | ThirdPartyUser | TownsquareGoal | TownsquareGoalUpdate | TownsquareProject | TownsquareProjectUpdate;
|
|
38663
38989
|
export declare type GraphStoreCypherQueryV2BooleanObject = {
|
|
38664
38990
|
__typename?: 'GraphStoreCypherQueryV2BooleanObject';
|
|
38665
38991
|
value: Scalars['Boolean']['output'];
|
|
@@ -38704,7 +39030,7 @@ export declare enum GraphStoreCypherQueryV2VersionEnum {
|
|
|
38704
39030
|
V2 = "V2",
|
|
38705
39031
|
V3 = "V3"
|
|
38706
39032
|
}
|
|
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;
|
|
39033
|
+
export declare type GraphStoreCypherQueryValueItemUnion = AppUser | AtlassianAccountUser | BitbucketRepository | CompassComponent | CompassLinkNode | CompassScorecard | ConfluenceBlogPost | ConfluenceDatabase | ConfluenceFolder | ConfluenceFooterComment | ConfluenceInlineComment | ConfluencePage | ConfluenceSpace | ConfluenceWhiteboard | CustomerUser | DeploymentSummary | DevOpsDesign | DevOpsDocument | DevOpsFeatureFlag | DevOpsOperationsComponentDetails | DevOpsOperationsIncidentDetails | DevOpsOperationsPostIncidentReviewDetails | DevOpsProjectDetails | DevOpsPullRequestDetails | DevOpsRepository | DevOpsSecurityVulnerabilityDetails | DevOpsService | ExternalBranch | ExternalBuildInfo | ExternalCalendarEvent | ExternalCommit | ExternalConversation | ExternalDeployment | ExternalDesign | ExternalDocument | ExternalFeatureFlag | ExternalMessage | ExternalOrganisation | ExternalPosition | ExternalPullRequest | ExternalRemoteLink | ExternalRepository | ExternalVideo | ExternalVulnerability | ExternalWorker | IdentityGroup | JiraAlignAggProject | JiraAutodevJob | JiraBoard | JiraConfluenceRemoteIssueLink | JiraCustomRemoteIssueLink | JiraIssue | JiraIssueRemoteIssueLink | JiraPlatformComment | JiraPostIncidentReviewLink | JiraPriority | JiraProject | JiraServiceManagementComment | JiraSprint | JiraStatus | JiraVersion | JiraWebRemoteIssueLink | JiraWorklog | LoomComment | LoomSpace | LoomVideo | MercuryFocusArea | OpsgenieTeam | RadarPosition | SpfDependency | TeamV2 | ThirdPartySecurityContainer | ThirdPartyUser | TownsquareGoal | TownsquareGoalUpdate | TownsquareProject | TownsquareProjectUpdate;
|
|
38708
39034
|
export declare type GraphStoreCypherQueryValueNode = {
|
|
38709
39035
|
__typename?: 'GraphStoreCypherQueryValueNode';
|
|
38710
39036
|
data?: Maybe<GraphStoreCypherQueryValueItemUnion>;
|
|
@@ -44425,6 +44751,19 @@ export declare type GraphStoreSimplifiedComponentAssociatedDocumentInverseEdge =
|
|
|
44425
44751
|
};
|
|
44426
44752
|
export declare type GraphStoreSimplifiedComponentAssociatedDocumentInverseUnion = CompassComponent;
|
|
44427
44753
|
export declare type GraphStoreSimplifiedComponentAssociatedDocumentUnion = DevOpsDocument | ExternalDocument;
|
|
44754
|
+
export declare type GraphStoreSimplifiedComponentHasComponentLinkConnection = HasPageInfo & {
|
|
44755
|
+
__typename?: 'GraphStoreSimplifiedComponentHasComponentLinkConnection';
|
|
44756
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedComponentHasComponentLinkEdge>>>;
|
|
44757
|
+
pageInfo: PageInfo;
|
|
44758
|
+
};
|
|
44759
|
+
export declare type GraphStoreSimplifiedComponentHasComponentLinkEdge = {
|
|
44760
|
+
__typename?: 'GraphStoreSimplifiedComponentHasComponentLinkEdge';
|
|
44761
|
+
createdAt: Scalars['DateTime']['output'];
|
|
44762
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
44763
|
+
id: Scalars['ID']['output'];
|
|
44764
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
44765
|
+
node?: Maybe<GraphStoreSimplifiedComponentHasComponentLinkUnion>;
|
|
44766
|
+
};
|
|
44428
44767
|
export declare type GraphStoreSimplifiedComponentHasComponentLinkInverseConnection = HasPageInfo & {
|
|
44429
44768
|
__typename?: 'GraphStoreSimplifiedComponentHasComponentLinkInverseConnection';
|
|
44430
44769
|
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedComponentHasComponentLinkInverseEdge>>>;
|
|
@@ -44439,6 +44778,7 @@ export declare type GraphStoreSimplifiedComponentHasComponentLinkInverseEdge = {
|
|
|
44439
44778
|
node?: Maybe<GraphStoreSimplifiedComponentHasComponentLinkInverseUnion>;
|
|
44440
44779
|
};
|
|
44441
44780
|
export declare type GraphStoreSimplifiedComponentHasComponentLinkInverseUnion = CompassComponent;
|
|
44781
|
+
export declare type GraphStoreSimplifiedComponentHasComponentLinkUnion = CompassLinkNode;
|
|
44442
44782
|
export declare type GraphStoreSimplifiedComponentImpactedByIncidentConnection = HasPageInfo & {
|
|
44443
44783
|
__typename?: 'GraphStoreSimplifiedComponentImpactedByIncidentConnection';
|
|
44444
44784
|
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedComponentImpactedByIncidentEdge>>>;
|
|
@@ -44480,6 +44820,20 @@ export declare type GraphStoreSimplifiedComponentLinkIsJiraProjectEdge = {
|
|
|
44480
44820
|
lastUpdated: Scalars['DateTime']['output'];
|
|
44481
44821
|
node?: Maybe<GraphStoreSimplifiedComponentLinkIsJiraProjectUnion>;
|
|
44482
44822
|
};
|
|
44823
|
+
export declare type GraphStoreSimplifiedComponentLinkIsJiraProjectInverseConnection = HasPageInfo & {
|
|
44824
|
+
__typename?: 'GraphStoreSimplifiedComponentLinkIsJiraProjectInverseConnection';
|
|
44825
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedComponentLinkIsJiraProjectInverseEdge>>>;
|
|
44826
|
+
pageInfo: PageInfo;
|
|
44827
|
+
};
|
|
44828
|
+
export declare type GraphStoreSimplifiedComponentLinkIsJiraProjectInverseEdge = {
|
|
44829
|
+
__typename?: 'GraphStoreSimplifiedComponentLinkIsJiraProjectInverseEdge';
|
|
44830
|
+
createdAt: Scalars['DateTime']['output'];
|
|
44831
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
44832
|
+
id: Scalars['ID']['output'];
|
|
44833
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
44834
|
+
node?: Maybe<GraphStoreSimplifiedComponentLinkIsJiraProjectInverseUnion>;
|
|
44835
|
+
};
|
|
44836
|
+
export declare type GraphStoreSimplifiedComponentLinkIsJiraProjectInverseUnion = CompassLinkNode;
|
|
44483
44837
|
export declare type GraphStoreSimplifiedComponentLinkIsJiraProjectUnion = JiraProject;
|
|
44484
44838
|
export declare type GraphStoreSimplifiedComponentLinkIsProviderRepoConnection = HasPageInfo & {
|
|
44485
44839
|
__typename?: 'GraphStoreSimplifiedComponentLinkIsProviderRepoConnection';
|
|
@@ -44494,6 +44848,20 @@ export declare type GraphStoreSimplifiedComponentLinkIsProviderRepoEdge = {
|
|
|
44494
44848
|
lastUpdated: Scalars['DateTime']['output'];
|
|
44495
44849
|
node?: Maybe<GraphStoreSimplifiedComponentLinkIsProviderRepoUnion>;
|
|
44496
44850
|
};
|
|
44851
|
+
export declare type GraphStoreSimplifiedComponentLinkIsProviderRepoInverseConnection = HasPageInfo & {
|
|
44852
|
+
__typename?: 'GraphStoreSimplifiedComponentLinkIsProviderRepoInverseConnection';
|
|
44853
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedComponentLinkIsProviderRepoInverseEdge>>>;
|
|
44854
|
+
pageInfo: PageInfo;
|
|
44855
|
+
};
|
|
44856
|
+
export declare type GraphStoreSimplifiedComponentLinkIsProviderRepoInverseEdge = {
|
|
44857
|
+
__typename?: 'GraphStoreSimplifiedComponentLinkIsProviderRepoInverseEdge';
|
|
44858
|
+
createdAt: Scalars['DateTime']['output'];
|
|
44859
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
44860
|
+
id: Scalars['ID']['output'];
|
|
44861
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
44862
|
+
node?: Maybe<GraphStoreSimplifiedComponentLinkIsProviderRepoInverseUnion>;
|
|
44863
|
+
};
|
|
44864
|
+
export declare type GraphStoreSimplifiedComponentLinkIsProviderRepoInverseUnion = CompassLinkNode;
|
|
44497
44865
|
export declare type GraphStoreSimplifiedComponentLinkIsProviderRepoUnion = BitbucketRepository;
|
|
44498
44866
|
export declare type GraphStoreSimplifiedComponentLinkedJswIssueConnection = HasPageInfo & HasTotal & {
|
|
44499
44867
|
__typename?: 'GraphStoreSimplifiedComponentLinkedJswIssueConnection';
|
|
@@ -46015,6 +46383,19 @@ export declare type GraphStoreSimplifiedIssueHasChangedPriorityInverseEdge = {
|
|
|
46015
46383
|
};
|
|
46016
46384
|
export declare type GraphStoreSimplifiedIssueHasChangedPriorityInverseUnion = JiraIssue;
|
|
46017
46385
|
export declare type GraphStoreSimplifiedIssueHasChangedPriorityUnion = JiraPriority;
|
|
46386
|
+
export declare type GraphStoreSimplifiedIssueHasChangedStatusConnection = HasPageInfo & {
|
|
46387
|
+
__typename?: 'GraphStoreSimplifiedIssueHasChangedStatusConnection';
|
|
46388
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedIssueHasChangedStatusEdge>>>;
|
|
46389
|
+
pageInfo: PageInfo;
|
|
46390
|
+
};
|
|
46391
|
+
export declare type GraphStoreSimplifiedIssueHasChangedStatusEdge = {
|
|
46392
|
+
__typename?: 'GraphStoreSimplifiedIssueHasChangedStatusEdge';
|
|
46393
|
+
createdAt: Scalars['DateTime']['output'];
|
|
46394
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
46395
|
+
id: Scalars['ID']['output'];
|
|
46396
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
46397
|
+
node?: Maybe<GraphStoreSimplifiedIssueHasChangedStatusUnion>;
|
|
46398
|
+
};
|
|
46018
46399
|
export declare type GraphStoreSimplifiedIssueHasChangedStatusInverseConnection = HasPageInfo & {
|
|
46019
46400
|
__typename?: 'GraphStoreSimplifiedIssueHasChangedStatusInverseConnection';
|
|
46020
46401
|
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedIssueHasChangedStatusInverseEdge>>>;
|
|
@@ -46029,6 +46410,7 @@ export declare type GraphStoreSimplifiedIssueHasChangedStatusInverseEdge = {
|
|
|
46029
46410
|
node?: Maybe<GraphStoreSimplifiedIssueHasChangedStatusInverseUnion>;
|
|
46030
46411
|
};
|
|
46031
46412
|
export declare type GraphStoreSimplifiedIssueHasChangedStatusInverseUnion = JiraIssue;
|
|
46413
|
+
export declare type GraphStoreSimplifiedIssueHasChangedStatusUnion = JiraStatus;
|
|
46032
46414
|
export declare type GraphStoreSimplifiedIssueMentionedInConversationConnection = HasPageInfo & {
|
|
46033
46415
|
__typename?: 'GraphStoreSimplifiedIssueMentionedInConversationConnection';
|
|
46034
46416
|
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedIssueMentionedInConversationEdge>>>;
|
|
@@ -49105,6 +49487,34 @@ export declare type GraphStoreSimplifiedUserCreatedAtlasGoalInverseEdge = {
|
|
|
49105
49487
|
};
|
|
49106
49488
|
export declare type GraphStoreSimplifiedUserCreatedAtlasGoalInverseUnion = AppUser | AtlassianAccountUser | CustomerUser;
|
|
49107
49489
|
export declare type GraphStoreSimplifiedUserCreatedAtlasGoalUnion = TownsquareGoal;
|
|
49490
|
+
export declare type GraphStoreSimplifiedUserCreatedAtlasProjectConnection = HasPageInfo & {
|
|
49491
|
+
__typename?: 'GraphStoreSimplifiedUserCreatedAtlasProjectConnection';
|
|
49492
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedUserCreatedAtlasProjectEdge>>>;
|
|
49493
|
+
pageInfo: PageInfo;
|
|
49494
|
+
};
|
|
49495
|
+
export declare type GraphStoreSimplifiedUserCreatedAtlasProjectEdge = {
|
|
49496
|
+
__typename?: 'GraphStoreSimplifiedUserCreatedAtlasProjectEdge';
|
|
49497
|
+
createdAt: Scalars['DateTime']['output'];
|
|
49498
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
49499
|
+
id: Scalars['ID']['output'];
|
|
49500
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
49501
|
+
node?: Maybe<GraphStoreSimplifiedUserCreatedAtlasProjectUnion>;
|
|
49502
|
+
};
|
|
49503
|
+
export declare type GraphStoreSimplifiedUserCreatedAtlasProjectInverseConnection = HasPageInfo & {
|
|
49504
|
+
__typename?: 'GraphStoreSimplifiedUserCreatedAtlasProjectInverseConnection';
|
|
49505
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedUserCreatedAtlasProjectInverseEdge>>>;
|
|
49506
|
+
pageInfo: PageInfo;
|
|
49507
|
+
};
|
|
49508
|
+
export declare type GraphStoreSimplifiedUserCreatedAtlasProjectInverseEdge = {
|
|
49509
|
+
__typename?: 'GraphStoreSimplifiedUserCreatedAtlasProjectInverseEdge';
|
|
49510
|
+
createdAt: Scalars['DateTime']['output'];
|
|
49511
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
49512
|
+
id: Scalars['ID']['output'];
|
|
49513
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
49514
|
+
node?: Maybe<GraphStoreSimplifiedUserCreatedAtlasProjectInverseUnion>;
|
|
49515
|
+
};
|
|
49516
|
+
export declare type GraphStoreSimplifiedUserCreatedAtlasProjectInverseUnion = AppUser | AtlassianAccountUser | CustomerUser;
|
|
49517
|
+
export declare type GraphStoreSimplifiedUserCreatedAtlasProjectUnion = TownsquareProject;
|
|
49108
49518
|
export declare type GraphStoreSimplifiedUserCreatedBranchConnection = HasPageInfo & {
|
|
49109
49519
|
__typename?: 'GraphStoreSimplifiedUserCreatedBranchConnection';
|
|
49110
49520
|
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedUserCreatedBranchEdge>>>;
|
|
@@ -49417,6 +49827,34 @@ export declare type GraphStoreSimplifiedUserCreatedIssueCommentInverseEdge = {
|
|
|
49417
49827
|
};
|
|
49418
49828
|
export declare type GraphStoreSimplifiedUserCreatedIssueCommentInverseUnion = AppUser | AtlassianAccountUser | CustomerUser;
|
|
49419
49829
|
export declare type GraphStoreSimplifiedUserCreatedIssueCommentUnion = JiraPlatformComment | JiraServiceManagementComment;
|
|
49830
|
+
export declare type GraphStoreSimplifiedUserCreatedIssueConnection = HasPageInfo & {
|
|
49831
|
+
__typename?: 'GraphStoreSimplifiedUserCreatedIssueConnection';
|
|
49832
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedUserCreatedIssueEdge>>>;
|
|
49833
|
+
pageInfo: PageInfo;
|
|
49834
|
+
};
|
|
49835
|
+
export declare type GraphStoreSimplifiedUserCreatedIssueEdge = {
|
|
49836
|
+
__typename?: 'GraphStoreSimplifiedUserCreatedIssueEdge';
|
|
49837
|
+
createdAt: Scalars['DateTime']['output'];
|
|
49838
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
49839
|
+
id: Scalars['ID']['output'];
|
|
49840
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
49841
|
+
node?: Maybe<GraphStoreSimplifiedUserCreatedIssueUnion>;
|
|
49842
|
+
};
|
|
49843
|
+
export declare type GraphStoreSimplifiedUserCreatedIssueInverseConnection = HasPageInfo & {
|
|
49844
|
+
__typename?: 'GraphStoreSimplifiedUserCreatedIssueInverseConnection';
|
|
49845
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedUserCreatedIssueInverseEdge>>>;
|
|
49846
|
+
pageInfo: PageInfo;
|
|
49847
|
+
};
|
|
49848
|
+
export declare type GraphStoreSimplifiedUserCreatedIssueInverseEdge = {
|
|
49849
|
+
__typename?: 'GraphStoreSimplifiedUserCreatedIssueInverseEdge';
|
|
49850
|
+
createdAt: Scalars['DateTime']['output'];
|
|
49851
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
49852
|
+
id: Scalars['ID']['output'];
|
|
49853
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
49854
|
+
node?: Maybe<GraphStoreSimplifiedUserCreatedIssueInverseUnion>;
|
|
49855
|
+
};
|
|
49856
|
+
export declare type GraphStoreSimplifiedUserCreatedIssueInverseUnion = AppUser | AtlassianAccountUser | CustomerUser;
|
|
49857
|
+
export declare type GraphStoreSimplifiedUserCreatedIssueUnion = JiraIssue;
|
|
49420
49858
|
export declare type GraphStoreSimplifiedUserCreatedIssueWorklogConnection = HasPageInfo & {
|
|
49421
49859
|
__typename?: 'GraphStoreSimplifiedUserCreatedIssueWorklogConnection';
|
|
49422
49860
|
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedUserCreatedIssueWorklogEdge>>>;
|
|
@@ -51844,6 +52282,9 @@ export declare type GraphStoreUserContributedConfluenceWhiteboardSortInput = {
|
|
|
51844
52282
|
export declare type GraphStoreUserCreatedAtlasGoalSortInput = {
|
|
51845
52283
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
51846
52284
|
};
|
|
52285
|
+
export declare type GraphStoreUserCreatedAtlasProjectSortInput = {
|
|
52286
|
+
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
52287
|
+
};
|
|
51847
52288
|
export declare type GraphStoreUserCreatedBranchSortInput = {
|
|
51848
52289
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
51849
52290
|
};
|
|
@@ -51894,6 +52335,9 @@ export declare type GraphStoreUserCreatedDocumentSortInput = {
|
|
|
51894
52335
|
export declare type GraphStoreUserCreatedIssueCommentSortInput = {
|
|
51895
52336
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
51896
52337
|
};
|
|
52338
|
+
export declare type GraphStoreUserCreatedIssueSortInput = {
|
|
52339
|
+
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
52340
|
+
};
|
|
51897
52341
|
export declare type GraphStoreUserCreatedIssueWorklogSortInput = {
|
|
51898
52342
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
51899
52343
|
};
|
|
@@ -52426,27 +52870,40 @@ export declare type GrowthUnifiedProfileIssueTypeInput = {
|
|
|
52426
52870
|
};
|
|
52427
52871
|
export declare enum GrowthUnifiedProfileJtbd {
|
|
52428
52872
|
AdHocTaskAndIncidentManagement = "AD_HOC_TASK_AND_INCIDENT_MANAGEMENT",
|
|
52873
|
+
Brainstorming = "BRAINSTORMING",
|
|
52429
52874
|
Budgets = "BUDGETS",
|
|
52875
|
+
CampaignPlanning = "CAMPAIGN_PLANNING",
|
|
52430
52876
|
CdWrtng = "CD_WRTNG",
|
|
52431
52877
|
CentralizedDocumentation = "CENTRALIZED_DOCUMENTATION",
|
|
52432
52878
|
ComplianceAndRiskManagement = "COMPLIANCE_AND_RISK_MANAGEMENT",
|
|
52879
|
+
CreativeBriefs = "CREATIVE_BRIEFS",
|
|
52880
|
+
CustomerJourneys = "CUSTOMER_JOURNEYS",
|
|
52433
52881
|
EstimateTimeAndEffort = "ESTIMATE_TIME_AND_EFFORT",
|
|
52882
|
+
FlowchartAndDiagrams = "FLOWCHART_AND_DIAGRAMS",
|
|
52883
|
+
GanttChart = "GANTT_CHART",
|
|
52434
52884
|
ImproveTeamProcesses = "IMPROVE_TEAM_PROCESSES",
|
|
52435
52885
|
ImproveWorkflow = "IMPROVE_WORKFLOW",
|
|
52886
|
+
KnowledgeHub = "KNOWLEDGE_HUB",
|
|
52436
52887
|
LaunchCampaigns = "LAUNCH_CAMPAIGNS",
|
|
52437
52888
|
ManageTasks = "MANAGE_TASKS",
|
|
52438
52889
|
ManagingClientAndVendorRelationships = "MANAGING_CLIENT_AND_VENDOR_RELATIONSHIPS",
|
|
52439
52890
|
MapWorkDependencies = "MAP_WORK_DEPENDENCIES",
|
|
52440
52891
|
MarketingContent = "MARKETING_CONTENT",
|
|
52892
|
+
MeetingNotes = "MEETING_NOTES",
|
|
52441
52893
|
PlanAndManage = "PLAN_AND_MANAGE",
|
|
52442
52894
|
PrioritizeWork = "PRIORITIZE_WORK",
|
|
52895
|
+
ProcessMapping = "PROCESS_MAPPING",
|
|
52896
|
+
ProjectPlan = "PROJECT_PLAN",
|
|
52443
52897
|
ProjectPlanning = "PROJECT_PLANNING",
|
|
52444
52898
|
ProjectPlanningAndCoordination = "PROJECT_PLANNING_AND_COORDINATION",
|
|
52445
52899
|
ProjectProgress = "PROJECT_PROGRESS",
|
|
52900
|
+
RequirementsDoc = "REQUIREMENTS_DOC",
|
|
52446
52901
|
RunSprints = "RUN_SPRINTS",
|
|
52447
52902
|
Stakeholders = "STAKEHOLDERS",
|
|
52448
52903
|
StrategiesAndGoals = "STRATEGIES_AND_GOALS",
|
|
52449
52904
|
SystemAndToolEvaluations = "SYSTEM_AND_TOOL_EVALUATIONS",
|
|
52905
|
+
TaskTracking = "TASK_TRACKING",
|
|
52906
|
+
TeamStatusUpdate = "TEAM_STATUS_UPDATE",
|
|
52450
52907
|
TrackingRprtng = "TRACKING_RPRTNG",
|
|
52451
52908
|
TrackBugs = "TRACK_BUGS",
|
|
52452
52909
|
UseKanbanBoard = "USE_KANBAN_BOARD",
|
|
@@ -56341,6 +56798,13 @@ export declare type JiraAutodevCreateJobPayload = Payload & {
|
|
|
56341
56798
|
job?: Maybe<JiraAutodevJob>;
|
|
56342
56799
|
success: Scalars['Boolean']['output'];
|
|
56343
56800
|
};
|
|
56801
|
+
export declare enum JiraAutodevCreatePullRequestOptionEnumType {
|
|
56802
|
+
Always = "ALWAYS",
|
|
56803
|
+
Draft = "DRAFT",
|
|
56804
|
+
DraftOnBuildPass = "DRAFT_ON_BUILD_PASS",
|
|
56805
|
+
Never = "NEVER",
|
|
56806
|
+
OnBuildPass = "ON_BUILD_PASS"
|
|
56807
|
+
}
|
|
56344
56808
|
export declare type JiraAutodevDeletedPayload = Payload & {
|
|
56345
56809
|
__typename?: 'JiraAutodevDeletedPayload';
|
|
56346
56810
|
errors?: Maybe<Array<MutationError>>;
|
|
@@ -56355,6 +56819,7 @@ export declare type JiraAutodevJob = {
|
|
|
56355
56819
|
branchUrl?: Maybe<Scalars['String']['output']>;
|
|
56356
56820
|
changesSummary?: Maybe<Scalars['String']['output']>;
|
|
56357
56821
|
codeChanges?: Maybe<JiraAutodevCodeChangeConnection>;
|
|
56822
|
+
createPullRequestOption?: Maybe<JiraAutodevCreatePullRequestOptionEnumType>;
|
|
56358
56823
|
currentWorkflow?: Maybe<Scalars['String']['output']>;
|
|
56359
56824
|
error?: Maybe<JiraAutodevJobPermissionError>;
|
|
56360
56825
|
gitDiff?: Maybe<Scalars['String']['output']>;
|
|
@@ -56856,6 +57321,20 @@ export declare enum JiraBulkEditMultiSelectFieldOptions {
|
|
|
56856
57321
|
RemoveAll = "REMOVE_ALL",
|
|
56857
57322
|
Replace = "REPLACE"
|
|
56858
57323
|
}
|
|
57324
|
+
export declare type JiraBulkLabelColorUpdateInput = {
|
|
57325
|
+
labelColorUpdate: Array<JiraBulkLabelColorUpdateInputItem>;
|
|
57326
|
+
projectId: Scalars['ID']['input'];
|
|
57327
|
+
};
|
|
57328
|
+
export declare type JiraBulkLabelColorUpdateInputItem = {
|
|
57329
|
+
color?: InputMaybe<JiraOptionColorInput>;
|
|
57330
|
+
fieldId: Scalars['ID']['input'];
|
|
57331
|
+
label: Scalars['String']['input'];
|
|
57332
|
+
};
|
|
57333
|
+
export declare type JiraBulkLabelColorUpdatePayload = Payload & {
|
|
57334
|
+
__typename?: 'JiraBulkLabelColorUpdatePayload';
|
|
57335
|
+
errors?: Maybe<Array<MutationError>>;
|
|
57336
|
+
success: Scalars['Boolean']['output'];
|
|
57337
|
+
};
|
|
56859
57338
|
export declare type JiraBulkOperationInput = {
|
|
56860
57339
|
bulkDeleteInput?: InputMaybe<JiraBulkDeleteInput>;
|
|
56861
57340
|
bulkEditInput?: InputMaybe<JiraBulkEditInput>;
|
|
@@ -59119,6 +59598,7 @@ export declare type JiraDevOpsMutationApproveJiraBitbucketWorkspaceAccessRequest
|
|
|
59119
59598
|
input: JiraApproveJiraBitbucketWorkspaceAccessRequestInput;
|
|
59120
59599
|
};
|
|
59121
59600
|
export declare type JiraDevOpsMutationCreateAutodevJobArgs = {
|
|
59601
|
+
createPullRequestOption?: InputMaybe<JiraAutodevCreatePullRequestOptionEnumType>;
|
|
59122
59602
|
issueAri: Scalars['ID']['input'];
|
|
59123
59603
|
prompt?: InputMaybe<Scalars['String']['input']>;
|
|
59124
59604
|
repoUrl: Scalars['String']['input'];
|
|
@@ -59632,6 +60112,7 @@ export declare type JiraField = {
|
|
|
59632
60112
|
export declare type JiraFieldAssociationWithIssueTypes = JiraProjectFieldAssociationInterface & {
|
|
59633
60113
|
__typename?: 'JiraFieldAssociationWithIssueTypes';
|
|
59634
60114
|
field?: Maybe<JiraField>;
|
|
60115
|
+
fieldFormatConfig?: Maybe<JiraFieldFormatConfig>;
|
|
59635
60116
|
fieldOperation?: Maybe<JiraFieldOperation>;
|
|
59636
60117
|
fieldOptions?: Maybe<JiraFieldOptionConnection>;
|
|
59637
60118
|
hasMissingConfiguration?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -59691,6 +60172,7 @@ export declare type JiraFieldConfigFilterInput = {
|
|
|
59691
60172
|
};
|
|
59692
60173
|
export declare enum JiraFieldConfigOrderBy {
|
|
59693
60174
|
ContextCount = "CONTEXT_COUNT",
|
|
60175
|
+
FieldType = "FIELD_TYPE",
|
|
59694
60176
|
LastUsed = "LAST_USED",
|
|
59695
60177
|
Name = "NAME",
|
|
59696
60178
|
PlannedDeleteDate = "PLANNED_DELETE_DATE",
|
|
@@ -59709,6 +60191,7 @@ export declare type JiraFieldConfigScheme = {
|
|
|
59709
60191
|
id: Scalars['ID']['output'];
|
|
59710
60192
|
name?: Maybe<Scalars['String']['output']>;
|
|
59711
60193
|
projectsCount?: Maybe<Scalars['Int']['output']>;
|
|
60194
|
+
schemeId?: Maybe<Scalars['ID']['output']>;
|
|
59712
60195
|
};
|
|
59713
60196
|
export declare type JiraFieldConfigSchemesConnection = {
|
|
59714
60197
|
__typename?: 'JiraFieldConfigSchemesConnection';
|
|
@@ -59733,6 +60216,7 @@ export declare type JiraFieldEdge = {
|
|
|
59733
60216
|
cursor?: Maybe<Scalars['String']['output']>;
|
|
59734
60217
|
node?: Maybe<JiraField>;
|
|
59735
60218
|
};
|
|
60219
|
+
export declare type JiraFieldFormatConfig = JiraNumberFieldFormatConfig;
|
|
59736
60220
|
export declare type JiraFieldKeyValueInput = {
|
|
59737
60221
|
key?: InputMaybe<Scalars['String']['input']>;
|
|
59738
60222
|
value?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -60876,6 +61360,7 @@ export declare type JiraIssueContentPanelsArgs = {
|
|
|
60876
61360
|
};
|
|
60877
61361
|
export declare type JiraIssueDesignsArgs = {
|
|
60878
61362
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
61363
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
60879
61364
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
60880
61365
|
};
|
|
60881
61366
|
export declare type JiraIssueEndDateViewFieldArgs = {
|
|
@@ -61407,6 +61892,8 @@ export declare type JiraIssueFieldConfig = Node & {
|
|
|
61407
61892
|
trashedByUser?: Maybe<User>;
|
|
61408
61893
|
trashedTimestamp?: Maybe<Scalars['Long']['output']>;
|
|
61409
61894
|
type: JiraConfigFieldType;
|
|
61895
|
+
typeDisplayName?: Maybe<Scalars['String']['output']>;
|
|
61896
|
+
typeKey?: Maybe<Scalars['String']['output']>;
|
|
61410
61897
|
};
|
|
61411
61898
|
export declare type JiraIssueFieldConfigAssociatedContextsArgs = {
|
|
61412
61899
|
after?: InputMaybe<Scalars['Int']['input']>;
|
|
@@ -62270,6 +62757,15 @@ export declare type JiraIssueSearchViewPayload = Payload & {
|
|
|
62270
62757
|
success: Scalars['Boolean']['output'];
|
|
62271
62758
|
view?: Maybe<JiraIssueSearchView>;
|
|
62272
62759
|
};
|
|
62760
|
+
export declare type JiraIssueSearchViewProjectKeyAndItemIdQuery = {
|
|
62761
|
+
cloudId: Scalars['ID']['input'];
|
|
62762
|
+
itemId: Scalars['String']['input'];
|
|
62763
|
+
projectKey: Scalars['String']['input'];
|
|
62764
|
+
};
|
|
62765
|
+
export declare type JiraIssueSearchViewQueryInput = {
|
|
62766
|
+
projectKeyAndItemIdQuery?: InputMaybe<JiraIssueSearchViewProjectKeyAndItemIdQuery>;
|
|
62767
|
+
viewAri?: InputMaybe<Scalars['ID']['input']>;
|
|
62768
|
+
};
|
|
62273
62769
|
export declare type JiraIssueSearchViewResult = JiraIssueSearchView | QueryError;
|
|
62274
62770
|
export declare type JiraIssueStreamHubEventPayloadProject = {
|
|
62275
62771
|
__typename?: 'JiraIssueStreamHubEventPayloadProject';
|
|
@@ -63327,6 +63823,18 @@ export declare type JiraLabel = {
|
|
|
63327
63823
|
labelId?: Maybe<Scalars['String']['output']>;
|
|
63328
63824
|
name?: Maybe<Scalars['String']['output']>;
|
|
63329
63825
|
};
|
|
63826
|
+
export declare type JiraLabelColorUpdateInput = {
|
|
63827
|
+
color?: InputMaybe<JiraOptionColorInput>;
|
|
63828
|
+
fieldId: Scalars['ID']['input'];
|
|
63829
|
+
label: Scalars['String']['input'];
|
|
63830
|
+
};
|
|
63831
|
+
export declare type JiraLabelColorUpdatePayload = Payload & {
|
|
63832
|
+
__typename?: 'JiraLabelColorUpdatePayload';
|
|
63833
|
+
errors?: Maybe<Array<MutationError>>;
|
|
63834
|
+
fieldId?: Maybe<Scalars['ID']['output']>;
|
|
63835
|
+
label?: Maybe<JiraLabel>;
|
|
63836
|
+
success: Scalars['Boolean']['output'];
|
|
63837
|
+
};
|
|
63330
63838
|
export declare type JiraLabelConnection = {
|
|
63331
63839
|
__typename?: 'JiraLabelConnection';
|
|
63332
63840
|
edges?: Maybe<Array<Maybe<JiraLabelEdge>>>;
|
|
@@ -63862,6 +64370,7 @@ export declare type JiraMutation = {
|
|
|
63862
64370
|
assignRelatedWorkToUser?: Maybe<JiraAssignRelatedWorkPayload>;
|
|
63863
64371
|
attributeUnsplashImage?: Maybe<JiraUnsplashAttributionPayload>;
|
|
63864
64372
|
bulkCreateRequestTypeFromTemplate?: Maybe<JiraServiceManagementCreateRequestTypeFromTemplatePayload>;
|
|
64373
|
+
bulkUpdateLabelColor?: Maybe<JiraBulkLabelColorUpdatePayload>;
|
|
63865
64374
|
cloneIssue?: Maybe<JiraCloneIssueResponse>;
|
|
63866
64375
|
createAndAssociateWorkflowFromJsmTemplate?: Maybe<JiraServiceManagementCreateAndAssociateWorkflowFromTemplatePayload>;
|
|
63867
64376
|
createAppNavigationItem?: Maybe<JiraCreateNavigationItemPayload>;
|
|
@@ -64004,6 +64513,7 @@ export declare type JiraMutation = {
|
|
|
64004
64513
|
updateJsmOrganizationField?: Maybe<JiraServiceManagementOrganizationFieldPayload>;
|
|
64005
64514
|
updateJwmFilter?: Maybe<JiraWorkManagementUpdateFilterPayload>;
|
|
64006
64515
|
updateJwmOverview?: Maybe<JiraWorkManagementGiraUpdateOverviewPayload>;
|
|
64516
|
+
updateLabelColor?: Maybe<JiraLabelColorUpdatePayload>;
|
|
64007
64517
|
updateLabelsField?: Maybe<JiraLabelsFieldPayload>;
|
|
64008
64518
|
updateLegacyTeamField?: Maybe<JiraLegacyTeamFieldPayload>;
|
|
64009
64519
|
updateMultipleGroupPickerField?: Maybe<JiraMultipleGroupPickerFieldPayload>;
|
|
@@ -64092,6 +64602,9 @@ export declare type JiraMutationAttributeUnsplashImageArgs = {
|
|
|
64092
64602
|
export declare type JiraMutationBulkCreateRequestTypeFromTemplateArgs = {
|
|
64093
64603
|
input: JiraServiceManagementBulkCreateRequestTypeFromTemplateInput;
|
|
64094
64604
|
};
|
|
64605
|
+
export declare type JiraMutationBulkUpdateLabelColorArgs = {
|
|
64606
|
+
input: JiraBulkLabelColorUpdateInput;
|
|
64607
|
+
};
|
|
64095
64608
|
export declare type JiraMutationCloneIssueArgs = {
|
|
64096
64609
|
input: JiraCloneIssueInput;
|
|
64097
64610
|
};
|
|
@@ -64573,6 +65086,9 @@ export declare type JiraMutationUpdateJwmFilterArgs = {
|
|
|
64573
65086
|
export declare type JiraMutationUpdateJwmOverviewArgs = {
|
|
64574
65087
|
input: JiraWorkManagementUpdateOverviewInput;
|
|
64575
65088
|
};
|
|
65089
|
+
export declare type JiraMutationUpdateLabelColorArgs = {
|
|
65090
|
+
input: JiraLabelColorUpdateInput;
|
|
65091
|
+
};
|
|
64576
65092
|
export declare type JiraMutationUpdateLabelsFieldArgs = {
|
|
64577
65093
|
input: JiraUpdateLabelsFieldInput;
|
|
64578
65094
|
};
|
|
@@ -65862,6 +66378,7 @@ export declare enum JiraPlaybookStepRunStatus {
|
|
|
65862
66378
|
QueuedForRetry = "QUEUED_FOR_RETRY",
|
|
65863
66379
|
SomeErrors = "SOME_ERRORS",
|
|
65864
66380
|
Success = "SUCCESS",
|
|
66381
|
+
SuccessUndone = "SUCCESS_UNDONE",
|
|
65865
66382
|
Throttled = "THROTTLED",
|
|
65866
66383
|
Waiting = "WAITING"
|
|
65867
66384
|
}
|
|
@@ -66738,6 +67255,7 @@ export declare type JiraProjectsSidebarMenu = {
|
|
|
66738
67255
|
id: Scalars['ID']['output'];
|
|
66739
67256
|
moreFavourites?: Maybe<JiraProjectConnection>;
|
|
66740
67257
|
moreRecents?: Maybe<JiraProjectConnection>;
|
|
67258
|
+
mostRecent?: Maybe<JiraProject>;
|
|
66741
67259
|
recentLimit?: Maybe<Scalars['Int']['output']>;
|
|
66742
67260
|
recents?: Maybe<JiraProjectConnection>;
|
|
66743
67261
|
};
|
|
@@ -67504,6 +68022,7 @@ export declare type JiraQueryJiraIssueSearchViewArgs = {
|
|
|
67504
68022
|
namespace?: InputMaybe<Scalars['String']['input']>;
|
|
67505
68023
|
viewConfigInput?: InputMaybe<JiraIssueSearchStaticViewInput>;
|
|
67506
68024
|
viewId?: InputMaybe<Scalars['String']['input']>;
|
|
68025
|
+
viewQueryInput?: InputMaybe<JiraIssueSearchViewQueryInput>;
|
|
67507
68026
|
};
|
|
67508
68027
|
export declare type JiraQueryJiraJourneyConfigurationArgs = {
|
|
67509
68028
|
cloudId: Scalars['ID']['input'];
|
|
@@ -68624,6 +69143,16 @@ export declare enum JiraResourceUsageRecommendationStatus {
|
|
|
68624
69143
|
Obsolete = "OBSOLETE",
|
|
68625
69144
|
Trashed = "TRASHED"
|
|
68626
69145
|
}
|
|
69146
|
+
export declare type JiraRestoreGlobalCustomFieldsInput = {
|
|
69147
|
+
fieldIds: Array<Scalars['String']['input']>;
|
|
69148
|
+
};
|
|
69149
|
+
export declare type JiraRestoreGlobalCustomFieldsPayload = Payload & {
|
|
69150
|
+
__typename?: 'JiraRestoreGlobalCustomFieldsPayload';
|
|
69151
|
+
errors?: Maybe<Array<MutationError>>;
|
|
69152
|
+
failedFieldIds?: Maybe<Array<Scalars['String']['output']>>;
|
|
69153
|
+
succeededNodeIds?: Maybe<Array<Scalars['ID']['output']>>;
|
|
69154
|
+
success: Scalars['Boolean']['output'];
|
|
69155
|
+
};
|
|
68627
69156
|
export declare type JiraRestoreJourneyConfigurationInput = {
|
|
68628
69157
|
etag?: InputMaybe<Scalars['String']['input']>;
|
|
68629
69158
|
id: Scalars['ID']['input'];
|
|
@@ -71467,6 +71996,7 @@ export declare type JiraTrashGlobalCustomFieldsPayload = Payload & {
|
|
|
71467
71996
|
__typename?: 'JiraTrashGlobalCustomFieldsPayload';
|
|
71468
71997
|
errors?: Maybe<Array<MutationError>>;
|
|
71469
71998
|
failedFieldIds?: Maybe<Array<Scalars['String']['output']>>;
|
|
71999
|
+
succeededNodeIds?: Maybe<Array<Scalars['ID']['output']>>;
|
|
71470
72000
|
success: Scalars['Boolean']['output'];
|
|
71471
72001
|
};
|
|
71472
72002
|
export declare type JiraUiExposedError = {
|
|
@@ -75997,6 +76527,8 @@ export declare type MarketplaceConsoleAppSoftwareShort = {
|
|
|
75997
76527
|
appSoftwareId: Scalars['ID']['output'];
|
|
75998
76528
|
editionsEnabled?: Maybe<Scalars['Boolean']['output']>;
|
|
75999
76529
|
hasConnectVersion?: Maybe<Scalars['Boolean']['output']>;
|
|
76530
|
+
hasCoupledVersion?: Maybe<Scalars['Boolean']['output']>;
|
|
76531
|
+
hasDecoupledVersion?: Maybe<Scalars['Boolean']['output']>;
|
|
76000
76532
|
hasPublicVersion?: Maybe<Scalars['Boolean']['output']>;
|
|
76001
76533
|
hosting: MarketplaceConsoleHosting;
|
|
76002
76534
|
isLatestActiveVersionPaidViaAtlassian?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -76272,6 +76804,7 @@ export declare enum MarketplaceConsoleDevSpaceTier {
|
|
|
76272
76804
|
}
|
|
76273
76805
|
export declare type MarketplaceConsoleEditAppVersionRequest = {
|
|
76274
76806
|
appKey: Scalars['ID']['input'];
|
|
76807
|
+
bonTermsSupported?: InputMaybe<Scalars['Boolean']['input']>;
|
|
76275
76808
|
buildNumber: Scalars['ID']['input'];
|
|
76276
76809
|
compatibilities?: InputMaybe<Array<MarketplaceConsoleAppSoftwareVersionCompatibilityInput>>;
|
|
76277
76810
|
deploymentInstructions?: InputMaybe<Array<MarketplaceConsoleDeploymentInstructionInput>>;
|
|
@@ -76284,6 +76817,7 @@ export declare type MarketplaceConsoleEditAppVersionRequest = {
|
|
|
76284
76817
|
learnMoreUrl?: InputMaybe<Scalars['String']['input']>;
|
|
76285
76818
|
licenseType?: InputMaybe<MarketplaceConsoleAppSoftwareVersionLicenseTypeId>;
|
|
76286
76819
|
moreDetails?: InputMaybe<Scalars['String']['input']>;
|
|
76820
|
+
partnerSpecificTerms?: InputMaybe<Scalars['String']['input']>;
|
|
76287
76821
|
purchaseUrl?: InputMaybe<Scalars['String']['input']>;
|
|
76288
76822
|
releaseNotes?: InputMaybe<Scalars['String']['input']>;
|
|
76289
76823
|
releaseSummary?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -76394,6 +76928,7 @@ export declare type MarketplaceConsoleFeatureInput = {
|
|
|
76394
76928
|
};
|
|
76395
76929
|
export declare type MarketplaceConsoleForgeFrameworkAttributes = {
|
|
76396
76930
|
__typename?: 'MarketplaceConsoleForgeFrameworkAttributes';
|
|
76931
|
+
appAccess: Array<Scalars['String']['output']>;
|
|
76397
76932
|
appId: Scalars['ID']['output'];
|
|
76398
76933
|
envId: Scalars['ID']['output'];
|
|
76399
76934
|
scopes: Array<Scalars['String']['output']>;
|
|
@@ -76727,6 +77262,7 @@ export declare type MarketplaceConsolePartnerContactPermissions = {
|
|
|
76727
77262
|
canViewPartnerPaymentDetails: Scalars['Boolean']['output'];
|
|
76728
77263
|
canViewSalesReport: Scalars['Boolean']['output'];
|
|
76729
77264
|
canViewUsageReports: Scalars['Boolean']['output'];
|
|
77265
|
+
isMarketplaceReader: Scalars['Boolean']['output'];
|
|
76730
77266
|
isPartnerAdmin: Scalars['Boolean']['output'];
|
|
76731
77267
|
isSiteAdmin: Scalars['Boolean']['output'];
|
|
76732
77268
|
partnerId: Scalars['ID']['output'];
|
|
@@ -78263,10 +78799,12 @@ export declare type MercuryChangeProposal = Node & {
|
|
|
78263
78799
|
createdDate: Scalars['String']['output'];
|
|
78264
78800
|
description?: Maybe<Scalars['String']['output']>;
|
|
78265
78801
|
focusArea?: Maybe<MercuryFocusArea>;
|
|
78802
|
+
funding?: Maybe<MercuryChangeProposalFunding>;
|
|
78266
78803
|
id: Scalars['ID']['output'];
|
|
78267
78804
|
impact?: Maybe<MercuryChangeProposalImpact>;
|
|
78268
78805
|
name: Scalars['String']['output'];
|
|
78269
78806
|
owner?: Maybe<User>;
|
|
78807
|
+
positionDetails?: Maybe<MercuryChangeProposalPositionDetails>;
|
|
78270
78808
|
status?: Maybe<MercuryChangeProposalStatus>;
|
|
78271
78809
|
statusTransitions?: Maybe<MercuryChangeProposalStatusTransitions>;
|
|
78272
78810
|
strategicEvent?: Maybe<MercuryStrategicEvent>;
|
|
@@ -78312,17 +78850,23 @@ export declare type MercuryChangeProposalEdge = {
|
|
|
78312
78850
|
};
|
|
78313
78851
|
export declare type MercuryChangeProposalFundSummary = {
|
|
78314
78852
|
__typename?: 'MercuryChangeProposalFundSummary';
|
|
78315
|
-
changeProposalId: Scalars['ID']['output'];
|
|
78316
78853
|
laborAmount?: Maybe<Scalars['BigDecimal']['output']>;
|
|
78317
78854
|
nonLaborAmount?: Maybe<Scalars['BigDecimal']['output']>;
|
|
78318
78855
|
};
|
|
78856
|
+
export declare type MercuryChangeProposalFunding = {
|
|
78857
|
+
__typename?: 'MercuryChangeProposalFunding';
|
|
78858
|
+
fundsRequested?: Maybe<Scalars['BigDecimal']['output']>;
|
|
78859
|
+
};
|
|
78319
78860
|
export declare type MercuryChangeProposalImpact = {
|
|
78320
78861
|
__typename?: 'MercuryChangeProposalImpact';
|
|
78321
78862
|
value: Scalars['Int']['output'];
|
|
78322
78863
|
};
|
|
78864
|
+
export declare type MercuryChangeProposalPositionDetails = {
|
|
78865
|
+
__typename?: 'MercuryChangeProposalPositionDetails';
|
|
78866
|
+
positionsRequested?: Maybe<Scalars['Int']['output']>;
|
|
78867
|
+
};
|
|
78323
78868
|
export declare type MercuryChangeProposalPositionSummary = {
|
|
78324
78869
|
__typename?: 'MercuryChangeProposalPositionSummary';
|
|
78325
|
-
changeProposalId: Scalars['ID']['output'];
|
|
78326
78870
|
movedCount?: Maybe<Scalars['Int']['output']>;
|
|
78327
78871
|
newCount?: Maybe<Scalars['Int']['output']>;
|
|
78328
78872
|
};
|
|
@@ -79465,6 +80009,7 @@ export declare type MercuryProposeChangesInput = {
|
|
|
79465
80009
|
changeParentFocusAreas?: InputMaybe<Array<MercuryChangeParentFocusAreaChangeInput>>;
|
|
79466
80010
|
changeProposalId: Scalars['ID']['input'];
|
|
79467
80011
|
createFocusAreas?: InputMaybe<Array<MercuryCreateFocusAreaChangeInput>>;
|
|
80012
|
+
implementFocusAreaChanges?: InputMaybe<Scalars['Boolean']['input']>;
|
|
79468
80013
|
moveFunds?: InputMaybe<Array<MercuryMoveFundsChangeInput>>;
|
|
79469
80014
|
movePositions?: InputMaybe<Array<MercuryMovePositionsChangeInput>>;
|
|
79470
80015
|
positionAllocations?: InputMaybe<Array<MercuryPositionAllocationChangeInput>>;
|
|
@@ -79628,6 +80173,7 @@ export declare type MercuryProviderWorkSearchEdge = {
|
|
|
79628
80173
|
node?: Maybe<MercuryProviderWorkSearchItem>;
|
|
79629
80174
|
};
|
|
79630
80175
|
export declare type MercuryProviderWorkSearchFilters = {
|
|
80176
|
+
jql?: InputMaybe<Scalars['String']['input']>;
|
|
79631
80177
|
project?: InputMaybe<MercuryProviderWorkSearchProjectFilters>;
|
|
79632
80178
|
};
|
|
79633
80179
|
export declare type MercuryProviderWorkSearchItem = {
|
|
@@ -80729,6 +81275,7 @@ export declare type Mutation = {
|
|
|
80729
81275
|
agentStudio_updateAgentDetails?: Maybe<AgentStudioUpdateAgentDetailsPayload>;
|
|
80730
81276
|
agentStudio_updateAgentKnowledgeSources?: Maybe<AgentStudioUpdateAgentKnowledgeSourcesPayload>;
|
|
80731
81277
|
agentStudio_updateConversationStarters?: Maybe<AgentStudioUpdateConversationStartersPayload>;
|
|
81278
|
+
agentStudio_updateCustomAction?: Maybe<AgentStudioUpdateCustomActionPayload>;
|
|
80732
81279
|
appRecommendations?: Maybe<AppRecMutation>;
|
|
80733
81280
|
appStorage?: Maybe<AppStorageMutation>;
|
|
80734
81281
|
appStorageCustomEntity?: Maybe<AppStorageCustomEntityMutation>;
|
|
@@ -80984,6 +81531,7 @@ export declare type Mutation = {
|
|
|
80984
81531
|
createLivePage?: Maybe<Content>;
|
|
80985
81532
|
createMentionNotification?: Maybe<CreateMentionNotificationPayload>;
|
|
80986
81533
|
createMentionReminderNotification?: Maybe<CreateMentionReminderNotificationPayload>;
|
|
81534
|
+
createNote?: Maybe<CreateNotePayload>;
|
|
80987
81535
|
createOnboardingSpace?: Maybe<Scalars['String']['output']>;
|
|
80988
81536
|
createOrUpdateArchivePageNote?: Maybe<Scalars['String']['output']>;
|
|
80989
81537
|
createPersonalSpace?: Maybe<Space>;
|
|
@@ -81005,6 +81553,7 @@ export declare type Mutation = {
|
|
|
81005
81553
|
csmAi_deleteAction?: Maybe<CsmAiDeleteActionPayload>;
|
|
81006
81554
|
csmAi_updateAction?: Maybe<CsmAiUpdateActionPayload>;
|
|
81007
81555
|
csmAi_updateAgent?: Maybe<CsmAiUpdateAgentPayload>;
|
|
81556
|
+
csmAi_updateHandoffConfig?: Maybe<CsmAiUpdateHandoffConfigPayload>;
|
|
81008
81557
|
customerService?: Maybe<CustomerServiceMutationApi>;
|
|
81009
81558
|
customerSupport?: Maybe<SupportRequestCatalogMutationApi>;
|
|
81010
81559
|
deactivatePaywallContent?: Maybe<DeactivatePaywallContentPayload>;
|
|
@@ -81029,6 +81578,7 @@ export declare type Mutation = {
|
|
|
81029
81578
|
deleteDevOpsServiceRelationship?: Maybe<DeleteDevOpsServiceRelationshipPayload>;
|
|
81030
81579
|
deleteInlineComment?: Maybe<Scalars['Boolean']['output']>;
|
|
81031
81580
|
deleteLabel?: Maybe<DeleteLabelPayload>;
|
|
81581
|
+
deleteNote?: Maybe<DeleteNotePayload>;
|
|
81032
81582
|
deletePages?: Maybe<DeletePagesPayload>;
|
|
81033
81583
|
deletePolarisIdeaTemplate?: Maybe<DeletePolarisIdeaTemplatePayload>;
|
|
81034
81584
|
deletePolarisInsight?: Maybe<DeletePolarisInsightPayload>;
|
|
@@ -81097,6 +81647,7 @@ export declare type Mutation = {
|
|
|
81097
81647
|
jira_publishIssueSearchConfig?: Maybe<JiraPublishIssueSearchConfigPayload>;
|
|
81098
81648
|
jira_reorderBoardViewColumn?: Maybe<JiraReorderBoardViewColumnPayload>;
|
|
81099
81649
|
jira_reorderProjectsSidebarMenuItem?: Maybe<JiraProjectsSidebarMenu>;
|
|
81650
|
+
jira_restoreGlobalCustomFields?: Maybe<JiraRestoreGlobalCustomFieldsPayload>;
|
|
81100
81651
|
jira_setBoardIssueCardCover?: Maybe<JiraSetBoardIssueCardCoverPayload>;
|
|
81101
81652
|
jira_setBoardViewCardFieldSelected?: Maybe<JiraSetBoardViewCardFieldSelectedPayload>;
|
|
81102
81653
|
jira_setBoardViewCardOptionState?: Maybe<JiraSetBoardViewCardOptionStatePayload>;
|
|
@@ -81284,6 +81835,7 @@ export declare type Mutation = {
|
|
|
81284
81835
|
updateHomeUserSettings?: Maybe<HomeUserSettings>;
|
|
81285
81836
|
updateLocalStorage?: Maybe<LocalStorage>;
|
|
81286
81837
|
updateNestedPageOwners?: Maybe<UpdateNestedPageOwnersPayload>;
|
|
81838
|
+
updateNote?: Maybe<UpdateNotePayload>;
|
|
81287
81839
|
updateOwner?: Maybe<UpdateOwnerPayload>;
|
|
81288
81840
|
updatePage?: Maybe<UpdatePagePayload>;
|
|
81289
81841
|
updatePageOwners?: Maybe<UpdatePageOwnersPayload>;
|
|
@@ -81375,6 +81927,10 @@ export declare type MutationAgentStudio_UpdateConversationStartersArgs = {
|
|
|
81375
81927
|
id: Scalars['ID']['input'];
|
|
81376
81928
|
input: AgentStudioUpdateConversationStartersInput;
|
|
81377
81929
|
};
|
|
81930
|
+
export declare type MutationAgentStudio_UpdateCustomActionArgs = {
|
|
81931
|
+
id: Scalars['ID']['input'];
|
|
81932
|
+
input: AgentStudioUpdateCustomActionInput;
|
|
81933
|
+
};
|
|
81378
81934
|
export declare type MutationApplyPolarisProjectTemplateArgs = {
|
|
81379
81935
|
input: ApplyPolarisProjectTemplateInput;
|
|
81380
81936
|
};
|
|
@@ -82184,6 +82740,9 @@ export declare type MutationCreateMentionNotificationArgs = {
|
|
|
82184
82740
|
export declare type MutationCreateMentionReminderNotificationArgs = {
|
|
82185
82741
|
input: CreateMentionReminderNotificationInput;
|
|
82186
82742
|
};
|
|
82743
|
+
export declare type MutationCreateNoteArgs = {
|
|
82744
|
+
input: CreateNoteInput;
|
|
82745
|
+
};
|
|
82187
82746
|
export declare type MutationCreateOnboardingSpaceArgs = {
|
|
82188
82747
|
spaceType: Scalars['String']['input'];
|
|
82189
82748
|
};
|
|
@@ -82276,6 +82835,12 @@ export declare type MutationCsmAi_UpdateAgentArgs = {
|
|
|
82276
82835
|
helpCenterAri: Scalars['ID']['input'];
|
|
82277
82836
|
input?: InputMaybe<CsmAiUpdateAgentInput>;
|
|
82278
82837
|
};
|
|
82838
|
+
export declare type MutationCsmAi_UpdateHandoffConfigArgs = {
|
|
82839
|
+
configId: Scalars['ID']['input'];
|
|
82840
|
+
csmAiHubId: Scalars['ID']['input'];
|
|
82841
|
+
helpCenterAri: Scalars['ID']['input'];
|
|
82842
|
+
input: CsmAiUpdateHandoffConfigInput;
|
|
82843
|
+
};
|
|
82279
82844
|
export declare type MutationCustomerServiceArgs = {
|
|
82280
82845
|
cloudId: Scalars['ID']['input'];
|
|
82281
82846
|
};
|
|
@@ -82349,6 +82914,9 @@ export declare type MutationDeleteLabelArgs = {
|
|
|
82349
82914
|
cloudId?: InputMaybe<Scalars['ID']['input']>;
|
|
82350
82915
|
input: DeleteLabelInput;
|
|
82351
82916
|
};
|
|
82917
|
+
export declare type MutationDeleteNoteArgs = {
|
|
82918
|
+
input: DeleteNoteInput;
|
|
82919
|
+
};
|
|
82352
82920
|
export declare type MutationDeletePagesArgs = {
|
|
82353
82921
|
input: Array<InputMaybe<DeletePagesInput>>;
|
|
82354
82922
|
};
|
|
@@ -82545,6 +83113,10 @@ export declare type MutationJira_ReorderBoardViewColumnArgs = {
|
|
|
82545
83113
|
export declare type MutationJira_ReorderProjectsSidebarMenuItemArgs = {
|
|
82546
83114
|
input: JiraReorderSidebarMenuItemInput;
|
|
82547
83115
|
};
|
|
83116
|
+
export declare type MutationJira_RestoreGlobalCustomFieldsArgs = {
|
|
83117
|
+
cloudId: Scalars['ID']['input'];
|
|
83118
|
+
input: JiraRestoreGlobalCustomFieldsInput;
|
|
83119
|
+
};
|
|
82548
83120
|
export declare type MutationJira_SetBoardIssueCardCoverArgs = {
|
|
82549
83121
|
input: JiraSetBoardIssueCardCoverInput;
|
|
82550
83122
|
};
|
|
@@ -83088,6 +83660,9 @@ export declare type MutationUpdateLocalStorageArgs = {
|
|
|
83088
83660
|
export declare type MutationUpdateNestedPageOwnersArgs = {
|
|
83089
83661
|
input: UpdatedNestedPageOwnersInput;
|
|
83090
83662
|
};
|
|
83663
|
+
export declare type MutationUpdateNoteArgs = {
|
|
83664
|
+
input: UpdateNoteInput;
|
|
83665
|
+
};
|
|
83091
83666
|
export declare type MutationUpdateOwnerArgs = {
|
|
83092
83667
|
input: UpdateOwnerInput;
|
|
83093
83668
|
};
|
|
@@ -83313,10 +83888,14 @@ export declare type MyVisitedSpacesInfo = {
|
|
|
83313
83888
|
export declare type MyVisitedSpacesItems = {
|
|
83314
83889
|
__typename?: 'MyVisitedSpacesItems';
|
|
83315
83890
|
spaces?: Maybe<Array<Maybe<Space>>>;
|
|
83891
|
+
spacesWithCloudId?: Maybe<Array<Maybe<Space>>>;
|
|
83316
83892
|
};
|
|
83317
83893
|
export declare type MyVisitedSpacesItemsSpacesArgs = {
|
|
83318
83894
|
cloudId?: InputMaybe<Scalars['ID']['input']>;
|
|
83319
83895
|
};
|
|
83896
|
+
export declare type MyVisitedSpacesItemsSpacesWithCloudIdArgs = {
|
|
83897
|
+
cloudId?: InputMaybe<Scalars['ID']['input']>;
|
|
83898
|
+
};
|
|
83320
83899
|
export declare type NadelBatchObjectIdentifiedBy = {
|
|
83321
83900
|
resultId: Scalars['String']['input'];
|
|
83322
83901
|
sourceId: Scalars['String']['input'];
|
|
@@ -83469,6 +84048,60 @@ export declare type NlpSource = {
|
|
|
83469
84048
|
export declare type Node = {
|
|
83470
84049
|
id: Scalars['ID']['output'];
|
|
83471
84050
|
};
|
|
84051
|
+
export declare type NoteConnection = {
|
|
84052
|
+
__typename?: 'NoteConnection';
|
|
84053
|
+
edges?: Maybe<Array<Maybe<NoteEdge>>>;
|
|
84054
|
+
nodes?: Maybe<Array<Maybe<NoteResponse>>>;
|
|
84055
|
+
noteInfo: NoteInfo;
|
|
84056
|
+
};
|
|
84057
|
+
export declare type NoteEdge = {
|
|
84058
|
+
__typename?: 'NoteEdge';
|
|
84059
|
+
cursor: Scalars['String']['output'];
|
|
84060
|
+
node: NoteResponse;
|
|
84061
|
+
};
|
|
84062
|
+
export declare type NoteInfo = {
|
|
84063
|
+
__typename?: 'NoteInfo';
|
|
84064
|
+
endCursor?: Maybe<Scalars['String']['output']>;
|
|
84065
|
+
hasNextNode: Scalars['Boolean']['output'];
|
|
84066
|
+
hasPreviousNode: Scalars['Boolean']['output'];
|
|
84067
|
+
startCursor?: Maybe<Scalars['String']['output']>;
|
|
84068
|
+
};
|
|
84069
|
+
export declare type NoteMutationError = {
|
|
84070
|
+
__typename?: 'NoteMutationError';
|
|
84071
|
+
extensions?: Maybe<Array<Maybe<NoteMutationErrorExtension>>>;
|
|
84072
|
+
message?: Maybe<Scalars['String']['output']>;
|
|
84073
|
+
};
|
|
84074
|
+
export declare type NoteMutationErrorExtension = {
|
|
84075
|
+
__typename?: 'NoteMutationErrorExtension';
|
|
84076
|
+
errorType?: Maybe<Scalars['String']['output']>;
|
|
84077
|
+
statusCode?: Maybe<Scalars['Int']['output']>;
|
|
84078
|
+
};
|
|
84079
|
+
export declare type NoteResponse = {
|
|
84080
|
+
__typename?: 'NoteResponse';
|
|
84081
|
+
ari: Scalars['String']['output'];
|
|
84082
|
+
body?: Maybe<Scalars['String']['output']>;
|
|
84083
|
+
bodyExcerpt?: Maybe<Scalars['String']['output']>;
|
|
84084
|
+
collectionName: Scalars['String']['output'];
|
|
84085
|
+
createdAt?: Maybe<Scalars['DateTime']['output']>;
|
|
84086
|
+
extraProps?: Maybe<Array<Prop>>;
|
|
84087
|
+
isPinned: Scalars['Boolean']['output'];
|
|
84088
|
+
labels?: Maybe<Array<Scalars['String']['output']>>;
|
|
84089
|
+
productLink?: Maybe<Scalars['String']['output']>;
|
|
84090
|
+
thumbnailId?: Maybe<Scalars['String']['output']>;
|
|
84091
|
+
title?: Maybe<Scalars['String']['output']>;
|
|
84092
|
+
updatedAt?: Maybe<Scalars['DateTime']['output']>;
|
|
84093
|
+
};
|
|
84094
|
+
export declare type NotesByCreatorInput = {
|
|
84095
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
84096
|
+
before?: InputMaybe<Scalars['String']['input']>;
|
|
84097
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
84098
|
+
isAscending?: InputMaybe<Scalars['Boolean']['input']>;
|
|
84099
|
+
last?: InputMaybe<Scalars['Int']['input']>;
|
|
84100
|
+
orderBy?: InputMaybe<NotesByDateLastModifiedOrder>;
|
|
84101
|
+
};
|
|
84102
|
+
export declare enum NotesByDateLastModifiedOrder {
|
|
84103
|
+
DateLastModified = "DATE_LAST_MODIFIED"
|
|
84104
|
+
}
|
|
83472
84105
|
export declare enum NotificationAction {
|
|
83473
84106
|
DontNotify = "DONT_NOTIFY",
|
|
83474
84107
|
Notify = "NOTIFY"
|
|
@@ -83715,6 +84348,14 @@ export declare type OpsgenieTeamMemberEdge = {
|
|
|
83715
84348
|
cursor: Scalars['String']['output'];
|
|
83716
84349
|
node?: Maybe<OpsgenieTeamMember>;
|
|
83717
84350
|
};
|
|
84351
|
+
export declare type OrgPolicyPolicyDetails = Node & {
|
|
84352
|
+
__typename?: 'OrgPolicyPolicyDetails';
|
|
84353
|
+
id: Scalars['ID']['output'];
|
|
84354
|
+
metadata?: Maybe<Scalars['JSON']['output']>;
|
|
84355
|
+
name: Scalars['String']['output'];
|
|
84356
|
+
rule?: Maybe<Scalars['JSON']['output']>;
|
|
84357
|
+
status: Scalars['String']['output'];
|
|
84358
|
+
};
|
|
83718
84359
|
export declare type Organization = {
|
|
83719
84360
|
__typename?: 'Organization';
|
|
83720
84361
|
orgId?: Maybe<Scalars['String']['output']>;
|
|
@@ -85579,6 +86220,15 @@ export declare type ProjectAvatars = {
|
|
|
85579
86220
|
x32: Scalars['URL']['output'];
|
|
85580
86221
|
x48: Scalars['URL']['output'];
|
|
85581
86222
|
};
|
|
86223
|
+
export declare type Prop = {
|
|
86224
|
+
__typename?: 'Prop';
|
|
86225
|
+
key: Scalars['String']['output'];
|
|
86226
|
+
value: Scalars['String']['output'];
|
|
86227
|
+
};
|
|
86228
|
+
export declare type PropInput = {
|
|
86229
|
+
key: Scalars['String']['input'];
|
|
86230
|
+
value: Scalars['String']['input'];
|
|
86231
|
+
};
|
|
85582
86232
|
export declare type Properties = {
|
|
85583
86233
|
__typename?: 'Properties';
|
|
85584
86234
|
formStatus: FormStatus;
|
|
@@ -85888,6 +86538,7 @@ export declare type Query = {
|
|
|
85888
86538
|
agentStudio_getAgents?: Maybe<AgentStudioAgentsConnection>;
|
|
85889
86539
|
agentStudio_suggestConversationStarters?: Maybe<AgentStudioSuggestConversationStartersResult>;
|
|
85890
86540
|
aiCoreApi_vsaQuestionsByProject?: Maybe<AiCoreApiVsaQuestionsResult>;
|
|
86541
|
+
aiCoreApi_vsaQuestionsByProjectAndType?: Maybe<AiCoreApiVsaQuestionsWithTypeResult>;
|
|
85891
86542
|
aiCoreApi_vsaReportingByProject?: Maybe<AiCoreApiVsaReportingResult>;
|
|
85892
86543
|
allIndividualSpaces?: Maybe<SpaceInfoConnection>;
|
|
85893
86544
|
allTemplates?: Maybe<PaginatedTemplateInfoList>;
|
|
@@ -85908,6 +86559,7 @@ export declare type Query = {
|
|
|
85908
86559
|
appLogLines?: Maybe<AppLogLineConnection>;
|
|
85909
86560
|
appLogs?: Maybe<AppLogConnection>;
|
|
85910
86561
|
appLogsWithMetaData?: Maybe<AppLogsWithMetaDataResponse>;
|
|
86562
|
+
appStorage_admin?: Maybe<AppStorageAdmin>;
|
|
85911
86563
|
appStorage_sqlDatabase?: Maybe<AppStorageSqlDatabasePayload>;
|
|
85912
86564
|
appStorage_sqlTableData?: Maybe<AppStorageSqlTableDataPayload>;
|
|
85913
86565
|
appStoredCustomEntities?: Maybe<AppStoredCustomEntityConnection>;
|
|
@@ -86175,6 +86827,7 @@ export declare type Query = {
|
|
|
86175
86827
|
confluence_template?: Maybe<ContentTemplate>;
|
|
86176
86828
|
confluence_tenantContext?: Maybe<ConfluenceTenantContext>;
|
|
86177
86829
|
confluence_userContentAccess?: Maybe<ConfluenceUserContentAccessResult>;
|
|
86830
|
+
confluence_usersHavePermission?: Maybe<ConfluenceUsersHavePermissionList>;
|
|
86178
86831
|
confluence_validateCalendarJql?: Maybe<ConfluenceCalendarJqlValidationResult>;
|
|
86179
86832
|
connectionManager_connectionsByJiraProject?: Maybe<ConnectionManagerConnectionsByJiraProjectResult>;
|
|
86180
86833
|
contactAdminPageConfig?: Maybe<ContactAdminPageConfig>;
|
|
@@ -86418,12 +87071,15 @@ export declare type Query = {
|
|
|
86418
87071
|
myVisitedSpaces?: Maybe<MyVisitedSpaces>;
|
|
86419
87072
|
nlpSearch?: Maybe<NlpSearchResponse>;
|
|
86420
87073
|
node?: Maybe<Node>;
|
|
87074
|
+
notesByCreator?: Maybe<NoteConnection>;
|
|
86421
87075
|
notifications?: Maybe<InfluentsNotificationQuery>;
|
|
86422
87076
|
oauthClients?: Maybe<OAuthClientsQuery>;
|
|
86423
87077
|
onboardingState?: Maybe<Array<OnboardingState>>;
|
|
86424
87078
|
opsgenie?: Maybe<OpsgenieQuery>;
|
|
86425
87079
|
opsgenieTeamRelationshipForDevOpsService?: Maybe<DevOpsServiceAndOpsgenieTeamRelationship>;
|
|
86426
87080
|
orgDefaultClassificationLevelId?: Maybe<Scalars['ID']['output']>;
|
|
87081
|
+
orgPolicy_policiesDetails?: Maybe<Array<Maybe<OrgPolicyPolicyDetails>>>;
|
|
87082
|
+
orgPolicy_policyDetails?: Maybe<OrgPolicyPolicyDetails>;
|
|
86427
87083
|
organization?: Maybe<Organization>;
|
|
86428
87084
|
organizationContext?: Maybe<OrganizationContext>;
|
|
86429
87085
|
page?: Maybe<Page>;
|
|
@@ -86476,6 +87132,7 @@ export declare type Query = {
|
|
|
86476
87132
|
publicLinksByCriteria?: Maybe<PublicLinkConnection>;
|
|
86477
87133
|
publishConditions?: Maybe<Array<Maybe<PublishConditions>>>;
|
|
86478
87134
|
pushNotificationSettings?: Maybe<ConfluencePushNotificationSettings>;
|
|
87135
|
+
queuesprioritygroups_priorityGroups?: Maybe<QueuesPriorityGroupsResults>;
|
|
86479
87136
|
quickReload?: Maybe<QuickReload>;
|
|
86480
87137
|
radar_connectors?: Maybe<Array<RadarConnector>>;
|
|
86481
87138
|
radar_fieldValues?: Maybe<RadarFieldValuesConnection>;
|
|
@@ -86638,6 +87295,11 @@ export declare type QueryAgentStudio_SuggestConversationStartersArgs = {
|
|
|
86638
87295
|
export declare type QueryAiCoreApi_VsaQuestionsByProjectArgs = {
|
|
86639
87296
|
projectAri: Scalars['ID']['input'];
|
|
86640
87297
|
};
|
|
87298
|
+
export declare type QueryAiCoreApi_VsaQuestionsByProjectAndTypeArgs = {
|
|
87299
|
+
limit?: InputMaybe<Scalars['Int']['input']>;
|
|
87300
|
+
projectAri: Scalars['ID']['input'];
|
|
87301
|
+
types?: InputMaybe<Array<InputMaybe<AiCoreApiQuestionType>>>;
|
|
87302
|
+
};
|
|
86641
87303
|
export declare type QueryAiCoreApi_VsaReportingByProjectArgs = {
|
|
86642
87304
|
projectAri: Scalars['ID']['input'];
|
|
86643
87305
|
};
|
|
@@ -86730,6 +87392,9 @@ export declare type QueryAppLogsWithMetaDataArgs = {
|
|
|
86730
87392
|
query?: InputMaybe<LogQueryInput>;
|
|
86731
87393
|
queryStartTime: Scalars['String']['input'];
|
|
86732
87394
|
};
|
|
87395
|
+
export declare type QueryAppStorage_AdminArgs = {
|
|
87396
|
+
appId: Scalars['ID']['input'];
|
|
87397
|
+
};
|
|
86733
87398
|
export declare type QueryAppStorage_SqlDatabaseArgs = {
|
|
86734
87399
|
input: AppStorageSqlDatabaseInput;
|
|
86735
87400
|
};
|
|
@@ -87896,6 +88561,13 @@ export declare type QueryConfluence_UserContentAccessArgs = {
|
|
|
87896
88561
|
cloudId: Scalars['ID']['input'];
|
|
87897
88562
|
contentId: Scalars['ID']['input'];
|
|
87898
88563
|
};
|
|
88564
|
+
export declare type QueryConfluence_UsersHavePermissionArgs = {
|
|
88565
|
+
cloudId: Scalars['ID']['input'];
|
|
88566
|
+
permission: Scalars['String']['input'];
|
|
88567
|
+
principalIds: Array<InputMaybe<Scalars['String']['input']>>;
|
|
88568
|
+
resourceId: Scalars['ID']['input'];
|
|
88569
|
+
resourceType: Scalars['String']['input'];
|
|
88570
|
+
};
|
|
87899
88571
|
export declare type QueryConfluence_ValidateCalendarJqlArgs = {
|
|
87900
88572
|
applicationId: Scalars['ID']['input'];
|
|
87901
88573
|
cloudId: Scalars['ID']['input'];
|
|
@@ -88118,6 +88790,9 @@ export declare type QueryCustomerStoryArgs = {
|
|
|
88118
88790
|
locale?: InputMaybe<Scalars['String']['input']>;
|
|
88119
88791
|
publishedOnly?: InputMaybe<Scalars['Boolean']['input']>;
|
|
88120
88792
|
};
|
|
88793
|
+
export declare type QueryDataSecurityPolicyArgs = {
|
|
88794
|
+
cloudId?: InputMaybe<Scalars['ID']['input']>;
|
|
88795
|
+
};
|
|
88121
88796
|
export declare type QueryDeactivatedOwnerPagesArgs = {
|
|
88122
88797
|
cursor?: InputMaybe<Scalars['String']['input']>;
|
|
88123
88798
|
limit?: InputMaybe<Scalars['Int']['input']>;
|
|
@@ -88770,12 +89445,21 @@ export declare type QueryNlpSearchArgs = {
|
|
|
88770
89445
|
export declare type QueryNodeArgs = {
|
|
88771
89446
|
id: Scalars['ID']['input'];
|
|
88772
89447
|
};
|
|
89448
|
+
export declare type QueryNotesByCreatorArgs = {
|
|
89449
|
+
input?: InputMaybe<NotesByCreatorInput>;
|
|
89450
|
+
};
|
|
88773
89451
|
export declare type QueryOnboardingStateArgs = {
|
|
88774
89452
|
key?: InputMaybe<Array<InputMaybe<Scalars['String']['input']>>>;
|
|
88775
89453
|
};
|
|
88776
89454
|
export declare type QueryOpsgenieTeamRelationshipForDevOpsServiceArgs = {
|
|
88777
89455
|
id: Scalars['ID']['input'];
|
|
88778
89456
|
};
|
|
89457
|
+
export declare type QueryOrgPolicy_PoliciesDetailsArgs = {
|
|
89458
|
+
ids: Array<InputMaybe<Scalars['ID']['input']>>;
|
|
89459
|
+
};
|
|
89460
|
+
export declare type QueryOrgPolicy_PolicyDetailsArgs = {
|
|
89461
|
+
id: Scalars['ID']['input'];
|
|
89462
|
+
};
|
|
88779
89463
|
export declare type QueryPageArgs = {
|
|
88780
89464
|
enablePaging?: InputMaybe<Scalars['Boolean']['input']>;
|
|
88781
89465
|
id: Scalars['ID']['input'];
|
|
@@ -88969,6 +89653,9 @@ export declare type QueryPublicLinksByCriteriaArgs = {
|
|
|
88969
89653
|
export declare type QueryPublishConditionsArgs = {
|
|
88970
89654
|
contentId: Scalars['ID']['input'];
|
|
88971
89655
|
};
|
|
89656
|
+
export declare type QueryQueuesprioritygroups_PriorityGroupsArgs = {
|
|
89657
|
+
projectId: Scalars['ID']['input'];
|
|
89658
|
+
};
|
|
88972
89659
|
export declare type QueryQuickReloadArgs = {
|
|
88973
89660
|
pageId: Scalars['Long']['input'];
|
|
88974
89661
|
since: Scalars['Long']['input'];
|
|
@@ -89502,6 +90189,20 @@ export declare enum QueryType {
|
|
|
89502
90189
|
Select = "SELECT",
|
|
89503
90190
|
Update = "UPDATE"
|
|
89504
90191
|
}
|
|
90192
|
+
export declare type QueuesPriorityGroupsResults = {
|
|
90193
|
+
__typename?: 'QueuesPriorityGroupsResults';
|
|
90194
|
+
results?: Maybe<Array<Maybe<QueuesPriorityGroupsResultsGroup>>>;
|
|
90195
|
+
};
|
|
90196
|
+
export declare type QueuesPriorityGroupsResultsGroup = {
|
|
90197
|
+
__typename?: 'QueuesPriorityGroupsResultsGroup';
|
|
90198
|
+
category?: Maybe<Scalars['String']['output']>;
|
|
90199
|
+
creationMethod?: Maybe<Scalars['String']['output']>;
|
|
90200
|
+
id?: Maybe<Scalars['String']['output']>;
|
|
90201
|
+
name?: Maybe<Scalars['String']['output']>;
|
|
90202
|
+
projectId?: Maybe<Scalars['String']['output']>;
|
|
90203
|
+
queueIds?: Maybe<Array<Maybe<Scalars['Int']['output']>>>;
|
|
90204
|
+
version?: Maybe<Scalars['Int']['output']>;
|
|
90205
|
+
};
|
|
89505
90206
|
export declare type QuickReload = {
|
|
89506
90207
|
__typename?: 'QuickReload';
|
|
89507
90208
|
comments: Array<QuickReloadComment>;
|
|
@@ -89561,6 +90262,7 @@ export declare type RadarCustomFieldDefinition = RadarFieldDefinition & {
|
|
|
89561
90262
|
isHidden?: Maybe<Scalars['Boolean']['output']>;
|
|
89562
90263
|
relativeId: Scalars['String']['output'];
|
|
89563
90264
|
sensitivityLevel: RadarSensitivityLevel;
|
|
90265
|
+
sourceField: Scalars['String']['output'];
|
|
89564
90266
|
syncStatus: RadarCustomFieldSyncStatus;
|
|
89565
90267
|
type: RadarFieldType;
|
|
89566
90268
|
};
|
|
@@ -91721,6 +92423,7 @@ export declare type SearchConfluencePageBlogAttachment = SearchL2FeatureProvider
|
|
|
91721
92423
|
__typename?: 'SearchConfluencePageBlogAttachment';
|
|
91722
92424
|
bodyText?: Maybe<Scalars['String']['output']>;
|
|
91723
92425
|
confluenceEntity?: Maybe<SearchConfluenceEntity>;
|
|
92426
|
+
content?: Maybe<Array<Maybe<Content>>>;
|
|
91724
92427
|
createdDate?: Maybe<Scalars['DateTime']['output']>;
|
|
91725
92428
|
description: Scalars['String']['output'];
|
|
91726
92429
|
entityId?: Maybe<Scalars['String']['output']>;
|
|
@@ -91853,6 +92556,7 @@ export declare type SearchFilterInput = {
|
|
|
91853
92556
|
locations: Array<Scalars['String']['input']>;
|
|
91854
92557
|
mercuryFilters?: InputMaybe<SearchMercuryFilter>;
|
|
91855
92558
|
thirdPartyFilters?: InputMaybe<SearchThirdPartyFilter>;
|
|
92559
|
+
trelloFilters?: InputMaybe<SearchTrelloFilter>;
|
|
91856
92560
|
};
|
|
91857
92561
|
export declare type SearchInterleaverScrapingResult = {
|
|
91858
92562
|
__typename?: 'SearchInterleaverScrapingResult';
|
|
@@ -92419,6 +93123,9 @@ export declare type SearchTimeseriesCount = {
|
|
|
92419
93123
|
__typename?: 'SearchTimeseriesCount';
|
|
92420
93124
|
nodes: Array<TimeseriesCountItem>;
|
|
92421
93125
|
};
|
|
93126
|
+
export declare type SearchTrelloFilter = {
|
|
93127
|
+
isRecentBias?: InputMaybe<Scalars['Boolean']['input']>;
|
|
93128
|
+
};
|
|
92422
93129
|
export declare type SearchesByTerm = {
|
|
92423
93130
|
__typename?: 'SearchesByTerm';
|
|
92424
93131
|
nodes: Array<SearchesByTermItems>;
|
|
@@ -93709,6 +94416,7 @@ export declare type ShepherdQuery = {
|
|
|
93709
94416
|
shepherdAppInfo: ShepherdAppInfo;
|
|
93710
94417
|
subscriptions?: Maybe<ShepherdSubscriptionsResult>;
|
|
93711
94418
|
workspace?: Maybe<ShepherdWorkspaceResult>;
|
|
94419
|
+
workspaceByOrgId?: Maybe<ShepherdWorkspaceByOrgId>;
|
|
93712
94420
|
workspacesByUserContext?: Maybe<ShepherdWorkspaceResult>;
|
|
93713
94421
|
};
|
|
93714
94422
|
export declare type ShepherdQueryShepherdActivityArgs = {
|
|
@@ -93741,6 +94449,9 @@ export declare type ShepherdQueryWorkspaceArgs = {
|
|
|
93741
94449
|
id?: InputMaybe<Scalars['ID']['input']>;
|
|
93742
94450
|
orgId?: InputMaybe<Scalars['ID']['input']>;
|
|
93743
94451
|
};
|
|
94452
|
+
export declare type ShepherdQueryWorkspaceByOrgIdArgs = {
|
|
94453
|
+
orgId: Scalars['ID']['input'];
|
|
94454
|
+
};
|
|
93744
94455
|
export declare enum ShepherdQueryErrorType {
|
|
93745
94456
|
BadRequest = "BAD_REQUEST",
|
|
93746
94457
|
InternalServerError = "INTERNAL_SERVER_ERROR",
|
|
@@ -94120,6 +94831,10 @@ export declare type ShepherdWorkspaceDetectionsArgs = {
|
|
|
94120
94831
|
detectionId?: InputMaybe<Scalars['ID']['input']>;
|
|
94121
94832
|
settingId?: InputMaybe<Scalars['ID']['input']>;
|
|
94122
94833
|
};
|
|
94834
|
+
export declare type ShepherdWorkspaceByOrgId = {
|
|
94835
|
+
__typename?: 'ShepherdWorkspaceByOrgId';
|
|
94836
|
+
ari?: Maybe<Scalars['ID']['output']>;
|
|
94837
|
+
};
|
|
94123
94838
|
export declare type ShepherdWorkspaceConnection = {
|
|
94124
94839
|
__typename?: 'ShepherdWorkspaceConnection';
|
|
94125
94840
|
edges?: Maybe<Array<Maybe<ShepherdWorkspaceEdge>>>;
|
|
@@ -94967,12 +95682,14 @@ export declare type SpaceOrContent = {
|
|
|
94967
95682
|
__typename?: 'SpaceOrContent';
|
|
94968
95683
|
alias?: Maybe<Scalars['String']['output']>;
|
|
94969
95684
|
ancestors?: Maybe<Array<Maybe<Content>>>;
|
|
95685
|
+
ari?: Maybe<Scalars['ID']['output']>;
|
|
94970
95686
|
body?: Maybe<ContentBodyPerRepresentation>;
|
|
94971
95687
|
childTypes?: Maybe<ChildContentTypesAvailable>;
|
|
94972
95688
|
container?: Maybe<SpaceOrContent>;
|
|
94973
95689
|
creatorAccountId?: Maybe<Scalars['String']['output']>;
|
|
94974
95690
|
dataClassificationTags: Array<Maybe<Scalars['String']['output']>>;
|
|
94975
95691
|
description?: Maybe<SpaceDescriptions>;
|
|
95692
|
+
draftVersion?: Maybe<Version>;
|
|
94976
95693
|
extensions?: Maybe<Array<Maybe<KeyValueHierarchyMap>>>;
|
|
94977
95694
|
history?: Maybe<History>;
|
|
94978
95695
|
homepage?: Maybe<Content>;
|
|
@@ -95119,6 +95836,8 @@ export declare type SpacePermissionsSubjectsWithPermissionsArgs = {
|
|
|
95119
95836
|
};
|
|
95120
95837
|
export declare type SpaceRole = {
|
|
95121
95838
|
__typename?: 'SpaceRole';
|
|
95839
|
+
inUseByDefaultSpaceRoleAssignments?: Maybe<Scalars['Boolean']['output']>;
|
|
95840
|
+
inUseByPrincipals?: Maybe<Scalars['Boolean']['output']>;
|
|
95122
95841
|
roleDescription: Scalars['String']['output'];
|
|
95123
95842
|
roleDisplayName: Scalars['String']['output'];
|
|
95124
95843
|
roleId: Scalars['ID']['output'];
|
|
@@ -96256,6 +96975,10 @@ export declare type TargetLocation = {
|
|
|
96256
96975
|
links?: Maybe<LinksContextBase>;
|
|
96257
96976
|
parentId?: Maybe<Scalars['ID']['output']>;
|
|
96258
96977
|
};
|
|
96978
|
+
export declare enum TargetTransition {
|
|
96979
|
+
Done = "DONE",
|
|
96980
|
+
Undone = "UNDONE"
|
|
96981
|
+
}
|
|
96259
96982
|
export declare enum TaskStatus {
|
|
96260
96983
|
Checked = "CHECKED",
|
|
96261
96984
|
Unchecked = "UNCHECKED"
|
|
@@ -98650,6 +99373,49 @@ export declare type TrelloCardBadges = {
|
|
|
98650
99373
|
viewer?: Maybe<TrelloCardViewer>;
|
|
98651
99374
|
votes?: Maybe<Scalars['Int']['output']>;
|
|
98652
99375
|
};
|
|
99376
|
+
export declare type TrelloCardBatch = {
|
|
99377
|
+
__typename?: 'TrelloCardBatch';
|
|
99378
|
+
objectId: Scalars['ID']['output'];
|
|
99379
|
+
processed?: Maybe<Scalars['Int']['output']>;
|
|
99380
|
+
status?: Maybe<TrelloCardBatchStatus>;
|
|
99381
|
+
total?: Maybe<Scalars['Int']['output']>;
|
|
99382
|
+
};
|
|
99383
|
+
export declare type TrelloCardBatchJobPayload = Payload & {
|
|
99384
|
+
__typename?: 'TrelloCardBatchJobPayload';
|
|
99385
|
+
errors?: Maybe<Array<MutationError>>;
|
|
99386
|
+
job?: Maybe<TrelloCardBatch>;
|
|
99387
|
+
success: Scalars['Boolean']['output'];
|
|
99388
|
+
};
|
|
99389
|
+
export declare type TrelloCardBatchScript = {
|
|
99390
|
+
commands?: InputMaybe<Array<TrelloCardCommand>>;
|
|
99391
|
+
};
|
|
99392
|
+
export declare type TrelloCardBatchSelection = {
|
|
99393
|
+
clauses?: InputMaybe<Array<TrelloCardClause>>;
|
|
99394
|
+
};
|
|
99395
|
+
export declare type TrelloCardBatchSpecificationInput = {
|
|
99396
|
+
boardId: Scalars['ID']['input'];
|
|
99397
|
+
script?: InputMaybe<TrelloCardBatchScript>;
|
|
99398
|
+
selection?: InputMaybe<TrelloCardBatchSelection>;
|
|
99399
|
+
};
|
|
99400
|
+
export declare enum TrelloCardBatchStatus {
|
|
99401
|
+
Completed = "COMPLETED",
|
|
99402
|
+
Executing = "EXECUTING",
|
|
99403
|
+
Failed = "FAILED",
|
|
99404
|
+
Pending = "PENDING"
|
|
99405
|
+
}
|
|
99406
|
+
export declare type TrelloCardClause = {
|
|
99407
|
+
closed?: InputMaybe<TrelloCardClosedClause>;
|
|
99408
|
+
list?: InputMaybe<TrelloCardListClause>;
|
|
99409
|
+
};
|
|
99410
|
+
export declare type TrelloCardCloseCommand = {
|
|
99411
|
+
close: Scalars['Boolean']['input'];
|
|
99412
|
+
};
|
|
99413
|
+
export declare type TrelloCardClosedClause = {
|
|
99414
|
+
closed: Scalars['Boolean']['input'];
|
|
99415
|
+
};
|
|
99416
|
+
export declare type TrelloCardCommand = {
|
|
99417
|
+
close?: InputMaybe<TrelloCardCloseCommand>;
|
|
99418
|
+
};
|
|
98653
99419
|
export declare type TrelloCardConnection = {
|
|
98654
99420
|
__typename?: 'TrelloCardConnection';
|
|
98655
99421
|
edges?: Maybe<Array<TrelloCardEdge>>;
|
|
@@ -98754,6 +99520,9 @@ export declare type TrelloCardLimits = {
|
|
|
98754
99520
|
checklists?: Maybe<TrelloCardLimit>;
|
|
98755
99521
|
stickers?: Maybe<TrelloCardLimit>;
|
|
98756
99522
|
};
|
|
99523
|
+
export declare type TrelloCardListClause = {
|
|
99524
|
+
listId: Scalars['ID']['input'];
|
|
99525
|
+
};
|
|
98757
99526
|
export declare type TrelloCardLocation = {
|
|
98758
99527
|
__typename?: 'TrelloCardLocation';
|
|
98759
99528
|
address?: Maybe<Scalars['String']['output']>;
|
|
@@ -99392,6 +100161,7 @@ export declare type TrelloMemberNonPublicData = {
|
|
|
99392
100161
|
export declare type TrelloMemberPrefs = {
|
|
99393
100162
|
__typename?: 'TrelloMemberPrefs';
|
|
99394
100163
|
colorBlind?: Maybe<Scalars['Boolean']['output']>;
|
|
100164
|
+
keyboardShortcutsEnabled?: Maybe<Scalars['Boolean']['output']>;
|
|
99395
100165
|
};
|
|
99396
100166
|
export declare type TrelloMemberUpdated = {
|
|
99397
100167
|
__typename?: 'TrelloMemberUpdated';
|
|
@@ -99515,6 +100285,7 @@ export declare type TrelloMutationApi = {
|
|
|
99515
100285
|
removeCardFromPlannerCalendarEvent?: Maybe<TrelloRemoveCardFromPlannerCalendarEventPayload>;
|
|
99516
100286
|
removeMemberFromCard?: Maybe<TrelloRemoveMemberFromCardPayload>;
|
|
99517
100287
|
removeMemberFromWorkspace?: Maybe<TrelloRemoveMemberFromWorkspacePayload>;
|
|
100288
|
+
submitCardBatchToBoard?: Maybe<TrelloCardBatchJobPayload>;
|
|
99518
100289
|
unarchiveCard?: Maybe<TrelloUnarchiveCardPayload>;
|
|
99519
100290
|
unwatchCard?: Maybe<TrelloWatchCardPayload>;
|
|
99520
100291
|
updateBoardIsTemplate?: Maybe<TrelloUpdateBoardIsTemplatePayload>;
|
|
@@ -99524,6 +100295,7 @@ export declare type TrelloMutationApi = {
|
|
|
99524
100295
|
updateBoardViewerAISlack?: Maybe<TrelloUpdateBoardViewerAiSlackPayload>;
|
|
99525
100296
|
updateBoardViewerMirrorCard?: Maybe<TrelloUpdateBoardViewerShowCompactMirrorCardPayload>;
|
|
99526
100297
|
updateCardName?: Maybe<TrelloUpdateCardNamePayload>;
|
|
100298
|
+
updateKeyboardShortcutsPref?: Maybe<TrelloUpdateKeyboardShortcutsPrefPayload>;
|
|
99527
100299
|
watchCard?: Maybe<TrelloWatchCardPayload>;
|
|
99528
100300
|
};
|
|
99529
100301
|
export declare type TrelloMutationApiAddMemberToCardArgs = {
|
|
@@ -99562,6 +100334,9 @@ export declare type TrelloMutationApiRemoveMemberFromCardArgs = {
|
|
|
99562
100334
|
export declare type TrelloMutationApiRemoveMemberFromWorkspaceArgs = {
|
|
99563
100335
|
input: TrelloRemoveMemberFromWorkspaceInput;
|
|
99564
100336
|
};
|
|
100337
|
+
export declare type TrelloMutationApiSubmitCardBatchToBoardArgs = {
|
|
100338
|
+
input: TrelloCardBatchSpecificationInput;
|
|
100339
|
+
};
|
|
99565
100340
|
export declare type TrelloMutationApiUnarchiveCardArgs = {
|
|
99566
100341
|
input: TrelloUnarchiveCardInput;
|
|
99567
100342
|
};
|
|
@@ -99589,6 +100364,9 @@ export declare type TrelloMutationApiUpdateBoardViewerMirrorCardArgs = {
|
|
|
99589
100364
|
export declare type TrelloMutationApiUpdateCardNameArgs = {
|
|
99590
100365
|
input: TrelloUpdateCardNameInput;
|
|
99591
100366
|
};
|
|
100367
|
+
export declare type TrelloMutationApiUpdateKeyboardShortcutsPrefArgs = {
|
|
100368
|
+
input: TrelloUpdateKeyboardShortcutsPrefInput;
|
|
100369
|
+
};
|
|
99592
100370
|
export declare type TrelloMutationApiWatchCardArgs = {
|
|
99593
100371
|
input: TrelloWatchCardInput;
|
|
99594
100372
|
};
|
|
@@ -100025,6 +100803,7 @@ export declare type TrelloQueryApi = {
|
|
|
100025
100803
|
boardByShortLink?: Maybe<TrelloBoard>;
|
|
100026
100804
|
boardMirrorCardInfo?: Maybe<TrelloBoardMirrorCards>;
|
|
100027
100805
|
card?: Maybe<TrelloCard>;
|
|
100806
|
+
cardBatch?: Maybe<TrelloCardBatch>;
|
|
100028
100807
|
echo?: Maybe<Scalars['String']['output']>;
|
|
100029
100808
|
echos?: Maybe<Array<Maybe<Scalars['String']['output']>>>;
|
|
100030
100809
|
enabledPlannerCalendarsByAccountId?: Maybe<TrelloPlannerCalendarConnection>;
|
|
@@ -100065,6 +100844,9 @@ export declare type TrelloQueryApiBoardMirrorCardInfoArgs = {
|
|
|
100065
100844
|
export declare type TrelloQueryApiCardArgs = {
|
|
100066
100845
|
id: Scalars['ID']['input'];
|
|
100067
100846
|
};
|
|
100847
|
+
export declare type TrelloQueryApiCardBatchArgs = {
|
|
100848
|
+
id: Scalars['ID']['input'];
|
|
100849
|
+
};
|
|
100068
100850
|
export declare type TrelloQueryApiEchosArgs = {
|
|
100069
100851
|
echo: Array<Scalars['String']['input']>;
|
|
100070
100852
|
};
|
|
@@ -100480,6 +101262,15 @@ export declare type TrelloUpdateCardNamePayload = Payload & {
|
|
|
100480
101262
|
errors?: Maybe<Array<MutationError>>;
|
|
100481
101263
|
success: Scalars['Boolean']['output'];
|
|
100482
101264
|
};
|
|
101265
|
+
export declare type TrelloUpdateKeyboardShortcutsPrefInput = {
|
|
101266
|
+
userId: Scalars['ID']['input'];
|
|
101267
|
+
value: Scalars['Boolean']['input'];
|
|
101268
|
+
};
|
|
101269
|
+
export declare type TrelloUpdateKeyboardShortcutsPrefPayload = Payload & {
|
|
101270
|
+
__typename?: 'TrelloUpdateKeyboardShortcutsPrefPayload';
|
|
101271
|
+
errors?: Maybe<Array<MutationError>>;
|
|
101272
|
+
success: Scalars['Boolean']['output'];
|
|
101273
|
+
};
|
|
100483
101274
|
export declare type TrelloUploadedBackground = {
|
|
100484
101275
|
__typename?: 'TrelloUploadedBackground';
|
|
100485
101276
|
objectId: Scalars['ID']['output'];
|
|
@@ -100640,6 +101431,7 @@ export declare type UnifiedAccount = UnifiedINode & {
|
|
|
100640
101431
|
isLinked: Scalars['Boolean']['output'];
|
|
100641
101432
|
isManaged: Scalars['Boolean']['output'];
|
|
100642
101433
|
isPrimary: Scalars['Boolean']['output'];
|
|
101434
|
+
isProfileOwnerConsented: Scalars['Boolean']['output'];
|
|
100643
101435
|
khorosUserId: Scalars['Int']['output'];
|
|
100644
101436
|
linkedAccounts?: Maybe<UnifiedULinkedAccountResult>;
|
|
100645
101437
|
nickname: Scalars['String']['output'];
|
|
@@ -101247,6 +102039,7 @@ export declare type UnifiedProfile = UnifiedINode & {
|
|
|
101247
102039
|
isPersonalView?: Maybe<Scalars['Boolean']['output']>;
|
|
101248
102040
|
isPrivate: Scalars['Boolean']['output'];
|
|
101249
102041
|
isProfileBanned?: Maybe<Scalars['Boolean']['output']>;
|
|
102042
|
+
isProfileOwnerConsented?: Maybe<Scalars['Boolean']['output']>;
|
|
101250
102043
|
learning?: Maybe<UnifiedULearningResult>;
|
|
101251
102044
|
linkedinUrl?: Maybe<Scalars['String']['output']>;
|
|
101252
102045
|
location?: Maybe<Scalars['String']['output']>;
|
|
@@ -101673,6 +102466,7 @@ export declare type UpdateCompassScorecardCriteriaInput = {
|
|
|
101673
102466
|
hasLink?: InputMaybe<UpdateCompassHasLinkScorecardCriteriaInput>;
|
|
101674
102467
|
hasMetricValue?: InputMaybe<UpdateCompassHasMetricValueCriteriaInput>;
|
|
101675
102468
|
hasOwner?: InputMaybe<UpdateCompassHasOwnerScorecardCriteriaInput>;
|
|
102469
|
+
hasPackageDependency?: InputMaybe<CompassUpdateHasPackageDependencyScorecardCriteriaInput>;
|
|
101676
102470
|
};
|
|
101677
102471
|
export declare type UpdateCompassScorecardInput = {
|
|
101678
102472
|
componentCreationTimeFilter?: InputMaybe<CompassComponentCreationTimeFilterInput>;
|
|
@@ -101948,6 +102742,14 @@ export declare type UpdateJiraPlaybookStepInput = {
|
|
|
101948
102742
|
stepId?: InputMaybe<Scalars['ID']['input']>;
|
|
101949
102743
|
type: JiraPlaybookStepType;
|
|
101950
102744
|
};
|
|
102745
|
+
export declare type UpdateMetadataInput = {
|
|
102746
|
+
ari: Scalars['String']['input'];
|
|
102747
|
+
extraProps?: InputMaybe<Array<PropInput>>;
|
|
102748
|
+
isPinned?: InputMaybe<Scalars['Boolean']['input']>;
|
|
102749
|
+
labels?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
102750
|
+
productLink?: InputMaybe<Scalars['String']['input']>;
|
|
102751
|
+
thumbnailId?: InputMaybe<Scalars['String']['input']>;
|
|
102752
|
+
};
|
|
101951
102753
|
export declare type UpdateNestedPageOwnersPayload = Payload & {
|
|
101952
102754
|
__typename?: 'UpdateNestedPageOwnersPayload';
|
|
101953
102755
|
errors?: Maybe<Array<MutationError>>;
|
|
@@ -101955,6 +102757,17 @@ export declare type UpdateNestedPageOwnersPayload = Payload & {
|
|
|
101955
102757
|
taskId: Scalars['ID']['output'];
|
|
101956
102758
|
warnings?: Maybe<Array<Maybe<ChangeOwnerWarning>>>;
|
|
101957
102759
|
};
|
|
102760
|
+
export declare type UpdateNoteInput = {
|
|
102761
|
+
body?: InputMaybe<Scalars['String']['input']>;
|
|
102762
|
+
metadata: UpdateMetadataInput;
|
|
102763
|
+
title?: InputMaybe<Scalars['String']['input']>;
|
|
102764
|
+
};
|
|
102765
|
+
export declare type UpdateNotePayload = {
|
|
102766
|
+
__typename?: 'UpdateNotePayload';
|
|
102767
|
+
errors?: Maybe<Array<NoteMutationError>>;
|
|
102768
|
+
note?: Maybe<NoteResponse>;
|
|
102769
|
+
success: Scalars['Boolean']['output'];
|
|
102770
|
+
};
|
|
101958
102771
|
export declare type UpdateOwnerInput = {
|
|
101959
102772
|
contentId: Scalars['ID']['input'];
|
|
101960
102773
|
ownerId: Scalars['String']['input'];
|
|
@@ -102583,6 +103396,26 @@ export declare type VirtualAgentAiAnswerStatusForChannel = {
|
|
|
102583
103396
|
isAiResponsesChannel?: Maybe<Scalars['Boolean']['output']>;
|
|
102584
103397
|
slackChannelId: Scalars['String']['output'];
|
|
102585
103398
|
};
|
|
103399
|
+
export declare type VirtualAgentAutoCloseConfig = {
|
|
103400
|
+
__typename?: 'VirtualAgentAutoCloseConfig';
|
|
103401
|
+
autoCloseMessage?: Maybe<Scalars['String']['output']>;
|
|
103402
|
+
};
|
|
103403
|
+
export declare type VirtualAgentAutoCloseConfigInput = {
|
|
103404
|
+
autoCloseMessage?: InputMaybe<Scalars['String']['input']>;
|
|
103405
|
+
};
|
|
103406
|
+
export declare type VirtualAgentCsatConfig = {
|
|
103407
|
+
__typename?: 'VirtualAgentCSATConfig';
|
|
103408
|
+
askForCSATMessage?: Maybe<Scalars['String']['output']>;
|
|
103409
|
+
noFeedbackProvidedMessage?: Maybe<Scalars['String']['output']>;
|
|
103410
|
+
requestAdditionalFeedbackMessage?: Maybe<Scalars['String']['output']>;
|
|
103411
|
+
thanksForFeedbackMessage?: Maybe<Scalars['String']['output']>;
|
|
103412
|
+
};
|
|
103413
|
+
export declare type VirtualAgentCsatConfigInput = {
|
|
103414
|
+
askForCSATMessage?: InputMaybe<Scalars['String']['input']>;
|
|
103415
|
+
noFeedbackProvidedMessage?: InputMaybe<Scalars['String']['input']>;
|
|
103416
|
+
requestAdditionalFeedbackMessage?: InputMaybe<Scalars['String']['input']>;
|
|
103417
|
+
thanksForFeedbackMessage?: InputMaybe<Scalars['String']['input']>;
|
|
103418
|
+
};
|
|
102586
103419
|
export declare type VirtualAgentChannelConfig = {
|
|
102587
103420
|
__typename?: 'VirtualAgentChannelConfig';
|
|
102588
103421
|
aiAnswersProductionStatus?: Maybe<Array<Maybe<VirtualAgentAiAnswerStatusForChannel>>>;
|
|
@@ -102605,6 +103438,7 @@ export declare type VirtualAgentConfiguration = Node & {
|
|
|
102605
103438
|
liveIntentsCount?: Maybe<Scalars['Int']['output']>;
|
|
102606
103439
|
offerEscalationConfig?: Maybe<VirtualAgentOfferEscalationConfig>;
|
|
102607
103440
|
respondToQueries: Scalars['Boolean']['output'];
|
|
103441
|
+
standardConfig?: Maybe<VirtualAgentStandardConfig>;
|
|
102608
103442
|
standardFlowEditors?: Maybe<VirtualAgentFlowEditorsConnection>;
|
|
102609
103443
|
virtualAgentChannelConfig?: Maybe<VirtualAgentChannelConfig>;
|
|
102610
103444
|
virtualAgentStatisticsProjection?: Maybe<VirtualAgentStatisticsProjection>;
|
|
@@ -102808,6 +103642,13 @@ export declare type VirtualAgentGlobalStatisticsProjection = {
|
|
|
102808
103642
|
totalMatched?: Maybe<Scalars['Float']['output']>;
|
|
102809
103643
|
totalTraffic?: Maybe<Scalars['Int']['output']>;
|
|
102810
103644
|
};
|
|
103645
|
+
export declare type VirtualAgentGreetingConfig = {
|
|
103646
|
+
__typename?: 'VirtualAgentGreetingConfig';
|
|
103647
|
+
greetingMessage?: Maybe<Scalars['String']['output']>;
|
|
103648
|
+
};
|
|
103649
|
+
export declare type VirtualAgentGreetingConfigInput = {
|
|
103650
|
+
greetingMessage?: InputMaybe<Scalars['String']['input']>;
|
|
103651
|
+
};
|
|
102811
103652
|
export declare type VirtualAgentIntent = Node & {
|
|
102812
103653
|
__typename?: 'VirtualAgentIntent';
|
|
102813
103654
|
confirmationMessage?: Maybe<Scalars['String']['output']>;
|
|
@@ -102935,6 +103776,17 @@ export declare type VirtualAgentLiveIntentCountResponse = {
|
|
|
102935
103776
|
containerId: Scalars['ID']['output'];
|
|
102936
103777
|
liveIntentsCount: Scalars['Int']['output'];
|
|
102937
103778
|
};
|
|
103779
|
+
export declare type VirtualAgentMatchIntentConfig = {
|
|
103780
|
+
__typename?: 'VirtualAgentMatchIntentConfig';
|
|
103781
|
+
askToRephraseAgainMessage?: Maybe<Scalars['String']['output']>;
|
|
103782
|
+
rephraseMessage?: Maybe<Scalars['String']['output']>;
|
|
103783
|
+
suggestMultipleIntentsMessage?: Maybe<Scalars['String']['output']>;
|
|
103784
|
+
};
|
|
103785
|
+
export declare type VirtualAgentMatchIntentConfigInput = {
|
|
103786
|
+
askToRephraseAgainMessage?: InputMaybe<Scalars['String']['input']>;
|
|
103787
|
+
rephraseMessage?: InputMaybe<Scalars['String']['input']>;
|
|
103788
|
+
suggestMultipleIntentsMessage?: InputMaybe<Scalars['String']['input']>;
|
|
103789
|
+
};
|
|
102938
103790
|
export declare type VirtualAgentMutationApi = {
|
|
102939
103791
|
__typename?: 'VirtualAgentMutationApi';
|
|
102940
103792
|
copyIntentRuleProjection?: Maybe<VirtualAgentCopyIntentRuleProjectionPayload>;
|
|
@@ -102944,10 +103796,14 @@ export declare type VirtualAgentMutationApi = {
|
|
|
102944
103796
|
deleteIntentRuleProjection?: Maybe<VirtualAgentDeleteIntentRuleProjectionPayload>;
|
|
102945
103797
|
handleFlowEditorActions?: Maybe<VirtualAgentFlowEditorActionPayload>;
|
|
102946
103798
|
updateAiAnswerForSlackChannel?: Maybe<VirtualAgentUpdateAiAnswerForSlackChannelPayload>;
|
|
103799
|
+
updateAutoCloseConfig?: Maybe<VirtualAgentStandardConfigUpdatePayload>;
|
|
103800
|
+
updateCSATConfig?: Maybe<VirtualAgentStandardConfigUpdatePayload>;
|
|
102947
103801
|
updateChatChannel?: Maybe<VirtualAgentUpdateChatChannelPayload>;
|
|
102948
103802
|
updateFlowEditorFlow?: Maybe<VirtualAgentFlowEditorPayload>;
|
|
103803
|
+
updateGreetingConfig?: Maybe<VirtualAgentStandardConfigUpdatePayload>;
|
|
102949
103804
|
updateIntentRuleProjection?: Maybe<VirtualAgentUpdateIntentRuleProjectionPayload>;
|
|
102950
103805
|
updateIntentRuleProjectionQuestions?: Maybe<VirtualAgentUpdateIntentRuleProjectionQuestionsPayload>;
|
|
103806
|
+
updateMatchIntentConfig?: Maybe<VirtualAgentStandardConfigUpdatePayload>;
|
|
102951
103807
|
updateVirtualAgentConfiguration?: Maybe<VirtualAgentUpdateConfigurationPayload>;
|
|
102952
103808
|
};
|
|
102953
103809
|
export declare type VirtualAgentMutationApiCopyIntentRuleProjectionArgs = {
|
|
@@ -102976,6 +103832,14 @@ export declare type VirtualAgentMutationApiUpdateAiAnswerForSlackChannelArgs = {
|
|
|
102976
103832
|
input: VirtualAgentUpdateAiAnswerForSlackChannelInput;
|
|
102977
103833
|
virtualAgentConfigurationId: Scalars['ID']['input'];
|
|
102978
103834
|
};
|
|
103835
|
+
export declare type VirtualAgentMutationApiUpdateAutoCloseConfigArgs = {
|
|
103836
|
+
input: VirtualAgentAutoCloseConfigInput;
|
|
103837
|
+
virtualAgentConfigurationId: Scalars['ID']['input'];
|
|
103838
|
+
};
|
|
103839
|
+
export declare type VirtualAgentMutationApiUpdateCsatConfigArgs = {
|
|
103840
|
+
input: VirtualAgentCsatConfigInput;
|
|
103841
|
+
virtualAgentConfigurationId: Scalars['ID']['input'];
|
|
103842
|
+
};
|
|
102979
103843
|
export declare type VirtualAgentMutationApiUpdateChatChannelArgs = {
|
|
102980
103844
|
input: VirtualAgentUpdateChatChannelInput;
|
|
102981
103845
|
virtualAgentConfigurationId: Scalars['ID']['input'];
|
|
@@ -102984,6 +103848,10 @@ export declare type VirtualAgentMutationApiUpdateFlowEditorFlowArgs = {
|
|
|
102984
103848
|
input: VirtualAgentFlowEditorInput;
|
|
102985
103849
|
virtualAgentFlowEditorId: Scalars['ID']['input'];
|
|
102986
103850
|
};
|
|
103851
|
+
export declare type VirtualAgentMutationApiUpdateGreetingConfigArgs = {
|
|
103852
|
+
input: VirtualAgentGreetingConfigInput;
|
|
103853
|
+
virtualAgentConfigurationId: Scalars['ID']['input'];
|
|
103854
|
+
};
|
|
102987
103855
|
export declare type VirtualAgentMutationApiUpdateIntentRuleProjectionArgs = {
|
|
102988
103856
|
input: VirtualAgentUpdateIntentRuleProjectionInput;
|
|
102989
103857
|
virtualAgentIntentRuleProjectionId: Scalars['ID']['input'];
|
|
@@ -102992,6 +103860,10 @@ export declare type VirtualAgentMutationApiUpdateIntentRuleProjectionQuestionsAr
|
|
|
102992
103860
|
input: VirtualAgentUpdateIntentRuleProjectionQuestionsInput;
|
|
102993
103861
|
virtualAgentIntentRuleProjectionId: Scalars['ID']['input'];
|
|
102994
103862
|
};
|
|
103863
|
+
export declare type VirtualAgentMutationApiUpdateMatchIntentConfigArgs = {
|
|
103864
|
+
input: VirtualAgentMatchIntentConfigInput;
|
|
103865
|
+
virtualAgentConfigurationId: Scalars['ID']['input'];
|
|
103866
|
+
};
|
|
102995
103867
|
export declare type VirtualAgentMutationApiUpdateVirtualAgentConfigurationArgs = {
|
|
102996
103868
|
input: VirtualAgentUpdateConfigurationInput;
|
|
102997
103869
|
virtualAgentConfigurationId: Scalars['ID']['input'];
|
|
@@ -103073,6 +103945,19 @@ export declare type VirtualAgentSlackChannel = {
|
|
|
103073
103945
|
isVirtualAgentTestChannel?: Maybe<Scalars['Boolean']['output']>;
|
|
103074
103946
|
slackChannelId?: Maybe<Scalars['String']['output']>;
|
|
103075
103947
|
};
|
|
103948
|
+
export declare type VirtualAgentStandardConfig = {
|
|
103949
|
+
__typename?: 'VirtualAgentStandardConfig';
|
|
103950
|
+
autoCloseConfig?: Maybe<VirtualAgentAutoCloseConfig>;
|
|
103951
|
+
csatConfig?: Maybe<VirtualAgentCsatConfig>;
|
|
103952
|
+
greetingConfig?: Maybe<VirtualAgentGreetingConfig>;
|
|
103953
|
+
matchIntentConfig?: Maybe<VirtualAgentMatchIntentConfig>;
|
|
103954
|
+
};
|
|
103955
|
+
export declare type VirtualAgentStandardConfigUpdatePayload = Payload & {
|
|
103956
|
+
__typename?: 'VirtualAgentStandardConfigUpdatePayload';
|
|
103957
|
+
errors?: Maybe<Array<MutationError>>;
|
|
103958
|
+
success: Scalars['Boolean']['output'];
|
|
103959
|
+
virtualAgentConfiguration?: Maybe<VirtualAgentConfiguration>;
|
|
103960
|
+
};
|
|
103076
103961
|
export declare type VirtualAgentStatisticsPercentageChangeProjection = {
|
|
103077
103962
|
__typename?: 'VirtualAgentStatisticsPercentageChangeProjection';
|
|
103078
103963
|
aiResolution?: Maybe<Scalars['Float']['output']>;
|