@forge/cli-shared 8.18.1-next.1 → 8.19.0-next.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +13 -0
- package/out/graphql/graphql-types.d.ts +1449 -1646
- package/out/graphql/graphql-types.d.ts.map +1 -1
- package/out/graphql/graphql-types.js +136 -61
- package/out/ui/text.d.ts +8 -0
- package/out/ui/text.d.ts.map +1 -1
- package/out/ui/text.js +8 -0
- package/package.json +2 -2
|
@@ -175,6 +175,23 @@ export declare type AvpAddFilterExpressionsPayload = Payload & {
|
|
|
175
175
|
filterExpression?: Maybe<AvpFilterExpression>;
|
|
176
176
|
success: Scalars['Boolean']['output'];
|
|
177
177
|
};
|
|
178
|
+
export declare type AvpAnalyticsArithmeticFormula = {
|
|
179
|
+
__typename?: 'AVPAnalyticsArithmeticFormula';
|
|
180
|
+
leftOperand: AvpAnalyticsFormulaParameter;
|
|
181
|
+
operator: AvpAnalyticsArithmeticOperator;
|
|
182
|
+
rightOperand: AvpAnalyticsFormulaParameter;
|
|
183
|
+
};
|
|
184
|
+
export declare type AvpAnalyticsArithmeticFormulaInput = {
|
|
185
|
+
leftOperand: AvpAnalyticsFormulaParameterInput;
|
|
186
|
+
operator: AvpAnalyticsArithmeticOperator;
|
|
187
|
+
rightOperand: AvpAnalyticsFormulaParameterInput;
|
|
188
|
+
};
|
|
189
|
+
export declare enum AvpAnalyticsArithmeticOperator {
|
|
190
|
+
Add = "ADD",
|
|
191
|
+
Divide = "DIVIDE",
|
|
192
|
+
Multiply = "MULTIPLY",
|
|
193
|
+
Subtract = "SUBTRACT"
|
|
194
|
+
}
|
|
178
195
|
export declare type AvpAnalyticsColumn = {
|
|
179
196
|
errors?: Maybe<Array<AvpAnalyticsError>>;
|
|
180
197
|
id: Scalars['ID']['output'];
|
|
@@ -186,6 +203,11 @@ export declare type AvpAnalyticsColumnInput = {
|
|
|
186
203
|
formula?: InputMaybe<AvpAnalyticsFormulaColumnInput>;
|
|
187
204
|
simple?: InputMaybe<AvpAnalyticsSimpleColumnInput>;
|
|
188
205
|
};
|
|
206
|
+
export declare type AvpAnalyticsColumnReference = {
|
|
207
|
+
__typename?: 'AVPAnalyticsColumnReference';
|
|
208
|
+
columnId?: Maybe<Scalars['ID']['output']>;
|
|
209
|
+
columnName?: Maybe<Scalars['String']['output']>;
|
|
210
|
+
};
|
|
189
211
|
export declare type AvpAnalyticsColumnReferenceInput = {
|
|
190
212
|
columnId?: InputMaybe<Scalars['ID']['input']>;
|
|
191
213
|
columnName?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -231,6 +253,33 @@ export declare type AvpAnalyticsDataSourceMetadata = {
|
|
|
231
253
|
__typename?: 'AVPAnalyticsDataSourceMetadata';
|
|
232
254
|
icon: Scalars['String']['output'];
|
|
233
255
|
};
|
|
256
|
+
export declare type AvpAnalyticsDateDifferenceFormula = {
|
|
257
|
+
__typename?: 'AVPAnalyticsDateDifferenceFormula';
|
|
258
|
+
endDate: AvpAnalyticsFormulaParameter;
|
|
259
|
+
startDate: AvpAnalyticsFormulaParameter;
|
|
260
|
+
unit: AvpAnalyticsDateDifferenceUnit;
|
|
261
|
+
};
|
|
262
|
+
export declare type AvpAnalyticsDateDifferenceFormulaInput = {
|
|
263
|
+
endDate: AvpAnalyticsFormulaParameterInput;
|
|
264
|
+
startDate: AvpAnalyticsFormulaParameterInput;
|
|
265
|
+
unit: AvpAnalyticsDateDifferenceUnit;
|
|
266
|
+
};
|
|
267
|
+
export declare enum AvpAnalyticsDateDifferenceUnit {
|
|
268
|
+
Day = "DAY",
|
|
269
|
+
Hour = "HOUR",
|
|
270
|
+
Minute = "MINUTE",
|
|
271
|
+
Month = "MONTH",
|
|
272
|
+
Second = "SECOND",
|
|
273
|
+
Week = "WEEK",
|
|
274
|
+
Year = "YEAR"
|
|
275
|
+
}
|
|
276
|
+
export declare enum AvpAnalyticsDateFormatBucket {
|
|
277
|
+
Day = "DAY",
|
|
278
|
+
HourOfDay = "HOUR_OF_DAY",
|
|
279
|
+
Month = "MONTH",
|
|
280
|
+
Week = "WEEK",
|
|
281
|
+
Year = "YEAR"
|
|
282
|
+
}
|
|
234
283
|
export declare type AvpAnalyticsDeleteModelInput = {
|
|
235
284
|
forceDelete: Scalars['Boolean']['input'];
|
|
236
285
|
modelId: Scalars['ID']['input'];
|
|
@@ -289,22 +338,72 @@ export declare type AvpAnalyticsFilterValueInput = {
|
|
|
289
338
|
range?: InputMaybe<AvpAnalyticsRangeValueInput>;
|
|
290
339
|
single?: InputMaybe<Scalars['String']['input']>;
|
|
291
340
|
};
|
|
341
|
+
export declare type AvpAnalyticsFormatDateFormula = {
|
|
342
|
+
__typename?: 'AVPAnalyticsFormatDateFormula';
|
|
343
|
+
date: AvpAnalyticsFormulaParameter;
|
|
344
|
+
format: AvpAnalyticsDateFormatBucket;
|
|
345
|
+
timezone: Scalars['String']['output'];
|
|
346
|
+
};
|
|
347
|
+
export declare type AvpAnalyticsFormatDateFormulaInput = {
|
|
348
|
+
date: AvpAnalyticsFormulaParameterInput;
|
|
349
|
+
format: AvpAnalyticsDateFormatBucket;
|
|
350
|
+
timezone: Scalars['String']['input'];
|
|
351
|
+
};
|
|
292
352
|
export declare type AvpAnalyticsFormulaColumn = AvpAnalyticsColumn & {
|
|
293
353
|
__typename?: 'AVPAnalyticsFormulaColumn';
|
|
294
354
|
errors?: Maybe<Array<AvpAnalyticsError>>;
|
|
295
|
-
expression:
|
|
355
|
+
expression: AvpAnalyticsFormulaExpression;
|
|
296
356
|
id: Scalars['ID']['output'];
|
|
297
357
|
isHidden: Scalars['Boolean']['output'];
|
|
298
358
|
name: Scalars['String']['output'];
|
|
299
359
|
type: AvpAnalyticsColumnType;
|
|
300
360
|
};
|
|
301
361
|
export declare type AvpAnalyticsFormulaColumnInput = {
|
|
302
|
-
expression:
|
|
362
|
+
expression: AvpAnalyticsFormulaExpressionInput;
|
|
303
363
|
id?: InputMaybe<Scalars['ID']['input']>;
|
|
304
364
|
isHidden: Scalars['Boolean']['input'];
|
|
305
365
|
name: Scalars['String']['input'];
|
|
306
366
|
type: AvpAnalyticsColumnType;
|
|
307
367
|
};
|
|
368
|
+
export declare type AvpAnalyticsFormulaExpression = {
|
|
369
|
+
__typename?: 'AVPAnalyticsFormulaExpression';
|
|
370
|
+
arithmetic?: Maybe<AvpAnalyticsArithmeticFormula>;
|
|
371
|
+
dateDifference?: Maybe<AvpAnalyticsDateDifferenceFormula>;
|
|
372
|
+
formatDate?: Maybe<AvpAnalyticsFormatDateFormula>;
|
|
373
|
+
kind: AvpAnalyticsFormulaExpressionKind;
|
|
374
|
+
round?: Maybe<AvpAnalyticsRoundFormula>;
|
|
375
|
+
};
|
|
376
|
+
export declare type AvpAnalyticsFormulaExpressionInput = {
|
|
377
|
+
arithmetic?: InputMaybe<AvpAnalyticsArithmeticFormulaInput>;
|
|
378
|
+
dateDifference?: InputMaybe<AvpAnalyticsDateDifferenceFormulaInput>;
|
|
379
|
+
formatDate?: InputMaybe<AvpAnalyticsFormatDateFormulaInput>;
|
|
380
|
+
kind: AvpAnalyticsFormulaExpressionKind;
|
|
381
|
+
round?: InputMaybe<AvpAnalyticsRoundFormulaInput>;
|
|
382
|
+
};
|
|
383
|
+
export declare enum AvpAnalyticsFormulaExpressionKind {
|
|
384
|
+
Arithmetic = "ARITHMETIC",
|
|
385
|
+
DateDifference = "DATE_DIFFERENCE",
|
|
386
|
+
FormatDate = "FORMAT_DATE",
|
|
387
|
+
Round = "ROUND"
|
|
388
|
+
}
|
|
389
|
+
export declare type AvpAnalyticsFormulaParameter = {
|
|
390
|
+
__typename?: 'AVPAnalyticsFormulaParameter';
|
|
391
|
+
columnRef?: Maybe<AvpAnalyticsColumnReference>;
|
|
392
|
+
formula?: Maybe<AvpAnalyticsFormulaExpression>;
|
|
393
|
+
kind: AvpAnalyticsFormulaParameterKind;
|
|
394
|
+
literal?: Maybe<AvpAnalyticsLiteralValue>;
|
|
395
|
+
};
|
|
396
|
+
export declare type AvpAnalyticsFormulaParameterInput = {
|
|
397
|
+
columnRef?: InputMaybe<AvpAnalyticsColumnReferenceInput>;
|
|
398
|
+
formula?: InputMaybe<AvpAnalyticsFormulaExpressionInput>;
|
|
399
|
+
kind: AvpAnalyticsFormulaParameterKind;
|
|
400
|
+
literal?: InputMaybe<AvpAnalyticsLiteralValueInput>;
|
|
401
|
+
};
|
|
402
|
+
export declare enum AvpAnalyticsFormulaParameterKind {
|
|
403
|
+
ColumnRef = "COLUMN_REF",
|
|
404
|
+
Formula = "FORMULA",
|
|
405
|
+
Literal = "LITERAL"
|
|
406
|
+
}
|
|
308
407
|
export declare type AvpAnalyticsGetDataSourcesInput = {
|
|
309
408
|
cloudId: Scalars['ID']['input'];
|
|
310
409
|
searchInput?: InputMaybe<AvpAnalyticsSearchInput>;
|
|
@@ -373,6 +472,21 @@ export declare type AvpAnalyticsJoinTypeConfiguration = {
|
|
|
373
472
|
title: Scalars['String']['output'];
|
|
374
473
|
type: AvpAnalyticsJoinType;
|
|
375
474
|
};
|
|
475
|
+
export declare type AvpAnalyticsLiteralValue = {
|
|
476
|
+
__typename?: 'AVPAnalyticsLiteralValue';
|
|
477
|
+
booleanValue?: Maybe<Scalars['Boolean']['output']>;
|
|
478
|
+
dateValue?: Maybe<Scalars['String']['output']>;
|
|
479
|
+
intValue?: Maybe<Scalars['Int']['output']>;
|
|
480
|
+
numberValue?: Maybe<Scalars['Float']['output']>;
|
|
481
|
+
stringValue?: Maybe<Scalars['String']['output']>;
|
|
482
|
+
};
|
|
483
|
+
export declare type AvpAnalyticsLiteralValueInput = {
|
|
484
|
+
booleanValue?: InputMaybe<Scalars['Boolean']['input']>;
|
|
485
|
+
dateValue?: InputMaybe<Scalars['String']['input']>;
|
|
486
|
+
intValue?: InputMaybe<Scalars['Int']['input']>;
|
|
487
|
+
numberValue?: InputMaybe<Scalars['Float']['input']>;
|
|
488
|
+
stringValue?: InputMaybe<Scalars['String']['input']>;
|
|
489
|
+
};
|
|
376
490
|
export declare type AvpAnalyticsMetric = {
|
|
377
491
|
__typename?: 'AVPAnalyticsMetric';
|
|
378
492
|
id?: Maybe<Scalars['ID']['output']>;
|
|
@@ -537,6 +651,15 @@ export declare type AvpAnalyticsRangeValueInput = {
|
|
|
537
651
|
toExpression?: InputMaybe<Scalars['String']['input']>;
|
|
538
652
|
toValue?: InputMaybe<Scalars['String']['input']>;
|
|
539
653
|
};
|
|
654
|
+
export declare type AvpAnalyticsRoundFormula = {
|
|
655
|
+
__typename?: 'AVPAnalyticsRoundFormula';
|
|
656
|
+
decimalPlaces: Scalars['Int']['output'];
|
|
657
|
+
value: AvpAnalyticsFormulaParameter;
|
|
658
|
+
};
|
|
659
|
+
export declare type AvpAnalyticsRoundFormulaInput = {
|
|
660
|
+
decimalPlaces: Scalars['Int']['input'];
|
|
661
|
+
value: AvpAnalyticsFormulaParameterInput;
|
|
662
|
+
};
|
|
540
663
|
export declare type AvpAnalyticsSearchInput = {
|
|
541
664
|
searchQuery: Scalars['String']['input'];
|
|
542
665
|
};
|
|
@@ -1517,7 +1640,8 @@ export declare type AvpRemoveDashboardRowPayload = Payload & {
|
|
|
1517
1640
|
};
|
|
1518
1641
|
export declare type AvpTemplatePlaceholderReplacement = {
|
|
1519
1642
|
placeholderName: Scalars['String']['input'];
|
|
1520
|
-
replacementValue
|
|
1643
|
+
replacementValue?: InputMaybe<Scalars['String']['input']>;
|
|
1644
|
+
replacementValues?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
1521
1645
|
};
|
|
1522
1646
|
export declare type AvpToggleCanvasElementExpandedInput = {
|
|
1523
1647
|
dashboardAri: Scalars['ID']['input'];
|
|
@@ -2054,6 +2178,7 @@ export declare enum ActivitiesObjectType {
|
|
|
2054
2178
|
Issue = "ISSUE",
|
|
2055
2179
|
Page = "PAGE",
|
|
2056
2180
|
Project = "PROJECT",
|
|
2181
|
+
Slide = "SLIDE",
|
|
2057
2182
|
Whiteboard = "WHITEBOARD"
|
|
2058
2183
|
}
|
|
2059
2184
|
export declare type ActivitiesTransitionedEvent = {
|
|
@@ -2153,7 +2278,7 @@ export declare type ActivityObject = {
|
|
|
2153
2278
|
subProduct?: Maybe<Scalars['String']['output']>;
|
|
2154
2279
|
type: Scalars['String']['output'];
|
|
2155
2280
|
};
|
|
2156
|
-
export declare type ActivityObjectData = AssetsObject | AssetsObjectType | AssetsSchema | BitbucketPullRequest | CompassComponent | ConfluenceBlogPost | ConfluenceDatabase | ConfluenceEmbed | ConfluenceFooterComment | ConfluenceInlineComment | ConfluencePage | ConfluenceWhiteboard | DevOpsDesign | DevOpsDocument | DevOpsPullRequestDetails | ExternalDocument | ExternalPullRequest | ExternalRemoteLink | JiraIssue | JiraPlatformComment | JiraServiceManagementComment | LoomVideo | MercuryFocusArea | MercuryPortfolio | RadarPosition | RadarView | TownsquareComment | TownsquareGoal | TownsquareProject | TrelloAttachment | TrelloBoard | TrelloCard | TrelloLabel | TrelloList | TrelloMember;
|
|
2281
|
+
export declare type ActivityObjectData = AssetsObject | AssetsObjectType | AssetsSchema | BitbucketPullRequest | CompassComponent | ConfluenceBlogPost | ConfluenceDatabase | ConfluenceEmbed | ConfluenceFooterComment | ConfluenceInlineComment | ConfluencePage | ConfluenceSlide | ConfluenceWhiteboard | DevOpsDesign | DevOpsDocument | DevOpsPullRequestDetails | ExternalDocument | ExternalPullRequest | ExternalRemoteLink | JiraIssue | JiraPlatformComment | JiraServiceManagementComment | LoomVideo | MercuryFocusArea | MercuryPortfolio | RadarPosition | RadarView | TownsquareComment | TownsquareGoal | TownsquareProject | TrelloAttachment | TrelloBoard | TrelloCard | TrelloLabel | TrelloList | TrelloMember;
|
|
2157
2282
|
export declare enum ActivityObjectType {
|
|
2158
2283
|
Blogpost = "BLOGPOST",
|
|
2159
2284
|
Comment = "COMMENT",
|
|
@@ -2164,6 +2289,7 @@ export declare enum ActivityObjectType {
|
|
|
2164
2289
|
Page = "PAGE",
|
|
2165
2290
|
Project = "PROJECT",
|
|
2166
2291
|
Site = "SITE",
|
|
2292
|
+
Slide = "SLIDE",
|
|
2167
2293
|
Space = "SPACE",
|
|
2168
2294
|
Task = "TASK",
|
|
2169
2295
|
Whiteboard = "WHITEBOARD"
|
|
@@ -3754,8 +3880,8 @@ export declare type AgentAiCitation = {
|
|
|
3754
3880
|
isInternal?: Maybe<Scalars['Boolean']['output']>;
|
|
3755
3881
|
sourceId?: Maybe<Scalars['String']['output']>;
|
|
3756
3882
|
sourceType: AgentAiCitationSourceType;
|
|
3757
|
-
sourceUrl
|
|
3758
|
-
title
|
|
3883
|
+
sourceUrl: Scalars['String']['output'];
|
|
3884
|
+
title: Scalars['String']['output'];
|
|
3759
3885
|
};
|
|
3760
3886
|
export declare enum AgentAiCitationSourceType {
|
|
3761
3887
|
KbArticle = "KB_ARTICLE",
|
|
@@ -3887,11 +4013,41 @@ export declare type AgentSessionNode = {
|
|
|
3887
4013
|
};
|
|
3888
4014
|
export declare type AgentStudio3pKnowledgeFilter = {
|
|
3889
4015
|
__typename?: 'AgentStudio3pKnowledgeFilter';
|
|
4016
|
+
inputs?: Maybe<Array<AgentStudio3pKnowledgeFilterEntry>>;
|
|
3890
4017
|
rawFilter?: Maybe<Scalars['String']['output']>;
|
|
3891
4018
|
};
|
|
4019
|
+
export declare type AgentStudio3pKnowledgeFilterBooleanValue = {
|
|
4020
|
+
__typename?: 'AgentStudio3pKnowledgeFilterBooleanValue';
|
|
4021
|
+
value?: Maybe<Scalars['Boolean']['output']>;
|
|
4022
|
+
};
|
|
4023
|
+
export declare type AgentStudio3pKnowledgeFilterBooleanValueInput = {
|
|
4024
|
+
value?: InputMaybe<Scalars['Boolean']['input']>;
|
|
4025
|
+
};
|
|
4026
|
+
export declare type AgentStudio3pKnowledgeFilterEntry = {
|
|
4027
|
+
__typename?: 'AgentStudio3pKnowledgeFilterEntry';
|
|
4028
|
+
key: Scalars['String']['output'];
|
|
4029
|
+
value?: Maybe<AgentStudio3pKnowledgeFilterValue>;
|
|
4030
|
+
};
|
|
4031
|
+
export declare type AgentStudio3pKnowledgeFilterEntryInput = {
|
|
4032
|
+
key: Scalars['String']['input'];
|
|
4033
|
+
value?: InputMaybe<AgentStudio3pKnowledgeFilterValueInput>;
|
|
4034
|
+
};
|
|
3892
4035
|
export declare type AgentStudio3pKnowledgeFilterInput = {
|
|
4036
|
+
inputs?: InputMaybe<Array<AgentStudio3pKnowledgeFilterEntryInput>>;
|
|
3893
4037
|
rawFilter?: InputMaybe<Scalars['String']['input']>;
|
|
3894
4038
|
};
|
|
4039
|
+
export declare type AgentStudio3pKnowledgeFilterStringValue = {
|
|
4040
|
+
__typename?: 'AgentStudio3pKnowledgeFilterStringValue';
|
|
4041
|
+
value?: Maybe<Array<Scalars['String']['output']>>;
|
|
4042
|
+
};
|
|
4043
|
+
export declare type AgentStudio3pKnowledgeFilterStringValueInput = {
|
|
4044
|
+
value?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
4045
|
+
};
|
|
4046
|
+
export declare type AgentStudio3pKnowledgeFilterValue = AgentStudio3pKnowledgeFilterBooleanValue | AgentStudio3pKnowledgeFilterStringValue;
|
|
4047
|
+
export declare type AgentStudio3pKnowledgeFilterValueInput = {
|
|
4048
|
+
booleanValue?: InputMaybe<AgentStudio3pKnowledgeFilterBooleanValueInput>;
|
|
4049
|
+
stringValue?: InputMaybe<AgentStudio3pKnowledgeFilterStringValueInput>;
|
|
4050
|
+
};
|
|
3895
4051
|
export declare enum AgentStudioAccessIdentityMode {
|
|
3896
4052
|
Agent = "AGENT",
|
|
3897
4053
|
User = "USER"
|
|
@@ -4911,6 +5067,12 @@ export declare type AgentStudioServiceAgentScenarioListArgs = {
|
|
|
4911
5067
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
4912
5068
|
last?: InputMaybe<Scalars['Int']['input']>;
|
|
4913
5069
|
};
|
|
5070
|
+
export declare type AgentStudioSetAccessIdentityModePayload = Payload & {
|
|
5071
|
+
__typename?: 'AgentStudioSetAccessIdentityModePayload';
|
|
5072
|
+
agent?: Maybe<AgentStudioAgent>;
|
|
5073
|
+
errors?: Maybe<Array<MutationError>>;
|
|
5074
|
+
success: Scalars['Boolean']['output'];
|
|
5075
|
+
};
|
|
4914
5076
|
export declare type AgentStudioSetWidgetByContainerAriInput = {
|
|
4915
5077
|
agentAri: Scalars['ID']['input'];
|
|
4916
5078
|
containerType?: InputMaybe<AgentStudioWidgetContainerType>;
|
|
@@ -5179,7 +5341,10 @@ export declare type AgentStudioUpdateAgentDetailsInput = {
|
|
|
5179
5341
|
description?: InputMaybe<Scalars['String']['input']>;
|
|
5180
5342
|
etag?: InputMaybe<Scalars['String']['input']>;
|
|
5181
5343
|
instructions?: InputMaybe<Scalars['String']['input']>;
|
|
5344
|
+
isWebSearchEnabled?: InputMaybe<Scalars['Boolean']['input']>;
|
|
5345
|
+
knowledgeSources?: InputMaybe<AgentStudioKnowledgeConfigurationInput>;
|
|
5182
5346
|
name?: InputMaybe<Scalars['String']['input']>;
|
|
5347
|
+
tools?: InputMaybe<Array<AgentStudioToolInput>>;
|
|
5183
5348
|
};
|
|
5184
5349
|
export declare type AgentStudioUpdateAgentDetailsPayload = Payload & {
|
|
5185
5350
|
__typename?: 'AgentStudioUpdateAgentDetailsPayload';
|
|
@@ -8424,6 +8589,7 @@ export declare type AssetsAttributeOnObject = {
|
|
|
8424
8589
|
objectId?: Maybe<Scalars['ID']['output']>;
|
|
8425
8590
|
schemaId?: Maybe<Scalars['ID']['output']>;
|
|
8426
8591
|
};
|
|
8592
|
+
export declare type AssetsAttributeValue = AssetsGroupAttributeValue | AssetsObject | AssetsPrimitiveAttributeValue | AssetsServiceObject | AssetsStatusType | AssetsUserAttributeValue;
|
|
8427
8593
|
export declare type AssetsAvatar = {
|
|
8428
8594
|
__typename?: 'AssetsAvatar';
|
|
8429
8595
|
url16?: Maybe<Scalars['String']['output']>;
|
|
@@ -9986,6 +10152,32 @@ export declare type AssetsDmNotificationResponse = {
|
|
|
9986
10152
|
isSuccessful: Scalars['Boolean']['output'];
|
|
9987
10153
|
message?: Maybe<Scalars['String']['output']>;
|
|
9988
10154
|
};
|
|
10155
|
+
export declare type AssetsDmObjectAttributeCreateInput = {
|
|
10156
|
+
dataType: Scalars['Float']['input'];
|
|
10157
|
+
importanceCode: Scalars['Boolean']['input'];
|
|
10158
|
+
isInSnapshot: Scalars['Boolean']['input'];
|
|
10159
|
+
isNormal: Scalars['Boolean']['input'];
|
|
10160
|
+
isPrimaryKey: Scalars['Boolean']['input'];
|
|
10161
|
+
name: Scalars['String']['input'];
|
|
10162
|
+
objectId: Scalars['ID']['input'];
|
|
10163
|
+
};
|
|
10164
|
+
export declare type AssetsDmObjectAttributeDetail = {
|
|
10165
|
+
__typename?: 'AssetsDMObjectAttributeDetail';
|
|
10166
|
+
dataType: Scalars['Float']['output'];
|
|
10167
|
+
hasPriority: Scalars['Boolean']['output'];
|
|
10168
|
+
importanceCode: Scalars['Boolean']['output'];
|
|
10169
|
+
isInSnapshot: Scalars['Boolean']['output'];
|
|
10170
|
+
isMapped: Scalars['Boolean']['output'];
|
|
10171
|
+
isNormal: Scalars['Boolean']['output'];
|
|
10172
|
+
isPrimaryKey: Scalars['Boolean']['output'];
|
|
10173
|
+
isReportSafe: Scalars['Boolean']['output'];
|
|
10174
|
+
isSecondaryKey: Scalars['Boolean']['output'];
|
|
10175
|
+
name: Scalars['String']['output'];
|
|
10176
|
+
objectAttributeId: Scalars['ID']['output'];
|
|
10177
|
+
objectClass?: Maybe<AssetsDmObjectAttributeObjectClass>;
|
|
10178
|
+
objectId: Scalars['ID']['output'];
|
|
10179
|
+
viewOrder: Scalars['Float']['output'];
|
|
10180
|
+
};
|
|
9989
10181
|
export declare type AssetsDmObjectAttributeInfo = {
|
|
9990
10182
|
__typename?: 'AssetsDMObjectAttributeInfo';
|
|
9991
10183
|
dataType: Scalars['Int']['output'];
|
|
@@ -10002,6 +10194,42 @@ export declare type AssetsDmObjectAttributeInfo = {
|
|
|
10002
10194
|
objectId: Scalars['ID']['output'];
|
|
10003
10195
|
viewOrder: Scalars['Int']['output'];
|
|
10004
10196
|
};
|
|
10197
|
+
export declare type AssetsDmObjectAttributeListResponse = {
|
|
10198
|
+
__typename?: 'AssetsDMObjectAttributeListResponse';
|
|
10199
|
+
rows: Array<AssetsDmObjectAttributeListRow>;
|
|
10200
|
+
};
|
|
10201
|
+
export declare type AssetsDmObjectAttributeListRow = {
|
|
10202
|
+
__typename?: 'AssetsDMObjectAttributeListRow';
|
|
10203
|
+
dataType: Scalars['Float']['output'];
|
|
10204
|
+
hasPriority: Scalars['Boolean']['output'];
|
|
10205
|
+
importanceCode: Scalars['Boolean']['output'];
|
|
10206
|
+
isInSnapshot: Scalars['Boolean']['output'];
|
|
10207
|
+
isMapped: Scalars['Boolean']['output'];
|
|
10208
|
+
isNormal: Scalars['Boolean']['output'];
|
|
10209
|
+
isPrimaryKey: Scalars['Boolean']['output'];
|
|
10210
|
+
isReportSafe: Scalars['Boolean']['output'];
|
|
10211
|
+
isSecondaryKey: Scalars['Boolean']['output'];
|
|
10212
|
+
name: Scalars['String']['output'];
|
|
10213
|
+
objectAttributeId: Scalars['ID']['output'];
|
|
10214
|
+
objectClass?: Maybe<AssetsDmObjectAttributeObjectClass>;
|
|
10215
|
+
objectId: Scalars['ID']['output'];
|
|
10216
|
+
viewOrder: Scalars['Float']['output'];
|
|
10217
|
+
};
|
|
10218
|
+
export declare type AssetsDmObjectAttributeMutationResponse = {
|
|
10219
|
+
__typename?: 'AssetsDMObjectAttributeMutationResponse';
|
|
10220
|
+
isSuccessful: Scalars['Boolean']['output'];
|
|
10221
|
+
message: Scalars['String']['output'];
|
|
10222
|
+
objectAttributeId?: Maybe<Scalars['ID']['output']>;
|
|
10223
|
+
};
|
|
10224
|
+
export declare type AssetsDmObjectAttributeObjectClass = {
|
|
10225
|
+
__typename?: 'AssetsDMObjectAttributeObjectClass';
|
|
10226
|
+
allowDuplicates: Scalars['Boolean']['output'];
|
|
10227
|
+
computedIssuesCount?: Maybe<Scalars['Float']['output']>;
|
|
10228
|
+
name: Scalars['String']['output'];
|
|
10229
|
+
objectId: Scalars['ID']['output'];
|
|
10230
|
+
tenantId: Scalars['ID']['output'];
|
|
10231
|
+
uniqueRecordsCount: Scalars['Float']['output'];
|
|
10232
|
+
};
|
|
10005
10233
|
export declare type AssetsDmObjectAttributeResponse = {
|
|
10006
10234
|
__typename?: 'AssetsDMObjectAttributeResponse';
|
|
10007
10235
|
rows: Array<AssetsDmObjectAttributeRow>;
|
|
@@ -10022,6 +10250,20 @@ export declare type AssetsDmObjectAttributeRow = {
|
|
|
10022
10250
|
objectId: Scalars['ID']['output'];
|
|
10023
10251
|
viewOrder: Scalars['Int']['output'];
|
|
10024
10252
|
};
|
|
10253
|
+
export declare type AssetsDmObjectAttributeUpdateInput = {
|
|
10254
|
+
dataType: Scalars['Float']['input'];
|
|
10255
|
+
hasPriority: Scalars['Boolean']['input'];
|
|
10256
|
+
importanceCode: Scalars['Boolean']['input'];
|
|
10257
|
+
isInSnapshot: Scalars['Boolean']['input'];
|
|
10258
|
+
isMapped: Scalars['Boolean']['input'];
|
|
10259
|
+
isNormal: Scalars['Boolean']['input'];
|
|
10260
|
+
isPrimaryKey: Scalars['Boolean']['input'];
|
|
10261
|
+
isSecondaryKey: Scalars['Boolean']['input'];
|
|
10262
|
+
name: Scalars['String']['input'];
|
|
10263
|
+
objectAttributeId: Scalars['ID']['input'];
|
|
10264
|
+
objectId: Scalars['ID']['input'];
|
|
10265
|
+
viewOrder: Scalars['Float']['input'];
|
|
10266
|
+
};
|
|
10025
10267
|
export declare type AssetsDmObjectClass = {
|
|
10026
10268
|
__typename?: 'AssetsDMObjectClass';
|
|
10027
10269
|
allowDuplicates?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -10714,6 +10956,10 @@ export declare type AssetsLinks = {
|
|
|
10714
10956
|
__typename?: 'AssetsLinks';
|
|
10715
10957
|
web?: Maybe<Scalars['String']['output']>;
|
|
10716
10958
|
};
|
|
10959
|
+
export declare type AssetsOtaValuesByIdInput = {
|
|
10960
|
+
objectTypeAttributeID: Scalars['ID']['input'];
|
|
10961
|
+
objectTypeID: Scalars['ID']['input'];
|
|
10962
|
+
};
|
|
10717
10963
|
export declare type AssetsObject = AssetsObjectNode & Node & {
|
|
10718
10964
|
__typename?: 'AssetsObject';
|
|
10719
10965
|
attributes?: Maybe<Array<Maybe<AssetsAttributeOnObject>>>;
|
|
@@ -10733,7 +10979,7 @@ export declare type AssetsObjectAttributesArgs = {
|
|
|
10733
10979
|
};
|
|
10734
10980
|
export declare type AssetsObjectAqlResult = {
|
|
10735
10981
|
__typename?: 'AssetsObjectAQLResult';
|
|
10736
|
-
items
|
|
10982
|
+
items?: Maybe<Array<AssetsObjectNode>>;
|
|
10737
10983
|
limit?: Maybe<Scalars['Int']['output']>;
|
|
10738
10984
|
offset?: Maybe<Scalars['Int']['output']>;
|
|
10739
10985
|
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
@@ -10794,6 +11040,16 @@ export declare type AssetsObjectTypeAttribute = {
|
|
|
10794
11040
|
objectTypeId?: Maybe<Scalars['ID']['output']>;
|
|
10795
11041
|
position?: Maybe<Scalars['Int']['output']>;
|
|
10796
11042
|
};
|
|
11043
|
+
export declare type AssetsObjectTypeAttributeValue = {
|
|
11044
|
+
__typename?: 'AssetsObjectTypeAttributeValue';
|
|
11045
|
+
displayName?: Maybe<Scalars['String']['output']>;
|
|
11046
|
+
searchValue?: Maybe<Scalars['String']['output']>;
|
|
11047
|
+
value?: Maybe<AssetsAttributeValue>;
|
|
11048
|
+
};
|
|
11049
|
+
export declare type AssetsPrimitiveAttributeValue = {
|
|
11050
|
+
__typename?: 'AssetsPrimitiveAttributeValue';
|
|
11051
|
+
value: Scalars['String']['output'];
|
|
11052
|
+
};
|
|
10797
11053
|
export declare type AssetsReferenceType = {
|
|
10798
11054
|
__typename?: 'AssetsReferenceType';
|
|
10799
11055
|
color: Scalars['String']['output'];
|
|
@@ -11048,12 +11304,6 @@ export declare type AssetsVerticalAttributeValuesSuccess = {
|
|
|
11048
11304
|
__typename?: 'AssetsVerticalAttributeValuesSuccess';
|
|
11049
11305
|
attributeValues?: Maybe<Array<Maybe<AssetsVerticalObjectAttributeValue>>>;
|
|
11050
11306
|
};
|
|
11051
|
-
export declare type AssetsVerticalAttributesInput = {
|
|
11052
|
-
category: AssetsVerticalObjectTypeCategory;
|
|
11053
|
-
verticalInstantiationId: Scalars['ID']['input'];
|
|
11054
|
-
workspaceId: Scalars['ID']['input'];
|
|
11055
|
-
};
|
|
11056
|
-
export declare type AssetsVerticalAttributesResult = QueryError;
|
|
11057
11307
|
export declare type AssetsVerticalAuditInfo = {
|
|
11058
11308
|
__typename?: 'AssetsVerticalAuditInfo';
|
|
11059
11309
|
createdAt: Scalars['DateTime']['output'];
|
|
@@ -11088,7 +11338,7 @@ export declare type AssetsVerticalBundleActionErrorExtension = MutationErrorExte
|
|
|
11088
11338
|
export declare type AssetsVerticalBundleInstantiation = {
|
|
11089
11339
|
__typename?: 'AssetsVerticalBundleInstantiation';
|
|
11090
11340
|
bundle: AssetsVerticalBundle;
|
|
11091
|
-
id: Scalars['
|
|
11341
|
+
id: Scalars['ID']['output'];
|
|
11092
11342
|
};
|
|
11093
11343
|
export declare type AssetsVerticalBundleInstantiationResult = AssetsVerticalBundleInstantiation | QueryError;
|
|
11094
11344
|
export declare type AssetsVerticalBundleResult = AssetsVerticalBundle | QueryError;
|
|
@@ -11109,10 +11359,33 @@ export declare type AssetsVerticalCountByStatusInput = {
|
|
|
11109
11359
|
workspaceId: Scalars['ID']['input'];
|
|
11110
11360
|
};
|
|
11111
11361
|
export declare type AssetsVerticalCountByStatusResult = AssetsVerticalCountByStatus | QueryError;
|
|
11362
|
+
export declare type AssetsVerticalCreateItemMappingEntryInput = {
|
|
11363
|
+
itemId: Scalars['ID']['input'];
|
|
11364
|
+
itemType: AssetsVerticalItemType;
|
|
11365
|
+
siteId: Scalars['ID']['input'];
|
|
11366
|
+
spaceId: Scalars['ID']['input'];
|
|
11367
|
+
verticalInstantiationCategoryId: Scalars['ID']['input'];
|
|
11368
|
+
};
|
|
11369
|
+
export declare type AssetsVerticalCreateItemMappingsInput = {
|
|
11370
|
+
cloudId: Scalars['ID']['input'];
|
|
11371
|
+
itemMappings: Array<AssetsVerticalCreateItemMappingEntryInput>;
|
|
11372
|
+
};
|
|
11373
|
+
export declare type AssetsVerticalCreateVerticalInstantiationCategoryInput = {
|
|
11374
|
+
category: AssetsVerticalVerticalInstantiationCategoryType;
|
|
11375
|
+
cloudId: Scalars['ID']['input'];
|
|
11376
|
+
items?: InputMaybe<Array<AssetsVerticalItemSelectionInput>>;
|
|
11377
|
+
metadata?: InputMaybe<Array<AssetsVerticalKeyValueInput>>;
|
|
11378
|
+
status?: InputMaybe<AssetsVerticalVerticalInstantiationCategoryStatus>;
|
|
11379
|
+
verticalInstantiationId: Scalars['ID']['input'];
|
|
11380
|
+
};
|
|
11112
11381
|
export declare type AssetsVerticalCreateVerticalInstantiationInput = {
|
|
11113
11382
|
cloudId: Scalars['ID']['input'];
|
|
11114
11383
|
type: AssetsVerticalVerticalType;
|
|
11115
11384
|
};
|
|
11385
|
+
export declare type AssetsVerticalDeleteItemMappingInput = {
|
|
11386
|
+
cloudId: Scalars['ID']['input'];
|
|
11387
|
+
id: Scalars['ID']['input'];
|
|
11388
|
+
};
|
|
11116
11389
|
export declare type AssetsVerticalGenerateInsightsInput = {
|
|
11117
11390
|
cloudId: Scalars['ID']['input'];
|
|
11118
11391
|
};
|
|
@@ -11178,6 +11451,75 @@ export declare type AssetsVerticalInventoryErrorExtension = QueryErrorExtension
|
|
|
11178
11451
|
errorType?: Maybe<Scalars['String']['output']>;
|
|
11179
11452
|
statusCode?: Maybe<Scalars['Int']['output']>;
|
|
11180
11453
|
};
|
|
11454
|
+
export declare type AssetsVerticalItemMapping = {
|
|
11455
|
+
__typename?: 'AssetsVerticalItemMapping';
|
|
11456
|
+
auditInfo: AssetsVerticalAuditInfo;
|
|
11457
|
+
cloudId: Scalars['ID']['output'];
|
|
11458
|
+
id: Scalars['ID']['output'];
|
|
11459
|
+
itemId: Scalars['ID']['output'];
|
|
11460
|
+
itemType: AssetsVerticalItemType;
|
|
11461
|
+
siteId: Scalars['ID']['output'];
|
|
11462
|
+
spaceId: Scalars['ID']['output'];
|
|
11463
|
+
workspaceId: Scalars['ID']['output'];
|
|
11464
|
+
};
|
|
11465
|
+
export declare type AssetsVerticalItemMappingConnection = {
|
|
11466
|
+
__typename?: 'AssetsVerticalItemMappingConnection';
|
|
11467
|
+
edges: Array<AssetsVerticalItemMappingEdge>;
|
|
11468
|
+
pageInfo: PageInfo;
|
|
11469
|
+
};
|
|
11470
|
+
export declare type AssetsVerticalItemMappingEdge = {
|
|
11471
|
+
__typename?: 'AssetsVerticalItemMappingEdge';
|
|
11472
|
+
cursor: Scalars['String']['output'];
|
|
11473
|
+
node: AssetsVerticalItemMapping;
|
|
11474
|
+
};
|
|
11475
|
+
export declare enum AssetsVerticalItemMappingErrorCode {
|
|
11476
|
+
Conflict = "CONFLICT",
|
|
11477
|
+
NotFound = "NOT_FOUND",
|
|
11478
|
+
ValidationFailed = "VALIDATION_FAILED"
|
|
11479
|
+
}
|
|
11480
|
+
export declare type AssetsVerticalItemMappingMutationErrorExtension = MutationErrorExtension & {
|
|
11481
|
+
__typename?: 'AssetsVerticalItemMappingMutationErrorExtension';
|
|
11482
|
+
code?: Maybe<AssetsVerticalItemMappingErrorCode>;
|
|
11483
|
+
errorType?: Maybe<Scalars['String']['output']>;
|
|
11484
|
+
statusCode?: Maybe<Scalars['Int']['output']>;
|
|
11485
|
+
};
|
|
11486
|
+
export declare type AssetsVerticalItemMappingPayload = Payload & {
|
|
11487
|
+
__typename?: 'AssetsVerticalItemMappingPayload';
|
|
11488
|
+
errors?: Maybe<Array<MutationError>>;
|
|
11489
|
+
itemMapping?: Maybe<AssetsVerticalItemMapping>;
|
|
11490
|
+
success: Scalars['Boolean']['output'];
|
|
11491
|
+
};
|
|
11492
|
+
export declare enum AssetsVerticalItemMappingQueryErrorCode {
|
|
11493
|
+
NotFound = "NOT_FOUND",
|
|
11494
|
+
ValidationFailed = "VALIDATION_FAILED"
|
|
11495
|
+
}
|
|
11496
|
+
export declare type AssetsVerticalItemMappingQueryErrorExtension = QueryErrorExtension & {
|
|
11497
|
+
__typename?: 'AssetsVerticalItemMappingQueryErrorExtension';
|
|
11498
|
+
code?: Maybe<AssetsVerticalItemMappingQueryErrorCode>;
|
|
11499
|
+
errorType?: Maybe<Scalars['String']['output']>;
|
|
11500
|
+
statusCode?: Maybe<Scalars['Int']['output']>;
|
|
11501
|
+
};
|
|
11502
|
+
export declare type AssetsVerticalItemMappingResult = AssetsVerticalItemMapping | QueryError;
|
|
11503
|
+
export declare type AssetsVerticalItemMappingsPayload = Payload & {
|
|
11504
|
+
__typename?: 'AssetsVerticalItemMappingsPayload';
|
|
11505
|
+
errors?: Maybe<Array<MutationError>>;
|
|
11506
|
+
itemMappings?: Maybe<Array<AssetsVerticalItemMapping>>;
|
|
11507
|
+
success: Scalars['Boolean']['output'];
|
|
11508
|
+
};
|
|
11509
|
+
export declare type AssetsVerticalItemSelectionInput = {
|
|
11510
|
+
itemId: Scalars['ID']['input'];
|
|
11511
|
+
itemType: AssetsVerticalItemType;
|
|
11512
|
+
siteId: Scalars['ID']['input'];
|
|
11513
|
+
spaceId: Scalars['ID']['input'];
|
|
11514
|
+
};
|
|
11515
|
+
export declare enum AssetsVerticalItemType {
|
|
11516
|
+
Request = "REQUEST",
|
|
11517
|
+
Work = "WORK"
|
|
11518
|
+
}
|
|
11519
|
+
export declare type AssetsVerticalKeyValueInput = {
|
|
11520
|
+
key: Scalars['String']['input'];
|
|
11521
|
+
value: Scalars['String']['input'];
|
|
11522
|
+
};
|
|
11181
11523
|
export declare type AssetsVerticalObject = AssetsVerticalObjectNode & {
|
|
11182
11524
|
__typename?: 'AssetsVerticalObject';
|
|
11183
11525
|
avatar?: Maybe<AssetsVerticalAvatar>;
|
|
@@ -11276,7 +11618,14 @@ export declare type AssetsVerticalStatusType = {
|
|
|
11276
11618
|
description?: Maybe<Scalars['String']['output']>;
|
|
11277
11619
|
name?: Maybe<Scalars['String']['output']>;
|
|
11278
11620
|
};
|
|
11621
|
+
export declare type AssetsVerticalUpdateVerticalInstantiationCategoryInput = {
|
|
11622
|
+
cloudId: Scalars['ID']['input'];
|
|
11623
|
+
id: Scalars['ID']['input'];
|
|
11624
|
+
metadata?: InputMaybe<Array<AssetsVerticalKeyValueInput>>;
|
|
11625
|
+
status?: InputMaybe<AssetsVerticalVerticalInstantiationCategoryStatus>;
|
|
11626
|
+
};
|
|
11279
11627
|
export declare type AssetsVerticalUpdateVerticalInstantiationInput = {
|
|
11628
|
+
categories?: InputMaybe<Array<AssetsVerticalVerticalInstantiationCategoryWithSelectionsInput>>;
|
|
11280
11629
|
cloudId: Scalars['ID']['input'];
|
|
11281
11630
|
id: Scalars['ID']['input'];
|
|
11282
11631
|
status?: InputMaybe<AssetsVerticalVerticalInstantiationStatus>;
|
|
@@ -11284,6 +11633,7 @@ export declare type AssetsVerticalUpdateVerticalInstantiationInput = {
|
|
|
11284
11633
|
export declare type AssetsVerticalVerticalInstantiation = {
|
|
11285
11634
|
__typename?: 'AssetsVerticalVerticalInstantiation';
|
|
11286
11635
|
auditInfo: AssetsVerticalAuditInfo;
|
|
11636
|
+
categories?: Maybe<AssetsVerticalVerticalInstantiationCategoryConnection>;
|
|
11287
11637
|
cloudId: Scalars['ID']['output'];
|
|
11288
11638
|
id: Scalars['ID']['output'];
|
|
11289
11639
|
status: AssetsVerticalVerticalInstantiationStatus;
|
|
@@ -11291,6 +11641,84 @@ export declare type AssetsVerticalVerticalInstantiation = {
|
|
|
11291
11641
|
version: Scalars['String']['output'];
|
|
11292
11642
|
workspaceId: Scalars['ID']['output'];
|
|
11293
11643
|
};
|
|
11644
|
+
export declare type AssetsVerticalVerticalInstantiationCategoriesArgs = {
|
|
11645
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
11646
|
+
category?: InputMaybe<AssetsVerticalVerticalInstantiationCategoryType>;
|
|
11647
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
11648
|
+
status?: InputMaybe<AssetsVerticalVerticalInstantiationCategoryStatus>;
|
|
11649
|
+
};
|
|
11650
|
+
export declare type AssetsVerticalVerticalInstantiationCategory = {
|
|
11651
|
+
__typename?: 'AssetsVerticalVerticalInstantiationCategory';
|
|
11652
|
+
auditInfo: AssetsVerticalAuditInfo;
|
|
11653
|
+
category: AssetsVerticalVerticalInstantiationCategoryType;
|
|
11654
|
+
cloudId: Scalars['ID']['output'];
|
|
11655
|
+
id: Scalars['ID']['output'];
|
|
11656
|
+
items?: Maybe<AssetsVerticalItemMappingConnection>;
|
|
11657
|
+
status: AssetsVerticalVerticalInstantiationCategoryStatus;
|
|
11658
|
+
verticalInstantiationId: Scalars['ID']['output'];
|
|
11659
|
+
workspaceId: Scalars['ID']['output'];
|
|
11660
|
+
};
|
|
11661
|
+
export declare type AssetsVerticalVerticalInstantiationCategoryItemsArgs = {
|
|
11662
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
11663
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
11664
|
+
itemType?: InputMaybe<AssetsVerticalItemType>;
|
|
11665
|
+
spaceIds?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
11666
|
+
};
|
|
11667
|
+
export declare type AssetsVerticalVerticalInstantiationCategoryConnection = {
|
|
11668
|
+
__typename?: 'AssetsVerticalVerticalInstantiationCategoryConnection';
|
|
11669
|
+
edges: Array<AssetsVerticalVerticalInstantiationCategoryEdge>;
|
|
11670
|
+
pageInfo: PageInfo;
|
|
11671
|
+
};
|
|
11672
|
+
export declare type AssetsVerticalVerticalInstantiationCategoryEdge = {
|
|
11673
|
+
__typename?: 'AssetsVerticalVerticalInstantiationCategoryEdge';
|
|
11674
|
+
cursor: Scalars['String']['output'];
|
|
11675
|
+
node: AssetsVerticalVerticalInstantiationCategory;
|
|
11676
|
+
};
|
|
11677
|
+
export declare enum AssetsVerticalVerticalInstantiationCategoryErrorCode {
|
|
11678
|
+
Conflict = "CONFLICT",
|
|
11679
|
+
NotFound = "NOT_FOUND",
|
|
11680
|
+
ValidationFailed = "VALIDATION_FAILED"
|
|
11681
|
+
}
|
|
11682
|
+
export declare type AssetsVerticalVerticalInstantiationCategoryMutationErrorExtension = MutationErrorExtension & {
|
|
11683
|
+
__typename?: 'AssetsVerticalVerticalInstantiationCategoryMutationErrorExtension';
|
|
11684
|
+
code?: Maybe<AssetsVerticalVerticalInstantiationCategoryErrorCode>;
|
|
11685
|
+
errorType?: Maybe<Scalars['String']['output']>;
|
|
11686
|
+
statusCode?: Maybe<Scalars['Int']['output']>;
|
|
11687
|
+
};
|
|
11688
|
+
export declare type AssetsVerticalVerticalInstantiationCategoryPayload = Payload & {
|
|
11689
|
+
__typename?: 'AssetsVerticalVerticalInstantiationCategoryPayload';
|
|
11690
|
+
asyncTask?: Maybe<AssetsVerticalAsyncTaskInfo>;
|
|
11691
|
+
errors?: Maybe<Array<MutationError>>;
|
|
11692
|
+
success: Scalars['Boolean']['output'];
|
|
11693
|
+
verticalInstantiationCategory?: Maybe<AssetsVerticalVerticalInstantiationCategory>;
|
|
11694
|
+
};
|
|
11695
|
+
export declare enum AssetsVerticalVerticalInstantiationCategoryQueryErrorCode {
|
|
11696
|
+
NotFound = "NOT_FOUND",
|
|
11697
|
+
ValidationFailed = "VALIDATION_FAILED"
|
|
11698
|
+
}
|
|
11699
|
+
export declare type AssetsVerticalVerticalInstantiationCategoryQueryErrorExtension = QueryErrorExtension & {
|
|
11700
|
+
__typename?: 'AssetsVerticalVerticalInstantiationCategoryQueryErrorExtension';
|
|
11701
|
+
code?: Maybe<AssetsVerticalVerticalInstantiationCategoryQueryErrorCode>;
|
|
11702
|
+
errorType?: Maybe<Scalars['String']['output']>;
|
|
11703
|
+
statusCode?: Maybe<Scalars['Int']['output']>;
|
|
11704
|
+
};
|
|
11705
|
+
export declare type AssetsVerticalVerticalInstantiationCategoryResult = AssetsVerticalVerticalInstantiationCategory | QueryError;
|
|
11706
|
+
export declare enum AssetsVerticalVerticalInstantiationCategoryStatus {
|
|
11707
|
+
Completed = "COMPLETED",
|
|
11708
|
+
Failed = "FAILED",
|
|
11709
|
+
InProgress = "IN_PROGRESS"
|
|
11710
|
+
}
|
|
11711
|
+
export declare enum AssetsVerticalVerticalInstantiationCategoryType {
|
|
11712
|
+
HardwareAssetTypesSelection = "HARDWARE_ASSET_TYPES_SELECTION",
|
|
11713
|
+
ItemSelection = "ITEM_SELECTION",
|
|
11714
|
+
UserRolesAssignment = "USER_ROLES_ASSIGNMENT"
|
|
11715
|
+
}
|
|
11716
|
+
export declare type AssetsVerticalVerticalInstantiationCategoryWithSelectionsInput = {
|
|
11717
|
+
category: AssetsVerticalVerticalInstantiationCategoryType;
|
|
11718
|
+
id?: InputMaybe<Scalars['ID']['input']>;
|
|
11719
|
+
metadata?: InputMaybe<Array<AssetsVerticalKeyValueInput>>;
|
|
11720
|
+
status?: InputMaybe<AssetsVerticalVerticalInstantiationCategoryStatus>;
|
|
11721
|
+
};
|
|
11294
11722
|
export declare type AssetsVerticalVerticalInstantiationConnection = {
|
|
11295
11723
|
__typename?: 'AssetsVerticalVerticalInstantiationConnection';
|
|
11296
11724
|
edges: Array<AssetsVerticalVerticalInstantiationEdge>;
|
|
@@ -31828,1390 +32256,6 @@ export declare type ContentPermissionsPayload = {
|
|
|
31828
32256
|
__typename?: 'ContentPermissionsPayload';
|
|
31829
32257
|
status: Scalars['Boolean']['output'];
|
|
31830
32258
|
};
|
|
31831
|
-
export declare type ContentPlatformAdvocateQuote = {
|
|
31832
|
-
__typename?: 'ContentPlatformAdvocateQuote';
|
|
31833
|
-
advocateHeadshot?: Maybe<ContentPlatformTemplateImageAsset>;
|
|
31834
|
-
advocateJobTitle?: Maybe<Scalars['String']['output']>;
|
|
31835
|
-
advocateName?: Maybe<Scalars['String']['output']>;
|
|
31836
|
-
advocateQuote?: Maybe<Scalars['String']['output']>;
|
|
31837
|
-
advocateQuoteId: Scalars['String']['output'];
|
|
31838
|
-
createdAt?: Maybe<Scalars['String']['output']>;
|
|
31839
|
-
heroQuote?: Maybe<Scalars['Boolean']['output']>;
|
|
31840
|
-
name?: Maybe<Scalars['String']['output']>;
|
|
31841
|
-
organization?: Maybe<ContentPlatformOrganization>;
|
|
31842
|
-
updatedAt?: Maybe<Scalars['String']['output']>;
|
|
31843
|
-
};
|
|
31844
|
-
export declare type ContentPlatformAnchor = {
|
|
31845
|
-
__typename?: 'ContentPlatformAnchor';
|
|
31846
|
-
anchorId: Scalars['String']['output'];
|
|
31847
|
-
anchorTopic?: Maybe<Array<ContentPlatformTaxonomyAnchorTopic>>;
|
|
31848
|
-
banner?: Maybe<Array<ContentPlatformAnchorBanner>>;
|
|
31849
|
-
callToAction?: Maybe<Array<ContentPlatformCallToAction>>;
|
|
31850
|
-
createdAt?: Maybe<Scalars['String']['output']>;
|
|
31851
|
-
headline?: Maybe<Array<ContentPlatformAnchorHeadline>>;
|
|
31852
|
-
name?: Maybe<Scalars['String']['output']>;
|
|
31853
|
-
pageVariant: Scalars['String']['output'];
|
|
31854
|
-
persona?: Maybe<Array<ContentPlatformTaxonomyPersona>>;
|
|
31855
|
-
primaryMessage?: Maybe<Array<ContentPlatformAnchorPrimaryMessage>>;
|
|
31856
|
-
product?: Maybe<Array<ContentPlatformProduct>>;
|
|
31857
|
-
results?: Maybe<Array<ContentPlatformAnchorResult>>;
|
|
31858
|
-
socialProof?: Maybe<Array<ContentPlatformAnchorSocialProof>>;
|
|
31859
|
-
updatedAt?: Maybe<Scalars['String']['output']>;
|
|
31860
|
-
};
|
|
31861
|
-
export declare type ContentPlatformAnchorBanner = {
|
|
31862
|
-
__typename?: 'ContentPlatformAnchorBanner';
|
|
31863
|
-
anchorTopic?: Maybe<Array<ContentPlatformTaxonomyAnchorTopic>>;
|
|
31864
|
-
backgroundImage?: Maybe<ContentPlatformTemplateImageAsset>;
|
|
31865
|
-
bannerImage?: Maybe<ContentPlatformTemplateImageAsset>;
|
|
31866
|
-
createdAt?: Maybe<Scalars['String']['output']>;
|
|
31867
|
-
product?: Maybe<Array<ContentPlatformProduct>>;
|
|
31868
|
-
text?: Maybe<Scalars['String']['output']>;
|
|
31869
|
-
title?: Maybe<Scalars['String']['output']>;
|
|
31870
|
-
updatedAt?: Maybe<Scalars['String']['output']>;
|
|
31871
|
-
url?: Maybe<Scalars['String']['output']>;
|
|
31872
|
-
urlText?: Maybe<Scalars['String']['output']>;
|
|
31873
|
-
};
|
|
31874
|
-
export declare type ContentPlatformAnchorContentSearchConnection = {
|
|
31875
|
-
__typename?: 'ContentPlatformAnchorContentSearchConnection';
|
|
31876
|
-
edges: Array<ContentPlatformAnchorResultEdge>;
|
|
31877
|
-
pageInfo: PageInfo;
|
|
31878
|
-
};
|
|
31879
|
-
export declare type ContentPlatformAnchorHeadline = {
|
|
31880
|
-
__typename?: 'ContentPlatformAnchorHeadline';
|
|
31881
|
-
anchorTopic?: Maybe<Array<ContentPlatformTaxonomyAnchorTopic>>;
|
|
31882
|
-
animatedTour?: Maybe<ContentPlatformAnimatedTour>;
|
|
31883
|
-
createdAt?: Maybe<Scalars['String']['output']>;
|
|
31884
|
-
id: Scalars['String']['output'];
|
|
31885
|
-
name?: Maybe<Scalars['String']['output']>;
|
|
31886
|
-
persona?: Maybe<Array<ContentPlatformTaxonomyPersona>>;
|
|
31887
|
-
planBenefits?: Maybe<Array<ContentPlatformPlanBenefits>>;
|
|
31888
|
-
product?: Maybe<Array<ContentPlatformProduct>>;
|
|
31889
|
-
subheading?: Maybe<Scalars['String']['output']>;
|
|
31890
|
-
updatedAt?: Maybe<Scalars['String']['output']>;
|
|
31891
|
-
};
|
|
31892
|
-
export declare type ContentPlatformAnchorPrimaryMessage = {
|
|
31893
|
-
__typename?: 'ContentPlatformAnchorPrimaryMessage';
|
|
31894
|
-
anchorTopic?: Maybe<Array<ContentPlatformTaxonomyAnchorTopic>>;
|
|
31895
|
-
createdAt?: Maybe<Scalars['String']['output']>;
|
|
31896
|
-
id: Scalars['String']['output'];
|
|
31897
|
-
name?: Maybe<Scalars['String']['output']>;
|
|
31898
|
-
persona?: Maybe<Array<ContentPlatformTaxonomyPersona>>;
|
|
31899
|
-
product?: Maybe<ContentPlatformProduct>;
|
|
31900
|
-
supportingExample?: Maybe<Array<ContentPlatformSupportingExample>>;
|
|
31901
|
-
updatedAt?: Maybe<Scalars['String']['output']>;
|
|
31902
|
-
};
|
|
31903
|
-
export declare type ContentPlatformAnchorResult = {
|
|
31904
|
-
__typename?: 'ContentPlatformAnchorResult';
|
|
31905
|
-
anchorTopic?: Maybe<Array<ContentPlatformTaxonomyAnchorTopic>>;
|
|
31906
|
-
asset?: Maybe<ContentPlatformTemplateImageAsset>;
|
|
31907
|
-
createdAt?: Maybe<Scalars['String']['output']>;
|
|
31908
|
-
id: Scalars['String']['output'];
|
|
31909
|
-
lozenge?: Maybe<Scalars['String']['output']>;
|
|
31910
|
-
name?: Maybe<Scalars['String']['output']>;
|
|
31911
|
-
persona?: Maybe<Array<ContentPlatformTaxonomyPersona>>;
|
|
31912
|
-
product?: Maybe<ContentPlatformProduct>;
|
|
31913
|
-
subheading?: Maybe<Scalars['String']['output']>;
|
|
31914
|
-
updatedAt?: Maybe<Scalars['String']['output']>;
|
|
31915
|
-
};
|
|
31916
|
-
export declare type ContentPlatformAnchorResultEdge = {
|
|
31917
|
-
__typename?: 'ContentPlatformAnchorResultEdge';
|
|
31918
|
-
cursor: Scalars['String']['output'];
|
|
31919
|
-
node: ContentPlatformAnchor;
|
|
31920
|
-
};
|
|
31921
|
-
export declare type ContentPlatformAnchorSocialProof = {
|
|
31922
|
-
__typename?: 'ContentPlatformAnchorSocialProof';
|
|
31923
|
-
anchorTopic?: Maybe<Array<ContentPlatformTaxonomyAnchorTopic>>;
|
|
31924
|
-
createdAt?: Maybe<Scalars['String']['output']>;
|
|
31925
|
-
customers?: Maybe<Array<ContentPlatformOrganization>>;
|
|
31926
|
-
id: Scalars['String']['output'];
|
|
31927
|
-
name?: Maybe<Scalars['String']['output']>;
|
|
31928
|
-
persona?: Maybe<Array<ContentPlatformTaxonomyPersona>>;
|
|
31929
|
-
product?: Maybe<Array<ContentPlatformProduct>>;
|
|
31930
|
-
updatedAt?: Maybe<Scalars['String']['output']>;
|
|
31931
|
-
};
|
|
31932
|
-
export declare type ContentPlatformAnimatedTour = {
|
|
31933
|
-
__typename?: 'ContentPlatformAnimatedTour';
|
|
31934
|
-
cardOverride?: Maybe<ContentPlatformAnimatedTourCard>;
|
|
31935
|
-
createdAt?: Maybe<Scalars['String']['output']>;
|
|
31936
|
-
doneCardsOverride?: Maybe<Array<ContentPlatformAnimatedTourCard>>;
|
|
31937
|
-
inProgressCardsOverride?: Maybe<Array<ContentPlatformAnimatedTourCard>>;
|
|
31938
|
-
updatedAt?: Maybe<Scalars['String']['output']>;
|
|
31939
|
-
};
|
|
31940
|
-
export declare type ContentPlatformAnimatedTourCard = {
|
|
31941
|
-
__typename?: 'ContentPlatformAnimatedTourCard';
|
|
31942
|
-
createdAt?: Maybe<Scalars['String']['output']>;
|
|
31943
|
-
epicName?: Maybe<Scalars['String']['output']>;
|
|
31944
|
-
issueTypeName?: Maybe<Scalars['String']['output']>;
|
|
31945
|
-
priority?: Maybe<Scalars['String']['output']>;
|
|
31946
|
-
summary?: Maybe<Scalars['String']['output']>;
|
|
31947
|
-
updatedAt?: Maybe<Scalars['String']['output']>;
|
|
31948
|
-
};
|
|
31949
|
-
export declare type ContentPlatformAnyContext = ContentPlatformContextApp | ContentPlatformContextProduct | ContentPlatformContextTheme;
|
|
31950
|
-
export declare type ContentPlatformArticleIntroduction = {
|
|
31951
|
-
__typename?: 'ContentPlatformArticleIntroduction';
|
|
31952
|
-
articleIntroductionAsset?: Maybe<ContentPlatformTemplateImageAsset>;
|
|
31953
|
-
articleIntroductionDetails?: Maybe<Scalars['String']['output']>;
|
|
31954
|
-
articleIntroductionName?: Maybe<Scalars['String']['output']>;
|
|
31955
|
-
componentizedIntroduction?: Maybe<Array<ContentPlatformAssetComponentAndProTipComponentAndTextComponentAndCallToActionAndQuestionComponentAndTwitterComponentAndCallOutComponentUnion>>;
|
|
31956
|
-
createdAt?: Maybe<Scalars['String']['output']>;
|
|
31957
|
-
embedLink?: Maybe<Scalars['String']['output']>;
|
|
31958
|
-
updatedAt?: Maybe<Scalars['String']['output']>;
|
|
31959
|
-
};
|
|
31960
|
-
export declare type ContentPlatformAssetComponent = {
|
|
31961
|
-
__typename?: 'ContentPlatformAssetComponent';
|
|
31962
|
-
asset?: Maybe<ContentPlatformTemplateImageAsset>;
|
|
31963
|
-
assetRelatedText?: Maybe<Scalars['String']['output']>;
|
|
31964
|
-
caption?: Maybe<Scalars['String']['output']>;
|
|
31965
|
-
createdAt?: Maybe<Scalars['String']['output']>;
|
|
31966
|
-
updatedAt?: Maybe<Scalars['String']['output']>;
|
|
31967
|
-
};
|
|
31968
|
-
export declare type ContentPlatformAssetComponentAndProTipComponentAndTextComponentAndCallToActionAndQuestionComponentAndTwitterComponentAndCallOutComponentUnion = ContentPlatformAssetComponent | ContentPlatformCallOutComponent | ContentPlatformCallToAction | ContentPlatformProTipComponent | ContentPlatformQuestionComponent | ContentPlatformTextComponent | ContentPlatformTwitterComponent;
|
|
31969
|
-
export declare type ContentPlatformAuthor = {
|
|
31970
|
-
__typename?: 'ContentPlatformAuthor';
|
|
31971
|
-
authorPicture?: Maybe<ContentPlatformTemplateImageAsset>;
|
|
31972
|
-
createdAt?: Maybe<Scalars['String']['output']>;
|
|
31973
|
-
externalContributor?: Maybe<Scalars['Boolean']['output']>;
|
|
31974
|
-
jobTitle?: Maybe<Scalars['String']['output']>;
|
|
31975
|
-
name?: Maybe<Scalars['String']['output']>;
|
|
31976
|
-
organization?: Maybe<ContentPlatformOrganization>;
|
|
31977
|
-
shortBiography?: Maybe<Scalars['String']['output']>;
|
|
31978
|
-
updatedAt?: Maybe<Scalars['String']['output']>;
|
|
31979
|
-
};
|
|
31980
|
-
export declare type ContentPlatformBeforeYouBeginComponent = {
|
|
31981
|
-
__typename?: 'ContentPlatformBeforeYouBeginComponent';
|
|
31982
|
-
audience?: Maybe<Scalars['String']['output']>;
|
|
31983
|
-
beforeYouBeginTitle?: Maybe<Scalars['String']['output']>;
|
|
31984
|
-
createdAt?: Maybe<Scalars['String']['output']>;
|
|
31985
|
-
ctaMicrocopy?: Maybe<ContentPlatformCallToActionMicrocopy>;
|
|
31986
|
-
prerequisite?: Maybe<Scalars['String']['output']>;
|
|
31987
|
-
relatedAsset?: Maybe<ContentPlatformTemplateImageAsset>;
|
|
31988
|
-
relatedQuestions?: Maybe<ContentPlatformQuestionComponent>;
|
|
31989
|
-
time?: Maybe<Scalars['String']['output']>;
|
|
31990
|
-
updatedAt?: Maybe<Scalars['String']['output']>;
|
|
31991
|
-
};
|
|
31992
|
-
export declare enum ContentPlatformBooleanOperators {
|
|
31993
|
-
And = "AND",
|
|
31994
|
-
Or = "OR"
|
|
31995
|
-
}
|
|
31996
|
-
export declare type ContentPlatformCallOutComponent = {
|
|
31997
|
-
__typename?: 'ContentPlatformCallOutComponent';
|
|
31998
|
-
asset?: Maybe<ContentPlatformTemplateImageAsset>;
|
|
31999
|
-
callOutText?: Maybe<Scalars['String']['output']>;
|
|
32000
|
-
createdAt?: Maybe<Scalars['String']['output']>;
|
|
32001
|
-
icon?: Maybe<ContentPlatformTemplateImageAsset>;
|
|
32002
|
-
title?: Maybe<Scalars['String']['output']>;
|
|
32003
|
-
updatedAt?: Maybe<Scalars['String']['output']>;
|
|
32004
|
-
};
|
|
32005
|
-
export declare type ContentPlatformCallToAction = {
|
|
32006
|
-
__typename?: 'ContentPlatformCallToAction';
|
|
32007
|
-
asset?: Maybe<ContentPlatformTemplateImageAsset>;
|
|
32008
|
-
createdAt?: Maybe<Scalars['String']['output']>;
|
|
32009
|
-
dataBlueprintModule?: Maybe<Scalars['String']['output']>;
|
|
32010
|
-
product?: Maybe<Array<ContentPlatformProduct>>;
|
|
32011
|
-
productLogo?: Maybe<ContentPlatformTemplateImageAsset>;
|
|
32012
|
-
productName?: Maybe<Scalars['String']['output']>;
|
|
32013
|
-
text?: Maybe<Scalars['String']['output']>;
|
|
32014
|
-
title?: Maybe<Scalars['String']['output']>;
|
|
32015
|
-
updatedAt?: Maybe<Scalars['String']['output']>;
|
|
32016
|
-
url?: Maybe<Scalars['String']['output']>;
|
|
32017
|
-
valueProposition?: Maybe<Scalars['String']['output']>;
|
|
32018
|
-
};
|
|
32019
|
-
export declare type ContentPlatformCallToActionAndCallToActionMicrocopyUnion = ContentPlatformCallToAction | ContentPlatformCallToActionMicrocopy;
|
|
32020
|
-
export declare type ContentPlatformCallToActionMicrocopy = {
|
|
32021
|
-
__typename?: 'ContentPlatformCallToActionMicrocopy';
|
|
32022
|
-
createdAt?: Maybe<Scalars['String']['output']>;
|
|
32023
|
-
ctaButtonText?: Maybe<Scalars['String']['output']>;
|
|
32024
|
-
ctaMicrocopyTitle?: Maybe<Scalars['String']['output']>;
|
|
32025
|
-
ctaUrl?: Maybe<Scalars['String']['output']>;
|
|
32026
|
-
updatedAt?: Maybe<Scalars['String']['output']>;
|
|
32027
|
-
};
|
|
32028
|
-
export declare type ContentPlatformCategory = {
|
|
32029
|
-
__typename?: 'ContentPlatformCategory';
|
|
32030
|
-
createdAt?: Maybe<Scalars['String']['output']>;
|
|
32031
|
-
description?: Maybe<Scalars['String']['output']>;
|
|
32032
|
-
experiment?: Maybe<Scalars['Boolean']['output']>;
|
|
32033
|
-
id: Scalars['String']['output'];
|
|
32034
|
-
name?: Maybe<Scalars['String']['output']>;
|
|
32035
|
-
shortDescriptionOneLiner?: Maybe<Scalars['String']['output']>;
|
|
32036
|
-
updatedAt?: Maybe<Scalars['String']['output']>;
|
|
32037
|
-
urlSlug?: Maybe<Scalars['String']['output']>;
|
|
32038
|
-
};
|
|
32039
|
-
export declare type ContentPlatformCdnImageModel = {
|
|
32040
|
-
__typename?: 'ContentPlatformCdnImageModel';
|
|
32041
|
-
createdAt?: Maybe<Scalars['String']['output']>;
|
|
32042
|
-
id: Scalars['String']['output'];
|
|
32043
|
-
imageAltText: Scalars['String']['output'];
|
|
32044
|
-
imageUrl: Scalars['String']['output'];
|
|
32045
|
-
updatedAt?: Maybe<Scalars['String']['output']>;
|
|
32046
|
-
};
|
|
32047
|
-
export declare type ContentPlatformCdnImageModelResultEdge = {
|
|
32048
|
-
__typename?: 'ContentPlatformCdnImageModelResultEdge';
|
|
32049
|
-
cursor: Scalars['String']['output'];
|
|
32050
|
-
node: ContentPlatformCdnImageModel;
|
|
32051
|
-
};
|
|
32052
|
-
export declare type ContentPlatformCdnImageModelSearchConnection = {
|
|
32053
|
-
__typename?: 'ContentPlatformCdnImageModelSearchConnection';
|
|
32054
|
-
edges: Array<ContentPlatformCdnImageModelResultEdge>;
|
|
32055
|
-
pageInfo: PageInfo;
|
|
32056
|
-
};
|
|
32057
|
-
export declare type ContentPlatformContentClause = {
|
|
32058
|
-
and?: InputMaybe<Array<ContentPlatformContentClause>>;
|
|
32059
|
-
fieldNamed?: InputMaybe<Scalars['String']['input']>;
|
|
32060
|
-
gte?: InputMaybe<ContentPlatformDateCondition>;
|
|
32061
|
-
hasAnyValue?: InputMaybe<Scalars['Boolean']['input']>;
|
|
32062
|
-
havingValues?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
32063
|
-
lte?: InputMaybe<ContentPlatformDateCondition>;
|
|
32064
|
-
or?: InputMaybe<Array<ContentPlatformContentClause>>;
|
|
32065
|
-
searchText?: InputMaybe<ContentPlatformSearchTextClause>;
|
|
32066
|
-
};
|
|
32067
|
-
export declare type ContentPlatformContentEdge = {
|
|
32068
|
-
__typename?: 'ContentPlatformContentEdge';
|
|
32069
|
-
cursor: Scalars['String']['output'];
|
|
32070
|
-
node: ContentPlatformContentFacet;
|
|
32071
|
-
};
|
|
32072
|
-
export declare type ContentPlatformContentFacet = {
|
|
32073
|
-
__typename?: 'ContentPlatformContentFacet';
|
|
32074
|
-
contentType: Scalars['String']['output'];
|
|
32075
|
-
context: Scalars['JSON']['output'];
|
|
32076
|
-
field: Scalars['String']['output'];
|
|
32077
|
-
totalCount: Scalars['Float']['output'];
|
|
32078
|
-
};
|
|
32079
|
-
export declare type ContentPlatformContentFacetConnection = {
|
|
32080
|
-
__typename?: 'ContentPlatformContentFacetConnection';
|
|
32081
|
-
edges: Array<ContentPlatformContentEdge>;
|
|
32082
|
-
pageInfo: PageInfo;
|
|
32083
|
-
};
|
|
32084
|
-
export declare type ContentPlatformContentQueryInput = {
|
|
32085
|
-
after?: InputMaybe<Scalars['String']['input']>;
|
|
32086
|
-
first?: InputMaybe<Scalars['Int']['input']>;
|
|
32087
|
-
sortBy?: InputMaybe<ContentPlatformSortClause>;
|
|
32088
|
-
where?: InputMaybe<ContentPlatformContentClause>;
|
|
32089
|
-
withFallback?: InputMaybe<Scalars['String']['input']>;
|
|
32090
|
-
withLocales?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
32091
|
-
withProductFeatureFlags?: InputMaybe<Scalars['JSON']['input']>;
|
|
32092
|
-
};
|
|
32093
|
-
export declare type ContentPlatformContextApp = {
|
|
32094
|
-
__typename?: 'ContentPlatformContextApp';
|
|
32095
|
-
appName: Scalars['String']['output'];
|
|
32096
|
-
contextId: Scalars['String']['output'];
|
|
32097
|
-
icon?: Maybe<ContentPlatformImageAsset>;
|
|
32098
|
-
parentProductContext: Array<ContentPlatformContextProduct>;
|
|
32099
|
-
preventProdPublishing?: Maybe<Scalars['Boolean']['output']>;
|
|
32100
|
-
title: Scalars['String']['output'];
|
|
32101
|
-
url?: Maybe<Scalars['String']['output']>;
|
|
32102
|
-
};
|
|
32103
|
-
export declare type ContentPlatformContextProduct = {
|
|
32104
|
-
__typename?: 'ContentPlatformContextProduct';
|
|
32105
|
-
contextId: Scalars['String']['output'];
|
|
32106
|
-
customSupportFormAuthenticated?: Maybe<Scalars['String']['output']>;
|
|
32107
|
-
customSupportFormUnauthenticated?: Maybe<Scalars['String']['output']>;
|
|
32108
|
-
deployment: Scalars['String']['output'];
|
|
32109
|
-
icon?: Maybe<ContentPlatformImageAsset>;
|
|
32110
|
-
preventProdPublishing?: Maybe<Scalars['Boolean']['output']>;
|
|
32111
|
-
productBlurb?: Maybe<Scalars['String']['output']>;
|
|
32112
|
-
productName: Scalars['String']['output'];
|
|
32113
|
-
supportTitle?: Maybe<Scalars['String']['output']>;
|
|
32114
|
-
title: Scalars['String']['output'];
|
|
32115
|
-
url?: Maybe<Scalars['String']['output']>;
|
|
32116
|
-
version?: Maybe<Scalars['String']['output']>;
|
|
32117
|
-
};
|
|
32118
|
-
export declare type ContentPlatformContextProductEntry = {
|
|
32119
|
-
__typename?: 'ContentPlatformContextProductEntry';
|
|
32120
|
-
contextId: Scalars['String']['output'];
|
|
32121
|
-
customSupportFormAuthenticated?: Maybe<Scalars['String']['output']>;
|
|
32122
|
-
customSupportFormUnauthenticated?: Maybe<Scalars['String']['output']>;
|
|
32123
|
-
deployment: Scalars['String']['output'];
|
|
32124
|
-
icon?: Maybe<ContentPlatformImageAssetEntry>;
|
|
32125
|
-
preventProdPublishing?: Maybe<Scalars['Boolean']['output']>;
|
|
32126
|
-
productBlurb?: Maybe<Scalars['String']['output']>;
|
|
32127
|
-
productName: Scalars['String']['output'];
|
|
32128
|
-
supportTitle?: Maybe<Scalars['String']['output']>;
|
|
32129
|
-
title: Scalars['String']['output'];
|
|
32130
|
-
url?: Maybe<Scalars['String']['output']>;
|
|
32131
|
-
version?: Maybe<Scalars['String']['output']>;
|
|
32132
|
-
};
|
|
32133
|
-
export declare type ContentPlatformContextTheme = {
|
|
32134
|
-
__typename?: 'ContentPlatformContextTheme';
|
|
32135
|
-
contextId: Scalars['String']['output'];
|
|
32136
|
-
hubName: Scalars['String']['output'];
|
|
32137
|
-
icon?: Maybe<ContentPlatformImageAsset>;
|
|
32138
|
-
preventProdPublishing: Scalars['Boolean']['output'];
|
|
32139
|
-
title: Scalars['String']['output'];
|
|
32140
|
-
url?: Maybe<Scalars['String']['output']>;
|
|
32141
|
-
};
|
|
32142
|
-
export declare type ContentPlatformCustomerStory = {
|
|
32143
|
-
__typename?: 'ContentPlatformCustomerStory';
|
|
32144
|
-
advocateQuotes?: Maybe<Array<ContentPlatformAdvocateQuote>>;
|
|
32145
|
-
callToAction?: Maybe<Array<ContentPlatformCallToAction>>;
|
|
32146
|
-
createdAt?: Maybe<Scalars['String']['output']>;
|
|
32147
|
-
customerCompany?: Maybe<ContentPlatformOrganization>;
|
|
32148
|
-
customerStoryId: Scalars['String']['output'];
|
|
32149
|
-
heroAsset?: Maybe<ContentPlatformTemplateImageAsset>;
|
|
32150
|
-
location?: Maybe<Scalars['String']['output']>;
|
|
32151
|
-
marketplaceApps?: Maybe<Array<ContentPlatformMarketplaceApp>>;
|
|
32152
|
-
numberOfUsers?: Maybe<Scalars['String']['output']>;
|
|
32153
|
-
products?: Maybe<Array<ContentPlatformProduct>>;
|
|
32154
|
-
relatedCustomerStories?: Maybe<Array<ContentPlatformCustomerStory>>;
|
|
32155
|
-
relatedPdf?: Maybe<ContentPlatformTemplateImageAsset>;
|
|
32156
|
-
relatedVideo?: Maybe<Scalars['String']['output']>;
|
|
32157
|
-
shortTitle?: Maybe<Scalars['String']['output']>;
|
|
32158
|
-
solution?: Maybe<Array<ContentPlatformSolution>>;
|
|
32159
|
-
solutionPartners?: Maybe<Array<ContentPlatformOrganization>>;
|
|
32160
|
-
stats?: Maybe<Array<ContentPlatformStat>>;
|
|
32161
|
-
story?: Maybe<Array<ContentPlatformStoryComponent>>;
|
|
32162
|
-
storyDescription?: Maybe<Scalars['String']['output']>;
|
|
32163
|
-
storyIcon?: Maybe<ContentPlatformTemplateImageAsset>;
|
|
32164
|
-
subtitle?: Maybe<Scalars['String']['output']>;
|
|
32165
|
-
title?: Maybe<Scalars['String']['output']>;
|
|
32166
|
-
updatedAt?: Maybe<Scalars['String']['output']>;
|
|
32167
|
-
urlSlug?: Maybe<Scalars['String']['output']>;
|
|
32168
|
-
};
|
|
32169
|
-
export declare type ContentPlatformCustomerStoryResultEdge = {
|
|
32170
|
-
__typename?: 'ContentPlatformCustomerStoryResultEdge';
|
|
32171
|
-
cursor: Scalars['String']['output'];
|
|
32172
|
-
node: ContentPlatformCustomerStory;
|
|
32173
|
-
};
|
|
32174
|
-
export declare type ContentPlatformCustomerStorySearchConnection = {
|
|
32175
|
-
__typename?: 'ContentPlatformCustomerStorySearchConnection';
|
|
32176
|
-
edges: Array<ContentPlatformCustomerStoryResultEdge>;
|
|
32177
|
-
pageInfo: PageInfo;
|
|
32178
|
-
};
|
|
32179
|
-
export declare type ContentPlatformDateCondition = {
|
|
32180
|
-
dateFieldNamed?: Scalars['String']['input'];
|
|
32181
|
-
havingDate: Scalars['DateTime']['input'];
|
|
32182
|
-
};
|
|
32183
|
-
export declare type ContentPlatformDateRangeFilter = {
|
|
32184
|
-
after: Scalars['DateTime']['input'];
|
|
32185
|
-
before: Scalars['DateTime']['input'];
|
|
32186
|
-
};
|
|
32187
|
-
export declare type ContentPlatformEmbeddedVideoAsset = {
|
|
32188
|
-
__typename?: 'ContentPlatformEmbeddedVideoAsset';
|
|
32189
|
-
createdAt?: Maybe<Scalars['String']['output']>;
|
|
32190
|
-
embedAssetOverlay?: Maybe<ContentPlatformTemplateImageAsset>;
|
|
32191
|
-
embedded?: Maybe<Scalars['String']['output']>;
|
|
32192
|
-
embeddedVideoAssetName?: Maybe<Scalars['String']['output']>;
|
|
32193
|
-
updatedAt?: Maybe<Scalars['String']['output']>;
|
|
32194
|
-
};
|
|
32195
|
-
export declare type ContentPlatformFeature = {
|
|
32196
|
-
__typename?: 'ContentPlatformFeature';
|
|
32197
|
-
callOut?: Maybe<Scalars['String']['output']>;
|
|
32198
|
-
createdAt?: Maybe<Scalars['String']['output']>;
|
|
32199
|
-
description?: Maybe<Scalars['String']['output']>;
|
|
32200
|
-
featureAdditionalInformation?: Maybe<Array<ContentPlatformFeatureAdditionalInformation>>;
|
|
32201
|
-
featureNameExternal?: Maybe<Scalars['String']['output']>;
|
|
32202
|
-
product?: Maybe<Array<ContentPlatformPricingProductName>>;
|
|
32203
|
-
relevantPlan?: Maybe<Array<ContentPlatformPlan>>;
|
|
32204
|
-
relevantUrl?: Maybe<Scalars['String']['output']>;
|
|
32205
|
-
updatedAt?: Maybe<Scalars['String']['output']>;
|
|
32206
|
-
};
|
|
32207
|
-
export declare type ContentPlatformFeatureAdditionalInformation = {
|
|
32208
|
-
__typename?: 'ContentPlatformFeatureAdditionalInformation';
|
|
32209
|
-
createdAt?: Maybe<Scalars['String']['output']>;
|
|
32210
|
-
featureAdditionalInformation?: Maybe<Scalars['String']['output']>;
|
|
32211
|
-
relevantPlan?: Maybe<Array<ContentPlatformPlan>>;
|
|
32212
|
-
updatedAt?: Maybe<Scalars['String']['output']>;
|
|
32213
|
-
};
|
|
32214
|
-
export declare type ContentPlatformFeatureGroup = {
|
|
32215
|
-
__typename?: 'ContentPlatformFeatureGroup';
|
|
32216
|
-
createdAt?: Maybe<Scalars['String']['output']>;
|
|
32217
|
-
featureGroupOneLiner?: Maybe<Scalars['String']['output']>;
|
|
32218
|
-
featureGroupTitleExternal?: Maybe<Scalars['String']['output']>;
|
|
32219
|
-
features?: Maybe<Array<ContentPlatformFeature>>;
|
|
32220
|
-
updatedAt?: Maybe<Scalars['String']['output']>;
|
|
32221
|
-
};
|
|
32222
|
-
export declare type ContentPlatformFeaturedVideo = {
|
|
32223
|
-
__typename?: 'ContentPlatformFeaturedVideo';
|
|
32224
|
-
callToActionText?: Maybe<Scalars['String']['output']>;
|
|
32225
|
-
createdAt?: Maybe<Scalars['String']['output']>;
|
|
32226
|
-
description?: Maybe<Scalars['String']['output']>;
|
|
32227
|
-
link?: Maybe<Scalars['String']['output']>;
|
|
32228
|
-
updatedAt?: Maybe<Scalars['String']['output']>;
|
|
32229
|
-
videoName?: Maybe<Scalars['String']['output']>;
|
|
32230
|
-
};
|
|
32231
|
-
export declare type ContentPlatformField = {
|
|
32232
|
-
field: ContentPlatformFieldNames;
|
|
32233
|
-
};
|
|
32234
|
-
export declare enum ContentPlatformFieldNames {
|
|
32235
|
-
Description = "DESCRIPTION",
|
|
32236
|
-
Title = "TITLE"
|
|
32237
|
-
}
|
|
32238
|
-
export declare type ContentPlatformFieldType = {
|
|
32239
|
-
__typename?: 'ContentPlatformFieldType';
|
|
32240
|
-
field: ContentPlatformFieldNames;
|
|
32241
|
-
};
|
|
32242
|
-
export declare type ContentPlatformFullHubArticle = {
|
|
32243
|
-
__typename?: 'ContentPlatformFullHubArticle';
|
|
32244
|
-
articleIntroduction?: Maybe<Array<ContentPlatformArticleIntroduction>>;
|
|
32245
|
-
articleRef?: Maybe<ContentPlatformHubArticle>;
|
|
32246
|
-
articleSummary?: Maybe<Scalars['String']['output']>;
|
|
32247
|
-
author?: Maybe<ContentPlatformAuthor>;
|
|
32248
|
-
bodyTextContainer?: Maybe<Array<ContentPlatformSupportingConceptWrapper>>;
|
|
32249
|
-
contentHubSubscribe?: Maybe<Array<ContentPlatformSubscribeComponent>>;
|
|
32250
|
-
createdAt?: Maybe<Scalars['String']['output']>;
|
|
32251
|
-
nextBestAction?: Maybe<Array<ContentPlatformHubArticleAndTutorialUnion>>;
|
|
32252
|
-
productDiscussedCta?: Maybe<Array<ContentPlatformCallToAction>>;
|
|
32253
|
-
relatedHub?: Maybe<Array<ContentPlatformTaxonomyContentHub>>;
|
|
32254
|
-
relatedProductFeatures?: Maybe<Array<ContentPlatformTaxonomyFeature>>;
|
|
32255
|
-
relatedTutorialCta?: Maybe<Array<ContentPlatformCallToAction>>;
|
|
32256
|
-
shareThisArticle?: Maybe<Array<ContentPlatformSocialMediaLink>>;
|
|
32257
|
-
subtitle?: Maybe<Scalars['String']['output']>;
|
|
32258
|
-
upNext?: Maybe<ContentPlatformHubArticleAndTutorialAndTopicOverviewUnion>;
|
|
32259
|
-
updatedAt?: Maybe<Scalars['String']['output']>;
|
|
32260
|
-
whitePaperCta?: Maybe<Array<ContentPlatformCallToAction>>;
|
|
32261
|
-
};
|
|
32262
|
-
export declare type ContentPlatformFullTutorial = {
|
|
32263
|
-
__typename?: 'ContentPlatformFullTutorial';
|
|
32264
|
-
author?: Maybe<ContentPlatformAuthor>;
|
|
32265
|
-
beforeYouBegin?: Maybe<Array<ContentPlatformBeforeYouBeginComponent>>;
|
|
32266
|
-
contentHubSubscribe?: Maybe<Array<ContentPlatformSubscribeComponent>>;
|
|
32267
|
-
createdAt?: Maybe<Scalars['String']['output']>;
|
|
32268
|
-
nextBestAction?: Maybe<Array<ContentPlatformHubArticleAndTutorialUnion>>;
|
|
32269
|
-
productDiscussedCta?: Maybe<Array<ContentPlatformCallToAction>>;
|
|
32270
|
-
relatedHub?: Maybe<Array<ContentPlatformTaxonomyContentHub>>;
|
|
32271
|
-
relatedProductFeatures?: Maybe<Array<ContentPlatformTaxonomyFeature>>;
|
|
32272
|
-
relatedTemplateCta?: Maybe<Array<ContentPlatformCallToAction>>;
|
|
32273
|
-
shareThisTutorial?: Maybe<Array<ContentPlatformSocialMediaLink>>;
|
|
32274
|
-
subtitle?: Maybe<Scalars['String']['output']>;
|
|
32275
|
-
tutorialInstructions?: Maybe<Array<ContentPlatformTutorialInstructionsWrapper>>;
|
|
32276
|
-
tutorialIntroduction?: Maybe<Array<ContentPlatformTutorialIntroduction>>;
|
|
32277
|
-
tutorialRef: ContentPlatformTutorial;
|
|
32278
|
-
tutorialSummary?: Maybe<Scalars['String']['output']>;
|
|
32279
|
-
upNext?: Maybe<ContentPlatformHubArticleAndTutorialAndTopicOverviewUnion>;
|
|
32280
|
-
updatedAt?: Maybe<Scalars['String']['output']>;
|
|
32281
|
-
whitePaperCta?: Maybe<Array<ContentPlatformCallToAction>>;
|
|
32282
|
-
};
|
|
32283
|
-
export declare type ContentPlatformHighlightedFeature = {
|
|
32284
|
-
__typename?: 'ContentPlatformHighlightedFeature';
|
|
32285
|
-
callOut?: Maybe<Scalars['String']['output']>;
|
|
32286
|
-
createdAt?: Maybe<Scalars['String']['output']>;
|
|
32287
|
-
highlightedFeatureDetails?: Maybe<Scalars['String']['output']>;
|
|
32288
|
-
highlightedFeatureTitleExternal?: Maybe<Scalars['String']['output']>;
|
|
32289
|
-
updatedAt?: Maybe<Scalars['String']['output']>;
|
|
32290
|
-
};
|
|
32291
|
-
export declare type ContentPlatformHubArticle = {
|
|
32292
|
-
__typename?: 'ContentPlatformHubArticle';
|
|
32293
|
-
articleBanner?: Maybe<ContentPlatformTemplateImageAsset>;
|
|
32294
|
-
articleName?: Maybe<Scalars['String']['output']>;
|
|
32295
|
-
createdAt?: Maybe<Scalars['String']['output']>;
|
|
32296
|
-
description?: Maybe<Scalars['String']['output']>;
|
|
32297
|
-
title?: Maybe<Scalars['String']['output']>;
|
|
32298
|
-
updatedAt?: Maybe<Scalars['String']['output']>;
|
|
32299
|
-
urlSlug: Scalars['String']['output'];
|
|
32300
|
-
};
|
|
32301
|
-
export declare type ContentPlatformHubArticleAndTutorialAndProductFeatureAndFeaturedVideoUnion = ContentPlatformFeaturedVideo | ContentPlatformHubArticle | ContentPlatformProductFeature | ContentPlatformTutorial;
|
|
32302
|
-
export declare type ContentPlatformHubArticleAndTutorialAndTopicOverviewUnion = ContentPlatformHubArticle | ContentPlatformTopicOverview | ContentPlatformTutorial;
|
|
32303
|
-
export declare type ContentPlatformHubArticleAndTutorialUnion = ContentPlatformHubArticle | ContentPlatformTutorial;
|
|
32304
|
-
export declare type ContentPlatformHubArticleResultEdge = {
|
|
32305
|
-
__typename?: 'ContentPlatformHubArticleResultEdge';
|
|
32306
|
-
cursor: Scalars['String']['output'];
|
|
32307
|
-
node: ContentPlatformFullHubArticle;
|
|
32308
|
-
};
|
|
32309
|
-
export declare type ContentPlatformHubArticleSearchConnection = {
|
|
32310
|
-
__typename?: 'ContentPlatformHubArticleSearchConnection';
|
|
32311
|
-
edges: Array<ContentPlatformHubArticleResultEdge>;
|
|
32312
|
-
pageInfo: PageInfo;
|
|
32313
|
-
};
|
|
32314
|
-
export declare type ContentPlatformImageAsset = {
|
|
32315
|
-
__typename?: 'ContentPlatformImageAsset';
|
|
32316
|
-
contentType: Scalars['String']['output'];
|
|
32317
|
-
description?: Maybe<Scalars['String']['output']>;
|
|
32318
|
-
details: Scalars['JSON']['output'];
|
|
32319
|
-
fileName: Scalars['String']['output'];
|
|
32320
|
-
title: Scalars['String']['output'];
|
|
32321
|
-
url: Scalars['String']['output'];
|
|
32322
|
-
};
|
|
32323
|
-
export declare type ContentPlatformImageAssetEntry = {
|
|
32324
|
-
__typename?: 'ContentPlatformImageAssetEntry';
|
|
32325
|
-
contentType: Scalars['String']['output'];
|
|
32326
|
-
description?: Maybe<Scalars['String']['output']>;
|
|
32327
|
-
details: Scalars['JSON']['output'];
|
|
32328
|
-
fileName: Scalars['String']['output'];
|
|
32329
|
-
title: Scalars['String']['output'];
|
|
32330
|
-
url: Scalars['String']['output'];
|
|
32331
|
-
};
|
|
32332
|
-
export declare type ContentPlatformImageComponent = {
|
|
32333
|
-
__typename?: 'ContentPlatformImageComponent';
|
|
32334
|
-
altTag: Scalars['String']['output'];
|
|
32335
|
-
contextReference: Array<ContentPlatformAnyContext>;
|
|
32336
|
-
image: ContentPlatformImageAsset;
|
|
32337
|
-
name: Scalars['String']['output'];
|
|
32338
|
-
};
|
|
32339
|
-
export declare type ContentPlatformIpmAnchored = {
|
|
32340
|
-
__typename?: 'ContentPlatformIpmAnchored';
|
|
32341
|
-
anchoredElement?: Maybe<Scalars['String']['output']>;
|
|
32342
|
-
createdAt?: Maybe<Scalars['String']['output']>;
|
|
32343
|
-
id: Scalars['String']['output'];
|
|
32344
|
-
updatedAt?: Maybe<Scalars['String']['output']>;
|
|
32345
|
-
};
|
|
32346
|
-
export declare type ContentPlatformIpmAnchoredAndIpmPositionUnion = ContentPlatformIpmAnchored | ContentPlatformIpmPosition;
|
|
32347
|
-
export declare type ContentPlatformIpmCompImage = {
|
|
32348
|
-
__typename?: 'ContentPlatformIpmCompImage';
|
|
32349
|
-
createdAt?: Maybe<Scalars['String']['output']>;
|
|
32350
|
-
id: Scalars['String']['output'];
|
|
32351
|
-
image?: Maybe<Scalars['JSON']['output']>;
|
|
32352
|
-
imageAltText?: Maybe<Scalars['String']['output']>;
|
|
32353
|
-
updatedAt?: Maybe<Scalars['String']['output']>;
|
|
32354
|
-
};
|
|
32355
|
-
export declare type ContentPlatformIpmCompImageAndCdnImageModelUnion = ContentPlatformCdnImageModel | ContentPlatformIpmCompImage;
|
|
32356
|
-
export declare type ContentPlatformIpmCompImageAndIpmComponentEmbeddedVideoAndCdnImageModelUnion = ContentPlatformCdnImageModel | ContentPlatformIpmCompImage | ContentPlatformIpmComponentEmbeddedVideo;
|
|
32357
|
-
export declare type ContentPlatformIpmComponentBackButton = {
|
|
32358
|
-
__typename?: 'ContentPlatformIpmComponentBackButton';
|
|
32359
|
-
buttonAltText?: Maybe<Scalars['String']['output']>;
|
|
32360
|
-
buttonText: Scalars['String']['output'];
|
|
32361
|
-
createdAt?: Maybe<Scalars['String']['output']>;
|
|
32362
|
-
id: Scalars['String']['output'];
|
|
32363
|
-
updatedAt?: Maybe<Scalars['String']['output']>;
|
|
32364
|
-
};
|
|
32365
|
-
export declare type ContentPlatformIpmComponentEmbeddedVideo = {
|
|
32366
|
-
__typename?: 'ContentPlatformIpmComponentEmbeddedVideo';
|
|
32367
|
-
createdAt?: Maybe<Scalars['String']['output']>;
|
|
32368
|
-
id: Scalars['String']['output'];
|
|
32369
|
-
updatedAt?: Maybe<Scalars['String']['output']>;
|
|
32370
|
-
videoAltText?: Maybe<Scalars['String']['output']>;
|
|
32371
|
-
videoProvider?: Maybe<Scalars['String']['output']>;
|
|
32372
|
-
videoUrl?: Maybe<Scalars['String']['output']>;
|
|
32373
|
-
};
|
|
32374
|
-
export declare type ContentPlatformIpmComponentEmbeddedVideoAndIpmCompImageAndCdnImageModelUnion = ContentPlatformCdnImageModel | ContentPlatformIpmCompImage | ContentPlatformIpmComponentEmbeddedVideo;
|
|
32375
|
-
export declare type ContentPlatformIpmComponentGsacButton = {
|
|
32376
|
-
__typename?: 'ContentPlatformIpmComponentGsacButton';
|
|
32377
|
-
buttonAltText?: Maybe<Scalars['String']['output']>;
|
|
32378
|
-
buttonText?: Maybe<Scalars['String']['output']>;
|
|
32379
|
-
createdAt?: Maybe<Scalars['String']['output']>;
|
|
32380
|
-
id: Scalars['String']['output'];
|
|
32381
|
-
requestTypeId?: Maybe<Scalars['String']['output']>;
|
|
32382
|
-
serviceDeskId?: Maybe<Scalars['String']['output']>;
|
|
32383
|
-
ticketSummary?: Maybe<Scalars['String']['output']>;
|
|
32384
|
-
updatedAt?: Maybe<Scalars['String']['output']>;
|
|
32385
|
-
};
|
|
32386
|
-
export declare type ContentPlatformIpmComponentGsacButtonAndIpmComponentLinkButtonUnion = ContentPlatformIpmComponentGsacButton | ContentPlatformIpmComponentLinkButton;
|
|
32387
|
-
export declare type ContentPlatformIpmComponentGsacButtonAndIpmComponentRemindMeLaterUnion = ContentPlatformIpmComponentGsacButton | ContentPlatformIpmComponentRemindMeLater;
|
|
32388
|
-
export declare type ContentPlatformIpmComponentLinkButton = {
|
|
32389
|
-
__typename?: 'ContentPlatformIpmComponentLinkButton';
|
|
32390
|
-
buttonAltText?: Maybe<Scalars['String']['output']>;
|
|
32391
|
-
buttonAppearance?: Maybe<Scalars['String']['output']>;
|
|
32392
|
-
buttonText?: Maybe<Scalars['String']['output']>;
|
|
32393
|
-
buttonUrl?: Maybe<Scalars['String']['output']>;
|
|
32394
|
-
createdAt?: Maybe<Scalars['String']['output']>;
|
|
32395
|
-
id: Scalars['String']['output'];
|
|
32396
|
-
updatedAt?: Maybe<Scalars['String']['output']>;
|
|
32397
|
-
};
|
|
32398
|
-
export declare type ContentPlatformIpmComponentLinkButtonAndIpmComponentGsacButtonUnion = ContentPlatformIpmComponentGsacButton | ContentPlatformIpmComponentLinkButton;
|
|
32399
|
-
export declare type ContentPlatformIpmComponentNextButton = {
|
|
32400
|
-
__typename?: 'ContentPlatformIpmComponentNextButton';
|
|
32401
|
-
buttonAltText?: Maybe<Scalars['String']['output']>;
|
|
32402
|
-
buttonText: Scalars['String']['output'];
|
|
32403
|
-
createdAt?: Maybe<Scalars['String']['output']>;
|
|
32404
|
-
id: Scalars['String']['output'];
|
|
32405
|
-
updatedAt?: Maybe<Scalars['String']['output']>;
|
|
32406
|
-
};
|
|
32407
|
-
export declare type ContentPlatformIpmComponentRemindMeLater = {
|
|
32408
|
-
__typename?: 'ContentPlatformIpmComponentRemindMeLater';
|
|
32409
|
-
buttonAltText?: Maybe<Scalars['String']['output']>;
|
|
32410
|
-
buttonSnoozeDays: Scalars['Int']['output'];
|
|
32411
|
-
buttonText: Scalars['String']['output'];
|
|
32412
|
-
createdAt?: Maybe<Scalars['String']['output']>;
|
|
32413
|
-
updatedAt?: Maybe<Scalars['String']['output']>;
|
|
32414
|
-
};
|
|
32415
|
-
export declare type ContentPlatformIpmFlag = {
|
|
32416
|
-
__typename?: 'ContentPlatformIpmFlag';
|
|
32417
|
-
body?: Maybe<Scalars['JSON']['output']>;
|
|
32418
|
-
createdAt?: Maybe<Scalars['String']['output']>;
|
|
32419
|
-
featuredDigitalAsset?: Maybe<ContentPlatformIpmComponentEmbeddedVideoAndIpmCompImageAndCdnImageModelUnion>;
|
|
32420
|
-
id: Scalars['String']['output'];
|
|
32421
|
-
ipmNumber?: Maybe<Scalars['String']['output']>;
|
|
32422
|
-
location?: Maybe<ContentPlatformIpmPositionAndIpmAnchoredUnion>;
|
|
32423
|
-
primaryButton?: Maybe<ContentPlatformIpmComponentGsacButtonAndIpmComponentLinkButtonUnion>;
|
|
32424
|
-
secondaryButton?: Maybe<ContentPlatformIpmComponentGsacButtonAndIpmComponentRemindMeLaterUnion>;
|
|
32425
|
-
title?: Maybe<Scalars['String']['output']>;
|
|
32426
|
-
updatedAt?: Maybe<Scalars['String']['output']>;
|
|
32427
|
-
variant?: Maybe<Scalars['String']['output']>;
|
|
32428
|
-
};
|
|
32429
|
-
export declare type ContentPlatformIpmFlagResultEdge = {
|
|
32430
|
-
__typename?: 'ContentPlatformIpmFlagResultEdge';
|
|
32431
|
-
cursor: Scalars['String']['output'];
|
|
32432
|
-
node: ContentPlatformIpmFlag;
|
|
32433
|
-
};
|
|
32434
|
-
export declare type ContentPlatformIpmFlagSearchConnection = {
|
|
32435
|
-
__typename?: 'ContentPlatformIpmFlagSearchConnection';
|
|
32436
|
-
edges: Array<ContentPlatformIpmFlagResultEdge>;
|
|
32437
|
-
pageInfo: PageInfo;
|
|
32438
|
-
};
|
|
32439
|
-
export declare type ContentPlatformIpmImageModal = {
|
|
32440
|
-
__typename?: 'ContentPlatformIpmImageModal';
|
|
32441
|
-
body?: Maybe<Scalars['JSON']['output']>;
|
|
32442
|
-
createdAt?: Maybe<Scalars['String']['output']>;
|
|
32443
|
-
ctaButtonText?: Maybe<Scalars['String']['output']>;
|
|
32444
|
-
ctaButtonUrl?: Maybe<Scalars['String']['output']>;
|
|
32445
|
-
id: Scalars['String']['output'];
|
|
32446
|
-
image?: Maybe<Scalars['JSON']['output']>;
|
|
32447
|
-
ipmNumber: Scalars['String']['output'];
|
|
32448
|
-
title?: Maybe<Scalars['String']['output']>;
|
|
32449
|
-
updatedAt?: Maybe<Scalars['String']['output']>;
|
|
32450
|
-
variant?: Maybe<Scalars['String']['output']>;
|
|
32451
|
-
};
|
|
32452
|
-
export declare type ContentPlatformIpmImageModalResultEdge = {
|
|
32453
|
-
__typename?: 'ContentPlatformIpmImageModalResultEdge';
|
|
32454
|
-
cursor: Scalars['String']['output'];
|
|
32455
|
-
node: ContentPlatformIpmImageModal;
|
|
32456
|
-
};
|
|
32457
|
-
export declare type ContentPlatformIpmImageModalSearchConnection = {
|
|
32458
|
-
__typename?: 'ContentPlatformIpmImageModalSearchConnection';
|
|
32459
|
-
edges: Array<ContentPlatformIpmImageModalResultEdge>;
|
|
32460
|
-
pageInfo: PageInfo;
|
|
32461
|
-
};
|
|
32462
|
-
export declare type ContentPlatformIpmInlineDialog = {
|
|
32463
|
-
__typename?: 'ContentPlatformIpmInlineDialog';
|
|
32464
|
-
anchored: ContentPlatformIpmAnchored;
|
|
32465
|
-
body: Scalars['JSON']['output'];
|
|
32466
|
-
createdAt?: Maybe<Scalars['String']['output']>;
|
|
32467
|
-
featuredImage?: Maybe<ContentPlatformIpmCompImageAndCdnImageModelUnion>;
|
|
32468
|
-
id: Scalars['String']['output'];
|
|
32469
|
-
ipmNumber: Scalars['String']['output'];
|
|
32470
|
-
primaryButton: ContentPlatformIpmComponentLinkButtonAndIpmComponentGsacButtonUnion;
|
|
32471
|
-
secondaryButton?: Maybe<ContentPlatformIpmComponentRemindMeLater>;
|
|
32472
|
-
title: Scalars['String']['output'];
|
|
32473
|
-
trigger: ContentPlatformIpmTrigger;
|
|
32474
|
-
updatedAt?: Maybe<Scalars['String']['output']>;
|
|
32475
|
-
variant: Scalars['String']['output'];
|
|
32476
|
-
};
|
|
32477
|
-
export declare type ContentPlatformIpmInlineDialogResultEdge = {
|
|
32478
|
-
__typename?: 'ContentPlatformIpmInlineDialogResultEdge';
|
|
32479
|
-
cursor: Scalars['String']['output'];
|
|
32480
|
-
node: ContentPlatformIpmInlineDialog;
|
|
32481
|
-
};
|
|
32482
|
-
export declare type ContentPlatformIpmInlineDialogSearchConnection = {
|
|
32483
|
-
__typename?: 'ContentPlatformIpmInlineDialogSearchConnection';
|
|
32484
|
-
edges: Array<ContentPlatformIpmInlineDialogResultEdge>;
|
|
32485
|
-
pageInfo: PageInfo;
|
|
32486
|
-
};
|
|
32487
|
-
export declare type ContentPlatformIpmMultiStep = {
|
|
32488
|
-
__typename?: 'ContentPlatformIpmMultiStep';
|
|
32489
|
-
body: Scalars['JSON']['output'];
|
|
32490
|
-
createdAt?: Maybe<Scalars['String']['output']>;
|
|
32491
|
-
featuredDigitalAsset?: Maybe<ContentPlatformIpmCompImageAndIpmComponentEmbeddedVideoAndCdnImageModelUnion>;
|
|
32492
|
-
id: Scalars['String']['output'];
|
|
32493
|
-
ipmNumber: Scalars['String']['output'];
|
|
32494
|
-
location?: Maybe<ContentPlatformIpmAnchoredAndIpmPositionUnion>;
|
|
32495
|
-
primaryButton: ContentPlatformIpmComponentNextButton;
|
|
32496
|
-
secondaryButton?: Maybe<ContentPlatformIpmComponentRemindMeLater>;
|
|
32497
|
-
steps: Array<ContentPlatformIpmSingleStep>;
|
|
32498
|
-
title: Scalars['String']['output'];
|
|
32499
|
-
trigger?: Maybe<ContentPlatformIpmTrigger>;
|
|
32500
|
-
updatedAt?: Maybe<Scalars['String']['output']>;
|
|
32501
|
-
variant: Scalars['String']['output'];
|
|
32502
|
-
};
|
|
32503
|
-
export declare type ContentPlatformIpmMultiStepResultEdge = {
|
|
32504
|
-
__typename?: 'ContentPlatformIpmMultiStepResultEdge';
|
|
32505
|
-
cursor: Scalars['String']['output'];
|
|
32506
|
-
node: ContentPlatformIpmMultiStep;
|
|
32507
|
-
};
|
|
32508
|
-
export declare type ContentPlatformIpmMultiStepSearchConnection = {
|
|
32509
|
-
__typename?: 'ContentPlatformIpmMultiStepSearchConnection';
|
|
32510
|
-
edges: Array<ContentPlatformIpmMultiStepResultEdge>;
|
|
32511
|
-
pageInfo: PageInfo;
|
|
32512
|
-
};
|
|
32513
|
-
export declare type ContentPlatformIpmPosition = {
|
|
32514
|
-
__typename?: 'ContentPlatformIpmPosition';
|
|
32515
|
-
createdAt?: Maybe<Scalars['String']['output']>;
|
|
32516
|
-
id: Scalars['String']['output'];
|
|
32517
|
-
positionOnPage?: Maybe<Scalars['String']['output']>;
|
|
32518
|
-
updatedAt?: Maybe<Scalars['String']['output']>;
|
|
32519
|
-
};
|
|
32520
|
-
export declare type ContentPlatformIpmPositionAndIpmAnchoredUnion = ContentPlatformIpmAnchored | ContentPlatformIpmPosition;
|
|
32521
|
-
export declare type ContentPlatformIpmSingleStep = {
|
|
32522
|
-
__typename?: 'ContentPlatformIpmSingleStep';
|
|
32523
|
-
anchored?: Maybe<ContentPlatformIpmAnchored>;
|
|
32524
|
-
body: Scalars['JSON']['output'];
|
|
32525
|
-
createdAt?: Maybe<Scalars['String']['output']>;
|
|
32526
|
-
featuredDigitalAsset?: Maybe<ContentPlatformIpmCompImageAndIpmComponentEmbeddedVideoAndCdnImageModelUnion>;
|
|
32527
|
-
id: Scalars['String']['output'];
|
|
32528
|
-
primaryButton: ContentPlatformIpmComponentNextButton;
|
|
32529
|
-
secondaryButton?: Maybe<ContentPlatformIpmComponentBackButton>;
|
|
32530
|
-
title: Scalars['String']['output'];
|
|
32531
|
-
updatedAt?: Maybe<Scalars['String']['output']>;
|
|
32532
|
-
};
|
|
32533
|
-
export declare type ContentPlatformIpmTrigger = {
|
|
32534
|
-
__typename?: 'ContentPlatformIpmTrigger';
|
|
32535
|
-
createdAt?: Maybe<Scalars['String']['output']>;
|
|
32536
|
-
id: Scalars['String']['output'];
|
|
32537
|
-
triggeringElementId: Scalars['String']['output'];
|
|
32538
|
-
triggeringEvent?: Maybe<Scalars['String']['output']>;
|
|
32539
|
-
updatedAt?: Maybe<Scalars['String']['output']>;
|
|
32540
|
-
};
|
|
32541
|
-
export declare type ContentPlatformMarketplaceApp = {
|
|
32542
|
-
__typename?: 'ContentPlatformMarketplaceApp';
|
|
32543
|
-
createdAt?: Maybe<Scalars['String']['output']>;
|
|
32544
|
-
icon?: Maybe<ContentPlatformTemplateImageAsset>;
|
|
32545
|
-
name?: Maybe<Scalars['String']['output']>;
|
|
32546
|
-
updatedAt?: Maybe<Scalars['String']['output']>;
|
|
32547
|
-
url: Scalars['String']['output'];
|
|
32548
|
-
};
|
|
32549
|
-
export declare enum ContentPlatformOperators {
|
|
32550
|
-
All = "ALL",
|
|
32551
|
-
Any = "ANY"
|
|
32552
|
-
}
|
|
32553
|
-
export declare type ContentPlatformOrganization = {
|
|
32554
|
-
__typename?: 'ContentPlatformOrganization';
|
|
32555
|
-
altDarkLogo?: Maybe<Array<ContentPlatformTemplateImageAsset>>;
|
|
32556
|
-
createdAt?: Maybe<Scalars['String']['output']>;
|
|
32557
|
-
industry?: Maybe<Array<ContentPlatformTaxonomyIndustry>>;
|
|
32558
|
-
logo?: Maybe<Array<ContentPlatformTemplateImageAsset>>;
|
|
32559
|
-
name?: Maybe<Scalars['String']['output']>;
|
|
32560
|
-
organizationSize?: Maybe<ContentPlatformTaxonomyCompanySize>;
|
|
32561
|
-
region?: Maybe<ContentPlatformTaxonomyRegion>;
|
|
32562
|
-
shortDescription?: Maybe<Scalars['String']['output']>;
|
|
32563
|
-
tagline?: Maybe<Scalars['String']['output']>;
|
|
32564
|
-
updatedAt?: Maybe<Scalars['String']['output']>;
|
|
32565
|
-
};
|
|
32566
|
-
export declare type ContentPlatformOrganizationAndAuthorUnion = ContentPlatformAuthor | ContentPlatformOrganization;
|
|
32567
|
-
export declare type ContentPlatformPlan = {
|
|
32568
|
-
__typename?: 'ContentPlatformPlan';
|
|
32569
|
-
createdAt?: Maybe<Scalars['String']['output']>;
|
|
32570
|
-
errors?: Maybe<Array<ContentPlatformPricingErrors>>;
|
|
32571
|
-
highlightedFeaturesContainer?: Maybe<Array<ContentPlatformHighlightedFeature>>;
|
|
32572
|
-
highlightedFeaturesTitle?: Maybe<Scalars['String']['output']>;
|
|
32573
|
-
microCta?: Maybe<Array<ContentPlatformCallToActionAndCallToActionMicrocopyUnion>>;
|
|
32574
|
-
planOneLiner?: Maybe<Scalars['String']['output']>;
|
|
32575
|
-
planTitleExternal?: Maybe<Scalars['String']['output']>;
|
|
32576
|
-
relatedProduct?: Maybe<Array<ContentPlatformPricingProductName>>;
|
|
32577
|
-
updatedAt?: Maybe<Scalars['String']['output']>;
|
|
32578
|
-
};
|
|
32579
|
-
export declare type ContentPlatformPlanBenefits = {
|
|
32580
|
-
__typename?: 'ContentPlatformPlanBenefits';
|
|
32581
|
-
anchorTopic?: Maybe<Array<ContentPlatformTaxonomyAnchorTopic>>;
|
|
32582
|
-
createdAt?: Maybe<Scalars['String']['output']>;
|
|
32583
|
-
description?: Maybe<Scalars['String']['output']>;
|
|
32584
|
-
id: Scalars['String']['output'];
|
|
32585
|
-
name?: Maybe<Scalars['String']['output']>;
|
|
32586
|
-
persona?: Maybe<Array<ContentPlatformTaxonomyPersona>>;
|
|
32587
|
-
plan?: Maybe<ContentPlatformTaxonomyPlan>;
|
|
32588
|
-
planFeatures?: Maybe<Array<ContentPlatformTaxonomyFeature>>;
|
|
32589
|
-
product?: Maybe<ContentPlatformProduct>;
|
|
32590
|
-
supportingAsset?: Maybe<ContentPlatformTemplateImageAsset>;
|
|
32591
|
-
updatedAt?: Maybe<Scalars['String']['output']>;
|
|
32592
|
-
};
|
|
32593
|
-
export declare type ContentPlatformPlanDetails = {
|
|
32594
|
-
__typename?: 'ContentPlatformPlanDetails';
|
|
32595
|
-
createdAt?: Maybe<Scalars['String']['output']>;
|
|
32596
|
-
planAdditionalDetails?: Maybe<Scalars['String']['output']>;
|
|
32597
|
-
planAdditionalDetailsTitleExternal?: Maybe<Scalars['String']['output']>;
|
|
32598
|
-
updatedAt?: Maybe<Scalars['String']['output']>;
|
|
32599
|
-
};
|
|
32600
|
-
export declare type ContentPlatformPricing = {
|
|
32601
|
-
__typename?: 'ContentPlatformPricing';
|
|
32602
|
-
additionalDetails?: Maybe<Array<ContentPlatformPlanDetails>>;
|
|
32603
|
-
callToActionContainer?: Maybe<Array<ContentPlatformCallToActionAndCallToActionMicrocopyUnion>>;
|
|
32604
|
-
compareFeatures?: Maybe<Array<ContentPlatformFeatureGroup>>;
|
|
32605
|
-
compareFeaturesTitle?: Maybe<Scalars['String']['output']>;
|
|
32606
|
-
comparePlans?: Maybe<Array<ContentPlatformPlan>>;
|
|
32607
|
-
createdAt?: Maybe<Scalars['String']['output']>;
|
|
32608
|
-
datacenterPlans?: Maybe<Array<ContentPlatformPlan>>;
|
|
32609
|
-
getMoreDetailsTitle?: Maybe<Scalars['String']['output']>;
|
|
32610
|
-
headline?: Maybe<Scalars['String']['output']>;
|
|
32611
|
-
pageDescription?: Maybe<Scalars['String']['output']>;
|
|
32612
|
-
pricingTitleExternal?: Maybe<Scalars['String']['output']>;
|
|
32613
|
-
pricingTitleInternal: Scalars['String']['output'];
|
|
32614
|
-
relatedProduct?: Maybe<Array<ContentPlatformPricingProductName>>;
|
|
32615
|
-
updatedAt?: Maybe<Scalars['String']['output']>;
|
|
32616
|
-
};
|
|
32617
|
-
export declare type ContentPlatformPricingErrors = {
|
|
32618
|
-
__typename?: 'ContentPlatformPricingErrors';
|
|
32619
|
-
createdAt?: Maybe<Scalars['String']['output']>;
|
|
32620
|
-
errorText?: Maybe<Scalars['String']['output']>;
|
|
32621
|
-
errorTrigger?: Maybe<Scalars['String']['output']>;
|
|
32622
|
-
updatedAt?: Maybe<Scalars['String']['output']>;
|
|
32623
|
-
};
|
|
32624
|
-
export declare type ContentPlatformPricingProductName = {
|
|
32625
|
-
__typename?: 'ContentPlatformPricingProductName';
|
|
32626
|
-
createdAt?: Maybe<Scalars['String']['output']>;
|
|
32627
|
-
productName: Scalars['String']['output'];
|
|
32628
|
-
productNameId: Scalars['String']['output'];
|
|
32629
|
-
title: Scalars['String']['output'];
|
|
32630
|
-
updatedAt?: Maybe<Scalars['String']['output']>;
|
|
32631
|
-
};
|
|
32632
|
-
export declare type ContentPlatformPricingResultEdge = {
|
|
32633
|
-
__typename?: 'ContentPlatformPricingResultEdge';
|
|
32634
|
-
cursor: Scalars['String']['output'];
|
|
32635
|
-
node: ContentPlatformPricing;
|
|
32636
|
-
};
|
|
32637
|
-
export declare type ContentPlatformPricingSearchConnection = {
|
|
32638
|
-
__typename?: 'ContentPlatformPricingSearchConnection';
|
|
32639
|
-
edges: Array<ContentPlatformPricingResultEdge>;
|
|
32640
|
-
pageInfo: PageInfo;
|
|
32641
|
-
};
|
|
32642
|
-
export declare type ContentPlatformProTipComponent = {
|
|
32643
|
-
__typename?: 'ContentPlatformProTipComponent';
|
|
32644
|
-
createdAt?: Maybe<Scalars['String']['output']>;
|
|
32645
|
-
name?: Maybe<Scalars['String']['output']>;
|
|
32646
|
-
proTipRichText?: Maybe<Scalars['String']['output']>;
|
|
32647
|
-
proTipText?: Maybe<Scalars['String']['output']>;
|
|
32648
|
-
updatedAt?: Maybe<Scalars['String']['output']>;
|
|
32649
|
-
};
|
|
32650
|
-
export declare type ContentPlatformProduct = {
|
|
32651
|
-
__typename?: 'ContentPlatformProduct';
|
|
32652
|
-
createdAt?: Maybe<Scalars['String']['output']>;
|
|
32653
|
-
deployment?: Maybe<Scalars['String']['output']>;
|
|
32654
|
-
icon?: Maybe<ContentPlatformTemplateImageAsset>;
|
|
32655
|
-
name?: Maybe<Scalars['String']['output']>;
|
|
32656
|
-
productBlurb?: Maybe<Scalars['String']['output']>;
|
|
32657
|
-
productNameId?: Maybe<Scalars['String']['output']>;
|
|
32658
|
-
updatedAt?: Maybe<Scalars['String']['output']>;
|
|
32659
|
-
url?: Maybe<Scalars['String']['output']>;
|
|
32660
|
-
};
|
|
32661
|
-
export declare type ContentPlatformProductFeature = {
|
|
32662
|
-
__typename?: 'ContentPlatformProductFeature';
|
|
32663
|
-
callToAction?: Maybe<Array<ContentPlatformCallToAction>>;
|
|
32664
|
-
createdAt?: Maybe<Scalars['String']['output']>;
|
|
32665
|
-
description?: Maybe<Scalars['String']['output']>;
|
|
32666
|
-
featureName?: Maybe<Scalars['String']['output']>;
|
|
32667
|
-
slogan?: Maybe<Scalars['String']['output']>;
|
|
32668
|
-
updatedAt?: Maybe<Scalars['String']['output']>;
|
|
32669
|
-
};
|
|
32670
|
-
export declare type ContentPlatformQuestionComponent = {
|
|
32671
|
-
__typename?: 'ContentPlatformQuestionComponent';
|
|
32672
|
-
answer?: Maybe<Scalars['String']['output']>;
|
|
32673
|
-
answerAsset?: Maybe<ContentPlatformTemplateImageAsset>;
|
|
32674
|
-
createdAt?: Maybe<Scalars['String']['output']>;
|
|
32675
|
-
questionTitle?: Maybe<Scalars['String']['output']>;
|
|
32676
|
-
updatedAt?: Maybe<Scalars['String']['output']>;
|
|
32677
|
-
};
|
|
32678
|
-
export declare type ContentPlatformReleaseNote = {
|
|
32679
|
-
__typename?: 'ContentPlatformReleaseNote';
|
|
32680
|
-
affectedUsers?: Maybe<Array<ContentPlatformTaxonomyUserRole>>;
|
|
32681
|
-
announcementPlan?: Maybe<ContentPlatformTaxonomyAnnouncementPlan>;
|
|
32682
|
-
benefitsList?: Maybe<Scalars['JSON']['output']>;
|
|
32683
|
-
changeCategory?: Maybe<ContentPlatformTaxonomyChangeCategory>;
|
|
32684
|
-
changeStatus?: Maybe<ContentPlatformStatusOfChange>;
|
|
32685
|
-
changeTargetSchedule?: Maybe<Scalars['String']['output']>;
|
|
32686
|
-
changeType?: Maybe<ContentPlatformTypeOfChange>;
|
|
32687
|
-
createdAt?: Maybe<Scalars['String']['output']>;
|
|
32688
|
-
description?: Maybe<Scalars['JSON']['output']>;
|
|
32689
|
-
fdIssueKey?: Maybe<Scalars['String']['output']>;
|
|
32690
|
-
fdIssueLink?: Maybe<Scalars['String']['output']>;
|
|
32691
|
-
featureRolloutDate?: Maybe<Scalars['String']['output']>;
|
|
32692
|
-
featureRolloutEndDate?: Maybe<Scalars['String']['output']>;
|
|
32693
|
-
featuredImage?: Maybe<ContentPlatformImageComponent>;
|
|
32694
|
-
fedRAMPProductionReleaseDate?: Maybe<Scalars['String']['output']>;
|
|
32695
|
-
fedRAMPStagingReleaseDate?: Maybe<Scalars['String']['output']>;
|
|
32696
|
-
getStarted?: Maybe<Scalars['JSON']['output']>;
|
|
32697
|
-
keyChanges?: Maybe<Scalars['JSON']['output']>;
|
|
32698
|
-
prepareForChange?: Maybe<Scalars['JSON']['output']>;
|
|
32699
|
-
publishStatus?: Maybe<Scalars['String']['output']>;
|
|
32700
|
-
reasonForChange?: Maybe<Scalars['JSON']['output']>;
|
|
32701
|
-
relatedContentLinks?: Maybe<Array<Scalars['String']['output']>>;
|
|
32702
|
-
relatedContexts?: Maybe<Array<ContentPlatformAnyContext>>;
|
|
32703
|
-
releaseNoteFlag?: Maybe<Scalars['String']['output']>;
|
|
32704
|
-
releaseNoteFlagEnvironment?: Maybe<Scalars['String']['output']>;
|
|
32705
|
-
releaseNoteFlagOffValue?: Maybe<Scalars['String']['output']>;
|
|
32706
|
-
releaseNoteFlagProject?: Maybe<Scalars['String']['output']>;
|
|
32707
|
-
releaseNoteId: Scalars['String']['output'];
|
|
32708
|
-
supportingVisuals?: Maybe<Array<ContentPlatformImageComponent>>;
|
|
32709
|
-
title?: Maybe<Scalars['String']['output']>;
|
|
32710
|
-
updatedAt?: Maybe<Scalars['String']['output']>;
|
|
32711
|
-
url?: Maybe<Scalars['String']['output']>;
|
|
32712
|
-
usersNeedingInformed?: Maybe<Array<ContentPlatformTaxonomyUserRole>>;
|
|
32713
|
-
visibleInFedRAMP: Scalars['Boolean']['output'];
|
|
32714
|
-
};
|
|
32715
|
-
export declare type ContentPlatformReleaseNoteContentSearchConnection = {
|
|
32716
|
-
__typename?: 'ContentPlatformReleaseNoteContentSearchConnection';
|
|
32717
|
-
edges: Array<ContentPlatformReleaseNoteResultEdge>;
|
|
32718
|
-
pageInfo: PageInfo;
|
|
32719
|
-
};
|
|
32720
|
-
export declare type ContentPlatformReleaseNoteFilterOptions = {
|
|
32721
|
-
changeStatus?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
32722
|
-
changeTypes?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
32723
|
-
contextId?: InputMaybe<Scalars['String']['input']>;
|
|
32724
|
-
fdIssueKeys?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
32725
|
-
fdIssueLinks?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
32726
|
-
featureFlagEnvironment?: InputMaybe<Scalars['String']['input']>;
|
|
32727
|
-
featureFlagProject?: InputMaybe<Scalars['String']['input']>;
|
|
32728
|
-
featureRolloutDates?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
32729
|
-
productFeatureFlags?: InputMaybe<Scalars['JSON']['input']>;
|
|
32730
|
-
productNames?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
32731
|
-
releaseNoteFlagOffValues?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
32732
|
-
releaseNoteFlags?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
32733
|
-
updatedAt?: InputMaybe<ContentPlatformDateRangeFilter>;
|
|
32734
|
-
};
|
|
32735
|
-
export declare type ContentPlatformReleaseNoteResultEdge = {
|
|
32736
|
-
__typename?: 'ContentPlatformReleaseNoteResultEdge';
|
|
32737
|
-
cursor: Scalars['String']['output'];
|
|
32738
|
-
node: ContentPlatformReleaseNote;
|
|
32739
|
-
};
|
|
32740
|
-
export declare type ContentPlatformReleaseNotesConnection = {
|
|
32741
|
-
__typename?: 'ContentPlatformReleaseNotesConnection';
|
|
32742
|
-
edges: Array<ContentPlatformReleaseNotesEdge>;
|
|
32743
|
-
pageInfo: PageInfo;
|
|
32744
|
-
};
|
|
32745
|
-
export declare type ContentPlatformReleaseNotesEdge = {
|
|
32746
|
-
__typename?: 'ContentPlatformReleaseNotesEdge';
|
|
32747
|
-
cursor: Scalars['String']['output'];
|
|
32748
|
-
node: ContentPlatformReleaseNote;
|
|
32749
|
-
};
|
|
32750
|
-
export declare type ContentPlatformSearchApIv2Query = {
|
|
32751
|
-
queries: Array<ContentPlatformContentQueryInput>;
|
|
32752
|
-
};
|
|
32753
|
-
export declare type ContentPlatformSearchOptions = {
|
|
32754
|
-
operator?: InputMaybe<ContentPlatformBooleanOperators>;
|
|
32755
|
-
queries: Array<ContentPlatformSearchQuery>;
|
|
32756
|
-
};
|
|
32757
|
-
export declare type ContentPlatformSearchQuery = {
|
|
32758
|
-
fieldOperator?: InputMaybe<ContentPlatformOperators>;
|
|
32759
|
-
fields?: InputMaybe<Array<ContentPlatformField>>;
|
|
32760
|
-
searchType: ContentPlatformSearchTypes;
|
|
32761
|
-
termOperator?: InputMaybe<ContentPlatformOperators>;
|
|
32762
|
-
terms: Array<Scalars['String']['input']>;
|
|
32763
|
-
};
|
|
32764
|
-
export declare type ContentPlatformSearchQueryType = {
|
|
32765
|
-
__typename?: 'ContentPlatformSearchQueryType';
|
|
32766
|
-
fieldOperator?: Maybe<ContentPlatformOperators>;
|
|
32767
|
-
fields?: Maybe<Array<ContentPlatformFieldType>>;
|
|
32768
|
-
searchType: ContentPlatformSearchTypes;
|
|
32769
|
-
termOperator?: Maybe<ContentPlatformOperators>;
|
|
32770
|
-
terms: Array<Scalars['String']['output']>;
|
|
32771
|
-
};
|
|
32772
|
-
export declare type ContentPlatformSearchTextClause = {
|
|
32773
|
-
and?: InputMaybe<Array<ContentPlatformSearchTextClause>>;
|
|
32774
|
-
exactlyMatching?: InputMaybe<ContentPlatformSearchTextMatchingClause>;
|
|
32775
|
-
or?: InputMaybe<Array<ContentPlatformSearchTextClause>>;
|
|
32776
|
-
partiallyMatching?: InputMaybe<ContentPlatformSearchTextMatchingClause>;
|
|
32777
|
-
};
|
|
32778
|
-
export declare type ContentPlatformSearchTextMatchingClause = {
|
|
32779
|
-
and?: InputMaybe<Array<ContentPlatformSearchTextMatchingClause>>;
|
|
32780
|
-
fieldNamed?: InputMaybe<Scalars['String']['input']>;
|
|
32781
|
-
havingValues?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
32782
|
-
matchingAllValues?: InputMaybe<Scalars['Boolean']['input']>;
|
|
32783
|
-
or?: InputMaybe<Array<ContentPlatformSearchTextMatchingClause>>;
|
|
32784
|
-
};
|
|
32785
|
-
export declare enum ContentPlatformSearchTypes {
|
|
32786
|
-
Contains = "CONTAINS",
|
|
32787
|
-
ExactMatch = "EXACT_MATCH"
|
|
32788
|
-
}
|
|
32789
|
-
export declare type ContentPlatformSocialMediaChannel = {
|
|
32790
|
-
__typename?: 'ContentPlatformSocialMediaChannel';
|
|
32791
|
-
createdAt?: Maybe<Scalars['String']['output']>;
|
|
32792
|
-
logo?: Maybe<ContentPlatformTemplateImageAsset>;
|
|
32793
|
-
socialMediaChannel?: Maybe<Scalars['String']['output']>;
|
|
32794
|
-
updatedAt?: Maybe<Scalars['String']['output']>;
|
|
32795
|
-
};
|
|
32796
|
-
export declare type ContentPlatformSocialMediaLink = {
|
|
32797
|
-
__typename?: 'ContentPlatformSocialMediaLink';
|
|
32798
|
-
createdAt?: Maybe<Scalars['String']['output']>;
|
|
32799
|
-
socialMediaChannel?: Maybe<ContentPlatformSocialMediaChannel>;
|
|
32800
|
-
socialMediaHandle?: Maybe<Scalars['String']['output']>;
|
|
32801
|
-
socialMediaUrl?: Maybe<Scalars['String']['output']>;
|
|
32802
|
-
updatedAt?: Maybe<Scalars['String']['output']>;
|
|
32803
|
-
};
|
|
32804
|
-
export declare type ContentPlatformSolution = {
|
|
32805
|
-
__typename?: 'ContentPlatformSolution';
|
|
32806
|
-
createdAt?: Maybe<Scalars['String']['output']>;
|
|
32807
|
-
id: Scalars['String']['output'];
|
|
32808
|
-
name?: Maybe<Scalars['String']['output']>;
|
|
32809
|
-
shortDescription?: Maybe<Scalars['String']['output']>;
|
|
32810
|
-
updatedAt?: Maybe<Scalars['String']['output']>;
|
|
32811
|
-
};
|
|
32812
|
-
export declare type ContentPlatformSortClause = {
|
|
32813
|
-
fieldNamed?: Scalars['String']['input'];
|
|
32814
|
-
havingOrder?: Scalars['String']['input'];
|
|
32815
|
-
};
|
|
32816
|
-
export declare type ContentPlatformStat = {
|
|
32817
|
-
__typename?: 'ContentPlatformStat';
|
|
32818
|
-
createdAt?: Maybe<Scalars['String']['output']>;
|
|
32819
|
-
name?: Maybe<Scalars['String']['output']>;
|
|
32820
|
-
stat?: Maybe<Scalars['String']['output']>;
|
|
32821
|
-
statDescription?: Maybe<Scalars['String']['output']>;
|
|
32822
|
-
statId: Scalars['String']['output'];
|
|
32823
|
-
statResource?: Maybe<Scalars['String']['output']>;
|
|
32824
|
-
updatedAt?: Maybe<Scalars['String']['output']>;
|
|
32825
|
-
};
|
|
32826
|
-
export declare type ContentPlatformStatusOfChange = {
|
|
32827
|
-
__typename?: 'ContentPlatformStatusOfChange';
|
|
32828
|
-
description: Scalars['String']['output'];
|
|
32829
|
-
label: Scalars['String']['output'];
|
|
32830
|
-
};
|
|
32831
|
-
export declare type ContentPlatformStoryComponent = {
|
|
32832
|
-
__typename?: 'ContentPlatformStoryComponent';
|
|
32833
|
-
bodyAsset?: Maybe<ContentPlatformTemplateImageAsset>;
|
|
32834
|
-
bodyAssetCaption?: Maybe<Scalars['String']['output']>;
|
|
32835
|
-
createdAt?: Maybe<Scalars['String']['output']>;
|
|
32836
|
-
embeddedVideoLink?: Maybe<Scalars['String']['output']>;
|
|
32837
|
-
quote?: Maybe<ContentPlatformAdvocateQuote>;
|
|
32838
|
-
storyComponentId: Scalars['String']['output'];
|
|
32839
|
-
storyText?: Maybe<Scalars['String']['output']>;
|
|
32840
|
-
updatedAt?: Maybe<Scalars['String']['output']>;
|
|
32841
|
-
};
|
|
32842
|
-
export declare type ContentPlatformSubscribeComponent = {
|
|
32843
|
-
__typename?: 'ContentPlatformSubscribeComponent';
|
|
32844
|
-
createdAt?: Maybe<Scalars['String']['output']>;
|
|
32845
|
-
ctaButtonText?: Maybe<Scalars['String']['output']>;
|
|
32846
|
-
subscribeComponentName?: Maybe<Scalars['String']['output']>;
|
|
32847
|
-
successMessage?: Maybe<Scalars['String']['output']>;
|
|
32848
|
-
updatedAt?: Maybe<Scalars['String']['output']>;
|
|
32849
|
-
valueProposition?: Maybe<Scalars['String']['output']>;
|
|
32850
|
-
};
|
|
32851
|
-
export declare type ContentPlatformSupportingConceptWrapper = {
|
|
32852
|
-
__typename?: 'ContentPlatformSupportingConceptWrapper';
|
|
32853
|
-
contentComponents?: Maybe<Array<ContentPlatformTextComponentAndAssetComponentAndProTipComponentAndTwitterComponentAndEmbeddedVideoAssetAndCallToActionAndCallOutComponentAndQuestionComponentUnion>>;
|
|
32854
|
-
createdAt?: Maybe<Scalars['String']['output']>;
|
|
32855
|
-
name?: Maybe<Scalars['String']['output']>;
|
|
32856
|
-
updatedAt?: Maybe<Scalars['String']['output']>;
|
|
32857
|
-
};
|
|
32858
|
-
export declare type ContentPlatformSupportingExample = {
|
|
32859
|
-
__typename?: 'ContentPlatformSupportingExample';
|
|
32860
|
-
advocateQuote?: Maybe<ContentPlatformAdvocateQuote>;
|
|
32861
|
-
anchorTopic?: Maybe<Array<ContentPlatformTaxonomyAnchorTopic>>;
|
|
32862
|
-
createdAt?: Maybe<Scalars['String']['output']>;
|
|
32863
|
-
heading?: Maybe<Scalars['String']['output']>;
|
|
32864
|
-
id: Scalars['String']['output'];
|
|
32865
|
-
name?: Maybe<Scalars['String']['output']>;
|
|
32866
|
-
persona?: Maybe<Array<ContentPlatformTaxonomyPersona>>;
|
|
32867
|
-
product?: Maybe<Array<ContentPlatformProduct>>;
|
|
32868
|
-
proofpoint?: Maybe<Scalars['String']['output']>;
|
|
32869
|
-
supportingAsset?: Maybe<ContentPlatformTemplateImageAsset>;
|
|
32870
|
-
updatedAt?: Maybe<Scalars['String']['output']>;
|
|
32871
|
-
};
|
|
32872
|
-
export declare type ContentPlatformTaxonomyAnchorTopic = {
|
|
32873
|
-
__typename?: 'ContentPlatformTaxonomyAnchorTopic';
|
|
32874
|
-
createdAt?: Maybe<Scalars['String']['output']>;
|
|
32875
|
-
description?: Maybe<Scalars['String']['output']>;
|
|
32876
|
-
id: Scalars['String']['output'];
|
|
32877
|
-
name?: Maybe<Scalars['String']['output']>;
|
|
32878
|
-
shortDescriptionOneLiner?: Maybe<Scalars['String']['output']>;
|
|
32879
|
-
updatedAt?: Maybe<Scalars['String']['output']>;
|
|
32880
|
-
};
|
|
32881
|
-
export declare type ContentPlatformTaxonomyAnnouncementPlan = {
|
|
32882
|
-
__typename?: 'ContentPlatformTaxonomyAnnouncementPlan';
|
|
32883
|
-
description: Scalars['String']['output'];
|
|
32884
|
-
title: Scalars['String']['output'];
|
|
32885
|
-
};
|
|
32886
|
-
export declare type ContentPlatformTaxonomyAnnouncementPlanEntry = {
|
|
32887
|
-
__typename?: 'ContentPlatformTaxonomyAnnouncementPlanEntry';
|
|
32888
|
-
description: Scalars['String']['output'];
|
|
32889
|
-
title: Scalars['String']['output'];
|
|
32890
|
-
};
|
|
32891
|
-
export declare type ContentPlatformTaxonomyChangeCategory = {
|
|
32892
|
-
__typename?: 'ContentPlatformTaxonomyChangeCategory';
|
|
32893
|
-
description: Scalars['String']['output'];
|
|
32894
|
-
title: Scalars['String']['output'];
|
|
32895
|
-
};
|
|
32896
|
-
export declare type ContentPlatformTaxonomyCompanySize = {
|
|
32897
|
-
__typename?: 'ContentPlatformTaxonomyCompanySize';
|
|
32898
|
-
createdAt?: Maybe<Scalars['String']['output']>;
|
|
32899
|
-
name?: Maybe<Scalars['String']['output']>;
|
|
32900
|
-
shortDescription?: Maybe<Scalars['String']['output']>;
|
|
32901
|
-
updatedAt?: Maybe<Scalars['String']['output']>;
|
|
32902
|
-
};
|
|
32903
|
-
export declare type ContentPlatformTaxonomyContentHub = {
|
|
32904
|
-
__typename?: 'ContentPlatformTaxonomyContentHub';
|
|
32905
|
-
createdAt?: Maybe<Scalars['String']['output']>;
|
|
32906
|
-
description?: Maybe<Scalars['String']['output']>;
|
|
32907
|
-
shortDescriptionOneLiner?: Maybe<Scalars['String']['output']>;
|
|
32908
|
-
title?: Maybe<Scalars['String']['output']>;
|
|
32909
|
-
updatedAt?: Maybe<Scalars['String']['output']>;
|
|
32910
|
-
};
|
|
32911
|
-
export declare type ContentPlatformTaxonomyFeature = {
|
|
32912
|
-
__typename?: 'ContentPlatformTaxonomyFeature';
|
|
32913
|
-
createdAt?: Maybe<Scalars['String']['output']>;
|
|
32914
|
-
description?: Maybe<Scalars['String']['output']>;
|
|
32915
|
-
id: Scalars['String']['output'];
|
|
32916
|
-
name?: Maybe<Scalars['String']['output']>;
|
|
32917
|
-
shortDescriptionOneLiner?: Maybe<Scalars['String']['output']>;
|
|
32918
|
-
updatedAt?: Maybe<Scalars['String']['output']>;
|
|
32919
|
-
};
|
|
32920
|
-
export declare type ContentPlatformTaxonomyIndustry = {
|
|
32921
|
-
__typename?: 'ContentPlatformTaxonomyIndustry';
|
|
32922
|
-
createdAt?: Maybe<Scalars['String']['output']>;
|
|
32923
|
-
name?: Maybe<Scalars['String']['output']>;
|
|
32924
|
-
shortDescription?: Maybe<Scalars['String']['output']>;
|
|
32925
|
-
updatedAt?: Maybe<Scalars['String']['output']>;
|
|
32926
|
-
};
|
|
32927
|
-
export declare type ContentPlatformTaxonomyPersona = {
|
|
32928
|
-
__typename?: 'ContentPlatformTaxonomyPersona';
|
|
32929
|
-
createdAt?: Maybe<Scalars['String']['output']>;
|
|
32930
|
-
id: Scalars['String']['output'];
|
|
32931
|
-
name?: Maybe<Scalars['String']['output']>;
|
|
32932
|
-
personaDescription?: Maybe<Scalars['String']['output']>;
|
|
32933
|
-
personaShortDescriptionOneLiner?: Maybe<Scalars['String']['output']>;
|
|
32934
|
-
updatedAt?: Maybe<Scalars['String']['output']>;
|
|
32935
|
-
};
|
|
32936
|
-
export declare type ContentPlatformTaxonomyPlan = {
|
|
32937
|
-
__typename?: 'ContentPlatformTaxonomyPlan';
|
|
32938
|
-
createdAt?: Maybe<Scalars['String']['output']>;
|
|
32939
|
-
description?: Maybe<Scalars['String']['output']>;
|
|
32940
|
-
id: Scalars['String']['output'];
|
|
32941
|
-
name?: Maybe<Scalars['String']['output']>;
|
|
32942
|
-
shortDescriptionOneLiner?: Maybe<Scalars['String']['output']>;
|
|
32943
|
-
updatedAt?: Maybe<Scalars['String']['output']>;
|
|
32944
|
-
};
|
|
32945
|
-
export declare type ContentPlatformTaxonomyRegion = {
|
|
32946
|
-
__typename?: 'ContentPlatformTaxonomyRegion';
|
|
32947
|
-
createdAt?: Maybe<Scalars['String']['output']>;
|
|
32948
|
-
name?: Maybe<Scalars['String']['output']>;
|
|
32949
|
-
shortDescription?: Maybe<Scalars['String']['output']>;
|
|
32950
|
-
updatedAt?: Maybe<Scalars['String']['output']>;
|
|
32951
|
-
};
|
|
32952
|
-
export declare type ContentPlatformTaxonomyTemplateType = {
|
|
32953
|
-
__typename?: 'ContentPlatformTaxonomyTemplateType';
|
|
32954
|
-
createdAt?: Maybe<Scalars['String']['output']>;
|
|
32955
|
-
description?: Maybe<Scalars['JSON']['output']>;
|
|
32956
|
-
icon?: Maybe<ContentPlatformTemplateImageAsset>;
|
|
32957
|
-
id: Scalars['String']['output'];
|
|
32958
|
-
shortDescriptionOneLiner?: Maybe<Scalars['String']['output']>;
|
|
32959
|
-
templateTypeName?: Maybe<Scalars['String']['output']>;
|
|
32960
|
-
updatedAt?: Maybe<Scalars['String']['output']>;
|
|
32961
|
-
};
|
|
32962
|
-
export declare type ContentPlatformTaxonomyUserRole = {
|
|
32963
|
-
__typename?: 'ContentPlatformTaxonomyUserRole';
|
|
32964
|
-
description: Scalars['String']['output'];
|
|
32965
|
-
title: Scalars['String']['output'];
|
|
32966
|
-
};
|
|
32967
|
-
export declare type ContentPlatformTaxonomyUserRoleNew = {
|
|
32968
|
-
__typename?: 'ContentPlatformTaxonomyUserRoleNew';
|
|
32969
|
-
createdAt?: Maybe<Scalars['String']['output']>;
|
|
32970
|
-
roleDescription?: Maybe<Scalars['String']['output']>;
|
|
32971
|
-
updatedAt?: Maybe<Scalars['String']['output']>;
|
|
32972
|
-
userRole?: Maybe<Scalars['String']['output']>;
|
|
32973
|
-
userRoleId: Scalars['String']['output'];
|
|
32974
|
-
};
|
|
32975
|
-
export declare type ContentPlatformTemplate = {
|
|
32976
|
-
__typename?: 'ContentPlatformTemplate';
|
|
32977
|
-
aboutThisTemplate?: Maybe<Scalars['String']['output']>;
|
|
32978
|
-
category?: Maybe<Array<ContentPlatformCategory>>;
|
|
32979
|
-
contributor?: Maybe<ContentPlatformOrganizationAndAuthorUnion>;
|
|
32980
|
-
createdAt?: Maybe<Scalars['String']['output']>;
|
|
32981
|
-
howToUseThisTemplate?: Maybe<Array<ContentPlatformTemplateGuide>>;
|
|
32982
|
-
keyFeatures?: Maybe<Array<ContentPlatformTaxonomyFeature>>;
|
|
32983
|
-
name?: Maybe<Scalars['String']['output']>;
|
|
32984
|
-
oneLinerHeadline?: Maybe<Scalars['String']['output']>;
|
|
32985
|
-
pluginModuleKey: Scalars['String']['output'];
|
|
32986
|
-
previewBlurb?: Maybe<Scalars['String']['output']>;
|
|
32987
|
-
product?: Maybe<Array<ContentPlatformProduct>>;
|
|
32988
|
-
relatedTemplates?: Maybe<Array<ContentPlatformTemplate>>;
|
|
32989
|
-
targetAudience?: Maybe<Array<ContentPlatformTaxonomyUserRoleNew>>;
|
|
32990
|
-
targetOrganizationSize?: Maybe<Array<ContentPlatformTaxonomyCompanySize>>;
|
|
32991
|
-
templateBenefits?: Maybe<Array<ContentPlatformTemplateBenefitContainer>>;
|
|
32992
|
-
templateIcon?: Maybe<ContentPlatformTemplateImageAsset>;
|
|
32993
|
-
templateId: Scalars['String']['output'];
|
|
32994
|
-
templateOverview?: Maybe<Array<ContentPlatformTemplateOverview>>;
|
|
32995
|
-
templatePreview?: Maybe<Array<ContentPlatformTemplateImageAsset>>;
|
|
32996
|
-
templateProductRationale?: Maybe<Array<ContentPlatformTemplateProductRationale>>;
|
|
32997
|
-
templateType?: Maybe<Array<ContentPlatformTaxonomyTemplateType>>;
|
|
32998
|
-
updatedAt?: Maybe<Scalars['String']['output']>;
|
|
32999
|
-
urlSlug?: Maybe<Scalars['String']['output']>;
|
|
33000
|
-
};
|
|
33001
|
-
export declare type ContentPlatformTemplateBenefit = {
|
|
33002
|
-
__typename?: 'ContentPlatformTemplateBenefit';
|
|
33003
|
-
createdAt?: Maybe<Scalars['String']['output']>;
|
|
33004
|
-
name?: Maybe<Scalars['String']['output']>;
|
|
33005
|
-
shortDescription?: Maybe<Scalars['String']['output']>;
|
|
33006
|
-
updatedAt?: Maybe<Scalars['String']['output']>;
|
|
33007
|
-
};
|
|
33008
|
-
export declare type ContentPlatformTemplateBenefitContainer = {
|
|
33009
|
-
__typename?: 'ContentPlatformTemplateBenefitContainer';
|
|
33010
|
-
benefitsTitle?: Maybe<Scalars['String']['output']>;
|
|
33011
|
-
createdAt?: Maybe<Scalars['String']['output']>;
|
|
33012
|
-
name?: Maybe<Scalars['String']['output']>;
|
|
33013
|
-
templateBenefitContainer?: Maybe<Array<ContentPlatformTemplateBenefit>>;
|
|
33014
|
-
updatedAt?: Maybe<Scalars['String']['output']>;
|
|
33015
|
-
};
|
|
33016
|
-
export declare type ContentPlatformTemplateCollection = {
|
|
33017
|
-
__typename?: 'ContentPlatformTemplateCollection';
|
|
33018
|
-
aboutThisCollection?: Maybe<Scalars['String']['output']>;
|
|
33019
|
-
aboutThisCollectionHeader?: Maybe<Scalars['String']['output']>;
|
|
33020
|
-
aboutThisCollectionImage?: Maybe<ContentPlatformTemplateImageAsset>;
|
|
33021
|
-
collectionIcon?: Maybe<ContentPlatformTemplateImageAsset>;
|
|
33022
|
-
collectionId: Scalars['String']['output'];
|
|
33023
|
-
createdAt?: Maybe<Scalars['String']['output']>;
|
|
33024
|
-
howToUseThisCollection?: Maybe<ContentPlatformTemplateCollectionGuide>;
|
|
33025
|
-
name?: Maybe<Scalars['String']['output']>;
|
|
33026
|
-
oneLinerHeadline?: Maybe<Scalars['String']['output']>;
|
|
33027
|
-
targetAudience?: Maybe<Array<ContentPlatformTaxonomyUserRoleNew>>;
|
|
33028
|
-
targetOrganizationSize?: Maybe<Array<ContentPlatformTaxonomyCompanySize>>;
|
|
33029
|
-
updatedAt?: Maybe<Scalars['String']['output']>;
|
|
33030
|
-
urlSlug?: Maybe<Scalars['String']['output']>;
|
|
33031
|
-
};
|
|
33032
|
-
export declare type ContentPlatformTemplateCollectionContentSearchConnection = {
|
|
33033
|
-
__typename?: 'ContentPlatformTemplateCollectionContentSearchConnection';
|
|
33034
|
-
edges: Array<ContentPlatformTemplateCollectionResultEdge>;
|
|
33035
|
-
pageInfo: PageInfo;
|
|
33036
|
-
};
|
|
33037
|
-
export declare type ContentPlatformTemplateCollectionGuide = {
|
|
33038
|
-
__typename?: 'ContentPlatformTemplateCollectionGuide';
|
|
33039
|
-
collectionSteps?: Maybe<Array<ContentPlatformTemplateCollectionStep>>;
|
|
33040
|
-
createdAt?: Maybe<Scalars['String']['output']>;
|
|
33041
|
-
id: Scalars['String']['output'];
|
|
33042
|
-
name?: Maybe<Scalars['String']['output']>;
|
|
33043
|
-
updatedAt?: Maybe<Scalars['String']['output']>;
|
|
33044
|
-
};
|
|
33045
|
-
export declare type ContentPlatformTemplateCollectionResultEdge = {
|
|
33046
|
-
__typename?: 'ContentPlatformTemplateCollectionResultEdge';
|
|
33047
|
-
cursor: Scalars['String']['output'];
|
|
33048
|
-
node: ContentPlatformTemplateCollection;
|
|
33049
|
-
};
|
|
33050
|
-
export declare type ContentPlatformTemplateCollectionStep = {
|
|
33051
|
-
__typename?: 'ContentPlatformTemplateCollectionStep';
|
|
33052
|
-
createdAt?: Maybe<Scalars['String']['output']>;
|
|
33053
|
-
id: Scalars['String']['output'];
|
|
33054
|
-
name?: Maybe<Scalars['String']['output']>;
|
|
33055
|
-
relatedTemplate?: Maybe<ContentPlatformTemplate>;
|
|
33056
|
-
stepDescription?: Maybe<Scalars['String']['output']>;
|
|
33057
|
-
stepSubheading?: Maybe<Scalars['String']['output']>;
|
|
33058
|
-
updatedAt?: Maybe<Scalars['String']['output']>;
|
|
33059
|
-
};
|
|
33060
|
-
export declare type ContentPlatformTemplateContentSearchConnection = {
|
|
33061
|
-
__typename?: 'ContentPlatformTemplateContentSearchConnection';
|
|
33062
|
-
edges: Array<ContentPlatformTemplateResultEdge>;
|
|
33063
|
-
pageInfo: PageInfo;
|
|
33064
|
-
};
|
|
33065
|
-
export declare type ContentPlatformTemplateGuide = {
|
|
33066
|
-
__typename?: 'ContentPlatformTemplateGuide';
|
|
33067
|
-
createdAt?: Maybe<Scalars['String']['output']>;
|
|
33068
|
-
name?: Maybe<Scalars['String']['output']>;
|
|
33069
|
-
steps?: Maybe<Array<ContentPlatformTemplateUseStep>>;
|
|
33070
|
-
updatedAt?: Maybe<Scalars['String']['output']>;
|
|
33071
|
-
};
|
|
33072
|
-
export declare type ContentPlatformTemplateImageAsset = {
|
|
33073
|
-
__typename?: 'ContentPlatformTemplateImageAsset';
|
|
33074
|
-
contentType: Scalars['String']['output'];
|
|
33075
|
-
createdAt?: Maybe<Scalars['String']['output']>;
|
|
33076
|
-
description?: Maybe<Scalars['String']['output']>;
|
|
33077
|
-
details: Scalars['JSON']['output'];
|
|
33078
|
-
fileName: Scalars['String']['output'];
|
|
33079
|
-
title?: Maybe<Scalars['String']['output']>;
|
|
33080
|
-
updatedAt?: Maybe<Scalars['String']['output']>;
|
|
33081
|
-
url: Scalars['String']['output'];
|
|
33082
|
-
};
|
|
33083
|
-
export declare type ContentPlatformTemplateOverview = {
|
|
33084
|
-
__typename?: 'ContentPlatformTemplateOverview';
|
|
33085
|
-
createdAt?: Maybe<Scalars['String']['output']>;
|
|
33086
|
-
name?: Maybe<Scalars['String']['output']>;
|
|
33087
|
-
overviewDescription?: Maybe<Scalars['String']['output']>;
|
|
33088
|
-
overviewTitle?: Maybe<Scalars['String']['output']>;
|
|
33089
|
-
updatedAt?: Maybe<Scalars['String']['output']>;
|
|
33090
|
-
};
|
|
33091
|
-
export declare type ContentPlatformTemplateProductRationale = {
|
|
33092
|
-
__typename?: 'ContentPlatformTemplateProductRationale';
|
|
33093
|
-
createdAt?: Maybe<Scalars['String']['output']>;
|
|
33094
|
-
name?: Maybe<Scalars['String']['output']>;
|
|
33095
|
-
rationaleTitle?: Maybe<Scalars['String']['output']>;
|
|
33096
|
-
templateProductRationaleDescription?: Maybe<Scalars['String']['output']>;
|
|
33097
|
-
updatedAt?: Maybe<Scalars['String']['output']>;
|
|
33098
|
-
};
|
|
33099
|
-
export declare type ContentPlatformTemplateResultEdge = {
|
|
33100
|
-
__typename?: 'ContentPlatformTemplateResultEdge';
|
|
33101
|
-
cursor: Scalars['String']['output'];
|
|
33102
|
-
node: ContentPlatformTemplate;
|
|
33103
|
-
};
|
|
33104
|
-
export declare type ContentPlatformTemplateUseStep = {
|
|
33105
|
-
__typename?: 'ContentPlatformTemplateUseStep';
|
|
33106
|
-
asset?: Maybe<ContentPlatformTemplateImageAsset>;
|
|
33107
|
-
createdAt?: Maybe<Scalars['String']['output']>;
|
|
33108
|
-
description?: Maybe<Scalars['String']['output']>;
|
|
33109
|
-
name?: Maybe<Scalars['String']['output']>;
|
|
33110
|
-
updatedAt?: Maybe<Scalars['String']['output']>;
|
|
33111
|
-
};
|
|
33112
|
-
export declare type ContentPlatformTextComponent = {
|
|
33113
|
-
__typename?: 'ContentPlatformTextComponent';
|
|
33114
|
-
bodyText?: Maybe<Scalars['String']['output']>;
|
|
33115
|
-
createdAt?: Maybe<Scalars['String']['output']>;
|
|
33116
|
-
name?: Maybe<Scalars['String']['output']>;
|
|
33117
|
-
updatedAt?: Maybe<Scalars['String']['output']>;
|
|
33118
|
-
};
|
|
33119
|
-
export declare type ContentPlatformTextComponentAndAssetComponentAndProTipComponentAndTwitterComponentAndEmbeddedVideoAssetAndCallToActionAndCallOutComponentAndQuestionComponentUnion = ContentPlatformAssetComponent | ContentPlatformCallOutComponent | ContentPlatformCallToAction | ContentPlatformEmbeddedVideoAsset | ContentPlatformProTipComponent | ContentPlatformQuestionComponent | ContentPlatformTextComponent | ContentPlatformTwitterComponent;
|
|
33120
|
-
export declare type ContentPlatformTopicIntroduction = {
|
|
33121
|
-
__typename?: 'ContentPlatformTopicIntroduction';
|
|
33122
|
-
asset?: Maybe<Array<ContentPlatformTemplateImageAsset>>;
|
|
33123
|
-
createdAt?: Maybe<Scalars['String']['output']>;
|
|
33124
|
-
details?: Maybe<Scalars['String']['output']>;
|
|
33125
|
-
embedLink?: Maybe<Scalars['String']['output']>;
|
|
33126
|
-
title?: Maybe<Scalars['String']['output']>;
|
|
33127
|
-
updatedAt?: Maybe<Scalars['String']['output']>;
|
|
33128
|
-
};
|
|
33129
|
-
export declare type ContentPlatformTopicOverview = {
|
|
33130
|
-
__typename?: 'ContentPlatformTopicOverview';
|
|
33131
|
-
author?: Maybe<ContentPlatformAuthor>;
|
|
33132
|
-
bannerImage?: Maybe<ContentPlatformTemplateImageAsset>;
|
|
33133
|
-
bodyTextContainer?: Maybe<Array<ContentPlatformSupportingConceptWrapper>>;
|
|
33134
|
-
createdAt?: Maybe<Scalars['String']['output']>;
|
|
33135
|
-
description?: Maybe<Scalars['String']['output']>;
|
|
33136
|
-
featuredContentContainer?: Maybe<Array<ContentPlatformHubArticleAndTutorialAndProductFeatureAndFeaturedVideoUnion>>;
|
|
33137
|
-
mainCallToAction?: Maybe<ContentPlatformCallToAction>;
|
|
33138
|
-
name?: Maybe<Scalars['String']['output']>;
|
|
33139
|
-
nextBestAction?: Maybe<Array<ContentPlatformHubArticleAndTutorialUnion>>;
|
|
33140
|
-
relatedHub?: Maybe<Array<ContentPlatformTaxonomyContentHub>>;
|
|
33141
|
-
subtitle?: Maybe<Scalars['String']['output']>;
|
|
33142
|
-
title?: Maybe<Scalars['String']['output']>;
|
|
33143
|
-
topicIntroduction?: Maybe<Array<ContentPlatformTopicIntroduction>>;
|
|
33144
|
-
topicOverviewId: Scalars['String']['output'];
|
|
33145
|
-
upNextFooter?: Maybe<ContentPlatformHubArticle>;
|
|
33146
|
-
updatedAt?: Maybe<Scalars['String']['output']>;
|
|
33147
|
-
urlSlug: Scalars['String']['output'];
|
|
33148
|
-
};
|
|
33149
|
-
export declare type ContentPlatformTopicOverviewContentSearchConnection = {
|
|
33150
|
-
__typename?: 'ContentPlatformTopicOverviewContentSearchConnection';
|
|
33151
|
-
edges: Array<ContentPlatformTopicOverviewResultEdge>;
|
|
33152
|
-
pageInfo: PageInfo;
|
|
33153
|
-
};
|
|
33154
|
-
export declare type ContentPlatformTopicOverviewResultEdge = {
|
|
33155
|
-
__typename?: 'ContentPlatformTopicOverviewResultEdge';
|
|
33156
|
-
cursor: Scalars['String']['output'];
|
|
33157
|
-
node: ContentPlatformTopicOverview;
|
|
33158
|
-
};
|
|
33159
|
-
export declare type ContentPlatformTutorial = {
|
|
33160
|
-
__typename?: 'ContentPlatformTutorial';
|
|
33161
|
-
createdAt?: Maybe<Scalars['String']['output']>;
|
|
33162
|
-
description?: Maybe<Scalars['String']['output']>;
|
|
33163
|
-
title?: Maybe<Scalars['String']['output']>;
|
|
33164
|
-
tutorialBanner?: Maybe<ContentPlatformTemplateImageAsset>;
|
|
33165
|
-
tutorialName?: Maybe<Scalars['String']['output']>;
|
|
33166
|
-
updatedAt?: Maybe<Scalars['String']['output']>;
|
|
33167
|
-
urlSlug: Scalars['String']['output'];
|
|
33168
|
-
};
|
|
33169
|
-
export declare type ContentPlatformTutorialInstructionsWrapper = {
|
|
33170
|
-
__typename?: 'ContentPlatformTutorialInstructionsWrapper';
|
|
33171
|
-
createdAt?: Maybe<Scalars['String']['output']>;
|
|
33172
|
-
tutorialInstructionSteps?: Maybe<Array<ContentPlatformTutorialUseStep>>;
|
|
33173
|
-
tutorialInstructionsTitle?: Maybe<Scalars['String']['output']>;
|
|
33174
|
-
updatedAt?: Maybe<Scalars['String']['output']>;
|
|
33175
|
-
};
|
|
33176
|
-
export declare type ContentPlatformTutorialIntroduction = {
|
|
33177
|
-
__typename?: 'ContentPlatformTutorialIntroduction';
|
|
33178
|
-
createdAt?: Maybe<Scalars['String']['output']>;
|
|
33179
|
-
embedLink?: Maybe<Scalars['String']['output']>;
|
|
33180
|
-
tutorialIntroductionAsset?: Maybe<ContentPlatformTemplateImageAsset>;
|
|
33181
|
-
tutorialIntroductionDetails?: Maybe<Scalars['String']['output']>;
|
|
33182
|
-
tutorialIntroductionName?: Maybe<Scalars['String']['output']>;
|
|
33183
|
-
updatedAt?: Maybe<Scalars['String']['output']>;
|
|
33184
|
-
};
|
|
33185
|
-
export declare type ContentPlatformTutorialResultEdge = {
|
|
33186
|
-
__typename?: 'ContentPlatformTutorialResultEdge';
|
|
33187
|
-
cursor: Scalars['String']['output'];
|
|
33188
|
-
node: ContentPlatformFullTutorial;
|
|
33189
|
-
};
|
|
33190
|
-
export declare type ContentPlatformTutorialSearchConnection = {
|
|
33191
|
-
__typename?: 'ContentPlatformTutorialSearchConnection';
|
|
33192
|
-
edges: Array<ContentPlatformTutorialResultEdge>;
|
|
33193
|
-
pageInfo: PageInfo;
|
|
33194
|
-
};
|
|
33195
|
-
export declare type ContentPlatformTutorialUseStep = {
|
|
33196
|
-
__typename?: 'ContentPlatformTutorialUseStep';
|
|
33197
|
-
createdAt?: Maybe<Scalars['String']['output']>;
|
|
33198
|
-
tutorialBodyTextContainer?: Maybe<Array<ContentPlatformAssetComponentAndProTipComponentAndTextComponentAndCallToActionAndQuestionComponentAndTwitterComponentAndCallOutComponentUnion>>;
|
|
33199
|
-
tutorialUseStepTitle?: Maybe<Scalars['String']['output']>;
|
|
33200
|
-
updatedAt?: Maybe<Scalars['String']['output']>;
|
|
33201
|
-
};
|
|
33202
|
-
export declare type ContentPlatformTwitterComponent = {
|
|
33203
|
-
__typename?: 'ContentPlatformTwitterComponent';
|
|
33204
|
-
createdAt?: Maybe<Scalars['String']['output']>;
|
|
33205
|
-
tweetText?: Maybe<Scalars['String']['output']>;
|
|
33206
|
-
twitterComponentName?: Maybe<Scalars['String']['output']>;
|
|
33207
|
-
twitterUrl?: Maybe<Scalars['String']['output']>;
|
|
33208
|
-
updatedAt?: Maybe<Scalars['String']['output']>;
|
|
33209
|
-
};
|
|
33210
|
-
export declare type ContentPlatformTypeOfChange = {
|
|
33211
|
-
__typename?: 'ContentPlatformTypeOfChange';
|
|
33212
|
-
icon: ContentPlatformImageAsset;
|
|
33213
|
-
label: Scalars['String']['output'];
|
|
33214
|
-
};
|
|
33215
32259
|
export declare type ContentProperties = {
|
|
33216
32260
|
__typename?: 'ContentProperties';
|
|
33217
32261
|
draft?: Maybe<DraftContentProperties>;
|
|
@@ -33922,6 +32966,7 @@ export declare type CplsContribution = {
|
|
|
33922
32966
|
__typename?: 'CplsContribution';
|
|
33923
32967
|
endDate: Scalars['Date']['output'];
|
|
33924
32968
|
isSuggestion?: Maybe<Scalars['Boolean']['output']>;
|
|
32969
|
+
overriddenValueFormats?: Maybe<CplsValueFormats>;
|
|
33925
32970
|
startDate: Scalars['Date']['output'];
|
|
33926
32971
|
value?: Maybe<Scalars['Float']['output']>;
|
|
33927
32972
|
valueFormats?: Maybe<CplsValueFormats>;
|
|
@@ -38195,6 +37240,7 @@ export declare enum DevAiFlowPipelinesStatus {
|
|
|
38195
37240
|
export declare type DevAiFlowRepository = {
|
|
38196
37241
|
__typename?: 'DevAiFlowRepository';
|
|
38197
37242
|
domain?: Maybe<Scalars['String']['output']>;
|
|
37243
|
+
friendlyRepoUrl?: Maybe<Scalars['String']['output']>;
|
|
38198
37244
|
id?: Maybe<Scalars['ID']['output']>;
|
|
38199
37245
|
name?: Maybe<Scalars['String']['output']>;
|
|
38200
37246
|
reason?: Maybe<Scalars['String']['output']>;
|
|
@@ -46191,6 +45237,7 @@ export declare enum GraphIntegrationDirectoryItemType {
|
|
|
46191
45237
|
Action = "ACTION",
|
|
46192
45238
|
McpServer = "MCP_SERVER",
|
|
46193
45239
|
McpTool = "MCP_TOOL",
|
|
45240
|
+
PlatformSkill = "PLATFORM_SKILL",
|
|
46194
45241
|
Skill = "SKILL"
|
|
46195
45242
|
}
|
|
46196
45243
|
export declare type GraphIntegrationIcon = {
|
|
@@ -49481,18 +48528,34 @@ export declare type GraphStore = {
|
|
|
49481
48528
|
dynamicRelationshipAssetToUserInverse?: Maybe<GraphStoreSimplifiedDynamicRelationshipAssetToUserInverseConnection>;
|
|
49482
48529
|
entityIsRelatedToEntity?: Maybe<GraphStoreSimplifiedEntityIsRelatedToEntityConnection>;
|
|
49483
48530
|
entityIsRelatedToEntityInverse?: Maybe<GraphStoreSimplifiedEntityIsRelatedToEntityInverseConnection>;
|
|
48531
|
+
externalCalendarEventHasChildExternalCalendarEvent?: Maybe<GraphStoreSimplifiedExternalCalendarEventHasChildExternalCalendarEventConnection>;
|
|
48532
|
+
externalCalendarEventHasChildExternalCalendarEventInverse?: Maybe<GraphStoreSimplifiedExternalCalendarEventHasChildExternalCalendarEventInverseConnection>;
|
|
48533
|
+
externalCalendarEventLinksExternalVideo?: Maybe<GraphStoreSimplifiedExternalCalendarEventLinksExternalVideoConnection>;
|
|
48534
|
+
externalCalendarEventLinksExternalVideoInverse?: Maybe<GraphStoreSimplifiedExternalCalendarEventLinksExternalVideoInverseConnection>;
|
|
48535
|
+
externalCustomerContactHasExternalCalendarEvent?: Maybe<GraphStoreSimplifiedExternalCustomerContactHasExternalCalendarEventConnection>;
|
|
48536
|
+
externalCustomerContactHasExternalCalendarEventInverse?: Maybe<GraphStoreSimplifiedExternalCustomerContactHasExternalCalendarEventInverseConnection>;
|
|
48537
|
+
externalCustomerContactHasExternalWorkItem?: Maybe<GraphStoreSimplifiedExternalCustomerContactHasExternalWorkItemConnection>;
|
|
48538
|
+
externalCustomerContactHasExternalWorkItemInverse?: Maybe<GraphStoreSimplifiedExternalCustomerContactHasExternalWorkItemInverseConnection>;
|
|
49484
48539
|
externalCustomerOrgHasChildExternalCustomerOrg?: Maybe<GraphStoreSimplifiedExternalCustomerOrgHasChildExternalCustomerOrgConnection>;
|
|
49485
48540
|
externalCustomerOrgHasChildExternalCustomerOrgInverse?: Maybe<GraphStoreSimplifiedExternalCustomerOrgHasChildExternalCustomerOrgInverseConnection>;
|
|
48541
|
+
externalCustomerOrgHasExternalCalendarEvent?: Maybe<GraphStoreSimplifiedExternalCustomerOrgHasExternalCalendarEventConnection>;
|
|
48542
|
+
externalCustomerOrgHasExternalCalendarEventInverse?: Maybe<GraphStoreSimplifiedExternalCustomerOrgHasExternalCalendarEventInverseConnection>;
|
|
49486
48543
|
externalCustomerOrgHasExternalCustomerContact?: Maybe<GraphStoreSimplifiedExternalCustomerOrgHasExternalCustomerContactConnection>;
|
|
49487
48544
|
externalCustomerOrgHasExternalCustomerContactInverse?: Maybe<GraphStoreSimplifiedExternalCustomerOrgHasExternalCustomerContactInverseConnection>;
|
|
49488
48545
|
externalCustomerOrgHasExternalDeal?: Maybe<GraphStoreSimplifiedExternalCustomerOrgHasExternalDealConnection>;
|
|
49489
48546
|
externalCustomerOrgHasExternalDealInverse?: Maybe<GraphStoreSimplifiedExternalCustomerOrgHasExternalDealInverseConnection>;
|
|
48547
|
+
externalCustomerOrgHasExternalWorkItem?: Maybe<GraphStoreSimplifiedExternalCustomerOrgHasExternalWorkItemConnection>;
|
|
48548
|
+
externalCustomerOrgHasExternalWorkItemInverse?: Maybe<GraphStoreSimplifiedExternalCustomerOrgHasExternalWorkItemInverseConnection>;
|
|
49490
48549
|
externalCustomerOrgLinksExternalCustomerOrgCategory?: Maybe<GraphStoreSimplifiedExternalCustomerOrgLinksExternalCustomerOrgCategoryConnection>;
|
|
49491
48550
|
externalCustomerOrgLinksExternalCustomerOrgCategoryInverse?: Maybe<GraphStoreSimplifiedExternalCustomerOrgLinksExternalCustomerOrgCategoryInverseConnection>;
|
|
49492
48551
|
externalCustomerOrgWorksOnJiraWorkItemWorklog?: Maybe<GraphStoreSimplifiedExternalCustomerOrgWorksOnJiraWorkItemWorklogConnection>;
|
|
49493
48552
|
externalCustomerOrgWorksOnJiraWorkItemWorklogInverse?: Maybe<GraphStoreSimplifiedExternalCustomerOrgWorksOnJiraWorkItemWorklogInverseConnection>;
|
|
49494
48553
|
externalDataTableHasExternalSpace?: Maybe<GraphStoreSimplifiedExternalDataTableHasExternalSpaceConnection>;
|
|
49495
48554
|
externalDataTableHasExternalSpaceInverse?: Maybe<GraphStoreSimplifiedExternalDataTableHasExternalSpaceInverseConnection>;
|
|
48555
|
+
externalDealHasExternalCalendarEvent?: Maybe<GraphStoreSimplifiedExternalDealHasExternalCalendarEventConnection>;
|
|
48556
|
+
externalDealHasExternalCalendarEventInverse?: Maybe<GraphStoreSimplifiedExternalDealHasExternalCalendarEventInverseConnection>;
|
|
48557
|
+
externalDealHasExternalWorkItem?: Maybe<GraphStoreSimplifiedExternalDealHasExternalWorkItemConnection>;
|
|
48558
|
+
externalDealHasExternalWorkItemInverse?: Maybe<GraphStoreSimplifiedExternalDealHasExternalWorkItemInverseConnection>;
|
|
49496
48559
|
externalDocumentHasExternalSpace?: Maybe<GraphStoreSimplifiedExternalDocumentHasExternalSpaceConnection>;
|
|
49497
48560
|
externalDocumentHasExternalSpaceInverse?: Maybe<GraphStoreSimplifiedExternalDocumentHasExternalSpaceInverseConnection>;
|
|
49498
48561
|
externalOrgHasExternalPosition?: Maybe<GraphStoreSimplifiedExternalOrgHasExternalPositionConnection>;
|
|
@@ -52050,6 +51113,70 @@ export declare type GraphStoreEntityIsRelatedToEntityInverseArgs = {
|
|
|
52050
51113
|
queryContext?: InputMaybe<Scalars['String']['input']>;
|
|
52051
51114
|
sort?: InputMaybe<GraphStoreEntityIsRelatedToEntitySortInput>;
|
|
52052
51115
|
};
|
|
51116
|
+
export declare type GraphStoreExternalCalendarEventHasChildExternalCalendarEventArgs = {
|
|
51117
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
51118
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
51119
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
51120
|
+
id: Scalars['ID']['input'];
|
|
51121
|
+
queryContext?: InputMaybe<Scalars['String']['input']>;
|
|
51122
|
+
sort?: InputMaybe<GraphStoreExternalCalendarEventHasChildExternalCalendarEventSortInput>;
|
|
51123
|
+
};
|
|
51124
|
+
export declare type GraphStoreExternalCalendarEventHasChildExternalCalendarEventInverseArgs = {
|
|
51125
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
51126
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
51127
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
51128
|
+
id: Scalars['ID']['input'];
|
|
51129
|
+
queryContext?: InputMaybe<Scalars['String']['input']>;
|
|
51130
|
+
sort?: InputMaybe<GraphStoreExternalCalendarEventHasChildExternalCalendarEventSortInput>;
|
|
51131
|
+
};
|
|
51132
|
+
export declare type GraphStoreExternalCalendarEventLinksExternalVideoArgs = {
|
|
51133
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
51134
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
51135
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
51136
|
+
id: Scalars['ID']['input'];
|
|
51137
|
+
queryContext?: InputMaybe<Scalars['String']['input']>;
|
|
51138
|
+
sort?: InputMaybe<GraphStoreExternalCalendarEventLinksExternalVideoSortInput>;
|
|
51139
|
+
};
|
|
51140
|
+
export declare type GraphStoreExternalCalendarEventLinksExternalVideoInverseArgs = {
|
|
51141
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
51142
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
51143
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
51144
|
+
id: Scalars['ID']['input'];
|
|
51145
|
+
queryContext?: InputMaybe<Scalars['String']['input']>;
|
|
51146
|
+
sort?: InputMaybe<GraphStoreExternalCalendarEventLinksExternalVideoSortInput>;
|
|
51147
|
+
};
|
|
51148
|
+
export declare type GraphStoreExternalCustomerContactHasExternalCalendarEventArgs = {
|
|
51149
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
51150
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
51151
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
51152
|
+
id: Scalars['ID']['input'];
|
|
51153
|
+
queryContext?: InputMaybe<Scalars['String']['input']>;
|
|
51154
|
+
sort?: InputMaybe<GraphStoreExternalCustomerContactHasExternalCalendarEventSortInput>;
|
|
51155
|
+
};
|
|
51156
|
+
export declare type GraphStoreExternalCustomerContactHasExternalCalendarEventInverseArgs = {
|
|
51157
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
51158
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
51159
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
51160
|
+
id: Scalars['ID']['input'];
|
|
51161
|
+
queryContext?: InputMaybe<Scalars['String']['input']>;
|
|
51162
|
+
sort?: InputMaybe<GraphStoreExternalCustomerContactHasExternalCalendarEventSortInput>;
|
|
51163
|
+
};
|
|
51164
|
+
export declare type GraphStoreExternalCustomerContactHasExternalWorkItemArgs = {
|
|
51165
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
51166
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
51167
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
51168
|
+
id: Scalars['ID']['input'];
|
|
51169
|
+
queryContext?: InputMaybe<Scalars['String']['input']>;
|
|
51170
|
+
sort?: InputMaybe<GraphStoreExternalCustomerContactHasExternalWorkItemSortInput>;
|
|
51171
|
+
};
|
|
51172
|
+
export declare type GraphStoreExternalCustomerContactHasExternalWorkItemInverseArgs = {
|
|
51173
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
51174
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
51175
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
51176
|
+
id: Scalars['ID']['input'];
|
|
51177
|
+
queryContext?: InputMaybe<Scalars['String']['input']>;
|
|
51178
|
+
sort?: InputMaybe<GraphStoreExternalCustomerContactHasExternalWorkItemSortInput>;
|
|
51179
|
+
};
|
|
52053
51180
|
export declare type GraphStoreExternalCustomerOrgHasChildExternalCustomerOrgArgs = {
|
|
52054
51181
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
52055
51182
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -52066,6 +51193,22 @@ export declare type GraphStoreExternalCustomerOrgHasChildExternalCustomerOrgInve
|
|
|
52066
51193
|
queryContext?: InputMaybe<Scalars['String']['input']>;
|
|
52067
51194
|
sort?: InputMaybe<GraphStoreExternalCustomerOrgHasChildExternalCustomerOrgSortInput>;
|
|
52068
51195
|
};
|
|
51196
|
+
export declare type GraphStoreExternalCustomerOrgHasExternalCalendarEventArgs = {
|
|
51197
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
51198
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
51199
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
51200
|
+
id: Scalars['ID']['input'];
|
|
51201
|
+
queryContext?: InputMaybe<Scalars['String']['input']>;
|
|
51202
|
+
sort?: InputMaybe<GraphStoreExternalCustomerOrgHasExternalCalendarEventSortInput>;
|
|
51203
|
+
};
|
|
51204
|
+
export declare type GraphStoreExternalCustomerOrgHasExternalCalendarEventInverseArgs = {
|
|
51205
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
51206
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
51207
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
51208
|
+
id: Scalars['ID']['input'];
|
|
51209
|
+
queryContext?: InputMaybe<Scalars['String']['input']>;
|
|
51210
|
+
sort?: InputMaybe<GraphStoreExternalCustomerOrgHasExternalCalendarEventSortInput>;
|
|
51211
|
+
};
|
|
52069
51212
|
export declare type GraphStoreExternalCustomerOrgHasExternalCustomerContactArgs = {
|
|
52070
51213
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
52071
51214
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -52098,6 +51241,22 @@ export declare type GraphStoreExternalCustomerOrgHasExternalDealInverseArgs = {
|
|
|
52098
51241
|
queryContext?: InputMaybe<Scalars['String']['input']>;
|
|
52099
51242
|
sort?: InputMaybe<GraphStoreExternalCustomerOrgHasExternalDealSortInput>;
|
|
52100
51243
|
};
|
|
51244
|
+
export declare type GraphStoreExternalCustomerOrgHasExternalWorkItemArgs = {
|
|
51245
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
51246
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
51247
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
51248
|
+
id: Scalars['ID']['input'];
|
|
51249
|
+
queryContext?: InputMaybe<Scalars['String']['input']>;
|
|
51250
|
+
sort?: InputMaybe<GraphStoreExternalCustomerOrgHasExternalWorkItemSortInput>;
|
|
51251
|
+
};
|
|
51252
|
+
export declare type GraphStoreExternalCustomerOrgHasExternalWorkItemInverseArgs = {
|
|
51253
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
51254
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
51255
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
51256
|
+
id: Scalars['ID']['input'];
|
|
51257
|
+
queryContext?: InputMaybe<Scalars['String']['input']>;
|
|
51258
|
+
sort?: InputMaybe<GraphStoreExternalCustomerOrgHasExternalWorkItemSortInput>;
|
|
51259
|
+
};
|
|
52101
51260
|
export declare type GraphStoreExternalCustomerOrgLinksExternalCustomerOrgCategoryArgs = {
|
|
52102
51261
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
52103
51262
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -52146,6 +51305,38 @@ export declare type GraphStoreExternalDataTableHasExternalSpaceInverseArgs = {
|
|
|
52146
51305
|
queryContext?: InputMaybe<Scalars['String']['input']>;
|
|
52147
51306
|
sort?: InputMaybe<GraphStoreExternalDataTableHasExternalSpaceSortInput>;
|
|
52148
51307
|
};
|
|
51308
|
+
export declare type GraphStoreExternalDealHasExternalCalendarEventArgs = {
|
|
51309
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
51310
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
51311
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
51312
|
+
id: Scalars['ID']['input'];
|
|
51313
|
+
queryContext?: InputMaybe<Scalars['String']['input']>;
|
|
51314
|
+
sort?: InputMaybe<GraphStoreExternalDealHasExternalCalendarEventSortInput>;
|
|
51315
|
+
};
|
|
51316
|
+
export declare type GraphStoreExternalDealHasExternalCalendarEventInverseArgs = {
|
|
51317
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
51318
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
51319
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
51320
|
+
id: Scalars['ID']['input'];
|
|
51321
|
+
queryContext?: InputMaybe<Scalars['String']['input']>;
|
|
51322
|
+
sort?: InputMaybe<GraphStoreExternalDealHasExternalCalendarEventSortInput>;
|
|
51323
|
+
};
|
|
51324
|
+
export declare type GraphStoreExternalDealHasExternalWorkItemArgs = {
|
|
51325
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
51326
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
51327
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
51328
|
+
id: Scalars['ID']['input'];
|
|
51329
|
+
queryContext?: InputMaybe<Scalars['String']['input']>;
|
|
51330
|
+
sort?: InputMaybe<GraphStoreExternalDealHasExternalWorkItemSortInput>;
|
|
51331
|
+
};
|
|
51332
|
+
export declare type GraphStoreExternalDealHasExternalWorkItemInverseArgs = {
|
|
51333
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
51334
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
51335
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
51336
|
+
id: Scalars['ID']['input'];
|
|
51337
|
+
queryContext?: InputMaybe<Scalars['String']['input']>;
|
|
51338
|
+
sort?: InputMaybe<GraphStoreExternalDealHasExternalWorkItemSortInput>;
|
|
51339
|
+
};
|
|
52149
51340
|
export declare type GraphStoreExternalDocumentHasExternalSpaceArgs = {
|
|
52150
51341
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
52151
51342
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -58996,7 +58187,7 @@ export declare type GraphStoreBatchContentReferencedEntityEndNode = {
|
|
|
58996
58187
|
data?: Maybe<GraphStoreBatchContentReferencedEntityEndUnion>;
|
|
58997
58188
|
id: Scalars['ID']['output'];
|
|
58998
58189
|
};
|
|
58999
|
-
export declare type GraphStoreBatchContentReferencedEntityEndUnion = AvpDashboard | AppUser | AssetsObject | AssetsObjectType | AtlassianAccountUser | BitbucketRepository | CompassComponent | CompassLinkNode | CompassScorecard | ConfluenceBlogPost | ConfluenceDatabase | ConfluenceEmbed | ConfluenceFolder | ConfluenceFooterComment | ConfluenceInlineComment | ConfluencePage | ConfluenceSpace | ConfluenceWhiteboard | Customer360Customer | CustomerServiceCsmCustomer | CustomerServiceCsmOrganization | CustomerUser | DeploymentSummary | DevOpsDesign | DevOpsDocument | DevOpsFeatureFlag | DevOpsOperationsComponentDetails | DevOpsOperationsIncidentDetails | DevOpsOperationsPostIncidentReviewDetails | DevOpsProjectDetails | DevOpsPullRequestDetails | DevOpsRepository | DevOpsSecurityVulnerabilityDetails | DevOpsService | ExternalBranch | ExternalBuildInfo | ExternalCalendarEvent | ExternalComment | ExternalCommit | ExternalConversation | ExternalCustomerContact | ExternalCustomerOrg | ExternalCustomerOrgCategory | ExternalDashboard | ExternalDataTable | ExternalDeal | ExternalDeployment | ExternalDesign | ExternalDocument | ExternalExperimental | ExternalFeatureFlag | ExternalMessage | ExternalOrganisation | ExternalPosition | ExternalPullRequest | ExternalRemoteLink | ExternalRepository | ExternalSoftwareService | ExternalSpace | ExternalTeam | ExternalTest | ExternalTestExecution | ExternalTestPlan | ExternalTestRun | ExternalTestStatus | ExternalVideo | ExternalVulnerability | ExternalWorkItem | ExternalWorker | IdentityGroup | JiraAlignAggProject | JiraAutodevJob | JiraBoard | JiraConfluenceRemoteIssueLink | JiraCustomRemoteIssueLink | JiraIssue | JiraIssueRemoteIssueLink | JiraIssueType | JiraPlatformComment | JiraPostIncidentReviewLink | JiraPriority | JiraProject | JiraServiceManagementComment | JiraSprint | JiraStatus | JiraVersion | JiraWebRemoteIssueLink | JiraWorklog | KnowledgeDiscoveryTopicByAri | LoomComment | LoomMeeting | LoomMeetingRecurrence | LoomSpace | LoomVideo | MercuryChangeProposal | MercuryFocusArea | MercuryFocusAreaStatusUpdate | MercuryRisk | MercuryStrategicEvent | OpsgenieTeam | RadarPosition | RadarWorker | SpfAsk | SpfPlan | SpfPlanScenario | SpfPlanScenarioInvestment | TeamCustomFieldValue | TeamType | TeamV2 | ThirdPartySecurityContainer | ThirdPartyUser | TownsquareComment | TownsquareGoal | TownsquareGoalUpdate | TownsquareProject | TownsquareProjectUpdate | TownsquareTag;
|
|
58190
|
+
export declare type GraphStoreBatchContentReferencedEntityEndUnion = AvpDashboard | AppUser | AssetsObject | AssetsObjectType | AtlassianAccountUser | BitbucketRepository | CompassComponent | CompassLinkNode | CompassScorecard | ConfluenceBlogPost | ConfluenceDatabase | ConfluenceEmbed | ConfluenceFolder | ConfluenceFooterComment | ConfluenceInlineComment | ConfluencePage | ConfluenceSpace | ConfluenceWhiteboard | Customer360Customer | CustomerServiceCsmCustomer | CustomerServiceCsmOrganization | CustomerUser | DeploymentSummary | DevOpsDesign | DevOpsDocument | DevOpsFeatureFlag | DevOpsOperationsComponentDetails | DevOpsOperationsIncidentDetails | DevOpsOperationsPostIncidentReviewDetails | DevOpsProjectDetails | DevOpsPullRequestDetails | DevOpsRepository | DevOpsSecurityVulnerabilityDetails | DevOpsService | ExternalBranch | ExternalBuildInfo | ExternalCalendarEvent | ExternalCampaign | ExternalCase | ExternalComment | ExternalCommit | ExternalConversation | ExternalCustomerContact | ExternalCustomerOrg | ExternalCustomerOrgCategory | ExternalDashboard | ExternalDataTable | ExternalDeal | ExternalDeployment | ExternalDesign | ExternalDocument | ExternalExperimental | ExternalFeatureFlag | ExternalMessage | ExternalOrganisation | ExternalPosition | ExternalPullRequest | ExternalRemoteLink | ExternalRepository | ExternalSoftwareService | ExternalSpace | ExternalTeam | ExternalTest | ExternalTestExecution | ExternalTestPlan | ExternalTestRun | ExternalTestStatus | ExternalVideo | ExternalVulnerability | ExternalWorkItem | ExternalWorker | IdentityGroup | JiraAlignAggProject | JiraAutodevJob | JiraBoard | JiraConfluenceRemoteIssueLink | JiraCustomRemoteIssueLink | JiraIssue | JiraIssueRemoteIssueLink | JiraIssueType | JiraPlatformComment | JiraPostIncidentReviewLink | JiraPriority | JiraProject | JiraServiceManagementComment | JiraSprint | JiraStatus | JiraVersion | JiraWebRemoteIssueLink | JiraWorklog | KnowledgeDiscoveryTopicByAri | LoomComment | LoomMeeting | LoomMeetingRecurrence | LoomSpace | LoomVideo | MercuryChangeProposal | MercuryFocusArea | MercuryFocusAreaStatusUpdate | MercuryRisk | MercuryStrategicEvent | OpsgenieTeam | RadarPosition | RadarWorker | SpfAsk | SpfPlan | SpfPlanScenario | SpfPlanScenarioInvestment | TeamCustomFieldValue | TeamType | TeamV2 | ThirdPartySecurityContainer | ThirdPartyUser | TownsquareComment | TownsquareGoal | TownsquareGoalUpdate | TownsquareProject | TownsquareProjectUpdate | TownsquareTag;
|
|
59000
58191
|
export declare type GraphStoreBatchContentReferencedEntityInnerConnection = {
|
|
59001
58192
|
__typename?: 'GraphStoreBatchContentReferencedEntityInnerConnection';
|
|
59002
58193
|
edges: Array<Maybe<GraphStoreBatchContentReferencedEntityInnerEdge>>;
|
|
@@ -59021,7 +58212,7 @@ export declare type GraphStoreBatchContentReferencedEntityStartNode = {
|
|
|
59021
58212
|
data?: Maybe<GraphStoreBatchContentReferencedEntityStartUnion>;
|
|
59022
58213
|
id: Scalars['ID']['output'];
|
|
59023
58214
|
};
|
|
59024
|
-
export declare type GraphStoreBatchContentReferencedEntityStartUnion = AvpDashboard | AppUser | AssetsObject | AssetsObjectType | AtlassianAccountUser | CompassComponent | CompassLinkNode | CompassScorecard | ConfluenceBlogPost | ConfluenceDatabase | ConfluenceEmbed | ConfluenceFolder | ConfluenceFooterComment | ConfluenceInlineComment | ConfluencePage | ConfluenceSpace | ConfluenceWhiteboard | Customer360Customer | CustomerServiceCsmCustomer | CustomerServiceCsmOrganization | CustomerUser | DeploymentSummary | DevOpsDesign | DevOpsDocument | DevOpsFeatureFlag | DevOpsOperationsComponentDetails | DevOpsOperationsIncidentDetails | DevOpsOperationsPostIncidentReviewDetails | DevOpsProjectDetails | DevOpsPullRequestDetails | DevOpsRepository | DevOpsSecurityVulnerabilityDetails | DevOpsService | ExternalBranch | ExternalBuildInfo | ExternalCalendarEvent | ExternalComment | ExternalCommit | ExternalConversation | ExternalCustomerContact | ExternalCustomerOrg | ExternalCustomerOrgCategory | ExternalDashboard | ExternalDataTable | ExternalDeal | ExternalDeployment | ExternalDesign | ExternalDocument | ExternalExperimental | ExternalFeatureFlag | ExternalMessage | ExternalOrganisation | ExternalPosition | ExternalPullRequest | ExternalRemoteLink | ExternalRepository | ExternalSoftwareService | ExternalSpace | ExternalTeam | ExternalTest | ExternalTestExecution | ExternalTestPlan | ExternalTestRun | ExternalTestStatus | ExternalVideo | ExternalVulnerability | ExternalWorkItem | ExternalWorker | JiraAlignAggProject | JiraAutodevJob | JiraBoard | JiraConfluenceRemoteIssueLink | JiraCustomRemoteIssueLink | JiraIssue | JiraIssueRemoteIssueLink | JiraIssueType | JiraPlatformComment | JiraPriority | JiraProject | JiraServiceManagementComment | JiraSprint | JiraStatus | JiraVersion | JiraWebRemoteIssueLink | JiraWorklog | LoomComment | LoomMeeting | LoomMeetingRecurrence | LoomSpace | LoomVideo | MercuryChangeProposal | MercuryFocusArea | MercuryFocusAreaStatusUpdate | MercuryRisk | MercuryStrategicEvent | OpsgenieTeam | RadarPosition | RadarWorker | SpfAsk | SpfPlan | SpfPlanScenario | SpfPlanScenarioInvestment | TeamCustomFieldValue | TeamType | TeamV2 | ThirdPartyUser | TownsquareComment | TownsquareGoal | TownsquareGoalUpdate | TownsquareProject | TownsquareProjectUpdate | TownsquareTag;
|
|
58215
|
+
export declare type GraphStoreBatchContentReferencedEntityStartUnion = AvpDashboard | AppUser | AssetsObject | AssetsObjectType | AtlassianAccountUser | CompassComponent | CompassLinkNode | CompassScorecard | ConfluenceBlogPost | ConfluenceDatabase | ConfluenceEmbed | ConfluenceFolder | ConfluenceFooterComment | ConfluenceInlineComment | ConfluencePage | ConfluenceSpace | ConfluenceWhiteboard | Customer360Customer | CustomerServiceCsmCustomer | CustomerServiceCsmOrganization | CustomerUser | DeploymentSummary | DevOpsDesign | DevOpsDocument | DevOpsFeatureFlag | DevOpsOperationsComponentDetails | DevOpsOperationsIncidentDetails | DevOpsOperationsPostIncidentReviewDetails | DevOpsProjectDetails | DevOpsPullRequestDetails | DevOpsRepository | DevOpsSecurityVulnerabilityDetails | DevOpsService | ExternalBranch | ExternalBuildInfo | ExternalCalendarEvent | ExternalCampaign | ExternalCase | ExternalComment | ExternalCommit | ExternalConversation | ExternalCustomerContact | ExternalCustomerOrg | ExternalCustomerOrgCategory | ExternalDashboard | ExternalDataTable | ExternalDeal | ExternalDeployment | ExternalDesign | ExternalDocument | ExternalExperimental | ExternalFeatureFlag | ExternalMessage | ExternalOrganisation | ExternalPosition | ExternalPullRequest | ExternalRemoteLink | ExternalRepository | ExternalSoftwareService | ExternalSpace | ExternalTeam | ExternalTest | ExternalTestExecution | ExternalTestPlan | ExternalTestRun | ExternalTestStatus | ExternalVideo | ExternalVulnerability | ExternalWorkItem | ExternalWorker | JiraAlignAggProject | JiraAutodevJob | JiraBoard | JiraConfluenceRemoteIssueLink | JiraCustomRemoteIssueLink | JiraIssue | JiraIssueRemoteIssueLink | JiraIssueType | JiraPlatformComment | JiraPriority | JiraProject | JiraServiceManagementComment | JiraSprint | JiraStatus | JiraVersion | JiraWebRemoteIssueLink | JiraWorklog | LoomComment | LoomMeeting | LoomMeetingRecurrence | LoomSpace | LoomVideo | MercuryChangeProposal | MercuryFocusArea | MercuryFocusAreaStatusUpdate | MercuryRisk | MercuryStrategicEvent | OpsgenieTeam | RadarPosition | RadarWorker | SpfAsk | SpfPlan | SpfPlanScenario | SpfPlanScenarioInvestment | TeamCustomFieldValue | TeamType | TeamV2 | ThirdPartyUser | TownsquareComment | TownsquareGoal | TownsquareGoalUpdate | TownsquareProject | TownsquareProjectUpdate | TownsquareTag;
|
|
59025
58216
|
export declare type GraphStoreBatchFocusAreaAssociatedToProjectConnection = HasPageInfo & {
|
|
59026
58217
|
__typename?: 'GraphStoreBatchFocusAreaAssociatedToProjectConnection';
|
|
59027
58218
|
edges: Array<Maybe<GraphStoreBatchFocusAreaAssociatedToProjectEdge>>;
|
|
@@ -59896,7 +59087,7 @@ export declare type GraphStoreBatchProjectLinksToEntityEndNode = {
|
|
|
59896
59087
|
data?: Maybe<GraphStoreBatchProjectLinksToEntityEndUnion>;
|
|
59897
59088
|
id: Scalars['ID']['output'];
|
|
59898
59089
|
};
|
|
59899
|
-
export declare type GraphStoreBatchProjectLinksToEntityEndUnion = AvpDashboard | AppUser | AssetsObject | AssetsObjectType | AtlassianAccountUser | BitbucketRepository | CompassComponent | CompassLinkNode | CompassScorecard | ConfluenceBlogPost | ConfluenceDatabase | ConfluenceEmbed | ConfluenceFolder | ConfluenceFooterComment | ConfluenceInlineComment | ConfluencePage | ConfluenceSpace | ConfluenceWhiteboard | Customer360Customer | CustomerServiceCsmCustomer | CustomerServiceCsmOrganization | CustomerUser | DeploymentSummary | DevOpsDesign | DevOpsDocument | DevOpsFeatureFlag | DevOpsOperationsComponentDetails | DevOpsOperationsIncidentDetails | DevOpsOperationsPostIncidentReviewDetails | DevOpsProjectDetails | DevOpsPullRequestDetails | DevOpsRepository | DevOpsSecurityVulnerabilityDetails | DevOpsService | ExternalBranch | ExternalBuildInfo | ExternalCalendarEvent | ExternalComment | ExternalCommit | ExternalConversation | ExternalCustomerContact | ExternalCustomerOrg | ExternalCustomerOrgCategory | ExternalDashboard | ExternalDataTable | ExternalDeal | ExternalDeployment | ExternalDesign | ExternalDocument | ExternalExperimental | ExternalFeatureFlag | ExternalMessage | ExternalOrganisation | ExternalPosition | ExternalPullRequest | ExternalRemoteLink | ExternalRepository | ExternalSoftwareService | ExternalSpace | ExternalTeam | ExternalTest | ExternalTestExecution | ExternalTestPlan | ExternalTestRun | ExternalTestStatus | ExternalVideo | ExternalVulnerability | ExternalWorkItem | ExternalWorker | IdentityGroup | JiraAlignAggProject | JiraAutodevJob | JiraBoard | JiraConfluenceRemoteIssueLink | JiraCustomRemoteIssueLink | JiraIssue | JiraIssueRemoteIssueLink | JiraIssueType | JiraPlatformComment | JiraPostIncidentReviewLink | JiraPriority | JiraProject | JiraServiceManagementComment | JiraSprint | JiraStatus | JiraVersion | JiraWebRemoteIssueLink | JiraWorklog | KnowledgeDiscoveryTopicByAri | LoomComment | LoomMeeting | LoomMeetingRecurrence | LoomSpace | LoomVideo | MercuryChangeProposal | MercuryFocusArea | MercuryFocusAreaStatusUpdate | MercuryRisk | MercuryStrategicEvent | OpsgenieTeam | RadarPosition | RadarWorker | SpfAsk | SpfPlan | SpfPlanScenario | SpfPlanScenarioInvestment | TeamCustomFieldValue | TeamType | TeamV2 | ThirdPartySecurityContainer | ThirdPartyUser | TownsquareComment | TownsquareGoal | TownsquareGoalUpdate | TownsquareProject | TownsquareProjectUpdate | TownsquareTag;
|
|
59090
|
+
export declare type GraphStoreBatchProjectLinksToEntityEndUnion = AvpDashboard | AppUser | AssetsObject | AssetsObjectType | AtlassianAccountUser | BitbucketRepository | CompassComponent | CompassLinkNode | CompassScorecard | ConfluenceBlogPost | ConfluenceDatabase | ConfluenceEmbed | ConfluenceFolder | ConfluenceFooterComment | ConfluenceInlineComment | ConfluencePage | ConfluenceSpace | ConfluenceWhiteboard | Customer360Customer | CustomerServiceCsmCustomer | CustomerServiceCsmOrganization | CustomerUser | DeploymentSummary | DevOpsDesign | DevOpsDocument | DevOpsFeatureFlag | DevOpsOperationsComponentDetails | DevOpsOperationsIncidentDetails | DevOpsOperationsPostIncidentReviewDetails | DevOpsProjectDetails | DevOpsPullRequestDetails | DevOpsRepository | DevOpsSecurityVulnerabilityDetails | DevOpsService | ExternalBranch | ExternalBuildInfo | ExternalCalendarEvent | ExternalCampaign | ExternalCase | ExternalComment | ExternalCommit | ExternalConversation | ExternalCustomerContact | ExternalCustomerOrg | ExternalCustomerOrgCategory | ExternalDashboard | ExternalDataTable | ExternalDeal | ExternalDeployment | ExternalDesign | ExternalDocument | ExternalExperimental | ExternalFeatureFlag | ExternalMessage | ExternalOrganisation | ExternalPosition | ExternalPullRequest | ExternalRemoteLink | ExternalRepository | ExternalSoftwareService | ExternalSpace | ExternalTeam | ExternalTest | ExternalTestExecution | ExternalTestPlan | ExternalTestRun | ExternalTestStatus | ExternalVideo | ExternalVulnerability | ExternalWorkItem | ExternalWorker | IdentityGroup | JiraAlignAggProject | JiraAutodevJob | JiraBoard | JiraConfluenceRemoteIssueLink | JiraCustomRemoteIssueLink | JiraIssue | JiraIssueRemoteIssueLink | JiraIssueType | JiraPlatformComment | JiraPostIncidentReviewLink | JiraPriority | JiraProject | JiraServiceManagementComment | JiraSprint | JiraStatus | JiraVersion | JiraWebRemoteIssueLink | JiraWorklog | KnowledgeDiscoveryTopicByAri | LoomComment | LoomMeeting | LoomMeetingRecurrence | LoomSpace | LoomVideo | MercuryChangeProposal | MercuryFocusArea | MercuryFocusAreaStatusUpdate | MercuryRisk | MercuryStrategicEvent | OpsgenieTeam | RadarPosition | RadarWorker | SpfAsk | SpfPlan | SpfPlanScenario | SpfPlanScenarioInvestment | TeamCustomFieldValue | TeamType | TeamV2 | ThirdPartySecurityContainer | ThirdPartyUser | TownsquareComment | TownsquareGoal | TownsquareGoalUpdate | TownsquareProject | TownsquareProjectUpdate | TownsquareTag;
|
|
59900
59091
|
export declare type GraphStoreBatchProjectLinksToEntityInnerConnection = {
|
|
59901
59092
|
__typename?: 'GraphStoreBatchProjectLinksToEntityInnerConnection';
|
|
59902
59093
|
edges: Array<Maybe<GraphStoreBatchProjectLinksToEntityInnerEdge>>;
|
|
@@ -61054,7 +60245,7 @@ export declare type GraphStoreCypherQueryRowItemNode = {
|
|
|
61054
60245
|
data?: Maybe<GraphStoreCypherQueryRowItemNodeNodeUnion>;
|
|
61055
60246
|
id: Scalars['ID']['output'];
|
|
61056
60247
|
};
|
|
61057
|
-
export declare type GraphStoreCypherQueryRowItemNodeNodeUnion = AvpDashboard | AppUser | AssetsObject | AssetsObjectType | AtlassianAccountUser | BitbucketRepository | CompassComponent | CompassLinkNode | CompassScorecard | ConfluenceBlogPost | ConfluenceDatabase | ConfluenceEmbed | ConfluenceFolder | ConfluenceFooterComment | ConfluenceInlineComment | ConfluencePage | ConfluenceSpace | ConfluenceWhiteboard | Customer360Customer | CustomerServiceCsmCustomer | CustomerServiceCsmOrganization | CustomerUser | DeploymentSummary | DevOpsDesign | DevOpsDocument | DevOpsFeatureFlag | DevOpsOperationsComponentDetails | DevOpsOperationsIncidentDetails | DevOpsOperationsPostIncidentReviewDetails | DevOpsProjectDetails | DevOpsPullRequestDetails | DevOpsRepository | DevOpsSecurityVulnerabilityDetails | DevOpsService | ExternalBranch | ExternalBuildInfo | ExternalCalendarEvent | ExternalComment | ExternalCommit | ExternalConversation | ExternalCustomerContact | ExternalCustomerOrg | ExternalCustomerOrgCategory | ExternalDashboard | ExternalDataTable | ExternalDeal | ExternalDeployment | ExternalDesign | ExternalDocument | ExternalExperimental | ExternalFeatureFlag | ExternalMessage | ExternalOrganisation | ExternalPosition | ExternalPullRequest | ExternalRemoteLink | ExternalRepository | ExternalSoftwareService | ExternalSpace | ExternalTeam | ExternalTest | ExternalTestExecution | ExternalTestPlan | ExternalTestRun | ExternalTestStatus | ExternalVideo | ExternalVulnerability | ExternalWorkItem | ExternalWorker | IdentityGroup | JiraAlignAggProject | JiraAutodevJob | JiraBoard | JiraConfluenceRemoteIssueLink | JiraCustomRemoteIssueLink | JiraIssue | JiraIssueRemoteIssueLink | JiraIssueType | JiraPlatformComment | JiraPostIncidentReviewLink | JiraPriority | JiraProject | JiraServiceManagementComment | JiraSprint | JiraStatus | JiraVersion | JiraWebRemoteIssueLink | JiraWorklog | KnowledgeDiscoveryTopicByAri | LoomComment | LoomMeeting | LoomMeetingRecurrence | LoomSpace | LoomVideo | MercuryChangeProposal | MercuryFocusArea | MercuryFocusAreaStatusUpdate | MercuryRisk | MercuryStrategicEvent | OpsgenieTeam | RadarPosition | RadarWorker | SpfAsk | SpfPlan | SpfPlanScenario | SpfPlanScenarioInvestment | TeamCustomFieldValue | TeamType | TeamV2 | ThirdPartySecurityContainer | ThirdPartyUser | TownsquareComment | TownsquareGoal | TownsquareGoalUpdate | TownsquareProject | TownsquareProjectUpdate | TownsquareTag;
|
|
60248
|
+
export declare type GraphStoreCypherQueryRowItemNodeNodeUnion = AvpDashboard | AppUser | AssetsObject | AssetsObjectType | AtlassianAccountUser | BitbucketRepository | CompassComponent | CompassLinkNode | CompassScorecard | ConfluenceBlogPost | ConfluenceDatabase | ConfluenceEmbed | ConfluenceFolder | ConfluenceFooterComment | ConfluenceInlineComment | ConfluencePage | ConfluenceSpace | ConfluenceWhiteboard | Customer360Customer | CustomerServiceCsmCustomer | CustomerServiceCsmOrganization | CustomerUser | DeploymentSummary | DevOpsDesign | DevOpsDocument | DevOpsFeatureFlag | DevOpsOperationsComponentDetails | DevOpsOperationsIncidentDetails | DevOpsOperationsPostIncidentReviewDetails | DevOpsProjectDetails | DevOpsPullRequestDetails | DevOpsRepository | DevOpsSecurityVulnerabilityDetails | DevOpsService | ExternalBranch | ExternalBuildInfo | ExternalCalendarEvent | ExternalCampaign | ExternalCase | ExternalComment | ExternalCommit | ExternalConversation | ExternalCustomerContact | ExternalCustomerOrg | ExternalCustomerOrgCategory | ExternalDashboard | ExternalDataTable | ExternalDeal | ExternalDeployment | ExternalDesign | ExternalDocument | ExternalExperimental | ExternalFeatureFlag | ExternalMessage | ExternalOrganisation | ExternalPosition | ExternalPullRequest | ExternalRemoteLink | ExternalRepository | ExternalSoftwareService | ExternalSpace | ExternalTeam | ExternalTest | ExternalTestExecution | ExternalTestPlan | ExternalTestRun | ExternalTestStatus | ExternalVideo | ExternalVulnerability | ExternalWorkItem | ExternalWorker | IdentityGroup | JiraAlignAggProject | JiraAutodevJob | JiraBoard | JiraConfluenceRemoteIssueLink | JiraCustomRemoteIssueLink | JiraIssue | JiraIssueRemoteIssueLink | JiraIssueType | JiraPlatformComment | JiraPostIncidentReviewLink | JiraPriority | JiraProject | JiraServiceManagementComment | JiraSprint | JiraStatus | JiraVersion | JiraWebRemoteIssueLink | JiraWorklog | KnowledgeDiscoveryTopicByAri | LoomComment | LoomMeeting | LoomMeetingRecurrence | LoomSpace | LoomVideo | MercuryChangeProposal | MercuryFocusArea | MercuryFocusAreaStatusUpdate | MercuryRisk | MercuryStrategicEvent | OpsgenieTeam | RadarPosition | RadarWorker | SpfAsk | SpfPlan | SpfPlanScenario | SpfPlanScenarioInvestment | TeamCustomFieldValue | TeamType | TeamV2 | ThirdPartySecurityContainer | ThirdPartyUser | TownsquareComment | TownsquareGoal | TownsquareGoalUpdate | TownsquareProject | TownsquareProjectUpdate | TownsquareTag;
|
|
61058
60249
|
export declare type GraphStoreCypherQueryStringListObject = {
|
|
61059
60250
|
__typename?: 'GraphStoreCypherQueryStringListObject';
|
|
61060
60251
|
values: Array<Scalars['String']['output']>;
|
|
@@ -61076,13 +60267,13 @@ export declare type GraphStoreCypherQueryV2AriNode = {
|
|
|
61076
60267
|
data?: Maybe<GraphStoreCypherQueryV2AriNodeUnion>;
|
|
61077
60268
|
id: Scalars['ID']['output'];
|
|
61078
60269
|
};
|
|
61079
|
-
export declare type GraphStoreCypherQueryV2AriNodeUnion = AvpDashboard | AppUser | AssetsObject | AssetsObjectType | AtlassianAccountUser | BitbucketRepository | CompassComponent | CompassLinkNode | CompassScorecard | ConfluenceBlogPost | ConfluenceDatabase | ConfluenceEmbed | ConfluenceFolder | ConfluenceFooterComment | ConfluenceInlineComment | ConfluencePage | ConfluenceSpace | ConfluenceWhiteboard | Customer360Customer | CustomerServiceCsmCustomer | CustomerServiceCsmOrganization | CustomerUser | DeploymentSummary | DevOpsDesign | DevOpsDocument | DevOpsFeatureFlag | DevOpsOperationsComponentDetails | DevOpsOperationsIncidentDetails | DevOpsOperationsPostIncidentReviewDetails | DevOpsProjectDetails | DevOpsPullRequestDetails | DevOpsRepository | DevOpsSecurityVulnerabilityDetails | DevOpsService | ExternalBranch | ExternalBuildInfo | ExternalCalendarEvent | ExternalComment | ExternalCommit | ExternalConversation | ExternalCustomerContact | ExternalCustomerOrg | ExternalCustomerOrgCategory | ExternalDashboard | ExternalDataTable | ExternalDeal | ExternalDeployment | ExternalDesign | ExternalDocument | ExternalExperimental | ExternalFeatureFlag | ExternalMessage | ExternalOrganisation | ExternalPosition | ExternalPullRequest | ExternalRemoteLink | ExternalRepository | ExternalSoftwareService | ExternalSpace | ExternalTeam | ExternalTest | ExternalTestExecution | ExternalTestPlan | ExternalTestRun | ExternalTestStatus | ExternalVideo | ExternalVulnerability | ExternalWorkItem | ExternalWorker | IdentityGroup | JiraAlignAggProject | JiraAutodevJob | JiraBoard | JiraConfluenceRemoteIssueLink | JiraCustomRemoteIssueLink | JiraIssue | JiraIssueRemoteIssueLink | JiraIssueType | JiraPlatformComment | JiraPostIncidentReviewLink | JiraPriority | JiraProject | JiraServiceManagementComment | JiraSprint | JiraStatus | JiraVersion | JiraWebRemoteIssueLink | JiraWorklog | KnowledgeDiscoveryTopicByAri | LoomComment | LoomMeeting | LoomMeetingRecurrence | LoomSpace | LoomVideo | MercuryChangeProposal | MercuryFocusArea | MercuryFocusAreaStatusUpdate | MercuryRisk | MercuryStrategicEvent | OpsgenieTeam | RadarPosition | RadarWorker | SpfAsk | SpfPlan | SpfPlanScenario | SpfPlanScenarioInvestment | TeamCustomFieldValue | TeamType | TeamV2 | ThirdPartySecurityContainer | ThirdPartyUser | TownsquareComment | TownsquareGoal | TownsquareGoalUpdate | TownsquareProject | TownsquareProjectUpdate | TownsquareTag;
|
|
60270
|
+
export declare type GraphStoreCypherQueryV2AriNodeUnion = AvpDashboard | AppUser | AssetsObject | AssetsObjectType | AtlassianAccountUser | BitbucketRepository | CompassComponent | CompassLinkNode | CompassScorecard | ConfluenceBlogPost | ConfluenceDatabase | ConfluenceEmbed | ConfluenceFolder | ConfluenceFooterComment | ConfluenceInlineComment | ConfluencePage | ConfluenceSpace | ConfluenceWhiteboard | Customer360Customer | CustomerServiceCsmCustomer | CustomerServiceCsmOrganization | CustomerUser | DeploymentSummary | DevOpsDesign | DevOpsDocument | DevOpsFeatureFlag | DevOpsOperationsComponentDetails | DevOpsOperationsIncidentDetails | DevOpsOperationsPostIncidentReviewDetails | DevOpsProjectDetails | DevOpsPullRequestDetails | DevOpsRepository | DevOpsSecurityVulnerabilityDetails | DevOpsService | ExternalBranch | ExternalBuildInfo | ExternalCalendarEvent | ExternalCampaign | ExternalCase | ExternalComment | ExternalCommit | ExternalConversation | ExternalCustomerContact | ExternalCustomerOrg | ExternalCustomerOrgCategory | ExternalDashboard | ExternalDataTable | ExternalDeal | ExternalDeployment | ExternalDesign | ExternalDocument | ExternalExperimental | ExternalFeatureFlag | ExternalMessage | ExternalOrganisation | ExternalPosition | ExternalPullRequest | ExternalRemoteLink | ExternalRepository | ExternalSoftwareService | ExternalSpace | ExternalTeam | ExternalTest | ExternalTestExecution | ExternalTestPlan | ExternalTestRun | ExternalTestStatus | ExternalVideo | ExternalVulnerability | ExternalWorkItem | ExternalWorker | IdentityGroup | JiraAlignAggProject | JiraAutodevJob | JiraBoard | JiraConfluenceRemoteIssueLink | JiraCustomRemoteIssueLink | JiraIssue | JiraIssueRemoteIssueLink | JiraIssueType | JiraPlatformComment | JiraPostIncidentReviewLink | JiraPriority | JiraProject | JiraServiceManagementComment | JiraSprint | JiraStatus | JiraVersion | JiraWebRemoteIssueLink | JiraWorklog | KnowledgeDiscoveryTopicByAri | LoomComment | LoomMeeting | LoomMeetingRecurrence | LoomSpace | LoomVideo | MercuryChangeProposal | MercuryFocusArea | MercuryFocusAreaStatusUpdate | MercuryRisk | MercuryStrategicEvent | OpsgenieTeam | RadarPosition | RadarWorker | SpfAsk | SpfPlan | SpfPlanScenario | SpfPlanScenarioInvestment | TeamCustomFieldValue | TeamType | TeamV2 | ThirdPartySecurityContainer | ThirdPartyUser | TownsquareComment | TownsquareGoal | TownsquareGoalUpdate | TownsquareProject | TownsquareProjectUpdate | TownsquareTag;
|
|
61080
60271
|
export declare type GraphStoreCypherQueryV2BatchAriNode = {
|
|
61081
60272
|
__typename?: 'GraphStoreCypherQueryV2BatchAriNode';
|
|
61082
60273
|
data?: Maybe<GraphStoreCypherQueryV2BatchAriNodeUnion>;
|
|
61083
60274
|
id: Scalars['ID']['output'];
|
|
61084
60275
|
};
|
|
61085
|
-
export declare type GraphStoreCypherQueryV2BatchAriNodeUnion = AvpDashboard | AppUser | AssetsObject | AssetsObjectType | AtlassianAccountUser | BitbucketRepository | CompassComponent | CompassLinkNode | CompassScorecard | ConfluenceBlogPost | ConfluenceDatabase | ConfluenceEmbed | ConfluenceFolder | ConfluenceFooterComment | ConfluenceInlineComment | ConfluencePage | ConfluenceSpace | ConfluenceWhiteboard | Customer360Customer | CustomerServiceCsmCustomer | CustomerServiceCsmOrganization | CustomerUser | DeploymentSummary | DevOpsDesign | DevOpsDocument | DevOpsFeatureFlag | DevOpsOperationsComponentDetails | DevOpsOperationsIncidentDetails | DevOpsOperationsPostIncidentReviewDetails | DevOpsProjectDetails | DevOpsPullRequestDetails | DevOpsRepository | DevOpsSecurityVulnerabilityDetails | DevOpsService | ExternalBranch | ExternalBuildInfo | ExternalCalendarEvent | ExternalComment | ExternalCommit | ExternalConversation | ExternalCustomerContact | ExternalCustomerOrg | ExternalCustomerOrgCategory | ExternalDashboard | ExternalDataTable | ExternalDeal | ExternalDeployment | ExternalDesign | ExternalDocument | ExternalExperimental | ExternalFeatureFlag | ExternalMessage | ExternalOrganisation | ExternalPosition | ExternalPullRequest | ExternalRemoteLink | ExternalRepository | ExternalSoftwareService | ExternalSpace | ExternalTeam | ExternalTest | ExternalTestExecution | ExternalTestPlan | ExternalTestRun | ExternalTestStatus | ExternalVideo | ExternalVulnerability | ExternalWorkItem | ExternalWorker | IdentityGroup | JiraAlignAggProject | JiraAutodevJob | JiraBoard | JiraConfluenceRemoteIssueLink | JiraCustomRemoteIssueLink | JiraIssue | JiraIssueRemoteIssueLink | JiraIssueType | JiraPlatformComment | JiraPostIncidentReviewLink | JiraPriority | JiraProject | JiraServiceManagementComment | JiraSprint | JiraStatus | JiraVersion | JiraWebRemoteIssueLink | JiraWorklog | KnowledgeDiscoveryTopicByAri | LoomComment | LoomMeeting | LoomMeetingRecurrence | LoomSpace | LoomVideo | MercuryChangeProposal | MercuryFocusArea | MercuryFocusAreaStatusUpdate | MercuryRisk | MercuryStrategicEvent | OpsgenieTeam | RadarPosition | RadarWorker | SpfAsk | SpfPlan | SpfPlanScenario | SpfPlanScenarioInvestment | TeamCustomFieldValue | TeamType | TeamV2 | ThirdPartySecurityContainer | ThirdPartyUser | TownsquareComment | TownsquareGoal | TownsquareGoalUpdate | TownsquareProject | TownsquareProjectUpdate | TownsquareTag;
|
|
60276
|
+
export declare type GraphStoreCypherQueryV2BatchAriNodeUnion = AvpDashboard | AppUser | AssetsObject | AssetsObjectType | AtlassianAccountUser | BitbucketRepository | CompassComponent | CompassLinkNode | CompassScorecard | ConfluenceBlogPost | ConfluenceDatabase | ConfluenceEmbed | ConfluenceFolder | ConfluenceFooterComment | ConfluenceInlineComment | ConfluencePage | ConfluenceSpace | ConfluenceWhiteboard | Customer360Customer | CustomerServiceCsmCustomer | CustomerServiceCsmOrganization | CustomerUser | DeploymentSummary | DevOpsDesign | DevOpsDocument | DevOpsFeatureFlag | DevOpsOperationsComponentDetails | DevOpsOperationsIncidentDetails | DevOpsOperationsPostIncidentReviewDetails | DevOpsProjectDetails | DevOpsPullRequestDetails | DevOpsRepository | DevOpsSecurityVulnerabilityDetails | DevOpsService | ExternalBranch | ExternalBuildInfo | ExternalCalendarEvent | ExternalCampaign | ExternalCase | ExternalComment | ExternalCommit | ExternalConversation | ExternalCustomerContact | ExternalCustomerOrg | ExternalCustomerOrgCategory | ExternalDashboard | ExternalDataTable | ExternalDeal | ExternalDeployment | ExternalDesign | ExternalDocument | ExternalExperimental | ExternalFeatureFlag | ExternalMessage | ExternalOrganisation | ExternalPosition | ExternalPullRequest | ExternalRemoteLink | ExternalRepository | ExternalSoftwareService | ExternalSpace | ExternalTeam | ExternalTest | ExternalTestExecution | ExternalTestPlan | ExternalTestRun | ExternalTestStatus | ExternalVideo | ExternalVulnerability | ExternalWorkItem | ExternalWorker | IdentityGroup | JiraAlignAggProject | JiraAutodevJob | JiraBoard | JiraConfluenceRemoteIssueLink | JiraCustomRemoteIssueLink | JiraIssue | JiraIssueRemoteIssueLink | JiraIssueType | JiraPlatformComment | JiraPostIncidentReviewLink | JiraPriority | JiraProject | JiraServiceManagementComment | JiraSprint | JiraStatus | JiraVersion | JiraWebRemoteIssueLink | JiraWorklog | KnowledgeDiscoveryTopicByAri | LoomComment | LoomMeeting | LoomMeetingRecurrence | LoomSpace | LoomVideo | MercuryChangeProposal | MercuryFocusArea | MercuryFocusAreaStatusUpdate | MercuryRisk | MercuryStrategicEvent | OpsgenieTeam | RadarPosition | RadarWorker | SpfAsk | SpfPlan | SpfPlanScenario | SpfPlanScenarioInvestment | TeamCustomFieldValue | TeamType | TeamV2 | ThirdPartySecurityContainer | ThirdPartyUser | TownsquareComment | TownsquareGoal | TownsquareGoalUpdate | TownsquareProject | TownsquareProjectUpdate | TownsquareTag;
|
|
61086
60277
|
export declare type GraphStoreCypherQueryV2BatchBooleanObject = {
|
|
61087
60278
|
__typename?: 'GraphStoreCypherQueryV2BatchBooleanObject';
|
|
61088
60279
|
value: Scalars['Boolean']['output'];
|
|
@@ -61227,7 +60418,7 @@ export declare enum GraphStoreCypherQueryV2VersionEnum {
|
|
|
61227
60418
|
V2 = "V2",
|
|
61228
60419
|
V3 = "V3"
|
|
61229
60420
|
}
|
|
61230
|
-
export declare type GraphStoreCypherQueryValueItemUnion = AvpDashboard | AppUser | AssetsObject | AssetsObjectType | AtlassianAccountUser | BitbucketRepository | CompassComponent | CompassLinkNode | CompassScorecard | ConfluenceBlogPost | ConfluenceDatabase | ConfluenceEmbed | ConfluenceFolder | ConfluenceFooterComment | ConfluenceInlineComment | ConfluencePage | ConfluenceSpace | ConfluenceWhiteboard | Customer360Customer | CustomerServiceCsmCustomer | CustomerServiceCsmOrganization | CustomerUser | DeploymentSummary | DevOpsDesign | DevOpsDocument | DevOpsFeatureFlag | DevOpsOperationsComponentDetails | DevOpsOperationsIncidentDetails | DevOpsOperationsPostIncidentReviewDetails | DevOpsProjectDetails | DevOpsPullRequestDetails | DevOpsRepository | DevOpsSecurityVulnerabilityDetails | DevOpsService | ExternalBranch | ExternalBuildInfo | ExternalCalendarEvent | ExternalComment | ExternalCommit | ExternalConversation | ExternalCustomerContact | ExternalCustomerOrg | ExternalCustomerOrgCategory | ExternalDashboard | ExternalDataTable | ExternalDeal | ExternalDeployment | ExternalDesign | ExternalDocument | ExternalExperimental | ExternalFeatureFlag | ExternalMessage | ExternalOrganisation | ExternalPosition | ExternalPullRequest | ExternalRemoteLink | ExternalRepository | ExternalSoftwareService | ExternalSpace | ExternalTeam | ExternalTest | ExternalTestExecution | ExternalTestPlan | ExternalTestRun | ExternalTestStatus | ExternalVideo | ExternalVulnerability | ExternalWorkItem | ExternalWorker | IdentityGroup | JiraAlignAggProject | JiraAutodevJob | JiraBoard | JiraConfluenceRemoteIssueLink | JiraCustomRemoteIssueLink | JiraIssue | JiraIssueRemoteIssueLink | JiraIssueType | JiraPlatformComment | JiraPostIncidentReviewLink | JiraPriority | JiraProject | JiraServiceManagementComment | JiraSprint | JiraStatus | JiraVersion | JiraWebRemoteIssueLink | JiraWorklog | KnowledgeDiscoveryTopicByAri | LoomComment | LoomMeeting | LoomMeetingRecurrence | LoomSpace | LoomVideo | MercuryChangeProposal | MercuryFocusArea | MercuryFocusAreaStatusUpdate | MercuryRisk | MercuryStrategicEvent | OpsgenieTeam | RadarPosition | RadarWorker | SpfAsk | SpfPlan | SpfPlanScenario | SpfPlanScenarioInvestment | TeamCustomFieldValue | TeamType | TeamV2 | ThirdPartySecurityContainer | ThirdPartyUser | TownsquareComment | TownsquareGoal | TownsquareGoalUpdate | TownsquareProject | TownsquareProjectUpdate | TownsquareTag;
|
|
60421
|
+
export declare type GraphStoreCypherQueryValueItemUnion = AvpDashboard | AppUser | AssetsObject | AssetsObjectType | AtlassianAccountUser | BitbucketRepository | CompassComponent | CompassLinkNode | CompassScorecard | ConfluenceBlogPost | ConfluenceDatabase | ConfluenceEmbed | ConfluenceFolder | ConfluenceFooterComment | ConfluenceInlineComment | ConfluencePage | ConfluenceSpace | ConfluenceWhiteboard | Customer360Customer | CustomerServiceCsmCustomer | CustomerServiceCsmOrganization | CustomerUser | DeploymentSummary | DevOpsDesign | DevOpsDocument | DevOpsFeatureFlag | DevOpsOperationsComponentDetails | DevOpsOperationsIncidentDetails | DevOpsOperationsPostIncidentReviewDetails | DevOpsProjectDetails | DevOpsPullRequestDetails | DevOpsRepository | DevOpsSecurityVulnerabilityDetails | DevOpsService | ExternalBranch | ExternalBuildInfo | ExternalCalendarEvent | ExternalCampaign | ExternalCase | ExternalComment | ExternalCommit | ExternalConversation | ExternalCustomerContact | ExternalCustomerOrg | ExternalCustomerOrgCategory | ExternalDashboard | ExternalDataTable | ExternalDeal | ExternalDeployment | ExternalDesign | ExternalDocument | ExternalExperimental | ExternalFeatureFlag | ExternalMessage | ExternalOrganisation | ExternalPosition | ExternalPullRequest | ExternalRemoteLink | ExternalRepository | ExternalSoftwareService | ExternalSpace | ExternalTeam | ExternalTest | ExternalTestExecution | ExternalTestPlan | ExternalTestRun | ExternalTestStatus | ExternalVideo | ExternalVulnerability | ExternalWorkItem | ExternalWorker | IdentityGroup | JiraAlignAggProject | JiraAutodevJob | JiraBoard | JiraConfluenceRemoteIssueLink | JiraCustomRemoteIssueLink | JiraIssue | JiraIssueRemoteIssueLink | JiraIssueType | JiraPlatformComment | JiraPostIncidentReviewLink | JiraPriority | JiraProject | JiraServiceManagementComment | JiraSprint | JiraStatus | JiraVersion | JiraWebRemoteIssueLink | JiraWorklog | KnowledgeDiscoveryTopicByAri | LoomComment | LoomMeeting | LoomMeetingRecurrence | LoomSpace | LoomVideo | MercuryChangeProposal | MercuryFocusArea | MercuryFocusAreaStatusUpdate | MercuryRisk | MercuryStrategicEvent | OpsgenieTeam | RadarPosition | RadarWorker | SpfAsk | SpfPlan | SpfPlanScenario | SpfPlanScenarioInvestment | TeamCustomFieldValue | TeamType | TeamV2 | ThirdPartySecurityContainer | ThirdPartyUser | TownsquareComment | TownsquareGoal | TownsquareGoalUpdate | TownsquareProject | TownsquareProjectUpdate | TownsquareTag;
|
|
61231
60422
|
export declare type GraphStoreCypherQueryValueNode = {
|
|
61232
60423
|
__typename?: 'GraphStoreCypherQueryValueNode';
|
|
61233
60424
|
data?: Maybe<GraphStoreCypherQueryValueItemUnion>;
|
|
@@ -61706,15 +60897,33 @@ export declare type GraphStoreDynamicRelationshipAssetToUserSortInput = {
|
|
|
61706
60897
|
export declare type GraphStoreEntityIsRelatedToEntitySortInput = {
|
|
61707
60898
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
61708
60899
|
};
|
|
60900
|
+
export declare type GraphStoreExternalCalendarEventHasChildExternalCalendarEventSortInput = {
|
|
60901
|
+
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
60902
|
+
};
|
|
60903
|
+
export declare type GraphStoreExternalCalendarEventLinksExternalVideoSortInput = {
|
|
60904
|
+
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
60905
|
+
};
|
|
60906
|
+
export declare type GraphStoreExternalCustomerContactHasExternalCalendarEventSortInput = {
|
|
60907
|
+
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
60908
|
+
};
|
|
60909
|
+
export declare type GraphStoreExternalCustomerContactHasExternalWorkItemSortInput = {
|
|
60910
|
+
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
60911
|
+
};
|
|
61709
60912
|
export declare type GraphStoreExternalCustomerOrgHasChildExternalCustomerOrgSortInput = {
|
|
61710
60913
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
61711
60914
|
};
|
|
60915
|
+
export declare type GraphStoreExternalCustomerOrgHasExternalCalendarEventSortInput = {
|
|
60916
|
+
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
60917
|
+
};
|
|
61712
60918
|
export declare type GraphStoreExternalCustomerOrgHasExternalCustomerContactSortInput = {
|
|
61713
60919
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
61714
60920
|
};
|
|
61715
60921
|
export declare type GraphStoreExternalCustomerOrgHasExternalDealSortInput = {
|
|
61716
60922
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
61717
60923
|
};
|
|
60924
|
+
export declare type GraphStoreExternalCustomerOrgHasExternalWorkItemSortInput = {
|
|
60925
|
+
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
60926
|
+
};
|
|
61718
60927
|
export declare type GraphStoreExternalCustomerOrgLinksExternalCustomerOrgCategorySortInput = {
|
|
61719
60928
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
61720
60929
|
};
|
|
@@ -61724,6 +60933,12 @@ export declare type GraphStoreExternalCustomerOrgWorksOnJiraWorkItemWorklogSortI
|
|
|
61724
60933
|
export declare type GraphStoreExternalDataTableHasExternalSpaceSortInput = {
|
|
61725
60934
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
61726
60935
|
};
|
|
60936
|
+
export declare type GraphStoreExternalDealHasExternalCalendarEventSortInput = {
|
|
60937
|
+
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
60938
|
+
};
|
|
60939
|
+
export declare type GraphStoreExternalDealHasExternalWorkItemSortInput = {
|
|
60940
|
+
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
60941
|
+
};
|
|
61727
60942
|
export declare type GraphStoreExternalDocumentHasExternalSpaceSortInput = {
|
|
61728
60943
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
61729
60944
|
};
|
|
@@ -62064,7 +61279,7 @@ export declare type GraphStoreFullContentReferencedEntityEndNode = {
|
|
|
62064
61279
|
data?: Maybe<GraphStoreFullContentReferencedEntityEndUnion>;
|
|
62065
61280
|
id: Scalars['ID']['output'];
|
|
62066
61281
|
};
|
|
62067
|
-
export declare type GraphStoreFullContentReferencedEntityEndUnion = AvpDashboard | AppUser | AssetsObject | AssetsObjectType | AtlassianAccountUser | BitbucketRepository | CompassComponent | CompassLinkNode | CompassScorecard | ConfluenceBlogPost | ConfluenceDatabase | ConfluenceEmbed | ConfluenceFolder | ConfluenceFooterComment | ConfluenceInlineComment | ConfluencePage | ConfluenceSpace | ConfluenceWhiteboard | Customer360Customer | CustomerServiceCsmCustomer | CustomerServiceCsmOrganization | CustomerUser | DeploymentSummary | DevOpsDesign | DevOpsDocument | DevOpsFeatureFlag | DevOpsOperationsComponentDetails | DevOpsOperationsIncidentDetails | DevOpsOperationsPostIncidentReviewDetails | DevOpsProjectDetails | DevOpsPullRequestDetails | DevOpsRepository | DevOpsSecurityVulnerabilityDetails | DevOpsService | ExternalBranch | ExternalBuildInfo | ExternalCalendarEvent | ExternalComment | ExternalCommit | ExternalConversation | ExternalCustomerContact | ExternalCustomerOrg | ExternalCustomerOrgCategory | ExternalDashboard | ExternalDataTable | ExternalDeal | ExternalDeployment | ExternalDesign | ExternalDocument | ExternalExperimental | ExternalFeatureFlag | ExternalMessage | ExternalOrganisation | ExternalPosition | ExternalPullRequest | ExternalRemoteLink | ExternalRepository | ExternalSoftwareService | ExternalSpace | ExternalTeam | ExternalTest | ExternalTestExecution | ExternalTestPlan | ExternalTestRun | ExternalTestStatus | ExternalVideo | ExternalVulnerability | ExternalWorkItem | ExternalWorker | IdentityGroup | JiraAlignAggProject | JiraAutodevJob | JiraBoard | JiraConfluenceRemoteIssueLink | JiraCustomRemoteIssueLink | JiraIssue | JiraIssueRemoteIssueLink | JiraIssueType | JiraPlatformComment | JiraPostIncidentReviewLink | JiraPriority | JiraProject | JiraServiceManagementComment | JiraSprint | JiraStatus | JiraVersion | JiraWebRemoteIssueLink | JiraWorklog | KnowledgeDiscoveryTopicByAri | LoomComment | LoomMeeting | LoomMeetingRecurrence | LoomSpace | LoomVideo | MercuryChangeProposal | MercuryFocusArea | MercuryFocusAreaStatusUpdate | MercuryRisk | MercuryStrategicEvent | OpsgenieTeam | RadarPosition | RadarWorker | SpfAsk | SpfPlan | SpfPlanScenario | SpfPlanScenarioInvestment | TeamCustomFieldValue | TeamType | TeamV2 | ThirdPartySecurityContainer | ThirdPartyUser | TownsquareComment | TownsquareGoal | TownsquareGoalUpdate | TownsquareProject | TownsquareProjectUpdate | TownsquareTag;
|
|
61282
|
+
export declare type GraphStoreFullContentReferencedEntityEndUnion = AvpDashboard | AppUser | AssetsObject | AssetsObjectType | AtlassianAccountUser | BitbucketRepository | CompassComponent | CompassLinkNode | CompassScorecard | ConfluenceBlogPost | ConfluenceDatabase | ConfluenceEmbed | ConfluenceFolder | ConfluenceFooterComment | ConfluenceInlineComment | ConfluencePage | ConfluenceSpace | ConfluenceWhiteboard | Customer360Customer | CustomerServiceCsmCustomer | CustomerServiceCsmOrganization | CustomerUser | DeploymentSummary | DevOpsDesign | DevOpsDocument | DevOpsFeatureFlag | DevOpsOperationsComponentDetails | DevOpsOperationsIncidentDetails | DevOpsOperationsPostIncidentReviewDetails | DevOpsProjectDetails | DevOpsPullRequestDetails | DevOpsRepository | DevOpsSecurityVulnerabilityDetails | DevOpsService | ExternalBranch | ExternalBuildInfo | ExternalCalendarEvent | ExternalCampaign | ExternalCase | ExternalComment | ExternalCommit | ExternalConversation | ExternalCustomerContact | ExternalCustomerOrg | ExternalCustomerOrgCategory | ExternalDashboard | ExternalDataTable | ExternalDeal | ExternalDeployment | ExternalDesign | ExternalDocument | ExternalExperimental | ExternalFeatureFlag | ExternalMessage | ExternalOrganisation | ExternalPosition | ExternalPullRequest | ExternalRemoteLink | ExternalRepository | ExternalSoftwareService | ExternalSpace | ExternalTeam | ExternalTest | ExternalTestExecution | ExternalTestPlan | ExternalTestRun | ExternalTestStatus | ExternalVideo | ExternalVulnerability | ExternalWorkItem | ExternalWorker | IdentityGroup | JiraAlignAggProject | JiraAutodevJob | JiraBoard | JiraConfluenceRemoteIssueLink | JiraCustomRemoteIssueLink | JiraIssue | JiraIssueRemoteIssueLink | JiraIssueType | JiraPlatformComment | JiraPostIncidentReviewLink | JiraPriority | JiraProject | JiraServiceManagementComment | JiraSprint | JiraStatus | JiraVersion | JiraWebRemoteIssueLink | JiraWorklog | KnowledgeDiscoveryTopicByAri | LoomComment | LoomMeeting | LoomMeetingRecurrence | LoomSpace | LoomVideo | MercuryChangeProposal | MercuryFocusArea | MercuryFocusAreaStatusUpdate | MercuryRisk | MercuryStrategicEvent | OpsgenieTeam | RadarPosition | RadarWorker | SpfAsk | SpfPlan | SpfPlanScenario | SpfPlanScenarioInvestment | TeamCustomFieldValue | TeamType | TeamV2 | ThirdPartySecurityContainer | ThirdPartyUser | TownsquareComment | TownsquareGoal | TownsquareGoalUpdate | TownsquareProject | TownsquareProjectUpdate | TownsquareTag;
|
|
62068
61283
|
export declare type GraphStoreFullContentReferencedEntityNode = Node & {
|
|
62069
61284
|
__typename?: 'GraphStoreFullContentReferencedEntityNode';
|
|
62070
61285
|
createdAt: Scalars['DateTime']['output'];
|
|
@@ -62078,7 +61293,7 @@ export declare type GraphStoreFullContentReferencedEntityStartNode = {
|
|
|
62078
61293
|
data?: Maybe<GraphStoreFullContentReferencedEntityStartUnion>;
|
|
62079
61294
|
id: Scalars['ID']['output'];
|
|
62080
61295
|
};
|
|
62081
|
-
export declare type GraphStoreFullContentReferencedEntityStartUnion = AvpDashboard | AppUser | AssetsObject | AssetsObjectType | AtlassianAccountUser | CompassComponent | CompassLinkNode | CompassScorecard | ConfluenceBlogPost | ConfluenceDatabase | ConfluenceEmbed | ConfluenceFolder | ConfluenceFooterComment | ConfluenceInlineComment | ConfluencePage | ConfluenceSpace | ConfluenceWhiteboard | Customer360Customer | CustomerServiceCsmCustomer | CustomerServiceCsmOrganization | CustomerUser | DeploymentSummary | DevOpsDesign | DevOpsDocument | DevOpsFeatureFlag | DevOpsOperationsComponentDetails | DevOpsOperationsIncidentDetails | DevOpsOperationsPostIncidentReviewDetails | DevOpsProjectDetails | DevOpsPullRequestDetails | DevOpsRepository | DevOpsSecurityVulnerabilityDetails | DevOpsService | ExternalBranch | ExternalBuildInfo | ExternalCalendarEvent | ExternalComment | ExternalCommit | ExternalConversation | ExternalCustomerContact | ExternalCustomerOrg | ExternalCustomerOrgCategory | ExternalDashboard | ExternalDataTable | ExternalDeal | ExternalDeployment | ExternalDesign | ExternalDocument | ExternalExperimental | ExternalFeatureFlag | ExternalMessage | ExternalOrganisation | ExternalPosition | ExternalPullRequest | ExternalRemoteLink | ExternalRepository | ExternalSoftwareService | ExternalSpace | ExternalTeam | ExternalTest | ExternalTestExecution | ExternalTestPlan | ExternalTestRun | ExternalTestStatus | ExternalVideo | ExternalVulnerability | ExternalWorkItem | ExternalWorker | JiraAlignAggProject | JiraAutodevJob | JiraBoard | JiraConfluenceRemoteIssueLink | JiraCustomRemoteIssueLink | JiraIssue | JiraIssueRemoteIssueLink | JiraIssueType | JiraPlatformComment | JiraPriority | JiraProject | JiraServiceManagementComment | JiraSprint | JiraStatus | JiraVersion | JiraWebRemoteIssueLink | JiraWorklog | LoomComment | LoomMeeting | LoomMeetingRecurrence | LoomSpace | LoomVideo | MercuryChangeProposal | MercuryFocusArea | MercuryFocusAreaStatusUpdate | MercuryRisk | MercuryStrategicEvent | OpsgenieTeam | RadarPosition | RadarWorker | SpfAsk | SpfPlan | SpfPlanScenario | SpfPlanScenarioInvestment | TeamCustomFieldValue | TeamType | TeamV2 | ThirdPartyUser | TownsquareComment | TownsquareGoal | TownsquareGoalUpdate | TownsquareProject | TownsquareProjectUpdate | TownsquareTag;
|
|
61296
|
+
export declare type GraphStoreFullContentReferencedEntityStartUnion = AvpDashboard | AppUser | AssetsObject | AssetsObjectType | AtlassianAccountUser | CompassComponent | CompassLinkNode | CompassScorecard | ConfluenceBlogPost | ConfluenceDatabase | ConfluenceEmbed | ConfluenceFolder | ConfluenceFooterComment | ConfluenceInlineComment | ConfluencePage | ConfluenceSpace | ConfluenceWhiteboard | Customer360Customer | CustomerServiceCsmCustomer | CustomerServiceCsmOrganization | CustomerUser | DeploymentSummary | DevOpsDesign | DevOpsDocument | DevOpsFeatureFlag | DevOpsOperationsComponentDetails | DevOpsOperationsIncidentDetails | DevOpsOperationsPostIncidentReviewDetails | DevOpsProjectDetails | DevOpsPullRequestDetails | DevOpsRepository | DevOpsSecurityVulnerabilityDetails | DevOpsService | ExternalBranch | ExternalBuildInfo | ExternalCalendarEvent | ExternalCampaign | ExternalCase | ExternalComment | ExternalCommit | ExternalConversation | ExternalCustomerContact | ExternalCustomerOrg | ExternalCustomerOrgCategory | ExternalDashboard | ExternalDataTable | ExternalDeal | ExternalDeployment | ExternalDesign | ExternalDocument | ExternalExperimental | ExternalFeatureFlag | ExternalMessage | ExternalOrganisation | ExternalPosition | ExternalPullRequest | ExternalRemoteLink | ExternalRepository | ExternalSoftwareService | ExternalSpace | ExternalTeam | ExternalTest | ExternalTestExecution | ExternalTestPlan | ExternalTestRun | ExternalTestStatus | ExternalVideo | ExternalVulnerability | ExternalWorkItem | ExternalWorker | JiraAlignAggProject | JiraAutodevJob | JiraBoard | JiraConfluenceRemoteIssueLink | JiraCustomRemoteIssueLink | JiraIssue | JiraIssueRemoteIssueLink | JiraIssueType | JiraPlatformComment | JiraPriority | JiraProject | JiraServiceManagementComment | JiraSprint | JiraStatus | JiraVersion | JiraWebRemoteIssueLink | JiraWorklog | LoomComment | LoomMeeting | LoomMeetingRecurrence | LoomSpace | LoomVideo | MercuryChangeProposal | MercuryFocusArea | MercuryFocusAreaStatusUpdate | MercuryRisk | MercuryStrategicEvent | OpsgenieTeam | RadarPosition | RadarWorker | SpfAsk | SpfPlan | SpfPlanScenario | SpfPlanScenarioInvestment | TeamCustomFieldValue | TeamType | TeamV2 | ThirdPartyUser | TownsquareComment | TownsquareGoal | TownsquareGoalUpdate | TownsquareProject | TownsquareProjectUpdate | TownsquareTag;
|
|
62082
61297
|
export declare type GraphStoreFullIncidentAssociatedPostIncidentReviewConnection = HasPageInfo & HasTotal & {
|
|
62083
61298
|
__typename?: 'GraphStoreFullIncidentAssociatedPostIncidentReviewConnection';
|
|
62084
61299
|
edges: Array<Maybe<GraphStoreFullIncidentAssociatedPostIncidentReviewEdge>>;
|
|
@@ -68871,8 +68086,8 @@ export declare type GraphStoreSimplifiedContentReferencedEntityInverseEdge = {
|
|
|
68871
68086
|
lastUpdated: Scalars['DateTime']['output'];
|
|
68872
68087
|
node?: Maybe<GraphStoreSimplifiedContentReferencedEntityInverseUnion>;
|
|
68873
68088
|
};
|
|
68874
|
-
export declare type GraphStoreSimplifiedContentReferencedEntityInverseUnion = AvpDashboard | AppUser | AssetsObject | AssetsObjectType | AtlassianAccountUser | CompassComponent | CompassLinkNode | CompassScorecard | ConfluenceBlogPost | ConfluenceDatabase | ConfluenceEmbed | ConfluenceFolder | ConfluenceFooterComment | ConfluenceInlineComment | ConfluencePage | ConfluenceSpace | ConfluenceWhiteboard | Customer360Customer | CustomerServiceCsmCustomer | CustomerServiceCsmOrganization | CustomerUser | DeploymentSummary | DevOpsDesign | DevOpsDocument | DevOpsFeatureFlag | DevOpsOperationsComponentDetails | DevOpsOperationsIncidentDetails | DevOpsOperationsPostIncidentReviewDetails | DevOpsProjectDetails | DevOpsPullRequestDetails | DevOpsRepository | DevOpsSecurityVulnerabilityDetails | DevOpsService | ExternalBranch | ExternalBuildInfo | ExternalCalendarEvent | ExternalComment | ExternalCommit | ExternalConversation | ExternalCustomerContact | ExternalCustomerOrg | ExternalCustomerOrgCategory | ExternalDashboard | ExternalDataTable | ExternalDeal | ExternalDeployment | ExternalDesign | ExternalDocument | ExternalExperimental | ExternalFeatureFlag | ExternalMessage | ExternalOrganisation | ExternalPosition | ExternalPullRequest | ExternalRemoteLink | ExternalRepository | ExternalSoftwareService | ExternalSpace | ExternalTeam | ExternalTest | ExternalTestExecution | ExternalTestPlan | ExternalTestRun | ExternalTestStatus | ExternalVideo | ExternalVulnerability | ExternalWorkItem | ExternalWorker | JiraAlignAggProject | JiraAutodevJob | JiraBoard | JiraConfluenceRemoteIssueLink | JiraCustomRemoteIssueLink | JiraIssue | JiraIssueRemoteIssueLink | JiraIssueType | JiraPlatformComment | JiraPriority | JiraProject | JiraServiceManagementComment | JiraSprint | JiraStatus | JiraVersion | JiraWebRemoteIssueLink | JiraWorklog | LoomComment | LoomMeeting | LoomMeetingRecurrence | LoomSpace | LoomVideo | MercuryChangeProposal | MercuryFocusArea | MercuryFocusAreaStatusUpdate | MercuryRisk | MercuryStrategicEvent | OpsgenieTeam | RadarPosition | RadarWorker | SpfAsk | SpfPlan | SpfPlanScenario | SpfPlanScenarioInvestment | TeamCustomFieldValue | TeamType | TeamV2 | ThirdPartyUser | TownsquareComment | TownsquareGoal | TownsquareGoalUpdate | TownsquareProject | TownsquareProjectUpdate | TownsquareTag;
|
|
68875
|
-
export declare type GraphStoreSimplifiedContentReferencedEntityUnion = AvpDashboard | AppUser | AssetsObject | AssetsObjectType | AtlassianAccountUser | BitbucketRepository | CompassComponent | CompassLinkNode | CompassScorecard | ConfluenceBlogPost | ConfluenceDatabase | ConfluenceEmbed | ConfluenceFolder | ConfluenceFooterComment | ConfluenceInlineComment | ConfluencePage | ConfluenceSpace | ConfluenceWhiteboard | Customer360Customer | CustomerServiceCsmCustomer | CustomerServiceCsmOrganization | CustomerUser | DeploymentSummary | DevOpsDesign | DevOpsDocument | DevOpsFeatureFlag | DevOpsOperationsComponentDetails | DevOpsOperationsIncidentDetails | DevOpsOperationsPostIncidentReviewDetails | DevOpsProjectDetails | DevOpsPullRequestDetails | DevOpsRepository | DevOpsSecurityVulnerabilityDetails | DevOpsService | ExternalBranch | ExternalBuildInfo | ExternalCalendarEvent | ExternalComment | ExternalCommit | ExternalConversation | ExternalCustomerContact | ExternalCustomerOrg | ExternalCustomerOrgCategory | ExternalDashboard | ExternalDataTable | ExternalDeal | ExternalDeployment | ExternalDesign | ExternalDocument | ExternalExperimental | ExternalFeatureFlag | ExternalMessage | ExternalOrganisation | ExternalPosition | ExternalPullRequest | ExternalRemoteLink | ExternalRepository | ExternalSoftwareService | ExternalSpace | ExternalTeam | ExternalTest | ExternalTestExecution | ExternalTestPlan | ExternalTestRun | ExternalTestStatus | ExternalVideo | ExternalVulnerability | ExternalWorkItem | ExternalWorker | IdentityGroup | JiraAlignAggProject | JiraAutodevJob | JiraBoard | JiraConfluenceRemoteIssueLink | JiraCustomRemoteIssueLink | JiraIssue | JiraIssueRemoteIssueLink | JiraIssueType | JiraPlatformComment | JiraPostIncidentReviewLink | JiraPriority | JiraProject | JiraServiceManagementComment | JiraSprint | JiraStatus | JiraVersion | JiraWebRemoteIssueLink | JiraWorklog | KnowledgeDiscoveryTopicByAri | LoomComment | LoomMeeting | LoomMeetingRecurrence | LoomSpace | LoomVideo | MercuryChangeProposal | MercuryFocusArea | MercuryFocusAreaStatusUpdate | MercuryRisk | MercuryStrategicEvent | OpsgenieTeam | RadarPosition | RadarWorker | SpfAsk | SpfPlan | SpfPlanScenario | SpfPlanScenarioInvestment | TeamCustomFieldValue | TeamType | TeamV2 | ThirdPartySecurityContainer | ThirdPartyUser | TownsquareComment | TownsquareGoal | TownsquareGoalUpdate | TownsquareProject | TownsquareProjectUpdate | TownsquareTag;
|
|
68089
|
+
export declare type GraphStoreSimplifiedContentReferencedEntityInverseUnion = AvpDashboard | AppUser | AssetsObject | AssetsObjectType | AtlassianAccountUser | CompassComponent | CompassLinkNode | CompassScorecard | ConfluenceBlogPost | ConfluenceDatabase | ConfluenceEmbed | ConfluenceFolder | ConfluenceFooterComment | ConfluenceInlineComment | ConfluencePage | ConfluenceSpace | ConfluenceWhiteboard | Customer360Customer | CustomerServiceCsmCustomer | CustomerServiceCsmOrganization | CustomerUser | DeploymentSummary | DevOpsDesign | DevOpsDocument | DevOpsFeatureFlag | DevOpsOperationsComponentDetails | DevOpsOperationsIncidentDetails | DevOpsOperationsPostIncidentReviewDetails | DevOpsProjectDetails | DevOpsPullRequestDetails | DevOpsRepository | DevOpsSecurityVulnerabilityDetails | DevOpsService | ExternalBranch | ExternalBuildInfo | ExternalCalendarEvent | ExternalCampaign | ExternalCase | ExternalComment | ExternalCommit | ExternalConversation | ExternalCustomerContact | ExternalCustomerOrg | ExternalCustomerOrgCategory | ExternalDashboard | ExternalDataTable | ExternalDeal | ExternalDeployment | ExternalDesign | ExternalDocument | ExternalExperimental | ExternalFeatureFlag | ExternalMessage | ExternalOrganisation | ExternalPosition | ExternalPullRequest | ExternalRemoteLink | ExternalRepository | ExternalSoftwareService | ExternalSpace | ExternalTeam | ExternalTest | ExternalTestExecution | ExternalTestPlan | ExternalTestRun | ExternalTestStatus | ExternalVideo | ExternalVulnerability | ExternalWorkItem | ExternalWorker | JiraAlignAggProject | JiraAutodevJob | JiraBoard | JiraConfluenceRemoteIssueLink | JiraCustomRemoteIssueLink | JiraIssue | JiraIssueRemoteIssueLink | JiraIssueType | JiraPlatformComment | JiraPriority | JiraProject | JiraServiceManagementComment | JiraSprint | JiraStatus | JiraVersion | JiraWebRemoteIssueLink | JiraWorklog | LoomComment | LoomMeeting | LoomMeetingRecurrence | LoomSpace | LoomVideo | MercuryChangeProposal | MercuryFocusArea | MercuryFocusAreaStatusUpdate | MercuryRisk | MercuryStrategicEvent | OpsgenieTeam | RadarPosition | RadarWorker | SpfAsk | SpfPlan | SpfPlanScenario | SpfPlanScenarioInvestment | TeamCustomFieldValue | TeamType | TeamV2 | ThirdPartyUser | TownsquareComment | TownsquareGoal | TownsquareGoalUpdate | TownsquareProject | TownsquareProjectUpdate | TownsquareTag;
|
|
68090
|
+
export declare type GraphStoreSimplifiedContentReferencedEntityUnion = AvpDashboard | AppUser | AssetsObject | AssetsObjectType | AtlassianAccountUser | BitbucketRepository | CompassComponent | CompassLinkNode | CompassScorecard | ConfluenceBlogPost | ConfluenceDatabase | ConfluenceEmbed | ConfluenceFolder | ConfluenceFooterComment | ConfluenceInlineComment | ConfluencePage | ConfluenceSpace | ConfluenceWhiteboard | Customer360Customer | CustomerServiceCsmCustomer | CustomerServiceCsmOrganization | CustomerUser | DeploymentSummary | DevOpsDesign | DevOpsDocument | DevOpsFeatureFlag | DevOpsOperationsComponentDetails | DevOpsOperationsIncidentDetails | DevOpsOperationsPostIncidentReviewDetails | DevOpsProjectDetails | DevOpsPullRequestDetails | DevOpsRepository | DevOpsSecurityVulnerabilityDetails | DevOpsService | ExternalBranch | ExternalBuildInfo | ExternalCalendarEvent | ExternalCampaign | ExternalCase | ExternalComment | ExternalCommit | ExternalConversation | ExternalCustomerContact | ExternalCustomerOrg | ExternalCustomerOrgCategory | ExternalDashboard | ExternalDataTable | ExternalDeal | ExternalDeployment | ExternalDesign | ExternalDocument | ExternalExperimental | ExternalFeatureFlag | ExternalMessage | ExternalOrganisation | ExternalPosition | ExternalPullRequest | ExternalRemoteLink | ExternalRepository | ExternalSoftwareService | ExternalSpace | ExternalTeam | ExternalTest | ExternalTestExecution | ExternalTestPlan | ExternalTestRun | ExternalTestStatus | ExternalVideo | ExternalVulnerability | ExternalWorkItem | ExternalWorker | IdentityGroup | JiraAlignAggProject | JiraAutodevJob | JiraBoard | JiraConfluenceRemoteIssueLink | JiraCustomRemoteIssueLink | JiraIssue | JiraIssueRemoteIssueLink | JiraIssueType | JiraPlatformComment | JiraPostIncidentReviewLink | JiraPriority | JiraProject | JiraServiceManagementComment | JiraSprint | JiraStatus | JiraVersion | JiraWebRemoteIssueLink | JiraWorklog | KnowledgeDiscoveryTopicByAri | LoomComment | LoomMeeting | LoomMeetingRecurrence | LoomSpace | LoomVideo | MercuryChangeProposal | MercuryFocusArea | MercuryFocusAreaStatusUpdate | MercuryRisk | MercuryStrategicEvent | OpsgenieTeam | RadarPosition | RadarWorker | SpfAsk | SpfPlan | SpfPlanScenario | SpfPlanScenarioInvestment | TeamCustomFieldValue | TeamType | TeamV2 | ThirdPartySecurityContainer | ThirdPartyUser | TownsquareComment | TownsquareGoal | TownsquareGoalUpdate | TownsquareProject | TownsquareProjectUpdate | TownsquareTag;
|
|
68876
68091
|
export declare type GraphStoreSimplifiedConversationHasMessageConnection = HasPageInfo & {
|
|
68877
68092
|
__typename?: 'GraphStoreSimplifiedConversationHasMessageConnection';
|
|
68878
68093
|
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedConversationHasMessageEdge>>>;
|
|
@@ -69293,6 +68508,118 @@ export declare type GraphStoreSimplifiedEntityIsRelatedToEntityInverseEdge = {
|
|
|
69293
68508
|
};
|
|
69294
68509
|
export declare type GraphStoreSimplifiedEntityIsRelatedToEntityInverseUnion = ConfluenceBlogPost | ConfluencePage;
|
|
69295
68510
|
export declare type GraphStoreSimplifiedEntityIsRelatedToEntityUnion = ConfluenceBlogPost | ConfluencePage;
|
|
68511
|
+
export declare type GraphStoreSimplifiedExternalCalendarEventHasChildExternalCalendarEventConnection = HasPageInfo & {
|
|
68512
|
+
__typename?: 'GraphStoreSimplifiedExternalCalendarEventHasChildExternalCalendarEventConnection';
|
|
68513
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedExternalCalendarEventHasChildExternalCalendarEventEdge>>>;
|
|
68514
|
+
pageInfo: PageInfo;
|
|
68515
|
+
};
|
|
68516
|
+
export declare type GraphStoreSimplifiedExternalCalendarEventHasChildExternalCalendarEventEdge = {
|
|
68517
|
+
__typename?: 'GraphStoreSimplifiedExternalCalendarEventHasChildExternalCalendarEventEdge';
|
|
68518
|
+
createdAt: Scalars['DateTime']['output'];
|
|
68519
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
68520
|
+
id: Scalars['ID']['output'];
|
|
68521
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
68522
|
+
node?: Maybe<GraphStoreSimplifiedExternalCalendarEventHasChildExternalCalendarEventUnion>;
|
|
68523
|
+
};
|
|
68524
|
+
export declare type GraphStoreSimplifiedExternalCalendarEventHasChildExternalCalendarEventInverseConnection = HasPageInfo & {
|
|
68525
|
+
__typename?: 'GraphStoreSimplifiedExternalCalendarEventHasChildExternalCalendarEventInverseConnection';
|
|
68526
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedExternalCalendarEventHasChildExternalCalendarEventInverseEdge>>>;
|
|
68527
|
+
pageInfo: PageInfo;
|
|
68528
|
+
};
|
|
68529
|
+
export declare type GraphStoreSimplifiedExternalCalendarEventHasChildExternalCalendarEventInverseEdge = {
|
|
68530
|
+
__typename?: 'GraphStoreSimplifiedExternalCalendarEventHasChildExternalCalendarEventInverseEdge';
|
|
68531
|
+
createdAt: Scalars['DateTime']['output'];
|
|
68532
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
68533
|
+
id: Scalars['ID']['output'];
|
|
68534
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
68535
|
+
node?: Maybe<GraphStoreSimplifiedExternalCalendarEventHasChildExternalCalendarEventInverseUnion>;
|
|
68536
|
+
};
|
|
68537
|
+
export declare type GraphStoreSimplifiedExternalCalendarEventHasChildExternalCalendarEventInverseUnion = ExternalCalendarEvent;
|
|
68538
|
+
export declare type GraphStoreSimplifiedExternalCalendarEventHasChildExternalCalendarEventUnion = ExternalCalendarEvent;
|
|
68539
|
+
export declare type GraphStoreSimplifiedExternalCalendarEventLinksExternalVideoConnection = HasPageInfo & {
|
|
68540
|
+
__typename?: 'GraphStoreSimplifiedExternalCalendarEventLinksExternalVideoConnection';
|
|
68541
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedExternalCalendarEventLinksExternalVideoEdge>>>;
|
|
68542
|
+
pageInfo: PageInfo;
|
|
68543
|
+
};
|
|
68544
|
+
export declare type GraphStoreSimplifiedExternalCalendarEventLinksExternalVideoEdge = {
|
|
68545
|
+
__typename?: 'GraphStoreSimplifiedExternalCalendarEventLinksExternalVideoEdge';
|
|
68546
|
+
createdAt: Scalars['DateTime']['output'];
|
|
68547
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
68548
|
+
id: Scalars['ID']['output'];
|
|
68549
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
68550
|
+
node?: Maybe<GraphStoreSimplifiedExternalCalendarEventLinksExternalVideoUnion>;
|
|
68551
|
+
};
|
|
68552
|
+
export declare type GraphStoreSimplifiedExternalCalendarEventLinksExternalVideoInverseConnection = HasPageInfo & {
|
|
68553
|
+
__typename?: 'GraphStoreSimplifiedExternalCalendarEventLinksExternalVideoInverseConnection';
|
|
68554
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedExternalCalendarEventLinksExternalVideoInverseEdge>>>;
|
|
68555
|
+
pageInfo: PageInfo;
|
|
68556
|
+
};
|
|
68557
|
+
export declare type GraphStoreSimplifiedExternalCalendarEventLinksExternalVideoInverseEdge = {
|
|
68558
|
+
__typename?: 'GraphStoreSimplifiedExternalCalendarEventLinksExternalVideoInverseEdge';
|
|
68559
|
+
createdAt: Scalars['DateTime']['output'];
|
|
68560
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
68561
|
+
id: Scalars['ID']['output'];
|
|
68562
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
68563
|
+
node?: Maybe<GraphStoreSimplifiedExternalCalendarEventLinksExternalVideoInverseUnion>;
|
|
68564
|
+
};
|
|
68565
|
+
export declare type GraphStoreSimplifiedExternalCalendarEventLinksExternalVideoInverseUnion = ExternalCalendarEvent;
|
|
68566
|
+
export declare type GraphStoreSimplifiedExternalCalendarEventLinksExternalVideoUnion = ExternalVideo;
|
|
68567
|
+
export declare type GraphStoreSimplifiedExternalCustomerContactHasExternalCalendarEventConnection = HasPageInfo & {
|
|
68568
|
+
__typename?: 'GraphStoreSimplifiedExternalCustomerContactHasExternalCalendarEventConnection';
|
|
68569
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedExternalCustomerContactHasExternalCalendarEventEdge>>>;
|
|
68570
|
+
pageInfo: PageInfo;
|
|
68571
|
+
};
|
|
68572
|
+
export declare type GraphStoreSimplifiedExternalCustomerContactHasExternalCalendarEventEdge = {
|
|
68573
|
+
__typename?: 'GraphStoreSimplifiedExternalCustomerContactHasExternalCalendarEventEdge';
|
|
68574
|
+
createdAt: Scalars['DateTime']['output'];
|
|
68575
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
68576
|
+
id: Scalars['ID']['output'];
|
|
68577
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
68578
|
+
node?: Maybe<GraphStoreSimplifiedExternalCustomerContactHasExternalCalendarEventUnion>;
|
|
68579
|
+
};
|
|
68580
|
+
export declare type GraphStoreSimplifiedExternalCustomerContactHasExternalCalendarEventInverseConnection = HasPageInfo & {
|
|
68581
|
+
__typename?: 'GraphStoreSimplifiedExternalCustomerContactHasExternalCalendarEventInverseConnection';
|
|
68582
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedExternalCustomerContactHasExternalCalendarEventInverseEdge>>>;
|
|
68583
|
+
pageInfo: PageInfo;
|
|
68584
|
+
};
|
|
68585
|
+
export declare type GraphStoreSimplifiedExternalCustomerContactHasExternalCalendarEventInverseEdge = {
|
|
68586
|
+
__typename?: 'GraphStoreSimplifiedExternalCustomerContactHasExternalCalendarEventInverseEdge';
|
|
68587
|
+
createdAt: Scalars['DateTime']['output'];
|
|
68588
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
68589
|
+
id: Scalars['ID']['output'];
|
|
68590
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
68591
|
+
node?: Maybe<GraphStoreSimplifiedExternalCustomerContactHasExternalCalendarEventInverseUnion>;
|
|
68592
|
+
};
|
|
68593
|
+
export declare type GraphStoreSimplifiedExternalCustomerContactHasExternalCalendarEventInverseUnion = ExternalCustomerContact;
|
|
68594
|
+
export declare type GraphStoreSimplifiedExternalCustomerContactHasExternalCalendarEventUnion = ExternalCalendarEvent;
|
|
68595
|
+
export declare type GraphStoreSimplifiedExternalCustomerContactHasExternalWorkItemConnection = HasPageInfo & {
|
|
68596
|
+
__typename?: 'GraphStoreSimplifiedExternalCustomerContactHasExternalWorkItemConnection';
|
|
68597
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedExternalCustomerContactHasExternalWorkItemEdge>>>;
|
|
68598
|
+
pageInfo: PageInfo;
|
|
68599
|
+
};
|
|
68600
|
+
export declare type GraphStoreSimplifiedExternalCustomerContactHasExternalWorkItemEdge = {
|
|
68601
|
+
__typename?: 'GraphStoreSimplifiedExternalCustomerContactHasExternalWorkItemEdge';
|
|
68602
|
+
createdAt: Scalars['DateTime']['output'];
|
|
68603
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
68604
|
+
id: Scalars['ID']['output'];
|
|
68605
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
68606
|
+
node?: Maybe<GraphStoreSimplifiedExternalCustomerContactHasExternalWorkItemUnion>;
|
|
68607
|
+
};
|
|
68608
|
+
export declare type GraphStoreSimplifiedExternalCustomerContactHasExternalWorkItemInverseConnection = HasPageInfo & {
|
|
68609
|
+
__typename?: 'GraphStoreSimplifiedExternalCustomerContactHasExternalWorkItemInverseConnection';
|
|
68610
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedExternalCustomerContactHasExternalWorkItemInverseEdge>>>;
|
|
68611
|
+
pageInfo: PageInfo;
|
|
68612
|
+
};
|
|
68613
|
+
export declare type GraphStoreSimplifiedExternalCustomerContactHasExternalWorkItemInverseEdge = {
|
|
68614
|
+
__typename?: 'GraphStoreSimplifiedExternalCustomerContactHasExternalWorkItemInverseEdge';
|
|
68615
|
+
createdAt: Scalars['DateTime']['output'];
|
|
68616
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
68617
|
+
id: Scalars['ID']['output'];
|
|
68618
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
68619
|
+
node?: Maybe<GraphStoreSimplifiedExternalCustomerContactHasExternalWorkItemInverseUnion>;
|
|
68620
|
+
};
|
|
68621
|
+
export declare type GraphStoreSimplifiedExternalCustomerContactHasExternalWorkItemInverseUnion = ExternalCustomerContact;
|
|
68622
|
+
export declare type GraphStoreSimplifiedExternalCustomerContactHasExternalWorkItemUnion = ExternalWorkItem;
|
|
69296
68623
|
export declare type GraphStoreSimplifiedExternalCustomerOrgHasChildExternalCustomerOrgConnection = HasPageInfo & {
|
|
69297
68624
|
__typename?: 'GraphStoreSimplifiedExternalCustomerOrgHasChildExternalCustomerOrgConnection';
|
|
69298
68625
|
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedExternalCustomerOrgHasChildExternalCustomerOrgEdge>>>;
|
|
@@ -69321,6 +68648,34 @@ export declare type GraphStoreSimplifiedExternalCustomerOrgHasChildExternalCusto
|
|
|
69321
68648
|
};
|
|
69322
68649
|
export declare type GraphStoreSimplifiedExternalCustomerOrgHasChildExternalCustomerOrgInverseUnion = ExternalCustomerOrg;
|
|
69323
68650
|
export declare type GraphStoreSimplifiedExternalCustomerOrgHasChildExternalCustomerOrgUnion = ExternalCustomerOrg;
|
|
68651
|
+
export declare type GraphStoreSimplifiedExternalCustomerOrgHasExternalCalendarEventConnection = HasPageInfo & {
|
|
68652
|
+
__typename?: 'GraphStoreSimplifiedExternalCustomerOrgHasExternalCalendarEventConnection';
|
|
68653
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedExternalCustomerOrgHasExternalCalendarEventEdge>>>;
|
|
68654
|
+
pageInfo: PageInfo;
|
|
68655
|
+
};
|
|
68656
|
+
export declare type GraphStoreSimplifiedExternalCustomerOrgHasExternalCalendarEventEdge = {
|
|
68657
|
+
__typename?: 'GraphStoreSimplifiedExternalCustomerOrgHasExternalCalendarEventEdge';
|
|
68658
|
+
createdAt: Scalars['DateTime']['output'];
|
|
68659
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
68660
|
+
id: Scalars['ID']['output'];
|
|
68661
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
68662
|
+
node?: Maybe<GraphStoreSimplifiedExternalCustomerOrgHasExternalCalendarEventUnion>;
|
|
68663
|
+
};
|
|
68664
|
+
export declare type GraphStoreSimplifiedExternalCustomerOrgHasExternalCalendarEventInverseConnection = HasPageInfo & {
|
|
68665
|
+
__typename?: 'GraphStoreSimplifiedExternalCustomerOrgHasExternalCalendarEventInverseConnection';
|
|
68666
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedExternalCustomerOrgHasExternalCalendarEventInverseEdge>>>;
|
|
68667
|
+
pageInfo: PageInfo;
|
|
68668
|
+
};
|
|
68669
|
+
export declare type GraphStoreSimplifiedExternalCustomerOrgHasExternalCalendarEventInverseEdge = {
|
|
68670
|
+
__typename?: 'GraphStoreSimplifiedExternalCustomerOrgHasExternalCalendarEventInverseEdge';
|
|
68671
|
+
createdAt: Scalars['DateTime']['output'];
|
|
68672
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
68673
|
+
id: Scalars['ID']['output'];
|
|
68674
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
68675
|
+
node?: Maybe<GraphStoreSimplifiedExternalCustomerOrgHasExternalCalendarEventInverseUnion>;
|
|
68676
|
+
};
|
|
68677
|
+
export declare type GraphStoreSimplifiedExternalCustomerOrgHasExternalCalendarEventInverseUnion = ExternalCustomerOrg;
|
|
68678
|
+
export declare type GraphStoreSimplifiedExternalCustomerOrgHasExternalCalendarEventUnion = ExternalCalendarEvent;
|
|
69324
68679
|
export declare type GraphStoreSimplifiedExternalCustomerOrgHasExternalCustomerContactConnection = HasPageInfo & {
|
|
69325
68680
|
__typename?: 'GraphStoreSimplifiedExternalCustomerOrgHasExternalCustomerContactConnection';
|
|
69326
68681
|
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedExternalCustomerOrgHasExternalCustomerContactEdge>>>;
|
|
@@ -69377,6 +68732,34 @@ export declare type GraphStoreSimplifiedExternalCustomerOrgHasExternalDealInvers
|
|
|
69377
68732
|
};
|
|
69378
68733
|
export declare type GraphStoreSimplifiedExternalCustomerOrgHasExternalDealInverseUnion = ExternalCustomerOrg;
|
|
69379
68734
|
export declare type GraphStoreSimplifiedExternalCustomerOrgHasExternalDealUnion = ExternalDeal;
|
|
68735
|
+
export declare type GraphStoreSimplifiedExternalCustomerOrgHasExternalWorkItemConnection = HasPageInfo & {
|
|
68736
|
+
__typename?: 'GraphStoreSimplifiedExternalCustomerOrgHasExternalWorkItemConnection';
|
|
68737
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedExternalCustomerOrgHasExternalWorkItemEdge>>>;
|
|
68738
|
+
pageInfo: PageInfo;
|
|
68739
|
+
};
|
|
68740
|
+
export declare type GraphStoreSimplifiedExternalCustomerOrgHasExternalWorkItemEdge = {
|
|
68741
|
+
__typename?: 'GraphStoreSimplifiedExternalCustomerOrgHasExternalWorkItemEdge';
|
|
68742
|
+
createdAt: Scalars['DateTime']['output'];
|
|
68743
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
68744
|
+
id: Scalars['ID']['output'];
|
|
68745
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
68746
|
+
node?: Maybe<GraphStoreSimplifiedExternalCustomerOrgHasExternalWorkItemUnion>;
|
|
68747
|
+
};
|
|
68748
|
+
export declare type GraphStoreSimplifiedExternalCustomerOrgHasExternalWorkItemInverseConnection = HasPageInfo & {
|
|
68749
|
+
__typename?: 'GraphStoreSimplifiedExternalCustomerOrgHasExternalWorkItemInverseConnection';
|
|
68750
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedExternalCustomerOrgHasExternalWorkItemInverseEdge>>>;
|
|
68751
|
+
pageInfo: PageInfo;
|
|
68752
|
+
};
|
|
68753
|
+
export declare type GraphStoreSimplifiedExternalCustomerOrgHasExternalWorkItemInverseEdge = {
|
|
68754
|
+
__typename?: 'GraphStoreSimplifiedExternalCustomerOrgHasExternalWorkItemInverseEdge';
|
|
68755
|
+
createdAt: Scalars['DateTime']['output'];
|
|
68756
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
68757
|
+
id: Scalars['ID']['output'];
|
|
68758
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
68759
|
+
node?: Maybe<GraphStoreSimplifiedExternalCustomerOrgHasExternalWorkItemInverseUnion>;
|
|
68760
|
+
};
|
|
68761
|
+
export declare type GraphStoreSimplifiedExternalCustomerOrgHasExternalWorkItemInverseUnion = ExternalCustomerOrg;
|
|
68762
|
+
export declare type GraphStoreSimplifiedExternalCustomerOrgHasExternalWorkItemUnion = ExternalWorkItem;
|
|
69380
68763
|
export declare type GraphStoreSimplifiedExternalCustomerOrgLinksExternalCustomerOrgCategoryConnection = HasPageInfo & {
|
|
69381
68764
|
__typename?: 'GraphStoreSimplifiedExternalCustomerOrgLinksExternalCustomerOrgCategoryConnection';
|
|
69382
68765
|
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedExternalCustomerOrgLinksExternalCustomerOrgCategoryEdge>>>;
|
|
@@ -69461,6 +68844,62 @@ export declare type GraphStoreSimplifiedExternalDataTableHasExternalSpaceInverse
|
|
|
69461
68844
|
};
|
|
69462
68845
|
export declare type GraphStoreSimplifiedExternalDataTableHasExternalSpaceInverseUnion = ExternalDataTable;
|
|
69463
68846
|
export declare type GraphStoreSimplifiedExternalDataTableHasExternalSpaceUnion = ExternalSpace;
|
|
68847
|
+
export declare type GraphStoreSimplifiedExternalDealHasExternalCalendarEventConnection = HasPageInfo & {
|
|
68848
|
+
__typename?: 'GraphStoreSimplifiedExternalDealHasExternalCalendarEventConnection';
|
|
68849
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedExternalDealHasExternalCalendarEventEdge>>>;
|
|
68850
|
+
pageInfo: PageInfo;
|
|
68851
|
+
};
|
|
68852
|
+
export declare type GraphStoreSimplifiedExternalDealHasExternalCalendarEventEdge = {
|
|
68853
|
+
__typename?: 'GraphStoreSimplifiedExternalDealHasExternalCalendarEventEdge';
|
|
68854
|
+
createdAt: Scalars['DateTime']['output'];
|
|
68855
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
68856
|
+
id: Scalars['ID']['output'];
|
|
68857
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
68858
|
+
node?: Maybe<GraphStoreSimplifiedExternalDealHasExternalCalendarEventUnion>;
|
|
68859
|
+
};
|
|
68860
|
+
export declare type GraphStoreSimplifiedExternalDealHasExternalCalendarEventInverseConnection = HasPageInfo & {
|
|
68861
|
+
__typename?: 'GraphStoreSimplifiedExternalDealHasExternalCalendarEventInverseConnection';
|
|
68862
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedExternalDealHasExternalCalendarEventInverseEdge>>>;
|
|
68863
|
+
pageInfo: PageInfo;
|
|
68864
|
+
};
|
|
68865
|
+
export declare type GraphStoreSimplifiedExternalDealHasExternalCalendarEventInverseEdge = {
|
|
68866
|
+
__typename?: 'GraphStoreSimplifiedExternalDealHasExternalCalendarEventInverseEdge';
|
|
68867
|
+
createdAt: Scalars['DateTime']['output'];
|
|
68868
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
68869
|
+
id: Scalars['ID']['output'];
|
|
68870
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
68871
|
+
node?: Maybe<GraphStoreSimplifiedExternalDealHasExternalCalendarEventInverseUnion>;
|
|
68872
|
+
};
|
|
68873
|
+
export declare type GraphStoreSimplifiedExternalDealHasExternalCalendarEventInverseUnion = ExternalDeal;
|
|
68874
|
+
export declare type GraphStoreSimplifiedExternalDealHasExternalCalendarEventUnion = ExternalCalendarEvent;
|
|
68875
|
+
export declare type GraphStoreSimplifiedExternalDealHasExternalWorkItemConnection = HasPageInfo & {
|
|
68876
|
+
__typename?: 'GraphStoreSimplifiedExternalDealHasExternalWorkItemConnection';
|
|
68877
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedExternalDealHasExternalWorkItemEdge>>>;
|
|
68878
|
+
pageInfo: PageInfo;
|
|
68879
|
+
};
|
|
68880
|
+
export declare type GraphStoreSimplifiedExternalDealHasExternalWorkItemEdge = {
|
|
68881
|
+
__typename?: 'GraphStoreSimplifiedExternalDealHasExternalWorkItemEdge';
|
|
68882
|
+
createdAt: Scalars['DateTime']['output'];
|
|
68883
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
68884
|
+
id: Scalars['ID']['output'];
|
|
68885
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
68886
|
+
node?: Maybe<GraphStoreSimplifiedExternalDealHasExternalWorkItemUnion>;
|
|
68887
|
+
};
|
|
68888
|
+
export declare type GraphStoreSimplifiedExternalDealHasExternalWorkItemInverseConnection = HasPageInfo & {
|
|
68889
|
+
__typename?: 'GraphStoreSimplifiedExternalDealHasExternalWorkItemInverseConnection';
|
|
68890
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedExternalDealHasExternalWorkItemInverseEdge>>>;
|
|
68891
|
+
pageInfo: PageInfo;
|
|
68892
|
+
};
|
|
68893
|
+
export declare type GraphStoreSimplifiedExternalDealHasExternalWorkItemInverseEdge = {
|
|
68894
|
+
__typename?: 'GraphStoreSimplifiedExternalDealHasExternalWorkItemInverseEdge';
|
|
68895
|
+
createdAt: Scalars['DateTime']['output'];
|
|
68896
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
68897
|
+
id: Scalars['ID']['output'];
|
|
68898
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
68899
|
+
node?: Maybe<GraphStoreSimplifiedExternalDealHasExternalWorkItemInverseUnion>;
|
|
68900
|
+
};
|
|
68901
|
+
export declare type GraphStoreSimplifiedExternalDealHasExternalWorkItemInverseUnion = ExternalDeal;
|
|
68902
|
+
export declare type GraphStoreSimplifiedExternalDealHasExternalWorkItemUnion = ExternalWorkItem;
|
|
69464
68903
|
export declare type GraphStoreSimplifiedExternalDocumentHasExternalSpaceConnection = HasPageInfo & {
|
|
69465
68904
|
__typename?: 'GraphStoreSimplifiedExternalDocumentHasExternalSpaceConnection';
|
|
69466
68905
|
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedExternalDocumentHasExternalSpaceEdge>>>;
|
|
@@ -72900,7 +72339,7 @@ export declare type GraphStoreSimplifiedProjectLinksToEntityInverseEdge = {
|
|
|
72900
72339
|
node?: Maybe<GraphStoreSimplifiedProjectLinksToEntityInverseUnion>;
|
|
72901
72340
|
};
|
|
72902
72341
|
export declare type GraphStoreSimplifiedProjectLinksToEntityInverseUnion = TownsquareProject;
|
|
72903
|
-
export declare type GraphStoreSimplifiedProjectLinksToEntityUnion = AvpDashboard | AppUser | AssetsObject | AssetsObjectType | AtlassianAccountUser | BitbucketRepository | CompassComponent | CompassLinkNode | CompassScorecard | ConfluenceBlogPost | ConfluenceDatabase | ConfluenceEmbed | ConfluenceFolder | ConfluenceFooterComment | ConfluenceInlineComment | ConfluencePage | ConfluenceSpace | ConfluenceWhiteboard | Customer360Customer | CustomerServiceCsmCustomer | CustomerServiceCsmOrganization | CustomerUser | DeploymentSummary | DevOpsDesign | DevOpsDocument | DevOpsFeatureFlag | DevOpsOperationsComponentDetails | DevOpsOperationsIncidentDetails | DevOpsOperationsPostIncidentReviewDetails | DevOpsProjectDetails | DevOpsPullRequestDetails | DevOpsRepository | DevOpsSecurityVulnerabilityDetails | DevOpsService | ExternalBranch | ExternalBuildInfo | ExternalCalendarEvent | ExternalComment | ExternalCommit | ExternalConversation | ExternalCustomerContact | ExternalCustomerOrg | ExternalCustomerOrgCategory | ExternalDashboard | ExternalDataTable | ExternalDeal | ExternalDeployment | ExternalDesign | ExternalDocument | ExternalExperimental | ExternalFeatureFlag | ExternalMessage | ExternalOrganisation | ExternalPosition | ExternalPullRequest | ExternalRemoteLink | ExternalRepository | ExternalSoftwareService | ExternalSpace | ExternalTeam | ExternalTest | ExternalTestExecution | ExternalTestPlan | ExternalTestRun | ExternalTestStatus | ExternalVideo | ExternalVulnerability | ExternalWorkItem | ExternalWorker | IdentityGroup | JiraAlignAggProject | JiraAutodevJob | JiraBoard | JiraConfluenceRemoteIssueLink | JiraCustomRemoteIssueLink | JiraIssue | JiraIssueRemoteIssueLink | JiraIssueType | JiraPlatformComment | JiraPostIncidentReviewLink | JiraPriority | JiraProject | JiraServiceManagementComment | JiraSprint | JiraStatus | JiraVersion | JiraWebRemoteIssueLink | JiraWorklog | KnowledgeDiscoveryTopicByAri | LoomComment | LoomMeeting | LoomMeetingRecurrence | LoomSpace | LoomVideo | MercuryChangeProposal | MercuryFocusArea | MercuryFocusAreaStatusUpdate | MercuryRisk | MercuryStrategicEvent | OpsgenieTeam | RadarPosition | RadarWorker | SpfAsk | SpfPlan | SpfPlanScenario | SpfPlanScenarioInvestment | TeamCustomFieldValue | TeamType | TeamV2 | ThirdPartySecurityContainer | ThirdPartyUser | TownsquareComment | TownsquareGoal | TownsquareGoalUpdate | TownsquareProject | TownsquareProjectUpdate | TownsquareTag;
|
|
72342
|
+
export declare type GraphStoreSimplifiedProjectLinksToEntityUnion = AvpDashboard | AppUser | AssetsObject | AssetsObjectType | AtlassianAccountUser | BitbucketRepository | CompassComponent | CompassLinkNode | CompassScorecard | ConfluenceBlogPost | ConfluenceDatabase | ConfluenceEmbed | ConfluenceFolder | ConfluenceFooterComment | ConfluenceInlineComment | ConfluencePage | ConfluenceSpace | ConfluenceWhiteboard | Customer360Customer | CustomerServiceCsmCustomer | CustomerServiceCsmOrganization | CustomerUser | DeploymentSummary | DevOpsDesign | DevOpsDocument | DevOpsFeatureFlag | DevOpsOperationsComponentDetails | DevOpsOperationsIncidentDetails | DevOpsOperationsPostIncidentReviewDetails | DevOpsProjectDetails | DevOpsPullRequestDetails | DevOpsRepository | DevOpsSecurityVulnerabilityDetails | DevOpsService | ExternalBranch | ExternalBuildInfo | ExternalCalendarEvent | ExternalCampaign | ExternalCase | ExternalComment | ExternalCommit | ExternalConversation | ExternalCustomerContact | ExternalCustomerOrg | ExternalCustomerOrgCategory | ExternalDashboard | ExternalDataTable | ExternalDeal | ExternalDeployment | ExternalDesign | ExternalDocument | ExternalExperimental | ExternalFeatureFlag | ExternalMessage | ExternalOrganisation | ExternalPosition | ExternalPullRequest | ExternalRemoteLink | ExternalRepository | ExternalSoftwareService | ExternalSpace | ExternalTeam | ExternalTest | ExternalTestExecution | ExternalTestPlan | ExternalTestRun | ExternalTestStatus | ExternalVideo | ExternalVulnerability | ExternalWorkItem | ExternalWorker | IdentityGroup | JiraAlignAggProject | JiraAutodevJob | JiraBoard | JiraConfluenceRemoteIssueLink | JiraCustomRemoteIssueLink | JiraIssue | JiraIssueRemoteIssueLink | JiraIssueType | JiraPlatformComment | JiraPostIncidentReviewLink | JiraPriority | JiraProject | JiraServiceManagementComment | JiraSprint | JiraStatus | JiraVersion | JiraWebRemoteIssueLink | JiraWorklog | KnowledgeDiscoveryTopicByAri | LoomComment | LoomMeeting | LoomMeetingRecurrence | LoomSpace | LoomVideo | MercuryChangeProposal | MercuryFocusArea | MercuryFocusAreaStatusUpdate | MercuryRisk | MercuryStrategicEvent | OpsgenieTeam | RadarPosition | RadarWorker | SpfAsk | SpfPlan | SpfPlanScenario | SpfPlanScenarioInvestment | TeamCustomFieldValue | TeamType | TeamV2 | ThirdPartySecurityContainer | ThirdPartyUser | TownsquareComment | TownsquareGoal | TownsquareGoalUpdate | TownsquareProject | TownsquareProjectUpdate | TownsquareTag;
|
|
72904
72343
|
export declare type GraphStoreSimplifiedPullRequestLinksToServiceConnection = HasPageInfo & {
|
|
72905
72344
|
__typename?: 'GraphStoreSimplifiedPullRequestLinksToServiceConnection';
|
|
72906
72345
|
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedPullRequestLinksToServiceEdge>>>;
|
|
@@ -79421,24 +78860,40 @@ export declare type GraphStoreV2 = {
|
|
|
79421
78860
|
cypherQueryV2: GraphStoreV2CypherQueryV2Connection;
|
|
79422
78861
|
entityLinksEntity?: Maybe<GraphStoreV2SimplifiedEntityLinksEntityConnection>;
|
|
79423
78862
|
entityLinksEntityInverse?: Maybe<GraphStoreV2SimplifiedEntityLinksEntityInverseConnection>;
|
|
78863
|
+
externalCalendarEventHasChildExternalCalendarEvent?: Maybe<GraphStoreV2SimplifiedExternalCalendarEventHasChildExternalCalendarEventConnection>;
|
|
78864
|
+
externalCalendarEventHasChildExternalCalendarEventInverse?: Maybe<GraphStoreV2SimplifiedExternalCalendarEventHasChildExternalCalendarEventInverseConnection>;
|
|
78865
|
+
externalCalendarEventLinksExternalVideo?: Maybe<GraphStoreV2SimplifiedExternalCalendarEventLinksExternalVideoConnection>;
|
|
78866
|
+
externalCalendarEventLinksExternalVideoInverse?: Maybe<GraphStoreV2SimplifiedExternalCalendarEventLinksExternalVideoInverseConnection>;
|
|
79424
78867
|
externalCalendarHasLinkedExternalDocument?: Maybe<GraphStoreV2SimplifiedExternalCalendarHasLinkedExternalDocumentConnection>;
|
|
79425
78868
|
externalCalendarHasLinkedExternalDocumentInverse?: Maybe<GraphStoreV2SimplifiedExternalCalendarHasLinkedExternalDocumentInverseConnection>;
|
|
79426
78869
|
externalConversationHasExternalMessage?: Maybe<GraphStoreV2SimplifiedExternalConversationHasExternalMessageConnection>;
|
|
79427
78870
|
externalConversationHasExternalMessageInverse?: Maybe<GraphStoreV2SimplifiedExternalConversationHasExternalMessageInverseConnection>;
|
|
79428
78871
|
externalConversationMentionsJiraWorkItem?: Maybe<GraphStoreV2SimplifiedExternalConversationMentionsJiraWorkItemConnection>;
|
|
79429
78872
|
externalConversationMentionsJiraWorkItemInverse?: Maybe<GraphStoreV2SimplifiedExternalConversationMentionsJiraWorkItemInverseConnection>;
|
|
78873
|
+
externalCustomerContactHasExternalCalendarEvent?: Maybe<GraphStoreV2SimplifiedExternalCustomerContactHasExternalCalendarEventConnection>;
|
|
78874
|
+
externalCustomerContactHasExternalCalendarEventInverse?: Maybe<GraphStoreV2SimplifiedExternalCustomerContactHasExternalCalendarEventInverseConnection>;
|
|
78875
|
+
externalCustomerContactHasExternalWorkItem?: Maybe<GraphStoreV2SimplifiedExternalCustomerContactHasExternalWorkItemConnection>;
|
|
78876
|
+
externalCustomerContactHasExternalWorkItemInverse?: Maybe<GraphStoreV2SimplifiedExternalCustomerContactHasExternalWorkItemInverseConnection>;
|
|
79430
78877
|
externalCustomerOrgHasChildExternalCustomerOrg?: Maybe<GraphStoreV2SimplifiedExternalCustomerOrgHasChildExternalCustomerOrgConnection>;
|
|
79431
78878
|
externalCustomerOrgHasChildExternalCustomerOrgInverse?: Maybe<GraphStoreV2SimplifiedExternalCustomerOrgHasChildExternalCustomerOrgInverseConnection>;
|
|
78879
|
+
externalCustomerOrgHasExternalCalendarEvent?: Maybe<GraphStoreV2SimplifiedExternalCustomerOrgHasExternalCalendarEventConnection>;
|
|
78880
|
+
externalCustomerOrgHasExternalCalendarEventInverse?: Maybe<GraphStoreV2SimplifiedExternalCustomerOrgHasExternalCalendarEventInverseConnection>;
|
|
79432
78881
|
externalCustomerOrgHasExternalCustomerContact?: Maybe<GraphStoreV2SimplifiedExternalCustomerOrgHasExternalCustomerContactConnection>;
|
|
79433
78882
|
externalCustomerOrgHasExternalCustomerContactInverse?: Maybe<GraphStoreV2SimplifiedExternalCustomerOrgHasExternalCustomerContactInverseConnection>;
|
|
79434
78883
|
externalCustomerOrgHasExternalDeal?: Maybe<GraphStoreV2SimplifiedExternalCustomerOrgHasExternalDealConnection>;
|
|
79435
78884
|
externalCustomerOrgHasExternalDealInverse?: Maybe<GraphStoreV2SimplifiedExternalCustomerOrgHasExternalDealInverseConnection>;
|
|
78885
|
+
externalCustomerOrgHasExternalWorkItem?: Maybe<GraphStoreV2SimplifiedExternalCustomerOrgHasExternalWorkItemConnection>;
|
|
78886
|
+
externalCustomerOrgHasExternalWorkItemInverse?: Maybe<GraphStoreV2SimplifiedExternalCustomerOrgHasExternalWorkItemInverseConnection>;
|
|
79436
78887
|
externalCustomerOrgLinksExternalCustomerOrgCategory?: Maybe<GraphStoreV2SimplifiedExternalCustomerOrgLinksExternalCustomerOrgCategoryConnection>;
|
|
79437
78888
|
externalCustomerOrgLinksExternalCustomerOrgCategoryInverse?: Maybe<GraphStoreV2SimplifiedExternalCustomerOrgLinksExternalCustomerOrgCategoryInverseConnection>;
|
|
79438
78889
|
externalCustomerOrgWorksOnJiraWorkItemWorklog?: Maybe<GraphStoreV2SimplifiedExternalCustomerOrgWorksOnJiraWorkItemWorklogConnection>;
|
|
79439
78890
|
externalCustomerOrgWorksOnJiraWorkItemWorklogInverse?: Maybe<GraphStoreV2SimplifiedExternalCustomerOrgWorksOnJiraWorkItemWorklogInverseConnection>;
|
|
79440
78891
|
externalDataTableHasExternalSpace?: Maybe<GraphStoreV2SimplifiedExternalDataTableHasExternalSpaceConnection>;
|
|
79441
78892
|
externalDataTableHasExternalSpaceInverse?: Maybe<GraphStoreV2SimplifiedExternalDataTableHasExternalSpaceInverseConnection>;
|
|
78893
|
+
externalDealHasExternalCalendarEvent?: Maybe<GraphStoreV2SimplifiedExternalDealHasExternalCalendarEventConnection>;
|
|
78894
|
+
externalDealHasExternalCalendarEventInverse?: Maybe<GraphStoreV2SimplifiedExternalDealHasExternalCalendarEventInverseConnection>;
|
|
78895
|
+
externalDealHasExternalWorkItem?: Maybe<GraphStoreV2SimplifiedExternalDealHasExternalWorkItemConnection>;
|
|
78896
|
+
externalDealHasExternalWorkItemInverse?: Maybe<GraphStoreV2SimplifiedExternalDealHasExternalWorkItemInverseConnection>;
|
|
79442
78897
|
externalDeploymentHasExternalCommit?: Maybe<GraphStoreV2SimplifiedExternalDeploymentHasExternalCommitConnection>;
|
|
79443
78898
|
externalDeploymentHasExternalCommitInverse?: Maybe<GraphStoreV2SimplifiedExternalDeploymentHasExternalCommitInverseConnection>;
|
|
79444
78899
|
externalDeploymentLinksExternalDeployment?: Maybe<GraphStoreV2SimplifiedExternalDeploymentLinksExternalDeploymentConnection>;
|
|
@@ -82013,6 +81468,34 @@ export declare type GraphStoreV2EntityLinksEntityInverseArgs = {
|
|
|
82013
81468
|
id: Scalars['ID']['input'];
|
|
82014
81469
|
sort?: InputMaybe<GraphStoreV2EntityLinksEntitySortInput>;
|
|
82015
81470
|
};
|
|
81471
|
+
export declare type GraphStoreV2ExternalCalendarEventHasChildExternalCalendarEventArgs = {
|
|
81472
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
81473
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
81474
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
81475
|
+
id: Scalars['ID']['input'];
|
|
81476
|
+
sort?: InputMaybe<GraphStoreV2ExternalCalendarEventHasChildExternalCalendarEventSortInput>;
|
|
81477
|
+
};
|
|
81478
|
+
export declare type GraphStoreV2ExternalCalendarEventHasChildExternalCalendarEventInverseArgs = {
|
|
81479
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
81480
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
81481
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
81482
|
+
id: Scalars['ID']['input'];
|
|
81483
|
+
sort?: InputMaybe<GraphStoreV2ExternalCalendarEventHasChildExternalCalendarEventSortInput>;
|
|
81484
|
+
};
|
|
81485
|
+
export declare type GraphStoreV2ExternalCalendarEventLinksExternalVideoArgs = {
|
|
81486
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
81487
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
81488
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
81489
|
+
id: Scalars['ID']['input'];
|
|
81490
|
+
sort?: InputMaybe<GraphStoreV2ExternalCalendarEventLinksExternalVideoSortInput>;
|
|
81491
|
+
};
|
|
81492
|
+
export declare type GraphStoreV2ExternalCalendarEventLinksExternalVideoInverseArgs = {
|
|
81493
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
81494
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
81495
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
81496
|
+
id: Scalars['ID']['input'];
|
|
81497
|
+
sort?: InputMaybe<GraphStoreV2ExternalCalendarEventLinksExternalVideoSortInput>;
|
|
81498
|
+
};
|
|
82016
81499
|
export declare type GraphStoreV2ExternalCalendarHasLinkedExternalDocumentArgs = {
|
|
82017
81500
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
82018
81501
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -82055,6 +81538,34 @@ export declare type GraphStoreV2ExternalConversationMentionsJiraWorkItemInverseA
|
|
|
82055
81538
|
id: Scalars['ID']['input'];
|
|
82056
81539
|
sort?: InputMaybe<GraphStoreV2ExternalConversationMentionsJiraWorkItemSortInput>;
|
|
82057
81540
|
};
|
|
81541
|
+
export declare type GraphStoreV2ExternalCustomerContactHasExternalCalendarEventArgs = {
|
|
81542
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
81543
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
81544
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
81545
|
+
id: Scalars['ID']['input'];
|
|
81546
|
+
sort?: InputMaybe<GraphStoreV2ExternalCustomerContactHasExternalCalendarEventSortInput>;
|
|
81547
|
+
};
|
|
81548
|
+
export declare type GraphStoreV2ExternalCustomerContactHasExternalCalendarEventInverseArgs = {
|
|
81549
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
81550
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
81551
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
81552
|
+
id: Scalars['ID']['input'];
|
|
81553
|
+
sort?: InputMaybe<GraphStoreV2ExternalCustomerContactHasExternalCalendarEventSortInput>;
|
|
81554
|
+
};
|
|
81555
|
+
export declare type GraphStoreV2ExternalCustomerContactHasExternalWorkItemArgs = {
|
|
81556
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
81557
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
81558
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
81559
|
+
id: Scalars['ID']['input'];
|
|
81560
|
+
sort?: InputMaybe<GraphStoreV2ExternalCustomerContactHasExternalWorkItemSortInput>;
|
|
81561
|
+
};
|
|
81562
|
+
export declare type GraphStoreV2ExternalCustomerContactHasExternalWorkItemInverseArgs = {
|
|
81563
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
81564
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
81565
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
81566
|
+
id: Scalars['ID']['input'];
|
|
81567
|
+
sort?: InputMaybe<GraphStoreV2ExternalCustomerContactHasExternalWorkItemSortInput>;
|
|
81568
|
+
};
|
|
82058
81569
|
export declare type GraphStoreV2ExternalCustomerOrgHasChildExternalCustomerOrgArgs = {
|
|
82059
81570
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
82060
81571
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -82069,6 +81580,20 @@ export declare type GraphStoreV2ExternalCustomerOrgHasChildExternalCustomerOrgIn
|
|
|
82069
81580
|
id: Scalars['ID']['input'];
|
|
82070
81581
|
sort?: InputMaybe<GraphStoreV2ExternalCustomerOrgHasChildExternalCustomerOrgSortInput>;
|
|
82071
81582
|
};
|
|
81583
|
+
export declare type GraphStoreV2ExternalCustomerOrgHasExternalCalendarEventArgs = {
|
|
81584
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
81585
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
81586
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
81587
|
+
id: Scalars['ID']['input'];
|
|
81588
|
+
sort?: InputMaybe<GraphStoreV2ExternalCustomerOrgHasExternalCalendarEventSortInput>;
|
|
81589
|
+
};
|
|
81590
|
+
export declare type GraphStoreV2ExternalCustomerOrgHasExternalCalendarEventInverseArgs = {
|
|
81591
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
81592
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
81593
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
81594
|
+
id: Scalars['ID']['input'];
|
|
81595
|
+
sort?: InputMaybe<GraphStoreV2ExternalCustomerOrgHasExternalCalendarEventSortInput>;
|
|
81596
|
+
};
|
|
82072
81597
|
export declare type GraphStoreV2ExternalCustomerOrgHasExternalCustomerContactArgs = {
|
|
82073
81598
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
82074
81599
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -82097,6 +81622,20 @@ export declare type GraphStoreV2ExternalCustomerOrgHasExternalDealInverseArgs =
|
|
|
82097
81622
|
id: Scalars['ID']['input'];
|
|
82098
81623
|
sort?: InputMaybe<GraphStoreV2ExternalCustomerOrgHasExternalDealSortInput>;
|
|
82099
81624
|
};
|
|
81625
|
+
export declare type GraphStoreV2ExternalCustomerOrgHasExternalWorkItemArgs = {
|
|
81626
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
81627
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
81628
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
81629
|
+
id: Scalars['ID']['input'];
|
|
81630
|
+
sort?: InputMaybe<GraphStoreV2ExternalCustomerOrgHasExternalWorkItemSortInput>;
|
|
81631
|
+
};
|
|
81632
|
+
export declare type GraphStoreV2ExternalCustomerOrgHasExternalWorkItemInverseArgs = {
|
|
81633
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
81634
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
81635
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
81636
|
+
id: Scalars['ID']['input'];
|
|
81637
|
+
sort?: InputMaybe<GraphStoreV2ExternalCustomerOrgHasExternalWorkItemSortInput>;
|
|
81638
|
+
};
|
|
82100
81639
|
export declare type GraphStoreV2ExternalCustomerOrgLinksExternalCustomerOrgCategoryArgs = {
|
|
82101
81640
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
82102
81641
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -82139,6 +81678,34 @@ export declare type GraphStoreV2ExternalDataTableHasExternalSpaceInverseArgs = {
|
|
|
82139
81678
|
id: Scalars['ID']['input'];
|
|
82140
81679
|
sort?: InputMaybe<GraphStoreV2ExternalDataTableHasExternalSpaceSortInput>;
|
|
82141
81680
|
};
|
|
81681
|
+
export declare type GraphStoreV2ExternalDealHasExternalCalendarEventArgs = {
|
|
81682
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
81683
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
81684
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
81685
|
+
id: Scalars['ID']['input'];
|
|
81686
|
+
sort?: InputMaybe<GraphStoreV2ExternalDealHasExternalCalendarEventSortInput>;
|
|
81687
|
+
};
|
|
81688
|
+
export declare type GraphStoreV2ExternalDealHasExternalCalendarEventInverseArgs = {
|
|
81689
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
81690
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
81691
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
81692
|
+
id: Scalars['ID']['input'];
|
|
81693
|
+
sort?: InputMaybe<GraphStoreV2ExternalDealHasExternalCalendarEventSortInput>;
|
|
81694
|
+
};
|
|
81695
|
+
export declare type GraphStoreV2ExternalDealHasExternalWorkItemArgs = {
|
|
81696
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
81697
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
81698
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
81699
|
+
id: Scalars['ID']['input'];
|
|
81700
|
+
sort?: InputMaybe<GraphStoreV2ExternalDealHasExternalWorkItemSortInput>;
|
|
81701
|
+
};
|
|
81702
|
+
export declare type GraphStoreV2ExternalDealHasExternalWorkItemInverseArgs = {
|
|
81703
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
81704
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
81705
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
81706
|
+
id: Scalars['ID']['input'];
|
|
81707
|
+
sort?: InputMaybe<GraphStoreV2ExternalDealHasExternalWorkItemSortInput>;
|
|
81708
|
+
};
|
|
82142
81709
|
export declare type GraphStoreV2ExternalDeploymentHasExternalCommitArgs = {
|
|
82143
81710
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
82144
81711
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -86152,7 +85719,7 @@ export declare type GraphStoreV2CypherQueryV2AriNode = {
|
|
|
86152
85719
|
data?: Maybe<GraphStoreV2CypherQueryV2AriNodeUnion>;
|
|
86153
85720
|
id: Scalars['ID']['output'];
|
|
86154
85721
|
};
|
|
86155
|
-
export declare type GraphStoreV2CypherQueryV2AriNodeUnion = AvpDashboard | AppUser | AssetsObject | AssetsObjectType | AtlassianAccountUser | BitbucketRepository | CompassComponent | CompassLinkNode | CompassScorecard | ConfluenceBlogPost | ConfluenceDatabase | ConfluenceEmbed | ConfluenceFolder | ConfluenceFooterComment | ConfluenceInlineComment | ConfluencePage | ConfluenceSpace | ConfluenceWhiteboard | Customer360Customer | CustomerServiceCsmCustomer | CustomerServiceCsmOrganization | CustomerUser | DeploymentSummary | DevOpsDesign | DevOpsDocument | DevOpsFeatureFlag | DevOpsOperationsComponentDetails | DevOpsOperationsIncidentDetails | DevOpsOperationsPostIncidentReviewDetails | DevOpsProjectDetails | DevOpsPullRequestDetails | DevOpsRepository | DevOpsSecurityVulnerabilityDetails | DevOpsService | ExternalBranch | ExternalBuildInfo | ExternalCalendarEvent | ExternalComment | ExternalCommit | ExternalConversation | ExternalCustomerContact | ExternalCustomerOrg | ExternalCustomerOrgCategory | ExternalDashboard | ExternalDataTable | ExternalDeal | ExternalDeployment | ExternalDesign | ExternalDocument | ExternalExperimental | ExternalFeatureFlag | ExternalMessage | ExternalOrganisation | ExternalPosition | ExternalPullRequest | ExternalRemoteLink | ExternalRepository | ExternalSoftwareService | ExternalSpace | ExternalTeam | ExternalTest | ExternalTestExecution | ExternalTestPlan | ExternalTestRun | ExternalTestStatus | ExternalVideo | ExternalVulnerability | ExternalWorkItem | ExternalWorker | IdentityGroup | JiraAlignAggProject | JiraAutodevJob | JiraBoard | JiraConfluenceRemoteIssueLink | JiraCustomRemoteIssueLink | JiraIssue | JiraIssueRemoteIssueLink | JiraIssueType | JiraPlatformComment | JiraPostIncidentReviewLink | JiraPriority | JiraProject | JiraServiceManagementComment | JiraSprint | JiraStatus | JiraVersion | JiraWebRemoteIssueLink | JiraWorklog | KnowledgeDiscoveryTopicByAri | LoomComment | LoomMeeting | LoomMeetingRecurrence | LoomSpace | LoomVideo | MercuryChangeProposal | MercuryFocusArea | MercuryFocusAreaStatusUpdate | MercuryRisk | MercuryStrategicEvent | OpsgenieTeam | RadarPosition | RadarWorker | SpfAsk | SpfPlan | SpfPlanScenario | SpfPlanScenarioInvestment | TeamCustomFieldValue | TeamType | TeamV2 | ThirdPartySecurityContainer | ThirdPartyUser | TownsquareComment | TownsquareGoal | TownsquareGoalUpdate | TownsquareProject | TownsquareProjectUpdate | TownsquareTag;
|
|
85722
|
+
export declare type GraphStoreV2CypherQueryV2AriNodeUnion = AvpDashboard | AppUser | AssetsObject | AssetsObjectType | AtlassianAccountUser | BitbucketRepository | CompassComponent | CompassLinkNode | CompassScorecard | ConfluenceBlogPost | ConfluenceDatabase | ConfluenceEmbed | ConfluenceFolder | ConfluenceFooterComment | ConfluenceInlineComment | ConfluencePage | ConfluenceSpace | ConfluenceWhiteboard | Customer360Customer | CustomerServiceCsmCustomer | CustomerServiceCsmOrganization | CustomerUser | DeploymentSummary | DevOpsDesign | DevOpsDocument | DevOpsFeatureFlag | DevOpsOperationsComponentDetails | DevOpsOperationsIncidentDetails | DevOpsOperationsPostIncidentReviewDetails | DevOpsProjectDetails | DevOpsPullRequestDetails | DevOpsRepository | DevOpsSecurityVulnerabilityDetails | DevOpsService | ExternalBranch | ExternalBuildInfo | ExternalCalendarEvent | ExternalCampaign | ExternalCase | ExternalComment | ExternalCommit | ExternalConversation | ExternalCustomerContact | ExternalCustomerOrg | ExternalCustomerOrgCategory | ExternalDashboard | ExternalDataTable | ExternalDeal | ExternalDeployment | ExternalDesign | ExternalDocument | ExternalExperimental | ExternalFeatureFlag | ExternalMessage | ExternalOrganisation | ExternalPosition | ExternalPullRequest | ExternalRemoteLink | ExternalRepository | ExternalSoftwareService | ExternalSpace | ExternalTeam | ExternalTest | ExternalTestExecution | ExternalTestPlan | ExternalTestRun | ExternalTestStatus | ExternalVideo | ExternalVulnerability | ExternalWorkItem | ExternalWorker | IdentityGroup | JiraAlignAggProject | JiraAutodevJob | JiraBoard | JiraConfluenceRemoteIssueLink | JiraCustomRemoteIssueLink | JiraIssue | JiraIssueRemoteIssueLink | JiraIssueType | JiraPlatformComment | JiraPostIncidentReviewLink | JiraPriority | JiraProject | JiraServiceManagementComment | JiraSprint | JiraStatus | JiraVersion | JiraWebRemoteIssueLink | JiraWorklog | KnowledgeDiscoveryTopicByAri | LoomComment | LoomMeeting | LoomMeetingRecurrence | LoomSpace | LoomVideo | MercuryChangeProposal | MercuryFocusArea | MercuryFocusAreaStatusUpdate | MercuryRisk | MercuryStrategicEvent | OpsgenieTeam | RadarPosition | RadarWorker | SpfAsk | SpfPlan | SpfPlanScenario | SpfPlanScenarioInvestment | TeamCustomFieldValue | TeamType | TeamV2 | ThirdPartySecurityContainer | ThirdPartyUser | TownsquareComment | TownsquareGoal | TownsquareGoalUpdate | TownsquareProject | TownsquareProjectUpdate | TownsquareTag;
|
|
86156
85723
|
export declare type GraphStoreV2CypherQueryV2BoolListObject = {
|
|
86157
85724
|
__typename?: 'GraphStoreV2CypherQueryV2BoolListObject';
|
|
86158
85725
|
values: Array<Scalars['Boolean']['output']>;
|
|
@@ -86575,6 +86142,12 @@ export declare type GraphStoreV2DeleteLoomVideoHasConfluencePagePayload = {
|
|
|
86575
86142
|
export declare type GraphStoreV2EntityLinksEntitySortInput = {
|
|
86576
86143
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
86577
86144
|
};
|
|
86145
|
+
export declare type GraphStoreV2ExternalCalendarEventHasChildExternalCalendarEventSortInput = {
|
|
86146
|
+
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
86147
|
+
};
|
|
86148
|
+
export declare type GraphStoreV2ExternalCalendarEventLinksExternalVideoSortInput = {
|
|
86149
|
+
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
86150
|
+
};
|
|
86578
86151
|
export declare type GraphStoreV2ExternalCalendarHasLinkedExternalDocumentSortInput = {
|
|
86579
86152
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
86580
86153
|
};
|
|
@@ -86584,15 +86157,27 @@ export declare type GraphStoreV2ExternalConversationHasExternalMessageSortInput
|
|
|
86584
86157
|
export declare type GraphStoreV2ExternalConversationMentionsJiraWorkItemSortInput = {
|
|
86585
86158
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
86586
86159
|
};
|
|
86160
|
+
export declare type GraphStoreV2ExternalCustomerContactHasExternalCalendarEventSortInput = {
|
|
86161
|
+
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
86162
|
+
};
|
|
86163
|
+
export declare type GraphStoreV2ExternalCustomerContactHasExternalWorkItemSortInput = {
|
|
86164
|
+
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
86165
|
+
};
|
|
86587
86166
|
export declare type GraphStoreV2ExternalCustomerOrgHasChildExternalCustomerOrgSortInput = {
|
|
86588
86167
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
86589
86168
|
};
|
|
86169
|
+
export declare type GraphStoreV2ExternalCustomerOrgHasExternalCalendarEventSortInput = {
|
|
86170
|
+
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
86171
|
+
};
|
|
86590
86172
|
export declare type GraphStoreV2ExternalCustomerOrgHasExternalCustomerContactSortInput = {
|
|
86591
86173
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
86592
86174
|
};
|
|
86593
86175
|
export declare type GraphStoreV2ExternalCustomerOrgHasExternalDealSortInput = {
|
|
86594
86176
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
86595
86177
|
};
|
|
86178
|
+
export declare type GraphStoreV2ExternalCustomerOrgHasExternalWorkItemSortInput = {
|
|
86179
|
+
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
86180
|
+
};
|
|
86596
86181
|
export declare type GraphStoreV2ExternalCustomerOrgLinksExternalCustomerOrgCategorySortInput = {
|
|
86597
86182
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
86598
86183
|
};
|
|
@@ -86602,6 +86187,12 @@ export declare type GraphStoreV2ExternalCustomerOrgWorksOnJiraWorkItemWorklogSor
|
|
|
86602
86187
|
export declare type GraphStoreV2ExternalDataTableHasExternalSpaceSortInput = {
|
|
86603
86188
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
86604
86189
|
};
|
|
86190
|
+
export declare type GraphStoreV2ExternalDealHasExternalCalendarEventSortInput = {
|
|
86191
|
+
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
86192
|
+
};
|
|
86193
|
+
export declare type GraphStoreV2ExternalDealHasExternalWorkItemSortInput = {
|
|
86194
|
+
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
86195
|
+
};
|
|
86605
86196
|
export declare type GraphStoreV2ExternalDeploymentHasExternalCommitSortInput = {
|
|
86606
86197
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
86607
86198
|
};
|
|
@@ -88913,7 +88504,7 @@ export declare type GraphStoreV2SimplifiedAtlassianProjectLinksEntityInverseEdge
|
|
|
88913
88504
|
node?: Maybe<GraphStoreV2SimplifiedAtlassianProjectLinksEntityInverseUnion>;
|
|
88914
88505
|
};
|
|
88915
88506
|
export declare type GraphStoreV2SimplifiedAtlassianProjectLinksEntityInverseUnion = TownsquareProject;
|
|
88916
|
-
export declare type GraphStoreV2SimplifiedAtlassianProjectLinksEntityUnion = AvpDashboard | AppUser | AssetsObject | AssetsObjectType | AtlassianAccountUser | BitbucketRepository | CompassComponent | CompassLinkNode | CompassScorecard | ConfluenceBlogPost | ConfluenceDatabase | ConfluenceEmbed | ConfluenceFolder | ConfluenceFooterComment | ConfluenceInlineComment | ConfluencePage | ConfluenceSpace | ConfluenceWhiteboard | Customer360Customer | CustomerServiceCsmCustomer | CustomerServiceCsmOrganization | CustomerUser | DeploymentSummary | DevOpsDesign | DevOpsDocument | DevOpsFeatureFlag | DevOpsOperationsComponentDetails | DevOpsOperationsIncidentDetails | DevOpsOperationsPostIncidentReviewDetails | DevOpsProjectDetails | DevOpsPullRequestDetails | DevOpsRepository | DevOpsSecurityVulnerabilityDetails | DevOpsService | ExternalBranch | ExternalBuildInfo | ExternalCalendarEvent | ExternalComment | ExternalCommit | ExternalConversation | ExternalCustomerContact | ExternalCustomerOrg | ExternalCustomerOrgCategory | ExternalDashboard | ExternalDataTable | ExternalDeal | ExternalDeployment | ExternalDesign | ExternalDocument | ExternalExperimental | ExternalFeatureFlag | ExternalMessage | ExternalOrganisation | ExternalPosition | ExternalPullRequest | ExternalRemoteLink | ExternalRepository | ExternalSoftwareService | ExternalSpace | ExternalTeam | ExternalTest | ExternalTestExecution | ExternalTestPlan | ExternalTestRun | ExternalTestStatus | ExternalVideo | ExternalVulnerability | ExternalWorkItem | ExternalWorker | IdentityGroup | JiraAlignAggProject | JiraAutodevJob | JiraBoard | JiraConfluenceRemoteIssueLink | JiraCustomRemoteIssueLink | JiraIssue | JiraIssueRemoteIssueLink | JiraIssueType | JiraPlatformComment | JiraPostIncidentReviewLink | JiraPriority | JiraProject | JiraServiceManagementComment | JiraSprint | JiraStatus | JiraVersion | JiraWebRemoteIssueLink | JiraWorklog | KnowledgeDiscoveryTopicByAri | LoomComment | LoomMeeting | LoomMeetingRecurrence | LoomSpace | LoomVideo | MercuryChangeProposal | MercuryFocusArea | MercuryFocusAreaStatusUpdate | MercuryRisk | MercuryStrategicEvent | OpsgenieTeam | RadarPosition | RadarWorker | SpfAsk | SpfPlan | SpfPlanScenario | SpfPlanScenarioInvestment | TeamCustomFieldValue | TeamType | TeamV2 | ThirdPartySecurityContainer | ThirdPartyUser | TownsquareComment | TownsquareGoal | TownsquareGoalUpdate | TownsquareProject | TownsquareProjectUpdate | TownsquareTag;
|
|
88507
|
+
export declare type GraphStoreV2SimplifiedAtlassianProjectLinksEntityUnion = AvpDashboard | AppUser | AssetsObject | AssetsObjectType | AtlassianAccountUser | BitbucketRepository | CompassComponent | CompassLinkNode | CompassScorecard | ConfluenceBlogPost | ConfluenceDatabase | ConfluenceEmbed | ConfluenceFolder | ConfluenceFooterComment | ConfluenceInlineComment | ConfluencePage | ConfluenceSpace | ConfluenceWhiteboard | Customer360Customer | CustomerServiceCsmCustomer | CustomerServiceCsmOrganization | CustomerUser | DeploymentSummary | DevOpsDesign | DevOpsDocument | DevOpsFeatureFlag | DevOpsOperationsComponentDetails | DevOpsOperationsIncidentDetails | DevOpsOperationsPostIncidentReviewDetails | DevOpsProjectDetails | DevOpsPullRequestDetails | DevOpsRepository | DevOpsSecurityVulnerabilityDetails | DevOpsService | ExternalBranch | ExternalBuildInfo | ExternalCalendarEvent | ExternalCampaign | ExternalCase | ExternalComment | ExternalCommit | ExternalConversation | ExternalCustomerContact | ExternalCustomerOrg | ExternalCustomerOrgCategory | ExternalDashboard | ExternalDataTable | ExternalDeal | ExternalDeployment | ExternalDesign | ExternalDocument | ExternalExperimental | ExternalFeatureFlag | ExternalMessage | ExternalOrganisation | ExternalPosition | ExternalPullRequest | ExternalRemoteLink | ExternalRepository | ExternalSoftwareService | ExternalSpace | ExternalTeam | ExternalTest | ExternalTestExecution | ExternalTestPlan | ExternalTestRun | ExternalTestStatus | ExternalVideo | ExternalVulnerability | ExternalWorkItem | ExternalWorker | IdentityGroup | JiraAlignAggProject | JiraAutodevJob | JiraBoard | JiraConfluenceRemoteIssueLink | JiraCustomRemoteIssueLink | JiraIssue | JiraIssueRemoteIssueLink | JiraIssueType | JiraPlatformComment | JiraPostIncidentReviewLink | JiraPriority | JiraProject | JiraServiceManagementComment | JiraSprint | JiraStatus | JiraVersion | JiraWebRemoteIssueLink | JiraWorklog | KnowledgeDiscoveryTopicByAri | LoomComment | LoomMeeting | LoomMeetingRecurrence | LoomSpace | LoomVideo | MercuryChangeProposal | MercuryFocusArea | MercuryFocusAreaStatusUpdate | MercuryRisk | MercuryStrategicEvent | OpsgenieTeam | RadarPosition | RadarWorker | SpfAsk | SpfPlan | SpfPlanScenario | SpfPlanScenarioInvestment | TeamCustomFieldValue | TeamType | TeamV2 | ThirdPartySecurityContainer | ThirdPartyUser | TownsquareComment | TownsquareGoal | TownsquareGoalUpdate | TownsquareProject | TownsquareProjectUpdate | TownsquareTag;
|
|
88917
88508
|
export declare type GraphStoreV2SimplifiedAtlassianTeamAssignedJiraWorkItemConnection = HasPageInfo & {
|
|
88918
88509
|
__typename?: 'GraphStoreV2SimplifiedAtlassianTeamAssignedJiraWorkItemConnection';
|
|
88919
88510
|
edges?: Maybe<Array<Maybe<GraphStoreV2SimplifiedAtlassianTeamAssignedJiraWorkItemEdge>>>;
|
|
@@ -92712,8 +92303,8 @@ export declare type GraphStoreV2SimplifiedContentEntityLinksEntityInverseEdge =
|
|
|
92712
92303
|
lastUpdated: Scalars['DateTime']['output'];
|
|
92713
92304
|
node?: Maybe<GraphStoreV2SimplifiedContentEntityLinksEntityInverseUnion>;
|
|
92714
92305
|
};
|
|
92715
|
-
export declare type GraphStoreV2SimplifiedContentEntityLinksEntityInverseUnion = AvpDashboard | AppUser | AssetsObject | AssetsObjectType | AtlassianAccountUser | CompassComponent | CompassLinkNode | CompassScorecard | ConfluenceBlogPost | ConfluenceDatabase | ConfluenceEmbed | ConfluenceFolder | ConfluenceFooterComment | ConfluenceInlineComment | ConfluencePage | ConfluenceSpace | ConfluenceWhiteboard | Customer360Customer | CustomerServiceCsmCustomer | CustomerServiceCsmOrganization | CustomerUser | DeploymentSummary | DevOpsDesign | DevOpsDocument | DevOpsFeatureFlag | DevOpsOperationsComponentDetails | DevOpsOperationsIncidentDetails | DevOpsOperationsPostIncidentReviewDetails | DevOpsProjectDetails | DevOpsPullRequestDetails | DevOpsRepository | DevOpsSecurityVulnerabilityDetails | DevOpsService | ExternalBranch | ExternalBuildInfo | ExternalCalendarEvent | ExternalComment | ExternalCommit | ExternalConversation | ExternalCustomerContact | ExternalCustomerOrg | ExternalCustomerOrgCategory | ExternalDashboard | ExternalDataTable | ExternalDeal | ExternalDeployment | ExternalDesign | ExternalDocument | ExternalExperimental | ExternalFeatureFlag | ExternalMessage | ExternalOrganisation | ExternalPosition | ExternalPullRequest | ExternalRemoteLink | ExternalRepository | ExternalSoftwareService | ExternalSpace | ExternalTeam | ExternalTest | ExternalTestExecution | ExternalTestPlan | ExternalTestRun | ExternalTestStatus | ExternalVideo | ExternalVulnerability | ExternalWorkItem | ExternalWorker | JiraAlignAggProject | JiraAutodevJob | JiraBoard | JiraConfluenceRemoteIssueLink | JiraCustomRemoteIssueLink | JiraIssue | JiraIssueRemoteIssueLink | JiraIssueType | JiraPlatformComment | JiraPriority | JiraProject | JiraServiceManagementComment | JiraSprint | JiraStatus | JiraVersion | JiraWebRemoteIssueLink | JiraWorklog | LoomComment | LoomMeeting | LoomMeetingRecurrence | LoomSpace | LoomVideo | MercuryChangeProposal | MercuryFocusArea | MercuryFocusAreaStatusUpdate | MercuryRisk | MercuryStrategicEvent | OpsgenieTeam | RadarPosition | RadarWorker | SpfAsk | SpfPlan | SpfPlanScenario | SpfPlanScenarioInvestment | TeamCustomFieldValue | TeamType | TeamV2 | ThirdPartyUser | TownsquareComment | TownsquareGoal | TownsquareGoalUpdate | TownsquareProject | TownsquareProjectUpdate | TownsquareTag;
|
|
92716
|
-
export declare type GraphStoreV2SimplifiedContentEntityLinksEntityUnion = AvpDashboard | AppUser | AssetsObject | AssetsObjectType | AtlassianAccountUser | BitbucketRepository | CompassComponent | CompassLinkNode | CompassScorecard | ConfluenceBlogPost | ConfluenceDatabase | ConfluenceEmbed | ConfluenceFolder | ConfluenceFooterComment | ConfluenceInlineComment | ConfluencePage | ConfluenceSpace | ConfluenceWhiteboard | Customer360Customer | CustomerServiceCsmCustomer | CustomerServiceCsmOrganization | CustomerUser | DeploymentSummary | DevOpsDesign | DevOpsDocument | DevOpsFeatureFlag | DevOpsOperationsComponentDetails | DevOpsOperationsIncidentDetails | DevOpsOperationsPostIncidentReviewDetails | DevOpsProjectDetails | DevOpsPullRequestDetails | DevOpsRepository | DevOpsSecurityVulnerabilityDetails | DevOpsService | ExternalBranch | ExternalBuildInfo | ExternalCalendarEvent | ExternalComment | ExternalCommit | ExternalConversation | ExternalCustomerContact | ExternalCustomerOrg | ExternalCustomerOrgCategory | ExternalDashboard | ExternalDataTable | ExternalDeal | ExternalDeployment | ExternalDesign | ExternalDocument | ExternalExperimental | ExternalFeatureFlag | ExternalMessage | ExternalOrganisation | ExternalPosition | ExternalPullRequest | ExternalRemoteLink | ExternalRepository | ExternalSoftwareService | ExternalSpace | ExternalTeam | ExternalTest | ExternalTestExecution | ExternalTestPlan | ExternalTestRun | ExternalTestStatus | ExternalVideo | ExternalVulnerability | ExternalWorkItem | ExternalWorker | IdentityGroup | JiraAlignAggProject | JiraAutodevJob | JiraBoard | JiraConfluenceRemoteIssueLink | JiraCustomRemoteIssueLink | JiraIssue | JiraIssueRemoteIssueLink | JiraIssueType | JiraPlatformComment | JiraPostIncidentReviewLink | JiraPriority | JiraProject | JiraServiceManagementComment | JiraSprint | JiraStatus | JiraVersion | JiraWebRemoteIssueLink | JiraWorklog | KnowledgeDiscoveryTopicByAri | LoomComment | LoomMeeting | LoomMeetingRecurrence | LoomSpace | LoomVideo | MercuryChangeProposal | MercuryFocusArea | MercuryFocusAreaStatusUpdate | MercuryRisk | MercuryStrategicEvent | OpsgenieTeam | RadarPosition | RadarWorker | SpfAsk | SpfPlan | SpfPlanScenario | SpfPlanScenarioInvestment | TeamCustomFieldValue | TeamType | TeamV2 | ThirdPartySecurityContainer | ThirdPartyUser | TownsquareComment | TownsquareGoal | TownsquareGoalUpdate | TownsquareProject | TownsquareProjectUpdate | TownsquareTag;
|
|
92306
|
+
export declare type GraphStoreV2SimplifiedContentEntityLinksEntityInverseUnion = AvpDashboard | AppUser | AssetsObject | AssetsObjectType | AtlassianAccountUser | CompassComponent | CompassLinkNode | CompassScorecard | ConfluenceBlogPost | ConfluenceDatabase | ConfluenceEmbed | ConfluenceFolder | ConfluenceFooterComment | ConfluenceInlineComment | ConfluencePage | ConfluenceSpace | ConfluenceWhiteboard | Customer360Customer | CustomerServiceCsmCustomer | CustomerServiceCsmOrganization | CustomerUser | DeploymentSummary | DevOpsDesign | DevOpsDocument | DevOpsFeatureFlag | DevOpsOperationsComponentDetails | DevOpsOperationsIncidentDetails | DevOpsOperationsPostIncidentReviewDetails | DevOpsProjectDetails | DevOpsPullRequestDetails | DevOpsRepository | DevOpsSecurityVulnerabilityDetails | DevOpsService | ExternalBranch | ExternalBuildInfo | ExternalCalendarEvent | ExternalCampaign | ExternalCase | ExternalComment | ExternalCommit | ExternalConversation | ExternalCustomerContact | ExternalCustomerOrg | ExternalCustomerOrgCategory | ExternalDashboard | ExternalDataTable | ExternalDeal | ExternalDeployment | ExternalDesign | ExternalDocument | ExternalExperimental | ExternalFeatureFlag | ExternalMessage | ExternalOrganisation | ExternalPosition | ExternalPullRequest | ExternalRemoteLink | ExternalRepository | ExternalSoftwareService | ExternalSpace | ExternalTeam | ExternalTest | ExternalTestExecution | ExternalTestPlan | ExternalTestRun | ExternalTestStatus | ExternalVideo | ExternalVulnerability | ExternalWorkItem | ExternalWorker | JiraAlignAggProject | JiraAutodevJob | JiraBoard | JiraConfluenceRemoteIssueLink | JiraCustomRemoteIssueLink | JiraIssue | JiraIssueRemoteIssueLink | JiraIssueType | JiraPlatformComment | JiraPriority | JiraProject | JiraServiceManagementComment | JiraSprint | JiraStatus | JiraVersion | JiraWebRemoteIssueLink | JiraWorklog | LoomComment | LoomMeeting | LoomMeetingRecurrence | LoomSpace | LoomVideo | MercuryChangeProposal | MercuryFocusArea | MercuryFocusAreaStatusUpdate | MercuryRisk | MercuryStrategicEvent | OpsgenieTeam | RadarPosition | RadarWorker | SpfAsk | SpfPlan | SpfPlanScenario | SpfPlanScenarioInvestment | TeamCustomFieldValue | TeamType | TeamV2 | ThirdPartyUser | TownsquareComment | TownsquareGoal | TownsquareGoalUpdate | TownsquareProject | TownsquareProjectUpdate | TownsquareTag;
|
|
92307
|
+
export declare type GraphStoreV2SimplifiedContentEntityLinksEntityUnion = AvpDashboard | AppUser | AssetsObject | AssetsObjectType | AtlassianAccountUser | BitbucketRepository | CompassComponent | CompassLinkNode | CompassScorecard | ConfluenceBlogPost | ConfluenceDatabase | ConfluenceEmbed | ConfluenceFolder | ConfluenceFooterComment | ConfluenceInlineComment | ConfluencePage | ConfluenceSpace | ConfluenceWhiteboard | Customer360Customer | CustomerServiceCsmCustomer | CustomerServiceCsmOrganization | CustomerUser | DeploymentSummary | DevOpsDesign | DevOpsDocument | DevOpsFeatureFlag | DevOpsOperationsComponentDetails | DevOpsOperationsIncidentDetails | DevOpsOperationsPostIncidentReviewDetails | DevOpsProjectDetails | DevOpsPullRequestDetails | DevOpsRepository | DevOpsSecurityVulnerabilityDetails | DevOpsService | ExternalBranch | ExternalBuildInfo | ExternalCalendarEvent | ExternalCampaign | ExternalCase | ExternalComment | ExternalCommit | ExternalConversation | ExternalCustomerContact | ExternalCustomerOrg | ExternalCustomerOrgCategory | ExternalDashboard | ExternalDataTable | ExternalDeal | ExternalDeployment | ExternalDesign | ExternalDocument | ExternalExperimental | ExternalFeatureFlag | ExternalMessage | ExternalOrganisation | ExternalPosition | ExternalPullRequest | ExternalRemoteLink | ExternalRepository | ExternalSoftwareService | ExternalSpace | ExternalTeam | ExternalTest | ExternalTestExecution | ExternalTestPlan | ExternalTestRun | ExternalTestStatus | ExternalVideo | ExternalVulnerability | ExternalWorkItem | ExternalWorker | IdentityGroup | JiraAlignAggProject | JiraAutodevJob | JiraBoard | JiraConfluenceRemoteIssueLink | JiraCustomRemoteIssueLink | JiraIssue | JiraIssueRemoteIssueLink | JiraIssueType | JiraPlatformComment | JiraPostIncidentReviewLink | JiraPriority | JiraProject | JiraServiceManagementComment | JiraSprint | JiraStatus | JiraVersion | JiraWebRemoteIssueLink | JiraWorklog | KnowledgeDiscoveryTopicByAri | LoomComment | LoomMeeting | LoomMeetingRecurrence | LoomSpace | LoomVideo | MercuryChangeProposal | MercuryFocusArea | MercuryFocusAreaStatusUpdate | MercuryRisk | MercuryStrategicEvent | OpsgenieTeam | RadarPosition | RadarWorker | SpfAsk | SpfPlan | SpfPlanScenario | SpfPlanScenarioInvestment | TeamCustomFieldValue | TeamType | TeamV2 | ThirdPartySecurityContainer | ThirdPartyUser | TownsquareComment | TownsquareGoal | TownsquareGoalUpdate | TownsquareProject | TownsquareProjectUpdate | TownsquareTag;
|
|
92717
92308
|
export declare type GraphStoreV2SimplifiedCsmCustomerLinksJiraWorkItemConnection = HasPageInfo & {
|
|
92718
92309
|
__typename?: 'GraphStoreV2SimplifiedCsmCustomerLinksJiraWorkItemConnection';
|
|
92719
92310
|
edges?: Maybe<Array<Maybe<GraphStoreV2SimplifiedCsmCustomerLinksJiraWorkItemEdge>>>;
|
|
@@ -92882,6 +92473,62 @@ export declare type GraphStoreV2SimplifiedEntityLinksEntityInverseEdge = {
|
|
|
92882
92473
|
};
|
|
92883
92474
|
export declare type GraphStoreV2SimplifiedEntityLinksEntityInverseUnion = ConfluenceBlogPost | ConfluencePage;
|
|
92884
92475
|
export declare type GraphStoreV2SimplifiedEntityLinksEntityUnion = ConfluenceBlogPost | ConfluencePage;
|
|
92476
|
+
export declare type GraphStoreV2SimplifiedExternalCalendarEventHasChildExternalCalendarEventConnection = HasPageInfo & {
|
|
92477
|
+
__typename?: 'GraphStoreV2SimplifiedExternalCalendarEventHasChildExternalCalendarEventConnection';
|
|
92478
|
+
edges?: Maybe<Array<Maybe<GraphStoreV2SimplifiedExternalCalendarEventHasChildExternalCalendarEventEdge>>>;
|
|
92479
|
+
pageInfo: PageInfo;
|
|
92480
|
+
};
|
|
92481
|
+
export declare type GraphStoreV2SimplifiedExternalCalendarEventHasChildExternalCalendarEventEdge = {
|
|
92482
|
+
__typename?: 'GraphStoreV2SimplifiedExternalCalendarEventHasChildExternalCalendarEventEdge';
|
|
92483
|
+
createdAt: Scalars['DateTime']['output'];
|
|
92484
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
92485
|
+
id: Scalars['ID']['output'];
|
|
92486
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
92487
|
+
node?: Maybe<GraphStoreV2SimplifiedExternalCalendarEventHasChildExternalCalendarEventUnion>;
|
|
92488
|
+
};
|
|
92489
|
+
export declare type GraphStoreV2SimplifiedExternalCalendarEventHasChildExternalCalendarEventInverseConnection = HasPageInfo & {
|
|
92490
|
+
__typename?: 'GraphStoreV2SimplifiedExternalCalendarEventHasChildExternalCalendarEventInverseConnection';
|
|
92491
|
+
edges?: Maybe<Array<Maybe<GraphStoreV2SimplifiedExternalCalendarEventHasChildExternalCalendarEventInverseEdge>>>;
|
|
92492
|
+
pageInfo: PageInfo;
|
|
92493
|
+
};
|
|
92494
|
+
export declare type GraphStoreV2SimplifiedExternalCalendarEventHasChildExternalCalendarEventInverseEdge = {
|
|
92495
|
+
__typename?: 'GraphStoreV2SimplifiedExternalCalendarEventHasChildExternalCalendarEventInverseEdge';
|
|
92496
|
+
createdAt: Scalars['DateTime']['output'];
|
|
92497
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
92498
|
+
id: Scalars['ID']['output'];
|
|
92499
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
92500
|
+
node?: Maybe<GraphStoreV2SimplifiedExternalCalendarEventHasChildExternalCalendarEventInverseUnion>;
|
|
92501
|
+
};
|
|
92502
|
+
export declare type GraphStoreV2SimplifiedExternalCalendarEventHasChildExternalCalendarEventInverseUnion = ExternalCalendarEvent;
|
|
92503
|
+
export declare type GraphStoreV2SimplifiedExternalCalendarEventHasChildExternalCalendarEventUnion = ExternalCalendarEvent;
|
|
92504
|
+
export declare type GraphStoreV2SimplifiedExternalCalendarEventLinksExternalVideoConnection = HasPageInfo & {
|
|
92505
|
+
__typename?: 'GraphStoreV2SimplifiedExternalCalendarEventLinksExternalVideoConnection';
|
|
92506
|
+
edges?: Maybe<Array<Maybe<GraphStoreV2SimplifiedExternalCalendarEventLinksExternalVideoEdge>>>;
|
|
92507
|
+
pageInfo: PageInfo;
|
|
92508
|
+
};
|
|
92509
|
+
export declare type GraphStoreV2SimplifiedExternalCalendarEventLinksExternalVideoEdge = {
|
|
92510
|
+
__typename?: 'GraphStoreV2SimplifiedExternalCalendarEventLinksExternalVideoEdge';
|
|
92511
|
+
createdAt: Scalars['DateTime']['output'];
|
|
92512
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
92513
|
+
id: Scalars['ID']['output'];
|
|
92514
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
92515
|
+
node?: Maybe<GraphStoreV2SimplifiedExternalCalendarEventLinksExternalVideoUnion>;
|
|
92516
|
+
};
|
|
92517
|
+
export declare type GraphStoreV2SimplifiedExternalCalendarEventLinksExternalVideoInverseConnection = HasPageInfo & {
|
|
92518
|
+
__typename?: 'GraphStoreV2SimplifiedExternalCalendarEventLinksExternalVideoInverseConnection';
|
|
92519
|
+
edges?: Maybe<Array<Maybe<GraphStoreV2SimplifiedExternalCalendarEventLinksExternalVideoInverseEdge>>>;
|
|
92520
|
+
pageInfo: PageInfo;
|
|
92521
|
+
};
|
|
92522
|
+
export declare type GraphStoreV2SimplifiedExternalCalendarEventLinksExternalVideoInverseEdge = {
|
|
92523
|
+
__typename?: 'GraphStoreV2SimplifiedExternalCalendarEventLinksExternalVideoInverseEdge';
|
|
92524
|
+
createdAt: Scalars['DateTime']['output'];
|
|
92525
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
92526
|
+
id: Scalars['ID']['output'];
|
|
92527
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
92528
|
+
node?: Maybe<GraphStoreV2SimplifiedExternalCalendarEventLinksExternalVideoInverseUnion>;
|
|
92529
|
+
};
|
|
92530
|
+
export declare type GraphStoreV2SimplifiedExternalCalendarEventLinksExternalVideoInverseUnion = ExternalCalendarEvent;
|
|
92531
|
+
export declare type GraphStoreV2SimplifiedExternalCalendarEventLinksExternalVideoUnion = ExternalVideo;
|
|
92885
92532
|
export declare type GraphStoreV2SimplifiedExternalCalendarHasLinkedExternalDocumentConnection = HasPageInfo & {
|
|
92886
92533
|
__typename?: 'GraphStoreV2SimplifiedExternalCalendarHasLinkedExternalDocumentConnection';
|
|
92887
92534
|
edges?: Maybe<Array<Maybe<GraphStoreV2SimplifiedExternalCalendarHasLinkedExternalDocumentEdge>>>;
|
|
@@ -92966,6 +92613,62 @@ export declare type GraphStoreV2SimplifiedExternalConversationMentionsJiraWorkIt
|
|
|
92966
92613
|
};
|
|
92967
92614
|
export declare type GraphStoreV2SimplifiedExternalConversationMentionsJiraWorkItemInverseUnion = ExternalConversation;
|
|
92968
92615
|
export declare type GraphStoreV2SimplifiedExternalConversationMentionsJiraWorkItemUnion = JiraIssue;
|
|
92616
|
+
export declare type GraphStoreV2SimplifiedExternalCustomerContactHasExternalCalendarEventConnection = HasPageInfo & {
|
|
92617
|
+
__typename?: 'GraphStoreV2SimplifiedExternalCustomerContactHasExternalCalendarEventConnection';
|
|
92618
|
+
edges?: Maybe<Array<Maybe<GraphStoreV2SimplifiedExternalCustomerContactHasExternalCalendarEventEdge>>>;
|
|
92619
|
+
pageInfo: PageInfo;
|
|
92620
|
+
};
|
|
92621
|
+
export declare type GraphStoreV2SimplifiedExternalCustomerContactHasExternalCalendarEventEdge = {
|
|
92622
|
+
__typename?: 'GraphStoreV2SimplifiedExternalCustomerContactHasExternalCalendarEventEdge';
|
|
92623
|
+
createdAt: Scalars['DateTime']['output'];
|
|
92624
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
92625
|
+
id: Scalars['ID']['output'];
|
|
92626
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
92627
|
+
node?: Maybe<GraphStoreV2SimplifiedExternalCustomerContactHasExternalCalendarEventUnion>;
|
|
92628
|
+
};
|
|
92629
|
+
export declare type GraphStoreV2SimplifiedExternalCustomerContactHasExternalCalendarEventInverseConnection = HasPageInfo & {
|
|
92630
|
+
__typename?: 'GraphStoreV2SimplifiedExternalCustomerContactHasExternalCalendarEventInverseConnection';
|
|
92631
|
+
edges?: Maybe<Array<Maybe<GraphStoreV2SimplifiedExternalCustomerContactHasExternalCalendarEventInverseEdge>>>;
|
|
92632
|
+
pageInfo: PageInfo;
|
|
92633
|
+
};
|
|
92634
|
+
export declare type GraphStoreV2SimplifiedExternalCustomerContactHasExternalCalendarEventInverseEdge = {
|
|
92635
|
+
__typename?: 'GraphStoreV2SimplifiedExternalCustomerContactHasExternalCalendarEventInverseEdge';
|
|
92636
|
+
createdAt: Scalars['DateTime']['output'];
|
|
92637
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
92638
|
+
id: Scalars['ID']['output'];
|
|
92639
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
92640
|
+
node?: Maybe<GraphStoreV2SimplifiedExternalCustomerContactHasExternalCalendarEventInverseUnion>;
|
|
92641
|
+
};
|
|
92642
|
+
export declare type GraphStoreV2SimplifiedExternalCustomerContactHasExternalCalendarEventInverseUnion = ExternalCustomerContact;
|
|
92643
|
+
export declare type GraphStoreV2SimplifiedExternalCustomerContactHasExternalCalendarEventUnion = ExternalCalendarEvent;
|
|
92644
|
+
export declare type GraphStoreV2SimplifiedExternalCustomerContactHasExternalWorkItemConnection = HasPageInfo & {
|
|
92645
|
+
__typename?: 'GraphStoreV2SimplifiedExternalCustomerContactHasExternalWorkItemConnection';
|
|
92646
|
+
edges?: Maybe<Array<Maybe<GraphStoreV2SimplifiedExternalCustomerContactHasExternalWorkItemEdge>>>;
|
|
92647
|
+
pageInfo: PageInfo;
|
|
92648
|
+
};
|
|
92649
|
+
export declare type GraphStoreV2SimplifiedExternalCustomerContactHasExternalWorkItemEdge = {
|
|
92650
|
+
__typename?: 'GraphStoreV2SimplifiedExternalCustomerContactHasExternalWorkItemEdge';
|
|
92651
|
+
createdAt: Scalars['DateTime']['output'];
|
|
92652
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
92653
|
+
id: Scalars['ID']['output'];
|
|
92654
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
92655
|
+
node?: Maybe<GraphStoreV2SimplifiedExternalCustomerContactHasExternalWorkItemUnion>;
|
|
92656
|
+
};
|
|
92657
|
+
export declare type GraphStoreV2SimplifiedExternalCustomerContactHasExternalWorkItemInverseConnection = HasPageInfo & {
|
|
92658
|
+
__typename?: 'GraphStoreV2SimplifiedExternalCustomerContactHasExternalWorkItemInverseConnection';
|
|
92659
|
+
edges?: Maybe<Array<Maybe<GraphStoreV2SimplifiedExternalCustomerContactHasExternalWorkItemInverseEdge>>>;
|
|
92660
|
+
pageInfo: PageInfo;
|
|
92661
|
+
};
|
|
92662
|
+
export declare type GraphStoreV2SimplifiedExternalCustomerContactHasExternalWorkItemInverseEdge = {
|
|
92663
|
+
__typename?: 'GraphStoreV2SimplifiedExternalCustomerContactHasExternalWorkItemInverseEdge';
|
|
92664
|
+
createdAt: Scalars['DateTime']['output'];
|
|
92665
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
92666
|
+
id: Scalars['ID']['output'];
|
|
92667
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
92668
|
+
node?: Maybe<GraphStoreV2SimplifiedExternalCustomerContactHasExternalWorkItemInverseUnion>;
|
|
92669
|
+
};
|
|
92670
|
+
export declare type GraphStoreV2SimplifiedExternalCustomerContactHasExternalWorkItemInverseUnion = ExternalCustomerContact;
|
|
92671
|
+
export declare type GraphStoreV2SimplifiedExternalCustomerContactHasExternalWorkItemUnion = ExternalWorkItem;
|
|
92969
92672
|
export declare type GraphStoreV2SimplifiedExternalCustomerOrgHasChildExternalCustomerOrgConnection = HasPageInfo & {
|
|
92970
92673
|
__typename?: 'GraphStoreV2SimplifiedExternalCustomerOrgHasChildExternalCustomerOrgConnection';
|
|
92971
92674
|
edges?: Maybe<Array<Maybe<GraphStoreV2SimplifiedExternalCustomerOrgHasChildExternalCustomerOrgEdge>>>;
|
|
@@ -92994,6 +92697,34 @@ export declare type GraphStoreV2SimplifiedExternalCustomerOrgHasChildExternalCus
|
|
|
92994
92697
|
};
|
|
92995
92698
|
export declare type GraphStoreV2SimplifiedExternalCustomerOrgHasChildExternalCustomerOrgInverseUnion = ExternalCustomerOrg;
|
|
92996
92699
|
export declare type GraphStoreV2SimplifiedExternalCustomerOrgHasChildExternalCustomerOrgUnion = ExternalCustomerOrg;
|
|
92700
|
+
export declare type GraphStoreV2SimplifiedExternalCustomerOrgHasExternalCalendarEventConnection = HasPageInfo & {
|
|
92701
|
+
__typename?: 'GraphStoreV2SimplifiedExternalCustomerOrgHasExternalCalendarEventConnection';
|
|
92702
|
+
edges?: Maybe<Array<Maybe<GraphStoreV2SimplifiedExternalCustomerOrgHasExternalCalendarEventEdge>>>;
|
|
92703
|
+
pageInfo: PageInfo;
|
|
92704
|
+
};
|
|
92705
|
+
export declare type GraphStoreV2SimplifiedExternalCustomerOrgHasExternalCalendarEventEdge = {
|
|
92706
|
+
__typename?: 'GraphStoreV2SimplifiedExternalCustomerOrgHasExternalCalendarEventEdge';
|
|
92707
|
+
createdAt: Scalars['DateTime']['output'];
|
|
92708
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
92709
|
+
id: Scalars['ID']['output'];
|
|
92710
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
92711
|
+
node?: Maybe<GraphStoreV2SimplifiedExternalCustomerOrgHasExternalCalendarEventUnion>;
|
|
92712
|
+
};
|
|
92713
|
+
export declare type GraphStoreV2SimplifiedExternalCustomerOrgHasExternalCalendarEventInverseConnection = HasPageInfo & {
|
|
92714
|
+
__typename?: 'GraphStoreV2SimplifiedExternalCustomerOrgHasExternalCalendarEventInverseConnection';
|
|
92715
|
+
edges?: Maybe<Array<Maybe<GraphStoreV2SimplifiedExternalCustomerOrgHasExternalCalendarEventInverseEdge>>>;
|
|
92716
|
+
pageInfo: PageInfo;
|
|
92717
|
+
};
|
|
92718
|
+
export declare type GraphStoreV2SimplifiedExternalCustomerOrgHasExternalCalendarEventInverseEdge = {
|
|
92719
|
+
__typename?: 'GraphStoreV2SimplifiedExternalCustomerOrgHasExternalCalendarEventInverseEdge';
|
|
92720
|
+
createdAt: Scalars['DateTime']['output'];
|
|
92721
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
92722
|
+
id: Scalars['ID']['output'];
|
|
92723
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
92724
|
+
node?: Maybe<GraphStoreV2SimplifiedExternalCustomerOrgHasExternalCalendarEventInverseUnion>;
|
|
92725
|
+
};
|
|
92726
|
+
export declare type GraphStoreV2SimplifiedExternalCustomerOrgHasExternalCalendarEventInverseUnion = ExternalCustomerOrg;
|
|
92727
|
+
export declare type GraphStoreV2SimplifiedExternalCustomerOrgHasExternalCalendarEventUnion = ExternalCalendarEvent;
|
|
92997
92728
|
export declare type GraphStoreV2SimplifiedExternalCustomerOrgHasExternalCustomerContactConnection = HasPageInfo & {
|
|
92998
92729
|
__typename?: 'GraphStoreV2SimplifiedExternalCustomerOrgHasExternalCustomerContactConnection';
|
|
92999
92730
|
edges?: Maybe<Array<Maybe<GraphStoreV2SimplifiedExternalCustomerOrgHasExternalCustomerContactEdge>>>;
|
|
@@ -93050,6 +92781,34 @@ export declare type GraphStoreV2SimplifiedExternalCustomerOrgHasExternalDealInve
|
|
|
93050
92781
|
};
|
|
93051
92782
|
export declare type GraphStoreV2SimplifiedExternalCustomerOrgHasExternalDealInverseUnion = ExternalCustomerOrg;
|
|
93052
92783
|
export declare type GraphStoreV2SimplifiedExternalCustomerOrgHasExternalDealUnion = ExternalDeal;
|
|
92784
|
+
export declare type GraphStoreV2SimplifiedExternalCustomerOrgHasExternalWorkItemConnection = HasPageInfo & {
|
|
92785
|
+
__typename?: 'GraphStoreV2SimplifiedExternalCustomerOrgHasExternalWorkItemConnection';
|
|
92786
|
+
edges?: Maybe<Array<Maybe<GraphStoreV2SimplifiedExternalCustomerOrgHasExternalWorkItemEdge>>>;
|
|
92787
|
+
pageInfo: PageInfo;
|
|
92788
|
+
};
|
|
92789
|
+
export declare type GraphStoreV2SimplifiedExternalCustomerOrgHasExternalWorkItemEdge = {
|
|
92790
|
+
__typename?: 'GraphStoreV2SimplifiedExternalCustomerOrgHasExternalWorkItemEdge';
|
|
92791
|
+
createdAt: Scalars['DateTime']['output'];
|
|
92792
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
92793
|
+
id: Scalars['ID']['output'];
|
|
92794
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
92795
|
+
node?: Maybe<GraphStoreV2SimplifiedExternalCustomerOrgHasExternalWorkItemUnion>;
|
|
92796
|
+
};
|
|
92797
|
+
export declare type GraphStoreV2SimplifiedExternalCustomerOrgHasExternalWorkItemInverseConnection = HasPageInfo & {
|
|
92798
|
+
__typename?: 'GraphStoreV2SimplifiedExternalCustomerOrgHasExternalWorkItemInverseConnection';
|
|
92799
|
+
edges?: Maybe<Array<Maybe<GraphStoreV2SimplifiedExternalCustomerOrgHasExternalWorkItemInverseEdge>>>;
|
|
92800
|
+
pageInfo: PageInfo;
|
|
92801
|
+
};
|
|
92802
|
+
export declare type GraphStoreV2SimplifiedExternalCustomerOrgHasExternalWorkItemInverseEdge = {
|
|
92803
|
+
__typename?: 'GraphStoreV2SimplifiedExternalCustomerOrgHasExternalWorkItemInverseEdge';
|
|
92804
|
+
createdAt: Scalars['DateTime']['output'];
|
|
92805
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
92806
|
+
id: Scalars['ID']['output'];
|
|
92807
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
92808
|
+
node?: Maybe<GraphStoreV2SimplifiedExternalCustomerOrgHasExternalWorkItemInverseUnion>;
|
|
92809
|
+
};
|
|
92810
|
+
export declare type GraphStoreV2SimplifiedExternalCustomerOrgHasExternalWorkItemInverseUnion = ExternalCustomerOrg;
|
|
92811
|
+
export declare type GraphStoreV2SimplifiedExternalCustomerOrgHasExternalWorkItemUnion = ExternalWorkItem;
|
|
93053
92812
|
export declare type GraphStoreV2SimplifiedExternalCustomerOrgLinksExternalCustomerOrgCategoryConnection = HasPageInfo & {
|
|
93054
92813
|
__typename?: 'GraphStoreV2SimplifiedExternalCustomerOrgLinksExternalCustomerOrgCategoryConnection';
|
|
93055
92814
|
edges?: Maybe<Array<Maybe<GraphStoreV2SimplifiedExternalCustomerOrgLinksExternalCustomerOrgCategoryEdge>>>;
|
|
@@ -93134,6 +92893,62 @@ export declare type GraphStoreV2SimplifiedExternalDataTableHasExternalSpaceInver
|
|
|
93134
92893
|
};
|
|
93135
92894
|
export declare type GraphStoreV2SimplifiedExternalDataTableHasExternalSpaceInverseUnion = ExternalDataTable;
|
|
93136
92895
|
export declare type GraphStoreV2SimplifiedExternalDataTableHasExternalSpaceUnion = ExternalSpace;
|
|
92896
|
+
export declare type GraphStoreV2SimplifiedExternalDealHasExternalCalendarEventConnection = HasPageInfo & {
|
|
92897
|
+
__typename?: 'GraphStoreV2SimplifiedExternalDealHasExternalCalendarEventConnection';
|
|
92898
|
+
edges?: Maybe<Array<Maybe<GraphStoreV2SimplifiedExternalDealHasExternalCalendarEventEdge>>>;
|
|
92899
|
+
pageInfo: PageInfo;
|
|
92900
|
+
};
|
|
92901
|
+
export declare type GraphStoreV2SimplifiedExternalDealHasExternalCalendarEventEdge = {
|
|
92902
|
+
__typename?: 'GraphStoreV2SimplifiedExternalDealHasExternalCalendarEventEdge';
|
|
92903
|
+
createdAt: Scalars['DateTime']['output'];
|
|
92904
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
92905
|
+
id: Scalars['ID']['output'];
|
|
92906
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
92907
|
+
node?: Maybe<GraphStoreV2SimplifiedExternalDealHasExternalCalendarEventUnion>;
|
|
92908
|
+
};
|
|
92909
|
+
export declare type GraphStoreV2SimplifiedExternalDealHasExternalCalendarEventInverseConnection = HasPageInfo & {
|
|
92910
|
+
__typename?: 'GraphStoreV2SimplifiedExternalDealHasExternalCalendarEventInverseConnection';
|
|
92911
|
+
edges?: Maybe<Array<Maybe<GraphStoreV2SimplifiedExternalDealHasExternalCalendarEventInverseEdge>>>;
|
|
92912
|
+
pageInfo: PageInfo;
|
|
92913
|
+
};
|
|
92914
|
+
export declare type GraphStoreV2SimplifiedExternalDealHasExternalCalendarEventInverseEdge = {
|
|
92915
|
+
__typename?: 'GraphStoreV2SimplifiedExternalDealHasExternalCalendarEventInverseEdge';
|
|
92916
|
+
createdAt: Scalars['DateTime']['output'];
|
|
92917
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
92918
|
+
id: Scalars['ID']['output'];
|
|
92919
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
92920
|
+
node?: Maybe<GraphStoreV2SimplifiedExternalDealHasExternalCalendarEventInverseUnion>;
|
|
92921
|
+
};
|
|
92922
|
+
export declare type GraphStoreV2SimplifiedExternalDealHasExternalCalendarEventInverseUnion = ExternalDeal;
|
|
92923
|
+
export declare type GraphStoreV2SimplifiedExternalDealHasExternalCalendarEventUnion = ExternalCalendarEvent;
|
|
92924
|
+
export declare type GraphStoreV2SimplifiedExternalDealHasExternalWorkItemConnection = HasPageInfo & {
|
|
92925
|
+
__typename?: 'GraphStoreV2SimplifiedExternalDealHasExternalWorkItemConnection';
|
|
92926
|
+
edges?: Maybe<Array<Maybe<GraphStoreV2SimplifiedExternalDealHasExternalWorkItemEdge>>>;
|
|
92927
|
+
pageInfo: PageInfo;
|
|
92928
|
+
};
|
|
92929
|
+
export declare type GraphStoreV2SimplifiedExternalDealHasExternalWorkItemEdge = {
|
|
92930
|
+
__typename?: 'GraphStoreV2SimplifiedExternalDealHasExternalWorkItemEdge';
|
|
92931
|
+
createdAt: Scalars['DateTime']['output'];
|
|
92932
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
92933
|
+
id: Scalars['ID']['output'];
|
|
92934
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
92935
|
+
node?: Maybe<GraphStoreV2SimplifiedExternalDealHasExternalWorkItemUnion>;
|
|
92936
|
+
};
|
|
92937
|
+
export declare type GraphStoreV2SimplifiedExternalDealHasExternalWorkItemInverseConnection = HasPageInfo & {
|
|
92938
|
+
__typename?: 'GraphStoreV2SimplifiedExternalDealHasExternalWorkItemInverseConnection';
|
|
92939
|
+
edges?: Maybe<Array<Maybe<GraphStoreV2SimplifiedExternalDealHasExternalWorkItemInverseEdge>>>;
|
|
92940
|
+
pageInfo: PageInfo;
|
|
92941
|
+
};
|
|
92942
|
+
export declare type GraphStoreV2SimplifiedExternalDealHasExternalWorkItemInverseEdge = {
|
|
92943
|
+
__typename?: 'GraphStoreV2SimplifiedExternalDealHasExternalWorkItemInverseEdge';
|
|
92944
|
+
createdAt: Scalars['DateTime']['output'];
|
|
92945
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
92946
|
+
id: Scalars['ID']['output'];
|
|
92947
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
92948
|
+
node?: Maybe<GraphStoreV2SimplifiedExternalDealHasExternalWorkItemInverseUnion>;
|
|
92949
|
+
};
|
|
92950
|
+
export declare type GraphStoreV2SimplifiedExternalDealHasExternalWorkItemInverseUnion = ExternalDeal;
|
|
92951
|
+
export declare type GraphStoreV2SimplifiedExternalDealHasExternalWorkItemUnion = ExternalWorkItem;
|
|
93137
92952
|
export declare type GraphStoreV2SimplifiedExternalDeploymentHasExternalCommitConnection = HasPageInfo & {
|
|
93138
92953
|
__typename?: 'GraphStoreV2SimplifiedExternalDeploymentHasExternalCommitConnection';
|
|
93139
92954
|
edges?: Maybe<Array<Maybe<GraphStoreV2SimplifiedExternalDeploymentHasExternalCommitEdge>>>;
|
|
@@ -96819,7 +96634,7 @@ export declare type GraphStoreV2SimplifiedJiraSpaceLinksEntityInverseEdge = {
|
|
|
96819
96634
|
node?: Maybe<GraphStoreV2SimplifiedJiraSpaceLinksEntityInverseUnion>;
|
|
96820
96635
|
};
|
|
96821
96636
|
export declare type GraphStoreV2SimplifiedJiraSpaceLinksEntityInverseUnion = TownsquareProject;
|
|
96822
|
-
export declare type GraphStoreV2SimplifiedJiraSpaceLinksEntityUnion = AvpDashboard | AppUser | AssetsObject | AssetsObjectType | AtlassianAccountUser | BitbucketRepository | CompassComponent | CompassLinkNode | CompassScorecard | ConfluenceBlogPost | ConfluenceDatabase | ConfluenceEmbed | ConfluenceFolder | ConfluenceFooterComment | ConfluenceInlineComment | ConfluencePage | ConfluenceSpace | ConfluenceWhiteboard | Customer360Customer | CustomerServiceCsmCustomer | CustomerServiceCsmOrganization | CustomerUser | DeploymentSummary | DevOpsDesign | DevOpsDocument | DevOpsFeatureFlag | DevOpsOperationsComponentDetails | DevOpsOperationsIncidentDetails | DevOpsOperationsPostIncidentReviewDetails | DevOpsProjectDetails | DevOpsPullRequestDetails | DevOpsRepository | DevOpsSecurityVulnerabilityDetails | DevOpsService | ExternalBranch | ExternalBuildInfo | ExternalCalendarEvent | ExternalComment | ExternalCommit | ExternalConversation | ExternalCustomerContact | ExternalCustomerOrg | ExternalCustomerOrgCategory | ExternalDashboard | ExternalDataTable | ExternalDeal | ExternalDeployment | ExternalDesign | ExternalDocument | ExternalExperimental | ExternalFeatureFlag | ExternalMessage | ExternalOrganisation | ExternalPosition | ExternalPullRequest | ExternalRemoteLink | ExternalRepository | ExternalSoftwareService | ExternalSpace | ExternalTeam | ExternalTest | ExternalTestExecution | ExternalTestPlan | ExternalTestRun | ExternalTestStatus | ExternalVideo | ExternalVulnerability | ExternalWorkItem | ExternalWorker | IdentityGroup | JiraAlignAggProject | JiraAutodevJob | JiraBoard | JiraConfluenceRemoteIssueLink | JiraCustomRemoteIssueLink | JiraIssue | JiraIssueRemoteIssueLink | JiraIssueType | JiraPlatformComment | JiraPostIncidentReviewLink | JiraPriority | JiraProject | JiraServiceManagementComment | JiraSprint | JiraStatus | JiraVersion | JiraWebRemoteIssueLink | JiraWorklog | KnowledgeDiscoveryTopicByAri | LoomComment | LoomMeeting | LoomMeetingRecurrence | LoomSpace | LoomVideo | MercuryChangeProposal | MercuryFocusArea | MercuryFocusAreaStatusUpdate | MercuryRisk | MercuryStrategicEvent | OpsgenieTeam | RadarPosition | RadarWorker | SpfAsk | SpfPlan | SpfPlanScenario | SpfPlanScenarioInvestment | TeamCustomFieldValue | TeamType | TeamV2 | ThirdPartySecurityContainer | ThirdPartyUser | TownsquareComment | TownsquareGoal | TownsquareGoalUpdate | TownsquareProject | TownsquareProjectUpdate | TownsquareTag;
|
|
96637
|
+
export declare type GraphStoreV2SimplifiedJiraSpaceLinksEntityUnion = AvpDashboard | AppUser | AssetsObject | AssetsObjectType | AtlassianAccountUser | BitbucketRepository | CompassComponent | CompassLinkNode | CompassScorecard | ConfluenceBlogPost | ConfluenceDatabase | ConfluenceEmbed | ConfluenceFolder | ConfluenceFooterComment | ConfluenceInlineComment | ConfluencePage | ConfluenceSpace | ConfluenceWhiteboard | Customer360Customer | CustomerServiceCsmCustomer | CustomerServiceCsmOrganization | CustomerUser | DeploymentSummary | DevOpsDesign | DevOpsDocument | DevOpsFeatureFlag | DevOpsOperationsComponentDetails | DevOpsOperationsIncidentDetails | DevOpsOperationsPostIncidentReviewDetails | DevOpsProjectDetails | DevOpsPullRequestDetails | DevOpsRepository | DevOpsSecurityVulnerabilityDetails | DevOpsService | ExternalBranch | ExternalBuildInfo | ExternalCalendarEvent | ExternalCampaign | ExternalCase | ExternalComment | ExternalCommit | ExternalConversation | ExternalCustomerContact | ExternalCustomerOrg | ExternalCustomerOrgCategory | ExternalDashboard | ExternalDataTable | ExternalDeal | ExternalDeployment | ExternalDesign | ExternalDocument | ExternalExperimental | ExternalFeatureFlag | ExternalMessage | ExternalOrganisation | ExternalPosition | ExternalPullRequest | ExternalRemoteLink | ExternalRepository | ExternalSoftwareService | ExternalSpace | ExternalTeam | ExternalTest | ExternalTestExecution | ExternalTestPlan | ExternalTestRun | ExternalTestStatus | ExternalVideo | ExternalVulnerability | ExternalWorkItem | ExternalWorker | IdentityGroup | JiraAlignAggProject | JiraAutodevJob | JiraBoard | JiraConfluenceRemoteIssueLink | JiraCustomRemoteIssueLink | JiraIssue | JiraIssueRemoteIssueLink | JiraIssueType | JiraPlatformComment | JiraPostIncidentReviewLink | JiraPriority | JiraProject | JiraServiceManagementComment | JiraSprint | JiraStatus | JiraVersion | JiraWebRemoteIssueLink | JiraWorklog | KnowledgeDiscoveryTopicByAri | LoomComment | LoomMeeting | LoomMeetingRecurrence | LoomSpace | LoomVideo | MercuryChangeProposal | MercuryFocusArea | MercuryFocusAreaStatusUpdate | MercuryRisk | MercuryStrategicEvent | OpsgenieTeam | RadarPosition | RadarWorker | SpfAsk | SpfPlan | SpfPlanScenario | SpfPlanScenarioInvestment | TeamCustomFieldValue | TeamType | TeamV2 | ThirdPartySecurityContainer | ThirdPartyUser | TownsquareComment | TownsquareGoal | TownsquareGoalUpdate | TownsquareProject | TownsquareProjectUpdate | TownsquareTag;
|
|
96823
96638
|
export declare type GraphStoreV2SimplifiedJiraSpaceLinksExternalBranchConnection = HasPageInfo & HasTotal & {
|
|
96824
96639
|
__typename?: 'GraphStoreV2SimplifiedJiraSpaceLinksExternalBranchConnection';
|
|
96825
96640
|
edges?: Maybe<Array<Maybe<GraphStoreV2SimplifiedJiraSpaceLinksExternalBranchEdge>>>;
|
|
@@ -104165,6 +103980,16 @@ export declare type JiraAggregatedTimelineFieldAggregatedStartDateViewFieldArgs
|
|
|
104165
103980
|
input?: InputMaybe<JiraFieldAggregationQueryInput>;
|
|
104166
103981
|
viewId?: InputMaybe<Scalars['String']['input']>;
|
|
104167
103982
|
};
|
|
103983
|
+
export declare enum JiraAiAgentConversationState {
|
|
103984
|
+
ArtefactReady = "ARTEFACT_READY",
|
|
103985
|
+
AuthRequired = "AUTH_REQUIRED",
|
|
103986
|
+
Completed = "COMPLETED",
|
|
103987
|
+
Failed = "FAILED",
|
|
103988
|
+
InputRequired = "INPUT_REQUIRED",
|
|
103989
|
+
Rejected = "REJECTED",
|
|
103990
|
+
Unknown = "UNKNOWN",
|
|
103991
|
+
Working = "WORKING"
|
|
103992
|
+
}
|
|
104168
103993
|
export declare type JiraAiAgentSession = {
|
|
104169
103994
|
__typename?: 'JiraAiAgentSession';
|
|
104170
103995
|
agent?: Maybe<User>;
|
|
@@ -104189,6 +104014,11 @@ export declare type JiraAiAgentSessionEnrichmentInput = {
|
|
|
104189
104014
|
conversationId: Scalars['String']['input'];
|
|
104190
104015
|
sortKey?: InputMaybe<Scalars['String']['input']>;
|
|
104191
104016
|
};
|
|
104017
|
+
export declare type JiraAiAgentSessionStatus = {
|
|
104018
|
+
__typename?: 'JiraAiAgentSessionStatus';
|
|
104019
|
+
conversationId: Scalars['ID']['output'];
|
|
104020
|
+
state: JiraAiAgentConversationState;
|
|
104021
|
+
};
|
|
104192
104022
|
export declare type JiraAiEnablementIssueInput = {
|
|
104193
104023
|
issueId?: InputMaybe<Scalars['ID']['input']>;
|
|
104194
104024
|
issueKey?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -105637,6 +105467,7 @@ export declare type JiraBacklogViewVersionFiltersArgs = {
|
|
|
105637
105467
|
};
|
|
105638
105468
|
export declare type JiraBacklogViewBoardConfig = {
|
|
105639
105469
|
__typename?: 'JiraBacklogViewBoardConfig';
|
|
105470
|
+
estimationField?: Maybe<JiraField>;
|
|
105640
105471
|
rankCustomFieldId?: Maybe<Scalars['Long']['output']>;
|
|
105641
105472
|
};
|
|
105642
105473
|
export declare type JiraBacklogViewCardField = {
|
|
@@ -106254,6 +106085,7 @@ export declare type JiraBoardViewSwimlaneConnection = {
|
|
|
106254
106085
|
edges?: Maybe<Array<Maybe<JiraBoardViewSwimlaneEdge>>>;
|
|
106255
106086
|
errors?: Maybe<Array<QueryError>>;
|
|
106256
106087
|
pageInfo?: Maybe<PageInfo>;
|
|
106088
|
+
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
106257
106089
|
};
|
|
106258
106090
|
export declare type JiraBoardViewSwimlaneEdge = {
|
|
106259
106091
|
__typename?: 'JiraBoardViewSwimlaneEdge';
|
|
@@ -109658,6 +109490,14 @@ export declare type JiraDismissInContextConfigPromptPayload = Payload & {
|
|
|
109658
109490
|
errors?: Maybe<Array<MutationError>>;
|
|
109659
109491
|
success: Scalars['Boolean']['output'];
|
|
109660
109492
|
};
|
|
109493
|
+
export declare type JiraDismissProjectGuestUserFlagInput = {
|
|
109494
|
+
projectId: Scalars['ID']['input'];
|
|
109495
|
+
};
|
|
109496
|
+
export declare type JiraDismissProjectGuestUserFlagPayload = Payload & {
|
|
109497
|
+
__typename?: 'JiraDismissProjectGuestUserFlagPayload';
|
|
109498
|
+
errors?: Maybe<Array<MutationError>>;
|
|
109499
|
+
success: Scalars['Boolean']['output'];
|
|
109500
|
+
};
|
|
109661
109501
|
export declare type JiraDragAndDropBoardViewIssueInput = {
|
|
109662
109502
|
destinationCellId?: InputMaybe<Scalars['ID']['input']>;
|
|
109663
109503
|
id: Scalars['ID']['input'];
|
|
@@ -109852,6 +109692,11 @@ export declare type JiraEstimate = {
|
|
|
109852
109692
|
export declare type JiraEstimateInput = {
|
|
109853
109693
|
timeInSeconds: Scalars['Long']['input'];
|
|
109854
109694
|
};
|
|
109695
|
+
export declare type JiraEstimationValue = {
|
|
109696
|
+
__typename?: 'JiraEstimationValue';
|
|
109697
|
+
text?: Maybe<Scalars['String']['output']>;
|
|
109698
|
+
value?: Maybe<Scalars['Float']['output']>;
|
|
109699
|
+
};
|
|
109855
109700
|
export declare enum JiraExperienceContext {
|
|
109856
109701
|
Standard = "STANDARD",
|
|
109857
109702
|
Timeline = "TIMELINE"
|
|
@@ -111134,6 +110979,17 @@ export declare enum JiraFormattingTwoValueOperator {
|
|
|
111134
110979
|
IsBetween = "IS_BETWEEN",
|
|
111135
110980
|
IsNotBetween = "IS_NOT_BETWEEN"
|
|
111136
110981
|
}
|
|
110982
|
+
export declare type JiraFormulaFieldAvailableReferenceFieldConnection = {
|
|
110983
|
+
__typename?: 'JiraFormulaFieldAvailableReferenceFieldConnection';
|
|
110984
|
+
edges?: Maybe<Array<JiraFormulaFieldAvailableReferenceFieldEdge>>;
|
|
110985
|
+
nodes?: Maybe<Array<Maybe<JiraField>>>;
|
|
110986
|
+
pageInfo: PageInfo;
|
|
110987
|
+
};
|
|
110988
|
+
export declare type JiraFormulaFieldAvailableReferenceFieldEdge = {
|
|
110989
|
+
__typename?: 'JiraFormulaFieldAvailableReferenceFieldEdge';
|
|
110990
|
+
cursor: Scalars['String']['output'];
|
|
110991
|
+
node?: Maybe<JiraField>;
|
|
110992
|
+
};
|
|
111137
110993
|
export declare type JiraFormulaFieldConfiguredProjectConnection = {
|
|
111138
110994
|
__typename?: 'JiraFormulaFieldConfiguredProjectConnection';
|
|
111139
110995
|
edges?: Maybe<Array<JiraFormulaFieldConfiguredProjectEdge>>;
|
|
@@ -111873,6 +111729,7 @@ export declare type JiraIssue = HasMercuryProjectFields & JiraListRow & JiraScen
|
|
|
111873
111729
|
approvalActivities?: Maybe<JiraIssueApprovalsConnection>;
|
|
111874
111730
|
archivedBy?: Maybe<User>;
|
|
111875
111731
|
archivedOn?: Maybe<Scalars['DateTime']['output']>;
|
|
111732
|
+
assignedAgentSessionStatus?: Maybe<JiraAiAgentSessionStatus>;
|
|
111876
111733
|
assignee?: Maybe<User>;
|
|
111877
111734
|
assigneeField?: Maybe<JiraSingleSelectUserPickerField>;
|
|
111878
111735
|
atlassianProjectField?: Maybe<JiraTownsquareProjectField>;
|
|
@@ -111913,9 +111770,11 @@ export declare type JiraIssue = HasMercuryProjectFields & JiraListRow & JiraScen
|
|
|
111913
111770
|
devSummary?: Maybe<JiraIssueDevSummary>;
|
|
111914
111771
|
devSummaryCache?: Maybe<JiraIssueDevSummaryResult>;
|
|
111915
111772
|
developmentInformation?: Maybe<IssueDevOpsDevelopmentInformation>;
|
|
111773
|
+
dueDate?: Maybe<Scalars['Date']['output']>;
|
|
111916
111774
|
dueDateField?: Maybe<JiraDatePickerField>;
|
|
111917
111775
|
endDateViewField?: Maybe<JiraIssueField>;
|
|
111918
111776
|
errorRetrievingData?: Maybe<Scalars['Boolean']['output']>;
|
|
111777
|
+
estimationForView?: Maybe<JiraEstimationValue>;
|
|
111919
111778
|
exceededChildIssueLimit?: Maybe<Scalars['Boolean']['output']>;
|
|
111920
111779
|
fieldByIdOrAlias?: Maybe<JiraIssueField>;
|
|
111921
111780
|
fieldSets?: Maybe<JiraIssueFieldSetConnection>;
|
|
@@ -111989,6 +111848,7 @@ export declare type JiraIssue = HasMercuryProjectFields & JiraListRow & JiraScen
|
|
|
111989
111848
|
mercuryTargetDateEnd?: Maybe<Scalars['DateTime']['output']>;
|
|
111990
111849
|
mercuryTargetDateStart?: Maybe<Scalars['DateTime']['output']>;
|
|
111991
111850
|
mercuryTargetDateType?: Maybe<MercuryProjectTargetDateType>;
|
|
111851
|
+
parentIssue?: Maybe<JiraIssue>;
|
|
111992
111852
|
parentIssueField?: Maybe<JiraParentIssueField>;
|
|
111993
111853
|
pinnedComments?: Maybe<JiraPinnedCommentsResponse>;
|
|
111994
111854
|
planScenarioValues?: Maybe<JiraScenarioIssueValues>;
|
|
@@ -112154,6 +112014,9 @@ export declare type JiraIssueDesignsArgs = {
|
|
|
112154
112014
|
export declare type JiraIssueEndDateViewFieldArgs = {
|
|
112155
112015
|
viewId?: InputMaybe<Scalars['ID']['input']>;
|
|
112156
112016
|
};
|
|
112017
|
+
export declare type JiraIssueEstimationForViewArgs = {
|
|
112018
|
+
view: JiraViewQueryInput;
|
|
112019
|
+
};
|
|
112157
112020
|
export declare type JiraIssueFieldByIdOrAliasArgs = {
|
|
112158
112021
|
idOrAlias?: InputMaybe<Scalars['String']['input']>;
|
|
112159
112022
|
ignoreMissingField?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -112829,6 +112692,7 @@ export declare type JiraIssueExportInput = {
|
|
|
112829
112692
|
pagerStart?: InputMaybe<Scalars['Int']['input']>;
|
|
112830
112693
|
scope?: InputMaybe<JiraIssueSearchScope>;
|
|
112831
112694
|
timelineAggregationEnabled?: InputMaybe<Scalars['Boolean']['input']>;
|
|
112695
|
+
timelineCustomExportInput?: InputMaybe<JiraTimelineCustomExportInput>;
|
|
112832
112696
|
};
|
|
112833
112697
|
export declare type JiraIssueExportTask = {
|
|
112834
112698
|
__typename?: 'JiraIssueExportTask';
|
|
@@ -116506,6 +116370,7 @@ export declare type JiraMutation = {
|
|
|
116506
116370
|
discardUnpublishedChangesJiraJourneyConfiguration?: Maybe<JiraUpdateJourneyConfigurationPayload>;
|
|
116507
116371
|
discardUserCalendarViewConfig?: Maybe<JiraUpdateCalendarViewConfigPayload>;
|
|
116508
116372
|
disconnectTownsquareProjectToSpace?: Maybe<JiraDisconnectTownsquareProjectPayload>;
|
|
116373
|
+
dismissProjectGuestUserFlag?: Maybe<JiraDismissProjectGuestUserFlagPayload>;
|
|
116509
116374
|
duplicateJiraJourneyConfiguration?: Maybe<JiraUpdateJourneyConfigurationPayload>;
|
|
116510
116375
|
editCustomField?: Maybe<JiraEditCustomFieldPayload>;
|
|
116511
116376
|
forge: JiraForgeMutation;
|
|
@@ -116915,6 +116780,9 @@ export declare type JiraMutationDiscardUserCalendarViewConfigArgs = {
|
|
|
116915
116780
|
export declare type JiraMutationDisconnectTownsquareProjectToSpaceArgs = {
|
|
116916
116781
|
input: JiraDisconnectTownsquareProjectToSpaceInput;
|
|
116917
116782
|
};
|
|
116783
|
+
export declare type JiraMutationDismissProjectGuestUserFlagArgs = {
|
|
116784
|
+
input: JiraDismissProjectGuestUserFlagInput;
|
|
116785
|
+
};
|
|
116918
116786
|
export declare type JiraMutationDuplicateJiraJourneyConfigurationArgs = {
|
|
116919
116787
|
cloudId: Scalars['ID']['input'];
|
|
116920
116788
|
input: JiraDuplicateJourneyConfigurationInput;
|
|
@@ -119189,6 +119057,7 @@ export declare type JiraProject = Node & {
|
|
|
119189
119057
|
cloudId: Scalars['ID']['output'];
|
|
119190
119058
|
conditionalFormattingRules?: Maybe<JiraFormattingRuleConnection>;
|
|
119191
119059
|
created?: Maybe<Scalars['DateTime']['output']>;
|
|
119060
|
+
csmConversationType?: Maybe<JiraIssueType>;
|
|
119192
119061
|
defaultNavigationItem?: Maybe<JiraNavigationItemResult>;
|
|
119193
119062
|
description?: Maybe<Scalars['String']['output']>;
|
|
119194
119063
|
devOpsEntityRelationships?: Maybe<AriGraphRelationshipConnection>;
|
|
@@ -119249,6 +119118,7 @@ export declare type JiraProject = Node & {
|
|
|
119249
119118
|
schemeAssociatedFields?: Maybe<JiraFieldSchemeAssociatedFieldsConnection>;
|
|
119250
119119
|
selectedDeploymentAppsProperty?: Maybe<Array<JiraDeploymentApp>>;
|
|
119251
119120
|
servicesAvailableToLinkWith?: Maybe<DevOpsServiceConnection>;
|
|
119121
|
+
shouldShowGuestUserFlag?: Maybe<Scalars['Boolean']['output']>;
|
|
119252
119122
|
similarIssues?: Maybe<JiraSimilarIssues>;
|
|
119253
119123
|
softwareBoardCount?: Maybe<Scalars['Long']['output']>;
|
|
119254
119124
|
softwareBoards?: Maybe<BoardScopeConnection>;
|
|
@@ -120251,6 +120121,7 @@ export declare type JiraQuery = {
|
|
|
120251
120121
|
forYou_recommendedActions?: Maybe<JiraRecommendedActionCategoryConnection>;
|
|
120252
120122
|
forge: JiraForgeQuery;
|
|
120253
120123
|
formattingRulesByProject?: Maybe<JiraFormattingRuleConnection>;
|
|
120124
|
+
formulaFieldAvailableReferenceFields?: Maybe<JiraFormulaFieldAvailableReferenceFieldConnection>;
|
|
120254
120125
|
formulaFieldConfiguredProjects?: Maybe<JiraFormulaFieldConfiguredProjectConnection>;
|
|
120255
120126
|
formulaFieldExpressionConfig?: Maybe<JiraFormulaFieldExpressionConfig>;
|
|
120256
120127
|
formulaFieldPreview?: Maybe<JiraFormulaFieldPreview>;
|
|
@@ -120728,6 +120599,13 @@ export declare type JiraQueryFormattingRulesByProjectArgs = {
|
|
|
120728
120599
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
120729
120600
|
projectId: Scalars['ID']['input'];
|
|
120730
120601
|
};
|
|
120602
|
+
export declare type JiraQueryFormulaFieldAvailableReferenceFieldsArgs = {
|
|
120603
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
120604
|
+
cloudId: Scalars['ID']['input'];
|
|
120605
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
120606
|
+
projectKey: Scalars['String']['input'];
|
|
120607
|
+
searchTerm?: InputMaybe<Scalars['String']['input']>;
|
|
120608
|
+
};
|
|
120731
120609
|
export declare type JiraQueryFormulaFieldConfiguredProjectsArgs = {
|
|
120732
120610
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
120733
120611
|
cloudId: Scalars['ID']['input'];
|
|
@@ -126241,6 +126119,14 @@ export declare enum JiraTimeUnit {
|
|
|
126241
126119
|
Minute = "MINUTE",
|
|
126242
126120
|
Week = "WEEK"
|
|
126243
126121
|
}
|
|
126122
|
+
export declare type JiraTimelineCustomExportInput = {
|
|
126123
|
+
childIssuePlanningMode?: InputMaybe<JiraIssueSearchTimelineChildIssuePlanningMode>;
|
|
126124
|
+
projectOrBoardId: JiraTimelineExportProjectOrBoardIdInput;
|
|
126125
|
+
};
|
|
126126
|
+
export declare type JiraTimelineExportProjectOrBoardIdInput = {
|
|
126127
|
+
boardId?: InputMaybe<Scalars['ID']['input']>;
|
|
126128
|
+
projectId?: InputMaybe<Scalars['ID']['input']>;
|
|
126129
|
+
};
|
|
126244
126130
|
export declare type JiraTimelineField = JiraIssueField & JiraIssueFieldConfiguration & JiraListRowField & JiraTimelineVirtualField & Node & {
|
|
126245
126131
|
__typename?: 'JiraTimelineField';
|
|
126246
126132
|
aliasFieldId?: Maybe<Scalars['ID']['output']>;
|
|
@@ -129219,6 +129105,7 @@ export declare type JpdViewsServiceGlobalView2 = JpdViewsServiceViewBase & Node
|
|
|
129219
129105
|
groupBy?: Maybe<JpdViewsServiceField>;
|
|
129220
129106
|
groupValues: Array<JpdViewsServiceNestedId>;
|
|
129221
129107
|
groupsFilter: Array<JpdViewsServiceFilter>;
|
|
129108
|
+
hasDraft?: Maybe<Scalars['Boolean']['output']>;
|
|
129222
129109
|
hidden: Array<JpdViewsServiceField>;
|
|
129223
129110
|
hideEmptyColumns: Scalars['Boolean']['output'];
|
|
129224
129111
|
hideEmptyGroups?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -136899,6 +136786,8 @@ export declare enum MarketplaceStorePersonalisationTargetSurface {
|
|
|
136899
136786
|
}
|
|
136900
136787
|
export declare type MarketplaceStorePersonalisedContextAndLayoutInput = {
|
|
136901
136788
|
cloudId?: InputMaybe<Scalars['ID']['input']>;
|
|
136789
|
+
compatibleWithProduct?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
136790
|
+
complianceBoundary?: InputMaybe<MarketplaceStoreComplianceBoundary>;
|
|
136902
136791
|
objectKey?: InputMaybe<Scalars['String']['input']>;
|
|
136903
136792
|
objectType?: InputMaybe<MarketplaceStoreObjectType>;
|
|
136904
136793
|
orgId?: InputMaybe<Scalars['ID']['input']>;
|
|
@@ -143096,6 +142985,7 @@ export declare type Mutation = {
|
|
|
143096
142985
|
agentStudio_removeDatasetItem?: Maybe<AgentStudioDeleteDatasetItemPayload>;
|
|
143097
142986
|
agentStudio_removeGroupsFromCreatePermission?: Maybe<AgentStudioRemoveGroupsFromCreatePermissionPayload>;
|
|
143098
142987
|
agentStudio_runBatchEvaluationJob?: Maybe<AgentStudioBatchEvalRunJobPayload>;
|
|
142988
|
+
agentStudio_setAccessIdentityMode?: Maybe<AgentStudioSetAccessIdentityModePayload>;
|
|
143099
142989
|
agentStudio_setAgentUsePermissionMode?: Maybe<AgentStudioUpdateUseAgentPermissionModePayload>;
|
|
143100
142990
|
agentStudio_setWidgetByContainerAri?: Maybe<AgentStudioSetWidgetByContainerAriPayload>;
|
|
143101
142991
|
agentStudio_submitBatchEvaluationJob?: Maybe<AgentStudioCreateBatchEvaluationJobPayload>;
|
|
@@ -143201,6 +143091,10 @@ export declare type Mutation = {
|
|
|
143201
143091
|
assetsDM_editObjectTag?: Maybe<AssetsDmObjectTagEditResponse>;
|
|
143202
143092
|
assetsDM_generateAdapterToken?: Maybe<AssetsDmGenerateAdapterTokenResponse>;
|
|
143203
143093
|
assetsDM_importDataDictionary?: Maybe<AssetsDmImportDataDictionaryResponse>;
|
|
143094
|
+
assetsDM_objectAttributeChangeViewOrder?: Maybe<AssetsDmObjectAttributeMutationResponse>;
|
|
143095
|
+
assetsDM_objectAttributeCreate?: Maybe<AssetsDmObjectAttributeMutationResponse>;
|
|
143096
|
+
assetsDM_objectAttributeDelete?: Maybe<AssetsDmObjectAttributeMutationResponse>;
|
|
143097
|
+
assetsDM_objectAttributeUpdate?: Maybe<AssetsDmObjectAttributeMutationResponse>;
|
|
143204
143098
|
assetsDM_resetDataSourceMapping?: Maybe<AssetsDmDataSourceConfigureMappingResponse>;
|
|
143205
143099
|
assetsDM_updateAttributePriority?: Maybe<AssetsDmUpdateAttributePriorityPayload>;
|
|
143206
143100
|
assetsDM_updateAttributePriorityOrder?: Maybe<AssetsDmAttributePriorityResponse>;
|
|
@@ -143209,10 +143103,14 @@ export declare type Mutation = {
|
|
|
143209
143103
|
assetsDM_updateDataSourcePriority?: Maybe<AssetsDmUpdateDataSourcePayload>;
|
|
143210
143104
|
assetsDM_updateDataSourceType?: Maybe<AssetsDmUpdateDataSourceTypeResponse>;
|
|
143211
143105
|
assetsDM_updateDefaultCleansingRule?: Maybe<AssetsDmUpdateDefaultCleansingRuleResponse>;
|
|
143106
|
+
assetsVertical_createItemMappings?: Maybe<AssetsVerticalItemMappingsPayload>;
|
|
143212
143107
|
assetsVertical_createVerticalInstantiation: AssetsVerticalVerticalInstantiationPayload;
|
|
143108
|
+
assetsVertical_createVerticalInstantiationCategory?: Maybe<AssetsVerticalVerticalInstantiationCategoryPayload>;
|
|
143109
|
+
assetsVertical_deleteItemMapping?: Maybe<AssetsVerticalItemMappingPayload>;
|
|
143213
143110
|
assetsVertical_generateInsights?: Maybe<AssetsVerticalGenerateInsightsPayload>;
|
|
143214
143111
|
assetsVertical_instantiateBundleByType: AssetsVerticalAsyncTaskPayload;
|
|
143215
143112
|
assetsVertical_updateVerticalInstantiation: AssetsVerticalVerticalInstantiationPayload;
|
|
143113
|
+
assetsVertical_updateVerticalInstantiationCategory?: Maybe<AssetsVerticalVerticalInstantiationCategoryPayload>;
|
|
143216
143114
|
assets_updateObjectAttributeValue?: Maybe<AssetsAttributeOnObject>;
|
|
143217
143115
|
assignIssueParent?: Maybe<AssignIssueParentOutput>;
|
|
143218
143116
|
attachDanglingComment?: Maybe<Comment>;
|
|
@@ -143496,7 +143394,6 @@ export declare type Mutation = {
|
|
|
143496
143394
|
createPolarisPlayContribution?: Maybe<CreatePolarisPlayContributionPayload>;
|
|
143497
143395
|
createPolarisView?: Maybe<CreatePolarisViewPayload>;
|
|
143498
143396
|
createPolarisViewSet?: Maybe<CreatePolarisViewSetPayload>;
|
|
143499
|
-
createReleaseNote: ContentPlatformReleaseNote;
|
|
143500
143397
|
createSpace?: Maybe<Space>;
|
|
143501
143398
|
createSpaceContentState?: Maybe<ContentState>;
|
|
143502
143399
|
createSprint?: Maybe<CreateSprintResponse>;
|
|
@@ -143969,7 +143866,6 @@ export declare type Mutation = {
|
|
|
143969
143866
|
projects_shareUpdate?: Maybe<TownsquareProjectsShareUpdatePayload>;
|
|
143970
143867
|
publicLinkPagesAdminAction?: Maybe<PublicLinkPagesAdminActionPayload>;
|
|
143971
143868
|
publicLinkSpacesAction?: Maybe<PublicLinkSpacesActionPayload>;
|
|
143972
|
-
publishReleaseNote: ContentPlatformReleaseNote;
|
|
143973
143869
|
radar_clearFocusAreaProposals?: Maybe<RadarMutationResponse>;
|
|
143974
143870
|
radar_createCustomField?: Maybe<RadarMutationResponse>;
|
|
143975
143871
|
radar_createRoleAssignment?: Maybe<RadarMutationResponse>;
|
|
@@ -144216,7 +144112,6 @@ export declare type Mutation = {
|
|
|
144216
144112
|
updatePushNotificationCustomSettings?: Maybe<ConfluencePushNotificationSettings>;
|
|
144217
144113
|
updatePushNotificationGroupSetting?: Maybe<ConfluencePushNotificationSettings>;
|
|
144218
144114
|
updateRelation?: Maybe<UpdateRelationPayload>;
|
|
144219
|
-
updateReleaseNote: ContentPlatformReleaseNote;
|
|
144220
144115
|
updateSiteLookAndFeel?: Maybe<UpdateSiteLookAndFeelPayload>;
|
|
144221
144116
|
updateSitePermission?: Maybe<SitePermission>;
|
|
144222
144117
|
updateSpaceDefaultClassificationLevel?: Maybe<UpdateSpaceDefaultClassificationLevelPayload>;
|
|
@@ -144409,6 +144304,10 @@ export declare type MutationAgentStudio_RunBatchEvaluationJobArgs = {
|
|
|
144409
144304
|
productType: AgentStudioProductType;
|
|
144410
144305
|
projectContainerAri: Scalars['ID']['input'];
|
|
144411
144306
|
};
|
|
144307
|
+
export declare type MutationAgentStudio_SetAccessIdentityModeArgs = {
|
|
144308
|
+
id: Scalars['ID']['input'];
|
|
144309
|
+
mode: AgentStudioAccessIdentityMode;
|
|
144310
|
+
};
|
|
144412
144311
|
export declare type MutationAgentStudio_SetAgentUsePermissionModeArgs = {
|
|
144413
144312
|
id: Scalars['ID']['input'];
|
|
144414
144313
|
input: AgentStudioUpdateAgentUsePermissionSettingsInput;
|
|
@@ -144843,6 +144742,27 @@ export declare type MutationAssetsDm_ImportDataDictionaryArgs = {
|
|
|
144843
144742
|
payload: AssetsDmImportDataDictionaryInput;
|
|
144844
144743
|
workspaceId: Scalars['ID']['input'];
|
|
144845
144744
|
};
|
|
144745
|
+
export declare type MutationAssetsDm_ObjectAttributeChangeViewOrderArgs = {
|
|
144746
|
+
cloudId: Scalars['ID']['input'];
|
|
144747
|
+
objectAttributeId: Scalars['ID']['input'];
|
|
144748
|
+
up: Scalars['Boolean']['input'];
|
|
144749
|
+
workspaceId: Scalars['ID']['input'];
|
|
144750
|
+
};
|
|
144751
|
+
export declare type MutationAssetsDm_ObjectAttributeCreateArgs = {
|
|
144752
|
+
cloudId: Scalars['ID']['input'];
|
|
144753
|
+
payload: AssetsDmObjectAttributeCreateInput;
|
|
144754
|
+
workspaceId: Scalars['ID']['input'];
|
|
144755
|
+
};
|
|
144756
|
+
export declare type MutationAssetsDm_ObjectAttributeDeleteArgs = {
|
|
144757
|
+
cloudId: Scalars['ID']['input'];
|
|
144758
|
+
objectAttributeId: Scalars['ID']['input'];
|
|
144759
|
+
workspaceId: Scalars['ID']['input'];
|
|
144760
|
+
};
|
|
144761
|
+
export declare type MutationAssetsDm_ObjectAttributeUpdateArgs = {
|
|
144762
|
+
cloudId: Scalars['ID']['input'];
|
|
144763
|
+
payload: AssetsDmObjectAttributeUpdateInput;
|
|
144764
|
+
workspaceId: Scalars['ID']['input'];
|
|
144765
|
+
};
|
|
144846
144766
|
export declare type MutationAssetsDm_ResetDataSourceMappingArgs = {
|
|
144847
144767
|
cloudId: Scalars['ID']['input'];
|
|
144848
144768
|
dataSourceId: Scalars['ID']['input'];
|
|
@@ -144883,9 +144803,18 @@ export declare type MutationAssetsDm_UpdateDefaultCleansingRuleArgs = {
|
|
|
144883
144803
|
input: AssetsDmUpdateDefaultCleansingRuleInput;
|
|
144884
144804
|
workspaceId: Scalars['ID']['input'];
|
|
144885
144805
|
};
|
|
144806
|
+
export declare type MutationAssetsVertical_CreateItemMappingsArgs = {
|
|
144807
|
+
input: AssetsVerticalCreateItemMappingsInput;
|
|
144808
|
+
};
|
|
144886
144809
|
export declare type MutationAssetsVertical_CreateVerticalInstantiationArgs = {
|
|
144887
144810
|
input: AssetsVerticalCreateVerticalInstantiationInput;
|
|
144888
144811
|
};
|
|
144812
|
+
export declare type MutationAssetsVertical_CreateVerticalInstantiationCategoryArgs = {
|
|
144813
|
+
input: AssetsVerticalCreateVerticalInstantiationCategoryInput;
|
|
144814
|
+
};
|
|
144815
|
+
export declare type MutationAssetsVertical_DeleteItemMappingArgs = {
|
|
144816
|
+
input: AssetsVerticalDeleteItemMappingInput;
|
|
144817
|
+
};
|
|
144889
144818
|
export declare type MutationAssetsVertical_GenerateInsightsArgs = {
|
|
144890
144819
|
input: AssetsVerticalGenerateInsightsInput;
|
|
144891
144820
|
};
|
|
@@ -144895,6 +144824,9 @@ export declare type MutationAssetsVertical_InstantiateBundleByTypeArgs = {
|
|
|
144895
144824
|
export declare type MutationAssetsVertical_UpdateVerticalInstantiationArgs = {
|
|
144896
144825
|
input: AssetsVerticalUpdateVerticalInstantiationInput;
|
|
144897
144826
|
};
|
|
144827
|
+
export declare type MutationAssetsVertical_UpdateVerticalInstantiationCategoryArgs = {
|
|
144828
|
+
input: AssetsVerticalUpdateVerticalInstantiationCategoryInput;
|
|
144829
|
+
};
|
|
144898
144830
|
export declare type MutationAssets_UpdateObjectAttributeValueArgs = {
|
|
144899
144831
|
cloudId: Scalars['ID']['input'];
|
|
144900
144832
|
id: Scalars['ID']['input'];
|
|
@@ -145874,27 +145806,6 @@ export declare type MutationCreatePolarisViewArgs = {
|
|
|
145874
145806
|
export declare type MutationCreatePolarisViewSetArgs = {
|
|
145875
145807
|
input: CreatePolarisViewSetInput;
|
|
145876
145808
|
};
|
|
145877
|
-
export declare type MutationCreateReleaseNoteArgs = {
|
|
145878
|
-
announcementPlan?: InputMaybe<Scalars['String']['input']>;
|
|
145879
|
-
changeCategory?: InputMaybe<Scalars['String']['input']>;
|
|
145880
|
-
changeStatus?: Scalars['String']['input'];
|
|
145881
|
-
changeType?: Scalars['String']['input'];
|
|
145882
|
-
description: Scalars['JSON']['input'];
|
|
145883
|
-
fdIssueKey?: InputMaybe<Scalars['String']['input']>;
|
|
145884
|
-
fdIssueLink?: InputMaybe<Scalars['String']['input']>;
|
|
145885
|
-
featureRolloutDate?: InputMaybe<Scalars['DateTime']['input']>;
|
|
145886
|
-
featureRolloutEndDate?: InputMaybe<Scalars['DateTime']['input']>;
|
|
145887
|
-
fedRAMPProductionReleaseDate?: InputMaybe<Scalars['DateTime']['input']>;
|
|
145888
|
-
fedRAMPStagingReleaseDate?: InputMaybe<Scalars['DateTime']['input']>;
|
|
145889
|
-
productIds?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
145890
|
-
productNames?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
145891
|
-
releaseNoteFlag?: InputMaybe<Scalars['String']['input']>;
|
|
145892
|
-
releaseNoteFlagEnvironment?: InputMaybe<Scalars['String']['input']>;
|
|
145893
|
-
releaseNoteFlagOffValue?: InputMaybe<Scalars['String']['input']>;
|
|
145894
|
-
releaseNoteFlagProject?: InputMaybe<Scalars['String']['input']>;
|
|
145895
|
-
title?: Scalars['String']['input'];
|
|
145896
|
-
visibleInFedRAMP?: InputMaybe<Scalars['Boolean']['input']>;
|
|
145897
|
-
};
|
|
145898
145809
|
export declare type MutationCreateSpaceArgs = {
|
|
145899
145810
|
input: CreateSpaceInput;
|
|
145900
145811
|
};
|
|
@@ -147430,9 +147341,6 @@ export declare type MutationPublicLinkSpacesActionArgs = {
|
|
|
147430
147341
|
action: PublicLinkAdminAction;
|
|
147431
147342
|
spaceIds: Array<Scalars['ID']['input']>;
|
|
147432
147343
|
};
|
|
147433
|
-
export declare type MutationPublishReleaseNoteArgs = {
|
|
147434
|
-
id: Scalars['String']['input'];
|
|
147435
|
-
};
|
|
147436
147344
|
export declare type MutationRadar_ClearFocusAreaProposalsArgs = {
|
|
147437
147345
|
cloudId: Scalars['ID']['input'];
|
|
147438
147346
|
input: Array<RadarClearFocusAreaProposalInput>;
|
|
@@ -148252,28 +148160,6 @@ export declare type MutationUpdatePushNotificationGroupSettingArgs = {
|
|
|
148252
148160
|
export declare type MutationUpdateRelationArgs = {
|
|
148253
148161
|
input: UpdateRelationInput;
|
|
148254
148162
|
};
|
|
148255
|
-
export declare type MutationUpdateReleaseNoteArgs = {
|
|
148256
|
-
announcementPlan?: InputMaybe<Scalars['String']['input']>;
|
|
148257
|
-
changeCategory?: InputMaybe<Scalars['String']['input']>;
|
|
148258
|
-
changeStatus?: Scalars['String']['input'];
|
|
148259
|
-
changeType?: Scalars['String']['input'];
|
|
148260
|
-
description?: InputMaybe<Scalars['JSON']['input']>;
|
|
148261
|
-
fdIssueKey?: InputMaybe<Scalars['String']['input']>;
|
|
148262
|
-
fdIssueLink?: InputMaybe<Scalars['String']['input']>;
|
|
148263
|
-
featureRolloutDate?: InputMaybe<Scalars['DateTime']['input']>;
|
|
148264
|
-
featureRolloutEndDate?: InputMaybe<Scalars['DateTime']['input']>;
|
|
148265
|
-
fedRAMPProductionReleaseDate?: InputMaybe<Scalars['DateTime']['input']>;
|
|
148266
|
-
fedRAMPStagingReleaseDate?: InputMaybe<Scalars['DateTime']['input']>;
|
|
148267
|
-
id: Scalars['String']['input'];
|
|
148268
|
-
relatedContextIds?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
148269
|
-
relatedContexts?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
148270
|
-
releaseNoteFlag?: InputMaybe<Scalars['String']['input']>;
|
|
148271
|
-
releaseNoteFlagEnvironment?: InputMaybe<Scalars['String']['input']>;
|
|
148272
|
-
releaseNoteFlagOffValue?: InputMaybe<Scalars['String']['input']>;
|
|
148273
|
-
releaseNoteFlagProject?: InputMaybe<Scalars['String']['input']>;
|
|
148274
|
-
title?: Scalars['String']['input'];
|
|
148275
|
-
visibleInFedRAMP?: InputMaybe<Scalars['Boolean']['input']>;
|
|
148276
|
-
};
|
|
148277
148163
|
export declare type MutationUpdateSiteLookAndFeelArgs = {
|
|
148278
148164
|
input: UpdateSiteLookAndFeelInput;
|
|
148279
148165
|
};
|
|
@@ -150159,6 +150045,7 @@ export declare enum PlaybookTemplateIcon {
|
|
|
150159
150045
|
OnboardingIcon = "ONBOARDING_ICON",
|
|
150160
150046
|
RainstormIncidentIcon = "RAINSTORM_INCIDENT_ICON",
|
|
150161
150047
|
RefreshUpdateIcon = "REFRESH_UPDATE_ICON",
|
|
150048
|
+
ScalesIcon = "SCALES_ICON",
|
|
150162
150049
|
StopwatchIcon = "STOPWATCH_ICON"
|
|
150163
150050
|
}
|
|
150164
150051
|
export declare type PokemonEntity = {
|
|
@@ -150714,8 +150601,10 @@ export declare type PolarisViewFilterInput = {
|
|
|
150714
150601
|
};
|
|
150715
150602
|
export declare enum PolarisViewFilterKind {
|
|
150716
150603
|
ConnectionFieldIdentity = "CONNECTION_FIELD_IDENTITY",
|
|
150604
|
+
FieldExcludes = "FIELD_EXCLUDES",
|
|
150717
150605
|
FieldHasValue = "FIELD_HAS_VALUE",
|
|
150718
150606
|
FieldIdentity = "FIELD_IDENTITY",
|
|
150607
|
+
FieldIncludes = "FIELD_INCLUDES",
|
|
150719
150608
|
FieldNumeric = "FIELD_NUMERIC",
|
|
150720
150609
|
Interval = "INTERVAL",
|
|
150721
150610
|
Text = "TEXT"
|
|
@@ -151427,8 +151316,6 @@ export declare type Query = {
|
|
|
151427
151316
|
allIndividualSpaces?: Maybe<SpaceInfoConnection>;
|
|
151428
151317
|
allTemplates?: Maybe<PaginatedTemplateInfoList>;
|
|
151429
151318
|
allUpdatesFeed?: Maybe<PaginatedAllUpdatesFeed>;
|
|
151430
|
-
anchor?: Maybe<ContentPlatformAnchor>;
|
|
151431
|
-
anchors: ContentPlatformAnchorContentSearchConnection;
|
|
151432
151319
|
app?: Maybe<App>;
|
|
151433
151320
|
appActiveTunnels?: Maybe<AppTunnelDefinitions>;
|
|
151434
151321
|
appContainer?: Maybe<AppContainer>;
|
|
@@ -151494,6 +151381,8 @@ export declare type Query = {
|
|
|
151494
151381
|
assetsDM_jobExecutionHistory?: Maybe<AssetsDmJobExecutionsResponse>;
|
|
151495
151382
|
assetsDM_notifications?: Maybe<AssetsDmNotificationResponse>;
|
|
151496
151383
|
assetsDM_objectAttribute?: Maybe<AssetsDmObjectAttributeResponse>;
|
|
151384
|
+
assetsDM_objectAttributeById?: Maybe<AssetsDmObjectAttributeDetail>;
|
|
151385
|
+
assetsDM_objectAttributeList?: Maybe<AssetsDmObjectAttributeListResponse>;
|
|
151497
151386
|
assetsDM_objectClassMetadata?: Maybe<AssetsDmObjectClassMetadata>;
|
|
151498
151387
|
assetsDM_objectClasses?: Maybe<Array<Maybe<AssetsDmObjectClass>>>;
|
|
151499
151388
|
assetsDM_objectDetail?: Maybe<AssetsDmObjectDetail>;
|
|
@@ -151511,16 +151400,20 @@ export declare type Query = {
|
|
|
151511
151400
|
assetsDM_savedSearchesList?: Maybe<AssetsDmSavedSearchesList>;
|
|
151512
151401
|
assetsDM_transformedData?: Maybe<AssetsDmTransformedDataResponse>;
|
|
151513
151402
|
assetsVertical_attributeValues?: Maybe<AssetsVerticalAttributeValuesResult>;
|
|
151514
|
-
assetsVertical_attributesByTypes?: Maybe<AssetsVerticalAttributesResult>;
|
|
151515
151403
|
assetsVertical_bundle: AssetsVerticalBundleResult;
|
|
151516
151404
|
assetsVertical_configuredObjectTypes?: Maybe<AssetsVerticalObjectTypesResult>;
|
|
151517
151405
|
assetsVertical_countByStatus?: Maybe<AssetsVerticalCountByStatusResult>;
|
|
151518
151406
|
assetsVertical_insights?: Maybe<AssetsVerticalInsights>;
|
|
151519
151407
|
assetsVertical_instantiatedBundle?: Maybe<AssetsVerticalBundleInstantiationResult>;
|
|
151408
|
+
assetsVertical_itemMapping?: Maybe<AssetsVerticalItemMappingResult>;
|
|
151409
|
+
assetsVertical_itemMappings?: Maybe<AssetsVerticalItemMappingConnection>;
|
|
151520
151410
|
assetsVertical_objects?: Maybe<AssetsVerticalObjectsResult>;
|
|
151521
151411
|
assetsVertical_verticalInstantiation?: Maybe<AssetsVerticalVerticalInstantiationResult>;
|
|
151412
|
+
assetsVertical_verticalInstantiationCategories?: Maybe<AssetsVerticalVerticalInstantiationCategoryConnection>;
|
|
151413
|
+
assetsVertical_verticalInstantiationCategory?: Maybe<AssetsVerticalVerticalInstantiationCategoryResult>;
|
|
151522
151414
|
assetsVertical_verticalInstantiations: AssetsVerticalVerticalInstantiationConnection;
|
|
151523
151415
|
assets_objectById?: Maybe<AssetsObjectNode>;
|
|
151416
|
+
assets_objectTypeAttributeValuesByID?: Maybe<Array<Maybe<AssetsObjectTypeAttributeValue>>>;
|
|
151524
151417
|
assets_objectTypeAttributesByObjectTypeIds?: Maybe<Array<Maybe<AssetsObjectTypeAttribute>>>;
|
|
151525
151418
|
assets_objectTypeAttributesBySchemaIds?: Maybe<Array<Maybe<AssetsObjectTypeAttribute>>>;
|
|
151526
151419
|
assets_objectTypeAttributesForServices?: Maybe<Array<Maybe<AssetsObjectTypeAttribute>>>;
|
|
@@ -151797,7 +151690,6 @@ export declare type Query = {
|
|
|
151797
151690
|
contentByState?: Maybe<PaginatedContentList>;
|
|
151798
151691
|
contentContributors?: Maybe<ContentContributors>;
|
|
151799
151692
|
contentConverter?: Maybe<ConfluenceBody>;
|
|
151800
|
-
contentFacet: ContentPlatformContentFacetConnection;
|
|
151801
151693
|
contentHistory?: Maybe<PaginatedContentHistoryList>;
|
|
151802
151694
|
contentIdByReferenceId?: Maybe<Scalars['Long']['output']>;
|
|
151803
151695
|
contentLabelSearch?: Maybe<LabelSearchResults>;
|
|
@@ -151809,7 +151701,6 @@ export declare type Query = {
|
|
|
151809
151701
|
contentTemplateLabelsByCriteria?: Maybe<PaginatedLabelList>;
|
|
151810
151702
|
contentVersionHistory?: Maybe<ContentVersionHistoryConnection>;
|
|
151811
151703
|
contentWatchers?: Maybe<PaginatedPersonList>;
|
|
151812
|
-
contextService?: Maybe<SmartsContextServiceQueryApi>;
|
|
151813
151704
|
contributorsLinkedToAtlasProject?: Maybe<GraphStoreCypherQueryConnection>;
|
|
151814
151705
|
contributorsLinkedToConfluencePage?: Maybe<GraphStoreCypherQueryConnection>;
|
|
151815
151706
|
contributorsLinkedToConfluencePageV2?: Maybe<GraphStoreCypherQueryConnection>;
|
|
@@ -151857,8 +151748,6 @@ export declare type Query = {
|
|
|
151857
151748
|
customer360_customer?: Maybe<Customer360Customer>;
|
|
151858
151749
|
customer360_customersById?: Maybe<Array<Maybe<Customer360Customer>>>;
|
|
151859
151750
|
customerService?: Maybe<CustomerServiceQueryApi>;
|
|
151860
|
-
customerStories: ContentPlatformCustomerStorySearchConnection;
|
|
151861
|
-
customerStory?: Maybe<ContentPlatformCustomerStory>;
|
|
151862
151751
|
customerSupport?: Maybe<SupportRequestCatalogQueryApi>;
|
|
151863
151752
|
dataScope?: Maybe<MigrationPlanningServiceQuery>;
|
|
151864
151753
|
dataSecurityPolicy?: Maybe<Confluence_DataSecurityPolicy>;
|
|
@@ -151952,10 +151841,6 @@ export declare type Query = {
|
|
|
151952
151841
|
featureDiscovery?: Maybe<Array<Maybe<DiscoveredFeature>>>;
|
|
151953
151842
|
feed?: Maybe<PaginatedFeed>;
|
|
151954
151843
|
forYouFeed?: Maybe<ForYouPaginatedFeed>;
|
|
151955
|
-
fullHubArticle?: Maybe<ContentPlatformFullHubArticle>;
|
|
151956
|
-
fullHubArticles: ContentPlatformHubArticleSearchConnection;
|
|
151957
|
-
fullTutorial?: Maybe<ContentPlatformFullTutorial>;
|
|
151958
|
-
fullTutorials: ContentPlatformTutorialSearchConnection;
|
|
151959
151844
|
futureContentTypeMobileSupport?: Maybe<FutureContentTypeMobileSupport>;
|
|
151960
151845
|
getAIConfig?: Maybe<AiConfigResponse>;
|
|
151961
151846
|
getCommentReplySuggestions?: Maybe<CommentReplySuggestions>;
|
|
@@ -152046,12 +151931,6 @@ export declare type Query = {
|
|
|
152046
151931
|
intentdetection_getIntent?: Maybe<IntentDetectionResponse>;
|
|
152047
151932
|
internalFrontendResource?: Maybe<FrontendResourceRenderResponse>;
|
|
152048
151933
|
invitationUrls?: Maybe<InvitationUrlsPayload>;
|
|
152049
|
-
ipmFlag?: Maybe<ContentPlatformIpmFlag>;
|
|
152050
|
-
ipmFlags: ContentPlatformIpmFlagSearchConnection;
|
|
152051
|
-
ipmInlineDialog?: Maybe<ContentPlatformIpmInlineDialog>;
|
|
152052
|
-
ipmInlineDialogs: ContentPlatformIpmInlineDialogSearchConnection;
|
|
152053
|
-
ipmMultiStep?: Maybe<ContentPlatformIpmMultiStep>;
|
|
152054
|
-
ipmMultiSteps: ContentPlatformIpmMultiStepSearchConnection;
|
|
152055
151934
|
isDataClassificationEnabled?: Maybe<Scalars['Boolean']['output']>;
|
|
152056
151935
|
isMoveContentStatesSupported?: Maybe<Scalars['Boolean']['output']>;
|
|
152057
151936
|
isNewUser?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -152078,6 +151957,7 @@ export declare type Query = {
|
|
|
152078
151957
|
jira_boardsByIds?: Maybe<Array<Maybe<JiraBoard>>>;
|
|
152079
151958
|
jira_bulkMergeValidation?: Maybe<JiraBulkMergeValidationResult>;
|
|
152080
151959
|
jira_categoryField?: Maybe<JiraJqlField>;
|
|
151960
|
+
jira_colorField?: Maybe<JiraJqlField>;
|
|
152081
151961
|
jira_creatableGlobalCustomFieldTypes?: Maybe<JiraCustomFieldTypeConnection>;
|
|
152082
151962
|
jira_currentUserTimeZoneId?: Maybe<Scalars['String']['output']>;
|
|
152083
151963
|
jira_doesTenantHaveNonNfaProjects?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -152109,6 +151989,7 @@ export declare type Query = {
|
|
|
152109
151989
|
jira_projectLevelSidebarMenuCustomization?: Maybe<JiraProjectLevelSidebarMenuCustomizationResult>;
|
|
152110
151990
|
jira_projectTypesByIds?: Maybe<Array<Maybe<JiraProjectTypeDetails>>>;
|
|
152111
151991
|
jira_projectsSidebarMenu?: Maybe<JiraProjectsSidebarMenu>;
|
|
151992
|
+
jira_sprintField?: Maybe<JiraJqlField>;
|
|
152112
151993
|
jira_userSegRedirectAdvice?: Maybe<JiraUserSegRedirectAdvice>;
|
|
152113
151994
|
jira_versionsForProjectByKey?: Maybe<JiraVersionConnection>;
|
|
152114
151995
|
jira_view?: Maybe<JiraViewResult>;
|
|
@@ -152288,8 +152169,6 @@ export declare type Query = {
|
|
|
152288
152169
|
popularFeed?: Maybe<PaginatedPopularFeed>;
|
|
152289
152170
|
postOffice_getMessages?: Maybe<PostOfficeEnrichedMessagePayload>;
|
|
152290
152171
|
postOffice_placeholder?: Maybe<Scalars['String']['output']>;
|
|
152291
|
-
pricing?: Maybe<ContentPlatformPricing>;
|
|
152292
|
-
pricings: ContentPlatformPricingSearchConnection;
|
|
152293
152172
|
productListing?: Maybe<ProductListingResult>;
|
|
152294
152173
|
productListings: Array<ProductListingResult>;
|
|
152295
152174
|
projects_allWatchedProjectUpdates?: Maybe<TownsquareUpdateConnection>;
|
|
@@ -152345,8 +152224,6 @@ export declare type Query = {
|
|
|
152345
152224
|
reactionsSummary?: Maybe<ReactionsSummaryResponse>;
|
|
152346
152225
|
reactionsSummaryList?: Maybe<Array<Maybe<ReactionsSummaryResponse>>>;
|
|
152347
152226
|
recentlyViewedSpaces?: Maybe<Array<Maybe<Space>>>;
|
|
152348
|
-
releaseNote?: Maybe<ContentPlatformReleaseNote>;
|
|
152349
|
-
releaseNotes: ContentPlatformReleaseNotesConnection;
|
|
152350
152227
|
renderedContentDump?: Maybe<HtmlDocument>;
|
|
152351
152228
|
renderedMacro?: Maybe<RenderedMacro>;
|
|
152352
152229
|
repositoryRelationshipsForDevOpsService?: Maybe<DevOpsServiceAndRepositoryRelationshipConnection>;
|
|
@@ -152506,14 +152383,10 @@ export declare type Query = {
|
|
|
152506
152383
|
teamworkGraph_userTopRecentReferencers?: Maybe<GraphStoreCypherQueryV2Connection>;
|
|
152507
152384
|
teamworkGraph_userViewed?: Maybe<GraphStoreCypherQueryV2Connection>;
|
|
152508
152385
|
teamworkGraph_userWorkMentioned?: Maybe<GraphStoreCypherQueryV2Connection>;
|
|
152509
|
-
template?: Maybe<ContentPlatformTemplate>;
|
|
152510
152386
|
templateBodies?: Maybe<PaginatedTemplateBodyList>;
|
|
152511
152387
|
templateCategories?: Maybe<PaginatedTemplateCategoryList>;
|
|
152512
|
-
templateCollection?: Maybe<ContentPlatformTemplateCollection>;
|
|
152513
|
-
templateCollections: ContentPlatformTemplateCollectionContentSearchConnection;
|
|
152514
152388
|
templateInfo?: Maybe<TemplateInfo>;
|
|
152515
152389
|
templateMediaSession?: Maybe<TemplateMediaSession>;
|
|
152516
|
-
templates: ContentPlatformTemplateContentSearchConnection;
|
|
152517
152390
|
tenant?: Maybe<Tenant>;
|
|
152518
152391
|
tenantContexts?: Maybe<Array<Maybe<TenantContext>>>;
|
|
152519
152392
|
testing?: Maybe<Testing>;
|
|
@@ -152521,8 +152394,6 @@ export declare type Query = {
|
|
|
152521
152394
|
timeseriesPageBlogCount?: Maybe<TimeseriesPageBlogCount>;
|
|
152522
152395
|
timeseriesUniqueUserCount?: Maybe<TimeseriesUniqueUserCount>;
|
|
152523
152396
|
topRelevantUsers?: Maybe<TopRelevantUsers>;
|
|
152524
|
-
topicOverview?: Maybe<ContentPlatformTopicOverview>;
|
|
152525
|
-
topicOverviews: ContentPlatformTopicOverviewContentSearchConnection;
|
|
152526
152397
|
totalSearchCTR?: Maybe<TotalSearchCtr>;
|
|
152527
152398
|
townsquare?: Maybe<TownsquareQueryApi>;
|
|
152528
152399
|
townsquareUnsharded_allWorkspaceSummariesForOrg?: Maybe<TownsquareUnshardedWorkspaceSummaryConnection>;
|
|
@@ -153231,14 +153102,6 @@ export declare type QueryAllUpdatesFeedArgs = {
|
|
|
153231
153102
|
spaceKeys?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
153232
153103
|
users?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
153233
153104
|
};
|
|
153234
|
-
export declare type QueryAnchorArgs = {
|
|
153235
|
-
id: Scalars['String']['input'];
|
|
153236
|
-
locale?: InputMaybe<Scalars['String']['input']>;
|
|
153237
|
-
publishedOnly?: InputMaybe<Scalars['Boolean']['input']>;
|
|
153238
|
-
};
|
|
153239
|
-
export declare type QueryAnchorsArgs = {
|
|
153240
|
-
search: ContentPlatformSearchApIv2Query;
|
|
153241
|
-
};
|
|
153242
153105
|
export declare type QueryAppArgs = {
|
|
153243
153106
|
id: Scalars['ID']['input'];
|
|
153244
153107
|
};
|
|
@@ -153589,6 +153452,20 @@ export declare type QueryAssetsDm_ObjectAttributeArgs = {
|
|
|
153589
153452
|
objectName?: InputMaybe<Scalars['String']['input']>;
|
|
153590
153453
|
workspaceId: Scalars['ID']['input'];
|
|
153591
153454
|
};
|
|
153455
|
+
export declare type QueryAssetsDm_ObjectAttributeByIdArgs = {
|
|
153456
|
+
cloudId: Scalars['ID']['input'];
|
|
153457
|
+
objectAttributeId: Scalars['ID']['input'];
|
|
153458
|
+
workspaceId: Scalars['ID']['input'];
|
|
153459
|
+
};
|
|
153460
|
+
export declare type QueryAssetsDm_ObjectAttributeListArgs = {
|
|
153461
|
+
attributeName?: InputMaybe<Scalars['String']['input']>;
|
|
153462
|
+
cloudId: Scalars['ID']['input'];
|
|
153463
|
+
isMapped?: InputMaybe<Scalars['Boolean']['input']>;
|
|
153464
|
+
isReportSafe?: InputMaybe<Scalars['Boolean']['input']>;
|
|
153465
|
+
objectClassName?: InputMaybe<Scalars['String']['input']>;
|
|
153466
|
+
orders?: InputMaybe<Scalars['String']['input']>;
|
|
153467
|
+
workspaceId: Scalars['ID']['input'];
|
|
153468
|
+
};
|
|
153592
153469
|
export declare type QueryAssetsDm_ObjectClassMetadataArgs = {
|
|
153593
153470
|
cloudId: Scalars['ID']['input'];
|
|
153594
153471
|
objectId: Scalars['ID']['input'];
|
|
@@ -153697,10 +153574,6 @@ export declare type QueryAssetsVertical_AttributeValuesArgs = {
|
|
|
153697
153574
|
cloudId: Scalars['ID']['input'];
|
|
153698
153575
|
input: AssetsVerticalAttributeValuesInput;
|
|
153699
153576
|
};
|
|
153700
|
-
export declare type QueryAssetsVertical_AttributesByTypesArgs = {
|
|
153701
|
-
cloudId: Scalars['ID']['input'];
|
|
153702
|
-
input: AssetsVerticalAttributesInput;
|
|
153703
|
-
};
|
|
153704
153577
|
export declare type QueryAssetsVertical_BundleArgs = {
|
|
153705
153578
|
cloudId: Scalars['ID']['input'];
|
|
153706
153579
|
type: AssetsVerticalBundleType;
|
|
@@ -153721,6 +153594,18 @@ export declare type QueryAssetsVertical_InstantiatedBundleArgs = {
|
|
|
153721
153594
|
cloudId: Scalars['ID']['input'];
|
|
153722
153595
|
type: AssetsVerticalBundleType;
|
|
153723
153596
|
};
|
|
153597
|
+
export declare type QueryAssetsVertical_ItemMappingArgs = {
|
|
153598
|
+
cloudId: Scalars['ID']['input'];
|
|
153599
|
+
id: Scalars['ID']['input'];
|
|
153600
|
+
};
|
|
153601
|
+
export declare type QueryAssetsVertical_ItemMappingsArgs = {
|
|
153602
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
153603
|
+
cloudId: Scalars['ID']['input'];
|
|
153604
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
153605
|
+
itemType?: InputMaybe<AssetsVerticalItemType>;
|
|
153606
|
+
spaceIds?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
153607
|
+
verticalInstantiationCategoryId: Scalars['ID']['input'];
|
|
153608
|
+
};
|
|
153724
153609
|
export declare type QueryAssetsVertical_ObjectsArgs = {
|
|
153725
153610
|
cloudId: Scalars['ID']['input'];
|
|
153726
153611
|
input?: InputMaybe<AssetsVerticalObjectsInput>;
|
|
@@ -153729,6 +153614,18 @@ export declare type QueryAssetsVertical_VerticalInstantiationArgs = {
|
|
|
153729
153614
|
cloudId: Scalars['ID']['input'];
|
|
153730
153615
|
id: Scalars['ID']['input'];
|
|
153731
153616
|
};
|
|
153617
|
+
export declare type QueryAssetsVertical_VerticalInstantiationCategoriesArgs = {
|
|
153618
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
153619
|
+
category?: InputMaybe<AssetsVerticalVerticalInstantiationCategoryType>;
|
|
153620
|
+
cloudId: Scalars['ID']['input'];
|
|
153621
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
153622
|
+
status?: InputMaybe<AssetsVerticalVerticalInstantiationCategoryStatus>;
|
|
153623
|
+
verticalInstantiationId: Scalars['ID']['input'];
|
|
153624
|
+
};
|
|
153625
|
+
export declare type QueryAssetsVertical_VerticalInstantiationCategoryArgs = {
|
|
153626
|
+
cloudId: Scalars['ID']['input'];
|
|
153627
|
+
id: Scalars['ID']['input'];
|
|
153628
|
+
};
|
|
153732
153629
|
export declare type QueryAssetsVertical_VerticalInstantiationsArgs = {
|
|
153733
153630
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
153734
153631
|
cloudId: Scalars['ID']['input'];
|
|
@@ -153738,6 +153635,12 @@ export declare type QueryAssetsVertical_VerticalInstantiationsArgs = {
|
|
|
153738
153635
|
export declare type QueryAssets_ObjectByIdArgs = {
|
|
153739
153636
|
id: Scalars['ID']['input'];
|
|
153740
153637
|
};
|
|
153638
|
+
export declare type QueryAssets_ObjectTypeAttributeValuesByIdArgs = {
|
|
153639
|
+
cloudId: Scalars['ID']['input'];
|
|
153640
|
+
input: AssetsOtaValuesByIdInput;
|
|
153641
|
+
limit?: InputMaybe<Scalars['Int']['input']>;
|
|
153642
|
+
query?: InputMaybe<Scalars['String']['input']>;
|
|
153643
|
+
};
|
|
153741
153644
|
export declare type QueryAssets_ObjectTypeAttributesByObjectTypeIdsArgs = {
|
|
153742
153645
|
cloudId: Scalars['ID']['input'];
|
|
153743
153646
|
limit?: InputMaybe<Scalars['Int']['input']>;
|
|
@@ -154941,14 +154844,6 @@ export declare type QueryContentConverterArgs = {
|
|
|
154941
154844
|
spaceKeyContext?: InputMaybe<Scalars['String']['input']>;
|
|
154942
154845
|
to: Scalars['String']['input'];
|
|
154943
154846
|
};
|
|
154944
|
-
export declare type QueryContentFacetArgs = {
|
|
154945
|
-
after?: InputMaybe<Scalars['String']['input']>;
|
|
154946
|
-
first?: Scalars['Int']['input'];
|
|
154947
|
-
forContentType: Scalars['String']['input'];
|
|
154948
|
-
forFields: Array<Scalars['String']['input']>;
|
|
154949
|
-
withFallback?: Scalars['String']['input'];
|
|
154950
|
-
withLocales?: Array<Scalars['String']['input']>;
|
|
154951
|
-
};
|
|
154952
154847
|
export declare type QueryContentHistoryArgs = {
|
|
154953
154848
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
154954
154849
|
contentId: Scalars['ID']['input'];
|
|
@@ -155237,14 +155132,6 @@ export declare type QueryCustomer360_CustomersByIdArgs = {
|
|
|
155237
155132
|
export declare type QueryCustomerServiceArgs = {
|
|
155238
155133
|
cloudId: Scalars['ID']['input'];
|
|
155239
155134
|
};
|
|
155240
|
-
export declare type QueryCustomerStoriesArgs = {
|
|
155241
|
-
search: ContentPlatformSearchApIv2Query;
|
|
155242
|
-
};
|
|
155243
|
-
export declare type QueryCustomerStoryArgs = {
|
|
155244
|
-
id: Scalars['String']['input'];
|
|
155245
|
-
locale?: InputMaybe<Scalars['String']['input']>;
|
|
155246
|
-
publishedOnly?: InputMaybe<Scalars['Boolean']['input']>;
|
|
155247
|
-
};
|
|
155248
155135
|
export declare type QueryDataSecurityPolicyArgs = {
|
|
155249
155136
|
cloudId?: InputMaybe<Scalars['ID']['input']>;
|
|
155250
155137
|
};
|
|
@@ -155621,22 +155508,6 @@ export declare type QueryForYouFeedArgs = {
|
|
|
155621
155508
|
cloudId?: InputMaybe<Scalars['String']['input']>;
|
|
155622
155509
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
155623
155510
|
};
|
|
155624
|
-
export declare type QueryFullHubArticleArgs = {
|
|
155625
|
-
id: Scalars['String']['input'];
|
|
155626
|
-
locale?: InputMaybe<Scalars['String']['input']>;
|
|
155627
|
-
publishedOnly?: InputMaybe<Scalars['Boolean']['input']>;
|
|
155628
|
-
};
|
|
155629
|
-
export declare type QueryFullHubArticlesArgs = {
|
|
155630
|
-
search: ContentPlatformSearchApIv2Query;
|
|
155631
|
-
};
|
|
155632
|
-
export declare type QueryFullTutorialArgs = {
|
|
155633
|
-
id: Scalars['String']['input'];
|
|
155634
|
-
locale?: InputMaybe<Scalars['String']['input']>;
|
|
155635
|
-
publishedOnly?: InputMaybe<Scalars['Boolean']['input']>;
|
|
155636
|
-
};
|
|
155637
|
-
export declare type QueryFullTutorialsArgs = {
|
|
155638
|
-
search: ContentPlatformSearchApIv2Query;
|
|
155639
|
-
};
|
|
155640
155511
|
export declare type QueryFutureContentTypeMobileSupportArgs = {
|
|
155641
155512
|
contentType: Scalars['String']['input'];
|
|
155642
155513
|
locale: Scalars['String']['input'];
|
|
@@ -155985,30 +155856,6 @@ export declare type QueryIntentdetection_GetIntentArgs = {
|
|
|
155985
155856
|
locale?: InputMaybe<Scalars['String']['input']>;
|
|
155986
155857
|
query?: InputMaybe<Scalars['String']['input']>;
|
|
155987
155858
|
};
|
|
155988
|
-
export declare type QueryIpmFlagArgs = {
|
|
155989
|
-
id: Scalars['String']['input'];
|
|
155990
|
-
locale?: InputMaybe<Scalars['String']['input']>;
|
|
155991
|
-
publishedOnly?: InputMaybe<Scalars['Boolean']['input']>;
|
|
155992
|
-
};
|
|
155993
|
-
export declare type QueryIpmFlagsArgs = {
|
|
155994
|
-
search: ContentPlatformSearchApIv2Query;
|
|
155995
|
-
};
|
|
155996
|
-
export declare type QueryIpmInlineDialogArgs = {
|
|
155997
|
-
id: Scalars['String']['input'];
|
|
155998
|
-
locale?: InputMaybe<Scalars['String']['input']>;
|
|
155999
|
-
publishedOnly?: InputMaybe<Scalars['Boolean']['input']>;
|
|
156000
|
-
};
|
|
156001
|
-
export declare type QueryIpmInlineDialogsArgs = {
|
|
156002
|
-
search: ContentPlatformSearchApIv2Query;
|
|
156003
|
-
};
|
|
156004
|
-
export declare type QueryIpmMultiStepArgs = {
|
|
156005
|
-
id: Scalars['String']['input'];
|
|
156006
|
-
locale?: InputMaybe<Scalars['String']['input']>;
|
|
156007
|
-
publishedOnly?: InputMaybe<Scalars['Boolean']['input']>;
|
|
156008
|
-
};
|
|
156009
|
-
export declare type QueryIpmMultiStepsArgs = {
|
|
156010
|
-
search: ContentPlatformSearchApIv2Query;
|
|
156011
|
-
};
|
|
156012
155859
|
export declare type QueryIsMoveContentStatesSupportedArgs = {
|
|
156013
155860
|
contentId: Scalars['ID']['input'];
|
|
156014
155861
|
spaceKey: Scalars['String']['input'];
|
|
@@ -156081,6 +155928,9 @@ export declare type QueryJira_BulkMergeValidationArgs = {
|
|
|
156081
155928
|
export declare type QueryJira_CategoryFieldArgs = {
|
|
156082
155929
|
cloudId: Scalars['ID']['input'];
|
|
156083
155930
|
};
|
|
155931
|
+
export declare type QueryJira_ColorFieldArgs = {
|
|
155932
|
+
cloudId: Scalars['ID']['input'];
|
|
155933
|
+
};
|
|
156084
155934
|
export declare type QueryJira_CreatableGlobalCustomFieldTypesArgs = {
|
|
156085
155935
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
156086
155936
|
cloudId: Scalars['ID']['input'];
|
|
@@ -156201,6 +156051,9 @@ export declare type QueryJira_ProjectsSidebarMenuArgs = {
|
|
|
156201
156051
|
cloudId: Scalars['ID']['input'];
|
|
156202
156052
|
currentURL?: InputMaybe<Scalars['URL']['input']>;
|
|
156203
156053
|
};
|
|
156054
|
+
export declare type QueryJira_SprintFieldArgs = {
|
|
156055
|
+
cloudId: Scalars['ID']['input'];
|
|
156056
|
+
};
|
|
156204
156057
|
export declare type QueryJira_UserSegRedirectAdviceArgs = {
|
|
156205
156058
|
accountId: Scalars['ID']['input'];
|
|
156206
156059
|
cloudId: Scalars['ID']['input'];
|
|
@@ -156805,14 +156658,6 @@ export declare type QueryPostOffice_GetMessagesArgs = {
|
|
|
156805
156658
|
locale?: InputMaybe<Scalars['String']['input']>;
|
|
156806
156659
|
payload: PostOfficeGetMessagesInput;
|
|
156807
156660
|
};
|
|
156808
|
-
export declare type QueryPricingArgs = {
|
|
156809
|
-
id: Scalars['String']['input'];
|
|
156810
|
-
locale?: InputMaybe<Scalars['String']['input']>;
|
|
156811
|
-
publishedOnly?: InputMaybe<Scalars['Boolean']['input']>;
|
|
156812
|
-
};
|
|
156813
|
-
export declare type QueryPricingsArgs = {
|
|
156814
|
-
search: ContentPlatformSearchApIv2Query;
|
|
156815
|
-
};
|
|
156816
156661
|
export declare type QueryProductListingArgs = {
|
|
156817
156662
|
id: Scalars['ID']['input'];
|
|
156818
156663
|
locales?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
@@ -157056,24 +156901,6 @@ export declare type QueryReactionsSummaryListArgs = {
|
|
|
157056
156901
|
export declare type QueryRecentlyViewedSpacesArgs = {
|
|
157057
156902
|
limit?: InputMaybe<Scalars['Int']['input']>;
|
|
157058
156903
|
};
|
|
157059
|
-
export declare type QueryReleaseNoteArgs = {
|
|
157060
|
-
id: Scalars['String']['input'];
|
|
157061
|
-
locale?: InputMaybe<Scalars['String']['input']>;
|
|
157062
|
-
publishedOnly?: InputMaybe<Scalars['Boolean']['input']>;
|
|
157063
|
-
};
|
|
157064
|
-
export declare type QueryReleaseNotesArgs = {
|
|
157065
|
-
after?: InputMaybe<Scalars['String']['input']>;
|
|
157066
|
-
featureFlagEnvironment?: InputMaybe<Scalars['String']['input']>;
|
|
157067
|
-
featureFlagProject?: InputMaybe<Scalars['String']['input']>;
|
|
157068
|
-
filter?: InputMaybe<ContentPlatformReleaseNoteFilterOptions>;
|
|
157069
|
-
filterByAnnouncementPlan?: InputMaybe<Scalars['Boolean']['input']>;
|
|
157070
|
-
first?: Scalars['Int']['input'];
|
|
157071
|
-
orderBy?: InputMaybe<Scalars['String']['input']>;
|
|
157072
|
-
productFeatureFlags?: InputMaybe<Scalars['JSON']['input']>;
|
|
157073
|
-
publishedOnly?: InputMaybe<Scalars['Boolean']['input']>;
|
|
157074
|
-
search?: InputMaybe<ContentPlatformSearchOptions>;
|
|
157075
|
-
visibleInFedRAMP?: InputMaybe<Scalars['Boolean']['input']>;
|
|
157076
|
-
};
|
|
157077
156904
|
export declare type QueryRenderedContentDumpArgs = {
|
|
157078
156905
|
id: Scalars['ID']['input'];
|
|
157079
156906
|
};
|
|
@@ -157733,11 +157560,6 @@ export declare type QueryTeamworkGraph_UserWorkMentionedArgs = {
|
|
|
157733
157560
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
157734
157561
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
157735
157562
|
};
|
|
157736
|
-
export declare type QueryTemplateArgs = {
|
|
157737
|
-
id: Scalars['String']['input'];
|
|
157738
|
-
locale?: InputMaybe<Scalars['String']['input']>;
|
|
157739
|
-
publishedOnly?: InputMaybe<Scalars['Boolean']['input']>;
|
|
157740
|
-
};
|
|
157741
157563
|
export declare type QueryTemplateBodiesArgs = {
|
|
157742
157564
|
ids?: InputMaybe<Array<InputMaybe<Scalars['String']['input']>>>;
|
|
157743
157565
|
limit?: InputMaybe<Scalars['Int']['input']>;
|
|
@@ -157749,14 +157571,6 @@ export declare type QueryTemplateCategoriesArgs = {
|
|
|
157749
157571
|
spaceKey?: InputMaybe<Scalars['String']['input']>;
|
|
157750
157572
|
start?: InputMaybe<Scalars['Int']['input']>;
|
|
157751
157573
|
};
|
|
157752
|
-
export declare type QueryTemplateCollectionArgs = {
|
|
157753
|
-
id: Scalars['String']['input'];
|
|
157754
|
-
locale?: InputMaybe<Scalars['String']['input']>;
|
|
157755
|
-
publishedOnly?: InputMaybe<Scalars['Boolean']['input']>;
|
|
157756
|
-
};
|
|
157757
|
-
export declare type QueryTemplateCollectionsArgs = {
|
|
157758
|
-
search: ContentPlatformSearchApIv2Query;
|
|
157759
|
-
};
|
|
157760
157574
|
export declare type QueryTemplateInfoArgs = {
|
|
157761
157575
|
id: Scalars['ID']['input'];
|
|
157762
157576
|
};
|
|
@@ -157765,9 +157579,6 @@ export declare type QueryTemplateMediaSessionArgs = {
|
|
|
157765
157579
|
spaceKey?: InputMaybe<Scalars['String']['input']>;
|
|
157766
157580
|
templateIds?: InputMaybe<Array<InputMaybe<Scalars['String']['input']>>>;
|
|
157767
157581
|
};
|
|
157768
|
-
export declare type QueryTemplatesArgs = {
|
|
157769
|
-
search: ContentPlatformSearchApIv2Query;
|
|
157770
|
-
};
|
|
157771
157582
|
export declare type QueryTenantContextsArgs = {
|
|
157772
157583
|
activationIds?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
157773
157584
|
cloudIds?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
@@ -157806,14 +157617,6 @@ export declare type QueryTopRelevantUsersArgs = {
|
|
|
157806
157617
|
startTime?: InputMaybe<Scalars['String']['input']>;
|
|
157807
157618
|
userFilter?: InputMaybe<RelevantUserFilter>;
|
|
157808
157619
|
};
|
|
157809
|
-
export declare type QueryTopicOverviewArgs = {
|
|
157810
|
-
id: Scalars['String']['input'];
|
|
157811
|
-
locale?: InputMaybe<Scalars['String']['input']>;
|
|
157812
|
-
publishedOnly?: InputMaybe<Scalars['Boolean']['input']>;
|
|
157813
|
-
};
|
|
157814
|
-
export declare type QueryTopicOverviewsArgs = {
|
|
157815
|
-
search: ContentPlatformSearchApIv2Query;
|
|
157816
|
-
};
|
|
157817
157620
|
export declare type QueryTotalSearchCtrArgs = {
|
|
157818
157621
|
endTime?: InputMaybe<Scalars['String']['input']>;
|
|
157819
157622
|
startTime: Scalars['String']['input'];
|
|
@@ -160334,6 +160137,7 @@ export declare enum Scope {
|
|
|
160334
160137
|
ReadTownsquareProject = "READ_TOWNSQUARE_PROJECT",
|
|
160335
160138
|
ReadTownsquareWorkspace = "READ_TOWNSQUARE_WORKSPACE",
|
|
160336
160139
|
ReadTrelloTwgCli = "READ_TRELLO_TWG_CLI",
|
|
160140
|
+
ReadUserConfluence = "READ_USER_CONFLUENCE",
|
|
160337
160141
|
ReadViewJpd = "READ_VIEW_JPD",
|
|
160338
160142
|
ResolutionRead = "RESOLUTION_READ",
|
|
160339
160143
|
RovoAtlassianExternal = "ROVO_ATLASSIAN_EXTERNAL",
|
|
@@ -180987,19 +180791,6 @@ export declare type SmartsContext = {
|
|
|
180987
180791
|
tenantId: Scalars['String']['input'];
|
|
180988
180792
|
userId: Scalars['String']['input'];
|
|
180989
180793
|
};
|
|
180990
|
-
export declare type SmartsContextServiceQueryApi = {
|
|
180991
|
-
__typename?: 'SmartsContextServiceQueryApi';
|
|
180992
|
-
quickfindUserRecommendations?: Maybe<Array<Maybe<SmartsContextServiceUserRecommendation>>>;
|
|
180993
|
-
};
|
|
180994
|
-
export declare type SmartsContextServiceQueryApiQuickfindUserRecommendationsArgs = {
|
|
180995
|
-
recommendationsQuery: SmartsRecommendationsQuery;
|
|
180996
|
-
};
|
|
180997
|
-
export declare type SmartsContextServiceUserRecommendation = {
|
|
180998
|
-
__typename?: 'SmartsContextServiceUserRecommendation';
|
|
180999
|
-
id: Scalars['ID']['output'];
|
|
181000
|
-
reason?: Maybe<Scalars['String']['output']>;
|
|
181001
|
-
score?: Maybe<Scalars['Float']['output']>;
|
|
181002
|
-
};
|
|
181003
180794
|
export declare type SmartsFieldContext = {
|
|
181004
180795
|
additionalContextList?: InputMaybe<Array<SmartsKeyValue>>;
|
|
181005
180796
|
containerId?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -181020,6 +180811,7 @@ export declare type SmartsModelRequestParams = {
|
|
|
181020
180811
|
export declare type SmartsQueryApi = {
|
|
181021
180812
|
__typename?: 'SmartsQueryApi';
|
|
181022
180813
|
recommendedContainer?: Maybe<Array<Maybe<SmartsRecommendedContainer>>>;
|
|
180814
|
+
recommendedContainerV2?: Maybe<Array<Maybe<SmartsRecommendedContainerV2>>>;
|
|
181023
180815
|
recommendedField?: Maybe<Array<Maybe<SmartsRecommendedFieldObject>>>;
|
|
181024
180816
|
recommendedObject?: Maybe<Array<Maybe<SmartsRecommendedObject>>>;
|
|
181025
180817
|
recommendedUser?: Maybe<Array<Maybe<SmartsRecommendedUser>>>;
|
|
@@ -181027,6 +180819,9 @@ export declare type SmartsQueryApi = {
|
|
|
181027
180819
|
export declare type SmartsQueryApiRecommendedContainerArgs = {
|
|
181028
180820
|
recommendationsQuery: SmartsRecommendationsQuery;
|
|
181029
180821
|
};
|
|
180822
|
+
export declare type SmartsQueryApiRecommendedContainerV2Args = {
|
|
180823
|
+
recommendationsQuery: SmartsRecommendationsQuery;
|
|
180824
|
+
};
|
|
181030
180825
|
export declare type SmartsQueryApiRecommendedFieldArgs = {
|
|
181031
180826
|
recommendationsQuery: SmartsRecommendationsFieldQuery;
|
|
181032
180827
|
};
|
|
@@ -181056,6 +180851,13 @@ export declare type SmartsRecommendedContainer = {
|
|
|
181056
180851
|
id: Scalars['ID']['output'];
|
|
181057
180852
|
score?: Maybe<Scalars['Float']['output']>;
|
|
181058
180853
|
};
|
|
180854
|
+
export declare type SmartsRecommendedContainerData = ConfluenceSpace | JiraProject;
|
|
180855
|
+
export declare type SmartsRecommendedContainerV2 = {
|
|
180856
|
+
__typename?: 'SmartsRecommendedContainerV2';
|
|
180857
|
+
container?: Maybe<SmartsRecommendedContainerData>;
|
|
180858
|
+
id: Scalars['ID']['output'];
|
|
180859
|
+
score?: Maybe<Scalars['Float']['output']>;
|
|
180860
|
+
};
|
|
181059
180861
|
export declare type SmartsRecommendedFieldObject = {
|
|
181060
180862
|
__typename?: 'SmartsRecommendedFieldObject';
|
|
181061
180863
|
id: Scalars['ID']['output'];
|
|
@@ -190214,7 +190016,7 @@ export declare type TrelloAddAttachmentToCardAction = TrelloAction & TrelloCardA
|
|
|
190214
190016
|
__typename?: 'TrelloAddAttachmentToCardAction';
|
|
190215
190017
|
appCreator?: Maybe<TrelloAppCreator>;
|
|
190216
190018
|
attachment?: Maybe<TrelloAttachment>;
|
|
190217
|
-
board?: Maybe<
|
|
190019
|
+
board?: Maybe<TrelloBaseBoard>;
|
|
190218
190020
|
card?: Maybe<TrelloBaseCard>;
|
|
190219
190021
|
creator?: Maybe<TrelloMember>;
|
|
190220
190022
|
date?: Maybe<Scalars['DateTime']['output']>;
|
|
@@ -190247,7 +190049,7 @@ export declare type TrelloAddBoardStarPayload = Payload & {
|
|
|
190247
190049
|
export declare type TrelloAddChecklistToCardAction = TrelloAction & TrelloCardActionData & {
|
|
190248
190050
|
__typename?: 'TrelloAddChecklistToCardAction';
|
|
190249
190051
|
appCreator?: Maybe<TrelloAppCreator>;
|
|
190250
|
-
board?: Maybe<
|
|
190052
|
+
board?: Maybe<TrelloBaseBoard>;
|
|
190251
190053
|
card?: Maybe<TrelloBaseCard>;
|
|
190252
190054
|
checklist?: Maybe<TrelloChecklist>;
|
|
190253
190055
|
creator?: Maybe<TrelloMember>;
|
|
@@ -190284,7 +190086,7 @@ export declare type TrelloAddMemberInput = {
|
|
|
190284
190086
|
export declare type TrelloAddMemberToCardAction = TrelloAction & TrelloCardActionData & {
|
|
190285
190087
|
__typename?: 'TrelloAddMemberToCardAction';
|
|
190286
190088
|
appCreator?: Maybe<TrelloAppCreator>;
|
|
190287
|
-
board?: Maybe<
|
|
190089
|
+
board?: Maybe<TrelloBaseBoard>;
|
|
190288
190090
|
card?: Maybe<TrelloBaseCard>;
|
|
190289
190091
|
creator?: Maybe<TrelloMember>;
|
|
190290
190092
|
date?: Maybe<Scalars['DateTime']['output']>;
|
|
@@ -191179,7 +190981,7 @@ export declare type TrelloCardActionConnectionUpdated = {
|
|
|
191179
190981
|
edges?: Maybe<Array<TrelloCardActionEdgeUpdated>>;
|
|
191180
190982
|
};
|
|
191181
190983
|
export declare type TrelloCardActionData = {
|
|
191182
|
-
board?: Maybe<
|
|
190984
|
+
board?: Maybe<TrelloBaseBoard>;
|
|
191183
190985
|
card?: Maybe<TrelloBaseCard>;
|
|
191184
190986
|
};
|
|
191185
190987
|
export declare type TrelloCardActionEdge = {
|
|
@@ -191640,7 +191442,7 @@ export declare type TrelloCloseBoardPayload = Payload & {
|
|
|
191640
191442
|
export declare type TrelloCommentCardAction = TrelloAction & TrelloCardActionData & {
|
|
191641
191443
|
__typename?: 'TrelloCommentCardAction';
|
|
191642
191444
|
appCreator?: Maybe<TrelloAppCreator>;
|
|
191643
|
-
board?: Maybe<
|
|
191445
|
+
board?: Maybe<TrelloBaseBoard>;
|
|
191644
191446
|
card?: Maybe<TrelloBaseCard>;
|
|
191645
191447
|
creator?: Maybe<TrelloMember>;
|
|
191646
191448
|
date?: Maybe<Scalars['DateTime']['output']>;
|
|
@@ -191687,7 +191489,7 @@ export declare type TrelloCopiedCardSource = {
|
|
|
191687
191489
|
export declare type TrelloCopyCardAction = TrelloAction & TrelloCardActionData & {
|
|
191688
191490
|
__typename?: 'TrelloCopyCardAction';
|
|
191689
191491
|
appCreator?: Maybe<TrelloAppCreator>;
|
|
191690
|
-
board?: Maybe<
|
|
191492
|
+
board?: Maybe<TrelloBaseBoard>;
|
|
191691
191493
|
card?: Maybe<TrelloBaseCard>;
|
|
191692
191494
|
cardSource?: Maybe<TrelloBaseCard>;
|
|
191693
191495
|
creator?: Maybe<TrelloMember>;
|
|
@@ -191711,7 +191513,7 @@ export declare type TrelloCopyCardActionDisplayEntities = {
|
|
|
191711
191513
|
export declare type TrelloCopyCommentCardAction = TrelloAction & TrelloCardActionData & {
|
|
191712
191514
|
__typename?: 'TrelloCopyCommentCardAction';
|
|
191713
191515
|
appCreator?: Maybe<TrelloAppCreator>;
|
|
191714
|
-
board?: Maybe<
|
|
191516
|
+
board?: Maybe<TrelloBaseBoard>;
|
|
191715
191517
|
card?: Maybe<TrelloBaseCard>;
|
|
191716
191518
|
creator?: Maybe<TrelloMember>;
|
|
191717
191519
|
date?: Maybe<Scalars['DateTime']['output']>;
|
|
@@ -191734,7 +191536,7 @@ export declare type TrelloCopyCommentCardActionDisplayEntities = {
|
|
|
191734
191536
|
export declare type TrelloCopyInboxCardAction = TrelloAction & TrelloCardActionData & {
|
|
191735
191537
|
__typename?: 'TrelloCopyInboxCardAction';
|
|
191736
191538
|
appCreator?: Maybe<TrelloAppCreator>;
|
|
191737
|
-
board?: Maybe<
|
|
191539
|
+
board?: Maybe<TrelloBaseBoard>;
|
|
191738
191540
|
card?: Maybe<TrelloBaseCard>;
|
|
191739
191541
|
cardSource?: Maybe<TrelloBaseCard>;
|
|
191740
191542
|
creator?: Maybe<TrelloMember>;
|
|
@@ -191783,7 +191585,7 @@ export declare type TrelloCreateBoardWithAiPayload = Payload & {
|
|
|
191783
191585
|
export declare type TrelloCreateCardAction = TrelloAction & TrelloCardActionData & {
|
|
191784
191586
|
__typename?: 'TrelloCreateCardAction';
|
|
191785
191587
|
appCreator?: Maybe<TrelloAppCreator>;
|
|
191786
|
-
board?: Maybe<
|
|
191588
|
+
board?: Maybe<TrelloBaseBoard>;
|
|
191787
191589
|
card?: Maybe<TrelloBaseCard>;
|
|
191788
191590
|
creator?: Maybe<TrelloMember>;
|
|
191789
191591
|
date?: Maybe<Scalars['DateTime']['output']>;
|
|
@@ -191804,7 +191606,7 @@ export declare type TrelloCreateCardActionDisplayEntities = {
|
|
|
191804
191606
|
export declare type TrelloCreateCardFromCheckItemAction = TrelloAction & TrelloCardActionData & {
|
|
191805
191607
|
__typename?: 'TrelloCreateCardFromCheckItemAction';
|
|
191806
191608
|
appCreator?: Maybe<TrelloAppCreator>;
|
|
191807
|
-
board?: Maybe<
|
|
191609
|
+
board?: Maybe<TrelloBaseBoard>;
|
|
191808
191610
|
card?: Maybe<TrelloBaseCard>;
|
|
191809
191611
|
cardSource?: Maybe<TrelloBaseCard>;
|
|
191810
191612
|
checklist?: Maybe<TrelloChecklist>;
|
|
@@ -191828,7 +191630,7 @@ export declare type TrelloCreateCardFromCheckItemActionDisplayEntities = {
|
|
|
191828
191630
|
export declare type TrelloCreateCardFromEmailAction = TrelloAction & TrelloCardActionData & {
|
|
191829
191631
|
__typename?: 'TrelloCreateCardFromEmailAction';
|
|
191830
191632
|
appCreator?: Maybe<TrelloAppCreator>;
|
|
191831
|
-
board?: Maybe<
|
|
191633
|
+
board?: Maybe<TrelloBaseBoard>;
|
|
191832
191634
|
card?: Maybe<TrelloBaseCard>;
|
|
191833
191635
|
creationMethod?: Maybe<Scalars['String']['output']>;
|
|
191834
191636
|
creator?: Maybe<TrelloMember>;
|
|
@@ -191880,7 +191682,7 @@ export declare type TrelloCreateCustomFieldPayload = Payload & {
|
|
|
191880
191682
|
export declare type TrelloCreateInboxCardAction = TrelloAction & TrelloCardActionData & {
|
|
191881
191683
|
__typename?: 'TrelloCreateInboxCardAction';
|
|
191882
191684
|
appCreator?: Maybe<TrelloAppCreator>;
|
|
191883
|
-
board?: Maybe<
|
|
191685
|
+
board?: Maybe<TrelloBaseBoard>;
|
|
191884
191686
|
card?: Maybe<TrelloBaseCard>;
|
|
191885
191687
|
creator?: Maybe<TrelloMember>;
|
|
191886
191688
|
date?: Maybe<Scalars['DateTime']['output']>;
|
|
@@ -192088,7 +191890,7 @@ export declare type TrelloDeleteAttachmentFromCardAction = TrelloAction & Trello
|
|
|
192088
191890
|
__typename?: 'TrelloDeleteAttachmentFromCardAction';
|
|
192089
191891
|
appCreator?: Maybe<TrelloAppCreator>;
|
|
192090
191892
|
attachment?: Maybe<TrelloAttachment>;
|
|
192091
|
-
board?: Maybe<
|
|
191893
|
+
board?: Maybe<TrelloBaseBoard>;
|
|
192092
191894
|
card?: Maybe<TrelloBaseCard>;
|
|
192093
191895
|
creator?: Maybe<TrelloMember>;
|
|
192094
191896
|
date?: Maybe<Scalars['DateTime']['output']>;
|
|
@@ -192853,7 +192655,7 @@ export declare type TrelloModelMetadata = {
|
|
|
192853
192655
|
export declare type TrelloMoveCardAction = TrelloAction & TrelloCardActionData & {
|
|
192854
192656
|
__typename?: 'TrelloMoveCardAction';
|
|
192855
192657
|
appCreator?: Maybe<TrelloAppCreator>;
|
|
192856
|
-
board?: Maybe<
|
|
192658
|
+
board?: Maybe<TrelloBaseBoard>;
|
|
192857
192659
|
card?: Maybe<TrelloBaseCard>;
|
|
192858
192660
|
creator?: Maybe<TrelloMember>;
|
|
192859
192661
|
date?: Maybe<Scalars['DateTime']['output']>;
|
|
@@ -192883,7 +192685,7 @@ export declare type TrelloMoveCardBoardEntities = {
|
|
|
192883
192685
|
export declare type TrelloMoveCardToBoardAction = TrelloAction & TrelloCardActionData & {
|
|
192884
192686
|
__typename?: 'TrelloMoveCardToBoardAction';
|
|
192885
192687
|
appCreator?: Maybe<TrelloAppCreator>;
|
|
192886
|
-
board?: Maybe<
|
|
192688
|
+
board?: Maybe<TrelloBaseBoard>;
|
|
192887
192689
|
card?: Maybe<TrelloBaseCard>;
|
|
192888
192690
|
creator?: Maybe<TrelloMember>;
|
|
192889
192691
|
date?: Maybe<Scalars['DateTime']['output']>;
|
|
@@ -192898,7 +192700,7 @@ export declare type TrelloMoveCardToBoardAction = TrelloAction & TrelloCardActio
|
|
|
192898
192700
|
export declare type TrelloMoveInboxCardToBoardAction = TrelloAction & TrelloCardActionData & {
|
|
192899
192701
|
__typename?: 'TrelloMoveInboxCardToBoardAction';
|
|
192900
192702
|
appCreator?: Maybe<TrelloAppCreator>;
|
|
192901
|
-
board?: Maybe<
|
|
192703
|
+
board?: Maybe<TrelloBaseBoard>;
|
|
192902
192704
|
card?: Maybe<TrelloBaseCard>;
|
|
192903
192705
|
creator?: Maybe<TrelloMember>;
|
|
192904
192706
|
date?: Maybe<Scalars['DateTime']['output']>;
|
|
@@ -194350,7 +194152,7 @@ export declare type TrelloRemoveCardFromPlannerCalendarEventPayload = Payload &
|
|
|
194350
194152
|
export declare type TrelloRemoveChecklistFromCardAction = TrelloAction & TrelloCardActionData & {
|
|
194351
194153
|
__typename?: 'TrelloRemoveChecklistFromCardAction';
|
|
194352
194154
|
appCreator?: Maybe<TrelloAppCreator>;
|
|
194353
|
-
board?: Maybe<
|
|
194155
|
+
board?: Maybe<TrelloBaseBoard>;
|
|
194354
194156
|
card?: Maybe<TrelloBaseCard>;
|
|
194355
194157
|
checklist?: Maybe<TrelloChecklist>;
|
|
194356
194158
|
creator?: Maybe<TrelloMember>;
|
|
@@ -194383,7 +194185,7 @@ export declare type TrelloRemoveLabelsFromCardPayload = Payload & {
|
|
|
194383
194185
|
export declare type TrelloRemoveMemberFromCardAction = TrelloAction & TrelloCardActionData & {
|
|
194384
194186
|
__typename?: 'TrelloRemoveMemberFromCardAction';
|
|
194385
194187
|
appCreator?: Maybe<TrelloAppCreator>;
|
|
194386
|
-
board?: Maybe<
|
|
194188
|
+
board?: Maybe<TrelloBaseBoard>;
|
|
194387
194189
|
card?: Maybe<TrelloBaseCard>;
|
|
194388
194190
|
creator?: Maybe<TrelloMember>;
|
|
194389
194191
|
date?: Maybe<Scalars['DateTime']['output']>;
|
|
@@ -194861,7 +194663,7 @@ export declare type TrelloUpdateBoardVotingPermissionsPayload = Payload & {
|
|
|
194861
194663
|
export declare type TrelloUpdateCardClosedAction = TrelloAction & TrelloCardActionData & {
|
|
194862
194664
|
__typename?: 'TrelloUpdateCardClosedAction';
|
|
194863
194665
|
appCreator?: Maybe<TrelloAppCreator>;
|
|
194864
|
-
board?: Maybe<
|
|
194666
|
+
board?: Maybe<TrelloBaseBoard>;
|
|
194865
194667
|
card?: Maybe<TrelloBaseCard>;
|
|
194866
194668
|
creator?: Maybe<TrelloMember>;
|
|
194867
194669
|
date?: Maybe<Scalars['DateTime']['output']>;
|
|
@@ -194881,7 +194683,7 @@ export declare type TrelloUpdateCardClosedActionDisplayEntities = {
|
|
|
194881
194683
|
export declare type TrelloUpdateCardCompleteAction = TrelloAction & TrelloCardActionData & {
|
|
194882
194684
|
__typename?: 'TrelloUpdateCardCompleteAction';
|
|
194883
194685
|
appCreator?: Maybe<TrelloAppCreator>;
|
|
194884
|
-
board?: Maybe<
|
|
194686
|
+
board?: Maybe<TrelloBaseBoard>;
|
|
194885
194687
|
card?: Maybe<TrelloBaseCard>;
|
|
194886
194688
|
creator?: Maybe<TrelloMember>;
|
|
194887
194689
|
date?: Maybe<Scalars['DateTime']['output']>;
|
|
@@ -194920,7 +194722,7 @@ export declare type TrelloUpdateCardDateViewedByCreatorPayload = Payload & {
|
|
|
194920
194722
|
export declare type TrelloUpdateCardDueAction = TrelloAction & TrelloCardActionData & {
|
|
194921
194723
|
__typename?: 'TrelloUpdateCardDueAction';
|
|
194922
194724
|
appCreator?: Maybe<TrelloAppCreator>;
|
|
194923
|
-
board?: Maybe<
|
|
194725
|
+
board?: Maybe<TrelloBaseBoard>;
|
|
194924
194726
|
card?: Maybe<TrelloBaseCard>;
|
|
194925
194727
|
creator?: Maybe<TrelloMember>;
|
|
194926
194728
|
date?: Maybe<Scalars['DateTime']['output']>;
|
|
@@ -194962,7 +194764,7 @@ export declare type TrelloUpdateCardPositionOnPlannerCalendarEventPayload = Payl
|
|
|
194962
194764
|
export declare type TrelloUpdateCardRecurrenceRuleAction = TrelloAction & TrelloCardActionData & {
|
|
194963
194765
|
__typename?: 'TrelloUpdateCardRecurrenceRuleAction';
|
|
194964
194766
|
appCreator?: Maybe<TrelloAppCreator>;
|
|
194965
|
-
board?: Maybe<
|
|
194767
|
+
board?: Maybe<TrelloBaseBoard>;
|
|
194966
194768
|
card?: Maybe<TrelloBaseCard>;
|
|
194967
194769
|
creator?: Maybe<TrelloMember>;
|
|
194968
194770
|
date?: Maybe<Scalars['DateTime']['output']>;
|
|
@@ -194992,7 +194794,7 @@ export declare type TrelloUpdateCardRolePayload = Payload & {
|
|
|
194992
194794
|
export declare type TrelloUpdateCheckItemStateOnCardAction = TrelloAction & TrelloCardActionData & {
|
|
194993
194795
|
__typename?: 'TrelloUpdateCheckItemStateOnCardAction';
|
|
194994
194796
|
appCreator?: Maybe<TrelloAppCreator>;
|
|
194995
|
-
board?: Maybe<
|
|
194797
|
+
board?: Maybe<TrelloBaseBoard>;
|
|
194996
194798
|
card?: Maybe<TrelloBaseCard>;
|
|
194997
194799
|
checkItem?: Maybe<TrelloCheckItem>;
|
|
194998
194800
|
checklist?: Maybe<TrelloChecklist>;
|
|
@@ -195021,7 +194823,7 @@ export declare type TrelloUpdateCustomFieldInput = {
|
|
|
195021
194823
|
export declare type TrelloUpdateCustomFieldItemAction = TrelloAction & TrelloCardActionData & {
|
|
195022
194824
|
__typename?: 'TrelloUpdateCustomFieldItemAction';
|
|
195023
194825
|
appCreator?: Maybe<TrelloAppCreator>;
|
|
195024
|
-
board?: Maybe<
|
|
194826
|
+
board?: Maybe<TrelloBaseBoard>;
|
|
195025
194827
|
card?: Maybe<TrelloBaseCard>;
|
|
195026
194828
|
creator?: Maybe<TrelloMember>;
|
|
195027
194829
|
customField?: Maybe<TrelloCustomField>;
|
|
@@ -195093,6 +194895,7 @@ export declare type TrelloUpdateOAuth2ClientPayload = Payload & {
|
|
|
195093
194895
|
};
|
|
195094
194896
|
export declare type TrelloUpdatePlannerDueDateCardSettingsInput = {
|
|
195095
194897
|
assignedToMe?: InputMaybe<Scalars['Boolean']['input']>;
|
|
194898
|
+
soloBoards?: InputMaybe<Scalars['Boolean']['input']>;
|
|
195096
194899
|
};
|
|
195097
194900
|
export declare type TrelloUpdatePlannerDueDateCardSettingsPayload = Payload & {
|
|
195098
194901
|
__typename?: 'TrelloUpdatePlannerDueDateCardSettingsPayload';
|