@forge/cli-shared 8.22.0 → 8.22.1-next.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +7 -0
- package/out/graphql/graphql-types.d.ts +638 -7
- package/out/graphql/graphql-types.d.ts.map +1 -1
- package/out/graphql/graphql-types.js +108 -45
- package/package.json +2 -2
|
@@ -164,6 +164,17 @@ export declare type AiOpsIncidentAffectedServiceDetail = {
|
|
|
164
164
|
name?: Maybe<Scalars['String']['output']>;
|
|
165
165
|
serviceId?: Maybe<Scalars['String']['output']>;
|
|
166
166
|
};
|
|
167
|
+
export declare type AiOpsIncidentRelatedAlertsInput = {
|
|
168
|
+
incidentId: Scalars['String']['input'];
|
|
169
|
+
onlyAlerts?: InputMaybe<Scalars['Boolean']['input']>;
|
|
170
|
+
priorities?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
171
|
+
serviceIds?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
172
|
+
};
|
|
173
|
+
export declare type AiOpsIncidentRelatedAlertsResponse = {
|
|
174
|
+
__typename?: 'AIOpsIncidentRelatedAlertsResponse';
|
|
175
|
+
alertSearchPagePath?: Maybe<Scalars['String']['output']>;
|
|
176
|
+
entries?: Maybe<Array<AiOpsRelatedAlertEntry>>;
|
|
177
|
+
};
|
|
167
178
|
export declare type AiOpsIncidentSuggestedAction = {
|
|
168
179
|
description?: Maybe<Scalars['String']['output']>;
|
|
169
180
|
descriptionList?: Maybe<Array<Scalars['String']['output']>>;
|
|
@@ -304,6 +315,62 @@ export declare enum AiOpsInvestigationStatus {
|
|
|
304
315
|
InProgress = "IN_PROGRESS",
|
|
305
316
|
New = "NEW"
|
|
306
317
|
}
|
|
318
|
+
export declare type AiOpsRelatedAlert = AiOpsRelatedAlertEntry & {
|
|
319
|
+
__typename?: 'AIOpsRelatedAlert';
|
|
320
|
+
alertDetailsPagePath?: Maybe<Scalars['String']['output']>;
|
|
321
|
+
createdAt?: Maybe<Scalars['Long']['output']>;
|
|
322
|
+
id?: Maybe<Scalars['ID']['output']>;
|
|
323
|
+
lastUpdatedAt?: Maybe<Scalars['Long']['output']>;
|
|
324
|
+
owner?: Maybe<Scalars['String']['output']>;
|
|
325
|
+
priority?: Maybe<AiOpsRelatedAlertPriority>;
|
|
326
|
+
responders?: Maybe<Array<AiOpsRelatedAlertResponder>>;
|
|
327
|
+
status?: Maybe<AiOpsRelatedAlertStatus>;
|
|
328
|
+
tinyId?: Maybe<Scalars['String']['output']>;
|
|
329
|
+
title?: Maybe<Scalars['String']['output']>;
|
|
330
|
+
};
|
|
331
|
+
export declare type AiOpsRelatedAlertEntry = {
|
|
332
|
+
createdAt?: Maybe<Scalars['Long']['output']>;
|
|
333
|
+
id?: Maybe<Scalars['ID']['output']>;
|
|
334
|
+
lastUpdatedAt?: Maybe<Scalars['Long']['output']>;
|
|
335
|
+
owner?: Maybe<Scalars['String']['output']>;
|
|
336
|
+
priority?: Maybe<AiOpsRelatedAlertPriority>;
|
|
337
|
+
responders?: Maybe<Array<AiOpsRelatedAlertResponder>>;
|
|
338
|
+
status?: Maybe<AiOpsRelatedAlertStatus>;
|
|
339
|
+
tinyId?: Maybe<Scalars['String']['output']>;
|
|
340
|
+
title?: Maybe<Scalars['String']['output']>;
|
|
341
|
+
};
|
|
342
|
+
export declare type AiOpsRelatedAlertGroup = AiOpsRelatedAlertEntry & {
|
|
343
|
+
__typename?: 'AIOpsRelatedAlertGroup';
|
|
344
|
+
createdAt?: Maybe<Scalars['Long']['output']>;
|
|
345
|
+
id?: Maybe<Scalars['ID']['output']>;
|
|
346
|
+
lastUpdatedAt?: Maybe<Scalars['Long']['output']>;
|
|
347
|
+
memberCount?: Maybe<Scalars['Int']['output']>;
|
|
348
|
+
owner?: Maybe<Scalars['String']['output']>;
|
|
349
|
+
priority?: Maybe<AiOpsRelatedAlertPriority>;
|
|
350
|
+
responders?: Maybe<Array<AiOpsRelatedAlertResponder>>;
|
|
351
|
+
status?: Maybe<AiOpsRelatedAlertStatus>;
|
|
352
|
+
tinyId?: Maybe<Scalars['String']['output']>;
|
|
353
|
+
title?: Maybe<Scalars['String']['output']>;
|
|
354
|
+
};
|
|
355
|
+
export declare enum AiOpsRelatedAlertPriority {
|
|
356
|
+
P1 = "P1",
|
|
357
|
+
P2 = "P2",
|
|
358
|
+
P3 = "P3",
|
|
359
|
+
P4 = "P4",
|
|
360
|
+
P5 = "P5"
|
|
361
|
+
}
|
|
362
|
+
export declare type AiOpsRelatedAlertResponder = {
|
|
363
|
+
__typename?: 'AIOpsRelatedAlertResponder';
|
|
364
|
+
id?: Maybe<Scalars['ID']['output']>;
|
|
365
|
+
type?: Maybe<Scalars['String']['output']>;
|
|
366
|
+
};
|
|
367
|
+
export declare enum AiOpsRelatedAlertStatus {
|
|
368
|
+
Acked = "ACKED",
|
|
369
|
+
Closed = "CLOSED",
|
|
370
|
+
Open = "OPEN",
|
|
371
|
+
Resolved = "RESOLVED",
|
|
372
|
+
Snoozed = "SNOOZED"
|
|
373
|
+
}
|
|
307
374
|
export declare type AiOpsTriggerInvestigationInput = {
|
|
308
375
|
inScopeServiceIds: Array<Scalars['ID']['input']>;
|
|
309
376
|
sourceEntityId: Scalars['ID']['input'];
|
|
@@ -548,7 +615,9 @@ export declare type AvpAnalyticsDiscardModelUpdatesPayload = Payload & {
|
|
|
548
615
|
};
|
|
549
616
|
export declare type AvpAnalyticsError = {
|
|
550
617
|
__typename?: 'AVPAnalyticsError';
|
|
618
|
+
field?: Maybe<AvpAnalyticsModelErrorField>;
|
|
551
619
|
message: Scalars['String']['output'];
|
|
620
|
+
type?: Maybe<AvpAnalyticsModelErrorType>;
|
|
552
621
|
};
|
|
553
622
|
export declare type AvpAnalyticsFilter = {
|
|
554
623
|
type: AvpAnalyticsFilterType;
|
|
@@ -714,6 +783,7 @@ export declare type AvpAnalyticsJoinPaths = {
|
|
|
714
783
|
__typename?: 'AVPAnalyticsJoinPaths';
|
|
715
784
|
columnPairs: Array<AvpAnalyticsJoinColumnPairs>;
|
|
716
785
|
error?: Maybe<AvpAnalyticsJoinConfigurationError>;
|
|
786
|
+
errors?: Maybe<Array<AvpAnalyticsError>>;
|
|
717
787
|
joinType: AvpAnalyticsJoinType;
|
|
718
788
|
leftModelId: Scalars['ID']['output'];
|
|
719
789
|
rightModelId: Scalars['ID']['output'];
|
|
@@ -960,6 +1030,31 @@ export declare type AvpAnalyticsModelEdge = {
|
|
|
960
1030
|
cursor?: Maybe<Scalars['String']['output']>;
|
|
961
1031
|
node: AvpAnalyticsModel;
|
|
962
1032
|
};
|
|
1033
|
+
export declare enum AvpAnalyticsModelErrorField {
|
|
1034
|
+
Column = "COLUMN",
|
|
1035
|
+
JoinLeft = "JOIN_LEFT",
|
|
1036
|
+
JoinRight = "JOIN_RIGHT",
|
|
1037
|
+
ModelDefinition = "MODEL_DEFINITION",
|
|
1038
|
+
ModelFilter = "MODEL_FILTER",
|
|
1039
|
+
ModelName = "MODEL_NAME"
|
|
1040
|
+
}
|
|
1041
|
+
export declare enum AvpAnalyticsModelErrorType {
|
|
1042
|
+
ColumnDuplicateName = "COLUMN_DUPLICATE_NAME",
|
|
1043
|
+
FormulaColumnCircularDependency = "FORMULA_COLUMN_CIRCULAR_DEPENDENCY",
|
|
1044
|
+
FormulaColumnExpressionInvalid = "FORMULA_COLUMN_EXPRESSION_INVALID",
|
|
1045
|
+
FormulaColumnReferenceInvalid = "FORMULA_COLUMN_REFERENCE_INVALID",
|
|
1046
|
+
FormulaColumnReferenceNotFound = "FORMULA_COLUMN_REFERENCE_NOT_FOUND",
|
|
1047
|
+
FormulaColumnReferenceTypeUnsupported = "FORMULA_COLUMN_REFERENCE_TYPE_UNSUPPORTED",
|
|
1048
|
+
JoinDataSourceNotFound = "JOIN_DATA_SOURCE_NOT_FOUND",
|
|
1049
|
+
ModelColumnsRequired = "MODEL_COLUMNS_REQUIRED",
|
|
1050
|
+
ModelDefinitionRequired = "MODEL_DEFINITION_REQUIRED",
|
|
1051
|
+
ModelFilterColumnInvalid = "MODEL_FILTER_COLUMN_INVALID",
|
|
1052
|
+
ModelFilterColumnNotFound = "MODEL_FILTER_COLUMN_NOT_FOUND",
|
|
1053
|
+
ModelNameRequired = "MODEL_NAME_REQUIRED",
|
|
1054
|
+
SimpleColumnDisconnectedJoin = "SIMPLE_COLUMN_DISCONNECTED_JOIN",
|
|
1055
|
+
SimpleColumnDuplicateSource = "SIMPLE_COLUMN_DUPLICATE_SOURCE",
|
|
1056
|
+
SimpleColumnSourceNotFound = "SIMPLE_COLUMN_SOURCE_NOT_FOUND"
|
|
1057
|
+
}
|
|
963
1058
|
export declare type AvpAnalyticsModelFilter = {
|
|
964
1059
|
__typename?: 'AVPAnalyticsModelFilter';
|
|
965
1060
|
columnName: Scalars['String']['output'];
|
|
@@ -1530,6 +1625,7 @@ export declare type AvpDashboard = Node & {
|
|
|
1530
1625
|
title?: Maybe<Scalars['String']['output']>;
|
|
1531
1626
|
trashedAt?: Maybe<Scalars['String']['output']>;
|
|
1532
1627
|
updatedAt?: Maybe<Scalars['String']['output']>;
|
|
1628
|
+
url?: Maybe<Scalars['String']['output']>;
|
|
1533
1629
|
};
|
|
1534
1630
|
export declare type AvpDashboardCanvasLayout = {
|
|
1535
1631
|
__typename?: 'AVPDashboardCanvasLayout';
|
|
@@ -2061,12 +2157,14 @@ export declare type AvpPlatformDimension = {
|
|
|
2061
2157
|
dynamicDimensionKey?: Maybe<Scalars['String']['output']>;
|
|
2062
2158
|
name: Scalars['String']['output'];
|
|
2063
2159
|
product: Scalars['String']['output'];
|
|
2160
|
+
subProduct?: Maybe<Scalars['String']['output']>;
|
|
2064
2161
|
};
|
|
2065
2162
|
export declare type AvpPlatformDimensionInput = {
|
|
2066
2163
|
datasourceLocator: AvpDatasourceLocatorInput;
|
|
2067
2164
|
dynamicDimensionKey?: InputMaybe<Scalars['String']['input']>;
|
|
2068
2165
|
name: Scalars['String']['input'];
|
|
2069
2166
|
product: Scalars['String']['input'];
|
|
2167
|
+
subProduct?: InputMaybe<Scalars['String']['input']>;
|
|
2070
2168
|
};
|
|
2071
2169
|
export declare type AvpPlatformFilter = {
|
|
2072
2170
|
__typename?: 'AVPPlatformFilter';
|
|
@@ -4306,6 +4404,11 @@ export declare type AdminStringKeyValuePair = {
|
|
|
4306
4404
|
key: Scalars['String']['output'];
|
|
4307
4405
|
value: Scalars['String']['output'];
|
|
4308
4406
|
};
|
|
4407
|
+
export declare type AdminTest = {
|
|
4408
|
+
__typename?: 'AdminTest';
|
|
4409
|
+
message?: Maybe<Scalars['String']['output']>;
|
|
4410
|
+
timestamp?: Maybe<Scalars['String']['output']>;
|
|
4411
|
+
};
|
|
4309
4412
|
export declare enum AdminTimeSearchType {
|
|
4310
4413
|
BetweenAbsolute = "BETWEEN_ABSOLUTE",
|
|
4311
4414
|
BetweenRelative = "BETWEEN_RELATIVE",
|
|
@@ -6917,6 +7020,28 @@ export declare type AgentWorkspaceRestoreSkillPayload = {
|
|
|
6917
7020
|
errors?: Maybe<Array<MutationError>>;
|
|
6918
7021
|
success: Scalars['Boolean']['output'];
|
|
6919
7022
|
};
|
|
7023
|
+
export declare type AgentWorkspaceRoutingTableGeneration = {
|
|
7024
|
+
__typename?: 'AgentWorkspaceRoutingTableGeneration';
|
|
7025
|
+
completedServices: Scalars['Int']['output'];
|
|
7026
|
+
currentPhase?: Maybe<AgentWorkspaceRoutingTableGenerationPhase>;
|
|
7027
|
+
endedAt?: Maybe<Scalars['DateTime']['output']>;
|
|
7028
|
+
errorMessage?: Maybe<Scalars['String']['output']>;
|
|
7029
|
+
generationId: Scalars['ID']['output'];
|
|
7030
|
+
startedAt: Scalars['DateTime']['output'];
|
|
7031
|
+
status: AgentWorkspaceRoutingTableGenerationStatus;
|
|
7032
|
+
totalServices: Scalars['Int']['output'];
|
|
7033
|
+
triggeredBy?: Maybe<Scalars['String']['output']>;
|
|
7034
|
+
};
|
|
7035
|
+
export declare enum AgentWorkspaceRoutingTableGenerationPhase {
|
|
7036
|
+
AnalysingWithAi = "ANALYSING_WITH_AI",
|
|
7037
|
+
SavingResults = "SAVING_RESULTS",
|
|
7038
|
+
ScanningTickets = "SCANNING_TICKETS"
|
|
7039
|
+
}
|
|
7040
|
+
export declare enum AgentWorkspaceRoutingTableGenerationStatus {
|
|
7041
|
+
Completed = "COMPLETED",
|
|
7042
|
+
Failed = "FAILED",
|
|
7043
|
+
InProgress = "IN_PROGRESS"
|
|
7044
|
+
}
|
|
6920
7045
|
export declare type AgentWorkspaceSchedule = {
|
|
6921
7046
|
__typename?: 'AgentWorkspaceSchedule';
|
|
6922
7047
|
agents: Array<AgentWorkspaceAgent>;
|
|
@@ -7207,6 +7332,18 @@ export declare type AgentWorkspaceStartBulkImportPayload = {
|
|
|
7207
7332
|
jobId?: Maybe<Scalars['ID']['output']>;
|
|
7208
7333
|
status?: Maybe<AgentWorkspaceBulkImportJobStatus>;
|
|
7209
7334
|
};
|
|
7335
|
+
export declare type AgentWorkspaceStartGenerateRoutingTableInput = {
|
|
7336
|
+
cloudId: Scalars['ID']['input'];
|
|
7337
|
+
days?: InputMaybe<Scalars['Int']['input']>;
|
|
7338
|
+
maxIssues?: InputMaybe<Scalars['Int']['input']>;
|
|
7339
|
+
projectKey: Scalars['String']['input'];
|
|
7340
|
+
serviceFieldId: Scalars['String']['input'];
|
|
7341
|
+
};
|
|
7342
|
+
export declare type AgentWorkspaceStartGenerateRoutingTablePayload = {
|
|
7343
|
+
__typename?: 'AgentWorkspaceStartGenerateRoutingTablePayload';
|
|
7344
|
+
generationId: Scalars['ID']['output'];
|
|
7345
|
+
status: AgentWorkspaceRoutingTableGenerationStatus;
|
|
7346
|
+
};
|
|
7210
7347
|
export declare type AgentWorkspaceTeamCapacitiesInput = {
|
|
7211
7348
|
cloudId: Scalars['ID']['input'];
|
|
7212
7349
|
projectKey: Scalars['String']['input'];
|
|
@@ -12449,6 +12586,15 @@ export declare type AssetsVerticalDefaultAttributeOnObject = AssetsVerticalAttri
|
|
|
12449
12586
|
searchValue?: Maybe<Scalars['String']['output']>;
|
|
12450
12587
|
value?: Maybe<Scalars['String']['output']>;
|
|
12451
12588
|
};
|
|
12589
|
+
export declare type AssetsVerticalDefaultError = AssetsVerticalProblemDetail & {
|
|
12590
|
+
__typename?: 'AssetsVerticalDefaultError';
|
|
12591
|
+
correctionGuidance?: Maybe<Scalars['String']['output']>;
|
|
12592
|
+
detail: Scalars['String']['output'];
|
|
12593
|
+
instance?: Maybe<Scalars['String']['output']>;
|
|
12594
|
+
status?: Maybe<Scalars['Int']['output']>;
|
|
12595
|
+
title: Scalars['String']['output'];
|
|
12596
|
+
type?: Maybe<Scalars['String']['output']>;
|
|
12597
|
+
};
|
|
12452
12598
|
export declare type AssetsVerticalDeleteAssetTypesTrackingInput = {
|
|
12453
12599
|
cloudId: Scalars['ID']['input'];
|
|
12454
12600
|
id: Scalars['ID']['input'];
|
|
@@ -12741,6 +12887,7 @@ export declare type AssetsVerticalKeyValueInput = {
|
|
|
12741
12887
|
value: Scalars['String']['input'];
|
|
12742
12888
|
};
|
|
12743
12889
|
export declare type AssetsVerticalModelItamAttributesResult = AssetsVerticalItamAttributes | QueryError;
|
|
12890
|
+
export declare type AssetsVerticalModelObjectTypesResult = AssetsVerticalObjectTypes | QueryError;
|
|
12744
12891
|
export declare type AssetsVerticalModelObjects = AssetsVerticalObjects & {
|
|
12745
12892
|
__typename?: 'AssetsVerticalModelObjects';
|
|
12746
12893
|
itamObjects?: Maybe<Array<Maybe<AssetsVerticalItamObjects>>>;
|
|
@@ -12828,6 +12975,14 @@ export declare type AssetsVerticalObjectsSuccess = {
|
|
|
12828
12975
|
pageInfo?: Maybe<PageInfo>;
|
|
12829
12976
|
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
12830
12977
|
};
|
|
12978
|
+
export declare type AssetsVerticalProblemDetail = {
|
|
12979
|
+
correctionGuidance?: Maybe<Scalars['String']['output']>;
|
|
12980
|
+
detail: Scalars['String']['output'];
|
|
12981
|
+
instance?: Maybe<Scalars['String']['output']>;
|
|
12982
|
+
status?: Maybe<Scalars['Int']['output']>;
|
|
12983
|
+
title: Scalars['String']['output'];
|
|
12984
|
+
type?: Maybe<Scalars['String']['output']>;
|
|
12985
|
+
};
|
|
12831
12986
|
export declare type AssetsVerticalRole = {
|
|
12832
12987
|
__typename?: 'AssetsVerticalRole';
|
|
12833
12988
|
description?: Maybe<Scalars['String']['output']>;
|
|
@@ -13084,7 +13239,8 @@ export declare enum AssetsVerticalVerticalInstantiationErrorCode {
|
|
|
13084
13239
|
ValidationFailed = "VALIDATION_FAILED"
|
|
13085
13240
|
}
|
|
13086
13241
|
export declare type AssetsVerticalVerticalInstantiationInlineCategoryInput = {
|
|
13087
|
-
|
|
13242
|
+
category?: InputMaybe<AssetsVerticalVerticalInstantiationCategoryType>;
|
|
13243
|
+
type?: InputMaybe<AssetsVerticalVerticalInstantiationCategoryType>;
|
|
13088
13244
|
};
|
|
13089
13245
|
export declare type AssetsVerticalVerticalInstantiationMutationErrorExtension = MutationErrorExtension & {
|
|
13090
13246
|
__typename?: 'AssetsVerticalVerticalInstantiationMutationErrorExtension';
|
|
@@ -13150,6 +13306,7 @@ export declare type AssetsVerticalVerticalTemplateQueryErrorExtension = QueryErr
|
|
|
13150
13306
|
statusCode?: Maybe<Scalars['Int']['output']>;
|
|
13151
13307
|
};
|
|
13152
13308
|
export declare type AssetsVerticalVerticalTemplateResult = AssetsVerticalVerticalTemplate | QueryError;
|
|
13309
|
+
export declare type AssetsVerticalVerticalTemplateV2Result = AssetsVerticalDefaultError | AssetsVerticalVerticalTemplate;
|
|
13153
13310
|
export declare enum AssetsVerticalVerticalType {
|
|
13154
13311
|
Ham = "HAM"
|
|
13155
13312
|
}
|
|
@@ -36724,6 +36881,17 @@ export declare type CsmAiAuthoredCoachingContentInput = {
|
|
|
36724
36881
|
triggerBehaviorByCoach?: InputMaybe<Scalars['String']['input']>;
|
|
36725
36882
|
triggerConditionByCoach?: InputMaybe<Scalars['String']['input']>;
|
|
36726
36883
|
};
|
|
36884
|
+
export declare type CsmAiAvailableKnowledgeSource = {
|
|
36885
|
+
__typename?: 'CsmAiAvailableKnowledgeSource';
|
|
36886
|
+
isConfigured: Scalars['Boolean']['output'];
|
|
36887
|
+
isConnected: Scalars['Boolean']['output'];
|
|
36888
|
+
sourceType: Scalars['String']['output'];
|
|
36889
|
+
};
|
|
36890
|
+
export declare type CsmAiAvailableKnowledgeSourcesPayload = {
|
|
36891
|
+
__typename?: 'CsmAiAvailableKnowledgeSourcesPayload';
|
|
36892
|
+
sources: Array<CsmAiAvailableKnowledgeSource>;
|
|
36893
|
+
};
|
|
36894
|
+
export declare type CsmAiAvailableKnowledgeSourcesResult = CsmAiAvailableKnowledgeSourcesPayload | QueryError;
|
|
36727
36895
|
export declare type CsmAiByodContent = {
|
|
36728
36896
|
__typename?: 'CsmAiByodContent';
|
|
36729
36897
|
datasourceId: Scalars['String']['output'];
|
|
@@ -43100,7 +43268,7 @@ export declare type EcosystemMutationCreateAppVersionRolloutArgs = {
|
|
|
43100
43268
|
};
|
|
43101
43269
|
export declare type EcosystemMutationCreateRollingReleaseArgs = {
|
|
43102
43270
|
appId: Scalars['ID']['input'];
|
|
43103
|
-
|
|
43271
|
+
environmentId: Scalars['ID']['input'];
|
|
43104
43272
|
targetVersionId?: InputMaybe<Scalars['ID']['input']>;
|
|
43105
43273
|
};
|
|
43106
43274
|
export declare type EcosystemMutationDeleteAppEnvironmentArgs = {
|
|
@@ -43152,6 +43320,10 @@ export declare type EcosystemMutationUpdateInstallationRemoteRegionArgs = {
|
|
|
43152
43320
|
export declare type EcosystemMutationUpdateUserInstallationRulesArgs = {
|
|
43153
43321
|
input: UpdateUserInstallationRulesInput;
|
|
43154
43322
|
};
|
|
43323
|
+
export declare type EcosystemOrgUnit = {
|
|
43324
|
+
__typename?: 'EcosystemOrgUnit';
|
|
43325
|
+
id: Scalars['ID']['output'];
|
|
43326
|
+
};
|
|
43155
43327
|
export declare type EcosystemQuery = {
|
|
43156
43328
|
__typename?: 'EcosystemQuery';
|
|
43157
43329
|
appByOauthClient?: Maybe<App>;
|
|
@@ -43174,6 +43346,7 @@ export declare type EcosystemQuery = {
|
|
|
43174
43346
|
globalInstallationConfig?: Maybe<Array<Maybe<EcosystemGlobalInstallationOverride>>>;
|
|
43175
43347
|
marketplaceData?: Maybe<EcosystemMarketplaceData>;
|
|
43176
43348
|
rollingReleases?: Maybe<EcosystemRollingReleaseConnection>;
|
|
43349
|
+
unitsForOrg?: Maybe<EcosystemUnitsForOrgResponse>;
|
|
43177
43350
|
userAccess?: Maybe<UserAccess>;
|
|
43178
43351
|
userGrants?: Maybe<UserGrantConnection>;
|
|
43179
43352
|
userInstallationRules?: Maybe<UserInstallationRules>;
|
|
@@ -43260,6 +43433,9 @@ export declare type EcosystemQueryRollingReleasesArgs = {
|
|
|
43260
43433
|
environmentId?: InputMaybe<Scalars['ID']['input']>;
|
|
43261
43434
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
43262
43435
|
};
|
|
43436
|
+
export declare type EcosystemQueryUnitsForOrgArgs = {
|
|
43437
|
+
orgId: Scalars['ID']['input'];
|
|
43438
|
+
};
|
|
43263
43439
|
export declare type EcosystemQueryUserAccessArgs = {
|
|
43264
43440
|
contextId: Scalars['ID']['input'];
|
|
43265
43441
|
definitionId: Scalars['ID']['input'];
|
|
@@ -43340,6 +43516,10 @@ export declare type EcosystemSubscriptionRealtimeChannelArgs = {
|
|
|
43340
43516
|
name: Scalars['String']['input'];
|
|
43341
43517
|
token?: InputMaybe<Scalars['String']['input']>;
|
|
43342
43518
|
};
|
|
43519
|
+
export declare type EcosystemUnitsForOrgResponse = {
|
|
43520
|
+
__typename?: 'EcosystemUnitsForOrgResponse';
|
|
43521
|
+
units: Array<EcosystemOrgUnit>;
|
|
43522
|
+
};
|
|
43343
43523
|
export declare type EcosystemUpdateAppOAuthClientResult = Payload & {
|
|
43344
43524
|
__typename?: 'EcosystemUpdateAppOAuthClientResult';
|
|
43345
43525
|
errors?: Maybe<Array<MutationError>>;
|
|
@@ -51412,6 +51592,7 @@ export declare type GraphStore = {
|
|
|
51412
51592
|
atlasProjectLinksJiraSpaceInverse?: Maybe<GraphStoreSimplifiedAtlasProjectLinksJiraSpaceInverseConnection>;
|
|
51413
51593
|
atlasProjectTrackedOnJiraWorkItem?: Maybe<GraphStoreSimplifiedAtlasProjectTrackedOnJiraWorkItemConnection>;
|
|
51414
51594
|
atlasProjectTrackedOnJiraWorkItemInverse?: Maybe<GraphStoreSimplifiedAtlasProjectTrackedOnJiraWorkItemInverseConnection>;
|
|
51595
|
+
atlassianUserApprovesConfluenceApprovalInverse?: Maybe<GraphStoreSimplifiedAtlassianUserApprovesConfluenceApprovalInverseConnection>;
|
|
51415
51596
|
atlassianUserCreatedAtlassianGoalUpdate?: Maybe<GraphStoreSimplifiedAtlassianUserCreatedAtlassianGoalUpdateConnection>;
|
|
51416
51597
|
atlassianUserCreatedAtlassianGoalUpdateInverse?: Maybe<GraphStoreSimplifiedAtlassianUserCreatedAtlassianGoalUpdateInverseConnection>;
|
|
51417
51598
|
atlassianUserCreatedAtlassianProjectUpdate?: Maybe<GraphStoreSimplifiedAtlassianUserCreatedAtlassianProjectUpdateConnection>;
|
|
@@ -51469,6 +51650,7 @@ export declare type GraphStore = {
|
|
|
51469
51650
|
atlassianUserOwnsExternalTestStatus?: Maybe<GraphStoreSimplifiedAtlassianUserOwnsExternalTestStatusConnection>;
|
|
51470
51651
|
atlassianUserOwnsExternalTestStatusInverse?: Maybe<GraphStoreSimplifiedAtlassianUserOwnsExternalTestStatusInverseConnection>;
|
|
51471
51652
|
atlassianUserOwnsInferredProjectInverse?: Maybe<GraphStoreSimplifiedAtlassianUserOwnsInferredProjectInverseConnection>;
|
|
51653
|
+
atlassianUserReviewedConfluenceApprovalInverse?: Maybe<GraphStoreSimplifiedAtlassianUserReviewedConfluenceApprovalInverseConnection>;
|
|
51472
51654
|
atlassianUserUpdatedExternalCampaign?: Maybe<GraphStoreSimplifiedAtlassianUserUpdatedExternalCampaignConnection>;
|
|
51473
51655
|
atlassianUserUpdatedExternalCampaignInverse?: Maybe<GraphStoreSimplifiedAtlassianUserUpdatedExternalCampaignInverseConnection>;
|
|
51474
51656
|
atlassianUserUpdatedExternalCase?: Maybe<GraphStoreSimplifiedAtlassianUserUpdatedExternalCaseConnection>;
|
|
@@ -51535,6 +51717,7 @@ export declare type GraphStore = {
|
|
|
51535
51717
|
confluenceBlogpostSharedWithUserInverse?: Maybe<GraphStoreSimplifiedConfluenceBlogpostSharedWithUserInverseConnection>;
|
|
51536
51718
|
confluencePageHasComment?: Maybe<GraphStoreSimplifiedConfluencePageHasCommentConnection>;
|
|
51537
51719
|
confluencePageHasCommentInverse?: Maybe<GraphStoreSimplifiedConfluencePageHasCommentInverseConnection>;
|
|
51720
|
+
confluencePageHasConfluenceApprovalInverse?: Maybe<GraphStoreSimplifiedConfluencePageHasConfluenceApprovalInverseConnection>;
|
|
51538
51721
|
confluencePageHasConfluenceComment?: Maybe<GraphStoreSimplifiedConfluencePageHasConfluenceCommentConnection>;
|
|
51539
51722
|
confluencePageHasConfluenceCommentInverse?: Maybe<GraphStoreSimplifiedConfluencePageHasConfluenceCommentInverseConnection>;
|
|
51540
51723
|
confluencePageHasConfluenceDatabase?: Maybe<GraphStoreSimplifiedConfluencePageHasConfluenceDatabaseConnection>;
|
|
@@ -52963,6 +53146,14 @@ export declare type GraphStoreAtlasProjectTrackedOnJiraWorkItemInverseArgs = {
|
|
|
52963
53146
|
queryContext?: InputMaybe<Scalars['String']['input']>;
|
|
52964
53147
|
sort?: InputMaybe<GraphStoreAtlasProjectTrackedOnJiraWorkItemSortInput>;
|
|
52965
53148
|
};
|
|
53149
|
+
export declare type GraphStoreAtlassianUserApprovesConfluenceApprovalInverseArgs = {
|
|
53150
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
53151
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
53152
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
53153
|
+
id: Scalars['ID']['input'];
|
|
53154
|
+
queryContext?: InputMaybe<Scalars['String']['input']>;
|
|
53155
|
+
sort?: InputMaybe<GraphStoreAtlassianUserApprovesConfluenceApprovalSortInput>;
|
|
53156
|
+
};
|
|
52966
53157
|
export declare type GraphStoreAtlassianUserCreatedAtlassianGoalUpdateArgs = {
|
|
52967
53158
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
52968
53159
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -53419,6 +53610,14 @@ export declare type GraphStoreAtlassianUserOwnsInferredProjectInverseArgs = {
|
|
|
53419
53610
|
queryContext?: InputMaybe<Scalars['String']['input']>;
|
|
53420
53611
|
sort?: InputMaybe<GraphStoreAtlassianUserOwnsInferredProjectSortInput>;
|
|
53421
53612
|
};
|
|
53613
|
+
export declare type GraphStoreAtlassianUserReviewedConfluenceApprovalInverseArgs = {
|
|
53614
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
53615
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
53616
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
53617
|
+
id: Scalars['ID']['input'];
|
|
53618
|
+
queryContext?: InputMaybe<Scalars['String']['input']>;
|
|
53619
|
+
sort?: InputMaybe<GraphStoreAtlassianUserReviewedConfluenceApprovalSortInput>;
|
|
53620
|
+
};
|
|
53422
53621
|
export declare type GraphStoreAtlassianUserUpdatedExternalCampaignArgs = {
|
|
53423
53622
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
53424
53623
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -53929,6 +54128,14 @@ export declare type GraphStoreConfluencePageHasCommentInverseArgs = {
|
|
|
53929
54128
|
queryContext?: InputMaybe<Scalars['String']['input']>;
|
|
53930
54129
|
sort?: InputMaybe<GraphStoreConfluencePageHasCommentSortInput>;
|
|
53931
54130
|
};
|
|
54131
|
+
export declare type GraphStoreConfluencePageHasConfluenceApprovalInverseArgs = {
|
|
54132
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
54133
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
54134
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
54135
|
+
id: Scalars['ID']['input'];
|
|
54136
|
+
queryContext?: InputMaybe<Scalars['String']['input']>;
|
|
54137
|
+
sort?: InputMaybe<GraphStoreConfluencePageHasConfluenceApprovalSortInput>;
|
|
54138
|
+
};
|
|
53932
54139
|
export declare type GraphStoreConfluencePageHasConfluenceCommentArgs = {
|
|
53933
54140
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
53934
54141
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -61379,6 +61586,9 @@ export declare type GraphStoreAtlasProjectLinksJiraSpaceSortInput = {
|
|
|
61379
61586
|
export declare type GraphStoreAtlasProjectTrackedOnJiraWorkItemSortInput = {
|
|
61380
61587
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
61381
61588
|
};
|
|
61589
|
+
export declare type GraphStoreAtlassianUserApprovesConfluenceApprovalSortInput = {
|
|
61590
|
+
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
61591
|
+
};
|
|
61382
61592
|
export declare type GraphStoreAtlassianUserCreatedAtlassianGoalUpdateSortInput = {
|
|
61383
61593
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
61384
61594
|
};
|
|
@@ -61504,6 +61714,9 @@ export declare type GraphStoreAtlassianUserOwnsExternalTestStatusSortInput = {
|
|
|
61504
61714
|
export declare type GraphStoreAtlassianUserOwnsInferredProjectSortInput = {
|
|
61505
61715
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
61506
61716
|
};
|
|
61717
|
+
export declare type GraphStoreAtlassianUserReviewedConfluenceApprovalSortInput = {
|
|
61718
|
+
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
61719
|
+
};
|
|
61507
61720
|
export declare type GraphStoreAtlassianUserUpdatedExternalCampaignSortInput = {
|
|
61508
61721
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
61509
61722
|
};
|
|
@@ -63299,6 +63512,9 @@ export declare type GraphStoreConfluenceBlogpostSharedWithUserSortInput = {
|
|
|
63299
63512
|
export declare type GraphStoreConfluencePageHasCommentSortInput = {
|
|
63300
63513
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
63301
63514
|
};
|
|
63515
|
+
export declare type GraphStoreConfluencePageHasConfluenceApprovalSortInput = {
|
|
63516
|
+
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
63517
|
+
};
|
|
63302
63518
|
export declare type GraphStoreConfluencePageHasConfluenceCommentSortInput = {
|
|
63303
63519
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
63304
63520
|
};
|
|
@@ -70336,6 +70552,20 @@ export declare type GraphStoreSimplifiedAtlasProjectTrackedOnJiraWorkItemInverse
|
|
|
70336
70552
|
};
|
|
70337
70553
|
export declare type GraphStoreSimplifiedAtlasProjectTrackedOnJiraWorkItemInverseUnion = TownsquareProject;
|
|
70338
70554
|
export declare type GraphStoreSimplifiedAtlasProjectTrackedOnJiraWorkItemUnion = JiraIssue;
|
|
70555
|
+
export declare type GraphStoreSimplifiedAtlassianUserApprovesConfluenceApprovalInverseConnection = HasPageInfo & {
|
|
70556
|
+
__typename?: 'GraphStoreSimplifiedAtlassianUserApprovesConfluenceApprovalInverseConnection';
|
|
70557
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedAtlassianUserApprovesConfluenceApprovalInverseEdge>>>;
|
|
70558
|
+
pageInfo: PageInfo;
|
|
70559
|
+
};
|
|
70560
|
+
export declare type GraphStoreSimplifiedAtlassianUserApprovesConfluenceApprovalInverseEdge = {
|
|
70561
|
+
__typename?: 'GraphStoreSimplifiedAtlassianUserApprovesConfluenceApprovalInverseEdge';
|
|
70562
|
+
createdAt: Scalars['DateTime']['output'];
|
|
70563
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
70564
|
+
id: Scalars['ID']['output'];
|
|
70565
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
70566
|
+
node?: Maybe<GraphStoreSimplifiedAtlassianUserApprovesConfluenceApprovalInverseUnion>;
|
|
70567
|
+
};
|
|
70568
|
+
export declare type GraphStoreSimplifiedAtlassianUserApprovesConfluenceApprovalInverseUnion = AppUser | AtlassianAccountUser | CustomerUser;
|
|
70339
70569
|
export declare type GraphStoreSimplifiedAtlassianUserCreatedAtlassianGoalUpdateConnection = HasPageInfo & {
|
|
70340
70570
|
__typename?: 'GraphStoreSimplifiedAtlassianUserCreatedAtlassianGoalUpdateConnection';
|
|
70341
70571
|
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedAtlassianUserCreatedAtlassianGoalUpdateEdge>>>;
|
|
@@ -71082,6 +71312,20 @@ export declare type GraphStoreSimplifiedAtlassianUserOwnsInferredProjectInverseE
|
|
|
71082
71312
|
node?: Maybe<GraphStoreSimplifiedAtlassianUserOwnsInferredProjectInverseUnion>;
|
|
71083
71313
|
};
|
|
71084
71314
|
export declare type GraphStoreSimplifiedAtlassianUserOwnsInferredProjectInverseUnion = AppUser | AtlassianAccountUser | CustomerUser;
|
|
71315
|
+
export declare type GraphStoreSimplifiedAtlassianUserReviewedConfluenceApprovalInverseConnection = HasPageInfo & {
|
|
71316
|
+
__typename?: 'GraphStoreSimplifiedAtlassianUserReviewedConfluenceApprovalInverseConnection';
|
|
71317
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedAtlassianUserReviewedConfluenceApprovalInverseEdge>>>;
|
|
71318
|
+
pageInfo: PageInfo;
|
|
71319
|
+
};
|
|
71320
|
+
export declare type GraphStoreSimplifiedAtlassianUserReviewedConfluenceApprovalInverseEdge = {
|
|
71321
|
+
__typename?: 'GraphStoreSimplifiedAtlassianUserReviewedConfluenceApprovalInverseEdge';
|
|
71322
|
+
createdAt: Scalars['DateTime']['output'];
|
|
71323
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
71324
|
+
id: Scalars['ID']['output'];
|
|
71325
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
71326
|
+
node?: Maybe<GraphStoreSimplifiedAtlassianUserReviewedConfluenceApprovalInverseUnion>;
|
|
71327
|
+
};
|
|
71328
|
+
export declare type GraphStoreSimplifiedAtlassianUserReviewedConfluenceApprovalInverseUnion = AppUser | AtlassianAccountUser | CustomerUser;
|
|
71085
71329
|
export declare type GraphStoreSimplifiedAtlassianUserUpdatedExternalCampaignConnection = HasPageInfo & {
|
|
71086
71330
|
__typename?: 'GraphStoreSimplifiedAtlassianUserUpdatedExternalCampaignConnection';
|
|
71087
71331
|
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedAtlassianUserUpdatedExternalCampaignEdge>>>;
|
|
@@ -71842,6 +72086,20 @@ export declare type GraphStoreSimplifiedConfluencePageHasCommentInverseEdge = {
|
|
|
71842
72086
|
};
|
|
71843
72087
|
export declare type GraphStoreSimplifiedConfluencePageHasCommentInverseUnion = ConfluencePage;
|
|
71844
72088
|
export declare type GraphStoreSimplifiedConfluencePageHasCommentUnion = ConfluenceFooterComment | ConfluenceInlineComment;
|
|
72089
|
+
export declare type GraphStoreSimplifiedConfluencePageHasConfluenceApprovalInverseConnection = HasPageInfo & {
|
|
72090
|
+
__typename?: 'GraphStoreSimplifiedConfluencePageHasConfluenceApprovalInverseConnection';
|
|
72091
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedConfluencePageHasConfluenceApprovalInverseEdge>>>;
|
|
72092
|
+
pageInfo: PageInfo;
|
|
72093
|
+
};
|
|
72094
|
+
export declare type GraphStoreSimplifiedConfluencePageHasConfluenceApprovalInverseEdge = {
|
|
72095
|
+
__typename?: 'GraphStoreSimplifiedConfluencePageHasConfluenceApprovalInverseEdge';
|
|
72096
|
+
createdAt: Scalars['DateTime']['output'];
|
|
72097
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
72098
|
+
id: Scalars['ID']['output'];
|
|
72099
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
72100
|
+
node?: Maybe<GraphStoreSimplifiedConfluencePageHasConfluenceApprovalInverseUnion>;
|
|
72101
|
+
};
|
|
72102
|
+
export declare type GraphStoreSimplifiedConfluencePageHasConfluenceApprovalInverseUnion = ConfluencePage;
|
|
71845
72103
|
export declare type GraphStoreSimplifiedConfluencePageHasConfluenceCommentConnection = HasPageInfo & {
|
|
71846
72104
|
__typename?: 'GraphStoreSimplifiedConfluencePageHasConfluenceCommentConnection';
|
|
71847
72105
|
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedConfluencePageHasConfluenceCommentEdge>>>;
|
|
@@ -83170,6 +83428,7 @@ export declare type GraphStoreV2 = {
|
|
|
83170
83428
|
atlassianTeamReceivedFocusAskInverse?: Maybe<GraphStoreV2SimplifiedAtlassianTeamReceivedFocusAskInverseConnection>;
|
|
83171
83429
|
atlassianTeamSubmittedFocusAsk?: Maybe<GraphStoreV2SimplifiedAtlassianTeamSubmittedFocusAskConnection>;
|
|
83172
83430
|
atlassianTeamSubmittedFocusAskInverse?: Maybe<GraphStoreV2SimplifiedAtlassianTeamSubmittedFocusAskInverseConnection>;
|
|
83431
|
+
atlassianUserApprovesConfluenceApprovalInverse?: Maybe<GraphStoreV2SimplifiedAtlassianUserApprovesConfluenceApprovalInverseConnection>;
|
|
83173
83432
|
atlassianUserApprovesFocusStrategicPlan?: Maybe<GraphStoreV2SimplifiedAtlassianUserApprovesFocusStrategicPlanConnection>;
|
|
83174
83433
|
atlassianUserApprovesFocusStrategicPlanInverse?: Maybe<GraphStoreV2SimplifiedAtlassianUserApprovesFocusStrategicPlanInverseConnection>;
|
|
83175
83434
|
atlassianUserAssignedJiraWorkItem?: Maybe<GraphStoreV2SimplifiedAtlassianUserAssignedJiraWorkItemConnection>;
|
|
@@ -83322,6 +83581,7 @@ export declare type GraphStoreV2 = {
|
|
|
83322
83581
|
atlassianUserReportedJiraWorkItemInverse?: Maybe<GraphStoreV2SimplifiedAtlassianUserReportedJiraWorkItemInverseConnection>;
|
|
83323
83582
|
atlassianUserReportedJsmIncident?: Maybe<GraphStoreV2SimplifiedAtlassianUserReportedJsmIncidentConnection>;
|
|
83324
83583
|
atlassianUserReportedJsmIncidentInverse?: Maybe<GraphStoreV2SimplifiedAtlassianUserReportedJsmIncidentInverseConnection>;
|
|
83584
|
+
atlassianUserReviewedConfluenceApprovalInverse?: Maybe<GraphStoreV2SimplifiedAtlassianUserReviewedConfluenceApprovalInverseConnection>;
|
|
83325
83585
|
atlassianUserSnapshottedConfluencePage?: Maybe<GraphStoreV2SimplifiedAtlassianUserSnapshottedConfluencePageConnection>;
|
|
83326
83586
|
atlassianUserSnapshottedConfluencePageInverse?: Maybe<GraphStoreV2SimplifiedAtlassianUserSnapshottedConfluencePageInverseConnection>;
|
|
83327
83587
|
atlassianUserSubmittedFocusAsk?: Maybe<GraphStoreV2SimplifiedAtlassianUserSubmittedFocusAskConnection>;
|
|
@@ -83400,6 +83660,7 @@ export declare type GraphStoreV2 = {
|
|
|
83400
83660
|
confluenceCommentHasChildConfluenceCommentInverse?: Maybe<GraphStoreV2SimplifiedConfluenceCommentHasChildConfluenceCommentInverseConnection>;
|
|
83401
83661
|
confluencePageHasChildConfluencePage?: Maybe<GraphStoreV2SimplifiedConfluencePageHasChildConfluencePageConnection>;
|
|
83402
83662
|
confluencePageHasChildConfluencePageInverse?: Maybe<GraphStoreV2SimplifiedConfluencePageHasChildConfluencePageInverseConnection>;
|
|
83663
|
+
confluencePageHasConfluenceApprovalInverse?: Maybe<GraphStoreV2SimplifiedConfluencePageHasConfluenceApprovalInverseConnection>;
|
|
83403
83664
|
confluencePageHasConfluenceComment?: Maybe<GraphStoreV2SimplifiedConfluencePageHasConfluenceCommentConnection>;
|
|
83404
83665
|
confluencePageHasConfluenceCommentInverse?: Maybe<GraphStoreV2SimplifiedConfluencePageHasConfluenceCommentInverseConnection>;
|
|
83405
83666
|
confluencePageHasConfluenceDatabase?: Maybe<GraphStoreV2SimplifiedConfluencePageHasConfluenceDatabaseConnection>;
|
|
@@ -84284,6 +84545,13 @@ export declare type GraphStoreV2AtlassianTeamSubmittedFocusAskInverseArgs = {
|
|
|
84284
84545
|
id: Scalars['ID']['input'];
|
|
84285
84546
|
sort?: InputMaybe<GraphStoreV2AtlassianTeamSubmittedFocusAskSortInput>;
|
|
84286
84547
|
};
|
|
84548
|
+
export declare type GraphStoreV2AtlassianUserApprovesConfluenceApprovalInverseArgs = {
|
|
84549
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
84550
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
84551
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
84552
|
+
id: Scalars['ID']['input'];
|
|
84553
|
+
sort?: InputMaybe<GraphStoreV2AtlassianUserApprovesConfluenceApprovalSortInput>;
|
|
84554
|
+
};
|
|
84287
84555
|
export declare type GraphStoreV2AtlassianUserApprovesFocusStrategicPlanArgs = {
|
|
84288
84556
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
84289
84557
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -85356,6 +85624,13 @@ export declare type GraphStoreV2AtlassianUserReportedJsmIncidentInverseArgs = {
|
|
|
85356
85624
|
id: Scalars['ID']['input'];
|
|
85357
85625
|
sort?: InputMaybe<GraphStoreV2AtlassianUserReportedJsmIncidentSortInput>;
|
|
85358
85626
|
};
|
|
85627
|
+
export declare type GraphStoreV2AtlassianUserReviewedConfluenceApprovalInverseArgs = {
|
|
85628
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
85629
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
85630
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
85631
|
+
id: Scalars['ID']['input'];
|
|
85632
|
+
sort?: InputMaybe<GraphStoreV2AtlassianUserReviewedConfluenceApprovalSortInput>;
|
|
85633
|
+
};
|
|
85359
85634
|
export declare type GraphStoreV2AtlassianUserSnapshottedConfluencePageArgs = {
|
|
85360
85635
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
85361
85636
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -85902,6 +86177,13 @@ export declare type GraphStoreV2ConfluencePageHasChildConfluencePageInverseArgs
|
|
|
85902
86177
|
id: Scalars['ID']['input'];
|
|
85903
86178
|
sort?: InputMaybe<GraphStoreV2ConfluencePageHasChildConfluencePageSortInput>;
|
|
85904
86179
|
};
|
|
86180
|
+
export declare type GraphStoreV2ConfluencePageHasConfluenceApprovalInverseArgs = {
|
|
86181
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
86182
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
86183
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
86184
|
+
id: Scalars['ID']['input'];
|
|
86185
|
+
sort?: InputMaybe<GraphStoreV2ConfluencePageHasConfluenceApprovalSortInput>;
|
|
86186
|
+
};
|
|
85905
86187
|
export declare type GraphStoreV2ConfluencePageHasConfluenceCommentArgs = {
|
|
85906
86188
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
85907
86189
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -89719,6 +90001,9 @@ export declare type GraphStoreV2AtlassianTeamReceivedFocusAskSortInput = {
|
|
|
89719
90001
|
export declare type GraphStoreV2AtlassianTeamSubmittedFocusAskSortInput = {
|
|
89720
90002
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
89721
90003
|
};
|
|
90004
|
+
export declare type GraphStoreV2AtlassianUserApprovesConfluenceApprovalSortInput = {
|
|
90005
|
+
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
90006
|
+
};
|
|
89722
90007
|
export declare type GraphStoreV2AtlassianUserApprovesFocusStrategicPlanSortInput = {
|
|
89723
90008
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
89724
90009
|
};
|
|
@@ -90064,6 +90349,9 @@ export declare type GraphStoreV2AtlassianUserReportedJiraWorkItemSortInput = {
|
|
|
90064
90349
|
export declare type GraphStoreV2AtlassianUserReportedJsmIncidentSortInput = {
|
|
90065
90350
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
90066
90351
|
};
|
|
90352
|
+
export declare type GraphStoreV2AtlassianUserReviewedConfluenceApprovalSortInput = {
|
|
90353
|
+
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
90354
|
+
};
|
|
90067
90355
|
export declare type GraphStoreV2AtlassianUserSnapshottedConfluencePageSortInput = {
|
|
90068
90356
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
90069
90357
|
};
|
|
@@ -90187,6 +90475,9 @@ export declare type GraphStoreV2ConfluenceCommentHasChildConfluenceCommentSortIn
|
|
|
90187
90475
|
export declare type GraphStoreV2ConfluencePageHasChildConfluencePageSortInput = {
|
|
90188
90476
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
90189
90477
|
};
|
|
90478
|
+
export declare type GraphStoreV2ConfluencePageHasConfluenceApprovalSortInput = {
|
|
90479
|
+
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
90480
|
+
};
|
|
90190
90481
|
export declare type GraphStoreV2ConfluencePageHasConfluenceCommentSortInput = {
|
|
90191
90482
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
90192
90483
|
};
|
|
@@ -93962,6 +94253,20 @@ export declare type GraphStoreV2SimplifiedAtlassianTeamSubmittedFocusAskInverseE
|
|
|
93962
94253
|
};
|
|
93963
94254
|
export declare type GraphStoreV2SimplifiedAtlassianTeamSubmittedFocusAskInverseUnion = TeamV2;
|
|
93964
94255
|
export declare type GraphStoreV2SimplifiedAtlassianTeamSubmittedFocusAskUnion = SpfAsk;
|
|
94256
|
+
export declare type GraphStoreV2SimplifiedAtlassianUserApprovesConfluenceApprovalInverseConnection = HasPageInfo & {
|
|
94257
|
+
__typename?: 'GraphStoreV2SimplifiedAtlassianUserApprovesConfluenceApprovalInverseConnection';
|
|
94258
|
+
edges?: Maybe<Array<Maybe<GraphStoreV2SimplifiedAtlassianUserApprovesConfluenceApprovalInverseEdge>>>;
|
|
94259
|
+
pageInfo: PageInfo;
|
|
94260
|
+
};
|
|
94261
|
+
export declare type GraphStoreV2SimplifiedAtlassianUserApprovesConfluenceApprovalInverseEdge = {
|
|
94262
|
+
__typename?: 'GraphStoreV2SimplifiedAtlassianUserApprovesConfluenceApprovalInverseEdge';
|
|
94263
|
+
createdAt: Scalars['DateTime']['output'];
|
|
94264
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
94265
|
+
id: Scalars['ID']['output'];
|
|
94266
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
94267
|
+
node?: Maybe<GraphStoreV2SimplifiedAtlassianUserApprovesConfluenceApprovalInverseUnion>;
|
|
94268
|
+
};
|
|
94269
|
+
export declare type GraphStoreV2SimplifiedAtlassianUserApprovesConfluenceApprovalInverseUnion = AppUser | AtlassianAccountUser | CustomerUser;
|
|
93965
94270
|
export declare type GraphStoreV2SimplifiedAtlassianUserApprovesFocusStrategicPlanConnection = HasPageInfo & {
|
|
93966
94271
|
__typename?: 'GraphStoreV2SimplifiedAtlassianUserApprovesFocusStrategicPlanConnection';
|
|
93967
94272
|
edges?: Maybe<Array<Maybe<GraphStoreV2SimplifiedAtlassianUserApprovesFocusStrategicPlanEdge>>>;
|
|
@@ -96126,6 +96431,20 @@ export declare type GraphStoreV2SimplifiedAtlassianUserReportedJsmIncidentInvers
|
|
|
96126
96431
|
};
|
|
96127
96432
|
export declare type GraphStoreV2SimplifiedAtlassianUserReportedJsmIncidentInverseUnion = AppUser | AtlassianAccountUser | CustomerUser;
|
|
96128
96433
|
export declare type GraphStoreV2SimplifiedAtlassianUserReportedJsmIncidentUnion = JiraIssue;
|
|
96434
|
+
export declare type GraphStoreV2SimplifiedAtlassianUserReviewedConfluenceApprovalInverseConnection = HasPageInfo & {
|
|
96435
|
+
__typename?: 'GraphStoreV2SimplifiedAtlassianUserReviewedConfluenceApprovalInverseConnection';
|
|
96436
|
+
edges?: Maybe<Array<Maybe<GraphStoreV2SimplifiedAtlassianUserReviewedConfluenceApprovalInverseEdge>>>;
|
|
96437
|
+
pageInfo: PageInfo;
|
|
96438
|
+
};
|
|
96439
|
+
export declare type GraphStoreV2SimplifiedAtlassianUserReviewedConfluenceApprovalInverseEdge = {
|
|
96440
|
+
__typename?: 'GraphStoreV2SimplifiedAtlassianUserReviewedConfluenceApprovalInverseEdge';
|
|
96441
|
+
createdAt: Scalars['DateTime']['output'];
|
|
96442
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
96443
|
+
id: Scalars['ID']['output'];
|
|
96444
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
96445
|
+
node?: Maybe<GraphStoreV2SimplifiedAtlassianUserReviewedConfluenceApprovalInverseUnion>;
|
|
96446
|
+
};
|
|
96447
|
+
export declare type GraphStoreV2SimplifiedAtlassianUserReviewedConfluenceApprovalInverseUnion = AppUser | AtlassianAccountUser | CustomerUser;
|
|
96129
96448
|
export declare type GraphStoreV2SimplifiedAtlassianUserSnapshottedConfluencePageConnection = HasPageInfo & {
|
|
96130
96449
|
__typename?: 'GraphStoreV2SimplifiedAtlassianUserSnapshottedConfluencePageConnection';
|
|
96131
96450
|
edges?: Maybe<Array<Maybe<GraphStoreV2SimplifiedAtlassianUserSnapshottedConfluencePageEdge>>>;
|
|
@@ -97222,6 +97541,20 @@ export declare type GraphStoreV2SimplifiedConfluencePageHasChildConfluencePageIn
|
|
|
97222
97541
|
};
|
|
97223
97542
|
export declare type GraphStoreV2SimplifiedConfluencePageHasChildConfluencePageInverseUnion = ConfluencePage;
|
|
97224
97543
|
export declare type GraphStoreV2SimplifiedConfluencePageHasChildConfluencePageUnion = ConfluencePage;
|
|
97544
|
+
export declare type GraphStoreV2SimplifiedConfluencePageHasConfluenceApprovalInverseConnection = HasPageInfo & {
|
|
97545
|
+
__typename?: 'GraphStoreV2SimplifiedConfluencePageHasConfluenceApprovalInverseConnection';
|
|
97546
|
+
edges?: Maybe<Array<Maybe<GraphStoreV2SimplifiedConfluencePageHasConfluenceApprovalInverseEdge>>>;
|
|
97547
|
+
pageInfo: PageInfo;
|
|
97548
|
+
};
|
|
97549
|
+
export declare type GraphStoreV2SimplifiedConfluencePageHasConfluenceApprovalInverseEdge = {
|
|
97550
|
+
__typename?: 'GraphStoreV2SimplifiedConfluencePageHasConfluenceApprovalInverseEdge';
|
|
97551
|
+
createdAt: Scalars['DateTime']['output'];
|
|
97552
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
97553
|
+
id: Scalars['ID']['output'];
|
|
97554
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
97555
|
+
node?: Maybe<GraphStoreV2SimplifiedConfluencePageHasConfluenceApprovalInverseUnion>;
|
|
97556
|
+
};
|
|
97557
|
+
export declare type GraphStoreV2SimplifiedConfluencePageHasConfluenceApprovalInverseUnion = ConfluencePage;
|
|
97225
97558
|
export declare type GraphStoreV2SimplifiedConfluencePageHasConfluenceCommentConnection = HasPageInfo & {
|
|
97226
97559
|
__typename?: 'GraphStoreV2SimplifiedConfluencePageHasConfluenceCommentConnection';
|
|
97227
97560
|
edges?: Maybe<Array<Maybe<GraphStoreV2SimplifiedConfluencePageHasConfluenceCommentEdge>>>;
|
|
@@ -136394,6 +136727,7 @@ export declare type JpdViewsServiceGlobalView = JpdViewsServiceViewBase & Node &
|
|
|
136394
136727
|
name: Scalars['String']['output'];
|
|
136395
136728
|
numberColumnDisplay?: Maybe<Scalars['String']['output']>;
|
|
136396
136729
|
rank?: Maybe<Scalars['Int']['output']>;
|
|
136730
|
+
showCardCovers?: Maybe<Scalars['Boolean']['output']>;
|
|
136397
136731
|
showConnectionsMatchingColumn?: Maybe<Scalars['Boolean']['output']>;
|
|
136398
136732
|
showConnectionsMatchingColumnNew: Scalars['Boolean']['output'];
|
|
136399
136733
|
showConnectionsMatchingGroup?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -136432,6 +136766,7 @@ export declare type JpdViewsServiceGlobalView2 = JpdViewsServiceViewBase & Node
|
|
|
136432
136766
|
fields: Array<JpdViewsServiceField>;
|
|
136433
136767
|
filter: Array<JpdViewsServiceFilter>;
|
|
136434
136768
|
groupBy?: Maybe<JpdViewsServiceField>;
|
|
136769
|
+
groupOrder?: Maybe<JpdViewsServiceViewOrderType>;
|
|
136435
136770
|
groupValues: Array<JpdViewsServiceNestedId>;
|
|
136436
136771
|
groupsFilter: Array<JpdViewsServiceFilter>;
|
|
136437
136772
|
hasDraft?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -136444,6 +136779,7 @@ export declare type JpdViewsServiceGlobalView2 = JpdViewsServiceViewBase & Node
|
|
|
136444
136779
|
name: Scalars['String']['output'];
|
|
136445
136780
|
numberColumnDisplay?: Maybe<Scalars['String']['output']>;
|
|
136446
136781
|
rank?: Maybe<Scalars['Int']['output']>;
|
|
136782
|
+
showCardCovers?: Maybe<Scalars['Boolean']['output']>;
|
|
136447
136783
|
showConnectionsMatchingColumn: Scalars['Boolean']['output'];
|
|
136448
136784
|
showConnectionsMatchingGroup: Scalars['Boolean']['output'];
|
|
136449
136785
|
sort: Array<JpdViewsServiceSort>;
|
|
@@ -136453,6 +136789,7 @@ export declare type JpdViewsServiceGlobalView2 = JpdViewsServiceViewBase & Node
|
|
|
136453
136789
|
updatedAt: Scalars['String']['output'];
|
|
136454
136790
|
uuid: Scalars['String']['output'];
|
|
136455
136791
|
verticalGroupBy?: Maybe<JpdViewsServiceField>;
|
|
136792
|
+
verticalGroupOrder?: Maybe<JpdViewsServiceViewOrderType>;
|
|
136456
136793
|
verticalGroupValues: Array<JpdViewsServiceNestedId>;
|
|
136457
136794
|
verticalGroupsFilter: Array<JpdViewsServiceFilter>;
|
|
136458
136795
|
viewId: Scalars['String']['output'];
|
|
@@ -136688,6 +137025,7 @@ export declare type JpdViewsServiceUpdateGlobalViewInput = {
|
|
|
136688
137025
|
matrixConfig?: InputMaybe<JpdViewsServiceMatrixConfigInput>;
|
|
136689
137026
|
name?: InputMaybe<Scalars['String']['input']>;
|
|
136690
137027
|
numberColumnDisplay?: InputMaybe<Scalars['String']['input']>;
|
|
137028
|
+
showCardCovers?: InputMaybe<Scalars['Boolean']['input']>;
|
|
136691
137029
|
showConnectionsMatchingColumn?: InputMaybe<Scalars['Boolean']['input']>;
|
|
136692
137030
|
showConnectionsMatchingGroup?: InputMaybe<Scalars['Boolean']['input']>;
|
|
136693
137031
|
sort?: InputMaybe<Array<InputMaybe<JpdViewsServiceSortInput>>>;
|
|
@@ -136714,6 +137052,7 @@ export declare type JpdViewsServiceUpdateGlobalViewInput2 = {
|
|
|
136714
137052
|
fields?: InputMaybe<Array<InputMaybe<JpdViewsServiceFieldInput>>>;
|
|
136715
137053
|
filter?: InputMaybe<Array<InputMaybe<JpdViewsServiceFilterInput2>>>;
|
|
136716
137054
|
groupBy?: InputMaybe<JpdViewsServiceFieldInput>;
|
|
137055
|
+
groupOrder?: InputMaybe<JpdViewsServiceViewOrderTypeInput>;
|
|
136717
137056
|
groupValues?: InputMaybe<Array<InputMaybe<JpdViewsServiceNestedIdInput>>>;
|
|
136718
137057
|
groupsFilter?: InputMaybe<Array<InputMaybe<JpdViewsServiceFilterInput2>>>;
|
|
136719
137058
|
hiddenFields?: InputMaybe<Array<InputMaybe<JpdViewsServiceFieldInput>>>;
|
|
@@ -136724,6 +137063,7 @@ export declare type JpdViewsServiceUpdateGlobalViewInput2 = {
|
|
|
136724
137063
|
matrixConfig?: InputMaybe<JpdViewsServiceMatrixConfigInput>;
|
|
136725
137064
|
name?: InputMaybe<Scalars['String']['input']>;
|
|
136726
137065
|
numberColumnDisplay?: InputMaybe<Scalars['String']['input']>;
|
|
137066
|
+
showCardCovers?: InputMaybe<Scalars['Boolean']['input']>;
|
|
136727
137067
|
showConnectionsMatchingColumn?: InputMaybe<Scalars['Boolean']['input']>;
|
|
136728
137068
|
showConnectionsMatchingGroup?: InputMaybe<Scalars['Boolean']['input']>;
|
|
136729
137069
|
sort?: InputMaybe<Array<InputMaybe<JpdViewsServiceSortInput>>>;
|
|
@@ -136731,6 +137071,7 @@ export declare type JpdViewsServiceUpdateGlobalViewInput2 = {
|
|
|
136731
137071
|
tableColumnSizes?: InputMaybe<Array<InputMaybe<JpdViewsServiceTableColumnSizeInput>>>;
|
|
136732
137072
|
timelineConfig?: InputMaybe<JpdViewsServiceTimelineConfigInput>;
|
|
136733
137073
|
verticalGroupBy?: InputMaybe<JpdViewsServiceFieldInput>;
|
|
137074
|
+
verticalGroupOrder?: InputMaybe<JpdViewsServiceViewOrderTypeInput>;
|
|
136734
137075
|
verticalGroupValues?: InputMaybe<Array<InputMaybe<JpdViewsServiceNestedIdInput>>>;
|
|
136735
137076
|
verticalGroupsFilter?: InputMaybe<Array<InputMaybe<JpdViewsServiceFilterInput2>>>;
|
|
136736
137077
|
visualizationType?: InputMaybe<JpdViewsServiceVisualizationType>;
|
|
@@ -136774,6 +137115,13 @@ export declare enum JpdViewsServiceViewLayoutType {
|
|
|
136774
137115
|
Detailed = "DETAILED",
|
|
136775
137116
|
Summary = "SUMMARY"
|
|
136776
137117
|
}
|
|
137118
|
+
export declare enum JpdViewsServiceViewOrderType {
|
|
137119
|
+
Asc = "ASC",
|
|
137120
|
+
Desc = "DESC"
|
|
137121
|
+
}
|
|
137122
|
+
export declare type JpdViewsServiceViewOrderTypeInput = {
|
|
137123
|
+
value?: InputMaybe<JpdViewsServiceViewOrderType>;
|
|
137124
|
+
};
|
|
136777
137125
|
export declare enum JpdViewsServiceVisualizationType {
|
|
136778
137126
|
Board = "BOARD",
|
|
136779
137127
|
Matrix = "MATRIX",
|
|
@@ -136835,6 +137183,8 @@ export declare type JsmChannelsExperienceConfiguration = {
|
|
|
136835
137183
|
__typename?: 'JsmChannelsExperienceConfiguration';
|
|
136836
137184
|
filter?: Maybe<JsmChannelsFilterConfiguration>;
|
|
136837
137185
|
isEnabled: Scalars['Boolean']['output'];
|
|
137186
|
+
previewMode?: Maybe<JsmChannelsPreviewModeConfiguration>;
|
|
137187
|
+
setupStatus?: Maybe<JsmChannelsExperienceSetupStatus>;
|
|
136838
137188
|
};
|
|
136839
137189
|
export declare type JsmChannelsExperienceConfigurationByProjectIdsQueryPayload = {
|
|
136840
137190
|
__typename?: 'JsmChannelsExperienceConfigurationByProjectIdsQueryPayload';
|
|
@@ -136857,6 +137207,10 @@ export declare type JsmChannelsExperienceConfigurationPayload = Payload & {
|
|
|
136857
137207
|
success: Scalars['Boolean']['output'];
|
|
136858
137208
|
};
|
|
136859
137209
|
export declare type JsmChannelsExperienceConfigurationResult = JsmChannelsExperienceConfiguration | QueryError;
|
|
137210
|
+
export declare type JsmChannelsExperienceSetupStatus = {
|
|
137211
|
+
__typename?: 'JsmChannelsExperienceSetupStatus';
|
|
137212
|
+
code: Scalars['String']['output'];
|
|
137213
|
+
};
|
|
136860
137214
|
export declare type JsmChannelsFilterConfiguration = {
|
|
136861
137215
|
__typename?: 'JsmChannelsFilterConfiguration';
|
|
136862
137216
|
evaluationStrategy?: Maybe<JsmChannelsRuleEvaluationStrategy>;
|
|
@@ -136970,6 +137324,7 @@ export declare enum JsmChannelsPlanNodeType {
|
|
|
136970
137324
|
export declare type JsmChannelsPreviewModeConfiguration = {
|
|
136971
137325
|
__typename?: 'JsmChannelsPreviewModeConfiguration';
|
|
136972
137326
|
enabled: Scalars['Boolean']['output'];
|
|
137327
|
+
id?: Maybe<Scalars['ID']['output']>;
|
|
136973
137328
|
};
|
|
136974
137329
|
export declare type JsmChannelsPreviewModeResult = JsmChannelsPreviewModeConfiguration | QueryError;
|
|
136975
137330
|
export declare type JsmChannelsProjectQueryFilter = {
|
|
@@ -145300,10 +145655,21 @@ export declare type MediaFileAbuseClassification = {
|
|
|
145300
145655
|
classification?: Maybe<Scalars['String']['output']>;
|
|
145301
145656
|
confidence?: Maybe<Scalars['String']['output']>;
|
|
145302
145657
|
};
|
|
145658
|
+
export declare type MediaFileArtifact = {
|
|
145659
|
+
__typename?: 'MediaFileArtifact';
|
|
145660
|
+
cdnUrl?: Maybe<Scalars['String']['output']>;
|
|
145661
|
+
createdAt?: Maybe<Scalars['Long']['output']>;
|
|
145662
|
+
mimeType?: Maybe<Scalars['String']['output']>;
|
|
145663
|
+
name: Scalars['String']['output'];
|
|
145664
|
+
processingStatus?: Maybe<Scalars['String']['output']>;
|
|
145665
|
+
size?: Maybe<Scalars['Long']['output']>;
|
|
145666
|
+
url?: Maybe<Scalars['String']['output']>;
|
|
145667
|
+
};
|
|
145303
145668
|
export declare type MediaFileDetails = {
|
|
145304
145669
|
__typename?: 'MediaFileDetails';
|
|
145305
145670
|
abuseClassification?: Maybe<MediaFileAbuseClassification>;
|
|
145306
145671
|
artifacts?: Maybe<Scalars['JSONObject']['output']>;
|
|
145672
|
+
artifactsList?: Maybe<Array<MediaFileArtifact>>;
|
|
145307
145673
|
createdAt?: Maybe<Scalars['Long']['output']>;
|
|
145308
145674
|
failReason?: Maybe<Scalars['String']['output']>;
|
|
145309
145675
|
mediaMetadata?: Maybe<MediaFileMetadata>;
|
|
@@ -145318,6 +145684,9 @@ export declare type MediaFileDetails = {
|
|
|
145318
145684
|
export declare type MediaFileDetailsArtifactsArgs = {
|
|
145319
145685
|
types?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
145320
145686
|
};
|
|
145687
|
+
export declare type MediaFileDetailsArtifactsListArgs = {
|
|
145688
|
+
types?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
145689
|
+
};
|
|
145321
145690
|
export declare type MediaFileMetadata = {
|
|
145322
145691
|
__typename?: 'MediaFileMetadata';
|
|
145323
145692
|
duration?: Maybe<Scalars['Float']['output']>;
|
|
@@ -145529,7 +145898,6 @@ export declare type MercuryArchiveFocusAreaValidationPayload = Payload & {
|
|
|
145529
145898
|
success: Scalars['Boolean']['output'];
|
|
145530
145899
|
};
|
|
145531
145900
|
export declare type MercuryArchiveOrganizationInput = {
|
|
145532
|
-
cloudId?: InputMaybe<Scalars['ID']['input']>;
|
|
145533
145901
|
comment?: InputMaybe<Scalars['String']['input']>;
|
|
145534
145902
|
id: Scalars['ID']['input'];
|
|
145535
145903
|
};
|
|
@@ -146640,6 +147008,13 @@ export declare type MercuryCreateThreadedCommentPayload = Payload & {
|
|
|
146640
147008
|
errors?: Maybe<Array<MutationError>>;
|
|
146641
147009
|
success: Scalars['Boolean']['output'];
|
|
146642
147010
|
};
|
|
147011
|
+
export declare type MercuryCreateViewInput = {
|
|
147012
|
+
cloudId: Scalars['ID']['input'];
|
|
147013
|
+
entityType: Scalars['String']['input'];
|
|
147014
|
+
name: Scalars['String']['input'];
|
|
147015
|
+
owner?: InputMaybe<Scalars['ID']['input']>;
|
|
147016
|
+
settings: MercuryViewSettingsInput;
|
|
147017
|
+
};
|
|
146643
147018
|
export declare type MercuryCurrency = {
|
|
146644
147019
|
__typename?: 'MercuryCurrency';
|
|
146645
147020
|
code?: Maybe<Scalars['String']['output']>;
|
|
@@ -147116,6 +147491,15 @@ export declare type MercuryDeleteThreadedCommentPayload = Payload & {
|
|
|
147116
147491
|
errors?: Maybe<Array<MutationError>>;
|
|
147117
147492
|
success: Scalars['Boolean']['output'];
|
|
147118
147493
|
};
|
|
147494
|
+
export declare type MercuryDeleteViewInput = {
|
|
147495
|
+
id: Scalars['ID']['input'];
|
|
147496
|
+
};
|
|
147497
|
+
export declare type MercuryDeleteViewPayload = Payload & {
|
|
147498
|
+
__typename?: 'MercuryDeleteViewPayload';
|
|
147499
|
+
errors?: Maybe<Array<MutationError>>;
|
|
147500
|
+
id: Scalars['ID']['output'];
|
|
147501
|
+
success: Scalars['Boolean']['output'];
|
|
147502
|
+
};
|
|
147119
147503
|
export declare type MercuryDismissInsightInput = {
|
|
147120
147504
|
dismissalType: MercuryDismissalType;
|
|
147121
147505
|
focusAreaId: Scalars['ID']['input'];
|
|
@@ -150012,6 +150396,7 @@ export declare enum MercuryPermission {
|
|
|
150012
150396
|
ExportFocusArea = "EXPORT_FOCUS_AREA",
|
|
150013
150397
|
ExportFocusAreaView = "EXPORT_FOCUS_AREA_VIEW",
|
|
150014
150398
|
Manage = "MANAGE",
|
|
150399
|
+
RankFocusArea = "RANK_FOCUS_AREA",
|
|
150015
150400
|
Read = "READ",
|
|
150016
150401
|
ViewFocusAreaFund = "VIEW_FOCUS_AREA_FUND",
|
|
150017
150402
|
ViewRisk = "VIEW_RISK",
|
|
@@ -150780,6 +151165,16 @@ export declare type MercuryReorderOrganizationTypesPayload = Payload & {
|
|
|
150780
151165
|
reorderedOrganizationTypes?: Maybe<Array<MercuryOrganizationType>>;
|
|
150781
151166
|
success: Scalars['Boolean']['output'];
|
|
150782
151167
|
};
|
|
151168
|
+
export declare type MercuryReorderStarredViewInput = {
|
|
151169
|
+
after?: InputMaybe<Scalars['ID']['input']>;
|
|
151170
|
+
id: Scalars['ID']['input'];
|
|
151171
|
+
};
|
|
151172
|
+
export declare type MercuryReorderStarredViewPayload = Payload & {
|
|
151173
|
+
__typename?: 'MercuryReorderStarredViewPayload';
|
|
151174
|
+
errors?: Maybe<Array<MutationError>>;
|
|
151175
|
+
starredViews?: Maybe<Array<MercuryView>>;
|
|
151176
|
+
success: Scalars['Boolean']['output'];
|
|
151177
|
+
};
|
|
150783
151178
|
export declare type MercuryRequestFundsChange = MercuryChangeInterface & Node & {
|
|
150784
151179
|
__typename?: 'MercuryRequestFundsChange';
|
|
150785
151180
|
amount: Scalars['BigDecimal']['output'];
|
|
@@ -151339,6 +151734,15 @@ export declare type MercuryStarOrganizationViewPayload = Payload & {
|
|
|
151339
151734
|
errors?: Maybe<Array<MutationError>>;
|
|
151340
151735
|
success: Scalars['Boolean']['output'];
|
|
151341
151736
|
};
|
|
151737
|
+
export declare type MercuryStarViewInput = {
|
|
151738
|
+
id: Scalars['ID']['input'];
|
|
151739
|
+
};
|
|
151740
|
+
export declare type MercuryStarViewPayload = Payload & {
|
|
151741
|
+
__typename?: 'MercuryStarViewPayload';
|
|
151742
|
+
errors?: Maybe<Array<MutationError>>;
|
|
151743
|
+
starredItem?: Maybe<MercuryView>;
|
|
151744
|
+
success: Scalars['Boolean']['output'];
|
|
151745
|
+
};
|
|
151342
151746
|
export declare enum MercuryStatusColor {
|
|
151343
151747
|
Blue = "BLUE",
|
|
151344
151748
|
Gray = "GRAY",
|
|
@@ -151963,7 +152367,6 @@ export declare type MercuryUnarchiveFocusAreaPayload = Payload & {
|
|
|
151963
152367
|
success: Scalars['Boolean']['output'];
|
|
151964
152368
|
};
|
|
151965
152369
|
export declare type MercuryUnarchiveOrganizationInput = {
|
|
151966
|
-
cloudId?: InputMaybe<Scalars['ID']['input']>;
|
|
151967
152370
|
comment?: InputMaybe<Scalars['String']['input']>;
|
|
151968
152371
|
id: Scalars['ID']['input'];
|
|
151969
152372
|
};
|
|
@@ -152056,6 +152459,15 @@ export declare type MercuryUnsetBaselinePayload = Payload & {
|
|
|
152056
152459
|
success: Scalars['Boolean']['output'];
|
|
152057
152460
|
unsetBaseline?: Maybe<MercuryBaselineDetails>;
|
|
152058
152461
|
};
|
|
152462
|
+
export declare type MercuryUnstarViewInput = {
|
|
152463
|
+
id: Scalars['ID']['input'];
|
|
152464
|
+
};
|
|
152465
|
+
export declare type MercuryUnstarViewPayload = Payload & {
|
|
152466
|
+
__typename?: 'MercuryUnstarViewPayload';
|
|
152467
|
+
errors?: Maybe<Array<MutationError>>;
|
|
152468
|
+
success: Scalars['Boolean']['output'];
|
|
152469
|
+
unstarredItem?: Maybe<MercuryView>;
|
|
152470
|
+
};
|
|
152059
152471
|
export declare type MercuryUpdateActiveCurrencyInput = {
|
|
152060
152472
|
cloudId?: InputMaybe<Scalars['ID']['input']>;
|
|
152061
152473
|
currencyCode: Scalars['String']['input'];
|
|
@@ -152622,6 +153034,18 @@ export declare type MercuryUpdateThreadedCommentPayload = Payload & {
|
|
|
152622
153034
|
success: Scalars['Boolean']['output'];
|
|
152623
153035
|
updatedComment?: Maybe<MercuryThreadedComment>;
|
|
152624
153036
|
};
|
|
153037
|
+
export declare type MercuryUpdateViewNameInput = {
|
|
153038
|
+
id: Scalars['ID']['input'];
|
|
153039
|
+
name: Scalars['String']['input'];
|
|
153040
|
+
};
|
|
153041
|
+
export declare type MercuryUpdateViewOwnerInput = {
|
|
153042
|
+
id: Scalars['ID']['input'];
|
|
153043
|
+
ownerId: Scalars['String']['input'];
|
|
153044
|
+
};
|
|
153045
|
+
export declare type MercuryUpdateViewSettingsInput = {
|
|
153046
|
+
id: Scalars['ID']['input'];
|
|
153047
|
+
settings: MercuryViewSettingsInput;
|
|
153048
|
+
};
|
|
152625
153049
|
export declare type MercuryUpdatedField = {
|
|
152626
153050
|
__typename?: 'MercuryUpdatedField';
|
|
152627
153051
|
field?: Maybe<Scalars['String']['output']>;
|
|
@@ -152634,6 +153058,12 @@ export declare type MercuryUpdatedField = {
|
|
|
152634
153058
|
oldString?: Maybe<Scalars['String']['output']>;
|
|
152635
153059
|
oldValue?: Maybe<Scalars['String']['output']>;
|
|
152636
153060
|
};
|
|
153061
|
+
export declare type MercuryUpsertViewPayload = Payload & {
|
|
153062
|
+
__typename?: 'MercuryUpsertViewPayload';
|
|
153063
|
+
errors?: Maybe<Array<MutationError>>;
|
|
153064
|
+
success: Scalars['Boolean']['output'];
|
|
153065
|
+
view?: Maybe<MercuryView>;
|
|
153066
|
+
};
|
|
152637
153067
|
export declare type MercuryUserConnection = {
|
|
152638
153068
|
__typename?: 'MercuryUserConnection';
|
|
152639
153069
|
edges?: Maybe<Array<Maybe<MercuryUserEdge>>>;
|
|
@@ -152656,6 +153086,46 @@ export declare type MercuryValidateFocusAreasForRankingPayload = Payload & {
|
|
|
152656
153086
|
success: Scalars['Boolean']['output'];
|
|
152657
153087
|
validation?: Maybe<MercuryFocusAreaRankingValidation>;
|
|
152658
153088
|
};
|
|
153089
|
+
export declare type MercuryView = Node & {
|
|
153090
|
+
__typename?: 'MercuryView';
|
|
153091
|
+
createdBy?: Maybe<User>;
|
|
153092
|
+
createdDate?: Maybe<Scalars['DateTime']['output']>;
|
|
153093
|
+
entityType: Scalars['String']['output'];
|
|
153094
|
+
id: Scalars['ID']['output'];
|
|
153095
|
+
isStarred: Scalars['Boolean']['output'];
|
|
153096
|
+
name: Scalars['String']['output'];
|
|
153097
|
+
owner?: Maybe<User>;
|
|
153098
|
+
settings?: Maybe<MercuryViewSettings>;
|
|
153099
|
+
updatedBy?: Maybe<User>;
|
|
153100
|
+
updatedDate?: Maybe<Scalars['DateTime']['output']>;
|
|
153101
|
+
};
|
|
153102
|
+
export declare type MercuryViewConnection = {
|
|
153103
|
+
__typename?: 'MercuryViewConnection';
|
|
153104
|
+
edges?: Maybe<Array<MercuryViewEdge>>;
|
|
153105
|
+
pageInfo: PageInfo;
|
|
153106
|
+
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
153107
|
+
};
|
|
153108
|
+
export declare type MercuryViewEdge = {
|
|
153109
|
+
__typename?: 'MercuryViewEdge';
|
|
153110
|
+
cursor: Scalars['String']['output'];
|
|
153111
|
+
node?: Maybe<MercuryView>;
|
|
153112
|
+
};
|
|
153113
|
+
export declare type MercuryViewSettingEntry = {
|
|
153114
|
+
__typename?: 'MercuryViewSettingEntry';
|
|
153115
|
+
key: Scalars['String']['output'];
|
|
153116
|
+
value: Scalars['String']['output'];
|
|
153117
|
+
};
|
|
153118
|
+
export declare type MercuryViewSettingEntryInput = {
|
|
153119
|
+
key: Scalars['String']['input'];
|
|
153120
|
+
value?: InputMaybe<Scalars['String']['input']>;
|
|
153121
|
+
};
|
|
153122
|
+
export declare type MercuryViewSettings = {
|
|
153123
|
+
__typename?: 'MercuryViewSettings';
|
|
153124
|
+
values?: Maybe<Array<MercuryViewSettingEntry>>;
|
|
153125
|
+
};
|
|
153126
|
+
export declare type MercuryViewSettingsInput = {
|
|
153127
|
+
values: Array<MercuryViewSettingEntryInput>;
|
|
153128
|
+
};
|
|
152659
153129
|
export declare enum MercuryViewType {
|
|
152660
153130
|
HierarchyView = "HIERARCHY_VIEW",
|
|
152661
153131
|
RankingView = "RANKING_VIEW"
|
|
@@ -153057,6 +153527,7 @@ export declare type Mutation = {
|
|
|
153057
153527
|
agentWorkspace_setTeamCapacities?: Maybe<AgentWorkspaceSetTeamCapacitiesPayload>;
|
|
153058
153528
|
agentWorkspace_startBreak?: Maybe<AgentWorkspaceAgentAvailability>;
|
|
153059
153529
|
agentWorkspace_startBulkScheduleImportJob?: Maybe<AgentWorkspaceStartBulkImportPayload>;
|
|
153530
|
+
agentWorkspace_startGenerateRoutingTable?: Maybe<AgentWorkspaceStartGenerateRoutingTablePayload>;
|
|
153060
153531
|
agentWorkspace_updateRoutingConfig?: Maybe<AgentWorkspaceUpdateSmartRoutingConfigPayload>;
|
|
153061
153532
|
agentWorkspace_updateSchedule?: Maybe<AgentWorkspaceUpdateSchedulePayload>;
|
|
153062
153533
|
agentWorkspace_updateSmartRoutingConfig?: Maybe<AgentWorkspaceUpdateSmartRoutingConfigPayload>;
|
|
@@ -153899,13 +154370,21 @@ export declare type Mutation = {
|
|
|
153899
154370
|
mercury?: Maybe<MercuryMutationApi>;
|
|
153900
154371
|
mercury_businessDomains?: Maybe<MercuryBusinessDomainsMutationApi>;
|
|
153901
154372
|
mercury_comments?: Maybe<MercuryCommentMutationApi>;
|
|
154373
|
+
mercury_createView?: Maybe<MercuryUpsertViewPayload>;
|
|
154374
|
+
mercury_deleteView?: Maybe<MercuryDeleteViewPayload>;
|
|
153902
154375
|
mercury_funds?: Maybe<MercuryFundsMutationApi>;
|
|
153903
154376
|
mercury_insights?: Maybe<MercuryInsightsMutationApi>;
|
|
153904
154377
|
mercury_organizations?: Maybe<MercuryOrganizationsMutationApi>;
|
|
153905
154378
|
mercury_providerOrchestration?: Maybe<MercuryProviderOrchestrationMutationApi>;
|
|
154379
|
+
mercury_reorderStarredView?: Maybe<MercuryReorderStarredViewPayload>;
|
|
153906
154380
|
mercury_risks?: Maybe<MercuryRisksMutationApi>;
|
|
154381
|
+
mercury_starView?: Maybe<MercuryStarViewPayload>;
|
|
153907
154382
|
mercury_strategicEvents?: Maybe<MercuryStrategicEventsMutationApi>;
|
|
153908
154383
|
mercury_tags?: Maybe<MercuryTagsMutationApi>;
|
|
154384
|
+
mercury_unstarView?: Maybe<MercuryUnstarViewPayload>;
|
|
154385
|
+
mercury_updateViewName?: Maybe<MercuryUpsertViewPayload>;
|
|
154386
|
+
mercury_updateViewOwner?: Maybe<MercuryUpsertViewPayload>;
|
|
154387
|
+
mercury_updateViewSettings?: Maybe<MercuryUpsertViewPayload>;
|
|
153909
154388
|
migrateSpaceShortcuts?: Maybe<MigrateSpaceShortcutsPayload>;
|
|
153910
154389
|
moveBlog?: Maybe<MoveBlogPayload>;
|
|
153911
154390
|
movePageAfter?: Maybe<MovePagePayload>;
|
|
@@ -154620,6 +155099,9 @@ export declare type MutationAgentWorkspace_StartBreakArgs = {
|
|
|
154620
155099
|
export declare type MutationAgentWorkspace_StartBulkScheduleImportJobArgs = {
|
|
154621
155100
|
input: AgentWorkspaceStartBulkImportInput;
|
|
154622
155101
|
};
|
|
155102
|
+
export declare type MutationAgentWorkspace_StartGenerateRoutingTableArgs = {
|
|
155103
|
+
input: AgentWorkspaceStartGenerateRoutingTableInput;
|
|
155104
|
+
};
|
|
154623
155105
|
export declare type MutationAgentWorkspace_UpdateRoutingConfigArgs = {
|
|
154624
155106
|
input: AgentWorkspaceUpdateRoutingConfigInput;
|
|
154625
155107
|
};
|
|
@@ -157583,6 +158065,30 @@ export declare type MutationMarkFeatureDiscoveredArgs = {
|
|
|
157583
158065
|
featureKey: Scalars['String']['input'];
|
|
157584
158066
|
pluginKey: Scalars['String']['input'];
|
|
157585
158067
|
};
|
|
158068
|
+
export declare type MutationMercury_CreateViewArgs = {
|
|
158069
|
+
input: MercuryCreateViewInput;
|
|
158070
|
+
};
|
|
158071
|
+
export declare type MutationMercury_DeleteViewArgs = {
|
|
158072
|
+
input: MercuryDeleteViewInput;
|
|
158073
|
+
};
|
|
158074
|
+
export declare type MutationMercury_ReorderStarredViewArgs = {
|
|
158075
|
+
input: MercuryReorderStarredViewInput;
|
|
158076
|
+
};
|
|
158077
|
+
export declare type MutationMercury_StarViewArgs = {
|
|
158078
|
+
input: MercuryStarViewInput;
|
|
158079
|
+
};
|
|
158080
|
+
export declare type MutationMercury_UnstarViewArgs = {
|
|
158081
|
+
input: MercuryUnstarViewInput;
|
|
158082
|
+
};
|
|
158083
|
+
export declare type MutationMercury_UpdateViewNameArgs = {
|
|
158084
|
+
input: MercuryUpdateViewNameInput;
|
|
158085
|
+
};
|
|
158086
|
+
export declare type MutationMercury_UpdateViewOwnerArgs = {
|
|
158087
|
+
input: MercuryUpdateViewOwnerInput;
|
|
158088
|
+
};
|
|
158089
|
+
export declare type MutationMercury_UpdateViewSettingsArgs = {
|
|
158090
|
+
input: MercuryUpdateViewSettingsInput;
|
|
158091
|
+
};
|
|
157586
158092
|
export declare type MutationMigrateSpaceShortcutsArgs = {
|
|
157587
158093
|
shortcutsList: Array<InputMaybe<GraphQlSpaceShortcutsInput>>;
|
|
157588
158094
|
spaceId: Scalars['ID']['input'];
|
|
@@ -161788,6 +162294,7 @@ export declare type Query = {
|
|
|
161788
162294
|
admin_permissions?: Maybe<Array<AdminPermission>>;
|
|
161789
162295
|
admin_scimRule?: Maybe<AdminScimRule>;
|
|
161790
162296
|
admin_scimRuleSearch?: Maybe<AdminScimRuleSearchConnection>;
|
|
162297
|
+
admin_test?: Maybe<AdminTest>;
|
|
161791
162298
|
admin_tokens?: Maybe<AdminTokenConnection>;
|
|
161792
162299
|
admin_unitCreateStatus?: Maybe<AdminUnitCreateStatus>;
|
|
161793
162300
|
admin_unitProfile?: Maybe<AdminUnit>;
|
|
@@ -161866,6 +162373,7 @@ export declare type Query = {
|
|
|
161866
162373
|
agentWorkspace_bulkScheduleImportJob?: Maybe<AgentWorkspaceBulkImportJob>;
|
|
161867
162374
|
agentWorkspace_capacity?: Maybe<AgentWorkspaceCapacityConnection>;
|
|
161868
162375
|
agentWorkspace_capacitySummary?: Maybe<AgentWorkspaceCapacitySummary>;
|
|
162376
|
+
agentWorkspace_categorySkillsInProject?: Maybe<AgentWorkspaceSkillConnection>;
|
|
161869
162377
|
agentWorkspace_clusterServiceCategories?: Maybe<AgentWorkspaceServiceClusteringResult>;
|
|
161870
162378
|
agentWorkspace_defaultCapacity?: Maybe<AgentWorkspaceDefaultCapacity>;
|
|
161871
162379
|
agentWorkspace_eligibleGroups?: Maybe<AgentWorkspaceEligibleGroupsPayload>;
|
|
@@ -161873,11 +162381,13 @@ export declare type Query = {
|
|
|
161873
162381
|
agentWorkspace_recommendedAgentsForGap?: Maybe<Array<AgentWorkspaceAgent>>;
|
|
161874
162382
|
agentWorkspace_recommendedAssignees?: Maybe<AgentWorkspaceRecommendedAssigneesResponse>;
|
|
161875
162383
|
agentWorkspace_routingConfig?: Maybe<AgentWorkspaceSmartRoutingConfig>;
|
|
162384
|
+
agentWorkspace_routingTableGenerationStatus?: Maybe<AgentWorkspaceRoutingTableGeneration>;
|
|
161876
162385
|
agentWorkspace_schedule?: Maybe<AgentWorkspaceSchedule>;
|
|
161877
162386
|
agentWorkspace_schedules?: Maybe<AgentWorkspaceSchedulesConnection>;
|
|
161878
162387
|
agentWorkspace_shiftEditBounds?: Maybe<AgentWorkspaceShiftEditBounds>;
|
|
161879
162388
|
agentWorkspace_shifts?: Maybe<AgentWorkspaceShiftsConnection>;
|
|
161880
162389
|
agentWorkspace_skillCategories?: Maybe<AgentWorkspaceSkillCategoryConnection>;
|
|
162390
|
+
agentWorkspace_skillCategoriesInProject?: Maybe<AgentWorkspaceSkillCategoryConnection>;
|
|
161881
162391
|
agentWorkspace_skills?: Maybe<AgentWorkspaceSkillConnection>;
|
|
161882
162392
|
agentWorkspace_smartRoutingConfig?: Maybe<AgentWorkspaceSmartRoutingConfig>;
|
|
161883
162393
|
agentWorkspace_teamCapacities?: Maybe<Array<AgentWorkspaceTeamCapacity>>;
|
|
@@ -161891,6 +162401,7 @@ export declare type Query = {
|
|
|
161891
162401
|
aiManagedObject_aiManagedObjectConfig?: Maybe<AiManagedObjectConfig>;
|
|
161892
162402
|
aiManagedObject_aiManagedObjectsByReferenceObjectAri?: Maybe<AiManagedObjectConnection>;
|
|
161893
162403
|
aiops_echo?: Maybe<Scalars['String']['output']>;
|
|
162404
|
+
aiops_incidentRelatedAlerts?: Maybe<AiOpsIncidentRelatedAlertsResponse>;
|
|
161894
162405
|
aiops_incidentSuggestion?: Maybe<AiOpsIncidentSuggestionResponse>;
|
|
161895
162406
|
aiops_latestInvestigationByEntityTypeId?: Maybe<AiOpsInvestigationQueryResult>;
|
|
161896
162407
|
aiops_latestInvestigationByIssueId?: Maybe<AiOpsInvestigationQueryResult>;
|
|
@@ -161996,6 +162507,7 @@ export declare type Query = {
|
|
|
161996
162507
|
assetsVertical_itemMapping?: Maybe<AssetsVerticalItemMappingResult>;
|
|
161997
162508
|
assetsVertical_itemMappings?: Maybe<AssetsVerticalItemMappingConnection>;
|
|
161998
162509
|
assetsVertical_modelItamAttributes?: Maybe<AssetsVerticalModelItamAttributesResult>;
|
|
162510
|
+
assetsVertical_modelObjectTypes?: Maybe<AssetsVerticalModelObjectTypesResult>;
|
|
161999
162511
|
assetsVertical_modelObjects?: Maybe<AssetsVerticalModelObjectsResult>;
|
|
162000
162512
|
assetsVertical_objects?: Maybe<AssetsVerticalObjectsResult>;
|
|
162001
162513
|
assetsVertical_stockroomItamAttributes?: Maybe<AssetsVerticalStockroomItamAttributesResult>;
|
|
@@ -162008,6 +162520,7 @@ export declare type Query = {
|
|
|
162008
162520
|
assetsVertical_verticalRoleAssignments?: Maybe<AssetsVerticalRoleAssignmentConnection>;
|
|
162009
162521
|
assetsVertical_verticalRoles?: Maybe<AssetsVerticalRolesResult>;
|
|
162010
162522
|
assetsVertical_verticalTemplate?: Maybe<AssetsVerticalVerticalTemplateResult>;
|
|
162523
|
+
assetsVertical_verticalTemplateV2?: Maybe<AssetsVerticalVerticalTemplateV2Result>;
|
|
162011
162524
|
assets_bundle?: Maybe<AssetsBundleResult>;
|
|
162012
162525
|
assets_cdmObjectTypesDefinitions?: Maybe<Array<Maybe<AssetsCdmObjectTypeResult>>>;
|
|
162013
162526
|
assets_cdmSchemasDefinitions?: Maybe<Array<Maybe<AssetsCdmSchemaResult>>>;
|
|
@@ -162367,6 +162880,7 @@ export declare type Query = {
|
|
|
162367
162880
|
csmAi_getAgentVersion?: Maybe<CsmAiAgentVersionResult>;
|
|
162368
162881
|
csmAi_getAiHubByHelpCenterAri?: Maybe<CsmAiHubResult>;
|
|
162369
162882
|
csmAi_getAvailableByod?: Maybe<CsmAiByodContentsResult>;
|
|
162883
|
+
csmAi_getAvailableKnowledgeSources?: Maybe<CsmAiAvailableKnowledgeSourcesResult>;
|
|
162370
162884
|
csmAi_getSupportWidget?: Maybe<CsmAiWidgetConfigResult>;
|
|
162371
162885
|
csmAi_getWidget?: Maybe<CsmAiWidgetConfigResult>;
|
|
162372
162886
|
csmAi_getWidgetsWithCsmAiHub?: Maybe<CsmAiHubWithWidgetsResult>;
|
|
@@ -162765,6 +163279,9 @@ export declare type Query = {
|
|
|
162765
163279
|
mercury_risks?: Maybe<MercuryRisksQueryApi>;
|
|
162766
163280
|
mercury_strategicEvents?: Maybe<MercuryStrategicEventsQueryApi>;
|
|
162767
163281
|
mercury_tags?: Maybe<MercuryTagsQueryApi>;
|
|
163282
|
+
mercury_view?: Maybe<MercuryView>;
|
|
163283
|
+
mercury_views?: Maybe<Array<Maybe<MercuryView>>>;
|
|
163284
|
+
mercury_viewsSearch?: Maybe<MercuryViewConnection>;
|
|
162768
163285
|
migration: MigrationQuery;
|
|
162769
163286
|
migrationCatalogue: MigrationCatalogueQuery;
|
|
162770
163287
|
migrationMediaSession?: Maybe<ContentMediaSession>;
|
|
@@ -163739,6 +164256,15 @@ export declare type QueryAgentWorkspace_CapacityArgs = {
|
|
|
163739
164256
|
export declare type QueryAgentWorkspace_CapacitySummaryArgs = {
|
|
163740
164257
|
input: AgentWorkspaceCapacityInput;
|
|
163741
164258
|
};
|
|
164259
|
+
export declare type QueryAgentWorkspace_CategorySkillsInProjectArgs = {
|
|
164260
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
164261
|
+
agentAccountIds?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
164262
|
+
categoryId: Scalars['ID']['input'];
|
|
164263
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
164264
|
+
projectId: Scalars['ID']['input'];
|
|
164265
|
+
skillsQuery?: InputMaybe<Scalars['String']['input']>;
|
|
164266
|
+
teamARIs?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
164267
|
+
};
|
|
163742
164268
|
export declare type QueryAgentWorkspace_ClusterServiceCategoriesArgs = {
|
|
163743
164269
|
cloudId: Scalars['ID']['input'];
|
|
163744
164270
|
days?: InputMaybe<Scalars['Int']['input']>;
|
|
@@ -163769,6 +164295,11 @@ export declare type QueryAgentWorkspace_RoutingConfigArgs = {
|
|
|
163769
164295
|
cloudId: Scalars['ID']['input'];
|
|
163770
164296
|
projectKey: Scalars['String']['input'];
|
|
163771
164297
|
};
|
|
164298
|
+
export declare type QueryAgentWorkspace_RoutingTableGenerationStatusArgs = {
|
|
164299
|
+
cloudId: Scalars['ID']['input'];
|
|
164300
|
+
generationId: Scalars['ID']['input'];
|
|
164301
|
+
projectKey: Scalars['String']['input'];
|
|
164302
|
+
};
|
|
163772
164303
|
export declare type QueryAgentWorkspace_ScheduleArgs = {
|
|
163773
164304
|
cloudId: Scalars['ID']['input'];
|
|
163774
164305
|
projectId?: InputMaybe<Scalars['ID']['input']>;
|
|
@@ -163793,9 +164324,19 @@ export declare type QueryAgentWorkspace_ShiftsArgs = {
|
|
|
163793
164324
|
isInitialFetch?: InputMaybe<Scalars['Boolean']['input']>;
|
|
163794
164325
|
};
|
|
163795
164326
|
export declare type QueryAgentWorkspace_SkillCategoriesArgs = {
|
|
163796
|
-
|
|
164327
|
+
categoryIds?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
163797
164328
|
cloudId: Scalars['ID']['input'];
|
|
164329
|
+
query?: InputMaybe<Scalars['String']['input']>;
|
|
164330
|
+
};
|
|
164331
|
+
export declare type QueryAgentWorkspace_SkillCategoriesInProjectArgs = {
|
|
164332
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
164333
|
+
agentAccountIds?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
164334
|
+
categoryIds?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
163798
164335
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
164336
|
+
limitSkillsToFirstCategories?: InputMaybe<Scalars['Int']['input']>;
|
|
164337
|
+
projectId: Scalars['ID']['input'];
|
|
164338
|
+
skillsQuery?: InputMaybe<Scalars['String']['input']>;
|
|
164339
|
+
teamARIs?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
163799
164340
|
};
|
|
163800
164341
|
export declare type QueryAgentWorkspace_SkillsArgs = {
|
|
163801
164342
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -163857,6 +164398,10 @@ export declare type QueryAiManagedObject_AiManagedObjectsByReferenceObjectAriArg
|
|
|
163857
164398
|
export declare type QueryAiops_EchoArgs = {
|
|
163858
164399
|
input?: InputMaybe<Scalars['String']['input']>;
|
|
163859
164400
|
};
|
|
164401
|
+
export declare type QueryAiops_IncidentRelatedAlertsArgs = {
|
|
164402
|
+
cloudId: Scalars['ID']['input'];
|
|
164403
|
+
filter: AiOpsIncidentRelatedAlertsInput;
|
|
164404
|
+
};
|
|
163860
164405
|
export declare type QueryAiops_IncidentSuggestionArgs = {
|
|
163861
164406
|
cloudId: Scalars['ID']['input'];
|
|
163862
164407
|
issueKey: Scalars['String']['input'];
|
|
@@ -164434,6 +164979,9 @@ export declare type QueryAssetsVertical_ModelItamAttributesArgs = {
|
|
|
164434
164979
|
cloudId: Scalars['ID']['input'];
|
|
164435
164980
|
workspaceId: Scalars['ID']['input'];
|
|
164436
164981
|
};
|
|
164982
|
+
export declare type QueryAssetsVertical_ModelObjectTypesArgs = {
|
|
164983
|
+
cloudId: Scalars['ID']['input'];
|
|
164984
|
+
};
|
|
164437
164985
|
export declare type QueryAssetsVertical_ModelObjectsArgs = {
|
|
164438
164986
|
cloudId: Scalars['ID']['input'];
|
|
164439
164987
|
input: AssetsVerticalModelObjectsInput;
|
|
@@ -164491,6 +165039,11 @@ export declare type QueryAssetsVertical_VerticalTemplateArgs = {
|
|
|
164491
165039
|
type: AssetsVerticalVerticalType;
|
|
164492
165040
|
version?: InputMaybe<Scalars['String']['input']>;
|
|
164493
165041
|
};
|
|
165042
|
+
export declare type QueryAssetsVertical_VerticalTemplateV2Args = {
|
|
165043
|
+
cloudId: Scalars['ID']['input'];
|
|
165044
|
+
type: AssetsVerticalVerticalType;
|
|
165045
|
+
version?: InputMaybe<Scalars['String']['input']>;
|
|
165046
|
+
};
|
|
164494
165047
|
export declare type QueryAssets_BundleArgs = {
|
|
164495
165048
|
cloudId: Scalars['ID']['input'];
|
|
164496
165049
|
type: AssetsBundleType;
|
|
@@ -166118,6 +166671,10 @@ export declare type QueryCsmAi_GetAiHubByHelpCenterAriArgs = {
|
|
|
166118
166671
|
export declare type QueryCsmAi_GetAvailableByodArgs = {
|
|
166119
166672
|
helpCenterAri: Scalars['ID']['input'];
|
|
166120
166673
|
};
|
|
166674
|
+
export declare type QueryCsmAi_GetAvailableKnowledgeSourcesArgs = {
|
|
166675
|
+
csmAiAgentId: Scalars['ID']['input'];
|
|
166676
|
+
helpCenterAri: Scalars['ID']['input'];
|
|
166677
|
+
};
|
|
166121
166678
|
export declare type QueryCsmAi_GetSupportWidgetArgs = {
|
|
166122
166679
|
helpCenterAri: Scalars['ID']['input'];
|
|
166123
166680
|
};
|
|
@@ -167588,6 +168145,18 @@ export declare type QueryMedia_ItemsByDescriptorArgs = {
|
|
|
167588
168145
|
cloudId: Scalars['String']['input'];
|
|
167589
168146
|
input: MediaItemsInput;
|
|
167590
168147
|
};
|
|
168148
|
+
export declare type QueryMercury_ViewArgs = {
|
|
168149
|
+
id: Scalars['ID']['input'];
|
|
168150
|
+
};
|
|
168151
|
+
export declare type QueryMercury_ViewsArgs = {
|
|
168152
|
+
ids: Array<Scalars['ID']['input']>;
|
|
168153
|
+
};
|
|
168154
|
+
export declare type QueryMercury_ViewsSearchArgs = {
|
|
168155
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
168156
|
+
cloudId: Scalars['ID']['input'];
|
|
168157
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
168158
|
+
q?: InputMaybe<Scalars['String']['input']>;
|
|
168159
|
+
};
|
|
167591
168160
|
export declare type QueryMyMarketplaceAppsArgs = {
|
|
167592
168161
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
167593
168162
|
filter?: InputMaybe<MarketplaceAppsFilter>;
|
|
@@ -193206,6 +193775,7 @@ export declare type SpcsScanBootstrap = {
|
|
|
193206
193775
|
region?: Maybe<Scalars['String']['output']>;
|
|
193207
193776
|
s3Path?: Maybe<Scalars['String']['output']>;
|
|
193208
193777
|
scanId: Scalars['ID']['output'];
|
|
193778
|
+
scope?: Maybe<Scalars['String']['output']>;
|
|
193209
193779
|
status?: Maybe<Scalars['String']['output']>;
|
|
193210
193780
|
workspaceAris: Array<Scalars['String']['output']>;
|
|
193211
193781
|
workspaces?: Maybe<Array<SpcsBootstrapWorkspace>>;
|
|
@@ -193696,6 +194266,7 @@ export declare type SpfCreateViewInput = {
|
|
|
193696
194266
|
name: Scalars['String']['input'];
|
|
193697
194267
|
ownerId?: InputMaybe<Scalars['String']['input']>;
|
|
193698
194268
|
settings: SpfViewSettingsInput;
|
|
194269
|
+
starred?: InputMaybe<Scalars['Boolean']['input']>;
|
|
193699
194270
|
};
|
|
193700
194271
|
export declare type SpfDeleteAskCommentInput = {
|
|
193701
194272
|
id: Scalars['ID']['input'];
|
|
@@ -194537,6 +195108,7 @@ export declare type StakeholderCommsBulkAddSubscriberFromAdminResponse = {
|
|
|
194537
195108
|
};
|
|
194538
195109
|
export declare type StakeholderCommsBulkAddSubscriberFromAdminResultItem = {
|
|
194539
195110
|
__typename?: 'StakeholderCommsBulkAddSubscriberFromAdminResultItem';
|
|
195111
|
+
alreadySubscribed: Scalars['Boolean']['output'];
|
|
194540
195112
|
email: Scalars['String']['output'];
|
|
194541
195113
|
error?: Maybe<Scalars['String']['output']>;
|
|
194542
195114
|
subscriberId?: Maybe<Scalars['String']['output']>;
|
|
@@ -197054,6 +197626,17 @@ export declare type TeamHierarchyErrors = {
|
|
|
197054
197626
|
description?: Maybe<Scalars['String']['output']>;
|
|
197055
197627
|
reason: TeamHierarchyErrorCode;
|
|
197056
197628
|
};
|
|
197629
|
+
export declare type TeamLinkExternalTeamInput = {
|
|
197630
|
+
externalReference: TeamExternalReferenceInput;
|
|
197631
|
+
scopeId: Scalars['ID']['input'];
|
|
197632
|
+
teamId: Scalars['ID']['input'];
|
|
197633
|
+
};
|
|
197634
|
+
export declare type TeamLinkExternalTeamPayload = Payload & {
|
|
197635
|
+
__typename?: 'TeamLinkExternalTeamPayload';
|
|
197636
|
+
errors?: Maybe<Array<MutationError>>;
|
|
197637
|
+
success: Scalars['Boolean']['output'];
|
|
197638
|
+
teamId?: Maybe<Scalars['ID']['output']>;
|
|
197639
|
+
};
|
|
197057
197640
|
export declare type TeamMember = {
|
|
197058
197641
|
__typename?: 'TeamMember';
|
|
197059
197642
|
member?: Maybe<User>;
|
|
@@ -197147,6 +197730,7 @@ export declare type TeamMutation = {
|
|
|
197147
197730
|
deleteTeamType?: Maybe<TeamType>;
|
|
197148
197731
|
linkCustomFieldToOption?: Maybe<TeamCustomFieldKeyValues>;
|
|
197149
197732
|
linkCustomFieldToValue?: Maybe<TeamCustomFieldKeyValues>;
|
|
197733
|
+
linkExternalTeam?: Maybe<TeamLinkExternalTeamPayload>;
|
|
197150
197734
|
removeChild?: Maybe<TeamV2>;
|
|
197151
197735
|
removeParent?: Maybe<TeamV2>;
|
|
197152
197736
|
setNotificationConfiguration?: Maybe<TeamNotificationConfiguration>;
|
|
@@ -197222,6 +197806,9 @@ export declare type TeamMutationLinkCustomFieldToValueArgs = {
|
|
|
197222
197806
|
customFieldValue: Scalars['String']['input'];
|
|
197223
197807
|
teamId: Scalars['ID']['input'];
|
|
197224
197808
|
};
|
|
197809
|
+
export declare type TeamMutationLinkExternalTeamArgs = {
|
|
197810
|
+
input: TeamLinkExternalTeamInput;
|
|
197811
|
+
};
|
|
197225
197812
|
export declare type TeamMutationRemoveChildArgs = {
|
|
197226
197813
|
childId: Scalars['ID']['input'];
|
|
197227
197814
|
siteId: Scalars['ID']['input'];
|
|
@@ -204439,6 +205026,17 @@ export declare type TrelloGenerateBoardBackgroundWithAiPayload = Payload & {
|
|
|
204439
205026
|
errors?: Maybe<Array<MutationError>>;
|
|
204440
205027
|
success: Scalars['Boolean']['output'];
|
|
204441
205028
|
};
|
|
205029
|
+
export declare type TrelloGenerateCardCoverWithAiInput = {
|
|
205030
|
+
cardId: Scalars['ID']['input'];
|
|
205031
|
+
theme?: InputMaybe<Scalars['String']['input']>;
|
|
205032
|
+
userInput: Scalars['String']['input'];
|
|
205033
|
+
};
|
|
205034
|
+
export declare type TrelloGenerateCardCoverWithAiPayload = Payload & {
|
|
205035
|
+
__typename?: 'TrelloGenerateCardCoverWithAiPayload';
|
|
205036
|
+
card?: Maybe<TrelloBaseCard>;
|
|
205037
|
+
errors?: Maybe<Array<MutationError>>;
|
|
205038
|
+
success: Scalars['Boolean']['output'];
|
|
205039
|
+
};
|
|
204442
205040
|
export declare type TrelloGenerateCheckItemsForCardInput = {
|
|
204443
205041
|
cardId: Scalars['ID']['input'];
|
|
204444
205042
|
checklistTarget: TrelloChecklistTarget;
|
|
@@ -204996,10 +205594,12 @@ export declare type TrelloMemberBoardEdge = {
|
|
|
204996
205594
|
node?: Maybe<TrelloBoard>;
|
|
204997
205595
|
};
|
|
204998
205596
|
export declare type TrelloMemberBoardFilter = {
|
|
204999
|
-
|
|
205597
|
+
filterValues?: InputMaybe<Array<TrelloMemberBoardFilterValue>>;
|
|
205000
205598
|
};
|
|
205001
205599
|
export declare enum TrelloMemberBoardFilterValue {
|
|
205002
|
-
All = "ALL"
|
|
205600
|
+
All = "ALL",
|
|
205601
|
+
Closed = "CLOSED",
|
|
205602
|
+
Open = "OPEN"
|
|
205003
205603
|
}
|
|
205004
205604
|
export declare type TrelloMemberBoardStarConnection = {
|
|
205005
205605
|
__typename?: 'TrelloMemberBoardStarConnection';
|
|
@@ -205331,6 +205931,7 @@ export declare type TrelloMutationApi = {
|
|
|
205331
205931
|
enableCardFrontCompleteToggle?: Maybe<TrelloEnableCardFrontCompleteTogglePayload>;
|
|
205332
205932
|
endVoiceCaptureSession?: Maybe<TrelloEndVoiceCaptureSessionPayload>;
|
|
205333
205933
|
generateBoardBackgroundWithAi?: Maybe<TrelloGenerateBoardBackgroundWithAiPayload>;
|
|
205934
|
+
generateCardCoverWithAi?: Maybe<TrelloGenerateCardCoverWithAiPayload>;
|
|
205334
205935
|
generateCheckItemsForCard?: Maybe<TrelloGenerateCheckItemsForCardPayload>;
|
|
205335
205936
|
hideCardCoversOnCardFront?: Maybe<TrelloHideCardCoversOnCardFrontPayload>;
|
|
205336
205937
|
hideVotesOnBoard?: Maybe<TrelloHideVotesOnBoardPayload>;
|
|
@@ -205546,6 +206147,9 @@ export declare type TrelloMutationApiEndVoiceCaptureSessionArgs = {
|
|
|
205546
206147
|
export declare type TrelloMutationApiGenerateBoardBackgroundWithAiArgs = {
|
|
205547
206148
|
input: TrelloGenerateBoardBackgroundWithAiInput;
|
|
205548
206149
|
};
|
|
206150
|
+
export declare type TrelloMutationApiGenerateCardCoverWithAiArgs = {
|
|
206151
|
+
input: TrelloGenerateCardCoverWithAiInput;
|
|
206152
|
+
};
|
|
205549
206153
|
export declare type TrelloMutationApiGenerateCheckItemsForCardArgs = {
|
|
205550
206154
|
input: TrelloGenerateCheckItemsForCardInput;
|
|
205551
206155
|
};
|
|
@@ -207189,6 +207793,9 @@ export declare type TrelloSortListCardsPayload = Payload & {
|
|
|
207189
207793
|
listId: Scalars['ID']['output'];
|
|
207190
207794
|
success: Scalars['Boolean']['output'];
|
|
207191
207795
|
};
|
|
207796
|
+
export declare type TrelloStatefulSessionUpdated = {
|
|
207797
|
+
sessionId: Scalars['ID']['output'];
|
|
207798
|
+
};
|
|
207192
207799
|
export declare type TrelloSticker = {
|
|
207193
207800
|
__typename?: 'TrelloSticker';
|
|
207194
207801
|
image?: Maybe<Scalars['String']['output']>;
|
|
@@ -207224,6 +207831,7 @@ export declare type TrelloSubscriptionApi = {
|
|
|
207224
207831
|
onInboxUpdated?: Maybe<TrelloInboxUpdated>;
|
|
207225
207832
|
onMemberPlannerEventCardsUpdated?: Maybe<TrelloMemberPlannerEventCardsUpdated>;
|
|
207226
207833
|
onMemberUpdated?: Maybe<TrelloMemberUpdated>;
|
|
207834
|
+
onStatefulSessionUpdated?: Maybe<TrelloStatefulSessionUpdated>;
|
|
207227
207835
|
onWorkOverviewDashboardJobUpdated?: Maybe<TrelloWorkOverviewDashboardJobUpdated>;
|
|
207228
207836
|
onWorkspaceUpdated?: Maybe<TrelloWorkspaceUpdated>;
|
|
207229
207837
|
};
|
|
@@ -207251,6 +207859,10 @@ export declare type TrelloSubscriptionApiOnMemberUpdatedArgs = {
|
|
|
207251
207859
|
id: Scalars['ID']['input'];
|
|
207252
207860
|
noInitialResponse?: InputMaybe<Scalars['Boolean']['input']>;
|
|
207253
207861
|
};
|
|
207862
|
+
export declare type TrelloSubscriptionApiOnStatefulSessionUpdatedArgs = {
|
|
207863
|
+
noInitialResponse?: InputMaybe<Scalars['Boolean']['input']>;
|
|
207864
|
+
sessionId: Scalars['ID']['input'];
|
|
207865
|
+
};
|
|
207254
207866
|
export declare type TrelloSubscriptionApiOnWorkOverviewDashboardJobUpdatedArgs = {
|
|
207255
207867
|
id: Scalars['ID']['input'];
|
|
207256
207868
|
};
|
|
@@ -207907,6 +208519,25 @@ export declare type TrelloUserUnrestrictedAccessSummary = {
|
|
|
207907
208519
|
topWorkspaces?: Maybe<Array<TrelloWorkspaceAccessSummary>>;
|
|
207908
208520
|
totalWorkspaces?: Maybe<Scalars['Int']['output']>;
|
|
207909
208521
|
};
|
|
208522
|
+
export declare type TrelloVoiceCaptureCardUpdated = {
|
|
208523
|
+
__typename?: 'TrelloVoiceCaptureCardUpdated';
|
|
208524
|
+
due?: Maybe<Scalars['Date']['output']>;
|
|
208525
|
+
name?: Maybe<Scalars['String']['output']>;
|
|
208526
|
+
objectId: Scalars['ID']['output'];
|
|
208527
|
+
};
|
|
208528
|
+
export declare type TrelloVoiceCaptureSessionCardConnectionUpdated = {
|
|
208529
|
+
__typename?: 'TrelloVoiceCaptureSessionCardConnectionUpdated';
|
|
208530
|
+
edges?: Maybe<Array<TrelloVoiceCaptureSessionCardEdgeUpdated>>;
|
|
208531
|
+
};
|
|
208532
|
+
export declare type TrelloVoiceCaptureSessionCardEdgeUpdated = {
|
|
208533
|
+
__typename?: 'TrelloVoiceCaptureSessionCardEdgeUpdated';
|
|
208534
|
+
node?: Maybe<TrelloVoiceCaptureCardUpdated>;
|
|
208535
|
+
};
|
|
208536
|
+
export declare type TrelloVoiceCaptureSessionUpdated = TrelloStatefulSessionUpdated & {
|
|
208537
|
+
__typename?: 'TrelloVoiceCaptureSessionUpdated';
|
|
208538
|
+
cards?: Maybe<TrelloVoiceCaptureSessionCardConnectionUpdated>;
|
|
208539
|
+
sessionId: Scalars['ID']['output'];
|
|
208540
|
+
};
|
|
207910
208541
|
export declare type TrelloWatchCardInput = {
|
|
207911
208542
|
cardId: Scalars['ID']['input'];
|
|
207912
208543
|
};
|