@forge/cli-shared 8.15.2-next.3-experimental-6d4e84f → 8.15.2-next.3-experimental-375a008
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 +2 -2
- package/out/graphql/graphql-types.d.ts +702 -11
- package/out/graphql/graphql-types.d.ts.map +1 -1
- package/out/graphql/graphql-types.js +172 -38
- package/package.json +2 -2
|
@@ -128,6 +128,10 @@ export declare type Scalars = {
|
|
|
128
128
|
input: any;
|
|
129
129
|
output: any;
|
|
130
130
|
};
|
|
131
|
+
VTRI: {
|
|
132
|
+
input: any;
|
|
133
|
+
output: any;
|
|
134
|
+
};
|
|
131
135
|
};
|
|
132
136
|
export declare type AiConfigResponse = {
|
|
133
137
|
__typename?: 'AIConfigResponse';
|
|
@@ -199,6 +203,17 @@ export declare type AvpAnalyticsCreateModelPayload = Payload & {
|
|
|
199
203
|
model?: Maybe<AvpAnalyticsModel>;
|
|
200
204
|
success: Scalars['Boolean']['output'];
|
|
201
205
|
};
|
|
206
|
+
export declare type AvpAnalyticsDataSource = {
|
|
207
|
+
__typename?: 'AVPAnalyticsDataSource';
|
|
208
|
+
hasSubDataSources: Scalars['Boolean']['output'];
|
|
209
|
+
id: Scalars['ID']['output'];
|
|
210
|
+
metadata?: Maybe<AvpAnalyticsDataSourceMetadata>;
|
|
211
|
+
name: Scalars['String']['output'];
|
|
212
|
+
subDataSources?: Maybe<Array<AvpAnalyticsDataSource>>;
|
|
213
|
+
};
|
|
214
|
+
export declare type AvpAnalyticsDataSourceSubDataSourcesArgs = {
|
|
215
|
+
searchInput?: InputMaybe<AvpAnalyticsSearchInput>;
|
|
216
|
+
};
|
|
202
217
|
export declare type AvpAnalyticsDataSourceMetadata = {
|
|
203
218
|
__typename?: 'AVPAnalyticsDataSourceMetadata';
|
|
204
219
|
icon: Scalars['String']['output'];
|
|
@@ -210,11 +225,32 @@ export declare type AvpAnalyticsFilter = {
|
|
|
210
225
|
export declare type AvpAnalyticsFilterInput = {
|
|
211
226
|
filters?: InputMaybe<Array<AvpAnalyticsFilter>>;
|
|
212
227
|
};
|
|
228
|
+
export declare enum AvpAnalyticsFilterOperator {
|
|
229
|
+
After = "AFTER",
|
|
230
|
+
Before = "BEFORE",
|
|
231
|
+
Equals = "EQUALS",
|
|
232
|
+
IsEmpty = "IS_EMPTY",
|
|
233
|
+
IsNotEmpty = "IS_NOT_EMPTY",
|
|
234
|
+
NotEquals = "NOT_EQUALS",
|
|
235
|
+
On = "ON",
|
|
236
|
+
Range = "RANGE"
|
|
237
|
+
}
|
|
213
238
|
export declare enum AvpAnalyticsFilterType {
|
|
214
239
|
ModelCreatedBy = "MODEL_CREATED_BY",
|
|
215
240
|
ModelLabel = "MODEL_LABEL",
|
|
216
241
|
ModelStatus = "MODEL_STATUS"
|
|
217
242
|
}
|
|
243
|
+
export declare type AvpAnalyticsFilterValue = {
|
|
244
|
+
__typename?: 'AVPAnalyticsFilterValue';
|
|
245
|
+
multiple?: Maybe<Array<Scalars['String']['output']>>;
|
|
246
|
+
range?: Maybe<AvpAnalyticsRangeValue>;
|
|
247
|
+
single?: Maybe<Scalars['String']['output']>;
|
|
248
|
+
};
|
|
249
|
+
export declare type AvpAnalyticsFilterValueInput = {
|
|
250
|
+
multiple?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
251
|
+
range?: InputMaybe<AvpAnalyticsRangeValueInput>;
|
|
252
|
+
single?: InputMaybe<Scalars['String']['input']>;
|
|
253
|
+
};
|
|
218
254
|
export declare type AvpAnalyticsFormulaColumn = AvpAnalyticsColumn & {
|
|
219
255
|
__typename?: 'AVPAnalyticsFormulaColumn';
|
|
220
256
|
expression: Scalars['String']['output'];
|
|
@@ -225,10 +261,16 @@ export declare type AvpAnalyticsFormulaColumn = AvpAnalyticsColumn & {
|
|
|
225
261
|
};
|
|
226
262
|
export declare type AvpAnalyticsFormulaColumnInput = {
|
|
227
263
|
expression: Scalars['String']['input'];
|
|
264
|
+
id?: InputMaybe<Scalars['ID']['input']>;
|
|
228
265
|
isHidden: Scalars['Boolean']['input'];
|
|
229
266
|
name: Scalars['String']['input'];
|
|
230
267
|
type: AvpAnalyticsColumnType;
|
|
231
268
|
};
|
|
269
|
+
export declare type AvpAnalyticsGetDataSourcesInput = {
|
|
270
|
+
cloudId: Scalars['ID']['input'];
|
|
271
|
+
searchInput?: InputMaybe<AvpAnalyticsSearchInput>;
|
|
272
|
+
workspaceId: Scalars['ID']['input'];
|
|
273
|
+
};
|
|
232
274
|
export declare type AvpAnalyticsGetModelInput = {
|
|
233
275
|
cloudId: Scalars['ID']['input'];
|
|
234
276
|
modelId: Scalars['ID']['input'];
|
|
@@ -343,9 +385,13 @@ export declare type AvpAnalyticsModelEdge = {
|
|
|
343
385
|
export declare type AvpAnalyticsModelFilter = {
|
|
344
386
|
__typename?: 'AVPAnalyticsModelFilter';
|
|
345
387
|
columnName: Scalars['String']['output'];
|
|
388
|
+
operator: AvpAnalyticsFilterOperator;
|
|
389
|
+
value?: Maybe<AvpAnalyticsFilterValue>;
|
|
346
390
|
};
|
|
347
391
|
export declare type AvpAnalyticsModelFilterInput = {
|
|
348
392
|
columnName: Scalars['String']['input'];
|
|
393
|
+
operator: AvpAnalyticsFilterOperator;
|
|
394
|
+
value?: InputMaybe<AvpAnalyticsFilterValueInput>;
|
|
349
395
|
};
|
|
350
396
|
export declare type AvpAnalyticsModelInput = {
|
|
351
397
|
id: Scalars['ID']['input'];
|
|
@@ -391,6 +437,19 @@ export declare type AvpAnalyticsPaginationInput = {
|
|
|
391
437
|
pageNumber?: InputMaybe<Scalars['Int']['input']>;
|
|
392
438
|
pageSize?: InputMaybe<Scalars['Int']['input']>;
|
|
393
439
|
};
|
|
440
|
+
export declare type AvpAnalyticsRangeValue = {
|
|
441
|
+
__typename?: 'AVPAnalyticsRangeValue';
|
|
442
|
+
fromExpression?: Maybe<Scalars['String']['output']>;
|
|
443
|
+
fromValue?: Maybe<Scalars['String']['output']>;
|
|
444
|
+
toExpression?: Maybe<Scalars['String']['output']>;
|
|
445
|
+
toValue?: Maybe<Scalars['String']['output']>;
|
|
446
|
+
};
|
|
447
|
+
export declare type AvpAnalyticsRangeValueInput = {
|
|
448
|
+
fromExpression?: InputMaybe<Scalars['String']['input']>;
|
|
449
|
+
fromValue?: InputMaybe<Scalars['String']['input']>;
|
|
450
|
+
toExpression?: InputMaybe<Scalars['String']['input']>;
|
|
451
|
+
toValue?: InputMaybe<Scalars['String']['input']>;
|
|
452
|
+
};
|
|
394
453
|
export declare type AvpAnalyticsSearchInput = {
|
|
395
454
|
searchQuery: Scalars['String']['input'];
|
|
396
455
|
};
|
|
@@ -404,6 +463,7 @@ export declare type AvpAnalyticsSimpleColumn = AvpAnalyticsColumn & {
|
|
|
404
463
|
type: AvpAnalyticsColumnType;
|
|
405
464
|
};
|
|
406
465
|
export declare type AvpAnalyticsSimpleColumnInput = {
|
|
466
|
+
id?: InputMaybe<Scalars['ID']['input']>;
|
|
407
467
|
isHidden: Scalars['Boolean']['input'];
|
|
408
468
|
name: Scalars['String']['input'];
|
|
409
469
|
sourceColumnId: Scalars['ID']['input'];
|
|
@@ -4020,6 +4080,11 @@ export declare type AgentStudioDeleteAgentPayload = Payload & {
|
|
|
4020
4080
|
errors?: Maybe<Array<MutationError>>;
|
|
4021
4081
|
success: Scalars['Boolean']['output'];
|
|
4022
4082
|
};
|
|
4083
|
+
export declare type AgentStudioDeleteBatchEvaluationJobRunPayload = Payload & {
|
|
4084
|
+
__typename?: 'AgentStudioDeleteBatchEvaluationJobRunPayload';
|
|
4085
|
+
errors?: Maybe<Array<MutationError>>;
|
|
4086
|
+
success: Scalars['Boolean']['output'];
|
|
4087
|
+
};
|
|
4023
4088
|
export declare type AgentStudioDeleteDatasetItemPayload = Payload & {
|
|
4024
4089
|
__typename?: 'AgentStudioDeleteDatasetItemPayload';
|
|
4025
4090
|
errors?: Maybe<Array<MutationError>>;
|
|
@@ -4211,6 +4276,64 @@ export declare type AgentStudioKnowledgeFiltersInput = {
|
|
|
4211
4276
|
jsmFilter?: InputMaybe<AgentStudioJsmKnowledgeFilterInput>;
|
|
4212
4277
|
slackFilter?: InputMaybe<AgentStudioSlackKnowledgeFilterInput>;
|
|
4213
4278
|
};
|
|
4279
|
+
export declare type AgentStudioKnowledgeGapEvidences = {
|
|
4280
|
+
__typename?: 'AgentStudioKnowledgeGapEvidences';
|
|
4281
|
+
conversationIds?: Maybe<Array<Scalars['String']['output']>>;
|
|
4282
|
+
fileIds?: Maybe<Array<Scalars['String']['output']>>;
|
|
4283
|
+
issueIds?: Maybe<Array<Scalars['String']['output']>>;
|
|
4284
|
+
};
|
|
4285
|
+
export declare type AgentStudioKnowledgeGapSuggestionArticle = {
|
|
4286
|
+
__typename?: 'AgentStudioKnowledgeGapSuggestionArticle';
|
|
4287
|
+
confluencePageAri?: Maybe<Scalars['String']['output']>;
|
|
4288
|
+
containerAri?: Maybe<Scalars['String']['output']>;
|
|
4289
|
+
createdAt?: Maybe<Scalars['String']['output']>;
|
|
4290
|
+
description?: Maybe<Scalars['String']['output']>;
|
|
4291
|
+
evidences?: Maybe<AgentStudioKnowledgeGapEvidences>;
|
|
4292
|
+
id: Scalars['ID']['output'];
|
|
4293
|
+
knowledgeCollectionId?: Maybe<Scalars['ID']['output']>;
|
|
4294
|
+
reviewedAt?: Maybe<Scalars['String']['output']>;
|
|
4295
|
+
reviewedBy?: Maybe<Scalars['String']['output']>;
|
|
4296
|
+
status?: Maybe<AgentStudioKnowledgeGapSuggestionArticleStatus>;
|
|
4297
|
+
title?: Maybe<Scalars['String']['output']>;
|
|
4298
|
+
topicId?: Maybe<Scalars['ID']['output']>;
|
|
4299
|
+
};
|
|
4300
|
+
export declare type AgentStudioKnowledgeGapSuggestionArticleEdge = {
|
|
4301
|
+
__typename?: 'AgentStudioKnowledgeGapSuggestionArticleEdge';
|
|
4302
|
+
cursor: Scalars['String']['output'];
|
|
4303
|
+
node?: Maybe<AgentStudioKnowledgeGapSuggestionArticle>;
|
|
4304
|
+
};
|
|
4305
|
+
export declare type AgentStudioKnowledgeGapSuggestionArticleResult = {
|
|
4306
|
+
__typename?: 'AgentStudioKnowledgeGapSuggestionArticleResult';
|
|
4307
|
+
edges: Array<AgentStudioKnowledgeGapSuggestionArticleEdge>;
|
|
4308
|
+
nodes?: Maybe<Array<Maybe<AgentStudioKnowledgeGapSuggestionArticle>>>;
|
|
4309
|
+
pageInfo: PageInfo;
|
|
4310
|
+
};
|
|
4311
|
+
export declare enum AgentStudioKnowledgeGapSuggestionArticleStatus {
|
|
4312
|
+
Accepted = "ACCEPTED",
|
|
4313
|
+
Pending = "PENDING",
|
|
4314
|
+
Rejected = "REJECTED"
|
|
4315
|
+
}
|
|
4316
|
+
export declare type AgentStudioKnowledgeGapUploadJob = {
|
|
4317
|
+
__typename?: 'AgentStudioKnowledgeGapUploadJob';
|
|
4318
|
+
containerId?: Maybe<Scalars['String']['output']>;
|
|
4319
|
+
createdAt?: Maybe<Scalars['String']['output']>;
|
|
4320
|
+
finishedAt?: Maybe<Scalars['String']['output']>;
|
|
4321
|
+
id: Scalars['ID']['output'];
|
|
4322
|
+
kgUploadFileId?: Maybe<Scalars['String']['output']>;
|
|
4323
|
+
startedAt?: Maybe<Scalars['String']['output']>;
|
|
4324
|
+
status?: Maybe<AgentStudioKnowledgeGapUploadJobStatus>;
|
|
4325
|
+
triggeredBy?: Maybe<Scalars['String']['output']>;
|
|
4326
|
+
updatedAt?: Maybe<Scalars['String']['output']>;
|
|
4327
|
+
};
|
|
4328
|
+
export declare enum AgentStudioKnowledgeGapUploadJobStatus {
|
|
4329
|
+
Clustering = "CLUSTERING",
|
|
4330
|
+
Completed = "COMPLETED",
|
|
4331
|
+
Failed = "FAILED",
|
|
4332
|
+
Generating = "GENERATING",
|
|
4333
|
+
PartialComplete = "PARTIAL_COMPLETE",
|
|
4334
|
+
Pending = "PENDING",
|
|
4335
|
+
Processing = "PROCESSING"
|
|
4336
|
+
}
|
|
4214
4337
|
export declare type AgentStudioKnowledgeSource = {
|
|
4215
4338
|
__typename?: 'AgentStudioKnowledgeSource';
|
|
4216
4339
|
enabled?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -4672,6 +4795,7 @@ export declare type AgentWorkspaceAgent = {
|
|
|
4672
4795
|
skills: Array<AgentWorkspaceUserSkill>;
|
|
4673
4796
|
teamIds: Array<Scalars['ID']['output']>;
|
|
4674
4797
|
teamNames: Array<Scalars['String']['output']>;
|
|
4798
|
+
user?: Maybe<User>;
|
|
4675
4799
|
};
|
|
4676
4800
|
export declare type AgentWorkspaceAgentAvailability = {
|
|
4677
4801
|
__typename?: 'AgentWorkspaceAgentAvailability';
|
|
@@ -7021,7 +7145,7 @@ export declare type AssetsAriAttributeOnObject = AssetsAttributeOnObject & {
|
|
|
7021
7145
|
name: Scalars['String']['output'];
|
|
7022
7146
|
value?: Maybe<Array<AssetsAriAttributeValue>>;
|
|
7023
7147
|
};
|
|
7024
|
-
export declare type AssetsAriAttributeValue = AppUser | AtlassianAccountUser | CustomerUser | IdentityGroup | TeamV2;
|
|
7148
|
+
export declare type AssetsAriAttributeValue = AppUser | AtlassianAccountUser | CompassComponent | CustomerUser | IdentityGroup | TeamV2;
|
|
7025
7149
|
export declare type AssetsAttributeOnObject = {
|
|
7026
7150
|
attribute?: Maybe<AssetsObjectTypeAttribute>;
|
|
7027
7151
|
id: Scalars['ID']['output'];
|
|
@@ -7161,6 +7285,16 @@ export declare type AssetsDmBatchCreateComputeDictionaryValuesResponse = {
|
|
|
7161
7285
|
successCount: Scalars['Int']['output'];
|
|
7162
7286
|
totalCount: Scalars['Int']['output'];
|
|
7163
7287
|
};
|
|
7288
|
+
export declare type AssetsDmBigfixDefaultQueryMappingResponse = {
|
|
7289
|
+
__typename?: 'AssetsDMBigfixDefaultQueryMappingResponse';
|
|
7290
|
+
isSuccessful: Scalars['Boolean']['output'];
|
|
7291
|
+
mapping: Scalars['String']['output'];
|
|
7292
|
+
};
|
|
7293
|
+
export declare type AssetsDmBigfixDefaultQueryResponse = {
|
|
7294
|
+
__typename?: 'AssetsDMBigfixDefaultQueryResponse';
|
|
7295
|
+
isSuccessful: Scalars['Boolean']['output'];
|
|
7296
|
+
query: Scalars['String']['output'];
|
|
7297
|
+
};
|
|
7164
7298
|
export declare type AssetsDmChangeDataSourceStatusArgs = {
|
|
7165
7299
|
cloudId: Scalars['ID']['input'];
|
|
7166
7300
|
input: AssetsDmChangeDataSourceStatusInput;
|
|
@@ -9923,6 +10057,9 @@ export declare type BitbucketWorkspaceRepositoriesArgs = {
|
|
|
9923
10057
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
9924
10058
|
permissionFilter?: InputMaybe<BitbucketPermission>;
|
|
9925
10059
|
};
|
|
10060
|
+
export declare type BlockServiceBatchCreateBlocksInput = {
|
|
10061
|
+
blocks: Array<BlockServiceCreateBlockInput>;
|
|
10062
|
+
};
|
|
9926
10063
|
export declare type BlockServiceBatchRetrieveBlocksInput = {
|
|
9927
10064
|
blockAris: Array<Scalars['String']['input']>;
|
|
9928
10065
|
blockIdentifiers?: InputMaybe<Array<BlockServiceBlockIdentifierInput>>;
|
|
@@ -11049,6 +11186,7 @@ export declare type CcpEntitlement = CommerceEntitlement & Node & {
|
|
|
11049
11186
|
experienceCapabilities?: Maybe<CcpEntitlementExperienceCapabilities>;
|
|
11050
11187
|
featureOverrides?: Maybe<Array<Maybe<CcpMapEntry>>>;
|
|
11051
11188
|
featureVariables?: Maybe<Array<Maybe<CcpMapEntry>>>;
|
|
11189
|
+
hasSid?: Maybe<Scalars['Boolean']['output']>;
|
|
11052
11190
|
id: Scalars['ID']['output'];
|
|
11053
11191
|
invoiceRequests?: Maybe<Array<Maybe<CcpInvoiceRequest>>>;
|
|
11054
11192
|
isEligibleForCloudMigrationTrial?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -15334,6 +15472,7 @@ export declare type CommerceExpEntitlementDetailsForCreateEntitlement = {
|
|
|
15334
15472
|
};
|
|
15335
15473
|
export declare type CommerceExpEntitlementFilter = {
|
|
15336
15474
|
excludeMultiInstanceChild?: InputMaybe<Scalars['Boolean']['input']>;
|
|
15475
|
+
excludedProductKeys?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
15337
15476
|
includeFutureDated?: InputMaybe<Scalars['Boolean']['input']>;
|
|
15338
15477
|
includeManuallyBilled?: InputMaybe<Scalars['Boolean']['input']>;
|
|
15339
15478
|
isSandbox?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -25210,6 +25349,14 @@ export declare enum ConfluenceMutationContentStatus {
|
|
|
25210
25349
|
Current = "CURRENT",
|
|
25211
25350
|
Draft = "DRAFT"
|
|
25212
25351
|
}
|
|
25352
|
+
export declare type ConfluenceNbmAddGlobalTransformerInput = {
|
|
25353
|
+
transformerJson: Scalars['String']['input'];
|
|
25354
|
+
};
|
|
25355
|
+
export declare type ConfluenceNbmAddGlobalTransformerPayload = Payload & {
|
|
25356
|
+
__typename?: 'ConfluenceNbmAddGlobalTransformerPayload';
|
|
25357
|
+
errors?: Maybe<Array<MutationError>>;
|
|
25358
|
+
success: Scalars['Boolean']['output'];
|
|
25359
|
+
};
|
|
25213
25360
|
export declare type ConfluenceNbmBulkUpdateVerificationEntryInput = {
|
|
25214
25361
|
scanId: Scalars['ID']['input'];
|
|
25215
25362
|
verificationEntries: Array<InputMaybe<ConfluenceNbmVerificationEntryInput>>;
|
|
@@ -26818,9 +26965,11 @@ export declare type ConfluenceRestrictionsResult = {
|
|
|
26818
26965
|
export declare type ConfluenceReviewerDecisionInfo = {
|
|
26819
26966
|
__typename?: 'ConfluenceReviewerDecisionInfo';
|
|
26820
26967
|
comment?: Maybe<Scalars['String']['output']>;
|
|
26968
|
+
decisionId?: Maybe<Scalars['ID']['output']>;
|
|
26821
26969
|
lastModifiedDate?: Maybe<ConfluenceApprovalsDate>;
|
|
26822
26970
|
principalId: Scalars['String']['output'];
|
|
26823
26971
|
principalType: ConfluencePrincipalType;
|
|
26972
|
+
required?: Maybe<Scalars['Boolean']['output']>;
|
|
26824
26973
|
reviewerDecisionStatus?: Maybe<ConfluenceReviewerDecisionState>;
|
|
26825
26974
|
user?: Maybe<AtlassianUser>;
|
|
26826
26975
|
};
|
|
@@ -28474,6 +28623,10 @@ export declare enum ConfluenceWorkflowReviewStatus {
|
|
|
28474
28623
|
}
|
|
28475
28624
|
export declare type ConfluenceWorkflowReviewWithDecisions = {
|
|
28476
28625
|
__typename?: 'ConfluenceWorkflowReviewWithDecisions';
|
|
28626
|
+
creationDate?: Maybe<ConfluenceApprovalsDate>;
|
|
28627
|
+
creator?: Maybe<AtlassianUser>;
|
|
28628
|
+
creatorAaid?: Maybe<Scalars['ID']['output']>;
|
|
28629
|
+
id: Scalars['ID']['output'];
|
|
28477
28630
|
reviewComment?: Maybe<Scalars['String']['output']>;
|
|
28478
28631
|
reviewLastModified?: Maybe<ConfluenceApprovalsDate>;
|
|
28479
28632
|
reviewStatus: ConfluenceWorkflowReviewStatus;
|
|
@@ -35600,9 +35753,13 @@ export declare type DevAiRunAutofixScanInput = {
|
|
|
35600
35753
|
};
|
|
35601
35754
|
export declare type DevAiSandbox = {
|
|
35602
35755
|
__typename?: 'DevAiSandbox';
|
|
35756
|
+
error?: Maybe<DevAiSandboxError>;
|
|
35603
35757
|
progress?: Maybe<DevAiSandboxProgress>;
|
|
35604
35758
|
readiness?: Maybe<DevAiSandboxReadiness>;
|
|
35605
35759
|
};
|
|
35760
|
+
export declare enum DevAiSandboxError {
|
|
35761
|
+
Unknown = "UNKNOWN"
|
|
35762
|
+
}
|
|
35606
35763
|
export declare type DevAiSandboxProgress = {
|
|
35607
35764
|
name?: Maybe<Scalars['String']['output']>;
|
|
35608
35765
|
};
|
|
@@ -39501,6 +39658,7 @@ export declare type ExternalPullRequest = Node & {
|
|
|
39501
39658
|
displayId?: Maybe<Scalars['String']['output']>;
|
|
39502
39659
|
displayName?: Maybe<Scalars['String']['output']>;
|
|
39503
39660
|
id: Scalars['ID']['output'];
|
|
39661
|
+
largeDescription?: Maybe<ExternalLargeContent>;
|
|
39504
39662
|
lastUpdate?: Maybe<Scalars['String']['output']>;
|
|
39505
39663
|
lastUpdatedBy?: Maybe<ExternalUser>;
|
|
39506
39664
|
owners?: Maybe<Array<Maybe<ExternalUser>>>;
|
|
@@ -92951,6 +93109,197 @@ export declare type GraphStoreVulnerabilityAssociatedIssueSortInput = {
|
|
|
92951
93109
|
export declare type GraphStoreWorkerAssociatedExternalWorkerSortInput = {
|
|
92952
93110
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
92953
93111
|
};
|
|
93112
|
+
export declare type GravityCreateViewFromTemplateInput = {
|
|
93113
|
+
name?: InputMaybe<Scalars['String']['input']>;
|
|
93114
|
+
projectId: Scalars['ID']['input'];
|
|
93115
|
+
refMappings?: InputMaybe<GravityRefMappingsInput>;
|
|
93116
|
+
refResolutionStrategy?: InputMaybe<GravityRefResolutionStrategy>;
|
|
93117
|
+
templateId: Scalars['ID']['input'];
|
|
93118
|
+
};
|
|
93119
|
+
export declare type GravityCreateViewFromTemplatePayload = Payload & {
|
|
93120
|
+
__typename?: 'GravityCreateViewFromTemplatePayload';
|
|
93121
|
+
createdViewId: Scalars['ID']['output'];
|
|
93122
|
+
errors?: Maybe<Array<MutationError>>;
|
|
93123
|
+
success: Scalars['Boolean']['output'];
|
|
93124
|
+
};
|
|
93125
|
+
export declare type GravityField = {
|
|
93126
|
+
__typename?: 'GravityField';
|
|
93127
|
+
configuration?: Maybe<Scalars['JSON']['output']>;
|
|
93128
|
+
custom: Scalars['Boolean']['output'];
|
|
93129
|
+
description?: Maybe<Scalars['JSON']['output']>;
|
|
93130
|
+
global: Scalars['Boolean']['output'];
|
|
93131
|
+
key: Scalars['String']['output'];
|
|
93132
|
+
name: Scalars['String']['output'];
|
|
93133
|
+
options?: Maybe<Array<Scalars['JSON']['output']>>;
|
|
93134
|
+
type: Scalars['String']['output'];
|
|
93135
|
+
};
|
|
93136
|
+
export declare type GravityFieldDefinition = {
|
|
93137
|
+
__typename?: 'GravityFieldDefinition';
|
|
93138
|
+
configuration?: Maybe<Scalars['JSON']['output']>;
|
|
93139
|
+
description?: Maybe<Scalars['JSON']['output']>;
|
|
93140
|
+
global: Scalars['Boolean']['output'];
|
|
93141
|
+
name: Scalars['String']['output'];
|
|
93142
|
+
options?: Maybe<Array<Scalars['JSON']['output']>>;
|
|
93143
|
+
ref: Scalars['VTRI']['output'];
|
|
93144
|
+
type: Scalars['String']['output'];
|
|
93145
|
+
};
|
|
93146
|
+
export declare type GravityFieldMappingProposals = {
|
|
93147
|
+
__typename?: 'GravityFieldMappingProposals';
|
|
93148
|
+
proposals: Array<GravityField>;
|
|
93149
|
+
ref: Scalars['VTRI']['output'];
|
|
93150
|
+
};
|
|
93151
|
+
export declare type GravityFieldRefMappingInput = {
|
|
93152
|
+
key: Scalars['String']['input'];
|
|
93153
|
+
ref: Scalars['VTRI']['input'];
|
|
93154
|
+
};
|
|
93155
|
+
export declare type GravityRefMappingProposals = {
|
|
93156
|
+
__typename?: 'GravityRefMappingProposals';
|
|
93157
|
+
fields: Array<GravityFieldMappingProposals>;
|
|
93158
|
+
};
|
|
93159
|
+
export declare type GravityRefMappingsInput = {
|
|
93160
|
+
fields: Array<GravityFieldRefMappingInput>;
|
|
93161
|
+
};
|
|
93162
|
+
export declare enum GravityRefResolutionStrategy {
|
|
93163
|
+
CreateIfMissing = "CREATE_IF_MISSING",
|
|
93164
|
+
FailIfMissing = "FAIL_IF_MISSING",
|
|
93165
|
+
FirstBestMatchThenCreate = "FIRST_BEST_MATCH_THEN_CREATE",
|
|
93166
|
+
FirstBestMatchThenFail = "FIRST_BEST_MATCH_THEN_FAIL",
|
|
93167
|
+
Match = "MATCH"
|
|
93168
|
+
}
|
|
93169
|
+
export declare enum GravitySortOrder {
|
|
93170
|
+
Asc = "ASC",
|
|
93171
|
+
Desc = "DESC"
|
|
93172
|
+
}
|
|
93173
|
+
export declare type GravityView = {
|
|
93174
|
+
__typename?: 'GravityView';
|
|
93175
|
+
config: GravityViewConfig;
|
|
93176
|
+
description?: Maybe<Scalars['JSON']['output']>;
|
|
93177
|
+
emoji?: Maybe<Scalars['String']['output']>;
|
|
93178
|
+
name: Scalars['String']['output'];
|
|
93179
|
+
visualizationType: GravityViewVisualizationType;
|
|
93180
|
+
};
|
|
93181
|
+
export declare enum GravityViewColorStyle {
|
|
93182
|
+
Background = "BACKGROUND",
|
|
93183
|
+
Highlight = "HIGHLIGHT"
|
|
93184
|
+
}
|
|
93185
|
+
export declare enum GravityViewColumnSize {
|
|
93186
|
+
Default = "DEFAULT",
|
|
93187
|
+
Large = "LARGE",
|
|
93188
|
+
Small = "SMALL"
|
|
93189
|
+
}
|
|
93190
|
+
export declare type GravityViewConfig = {
|
|
93191
|
+
__typename?: 'GravityViewConfig';
|
|
93192
|
+
boldColors?: Maybe<Scalars['Boolean']['output']>;
|
|
93193
|
+
colorBy?: Maybe<Scalars['VTRI']['output']>;
|
|
93194
|
+
colorStyle?: Maybe<GravityViewColorStyle>;
|
|
93195
|
+
columnSize?: Maybe<GravityViewColumnSize>;
|
|
93196
|
+
fields: Array<Scalars['VTRI']['output']>;
|
|
93197
|
+
filter: Array<GravityViewFilter>;
|
|
93198
|
+
groupBy?: Maybe<Scalars['VTRI']['output']>;
|
|
93199
|
+
groupsFilter?: Maybe<Array<GravityViewFilter>>;
|
|
93200
|
+
hideEmptyColumns?: Maybe<Scalars['Boolean']['output']>;
|
|
93201
|
+
hideEmptyGroups?: Maybe<Scalars['Boolean']['output']>;
|
|
93202
|
+
layoutType?: Maybe<GravityViewLayoutType>;
|
|
93203
|
+
sort: Array<GravityViewSort>;
|
|
93204
|
+
sortMode?: Maybe<GravityViewSortMode>;
|
|
93205
|
+
verticalGroupBy?: Maybe<Scalars['VTRI']['output']>;
|
|
93206
|
+
verticalGroupsFilter?: Maybe<Array<GravityViewFilter>>;
|
|
93207
|
+
};
|
|
93208
|
+
export declare type GravityViewFilter = {
|
|
93209
|
+
__typename?: 'GravityViewFilter';
|
|
93210
|
+
field?: Maybe<Scalars['VTRI']['output']>;
|
|
93211
|
+
kind: GravityViewFilterKind;
|
|
93212
|
+
values: Array<GravityViewFilterValue>;
|
|
93213
|
+
};
|
|
93214
|
+
export declare enum GravityViewFilterEnumType {
|
|
93215
|
+
BoardColumn = "BOARD_COLUMN",
|
|
93216
|
+
ViewGroup = "VIEW_GROUP"
|
|
93217
|
+
}
|
|
93218
|
+
export declare enum GravityViewFilterKind {
|
|
93219
|
+
ConnectionFieldIdentity = "CONNECTION_FIELD_IDENTITY",
|
|
93220
|
+
FieldHasValue = "FIELD_HAS_VALUE",
|
|
93221
|
+
FieldIdentity = "FIELD_IDENTITY",
|
|
93222
|
+
FieldNumeric = "FIELD_NUMERIC",
|
|
93223
|
+
Interval = "INTERVAL",
|
|
93224
|
+
Text = "TEXT"
|
|
93225
|
+
}
|
|
93226
|
+
export declare enum GravityViewFilterOperator {
|
|
93227
|
+
EndAfterNow = "END_AFTER_NOW",
|
|
93228
|
+
EndBeforeNow = "END_BEFORE_NOW",
|
|
93229
|
+
Eq = "EQ",
|
|
93230
|
+
Gt = "GT",
|
|
93231
|
+
Gte = "GTE",
|
|
93232
|
+
ItemEndsAfter = "ITEM_ENDS_AFTER",
|
|
93233
|
+
ItemEndsAfterPast = "ITEM_ENDS_AFTER_PAST",
|
|
93234
|
+
ItemStartsBefore = "ITEM_STARTS_BEFORE",
|
|
93235
|
+
ItemStartsBeforeNext = "ITEM_STARTS_BEFORE_NEXT",
|
|
93236
|
+
Lt = "LT",
|
|
93237
|
+
Lte = "LTE",
|
|
93238
|
+
Neq = "NEQ",
|
|
93239
|
+
StartAfterNow = "START_AFTER_NOW",
|
|
93240
|
+
StartBeforeNow = "START_BEFORE_NOW"
|
|
93241
|
+
}
|
|
93242
|
+
export declare type GravityViewFilterValue = {
|
|
93243
|
+
__typename?: 'GravityViewFilterValue';
|
|
93244
|
+
enumValue?: Maybe<GravityViewFilterEnumType>;
|
|
93245
|
+
numericValue?: Maybe<Scalars['Float']['output']>;
|
|
93246
|
+
operator?: Maybe<GravityViewFilterOperator>;
|
|
93247
|
+
stringValue?: Maybe<Scalars['String']['output']>;
|
|
93248
|
+
};
|
|
93249
|
+
export declare enum GravityViewLayoutType {
|
|
93250
|
+
Compact = "COMPACT",
|
|
93251
|
+
Detailed = "DETAILED",
|
|
93252
|
+
Summary = "SUMMARY"
|
|
93253
|
+
}
|
|
93254
|
+
export declare type GravityViewSort = {
|
|
93255
|
+
__typename?: 'GravityViewSort';
|
|
93256
|
+
field: Scalars['VTRI']['output'];
|
|
93257
|
+
order: GravitySortOrder;
|
|
93258
|
+
};
|
|
93259
|
+
export declare enum GravityViewSortMode {
|
|
93260
|
+
FieldsSort = "FIELDS_SORT",
|
|
93261
|
+
ProjectRank = "PROJECT_RANK",
|
|
93262
|
+
ViewRank = "VIEW_RANK"
|
|
93263
|
+
}
|
|
93264
|
+
export declare type GravityViewTemplate = {
|
|
93265
|
+
__typename?: 'GravityViewTemplate';
|
|
93266
|
+
colorScheme?: Maybe<GravityViewTemplateColorScheme>;
|
|
93267
|
+
definitions?: Maybe<GravityViewTemplateDefinitions>;
|
|
93268
|
+
id: Scalars['ID']['output'];
|
|
93269
|
+
longDescription?: Maybe<Scalars['JSON']['output']>;
|
|
93270
|
+
name: Scalars['String']['output'];
|
|
93271
|
+
screenshot?: Maybe<GravityViewTemplateImage>;
|
|
93272
|
+
shortDescription?: Maybe<Scalars['JSON']['output']>;
|
|
93273
|
+
thumbnail?: Maybe<GravityViewTemplateImage>;
|
|
93274
|
+
view: GravityView;
|
|
93275
|
+
};
|
|
93276
|
+
export declare enum GravityViewTemplateColorScheme {
|
|
93277
|
+
Blue = "BLUE",
|
|
93278
|
+
Default = "DEFAULT",
|
|
93279
|
+
Green = "GREEN",
|
|
93280
|
+
Lime = "LIME",
|
|
93281
|
+
Magenta = "MAGENTA",
|
|
93282
|
+
Orange = "ORANGE",
|
|
93283
|
+
Purple = "PURPLE",
|
|
93284
|
+
Teal = "TEAL"
|
|
93285
|
+
}
|
|
93286
|
+
export declare type GravityViewTemplateDefinitions = {
|
|
93287
|
+
__typename?: 'GravityViewTemplateDefinitions';
|
|
93288
|
+
fields: Array<GravityFieldDefinition>;
|
|
93289
|
+
};
|
|
93290
|
+
export declare type GravityViewTemplateImage = {
|
|
93291
|
+
__typename?: 'GravityViewTemplateImage';
|
|
93292
|
+
alt?: Maybe<Scalars['String']['output']>;
|
|
93293
|
+
src: Scalars['String']['output'];
|
|
93294
|
+
srcDark?: Maybe<Scalars['String']['output']>;
|
|
93295
|
+
};
|
|
93296
|
+
export declare enum GravityViewVisualizationType {
|
|
93297
|
+
Board = "BOARD",
|
|
93298
|
+
List = "LIST",
|
|
93299
|
+
Matrix = "MATRIX",
|
|
93300
|
+
Table = "TABLE",
|
|
93301
|
+
Timeline = "TIMELINE"
|
|
93302
|
+
}
|
|
92954
93303
|
export declare type Group = {
|
|
92955
93304
|
__typename?: 'Group';
|
|
92956
93305
|
id?: Maybe<Scalars['String']['output']>;
|
|
@@ -99413,6 +99762,7 @@ export declare type JiraBoardViewSwimlaneLayout = Node & {
|
|
|
99413
99762
|
export declare type JiraBoardViewSwimlaneLayoutSwimlanesArgs = {
|
|
99414
99763
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
99415
99764
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
99765
|
+
settings?: InputMaybe<JiraBoardViewSettings>;
|
|
99416
99766
|
};
|
|
99417
99767
|
export declare type JiraBoardViewSyntheticFieldCardOption = JiraBoardViewCardOption & {
|
|
99418
99768
|
__typename?: 'JiraBoardViewSyntheticFieldCardOption';
|
|
@@ -106681,6 +107031,7 @@ export declare type JiraIssueSearchTimelineViewConfigSettings = {
|
|
|
106681
107031
|
__typename?: 'JiraIssueSearchTimelineViewConfigSettings';
|
|
106682
107032
|
aggregationConfig?: Maybe<JiraIssueSearchAggregationConfigSettings>;
|
|
106683
107033
|
barColorMode?: Maybe<JiraBarColorMode>;
|
|
107034
|
+
hideDependencies?: Maybe<Scalars['Boolean']['output']>;
|
|
106684
107035
|
hideReleases?: Maybe<Scalars['Boolean']['output']>;
|
|
106685
107036
|
hideWarnings?: Maybe<Scalars['Boolean']['output']>;
|
|
106686
107037
|
highlightedReleases?: Maybe<Array<Scalars['ID']['output']>>;
|
|
@@ -107630,6 +107981,7 @@ export declare type JiraJqlBuilderRecentlyUsedUsersArgs = {
|
|
|
107630
107981
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
107631
107982
|
before?: InputMaybe<Scalars['String']['input']>;
|
|
107632
107983
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
107984
|
+
includeAiAgents?: InputMaybe<Scalars['Boolean']['input']>;
|
|
107633
107985
|
last?: InputMaybe<Scalars['Int']['input']>;
|
|
107634
107986
|
};
|
|
107635
107987
|
export declare type JiraJqlBuilderSuggestedGroupsArgs = {
|
|
@@ -118233,11 +118585,11 @@ export declare type JiraTownsquareProjectEntry = {
|
|
|
118233
118585
|
hasPermission?: Maybe<Scalars['Boolean']['output']>;
|
|
118234
118586
|
iconName?: Maybe<Scalars['String']['output']>;
|
|
118235
118587
|
id?: Maybe<Scalars['String']['output']>;
|
|
118588
|
+
isWorkspaceActive?: Maybe<Scalars['Boolean']['output']>;
|
|
118236
118589
|
key?: Maybe<Scalars['String']['output']>;
|
|
118237
118590
|
name?: Maybe<Scalars['String']['output']>;
|
|
118238
118591
|
privateProject?: Maybe<Scalars['Boolean']['output']>;
|
|
118239
118592
|
state?: Maybe<Scalars['String']['output']>;
|
|
118240
|
-
workspaceActive?: Maybe<Scalars['Boolean']['output']>;
|
|
118241
118593
|
};
|
|
118242
118594
|
export declare type JiraTownsquareProjectField = JiraIssueField & JiraIssueFieldConfiguration & JiraUserIssueFieldConfiguration & Node & {
|
|
118243
118595
|
__typename?: 'JiraTownsquareProjectField';
|
|
@@ -120861,6 +121213,14 @@ export declare type JpdViewsServiceGlobalViewEdge = {
|
|
|
120861
121213
|
export declare type JpdViewsServiceGlobalViewsByCriteriaInput = {
|
|
120862
121214
|
containsText: Scalars['String']['input'];
|
|
120863
121215
|
};
|
|
121216
|
+
export declare type JpdViewsServiceGlobalViewsHydrationExample = {
|
|
121217
|
+
__typename?: 'JpdViewsServiceGlobalViewsHydrationExample';
|
|
121218
|
+
cloudId: Scalars['ID']['output'];
|
|
121219
|
+
viewsData?: Maybe<Array<Maybe<JpdViewsServiceGlobalView>>>;
|
|
121220
|
+
};
|
|
121221
|
+
export declare type JpdViewsServiceGlobalViewsHydrationExampleViewsDataArgs = {
|
|
121222
|
+
ids: Array<Scalars['ID']['input']>;
|
|
121223
|
+
};
|
|
120864
121224
|
export declare type JpdViewsServiceMatrixConfig = {
|
|
120865
121225
|
__typename?: 'JpdViewsServiceMatrixConfig';
|
|
120866
121226
|
axes: Array<JpdViewsServiceAxisConfig>;
|
|
@@ -122358,6 +122718,13 @@ export declare type KitsuneConnection = {
|
|
|
122358
122718
|
edges: Array<KitsuneEdge>;
|
|
122359
122719
|
pageInfo: PageInfo;
|
|
122360
122720
|
};
|
|
122721
|
+
export declare type KitsuneCustomer = {
|
|
122722
|
+
__typename?: 'KitsuneCustomer';
|
|
122723
|
+
displayName?: Maybe<Scalars['String']['output']>;
|
|
122724
|
+
email: Scalars['String']['output'];
|
|
122725
|
+
id: Scalars['ID']['output'];
|
|
122726
|
+
organizations?: Maybe<Array<KitsuneOrganization>>;
|
|
122727
|
+
};
|
|
122361
122728
|
export declare type KitsuneDateValue = {
|
|
122362
122729
|
__typename?: 'KitsuneDateValue';
|
|
122363
122730
|
_id: Scalars['ID']['output'];
|
|
@@ -122379,6 +122746,10 @@ export declare type KitsuneFeedback = Node & {
|
|
|
122379
122746
|
title?: Maybe<Scalars['String']['output']>;
|
|
122380
122747
|
};
|
|
122381
122748
|
export declare type KitsuneFeedbackChunksArgs = {
|
|
122749
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
122750
|
+
before?: InputMaybe<Scalars['String']['input']>;
|
|
122751
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
122752
|
+
last?: InputMaybe<Scalars['Int']['input']>;
|
|
122382
122753
|
pagination?: InputMaybe<KitsunePaginationInput>;
|
|
122383
122754
|
};
|
|
122384
122755
|
export declare type KitsuneFeedbackConnection = KitsuneConnection & {
|
|
@@ -122407,13 +122778,16 @@ export declare type KitsuneFeedbackEvent = {
|
|
|
122407
122778
|
};
|
|
122408
122779
|
export declare type KitsuneFeedbackSummary = {
|
|
122409
122780
|
__typename?: 'KitsuneFeedbackSummary';
|
|
122410
|
-
content
|
|
122411
|
-
generatedAt
|
|
122781
|
+
content?: Maybe<Scalars['KitsuneADF']['output']>;
|
|
122782
|
+
generatedAt?: Maybe<Scalars['DateTime']['output']>;
|
|
122783
|
+
status?: Maybe<KitsuneSummaryStatus>;
|
|
122784
|
+
updatedAt?: Maybe<Scalars['DateTime']['output']>;
|
|
122785
|
+
updatedBy?: Maybe<Scalars['String']['output']>;
|
|
122412
122786
|
};
|
|
122413
|
-
export declare type KitsuneField =
|
|
122787
|
+
export declare type KitsuneField = Node & {
|
|
122414
122788
|
__typename?: 'KitsuneField';
|
|
122415
|
-
_id: Scalars['ID']['output'];
|
|
122416
122789
|
description?: Maybe<Scalars['String']['output']>;
|
|
122790
|
+
id: Scalars['ID']['output'];
|
|
122417
122791
|
name: Scalars['String']['output'];
|
|
122418
122792
|
type: KitsuneFieldType;
|
|
122419
122793
|
};
|
|
@@ -122473,12 +122847,25 @@ export declare type KitsuneNumberValue = {
|
|
|
122473
122847
|
_id: Scalars['ID']['output'];
|
|
122474
122848
|
value: Scalars['Float']['output'];
|
|
122475
122849
|
};
|
|
122850
|
+
export declare type KitsuneOrganization = {
|
|
122851
|
+
__typename?: 'KitsuneOrganization';
|
|
122852
|
+
id: Scalars['ID']['output'];
|
|
122853
|
+
name: Scalars['String']['output'];
|
|
122854
|
+
};
|
|
122476
122855
|
export declare type KitsunePaginationInput = {
|
|
122477
122856
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
122478
122857
|
before?: InputMaybe<Scalars['String']['input']>;
|
|
122479
122858
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
122480
122859
|
last?: InputMaybe<Scalars['Int']['input']>;
|
|
122481
122860
|
};
|
|
122861
|
+
export declare type KitsuneRankInput = {
|
|
122862
|
+
after?: InputMaybe<Scalars['ID']['input']>;
|
|
122863
|
+
before?: InputMaybe<Scalars['ID']['input']>;
|
|
122864
|
+
};
|
|
122865
|
+
export declare type KitsuneSearchFeedbackInput = {
|
|
122866
|
+
config?: InputMaybe<KitsuneViewConfigInput>;
|
|
122867
|
+
viewId?: InputMaybe<Scalars['ID']['input']>;
|
|
122868
|
+
};
|
|
122482
122869
|
export declare type KitsuneSection = Node & {
|
|
122483
122870
|
__typename?: 'KitsuneSection';
|
|
122484
122871
|
createdAt: Scalars['DateTime']['output'];
|
|
@@ -122494,7 +122881,7 @@ export declare type KitsuneSectionViewsArgs = {
|
|
|
122494
122881
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
122495
122882
|
last?: InputMaybe<Scalars['Int']['input']>;
|
|
122496
122883
|
};
|
|
122497
|
-
export declare type KitsuneSourceCategory = {
|
|
122884
|
+
export declare type KitsuneSourceCategory = KitsuneNode & {
|
|
122498
122885
|
__typename?: 'KitsuneSourceCategory';
|
|
122499
122886
|
_id: Scalars['ID']['output'];
|
|
122500
122887
|
type: KitsuneSourceCategoryType;
|
|
@@ -122532,9 +122919,17 @@ export declare type KitsuneSpaceFeedbacksArgs = {
|
|
|
122532
122919
|
pagination?: InputMaybe<KitsunePaginationInput>;
|
|
122533
122920
|
};
|
|
122534
122921
|
export declare type KitsuneSpaceFieldsArgs = {
|
|
122922
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
122923
|
+
before?: InputMaybe<Scalars['String']['input']>;
|
|
122924
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
122925
|
+
last?: InputMaybe<Scalars['Int']['input']>;
|
|
122535
122926
|
pagination?: InputMaybe<KitsunePaginationInput>;
|
|
122536
122927
|
};
|
|
122537
122928
|
export declare type KitsuneSpaceSourceCategoriesArgs = {
|
|
122929
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
122930
|
+
before?: InputMaybe<Scalars['String']['input']>;
|
|
122931
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
122932
|
+
last?: InputMaybe<Scalars['Int']['input']>;
|
|
122538
122933
|
pagination?: InputMaybe<KitsunePaginationInput>;
|
|
122539
122934
|
};
|
|
122540
122935
|
export declare type KitsuneSpaceViewTreeArgs = {
|
|
@@ -122553,6 +122948,11 @@ export declare type KitsuneSpaceEdge = KitsuneEdge & {
|
|
|
122553
122948
|
cursor: Scalars['String']['output'];
|
|
122554
122949
|
node?: Maybe<KitsuneSpace>;
|
|
122555
122950
|
};
|
|
122951
|
+
export declare enum KitsuneSummaryStatus {
|
|
122952
|
+
Done = "DONE",
|
|
122953
|
+
Error = "ERROR",
|
|
122954
|
+
Generating = "GENERATING"
|
|
122955
|
+
}
|
|
122556
122956
|
export declare type KitsuneTextValue = {
|
|
122557
122957
|
__typename?: 'KitsuneTextValue';
|
|
122558
122958
|
_id: Scalars['ID']['output'];
|
|
@@ -123548,6 +123948,7 @@ export declare type KnowledgeDiscoveryQueryApiJiraIntentDetectionArgs = {
|
|
|
123548
123948
|
model: KnowledgeDiscoveryJiraIntentDetectionModel;
|
|
123549
123949
|
orgId: Scalars['String']['input'];
|
|
123550
123950
|
query: Scalars['String']['input'];
|
|
123951
|
+
sessionId?: InputMaybe<Scalars['String']['input']>;
|
|
123551
123952
|
siteId: Scalars['String']['input'];
|
|
123552
123953
|
};
|
|
123553
123954
|
export declare type KnowledgeDiscoveryQueryApiKeyPhrasesArgs = {
|
|
@@ -128137,6 +128538,17 @@ export declare type MercuryAddWatcherToFocusAreaPayload = Payload & {
|
|
|
128137
128538
|
errors?: Maybe<Array<MutationError>>;
|
|
128138
128539
|
success: Scalars['Boolean']['output'];
|
|
128139
128540
|
};
|
|
128541
|
+
export declare type MercuryAggregateCostPerPeriodSummary = {
|
|
128542
|
+
__typename?: 'MercuryAggregateCostPerPeriodSummary';
|
|
128543
|
+
financialVersion?: Maybe<MercuryFinancialVersion>;
|
|
128544
|
+
total?: Maybe<MercuryMoney>;
|
|
128545
|
+
yearMonth?: Maybe<Scalars['String']['output']>;
|
|
128546
|
+
};
|
|
128547
|
+
export declare type MercuryAggregateCostSummary = {
|
|
128548
|
+
__typename?: 'MercuryAggregateCostSummary';
|
|
128549
|
+
financialVersion?: Maybe<MercuryFinancialVersion>;
|
|
128550
|
+
total?: Maybe<MercuryMoney>;
|
|
128551
|
+
};
|
|
128140
128552
|
export declare type MercuryAggregatedFocusAreaStatusCount = {
|
|
128141
128553
|
__typename?: 'MercuryAggregatedFocusAreaStatusCount';
|
|
128142
128554
|
children: MercuryFocusAreaStatusCount;
|
|
@@ -128510,6 +128922,47 @@ export declare type MercuryCommentEdge = {
|
|
|
128510
128922
|
cursor: Scalars['String']['output'];
|
|
128511
128923
|
node?: Maybe<MercuryComment>;
|
|
128512
128924
|
};
|
|
128925
|
+
export declare type MercuryCostItem = Node & {
|
|
128926
|
+
__typename?: 'MercuryCostItem';
|
|
128927
|
+
costItemSummary?: Maybe<MercuryCostItemSummary>;
|
|
128928
|
+
costSubtype?: Maybe<MercuryCostSubtype>;
|
|
128929
|
+
costType?: Maybe<MercuryCostType>;
|
|
128930
|
+
expenditureType?: Maybe<MercuryExpenditureType>;
|
|
128931
|
+
focusAreaId?: Maybe<MercuryFocusArea>;
|
|
128932
|
+
id: Scalars['ID']['output'];
|
|
128933
|
+
investmentCategory?: Maybe<MercuryInvestmentCategory>;
|
|
128934
|
+
name: Scalars['String']['output'];
|
|
128935
|
+
};
|
|
128936
|
+
export declare type MercuryCostItemConnection = {
|
|
128937
|
+
__typename?: 'MercuryCostItemConnection';
|
|
128938
|
+
edges?: Maybe<Array<MercuryCostItemEdge>>;
|
|
128939
|
+
pageInfo: PageInfo;
|
|
128940
|
+
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
128941
|
+
};
|
|
128942
|
+
export declare type MercuryCostItemEdge = {
|
|
128943
|
+
__typename?: 'MercuryCostItemEdge';
|
|
128944
|
+
cursor: Scalars['String']['output'];
|
|
128945
|
+
node?: Maybe<MercuryCostItem>;
|
|
128946
|
+
};
|
|
128947
|
+
export declare type MercuryCostItemSort = {
|
|
128948
|
+
field: MercuryCostItemSortField;
|
|
128949
|
+
order: SortOrder;
|
|
128950
|
+
};
|
|
128951
|
+
export declare enum MercuryCostItemSortField {
|
|
128952
|
+
Name = "NAME"
|
|
128953
|
+
}
|
|
128954
|
+
export declare type MercuryCostItemSummary = {
|
|
128955
|
+
__typename?: 'MercuryCostItemSummary';
|
|
128956
|
+
aggregatedCostPerPeriodSummaries?: Maybe<Array<Maybe<MercuryAggregateCostPerPeriodSummary>>>;
|
|
128957
|
+
costItemId: Scalars['ID']['output'];
|
|
128958
|
+
costPeriodValues?: Maybe<Array<Maybe<MercuryCostPeriodValue>>>;
|
|
128959
|
+
};
|
|
128960
|
+
export declare type MercuryCostPeriodValue = Node & {
|
|
128961
|
+
__typename?: 'MercuryCostPeriodValue';
|
|
128962
|
+
amount?: Maybe<MercuryMoney>;
|
|
128963
|
+
id: Scalars['ID']['output'];
|
|
128964
|
+
yearMonth?: Maybe<Scalars['String']['output']>;
|
|
128965
|
+
};
|
|
128513
128966
|
export declare type MercuryCostSubtype = Node & {
|
|
128514
128967
|
__typename?: 'MercuryCostSubtype';
|
|
128515
128968
|
costType?: Maybe<MercuryCostType>;
|
|
@@ -128543,7 +128996,7 @@ export declare type MercuryCostSubtypeSort = {
|
|
|
128543
128996
|
export declare enum MercuryCostSubtypeSortField {
|
|
128544
128997
|
Name = "NAME"
|
|
128545
128998
|
}
|
|
128546
|
-
export declare type MercuryCostType = {
|
|
128999
|
+
export declare type MercuryCostType = Node & {
|
|
128547
129000
|
__typename?: 'MercuryCostType';
|
|
128548
129001
|
displayName: Scalars['String']['output'];
|
|
128549
129002
|
id: Scalars['ID']['output'];
|
|
@@ -128616,7 +129069,6 @@ export declare type MercuryCreateCoreCustomFieldDefinitionInput = {
|
|
|
128616
129069
|
textField?: InputMaybe<MercuryCreateTextCustomFieldDefinitionInput>;
|
|
128617
129070
|
};
|
|
128618
129071
|
export declare type MercuryCreateCostSubtypeInput = {
|
|
128619
|
-
cloudId?: InputMaybe<Scalars['ID']['input']>;
|
|
128620
129072
|
costTypeId: Scalars['ID']['input'];
|
|
128621
129073
|
name: Scalars['String']['input'];
|
|
128622
129074
|
};
|
|
@@ -129115,7 +129567,7 @@ export declare enum MercuryEventType {
|
|
|
129115
129567
|
Unlink = "UNLINK",
|
|
129116
129568
|
Update = "UPDATE"
|
|
129117
129569
|
}
|
|
129118
|
-
export declare type MercuryExpenditureType = {
|
|
129570
|
+
export declare type MercuryExpenditureType = Node & {
|
|
129119
129571
|
__typename?: 'MercuryExpenditureType';
|
|
129120
129572
|
displayName: Scalars['String']['output'];
|
|
129121
129573
|
id: Scalars['ID']['output'];
|
|
@@ -129131,6 +129583,16 @@ export declare type MercuryExternalUser = {
|
|
|
129131
129583
|
email?: Maybe<Scalars['String']['output']>;
|
|
129132
129584
|
name?: Maybe<Scalars['String']['output']>;
|
|
129133
129585
|
};
|
|
129586
|
+
export declare type MercuryFinancialVersion = Node & {
|
|
129587
|
+
__typename?: 'MercuryFinancialVersion';
|
|
129588
|
+
id: Scalars['ID']['output'];
|
|
129589
|
+
type: MercuryFinancialVersionType;
|
|
129590
|
+
};
|
|
129591
|
+
export declare enum MercuryFinancialVersionType {
|
|
129592
|
+
Actual = "ACTUAL",
|
|
129593
|
+
Baseline = "BASELINE",
|
|
129594
|
+
Forecast = "FORECAST"
|
|
129595
|
+
}
|
|
129134
129596
|
export declare type MercuryFiscalCalendarConfiguration = Node & {
|
|
129135
129597
|
__typename?: 'MercuryFiscalCalendarConfiguration';
|
|
129136
129598
|
createdDate?: Maybe<Scalars['String']['output']>;
|
|
@@ -129164,6 +129626,7 @@ export declare type MercuryFocusArea = Node & {
|
|
|
129164
129626
|
archived: Scalars['Boolean']['output'];
|
|
129165
129627
|
ari: Scalars['String']['output'];
|
|
129166
129628
|
changeSummary?: Maybe<MercuryChangeSummary>;
|
|
129629
|
+
costSummary?: Maybe<MercuryFocusAreaCostSummary>;
|
|
129167
129630
|
createdDate: Scalars['String']['output'];
|
|
129168
129631
|
customFields?: Maybe<Array<MercuryCustomField>>;
|
|
129169
129632
|
draft: Scalars['Boolean']['output'];
|
|
@@ -129264,6 +129727,12 @@ export declare type MercuryFocusAreaConnection = {
|
|
|
129264
129727
|
pageInfo: PageInfo;
|
|
129265
129728
|
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
129266
129729
|
};
|
|
129730
|
+
export declare type MercuryFocusAreaCostSummary = {
|
|
129731
|
+
__typename?: 'MercuryFocusAreaCostSummary';
|
|
129732
|
+
aggregatedCostPerPeriodSummaries?: Maybe<Array<Maybe<MercuryAggregateCostPerPeriodSummary>>>;
|
|
129733
|
+
aggregatedCostSummaries?: Maybe<Array<Maybe<MercuryAggregateCostSummary>>>;
|
|
129734
|
+
focusAreaId: Scalars['ID']['output'];
|
|
129735
|
+
};
|
|
129267
129736
|
export declare type MercuryFocusAreaCustomFieldDefinitionScope = MercuryCustomFieldDefinitionScope & {
|
|
129268
129737
|
__typename?: 'MercuryFocusAreaCustomFieldDefinitionScope';
|
|
129269
129738
|
entityType: Scalars['String']['output'];
|
|
@@ -129689,11 +130158,17 @@ export declare type MercuryFundsQueryApi = {
|
|
|
129689
130158
|
__typename?: 'MercuryFundsQueryApi';
|
|
129690
130159
|
activeCurrency: MercuryCurrency;
|
|
129691
130160
|
activeFiscalCalendarConfiguration?: Maybe<MercuryFiscalCalendarConfiguration>;
|
|
130161
|
+
costItems?: Maybe<Array<Maybe<MercuryCostItem>>>;
|
|
130162
|
+
costItemsSearch?: Maybe<MercuryCostItemConnection>;
|
|
130163
|
+
costPeriodValues?: Maybe<Array<Maybe<MercuryCostPeriodValue>>>;
|
|
129692
130164
|
costSubtypes?: Maybe<Array<Maybe<MercuryCostSubtype>>>;
|
|
129693
130165
|
costSubtypesSearch?: Maybe<MercuryCostSubtypeConnection>;
|
|
129694
130166
|
costTypes?: Maybe<Array<Maybe<MercuryCostType>>>;
|
|
130167
|
+
costTypesByIds?: Maybe<Array<Maybe<MercuryCostType>>>;
|
|
129695
130168
|
currencies?: Maybe<Array<MercuryCurrency>>;
|
|
129696
130169
|
expenditureTypes?: Maybe<Array<Maybe<MercuryExpenditureType>>>;
|
|
130170
|
+
expenditureTypesByIds?: Maybe<Array<Maybe<MercuryExpenditureType>>>;
|
|
130171
|
+
financialVersions?: Maybe<Array<Maybe<MercuryFinancialVersion>>>;
|
|
129697
130172
|
fiscalCalendarConfiguration?: Maybe<MercuryFiscalCalendarConfiguration>;
|
|
129698
130173
|
fiscalCalendarConfigurations?: Maybe<Array<Maybe<MercuryFiscalCalendarConfiguration>>>;
|
|
129699
130174
|
fiscalCalendarConfigurationsSearch?: Maybe<MercuryFiscalCalendarConfigurationConnection>;
|
|
@@ -129707,6 +130182,19 @@ export declare type MercuryFundsQueryApiActiveCurrencyArgs = {
|
|
|
129707
130182
|
export declare type MercuryFundsQueryApiActiveFiscalCalendarConfigurationArgs = {
|
|
129708
130183
|
cloudId?: InputMaybe<Scalars['ID']['input']>;
|
|
129709
130184
|
};
|
|
130185
|
+
export declare type MercuryFundsQueryApiCostItemsArgs = {
|
|
130186
|
+
ids: Array<Scalars['ID']['input']>;
|
|
130187
|
+
};
|
|
130188
|
+
export declare type MercuryFundsQueryApiCostItemsSearchArgs = {
|
|
130189
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
130190
|
+
cloudId: Scalars['ID']['input'];
|
|
130191
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
130192
|
+
q?: InputMaybe<Scalars['String']['input']>;
|
|
130193
|
+
sort?: InputMaybe<Array<InputMaybe<MercuryCostItemSort>>>;
|
|
130194
|
+
};
|
|
130195
|
+
export declare type MercuryFundsQueryApiCostPeriodValuesArgs = {
|
|
130196
|
+
ids: Array<Scalars['ID']['input']>;
|
|
130197
|
+
};
|
|
129710
130198
|
export declare type MercuryFundsQueryApiCostSubtypesArgs = {
|
|
129711
130199
|
ids: Array<Scalars['ID']['input']>;
|
|
129712
130200
|
};
|
|
@@ -129720,12 +130208,21 @@ export declare type MercuryFundsQueryApiCostSubtypesSearchArgs = {
|
|
|
129720
130208
|
export declare type MercuryFundsQueryApiCostTypesArgs = {
|
|
129721
130209
|
cloudId?: InputMaybe<Scalars['ID']['input']>;
|
|
129722
130210
|
};
|
|
130211
|
+
export declare type MercuryFundsQueryApiCostTypesByIdsArgs = {
|
|
130212
|
+
ids: Array<Scalars['ID']['input']>;
|
|
130213
|
+
};
|
|
129723
130214
|
export declare type MercuryFundsQueryApiCurrenciesArgs = {
|
|
129724
130215
|
cloudId?: InputMaybe<Scalars['ID']['input']>;
|
|
129725
130216
|
};
|
|
129726
130217
|
export declare type MercuryFundsQueryApiExpenditureTypesArgs = {
|
|
129727
130218
|
cloudId?: InputMaybe<Scalars['ID']['input']>;
|
|
129728
130219
|
};
|
|
130220
|
+
export declare type MercuryFundsQueryApiExpenditureTypesByIdsArgs = {
|
|
130221
|
+
ids: Array<Scalars['ID']['input']>;
|
|
130222
|
+
};
|
|
130223
|
+
export declare type MercuryFundsQueryApiFinancialVersionsArgs = {
|
|
130224
|
+
ids: Array<Scalars['ID']['input']>;
|
|
130225
|
+
};
|
|
129729
130226
|
export declare type MercuryFundsQueryApiFiscalCalendarConfigurationArgs = {
|
|
129730
130227
|
id: Scalars['ID']['input'];
|
|
129731
130228
|
};
|
|
@@ -130091,6 +130588,11 @@ export declare type MercuryMediaToken = {
|
|
|
130091
130588
|
__typename?: 'MercuryMediaToken';
|
|
130092
130589
|
token: Scalars['String']['output'];
|
|
130093
130590
|
};
|
|
130591
|
+
export declare type MercuryMoney = {
|
|
130592
|
+
__typename?: 'MercuryMoney';
|
|
130593
|
+
amount?: Maybe<Scalars['String']['output']>;
|
|
130594
|
+
currency?: Maybe<Scalars['String']['output']>;
|
|
130595
|
+
};
|
|
130094
130596
|
export declare type MercuryMoveChangesInput = {
|
|
130095
130597
|
changeIds: Array<Scalars['ID']['input']>;
|
|
130096
130598
|
sourceChangeProposalId: Scalars['ID']['input'];
|
|
@@ -131264,6 +131766,16 @@ export declare type MercurySetChangeProposalCustomFieldPayload = Payload & {
|
|
|
131264
131766
|
errors?: Maybe<Array<MutationError>>;
|
|
131265
131767
|
success: Scalars['Boolean']['output'];
|
|
131266
131768
|
};
|
|
131769
|
+
export declare type MercurySetChangeProposalCustomFieldsInput = {
|
|
131770
|
+
cloudId?: InputMaybe<Scalars['ID']['input']>;
|
|
131771
|
+
customFields: Array<MercurySetChangeProposalCustomFieldInput>;
|
|
131772
|
+
};
|
|
131773
|
+
export declare type MercurySetChangeProposalCustomFieldsPayload = Payload & {
|
|
131774
|
+
__typename?: 'MercurySetChangeProposalCustomFieldsPayload';
|
|
131775
|
+
customFields?: Maybe<Array<MercuryCustomField>>;
|
|
131776
|
+
errors?: Maybe<Array<MutationError>>;
|
|
131777
|
+
success: Scalars['Boolean']['output'];
|
|
131778
|
+
};
|
|
131267
131779
|
export declare type MercurySetFocusAreaCustomFieldInput = {
|
|
131268
131780
|
coreField?: InputMaybe<MercuryCustomFieldInput>;
|
|
131269
131781
|
customFieldDefinitionId: Scalars['ID']['input'];
|
|
@@ -131434,6 +131946,7 @@ export declare type MercuryStrategicEventsMutationApi = {
|
|
|
131434
131946
|
removeTagsFromChangeProposal?: Maybe<MercuryRemoveTagsFromProposalPayload>;
|
|
131435
131947
|
reorderChangeProposalCustomFieldDefinitionOptions?: Maybe<MercuryReorderCustomFieldDefinitionOptionsPayload>;
|
|
131436
131948
|
setChangeProposalCustomFieldValue?: Maybe<MercurySetChangeProposalCustomFieldPayload>;
|
|
131949
|
+
setChangeProposalCustomFieldValues?: Maybe<MercurySetChangeProposalCustomFieldsPayload>;
|
|
131437
131950
|
transitionChangeProposalStatus?: Maybe<MercuryTransitionChangeProposalPayload>;
|
|
131438
131951
|
transitionStrategicEventStatus?: Maybe<MercuryTransitionStrategicEventPayload>;
|
|
131439
131952
|
unlinkGoalsFromChangeProposal?: Maybe<MercuryUnlinkGoalsFromChangeProposalPayload>;
|
|
@@ -131527,6 +132040,9 @@ export declare type MercuryStrategicEventsMutationApiReorderChangeProposalCustom
|
|
|
131527
132040
|
export declare type MercuryStrategicEventsMutationApiSetChangeProposalCustomFieldValueArgs = {
|
|
131528
132041
|
input: MercurySetChangeProposalCustomFieldInput;
|
|
131529
132042
|
};
|
|
132043
|
+
export declare type MercuryStrategicEventsMutationApiSetChangeProposalCustomFieldValuesArgs = {
|
|
132044
|
+
input: MercurySetChangeProposalCustomFieldsInput;
|
|
132045
|
+
};
|
|
131530
132046
|
export declare type MercuryStrategicEventsMutationApiTransitionChangeProposalStatusArgs = {
|
|
131531
132047
|
input: MercuryTransitionChangeProposalStatusInput;
|
|
131532
132048
|
};
|
|
@@ -132584,6 +133100,7 @@ export declare type Mutation = {
|
|
|
132584
133100
|
agentStudio_modifyDatasetItem?: Maybe<AgentStudioUpdateDatasetItemPayload>;
|
|
132585
133101
|
agentStudio_publishAgentVersion?: Maybe<AgentStudioPublishAgentVersionPayload>;
|
|
132586
133102
|
agentStudio_removeActorRoles?: Maybe<AgentStudioUpdateAgentPermissionPayload>;
|
|
133103
|
+
agentStudio_removeBatchEvaluationJobRun?: Maybe<AgentStudioDeleteBatchEvaluationJobRunPayload>;
|
|
132587
133104
|
agentStudio_removeDataset?: Maybe<AgentStudioDeleteDatasetPayload>;
|
|
132588
133105
|
agentStudio_removeDatasetItem?: Maybe<AgentStudioDeleteDatasetItemPayload>;
|
|
132589
133106
|
agentStudio_removeGroupsFromCreatePermission?: Maybe<AgentStudioRemoveGroupsFromCreatePermissionPayload>;
|
|
@@ -132716,6 +133233,7 @@ export declare type Mutation = {
|
|
|
132716
133233
|
avp_updateFilterExpression?: Maybe<AvpUpdateFilterExpressionPayload>;
|
|
132717
133234
|
avp_updateVariable?: Maybe<AvpUpdateVariablePayload>;
|
|
132718
133235
|
avpanalytics_createModel?: Maybe<AvpAnalyticsCreateModelPayload>;
|
|
133236
|
+
blockService_batchCreateBlocks?: Maybe<BlockServiceBatchRetrieveBlocksPayload>;
|
|
132719
133237
|
blockService_createBlock?: Maybe<BlockServiceBlockPayload>;
|
|
132720
133238
|
blockService_deleteBlock?: Maybe<BlockServiceDeleteBlockPayload>;
|
|
132721
133239
|
blockService_updateBlock?: Maybe<BlockServiceBlockPayload>;
|
|
@@ -132800,6 +133318,7 @@ export declare type Mutation = {
|
|
|
132800
133318
|
confluence_inviteUsers?: Maybe<ConfluenceInviteUserPayload>;
|
|
132801
133319
|
confluence_makeSubCalendarPrivateUrl?: Maybe<ConfluenceMakeSubCalendarPrivateUrlPayload>;
|
|
132802
133320
|
confluence_markAllCommentsAsRead?: Maybe<ConfluenceMarkAllCommentsAsReadPayload>;
|
|
133321
|
+
confluence_nbmAddGlobalTransformer?: Maybe<ConfluenceNbmAddGlobalTransformerPayload>;
|
|
132803
133322
|
confluence_nbmBulkUpdateVerificationEntry?: Maybe<ConfluenceNbmBulkUpdateVerificationEntryPayload>;
|
|
132804
133323
|
confluence_nbmExecuteTestTransformation?: Maybe<ConfluenceNbmExecuteTestTransformationPayload>;
|
|
132805
133324
|
confluence_nbmRetryPerfScanLongTask?: Maybe<ConfluenceNbmRetryPerfScanLongTaskPayload>;
|
|
@@ -133097,6 +133616,7 @@ export declare type Mutation = {
|
|
|
133097
133616
|
graphIntegration_updateDataConnectorConnection?: Maybe<GraphIntegrationUpdateConnectionPayload>;
|
|
133098
133617
|
graphStore?: Maybe<GraphStoreMutation>;
|
|
133099
133618
|
graphStoreV2?: Maybe<GraphStoreV2Mutation>;
|
|
133619
|
+
gravity_createViewFromTemplate: GravityCreateViewFromTemplatePayload;
|
|
133100
133620
|
growthUnifiedProfile_createEntitlementProfile?: Maybe<GrowthUnifiedProfileCreateEntitlementProfileResponse>;
|
|
133101
133621
|
growthUnifiedProfile_createOrgProfile?: Maybe<GrowthUnifiedProfileTwcCreateOrgProfileResponse>;
|
|
133102
133622
|
growthUnifiedProfile_createUnifiedProfile?: Maybe<GrowthUnifiedProfileResult>;
|
|
@@ -133250,11 +133770,14 @@ export declare type Mutation = {
|
|
|
133250
133770
|
jsmConversation_closeConversation?: Maybe<JsmConversationCloseConversationPayload>;
|
|
133251
133771
|
jsmConversation_updateSettings?: Maybe<JsmConversationSettingsPayload>;
|
|
133252
133772
|
jsw?: Maybe<JswMutation>;
|
|
133773
|
+
kitsune_createCustomer?: Maybe<KitsuneCustomer>;
|
|
133253
133774
|
kitsune_createFeedback?: Maybe<KitsuneFeedback>;
|
|
133254
133775
|
kitsune_createSection?: Maybe<KitsuneSection>;
|
|
133255
133776
|
kitsune_createSpace?: Maybe<KitsuneSpace>;
|
|
133256
133777
|
kitsune_createView?: Maybe<KitsuneView>;
|
|
133257
133778
|
kitsune_generateFeedbackSummary?: Maybe<Scalars['Boolean']['output']>;
|
|
133779
|
+
kitsune_moveSection?: Maybe<KitsuneSpace>;
|
|
133780
|
+
kitsune_moveView?: Maybe<KitsuneSpace>;
|
|
133258
133781
|
kitsune_removeFeedback?: Maybe<KitsuneDeletedRecord>;
|
|
133259
133782
|
kitsune_removeSection?: Maybe<KitsuneDeletedRecord>;
|
|
133260
133783
|
kitsune_removeView?: Maybe<KitsuneDeletedRecord>;
|
|
@@ -133757,8 +134280,15 @@ export declare type MutationAgentStudio_RemoveActorRolesArgs = {
|
|
|
133757
134280
|
id: Scalars['ID']['input'];
|
|
133758
134281
|
input: AgentStudioUpdateAgentPermissionInput;
|
|
133759
134282
|
};
|
|
134283
|
+
export declare type MutationAgentStudio_RemoveBatchEvaluationJobRunArgs = {
|
|
134284
|
+
cloudId: Scalars['String']['input'];
|
|
134285
|
+
jobRunId: Scalars['ID']['input'];
|
|
134286
|
+
productType: AgentStudioProductType;
|
|
134287
|
+
projectContainerAri: Scalars['ID']['input'];
|
|
134288
|
+
};
|
|
133760
134289
|
export declare type MutationAgentStudio_RemoveDatasetArgs = {
|
|
133761
134290
|
cloudId: Scalars['String']['input'];
|
|
134291
|
+
deleteAssociatedJobs?: InputMaybe<Scalars['Boolean']['input']>;
|
|
133762
134292
|
id: Scalars['ID']['input'];
|
|
133763
134293
|
productType: AgentStudioProductType;
|
|
133764
134294
|
projectContainerAri: Scalars['ID']['input'];
|
|
@@ -134298,6 +134828,9 @@ export declare type MutationAvp_UpdateVariableArgs = {
|
|
|
134298
134828
|
export declare type MutationAvpanalytics_CreateModelArgs = {
|
|
134299
134829
|
input?: InputMaybe<AvpAnalyticsCreateModelInput>;
|
|
134300
134830
|
};
|
|
134831
|
+
export declare type MutationBlockService_BatchCreateBlocksArgs = {
|
|
134832
|
+
input: BlockServiceBatchCreateBlocksInput;
|
|
134833
|
+
};
|
|
134301
134834
|
export declare type MutationBlockService_CreateBlockArgs = {
|
|
134302
134835
|
input: BlockServiceCreateBlockInput;
|
|
134303
134836
|
};
|
|
@@ -134583,6 +135116,10 @@ export declare type MutationConfluence_MarkAllCommentsAsReadArgs = {
|
|
|
134583
135116
|
cloudId: Scalars['ID']['input'];
|
|
134584
135117
|
input: ConfluenceMarkAllContainerCommentsAsReadInput;
|
|
134585
135118
|
};
|
|
135119
|
+
export declare type MutationConfluence_NbmAddGlobalTransformerArgs = {
|
|
135120
|
+
cloudId: Scalars['ID']['input'];
|
|
135121
|
+
input: ConfluenceNbmAddGlobalTransformerInput;
|
|
135122
|
+
};
|
|
134586
135123
|
export declare type MutationConfluence_NbmBulkUpdateVerificationEntryArgs = {
|
|
134587
135124
|
cloudId: Scalars['ID']['input'];
|
|
134588
135125
|
input: ConfluenceNbmBulkUpdateVerificationEntryInput;
|
|
@@ -135623,6 +136160,10 @@ export declare type MutationGraphIntegration_RemoveTwgCapabilityContainerArgs =
|
|
|
135623
136160
|
export declare type MutationGraphIntegration_UpdateDataConnectorConnectionArgs = {
|
|
135624
136161
|
input: GraphIntegrationUpdateDataConnectorConnectionInput;
|
|
135625
136162
|
};
|
|
136163
|
+
export declare type MutationGravity_CreateViewFromTemplateArgs = {
|
|
136164
|
+
cloudId: Scalars['ID']['input'];
|
|
136165
|
+
input: GravityCreateViewFromTemplateInput;
|
|
136166
|
+
};
|
|
135626
136167
|
export declare type MutationGrowthUnifiedProfile_CreateEntitlementProfileArgs = {
|
|
135627
136168
|
profile: GrowthUnifiedProfileCreateEntitlementProfileInput;
|
|
135628
136169
|
};
|
|
@@ -136099,6 +136640,12 @@ export declare type MutationJsmConversation_CloseConversationArgs = {
|
|
|
136099
136640
|
export declare type MutationJsmConversation_UpdateSettingsArgs = {
|
|
136100
136641
|
input: JsmConversationSettingsInput;
|
|
136101
136642
|
};
|
|
136643
|
+
export declare type MutationKitsune_CreateCustomerArgs = {
|
|
136644
|
+
email?: InputMaybe<Scalars['String']['input']>;
|
|
136645
|
+
name?: InputMaybe<Scalars['String']['input']>;
|
|
136646
|
+
organizationId?: InputMaybe<Scalars['ID']['input']>;
|
|
136647
|
+
workspaceAri: Scalars['ID']['input'];
|
|
136648
|
+
};
|
|
136102
136649
|
export declare type MutationKitsune_CreateFeedbackArgs = {
|
|
136103
136650
|
content: Scalars['KitsuneADF']['input'];
|
|
136104
136651
|
source?: InputMaybe<KitsuneSourceInput>;
|
|
@@ -136124,6 +136671,15 @@ export declare type MutationKitsune_CreateViewArgs = {
|
|
|
136124
136671
|
export declare type MutationKitsune_GenerateFeedbackSummaryArgs = {
|
|
136125
136672
|
feedbackAri: Scalars['ID']['input'];
|
|
136126
136673
|
};
|
|
136674
|
+
export declare type MutationKitsune_MoveSectionArgs = {
|
|
136675
|
+
rank: KitsuneRankInput;
|
|
136676
|
+
sectionAri: Scalars['ID']['input'];
|
|
136677
|
+
};
|
|
136678
|
+
export declare type MutationKitsune_MoveViewArgs = {
|
|
136679
|
+
parentId?: InputMaybe<Scalars['ID']['input']>;
|
|
136680
|
+
rank: KitsuneRankInput;
|
|
136681
|
+
viewAri: Scalars['ID']['input'];
|
|
136682
|
+
};
|
|
136127
136683
|
export declare type MutationKitsune_RemoveFeedbackArgs = {
|
|
136128
136684
|
feedbackAri: Scalars['ID']['input'];
|
|
136129
136685
|
};
|
|
@@ -136140,6 +136696,7 @@ export declare type MutationKitsune_SuggestSnippetsArgs = {
|
|
|
136140
136696
|
export declare type MutationKitsune_UpdateFeedbackArgs = {
|
|
136141
136697
|
content?: InputMaybe<Scalars['KitsuneADF']['input']>;
|
|
136142
136698
|
id: Scalars['ID']['input'];
|
|
136699
|
+
summaryContent?: InputMaybe<Scalars['KitsuneADF']['input']>;
|
|
136143
136700
|
title?: InputMaybe<Scalars['String']['input']>;
|
|
136144
136701
|
};
|
|
136145
136702
|
export declare type MutationKitsune_UpdateSectionArgs = {
|
|
@@ -139680,6 +140237,7 @@ export declare enum PolarisViewSetType {
|
|
|
139680
140237
|
Capture = "CAPTURE",
|
|
139681
140238
|
Custom = "CUSTOM",
|
|
139682
140239
|
Deliver = "DELIVER",
|
|
140240
|
+
Global = "GLOBAL",
|
|
139683
140241
|
Prioritize = "PRIORITIZE",
|
|
139684
140242
|
Section = "SECTION",
|
|
139685
140243
|
Single = "SINGLE",
|
|
@@ -140220,6 +140778,8 @@ export declare type Query = {
|
|
|
140220
140778
|
agentStudio_jobExecutionHistoryList?: Maybe<AgentStudioJobExecutionHistory>;
|
|
140221
140779
|
agentStudio_jobRun?: Maybe<AgentStudioBatchEvaluationJobRun>;
|
|
140222
140780
|
agentStudio_jobRunList?: Maybe<AgentStudioBatchEvaluationJobRunResult>;
|
|
140781
|
+
agentStudio_knowledgeGapSuggestionArticles?: Maybe<AgentStudioKnowledgeGapSuggestionArticleResult>;
|
|
140782
|
+
agentStudio_knowledgeGapUploadJobs?: Maybe<Array<AgentStudioKnowledgeGapUploadJob>>;
|
|
140223
140783
|
agentStudio_liveConversationHistoryById?: Maybe<AgentStudioConversationHistoryResult>;
|
|
140224
140784
|
agentStudio_liveConversationListByContainerId?: Maybe<AgentStudioConversationListResult>;
|
|
140225
140785
|
agentStudio_scenarioById?: Maybe<AgentStudioScenarioResult>;
|
|
@@ -140245,6 +140805,7 @@ export declare type Query = {
|
|
|
140245
140805
|
agentWorkspace_skill?: Maybe<AgentWorkspaceSkill>;
|
|
140246
140806
|
agentWorkspace_skillGaps?: Maybe<AgentWorkspaceSkillConnection>;
|
|
140247
140807
|
agentWorkspace_skills?: Maybe<AgentWorkspaceSkillConnection>;
|
|
140808
|
+
agentWorkspace_userSkill?: Maybe<AgentWorkspaceUserSkill>;
|
|
140248
140809
|
agentWorkspace_userSkills?: Maybe<AgentWorkspaceUserSkillConnection>;
|
|
140249
140810
|
agentWorkspace_usersBySkills?: Maybe<AgentWorkspaceUserConnection>;
|
|
140250
140811
|
aiCoreApi_vsaQuestionsByProject?: Maybe<AiCoreApiVsaQuestionsResult>;
|
|
@@ -140285,6 +140846,8 @@ export declare type Query = {
|
|
|
140285
140846
|
assetsDM_allCleansingRules?: Maybe<Array<AssetsDmDefFunction>>;
|
|
140286
140847
|
assetsDM_attributePrioritiesList?: Maybe<AssetsDmAttributePrioritiesList>;
|
|
140287
140848
|
assetsDM_attributePriority?: Maybe<AssetsDmAttributePriority>;
|
|
140849
|
+
assetsDM_bigfixDefaultQuery?: Maybe<AssetsDmBigfixDefaultQueryResponse>;
|
|
140850
|
+
assetsDM_bigfixDefaultQueryMapping?: Maybe<AssetsDmBigfixDefaultQueryMappingResponse>;
|
|
140288
140851
|
assetsDM_computedIssues?: Maybe<Array<AssetsDmComputedIssueItem>>;
|
|
140289
140852
|
assetsDM_dataDictionaries?: Maybe<AssetsDmDataDictionaryResponse>;
|
|
140290
140853
|
assetsDM_dataDictionaryGroupValues?: Maybe<AssetsDmDataDictionaryGroupValuesResponse>;
|
|
@@ -140357,6 +140920,7 @@ export declare type Query = {
|
|
|
140357
140920
|
avp_getDashboardTemplates?: Maybe<Array<AvpDashboardTemplate>>;
|
|
140358
140921
|
avp_getDashboardsByAris?: Maybe<Array<Maybe<AvpDashboard>>>;
|
|
140359
140922
|
avp_getFilterExpression?: Maybe<AvpFilterExpression>;
|
|
140923
|
+
avpanalytics_getDataSources?: Maybe<Array<AvpAnalyticsDataSource>>;
|
|
140360
140924
|
avpanalytics_getModel?: Maybe<AvpAnalyticsModel>;
|
|
140361
140925
|
avpanalytics_getModels?: Maybe<AvpAnalyticsModelConnection>;
|
|
140362
140926
|
bitbucket?: Maybe<BitbucketQuery>;
|
|
@@ -140770,6 +141334,8 @@ export declare type Query = {
|
|
|
140770
141334
|
graphStore?: Maybe<GraphStore>;
|
|
140771
141335
|
graphStoreV2?: Maybe<GraphStoreV2>;
|
|
140772
141336
|
gravity_jpdImportIdeas?: Maybe<JpdImportIdeasPayload>;
|
|
141337
|
+
gravity_viewTemplateMappingProposals: GravityRefMappingProposals;
|
|
141338
|
+
gravity_viewTemplates: Array<GravityViewTemplate>;
|
|
140773
141339
|
group?: Maybe<Group>;
|
|
140774
141340
|
groupCounts?: Maybe<GraphQlGroupCountsResult>;
|
|
140775
141341
|
groupMembers?: Maybe<PaginatedPersonList>;
|
|
@@ -140869,6 +141435,7 @@ export declare type Query = {
|
|
|
140869
141435
|
jpdViewsService_globalView?: Maybe<JpdViewsServiceGlobalView>;
|
|
140870
141436
|
jpdViewsService_globalViewsByCriteria?: Maybe<JpdViewsServiceGlobalViewConnection>;
|
|
140871
141437
|
jpdViewsService_globalViewsById?: Maybe<Array<Maybe<JpdViewsServiceGlobalView>>>;
|
|
141438
|
+
jpdViewsService_hydrateGlobalViews?: Maybe<JpdViewsServiceGlobalViewsHydrationExample>;
|
|
140872
141439
|
jpdViewsService_hydrateUser?: Maybe<JpdViewsServiceUserHydrationExample>;
|
|
140873
141440
|
jsmAgentWorkspace_locations?: Maybe<JsmAgentWorkspaceLocations>;
|
|
140874
141441
|
jsmChannels_conversationsByContainerAri?: Maybe<JsmChannelsConversationsByContainerAriResult>;
|
|
@@ -140886,7 +141453,9 @@ export declare type Query = {
|
|
|
140886
141453
|
kitsune_chunks?: Maybe<Array<Maybe<KitsuneChunk>>>;
|
|
140887
141454
|
kitsune_feedbackEvent?: Maybe<KitsuneFeedbackEvent>;
|
|
140888
141455
|
kitsune_feedbacks?: Maybe<Array<Maybe<KitsuneFeedback>>>;
|
|
141456
|
+
kitsune_fields?: Maybe<Array<Maybe<KitsuneField>>>;
|
|
140889
141457
|
kitsune_node?: Maybe<KitsuneNode>;
|
|
141458
|
+
kitsune_searchFeedback?: Maybe<KitsuneFeedbackConnection>;
|
|
140890
141459
|
kitsune_sections?: Maybe<Array<Maybe<KitsuneSection>>>;
|
|
140891
141460
|
kitsune_spaces?: Maybe<Array<Maybe<KitsuneSpace>>>;
|
|
140892
141461
|
kitsune_spacesForWorkspace?: Maybe<KitsuneSpaceConnection>;
|
|
@@ -141677,6 +142246,19 @@ export declare type QueryAgentStudio_JobRunListArgs = {
|
|
|
141677
142246
|
projectContainerAri: Scalars['ID']['input'];
|
|
141678
142247
|
status?: InputMaybe<AgentStudioJobRunStatus>;
|
|
141679
142248
|
};
|
|
142249
|
+
export declare type QueryAgentStudio_KnowledgeGapSuggestionArticlesArgs = {
|
|
142250
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
142251
|
+
cloudId: Scalars['String']['input'];
|
|
142252
|
+
containerAri: Scalars['ID']['input'];
|
|
142253
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
142254
|
+
productType: AgentStudioProductType;
|
|
142255
|
+
status?: InputMaybe<AgentStudioKnowledgeGapSuggestionArticleStatus>;
|
|
142256
|
+
};
|
|
142257
|
+
export declare type QueryAgentStudio_KnowledgeGapUploadJobsArgs = {
|
|
142258
|
+
cloudId: Scalars['String']['input'];
|
|
142259
|
+
containerAri: Scalars['ID']['input'];
|
|
142260
|
+
productType: AgentStudioProductType;
|
|
142261
|
+
};
|
|
141680
142262
|
export declare type QueryAgentStudio_LiveConversationHistoryByIdArgs = {
|
|
141681
142263
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
141682
142264
|
cloudId: Scalars['String']['input'];
|
|
@@ -141802,6 +142384,10 @@ export declare type QueryAgentWorkspace_SkillsArgs = {
|
|
|
141802
142384
|
filter?: InputMaybe<AgentWorkspaceSkillFilterInput>;
|
|
141803
142385
|
pagination?: InputMaybe<AgentWorkspacePaginationInput>;
|
|
141804
142386
|
};
|
|
142387
|
+
export declare type QueryAgentWorkspace_UserSkillArgs = {
|
|
142388
|
+
cloudId: Scalars['ID']['input'];
|
|
142389
|
+
id: Scalars['ID']['input'];
|
|
142390
|
+
};
|
|
141805
142391
|
export declare type QueryAgentWorkspace_UserSkillsArgs = {
|
|
141806
142392
|
cloudId: Scalars['ID']['input'];
|
|
141807
142393
|
filter?: InputMaybe<AgentWorkspaceUserSkillFilterInput>;
|
|
@@ -141989,6 +142575,14 @@ export declare type QueryAssetsDm_AttributePriorityArgs = {
|
|
|
141989
142575
|
objectAttributePriorityId: Scalars['ID']['input'];
|
|
141990
142576
|
workspaceId: Scalars['ID']['input'];
|
|
141991
142577
|
};
|
|
142578
|
+
export declare type QueryAssetsDm_BigfixDefaultQueryArgs = {
|
|
142579
|
+
cloudId: Scalars['ID']['input'];
|
|
142580
|
+
workspaceId: Scalars['ID']['input'];
|
|
142581
|
+
};
|
|
142582
|
+
export declare type QueryAssetsDm_BigfixDefaultQueryMappingArgs = {
|
|
142583
|
+
cloudId: Scalars['ID']['input'];
|
|
142584
|
+
workspaceId: Scalars['ID']['input'];
|
|
142585
|
+
};
|
|
141992
142586
|
export declare type QueryAssetsDm_ComputedIssuesArgs = {
|
|
141993
142587
|
cloudId: Scalars['ID']['input'];
|
|
141994
142588
|
objectAttributeId: Scalars['ID']['input'];
|
|
@@ -142377,6 +142971,11 @@ export declare type QueryAvp_GetDashboardsByArisArgs = {
|
|
|
142377
142971
|
export declare type QueryAvp_GetFilterExpressionArgs = {
|
|
142378
142972
|
dashboardAri: Scalars['ID']['input'];
|
|
142379
142973
|
};
|
|
142974
|
+
export declare type QueryAvpanalytics_GetDataSourcesArgs = {
|
|
142975
|
+
cloudId: Scalars['ID']['input'];
|
|
142976
|
+
searchInput?: InputMaybe<AvpAnalyticsSearchInput>;
|
|
142977
|
+
workspaceId: Scalars['ID']['input'];
|
|
142978
|
+
};
|
|
142380
142979
|
export declare type QueryAvpanalytics_GetModelArgs = {
|
|
142381
142980
|
input?: InputMaybe<AvpAnalyticsGetModelInput>;
|
|
142382
142981
|
};
|
|
@@ -144190,8 +144789,16 @@ export declare type QueryGraphIntegration_TwgCapabilityContainersInContextArgs =
|
|
|
144190
144789
|
last?: InputMaybe<Scalars['Int']['input']>;
|
|
144191
144790
|
};
|
|
144192
144791
|
export declare type QueryGravity_JpdImportIdeasArgs = {
|
|
144792
|
+
cloudId?: InputMaybe<Scalars['ID']['input']>;
|
|
144193
144793
|
input: JpdImportIdeasInput;
|
|
144194
144794
|
};
|
|
144795
|
+
export declare type QueryGravity_ViewTemplateMappingProposalsArgs = {
|
|
144796
|
+
cloudId: Scalars['ID']['input'];
|
|
144797
|
+
templateId: Scalars['ID']['input'];
|
|
144798
|
+
};
|
|
144799
|
+
export declare type QueryGravity_ViewTemplatesArgs = {
|
|
144800
|
+
cloudId: Scalars['ID']['input'];
|
|
144801
|
+
};
|
|
144195
144802
|
export declare type QueryGroupArgs = {
|
|
144196
144803
|
groupId?: InputMaybe<Scalars['String']['input']>;
|
|
144197
144804
|
groupName?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -144545,8 +145152,12 @@ export declare type QueryJpdViewsService_GlobalViewsByCriteriaArgs = {
|
|
|
144545
145152
|
sortBy?: InputMaybe<JpdViewsServiceSortByInput>;
|
|
144546
145153
|
};
|
|
144547
145154
|
export declare type QueryJpdViewsService_GlobalViewsByIdArgs = {
|
|
145155
|
+
cloudId: Scalars['ID']['input'];
|
|
144548
145156
|
ids: Array<Scalars['ID']['input']>;
|
|
144549
145157
|
};
|
|
145158
|
+
export declare type QueryJpdViewsService_HydrateGlobalViewsArgs = {
|
|
145159
|
+
cloudId: Scalars['ID']['input'];
|
|
145160
|
+
};
|
|
144550
145161
|
export declare type QueryJpdViewsService_HydrateUserArgs = {
|
|
144551
145162
|
cloudId: Scalars['ID']['input'];
|
|
144552
145163
|
};
|
|
@@ -144615,9 +145226,20 @@ export declare type QueryKitsune_FeedbackEventArgs = {
|
|
|
144615
145226
|
export declare type QueryKitsune_FeedbacksArgs = {
|
|
144616
145227
|
ids: Array<Scalars['ID']['input']>;
|
|
144617
145228
|
};
|
|
145229
|
+
export declare type QueryKitsune_FieldsArgs = {
|
|
145230
|
+
ids: Array<Scalars['ID']['input']>;
|
|
145231
|
+
};
|
|
144618
145232
|
export declare type QueryKitsune_NodeArgs = {
|
|
144619
145233
|
id: Scalars['ID']['input'];
|
|
144620
145234
|
};
|
|
145235
|
+
export declare type QueryKitsune_SearchFeedbackArgs = {
|
|
145236
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
145237
|
+
before?: InputMaybe<Scalars['String']['input']>;
|
|
145238
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
145239
|
+
input?: InputMaybe<KitsuneSearchFeedbackInput>;
|
|
145240
|
+
last?: InputMaybe<Scalars['Int']['input']>;
|
|
145241
|
+
workspaceAri: Scalars['ID']['input'];
|
|
145242
|
+
};
|
|
144621
145243
|
export declare type QueryKitsune_SectionsArgs = {
|
|
144622
145244
|
ids: Array<Scalars['ID']['input']>;
|
|
144623
145245
|
};
|
|
@@ -144625,6 +145247,10 @@ export declare type QueryKitsune_SpacesArgs = {
|
|
|
144625
145247
|
ids: Array<Scalars['ID']['input']>;
|
|
144626
145248
|
};
|
|
144627
145249
|
export declare type QueryKitsune_SpacesForWorkspaceArgs = {
|
|
145250
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
145251
|
+
before?: InputMaybe<Scalars['String']['input']>;
|
|
145252
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
145253
|
+
last?: InputMaybe<Scalars['Int']['input']>;
|
|
144628
145254
|
pagination?: InputMaybe<KitsunePaginationInput>;
|
|
144629
145255
|
workspaceAri: Scalars['ID']['input'];
|
|
144630
145256
|
};
|
|
@@ -179792,6 +180418,7 @@ export declare type TrelloMemberLabsPreference = {
|
|
|
179792
180418
|
dateModified?: Maybe<Scalars['DateTime']['output']>;
|
|
179793
180419
|
description: Scalars['String']['output'];
|
|
179794
180420
|
feature: TrelloLabsFeature;
|
|
180421
|
+
isEligible: Scalars['Boolean']['output'];
|
|
179795
180422
|
name: Scalars['String']['output'];
|
|
179796
180423
|
status: TrelloLabsFeatureStatus;
|
|
179797
180424
|
};
|
|
@@ -179872,6 +180499,7 @@ export declare type TrelloMergeCardsInput = {
|
|
|
179872
180499
|
};
|
|
179873
180500
|
export declare type TrelloMergeCardsPayload = Payload & {
|
|
179874
180501
|
__typename?: 'TrelloMergeCardsPayload';
|
|
180502
|
+
actionId?: Maybe<Scalars['ID']['output']>;
|
|
179875
180503
|
archivedCardIds?: Maybe<Array<Scalars['ID']['output']>>;
|
|
179876
180504
|
card?: Maybe<TrelloBaseCard>;
|
|
179877
180505
|
errors?: Maybe<Array<MutationError>>;
|
|
@@ -180053,6 +180681,7 @@ export declare type TrelloMutationApi = {
|
|
|
180053
180681
|
updateKeyboardShortcutsPref?: Maybe<TrelloUpdateKeyboardShortcutsPrefPayload>;
|
|
180054
180682
|
updateMemberTimezone?: Maybe<TrelloUpdateMemberTimezonePayload>;
|
|
180055
180683
|
updateOAuth2Client?: Maybe<TrelloUpdateOAuth2ClientPayload>;
|
|
180684
|
+
updatePlannerDueDateCardSettings?: Maybe<TrelloUpdatePlannerDueDateCardSettingsPayload>;
|
|
180056
180685
|
updatePrimaryPlannerAccount?: Maybe<TrelloUpdatePrimaryPlannerAccountPayload>;
|
|
180057
180686
|
updateProactiveSmartScheduleStatus?: Maybe<TrelloUpdateProactiveSmartScheduleStatusPayload>;
|
|
180058
180687
|
updateProposedEvent?: Maybe<TrelloUpdateProposedEventPayload>;
|
|
@@ -180261,6 +180890,9 @@ export declare type TrelloMutationApiUpdateMemberTimezoneArgs = {
|
|
|
180261
180890
|
export declare type TrelloMutationApiUpdateOAuth2ClientArgs = {
|
|
180262
180891
|
input: TrelloUpdateOAuth2ClientInput;
|
|
180263
180892
|
};
|
|
180893
|
+
export declare type TrelloMutationApiUpdatePlannerDueDateCardSettingsArgs = {
|
|
180894
|
+
input: TrelloUpdatePlannerDueDateCardSettingsInput;
|
|
180895
|
+
};
|
|
180264
180896
|
export declare type TrelloMutationApiUpdatePrimaryPlannerAccountArgs = {
|
|
180265
180897
|
input: TrelloUpdatePrimaryPlannerAccountInput;
|
|
180266
180898
|
};
|
|
@@ -180704,20 +181336,63 @@ export declare type TrelloPlannerCardWithDueDate = {
|
|
|
180704
181336
|
id: Scalars['ID']['output'];
|
|
180705
181337
|
listId?: Maybe<Scalars['ID']['output']>;
|
|
180706
181338
|
};
|
|
181339
|
+
export declare type TrelloPlannerCardWithDueDateBoardDeleted = {
|
|
181340
|
+
__typename?: 'TrelloPlannerCardWithDueDateBoardDeleted';
|
|
181341
|
+
id: Scalars['ID']['output'];
|
|
181342
|
+
objectId?: Maybe<Scalars['ID']['output']>;
|
|
181343
|
+
};
|
|
181344
|
+
export declare type TrelloPlannerCardWithDueDateDeleted = {
|
|
181345
|
+
__typename?: 'TrelloPlannerCardWithDueDateDeleted';
|
|
181346
|
+
boardId?: Maybe<Scalars['ID']['output']>;
|
|
181347
|
+
boardObjectId?: Maybe<Scalars['ID']['output']>;
|
|
181348
|
+
id: Scalars['ID']['output'];
|
|
181349
|
+
listId?: Maybe<Scalars['ID']['output']>;
|
|
181350
|
+
listObjectId?: Maybe<Scalars['ID']['output']>;
|
|
181351
|
+
objectId?: Maybe<Scalars['ID']['output']>;
|
|
181352
|
+
};
|
|
181353
|
+
export declare type TrelloPlannerCardWithDueDateListDeleted = {
|
|
181354
|
+
__typename?: 'TrelloPlannerCardWithDueDateListDeleted';
|
|
181355
|
+
boardId?: Maybe<Scalars['ID']['output']>;
|
|
181356
|
+
boardObjectId?: Maybe<Scalars['ID']['output']>;
|
|
181357
|
+
id: Scalars['ID']['output'];
|
|
181358
|
+
objectId?: Maybe<Scalars['ID']['output']>;
|
|
181359
|
+
};
|
|
181360
|
+
export declare type TrelloPlannerCardWithDueDateUpdated = {
|
|
181361
|
+
__typename?: 'TrelloPlannerCardWithDueDateUpdated';
|
|
181362
|
+
boardId?: Maybe<Scalars['ID']['output']>;
|
|
181363
|
+
boardObjectId?: Maybe<Scalars['ID']['output']>;
|
|
181364
|
+
due?: Maybe<Scalars['DateTime']['output']>;
|
|
181365
|
+
id: Scalars['ID']['output'];
|
|
181366
|
+
listId?: Maybe<Scalars['ID']['output']>;
|
|
181367
|
+
listObjectId?: Maybe<Scalars['ID']['output']>;
|
|
181368
|
+
objectId?: Maybe<Scalars['ID']['output']>;
|
|
181369
|
+
};
|
|
180707
181370
|
export declare type TrelloPlannerCardsWithDueDatesConnection = {
|
|
180708
181371
|
__typename?: 'TrelloPlannerCardsWithDueDatesConnection';
|
|
180709
181372
|
edges?: Maybe<Array<TrelloPlannerCardsWithDueDatesEdge>>;
|
|
180710
181373
|
pageInfo: PageInfo;
|
|
180711
181374
|
};
|
|
181375
|
+
export declare type TrelloPlannerCardsWithDueDatesConnectionUpdated = {
|
|
181376
|
+
__typename?: 'TrelloPlannerCardsWithDueDatesConnectionUpdated';
|
|
181377
|
+
edges?: Maybe<Array<TrelloPlannerCardsWithDueDatesEdgeUpdated>>;
|
|
181378
|
+
};
|
|
180712
181379
|
export declare type TrelloPlannerCardsWithDueDatesEdge = {
|
|
180713
181380
|
__typename?: 'TrelloPlannerCardsWithDueDatesEdge';
|
|
180714
181381
|
cursor?: Maybe<Scalars['String']['output']>;
|
|
180715
181382
|
node?: Maybe<TrelloPlannerCardWithDueDate>;
|
|
180716
181383
|
};
|
|
181384
|
+
export declare type TrelloPlannerCardsWithDueDatesEdgeUpdated = {
|
|
181385
|
+
__typename?: 'TrelloPlannerCardsWithDueDatesEdgeUpdated';
|
|
181386
|
+
node?: Maybe<TrelloPlannerCardWithDueDateUpdated>;
|
|
181387
|
+
};
|
|
180717
181388
|
export declare type TrelloPlannerCardsWithDueDatesFilter = {
|
|
180718
181389
|
dueEnd?: InputMaybe<Scalars['DateTime']['input']>;
|
|
180719
181390
|
dueStart?: InputMaybe<Scalars['DateTime']['input']>;
|
|
180720
181391
|
};
|
|
181392
|
+
export declare type TrelloPlannerCardsWithDueDatesUpdatedFilter = {
|
|
181393
|
+
dueEnd?: InputMaybe<Scalars['DateTime']['input']>;
|
|
181394
|
+
dueStart?: InputMaybe<Scalars['DateTime']['input']>;
|
|
181395
|
+
};
|
|
180721
181396
|
export declare type TrelloPlannerDueDateCardsSettings = {
|
|
180722
181397
|
__typename?: 'TrelloPlannerDueDateCardsSettings';
|
|
180723
181398
|
assignedToMe?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -180830,13 +181505,20 @@ export declare type TrelloPlannerProviderCalendarUpdated = {
|
|
|
180830
181505
|
export declare type TrelloPlannerUpdated = {
|
|
180831
181506
|
__typename?: 'TrelloPlannerUpdated';
|
|
180832
181507
|
accounts?: Maybe<TrelloPlannerCalendarAccountConnectionUpdated>;
|
|
181508
|
+
cardsWithDueDates?: Maybe<TrelloPlannerCardsWithDueDatesConnectionUpdated>;
|
|
180833
181509
|
id: Scalars['ID']['output'];
|
|
181510
|
+
onBoardWithCardDueDeleted?: Maybe<Array<TrelloPlannerCardWithDueDateBoardDeleted>>;
|
|
181511
|
+
onCardWithDueDateDeleted?: Maybe<Array<TrelloPlannerCardWithDueDateDeleted>>;
|
|
181512
|
+
onListWithCardDueDeleted?: Maybe<Array<TrelloPlannerCardWithDueDateListDeleted>>;
|
|
180834
181513
|
onPlannerCalendarAccountDeleted?: Maybe<Array<TrelloPlannerCalendarAccountDeleted>>;
|
|
180835
181514
|
onProposedEventDeleted?: Maybe<Array<TrelloProposedEventDeleted>>;
|
|
180836
181515
|
primaryAccountId?: Maybe<Scalars['ID']['output']>;
|
|
180837
181516
|
primaryCalendarId?: Maybe<Scalars['ID']['output']>;
|
|
180838
181517
|
proposedEvents?: Maybe<TrelloPlannerProposedEventConnectionUpdated>;
|
|
180839
181518
|
};
|
|
181519
|
+
export declare type TrelloPlannerUpdatedCardsWithDueDatesArgs = {
|
|
181520
|
+
filter: TrelloPlannerCardsWithDueDatesUpdatedFilter;
|
|
181521
|
+
};
|
|
180840
181522
|
export declare type TrelloPowerUp = {
|
|
180841
181523
|
__typename?: 'TrelloPowerUp';
|
|
180842
181524
|
author?: Maybe<Scalars['String']['output']>;
|
|
@@ -181441,7 +182123,7 @@ export declare type TrelloSubscriptionApiOnInboxUpdatedArgs = {
|
|
|
181441
182123
|
memberId: Scalars['ID']['input'];
|
|
181442
182124
|
};
|
|
181443
182125
|
export declare type TrelloSubscriptionApiOnMemberPlannerEventCardsUpdatedArgs = {
|
|
181444
|
-
memberId
|
|
182126
|
+
memberId: Scalars['ID']['input'];
|
|
181445
182127
|
};
|
|
181446
182128
|
export declare type TrelloSubscriptionApiOnMemberUpdatedArgs = {
|
|
181447
182129
|
id: Scalars['ID']['input'];
|
|
@@ -181871,6 +182553,15 @@ export declare type TrelloUpdateOAuth2ClientPayload = Payload & {
|
|
|
181871
182553
|
errors?: Maybe<Array<MutationError>>;
|
|
181872
182554
|
success: Scalars['Boolean']['output'];
|
|
181873
182555
|
};
|
|
182556
|
+
export declare type TrelloUpdatePlannerDueDateCardSettingsInput = {
|
|
182557
|
+
assignedToMe?: InputMaybe<Scalars['Boolean']['input']>;
|
|
182558
|
+
};
|
|
182559
|
+
export declare type TrelloUpdatePlannerDueDateCardSettingsPayload = Payload & {
|
|
182560
|
+
__typename?: 'TrelloUpdatePlannerDueDateCardSettingsPayload';
|
|
182561
|
+
errors?: Maybe<Array<MutationError>>;
|
|
182562
|
+
planner?: Maybe<TrelloPlanner>;
|
|
182563
|
+
success: Scalars['Boolean']['output'];
|
|
182564
|
+
};
|
|
181874
182565
|
export declare type TrelloUpdatePrimaryPlannerAccountInput = {
|
|
181875
182566
|
calendarId?: InputMaybe<Scalars['ID']['input']>;
|
|
181876
182567
|
providerAccountId: Scalars['ID']['input'];
|