@forge/cli-shared 8.19.0-next.2 → 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 +7 -0
- package/out/graphql/graphql-types.d.ts +1448 -1646
- package/out/graphql/graphql-types.d.ts.map +1 -1
- package/out/graphql/graphql-types.js +136 -61
- 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>;
|
|
@@ -38196,6 +37240,7 @@ export declare enum DevAiFlowPipelinesStatus {
|
|
|
38196
37240
|
export declare type DevAiFlowRepository = {
|
|
38197
37241
|
__typename?: 'DevAiFlowRepository';
|
|
38198
37242
|
domain?: Maybe<Scalars['String']['output']>;
|
|
37243
|
+
friendlyRepoUrl?: Maybe<Scalars['String']['output']>;
|
|
38199
37244
|
id?: Maybe<Scalars['ID']['output']>;
|
|
38200
37245
|
name?: Maybe<Scalars['String']['output']>;
|
|
38201
37246
|
reason?: Maybe<Scalars['String']['output']>;
|
|
@@ -46192,6 +45237,7 @@ export declare enum GraphIntegrationDirectoryItemType {
|
|
|
46192
45237
|
Action = "ACTION",
|
|
46193
45238
|
McpServer = "MCP_SERVER",
|
|
46194
45239
|
McpTool = "MCP_TOOL",
|
|
45240
|
+
PlatformSkill = "PLATFORM_SKILL",
|
|
46195
45241
|
Skill = "SKILL"
|
|
46196
45242
|
}
|
|
46197
45243
|
export declare type GraphIntegrationIcon = {
|
|
@@ -49482,18 +48528,34 @@ export declare type GraphStore = {
|
|
|
49482
48528
|
dynamicRelationshipAssetToUserInverse?: Maybe<GraphStoreSimplifiedDynamicRelationshipAssetToUserInverseConnection>;
|
|
49483
48529
|
entityIsRelatedToEntity?: Maybe<GraphStoreSimplifiedEntityIsRelatedToEntityConnection>;
|
|
49484
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>;
|
|
49485
48539
|
externalCustomerOrgHasChildExternalCustomerOrg?: Maybe<GraphStoreSimplifiedExternalCustomerOrgHasChildExternalCustomerOrgConnection>;
|
|
49486
48540
|
externalCustomerOrgHasChildExternalCustomerOrgInverse?: Maybe<GraphStoreSimplifiedExternalCustomerOrgHasChildExternalCustomerOrgInverseConnection>;
|
|
48541
|
+
externalCustomerOrgHasExternalCalendarEvent?: Maybe<GraphStoreSimplifiedExternalCustomerOrgHasExternalCalendarEventConnection>;
|
|
48542
|
+
externalCustomerOrgHasExternalCalendarEventInverse?: Maybe<GraphStoreSimplifiedExternalCustomerOrgHasExternalCalendarEventInverseConnection>;
|
|
49487
48543
|
externalCustomerOrgHasExternalCustomerContact?: Maybe<GraphStoreSimplifiedExternalCustomerOrgHasExternalCustomerContactConnection>;
|
|
49488
48544
|
externalCustomerOrgHasExternalCustomerContactInverse?: Maybe<GraphStoreSimplifiedExternalCustomerOrgHasExternalCustomerContactInverseConnection>;
|
|
49489
48545
|
externalCustomerOrgHasExternalDeal?: Maybe<GraphStoreSimplifiedExternalCustomerOrgHasExternalDealConnection>;
|
|
49490
48546
|
externalCustomerOrgHasExternalDealInverse?: Maybe<GraphStoreSimplifiedExternalCustomerOrgHasExternalDealInverseConnection>;
|
|
48547
|
+
externalCustomerOrgHasExternalWorkItem?: Maybe<GraphStoreSimplifiedExternalCustomerOrgHasExternalWorkItemConnection>;
|
|
48548
|
+
externalCustomerOrgHasExternalWorkItemInverse?: Maybe<GraphStoreSimplifiedExternalCustomerOrgHasExternalWorkItemInverseConnection>;
|
|
49491
48549
|
externalCustomerOrgLinksExternalCustomerOrgCategory?: Maybe<GraphStoreSimplifiedExternalCustomerOrgLinksExternalCustomerOrgCategoryConnection>;
|
|
49492
48550
|
externalCustomerOrgLinksExternalCustomerOrgCategoryInverse?: Maybe<GraphStoreSimplifiedExternalCustomerOrgLinksExternalCustomerOrgCategoryInverseConnection>;
|
|
49493
48551
|
externalCustomerOrgWorksOnJiraWorkItemWorklog?: Maybe<GraphStoreSimplifiedExternalCustomerOrgWorksOnJiraWorkItemWorklogConnection>;
|
|
49494
48552
|
externalCustomerOrgWorksOnJiraWorkItemWorklogInverse?: Maybe<GraphStoreSimplifiedExternalCustomerOrgWorksOnJiraWorkItemWorklogInverseConnection>;
|
|
49495
48553
|
externalDataTableHasExternalSpace?: Maybe<GraphStoreSimplifiedExternalDataTableHasExternalSpaceConnection>;
|
|
49496
48554
|
externalDataTableHasExternalSpaceInverse?: Maybe<GraphStoreSimplifiedExternalDataTableHasExternalSpaceInverseConnection>;
|
|
48555
|
+
externalDealHasExternalCalendarEvent?: Maybe<GraphStoreSimplifiedExternalDealHasExternalCalendarEventConnection>;
|
|
48556
|
+
externalDealHasExternalCalendarEventInverse?: Maybe<GraphStoreSimplifiedExternalDealHasExternalCalendarEventInverseConnection>;
|
|
48557
|
+
externalDealHasExternalWorkItem?: Maybe<GraphStoreSimplifiedExternalDealHasExternalWorkItemConnection>;
|
|
48558
|
+
externalDealHasExternalWorkItemInverse?: Maybe<GraphStoreSimplifiedExternalDealHasExternalWorkItemInverseConnection>;
|
|
49497
48559
|
externalDocumentHasExternalSpace?: Maybe<GraphStoreSimplifiedExternalDocumentHasExternalSpaceConnection>;
|
|
49498
48560
|
externalDocumentHasExternalSpaceInverse?: Maybe<GraphStoreSimplifiedExternalDocumentHasExternalSpaceInverseConnection>;
|
|
49499
48561
|
externalOrgHasExternalPosition?: Maybe<GraphStoreSimplifiedExternalOrgHasExternalPositionConnection>;
|
|
@@ -52051,6 +51113,70 @@ export declare type GraphStoreEntityIsRelatedToEntityInverseArgs = {
|
|
|
52051
51113
|
queryContext?: InputMaybe<Scalars['String']['input']>;
|
|
52052
51114
|
sort?: InputMaybe<GraphStoreEntityIsRelatedToEntitySortInput>;
|
|
52053
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
|
+
};
|
|
52054
51180
|
export declare type GraphStoreExternalCustomerOrgHasChildExternalCustomerOrgArgs = {
|
|
52055
51181
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
52056
51182
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -52067,6 +51193,22 @@ export declare type GraphStoreExternalCustomerOrgHasChildExternalCustomerOrgInve
|
|
|
52067
51193
|
queryContext?: InputMaybe<Scalars['String']['input']>;
|
|
52068
51194
|
sort?: InputMaybe<GraphStoreExternalCustomerOrgHasChildExternalCustomerOrgSortInput>;
|
|
52069
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
|
+
};
|
|
52070
51212
|
export declare type GraphStoreExternalCustomerOrgHasExternalCustomerContactArgs = {
|
|
52071
51213
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
52072
51214
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -52099,6 +51241,22 @@ export declare type GraphStoreExternalCustomerOrgHasExternalDealInverseArgs = {
|
|
|
52099
51241
|
queryContext?: InputMaybe<Scalars['String']['input']>;
|
|
52100
51242
|
sort?: InputMaybe<GraphStoreExternalCustomerOrgHasExternalDealSortInput>;
|
|
52101
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
|
+
};
|
|
52102
51260
|
export declare type GraphStoreExternalCustomerOrgLinksExternalCustomerOrgCategoryArgs = {
|
|
52103
51261
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
52104
51262
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -52147,6 +51305,38 @@ export declare type GraphStoreExternalDataTableHasExternalSpaceInverseArgs = {
|
|
|
52147
51305
|
queryContext?: InputMaybe<Scalars['String']['input']>;
|
|
52148
51306
|
sort?: InputMaybe<GraphStoreExternalDataTableHasExternalSpaceSortInput>;
|
|
52149
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
|
+
};
|
|
52150
51340
|
export declare type GraphStoreExternalDocumentHasExternalSpaceArgs = {
|
|
52151
51341
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
52152
51342
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -58997,7 +58187,7 @@ export declare type GraphStoreBatchContentReferencedEntityEndNode = {
|
|
|
58997
58187
|
data?: Maybe<GraphStoreBatchContentReferencedEntityEndUnion>;
|
|
58998
58188
|
id: Scalars['ID']['output'];
|
|
58999
58189
|
};
|
|
59000
|
-
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;
|
|
59001
58191
|
export declare type GraphStoreBatchContentReferencedEntityInnerConnection = {
|
|
59002
58192
|
__typename?: 'GraphStoreBatchContentReferencedEntityInnerConnection';
|
|
59003
58193
|
edges: Array<Maybe<GraphStoreBatchContentReferencedEntityInnerEdge>>;
|
|
@@ -59022,7 +58212,7 @@ export declare type GraphStoreBatchContentReferencedEntityStartNode = {
|
|
|
59022
58212
|
data?: Maybe<GraphStoreBatchContentReferencedEntityStartUnion>;
|
|
59023
58213
|
id: Scalars['ID']['output'];
|
|
59024
58214
|
};
|
|
59025
|
-
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;
|
|
59026
58216
|
export declare type GraphStoreBatchFocusAreaAssociatedToProjectConnection = HasPageInfo & {
|
|
59027
58217
|
__typename?: 'GraphStoreBatchFocusAreaAssociatedToProjectConnection';
|
|
59028
58218
|
edges: Array<Maybe<GraphStoreBatchFocusAreaAssociatedToProjectEdge>>;
|
|
@@ -59897,7 +59087,7 @@ export declare type GraphStoreBatchProjectLinksToEntityEndNode = {
|
|
|
59897
59087
|
data?: Maybe<GraphStoreBatchProjectLinksToEntityEndUnion>;
|
|
59898
59088
|
id: Scalars['ID']['output'];
|
|
59899
59089
|
};
|
|
59900
|
-
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;
|
|
59901
59091
|
export declare type GraphStoreBatchProjectLinksToEntityInnerConnection = {
|
|
59902
59092
|
__typename?: 'GraphStoreBatchProjectLinksToEntityInnerConnection';
|
|
59903
59093
|
edges: Array<Maybe<GraphStoreBatchProjectLinksToEntityInnerEdge>>;
|
|
@@ -61055,7 +60245,7 @@ export declare type GraphStoreCypherQueryRowItemNode = {
|
|
|
61055
60245
|
data?: Maybe<GraphStoreCypherQueryRowItemNodeNodeUnion>;
|
|
61056
60246
|
id: Scalars['ID']['output'];
|
|
61057
60247
|
};
|
|
61058
|
-
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;
|
|
61059
60249
|
export declare type GraphStoreCypherQueryStringListObject = {
|
|
61060
60250
|
__typename?: 'GraphStoreCypherQueryStringListObject';
|
|
61061
60251
|
values: Array<Scalars['String']['output']>;
|
|
@@ -61077,13 +60267,13 @@ export declare type GraphStoreCypherQueryV2AriNode = {
|
|
|
61077
60267
|
data?: Maybe<GraphStoreCypherQueryV2AriNodeUnion>;
|
|
61078
60268
|
id: Scalars['ID']['output'];
|
|
61079
60269
|
};
|
|
61080
|
-
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;
|
|
61081
60271
|
export declare type GraphStoreCypherQueryV2BatchAriNode = {
|
|
61082
60272
|
__typename?: 'GraphStoreCypherQueryV2BatchAriNode';
|
|
61083
60273
|
data?: Maybe<GraphStoreCypherQueryV2BatchAriNodeUnion>;
|
|
61084
60274
|
id: Scalars['ID']['output'];
|
|
61085
60275
|
};
|
|
61086
|
-
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;
|
|
61087
60277
|
export declare type GraphStoreCypherQueryV2BatchBooleanObject = {
|
|
61088
60278
|
__typename?: 'GraphStoreCypherQueryV2BatchBooleanObject';
|
|
61089
60279
|
value: Scalars['Boolean']['output'];
|
|
@@ -61228,7 +60418,7 @@ export declare enum GraphStoreCypherQueryV2VersionEnum {
|
|
|
61228
60418
|
V2 = "V2",
|
|
61229
60419
|
V3 = "V3"
|
|
61230
60420
|
}
|
|
61231
|
-
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;
|
|
61232
60422
|
export declare type GraphStoreCypherQueryValueNode = {
|
|
61233
60423
|
__typename?: 'GraphStoreCypherQueryValueNode';
|
|
61234
60424
|
data?: Maybe<GraphStoreCypherQueryValueItemUnion>;
|
|
@@ -61707,15 +60897,33 @@ export declare type GraphStoreDynamicRelationshipAssetToUserSortInput = {
|
|
|
61707
60897
|
export declare type GraphStoreEntityIsRelatedToEntitySortInput = {
|
|
61708
60898
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
61709
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
|
+
};
|
|
61710
60912
|
export declare type GraphStoreExternalCustomerOrgHasChildExternalCustomerOrgSortInput = {
|
|
61711
60913
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
61712
60914
|
};
|
|
60915
|
+
export declare type GraphStoreExternalCustomerOrgHasExternalCalendarEventSortInput = {
|
|
60916
|
+
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
60917
|
+
};
|
|
61713
60918
|
export declare type GraphStoreExternalCustomerOrgHasExternalCustomerContactSortInput = {
|
|
61714
60919
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
61715
60920
|
};
|
|
61716
60921
|
export declare type GraphStoreExternalCustomerOrgHasExternalDealSortInput = {
|
|
61717
60922
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
61718
60923
|
};
|
|
60924
|
+
export declare type GraphStoreExternalCustomerOrgHasExternalWorkItemSortInput = {
|
|
60925
|
+
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
60926
|
+
};
|
|
61719
60927
|
export declare type GraphStoreExternalCustomerOrgLinksExternalCustomerOrgCategorySortInput = {
|
|
61720
60928
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
61721
60929
|
};
|
|
@@ -61725,6 +60933,12 @@ export declare type GraphStoreExternalCustomerOrgWorksOnJiraWorkItemWorklogSortI
|
|
|
61725
60933
|
export declare type GraphStoreExternalDataTableHasExternalSpaceSortInput = {
|
|
61726
60934
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
61727
60935
|
};
|
|
60936
|
+
export declare type GraphStoreExternalDealHasExternalCalendarEventSortInput = {
|
|
60937
|
+
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
60938
|
+
};
|
|
60939
|
+
export declare type GraphStoreExternalDealHasExternalWorkItemSortInput = {
|
|
60940
|
+
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
60941
|
+
};
|
|
61728
60942
|
export declare type GraphStoreExternalDocumentHasExternalSpaceSortInput = {
|
|
61729
60943
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
61730
60944
|
};
|
|
@@ -62065,7 +61279,7 @@ export declare type GraphStoreFullContentReferencedEntityEndNode = {
|
|
|
62065
61279
|
data?: Maybe<GraphStoreFullContentReferencedEntityEndUnion>;
|
|
62066
61280
|
id: Scalars['ID']['output'];
|
|
62067
61281
|
};
|
|
62068
|
-
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;
|
|
62069
61283
|
export declare type GraphStoreFullContentReferencedEntityNode = Node & {
|
|
62070
61284
|
__typename?: 'GraphStoreFullContentReferencedEntityNode';
|
|
62071
61285
|
createdAt: Scalars['DateTime']['output'];
|
|
@@ -62079,7 +61293,7 @@ export declare type GraphStoreFullContentReferencedEntityStartNode = {
|
|
|
62079
61293
|
data?: Maybe<GraphStoreFullContentReferencedEntityStartUnion>;
|
|
62080
61294
|
id: Scalars['ID']['output'];
|
|
62081
61295
|
};
|
|
62082
|
-
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;
|
|
62083
61297
|
export declare type GraphStoreFullIncidentAssociatedPostIncidentReviewConnection = HasPageInfo & HasTotal & {
|
|
62084
61298
|
__typename?: 'GraphStoreFullIncidentAssociatedPostIncidentReviewConnection';
|
|
62085
61299
|
edges: Array<Maybe<GraphStoreFullIncidentAssociatedPostIncidentReviewEdge>>;
|
|
@@ -68872,8 +68086,8 @@ export declare type GraphStoreSimplifiedContentReferencedEntityInverseEdge = {
|
|
|
68872
68086
|
lastUpdated: Scalars['DateTime']['output'];
|
|
68873
68087
|
node?: Maybe<GraphStoreSimplifiedContentReferencedEntityInverseUnion>;
|
|
68874
68088
|
};
|
|
68875
|
-
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;
|
|
68876
|
-
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;
|
|
68877
68091
|
export declare type GraphStoreSimplifiedConversationHasMessageConnection = HasPageInfo & {
|
|
68878
68092
|
__typename?: 'GraphStoreSimplifiedConversationHasMessageConnection';
|
|
68879
68093
|
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedConversationHasMessageEdge>>>;
|
|
@@ -69294,6 +68508,118 @@ export declare type GraphStoreSimplifiedEntityIsRelatedToEntityInverseEdge = {
|
|
|
69294
68508
|
};
|
|
69295
68509
|
export declare type GraphStoreSimplifiedEntityIsRelatedToEntityInverseUnion = ConfluenceBlogPost | ConfluencePage;
|
|
69296
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;
|
|
69297
68623
|
export declare type GraphStoreSimplifiedExternalCustomerOrgHasChildExternalCustomerOrgConnection = HasPageInfo & {
|
|
69298
68624
|
__typename?: 'GraphStoreSimplifiedExternalCustomerOrgHasChildExternalCustomerOrgConnection';
|
|
69299
68625
|
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedExternalCustomerOrgHasChildExternalCustomerOrgEdge>>>;
|
|
@@ -69322,6 +68648,34 @@ export declare type GraphStoreSimplifiedExternalCustomerOrgHasChildExternalCusto
|
|
|
69322
68648
|
};
|
|
69323
68649
|
export declare type GraphStoreSimplifiedExternalCustomerOrgHasChildExternalCustomerOrgInverseUnion = ExternalCustomerOrg;
|
|
69324
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;
|
|
69325
68679
|
export declare type GraphStoreSimplifiedExternalCustomerOrgHasExternalCustomerContactConnection = HasPageInfo & {
|
|
69326
68680
|
__typename?: 'GraphStoreSimplifiedExternalCustomerOrgHasExternalCustomerContactConnection';
|
|
69327
68681
|
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedExternalCustomerOrgHasExternalCustomerContactEdge>>>;
|
|
@@ -69378,6 +68732,34 @@ export declare type GraphStoreSimplifiedExternalCustomerOrgHasExternalDealInvers
|
|
|
69378
68732
|
};
|
|
69379
68733
|
export declare type GraphStoreSimplifiedExternalCustomerOrgHasExternalDealInverseUnion = ExternalCustomerOrg;
|
|
69380
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;
|
|
69381
68763
|
export declare type GraphStoreSimplifiedExternalCustomerOrgLinksExternalCustomerOrgCategoryConnection = HasPageInfo & {
|
|
69382
68764
|
__typename?: 'GraphStoreSimplifiedExternalCustomerOrgLinksExternalCustomerOrgCategoryConnection';
|
|
69383
68765
|
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedExternalCustomerOrgLinksExternalCustomerOrgCategoryEdge>>>;
|
|
@@ -69462,6 +68844,62 @@ export declare type GraphStoreSimplifiedExternalDataTableHasExternalSpaceInverse
|
|
|
69462
68844
|
};
|
|
69463
68845
|
export declare type GraphStoreSimplifiedExternalDataTableHasExternalSpaceInverseUnion = ExternalDataTable;
|
|
69464
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;
|
|
69465
68903
|
export declare type GraphStoreSimplifiedExternalDocumentHasExternalSpaceConnection = HasPageInfo & {
|
|
69466
68904
|
__typename?: 'GraphStoreSimplifiedExternalDocumentHasExternalSpaceConnection';
|
|
69467
68905
|
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedExternalDocumentHasExternalSpaceEdge>>>;
|
|
@@ -72901,7 +72339,7 @@ export declare type GraphStoreSimplifiedProjectLinksToEntityInverseEdge = {
|
|
|
72901
72339
|
node?: Maybe<GraphStoreSimplifiedProjectLinksToEntityInverseUnion>;
|
|
72902
72340
|
};
|
|
72903
72341
|
export declare type GraphStoreSimplifiedProjectLinksToEntityInverseUnion = TownsquareProject;
|
|
72904
|
-
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;
|
|
72905
72343
|
export declare type GraphStoreSimplifiedPullRequestLinksToServiceConnection = HasPageInfo & {
|
|
72906
72344
|
__typename?: 'GraphStoreSimplifiedPullRequestLinksToServiceConnection';
|
|
72907
72345
|
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedPullRequestLinksToServiceEdge>>>;
|
|
@@ -79422,24 +78860,40 @@ export declare type GraphStoreV2 = {
|
|
|
79422
78860
|
cypherQueryV2: GraphStoreV2CypherQueryV2Connection;
|
|
79423
78861
|
entityLinksEntity?: Maybe<GraphStoreV2SimplifiedEntityLinksEntityConnection>;
|
|
79424
78862
|
entityLinksEntityInverse?: Maybe<GraphStoreV2SimplifiedEntityLinksEntityInverseConnection>;
|
|
78863
|
+
externalCalendarEventHasChildExternalCalendarEvent?: Maybe<GraphStoreV2SimplifiedExternalCalendarEventHasChildExternalCalendarEventConnection>;
|
|
78864
|
+
externalCalendarEventHasChildExternalCalendarEventInverse?: Maybe<GraphStoreV2SimplifiedExternalCalendarEventHasChildExternalCalendarEventInverseConnection>;
|
|
78865
|
+
externalCalendarEventLinksExternalVideo?: Maybe<GraphStoreV2SimplifiedExternalCalendarEventLinksExternalVideoConnection>;
|
|
78866
|
+
externalCalendarEventLinksExternalVideoInverse?: Maybe<GraphStoreV2SimplifiedExternalCalendarEventLinksExternalVideoInverseConnection>;
|
|
79425
78867
|
externalCalendarHasLinkedExternalDocument?: Maybe<GraphStoreV2SimplifiedExternalCalendarHasLinkedExternalDocumentConnection>;
|
|
79426
78868
|
externalCalendarHasLinkedExternalDocumentInverse?: Maybe<GraphStoreV2SimplifiedExternalCalendarHasLinkedExternalDocumentInverseConnection>;
|
|
79427
78869
|
externalConversationHasExternalMessage?: Maybe<GraphStoreV2SimplifiedExternalConversationHasExternalMessageConnection>;
|
|
79428
78870
|
externalConversationHasExternalMessageInverse?: Maybe<GraphStoreV2SimplifiedExternalConversationHasExternalMessageInverseConnection>;
|
|
79429
78871
|
externalConversationMentionsJiraWorkItem?: Maybe<GraphStoreV2SimplifiedExternalConversationMentionsJiraWorkItemConnection>;
|
|
79430
78872
|
externalConversationMentionsJiraWorkItemInverse?: Maybe<GraphStoreV2SimplifiedExternalConversationMentionsJiraWorkItemInverseConnection>;
|
|
78873
|
+
externalCustomerContactHasExternalCalendarEvent?: Maybe<GraphStoreV2SimplifiedExternalCustomerContactHasExternalCalendarEventConnection>;
|
|
78874
|
+
externalCustomerContactHasExternalCalendarEventInverse?: Maybe<GraphStoreV2SimplifiedExternalCustomerContactHasExternalCalendarEventInverseConnection>;
|
|
78875
|
+
externalCustomerContactHasExternalWorkItem?: Maybe<GraphStoreV2SimplifiedExternalCustomerContactHasExternalWorkItemConnection>;
|
|
78876
|
+
externalCustomerContactHasExternalWorkItemInverse?: Maybe<GraphStoreV2SimplifiedExternalCustomerContactHasExternalWorkItemInverseConnection>;
|
|
79431
78877
|
externalCustomerOrgHasChildExternalCustomerOrg?: Maybe<GraphStoreV2SimplifiedExternalCustomerOrgHasChildExternalCustomerOrgConnection>;
|
|
79432
78878
|
externalCustomerOrgHasChildExternalCustomerOrgInverse?: Maybe<GraphStoreV2SimplifiedExternalCustomerOrgHasChildExternalCustomerOrgInverseConnection>;
|
|
78879
|
+
externalCustomerOrgHasExternalCalendarEvent?: Maybe<GraphStoreV2SimplifiedExternalCustomerOrgHasExternalCalendarEventConnection>;
|
|
78880
|
+
externalCustomerOrgHasExternalCalendarEventInverse?: Maybe<GraphStoreV2SimplifiedExternalCustomerOrgHasExternalCalendarEventInverseConnection>;
|
|
79433
78881
|
externalCustomerOrgHasExternalCustomerContact?: Maybe<GraphStoreV2SimplifiedExternalCustomerOrgHasExternalCustomerContactConnection>;
|
|
79434
78882
|
externalCustomerOrgHasExternalCustomerContactInverse?: Maybe<GraphStoreV2SimplifiedExternalCustomerOrgHasExternalCustomerContactInverseConnection>;
|
|
79435
78883
|
externalCustomerOrgHasExternalDeal?: Maybe<GraphStoreV2SimplifiedExternalCustomerOrgHasExternalDealConnection>;
|
|
79436
78884
|
externalCustomerOrgHasExternalDealInverse?: Maybe<GraphStoreV2SimplifiedExternalCustomerOrgHasExternalDealInverseConnection>;
|
|
78885
|
+
externalCustomerOrgHasExternalWorkItem?: Maybe<GraphStoreV2SimplifiedExternalCustomerOrgHasExternalWorkItemConnection>;
|
|
78886
|
+
externalCustomerOrgHasExternalWorkItemInverse?: Maybe<GraphStoreV2SimplifiedExternalCustomerOrgHasExternalWorkItemInverseConnection>;
|
|
79437
78887
|
externalCustomerOrgLinksExternalCustomerOrgCategory?: Maybe<GraphStoreV2SimplifiedExternalCustomerOrgLinksExternalCustomerOrgCategoryConnection>;
|
|
79438
78888
|
externalCustomerOrgLinksExternalCustomerOrgCategoryInverse?: Maybe<GraphStoreV2SimplifiedExternalCustomerOrgLinksExternalCustomerOrgCategoryInverseConnection>;
|
|
79439
78889
|
externalCustomerOrgWorksOnJiraWorkItemWorklog?: Maybe<GraphStoreV2SimplifiedExternalCustomerOrgWorksOnJiraWorkItemWorklogConnection>;
|
|
79440
78890
|
externalCustomerOrgWorksOnJiraWorkItemWorklogInverse?: Maybe<GraphStoreV2SimplifiedExternalCustomerOrgWorksOnJiraWorkItemWorklogInverseConnection>;
|
|
79441
78891
|
externalDataTableHasExternalSpace?: Maybe<GraphStoreV2SimplifiedExternalDataTableHasExternalSpaceConnection>;
|
|
79442
78892
|
externalDataTableHasExternalSpaceInverse?: Maybe<GraphStoreV2SimplifiedExternalDataTableHasExternalSpaceInverseConnection>;
|
|
78893
|
+
externalDealHasExternalCalendarEvent?: Maybe<GraphStoreV2SimplifiedExternalDealHasExternalCalendarEventConnection>;
|
|
78894
|
+
externalDealHasExternalCalendarEventInverse?: Maybe<GraphStoreV2SimplifiedExternalDealHasExternalCalendarEventInverseConnection>;
|
|
78895
|
+
externalDealHasExternalWorkItem?: Maybe<GraphStoreV2SimplifiedExternalDealHasExternalWorkItemConnection>;
|
|
78896
|
+
externalDealHasExternalWorkItemInverse?: Maybe<GraphStoreV2SimplifiedExternalDealHasExternalWorkItemInverseConnection>;
|
|
79443
78897
|
externalDeploymentHasExternalCommit?: Maybe<GraphStoreV2SimplifiedExternalDeploymentHasExternalCommitConnection>;
|
|
79444
78898
|
externalDeploymentHasExternalCommitInverse?: Maybe<GraphStoreV2SimplifiedExternalDeploymentHasExternalCommitInverseConnection>;
|
|
79445
78899
|
externalDeploymentLinksExternalDeployment?: Maybe<GraphStoreV2SimplifiedExternalDeploymentLinksExternalDeploymentConnection>;
|
|
@@ -82014,6 +81468,34 @@ export declare type GraphStoreV2EntityLinksEntityInverseArgs = {
|
|
|
82014
81468
|
id: Scalars['ID']['input'];
|
|
82015
81469
|
sort?: InputMaybe<GraphStoreV2EntityLinksEntitySortInput>;
|
|
82016
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
|
+
};
|
|
82017
81499
|
export declare type GraphStoreV2ExternalCalendarHasLinkedExternalDocumentArgs = {
|
|
82018
81500
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
82019
81501
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -82056,6 +81538,34 @@ export declare type GraphStoreV2ExternalConversationMentionsJiraWorkItemInverseA
|
|
|
82056
81538
|
id: Scalars['ID']['input'];
|
|
82057
81539
|
sort?: InputMaybe<GraphStoreV2ExternalConversationMentionsJiraWorkItemSortInput>;
|
|
82058
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
|
+
};
|
|
82059
81569
|
export declare type GraphStoreV2ExternalCustomerOrgHasChildExternalCustomerOrgArgs = {
|
|
82060
81570
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
82061
81571
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -82070,6 +81580,20 @@ export declare type GraphStoreV2ExternalCustomerOrgHasChildExternalCustomerOrgIn
|
|
|
82070
81580
|
id: Scalars['ID']['input'];
|
|
82071
81581
|
sort?: InputMaybe<GraphStoreV2ExternalCustomerOrgHasChildExternalCustomerOrgSortInput>;
|
|
82072
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
|
+
};
|
|
82073
81597
|
export declare type GraphStoreV2ExternalCustomerOrgHasExternalCustomerContactArgs = {
|
|
82074
81598
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
82075
81599
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -82098,6 +81622,20 @@ export declare type GraphStoreV2ExternalCustomerOrgHasExternalDealInverseArgs =
|
|
|
82098
81622
|
id: Scalars['ID']['input'];
|
|
82099
81623
|
sort?: InputMaybe<GraphStoreV2ExternalCustomerOrgHasExternalDealSortInput>;
|
|
82100
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
|
+
};
|
|
82101
81639
|
export declare type GraphStoreV2ExternalCustomerOrgLinksExternalCustomerOrgCategoryArgs = {
|
|
82102
81640
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
82103
81641
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -82140,6 +81678,34 @@ export declare type GraphStoreV2ExternalDataTableHasExternalSpaceInverseArgs = {
|
|
|
82140
81678
|
id: Scalars['ID']['input'];
|
|
82141
81679
|
sort?: InputMaybe<GraphStoreV2ExternalDataTableHasExternalSpaceSortInput>;
|
|
82142
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
|
+
};
|
|
82143
81709
|
export declare type GraphStoreV2ExternalDeploymentHasExternalCommitArgs = {
|
|
82144
81710
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
82145
81711
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -86153,7 +85719,7 @@ export declare type GraphStoreV2CypherQueryV2AriNode = {
|
|
|
86153
85719
|
data?: Maybe<GraphStoreV2CypherQueryV2AriNodeUnion>;
|
|
86154
85720
|
id: Scalars['ID']['output'];
|
|
86155
85721
|
};
|
|
86156
|
-
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;
|
|
86157
85723
|
export declare type GraphStoreV2CypherQueryV2BoolListObject = {
|
|
86158
85724
|
__typename?: 'GraphStoreV2CypherQueryV2BoolListObject';
|
|
86159
85725
|
values: Array<Scalars['Boolean']['output']>;
|
|
@@ -86576,6 +86142,12 @@ export declare type GraphStoreV2DeleteLoomVideoHasConfluencePagePayload = {
|
|
|
86576
86142
|
export declare type GraphStoreV2EntityLinksEntitySortInput = {
|
|
86577
86143
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
86578
86144
|
};
|
|
86145
|
+
export declare type GraphStoreV2ExternalCalendarEventHasChildExternalCalendarEventSortInput = {
|
|
86146
|
+
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
86147
|
+
};
|
|
86148
|
+
export declare type GraphStoreV2ExternalCalendarEventLinksExternalVideoSortInput = {
|
|
86149
|
+
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
86150
|
+
};
|
|
86579
86151
|
export declare type GraphStoreV2ExternalCalendarHasLinkedExternalDocumentSortInput = {
|
|
86580
86152
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
86581
86153
|
};
|
|
@@ -86585,15 +86157,27 @@ export declare type GraphStoreV2ExternalConversationHasExternalMessageSortInput
|
|
|
86585
86157
|
export declare type GraphStoreV2ExternalConversationMentionsJiraWorkItemSortInput = {
|
|
86586
86158
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
86587
86159
|
};
|
|
86160
|
+
export declare type GraphStoreV2ExternalCustomerContactHasExternalCalendarEventSortInput = {
|
|
86161
|
+
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
86162
|
+
};
|
|
86163
|
+
export declare type GraphStoreV2ExternalCustomerContactHasExternalWorkItemSortInput = {
|
|
86164
|
+
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
86165
|
+
};
|
|
86588
86166
|
export declare type GraphStoreV2ExternalCustomerOrgHasChildExternalCustomerOrgSortInput = {
|
|
86589
86167
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
86590
86168
|
};
|
|
86169
|
+
export declare type GraphStoreV2ExternalCustomerOrgHasExternalCalendarEventSortInput = {
|
|
86170
|
+
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
86171
|
+
};
|
|
86591
86172
|
export declare type GraphStoreV2ExternalCustomerOrgHasExternalCustomerContactSortInput = {
|
|
86592
86173
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
86593
86174
|
};
|
|
86594
86175
|
export declare type GraphStoreV2ExternalCustomerOrgHasExternalDealSortInput = {
|
|
86595
86176
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
86596
86177
|
};
|
|
86178
|
+
export declare type GraphStoreV2ExternalCustomerOrgHasExternalWorkItemSortInput = {
|
|
86179
|
+
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
86180
|
+
};
|
|
86597
86181
|
export declare type GraphStoreV2ExternalCustomerOrgLinksExternalCustomerOrgCategorySortInput = {
|
|
86598
86182
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
86599
86183
|
};
|
|
@@ -86603,6 +86187,12 @@ export declare type GraphStoreV2ExternalCustomerOrgWorksOnJiraWorkItemWorklogSor
|
|
|
86603
86187
|
export declare type GraphStoreV2ExternalDataTableHasExternalSpaceSortInput = {
|
|
86604
86188
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
86605
86189
|
};
|
|
86190
|
+
export declare type GraphStoreV2ExternalDealHasExternalCalendarEventSortInput = {
|
|
86191
|
+
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
86192
|
+
};
|
|
86193
|
+
export declare type GraphStoreV2ExternalDealHasExternalWorkItemSortInput = {
|
|
86194
|
+
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
86195
|
+
};
|
|
86606
86196
|
export declare type GraphStoreV2ExternalDeploymentHasExternalCommitSortInput = {
|
|
86607
86197
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
86608
86198
|
};
|
|
@@ -88914,7 +88504,7 @@ export declare type GraphStoreV2SimplifiedAtlassianProjectLinksEntityInverseEdge
|
|
|
88914
88504
|
node?: Maybe<GraphStoreV2SimplifiedAtlassianProjectLinksEntityInverseUnion>;
|
|
88915
88505
|
};
|
|
88916
88506
|
export declare type GraphStoreV2SimplifiedAtlassianProjectLinksEntityInverseUnion = TownsquareProject;
|
|
88917
|
-
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;
|
|
88918
88508
|
export declare type GraphStoreV2SimplifiedAtlassianTeamAssignedJiraWorkItemConnection = HasPageInfo & {
|
|
88919
88509
|
__typename?: 'GraphStoreV2SimplifiedAtlassianTeamAssignedJiraWorkItemConnection';
|
|
88920
88510
|
edges?: Maybe<Array<Maybe<GraphStoreV2SimplifiedAtlassianTeamAssignedJiraWorkItemEdge>>>;
|
|
@@ -92713,8 +92303,8 @@ export declare type GraphStoreV2SimplifiedContentEntityLinksEntityInverseEdge =
|
|
|
92713
92303
|
lastUpdated: Scalars['DateTime']['output'];
|
|
92714
92304
|
node?: Maybe<GraphStoreV2SimplifiedContentEntityLinksEntityInverseUnion>;
|
|
92715
92305
|
};
|
|
92716
|
-
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;
|
|
92717
|
-
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;
|
|
92718
92308
|
export declare type GraphStoreV2SimplifiedCsmCustomerLinksJiraWorkItemConnection = HasPageInfo & {
|
|
92719
92309
|
__typename?: 'GraphStoreV2SimplifiedCsmCustomerLinksJiraWorkItemConnection';
|
|
92720
92310
|
edges?: Maybe<Array<Maybe<GraphStoreV2SimplifiedCsmCustomerLinksJiraWorkItemEdge>>>;
|
|
@@ -92883,6 +92473,62 @@ export declare type GraphStoreV2SimplifiedEntityLinksEntityInverseEdge = {
|
|
|
92883
92473
|
};
|
|
92884
92474
|
export declare type GraphStoreV2SimplifiedEntityLinksEntityInverseUnion = ConfluenceBlogPost | ConfluencePage;
|
|
92885
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;
|
|
92886
92532
|
export declare type GraphStoreV2SimplifiedExternalCalendarHasLinkedExternalDocumentConnection = HasPageInfo & {
|
|
92887
92533
|
__typename?: 'GraphStoreV2SimplifiedExternalCalendarHasLinkedExternalDocumentConnection';
|
|
92888
92534
|
edges?: Maybe<Array<Maybe<GraphStoreV2SimplifiedExternalCalendarHasLinkedExternalDocumentEdge>>>;
|
|
@@ -92967,6 +92613,62 @@ export declare type GraphStoreV2SimplifiedExternalConversationMentionsJiraWorkIt
|
|
|
92967
92613
|
};
|
|
92968
92614
|
export declare type GraphStoreV2SimplifiedExternalConversationMentionsJiraWorkItemInverseUnion = ExternalConversation;
|
|
92969
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;
|
|
92970
92672
|
export declare type GraphStoreV2SimplifiedExternalCustomerOrgHasChildExternalCustomerOrgConnection = HasPageInfo & {
|
|
92971
92673
|
__typename?: 'GraphStoreV2SimplifiedExternalCustomerOrgHasChildExternalCustomerOrgConnection';
|
|
92972
92674
|
edges?: Maybe<Array<Maybe<GraphStoreV2SimplifiedExternalCustomerOrgHasChildExternalCustomerOrgEdge>>>;
|
|
@@ -92995,6 +92697,34 @@ export declare type GraphStoreV2SimplifiedExternalCustomerOrgHasChildExternalCus
|
|
|
92995
92697
|
};
|
|
92996
92698
|
export declare type GraphStoreV2SimplifiedExternalCustomerOrgHasChildExternalCustomerOrgInverseUnion = ExternalCustomerOrg;
|
|
92997
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;
|
|
92998
92728
|
export declare type GraphStoreV2SimplifiedExternalCustomerOrgHasExternalCustomerContactConnection = HasPageInfo & {
|
|
92999
92729
|
__typename?: 'GraphStoreV2SimplifiedExternalCustomerOrgHasExternalCustomerContactConnection';
|
|
93000
92730
|
edges?: Maybe<Array<Maybe<GraphStoreV2SimplifiedExternalCustomerOrgHasExternalCustomerContactEdge>>>;
|
|
@@ -93051,6 +92781,34 @@ export declare type GraphStoreV2SimplifiedExternalCustomerOrgHasExternalDealInve
|
|
|
93051
92781
|
};
|
|
93052
92782
|
export declare type GraphStoreV2SimplifiedExternalCustomerOrgHasExternalDealInverseUnion = ExternalCustomerOrg;
|
|
93053
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;
|
|
93054
92812
|
export declare type GraphStoreV2SimplifiedExternalCustomerOrgLinksExternalCustomerOrgCategoryConnection = HasPageInfo & {
|
|
93055
92813
|
__typename?: 'GraphStoreV2SimplifiedExternalCustomerOrgLinksExternalCustomerOrgCategoryConnection';
|
|
93056
92814
|
edges?: Maybe<Array<Maybe<GraphStoreV2SimplifiedExternalCustomerOrgLinksExternalCustomerOrgCategoryEdge>>>;
|
|
@@ -93135,6 +92893,62 @@ export declare type GraphStoreV2SimplifiedExternalDataTableHasExternalSpaceInver
|
|
|
93135
92893
|
};
|
|
93136
92894
|
export declare type GraphStoreV2SimplifiedExternalDataTableHasExternalSpaceInverseUnion = ExternalDataTable;
|
|
93137
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;
|
|
93138
92952
|
export declare type GraphStoreV2SimplifiedExternalDeploymentHasExternalCommitConnection = HasPageInfo & {
|
|
93139
92953
|
__typename?: 'GraphStoreV2SimplifiedExternalDeploymentHasExternalCommitConnection';
|
|
93140
92954
|
edges?: Maybe<Array<Maybe<GraphStoreV2SimplifiedExternalDeploymentHasExternalCommitEdge>>>;
|
|
@@ -96820,7 +96634,7 @@ export declare type GraphStoreV2SimplifiedJiraSpaceLinksEntityInverseEdge = {
|
|
|
96820
96634
|
node?: Maybe<GraphStoreV2SimplifiedJiraSpaceLinksEntityInverseUnion>;
|
|
96821
96635
|
};
|
|
96822
96636
|
export declare type GraphStoreV2SimplifiedJiraSpaceLinksEntityInverseUnion = TownsquareProject;
|
|
96823
|
-
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;
|
|
96824
96638
|
export declare type GraphStoreV2SimplifiedJiraSpaceLinksExternalBranchConnection = HasPageInfo & HasTotal & {
|
|
96825
96639
|
__typename?: 'GraphStoreV2SimplifiedJiraSpaceLinksExternalBranchConnection';
|
|
96826
96640
|
edges?: Maybe<Array<Maybe<GraphStoreV2SimplifiedJiraSpaceLinksExternalBranchEdge>>>;
|
|
@@ -104166,6 +103980,16 @@ export declare type JiraAggregatedTimelineFieldAggregatedStartDateViewFieldArgs
|
|
|
104166
103980
|
input?: InputMaybe<JiraFieldAggregationQueryInput>;
|
|
104167
103981
|
viewId?: InputMaybe<Scalars['String']['input']>;
|
|
104168
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
|
+
}
|
|
104169
103993
|
export declare type JiraAiAgentSession = {
|
|
104170
103994
|
__typename?: 'JiraAiAgentSession';
|
|
104171
103995
|
agent?: Maybe<User>;
|
|
@@ -104190,6 +104014,11 @@ export declare type JiraAiAgentSessionEnrichmentInput = {
|
|
|
104190
104014
|
conversationId: Scalars['String']['input'];
|
|
104191
104015
|
sortKey?: InputMaybe<Scalars['String']['input']>;
|
|
104192
104016
|
};
|
|
104017
|
+
export declare type JiraAiAgentSessionStatus = {
|
|
104018
|
+
__typename?: 'JiraAiAgentSessionStatus';
|
|
104019
|
+
conversationId: Scalars['ID']['output'];
|
|
104020
|
+
state: JiraAiAgentConversationState;
|
|
104021
|
+
};
|
|
104193
104022
|
export declare type JiraAiEnablementIssueInput = {
|
|
104194
104023
|
issueId?: InputMaybe<Scalars['ID']['input']>;
|
|
104195
104024
|
issueKey?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -105638,6 +105467,7 @@ export declare type JiraBacklogViewVersionFiltersArgs = {
|
|
|
105638
105467
|
};
|
|
105639
105468
|
export declare type JiraBacklogViewBoardConfig = {
|
|
105640
105469
|
__typename?: 'JiraBacklogViewBoardConfig';
|
|
105470
|
+
estimationField?: Maybe<JiraField>;
|
|
105641
105471
|
rankCustomFieldId?: Maybe<Scalars['Long']['output']>;
|
|
105642
105472
|
};
|
|
105643
105473
|
export declare type JiraBacklogViewCardField = {
|
|
@@ -106255,6 +106085,7 @@ export declare type JiraBoardViewSwimlaneConnection = {
|
|
|
106255
106085
|
edges?: Maybe<Array<Maybe<JiraBoardViewSwimlaneEdge>>>;
|
|
106256
106086
|
errors?: Maybe<Array<QueryError>>;
|
|
106257
106087
|
pageInfo?: Maybe<PageInfo>;
|
|
106088
|
+
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
106258
106089
|
};
|
|
106259
106090
|
export declare type JiraBoardViewSwimlaneEdge = {
|
|
106260
106091
|
__typename?: 'JiraBoardViewSwimlaneEdge';
|
|
@@ -109659,6 +109490,14 @@ export declare type JiraDismissInContextConfigPromptPayload = Payload & {
|
|
|
109659
109490
|
errors?: Maybe<Array<MutationError>>;
|
|
109660
109491
|
success: Scalars['Boolean']['output'];
|
|
109661
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
|
+
};
|
|
109662
109501
|
export declare type JiraDragAndDropBoardViewIssueInput = {
|
|
109663
109502
|
destinationCellId?: InputMaybe<Scalars['ID']['input']>;
|
|
109664
109503
|
id: Scalars['ID']['input'];
|
|
@@ -109853,6 +109692,11 @@ export declare type JiraEstimate = {
|
|
|
109853
109692
|
export declare type JiraEstimateInput = {
|
|
109854
109693
|
timeInSeconds: Scalars['Long']['input'];
|
|
109855
109694
|
};
|
|
109695
|
+
export declare type JiraEstimationValue = {
|
|
109696
|
+
__typename?: 'JiraEstimationValue';
|
|
109697
|
+
text?: Maybe<Scalars['String']['output']>;
|
|
109698
|
+
value?: Maybe<Scalars['Float']['output']>;
|
|
109699
|
+
};
|
|
109856
109700
|
export declare enum JiraExperienceContext {
|
|
109857
109701
|
Standard = "STANDARD",
|
|
109858
109702
|
Timeline = "TIMELINE"
|
|
@@ -111135,6 +110979,17 @@ export declare enum JiraFormattingTwoValueOperator {
|
|
|
111135
110979
|
IsBetween = "IS_BETWEEN",
|
|
111136
110980
|
IsNotBetween = "IS_NOT_BETWEEN"
|
|
111137
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
|
+
};
|
|
111138
110993
|
export declare type JiraFormulaFieldConfiguredProjectConnection = {
|
|
111139
110994
|
__typename?: 'JiraFormulaFieldConfiguredProjectConnection';
|
|
111140
110995
|
edges?: Maybe<Array<JiraFormulaFieldConfiguredProjectEdge>>;
|
|
@@ -111874,6 +111729,7 @@ export declare type JiraIssue = HasMercuryProjectFields & JiraListRow & JiraScen
|
|
|
111874
111729
|
approvalActivities?: Maybe<JiraIssueApprovalsConnection>;
|
|
111875
111730
|
archivedBy?: Maybe<User>;
|
|
111876
111731
|
archivedOn?: Maybe<Scalars['DateTime']['output']>;
|
|
111732
|
+
assignedAgentSessionStatus?: Maybe<JiraAiAgentSessionStatus>;
|
|
111877
111733
|
assignee?: Maybe<User>;
|
|
111878
111734
|
assigneeField?: Maybe<JiraSingleSelectUserPickerField>;
|
|
111879
111735
|
atlassianProjectField?: Maybe<JiraTownsquareProjectField>;
|
|
@@ -111914,9 +111770,11 @@ export declare type JiraIssue = HasMercuryProjectFields & JiraListRow & JiraScen
|
|
|
111914
111770
|
devSummary?: Maybe<JiraIssueDevSummary>;
|
|
111915
111771
|
devSummaryCache?: Maybe<JiraIssueDevSummaryResult>;
|
|
111916
111772
|
developmentInformation?: Maybe<IssueDevOpsDevelopmentInformation>;
|
|
111773
|
+
dueDate?: Maybe<Scalars['Date']['output']>;
|
|
111917
111774
|
dueDateField?: Maybe<JiraDatePickerField>;
|
|
111918
111775
|
endDateViewField?: Maybe<JiraIssueField>;
|
|
111919
111776
|
errorRetrievingData?: Maybe<Scalars['Boolean']['output']>;
|
|
111777
|
+
estimationForView?: Maybe<JiraEstimationValue>;
|
|
111920
111778
|
exceededChildIssueLimit?: Maybe<Scalars['Boolean']['output']>;
|
|
111921
111779
|
fieldByIdOrAlias?: Maybe<JiraIssueField>;
|
|
111922
111780
|
fieldSets?: Maybe<JiraIssueFieldSetConnection>;
|
|
@@ -111990,6 +111848,7 @@ export declare type JiraIssue = HasMercuryProjectFields & JiraListRow & JiraScen
|
|
|
111990
111848
|
mercuryTargetDateEnd?: Maybe<Scalars['DateTime']['output']>;
|
|
111991
111849
|
mercuryTargetDateStart?: Maybe<Scalars['DateTime']['output']>;
|
|
111992
111850
|
mercuryTargetDateType?: Maybe<MercuryProjectTargetDateType>;
|
|
111851
|
+
parentIssue?: Maybe<JiraIssue>;
|
|
111993
111852
|
parentIssueField?: Maybe<JiraParentIssueField>;
|
|
111994
111853
|
pinnedComments?: Maybe<JiraPinnedCommentsResponse>;
|
|
111995
111854
|
planScenarioValues?: Maybe<JiraScenarioIssueValues>;
|
|
@@ -112155,6 +112014,9 @@ export declare type JiraIssueDesignsArgs = {
|
|
|
112155
112014
|
export declare type JiraIssueEndDateViewFieldArgs = {
|
|
112156
112015
|
viewId?: InputMaybe<Scalars['ID']['input']>;
|
|
112157
112016
|
};
|
|
112017
|
+
export declare type JiraIssueEstimationForViewArgs = {
|
|
112018
|
+
view: JiraViewQueryInput;
|
|
112019
|
+
};
|
|
112158
112020
|
export declare type JiraIssueFieldByIdOrAliasArgs = {
|
|
112159
112021
|
idOrAlias?: InputMaybe<Scalars['String']['input']>;
|
|
112160
112022
|
ignoreMissingField?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -112830,6 +112692,7 @@ export declare type JiraIssueExportInput = {
|
|
|
112830
112692
|
pagerStart?: InputMaybe<Scalars['Int']['input']>;
|
|
112831
112693
|
scope?: InputMaybe<JiraIssueSearchScope>;
|
|
112832
112694
|
timelineAggregationEnabled?: InputMaybe<Scalars['Boolean']['input']>;
|
|
112695
|
+
timelineCustomExportInput?: InputMaybe<JiraTimelineCustomExportInput>;
|
|
112833
112696
|
};
|
|
112834
112697
|
export declare type JiraIssueExportTask = {
|
|
112835
112698
|
__typename?: 'JiraIssueExportTask';
|
|
@@ -116507,6 +116370,7 @@ export declare type JiraMutation = {
|
|
|
116507
116370
|
discardUnpublishedChangesJiraJourneyConfiguration?: Maybe<JiraUpdateJourneyConfigurationPayload>;
|
|
116508
116371
|
discardUserCalendarViewConfig?: Maybe<JiraUpdateCalendarViewConfigPayload>;
|
|
116509
116372
|
disconnectTownsquareProjectToSpace?: Maybe<JiraDisconnectTownsquareProjectPayload>;
|
|
116373
|
+
dismissProjectGuestUserFlag?: Maybe<JiraDismissProjectGuestUserFlagPayload>;
|
|
116510
116374
|
duplicateJiraJourneyConfiguration?: Maybe<JiraUpdateJourneyConfigurationPayload>;
|
|
116511
116375
|
editCustomField?: Maybe<JiraEditCustomFieldPayload>;
|
|
116512
116376
|
forge: JiraForgeMutation;
|
|
@@ -116916,6 +116780,9 @@ export declare type JiraMutationDiscardUserCalendarViewConfigArgs = {
|
|
|
116916
116780
|
export declare type JiraMutationDisconnectTownsquareProjectToSpaceArgs = {
|
|
116917
116781
|
input: JiraDisconnectTownsquareProjectToSpaceInput;
|
|
116918
116782
|
};
|
|
116783
|
+
export declare type JiraMutationDismissProjectGuestUserFlagArgs = {
|
|
116784
|
+
input: JiraDismissProjectGuestUserFlagInput;
|
|
116785
|
+
};
|
|
116919
116786
|
export declare type JiraMutationDuplicateJiraJourneyConfigurationArgs = {
|
|
116920
116787
|
cloudId: Scalars['ID']['input'];
|
|
116921
116788
|
input: JiraDuplicateJourneyConfigurationInput;
|
|
@@ -119190,6 +119057,7 @@ export declare type JiraProject = Node & {
|
|
|
119190
119057
|
cloudId: Scalars['ID']['output'];
|
|
119191
119058
|
conditionalFormattingRules?: Maybe<JiraFormattingRuleConnection>;
|
|
119192
119059
|
created?: Maybe<Scalars['DateTime']['output']>;
|
|
119060
|
+
csmConversationType?: Maybe<JiraIssueType>;
|
|
119193
119061
|
defaultNavigationItem?: Maybe<JiraNavigationItemResult>;
|
|
119194
119062
|
description?: Maybe<Scalars['String']['output']>;
|
|
119195
119063
|
devOpsEntityRelationships?: Maybe<AriGraphRelationshipConnection>;
|
|
@@ -119250,6 +119118,7 @@ export declare type JiraProject = Node & {
|
|
|
119250
119118
|
schemeAssociatedFields?: Maybe<JiraFieldSchemeAssociatedFieldsConnection>;
|
|
119251
119119
|
selectedDeploymentAppsProperty?: Maybe<Array<JiraDeploymentApp>>;
|
|
119252
119120
|
servicesAvailableToLinkWith?: Maybe<DevOpsServiceConnection>;
|
|
119121
|
+
shouldShowGuestUserFlag?: Maybe<Scalars['Boolean']['output']>;
|
|
119253
119122
|
similarIssues?: Maybe<JiraSimilarIssues>;
|
|
119254
119123
|
softwareBoardCount?: Maybe<Scalars['Long']['output']>;
|
|
119255
119124
|
softwareBoards?: Maybe<BoardScopeConnection>;
|
|
@@ -120252,6 +120121,7 @@ export declare type JiraQuery = {
|
|
|
120252
120121
|
forYou_recommendedActions?: Maybe<JiraRecommendedActionCategoryConnection>;
|
|
120253
120122
|
forge: JiraForgeQuery;
|
|
120254
120123
|
formattingRulesByProject?: Maybe<JiraFormattingRuleConnection>;
|
|
120124
|
+
formulaFieldAvailableReferenceFields?: Maybe<JiraFormulaFieldAvailableReferenceFieldConnection>;
|
|
120255
120125
|
formulaFieldConfiguredProjects?: Maybe<JiraFormulaFieldConfiguredProjectConnection>;
|
|
120256
120126
|
formulaFieldExpressionConfig?: Maybe<JiraFormulaFieldExpressionConfig>;
|
|
120257
120127
|
formulaFieldPreview?: Maybe<JiraFormulaFieldPreview>;
|
|
@@ -120729,6 +120599,13 @@ export declare type JiraQueryFormattingRulesByProjectArgs = {
|
|
|
120729
120599
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
120730
120600
|
projectId: Scalars['ID']['input'];
|
|
120731
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
|
+
};
|
|
120732
120609
|
export declare type JiraQueryFormulaFieldConfiguredProjectsArgs = {
|
|
120733
120610
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
120734
120611
|
cloudId: Scalars['ID']['input'];
|
|
@@ -126242,6 +126119,14 @@ export declare enum JiraTimeUnit {
|
|
|
126242
126119
|
Minute = "MINUTE",
|
|
126243
126120
|
Week = "WEEK"
|
|
126244
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
|
+
};
|
|
126245
126130
|
export declare type JiraTimelineField = JiraIssueField & JiraIssueFieldConfiguration & JiraListRowField & JiraTimelineVirtualField & Node & {
|
|
126246
126131
|
__typename?: 'JiraTimelineField';
|
|
126247
126132
|
aliasFieldId?: Maybe<Scalars['ID']['output']>;
|
|
@@ -129220,6 +129105,7 @@ export declare type JpdViewsServiceGlobalView2 = JpdViewsServiceViewBase & Node
|
|
|
129220
129105
|
groupBy?: Maybe<JpdViewsServiceField>;
|
|
129221
129106
|
groupValues: Array<JpdViewsServiceNestedId>;
|
|
129222
129107
|
groupsFilter: Array<JpdViewsServiceFilter>;
|
|
129108
|
+
hasDraft?: Maybe<Scalars['Boolean']['output']>;
|
|
129223
129109
|
hidden: Array<JpdViewsServiceField>;
|
|
129224
129110
|
hideEmptyColumns: Scalars['Boolean']['output'];
|
|
129225
129111
|
hideEmptyGroups?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -136900,6 +136786,8 @@ export declare enum MarketplaceStorePersonalisationTargetSurface {
|
|
|
136900
136786
|
}
|
|
136901
136787
|
export declare type MarketplaceStorePersonalisedContextAndLayoutInput = {
|
|
136902
136788
|
cloudId?: InputMaybe<Scalars['ID']['input']>;
|
|
136789
|
+
compatibleWithProduct?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
136790
|
+
complianceBoundary?: InputMaybe<MarketplaceStoreComplianceBoundary>;
|
|
136903
136791
|
objectKey?: InputMaybe<Scalars['String']['input']>;
|
|
136904
136792
|
objectType?: InputMaybe<MarketplaceStoreObjectType>;
|
|
136905
136793
|
orgId?: InputMaybe<Scalars['ID']['input']>;
|
|
@@ -143097,6 +142985,7 @@ export declare type Mutation = {
|
|
|
143097
142985
|
agentStudio_removeDatasetItem?: Maybe<AgentStudioDeleteDatasetItemPayload>;
|
|
143098
142986
|
agentStudio_removeGroupsFromCreatePermission?: Maybe<AgentStudioRemoveGroupsFromCreatePermissionPayload>;
|
|
143099
142987
|
agentStudio_runBatchEvaluationJob?: Maybe<AgentStudioBatchEvalRunJobPayload>;
|
|
142988
|
+
agentStudio_setAccessIdentityMode?: Maybe<AgentStudioSetAccessIdentityModePayload>;
|
|
143100
142989
|
agentStudio_setAgentUsePermissionMode?: Maybe<AgentStudioUpdateUseAgentPermissionModePayload>;
|
|
143101
142990
|
agentStudio_setWidgetByContainerAri?: Maybe<AgentStudioSetWidgetByContainerAriPayload>;
|
|
143102
142991
|
agentStudio_submitBatchEvaluationJob?: Maybe<AgentStudioCreateBatchEvaluationJobPayload>;
|
|
@@ -143202,6 +143091,10 @@ export declare type Mutation = {
|
|
|
143202
143091
|
assetsDM_editObjectTag?: Maybe<AssetsDmObjectTagEditResponse>;
|
|
143203
143092
|
assetsDM_generateAdapterToken?: Maybe<AssetsDmGenerateAdapterTokenResponse>;
|
|
143204
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>;
|
|
143205
143098
|
assetsDM_resetDataSourceMapping?: Maybe<AssetsDmDataSourceConfigureMappingResponse>;
|
|
143206
143099
|
assetsDM_updateAttributePriority?: Maybe<AssetsDmUpdateAttributePriorityPayload>;
|
|
143207
143100
|
assetsDM_updateAttributePriorityOrder?: Maybe<AssetsDmAttributePriorityResponse>;
|
|
@@ -143210,10 +143103,14 @@ export declare type Mutation = {
|
|
|
143210
143103
|
assetsDM_updateDataSourcePriority?: Maybe<AssetsDmUpdateDataSourcePayload>;
|
|
143211
143104
|
assetsDM_updateDataSourceType?: Maybe<AssetsDmUpdateDataSourceTypeResponse>;
|
|
143212
143105
|
assetsDM_updateDefaultCleansingRule?: Maybe<AssetsDmUpdateDefaultCleansingRuleResponse>;
|
|
143106
|
+
assetsVertical_createItemMappings?: Maybe<AssetsVerticalItemMappingsPayload>;
|
|
143213
143107
|
assetsVertical_createVerticalInstantiation: AssetsVerticalVerticalInstantiationPayload;
|
|
143108
|
+
assetsVertical_createVerticalInstantiationCategory?: Maybe<AssetsVerticalVerticalInstantiationCategoryPayload>;
|
|
143109
|
+
assetsVertical_deleteItemMapping?: Maybe<AssetsVerticalItemMappingPayload>;
|
|
143214
143110
|
assetsVertical_generateInsights?: Maybe<AssetsVerticalGenerateInsightsPayload>;
|
|
143215
143111
|
assetsVertical_instantiateBundleByType: AssetsVerticalAsyncTaskPayload;
|
|
143216
143112
|
assetsVertical_updateVerticalInstantiation: AssetsVerticalVerticalInstantiationPayload;
|
|
143113
|
+
assetsVertical_updateVerticalInstantiationCategory?: Maybe<AssetsVerticalVerticalInstantiationCategoryPayload>;
|
|
143217
143114
|
assets_updateObjectAttributeValue?: Maybe<AssetsAttributeOnObject>;
|
|
143218
143115
|
assignIssueParent?: Maybe<AssignIssueParentOutput>;
|
|
143219
143116
|
attachDanglingComment?: Maybe<Comment>;
|
|
@@ -143497,7 +143394,6 @@ export declare type Mutation = {
|
|
|
143497
143394
|
createPolarisPlayContribution?: Maybe<CreatePolarisPlayContributionPayload>;
|
|
143498
143395
|
createPolarisView?: Maybe<CreatePolarisViewPayload>;
|
|
143499
143396
|
createPolarisViewSet?: Maybe<CreatePolarisViewSetPayload>;
|
|
143500
|
-
createReleaseNote: ContentPlatformReleaseNote;
|
|
143501
143397
|
createSpace?: Maybe<Space>;
|
|
143502
143398
|
createSpaceContentState?: Maybe<ContentState>;
|
|
143503
143399
|
createSprint?: Maybe<CreateSprintResponse>;
|
|
@@ -143970,7 +143866,6 @@ export declare type Mutation = {
|
|
|
143970
143866
|
projects_shareUpdate?: Maybe<TownsquareProjectsShareUpdatePayload>;
|
|
143971
143867
|
publicLinkPagesAdminAction?: Maybe<PublicLinkPagesAdminActionPayload>;
|
|
143972
143868
|
publicLinkSpacesAction?: Maybe<PublicLinkSpacesActionPayload>;
|
|
143973
|
-
publishReleaseNote: ContentPlatformReleaseNote;
|
|
143974
143869
|
radar_clearFocusAreaProposals?: Maybe<RadarMutationResponse>;
|
|
143975
143870
|
radar_createCustomField?: Maybe<RadarMutationResponse>;
|
|
143976
143871
|
radar_createRoleAssignment?: Maybe<RadarMutationResponse>;
|
|
@@ -144217,7 +144112,6 @@ export declare type Mutation = {
|
|
|
144217
144112
|
updatePushNotificationCustomSettings?: Maybe<ConfluencePushNotificationSettings>;
|
|
144218
144113
|
updatePushNotificationGroupSetting?: Maybe<ConfluencePushNotificationSettings>;
|
|
144219
144114
|
updateRelation?: Maybe<UpdateRelationPayload>;
|
|
144220
|
-
updateReleaseNote: ContentPlatformReleaseNote;
|
|
144221
144115
|
updateSiteLookAndFeel?: Maybe<UpdateSiteLookAndFeelPayload>;
|
|
144222
144116
|
updateSitePermission?: Maybe<SitePermission>;
|
|
144223
144117
|
updateSpaceDefaultClassificationLevel?: Maybe<UpdateSpaceDefaultClassificationLevelPayload>;
|
|
@@ -144410,6 +144304,10 @@ export declare type MutationAgentStudio_RunBatchEvaluationJobArgs = {
|
|
|
144410
144304
|
productType: AgentStudioProductType;
|
|
144411
144305
|
projectContainerAri: Scalars['ID']['input'];
|
|
144412
144306
|
};
|
|
144307
|
+
export declare type MutationAgentStudio_SetAccessIdentityModeArgs = {
|
|
144308
|
+
id: Scalars['ID']['input'];
|
|
144309
|
+
mode: AgentStudioAccessIdentityMode;
|
|
144310
|
+
};
|
|
144413
144311
|
export declare type MutationAgentStudio_SetAgentUsePermissionModeArgs = {
|
|
144414
144312
|
id: Scalars['ID']['input'];
|
|
144415
144313
|
input: AgentStudioUpdateAgentUsePermissionSettingsInput;
|
|
@@ -144844,6 +144742,27 @@ export declare type MutationAssetsDm_ImportDataDictionaryArgs = {
|
|
|
144844
144742
|
payload: AssetsDmImportDataDictionaryInput;
|
|
144845
144743
|
workspaceId: Scalars['ID']['input'];
|
|
144846
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
|
+
};
|
|
144847
144766
|
export declare type MutationAssetsDm_ResetDataSourceMappingArgs = {
|
|
144848
144767
|
cloudId: Scalars['ID']['input'];
|
|
144849
144768
|
dataSourceId: Scalars['ID']['input'];
|
|
@@ -144884,9 +144803,18 @@ export declare type MutationAssetsDm_UpdateDefaultCleansingRuleArgs = {
|
|
|
144884
144803
|
input: AssetsDmUpdateDefaultCleansingRuleInput;
|
|
144885
144804
|
workspaceId: Scalars['ID']['input'];
|
|
144886
144805
|
};
|
|
144806
|
+
export declare type MutationAssetsVertical_CreateItemMappingsArgs = {
|
|
144807
|
+
input: AssetsVerticalCreateItemMappingsInput;
|
|
144808
|
+
};
|
|
144887
144809
|
export declare type MutationAssetsVertical_CreateVerticalInstantiationArgs = {
|
|
144888
144810
|
input: AssetsVerticalCreateVerticalInstantiationInput;
|
|
144889
144811
|
};
|
|
144812
|
+
export declare type MutationAssetsVertical_CreateVerticalInstantiationCategoryArgs = {
|
|
144813
|
+
input: AssetsVerticalCreateVerticalInstantiationCategoryInput;
|
|
144814
|
+
};
|
|
144815
|
+
export declare type MutationAssetsVertical_DeleteItemMappingArgs = {
|
|
144816
|
+
input: AssetsVerticalDeleteItemMappingInput;
|
|
144817
|
+
};
|
|
144890
144818
|
export declare type MutationAssetsVertical_GenerateInsightsArgs = {
|
|
144891
144819
|
input: AssetsVerticalGenerateInsightsInput;
|
|
144892
144820
|
};
|
|
@@ -144896,6 +144824,9 @@ export declare type MutationAssetsVertical_InstantiateBundleByTypeArgs = {
|
|
|
144896
144824
|
export declare type MutationAssetsVertical_UpdateVerticalInstantiationArgs = {
|
|
144897
144825
|
input: AssetsVerticalUpdateVerticalInstantiationInput;
|
|
144898
144826
|
};
|
|
144827
|
+
export declare type MutationAssetsVertical_UpdateVerticalInstantiationCategoryArgs = {
|
|
144828
|
+
input: AssetsVerticalUpdateVerticalInstantiationCategoryInput;
|
|
144829
|
+
};
|
|
144899
144830
|
export declare type MutationAssets_UpdateObjectAttributeValueArgs = {
|
|
144900
144831
|
cloudId: Scalars['ID']['input'];
|
|
144901
144832
|
id: Scalars['ID']['input'];
|
|
@@ -145875,27 +145806,6 @@ export declare type MutationCreatePolarisViewArgs = {
|
|
|
145875
145806
|
export declare type MutationCreatePolarisViewSetArgs = {
|
|
145876
145807
|
input: CreatePolarisViewSetInput;
|
|
145877
145808
|
};
|
|
145878
|
-
export declare type MutationCreateReleaseNoteArgs = {
|
|
145879
|
-
announcementPlan?: InputMaybe<Scalars['String']['input']>;
|
|
145880
|
-
changeCategory?: InputMaybe<Scalars['String']['input']>;
|
|
145881
|
-
changeStatus?: Scalars['String']['input'];
|
|
145882
|
-
changeType?: Scalars['String']['input'];
|
|
145883
|
-
description: Scalars['JSON']['input'];
|
|
145884
|
-
fdIssueKey?: InputMaybe<Scalars['String']['input']>;
|
|
145885
|
-
fdIssueLink?: InputMaybe<Scalars['String']['input']>;
|
|
145886
|
-
featureRolloutDate?: InputMaybe<Scalars['DateTime']['input']>;
|
|
145887
|
-
featureRolloutEndDate?: InputMaybe<Scalars['DateTime']['input']>;
|
|
145888
|
-
fedRAMPProductionReleaseDate?: InputMaybe<Scalars['DateTime']['input']>;
|
|
145889
|
-
fedRAMPStagingReleaseDate?: InputMaybe<Scalars['DateTime']['input']>;
|
|
145890
|
-
productIds?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
145891
|
-
productNames?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
145892
|
-
releaseNoteFlag?: InputMaybe<Scalars['String']['input']>;
|
|
145893
|
-
releaseNoteFlagEnvironment?: InputMaybe<Scalars['String']['input']>;
|
|
145894
|
-
releaseNoteFlagOffValue?: InputMaybe<Scalars['String']['input']>;
|
|
145895
|
-
releaseNoteFlagProject?: InputMaybe<Scalars['String']['input']>;
|
|
145896
|
-
title?: Scalars['String']['input'];
|
|
145897
|
-
visibleInFedRAMP?: InputMaybe<Scalars['Boolean']['input']>;
|
|
145898
|
-
};
|
|
145899
145809
|
export declare type MutationCreateSpaceArgs = {
|
|
145900
145810
|
input: CreateSpaceInput;
|
|
145901
145811
|
};
|
|
@@ -147431,9 +147341,6 @@ export declare type MutationPublicLinkSpacesActionArgs = {
|
|
|
147431
147341
|
action: PublicLinkAdminAction;
|
|
147432
147342
|
spaceIds: Array<Scalars['ID']['input']>;
|
|
147433
147343
|
};
|
|
147434
|
-
export declare type MutationPublishReleaseNoteArgs = {
|
|
147435
|
-
id: Scalars['String']['input'];
|
|
147436
|
-
};
|
|
147437
147344
|
export declare type MutationRadar_ClearFocusAreaProposalsArgs = {
|
|
147438
147345
|
cloudId: Scalars['ID']['input'];
|
|
147439
147346
|
input: Array<RadarClearFocusAreaProposalInput>;
|
|
@@ -148253,28 +148160,6 @@ export declare type MutationUpdatePushNotificationGroupSettingArgs = {
|
|
|
148253
148160
|
export declare type MutationUpdateRelationArgs = {
|
|
148254
148161
|
input: UpdateRelationInput;
|
|
148255
148162
|
};
|
|
148256
|
-
export declare type MutationUpdateReleaseNoteArgs = {
|
|
148257
|
-
announcementPlan?: InputMaybe<Scalars['String']['input']>;
|
|
148258
|
-
changeCategory?: InputMaybe<Scalars['String']['input']>;
|
|
148259
|
-
changeStatus?: Scalars['String']['input'];
|
|
148260
|
-
changeType?: Scalars['String']['input'];
|
|
148261
|
-
description?: InputMaybe<Scalars['JSON']['input']>;
|
|
148262
|
-
fdIssueKey?: InputMaybe<Scalars['String']['input']>;
|
|
148263
|
-
fdIssueLink?: InputMaybe<Scalars['String']['input']>;
|
|
148264
|
-
featureRolloutDate?: InputMaybe<Scalars['DateTime']['input']>;
|
|
148265
|
-
featureRolloutEndDate?: InputMaybe<Scalars['DateTime']['input']>;
|
|
148266
|
-
fedRAMPProductionReleaseDate?: InputMaybe<Scalars['DateTime']['input']>;
|
|
148267
|
-
fedRAMPStagingReleaseDate?: InputMaybe<Scalars['DateTime']['input']>;
|
|
148268
|
-
id: Scalars['String']['input'];
|
|
148269
|
-
relatedContextIds?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
148270
|
-
relatedContexts?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
148271
|
-
releaseNoteFlag?: InputMaybe<Scalars['String']['input']>;
|
|
148272
|
-
releaseNoteFlagEnvironment?: InputMaybe<Scalars['String']['input']>;
|
|
148273
|
-
releaseNoteFlagOffValue?: InputMaybe<Scalars['String']['input']>;
|
|
148274
|
-
releaseNoteFlagProject?: InputMaybe<Scalars['String']['input']>;
|
|
148275
|
-
title?: Scalars['String']['input'];
|
|
148276
|
-
visibleInFedRAMP?: InputMaybe<Scalars['Boolean']['input']>;
|
|
148277
|
-
};
|
|
148278
148163
|
export declare type MutationUpdateSiteLookAndFeelArgs = {
|
|
148279
148164
|
input: UpdateSiteLookAndFeelInput;
|
|
148280
148165
|
};
|
|
@@ -150160,6 +150045,7 @@ export declare enum PlaybookTemplateIcon {
|
|
|
150160
150045
|
OnboardingIcon = "ONBOARDING_ICON",
|
|
150161
150046
|
RainstormIncidentIcon = "RAINSTORM_INCIDENT_ICON",
|
|
150162
150047
|
RefreshUpdateIcon = "REFRESH_UPDATE_ICON",
|
|
150048
|
+
ScalesIcon = "SCALES_ICON",
|
|
150163
150049
|
StopwatchIcon = "STOPWATCH_ICON"
|
|
150164
150050
|
}
|
|
150165
150051
|
export declare type PokemonEntity = {
|
|
@@ -150715,8 +150601,10 @@ export declare type PolarisViewFilterInput = {
|
|
|
150715
150601
|
};
|
|
150716
150602
|
export declare enum PolarisViewFilterKind {
|
|
150717
150603
|
ConnectionFieldIdentity = "CONNECTION_FIELD_IDENTITY",
|
|
150604
|
+
FieldExcludes = "FIELD_EXCLUDES",
|
|
150718
150605
|
FieldHasValue = "FIELD_HAS_VALUE",
|
|
150719
150606
|
FieldIdentity = "FIELD_IDENTITY",
|
|
150607
|
+
FieldIncludes = "FIELD_INCLUDES",
|
|
150720
150608
|
FieldNumeric = "FIELD_NUMERIC",
|
|
150721
150609
|
Interval = "INTERVAL",
|
|
150722
150610
|
Text = "TEXT"
|
|
@@ -151428,8 +151316,6 @@ export declare type Query = {
|
|
|
151428
151316
|
allIndividualSpaces?: Maybe<SpaceInfoConnection>;
|
|
151429
151317
|
allTemplates?: Maybe<PaginatedTemplateInfoList>;
|
|
151430
151318
|
allUpdatesFeed?: Maybe<PaginatedAllUpdatesFeed>;
|
|
151431
|
-
anchor?: Maybe<ContentPlatformAnchor>;
|
|
151432
|
-
anchors: ContentPlatformAnchorContentSearchConnection;
|
|
151433
151319
|
app?: Maybe<App>;
|
|
151434
151320
|
appActiveTunnels?: Maybe<AppTunnelDefinitions>;
|
|
151435
151321
|
appContainer?: Maybe<AppContainer>;
|
|
@@ -151495,6 +151381,8 @@ export declare type Query = {
|
|
|
151495
151381
|
assetsDM_jobExecutionHistory?: Maybe<AssetsDmJobExecutionsResponse>;
|
|
151496
151382
|
assetsDM_notifications?: Maybe<AssetsDmNotificationResponse>;
|
|
151497
151383
|
assetsDM_objectAttribute?: Maybe<AssetsDmObjectAttributeResponse>;
|
|
151384
|
+
assetsDM_objectAttributeById?: Maybe<AssetsDmObjectAttributeDetail>;
|
|
151385
|
+
assetsDM_objectAttributeList?: Maybe<AssetsDmObjectAttributeListResponse>;
|
|
151498
151386
|
assetsDM_objectClassMetadata?: Maybe<AssetsDmObjectClassMetadata>;
|
|
151499
151387
|
assetsDM_objectClasses?: Maybe<Array<Maybe<AssetsDmObjectClass>>>;
|
|
151500
151388
|
assetsDM_objectDetail?: Maybe<AssetsDmObjectDetail>;
|
|
@@ -151512,16 +151400,20 @@ export declare type Query = {
|
|
|
151512
151400
|
assetsDM_savedSearchesList?: Maybe<AssetsDmSavedSearchesList>;
|
|
151513
151401
|
assetsDM_transformedData?: Maybe<AssetsDmTransformedDataResponse>;
|
|
151514
151402
|
assetsVertical_attributeValues?: Maybe<AssetsVerticalAttributeValuesResult>;
|
|
151515
|
-
assetsVertical_attributesByTypes?: Maybe<AssetsVerticalAttributesResult>;
|
|
151516
151403
|
assetsVertical_bundle: AssetsVerticalBundleResult;
|
|
151517
151404
|
assetsVertical_configuredObjectTypes?: Maybe<AssetsVerticalObjectTypesResult>;
|
|
151518
151405
|
assetsVertical_countByStatus?: Maybe<AssetsVerticalCountByStatusResult>;
|
|
151519
151406
|
assetsVertical_insights?: Maybe<AssetsVerticalInsights>;
|
|
151520
151407
|
assetsVertical_instantiatedBundle?: Maybe<AssetsVerticalBundleInstantiationResult>;
|
|
151408
|
+
assetsVertical_itemMapping?: Maybe<AssetsVerticalItemMappingResult>;
|
|
151409
|
+
assetsVertical_itemMappings?: Maybe<AssetsVerticalItemMappingConnection>;
|
|
151521
151410
|
assetsVertical_objects?: Maybe<AssetsVerticalObjectsResult>;
|
|
151522
151411
|
assetsVertical_verticalInstantiation?: Maybe<AssetsVerticalVerticalInstantiationResult>;
|
|
151412
|
+
assetsVertical_verticalInstantiationCategories?: Maybe<AssetsVerticalVerticalInstantiationCategoryConnection>;
|
|
151413
|
+
assetsVertical_verticalInstantiationCategory?: Maybe<AssetsVerticalVerticalInstantiationCategoryResult>;
|
|
151523
151414
|
assetsVertical_verticalInstantiations: AssetsVerticalVerticalInstantiationConnection;
|
|
151524
151415
|
assets_objectById?: Maybe<AssetsObjectNode>;
|
|
151416
|
+
assets_objectTypeAttributeValuesByID?: Maybe<Array<Maybe<AssetsObjectTypeAttributeValue>>>;
|
|
151525
151417
|
assets_objectTypeAttributesByObjectTypeIds?: Maybe<Array<Maybe<AssetsObjectTypeAttribute>>>;
|
|
151526
151418
|
assets_objectTypeAttributesBySchemaIds?: Maybe<Array<Maybe<AssetsObjectTypeAttribute>>>;
|
|
151527
151419
|
assets_objectTypeAttributesForServices?: Maybe<Array<Maybe<AssetsObjectTypeAttribute>>>;
|
|
@@ -151798,7 +151690,6 @@ export declare type Query = {
|
|
|
151798
151690
|
contentByState?: Maybe<PaginatedContentList>;
|
|
151799
151691
|
contentContributors?: Maybe<ContentContributors>;
|
|
151800
151692
|
contentConverter?: Maybe<ConfluenceBody>;
|
|
151801
|
-
contentFacet: ContentPlatformContentFacetConnection;
|
|
151802
151693
|
contentHistory?: Maybe<PaginatedContentHistoryList>;
|
|
151803
151694
|
contentIdByReferenceId?: Maybe<Scalars['Long']['output']>;
|
|
151804
151695
|
contentLabelSearch?: Maybe<LabelSearchResults>;
|
|
@@ -151810,7 +151701,6 @@ export declare type Query = {
|
|
|
151810
151701
|
contentTemplateLabelsByCriteria?: Maybe<PaginatedLabelList>;
|
|
151811
151702
|
contentVersionHistory?: Maybe<ContentVersionHistoryConnection>;
|
|
151812
151703
|
contentWatchers?: Maybe<PaginatedPersonList>;
|
|
151813
|
-
contextService?: Maybe<SmartsContextServiceQueryApi>;
|
|
151814
151704
|
contributorsLinkedToAtlasProject?: Maybe<GraphStoreCypherQueryConnection>;
|
|
151815
151705
|
contributorsLinkedToConfluencePage?: Maybe<GraphStoreCypherQueryConnection>;
|
|
151816
151706
|
contributorsLinkedToConfluencePageV2?: Maybe<GraphStoreCypherQueryConnection>;
|
|
@@ -151858,8 +151748,6 @@ export declare type Query = {
|
|
|
151858
151748
|
customer360_customer?: Maybe<Customer360Customer>;
|
|
151859
151749
|
customer360_customersById?: Maybe<Array<Maybe<Customer360Customer>>>;
|
|
151860
151750
|
customerService?: Maybe<CustomerServiceQueryApi>;
|
|
151861
|
-
customerStories: ContentPlatformCustomerStorySearchConnection;
|
|
151862
|
-
customerStory?: Maybe<ContentPlatformCustomerStory>;
|
|
151863
151751
|
customerSupport?: Maybe<SupportRequestCatalogQueryApi>;
|
|
151864
151752
|
dataScope?: Maybe<MigrationPlanningServiceQuery>;
|
|
151865
151753
|
dataSecurityPolicy?: Maybe<Confluence_DataSecurityPolicy>;
|
|
@@ -151953,10 +151841,6 @@ export declare type Query = {
|
|
|
151953
151841
|
featureDiscovery?: Maybe<Array<Maybe<DiscoveredFeature>>>;
|
|
151954
151842
|
feed?: Maybe<PaginatedFeed>;
|
|
151955
151843
|
forYouFeed?: Maybe<ForYouPaginatedFeed>;
|
|
151956
|
-
fullHubArticle?: Maybe<ContentPlatformFullHubArticle>;
|
|
151957
|
-
fullHubArticles: ContentPlatformHubArticleSearchConnection;
|
|
151958
|
-
fullTutorial?: Maybe<ContentPlatformFullTutorial>;
|
|
151959
|
-
fullTutorials: ContentPlatformTutorialSearchConnection;
|
|
151960
151844
|
futureContentTypeMobileSupport?: Maybe<FutureContentTypeMobileSupport>;
|
|
151961
151845
|
getAIConfig?: Maybe<AiConfigResponse>;
|
|
151962
151846
|
getCommentReplySuggestions?: Maybe<CommentReplySuggestions>;
|
|
@@ -152047,12 +151931,6 @@ export declare type Query = {
|
|
|
152047
151931
|
intentdetection_getIntent?: Maybe<IntentDetectionResponse>;
|
|
152048
151932
|
internalFrontendResource?: Maybe<FrontendResourceRenderResponse>;
|
|
152049
151933
|
invitationUrls?: Maybe<InvitationUrlsPayload>;
|
|
152050
|
-
ipmFlag?: Maybe<ContentPlatformIpmFlag>;
|
|
152051
|
-
ipmFlags: ContentPlatformIpmFlagSearchConnection;
|
|
152052
|
-
ipmInlineDialog?: Maybe<ContentPlatformIpmInlineDialog>;
|
|
152053
|
-
ipmInlineDialogs: ContentPlatformIpmInlineDialogSearchConnection;
|
|
152054
|
-
ipmMultiStep?: Maybe<ContentPlatformIpmMultiStep>;
|
|
152055
|
-
ipmMultiSteps: ContentPlatformIpmMultiStepSearchConnection;
|
|
152056
151934
|
isDataClassificationEnabled?: Maybe<Scalars['Boolean']['output']>;
|
|
152057
151935
|
isMoveContentStatesSupported?: Maybe<Scalars['Boolean']['output']>;
|
|
152058
151936
|
isNewUser?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -152079,6 +151957,7 @@ export declare type Query = {
|
|
|
152079
151957
|
jira_boardsByIds?: Maybe<Array<Maybe<JiraBoard>>>;
|
|
152080
151958
|
jira_bulkMergeValidation?: Maybe<JiraBulkMergeValidationResult>;
|
|
152081
151959
|
jira_categoryField?: Maybe<JiraJqlField>;
|
|
151960
|
+
jira_colorField?: Maybe<JiraJqlField>;
|
|
152082
151961
|
jira_creatableGlobalCustomFieldTypes?: Maybe<JiraCustomFieldTypeConnection>;
|
|
152083
151962
|
jira_currentUserTimeZoneId?: Maybe<Scalars['String']['output']>;
|
|
152084
151963
|
jira_doesTenantHaveNonNfaProjects?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -152110,6 +151989,7 @@ export declare type Query = {
|
|
|
152110
151989
|
jira_projectLevelSidebarMenuCustomization?: Maybe<JiraProjectLevelSidebarMenuCustomizationResult>;
|
|
152111
151990
|
jira_projectTypesByIds?: Maybe<Array<Maybe<JiraProjectTypeDetails>>>;
|
|
152112
151991
|
jira_projectsSidebarMenu?: Maybe<JiraProjectsSidebarMenu>;
|
|
151992
|
+
jira_sprintField?: Maybe<JiraJqlField>;
|
|
152113
151993
|
jira_userSegRedirectAdvice?: Maybe<JiraUserSegRedirectAdvice>;
|
|
152114
151994
|
jira_versionsForProjectByKey?: Maybe<JiraVersionConnection>;
|
|
152115
151995
|
jira_view?: Maybe<JiraViewResult>;
|
|
@@ -152289,8 +152169,6 @@ export declare type Query = {
|
|
|
152289
152169
|
popularFeed?: Maybe<PaginatedPopularFeed>;
|
|
152290
152170
|
postOffice_getMessages?: Maybe<PostOfficeEnrichedMessagePayload>;
|
|
152291
152171
|
postOffice_placeholder?: Maybe<Scalars['String']['output']>;
|
|
152292
|
-
pricing?: Maybe<ContentPlatformPricing>;
|
|
152293
|
-
pricings: ContentPlatformPricingSearchConnection;
|
|
152294
152172
|
productListing?: Maybe<ProductListingResult>;
|
|
152295
152173
|
productListings: Array<ProductListingResult>;
|
|
152296
152174
|
projects_allWatchedProjectUpdates?: Maybe<TownsquareUpdateConnection>;
|
|
@@ -152346,8 +152224,6 @@ export declare type Query = {
|
|
|
152346
152224
|
reactionsSummary?: Maybe<ReactionsSummaryResponse>;
|
|
152347
152225
|
reactionsSummaryList?: Maybe<Array<Maybe<ReactionsSummaryResponse>>>;
|
|
152348
152226
|
recentlyViewedSpaces?: Maybe<Array<Maybe<Space>>>;
|
|
152349
|
-
releaseNote?: Maybe<ContentPlatformReleaseNote>;
|
|
152350
|
-
releaseNotes: ContentPlatformReleaseNotesConnection;
|
|
152351
152227
|
renderedContentDump?: Maybe<HtmlDocument>;
|
|
152352
152228
|
renderedMacro?: Maybe<RenderedMacro>;
|
|
152353
152229
|
repositoryRelationshipsForDevOpsService?: Maybe<DevOpsServiceAndRepositoryRelationshipConnection>;
|
|
@@ -152507,14 +152383,10 @@ export declare type Query = {
|
|
|
152507
152383
|
teamworkGraph_userTopRecentReferencers?: Maybe<GraphStoreCypherQueryV2Connection>;
|
|
152508
152384
|
teamworkGraph_userViewed?: Maybe<GraphStoreCypherQueryV2Connection>;
|
|
152509
152385
|
teamworkGraph_userWorkMentioned?: Maybe<GraphStoreCypherQueryV2Connection>;
|
|
152510
|
-
template?: Maybe<ContentPlatformTemplate>;
|
|
152511
152386
|
templateBodies?: Maybe<PaginatedTemplateBodyList>;
|
|
152512
152387
|
templateCategories?: Maybe<PaginatedTemplateCategoryList>;
|
|
152513
|
-
templateCollection?: Maybe<ContentPlatformTemplateCollection>;
|
|
152514
|
-
templateCollections: ContentPlatformTemplateCollectionContentSearchConnection;
|
|
152515
152388
|
templateInfo?: Maybe<TemplateInfo>;
|
|
152516
152389
|
templateMediaSession?: Maybe<TemplateMediaSession>;
|
|
152517
|
-
templates: ContentPlatformTemplateContentSearchConnection;
|
|
152518
152390
|
tenant?: Maybe<Tenant>;
|
|
152519
152391
|
tenantContexts?: Maybe<Array<Maybe<TenantContext>>>;
|
|
152520
152392
|
testing?: Maybe<Testing>;
|
|
@@ -152522,8 +152394,6 @@ export declare type Query = {
|
|
|
152522
152394
|
timeseriesPageBlogCount?: Maybe<TimeseriesPageBlogCount>;
|
|
152523
152395
|
timeseriesUniqueUserCount?: Maybe<TimeseriesUniqueUserCount>;
|
|
152524
152396
|
topRelevantUsers?: Maybe<TopRelevantUsers>;
|
|
152525
|
-
topicOverview?: Maybe<ContentPlatformTopicOverview>;
|
|
152526
|
-
topicOverviews: ContentPlatformTopicOverviewContentSearchConnection;
|
|
152527
152397
|
totalSearchCTR?: Maybe<TotalSearchCtr>;
|
|
152528
152398
|
townsquare?: Maybe<TownsquareQueryApi>;
|
|
152529
152399
|
townsquareUnsharded_allWorkspaceSummariesForOrg?: Maybe<TownsquareUnshardedWorkspaceSummaryConnection>;
|
|
@@ -153232,14 +153102,6 @@ export declare type QueryAllUpdatesFeedArgs = {
|
|
|
153232
153102
|
spaceKeys?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
153233
153103
|
users?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
153234
153104
|
};
|
|
153235
|
-
export declare type QueryAnchorArgs = {
|
|
153236
|
-
id: Scalars['String']['input'];
|
|
153237
|
-
locale?: InputMaybe<Scalars['String']['input']>;
|
|
153238
|
-
publishedOnly?: InputMaybe<Scalars['Boolean']['input']>;
|
|
153239
|
-
};
|
|
153240
|
-
export declare type QueryAnchorsArgs = {
|
|
153241
|
-
search: ContentPlatformSearchApIv2Query;
|
|
153242
|
-
};
|
|
153243
153105
|
export declare type QueryAppArgs = {
|
|
153244
153106
|
id: Scalars['ID']['input'];
|
|
153245
153107
|
};
|
|
@@ -153590,6 +153452,20 @@ export declare type QueryAssetsDm_ObjectAttributeArgs = {
|
|
|
153590
153452
|
objectName?: InputMaybe<Scalars['String']['input']>;
|
|
153591
153453
|
workspaceId: Scalars['ID']['input'];
|
|
153592
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
|
+
};
|
|
153593
153469
|
export declare type QueryAssetsDm_ObjectClassMetadataArgs = {
|
|
153594
153470
|
cloudId: Scalars['ID']['input'];
|
|
153595
153471
|
objectId: Scalars['ID']['input'];
|
|
@@ -153698,10 +153574,6 @@ export declare type QueryAssetsVertical_AttributeValuesArgs = {
|
|
|
153698
153574
|
cloudId: Scalars['ID']['input'];
|
|
153699
153575
|
input: AssetsVerticalAttributeValuesInput;
|
|
153700
153576
|
};
|
|
153701
|
-
export declare type QueryAssetsVertical_AttributesByTypesArgs = {
|
|
153702
|
-
cloudId: Scalars['ID']['input'];
|
|
153703
|
-
input: AssetsVerticalAttributesInput;
|
|
153704
|
-
};
|
|
153705
153577
|
export declare type QueryAssetsVertical_BundleArgs = {
|
|
153706
153578
|
cloudId: Scalars['ID']['input'];
|
|
153707
153579
|
type: AssetsVerticalBundleType;
|
|
@@ -153722,6 +153594,18 @@ export declare type QueryAssetsVertical_InstantiatedBundleArgs = {
|
|
|
153722
153594
|
cloudId: Scalars['ID']['input'];
|
|
153723
153595
|
type: AssetsVerticalBundleType;
|
|
153724
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
|
+
};
|
|
153725
153609
|
export declare type QueryAssetsVertical_ObjectsArgs = {
|
|
153726
153610
|
cloudId: Scalars['ID']['input'];
|
|
153727
153611
|
input?: InputMaybe<AssetsVerticalObjectsInput>;
|
|
@@ -153730,6 +153614,18 @@ export declare type QueryAssetsVertical_VerticalInstantiationArgs = {
|
|
|
153730
153614
|
cloudId: Scalars['ID']['input'];
|
|
153731
153615
|
id: Scalars['ID']['input'];
|
|
153732
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
|
+
};
|
|
153733
153629
|
export declare type QueryAssetsVertical_VerticalInstantiationsArgs = {
|
|
153734
153630
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
153735
153631
|
cloudId: Scalars['ID']['input'];
|
|
@@ -153739,6 +153635,12 @@ export declare type QueryAssetsVertical_VerticalInstantiationsArgs = {
|
|
|
153739
153635
|
export declare type QueryAssets_ObjectByIdArgs = {
|
|
153740
153636
|
id: Scalars['ID']['input'];
|
|
153741
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
|
+
};
|
|
153742
153644
|
export declare type QueryAssets_ObjectTypeAttributesByObjectTypeIdsArgs = {
|
|
153743
153645
|
cloudId: Scalars['ID']['input'];
|
|
153744
153646
|
limit?: InputMaybe<Scalars['Int']['input']>;
|
|
@@ -154942,14 +154844,6 @@ export declare type QueryContentConverterArgs = {
|
|
|
154942
154844
|
spaceKeyContext?: InputMaybe<Scalars['String']['input']>;
|
|
154943
154845
|
to: Scalars['String']['input'];
|
|
154944
154846
|
};
|
|
154945
|
-
export declare type QueryContentFacetArgs = {
|
|
154946
|
-
after?: InputMaybe<Scalars['String']['input']>;
|
|
154947
|
-
first?: Scalars['Int']['input'];
|
|
154948
|
-
forContentType: Scalars['String']['input'];
|
|
154949
|
-
forFields: Array<Scalars['String']['input']>;
|
|
154950
|
-
withFallback?: Scalars['String']['input'];
|
|
154951
|
-
withLocales?: Array<Scalars['String']['input']>;
|
|
154952
|
-
};
|
|
154953
154847
|
export declare type QueryContentHistoryArgs = {
|
|
154954
154848
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
154955
154849
|
contentId: Scalars['ID']['input'];
|
|
@@ -155238,14 +155132,6 @@ export declare type QueryCustomer360_CustomersByIdArgs = {
|
|
|
155238
155132
|
export declare type QueryCustomerServiceArgs = {
|
|
155239
155133
|
cloudId: Scalars['ID']['input'];
|
|
155240
155134
|
};
|
|
155241
|
-
export declare type QueryCustomerStoriesArgs = {
|
|
155242
|
-
search: ContentPlatformSearchApIv2Query;
|
|
155243
|
-
};
|
|
155244
|
-
export declare type QueryCustomerStoryArgs = {
|
|
155245
|
-
id: Scalars['String']['input'];
|
|
155246
|
-
locale?: InputMaybe<Scalars['String']['input']>;
|
|
155247
|
-
publishedOnly?: InputMaybe<Scalars['Boolean']['input']>;
|
|
155248
|
-
};
|
|
155249
155135
|
export declare type QueryDataSecurityPolicyArgs = {
|
|
155250
155136
|
cloudId?: InputMaybe<Scalars['ID']['input']>;
|
|
155251
155137
|
};
|
|
@@ -155622,22 +155508,6 @@ export declare type QueryForYouFeedArgs = {
|
|
|
155622
155508
|
cloudId?: InputMaybe<Scalars['String']['input']>;
|
|
155623
155509
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
155624
155510
|
};
|
|
155625
|
-
export declare type QueryFullHubArticleArgs = {
|
|
155626
|
-
id: Scalars['String']['input'];
|
|
155627
|
-
locale?: InputMaybe<Scalars['String']['input']>;
|
|
155628
|
-
publishedOnly?: InputMaybe<Scalars['Boolean']['input']>;
|
|
155629
|
-
};
|
|
155630
|
-
export declare type QueryFullHubArticlesArgs = {
|
|
155631
|
-
search: ContentPlatformSearchApIv2Query;
|
|
155632
|
-
};
|
|
155633
|
-
export declare type QueryFullTutorialArgs = {
|
|
155634
|
-
id: Scalars['String']['input'];
|
|
155635
|
-
locale?: InputMaybe<Scalars['String']['input']>;
|
|
155636
|
-
publishedOnly?: InputMaybe<Scalars['Boolean']['input']>;
|
|
155637
|
-
};
|
|
155638
|
-
export declare type QueryFullTutorialsArgs = {
|
|
155639
|
-
search: ContentPlatformSearchApIv2Query;
|
|
155640
|
-
};
|
|
155641
155511
|
export declare type QueryFutureContentTypeMobileSupportArgs = {
|
|
155642
155512
|
contentType: Scalars['String']['input'];
|
|
155643
155513
|
locale: Scalars['String']['input'];
|
|
@@ -155986,30 +155856,6 @@ export declare type QueryIntentdetection_GetIntentArgs = {
|
|
|
155986
155856
|
locale?: InputMaybe<Scalars['String']['input']>;
|
|
155987
155857
|
query?: InputMaybe<Scalars['String']['input']>;
|
|
155988
155858
|
};
|
|
155989
|
-
export declare type QueryIpmFlagArgs = {
|
|
155990
|
-
id: Scalars['String']['input'];
|
|
155991
|
-
locale?: InputMaybe<Scalars['String']['input']>;
|
|
155992
|
-
publishedOnly?: InputMaybe<Scalars['Boolean']['input']>;
|
|
155993
|
-
};
|
|
155994
|
-
export declare type QueryIpmFlagsArgs = {
|
|
155995
|
-
search: ContentPlatformSearchApIv2Query;
|
|
155996
|
-
};
|
|
155997
|
-
export declare type QueryIpmInlineDialogArgs = {
|
|
155998
|
-
id: Scalars['String']['input'];
|
|
155999
|
-
locale?: InputMaybe<Scalars['String']['input']>;
|
|
156000
|
-
publishedOnly?: InputMaybe<Scalars['Boolean']['input']>;
|
|
156001
|
-
};
|
|
156002
|
-
export declare type QueryIpmInlineDialogsArgs = {
|
|
156003
|
-
search: ContentPlatformSearchApIv2Query;
|
|
156004
|
-
};
|
|
156005
|
-
export declare type QueryIpmMultiStepArgs = {
|
|
156006
|
-
id: Scalars['String']['input'];
|
|
156007
|
-
locale?: InputMaybe<Scalars['String']['input']>;
|
|
156008
|
-
publishedOnly?: InputMaybe<Scalars['Boolean']['input']>;
|
|
156009
|
-
};
|
|
156010
|
-
export declare type QueryIpmMultiStepsArgs = {
|
|
156011
|
-
search: ContentPlatformSearchApIv2Query;
|
|
156012
|
-
};
|
|
156013
155859
|
export declare type QueryIsMoveContentStatesSupportedArgs = {
|
|
156014
155860
|
contentId: Scalars['ID']['input'];
|
|
156015
155861
|
spaceKey: Scalars['String']['input'];
|
|
@@ -156082,6 +155928,9 @@ export declare type QueryJira_BulkMergeValidationArgs = {
|
|
|
156082
155928
|
export declare type QueryJira_CategoryFieldArgs = {
|
|
156083
155929
|
cloudId: Scalars['ID']['input'];
|
|
156084
155930
|
};
|
|
155931
|
+
export declare type QueryJira_ColorFieldArgs = {
|
|
155932
|
+
cloudId: Scalars['ID']['input'];
|
|
155933
|
+
};
|
|
156085
155934
|
export declare type QueryJira_CreatableGlobalCustomFieldTypesArgs = {
|
|
156086
155935
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
156087
155936
|
cloudId: Scalars['ID']['input'];
|
|
@@ -156202,6 +156051,9 @@ export declare type QueryJira_ProjectsSidebarMenuArgs = {
|
|
|
156202
156051
|
cloudId: Scalars['ID']['input'];
|
|
156203
156052
|
currentURL?: InputMaybe<Scalars['URL']['input']>;
|
|
156204
156053
|
};
|
|
156054
|
+
export declare type QueryJira_SprintFieldArgs = {
|
|
156055
|
+
cloudId: Scalars['ID']['input'];
|
|
156056
|
+
};
|
|
156205
156057
|
export declare type QueryJira_UserSegRedirectAdviceArgs = {
|
|
156206
156058
|
accountId: Scalars['ID']['input'];
|
|
156207
156059
|
cloudId: Scalars['ID']['input'];
|
|
@@ -156806,14 +156658,6 @@ export declare type QueryPostOffice_GetMessagesArgs = {
|
|
|
156806
156658
|
locale?: InputMaybe<Scalars['String']['input']>;
|
|
156807
156659
|
payload: PostOfficeGetMessagesInput;
|
|
156808
156660
|
};
|
|
156809
|
-
export declare type QueryPricingArgs = {
|
|
156810
|
-
id: Scalars['String']['input'];
|
|
156811
|
-
locale?: InputMaybe<Scalars['String']['input']>;
|
|
156812
|
-
publishedOnly?: InputMaybe<Scalars['Boolean']['input']>;
|
|
156813
|
-
};
|
|
156814
|
-
export declare type QueryPricingsArgs = {
|
|
156815
|
-
search: ContentPlatformSearchApIv2Query;
|
|
156816
|
-
};
|
|
156817
156661
|
export declare type QueryProductListingArgs = {
|
|
156818
156662
|
id: Scalars['ID']['input'];
|
|
156819
156663
|
locales?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
@@ -157057,24 +156901,6 @@ export declare type QueryReactionsSummaryListArgs = {
|
|
|
157057
156901
|
export declare type QueryRecentlyViewedSpacesArgs = {
|
|
157058
156902
|
limit?: InputMaybe<Scalars['Int']['input']>;
|
|
157059
156903
|
};
|
|
157060
|
-
export declare type QueryReleaseNoteArgs = {
|
|
157061
|
-
id: Scalars['String']['input'];
|
|
157062
|
-
locale?: InputMaybe<Scalars['String']['input']>;
|
|
157063
|
-
publishedOnly?: InputMaybe<Scalars['Boolean']['input']>;
|
|
157064
|
-
};
|
|
157065
|
-
export declare type QueryReleaseNotesArgs = {
|
|
157066
|
-
after?: InputMaybe<Scalars['String']['input']>;
|
|
157067
|
-
featureFlagEnvironment?: InputMaybe<Scalars['String']['input']>;
|
|
157068
|
-
featureFlagProject?: InputMaybe<Scalars['String']['input']>;
|
|
157069
|
-
filter?: InputMaybe<ContentPlatformReleaseNoteFilterOptions>;
|
|
157070
|
-
filterByAnnouncementPlan?: InputMaybe<Scalars['Boolean']['input']>;
|
|
157071
|
-
first?: Scalars['Int']['input'];
|
|
157072
|
-
orderBy?: InputMaybe<Scalars['String']['input']>;
|
|
157073
|
-
productFeatureFlags?: InputMaybe<Scalars['JSON']['input']>;
|
|
157074
|
-
publishedOnly?: InputMaybe<Scalars['Boolean']['input']>;
|
|
157075
|
-
search?: InputMaybe<ContentPlatformSearchOptions>;
|
|
157076
|
-
visibleInFedRAMP?: InputMaybe<Scalars['Boolean']['input']>;
|
|
157077
|
-
};
|
|
157078
156904
|
export declare type QueryRenderedContentDumpArgs = {
|
|
157079
156905
|
id: Scalars['ID']['input'];
|
|
157080
156906
|
};
|
|
@@ -157734,11 +157560,6 @@ export declare type QueryTeamworkGraph_UserWorkMentionedArgs = {
|
|
|
157734
157560
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
157735
157561
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
157736
157562
|
};
|
|
157737
|
-
export declare type QueryTemplateArgs = {
|
|
157738
|
-
id: Scalars['String']['input'];
|
|
157739
|
-
locale?: InputMaybe<Scalars['String']['input']>;
|
|
157740
|
-
publishedOnly?: InputMaybe<Scalars['Boolean']['input']>;
|
|
157741
|
-
};
|
|
157742
157563
|
export declare type QueryTemplateBodiesArgs = {
|
|
157743
157564
|
ids?: InputMaybe<Array<InputMaybe<Scalars['String']['input']>>>;
|
|
157744
157565
|
limit?: InputMaybe<Scalars['Int']['input']>;
|
|
@@ -157750,14 +157571,6 @@ export declare type QueryTemplateCategoriesArgs = {
|
|
|
157750
157571
|
spaceKey?: InputMaybe<Scalars['String']['input']>;
|
|
157751
157572
|
start?: InputMaybe<Scalars['Int']['input']>;
|
|
157752
157573
|
};
|
|
157753
|
-
export declare type QueryTemplateCollectionArgs = {
|
|
157754
|
-
id: Scalars['String']['input'];
|
|
157755
|
-
locale?: InputMaybe<Scalars['String']['input']>;
|
|
157756
|
-
publishedOnly?: InputMaybe<Scalars['Boolean']['input']>;
|
|
157757
|
-
};
|
|
157758
|
-
export declare type QueryTemplateCollectionsArgs = {
|
|
157759
|
-
search: ContentPlatformSearchApIv2Query;
|
|
157760
|
-
};
|
|
157761
157574
|
export declare type QueryTemplateInfoArgs = {
|
|
157762
157575
|
id: Scalars['ID']['input'];
|
|
157763
157576
|
};
|
|
@@ -157766,9 +157579,6 @@ export declare type QueryTemplateMediaSessionArgs = {
|
|
|
157766
157579
|
spaceKey?: InputMaybe<Scalars['String']['input']>;
|
|
157767
157580
|
templateIds?: InputMaybe<Array<InputMaybe<Scalars['String']['input']>>>;
|
|
157768
157581
|
};
|
|
157769
|
-
export declare type QueryTemplatesArgs = {
|
|
157770
|
-
search: ContentPlatformSearchApIv2Query;
|
|
157771
|
-
};
|
|
157772
157582
|
export declare type QueryTenantContextsArgs = {
|
|
157773
157583
|
activationIds?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
157774
157584
|
cloudIds?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
@@ -157807,14 +157617,6 @@ export declare type QueryTopRelevantUsersArgs = {
|
|
|
157807
157617
|
startTime?: InputMaybe<Scalars['String']['input']>;
|
|
157808
157618
|
userFilter?: InputMaybe<RelevantUserFilter>;
|
|
157809
157619
|
};
|
|
157810
|
-
export declare type QueryTopicOverviewArgs = {
|
|
157811
|
-
id: Scalars['String']['input'];
|
|
157812
|
-
locale?: InputMaybe<Scalars['String']['input']>;
|
|
157813
|
-
publishedOnly?: InputMaybe<Scalars['Boolean']['input']>;
|
|
157814
|
-
};
|
|
157815
|
-
export declare type QueryTopicOverviewsArgs = {
|
|
157816
|
-
search: ContentPlatformSearchApIv2Query;
|
|
157817
|
-
};
|
|
157818
157620
|
export declare type QueryTotalSearchCtrArgs = {
|
|
157819
157621
|
endTime?: InputMaybe<Scalars['String']['input']>;
|
|
157820
157622
|
startTime: Scalars['String']['input'];
|
|
@@ -160335,6 +160137,7 @@ export declare enum Scope {
|
|
|
160335
160137
|
ReadTownsquareProject = "READ_TOWNSQUARE_PROJECT",
|
|
160336
160138
|
ReadTownsquareWorkspace = "READ_TOWNSQUARE_WORKSPACE",
|
|
160337
160139
|
ReadTrelloTwgCli = "READ_TRELLO_TWG_CLI",
|
|
160140
|
+
ReadUserConfluence = "READ_USER_CONFLUENCE",
|
|
160338
160141
|
ReadViewJpd = "READ_VIEW_JPD",
|
|
160339
160142
|
ResolutionRead = "RESOLUTION_READ",
|
|
160340
160143
|
RovoAtlassianExternal = "ROVO_ATLASSIAN_EXTERNAL",
|
|
@@ -180988,19 +180791,6 @@ export declare type SmartsContext = {
|
|
|
180988
180791
|
tenantId: Scalars['String']['input'];
|
|
180989
180792
|
userId: Scalars['String']['input'];
|
|
180990
180793
|
};
|
|
180991
|
-
export declare type SmartsContextServiceQueryApi = {
|
|
180992
|
-
__typename?: 'SmartsContextServiceQueryApi';
|
|
180993
|
-
quickfindUserRecommendations?: Maybe<Array<Maybe<SmartsContextServiceUserRecommendation>>>;
|
|
180994
|
-
};
|
|
180995
|
-
export declare type SmartsContextServiceQueryApiQuickfindUserRecommendationsArgs = {
|
|
180996
|
-
recommendationsQuery: SmartsRecommendationsQuery;
|
|
180997
|
-
};
|
|
180998
|
-
export declare type SmartsContextServiceUserRecommendation = {
|
|
180999
|
-
__typename?: 'SmartsContextServiceUserRecommendation';
|
|
181000
|
-
id: Scalars['ID']['output'];
|
|
181001
|
-
reason?: Maybe<Scalars['String']['output']>;
|
|
181002
|
-
score?: Maybe<Scalars['Float']['output']>;
|
|
181003
|
-
};
|
|
181004
180794
|
export declare type SmartsFieldContext = {
|
|
181005
180795
|
additionalContextList?: InputMaybe<Array<SmartsKeyValue>>;
|
|
181006
180796
|
containerId?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -181021,6 +180811,7 @@ export declare type SmartsModelRequestParams = {
|
|
|
181021
180811
|
export declare type SmartsQueryApi = {
|
|
181022
180812
|
__typename?: 'SmartsQueryApi';
|
|
181023
180813
|
recommendedContainer?: Maybe<Array<Maybe<SmartsRecommendedContainer>>>;
|
|
180814
|
+
recommendedContainerV2?: Maybe<Array<Maybe<SmartsRecommendedContainerV2>>>;
|
|
181024
180815
|
recommendedField?: Maybe<Array<Maybe<SmartsRecommendedFieldObject>>>;
|
|
181025
180816
|
recommendedObject?: Maybe<Array<Maybe<SmartsRecommendedObject>>>;
|
|
181026
180817
|
recommendedUser?: Maybe<Array<Maybe<SmartsRecommendedUser>>>;
|
|
@@ -181028,6 +180819,9 @@ export declare type SmartsQueryApi = {
|
|
|
181028
180819
|
export declare type SmartsQueryApiRecommendedContainerArgs = {
|
|
181029
180820
|
recommendationsQuery: SmartsRecommendationsQuery;
|
|
181030
180821
|
};
|
|
180822
|
+
export declare type SmartsQueryApiRecommendedContainerV2Args = {
|
|
180823
|
+
recommendationsQuery: SmartsRecommendationsQuery;
|
|
180824
|
+
};
|
|
181031
180825
|
export declare type SmartsQueryApiRecommendedFieldArgs = {
|
|
181032
180826
|
recommendationsQuery: SmartsRecommendationsFieldQuery;
|
|
181033
180827
|
};
|
|
@@ -181057,6 +180851,13 @@ export declare type SmartsRecommendedContainer = {
|
|
|
181057
180851
|
id: Scalars['ID']['output'];
|
|
181058
180852
|
score?: Maybe<Scalars['Float']['output']>;
|
|
181059
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
|
+
};
|
|
181060
180861
|
export declare type SmartsRecommendedFieldObject = {
|
|
181061
180862
|
__typename?: 'SmartsRecommendedFieldObject';
|
|
181062
180863
|
id: Scalars['ID']['output'];
|
|
@@ -190215,7 +190016,7 @@ export declare type TrelloAddAttachmentToCardAction = TrelloAction & TrelloCardA
|
|
|
190215
190016
|
__typename?: 'TrelloAddAttachmentToCardAction';
|
|
190216
190017
|
appCreator?: Maybe<TrelloAppCreator>;
|
|
190217
190018
|
attachment?: Maybe<TrelloAttachment>;
|
|
190218
|
-
board?: Maybe<
|
|
190019
|
+
board?: Maybe<TrelloBaseBoard>;
|
|
190219
190020
|
card?: Maybe<TrelloBaseCard>;
|
|
190220
190021
|
creator?: Maybe<TrelloMember>;
|
|
190221
190022
|
date?: Maybe<Scalars['DateTime']['output']>;
|
|
@@ -190248,7 +190049,7 @@ export declare type TrelloAddBoardStarPayload = Payload & {
|
|
|
190248
190049
|
export declare type TrelloAddChecklistToCardAction = TrelloAction & TrelloCardActionData & {
|
|
190249
190050
|
__typename?: 'TrelloAddChecklistToCardAction';
|
|
190250
190051
|
appCreator?: Maybe<TrelloAppCreator>;
|
|
190251
|
-
board?: Maybe<
|
|
190052
|
+
board?: Maybe<TrelloBaseBoard>;
|
|
190252
190053
|
card?: Maybe<TrelloBaseCard>;
|
|
190253
190054
|
checklist?: Maybe<TrelloChecklist>;
|
|
190254
190055
|
creator?: Maybe<TrelloMember>;
|
|
@@ -190285,7 +190086,7 @@ export declare type TrelloAddMemberInput = {
|
|
|
190285
190086
|
export declare type TrelloAddMemberToCardAction = TrelloAction & TrelloCardActionData & {
|
|
190286
190087
|
__typename?: 'TrelloAddMemberToCardAction';
|
|
190287
190088
|
appCreator?: Maybe<TrelloAppCreator>;
|
|
190288
|
-
board?: Maybe<
|
|
190089
|
+
board?: Maybe<TrelloBaseBoard>;
|
|
190289
190090
|
card?: Maybe<TrelloBaseCard>;
|
|
190290
190091
|
creator?: Maybe<TrelloMember>;
|
|
190291
190092
|
date?: Maybe<Scalars['DateTime']['output']>;
|
|
@@ -191180,7 +190981,7 @@ export declare type TrelloCardActionConnectionUpdated = {
|
|
|
191180
190981
|
edges?: Maybe<Array<TrelloCardActionEdgeUpdated>>;
|
|
191181
190982
|
};
|
|
191182
190983
|
export declare type TrelloCardActionData = {
|
|
191183
|
-
board?: Maybe<
|
|
190984
|
+
board?: Maybe<TrelloBaseBoard>;
|
|
191184
190985
|
card?: Maybe<TrelloBaseCard>;
|
|
191185
190986
|
};
|
|
191186
190987
|
export declare type TrelloCardActionEdge = {
|
|
@@ -191641,7 +191442,7 @@ export declare type TrelloCloseBoardPayload = Payload & {
|
|
|
191641
191442
|
export declare type TrelloCommentCardAction = TrelloAction & TrelloCardActionData & {
|
|
191642
191443
|
__typename?: 'TrelloCommentCardAction';
|
|
191643
191444
|
appCreator?: Maybe<TrelloAppCreator>;
|
|
191644
|
-
board?: Maybe<
|
|
191445
|
+
board?: Maybe<TrelloBaseBoard>;
|
|
191645
191446
|
card?: Maybe<TrelloBaseCard>;
|
|
191646
191447
|
creator?: Maybe<TrelloMember>;
|
|
191647
191448
|
date?: Maybe<Scalars['DateTime']['output']>;
|
|
@@ -191688,7 +191489,7 @@ export declare type TrelloCopiedCardSource = {
|
|
|
191688
191489
|
export declare type TrelloCopyCardAction = TrelloAction & TrelloCardActionData & {
|
|
191689
191490
|
__typename?: 'TrelloCopyCardAction';
|
|
191690
191491
|
appCreator?: Maybe<TrelloAppCreator>;
|
|
191691
|
-
board?: Maybe<
|
|
191492
|
+
board?: Maybe<TrelloBaseBoard>;
|
|
191692
191493
|
card?: Maybe<TrelloBaseCard>;
|
|
191693
191494
|
cardSource?: Maybe<TrelloBaseCard>;
|
|
191694
191495
|
creator?: Maybe<TrelloMember>;
|
|
@@ -191712,7 +191513,7 @@ export declare type TrelloCopyCardActionDisplayEntities = {
|
|
|
191712
191513
|
export declare type TrelloCopyCommentCardAction = TrelloAction & TrelloCardActionData & {
|
|
191713
191514
|
__typename?: 'TrelloCopyCommentCardAction';
|
|
191714
191515
|
appCreator?: Maybe<TrelloAppCreator>;
|
|
191715
|
-
board?: Maybe<
|
|
191516
|
+
board?: Maybe<TrelloBaseBoard>;
|
|
191716
191517
|
card?: Maybe<TrelloBaseCard>;
|
|
191717
191518
|
creator?: Maybe<TrelloMember>;
|
|
191718
191519
|
date?: Maybe<Scalars['DateTime']['output']>;
|
|
@@ -191735,7 +191536,7 @@ export declare type TrelloCopyCommentCardActionDisplayEntities = {
|
|
|
191735
191536
|
export declare type TrelloCopyInboxCardAction = TrelloAction & TrelloCardActionData & {
|
|
191736
191537
|
__typename?: 'TrelloCopyInboxCardAction';
|
|
191737
191538
|
appCreator?: Maybe<TrelloAppCreator>;
|
|
191738
|
-
board?: Maybe<
|
|
191539
|
+
board?: Maybe<TrelloBaseBoard>;
|
|
191739
191540
|
card?: Maybe<TrelloBaseCard>;
|
|
191740
191541
|
cardSource?: Maybe<TrelloBaseCard>;
|
|
191741
191542
|
creator?: Maybe<TrelloMember>;
|
|
@@ -191784,7 +191585,7 @@ export declare type TrelloCreateBoardWithAiPayload = Payload & {
|
|
|
191784
191585
|
export declare type TrelloCreateCardAction = TrelloAction & TrelloCardActionData & {
|
|
191785
191586
|
__typename?: 'TrelloCreateCardAction';
|
|
191786
191587
|
appCreator?: Maybe<TrelloAppCreator>;
|
|
191787
|
-
board?: Maybe<
|
|
191588
|
+
board?: Maybe<TrelloBaseBoard>;
|
|
191788
191589
|
card?: Maybe<TrelloBaseCard>;
|
|
191789
191590
|
creator?: Maybe<TrelloMember>;
|
|
191790
191591
|
date?: Maybe<Scalars['DateTime']['output']>;
|
|
@@ -191805,7 +191606,7 @@ export declare type TrelloCreateCardActionDisplayEntities = {
|
|
|
191805
191606
|
export declare type TrelloCreateCardFromCheckItemAction = TrelloAction & TrelloCardActionData & {
|
|
191806
191607
|
__typename?: 'TrelloCreateCardFromCheckItemAction';
|
|
191807
191608
|
appCreator?: Maybe<TrelloAppCreator>;
|
|
191808
|
-
board?: Maybe<
|
|
191609
|
+
board?: Maybe<TrelloBaseBoard>;
|
|
191809
191610
|
card?: Maybe<TrelloBaseCard>;
|
|
191810
191611
|
cardSource?: Maybe<TrelloBaseCard>;
|
|
191811
191612
|
checklist?: Maybe<TrelloChecklist>;
|
|
@@ -191829,7 +191630,7 @@ export declare type TrelloCreateCardFromCheckItemActionDisplayEntities = {
|
|
|
191829
191630
|
export declare type TrelloCreateCardFromEmailAction = TrelloAction & TrelloCardActionData & {
|
|
191830
191631
|
__typename?: 'TrelloCreateCardFromEmailAction';
|
|
191831
191632
|
appCreator?: Maybe<TrelloAppCreator>;
|
|
191832
|
-
board?: Maybe<
|
|
191633
|
+
board?: Maybe<TrelloBaseBoard>;
|
|
191833
191634
|
card?: Maybe<TrelloBaseCard>;
|
|
191834
191635
|
creationMethod?: Maybe<Scalars['String']['output']>;
|
|
191835
191636
|
creator?: Maybe<TrelloMember>;
|
|
@@ -191881,7 +191682,7 @@ export declare type TrelloCreateCustomFieldPayload = Payload & {
|
|
|
191881
191682
|
export declare type TrelloCreateInboxCardAction = TrelloAction & TrelloCardActionData & {
|
|
191882
191683
|
__typename?: 'TrelloCreateInboxCardAction';
|
|
191883
191684
|
appCreator?: Maybe<TrelloAppCreator>;
|
|
191884
|
-
board?: Maybe<
|
|
191685
|
+
board?: Maybe<TrelloBaseBoard>;
|
|
191885
191686
|
card?: Maybe<TrelloBaseCard>;
|
|
191886
191687
|
creator?: Maybe<TrelloMember>;
|
|
191887
191688
|
date?: Maybe<Scalars['DateTime']['output']>;
|
|
@@ -192089,7 +191890,7 @@ export declare type TrelloDeleteAttachmentFromCardAction = TrelloAction & Trello
|
|
|
192089
191890
|
__typename?: 'TrelloDeleteAttachmentFromCardAction';
|
|
192090
191891
|
appCreator?: Maybe<TrelloAppCreator>;
|
|
192091
191892
|
attachment?: Maybe<TrelloAttachment>;
|
|
192092
|
-
board?: Maybe<
|
|
191893
|
+
board?: Maybe<TrelloBaseBoard>;
|
|
192093
191894
|
card?: Maybe<TrelloBaseCard>;
|
|
192094
191895
|
creator?: Maybe<TrelloMember>;
|
|
192095
191896
|
date?: Maybe<Scalars['DateTime']['output']>;
|
|
@@ -192854,7 +192655,7 @@ export declare type TrelloModelMetadata = {
|
|
|
192854
192655
|
export declare type TrelloMoveCardAction = TrelloAction & TrelloCardActionData & {
|
|
192855
192656
|
__typename?: 'TrelloMoveCardAction';
|
|
192856
192657
|
appCreator?: Maybe<TrelloAppCreator>;
|
|
192857
|
-
board?: Maybe<
|
|
192658
|
+
board?: Maybe<TrelloBaseBoard>;
|
|
192858
192659
|
card?: Maybe<TrelloBaseCard>;
|
|
192859
192660
|
creator?: Maybe<TrelloMember>;
|
|
192860
192661
|
date?: Maybe<Scalars['DateTime']['output']>;
|
|
@@ -192884,7 +192685,7 @@ export declare type TrelloMoveCardBoardEntities = {
|
|
|
192884
192685
|
export declare type TrelloMoveCardToBoardAction = TrelloAction & TrelloCardActionData & {
|
|
192885
192686
|
__typename?: 'TrelloMoveCardToBoardAction';
|
|
192886
192687
|
appCreator?: Maybe<TrelloAppCreator>;
|
|
192887
|
-
board?: Maybe<
|
|
192688
|
+
board?: Maybe<TrelloBaseBoard>;
|
|
192888
192689
|
card?: Maybe<TrelloBaseCard>;
|
|
192889
192690
|
creator?: Maybe<TrelloMember>;
|
|
192890
192691
|
date?: Maybe<Scalars['DateTime']['output']>;
|
|
@@ -192899,7 +192700,7 @@ export declare type TrelloMoveCardToBoardAction = TrelloAction & TrelloCardActio
|
|
|
192899
192700
|
export declare type TrelloMoveInboxCardToBoardAction = TrelloAction & TrelloCardActionData & {
|
|
192900
192701
|
__typename?: 'TrelloMoveInboxCardToBoardAction';
|
|
192901
192702
|
appCreator?: Maybe<TrelloAppCreator>;
|
|
192902
|
-
board?: Maybe<
|
|
192703
|
+
board?: Maybe<TrelloBaseBoard>;
|
|
192903
192704
|
card?: Maybe<TrelloBaseCard>;
|
|
192904
192705
|
creator?: Maybe<TrelloMember>;
|
|
192905
192706
|
date?: Maybe<Scalars['DateTime']['output']>;
|
|
@@ -194351,7 +194152,7 @@ export declare type TrelloRemoveCardFromPlannerCalendarEventPayload = Payload &
|
|
|
194351
194152
|
export declare type TrelloRemoveChecklistFromCardAction = TrelloAction & TrelloCardActionData & {
|
|
194352
194153
|
__typename?: 'TrelloRemoveChecklistFromCardAction';
|
|
194353
194154
|
appCreator?: Maybe<TrelloAppCreator>;
|
|
194354
|
-
board?: Maybe<
|
|
194155
|
+
board?: Maybe<TrelloBaseBoard>;
|
|
194355
194156
|
card?: Maybe<TrelloBaseCard>;
|
|
194356
194157
|
checklist?: Maybe<TrelloChecklist>;
|
|
194357
194158
|
creator?: Maybe<TrelloMember>;
|
|
@@ -194384,7 +194185,7 @@ export declare type TrelloRemoveLabelsFromCardPayload = Payload & {
|
|
|
194384
194185
|
export declare type TrelloRemoveMemberFromCardAction = TrelloAction & TrelloCardActionData & {
|
|
194385
194186
|
__typename?: 'TrelloRemoveMemberFromCardAction';
|
|
194386
194187
|
appCreator?: Maybe<TrelloAppCreator>;
|
|
194387
|
-
board?: Maybe<
|
|
194188
|
+
board?: Maybe<TrelloBaseBoard>;
|
|
194388
194189
|
card?: Maybe<TrelloBaseCard>;
|
|
194389
194190
|
creator?: Maybe<TrelloMember>;
|
|
194390
194191
|
date?: Maybe<Scalars['DateTime']['output']>;
|
|
@@ -194862,7 +194663,7 @@ export declare type TrelloUpdateBoardVotingPermissionsPayload = Payload & {
|
|
|
194862
194663
|
export declare type TrelloUpdateCardClosedAction = TrelloAction & TrelloCardActionData & {
|
|
194863
194664
|
__typename?: 'TrelloUpdateCardClosedAction';
|
|
194864
194665
|
appCreator?: Maybe<TrelloAppCreator>;
|
|
194865
|
-
board?: Maybe<
|
|
194666
|
+
board?: Maybe<TrelloBaseBoard>;
|
|
194866
194667
|
card?: Maybe<TrelloBaseCard>;
|
|
194867
194668
|
creator?: Maybe<TrelloMember>;
|
|
194868
194669
|
date?: Maybe<Scalars['DateTime']['output']>;
|
|
@@ -194882,7 +194683,7 @@ export declare type TrelloUpdateCardClosedActionDisplayEntities = {
|
|
|
194882
194683
|
export declare type TrelloUpdateCardCompleteAction = TrelloAction & TrelloCardActionData & {
|
|
194883
194684
|
__typename?: 'TrelloUpdateCardCompleteAction';
|
|
194884
194685
|
appCreator?: Maybe<TrelloAppCreator>;
|
|
194885
|
-
board?: Maybe<
|
|
194686
|
+
board?: Maybe<TrelloBaseBoard>;
|
|
194886
194687
|
card?: Maybe<TrelloBaseCard>;
|
|
194887
194688
|
creator?: Maybe<TrelloMember>;
|
|
194888
194689
|
date?: Maybe<Scalars['DateTime']['output']>;
|
|
@@ -194921,7 +194722,7 @@ export declare type TrelloUpdateCardDateViewedByCreatorPayload = Payload & {
|
|
|
194921
194722
|
export declare type TrelloUpdateCardDueAction = TrelloAction & TrelloCardActionData & {
|
|
194922
194723
|
__typename?: 'TrelloUpdateCardDueAction';
|
|
194923
194724
|
appCreator?: Maybe<TrelloAppCreator>;
|
|
194924
|
-
board?: Maybe<
|
|
194725
|
+
board?: Maybe<TrelloBaseBoard>;
|
|
194925
194726
|
card?: Maybe<TrelloBaseCard>;
|
|
194926
194727
|
creator?: Maybe<TrelloMember>;
|
|
194927
194728
|
date?: Maybe<Scalars['DateTime']['output']>;
|
|
@@ -194963,7 +194764,7 @@ export declare type TrelloUpdateCardPositionOnPlannerCalendarEventPayload = Payl
|
|
|
194963
194764
|
export declare type TrelloUpdateCardRecurrenceRuleAction = TrelloAction & TrelloCardActionData & {
|
|
194964
194765
|
__typename?: 'TrelloUpdateCardRecurrenceRuleAction';
|
|
194965
194766
|
appCreator?: Maybe<TrelloAppCreator>;
|
|
194966
|
-
board?: Maybe<
|
|
194767
|
+
board?: Maybe<TrelloBaseBoard>;
|
|
194967
194768
|
card?: Maybe<TrelloBaseCard>;
|
|
194968
194769
|
creator?: Maybe<TrelloMember>;
|
|
194969
194770
|
date?: Maybe<Scalars['DateTime']['output']>;
|
|
@@ -194993,7 +194794,7 @@ export declare type TrelloUpdateCardRolePayload = Payload & {
|
|
|
194993
194794
|
export declare type TrelloUpdateCheckItemStateOnCardAction = TrelloAction & TrelloCardActionData & {
|
|
194994
194795
|
__typename?: 'TrelloUpdateCheckItemStateOnCardAction';
|
|
194995
194796
|
appCreator?: Maybe<TrelloAppCreator>;
|
|
194996
|
-
board?: Maybe<
|
|
194797
|
+
board?: Maybe<TrelloBaseBoard>;
|
|
194997
194798
|
card?: Maybe<TrelloBaseCard>;
|
|
194998
194799
|
checkItem?: Maybe<TrelloCheckItem>;
|
|
194999
194800
|
checklist?: Maybe<TrelloChecklist>;
|
|
@@ -195022,7 +194823,7 @@ export declare type TrelloUpdateCustomFieldInput = {
|
|
|
195022
194823
|
export declare type TrelloUpdateCustomFieldItemAction = TrelloAction & TrelloCardActionData & {
|
|
195023
194824
|
__typename?: 'TrelloUpdateCustomFieldItemAction';
|
|
195024
194825
|
appCreator?: Maybe<TrelloAppCreator>;
|
|
195025
|
-
board?: Maybe<
|
|
194826
|
+
board?: Maybe<TrelloBaseBoard>;
|
|
195026
194827
|
card?: Maybe<TrelloBaseCard>;
|
|
195027
194828
|
creator?: Maybe<TrelloMember>;
|
|
195028
194829
|
customField?: Maybe<TrelloCustomField>;
|
|
@@ -195094,6 +194895,7 @@ export declare type TrelloUpdateOAuth2ClientPayload = Payload & {
|
|
|
195094
194895
|
};
|
|
195095
194896
|
export declare type TrelloUpdatePlannerDueDateCardSettingsInput = {
|
|
195096
194897
|
assignedToMe?: InputMaybe<Scalars['Boolean']['input']>;
|
|
194898
|
+
soloBoards?: InputMaybe<Scalars['Boolean']['input']>;
|
|
195097
194899
|
};
|
|
195098
194900
|
export declare type TrelloUpdatePlannerDueDateCardSettingsPayload = Payload & {
|
|
195099
194901
|
__typename?: 'TrelloUpdatePlannerDueDateCardSettingsPayload';
|