@forge/cli-shared 8.17.0-next.1 → 8.17.0-next.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +15 -0
- package/out/graphql/graphql-types.d.ts +332 -26
- package/out/graphql/graphql-types.d.ts.map +1 -1
- package/out/graphql/graphql-types.js +60 -37
- package/package.json +2 -2
|
@@ -182,9 +182,14 @@ export declare type AvpAnalyticsColumnInput = {
|
|
|
182
182
|
simple?: InputMaybe<AvpAnalyticsSimpleColumnInput>;
|
|
183
183
|
};
|
|
184
184
|
export declare enum AvpAnalyticsColumnType {
|
|
185
|
+
Boolean = "BOOLEAN",
|
|
186
|
+
Date = "DATE",
|
|
185
187
|
DateTime = "DATE_TIME",
|
|
188
|
+
Double = "DOUBLE",
|
|
186
189
|
Integer = "INTEGER",
|
|
187
|
-
|
|
190
|
+
Reference = "REFERENCE",
|
|
191
|
+
Text = "TEXT",
|
|
192
|
+
Time = "TIME"
|
|
188
193
|
}
|
|
189
194
|
export declare type AvpAnalyticsCreateModelInput = {
|
|
190
195
|
modelDefinition?: InputMaybe<AvpAnalyticsModelDefinitionInput>;
|
|
@@ -506,6 +511,21 @@ export declare enum AvpAnalyticsSortType {
|
|
|
506
511
|
Asc = "ASC",
|
|
507
512
|
Desc = "DESC"
|
|
508
513
|
}
|
|
514
|
+
export declare type AvpAnalyticsUpdateModelInput = {
|
|
515
|
+
forceUpdate: Scalars['Boolean']['input'];
|
|
516
|
+
modelDefinition: AvpAnalyticsModelDefinitionInput;
|
|
517
|
+
modelDescription?: InputMaybe<Scalars['String']['input']>;
|
|
518
|
+
modelId: Scalars['ID']['input'];
|
|
519
|
+
modelName?: InputMaybe<Scalars['String']['input']>;
|
|
520
|
+
modelVersion: Scalars['Int']['input'];
|
|
521
|
+
shouldPublish: Scalars['Boolean']['input'];
|
|
522
|
+
};
|
|
523
|
+
export declare type AvpAnalyticsUpdateModelPayload = Payload & {
|
|
524
|
+
__typename?: 'AVPAnalyticsUpdateModelPayload';
|
|
525
|
+
errors?: Maybe<Array<MutationError>>;
|
|
526
|
+
model?: Maybe<AvpAnalyticsModel>;
|
|
527
|
+
success: Scalars['Boolean']['output'];
|
|
528
|
+
};
|
|
509
529
|
export declare enum AvpCanvasRowHeight {
|
|
510
530
|
Large = "large",
|
|
511
531
|
Medium = "medium",
|
|
@@ -4423,6 +4443,7 @@ export declare enum AgentStudioKnowledgeGapUploadJobStatus {
|
|
|
4423
4443
|
Generating = "GENERATING",
|
|
4424
4444
|
PartialComplete = "PARTIAL_COMPLETE",
|
|
4425
4445
|
Pending = "PENDING",
|
|
4446
|
+
Postprocessing = "POSTPROCESSING",
|
|
4426
4447
|
Processing = "PROCESSING"
|
|
4427
4448
|
}
|
|
4428
4449
|
export declare type AgentStudioKnowledgeSource = {
|
|
@@ -10419,6 +10440,19 @@ export declare enum AssetsVerticalBundleType {
|
|
|
10419
10440
|
Cdm = "CDM",
|
|
10420
10441
|
Osc = "OSC"
|
|
10421
10442
|
}
|
|
10443
|
+
export declare type AssetsVerticalCountByStatus = {
|
|
10444
|
+
__typename?: 'AssetsVerticalCountByStatus';
|
|
10445
|
+
counts?: Maybe<Array<Maybe<AssetsVerticalStatusCount>>>;
|
|
10446
|
+
};
|
|
10447
|
+
export declare type AssetsVerticalCountByStatusInput = {
|
|
10448
|
+
category: AssetsVerticalAttributeCategory;
|
|
10449
|
+
filters?: InputMaybe<Array<InputMaybe<Array<InputMaybe<AssetsVerticalObjectsFilterCondition>>>>>;
|
|
10450
|
+
statusField: Scalars['String']['input'];
|
|
10451
|
+
statuses: Array<Scalars['String']['input']>;
|
|
10452
|
+
verticalInstantiationId: Scalars['ID']['input'];
|
|
10453
|
+
workspaceId: Scalars['ID']['input'];
|
|
10454
|
+
};
|
|
10455
|
+
export declare type AssetsVerticalCountByStatusResult = AssetsVerticalCountByStatus | QueryError;
|
|
10422
10456
|
export declare type AssetsVerticalGenerateInsightsInput = {
|
|
10423
10457
|
cloudId: Scalars['ID']['input'];
|
|
10424
10458
|
};
|
|
@@ -10472,6 +10506,11 @@ export declare enum AssetsVerticalInventoryErrorCode {
|
|
|
10472
10506
|
Timeout = "TIMEOUT",
|
|
10473
10507
|
ValidationError = "VALIDATION_ERROR"
|
|
10474
10508
|
}
|
|
10509
|
+
export declare type AssetsVerticalInventoryErrorExtension = QueryErrorExtension & {
|
|
10510
|
+
__typename?: 'AssetsVerticalInventoryErrorExtension';
|
|
10511
|
+
errorType?: Maybe<Scalars['String']['output']>;
|
|
10512
|
+
statusCode?: Maybe<Scalars['Int']['output']>;
|
|
10513
|
+
};
|
|
10475
10514
|
export declare type AssetsVerticalObject = AssetsVerticalObjectNode & {
|
|
10476
10515
|
__typename?: 'AssetsVerticalObject';
|
|
10477
10516
|
avatar?: Maybe<AssetsVerticalAvatar>;
|
|
@@ -10497,6 +10536,16 @@ export declare type AssetsVerticalObjectNode = {
|
|
|
10497
10536
|
name?: Maybe<Scalars['String']['output']>;
|
|
10498
10537
|
objectKey?: Maybe<Scalars['String']['output']>;
|
|
10499
10538
|
};
|
|
10539
|
+
export declare type AssetsVerticalObjectsFilterCondition = {
|
|
10540
|
+
key?: InputMaybe<Scalars['String']['input']>;
|
|
10541
|
+
operator?: InputMaybe<AssetsVerticalObjectsFilterOperator>;
|
|
10542
|
+
values?: InputMaybe<Array<InputMaybe<Scalars['String']['input']>>>;
|
|
10543
|
+
};
|
|
10544
|
+
export declare enum AssetsVerticalObjectsFilterOperator {
|
|
10545
|
+
Equals = "EQUALS",
|
|
10546
|
+
In = "IN",
|
|
10547
|
+
Like = "LIKE"
|
|
10548
|
+
}
|
|
10500
10549
|
export declare type AssetsVerticalSchemaTemplate = {
|
|
10501
10550
|
__typename?: 'AssetsVerticalSchemaTemplate';
|
|
10502
10551
|
description?: Maybe<Scalars['String']['output']>;
|
|
@@ -10507,6 +10556,11 @@ export declare type AssetsVerticalSchemaTemplate = {
|
|
|
10507
10556
|
objectTypeCount?: Maybe<Scalars['Int']['output']>;
|
|
10508
10557
|
type: Scalars['String']['output'];
|
|
10509
10558
|
};
|
|
10559
|
+
export declare type AssetsVerticalStatusCount = {
|
|
10560
|
+
__typename?: 'AssetsVerticalStatusCount';
|
|
10561
|
+
count?: Maybe<Scalars['Int']['output']>;
|
|
10562
|
+
statusKey?: Maybe<Scalars['String']['output']>;
|
|
10563
|
+
};
|
|
10510
10564
|
export declare type AssetsVerticalStatusType = {
|
|
10511
10565
|
__typename?: 'AssetsVerticalStatusType';
|
|
10512
10566
|
category?: Maybe<Scalars['Int']['output']>;
|
|
@@ -14254,6 +14308,10 @@ export declare type CloudifyCloudProjectTarget = {
|
|
|
14254
14308
|
__typename?: 'CloudifyCloudProjectTarget';
|
|
14255
14309
|
project: CloudifyProjectAri;
|
|
14256
14310
|
};
|
|
14311
|
+
export declare type CloudifyCloudProjectTargetInput = {
|
|
14312
|
+
projectId: Scalars['ID']['input'];
|
|
14313
|
+
siteId: Scalars['ID']['input'];
|
|
14314
|
+
};
|
|
14257
14315
|
export declare type CloudifyEnactment = {
|
|
14258
14316
|
__typename?: 'CloudifyEnactment';
|
|
14259
14317
|
completedAt?: Maybe<Scalars['String']['output']>;
|
|
@@ -14290,6 +14348,10 @@ export declare type CloudifyRecommendation = {
|
|
|
14290
14348
|
target: CloudifyRecommendationTarget;
|
|
14291
14349
|
title: Scalars['String']['output'];
|
|
14292
14350
|
};
|
|
14351
|
+
export declare type CloudifyRecommendationFilterInput = {
|
|
14352
|
+
cloudProject?: InputMaybe<CloudifyCloudProjectTargetInput>;
|
|
14353
|
+
siteId?: InputMaybe<Scalars['ID']['input']>;
|
|
14354
|
+
};
|
|
14293
14355
|
export declare type CloudifyRecommendationId = {
|
|
14294
14356
|
__typename?: 'CloudifyRecommendationId';
|
|
14295
14357
|
value: Scalars['String']['output'];
|
|
@@ -14297,6 +14359,7 @@ export declare type CloudifyRecommendationId = {
|
|
|
14297
14359
|
export declare type CloudifyRecommendationInput = {
|
|
14298
14360
|
reasoning: Scalars['String']['input'];
|
|
14299
14361
|
steps: Array<CloudifyStepInput>;
|
|
14362
|
+
target: CloudifyTargetInput;
|
|
14300
14363
|
title: Scalars['String']['input'];
|
|
14301
14364
|
};
|
|
14302
14365
|
export declare type CloudifyRecommendationStep = {
|
|
@@ -14313,6 +14376,9 @@ export declare type CloudifyStepInput = {
|
|
|
14313
14376
|
title: Scalars['String']['input'];
|
|
14314
14377
|
toolId: Scalars['String']['input'];
|
|
14315
14378
|
};
|
|
14379
|
+
export declare type CloudifyTargetInput = {
|
|
14380
|
+
cloudProject?: InputMaybe<CloudifyCloudProjectTargetInput>;
|
|
14381
|
+
};
|
|
14316
14382
|
export declare type CloudifyToolId = {
|
|
14317
14383
|
__typename?: 'CloudifyToolId';
|
|
14318
14384
|
value: Scalars['String']['output'];
|
|
@@ -15144,6 +15210,7 @@ export declare type CommerceExpCcpEntitlement = CommerceExpNode & {
|
|
|
15144
15210
|
relatedEnterpriseEntitlementForBac?: Maybe<CommerceExpCcpEntitlement>;
|
|
15145
15211
|
relatedEnterpriseInstanceEntitlements2?: Maybe<CommerceExpCcpEntitlementConnection>;
|
|
15146
15212
|
relatedEnterpriseInstanceEntitlementsForBac?: Maybe<Array<Maybe<CommerceExpCcpEntitlement>>>;
|
|
15213
|
+
relatedInvoices?: Maybe<Array<Maybe<CommerceExpCcpInvoice>>>;
|
|
15147
15214
|
relatedQuotes?: Maybe<Array<Maybe<CommerceExpCcpQuote>>>;
|
|
15148
15215
|
relatesFromEntitlements?: Maybe<Array<Maybe<CommerceExpCcpEntitlementRelationship>>>;
|
|
15149
15216
|
relatesToEntitlements?: Maybe<Array<Maybe<CommerceExpCcpEntitlementRelationship>>>;
|
|
@@ -28386,13 +28453,26 @@ export declare enum ConfluenceSiteEmailAddressStatus {
|
|
|
28386
28453
|
export declare type ConfluenceSmartSpaceOverview = {
|
|
28387
28454
|
__typename?: 'ConfluenceSmartSpaceOverview';
|
|
28388
28455
|
summary?: Maybe<ConfluenceSmartSpaceOverviewSummary>;
|
|
28456
|
+
topLinks?: Maybe<ConfluenceSmartSpaceOverviewTopLinks>;
|
|
28389
28457
|
};
|
|
28390
28458
|
export declare type ConfluenceSmartSpaceOverviewSummary = {
|
|
28391
28459
|
__typename?: 'ConfluenceSmartSpaceOverviewSummary';
|
|
28392
28460
|
body?: Maybe<Scalars['String']['output']>;
|
|
28393
28461
|
contentId?: Maybe<Scalars['ID']['output']>;
|
|
28394
28462
|
isPinned?: Maybe<Scalars['Boolean']['output']>;
|
|
28395
|
-
lastRefreshed?: Maybe<Scalars['
|
|
28463
|
+
lastRefreshed?: Maybe<Scalars['DateTime']['output']>;
|
|
28464
|
+
};
|
|
28465
|
+
export declare type ConfluenceSmartSpaceOverviewTopLink = {
|
|
28466
|
+
__typename?: 'ConfluenceSmartSpaceOverviewTopLink';
|
|
28467
|
+
isPinned?: Maybe<Scalars['Boolean']['output']>;
|
|
28468
|
+
title?: Maybe<Scalars['String']['output']>;
|
|
28469
|
+
url?: Maybe<Scalars['String']['output']>;
|
|
28470
|
+
};
|
|
28471
|
+
export declare type ConfluenceSmartSpaceOverviewTopLinks = {
|
|
28472
|
+
__typename?: 'ConfluenceSmartSpaceOverviewTopLinks';
|
|
28473
|
+
contentId?: Maybe<Scalars['ID']['output']>;
|
|
28474
|
+
lastRefreshed?: Maybe<Scalars['DateTime']['output']>;
|
|
28475
|
+
links?: Maybe<Array<Maybe<ConfluenceSmartSpaceOverviewTopLink>>>;
|
|
28396
28476
|
};
|
|
28397
28477
|
export declare type ConfluenceSpace = Node & {
|
|
28398
28478
|
__typename?: 'ConfluenceSpace';
|
|
@@ -32956,6 +33036,7 @@ export declare type CplsWorkResourcingContributionAggregation = {
|
|
|
32956
33036
|
valueFormats?: Maybe<CplsValueFormats>;
|
|
32957
33037
|
};
|
|
32958
33038
|
export declare enum CplsWorkType {
|
|
33039
|
+
AtlasProject = "ATLAS_PROJECT",
|
|
32959
33040
|
CustomContributionTarget = "CUSTOM_CONTRIBUTION_TARGET",
|
|
32960
33041
|
JiraWorkItem = "JIRA_WORK_ITEM"
|
|
32961
33042
|
}
|
|
@@ -34932,6 +35013,16 @@ export declare type CustomerServiceEscalateWorkItemPayload = Payload & {
|
|
|
34932
35013
|
export declare enum CustomerServiceEscalationType {
|
|
34933
35014
|
SupportEscalation = "SUPPORT_ESCALATION"
|
|
34934
35015
|
}
|
|
35016
|
+
export declare type CustomerServiceExternalStatus = {
|
|
35017
|
+
__typename?: 'CustomerServiceExternalStatus';
|
|
35018
|
+
externalLabel: Scalars['String']['output'];
|
|
35019
|
+
jiraStatusIds: Array<Scalars['String']['output']>;
|
|
35020
|
+
};
|
|
35021
|
+
export declare type CustomerServiceExternalStatusesQueryResult = CustomerServiceExternalStatusesResponse | QueryError;
|
|
35022
|
+
export declare type CustomerServiceExternalStatusesResponse = {
|
|
35023
|
+
__typename?: 'CustomerServiceExternalStatusesResponse';
|
|
35024
|
+
externalStatuses: Array<CustomerServiceExternalStatus>;
|
|
35025
|
+
};
|
|
34935
35026
|
export declare type CustomerServiceFilterInput = {
|
|
34936
35027
|
context: CustomerServiceContext;
|
|
34937
35028
|
};
|
|
@@ -35381,6 +35472,7 @@ export declare type CustomerServiceQueryApi = {
|
|
|
35381
35472
|
customDetailsByEntityType?: Maybe<CustomerServiceCustomDetailsQueryResult>;
|
|
35382
35473
|
entitlementById?: Maybe<CustomerServiceEntitlementQueryResult>;
|
|
35383
35474
|
escalatableJiraProjects?: Maybe<CustomerServiceEscalatableJiraProjectsConnection>;
|
|
35475
|
+
externalStatusesByHelpCenterId?: Maybe<CustomerServiceExternalStatusesQueryResult>;
|
|
35384
35476
|
individualAttributes?: Maybe<CustomerServiceAttributesQueryResult>;
|
|
35385
35477
|
individualByAccountId?: Maybe<CustomerServiceIndividualQueryResult>;
|
|
35386
35478
|
organizationAttributes?: Maybe<CustomerServiceAttributesQueryResult>;
|
|
@@ -35412,6 +35504,9 @@ export declare type CustomerServiceQueryApiEscalatableJiraProjectsArgs = {
|
|
|
35412
35504
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
35413
35505
|
projectId: Scalars['ID']['input'];
|
|
35414
35506
|
};
|
|
35507
|
+
export declare type CustomerServiceQueryApiExternalStatusesByHelpCenterIdArgs = {
|
|
35508
|
+
helpCenterId: Scalars['ID']['input'];
|
|
35509
|
+
};
|
|
35415
35510
|
export declare type CustomerServiceQueryApiIndividualByAccountIdArgs = {
|
|
35416
35511
|
accountId: Scalars['ID']['input'];
|
|
35417
35512
|
filter?: InputMaybe<CustomerServiceFilterInput>;
|
|
@@ -44353,7 +44448,7 @@ export declare type GraphIntegrationDirectoryFilterDimensionEdge = {
|
|
|
44353
44448
|
cursor: Scalars['String']['output'];
|
|
44354
44449
|
node?: Maybe<GraphIntegrationDirectoryFilterDimension>;
|
|
44355
44450
|
};
|
|
44356
|
-
export declare type GraphIntegrationDirectoryItem = GraphIntegrationActionDirectoryItem | GraphIntegrationMcpServer | GraphIntegrationMcpTool | GraphIntegrationSkillDirectoryItem;
|
|
44451
|
+
export declare type GraphIntegrationDirectoryItem = GraphIntegrationActionDirectoryItem | GraphIntegrationMcpServer | GraphIntegrationMcpTool | GraphIntegrationSkillDirectoryItem | GraphIntegrationSkillItem;
|
|
44357
44452
|
export declare type GraphIntegrationDirectoryItemConnection = {
|
|
44358
44453
|
__typename?: 'GraphIntegrationDirectoryItemConnection';
|
|
44359
44454
|
edges: Array<GraphIntegrationDirectoryItemEdge>;
|
|
@@ -44622,6 +44717,15 @@ export declare type GraphIntegrationSetTwgPlatformCapabilityGlobalAdminSettingPa
|
|
|
44622
44717
|
setting?: Maybe<GraphIntegrationTwgPlatformCapabilityGlobalAdminSetting>;
|
|
44623
44718
|
success: Scalars['Boolean']['output'];
|
|
44624
44719
|
};
|
|
44720
|
+
export declare type GraphIntegrationSkill = {
|
|
44721
|
+
__typename?: 'GraphIntegrationSkill';
|
|
44722
|
+
description: Scalars['String']['output'];
|
|
44723
|
+
id: Scalars['ID']['output'];
|
|
44724
|
+
instructions: Scalars['String']['output'];
|
|
44725
|
+
metadata: GraphIntegrationSkillMetadata;
|
|
44726
|
+
name: Scalars['String']['output'];
|
|
44727
|
+
uiMetadata: GraphIntegrationSkillUiMetadata;
|
|
44728
|
+
};
|
|
44625
44729
|
export declare enum GraphIntegrationSkillColor {
|
|
44626
44730
|
Blue = "BLUE",
|
|
44627
44731
|
Default = "DEFAULT",
|
|
@@ -44647,6 +44751,26 @@ export declare type GraphIntegrationSkillDirectoryItem = {
|
|
|
44647
44751
|
slashCommand?: Maybe<Scalars['String']['output']>;
|
|
44648
44752
|
tags: Array<GraphIntegrationDirectoryFilterDimension>;
|
|
44649
44753
|
};
|
|
44754
|
+
export declare type GraphIntegrationSkillItem = {
|
|
44755
|
+
__typename?: 'GraphIntegrationSkillItem';
|
|
44756
|
+
description: Scalars['String']['output'];
|
|
44757
|
+
id: Scalars['ID']['output'];
|
|
44758
|
+
metadata: GraphIntegrationSkillMetadata;
|
|
44759
|
+
name: Scalars['String']['output'];
|
|
44760
|
+
uiMetadata: GraphIntegrationSkillUiMetadata;
|
|
44761
|
+
};
|
|
44762
|
+
export declare type GraphIntegrationSkillMetadata = {
|
|
44763
|
+
__typename?: 'GraphIntegrationSkillMetadata';
|
|
44764
|
+
tags: Array<Scalars['String']['output']>;
|
|
44765
|
+
version: Scalars['String']['output'];
|
|
44766
|
+
};
|
|
44767
|
+
export declare type GraphIntegrationSkillUiMetadata = {
|
|
44768
|
+
__typename?: 'GraphIntegrationSkillUiMetadata';
|
|
44769
|
+
color?: Maybe<GraphIntegrationSkillColor>;
|
|
44770
|
+
displayName: Scalars['String']['output'];
|
|
44771
|
+
iconKey?: Maybe<Scalars['String']['output']>;
|
|
44772
|
+
iconUrl?: Maybe<Scalars['String']['output']>;
|
|
44773
|
+
};
|
|
44650
44774
|
export declare enum GraphIntegrationStatus {
|
|
44651
44775
|
Disabled = "DISABLED",
|
|
44652
44776
|
Enabled = "ENABLED"
|
|
@@ -60390,6 +60514,7 @@ export declare enum GraphStoreFullIssueAssociatedPrPullRequestStatusOutput {
|
|
|
60390
60514
|
Merged = "MERGED",
|
|
60391
60515
|
NotSet = "NOT_SET",
|
|
60392
60516
|
Open = "OPEN",
|
|
60517
|
+
Queued = "QUEUED",
|
|
60393
60518
|
Unknown = "UNKNOWN"
|
|
60394
60519
|
}
|
|
60395
60520
|
export declare type GraphStoreFullIssueAssociatedPrRelationshipObjectMetadataOutput = {
|
|
@@ -61062,6 +61187,7 @@ export declare enum GraphStoreFullPrInRepoPullRequestStatusOutput {
|
|
|
61062
61187
|
Merged = "MERGED",
|
|
61063
61188
|
NotSet = "NOT_SET",
|
|
61064
61189
|
Open = "OPEN",
|
|
61190
|
+
Queued = "QUEUED",
|
|
61065
61191
|
Unknown = "UNKNOWN"
|
|
61066
61192
|
}
|
|
61067
61193
|
export declare type GraphStoreFullPrInRepoRelationshipObjectMetadataOutput = {
|
|
@@ -61406,6 +61532,7 @@ export declare enum GraphStoreFullProjectAssociatedPrPullRequestStatusOutput {
|
|
|
61406
61532
|
Merged = "MERGED",
|
|
61407
61533
|
NotSet = "NOT_SET",
|
|
61408
61534
|
Open = "OPEN",
|
|
61535
|
+
Queued = "QUEUED",
|
|
61409
61536
|
Unknown = "UNKNOWN"
|
|
61410
61537
|
}
|
|
61411
61538
|
export declare type GraphStoreFullProjectAssociatedPrRelationshipMetadataOutput = {
|
|
@@ -62232,6 +62359,7 @@ export declare enum GraphStoreFullSprintAssociatedPrPullRequestStatusOutput {
|
|
|
62232
62359
|
Merged = "MERGED",
|
|
62233
62360
|
NotSet = "NOT_SET",
|
|
62234
62361
|
Open = "OPEN",
|
|
62362
|
+
Queued = "QUEUED",
|
|
62235
62363
|
Unknown = "UNKNOWN"
|
|
62236
62364
|
}
|
|
62237
62365
|
export declare type GraphStoreFullSprintAssociatedPrRelationshipMetadataOutput = {
|
|
@@ -64041,6 +64169,7 @@ export declare enum GraphStoreProjectAssociatedPrPullRequestStatus {
|
|
|
64041
64169
|
Merged = "MERGED",
|
|
64042
64170
|
NotSet = "NOT_SET",
|
|
64043
64171
|
Open = "OPEN",
|
|
64172
|
+
Queued = "QUEUED",
|
|
64044
64173
|
Unknown = "UNKNOWN"
|
|
64045
64174
|
}
|
|
64046
64175
|
export declare type GraphStoreProjectAssociatedPrPullRequestStatusFilterInput = {
|
|
@@ -75894,6 +76023,7 @@ export declare enum GraphStoreSprintAssociatedPrPullRequestStatus {
|
|
|
75894
76023
|
Merged = "MERGED",
|
|
75895
76024
|
NotSet = "NOT_SET",
|
|
75896
76025
|
Open = "OPEN",
|
|
76026
|
+
Queued = "QUEUED",
|
|
75897
76027
|
Unknown = "UNKNOWN"
|
|
75898
76028
|
}
|
|
75899
76029
|
export declare type GraphStoreSprintAssociatedPrPullRequestStatusFilterInput = {
|
|
@@ -84651,6 +84781,7 @@ export declare enum GraphStoreV2JiraSpaceLinksExternalPullRequestPullRequestStat
|
|
|
84651
84781
|
Merged = "MERGED",
|
|
84652
84782
|
NotSet = "NOT_SET",
|
|
84653
84783
|
Open = "OPEN",
|
|
84784
|
+
Queued = "QUEUED",
|
|
84654
84785
|
Unknown = "UNKNOWN"
|
|
84655
84786
|
}
|
|
84656
84787
|
export declare type GraphStoreV2JiraSpaceLinksExternalPullRequestPullRequestStatusFilterInput = {
|
|
@@ -85001,6 +85132,7 @@ export declare enum GraphStoreV2JiraSprintHasExternalPullRequestPullRequestStatu
|
|
|
85001
85132
|
Merged = "MERGED",
|
|
85002
85133
|
NotSet = "NOT_SET",
|
|
85003
85134
|
Open = "OPEN",
|
|
85135
|
+
Queued = "QUEUED",
|
|
85004
85136
|
Unknown = "UNKNOWN"
|
|
85005
85137
|
}
|
|
85006
85138
|
export declare type GraphStoreV2JiraSprintHasExternalPullRequestPullRequestStatusFilterInput = {
|
|
@@ -104452,7 +104584,8 @@ export declare type JiraCommentItem = {
|
|
|
104452
104584
|
commentItem?: Maybe<JiraComment>;
|
|
104453
104585
|
};
|
|
104454
104586
|
export declare enum JiraCommentSortField {
|
|
104455
|
-
Created = "CREATED"
|
|
104587
|
+
Created = "CREATED",
|
|
104588
|
+
LatestActivity = "LATEST_ACTIVITY"
|
|
104456
104589
|
}
|
|
104457
104590
|
export declare type JiraCommentSortInput = {
|
|
104458
104591
|
field: JiraCommentSortField;
|
|
@@ -106867,6 +107000,10 @@ export declare type JiraFieldEdge = {
|
|
|
106867
107000
|
cursor?: Maybe<Scalars['String']['output']>;
|
|
106868
107001
|
node?: Maybe<JiraField>;
|
|
106869
107002
|
};
|
|
107003
|
+
export declare type JiraFieldForGlobalView = {
|
|
107004
|
+
__typename?: 'JiraFieldForGlobalView';
|
|
107005
|
+
id: Scalars['ID']['output'];
|
|
107006
|
+
};
|
|
106870
107007
|
export declare type JiraFieldFormatConfig = JiraNumberFieldFormatConfig;
|
|
106871
107008
|
export declare type JiraFieldFormatConfigInput = {
|
|
106872
107009
|
jiraNumberFieldFormatConfigInput?: InputMaybe<JiraNumberFieldFormatConfigInput>;
|
|
@@ -107317,6 +107454,19 @@ export declare enum JiraFlagOperations {
|
|
|
107317
107454
|
Add = "ADD",
|
|
107318
107455
|
Remove = "REMOVE"
|
|
107319
107456
|
}
|
|
107457
|
+
export declare type JiraFlatOption = JiraOption | JiraParentOption;
|
|
107458
|
+
export declare type JiraFlatOptionConnection = {
|
|
107459
|
+
__typename?: 'JiraFlatOptionConnection';
|
|
107460
|
+
edges?: Maybe<Array<Maybe<JiraFlatOptionEdge>>>;
|
|
107461
|
+
errors?: Maybe<Array<QueryError>>;
|
|
107462
|
+
pageInfo: PageInfo;
|
|
107463
|
+
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
107464
|
+
};
|
|
107465
|
+
export declare type JiraFlatOptionEdge = {
|
|
107466
|
+
__typename?: 'JiraFlatOptionEdge';
|
|
107467
|
+
cursor: Scalars['String']['output'];
|
|
107468
|
+
node?: Maybe<JiraFlatOption>;
|
|
107469
|
+
};
|
|
107320
107470
|
export declare type JiraForgeAppEgressDeclaration = {
|
|
107321
107471
|
__typename?: 'JiraForgeAppEgressDeclaration';
|
|
107322
107472
|
addresses?: Maybe<Array<Scalars['String']['output']>>;
|
|
@@ -108590,6 +108740,7 @@ export declare type JiraIssue = HasMercuryProjectFields & JiraScenarioIssueLike
|
|
|
108590
108740
|
pinnedComments?: Maybe<JiraPinnedCommentsResponse>;
|
|
108591
108741
|
planScenarioValues?: Maybe<JiraScenarioIssueValues>;
|
|
108592
108742
|
postIncidentReviewLinks?: Maybe<GraphIncidentAssociatedPostIncidentReviewLinkRelationshipConnection>;
|
|
108743
|
+
priority?: Maybe<JiraPriority>;
|
|
108593
108744
|
priorityField?: Maybe<JiraPriorityField>;
|
|
108594
108745
|
projectField?: Maybe<JiraProjectField>;
|
|
108595
108746
|
projectRoleCommentVisibilities?: Maybe<JiraRoleConnection>;
|
|
@@ -109490,6 +109641,7 @@ export declare type JiraIssueFieldConfig = Node & {
|
|
|
109490
109641
|
dateCreated?: Maybe<Scalars['DateTime']['output']>;
|
|
109491
109642
|
dateCreatedTimestamp?: Maybe<Scalars['Long']['output']>;
|
|
109492
109643
|
defaultFieldOptions?: Maybe<JiraParentOptionConnection>;
|
|
109644
|
+
defaultFlatFieldOptions?: Maybe<JiraFlatOptionConnection>;
|
|
109493
109645
|
defaultJqlClauseName?: Maybe<Scalars['String']['output']>;
|
|
109494
109646
|
description?: Maybe<Scalars['String']['output']>;
|
|
109495
109647
|
descriptionCustomisations?: Maybe<Array<Maybe<JiraFieldWorkTypeDescriptionCustomization>>>;
|
|
@@ -109602,6 +109754,12 @@ export declare type JiraIssueFieldConfigDefaultFieldOptionsArgs = {
|
|
|
109602
109754
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
109603
109755
|
last?: InputMaybe<Scalars['Int']['input']>;
|
|
109604
109756
|
};
|
|
109757
|
+
export declare type JiraIssueFieldConfigDefaultFlatFieldOptionsArgs = {
|
|
109758
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
109759
|
+
before?: InputMaybe<Scalars['String']['input']>;
|
|
109760
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
109761
|
+
last?: InputMaybe<Scalars['Int']['input']>;
|
|
109762
|
+
};
|
|
109605
109763
|
export declare type JiraIssueFieldConfigDescriptionCustomisationsArgs = {
|
|
109606
109764
|
schemeId: Scalars['ID']['input'];
|
|
109607
109765
|
};
|
|
@@ -114379,6 +114537,7 @@ export declare type JiraOption = JiraSelectableValue & Node & {
|
|
|
114379
114537
|
id: Scalars['ID']['output'];
|
|
114380
114538
|
isDisabled?: Maybe<Scalars['Boolean']['output']>;
|
|
114381
114539
|
optionId: Scalars['String']['output'];
|
|
114540
|
+
parentOption?: Maybe<JiraParentOption>;
|
|
114382
114541
|
selectableGroupKey?: Maybe<Scalars['String']['output']>;
|
|
114383
114542
|
selectableIconUrl?: Maybe<Scalars['URL']['output']>;
|
|
114384
114543
|
selectableLabel?: Maybe<Scalars['String']['output']>;
|
|
@@ -115278,6 +115437,10 @@ export declare type JiraPlaybooksSortInput = {
|
|
|
115278
115437
|
by: JiraPlaybooksSortBy;
|
|
115279
115438
|
order?: SortDirection;
|
|
115280
115439
|
};
|
|
115440
|
+
export declare type JiraPolarisGlobalViewFields = {
|
|
115441
|
+
__typename?: 'JiraPolarisGlobalViewFields';
|
|
115442
|
+
fields: Array<JiraFieldForGlobalView>;
|
|
115443
|
+
};
|
|
115281
115444
|
export declare type JiraPostIncidentReviewLink = Node & {
|
|
115282
115445
|
__typename?: 'JiraPostIncidentReviewLink';
|
|
115283
115446
|
id: Scalars['ID']['output'];
|
|
@@ -116553,6 +116716,7 @@ export declare type JiraQuery = {
|
|
|
116553
116716
|
jiraServiceManagementRequestTypeCategoriesByProject?: Maybe<JiraServiceManagementRequestTypeCategoryConnection>;
|
|
116554
116717
|
jiraServiceManagementSlaIssue?: Maybe<JiraServiceManagementSlaIssueResult>;
|
|
116555
116718
|
jpdDeliveryIssueLinkTypeId?: Maybe<Scalars['ID']['output']>;
|
|
116719
|
+
jpdGlobalViewFields?: Maybe<JiraPolarisGlobalViewFields>;
|
|
116556
116720
|
jqlBuilder?: Maybe<JiraJqlBuilder>;
|
|
116557
116721
|
jsmProjectTeamType?: Maybe<JiraServiceManagementProjectTeamType>;
|
|
116558
116722
|
jsmWorkflowTemplates?: Maybe<JiraServiceManagementWorkflowTemplatesMetadataConnection>;
|
|
@@ -117330,6 +117494,9 @@ export declare type JiraQueryJiraServiceManagementSlaIssueArgs = {
|
|
|
117330
117494
|
export declare type JiraQueryJpdDeliveryIssueLinkTypeIdArgs = {
|
|
117331
117495
|
cloudId: Scalars['ID']['input'];
|
|
117332
117496
|
};
|
|
117497
|
+
export declare type JiraQueryJpdGlobalViewFieldsArgs = {
|
|
117498
|
+
cloudId: Scalars['ID']['input'];
|
|
117499
|
+
};
|
|
117333
117500
|
export declare type JiraQueryJqlBuilderArgs = {
|
|
117334
117501
|
cloudId: Scalars['ID']['input'];
|
|
117335
117502
|
};
|
|
@@ -126628,6 +126795,7 @@ export declare type KitsuneFeedback = Node & {
|
|
|
126628
126795
|
id: Scalars['ID']['output'];
|
|
126629
126796
|
reporter?: Maybe<User>;
|
|
126630
126797
|
reporterId?: Maybe<Scalars['ID']['output']>;
|
|
126798
|
+
snippets: KitsuneSnippetConnection;
|
|
126631
126799
|
source: KitsuneSource;
|
|
126632
126800
|
sourceCategory: KitsuneSourceCategory;
|
|
126633
126801
|
summary?: Maybe<KitsuneSummary>;
|
|
@@ -126641,6 +126809,12 @@ export declare type KitsuneFeedbackChunksArgs = {
|
|
|
126641
126809
|
last?: InputMaybe<Scalars['Int']['input']>;
|
|
126642
126810
|
pagination?: InputMaybe<KitsunePaginationInput>;
|
|
126643
126811
|
};
|
|
126812
|
+
export declare type KitsuneFeedbackSnippetsArgs = {
|
|
126813
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
126814
|
+
before?: InputMaybe<Scalars['String']['input']>;
|
|
126815
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
126816
|
+
last?: InputMaybe<Scalars['Int']['input']>;
|
|
126817
|
+
};
|
|
126644
126818
|
export declare type KitsuneFeedbackConnection = KitsuneConnection & {
|
|
126645
126819
|
__typename?: 'KitsuneFeedbackConnection';
|
|
126646
126820
|
edges: Array<KitsuneFeedbackEdge>;
|
|
@@ -126731,9 +126905,16 @@ export declare type KitsuneInsight = Node & {
|
|
|
126731
126905
|
creator?: Maybe<User>;
|
|
126732
126906
|
creatorId?: Maybe<Scalars['ID']['output']>;
|
|
126733
126907
|
id: Scalars['ID']['output'];
|
|
126908
|
+
snippets: KitsuneSnippetConnection;
|
|
126734
126909
|
summary?: Maybe<KitsuneSummary>;
|
|
126735
126910
|
title: Scalars['String']['output'];
|
|
126736
126911
|
};
|
|
126912
|
+
export declare type KitsuneInsightSnippetsArgs = {
|
|
126913
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
126914
|
+
before?: InputMaybe<Scalars['String']['input']>;
|
|
126915
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
126916
|
+
last?: InputMaybe<Scalars['Int']['input']>;
|
|
126917
|
+
};
|
|
126737
126918
|
export declare enum KitsuneLogicalOperator {
|
|
126738
126919
|
And = "AND",
|
|
126739
126920
|
Or = "OR"
|
|
@@ -126780,6 +126961,27 @@ export declare type KitsuneSectionViewsArgs = {
|
|
|
126780
126961
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
126781
126962
|
last?: InputMaybe<Scalars['Int']['input']>;
|
|
126782
126963
|
};
|
|
126964
|
+
export declare type KitsuneSnippet = Node & {
|
|
126965
|
+
__typename?: 'KitsuneSnippet';
|
|
126966
|
+
content: Array<Scalars['String']['output']>;
|
|
126967
|
+
createdAt: Scalars['DateTime']['output'];
|
|
126968
|
+
creator?: Maybe<User>;
|
|
126969
|
+
creatorId?: Maybe<Scalars['ID']['output']>;
|
|
126970
|
+
feedback: KitsuneFeedback;
|
|
126971
|
+
id: Scalars['ID']['output'];
|
|
126972
|
+
insight: KitsuneInsight;
|
|
126973
|
+
markId?: Maybe<Scalars['ID']['output']>;
|
|
126974
|
+
};
|
|
126975
|
+
export declare type KitsuneSnippetConnection = KitsuneConnection & {
|
|
126976
|
+
__typename?: 'KitsuneSnippetConnection';
|
|
126977
|
+
edges: Array<KitsuneSnippetEdge>;
|
|
126978
|
+
pageInfo: PageInfo;
|
|
126979
|
+
};
|
|
126980
|
+
export declare type KitsuneSnippetEdge = KitsuneEdge & {
|
|
126981
|
+
__typename?: 'KitsuneSnippetEdge';
|
|
126982
|
+
cursor: Scalars['String']['output'];
|
|
126983
|
+
node?: Maybe<KitsuneSnippet>;
|
|
126984
|
+
};
|
|
126783
126985
|
export declare type KitsuneSource = {
|
|
126784
126986
|
__typename?: 'KitsuneSource';
|
|
126785
126987
|
sourceCategory: KitsuneSourceCategory;
|
|
@@ -137930,6 +138132,7 @@ export declare type Mutation = {
|
|
|
137930
138132
|
avp_updateFilterExpression?: Maybe<AvpUpdateFilterExpressionPayload>;
|
|
137931
138133
|
avp_updateVariable?: Maybe<AvpUpdateVariablePayload>;
|
|
137932
138134
|
avpanalytics_createModel?: Maybe<AvpAnalyticsCreateModelPayload>;
|
|
138135
|
+
avpanalytics_updateModel?: Maybe<AvpAnalyticsUpdateModelPayload>;
|
|
137933
138136
|
blockService_batchCreateBlocks?: Maybe<BlockServiceBatchRetrieveBlocksPayload>;
|
|
137934
138137
|
blockService_batchDeleteBlocks?: Maybe<BlockServiceBatchRetrieveBlocksPayload>;
|
|
137935
138138
|
blockService_batchUpdateBlocks?: Maybe<BlockServiceBatchRetrieveBlocksPayload>;
|
|
@@ -138497,6 +138700,7 @@ export declare type Mutation = {
|
|
|
138497
138700
|
kitsune_createInsight?: Maybe<KitsuneInsight>;
|
|
138498
138701
|
kitsune_createOrganization?: Maybe<KitsuneOrganization>;
|
|
138499
138702
|
kitsune_createSection?: Maybe<KitsuneSection>;
|
|
138703
|
+
kitsune_createSnippet?: Maybe<KitsuneSnippet>;
|
|
138500
138704
|
kitsune_createSpace?: Maybe<KitsuneSpace>;
|
|
138501
138705
|
kitsune_createView?: Maybe<KitsuneView>;
|
|
138502
138706
|
kitsune_generateFeedbackSummary?: Maybe<KitsuneFeedback>;
|
|
@@ -138505,11 +138709,12 @@ export declare type Mutation = {
|
|
|
138505
138709
|
kitsune_removeFeedback?: Maybe<KitsuneDeletedRecord>;
|
|
138506
138710
|
kitsune_removeInsight?: Maybe<KitsuneDeletedRecord>;
|
|
138507
138711
|
kitsune_removeSection?: Maybe<KitsuneDeletedRecord>;
|
|
138712
|
+
kitsune_removeSnippet?: Maybe<KitsuneDeletedRecord>;
|
|
138508
138713
|
kitsune_removeView?: Maybe<KitsuneDeletedRecord>;
|
|
138509
|
-
kitsune_suggestSnippets?: Maybe<Scalars['Boolean']['output']>;
|
|
138510
138714
|
kitsune_updateFeedback?: Maybe<KitsuneFeedback>;
|
|
138511
138715
|
kitsune_updateInsight?: Maybe<KitsuneInsight>;
|
|
138512
138716
|
kitsune_updateSection?: Maybe<KitsuneSection>;
|
|
138717
|
+
kitsune_updateSnippet?: Maybe<KitsuneSnippet>;
|
|
138513
138718
|
kitsune_updateSpace?: Maybe<KitsuneSpace>;
|
|
138514
138719
|
kitsune_updateView?: Maybe<KitsuneView>;
|
|
138515
138720
|
knowledgeBase?: Maybe<KnowledgeBaseMutationApi>;
|
|
@@ -139616,6 +139821,10 @@ export declare type MutationAvpanalytics_CreateModelArgs = {
|
|
|
139616
139821
|
cloudId: Scalars['ID']['input'];
|
|
139617
139822
|
input?: InputMaybe<AvpAnalyticsCreateModelInput>;
|
|
139618
139823
|
};
|
|
139824
|
+
export declare type MutationAvpanalytics_UpdateModelArgs = {
|
|
139825
|
+
cloudId: Scalars['ID']['input'];
|
|
139826
|
+
input?: InputMaybe<AvpAnalyticsUpdateModelInput>;
|
|
139827
|
+
};
|
|
139619
139828
|
export declare type MutationBlockService_BatchCreateBlocksArgs = {
|
|
139620
139829
|
input: BlockServiceBatchCreateBlocksInput;
|
|
139621
139830
|
};
|
|
@@ -139735,19 +139944,15 @@ export declare type MutationClearRestrictionsForFreeArgs = {
|
|
|
139735
139944
|
};
|
|
139736
139945
|
export declare type MutationCloudify_AddRecommendationArgs = {
|
|
139737
139946
|
input: CloudifyRecommendationInput;
|
|
139738
|
-
projectId: Scalars['ID']['input'];
|
|
139739
|
-
siteId: Scalars['ID']['input'];
|
|
139740
139947
|
};
|
|
139741
139948
|
export declare type MutationCloudify_DeleteRecommendationsArgs = {
|
|
139742
|
-
|
|
139743
|
-
siteId: Scalars['ID']['input'];
|
|
139949
|
+
target: CloudifyTargetInput;
|
|
139744
139950
|
};
|
|
139745
139951
|
export declare type MutationCloudify_EnactRecommendationArgs = {
|
|
139746
139952
|
recommendationId: Scalars['ID']['input'];
|
|
139747
139953
|
};
|
|
139748
139954
|
export declare type MutationCloudify_RequestAnalysisArgs = {
|
|
139749
|
-
|
|
139750
|
-
siteId: Scalars['ID']['input'];
|
|
139955
|
+
target: CloudifyTargetInput;
|
|
139751
139956
|
};
|
|
139752
139957
|
export declare type MutationCommerceExp_ApprovalDeskArgs = {
|
|
139753
139958
|
input: CommerceExpApprovalDeskTenantInput;
|
|
@@ -141544,6 +141749,12 @@ export declare type MutationKitsune_CreateSectionArgs = {
|
|
|
141544
141749
|
name: Scalars['String']['input'];
|
|
141545
141750
|
spaceAri: Scalars['ID']['input'];
|
|
141546
141751
|
};
|
|
141752
|
+
export declare type MutationKitsune_CreateSnippetArgs = {
|
|
141753
|
+
content: Array<Scalars['String']['input']>;
|
|
141754
|
+
feedbackId: Scalars['ID']['input'];
|
|
141755
|
+
insightId: Scalars['ID']['input'];
|
|
141756
|
+
markId?: InputMaybe<Scalars['ID']['input']>;
|
|
141757
|
+
};
|
|
141547
141758
|
export declare type MutationKitsune_CreateSpaceArgs = {
|
|
141548
141759
|
name: Scalars['String']['input'];
|
|
141549
141760
|
workspaceAri: Scalars['ID']['input'];
|
|
@@ -141576,13 +141787,12 @@ export declare type MutationKitsune_RemoveInsightArgs = {
|
|
|
141576
141787
|
export declare type MutationKitsune_RemoveSectionArgs = {
|
|
141577
141788
|
sectionAri: Scalars['ID']['input'];
|
|
141578
141789
|
};
|
|
141790
|
+
export declare type MutationKitsune_RemoveSnippetArgs = {
|
|
141791
|
+
id: Scalars['ID']['input'];
|
|
141792
|
+
};
|
|
141579
141793
|
export declare type MutationKitsune_RemoveViewArgs = {
|
|
141580
141794
|
viewAri: Scalars['ID']['input'];
|
|
141581
141795
|
};
|
|
141582
|
-
export declare type MutationKitsune_SuggestSnippetsArgs = {
|
|
141583
|
-
title: Scalars['String']['input'];
|
|
141584
|
-
workspaceAri: Scalars['ID']['input'];
|
|
141585
|
-
};
|
|
141586
141796
|
export declare type MutationKitsune_UpdateFeedbackArgs = {
|
|
141587
141797
|
content?: InputMaybe<Scalars['KitsuneADF']['input']>;
|
|
141588
141798
|
customerId?: InputMaybe<Scalars['ID']['input']>;
|
|
@@ -141602,6 +141812,11 @@ export declare type MutationKitsune_UpdateSectionArgs = {
|
|
|
141602
141812
|
name?: InputMaybe<Scalars['String']['input']>;
|
|
141603
141813
|
sectionAri: Scalars['ID']['input'];
|
|
141604
141814
|
};
|
|
141815
|
+
export declare type MutationKitsune_UpdateSnippetArgs = {
|
|
141816
|
+
content?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
141817
|
+
id: Scalars['ID']['input'];
|
|
141818
|
+
insightId?: InputMaybe<Scalars['ID']['input']>;
|
|
141819
|
+
};
|
|
141605
141820
|
export declare type MutationKitsune_UpdateSpaceArgs = {
|
|
141606
141821
|
description?: InputMaybe<Scalars['String']['input']>;
|
|
141607
141822
|
id: Scalars['ID']['input'];
|
|
@@ -144979,9 +145194,15 @@ export declare type PolarisTreeHierarchyItem = {
|
|
|
144979
145194
|
__typename?: 'PolarisTreeHierarchyItem';
|
|
144980
145195
|
fields?: Maybe<Array<PolarisIdeaField>>;
|
|
144981
145196
|
filter?: Maybe<Array<PolarisViewFilter>>;
|
|
144982
|
-
items?: Maybe<Array<
|
|
145197
|
+
items?: Maybe<Array<PolarisTreeHierarchyItemEntry>>;
|
|
144983
145198
|
type?: Maybe<PolarisTreeHierarchyType>;
|
|
144984
145199
|
};
|
|
145200
|
+
export declare type PolarisTreeHierarchyItemEntry = {
|
|
145201
|
+
__typename?: 'PolarisTreeHierarchyItemEntry';
|
|
145202
|
+
fieldKey?: Maybe<Scalars['String']['output']>;
|
|
145203
|
+
issueId?: Maybe<Scalars['String']['output']>;
|
|
145204
|
+
issueTypeName?: Maybe<Scalars['String']['output']>;
|
|
145205
|
+
};
|
|
144985
145206
|
export declare enum PolarisTreeHierarchyType {
|
|
144986
145207
|
Field = "FIELD",
|
|
144987
145208
|
Issue = "ISSUE",
|
|
@@ -145860,6 +146081,7 @@ export declare type Query = {
|
|
|
145860
146081
|
assetsDM_transformedData?: Maybe<AssetsDmTransformedDataResponse>;
|
|
145861
146082
|
assetsVertical_attributeValues?: Maybe<AssetsVerticalAttributeValuesResult>;
|
|
145862
146083
|
assetsVertical_bundle: AssetsVerticalBundle;
|
|
146084
|
+
assetsVertical_countByStatus?: Maybe<AssetsVerticalCountByStatusResult>;
|
|
145863
146085
|
assetsVertical_insights?: Maybe<AssetsVerticalInsights>;
|
|
145864
146086
|
assets_objectById?: Maybe<AssetsObjectNode>;
|
|
145865
146087
|
assets_objectTypeAttributesBySchemaIds?: Maybe<Array<Maybe<AssetsObjectTypeAttribute>>>;
|
|
@@ -145995,6 +146217,8 @@ export declare type Query = {
|
|
|
145995
146217
|
confluence_calendarTimezones?: Maybe<ConfluenceCalendarTimezones>;
|
|
145996
146218
|
confluence_calendarsByCriteria?: Maybe<ConfluenceCalendarConnection>;
|
|
145997
146219
|
confluence_categorizeNbmChains?: Maybe<ConfluenceCategorizeNbmChainsResult>;
|
|
146220
|
+
confluence_classificationLevelsForContent?: Maybe<Array<ContentDataClassificationLevel>>;
|
|
146221
|
+
confluence_classificationLevelsForSpaceDefault?: Maybe<Array<ContentDataClassificationLevel>>;
|
|
145998
146222
|
confluence_commentMediaSession?: Maybe<ContentMediaSession>;
|
|
145999
146223
|
confluence_contentAISummaries?: Maybe<Array<Maybe<ConfluenceContentAiSummaryResponse>>>;
|
|
146000
146224
|
confluence_contentAccessRequestByStatus?: Maybe<ConfluenceContentAccessRequestConnection>;
|
|
@@ -146315,6 +146539,7 @@ export declare type Query = {
|
|
|
146315
146539
|
graphIntegration_mcpAdminManagementMcpTools?: Maybe<GraphIntegrationMcpAdminManagementMcpToolConnection>;
|
|
146316
146540
|
graphIntegration_mcpServers?: Maybe<Array<Maybe<GraphIntegrationMcpServerNode>>>;
|
|
146317
146541
|
graphIntegration_mcpTools?: Maybe<Array<Maybe<GraphIntegrationMcpToolNode>>>;
|
|
146542
|
+
graphIntegration_skill?: Maybe<GraphIntegrationSkill>;
|
|
146318
146543
|
graphIntegration_twgCapabilityContainer?: Maybe<GraphIntegrationTwgCapabilityContainer>;
|
|
146319
146544
|
graphIntegration_twgCapabilityContainersInContext?: Maybe<GraphIntegrationTwgCapabilityContainerConnection>;
|
|
146320
146545
|
graphIntegration_twgPlatformCapabilityGlobalAdminSettings?: Maybe<GraphIntegrationTwgPlatformCapabilityGlobalAdminSettings>;
|
|
@@ -146452,6 +146677,7 @@ export declare type Query = {
|
|
|
146452
146677
|
kitsune_node?: Maybe<KitsuneNode>;
|
|
146453
146678
|
kitsune_searchFeedback?: Maybe<KitsuneFeedbackConnection>;
|
|
146454
146679
|
kitsune_sections?: Maybe<Array<Maybe<KitsuneSection>>>;
|
|
146680
|
+
kitsune_snippets?: Maybe<Array<Maybe<KitsuneSnippet>>>;
|
|
146455
146681
|
kitsune_spaces?: Maybe<Array<Maybe<KitsuneSpace>>>;
|
|
146456
146682
|
kitsune_spacesForWorkspace?: Maybe<KitsuneSpaceConnection>;
|
|
146457
146683
|
kitsune_views?: Maybe<Array<Maybe<KitsuneView>>>;
|
|
@@ -146620,6 +146846,8 @@ export declare type Query = {
|
|
|
146620
146846
|
radar_positionsByAris?: Maybe<Array<RadarPosition>>;
|
|
146621
146847
|
radar_positionsByEntitySearch?: Maybe<RadarPositionsByEntityConnection>;
|
|
146622
146848
|
radar_positionsSearch?: Maybe<RadarPositionConnection>;
|
|
146849
|
+
radar_skillByAri?: Maybe<RadarSkill>;
|
|
146850
|
+
radar_skillsByAris?: Maybe<Array<RadarSkill>>;
|
|
146623
146851
|
radar_viewByAri?: Maybe<RadarView>;
|
|
146624
146852
|
radar_viewsByAris?: Maybe<Array<RadarView>>;
|
|
146625
146853
|
radar_viewsSearch?: Maybe<RadarViewConnection>;
|
|
@@ -147946,6 +148174,10 @@ export declare type QueryAssetsVertical_BundleArgs = {
|
|
|
147946
148174
|
cloudId: Scalars['ID']['input'];
|
|
147947
148175
|
type: AssetsVerticalBundleType;
|
|
147948
148176
|
};
|
|
148177
|
+
export declare type QueryAssetsVertical_CountByStatusArgs = {
|
|
148178
|
+
cloudId: Scalars['ID']['input'];
|
|
148179
|
+
input: AssetsVerticalCountByStatusInput;
|
|
148180
|
+
};
|
|
147949
148181
|
export declare type QueryAssetsVertical_InsightsArgs = {
|
|
147950
148182
|
cloudId: Scalars['ID']['input'];
|
|
147951
148183
|
jobId?: InputMaybe<Scalars['ID']['input']>;
|
|
@@ -148265,13 +148497,10 @@ export declare type QueryClassificationLevelArgs = {
|
|
|
148265
148497
|
id: Scalars['String']['input'];
|
|
148266
148498
|
};
|
|
148267
148499
|
export declare type QueryClassificationLevelsArgs = {
|
|
148268
|
-
contentId?: InputMaybe<Scalars['ID']['input']>;
|
|
148269
148500
|
reclassificationFilterScope?: InputMaybe<ReclassificationFilterScope>;
|
|
148270
|
-
spaceKey?: InputMaybe<Scalars['String']['input']>;
|
|
148271
148501
|
};
|
|
148272
148502
|
export declare type QueryCloudify_AnalysisExecutionsArgs = {
|
|
148273
|
-
|
|
148274
|
-
siteId: Scalars['ID']['input'];
|
|
148503
|
+
target: CloudifyTargetInput;
|
|
148275
148504
|
};
|
|
148276
148505
|
export declare type QueryCloudify_EnactmentArgs = {
|
|
148277
148506
|
enactmentId: Scalars['ID']['input'];
|
|
@@ -148283,8 +148512,7 @@ export declare type QueryCloudify_GreetingArgs = {
|
|
|
148283
148512
|
name?: InputMaybe<Scalars['String']['input']>;
|
|
148284
148513
|
};
|
|
148285
148514
|
export declare type QueryCloudify_RecommendationsArgs = {
|
|
148286
|
-
|
|
148287
|
-
siteId: Scalars['ID']['input'];
|
|
148515
|
+
filter: CloudifyRecommendationFilterInput;
|
|
148288
148516
|
};
|
|
148289
148517
|
export declare type QueryCodeInJiraArgs = {
|
|
148290
148518
|
cloudId: Scalars['ID']['input'];
|
|
@@ -148443,6 +148671,13 @@ export declare type QueryConfluence_CategorizeNbmChainsArgs = {
|
|
|
148443
148671
|
cloudId: Scalars['ID']['input'];
|
|
148444
148672
|
nbmChains: Array<InputMaybe<Array<InputMaybe<Scalars['String']['input']>>>>;
|
|
148445
148673
|
};
|
|
148674
|
+
export declare type QueryConfluence_ClassificationLevelsForContentArgs = {
|
|
148675
|
+
cloudId: Scalars['ID']['input'];
|
|
148676
|
+
contentId: Scalars['ID']['input'];
|
|
148677
|
+
};
|
|
148678
|
+
export declare type QueryConfluence_ClassificationLevelsForSpaceDefaultArgs = {
|
|
148679
|
+
cloudId: Scalars['ID']['input'];
|
|
148680
|
+
};
|
|
148446
148681
|
export declare type QueryConfluence_CommentMediaSessionArgs = {
|
|
148447
148682
|
cloudId: Scalars['ID']['input'];
|
|
148448
148683
|
contentId: Scalars['ID']['input'];
|
|
@@ -148852,6 +149087,7 @@ export declare type QueryConfluence_SmartSpaceOverviewArgs = {
|
|
|
148852
149087
|
};
|
|
148853
149088
|
export declare type QueryConfluence_SpaceMediaSessionArgs = {
|
|
148854
149089
|
cloudId: Scalars['ID']['input'];
|
|
149090
|
+
contentId?: InputMaybe<Scalars['String']['input']>;
|
|
148855
149091
|
contentType: Scalars['String']['input'];
|
|
148856
149092
|
spaceKey: Scalars['String']['input'];
|
|
148857
149093
|
};
|
|
@@ -149924,6 +150160,10 @@ export declare type QueryGraphIntegration_McpServersArgs = {
|
|
|
149924
150160
|
export declare type QueryGraphIntegration_McpToolsArgs = {
|
|
149925
150161
|
ids: Array<Scalars['ID']['input']>;
|
|
149926
150162
|
};
|
|
150163
|
+
export declare type QueryGraphIntegration_SkillArgs = {
|
|
150164
|
+
contextAri: Scalars['ID']['input'];
|
|
150165
|
+
skillAri: Scalars['ID']['input'];
|
|
150166
|
+
};
|
|
149927
150167
|
export declare type QueryGraphIntegration_TwgCapabilityContainerArgs = {
|
|
149928
150168
|
contextAri: Scalars['ID']['input'];
|
|
149929
150169
|
id: Scalars['String']['input'];
|
|
@@ -150419,6 +150659,9 @@ export declare type QueryKitsune_SearchFeedbackArgs = {
|
|
|
150419
150659
|
export declare type QueryKitsune_SectionsArgs = {
|
|
150420
150660
|
ids: Array<Scalars['ID']['input']>;
|
|
150421
150661
|
};
|
|
150662
|
+
export declare type QueryKitsune_SnippetsArgs = {
|
|
150663
|
+
ids: Array<Scalars['ID']['input']>;
|
|
150664
|
+
};
|
|
150422
150665
|
export declare type QueryKitsune_SpacesArgs = {
|
|
150423
150666
|
ids: Array<Scalars['ID']['input']>;
|
|
150424
150667
|
};
|
|
@@ -150987,6 +151230,12 @@ export declare type QueryRadar_PositionsSearchArgs = {
|
|
|
150987
151230
|
last?: InputMaybe<Scalars['Int']['input']>;
|
|
150988
151231
|
rql?: InputMaybe<Scalars['String']['input']>;
|
|
150989
151232
|
};
|
|
151233
|
+
export declare type QueryRadar_SkillByAriArgs = {
|
|
151234
|
+
id: Scalars['ID']['input'];
|
|
151235
|
+
};
|
|
151236
|
+
export declare type QueryRadar_SkillsByArisArgs = {
|
|
151237
|
+
ids: Array<Scalars['ID']['input']>;
|
|
151238
|
+
};
|
|
150990
151239
|
export declare type QueryRadar_ViewByAriArgs = {
|
|
150991
151240
|
id: Scalars['ID']['input'];
|
|
150992
151241
|
};
|
|
@@ -152219,7 +152468,7 @@ export declare type RadarMutationResponse = {
|
|
|
152219
152468
|
__typename?: 'RadarMutationResponse';
|
|
152220
152469
|
success?: Maybe<Scalars['Boolean']['output']>;
|
|
152221
152470
|
};
|
|
152222
|
-
export declare type RadarNode = RadarPosition | RadarView | RadarWorker;
|
|
152471
|
+
export declare type RadarNode = RadarPosition | RadarSkill | RadarView | RadarWorker;
|
|
152223
152472
|
export declare type RadarNonNumericFieldDefinition = RadarFieldDefinition & {
|
|
152224
152473
|
__typename?: 'RadarNonNumericFieldDefinition';
|
|
152225
152474
|
defaultOrder?: Maybe<Scalars['Int']['output']>;
|
|
@@ -152376,6 +152625,14 @@ export declare type RadarSettings = {
|
|
|
152376
152625
|
__typename?: 'RadarSettings';
|
|
152377
152626
|
permissions: RadarPermissions;
|
|
152378
152627
|
};
|
|
152628
|
+
export declare type RadarSkill = Node & {
|
|
152629
|
+
__typename?: 'RadarSkill';
|
|
152630
|
+
description?: Maybe<Scalars['String']['output']>;
|
|
152631
|
+
id: Scalars['ID']['output'];
|
|
152632
|
+
name: Scalars['String']['output'];
|
|
152633
|
+
parent?: Maybe<RadarSkill>;
|
|
152634
|
+
parentId?: Maybe<Scalars['ID']['output']>;
|
|
152635
|
+
};
|
|
152379
152636
|
export declare type RadarStaticStringFilterOptions = RadarFilterOptions & {
|
|
152380
152637
|
__typename?: 'RadarStaticStringFilterOptions';
|
|
152381
152638
|
functionOptions: Array<RadarFunction>;
|
|
@@ -155091,7 +155348,6 @@ export declare type SearchResultGraphDocument = SearchL2FeatureProvider & Search
|
|
|
155091
155348
|
permissionLevel?: Maybe<Scalars['String']['output']>;
|
|
155092
155349
|
providerId?: Maybe<Scalars['String']['output']>;
|
|
155093
155350
|
scoreL2Ranker?: Maybe<Scalars['Float']['output']>;
|
|
155094
|
-
status?: Maybe<Scalars['String']['output']>;
|
|
155095
155351
|
subtype?: Maybe<Scalars['String']['output']>;
|
|
155096
155352
|
title: Scalars['String']['output'];
|
|
155097
155353
|
type: SearchResultType;
|
|
@@ -182966,6 +183222,7 @@ export declare type TownsquareProjectsRemoveJiraWorkItemLinkPayload = {
|
|
|
182966
183222
|
};
|
|
182967
183223
|
export declare type TownsquareProjectsRemoveMemberInput = {
|
|
182968
183224
|
projectId: Scalars['ID']['input'];
|
|
183225
|
+
revokeAccess?: InputMaybe<Scalars['Boolean']['input']>;
|
|
182969
183226
|
userId: Scalars['ID']['input'];
|
|
182970
183227
|
};
|
|
182971
183228
|
export declare type TownsquareProjectsRemoveMemberPayload = {
|
|
@@ -182988,6 +183245,7 @@ export declare type TownsquareProjectsRemoveNumericCustomFieldValuePayload = {
|
|
|
182988
183245
|
};
|
|
182989
183246
|
export declare type TownsquareProjectsRemoveTeamContributorsInput = {
|
|
182990
183247
|
projectId: Scalars['ID']['input'];
|
|
183248
|
+
revokeAccess?: InputMaybe<Scalars['Boolean']['input']>;
|
|
182991
183249
|
teamId: Scalars['ID']['input'];
|
|
182992
183250
|
};
|
|
182993
183251
|
export declare type TownsquareProjectsRemoveTeamContributorsPayload = {
|
|
@@ -184588,6 +184846,15 @@ export declare type TrelloBoardWorkspaceUpdated = {
|
|
|
184588
184846
|
id?: Maybe<Scalars['ID']['output']>;
|
|
184589
184847
|
objectId?: Maybe<Scalars['ID']['output']>;
|
|
184590
184848
|
};
|
|
184849
|
+
export declare type TrelloBulkDeleteListInput = {
|
|
184850
|
+
listIds: Array<Scalars['ID']['input']>;
|
|
184851
|
+
};
|
|
184852
|
+
export declare type TrelloBulkDeleteListPayload = Payload & {
|
|
184853
|
+
__typename?: 'TrelloBulkDeleteListPayload';
|
|
184854
|
+
errors?: Maybe<Array<MutationError>>;
|
|
184855
|
+
failedListIds: Array<Scalars['ID']['output']>;
|
|
184856
|
+
success: Scalars['Boolean']['output'];
|
|
184857
|
+
};
|
|
184591
184858
|
export declare type TrelloCard = Node & TrelloBaseCard & {
|
|
184592
184859
|
__typename?: 'TrelloCard';
|
|
184593
184860
|
actions?: Maybe<TrelloCardActionConnection>;
|
|
@@ -185139,6 +185406,15 @@ export declare type TrelloChecklistUpdated = {
|
|
|
185139
185406
|
objectId: Scalars['ID']['output'];
|
|
185140
185407
|
position?: Maybe<Scalars['Float']['output']>;
|
|
185141
185408
|
};
|
|
185409
|
+
export declare type TrelloCloseBoardInput = {
|
|
185410
|
+
boardId: Scalars['ID']['input'];
|
|
185411
|
+
};
|
|
185412
|
+
export declare type TrelloCloseBoardPayload = Payload & {
|
|
185413
|
+
__typename?: 'TrelloCloseBoardPayload';
|
|
185414
|
+
board?: Maybe<TrelloBoard>;
|
|
185415
|
+
errors?: Maybe<Array<MutationError>>;
|
|
185416
|
+
success: Scalars['Boolean']['output'];
|
|
185417
|
+
};
|
|
185142
185418
|
export declare type TrelloCommentCardAction = TrelloAction & TrelloCardActionData & {
|
|
185143
185419
|
__typename?: 'TrelloCommentCardAction';
|
|
185144
185420
|
appCreator?: Maybe<TrelloAppCreator>;
|
|
@@ -186359,6 +186635,8 @@ export declare type TrelloMutationApi = {
|
|
|
186359
186635
|
archiveCard?: Maybe<TrelloArchiveCardPayload>;
|
|
186360
186636
|
assignCardToPlannerCalendarEvent?: Maybe<TrelloAssignCardToPlannerCalendarEventPayload>;
|
|
186361
186637
|
assignCardsToPlannerCalendarEvent?: Maybe<TrelloAssignCardsToPlannerCalendarEventPayload>;
|
|
186638
|
+
bulkDeleteList?: Maybe<TrelloBulkDeleteListPayload>;
|
|
186639
|
+
closeBoard?: Maybe<TrelloCloseBoardPayload>;
|
|
186362
186640
|
createApplication?: Maybe<TrelloCreateApplicationPayload>;
|
|
186363
186641
|
createBoardWithAi?: Maybe<TrelloCreateBoardWithAiPayload>;
|
|
186364
186642
|
createCard?: Maybe<TrelloCreateCardPayload>;
|
|
@@ -186402,6 +186680,7 @@ export declare type TrelloMutationApi = {
|
|
|
186402
186680
|
unwatchCard?: Maybe<TrelloWatchCardPayload>;
|
|
186403
186681
|
updateAiRule?: Maybe<TrelloUpdateAiRulePayload>;
|
|
186404
186682
|
updateBoardBackground?: Maybe<TrelloUpdateBoardBackgroundPayload>;
|
|
186683
|
+
updateBoardDescription?: Maybe<TrelloUpdateBoardDescriptionPayload>;
|
|
186405
186684
|
updateBoardIsTemplate?: Maybe<TrelloUpdateBoardIsTemplatePayload>;
|
|
186406
186685
|
updateBoardName?: Maybe<TrelloUpdateBoardNamePayload>;
|
|
186407
186686
|
updateBoardStarPosition?: Maybe<TrelloUpdateBoardStarPositionPayload>;
|
|
@@ -186453,6 +186732,12 @@ export declare type TrelloMutationApiAssignCardToPlannerCalendarEventArgs = {
|
|
|
186453
186732
|
export declare type TrelloMutationApiAssignCardsToPlannerCalendarEventArgs = {
|
|
186454
186733
|
input: TrelloAssignCardsToPlannerCalendarEventInput;
|
|
186455
186734
|
};
|
|
186735
|
+
export declare type TrelloMutationApiBulkDeleteListArgs = {
|
|
186736
|
+
input: TrelloBulkDeleteListInput;
|
|
186737
|
+
};
|
|
186738
|
+
export declare type TrelloMutationApiCloseBoardArgs = {
|
|
186739
|
+
input: TrelloCloseBoardInput;
|
|
186740
|
+
};
|
|
186456
186741
|
export declare type TrelloMutationApiCreateApplicationArgs = {
|
|
186457
186742
|
input: TrelloCreateApplicationInput;
|
|
186458
186743
|
};
|
|
@@ -186576,6 +186861,9 @@ export declare type TrelloMutationApiUpdateAiRuleArgs = {
|
|
|
186576
186861
|
export declare type TrelloMutationApiUpdateBoardBackgroundArgs = {
|
|
186577
186862
|
input: TrelloUpdateBoardBackgroundInput;
|
|
186578
186863
|
};
|
|
186864
|
+
export declare type TrelloMutationApiUpdateBoardDescriptionArgs = {
|
|
186865
|
+
input: TrelloUpdateBoardDescriptionInput;
|
|
186866
|
+
};
|
|
186579
186867
|
export declare type TrelloMutationApiUpdateBoardIsTemplateArgs = {
|
|
186580
186868
|
input: TrelloUpdateBoardIsTemplateInput;
|
|
186581
186869
|
};
|
|
@@ -187144,6 +187432,7 @@ export declare type TrelloPlannerCardsWithDueDatesUpdatedFilter = {
|
|
|
187144
187432
|
export declare type TrelloPlannerDueDateCardsSettings = {
|
|
187145
187433
|
__typename?: 'TrelloPlannerDueDateCardsSettings';
|
|
187146
187434
|
assignedToMe?: Maybe<Scalars['Boolean']['output']>;
|
|
187435
|
+
soloBoards?: Maybe<Scalars['Boolean']['output']>;
|
|
187147
187436
|
};
|
|
187148
187437
|
export declare type TrelloPlannerEventCardConnection = {
|
|
187149
187438
|
__typename?: 'TrelloPlannerEventCardConnection';
|
|
@@ -188036,6 +188325,16 @@ export declare type TrelloUpdateBoardBackgroundPayload = Payload & {
|
|
|
188036
188325
|
prefs?: Maybe<TrelloBoardPrefs>;
|
|
188037
188326
|
success: Scalars['Boolean']['output'];
|
|
188038
188327
|
};
|
|
188328
|
+
export declare type TrelloUpdateBoardDescriptionInput = {
|
|
188329
|
+
boardId: Scalars['ID']['input'];
|
|
188330
|
+
description: Scalars['String']['input'];
|
|
188331
|
+
};
|
|
188332
|
+
export declare type TrelloUpdateBoardDescriptionPayload = Payload & {
|
|
188333
|
+
__typename?: 'TrelloUpdateBoardDescriptionPayload';
|
|
188334
|
+
board?: Maybe<TrelloBaseBoard>;
|
|
188335
|
+
errors?: Maybe<Array<MutationError>>;
|
|
188336
|
+
success: Scalars['Boolean']['output'];
|
|
188337
|
+
};
|
|
188039
188338
|
export declare type TrelloUpdateBoardIsTemplateInput = {
|
|
188040
188339
|
boardId: Scalars['ID']['input'];
|
|
188041
188340
|
value: Scalars['Boolean']['input'];
|
|
@@ -188048,7 +188347,7 @@ export declare type TrelloUpdateBoardIsTemplatePayload = Payload & {
|
|
|
188048
188347
|
};
|
|
188049
188348
|
export declare type TrelloUpdateBoardNameInput = {
|
|
188050
188349
|
boardId: Scalars['ID']['input'];
|
|
188051
|
-
name
|
|
188350
|
+
name: Scalars['String']['input'];
|
|
188052
188351
|
};
|
|
188053
188352
|
export declare type TrelloUpdateBoardNamePayload = Payload & {
|
|
188054
188353
|
__typename?: 'TrelloUpdateBoardNamePayload';
|
|
@@ -188451,6 +188750,7 @@ export declare enum TrelloWorkOverviewDashboardJobStatus {
|
|
|
188451
188750
|
Completed = "COMPLETED",
|
|
188452
188751
|
Creating = "CREATING",
|
|
188453
188752
|
Failed = "FAILED",
|
|
188753
|
+
Importing = "IMPORTING",
|
|
188454
188754
|
Pending = "PENDING"
|
|
188455
188755
|
}
|
|
188456
188756
|
export declare type TrelloWorkOverviewDashboardJobUpdated = {
|
|
@@ -188474,6 +188774,7 @@ export declare type TrelloWorkspace = Node & {
|
|
|
188474
188774
|
displayBoardCount?: Maybe<Scalars['Int']['output']>;
|
|
188475
188775
|
displayName?: Maybe<Scalars['String']['output']>;
|
|
188476
188776
|
enterprise?: Maybe<TrelloEnterprise>;
|
|
188777
|
+
entitlement?: Maybe<CcpEntitlement>;
|
|
188477
188778
|
id: Scalars['ID']['output'];
|
|
188478
188779
|
jwmLink?: Maybe<TrelloJwmWorkspaceLink>;
|
|
188479
188780
|
limits?: Maybe<TrelloWorkspaceLimits>;
|
|
@@ -190661,9 +190962,14 @@ export declare type UpdatePolarisTreeConfig = {
|
|
|
190661
190962
|
export declare type UpdatePolarisTreeHierarchyItem = {
|
|
190662
190963
|
fields?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
190663
190964
|
filter?: InputMaybe<Array<PolarisViewFilterInput>>;
|
|
190664
|
-
items?: InputMaybe<Array<
|
|
190965
|
+
items?: InputMaybe<Array<UpdatePolarisTreeHierarchyItemEntry>>;
|
|
190665
190966
|
type?: InputMaybe<PolarisTreeHierarchyType>;
|
|
190666
190967
|
};
|
|
190968
|
+
export declare type UpdatePolarisTreeHierarchyItemEntry = {
|
|
190969
|
+
fieldKey?: InputMaybe<Scalars['String']['input']>;
|
|
190970
|
+
issueId?: InputMaybe<Scalars['String']['input']>;
|
|
190971
|
+
issueTypeName?: InputMaybe<Scalars['String']['input']>;
|
|
190972
|
+
};
|
|
190667
190973
|
export declare type UpdatePolarisViewArrangementInfoPayload = Payload & {
|
|
190668
190974
|
__typename?: 'UpdatePolarisViewArrangementInfoPayload';
|
|
190669
190975
|
errors?: Maybe<Array<MutationError>>;
|