@forge/cli-shared 8.17.0-next.2 → 8.17.0-next.4
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 +385 -35
- package/out/graphql/graphql-types.d.ts.map +1 -1
- package/out/graphql/graphql-types.js +77 -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",
|
|
@@ -2369,14 +2389,8 @@ export declare type AdminAuditLogEventEdge = {
|
|
|
2369
2389
|
node: AdminAuditLogEvent;
|
|
2370
2390
|
};
|
|
2371
2391
|
export declare type AdminAuditLogEventExportInput = {
|
|
2372
|
-
|
|
2373
|
-
|
|
2374
|
-
endDate?: InputMaybe<Scalars['String']['input']>;
|
|
2375
|
-
ip?: InputMaybe<Scalars['String']['input']>;
|
|
2376
|
-
location?: InputMaybe<Scalars['String']['input']>;
|
|
2377
|
-
product?: InputMaybe<Scalars['String']['input']>;
|
|
2378
|
-
searchQuery?: InputMaybe<Scalars['String']['input']>;
|
|
2379
|
-
startDate?: InputMaybe<Scalars['String']['input']>;
|
|
2392
|
+
format?: InputMaybe<AdminAuditLogEventMessageFormat>;
|
|
2393
|
+
query: Scalars['String']['input'];
|
|
2380
2394
|
};
|
|
2381
2395
|
export declare type AdminAuditLogEventExportResponsePayload = Payload & {
|
|
2382
2396
|
__typename?: 'AdminAuditLogEventExportResponsePayload';
|
|
@@ -4983,6 +4997,10 @@ export declare type AgentWorkspaceAgentsPageInfo = {
|
|
|
4983
4997
|
startCursor?: Maybe<Scalars['String']['output']>;
|
|
4984
4998
|
totalAgents: Scalars['Int']['output'];
|
|
4985
4999
|
};
|
|
5000
|
+
export declare type AgentWorkspaceAppliedFilters = {
|
|
5001
|
+
__typename?: 'AgentWorkspaceAppliedFilters';
|
|
5002
|
+
agentIds?: Maybe<Array<Scalars['ID']['output']>>;
|
|
5003
|
+
};
|
|
4986
5004
|
export declare type AgentWorkspaceArchiveSkillInput = {
|
|
4987
5005
|
cloudId: Scalars['ID']['input'];
|
|
4988
5006
|
projectId?: InputMaybe<Scalars['ID']['input']>;
|
|
@@ -5012,6 +5030,7 @@ export declare type AgentWorkspaceAssignSkillPayload = {
|
|
|
5012
5030
|
export declare type AgentWorkspaceAvailabilityConnection = {
|
|
5013
5031
|
__typename?: 'AgentWorkspaceAvailabilityConnection';
|
|
5014
5032
|
edges: Array<AgentWorkspaceAvailabilityEdge>;
|
|
5033
|
+
initialFilters?: Maybe<AgentWorkspaceAppliedFilters>;
|
|
5015
5034
|
nodes: Array<AgentWorkspaceAgentAvailability>;
|
|
5016
5035
|
pageInfo: AgentWorkspaceAvailabilityPageInfo;
|
|
5017
5036
|
summary: AgentWorkspaceAvailabilitySummary;
|
|
@@ -5030,6 +5049,7 @@ export declare type AgentWorkspaceAvailabilityError = {
|
|
|
5030
5049
|
export declare type AgentWorkspaceAvailabilityInput = {
|
|
5031
5050
|
agentIds?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
5032
5051
|
cloudId: Scalars['ID']['input'];
|
|
5052
|
+
isInitialFetch?: InputMaybe<Scalars['Boolean']['input']>;
|
|
5033
5053
|
page?: InputMaybe<Scalars['Int']['input']>;
|
|
5034
5054
|
pageSize?: InputMaybe<Scalars['Int']['input']>;
|
|
5035
5055
|
projectId?: InputMaybe<Scalars['ID']['input']>;
|
|
@@ -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>>>;
|
|
@@ -15598,6 +15664,7 @@ export declare type CommerceExpCcpQuery = {
|
|
|
15598
15664
|
product?: Maybe<CommerceExpCcpProduct>;
|
|
15599
15665
|
products?: Maybe<Array<Maybe<CommerceExpCcpProduct>>>;
|
|
15600
15666
|
quote?: Maybe<CommerceExpCcpQuote>;
|
|
15667
|
+
quoteOperations?: Maybe<CommerceExpCcpQuoteOperations>;
|
|
15601
15668
|
testField?: Maybe<CommerceExpCommerceExpTestField>;
|
|
15602
15669
|
transactionAccount?: Maybe<CommerceExpCcpTransactionAccount>;
|
|
15603
15670
|
transactionAccounts?: Maybe<Array<Maybe<CommerceExpCcpTransactionAccount>>>;
|
|
@@ -15677,6 +15744,9 @@ export declare type CommerceExpCcpQueryProductsArgs = {
|
|
|
15677
15744
|
export declare type CommerceExpCcpQueryQuoteArgs = {
|
|
15678
15745
|
id: Scalars['ID']['input'];
|
|
15679
15746
|
};
|
|
15747
|
+
export declare type CommerceExpCcpQueryQuoteOperationsArgs = {
|
|
15748
|
+
quoteOperationsInput: CommerceExpQuoteOperationsInput;
|
|
15749
|
+
};
|
|
15680
15750
|
export declare type CommerceExpCcpQueryTransactionAccountArgs = {
|
|
15681
15751
|
id: Scalars['ID']['input'];
|
|
15682
15752
|
};
|
|
@@ -15744,6 +15814,14 @@ export declare type CommerceExpCcpQuoteLineItems3Args = {
|
|
|
15744
15814
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
15745
15815
|
last?: InputMaybe<Scalars['Int']['input']>;
|
|
15746
15816
|
};
|
|
15817
|
+
export declare type CommerceExpCcpQuoteOperations = {
|
|
15818
|
+
__typename?: 'CommerceExpCcpQuoteOperations';
|
|
15819
|
+
error?: Maybe<CommerceExpQuoteOperationError>;
|
|
15820
|
+
id: Scalars['ID']['output'];
|
|
15821
|
+
quoteId: Scalars['ID']['output'];
|
|
15822
|
+
requestedQuoteAction?: Maybe<CommerceExpRequestedQuoteAction>;
|
|
15823
|
+
status?: Maybe<CommerceExpQuoteOperationStatus>;
|
|
15824
|
+
};
|
|
15747
15825
|
export declare type CommerceExpCcpRelationshipFilter = {
|
|
15748
15826
|
relationshipType?: InputMaybe<Scalars['String']['input']>;
|
|
15749
15827
|
};
|
|
@@ -17897,6 +17975,20 @@ export declare enum CommerceExpQuoteLineItemSaleTransitionType {
|
|
|
17897
17975
|
Renew = "RENEW",
|
|
17898
17976
|
Upgrade = "UPGRADE"
|
|
17899
17977
|
}
|
|
17978
|
+
export declare type CommerceExpQuoteOperationError = {
|
|
17979
|
+
__typename?: 'CommerceExpQuoteOperationError';
|
|
17980
|
+
errorCode?: Maybe<Scalars['String']['output']>;
|
|
17981
|
+
message?: Maybe<Scalars['String']['output']>;
|
|
17982
|
+
};
|
|
17983
|
+
export declare enum CommerceExpQuoteOperationStatus {
|
|
17984
|
+
Failed = "FAILED",
|
|
17985
|
+
InProgress = "IN_PROGRESS",
|
|
17986
|
+
Success = "SUCCESS"
|
|
17987
|
+
}
|
|
17988
|
+
export declare type CommerceExpQuoteOperationsInput = {
|
|
17989
|
+
id: Scalars['ID']['input'];
|
|
17990
|
+
transactionAccountId: Scalars['ID']['input'];
|
|
17991
|
+
};
|
|
17900
17992
|
export declare enum CommerceExpQuoteStatus {
|
|
17901
17993
|
AcceptanceInProgress = "ACCEPTANCE_IN_PROGRESS",
|
|
17902
17994
|
Accepted = "ACCEPTED",
|
|
@@ -17992,6 +18084,17 @@ export declare type CommerceExpRemoveAdminPayload = CommerceExpMutationPayload &
|
|
|
17992
18084
|
errors?: Maybe<Array<MutationError>>;
|
|
17993
18085
|
success: Scalars['Boolean']['output'];
|
|
17994
18086
|
};
|
|
18087
|
+
export declare enum CommerceExpRequestedQuoteAction {
|
|
18088
|
+
CancelQuote = "CANCEL_QUOTE",
|
|
18089
|
+
CloneQuote = "CLONE_QUOTE",
|
|
18090
|
+
CreateOpenQuote = "CREATE_OPEN_QUOTE",
|
|
18091
|
+
CreateQuote = "CREATE_QUOTE",
|
|
18092
|
+
FinalizeQuote = "FINALIZE_QUOTE",
|
|
18093
|
+
MarkDraft = "MARK_DRAFT",
|
|
18094
|
+
PatchOpenQuote = "PATCH_OPEN_QUOTE",
|
|
18095
|
+
ReviseQuote = "REVISE_QUOTE",
|
|
18096
|
+
UpdateQuote = "UPDATE_QUOTE"
|
|
18097
|
+
}
|
|
17995
18098
|
export declare type CommerceExpReservedSiteAndOrg = {
|
|
17996
18099
|
__typename?: 'CommerceExpReservedSiteAndOrg';
|
|
17997
18100
|
orgName?: Maybe<Scalars['String']['output']>;
|
|
@@ -28387,13 +28490,26 @@ export declare enum ConfluenceSiteEmailAddressStatus {
|
|
|
28387
28490
|
export declare type ConfluenceSmartSpaceOverview = {
|
|
28388
28491
|
__typename?: 'ConfluenceSmartSpaceOverview';
|
|
28389
28492
|
summary?: Maybe<ConfluenceSmartSpaceOverviewSummary>;
|
|
28493
|
+
topLinks?: Maybe<ConfluenceSmartSpaceOverviewTopLinks>;
|
|
28390
28494
|
};
|
|
28391
28495
|
export declare type ConfluenceSmartSpaceOverviewSummary = {
|
|
28392
28496
|
__typename?: 'ConfluenceSmartSpaceOverviewSummary';
|
|
28393
28497
|
body?: Maybe<Scalars['String']['output']>;
|
|
28394
28498
|
contentId?: Maybe<Scalars['ID']['output']>;
|
|
28395
28499
|
isPinned?: Maybe<Scalars['Boolean']['output']>;
|
|
28396
|
-
lastRefreshed?: Maybe<Scalars['
|
|
28500
|
+
lastRefreshed?: Maybe<Scalars['DateTime']['output']>;
|
|
28501
|
+
};
|
|
28502
|
+
export declare type ConfluenceSmartSpaceOverviewTopLink = {
|
|
28503
|
+
__typename?: 'ConfluenceSmartSpaceOverviewTopLink';
|
|
28504
|
+
isPinned?: Maybe<Scalars['Boolean']['output']>;
|
|
28505
|
+
title?: Maybe<Scalars['String']['output']>;
|
|
28506
|
+
url?: Maybe<Scalars['String']['output']>;
|
|
28507
|
+
};
|
|
28508
|
+
export declare type ConfluenceSmartSpaceOverviewTopLinks = {
|
|
28509
|
+
__typename?: 'ConfluenceSmartSpaceOverviewTopLinks';
|
|
28510
|
+
contentId?: Maybe<Scalars['ID']['output']>;
|
|
28511
|
+
lastRefreshed?: Maybe<Scalars['DateTime']['output']>;
|
|
28512
|
+
links?: Maybe<Array<Maybe<ConfluenceSmartSpaceOverviewTopLink>>>;
|
|
28397
28513
|
};
|
|
28398
28514
|
export declare type ConfluenceSpace = Node & {
|
|
28399
28515
|
__typename?: 'ConfluenceSpace';
|
|
@@ -32957,6 +33073,7 @@ export declare type CplsWorkResourcingContributionAggregation = {
|
|
|
32957
33073
|
valueFormats?: Maybe<CplsValueFormats>;
|
|
32958
33074
|
};
|
|
32959
33075
|
export declare enum CplsWorkType {
|
|
33076
|
+
AtlasProject = "ATLAS_PROJECT",
|
|
32960
33077
|
CustomContributionTarget = "CUSTOM_CONTRIBUTION_TARGET",
|
|
32961
33078
|
JiraWorkItem = "JIRA_WORK_ITEM"
|
|
32962
33079
|
}
|
|
@@ -34933,6 +35050,16 @@ export declare type CustomerServiceEscalateWorkItemPayload = Payload & {
|
|
|
34933
35050
|
export declare enum CustomerServiceEscalationType {
|
|
34934
35051
|
SupportEscalation = "SUPPORT_ESCALATION"
|
|
34935
35052
|
}
|
|
35053
|
+
export declare type CustomerServiceExternalStatus = {
|
|
35054
|
+
__typename?: 'CustomerServiceExternalStatus';
|
|
35055
|
+
externalLabel: Scalars['String']['output'];
|
|
35056
|
+
jiraStatusIds: Array<Scalars['String']['output']>;
|
|
35057
|
+
};
|
|
35058
|
+
export declare type CustomerServiceExternalStatusesQueryResult = CustomerServiceExternalStatusesResponse | QueryError;
|
|
35059
|
+
export declare type CustomerServiceExternalStatusesResponse = {
|
|
35060
|
+
__typename?: 'CustomerServiceExternalStatusesResponse';
|
|
35061
|
+
externalStatuses: Array<CustomerServiceExternalStatus>;
|
|
35062
|
+
};
|
|
34936
35063
|
export declare type CustomerServiceFilterInput = {
|
|
34937
35064
|
context: CustomerServiceContext;
|
|
34938
35065
|
};
|
|
@@ -35382,6 +35509,7 @@ export declare type CustomerServiceQueryApi = {
|
|
|
35382
35509
|
customDetailsByEntityType?: Maybe<CustomerServiceCustomDetailsQueryResult>;
|
|
35383
35510
|
entitlementById?: Maybe<CustomerServiceEntitlementQueryResult>;
|
|
35384
35511
|
escalatableJiraProjects?: Maybe<CustomerServiceEscalatableJiraProjectsConnection>;
|
|
35512
|
+
externalStatusesByHelpCenterId?: Maybe<CustomerServiceExternalStatusesQueryResult>;
|
|
35385
35513
|
individualAttributes?: Maybe<CustomerServiceAttributesQueryResult>;
|
|
35386
35514
|
individualByAccountId?: Maybe<CustomerServiceIndividualQueryResult>;
|
|
35387
35515
|
organizationAttributes?: Maybe<CustomerServiceAttributesQueryResult>;
|
|
@@ -35413,6 +35541,9 @@ export declare type CustomerServiceQueryApiEscalatableJiraProjectsArgs = {
|
|
|
35413
35541
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
35414
35542
|
projectId: Scalars['ID']['input'];
|
|
35415
35543
|
};
|
|
35544
|
+
export declare type CustomerServiceQueryApiExternalStatusesByHelpCenterIdArgs = {
|
|
35545
|
+
helpCenterId: Scalars['ID']['input'];
|
|
35546
|
+
};
|
|
35416
35547
|
export declare type CustomerServiceQueryApiIndividualByAccountIdArgs = {
|
|
35417
35548
|
accountId: Scalars['ID']['input'];
|
|
35418
35549
|
filter?: InputMaybe<CustomerServiceFilterInput>;
|
|
@@ -35488,6 +35619,7 @@ export declare type CustomerServiceRequestFilterInput = {
|
|
|
35488
35619
|
reportedBy?: InputMaybe<CustomerServiceReportedByFilter>;
|
|
35489
35620
|
searchText?: InputMaybe<Scalars['String']['input']>;
|
|
35490
35621
|
status?: InputMaybe<CustomerServiceStatusKey>;
|
|
35622
|
+
statusFilter?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
35491
35623
|
};
|
|
35492
35624
|
export declare type CustomerServiceRequestFormDataConnection = {
|
|
35493
35625
|
__typename?: 'CustomerServiceRequestFormDataConnection';
|
|
@@ -43167,6 +43299,29 @@ export declare type GdprDetails = {
|
|
|
43167
43299
|
dataProcessor?: Maybe<DataProcessor>;
|
|
43168
43300
|
dataTransfer?: Maybe<DataTransfer>;
|
|
43169
43301
|
};
|
|
43302
|
+
export declare type GeneratePlaybookInput = {
|
|
43303
|
+
cloudId: Scalars['ID']['input'];
|
|
43304
|
+
documentUrl?: InputMaybe<Scalars['String']['input']>;
|
|
43305
|
+
singleInstrumentationID: Scalars['String']['input'];
|
|
43306
|
+
userPrompt?: InputMaybe<Scalars['String']['input']>;
|
|
43307
|
+
};
|
|
43308
|
+
export declare type GeneratePlaybookPayload = QueryPayload & {
|
|
43309
|
+
__typename?: 'GeneratePlaybookPayload';
|
|
43310
|
+
errors?: Maybe<Array<QueryError>>;
|
|
43311
|
+
playbook?: Maybe<GeneratedPlaybook>;
|
|
43312
|
+
success: Scalars['Boolean']['output'];
|
|
43313
|
+
};
|
|
43314
|
+
export declare type GeneratedPlaybook = {
|
|
43315
|
+
__typename?: 'GeneratedPlaybook';
|
|
43316
|
+
name: Scalars['String']['output'];
|
|
43317
|
+
steps: Array<GeneratedStep>;
|
|
43318
|
+
};
|
|
43319
|
+
export declare type GeneratedStep = {
|
|
43320
|
+
__typename?: 'GeneratedStep';
|
|
43321
|
+
description?: Maybe<Scalars['JSON']['output']>;
|
|
43322
|
+
name: Scalars['String']['output'];
|
|
43323
|
+
type: JiraPlaybookStepType;
|
|
43324
|
+
};
|
|
43170
43325
|
export declare type GenericMutationErrorExtension = MutationErrorExtension & {
|
|
43171
43326
|
__typename?: 'GenericMutationErrorExtension';
|
|
43172
43327
|
errorType?: Maybe<Scalars['String']['output']>;
|
|
@@ -44354,7 +44509,7 @@ export declare type GraphIntegrationDirectoryFilterDimensionEdge = {
|
|
|
44354
44509
|
cursor: Scalars['String']['output'];
|
|
44355
44510
|
node?: Maybe<GraphIntegrationDirectoryFilterDimension>;
|
|
44356
44511
|
};
|
|
44357
|
-
export declare type GraphIntegrationDirectoryItem = GraphIntegrationActionDirectoryItem | GraphIntegrationMcpServer | GraphIntegrationMcpTool | GraphIntegrationSkillDirectoryItem;
|
|
44512
|
+
export declare type GraphIntegrationDirectoryItem = GraphIntegrationActionDirectoryItem | GraphIntegrationMcpServer | GraphIntegrationMcpTool | GraphIntegrationSkillDirectoryItem | GraphIntegrationSkillItem;
|
|
44358
44513
|
export declare type GraphIntegrationDirectoryItemConnection = {
|
|
44359
44514
|
__typename?: 'GraphIntegrationDirectoryItemConnection';
|
|
44360
44515
|
edges: Array<GraphIntegrationDirectoryItemEdge>;
|
|
@@ -44623,6 +44778,15 @@ export declare type GraphIntegrationSetTwgPlatformCapabilityGlobalAdminSettingPa
|
|
|
44623
44778
|
setting?: Maybe<GraphIntegrationTwgPlatformCapabilityGlobalAdminSetting>;
|
|
44624
44779
|
success: Scalars['Boolean']['output'];
|
|
44625
44780
|
};
|
|
44781
|
+
export declare type GraphIntegrationSkill = {
|
|
44782
|
+
__typename?: 'GraphIntegrationSkill';
|
|
44783
|
+
description: Scalars['String']['output'];
|
|
44784
|
+
id: Scalars['ID']['output'];
|
|
44785
|
+
instructions: Scalars['String']['output'];
|
|
44786
|
+
metadata: GraphIntegrationSkillMetadata;
|
|
44787
|
+
name: Scalars['String']['output'];
|
|
44788
|
+
uiMetadata: GraphIntegrationSkillUiMetadata;
|
|
44789
|
+
};
|
|
44626
44790
|
export declare enum GraphIntegrationSkillColor {
|
|
44627
44791
|
Blue = "BLUE",
|
|
44628
44792
|
Default = "DEFAULT",
|
|
@@ -44648,6 +44812,26 @@ export declare type GraphIntegrationSkillDirectoryItem = {
|
|
|
44648
44812
|
slashCommand?: Maybe<Scalars['String']['output']>;
|
|
44649
44813
|
tags: Array<GraphIntegrationDirectoryFilterDimension>;
|
|
44650
44814
|
};
|
|
44815
|
+
export declare type GraphIntegrationSkillItem = {
|
|
44816
|
+
__typename?: 'GraphIntegrationSkillItem';
|
|
44817
|
+
description: Scalars['String']['output'];
|
|
44818
|
+
id: Scalars['ID']['output'];
|
|
44819
|
+
metadata: GraphIntegrationSkillMetadata;
|
|
44820
|
+
name: Scalars['String']['output'];
|
|
44821
|
+
uiMetadata: GraphIntegrationSkillUiMetadata;
|
|
44822
|
+
};
|
|
44823
|
+
export declare type GraphIntegrationSkillMetadata = {
|
|
44824
|
+
__typename?: 'GraphIntegrationSkillMetadata';
|
|
44825
|
+
tags: Array<Scalars['String']['output']>;
|
|
44826
|
+
version: Scalars['String']['output'];
|
|
44827
|
+
};
|
|
44828
|
+
export declare type GraphIntegrationSkillUiMetadata = {
|
|
44829
|
+
__typename?: 'GraphIntegrationSkillUiMetadata';
|
|
44830
|
+
color?: Maybe<GraphIntegrationSkillColor>;
|
|
44831
|
+
displayName: Scalars['String']['output'];
|
|
44832
|
+
iconKey?: Maybe<Scalars['String']['output']>;
|
|
44833
|
+
iconUrl?: Maybe<Scalars['String']['output']>;
|
|
44834
|
+
};
|
|
44651
44835
|
export declare enum GraphIntegrationStatus {
|
|
44652
44836
|
Disabled = "DISABLED",
|
|
44653
44837
|
Enabled = "ENABLED"
|
|
@@ -60391,6 +60575,7 @@ export declare enum GraphStoreFullIssueAssociatedPrPullRequestStatusOutput {
|
|
|
60391
60575
|
Merged = "MERGED",
|
|
60392
60576
|
NotSet = "NOT_SET",
|
|
60393
60577
|
Open = "OPEN",
|
|
60578
|
+
Queued = "QUEUED",
|
|
60394
60579
|
Unknown = "UNKNOWN"
|
|
60395
60580
|
}
|
|
60396
60581
|
export declare type GraphStoreFullIssueAssociatedPrRelationshipObjectMetadataOutput = {
|
|
@@ -61063,6 +61248,7 @@ export declare enum GraphStoreFullPrInRepoPullRequestStatusOutput {
|
|
|
61063
61248
|
Merged = "MERGED",
|
|
61064
61249
|
NotSet = "NOT_SET",
|
|
61065
61250
|
Open = "OPEN",
|
|
61251
|
+
Queued = "QUEUED",
|
|
61066
61252
|
Unknown = "UNKNOWN"
|
|
61067
61253
|
}
|
|
61068
61254
|
export declare type GraphStoreFullPrInRepoRelationshipObjectMetadataOutput = {
|
|
@@ -61407,6 +61593,7 @@ export declare enum GraphStoreFullProjectAssociatedPrPullRequestStatusOutput {
|
|
|
61407
61593
|
Merged = "MERGED",
|
|
61408
61594
|
NotSet = "NOT_SET",
|
|
61409
61595
|
Open = "OPEN",
|
|
61596
|
+
Queued = "QUEUED",
|
|
61410
61597
|
Unknown = "UNKNOWN"
|
|
61411
61598
|
}
|
|
61412
61599
|
export declare type GraphStoreFullProjectAssociatedPrRelationshipMetadataOutput = {
|
|
@@ -62233,6 +62420,7 @@ export declare enum GraphStoreFullSprintAssociatedPrPullRequestStatusOutput {
|
|
|
62233
62420
|
Merged = "MERGED",
|
|
62234
62421
|
NotSet = "NOT_SET",
|
|
62235
62422
|
Open = "OPEN",
|
|
62423
|
+
Queued = "QUEUED",
|
|
62236
62424
|
Unknown = "UNKNOWN"
|
|
62237
62425
|
}
|
|
62238
62426
|
export declare type GraphStoreFullSprintAssociatedPrRelationshipMetadataOutput = {
|
|
@@ -64042,6 +64230,7 @@ export declare enum GraphStoreProjectAssociatedPrPullRequestStatus {
|
|
|
64042
64230
|
Merged = "MERGED",
|
|
64043
64231
|
NotSet = "NOT_SET",
|
|
64044
64232
|
Open = "OPEN",
|
|
64233
|
+
Queued = "QUEUED",
|
|
64045
64234
|
Unknown = "UNKNOWN"
|
|
64046
64235
|
}
|
|
64047
64236
|
export declare type GraphStoreProjectAssociatedPrPullRequestStatusFilterInput = {
|
|
@@ -75895,6 +76084,7 @@ export declare enum GraphStoreSprintAssociatedPrPullRequestStatus {
|
|
|
75895
76084
|
Merged = "MERGED",
|
|
75896
76085
|
NotSet = "NOT_SET",
|
|
75897
76086
|
Open = "OPEN",
|
|
76087
|
+
Queued = "QUEUED",
|
|
75898
76088
|
Unknown = "UNKNOWN"
|
|
75899
76089
|
}
|
|
75900
76090
|
export declare type GraphStoreSprintAssociatedPrPullRequestStatusFilterInput = {
|
|
@@ -84652,6 +84842,7 @@ export declare enum GraphStoreV2JiraSpaceLinksExternalPullRequestPullRequestStat
|
|
|
84652
84842
|
Merged = "MERGED",
|
|
84653
84843
|
NotSet = "NOT_SET",
|
|
84654
84844
|
Open = "OPEN",
|
|
84845
|
+
Queued = "QUEUED",
|
|
84655
84846
|
Unknown = "UNKNOWN"
|
|
84656
84847
|
}
|
|
84657
84848
|
export declare type GraphStoreV2JiraSpaceLinksExternalPullRequestPullRequestStatusFilterInput = {
|
|
@@ -85002,6 +85193,7 @@ export declare enum GraphStoreV2JiraSprintHasExternalPullRequestPullRequestStatu
|
|
|
85002
85193
|
Merged = "MERGED",
|
|
85003
85194
|
NotSet = "NOT_SET",
|
|
85004
85195
|
Open = "OPEN",
|
|
85196
|
+
Queued = "QUEUED",
|
|
85005
85197
|
Unknown = "UNKNOWN"
|
|
85006
85198
|
}
|
|
85007
85199
|
export declare type GraphStoreV2JiraSprintHasExternalPullRequestPullRequestStatusFilterInput = {
|
|
@@ -104453,7 +104645,8 @@ export declare type JiraCommentItem = {
|
|
|
104453
104645
|
commentItem?: Maybe<JiraComment>;
|
|
104454
104646
|
};
|
|
104455
104647
|
export declare enum JiraCommentSortField {
|
|
104456
|
-
Created = "CREATED"
|
|
104648
|
+
Created = "CREATED",
|
|
104649
|
+
LatestActivity = "LATEST_ACTIVITY"
|
|
104457
104650
|
}
|
|
104458
104651
|
export declare type JiraCommentSortInput = {
|
|
104459
104652
|
field: JiraCommentSortField;
|
|
@@ -106868,6 +107061,10 @@ export declare type JiraFieldEdge = {
|
|
|
106868
107061
|
cursor?: Maybe<Scalars['String']['output']>;
|
|
106869
107062
|
node?: Maybe<JiraField>;
|
|
106870
107063
|
};
|
|
107064
|
+
export declare type JiraFieldForGlobalView = {
|
|
107065
|
+
__typename?: 'JiraFieldForGlobalView';
|
|
107066
|
+
id: Scalars['ID']['output'];
|
|
107067
|
+
};
|
|
106871
107068
|
export declare type JiraFieldFormatConfig = JiraNumberFieldFormatConfig;
|
|
106872
107069
|
export declare type JiraFieldFormatConfigInput = {
|
|
106873
107070
|
jiraNumberFieldFormatConfigInput?: InputMaybe<JiraNumberFieldFormatConfigInput>;
|
|
@@ -108604,6 +108801,7 @@ export declare type JiraIssue = HasMercuryProjectFields & JiraScenarioIssueLike
|
|
|
108604
108801
|
pinnedComments?: Maybe<JiraPinnedCommentsResponse>;
|
|
108605
108802
|
planScenarioValues?: Maybe<JiraScenarioIssueValues>;
|
|
108606
108803
|
postIncidentReviewLinks?: Maybe<GraphIncidentAssociatedPostIncidentReviewLinkRelationshipConnection>;
|
|
108804
|
+
priority?: Maybe<JiraPriority>;
|
|
108607
108805
|
priorityField?: Maybe<JiraPriorityField>;
|
|
108608
108806
|
projectField?: Maybe<JiraProjectField>;
|
|
108609
108807
|
projectRoleCommentVisibilities?: Maybe<JiraRoleConnection>;
|
|
@@ -115300,6 +115498,10 @@ export declare type JiraPlaybooksSortInput = {
|
|
|
115300
115498
|
by: JiraPlaybooksSortBy;
|
|
115301
115499
|
order?: SortDirection;
|
|
115302
115500
|
};
|
|
115501
|
+
export declare type JiraPolarisGlobalViewFields = {
|
|
115502
|
+
__typename?: 'JiraPolarisGlobalViewFields';
|
|
115503
|
+
fields: Array<JiraFieldForGlobalView>;
|
|
115504
|
+
};
|
|
115303
115505
|
export declare type JiraPostIncidentReviewLink = Node & {
|
|
115304
115506
|
__typename?: 'JiraPostIncidentReviewLink';
|
|
115305
115507
|
id: Scalars['ID']['output'];
|
|
@@ -116575,6 +116777,7 @@ export declare type JiraQuery = {
|
|
|
116575
116777
|
jiraServiceManagementRequestTypeCategoriesByProject?: Maybe<JiraServiceManagementRequestTypeCategoryConnection>;
|
|
116576
116778
|
jiraServiceManagementSlaIssue?: Maybe<JiraServiceManagementSlaIssueResult>;
|
|
116577
116779
|
jpdDeliveryIssueLinkTypeId?: Maybe<Scalars['ID']['output']>;
|
|
116780
|
+
jpdGlobalViewFields?: Maybe<JiraPolarisGlobalViewFields>;
|
|
116578
116781
|
jqlBuilder?: Maybe<JiraJqlBuilder>;
|
|
116579
116782
|
jsmProjectTeamType?: Maybe<JiraServiceManagementProjectTeamType>;
|
|
116580
116783
|
jsmWorkflowTemplates?: Maybe<JiraServiceManagementWorkflowTemplatesMetadataConnection>;
|
|
@@ -117352,6 +117555,9 @@ export declare type JiraQueryJiraServiceManagementSlaIssueArgs = {
|
|
|
117352
117555
|
export declare type JiraQueryJpdDeliveryIssueLinkTypeIdArgs = {
|
|
117353
117556
|
cloudId: Scalars['ID']['input'];
|
|
117354
117557
|
};
|
|
117558
|
+
export declare type JiraQueryJpdGlobalViewFieldsArgs = {
|
|
117559
|
+
cloudId: Scalars['ID']['input'];
|
|
117560
|
+
};
|
|
117355
117561
|
export declare type JiraQueryJqlBuilderArgs = {
|
|
117356
117562
|
cloudId: Scalars['ID']['input'];
|
|
117357
117563
|
};
|
|
@@ -122264,6 +122470,7 @@ export declare type JiraTimelineViewIssuesArgs = {
|
|
|
122264
122470
|
fieldSetsInput?: InputMaybe<JiraIssueSearchFieldSetsInput>;
|
|
122265
122471
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
122266
122472
|
issueSearchInput: JiraIssueSearchInput;
|
|
122473
|
+
jiraViewQueryInput?: InputMaybe<JiraViewQueryInput>;
|
|
122267
122474
|
last?: InputMaybe<Scalars['Int']['input']>;
|
|
122268
122475
|
options?: InputMaybe<JiraIssueSearchOptions>;
|
|
122269
122476
|
saveJQLToUserHistory?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -126650,6 +126857,7 @@ export declare type KitsuneFeedback = Node & {
|
|
|
126650
126857
|
id: Scalars['ID']['output'];
|
|
126651
126858
|
reporter?: Maybe<User>;
|
|
126652
126859
|
reporterId?: Maybe<Scalars['ID']['output']>;
|
|
126860
|
+
snippets: KitsuneSnippetConnection;
|
|
126653
126861
|
source: KitsuneSource;
|
|
126654
126862
|
sourceCategory: KitsuneSourceCategory;
|
|
126655
126863
|
summary?: Maybe<KitsuneSummary>;
|
|
@@ -126663,6 +126871,12 @@ export declare type KitsuneFeedbackChunksArgs = {
|
|
|
126663
126871
|
last?: InputMaybe<Scalars['Int']['input']>;
|
|
126664
126872
|
pagination?: InputMaybe<KitsunePaginationInput>;
|
|
126665
126873
|
};
|
|
126874
|
+
export declare type KitsuneFeedbackSnippetsArgs = {
|
|
126875
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
126876
|
+
before?: InputMaybe<Scalars['String']['input']>;
|
|
126877
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
126878
|
+
last?: InputMaybe<Scalars['Int']['input']>;
|
|
126879
|
+
};
|
|
126666
126880
|
export declare type KitsuneFeedbackConnection = KitsuneConnection & {
|
|
126667
126881
|
__typename?: 'KitsuneFeedbackConnection';
|
|
126668
126882
|
edges: Array<KitsuneFeedbackEdge>;
|
|
@@ -126753,9 +126967,16 @@ export declare type KitsuneInsight = Node & {
|
|
|
126753
126967
|
creator?: Maybe<User>;
|
|
126754
126968
|
creatorId?: Maybe<Scalars['ID']['output']>;
|
|
126755
126969
|
id: Scalars['ID']['output'];
|
|
126970
|
+
snippets: KitsuneSnippetConnection;
|
|
126756
126971
|
summary?: Maybe<KitsuneSummary>;
|
|
126757
126972
|
title: Scalars['String']['output'];
|
|
126758
126973
|
};
|
|
126974
|
+
export declare type KitsuneInsightSnippetsArgs = {
|
|
126975
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
126976
|
+
before?: InputMaybe<Scalars['String']['input']>;
|
|
126977
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
126978
|
+
last?: InputMaybe<Scalars['Int']['input']>;
|
|
126979
|
+
};
|
|
126759
126980
|
export declare enum KitsuneLogicalOperator {
|
|
126760
126981
|
And = "AND",
|
|
126761
126982
|
Or = "OR"
|
|
@@ -126802,6 +127023,27 @@ export declare type KitsuneSectionViewsArgs = {
|
|
|
126802
127023
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
126803
127024
|
last?: InputMaybe<Scalars['Int']['input']>;
|
|
126804
127025
|
};
|
|
127026
|
+
export declare type KitsuneSnippet = Node & {
|
|
127027
|
+
__typename?: 'KitsuneSnippet';
|
|
127028
|
+
content: Array<Scalars['String']['output']>;
|
|
127029
|
+
createdAt: Scalars['DateTime']['output'];
|
|
127030
|
+
creator?: Maybe<User>;
|
|
127031
|
+
creatorId?: Maybe<Scalars['ID']['output']>;
|
|
127032
|
+
feedback: KitsuneFeedback;
|
|
127033
|
+
id: Scalars['ID']['output'];
|
|
127034
|
+
insight: KitsuneInsight;
|
|
127035
|
+
markId?: Maybe<Scalars['ID']['output']>;
|
|
127036
|
+
};
|
|
127037
|
+
export declare type KitsuneSnippetConnection = KitsuneConnection & {
|
|
127038
|
+
__typename?: 'KitsuneSnippetConnection';
|
|
127039
|
+
edges: Array<KitsuneSnippetEdge>;
|
|
127040
|
+
pageInfo: PageInfo;
|
|
127041
|
+
};
|
|
127042
|
+
export declare type KitsuneSnippetEdge = KitsuneEdge & {
|
|
127043
|
+
__typename?: 'KitsuneSnippetEdge';
|
|
127044
|
+
cursor: Scalars['String']['output'];
|
|
127045
|
+
node?: Maybe<KitsuneSnippet>;
|
|
127046
|
+
};
|
|
126805
127047
|
export declare type KitsuneSource = {
|
|
126806
127048
|
__typename?: 'KitsuneSource';
|
|
126807
127049
|
sourceCategory: KitsuneSourceCategory;
|
|
@@ -137952,6 +138194,7 @@ export declare type Mutation = {
|
|
|
137952
138194
|
avp_updateFilterExpression?: Maybe<AvpUpdateFilterExpressionPayload>;
|
|
137953
138195
|
avp_updateVariable?: Maybe<AvpUpdateVariablePayload>;
|
|
137954
138196
|
avpanalytics_createModel?: Maybe<AvpAnalyticsCreateModelPayload>;
|
|
138197
|
+
avpanalytics_updateModel?: Maybe<AvpAnalyticsUpdateModelPayload>;
|
|
137955
138198
|
blockService_batchCreateBlocks?: Maybe<BlockServiceBatchRetrieveBlocksPayload>;
|
|
137956
138199
|
blockService_batchDeleteBlocks?: Maybe<BlockServiceBatchRetrieveBlocksPayload>;
|
|
137957
138200
|
blockService_batchUpdateBlocks?: Maybe<BlockServiceBatchRetrieveBlocksPayload>;
|
|
@@ -138519,6 +138762,7 @@ export declare type Mutation = {
|
|
|
138519
138762
|
kitsune_createInsight?: Maybe<KitsuneInsight>;
|
|
138520
138763
|
kitsune_createOrganization?: Maybe<KitsuneOrganization>;
|
|
138521
138764
|
kitsune_createSection?: Maybe<KitsuneSection>;
|
|
138765
|
+
kitsune_createSnippet?: Maybe<KitsuneSnippet>;
|
|
138522
138766
|
kitsune_createSpace?: Maybe<KitsuneSpace>;
|
|
138523
138767
|
kitsune_createView?: Maybe<KitsuneView>;
|
|
138524
138768
|
kitsune_generateFeedbackSummary?: Maybe<KitsuneFeedback>;
|
|
@@ -138527,11 +138771,12 @@ export declare type Mutation = {
|
|
|
138527
138771
|
kitsune_removeFeedback?: Maybe<KitsuneDeletedRecord>;
|
|
138528
138772
|
kitsune_removeInsight?: Maybe<KitsuneDeletedRecord>;
|
|
138529
138773
|
kitsune_removeSection?: Maybe<KitsuneDeletedRecord>;
|
|
138774
|
+
kitsune_removeSnippet?: Maybe<KitsuneDeletedRecord>;
|
|
138530
138775
|
kitsune_removeView?: Maybe<KitsuneDeletedRecord>;
|
|
138531
|
-
kitsune_suggestSnippets?: Maybe<Scalars['Boolean']['output']>;
|
|
138532
138776
|
kitsune_updateFeedback?: Maybe<KitsuneFeedback>;
|
|
138533
138777
|
kitsune_updateInsight?: Maybe<KitsuneInsight>;
|
|
138534
138778
|
kitsune_updateSection?: Maybe<KitsuneSection>;
|
|
138779
|
+
kitsune_updateSnippet?: Maybe<KitsuneSnippet>;
|
|
138535
138780
|
kitsune_updateSpace?: Maybe<KitsuneSpace>;
|
|
138536
138781
|
kitsune_updateView?: Maybe<KitsuneView>;
|
|
138537
138782
|
knowledgeBase?: Maybe<KnowledgeBaseMutationApi>;
|
|
@@ -138930,8 +139175,8 @@ export declare type MutationAdmin_AssignRoleArgs = {
|
|
|
138930
139175
|
orgId: Scalars['ID']['input'];
|
|
138931
139176
|
};
|
|
138932
139177
|
export declare type MutationAdmin_AuditLogEventExportArgs = {
|
|
138933
|
-
|
|
138934
|
-
|
|
139178
|
+
container: AdminAuditLogContainer;
|
|
139179
|
+
input: AdminAuditLogEventExportInput;
|
|
138935
139180
|
};
|
|
138936
139181
|
export declare type MutationAdmin_CreateAccessUrlArgs = {
|
|
138937
139182
|
resourceAri: Scalars['ID']['input'];
|
|
@@ -139638,6 +139883,10 @@ export declare type MutationAvpanalytics_CreateModelArgs = {
|
|
|
139638
139883
|
cloudId: Scalars['ID']['input'];
|
|
139639
139884
|
input?: InputMaybe<AvpAnalyticsCreateModelInput>;
|
|
139640
139885
|
};
|
|
139886
|
+
export declare type MutationAvpanalytics_UpdateModelArgs = {
|
|
139887
|
+
cloudId: Scalars['ID']['input'];
|
|
139888
|
+
input?: InputMaybe<AvpAnalyticsUpdateModelInput>;
|
|
139889
|
+
};
|
|
139641
139890
|
export declare type MutationBlockService_BatchCreateBlocksArgs = {
|
|
139642
139891
|
input: BlockServiceBatchCreateBlocksInput;
|
|
139643
139892
|
};
|
|
@@ -139757,19 +140006,15 @@ export declare type MutationClearRestrictionsForFreeArgs = {
|
|
|
139757
140006
|
};
|
|
139758
140007
|
export declare type MutationCloudify_AddRecommendationArgs = {
|
|
139759
140008
|
input: CloudifyRecommendationInput;
|
|
139760
|
-
projectId: Scalars['ID']['input'];
|
|
139761
|
-
siteId: Scalars['ID']['input'];
|
|
139762
140009
|
};
|
|
139763
140010
|
export declare type MutationCloudify_DeleteRecommendationsArgs = {
|
|
139764
|
-
|
|
139765
|
-
siteId: Scalars['ID']['input'];
|
|
140011
|
+
target: CloudifyTargetInput;
|
|
139766
140012
|
};
|
|
139767
140013
|
export declare type MutationCloudify_EnactRecommendationArgs = {
|
|
139768
140014
|
recommendationId: Scalars['ID']['input'];
|
|
139769
140015
|
};
|
|
139770
140016
|
export declare type MutationCloudify_RequestAnalysisArgs = {
|
|
139771
|
-
|
|
139772
|
-
siteId: Scalars['ID']['input'];
|
|
140017
|
+
target: CloudifyTargetInput;
|
|
139773
140018
|
};
|
|
139774
140019
|
export declare type MutationCommerceExp_ApprovalDeskArgs = {
|
|
139775
140020
|
input: CommerceExpApprovalDeskTenantInput;
|
|
@@ -141566,6 +141811,12 @@ export declare type MutationKitsune_CreateSectionArgs = {
|
|
|
141566
141811
|
name: Scalars['String']['input'];
|
|
141567
141812
|
spaceAri: Scalars['ID']['input'];
|
|
141568
141813
|
};
|
|
141814
|
+
export declare type MutationKitsune_CreateSnippetArgs = {
|
|
141815
|
+
content: Array<Scalars['String']['input']>;
|
|
141816
|
+
feedbackId: Scalars['ID']['input'];
|
|
141817
|
+
insightId: Scalars['ID']['input'];
|
|
141818
|
+
markId?: InputMaybe<Scalars['ID']['input']>;
|
|
141819
|
+
};
|
|
141569
141820
|
export declare type MutationKitsune_CreateSpaceArgs = {
|
|
141570
141821
|
name: Scalars['String']['input'];
|
|
141571
141822
|
workspaceAri: Scalars['ID']['input'];
|
|
@@ -141598,13 +141849,12 @@ export declare type MutationKitsune_RemoveInsightArgs = {
|
|
|
141598
141849
|
export declare type MutationKitsune_RemoveSectionArgs = {
|
|
141599
141850
|
sectionAri: Scalars['ID']['input'];
|
|
141600
141851
|
};
|
|
141852
|
+
export declare type MutationKitsune_RemoveSnippetArgs = {
|
|
141853
|
+
id: Scalars['ID']['input'];
|
|
141854
|
+
};
|
|
141601
141855
|
export declare type MutationKitsune_RemoveViewArgs = {
|
|
141602
141856
|
viewAri: Scalars['ID']['input'];
|
|
141603
141857
|
};
|
|
141604
|
-
export declare type MutationKitsune_SuggestSnippetsArgs = {
|
|
141605
|
-
title: Scalars['String']['input'];
|
|
141606
|
-
workspaceAri: Scalars['ID']['input'];
|
|
141607
|
-
};
|
|
141608
141858
|
export declare type MutationKitsune_UpdateFeedbackArgs = {
|
|
141609
141859
|
content?: InputMaybe<Scalars['KitsuneADF']['input']>;
|
|
141610
141860
|
customerId?: InputMaybe<Scalars['ID']['input']>;
|
|
@@ -141624,6 +141874,11 @@ export declare type MutationKitsune_UpdateSectionArgs = {
|
|
|
141624
141874
|
name?: InputMaybe<Scalars['String']['input']>;
|
|
141625
141875
|
sectionAri: Scalars['ID']['input'];
|
|
141626
141876
|
};
|
|
141877
|
+
export declare type MutationKitsune_UpdateSnippetArgs = {
|
|
141878
|
+
content?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
141879
|
+
id: Scalars['ID']['input'];
|
|
141880
|
+
insightId?: InputMaybe<Scalars['ID']['input']>;
|
|
141881
|
+
};
|
|
141627
141882
|
export declare type MutationKitsune_UpdateSpaceArgs = {
|
|
141628
141883
|
description?: InputMaybe<Scalars['String']['input']>;
|
|
141629
141884
|
id: Scalars['ID']['input'];
|
|
@@ -145001,9 +145256,15 @@ export declare type PolarisTreeHierarchyItem = {
|
|
|
145001
145256
|
__typename?: 'PolarisTreeHierarchyItem';
|
|
145002
145257
|
fields?: Maybe<Array<PolarisIdeaField>>;
|
|
145003
145258
|
filter?: Maybe<Array<PolarisViewFilter>>;
|
|
145004
|
-
items?: Maybe<Array<
|
|
145259
|
+
items?: Maybe<Array<PolarisTreeHierarchyItemEntry>>;
|
|
145005
145260
|
type?: Maybe<PolarisTreeHierarchyType>;
|
|
145006
145261
|
};
|
|
145262
|
+
export declare type PolarisTreeHierarchyItemEntry = {
|
|
145263
|
+
__typename?: 'PolarisTreeHierarchyItemEntry';
|
|
145264
|
+
fieldKey?: Maybe<Scalars['String']['output']>;
|
|
145265
|
+
issueId?: Maybe<Scalars['String']['output']>;
|
|
145266
|
+
issueTypeName?: Maybe<Scalars['String']['output']>;
|
|
145267
|
+
};
|
|
145007
145268
|
export declare enum PolarisTreeHierarchyType {
|
|
145008
145269
|
Field = "FIELD",
|
|
145009
145270
|
Issue = "ISSUE",
|
|
@@ -145882,6 +146143,7 @@ export declare type Query = {
|
|
|
145882
146143
|
assetsDM_transformedData?: Maybe<AssetsDmTransformedDataResponse>;
|
|
145883
146144
|
assetsVertical_attributeValues?: Maybe<AssetsVerticalAttributeValuesResult>;
|
|
145884
146145
|
assetsVertical_bundle: AssetsVerticalBundle;
|
|
146146
|
+
assetsVertical_countByStatus?: Maybe<AssetsVerticalCountByStatusResult>;
|
|
145885
146147
|
assetsVertical_insights?: Maybe<AssetsVerticalInsights>;
|
|
145886
146148
|
assets_objectById?: Maybe<AssetsObjectNode>;
|
|
145887
146149
|
assets_objectTypeAttributesBySchemaIds?: Maybe<Array<Maybe<AssetsObjectTypeAttribute>>>;
|
|
@@ -146017,6 +146279,8 @@ export declare type Query = {
|
|
|
146017
146279
|
confluence_calendarTimezones?: Maybe<ConfluenceCalendarTimezones>;
|
|
146018
146280
|
confluence_calendarsByCriteria?: Maybe<ConfluenceCalendarConnection>;
|
|
146019
146281
|
confluence_categorizeNbmChains?: Maybe<ConfluenceCategorizeNbmChainsResult>;
|
|
146282
|
+
confluence_classificationLevelsForContent?: Maybe<Array<ContentDataClassificationLevel>>;
|
|
146283
|
+
confluence_classificationLevelsForSpaceDefault?: Maybe<Array<ContentDataClassificationLevel>>;
|
|
146020
146284
|
confluence_commentMediaSession?: Maybe<ContentMediaSession>;
|
|
146021
146285
|
confluence_contentAISummaries?: Maybe<Array<Maybe<ConfluenceContentAiSummaryResponse>>>;
|
|
146022
146286
|
confluence_contentAccessRequestByStatus?: Maybe<ConfluenceContentAccessRequestConnection>;
|
|
@@ -146337,6 +146601,7 @@ export declare type Query = {
|
|
|
146337
146601
|
graphIntegration_mcpAdminManagementMcpTools?: Maybe<GraphIntegrationMcpAdminManagementMcpToolConnection>;
|
|
146338
146602
|
graphIntegration_mcpServers?: Maybe<Array<Maybe<GraphIntegrationMcpServerNode>>>;
|
|
146339
146603
|
graphIntegration_mcpTools?: Maybe<Array<Maybe<GraphIntegrationMcpToolNode>>>;
|
|
146604
|
+
graphIntegration_skill?: Maybe<GraphIntegrationSkill>;
|
|
146340
146605
|
graphIntegration_twgCapabilityContainer?: Maybe<GraphIntegrationTwgCapabilityContainer>;
|
|
146341
146606
|
graphIntegration_twgCapabilityContainersInContext?: Maybe<GraphIntegrationTwgCapabilityContainerConnection>;
|
|
146342
146607
|
graphIntegration_twgPlatformCapabilityGlobalAdminSettings?: Maybe<GraphIntegrationTwgPlatformCapabilityGlobalAdminSettings>;
|
|
@@ -146474,6 +146739,7 @@ export declare type Query = {
|
|
|
146474
146739
|
kitsune_node?: Maybe<KitsuneNode>;
|
|
146475
146740
|
kitsune_searchFeedback?: Maybe<KitsuneFeedbackConnection>;
|
|
146476
146741
|
kitsune_sections?: Maybe<Array<Maybe<KitsuneSection>>>;
|
|
146742
|
+
kitsune_snippets?: Maybe<Array<Maybe<KitsuneSnippet>>>;
|
|
146477
146743
|
kitsune_spaces?: Maybe<Array<Maybe<KitsuneSpace>>>;
|
|
146478
146744
|
kitsune_spacesForWorkspace?: Maybe<KitsuneSpaceConnection>;
|
|
146479
146745
|
kitsune_views?: Maybe<Array<Maybe<KitsuneView>>>;
|
|
@@ -146575,6 +146841,7 @@ export declare type Query = {
|
|
|
146575
146841
|
paywallStatus?: Maybe<PaywallStatus>;
|
|
146576
146842
|
permitted?: Maybe<Scalars['Boolean']['output']>;
|
|
146577
146843
|
permsReportDownloadLinkForTask?: Maybe<PermsReportDownloadLink>;
|
|
146844
|
+
playbook_generatePlaybook?: Maybe<GeneratePlaybookPayload>;
|
|
146578
146845
|
playbook_jiraPlaybook?: Maybe<JiraPlaybookQueryPayload>;
|
|
146579
146846
|
playbook_jiraPlaybookInstancesForIssue?: Maybe<JiraPlaybookInstanceConnection>;
|
|
146580
146847
|
playbook_jiraPlaybookLabelsForProject?: Maybe<JiraPlaybookLabelConnection>;
|
|
@@ -146642,6 +146909,8 @@ export declare type Query = {
|
|
|
146642
146909
|
radar_positionsByAris?: Maybe<Array<RadarPosition>>;
|
|
146643
146910
|
radar_positionsByEntitySearch?: Maybe<RadarPositionsByEntityConnection>;
|
|
146644
146911
|
radar_positionsSearch?: Maybe<RadarPositionConnection>;
|
|
146912
|
+
radar_skillByAri?: Maybe<RadarSkill>;
|
|
146913
|
+
radar_skillsByAris?: Maybe<Array<RadarSkill>>;
|
|
146645
146914
|
radar_viewByAri?: Maybe<RadarView>;
|
|
146646
146915
|
radar_viewsByAris?: Maybe<Array<RadarView>>;
|
|
146647
146916
|
radar_viewsSearch?: Maybe<RadarViewConnection>;
|
|
@@ -147968,6 +148237,10 @@ export declare type QueryAssetsVertical_BundleArgs = {
|
|
|
147968
148237
|
cloudId: Scalars['ID']['input'];
|
|
147969
148238
|
type: AssetsVerticalBundleType;
|
|
147970
148239
|
};
|
|
148240
|
+
export declare type QueryAssetsVertical_CountByStatusArgs = {
|
|
148241
|
+
cloudId: Scalars['ID']['input'];
|
|
148242
|
+
input: AssetsVerticalCountByStatusInput;
|
|
148243
|
+
};
|
|
147971
148244
|
export declare type QueryAssetsVertical_InsightsArgs = {
|
|
147972
148245
|
cloudId: Scalars['ID']['input'];
|
|
147973
148246
|
jobId?: InputMaybe<Scalars['ID']['input']>;
|
|
@@ -148287,13 +148560,10 @@ export declare type QueryClassificationLevelArgs = {
|
|
|
148287
148560
|
id: Scalars['String']['input'];
|
|
148288
148561
|
};
|
|
148289
148562
|
export declare type QueryClassificationLevelsArgs = {
|
|
148290
|
-
contentId?: InputMaybe<Scalars['ID']['input']>;
|
|
148291
148563
|
reclassificationFilterScope?: InputMaybe<ReclassificationFilterScope>;
|
|
148292
|
-
spaceKey?: InputMaybe<Scalars['String']['input']>;
|
|
148293
148564
|
};
|
|
148294
148565
|
export declare type QueryCloudify_AnalysisExecutionsArgs = {
|
|
148295
|
-
|
|
148296
|
-
siteId: Scalars['ID']['input'];
|
|
148566
|
+
target: CloudifyTargetInput;
|
|
148297
148567
|
};
|
|
148298
148568
|
export declare type QueryCloudify_EnactmentArgs = {
|
|
148299
148569
|
enactmentId: Scalars['ID']['input'];
|
|
@@ -148305,8 +148575,7 @@ export declare type QueryCloudify_GreetingArgs = {
|
|
|
148305
148575
|
name?: InputMaybe<Scalars['String']['input']>;
|
|
148306
148576
|
};
|
|
148307
148577
|
export declare type QueryCloudify_RecommendationsArgs = {
|
|
148308
|
-
|
|
148309
|
-
siteId: Scalars['ID']['input'];
|
|
148578
|
+
filter: CloudifyRecommendationFilterInput;
|
|
148310
148579
|
};
|
|
148311
148580
|
export declare type QueryCodeInJiraArgs = {
|
|
148312
148581
|
cloudId: Scalars['ID']['input'];
|
|
@@ -148465,6 +148734,13 @@ export declare type QueryConfluence_CategorizeNbmChainsArgs = {
|
|
|
148465
148734
|
cloudId: Scalars['ID']['input'];
|
|
148466
148735
|
nbmChains: Array<InputMaybe<Array<InputMaybe<Scalars['String']['input']>>>>;
|
|
148467
148736
|
};
|
|
148737
|
+
export declare type QueryConfluence_ClassificationLevelsForContentArgs = {
|
|
148738
|
+
cloudId: Scalars['ID']['input'];
|
|
148739
|
+
contentId: Scalars['ID']['input'];
|
|
148740
|
+
};
|
|
148741
|
+
export declare type QueryConfluence_ClassificationLevelsForSpaceDefaultArgs = {
|
|
148742
|
+
cloudId: Scalars['ID']['input'];
|
|
148743
|
+
};
|
|
148468
148744
|
export declare type QueryConfluence_CommentMediaSessionArgs = {
|
|
148469
148745
|
cloudId: Scalars['ID']['input'];
|
|
148470
148746
|
contentId: Scalars['ID']['input'];
|
|
@@ -148874,6 +149150,7 @@ export declare type QueryConfluence_SmartSpaceOverviewArgs = {
|
|
|
148874
149150
|
};
|
|
148875
149151
|
export declare type QueryConfluence_SpaceMediaSessionArgs = {
|
|
148876
149152
|
cloudId: Scalars['ID']['input'];
|
|
149153
|
+
contentId?: InputMaybe<Scalars['String']['input']>;
|
|
148877
149154
|
contentType: Scalars['String']['input'];
|
|
148878
149155
|
spaceKey: Scalars['String']['input'];
|
|
148879
149156
|
};
|
|
@@ -149946,6 +150223,10 @@ export declare type QueryGraphIntegration_McpServersArgs = {
|
|
|
149946
150223
|
export declare type QueryGraphIntegration_McpToolsArgs = {
|
|
149947
150224
|
ids: Array<Scalars['ID']['input']>;
|
|
149948
150225
|
};
|
|
150226
|
+
export declare type QueryGraphIntegration_SkillArgs = {
|
|
150227
|
+
contextAri: Scalars['ID']['input'];
|
|
150228
|
+
skillAri: Scalars['ID']['input'];
|
|
150229
|
+
};
|
|
149949
150230
|
export declare type QueryGraphIntegration_TwgCapabilityContainerArgs = {
|
|
149950
150231
|
contextAri: Scalars['ID']['input'];
|
|
149951
150232
|
id: Scalars['String']['input'];
|
|
@@ -150441,6 +150722,9 @@ export declare type QueryKitsune_SearchFeedbackArgs = {
|
|
|
150441
150722
|
export declare type QueryKitsune_SectionsArgs = {
|
|
150442
150723
|
ids: Array<Scalars['ID']['input']>;
|
|
150443
150724
|
};
|
|
150725
|
+
export declare type QueryKitsune_SnippetsArgs = {
|
|
150726
|
+
ids: Array<Scalars['ID']['input']>;
|
|
150727
|
+
};
|
|
150444
150728
|
export declare type QueryKitsune_SpacesArgs = {
|
|
150445
150729
|
ids: Array<Scalars['ID']['input']>;
|
|
150446
150730
|
};
|
|
@@ -150732,6 +151016,9 @@ export declare type QueryPermittedArgs = {
|
|
|
150732
151016
|
export declare type QueryPermsReportDownloadLinkForTaskArgs = {
|
|
150733
151017
|
id: Scalars['ID']['input'];
|
|
150734
151018
|
};
|
|
151019
|
+
export declare type QueryPlaybook_GeneratePlaybookArgs = {
|
|
151020
|
+
input: GeneratePlaybookInput;
|
|
151021
|
+
};
|
|
150735
151022
|
export declare type QueryPlaybook_JiraPlaybookArgs = {
|
|
150736
151023
|
playbookAri: Scalars['ID']['input'];
|
|
150737
151024
|
};
|
|
@@ -151009,6 +151296,12 @@ export declare type QueryRadar_PositionsSearchArgs = {
|
|
|
151009
151296
|
last?: InputMaybe<Scalars['Int']['input']>;
|
|
151010
151297
|
rql?: InputMaybe<Scalars['String']['input']>;
|
|
151011
151298
|
};
|
|
151299
|
+
export declare type QueryRadar_SkillByAriArgs = {
|
|
151300
|
+
id: Scalars['ID']['input'];
|
|
151301
|
+
};
|
|
151302
|
+
export declare type QueryRadar_SkillsByArisArgs = {
|
|
151303
|
+
ids: Array<Scalars['ID']['input']>;
|
|
151304
|
+
};
|
|
151012
151305
|
export declare type QueryRadar_ViewByAriArgs = {
|
|
151013
151306
|
id: Scalars['ID']['input'];
|
|
151014
151307
|
};
|
|
@@ -152241,7 +152534,7 @@ export declare type RadarMutationResponse = {
|
|
|
152241
152534
|
__typename?: 'RadarMutationResponse';
|
|
152242
152535
|
success?: Maybe<Scalars['Boolean']['output']>;
|
|
152243
152536
|
};
|
|
152244
|
-
export declare type RadarNode = RadarPosition | RadarView | RadarWorker;
|
|
152537
|
+
export declare type RadarNode = RadarPosition | RadarSkill | RadarView | RadarWorker;
|
|
152245
152538
|
export declare type RadarNonNumericFieldDefinition = RadarFieldDefinition & {
|
|
152246
152539
|
__typename?: 'RadarNonNumericFieldDefinition';
|
|
152247
152540
|
defaultOrder?: Maybe<Scalars['Int']['output']>;
|
|
@@ -152398,6 +152691,14 @@ export declare type RadarSettings = {
|
|
|
152398
152691
|
__typename?: 'RadarSettings';
|
|
152399
152692
|
permissions: RadarPermissions;
|
|
152400
152693
|
};
|
|
152694
|
+
export declare type RadarSkill = Node & {
|
|
152695
|
+
__typename?: 'RadarSkill';
|
|
152696
|
+
description?: Maybe<Scalars['String']['output']>;
|
|
152697
|
+
id: Scalars['ID']['output'];
|
|
152698
|
+
name: Scalars['String']['output'];
|
|
152699
|
+
parent?: Maybe<RadarSkill>;
|
|
152700
|
+
parentId?: Maybe<Scalars['ID']['output']>;
|
|
152701
|
+
};
|
|
152401
152702
|
export declare type RadarStaticStringFilterOptions = RadarFilterOptions & {
|
|
152402
152703
|
__typename?: 'RadarStaticStringFilterOptions';
|
|
152403
152704
|
functionOptions: Array<RadarFunction>;
|
|
@@ -155113,7 +155414,6 @@ export declare type SearchResultGraphDocument = SearchL2FeatureProvider & Search
|
|
|
155113
155414
|
permissionLevel?: Maybe<Scalars['String']['output']>;
|
|
155114
155415
|
providerId?: Maybe<Scalars['String']['output']>;
|
|
155115
155416
|
scoreL2Ranker?: Maybe<Scalars['Float']['output']>;
|
|
155116
|
-
status?: Maybe<Scalars['String']['output']>;
|
|
155117
155417
|
subtype?: Maybe<Scalars['String']['output']>;
|
|
155118
155418
|
title: Scalars['String']['output'];
|
|
155119
155419
|
type: SearchResultType;
|
|
@@ -182988,6 +183288,7 @@ export declare type TownsquareProjectsRemoveJiraWorkItemLinkPayload = {
|
|
|
182988
183288
|
};
|
|
182989
183289
|
export declare type TownsquareProjectsRemoveMemberInput = {
|
|
182990
183290
|
projectId: Scalars['ID']['input'];
|
|
183291
|
+
revokeAccess?: InputMaybe<Scalars['Boolean']['input']>;
|
|
182991
183292
|
userId: Scalars['ID']['input'];
|
|
182992
183293
|
};
|
|
182993
183294
|
export declare type TownsquareProjectsRemoveMemberPayload = {
|
|
@@ -183010,6 +183311,7 @@ export declare type TownsquareProjectsRemoveNumericCustomFieldValuePayload = {
|
|
|
183010
183311
|
};
|
|
183011
183312
|
export declare type TownsquareProjectsRemoveTeamContributorsInput = {
|
|
183012
183313
|
projectId: Scalars['ID']['input'];
|
|
183314
|
+
revokeAccess?: InputMaybe<Scalars['Boolean']['input']>;
|
|
183013
183315
|
teamId: Scalars['ID']['input'];
|
|
183014
183316
|
};
|
|
183015
183317
|
export declare type TownsquareProjectsRemoveTeamContributorsPayload = {
|
|
@@ -184610,6 +184912,15 @@ export declare type TrelloBoardWorkspaceUpdated = {
|
|
|
184610
184912
|
id?: Maybe<Scalars['ID']['output']>;
|
|
184611
184913
|
objectId?: Maybe<Scalars['ID']['output']>;
|
|
184612
184914
|
};
|
|
184915
|
+
export declare type TrelloBulkDeleteListInput = {
|
|
184916
|
+
listIds: Array<Scalars['ID']['input']>;
|
|
184917
|
+
};
|
|
184918
|
+
export declare type TrelloBulkDeleteListPayload = Payload & {
|
|
184919
|
+
__typename?: 'TrelloBulkDeleteListPayload';
|
|
184920
|
+
errors?: Maybe<Array<MutationError>>;
|
|
184921
|
+
failedListIds: Array<Scalars['ID']['output']>;
|
|
184922
|
+
success: Scalars['Boolean']['output'];
|
|
184923
|
+
};
|
|
184613
184924
|
export declare type TrelloCard = Node & TrelloBaseCard & {
|
|
184614
184925
|
__typename?: 'TrelloCard';
|
|
184615
184926
|
actions?: Maybe<TrelloCardActionConnection>;
|
|
@@ -185161,6 +185472,15 @@ export declare type TrelloChecklistUpdated = {
|
|
|
185161
185472
|
objectId: Scalars['ID']['output'];
|
|
185162
185473
|
position?: Maybe<Scalars['Float']['output']>;
|
|
185163
185474
|
};
|
|
185475
|
+
export declare type TrelloCloseBoardInput = {
|
|
185476
|
+
boardId: Scalars['ID']['input'];
|
|
185477
|
+
};
|
|
185478
|
+
export declare type TrelloCloseBoardPayload = Payload & {
|
|
185479
|
+
__typename?: 'TrelloCloseBoardPayload';
|
|
185480
|
+
board?: Maybe<TrelloBoard>;
|
|
185481
|
+
errors?: Maybe<Array<MutationError>>;
|
|
185482
|
+
success: Scalars['Boolean']['output'];
|
|
185483
|
+
};
|
|
185164
185484
|
export declare type TrelloCommentCardAction = TrelloAction & TrelloCardActionData & {
|
|
185165
185485
|
__typename?: 'TrelloCommentCardAction';
|
|
185166
185486
|
appCreator?: Maybe<TrelloAppCreator>;
|
|
@@ -186381,6 +186701,8 @@ export declare type TrelloMutationApi = {
|
|
|
186381
186701
|
archiveCard?: Maybe<TrelloArchiveCardPayload>;
|
|
186382
186702
|
assignCardToPlannerCalendarEvent?: Maybe<TrelloAssignCardToPlannerCalendarEventPayload>;
|
|
186383
186703
|
assignCardsToPlannerCalendarEvent?: Maybe<TrelloAssignCardsToPlannerCalendarEventPayload>;
|
|
186704
|
+
bulkDeleteList?: Maybe<TrelloBulkDeleteListPayload>;
|
|
186705
|
+
closeBoard?: Maybe<TrelloCloseBoardPayload>;
|
|
186384
186706
|
createApplication?: Maybe<TrelloCreateApplicationPayload>;
|
|
186385
186707
|
createBoardWithAi?: Maybe<TrelloCreateBoardWithAiPayload>;
|
|
186386
186708
|
createCard?: Maybe<TrelloCreateCardPayload>;
|
|
@@ -186424,6 +186746,7 @@ export declare type TrelloMutationApi = {
|
|
|
186424
186746
|
unwatchCard?: Maybe<TrelloWatchCardPayload>;
|
|
186425
186747
|
updateAiRule?: Maybe<TrelloUpdateAiRulePayload>;
|
|
186426
186748
|
updateBoardBackground?: Maybe<TrelloUpdateBoardBackgroundPayload>;
|
|
186749
|
+
updateBoardDescription?: Maybe<TrelloUpdateBoardDescriptionPayload>;
|
|
186427
186750
|
updateBoardIsTemplate?: Maybe<TrelloUpdateBoardIsTemplatePayload>;
|
|
186428
186751
|
updateBoardName?: Maybe<TrelloUpdateBoardNamePayload>;
|
|
186429
186752
|
updateBoardStarPosition?: Maybe<TrelloUpdateBoardStarPositionPayload>;
|
|
@@ -186475,6 +186798,12 @@ export declare type TrelloMutationApiAssignCardToPlannerCalendarEventArgs = {
|
|
|
186475
186798
|
export declare type TrelloMutationApiAssignCardsToPlannerCalendarEventArgs = {
|
|
186476
186799
|
input: TrelloAssignCardsToPlannerCalendarEventInput;
|
|
186477
186800
|
};
|
|
186801
|
+
export declare type TrelloMutationApiBulkDeleteListArgs = {
|
|
186802
|
+
input: TrelloBulkDeleteListInput;
|
|
186803
|
+
};
|
|
186804
|
+
export declare type TrelloMutationApiCloseBoardArgs = {
|
|
186805
|
+
input: TrelloCloseBoardInput;
|
|
186806
|
+
};
|
|
186478
186807
|
export declare type TrelloMutationApiCreateApplicationArgs = {
|
|
186479
186808
|
input: TrelloCreateApplicationInput;
|
|
186480
186809
|
};
|
|
@@ -186598,6 +186927,9 @@ export declare type TrelloMutationApiUpdateAiRuleArgs = {
|
|
|
186598
186927
|
export declare type TrelloMutationApiUpdateBoardBackgroundArgs = {
|
|
186599
186928
|
input: TrelloUpdateBoardBackgroundInput;
|
|
186600
186929
|
};
|
|
186930
|
+
export declare type TrelloMutationApiUpdateBoardDescriptionArgs = {
|
|
186931
|
+
input: TrelloUpdateBoardDescriptionInput;
|
|
186932
|
+
};
|
|
186601
186933
|
export declare type TrelloMutationApiUpdateBoardIsTemplateArgs = {
|
|
186602
186934
|
input: TrelloUpdateBoardIsTemplateInput;
|
|
186603
186935
|
};
|
|
@@ -187166,6 +187498,7 @@ export declare type TrelloPlannerCardsWithDueDatesUpdatedFilter = {
|
|
|
187166
187498
|
export declare type TrelloPlannerDueDateCardsSettings = {
|
|
187167
187499
|
__typename?: 'TrelloPlannerDueDateCardsSettings';
|
|
187168
187500
|
assignedToMe?: Maybe<Scalars['Boolean']['output']>;
|
|
187501
|
+
soloBoards?: Maybe<Scalars['Boolean']['output']>;
|
|
187169
187502
|
};
|
|
187170
187503
|
export declare type TrelloPlannerEventCardConnection = {
|
|
187171
187504
|
__typename?: 'TrelloPlannerEventCardConnection';
|
|
@@ -188058,6 +188391,16 @@ export declare type TrelloUpdateBoardBackgroundPayload = Payload & {
|
|
|
188058
188391
|
prefs?: Maybe<TrelloBoardPrefs>;
|
|
188059
188392
|
success: Scalars['Boolean']['output'];
|
|
188060
188393
|
};
|
|
188394
|
+
export declare type TrelloUpdateBoardDescriptionInput = {
|
|
188395
|
+
boardId: Scalars['ID']['input'];
|
|
188396
|
+
description: Scalars['String']['input'];
|
|
188397
|
+
};
|
|
188398
|
+
export declare type TrelloUpdateBoardDescriptionPayload = Payload & {
|
|
188399
|
+
__typename?: 'TrelloUpdateBoardDescriptionPayload';
|
|
188400
|
+
board?: Maybe<TrelloBaseBoard>;
|
|
188401
|
+
errors?: Maybe<Array<MutationError>>;
|
|
188402
|
+
success: Scalars['Boolean']['output'];
|
|
188403
|
+
};
|
|
188061
188404
|
export declare type TrelloUpdateBoardIsTemplateInput = {
|
|
188062
188405
|
boardId: Scalars['ID']['input'];
|
|
188063
188406
|
value: Scalars['Boolean']['input'];
|
|
@@ -188473,6 +188816,7 @@ export declare enum TrelloWorkOverviewDashboardJobStatus {
|
|
|
188473
188816
|
Completed = "COMPLETED",
|
|
188474
188817
|
Creating = "CREATING",
|
|
188475
188818
|
Failed = "FAILED",
|
|
188819
|
+
Importing = "IMPORTING",
|
|
188476
188820
|
Pending = "PENDING"
|
|
188477
188821
|
}
|
|
188478
188822
|
export declare type TrelloWorkOverviewDashboardJobUpdated = {
|
|
@@ -188496,6 +188840,7 @@ export declare type TrelloWorkspace = Node & {
|
|
|
188496
188840
|
displayBoardCount?: Maybe<Scalars['Int']['output']>;
|
|
188497
188841
|
displayName?: Maybe<Scalars['String']['output']>;
|
|
188498
188842
|
enterprise?: Maybe<TrelloEnterprise>;
|
|
188843
|
+
entitlement?: Maybe<CcpEntitlement>;
|
|
188499
188844
|
id: Scalars['ID']['output'];
|
|
188500
188845
|
jwmLink?: Maybe<TrelloJwmWorkspaceLink>;
|
|
188501
188846
|
limits?: Maybe<TrelloWorkspaceLimits>;
|
|
@@ -190683,9 +191028,14 @@ export declare type UpdatePolarisTreeConfig = {
|
|
|
190683
191028
|
export declare type UpdatePolarisTreeHierarchyItem = {
|
|
190684
191029
|
fields?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
190685
191030
|
filter?: InputMaybe<Array<PolarisViewFilterInput>>;
|
|
190686
|
-
items?: InputMaybe<Array<
|
|
191031
|
+
items?: InputMaybe<Array<UpdatePolarisTreeHierarchyItemEntry>>;
|
|
190687
191032
|
type?: InputMaybe<PolarisTreeHierarchyType>;
|
|
190688
191033
|
};
|
|
191034
|
+
export declare type UpdatePolarisTreeHierarchyItemEntry = {
|
|
191035
|
+
fieldKey?: InputMaybe<Scalars['String']['input']>;
|
|
191036
|
+
issueId?: InputMaybe<Scalars['String']['input']>;
|
|
191037
|
+
issueTypeName?: InputMaybe<Scalars['String']['input']>;
|
|
191038
|
+
};
|
|
190689
191039
|
export declare type UpdatePolarisViewArrangementInfoPayload = Payload & {
|
|
190690
191040
|
__typename?: 'UpdatePolarisViewArrangementInfoPayload';
|
|
190691
191041
|
errors?: Maybe<Array<MutationError>>;
|