@forge/cli-shared 8.17.0-next.2 → 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 +8 -0
- package/out/graphql/graphql-types.d.ts +310 -26
- package/out/graphql/graphql-types.d.ts.map +1 -1
- package/out/graphql/graphql-types.js +59 -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",
|
|
@@ -10420,6 +10440,19 @@ export declare enum AssetsVerticalBundleType {
|
|
|
10420
10440
|
Cdm = "CDM",
|
|
10421
10441
|
Osc = "OSC"
|
|
10422
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;
|
|
10423
10456
|
export declare type AssetsVerticalGenerateInsightsInput = {
|
|
10424
10457
|
cloudId: Scalars['ID']['input'];
|
|
10425
10458
|
};
|
|
@@ -10473,6 +10506,11 @@ export declare enum AssetsVerticalInventoryErrorCode {
|
|
|
10473
10506
|
Timeout = "TIMEOUT",
|
|
10474
10507
|
ValidationError = "VALIDATION_ERROR"
|
|
10475
10508
|
}
|
|
10509
|
+
export declare type AssetsVerticalInventoryErrorExtension = QueryErrorExtension & {
|
|
10510
|
+
__typename?: 'AssetsVerticalInventoryErrorExtension';
|
|
10511
|
+
errorType?: Maybe<Scalars['String']['output']>;
|
|
10512
|
+
statusCode?: Maybe<Scalars['Int']['output']>;
|
|
10513
|
+
};
|
|
10476
10514
|
export declare type AssetsVerticalObject = AssetsVerticalObjectNode & {
|
|
10477
10515
|
__typename?: 'AssetsVerticalObject';
|
|
10478
10516
|
avatar?: Maybe<AssetsVerticalAvatar>;
|
|
@@ -10498,6 +10536,16 @@ export declare type AssetsVerticalObjectNode = {
|
|
|
10498
10536
|
name?: Maybe<Scalars['String']['output']>;
|
|
10499
10537
|
objectKey?: Maybe<Scalars['String']['output']>;
|
|
10500
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
|
+
}
|
|
10501
10549
|
export declare type AssetsVerticalSchemaTemplate = {
|
|
10502
10550
|
__typename?: 'AssetsVerticalSchemaTemplate';
|
|
10503
10551
|
description?: Maybe<Scalars['String']['output']>;
|
|
@@ -10508,6 +10556,11 @@ export declare type AssetsVerticalSchemaTemplate = {
|
|
|
10508
10556
|
objectTypeCount?: Maybe<Scalars['Int']['output']>;
|
|
10509
10557
|
type: Scalars['String']['output'];
|
|
10510
10558
|
};
|
|
10559
|
+
export declare type AssetsVerticalStatusCount = {
|
|
10560
|
+
__typename?: 'AssetsVerticalStatusCount';
|
|
10561
|
+
count?: Maybe<Scalars['Int']['output']>;
|
|
10562
|
+
statusKey?: Maybe<Scalars['String']['output']>;
|
|
10563
|
+
};
|
|
10511
10564
|
export declare type AssetsVerticalStatusType = {
|
|
10512
10565
|
__typename?: 'AssetsVerticalStatusType';
|
|
10513
10566
|
category?: Maybe<Scalars['Int']['output']>;
|
|
@@ -14255,6 +14308,10 @@ export declare type CloudifyCloudProjectTarget = {
|
|
|
14255
14308
|
__typename?: 'CloudifyCloudProjectTarget';
|
|
14256
14309
|
project: CloudifyProjectAri;
|
|
14257
14310
|
};
|
|
14311
|
+
export declare type CloudifyCloudProjectTargetInput = {
|
|
14312
|
+
projectId: Scalars['ID']['input'];
|
|
14313
|
+
siteId: Scalars['ID']['input'];
|
|
14314
|
+
};
|
|
14258
14315
|
export declare type CloudifyEnactment = {
|
|
14259
14316
|
__typename?: 'CloudifyEnactment';
|
|
14260
14317
|
completedAt?: Maybe<Scalars['String']['output']>;
|
|
@@ -14291,6 +14348,10 @@ export declare type CloudifyRecommendation = {
|
|
|
14291
14348
|
target: CloudifyRecommendationTarget;
|
|
14292
14349
|
title: Scalars['String']['output'];
|
|
14293
14350
|
};
|
|
14351
|
+
export declare type CloudifyRecommendationFilterInput = {
|
|
14352
|
+
cloudProject?: InputMaybe<CloudifyCloudProjectTargetInput>;
|
|
14353
|
+
siteId?: InputMaybe<Scalars['ID']['input']>;
|
|
14354
|
+
};
|
|
14294
14355
|
export declare type CloudifyRecommendationId = {
|
|
14295
14356
|
__typename?: 'CloudifyRecommendationId';
|
|
14296
14357
|
value: Scalars['String']['output'];
|
|
@@ -14298,6 +14359,7 @@ export declare type CloudifyRecommendationId = {
|
|
|
14298
14359
|
export declare type CloudifyRecommendationInput = {
|
|
14299
14360
|
reasoning: Scalars['String']['input'];
|
|
14300
14361
|
steps: Array<CloudifyStepInput>;
|
|
14362
|
+
target: CloudifyTargetInput;
|
|
14301
14363
|
title: Scalars['String']['input'];
|
|
14302
14364
|
};
|
|
14303
14365
|
export declare type CloudifyRecommendationStep = {
|
|
@@ -14314,6 +14376,9 @@ export declare type CloudifyStepInput = {
|
|
|
14314
14376
|
title: Scalars['String']['input'];
|
|
14315
14377
|
toolId: Scalars['String']['input'];
|
|
14316
14378
|
};
|
|
14379
|
+
export declare type CloudifyTargetInput = {
|
|
14380
|
+
cloudProject?: InputMaybe<CloudifyCloudProjectTargetInput>;
|
|
14381
|
+
};
|
|
14317
14382
|
export declare type CloudifyToolId = {
|
|
14318
14383
|
__typename?: 'CloudifyToolId';
|
|
14319
14384
|
value: Scalars['String']['output'];
|
|
@@ -15145,6 +15210,7 @@ export declare type CommerceExpCcpEntitlement = CommerceExpNode & {
|
|
|
15145
15210
|
relatedEnterpriseEntitlementForBac?: Maybe<CommerceExpCcpEntitlement>;
|
|
15146
15211
|
relatedEnterpriseInstanceEntitlements2?: Maybe<CommerceExpCcpEntitlementConnection>;
|
|
15147
15212
|
relatedEnterpriseInstanceEntitlementsForBac?: Maybe<Array<Maybe<CommerceExpCcpEntitlement>>>;
|
|
15213
|
+
relatedInvoices?: Maybe<Array<Maybe<CommerceExpCcpInvoice>>>;
|
|
15148
15214
|
relatedQuotes?: Maybe<Array<Maybe<CommerceExpCcpQuote>>>;
|
|
15149
15215
|
relatesFromEntitlements?: Maybe<Array<Maybe<CommerceExpCcpEntitlementRelationship>>>;
|
|
15150
15216
|
relatesToEntitlements?: Maybe<Array<Maybe<CommerceExpCcpEntitlementRelationship>>>;
|
|
@@ -28387,13 +28453,26 @@ export declare enum ConfluenceSiteEmailAddressStatus {
|
|
|
28387
28453
|
export declare type ConfluenceSmartSpaceOverview = {
|
|
28388
28454
|
__typename?: 'ConfluenceSmartSpaceOverview';
|
|
28389
28455
|
summary?: Maybe<ConfluenceSmartSpaceOverviewSummary>;
|
|
28456
|
+
topLinks?: Maybe<ConfluenceSmartSpaceOverviewTopLinks>;
|
|
28390
28457
|
};
|
|
28391
28458
|
export declare type ConfluenceSmartSpaceOverviewSummary = {
|
|
28392
28459
|
__typename?: 'ConfluenceSmartSpaceOverviewSummary';
|
|
28393
28460
|
body?: Maybe<Scalars['String']['output']>;
|
|
28394
28461
|
contentId?: Maybe<Scalars['ID']['output']>;
|
|
28395
28462
|
isPinned?: Maybe<Scalars['Boolean']['output']>;
|
|
28396
|
-
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>>>;
|
|
28397
28476
|
};
|
|
28398
28477
|
export declare type ConfluenceSpace = Node & {
|
|
28399
28478
|
__typename?: 'ConfluenceSpace';
|
|
@@ -32957,6 +33036,7 @@ export declare type CplsWorkResourcingContributionAggregation = {
|
|
|
32957
33036
|
valueFormats?: Maybe<CplsValueFormats>;
|
|
32958
33037
|
};
|
|
32959
33038
|
export declare enum CplsWorkType {
|
|
33039
|
+
AtlasProject = "ATLAS_PROJECT",
|
|
32960
33040
|
CustomContributionTarget = "CUSTOM_CONTRIBUTION_TARGET",
|
|
32961
33041
|
JiraWorkItem = "JIRA_WORK_ITEM"
|
|
32962
33042
|
}
|
|
@@ -34933,6 +35013,16 @@ export declare type CustomerServiceEscalateWorkItemPayload = Payload & {
|
|
|
34933
35013
|
export declare enum CustomerServiceEscalationType {
|
|
34934
35014
|
SupportEscalation = "SUPPORT_ESCALATION"
|
|
34935
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
|
+
};
|
|
34936
35026
|
export declare type CustomerServiceFilterInput = {
|
|
34937
35027
|
context: CustomerServiceContext;
|
|
34938
35028
|
};
|
|
@@ -35382,6 +35472,7 @@ export declare type CustomerServiceQueryApi = {
|
|
|
35382
35472
|
customDetailsByEntityType?: Maybe<CustomerServiceCustomDetailsQueryResult>;
|
|
35383
35473
|
entitlementById?: Maybe<CustomerServiceEntitlementQueryResult>;
|
|
35384
35474
|
escalatableJiraProjects?: Maybe<CustomerServiceEscalatableJiraProjectsConnection>;
|
|
35475
|
+
externalStatusesByHelpCenterId?: Maybe<CustomerServiceExternalStatusesQueryResult>;
|
|
35385
35476
|
individualAttributes?: Maybe<CustomerServiceAttributesQueryResult>;
|
|
35386
35477
|
individualByAccountId?: Maybe<CustomerServiceIndividualQueryResult>;
|
|
35387
35478
|
organizationAttributes?: Maybe<CustomerServiceAttributesQueryResult>;
|
|
@@ -35413,6 +35504,9 @@ export declare type CustomerServiceQueryApiEscalatableJiraProjectsArgs = {
|
|
|
35413
35504
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
35414
35505
|
projectId: Scalars['ID']['input'];
|
|
35415
35506
|
};
|
|
35507
|
+
export declare type CustomerServiceQueryApiExternalStatusesByHelpCenterIdArgs = {
|
|
35508
|
+
helpCenterId: Scalars['ID']['input'];
|
|
35509
|
+
};
|
|
35416
35510
|
export declare type CustomerServiceQueryApiIndividualByAccountIdArgs = {
|
|
35417
35511
|
accountId: Scalars['ID']['input'];
|
|
35418
35512
|
filter?: InputMaybe<CustomerServiceFilterInput>;
|
|
@@ -44354,7 +44448,7 @@ export declare type GraphIntegrationDirectoryFilterDimensionEdge = {
|
|
|
44354
44448
|
cursor: Scalars['String']['output'];
|
|
44355
44449
|
node?: Maybe<GraphIntegrationDirectoryFilterDimension>;
|
|
44356
44450
|
};
|
|
44357
|
-
export declare type GraphIntegrationDirectoryItem = GraphIntegrationActionDirectoryItem | GraphIntegrationMcpServer | GraphIntegrationMcpTool | GraphIntegrationSkillDirectoryItem;
|
|
44451
|
+
export declare type GraphIntegrationDirectoryItem = GraphIntegrationActionDirectoryItem | GraphIntegrationMcpServer | GraphIntegrationMcpTool | GraphIntegrationSkillDirectoryItem | GraphIntegrationSkillItem;
|
|
44358
44452
|
export declare type GraphIntegrationDirectoryItemConnection = {
|
|
44359
44453
|
__typename?: 'GraphIntegrationDirectoryItemConnection';
|
|
44360
44454
|
edges: Array<GraphIntegrationDirectoryItemEdge>;
|
|
@@ -44623,6 +44717,15 @@ export declare type GraphIntegrationSetTwgPlatformCapabilityGlobalAdminSettingPa
|
|
|
44623
44717
|
setting?: Maybe<GraphIntegrationTwgPlatformCapabilityGlobalAdminSetting>;
|
|
44624
44718
|
success: Scalars['Boolean']['output'];
|
|
44625
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
|
+
};
|
|
44626
44729
|
export declare enum GraphIntegrationSkillColor {
|
|
44627
44730
|
Blue = "BLUE",
|
|
44628
44731
|
Default = "DEFAULT",
|
|
@@ -44648,6 +44751,26 @@ export declare type GraphIntegrationSkillDirectoryItem = {
|
|
|
44648
44751
|
slashCommand?: Maybe<Scalars['String']['output']>;
|
|
44649
44752
|
tags: Array<GraphIntegrationDirectoryFilterDimension>;
|
|
44650
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
|
+
};
|
|
44651
44774
|
export declare enum GraphIntegrationStatus {
|
|
44652
44775
|
Disabled = "DISABLED",
|
|
44653
44776
|
Enabled = "ENABLED"
|
|
@@ -60391,6 +60514,7 @@ export declare enum GraphStoreFullIssueAssociatedPrPullRequestStatusOutput {
|
|
|
60391
60514
|
Merged = "MERGED",
|
|
60392
60515
|
NotSet = "NOT_SET",
|
|
60393
60516
|
Open = "OPEN",
|
|
60517
|
+
Queued = "QUEUED",
|
|
60394
60518
|
Unknown = "UNKNOWN"
|
|
60395
60519
|
}
|
|
60396
60520
|
export declare type GraphStoreFullIssueAssociatedPrRelationshipObjectMetadataOutput = {
|
|
@@ -61063,6 +61187,7 @@ export declare enum GraphStoreFullPrInRepoPullRequestStatusOutput {
|
|
|
61063
61187
|
Merged = "MERGED",
|
|
61064
61188
|
NotSet = "NOT_SET",
|
|
61065
61189
|
Open = "OPEN",
|
|
61190
|
+
Queued = "QUEUED",
|
|
61066
61191
|
Unknown = "UNKNOWN"
|
|
61067
61192
|
}
|
|
61068
61193
|
export declare type GraphStoreFullPrInRepoRelationshipObjectMetadataOutput = {
|
|
@@ -61407,6 +61532,7 @@ export declare enum GraphStoreFullProjectAssociatedPrPullRequestStatusOutput {
|
|
|
61407
61532
|
Merged = "MERGED",
|
|
61408
61533
|
NotSet = "NOT_SET",
|
|
61409
61534
|
Open = "OPEN",
|
|
61535
|
+
Queued = "QUEUED",
|
|
61410
61536
|
Unknown = "UNKNOWN"
|
|
61411
61537
|
}
|
|
61412
61538
|
export declare type GraphStoreFullProjectAssociatedPrRelationshipMetadataOutput = {
|
|
@@ -62233,6 +62359,7 @@ export declare enum GraphStoreFullSprintAssociatedPrPullRequestStatusOutput {
|
|
|
62233
62359
|
Merged = "MERGED",
|
|
62234
62360
|
NotSet = "NOT_SET",
|
|
62235
62361
|
Open = "OPEN",
|
|
62362
|
+
Queued = "QUEUED",
|
|
62236
62363
|
Unknown = "UNKNOWN"
|
|
62237
62364
|
}
|
|
62238
62365
|
export declare type GraphStoreFullSprintAssociatedPrRelationshipMetadataOutput = {
|
|
@@ -64042,6 +64169,7 @@ export declare enum GraphStoreProjectAssociatedPrPullRequestStatus {
|
|
|
64042
64169
|
Merged = "MERGED",
|
|
64043
64170
|
NotSet = "NOT_SET",
|
|
64044
64171
|
Open = "OPEN",
|
|
64172
|
+
Queued = "QUEUED",
|
|
64045
64173
|
Unknown = "UNKNOWN"
|
|
64046
64174
|
}
|
|
64047
64175
|
export declare type GraphStoreProjectAssociatedPrPullRequestStatusFilterInput = {
|
|
@@ -75895,6 +76023,7 @@ export declare enum GraphStoreSprintAssociatedPrPullRequestStatus {
|
|
|
75895
76023
|
Merged = "MERGED",
|
|
75896
76024
|
NotSet = "NOT_SET",
|
|
75897
76025
|
Open = "OPEN",
|
|
76026
|
+
Queued = "QUEUED",
|
|
75898
76027
|
Unknown = "UNKNOWN"
|
|
75899
76028
|
}
|
|
75900
76029
|
export declare type GraphStoreSprintAssociatedPrPullRequestStatusFilterInput = {
|
|
@@ -84652,6 +84781,7 @@ export declare enum GraphStoreV2JiraSpaceLinksExternalPullRequestPullRequestStat
|
|
|
84652
84781
|
Merged = "MERGED",
|
|
84653
84782
|
NotSet = "NOT_SET",
|
|
84654
84783
|
Open = "OPEN",
|
|
84784
|
+
Queued = "QUEUED",
|
|
84655
84785
|
Unknown = "UNKNOWN"
|
|
84656
84786
|
}
|
|
84657
84787
|
export declare type GraphStoreV2JiraSpaceLinksExternalPullRequestPullRequestStatusFilterInput = {
|
|
@@ -85002,6 +85132,7 @@ export declare enum GraphStoreV2JiraSprintHasExternalPullRequestPullRequestStatu
|
|
|
85002
85132
|
Merged = "MERGED",
|
|
85003
85133
|
NotSet = "NOT_SET",
|
|
85004
85134
|
Open = "OPEN",
|
|
85135
|
+
Queued = "QUEUED",
|
|
85005
85136
|
Unknown = "UNKNOWN"
|
|
85006
85137
|
}
|
|
85007
85138
|
export declare type GraphStoreV2JiraSprintHasExternalPullRequestPullRequestStatusFilterInput = {
|
|
@@ -104453,7 +104584,8 @@ export declare type JiraCommentItem = {
|
|
|
104453
104584
|
commentItem?: Maybe<JiraComment>;
|
|
104454
104585
|
};
|
|
104455
104586
|
export declare enum JiraCommentSortField {
|
|
104456
|
-
Created = "CREATED"
|
|
104587
|
+
Created = "CREATED",
|
|
104588
|
+
LatestActivity = "LATEST_ACTIVITY"
|
|
104457
104589
|
}
|
|
104458
104590
|
export declare type JiraCommentSortInput = {
|
|
104459
104591
|
field: JiraCommentSortField;
|
|
@@ -106868,6 +107000,10 @@ export declare type JiraFieldEdge = {
|
|
|
106868
107000
|
cursor?: Maybe<Scalars['String']['output']>;
|
|
106869
107001
|
node?: Maybe<JiraField>;
|
|
106870
107002
|
};
|
|
107003
|
+
export declare type JiraFieldForGlobalView = {
|
|
107004
|
+
__typename?: 'JiraFieldForGlobalView';
|
|
107005
|
+
id: Scalars['ID']['output'];
|
|
107006
|
+
};
|
|
106871
107007
|
export declare type JiraFieldFormatConfig = JiraNumberFieldFormatConfig;
|
|
106872
107008
|
export declare type JiraFieldFormatConfigInput = {
|
|
106873
107009
|
jiraNumberFieldFormatConfigInput?: InputMaybe<JiraNumberFieldFormatConfigInput>;
|
|
@@ -108604,6 +108740,7 @@ export declare type JiraIssue = HasMercuryProjectFields & JiraScenarioIssueLike
|
|
|
108604
108740
|
pinnedComments?: Maybe<JiraPinnedCommentsResponse>;
|
|
108605
108741
|
planScenarioValues?: Maybe<JiraScenarioIssueValues>;
|
|
108606
108742
|
postIncidentReviewLinks?: Maybe<GraphIncidentAssociatedPostIncidentReviewLinkRelationshipConnection>;
|
|
108743
|
+
priority?: Maybe<JiraPriority>;
|
|
108607
108744
|
priorityField?: Maybe<JiraPriorityField>;
|
|
108608
108745
|
projectField?: Maybe<JiraProjectField>;
|
|
108609
108746
|
projectRoleCommentVisibilities?: Maybe<JiraRoleConnection>;
|
|
@@ -115300,6 +115437,10 @@ export declare type JiraPlaybooksSortInput = {
|
|
|
115300
115437
|
by: JiraPlaybooksSortBy;
|
|
115301
115438
|
order?: SortDirection;
|
|
115302
115439
|
};
|
|
115440
|
+
export declare type JiraPolarisGlobalViewFields = {
|
|
115441
|
+
__typename?: 'JiraPolarisGlobalViewFields';
|
|
115442
|
+
fields: Array<JiraFieldForGlobalView>;
|
|
115443
|
+
};
|
|
115303
115444
|
export declare type JiraPostIncidentReviewLink = Node & {
|
|
115304
115445
|
__typename?: 'JiraPostIncidentReviewLink';
|
|
115305
115446
|
id: Scalars['ID']['output'];
|
|
@@ -116575,6 +116716,7 @@ export declare type JiraQuery = {
|
|
|
116575
116716
|
jiraServiceManagementRequestTypeCategoriesByProject?: Maybe<JiraServiceManagementRequestTypeCategoryConnection>;
|
|
116576
116717
|
jiraServiceManagementSlaIssue?: Maybe<JiraServiceManagementSlaIssueResult>;
|
|
116577
116718
|
jpdDeliveryIssueLinkTypeId?: Maybe<Scalars['ID']['output']>;
|
|
116719
|
+
jpdGlobalViewFields?: Maybe<JiraPolarisGlobalViewFields>;
|
|
116578
116720
|
jqlBuilder?: Maybe<JiraJqlBuilder>;
|
|
116579
116721
|
jsmProjectTeamType?: Maybe<JiraServiceManagementProjectTeamType>;
|
|
116580
116722
|
jsmWorkflowTemplates?: Maybe<JiraServiceManagementWorkflowTemplatesMetadataConnection>;
|
|
@@ -117352,6 +117494,9 @@ export declare type JiraQueryJiraServiceManagementSlaIssueArgs = {
|
|
|
117352
117494
|
export declare type JiraQueryJpdDeliveryIssueLinkTypeIdArgs = {
|
|
117353
117495
|
cloudId: Scalars['ID']['input'];
|
|
117354
117496
|
};
|
|
117497
|
+
export declare type JiraQueryJpdGlobalViewFieldsArgs = {
|
|
117498
|
+
cloudId: Scalars['ID']['input'];
|
|
117499
|
+
};
|
|
117355
117500
|
export declare type JiraQueryJqlBuilderArgs = {
|
|
117356
117501
|
cloudId: Scalars['ID']['input'];
|
|
117357
117502
|
};
|
|
@@ -126650,6 +126795,7 @@ export declare type KitsuneFeedback = Node & {
|
|
|
126650
126795
|
id: Scalars['ID']['output'];
|
|
126651
126796
|
reporter?: Maybe<User>;
|
|
126652
126797
|
reporterId?: Maybe<Scalars['ID']['output']>;
|
|
126798
|
+
snippets: KitsuneSnippetConnection;
|
|
126653
126799
|
source: KitsuneSource;
|
|
126654
126800
|
sourceCategory: KitsuneSourceCategory;
|
|
126655
126801
|
summary?: Maybe<KitsuneSummary>;
|
|
@@ -126663,6 +126809,12 @@ export declare type KitsuneFeedbackChunksArgs = {
|
|
|
126663
126809
|
last?: InputMaybe<Scalars['Int']['input']>;
|
|
126664
126810
|
pagination?: InputMaybe<KitsunePaginationInput>;
|
|
126665
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
|
+
};
|
|
126666
126818
|
export declare type KitsuneFeedbackConnection = KitsuneConnection & {
|
|
126667
126819
|
__typename?: 'KitsuneFeedbackConnection';
|
|
126668
126820
|
edges: Array<KitsuneFeedbackEdge>;
|
|
@@ -126753,9 +126905,16 @@ export declare type KitsuneInsight = Node & {
|
|
|
126753
126905
|
creator?: Maybe<User>;
|
|
126754
126906
|
creatorId?: Maybe<Scalars['ID']['output']>;
|
|
126755
126907
|
id: Scalars['ID']['output'];
|
|
126908
|
+
snippets: KitsuneSnippetConnection;
|
|
126756
126909
|
summary?: Maybe<KitsuneSummary>;
|
|
126757
126910
|
title: Scalars['String']['output'];
|
|
126758
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
|
+
};
|
|
126759
126918
|
export declare enum KitsuneLogicalOperator {
|
|
126760
126919
|
And = "AND",
|
|
126761
126920
|
Or = "OR"
|
|
@@ -126802,6 +126961,27 @@ export declare type KitsuneSectionViewsArgs = {
|
|
|
126802
126961
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
126803
126962
|
last?: InputMaybe<Scalars['Int']['input']>;
|
|
126804
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
|
+
};
|
|
126805
126985
|
export declare type KitsuneSource = {
|
|
126806
126986
|
__typename?: 'KitsuneSource';
|
|
126807
126987
|
sourceCategory: KitsuneSourceCategory;
|
|
@@ -137952,6 +138132,7 @@ export declare type Mutation = {
|
|
|
137952
138132
|
avp_updateFilterExpression?: Maybe<AvpUpdateFilterExpressionPayload>;
|
|
137953
138133
|
avp_updateVariable?: Maybe<AvpUpdateVariablePayload>;
|
|
137954
138134
|
avpanalytics_createModel?: Maybe<AvpAnalyticsCreateModelPayload>;
|
|
138135
|
+
avpanalytics_updateModel?: Maybe<AvpAnalyticsUpdateModelPayload>;
|
|
137955
138136
|
blockService_batchCreateBlocks?: Maybe<BlockServiceBatchRetrieveBlocksPayload>;
|
|
137956
138137
|
blockService_batchDeleteBlocks?: Maybe<BlockServiceBatchRetrieveBlocksPayload>;
|
|
137957
138138
|
blockService_batchUpdateBlocks?: Maybe<BlockServiceBatchRetrieveBlocksPayload>;
|
|
@@ -138519,6 +138700,7 @@ export declare type Mutation = {
|
|
|
138519
138700
|
kitsune_createInsight?: Maybe<KitsuneInsight>;
|
|
138520
138701
|
kitsune_createOrganization?: Maybe<KitsuneOrganization>;
|
|
138521
138702
|
kitsune_createSection?: Maybe<KitsuneSection>;
|
|
138703
|
+
kitsune_createSnippet?: Maybe<KitsuneSnippet>;
|
|
138522
138704
|
kitsune_createSpace?: Maybe<KitsuneSpace>;
|
|
138523
138705
|
kitsune_createView?: Maybe<KitsuneView>;
|
|
138524
138706
|
kitsune_generateFeedbackSummary?: Maybe<KitsuneFeedback>;
|
|
@@ -138527,11 +138709,12 @@ export declare type Mutation = {
|
|
|
138527
138709
|
kitsune_removeFeedback?: Maybe<KitsuneDeletedRecord>;
|
|
138528
138710
|
kitsune_removeInsight?: Maybe<KitsuneDeletedRecord>;
|
|
138529
138711
|
kitsune_removeSection?: Maybe<KitsuneDeletedRecord>;
|
|
138712
|
+
kitsune_removeSnippet?: Maybe<KitsuneDeletedRecord>;
|
|
138530
138713
|
kitsune_removeView?: Maybe<KitsuneDeletedRecord>;
|
|
138531
|
-
kitsune_suggestSnippets?: Maybe<Scalars['Boolean']['output']>;
|
|
138532
138714
|
kitsune_updateFeedback?: Maybe<KitsuneFeedback>;
|
|
138533
138715
|
kitsune_updateInsight?: Maybe<KitsuneInsight>;
|
|
138534
138716
|
kitsune_updateSection?: Maybe<KitsuneSection>;
|
|
138717
|
+
kitsune_updateSnippet?: Maybe<KitsuneSnippet>;
|
|
138535
138718
|
kitsune_updateSpace?: Maybe<KitsuneSpace>;
|
|
138536
138719
|
kitsune_updateView?: Maybe<KitsuneView>;
|
|
138537
138720
|
knowledgeBase?: Maybe<KnowledgeBaseMutationApi>;
|
|
@@ -139638,6 +139821,10 @@ export declare type MutationAvpanalytics_CreateModelArgs = {
|
|
|
139638
139821
|
cloudId: Scalars['ID']['input'];
|
|
139639
139822
|
input?: InputMaybe<AvpAnalyticsCreateModelInput>;
|
|
139640
139823
|
};
|
|
139824
|
+
export declare type MutationAvpanalytics_UpdateModelArgs = {
|
|
139825
|
+
cloudId: Scalars['ID']['input'];
|
|
139826
|
+
input?: InputMaybe<AvpAnalyticsUpdateModelInput>;
|
|
139827
|
+
};
|
|
139641
139828
|
export declare type MutationBlockService_BatchCreateBlocksArgs = {
|
|
139642
139829
|
input: BlockServiceBatchCreateBlocksInput;
|
|
139643
139830
|
};
|
|
@@ -139757,19 +139944,15 @@ export declare type MutationClearRestrictionsForFreeArgs = {
|
|
|
139757
139944
|
};
|
|
139758
139945
|
export declare type MutationCloudify_AddRecommendationArgs = {
|
|
139759
139946
|
input: CloudifyRecommendationInput;
|
|
139760
|
-
projectId: Scalars['ID']['input'];
|
|
139761
|
-
siteId: Scalars['ID']['input'];
|
|
139762
139947
|
};
|
|
139763
139948
|
export declare type MutationCloudify_DeleteRecommendationsArgs = {
|
|
139764
|
-
|
|
139765
|
-
siteId: Scalars['ID']['input'];
|
|
139949
|
+
target: CloudifyTargetInput;
|
|
139766
139950
|
};
|
|
139767
139951
|
export declare type MutationCloudify_EnactRecommendationArgs = {
|
|
139768
139952
|
recommendationId: Scalars['ID']['input'];
|
|
139769
139953
|
};
|
|
139770
139954
|
export declare type MutationCloudify_RequestAnalysisArgs = {
|
|
139771
|
-
|
|
139772
|
-
siteId: Scalars['ID']['input'];
|
|
139955
|
+
target: CloudifyTargetInput;
|
|
139773
139956
|
};
|
|
139774
139957
|
export declare type MutationCommerceExp_ApprovalDeskArgs = {
|
|
139775
139958
|
input: CommerceExpApprovalDeskTenantInput;
|
|
@@ -141566,6 +141749,12 @@ export declare type MutationKitsune_CreateSectionArgs = {
|
|
|
141566
141749
|
name: Scalars['String']['input'];
|
|
141567
141750
|
spaceAri: Scalars['ID']['input'];
|
|
141568
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
|
+
};
|
|
141569
141758
|
export declare type MutationKitsune_CreateSpaceArgs = {
|
|
141570
141759
|
name: Scalars['String']['input'];
|
|
141571
141760
|
workspaceAri: Scalars['ID']['input'];
|
|
@@ -141598,13 +141787,12 @@ export declare type MutationKitsune_RemoveInsightArgs = {
|
|
|
141598
141787
|
export declare type MutationKitsune_RemoveSectionArgs = {
|
|
141599
141788
|
sectionAri: Scalars['ID']['input'];
|
|
141600
141789
|
};
|
|
141790
|
+
export declare type MutationKitsune_RemoveSnippetArgs = {
|
|
141791
|
+
id: Scalars['ID']['input'];
|
|
141792
|
+
};
|
|
141601
141793
|
export declare type MutationKitsune_RemoveViewArgs = {
|
|
141602
141794
|
viewAri: Scalars['ID']['input'];
|
|
141603
141795
|
};
|
|
141604
|
-
export declare type MutationKitsune_SuggestSnippetsArgs = {
|
|
141605
|
-
title: Scalars['String']['input'];
|
|
141606
|
-
workspaceAri: Scalars['ID']['input'];
|
|
141607
|
-
};
|
|
141608
141796
|
export declare type MutationKitsune_UpdateFeedbackArgs = {
|
|
141609
141797
|
content?: InputMaybe<Scalars['KitsuneADF']['input']>;
|
|
141610
141798
|
customerId?: InputMaybe<Scalars['ID']['input']>;
|
|
@@ -141624,6 +141812,11 @@ export declare type MutationKitsune_UpdateSectionArgs = {
|
|
|
141624
141812
|
name?: InputMaybe<Scalars['String']['input']>;
|
|
141625
141813
|
sectionAri: Scalars['ID']['input'];
|
|
141626
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
|
+
};
|
|
141627
141820
|
export declare type MutationKitsune_UpdateSpaceArgs = {
|
|
141628
141821
|
description?: InputMaybe<Scalars['String']['input']>;
|
|
141629
141822
|
id: Scalars['ID']['input'];
|
|
@@ -145001,9 +145194,15 @@ export declare type PolarisTreeHierarchyItem = {
|
|
|
145001
145194
|
__typename?: 'PolarisTreeHierarchyItem';
|
|
145002
145195
|
fields?: Maybe<Array<PolarisIdeaField>>;
|
|
145003
145196
|
filter?: Maybe<Array<PolarisViewFilter>>;
|
|
145004
|
-
items?: Maybe<Array<
|
|
145197
|
+
items?: Maybe<Array<PolarisTreeHierarchyItemEntry>>;
|
|
145005
145198
|
type?: Maybe<PolarisTreeHierarchyType>;
|
|
145006
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
|
+
};
|
|
145007
145206
|
export declare enum PolarisTreeHierarchyType {
|
|
145008
145207
|
Field = "FIELD",
|
|
145009
145208
|
Issue = "ISSUE",
|
|
@@ -145882,6 +146081,7 @@ export declare type Query = {
|
|
|
145882
146081
|
assetsDM_transformedData?: Maybe<AssetsDmTransformedDataResponse>;
|
|
145883
146082
|
assetsVertical_attributeValues?: Maybe<AssetsVerticalAttributeValuesResult>;
|
|
145884
146083
|
assetsVertical_bundle: AssetsVerticalBundle;
|
|
146084
|
+
assetsVertical_countByStatus?: Maybe<AssetsVerticalCountByStatusResult>;
|
|
145885
146085
|
assetsVertical_insights?: Maybe<AssetsVerticalInsights>;
|
|
145886
146086
|
assets_objectById?: Maybe<AssetsObjectNode>;
|
|
145887
146087
|
assets_objectTypeAttributesBySchemaIds?: Maybe<Array<Maybe<AssetsObjectTypeAttribute>>>;
|
|
@@ -146017,6 +146217,8 @@ export declare type Query = {
|
|
|
146017
146217
|
confluence_calendarTimezones?: Maybe<ConfluenceCalendarTimezones>;
|
|
146018
146218
|
confluence_calendarsByCriteria?: Maybe<ConfluenceCalendarConnection>;
|
|
146019
146219
|
confluence_categorizeNbmChains?: Maybe<ConfluenceCategorizeNbmChainsResult>;
|
|
146220
|
+
confluence_classificationLevelsForContent?: Maybe<Array<ContentDataClassificationLevel>>;
|
|
146221
|
+
confluence_classificationLevelsForSpaceDefault?: Maybe<Array<ContentDataClassificationLevel>>;
|
|
146020
146222
|
confluence_commentMediaSession?: Maybe<ContentMediaSession>;
|
|
146021
146223
|
confluence_contentAISummaries?: Maybe<Array<Maybe<ConfluenceContentAiSummaryResponse>>>;
|
|
146022
146224
|
confluence_contentAccessRequestByStatus?: Maybe<ConfluenceContentAccessRequestConnection>;
|
|
@@ -146337,6 +146539,7 @@ export declare type Query = {
|
|
|
146337
146539
|
graphIntegration_mcpAdminManagementMcpTools?: Maybe<GraphIntegrationMcpAdminManagementMcpToolConnection>;
|
|
146338
146540
|
graphIntegration_mcpServers?: Maybe<Array<Maybe<GraphIntegrationMcpServerNode>>>;
|
|
146339
146541
|
graphIntegration_mcpTools?: Maybe<Array<Maybe<GraphIntegrationMcpToolNode>>>;
|
|
146542
|
+
graphIntegration_skill?: Maybe<GraphIntegrationSkill>;
|
|
146340
146543
|
graphIntegration_twgCapabilityContainer?: Maybe<GraphIntegrationTwgCapabilityContainer>;
|
|
146341
146544
|
graphIntegration_twgCapabilityContainersInContext?: Maybe<GraphIntegrationTwgCapabilityContainerConnection>;
|
|
146342
146545
|
graphIntegration_twgPlatformCapabilityGlobalAdminSettings?: Maybe<GraphIntegrationTwgPlatformCapabilityGlobalAdminSettings>;
|
|
@@ -146474,6 +146677,7 @@ export declare type Query = {
|
|
|
146474
146677
|
kitsune_node?: Maybe<KitsuneNode>;
|
|
146475
146678
|
kitsune_searchFeedback?: Maybe<KitsuneFeedbackConnection>;
|
|
146476
146679
|
kitsune_sections?: Maybe<Array<Maybe<KitsuneSection>>>;
|
|
146680
|
+
kitsune_snippets?: Maybe<Array<Maybe<KitsuneSnippet>>>;
|
|
146477
146681
|
kitsune_spaces?: Maybe<Array<Maybe<KitsuneSpace>>>;
|
|
146478
146682
|
kitsune_spacesForWorkspace?: Maybe<KitsuneSpaceConnection>;
|
|
146479
146683
|
kitsune_views?: Maybe<Array<Maybe<KitsuneView>>>;
|
|
@@ -146642,6 +146846,8 @@ export declare type Query = {
|
|
|
146642
146846
|
radar_positionsByAris?: Maybe<Array<RadarPosition>>;
|
|
146643
146847
|
radar_positionsByEntitySearch?: Maybe<RadarPositionsByEntityConnection>;
|
|
146644
146848
|
radar_positionsSearch?: Maybe<RadarPositionConnection>;
|
|
146849
|
+
radar_skillByAri?: Maybe<RadarSkill>;
|
|
146850
|
+
radar_skillsByAris?: Maybe<Array<RadarSkill>>;
|
|
146645
146851
|
radar_viewByAri?: Maybe<RadarView>;
|
|
146646
146852
|
radar_viewsByAris?: Maybe<Array<RadarView>>;
|
|
146647
146853
|
radar_viewsSearch?: Maybe<RadarViewConnection>;
|
|
@@ -147968,6 +148174,10 @@ export declare type QueryAssetsVertical_BundleArgs = {
|
|
|
147968
148174
|
cloudId: Scalars['ID']['input'];
|
|
147969
148175
|
type: AssetsVerticalBundleType;
|
|
147970
148176
|
};
|
|
148177
|
+
export declare type QueryAssetsVertical_CountByStatusArgs = {
|
|
148178
|
+
cloudId: Scalars['ID']['input'];
|
|
148179
|
+
input: AssetsVerticalCountByStatusInput;
|
|
148180
|
+
};
|
|
147971
148181
|
export declare type QueryAssetsVertical_InsightsArgs = {
|
|
147972
148182
|
cloudId: Scalars['ID']['input'];
|
|
147973
148183
|
jobId?: InputMaybe<Scalars['ID']['input']>;
|
|
@@ -148287,13 +148497,10 @@ export declare type QueryClassificationLevelArgs = {
|
|
|
148287
148497
|
id: Scalars['String']['input'];
|
|
148288
148498
|
};
|
|
148289
148499
|
export declare type QueryClassificationLevelsArgs = {
|
|
148290
|
-
contentId?: InputMaybe<Scalars['ID']['input']>;
|
|
148291
148500
|
reclassificationFilterScope?: InputMaybe<ReclassificationFilterScope>;
|
|
148292
|
-
spaceKey?: InputMaybe<Scalars['String']['input']>;
|
|
148293
148501
|
};
|
|
148294
148502
|
export declare type QueryCloudify_AnalysisExecutionsArgs = {
|
|
148295
|
-
|
|
148296
|
-
siteId: Scalars['ID']['input'];
|
|
148503
|
+
target: CloudifyTargetInput;
|
|
148297
148504
|
};
|
|
148298
148505
|
export declare type QueryCloudify_EnactmentArgs = {
|
|
148299
148506
|
enactmentId: Scalars['ID']['input'];
|
|
@@ -148305,8 +148512,7 @@ export declare type QueryCloudify_GreetingArgs = {
|
|
|
148305
148512
|
name?: InputMaybe<Scalars['String']['input']>;
|
|
148306
148513
|
};
|
|
148307
148514
|
export declare type QueryCloudify_RecommendationsArgs = {
|
|
148308
|
-
|
|
148309
|
-
siteId: Scalars['ID']['input'];
|
|
148515
|
+
filter: CloudifyRecommendationFilterInput;
|
|
148310
148516
|
};
|
|
148311
148517
|
export declare type QueryCodeInJiraArgs = {
|
|
148312
148518
|
cloudId: Scalars['ID']['input'];
|
|
@@ -148465,6 +148671,13 @@ export declare type QueryConfluence_CategorizeNbmChainsArgs = {
|
|
|
148465
148671
|
cloudId: Scalars['ID']['input'];
|
|
148466
148672
|
nbmChains: Array<InputMaybe<Array<InputMaybe<Scalars['String']['input']>>>>;
|
|
148467
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
|
+
};
|
|
148468
148681
|
export declare type QueryConfluence_CommentMediaSessionArgs = {
|
|
148469
148682
|
cloudId: Scalars['ID']['input'];
|
|
148470
148683
|
contentId: Scalars['ID']['input'];
|
|
@@ -148874,6 +149087,7 @@ export declare type QueryConfluence_SmartSpaceOverviewArgs = {
|
|
|
148874
149087
|
};
|
|
148875
149088
|
export declare type QueryConfluence_SpaceMediaSessionArgs = {
|
|
148876
149089
|
cloudId: Scalars['ID']['input'];
|
|
149090
|
+
contentId?: InputMaybe<Scalars['String']['input']>;
|
|
148877
149091
|
contentType: Scalars['String']['input'];
|
|
148878
149092
|
spaceKey: Scalars['String']['input'];
|
|
148879
149093
|
};
|
|
@@ -149946,6 +150160,10 @@ export declare type QueryGraphIntegration_McpServersArgs = {
|
|
|
149946
150160
|
export declare type QueryGraphIntegration_McpToolsArgs = {
|
|
149947
150161
|
ids: Array<Scalars['ID']['input']>;
|
|
149948
150162
|
};
|
|
150163
|
+
export declare type QueryGraphIntegration_SkillArgs = {
|
|
150164
|
+
contextAri: Scalars['ID']['input'];
|
|
150165
|
+
skillAri: Scalars['ID']['input'];
|
|
150166
|
+
};
|
|
149949
150167
|
export declare type QueryGraphIntegration_TwgCapabilityContainerArgs = {
|
|
149950
150168
|
contextAri: Scalars['ID']['input'];
|
|
149951
150169
|
id: Scalars['String']['input'];
|
|
@@ -150441,6 +150659,9 @@ export declare type QueryKitsune_SearchFeedbackArgs = {
|
|
|
150441
150659
|
export declare type QueryKitsune_SectionsArgs = {
|
|
150442
150660
|
ids: Array<Scalars['ID']['input']>;
|
|
150443
150661
|
};
|
|
150662
|
+
export declare type QueryKitsune_SnippetsArgs = {
|
|
150663
|
+
ids: Array<Scalars['ID']['input']>;
|
|
150664
|
+
};
|
|
150444
150665
|
export declare type QueryKitsune_SpacesArgs = {
|
|
150445
150666
|
ids: Array<Scalars['ID']['input']>;
|
|
150446
150667
|
};
|
|
@@ -151009,6 +151230,12 @@ export declare type QueryRadar_PositionsSearchArgs = {
|
|
|
151009
151230
|
last?: InputMaybe<Scalars['Int']['input']>;
|
|
151010
151231
|
rql?: InputMaybe<Scalars['String']['input']>;
|
|
151011
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
|
+
};
|
|
151012
151239
|
export declare type QueryRadar_ViewByAriArgs = {
|
|
151013
151240
|
id: Scalars['ID']['input'];
|
|
151014
151241
|
};
|
|
@@ -152241,7 +152468,7 @@ export declare type RadarMutationResponse = {
|
|
|
152241
152468
|
__typename?: 'RadarMutationResponse';
|
|
152242
152469
|
success?: Maybe<Scalars['Boolean']['output']>;
|
|
152243
152470
|
};
|
|
152244
|
-
export declare type RadarNode = RadarPosition | RadarView | RadarWorker;
|
|
152471
|
+
export declare type RadarNode = RadarPosition | RadarSkill | RadarView | RadarWorker;
|
|
152245
152472
|
export declare type RadarNonNumericFieldDefinition = RadarFieldDefinition & {
|
|
152246
152473
|
__typename?: 'RadarNonNumericFieldDefinition';
|
|
152247
152474
|
defaultOrder?: Maybe<Scalars['Int']['output']>;
|
|
@@ -152398,6 +152625,14 @@ export declare type RadarSettings = {
|
|
|
152398
152625
|
__typename?: 'RadarSettings';
|
|
152399
152626
|
permissions: RadarPermissions;
|
|
152400
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
|
+
};
|
|
152401
152636
|
export declare type RadarStaticStringFilterOptions = RadarFilterOptions & {
|
|
152402
152637
|
__typename?: 'RadarStaticStringFilterOptions';
|
|
152403
152638
|
functionOptions: Array<RadarFunction>;
|
|
@@ -155113,7 +155348,6 @@ export declare type SearchResultGraphDocument = SearchL2FeatureProvider & Search
|
|
|
155113
155348
|
permissionLevel?: Maybe<Scalars['String']['output']>;
|
|
155114
155349
|
providerId?: Maybe<Scalars['String']['output']>;
|
|
155115
155350
|
scoreL2Ranker?: Maybe<Scalars['Float']['output']>;
|
|
155116
|
-
status?: Maybe<Scalars['String']['output']>;
|
|
155117
155351
|
subtype?: Maybe<Scalars['String']['output']>;
|
|
155118
155352
|
title: Scalars['String']['output'];
|
|
155119
155353
|
type: SearchResultType;
|
|
@@ -182988,6 +183222,7 @@ export declare type TownsquareProjectsRemoveJiraWorkItemLinkPayload = {
|
|
|
182988
183222
|
};
|
|
182989
183223
|
export declare type TownsquareProjectsRemoveMemberInput = {
|
|
182990
183224
|
projectId: Scalars['ID']['input'];
|
|
183225
|
+
revokeAccess?: InputMaybe<Scalars['Boolean']['input']>;
|
|
182991
183226
|
userId: Scalars['ID']['input'];
|
|
182992
183227
|
};
|
|
182993
183228
|
export declare type TownsquareProjectsRemoveMemberPayload = {
|
|
@@ -183010,6 +183245,7 @@ export declare type TownsquareProjectsRemoveNumericCustomFieldValuePayload = {
|
|
|
183010
183245
|
};
|
|
183011
183246
|
export declare type TownsquareProjectsRemoveTeamContributorsInput = {
|
|
183012
183247
|
projectId: Scalars['ID']['input'];
|
|
183248
|
+
revokeAccess?: InputMaybe<Scalars['Boolean']['input']>;
|
|
183013
183249
|
teamId: Scalars['ID']['input'];
|
|
183014
183250
|
};
|
|
183015
183251
|
export declare type TownsquareProjectsRemoveTeamContributorsPayload = {
|
|
@@ -184610,6 +184846,15 @@ export declare type TrelloBoardWorkspaceUpdated = {
|
|
|
184610
184846
|
id?: Maybe<Scalars['ID']['output']>;
|
|
184611
184847
|
objectId?: Maybe<Scalars['ID']['output']>;
|
|
184612
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
|
+
};
|
|
184613
184858
|
export declare type TrelloCard = Node & TrelloBaseCard & {
|
|
184614
184859
|
__typename?: 'TrelloCard';
|
|
184615
184860
|
actions?: Maybe<TrelloCardActionConnection>;
|
|
@@ -185161,6 +185406,15 @@ export declare type TrelloChecklistUpdated = {
|
|
|
185161
185406
|
objectId: Scalars['ID']['output'];
|
|
185162
185407
|
position?: Maybe<Scalars['Float']['output']>;
|
|
185163
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
|
+
};
|
|
185164
185418
|
export declare type TrelloCommentCardAction = TrelloAction & TrelloCardActionData & {
|
|
185165
185419
|
__typename?: 'TrelloCommentCardAction';
|
|
185166
185420
|
appCreator?: Maybe<TrelloAppCreator>;
|
|
@@ -186381,6 +186635,8 @@ export declare type TrelloMutationApi = {
|
|
|
186381
186635
|
archiveCard?: Maybe<TrelloArchiveCardPayload>;
|
|
186382
186636
|
assignCardToPlannerCalendarEvent?: Maybe<TrelloAssignCardToPlannerCalendarEventPayload>;
|
|
186383
186637
|
assignCardsToPlannerCalendarEvent?: Maybe<TrelloAssignCardsToPlannerCalendarEventPayload>;
|
|
186638
|
+
bulkDeleteList?: Maybe<TrelloBulkDeleteListPayload>;
|
|
186639
|
+
closeBoard?: Maybe<TrelloCloseBoardPayload>;
|
|
186384
186640
|
createApplication?: Maybe<TrelloCreateApplicationPayload>;
|
|
186385
186641
|
createBoardWithAi?: Maybe<TrelloCreateBoardWithAiPayload>;
|
|
186386
186642
|
createCard?: Maybe<TrelloCreateCardPayload>;
|
|
@@ -186424,6 +186680,7 @@ export declare type TrelloMutationApi = {
|
|
|
186424
186680
|
unwatchCard?: Maybe<TrelloWatchCardPayload>;
|
|
186425
186681
|
updateAiRule?: Maybe<TrelloUpdateAiRulePayload>;
|
|
186426
186682
|
updateBoardBackground?: Maybe<TrelloUpdateBoardBackgroundPayload>;
|
|
186683
|
+
updateBoardDescription?: Maybe<TrelloUpdateBoardDescriptionPayload>;
|
|
186427
186684
|
updateBoardIsTemplate?: Maybe<TrelloUpdateBoardIsTemplatePayload>;
|
|
186428
186685
|
updateBoardName?: Maybe<TrelloUpdateBoardNamePayload>;
|
|
186429
186686
|
updateBoardStarPosition?: Maybe<TrelloUpdateBoardStarPositionPayload>;
|
|
@@ -186475,6 +186732,12 @@ export declare type TrelloMutationApiAssignCardToPlannerCalendarEventArgs = {
|
|
|
186475
186732
|
export declare type TrelloMutationApiAssignCardsToPlannerCalendarEventArgs = {
|
|
186476
186733
|
input: TrelloAssignCardsToPlannerCalendarEventInput;
|
|
186477
186734
|
};
|
|
186735
|
+
export declare type TrelloMutationApiBulkDeleteListArgs = {
|
|
186736
|
+
input: TrelloBulkDeleteListInput;
|
|
186737
|
+
};
|
|
186738
|
+
export declare type TrelloMutationApiCloseBoardArgs = {
|
|
186739
|
+
input: TrelloCloseBoardInput;
|
|
186740
|
+
};
|
|
186478
186741
|
export declare type TrelloMutationApiCreateApplicationArgs = {
|
|
186479
186742
|
input: TrelloCreateApplicationInput;
|
|
186480
186743
|
};
|
|
@@ -186598,6 +186861,9 @@ export declare type TrelloMutationApiUpdateAiRuleArgs = {
|
|
|
186598
186861
|
export declare type TrelloMutationApiUpdateBoardBackgroundArgs = {
|
|
186599
186862
|
input: TrelloUpdateBoardBackgroundInput;
|
|
186600
186863
|
};
|
|
186864
|
+
export declare type TrelloMutationApiUpdateBoardDescriptionArgs = {
|
|
186865
|
+
input: TrelloUpdateBoardDescriptionInput;
|
|
186866
|
+
};
|
|
186601
186867
|
export declare type TrelloMutationApiUpdateBoardIsTemplateArgs = {
|
|
186602
186868
|
input: TrelloUpdateBoardIsTemplateInput;
|
|
186603
186869
|
};
|
|
@@ -187166,6 +187432,7 @@ export declare type TrelloPlannerCardsWithDueDatesUpdatedFilter = {
|
|
|
187166
187432
|
export declare type TrelloPlannerDueDateCardsSettings = {
|
|
187167
187433
|
__typename?: 'TrelloPlannerDueDateCardsSettings';
|
|
187168
187434
|
assignedToMe?: Maybe<Scalars['Boolean']['output']>;
|
|
187435
|
+
soloBoards?: Maybe<Scalars['Boolean']['output']>;
|
|
187169
187436
|
};
|
|
187170
187437
|
export declare type TrelloPlannerEventCardConnection = {
|
|
187171
187438
|
__typename?: 'TrelloPlannerEventCardConnection';
|
|
@@ -188058,6 +188325,16 @@ export declare type TrelloUpdateBoardBackgroundPayload = Payload & {
|
|
|
188058
188325
|
prefs?: Maybe<TrelloBoardPrefs>;
|
|
188059
188326
|
success: Scalars['Boolean']['output'];
|
|
188060
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
|
+
};
|
|
188061
188338
|
export declare type TrelloUpdateBoardIsTemplateInput = {
|
|
188062
188339
|
boardId: Scalars['ID']['input'];
|
|
188063
188340
|
value: Scalars['Boolean']['input'];
|
|
@@ -188070,7 +188347,7 @@ export declare type TrelloUpdateBoardIsTemplatePayload = Payload & {
|
|
|
188070
188347
|
};
|
|
188071
188348
|
export declare type TrelloUpdateBoardNameInput = {
|
|
188072
188349
|
boardId: Scalars['ID']['input'];
|
|
188073
|
-
name
|
|
188350
|
+
name: Scalars['String']['input'];
|
|
188074
188351
|
};
|
|
188075
188352
|
export declare type TrelloUpdateBoardNamePayload = Payload & {
|
|
188076
188353
|
__typename?: 'TrelloUpdateBoardNamePayload';
|
|
@@ -188473,6 +188750,7 @@ export declare enum TrelloWorkOverviewDashboardJobStatus {
|
|
|
188473
188750
|
Completed = "COMPLETED",
|
|
188474
188751
|
Creating = "CREATING",
|
|
188475
188752
|
Failed = "FAILED",
|
|
188753
|
+
Importing = "IMPORTING",
|
|
188476
188754
|
Pending = "PENDING"
|
|
188477
188755
|
}
|
|
188478
188756
|
export declare type TrelloWorkOverviewDashboardJobUpdated = {
|
|
@@ -188496,6 +188774,7 @@ export declare type TrelloWorkspace = Node & {
|
|
|
188496
188774
|
displayBoardCount?: Maybe<Scalars['Int']['output']>;
|
|
188497
188775
|
displayName?: Maybe<Scalars['String']['output']>;
|
|
188498
188776
|
enterprise?: Maybe<TrelloEnterprise>;
|
|
188777
|
+
entitlement?: Maybe<CcpEntitlement>;
|
|
188499
188778
|
id: Scalars['ID']['output'];
|
|
188500
188779
|
jwmLink?: Maybe<TrelloJwmWorkspaceLink>;
|
|
188501
188780
|
limits?: Maybe<TrelloWorkspaceLimits>;
|
|
@@ -190683,9 +190962,14 @@ export declare type UpdatePolarisTreeConfig = {
|
|
|
190683
190962
|
export declare type UpdatePolarisTreeHierarchyItem = {
|
|
190684
190963
|
fields?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
190685
190964
|
filter?: InputMaybe<Array<PolarisViewFilterInput>>;
|
|
190686
|
-
items?: InputMaybe<Array<
|
|
190965
|
+
items?: InputMaybe<Array<UpdatePolarisTreeHierarchyItemEntry>>;
|
|
190687
190966
|
type?: InputMaybe<PolarisTreeHierarchyType>;
|
|
190688
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
|
+
};
|
|
190689
190973
|
export declare type UpdatePolarisViewArrangementInfoPayload = Payload & {
|
|
190690
190974
|
__typename?: 'UpdatePolarisViewArrangementInfoPayload';
|
|
190691
190975
|
errors?: Maybe<Array<MutationError>>;
|