@forge/cli-shared 8.15.2-next.3-experimental-e2ec7ba → 8.15.2-next.3-experimental-112266b
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +7 -2
- package/out/graphql/graphql-types.d.ts +694 -11
- package/out/graphql/graphql-types.d.ts.map +1 -1
- package/out/graphql/graphql-types.js +172 -38
- package/package.json +3 -3
|
@@ -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']>;
|
|
@@ -7021,7 +7144,7 @@ export declare type AssetsAriAttributeOnObject = AssetsAttributeOnObject & {
|
|
|
7021
7144
|
name: Scalars['String']['output'];
|
|
7022
7145
|
value?: Maybe<Array<AssetsAriAttributeValue>>;
|
|
7023
7146
|
};
|
|
7024
|
-
export declare type AssetsAriAttributeValue = AppUser | AtlassianAccountUser | CustomerUser | IdentityGroup | TeamV2;
|
|
7147
|
+
export declare type AssetsAriAttributeValue = AppUser | AtlassianAccountUser | CompassComponent | CustomerUser | IdentityGroup | TeamV2;
|
|
7025
7148
|
export declare type AssetsAttributeOnObject = {
|
|
7026
7149
|
attribute?: Maybe<AssetsObjectTypeAttribute>;
|
|
7027
7150
|
id: Scalars['ID']['output'];
|
|
@@ -7161,6 +7284,16 @@ export declare type AssetsDmBatchCreateComputeDictionaryValuesResponse = {
|
|
|
7161
7284
|
successCount: Scalars['Int']['output'];
|
|
7162
7285
|
totalCount: Scalars['Int']['output'];
|
|
7163
7286
|
};
|
|
7287
|
+
export declare type AssetsDmBigfixDefaultQueryMappingResponse = {
|
|
7288
|
+
__typename?: 'AssetsDMBigfixDefaultQueryMappingResponse';
|
|
7289
|
+
isSuccessful: Scalars['Boolean']['output'];
|
|
7290
|
+
mapping: Scalars['String']['output'];
|
|
7291
|
+
};
|
|
7292
|
+
export declare type AssetsDmBigfixDefaultQueryResponse = {
|
|
7293
|
+
__typename?: 'AssetsDMBigfixDefaultQueryResponse';
|
|
7294
|
+
isSuccessful: Scalars['Boolean']['output'];
|
|
7295
|
+
query: Scalars['String']['output'];
|
|
7296
|
+
};
|
|
7164
7297
|
export declare type AssetsDmChangeDataSourceStatusArgs = {
|
|
7165
7298
|
cloudId: Scalars['ID']['input'];
|
|
7166
7299
|
input: AssetsDmChangeDataSourceStatusInput;
|
|
@@ -11049,6 +11182,7 @@ export declare type CcpEntitlement = CommerceEntitlement & Node & {
|
|
|
11049
11182
|
experienceCapabilities?: Maybe<CcpEntitlementExperienceCapabilities>;
|
|
11050
11183
|
featureOverrides?: Maybe<Array<Maybe<CcpMapEntry>>>;
|
|
11051
11184
|
featureVariables?: Maybe<Array<Maybe<CcpMapEntry>>>;
|
|
11185
|
+
hasSid?: Maybe<Scalars['Boolean']['output']>;
|
|
11052
11186
|
id: Scalars['ID']['output'];
|
|
11053
11187
|
invoiceRequests?: Maybe<Array<Maybe<CcpInvoiceRequest>>>;
|
|
11054
11188
|
isEligibleForCloudMigrationTrial?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -15334,6 +15468,7 @@ export declare type CommerceExpEntitlementDetailsForCreateEntitlement = {
|
|
|
15334
15468
|
};
|
|
15335
15469
|
export declare type CommerceExpEntitlementFilter = {
|
|
15336
15470
|
excludeMultiInstanceChild?: InputMaybe<Scalars['Boolean']['input']>;
|
|
15471
|
+
excludedProductKeys?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
15337
15472
|
includeFutureDated?: InputMaybe<Scalars['Boolean']['input']>;
|
|
15338
15473
|
includeManuallyBilled?: InputMaybe<Scalars['Boolean']['input']>;
|
|
15339
15474
|
isSandbox?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -25210,6 +25345,14 @@ export declare enum ConfluenceMutationContentStatus {
|
|
|
25210
25345
|
Current = "CURRENT",
|
|
25211
25346
|
Draft = "DRAFT"
|
|
25212
25347
|
}
|
|
25348
|
+
export declare type ConfluenceNbmAddGlobalTransformerInput = {
|
|
25349
|
+
transformerJson: Scalars['String']['input'];
|
|
25350
|
+
};
|
|
25351
|
+
export declare type ConfluenceNbmAddGlobalTransformerPayload = Payload & {
|
|
25352
|
+
__typename?: 'ConfluenceNbmAddGlobalTransformerPayload';
|
|
25353
|
+
errors?: Maybe<Array<MutationError>>;
|
|
25354
|
+
success: Scalars['Boolean']['output'];
|
|
25355
|
+
};
|
|
25213
25356
|
export declare type ConfluenceNbmBulkUpdateVerificationEntryInput = {
|
|
25214
25357
|
scanId: Scalars['ID']['input'];
|
|
25215
25358
|
verificationEntries: Array<InputMaybe<ConfluenceNbmVerificationEntryInput>>;
|
|
@@ -26818,9 +26961,11 @@ export declare type ConfluenceRestrictionsResult = {
|
|
|
26818
26961
|
export declare type ConfluenceReviewerDecisionInfo = {
|
|
26819
26962
|
__typename?: 'ConfluenceReviewerDecisionInfo';
|
|
26820
26963
|
comment?: Maybe<Scalars['String']['output']>;
|
|
26964
|
+
decisionId?: Maybe<Scalars['ID']['output']>;
|
|
26821
26965
|
lastModifiedDate?: Maybe<ConfluenceApprovalsDate>;
|
|
26822
26966
|
principalId: Scalars['String']['output'];
|
|
26823
26967
|
principalType: ConfluencePrincipalType;
|
|
26968
|
+
required?: Maybe<Scalars['Boolean']['output']>;
|
|
26824
26969
|
reviewerDecisionStatus?: Maybe<ConfluenceReviewerDecisionState>;
|
|
26825
26970
|
user?: Maybe<AtlassianUser>;
|
|
26826
26971
|
};
|
|
@@ -28474,6 +28619,10 @@ export declare enum ConfluenceWorkflowReviewStatus {
|
|
|
28474
28619
|
}
|
|
28475
28620
|
export declare type ConfluenceWorkflowReviewWithDecisions = {
|
|
28476
28621
|
__typename?: 'ConfluenceWorkflowReviewWithDecisions';
|
|
28622
|
+
creationDate?: Maybe<ConfluenceApprovalsDate>;
|
|
28623
|
+
creator?: Maybe<AtlassianUser>;
|
|
28624
|
+
creatorAaid?: Maybe<Scalars['ID']['output']>;
|
|
28625
|
+
id: Scalars['ID']['output'];
|
|
28477
28626
|
reviewComment?: Maybe<Scalars['String']['output']>;
|
|
28478
28627
|
reviewLastModified?: Maybe<ConfluenceApprovalsDate>;
|
|
28479
28628
|
reviewStatus: ConfluenceWorkflowReviewStatus;
|
|
@@ -35600,9 +35749,13 @@ export declare type DevAiRunAutofixScanInput = {
|
|
|
35600
35749
|
};
|
|
35601
35750
|
export declare type DevAiSandbox = {
|
|
35602
35751
|
__typename?: 'DevAiSandbox';
|
|
35752
|
+
error?: Maybe<DevAiSandboxError>;
|
|
35603
35753
|
progress?: Maybe<DevAiSandboxProgress>;
|
|
35604
35754
|
readiness?: Maybe<DevAiSandboxReadiness>;
|
|
35605
35755
|
};
|
|
35756
|
+
export declare enum DevAiSandboxError {
|
|
35757
|
+
Unknown = "UNKNOWN"
|
|
35758
|
+
}
|
|
35606
35759
|
export declare type DevAiSandboxProgress = {
|
|
35607
35760
|
name?: Maybe<Scalars['String']['output']>;
|
|
35608
35761
|
};
|
|
@@ -39501,6 +39654,7 @@ export declare type ExternalPullRequest = Node & {
|
|
|
39501
39654
|
displayId?: Maybe<Scalars['String']['output']>;
|
|
39502
39655
|
displayName?: Maybe<Scalars['String']['output']>;
|
|
39503
39656
|
id: Scalars['ID']['output'];
|
|
39657
|
+
largeDescription?: Maybe<ExternalLargeContent>;
|
|
39504
39658
|
lastUpdate?: Maybe<Scalars['String']['output']>;
|
|
39505
39659
|
lastUpdatedBy?: Maybe<ExternalUser>;
|
|
39506
39660
|
owners?: Maybe<Array<Maybe<ExternalUser>>>;
|
|
@@ -92951,6 +93105,197 @@ export declare type GraphStoreVulnerabilityAssociatedIssueSortInput = {
|
|
|
92951
93105
|
export declare type GraphStoreWorkerAssociatedExternalWorkerSortInput = {
|
|
92952
93106
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
92953
93107
|
};
|
|
93108
|
+
export declare type GravityCreateViewFromTemplateInput = {
|
|
93109
|
+
name?: InputMaybe<Scalars['String']['input']>;
|
|
93110
|
+
projectId: Scalars['ID']['input'];
|
|
93111
|
+
refMappings?: InputMaybe<GravityRefMappingsInput>;
|
|
93112
|
+
refResolutionStrategy?: InputMaybe<GravityRefResolutionStrategy>;
|
|
93113
|
+
templateId: Scalars['ID']['input'];
|
|
93114
|
+
};
|
|
93115
|
+
export declare type GravityCreateViewFromTemplatePayload = Payload & {
|
|
93116
|
+
__typename?: 'GravityCreateViewFromTemplatePayload';
|
|
93117
|
+
createdViewId: Scalars['ID']['output'];
|
|
93118
|
+
errors?: Maybe<Array<MutationError>>;
|
|
93119
|
+
success: Scalars['Boolean']['output'];
|
|
93120
|
+
};
|
|
93121
|
+
export declare type GravityField = {
|
|
93122
|
+
__typename?: 'GravityField';
|
|
93123
|
+
configuration?: Maybe<Scalars['JSON']['output']>;
|
|
93124
|
+
custom: Scalars['Boolean']['output'];
|
|
93125
|
+
description?: Maybe<Scalars['JSON']['output']>;
|
|
93126
|
+
global: Scalars['Boolean']['output'];
|
|
93127
|
+
key: Scalars['String']['output'];
|
|
93128
|
+
name: Scalars['String']['output'];
|
|
93129
|
+
options?: Maybe<Array<Scalars['JSON']['output']>>;
|
|
93130
|
+
type: Scalars['String']['output'];
|
|
93131
|
+
};
|
|
93132
|
+
export declare type GravityFieldDefinition = {
|
|
93133
|
+
__typename?: 'GravityFieldDefinition';
|
|
93134
|
+
configuration?: Maybe<Scalars['JSON']['output']>;
|
|
93135
|
+
description?: Maybe<Scalars['JSON']['output']>;
|
|
93136
|
+
global: Scalars['Boolean']['output'];
|
|
93137
|
+
name: Scalars['String']['output'];
|
|
93138
|
+
options?: Maybe<Array<Scalars['JSON']['output']>>;
|
|
93139
|
+
ref: Scalars['VTRI']['output'];
|
|
93140
|
+
type: Scalars['String']['output'];
|
|
93141
|
+
};
|
|
93142
|
+
export declare type GravityFieldMappingProposals = {
|
|
93143
|
+
__typename?: 'GravityFieldMappingProposals';
|
|
93144
|
+
proposals: Array<GravityField>;
|
|
93145
|
+
ref: Scalars['VTRI']['output'];
|
|
93146
|
+
};
|
|
93147
|
+
export declare type GravityFieldRefMappingInput = {
|
|
93148
|
+
key: Scalars['String']['input'];
|
|
93149
|
+
ref: Scalars['VTRI']['input'];
|
|
93150
|
+
};
|
|
93151
|
+
export declare type GravityRefMappingProposals = {
|
|
93152
|
+
__typename?: 'GravityRefMappingProposals';
|
|
93153
|
+
fields: Array<GravityFieldMappingProposals>;
|
|
93154
|
+
};
|
|
93155
|
+
export declare type GravityRefMappingsInput = {
|
|
93156
|
+
fields: Array<GravityFieldRefMappingInput>;
|
|
93157
|
+
};
|
|
93158
|
+
export declare enum GravityRefResolutionStrategy {
|
|
93159
|
+
CreateIfMissing = "CREATE_IF_MISSING",
|
|
93160
|
+
FailIfMissing = "FAIL_IF_MISSING",
|
|
93161
|
+
FirstBestMatchThenCreate = "FIRST_BEST_MATCH_THEN_CREATE",
|
|
93162
|
+
FirstBestMatchThenFail = "FIRST_BEST_MATCH_THEN_FAIL",
|
|
93163
|
+
Match = "MATCH"
|
|
93164
|
+
}
|
|
93165
|
+
export declare enum GravitySortOrder {
|
|
93166
|
+
Asc = "ASC",
|
|
93167
|
+
Desc = "DESC"
|
|
93168
|
+
}
|
|
93169
|
+
export declare type GravityView = {
|
|
93170
|
+
__typename?: 'GravityView';
|
|
93171
|
+
config: GravityViewConfig;
|
|
93172
|
+
description?: Maybe<Scalars['JSON']['output']>;
|
|
93173
|
+
emoji?: Maybe<Scalars['String']['output']>;
|
|
93174
|
+
name: Scalars['String']['output'];
|
|
93175
|
+
visualizationType: GravityViewVisualizationType;
|
|
93176
|
+
};
|
|
93177
|
+
export declare enum GravityViewColorStyle {
|
|
93178
|
+
Background = "BACKGROUND",
|
|
93179
|
+
Highlight = "HIGHLIGHT"
|
|
93180
|
+
}
|
|
93181
|
+
export declare enum GravityViewColumnSize {
|
|
93182
|
+
Default = "DEFAULT",
|
|
93183
|
+
Large = "LARGE",
|
|
93184
|
+
Small = "SMALL"
|
|
93185
|
+
}
|
|
93186
|
+
export declare type GravityViewConfig = {
|
|
93187
|
+
__typename?: 'GravityViewConfig';
|
|
93188
|
+
boldColors?: Maybe<Scalars['Boolean']['output']>;
|
|
93189
|
+
colorBy?: Maybe<Scalars['VTRI']['output']>;
|
|
93190
|
+
colorStyle?: Maybe<GravityViewColorStyle>;
|
|
93191
|
+
columnSize?: Maybe<GravityViewColumnSize>;
|
|
93192
|
+
fields: Array<Scalars['VTRI']['output']>;
|
|
93193
|
+
filter: Array<GravityViewFilter>;
|
|
93194
|
+
groupBy?: Maybe<Scalars['VTRI']['output']>;
|
|
93195
|
+
groupsFilter?: Maybe<Array<GravityViewFilter>>;
|
|
93196
|
+
hideEmptyColumns?: Maybe<Scalars['Boolean']['output']>;
|
|
93197
|
+
hideEmptyGroups?: Maybe<Scalars['Boolean']['output']>;
|
|
93198
|
+
layoutType?: Maybe<GravityViewLayoutType>;
|
|
93199
|
+
sort: Array<GravityViewSort>;
|
|
93200
|
+
sortMode?: Maybe<GravityViewSortMode>;
|
|
93201
|
+
verticalGroupBy?: Maybe<Scalars['VTRI']['output']>;
|
|
93202
|
+
verticalGroupsFilter?: Maybe<Array<GravityViewFilter>>;
|
|
93203
|
+
};
|
|
93204
|
+
export declare type GravityViewFilter = {
|
|
93205
|
+
__typename?: 'GravityViewFilter';
|
|
93206
|
+
field?: Maybe<Scalars['VTRI']['output']>;
|
|
93207
|
+
kind: GravityViewFilterKind;
|
|
93208
|
+
values: Array<GravityViewFilterValue>;
|
|
93209
|
+
};
|
|
93210
|
+
export declare enum GravityViewFilterEnumType {
|
|
93211
|
+
BoardColumn = "BOARD_COLUMN",
|
|
93212
|
+
ViewGroup = "VIEW_GROUP"
|
|
93213
|
+
}
|
|
93214
|
+
export declare enum GravityViewFilterKind {
|
|
93215
|
+
ConnectionFieldIdentity = "CONNECTION_FIELD_IDENTITY",
|
|
93216
|
+
FieldHasValue = "FIELD_HAS_VALUE",
|
|
93217
|
+
FieldIdentity = "FIELD_IDENTITY",
|
|
93218
|
+
FieldNumeric = "FIELD_NUMERIC",
|
|
93219
|
+
Interval = "INTERVAL",
|
|
93220
|
+
Text = "TEXT"
|
|
93221
|
+
}
|
|
93222
|
+
export declare enum GravityViewFilterOperator {
|
|
93223
|
+
EndAfterNow = "END_AFTER_NOW",
|
|
93224
|
+
EndBeforeNow = "END_BEFORE_NOW",
|
|
93225
|
+
Eq = "EQ",
|
|
93226
|
+
Gt = "GT",
|
|
93227
|
+
Gte = "GTE",
|
|
93228
|
+
ItemEndsAfter = "ITEM_ENDS_AFTER",
|
|
93229
|
+
ItemEndsAfterPast = "ITEM_ENDS_AFTER_PAST",
|
|
93230
|
+
ItemStartsBefore = "ITEM_STARTS_BEFORE",
|
|
93231
|
+
ItemStartsBeforeNext = "ITEM_STARTS_BEFORE_NEXT",
|
|
93232
|
+
Lt = "LT",
|
|
93233
|
+
Lte = "LTE",
|
|
93234
|
+
Neq = "NEQ",
|
|
93235
|
+
StartAfterNow = "START_AFTER_NOW",
|
|
93236
|
+
StartBeforeNow = "START_BEFORE_NOW"
|
|
93237
|
+
}
|
|
93238
|
+
export declare type GravityViewFilterValue = {
|
|
93239
|
+
__typename?: 'GravityViewFilterValue';
|
|
93240
|
+
enumValue?: Maybe<GravityViewFilterEnumType>;
|
|
93241
|
+
numericValue?: Maybe<Scalars['Float']['output']>;
|
|
93242
|
+
operator?: Maybe<GravityViewFilterOperator>;
|
|
93243
|
+
stringValue?: Maybe<Scalars['String']['output']>;
|
|
93244
|
+
};
|
|
93245
|
+
export declare enum GravityViewLayoutType {
|
|
93246
|
+
Compact = "COMPACT",
|
|
93247
|
+
Detailed = "DETAILED",
|
|
93248
|
+
Summary = "SUMMARY"
|
|
93249
|
+
}
|
|
93250
|
+
export declare type GravityViewSort = {
|
|
93251
|
+
__typename?: 'GravityViewSort';
|
|
93252
|
+
field: Scalars['VTRI']['output'];
|
|
93253
|
+
order: GravitySortOrder;
|
|
93254
|
+
};
|
|
93255
|
+
export declare enum GravityViewSortMode {
|
|
93256
|
+
FieldsSort = "FIELDS_SORT",
|
|
93257
|
+
ProjectRank = "PROJECT_RANK",
|
|
93258
|
+
ViewRank = "VIEW_RANK"
|
|
93259
|
+
}
|
|
93260
|
+
export declare type GravityViewTemplate = {
|
|
93261
|
+
__typename?: 'GravityViewTemplate';
|
|
93262
|
+
colorScheme?: Maybe<GravityViewTemplateColorScheme>;
|
|
93263
|
+
definitions?: Maybe<GravityViewTemplateDefinitions>;
|
|
93264
|
+
id: Scalars['ID']['output'];
|
|
93265
|
+
longDescription?: Maybe<Scalars['JSON']['output']>;
|
|
93266
|
+
name: Scalars['String']['output'];
|
|
93267
|
+
screenshot?: Maybe<GravityViewTemplateImage>;
|
|
93268
|
+
shortDescription?: Maybe<Scalars['JSON']['output']>;
|
|
93269
|
+
thumbnail?: Maybe<GravityViewTemplateImage>;
|
|
93270
|
+
view: GravityView;
|
|
93271
|
+
};
|
|
93272
|
+
export declare enum GravityViewTemplateColorScheme {
|
|
93273
|
+
Blue = "BLUE",
|
|
93274
|
+
Default = "DEFAULT",
|
|
93275
|
+
Green = "GREEN",
|
|
93276
|
+
Lime = "LIME",
|
|
93277
|
+
Magenta = "MAGENTA",
|
|
93278
|
+
Orange = "ORANGE",
|
|
93279
|
+
Purple = "PURPLE",
|
|
93280
|
+
Teal = "TEAL"
|
|
93281
|
+
}
|
|
93282
|
+
export declare type GravityViewTemplateDefinitions = {
|
|
93283
|
+
__typename?: 'GravityViewTemplateDefinitions';
|
|
93284
|
+
fields: Array<GravityFieldDefinition>;
|
|
93285
|
+
};
|
|
93286
|
+
export declare type GravityViewTemplateImage = {
|
|
93287
|
+
__typename?: 'GravityViewTemplateImage';
|
|
93288
|
+
alt?: Maybe<Scalars['String']['output']>;
|
|
93289
|
+
src: Scalars['String']['output'];
|
|
93290
|
+
srcDark?: Maybe<Scalars['String']['output']>;
|
|
93291
|
+
};
|
|
93292
|
+
export declare enum GravityViewVisualizationType {
|
|
93293
|
+
Board = "BOARD",
|
|
93294
|
+
List = "LIST",
|
|
93295
|
+
Matrix = "MATRIX",
|
|
93296
|
+
Table = "TABLE",
|
|
93297
|
+
Timeline = "TIMELINE"
|
|
93298
|
+
}
|
|
92954
93299
|
export declare type Group = {
|
|
92955
93300
|
__typename?: 'Group';
|
|
92956
93301
|
id?: Maybe<Scalars['String']['output']>;
|
|
@@ -99413,6 +99758,7 @@ export declare type JiraBoardViewSwimlaneLayout = Node & {
|
|
|
99413
99758
|
export declare type JiraBoardViewSwimlaneLayoutSwimlanesArgs = {
|
|
99414
99759
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
99415
99760
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
99761
|
+
settings?: InputMaybe<JiraBoardViewSettings>;
|
|
99416
99762
|
};
|
|
99417
99763
|
export declare type JiraBoardViewSyntheticFieldCardOption = JiraBoardViewCardOption & {
|
|
99418
99764
|
__typename?: 'JiraBoardViewSyntheticFieldCardOption';
|
|
@@ -106681,6 +107027,7 @@ export declare type JiraIssueSearchTimelineViewConfigSettings = {
|
|
|
106681
107027
|
__typename?: 'JiraIssueSearchTimelineViewConfigSettings';
|
|
106682
107028
|
aggregationConfig?: Maybe<JiraIssueSearchAggregationConfigSettings>;
|
|
106683
107029
|
barColorMode?: Maybe<JiraBarColorMode>;
|
|
107030
|
+
hideDependencies?: Maybe<Scalars['Boolean']['output']>;
|
|
106684
107031
|
hideReleases?: Maybe<Scalars['Boolean']['output']>;
|
|
106685
107032
|
hideWarnings?: Maybe<Scalars['Boolean']['output']>;
|
|
106686
107033
|
highlightedReleases?: Maybe<Array<Scalars['ID']['output']>>;
|
|
@@ -107630,6 +107977,7 @@ export declare type JiraJqlBuilderRecentlyUsedUsersArgs = {
|
|
|
107630
107977
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
107631
107978
|
before?: InputMaybe<Scalars['String']['input']>;
|
|
107632
107979
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
107980
|
+
includeAiAgents?: InputMaybe<Scalars['Boolean']['input']>;
|
|
107633
107981
|
last?: InputMaybe<Scalars['Int']['input']>;
|
|
107634
107982
|
};
|
|
107635
107983
|
export declare type JiraJqlBuilderSuggestedGroupsArgs = {
|
|
@@ -118233,11 +118581,11 @@ export declare type JiraTownsquareProjectEntry = {
|
|
|
118233
118581
|
hasPermission?: Maybe<Scalars['Boolean']['output']>;
|
|
118234
118582
|
iconName?: Maybe<Scalars['String']['output']>;
|
|
118235
118583
|
id?: Maybe<Scalars['String']['output']>;
|
|
118584
|
+
isWorkspaceActive?: Maybe<Scalars['Boolean']['output']>;
|
|
118236
118585
|
key?: Maybe<Scalars['String']['output']>;
|
|
118237
118586
|
name?: Maybe<Scalars['String']['output']>;
|
|
118238
118587
|
privateProject?: Maybe<Scalars['Boolean']['output']>;
|
|
118239
118588
|
state?: Maybe<Scalars['String']['output']>;
|
|
118240
|
-
workspaceActive?: Maybe<Scalars['Boolean']['output']>;
|
|
118241
118589
|
};
|
|
118242
118590
|
export declare type JiraTownsquareProjectField = JiraIssueField & JiraIssueFieldConfiguration & JiraUserIssueFieldConfiguration & Node & {
|
|
118243
118591
|
__typename?: 'JiraTownsquareProjectField';
|
|
@@ -120861,6 +121209,14 @@ export declare type JpdViewsServiceGlobalViewEdge = {
|
|
|
120861
121209
|
export declare type JpdViewsServiceGlobalViewsByCriteriaInput = {
|
|
120862
121210
|
containsText: Scalars['String']['input'];
|
|
120863
121211
|
};
|
|
121212
|
+
export declare type JpdViewsServiceGlobalViewsHydrationExample = {
|
|
121213
|
+
__typename?: 'JpdViewsServiceGlobalViewsHydrationExample';
|
|
121214
|
+
cloudId: Scalars['ID']['output'];
|
|
121215
|
+
viewsData?: Maybe<Array<Maybe<JpdViewsServiceGlobalView>>>;
|
|
121216
|
+
};
|
|
121217
|
+
export declare type JpdViewsServiceGlobalViewsHydrationExampleViewsDataArgs = {
|
|
121218
|
+
ids: Array<Scalars['ID']['input']>;
|
|
121219
|
+
};
|
|
120864
121220
|
export declare type JpdViewsServiceMatrixConfig = {
|
|
120865
121221
|
__typename?: 'JpdViewsServiceMatrixConfig';
|
|
120866
121222
|
axes: Array<JpdViewsServiceAxisConfig>;
|
|
@@ -122358,6 +122714,13 @@ export declare type KitsuneConnection = {
|
|
|
122358
122714
|
edges: Array<KitsuneEdge>;
|
|
122359
122715
|
pageInfo: PageInfo;
|
|
122360
122716
|
};
|
|
122717
|
+
export declare type KitsuneCustomer = {
|
|
122718
|
+
__typename?: 'KitsuneCustomer';
|
|
122719
|
+
displayName?: Maybe<Scalars['String']['output']>;
|
|
122720
|
+
email: Scalars['String']['output'];
|
|
122721
|
+
id: Scalars['ID']['output'];
|
|
122722
|
+
organizations?: Maybe<Array<KitsuneOrganization>>;
|
|
122723
|
+
};
|
|
122361
122724
|
export declare type KitsuneDateValue = {
|
|
122362
122725
|
__typename?: 'KitsuneDateValue';
|
|
122363
122726
|
_id: Scalars['ID']['output'];
|
|
@@ -122379,6 +122742,10 @@ export declare type KitsuneFeedback = Node & {
|
|
|
122379
122742
|
title?: Maybe<Scalars['String']['output']>;
|
|
122380
122743
|
};
|
|
122381
122744
|
export declare type KitsuneFeedbackChunksArgs = {
|
|
122745
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
122746
|
+
before?: InputMaybe<Scalars['String']['input']>;
|
|
122747
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
122748
|
+
last?: InputMaybe<Scalars['Int']['input']>;
|
|
122382
122749
|
pagination?: InputMaybe<KitsunePaginationInput>;
|
|
122383
122750
|
};
|
|
122384
122751
|
export declare type KitsuneFeedbackConnection = KitsuneConnection & {
|
|
@@ -122407,13 +122774,16 @@ export declare type KitsuneFeedbackEvent = {
|
|
|
122407
122774
|
};
|
|
122408
122775
|
export declare type KitsuneFeedbackSummary = {
|
|
122409
122776
|
__typename?: 'KitsuneFeedbackSummary';
|
|
122410
|
-
content
|
|
122411
|
-
generatedAt
|
|
122777
|
+
content?: Maybe<Scalars['KitsuneADF']['output']>;
|
|
122778
|
+
generatedAt?: Maybe<Scalars['DateTime']['output']>;
|
|
122779
|
+
status?: Maybe<KitsuneSummaryStatus>;
|
|
122780
|
+
updatedAt?: Maybe<Scalars['DateTime']['output']>;
|
|
122781
|
+
updatedBy?: Maybe<Scalars['String']['output']>;
|
|
122412
122782
|
};
|
|
122413
|
-
export declare type KitsuneField =
|
|
122783
|
+
export declare type KitsuneField = Node & {
|
|
122414
122784
|
__typename?: 'KitsuneField';
|
|
122415
|
-
_id: Scalars['ID']['output'];
|
|
122416
122785
|
description?: Maybe<Scalars['String']['output']>;
|
|
122786
|
+
id: Scalars['ID']['output'];
|
|
122417
122787
|
name: Scalars['String']['output'];
|
|
122418
122788
|
type: KitsuneFieldType;
|
|
122419
122789
|
};
|
|
@@ -122473,12 +122843,25 @@ export declare type KitsuneNumberValue = {
|
|
|
122473
122843
|
_id: Scalars['ID']['output'];
|
|
122474
122844
|
value: Scalars['Float']['output'];
|
|
122475
122845
|
};
|
|
122846
|
+
export declare type KitsuneOrganization = {
|
|
122847
|
+
__typename?: 'KitsuneOrganization';
|
|
122848
|
+
id: Scalars['ID']['output'];
|
|
122849
|
+
name: Scalars['String']['output'];
|
|
122850
|
+
};
|
|
122476
122851
|
export declare type KitsunePaginationInput = {
|
|
122477
122852
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
122478
122853
|
before?: InputMaybe<Scalars['String']['input']>;
|
|
122479
122854
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
122480
122855
|
last?: InputMaybe<Scalars['Int']['input']>;
|
|
122481
122856
|
};
|
|
122857
|
+
export declare type KitsuneRankInput = {
|
|
122858
|
+
after?: InputMaybe<Scalars['ID']['input']>;
|
|
122859
|
+
before?: InputMaybe<Scalars['ID']['input']>;
|
|
122860
|
+
};
|
|
122861
|
+
export declare type KitsuneSearchFeedbackInput = {
|
|
122862
|
+
config?: InputMaybe<KitsuneViewConfigInput>;
|
|
122863
|
+
viewId?: InputMaybe<Scalars['ID']['input']>;
|
|
122864
|
+
};
|
|
122482
122865
|
export declare type KitsuneSection = Node & {
|
|
122483
122866
|
__typename?: 'KitsuneSection';
|
|
122484
122867
|
createdAt: Scalars['DateTime']['output'];
|
|
@@ -122494,7 +122877,7 @@ export declare type KitsuneSectionViewsArgs = {
|
|
|
122494
122877
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
122495
122878
|
last?: InputMaybe<Scalars['Int']['input']>;
|
|
122496
122879
|
};
|
|
122497
|
-
export declare type KitsuneSourceCategory = {
|
|
122880
|
+
export declare type KitsuneSourceCategory = KitsuneNode & {
|
|
122498
122881
|
__typename?: 'KitsuneSourceCategory';
|
|
122499
122882
|
_id: Scalars['ID']['output'];
|
|
122500
122883
|
type: KitsuneSourceCategoryType;
|
|
@@ -122532,9 +122915,17 @@ export declare type KitsuneSpaceFeedbacksArgs = {
|
|
|
122532
122915
|
pagination?: InputMaybe<KitsunePaginationInput>;
|
|
122533
122916
|
};
|
|
122534
122917
|
export declare type KitsuneSpaceFieldsArgs = {
|
|
122918
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
122919
|
+
before?: InputMaybe<Scalars['String']['input']>;
|
|
122920
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
122921
|
+
last?: InputMaybe<Scalars['Int']['input']>;
|
|
122535
122922
|
pagination?: InputMaybe<KitsunePaginationInput>;
|
|
122536
122923
|
};
|
|
122537
122924
|
export declare type KitsuneSpaceSourceCategoriesArgs = {
|
|
122925
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
122926
|
+
before?: InputMaybe<Scalars['String']['input']>;
|
|
122927
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
122928
|
+
last?: InputMaybe<Scalars['Int']['input']>;
|
|
122538
122929
|
pagination?: InputMaybe<KitsunePaginationInput>;
|
|
122539
122930
|
};
|
|
122540
122931
|
export declare type KitsuneSpaceViewTreeArgs = {
|
|
@@ -122553,6 +122944,11 @@ export declare type KitsuneSpaceEdge = KitsuneEdge & {
|
|
|
122553
122944
|
cursor: Scalars['String']['output'];
|
|
122554
122945
|
node?: Maybe<KitsuneSpace>;
|
|
122555
122946
|
};
|
|
122947
|
+
export declare enum KitsuneSummaryStatus {
|
|
122948
|
+
Done = "DONE",
|
|
122949
|
+
Error = "ERROR",
|
|
122950
|
+
Generating = "GENERATING"
|
|
122951
|
+
}
|
|
122556
122952
|
export declare type KitsuneTextValue = {
|
|
122557
122953
|
__typename?: 'KitsuneTextValue';
|
|
122558
122954
|
_id: Scalars['ID']['output'];
|
|
@@ -123548,6 +123944,7 @@ export declare type KnowledgeDiscoveryQueryApiJiraIntentDetectionArgs = {
|
|
|
123548
123944
|
model: KnowledgeDiscoveryJiraIntentDetectionModel;
|
|
123549
123945
|
orgId: Scalars['String']['input'];
|
|
123550
123946
|
query: Scalars['String']['input'];
|
|
123947
|
+
sessionId?: InputMaybe<Scalars['String']['input']>;
|
|
123551
123948
|
siteId: Scalars['String']['input'];
|
|
123552
123949
|
};
|
|
123553
123950
|
export declare type KnowledgeDiscoveryQueryApiKeyPhrasesArgs = {
|
|
@@ -128137,6 +128534,17 @@ export declare type MercuryAddWatcherToFocusAreaPayload = Payload & {
|
|
|
128137
128534
|
errors?: Maybe<Array<MutationError>>;
|
|
128138
128535
|
success: Scalars['Boolean']['output'];
|
|
128139
128536
|
};
|
|
128537
|
+
export declare type MercuryAggregateCostPerPeriodSummary = {
|
|
128538
|
+
__typename?: 'MercuryAggregateCostPerPeriodSummary';
|
|
128539
|
+
financialVersion?: Maybe<MercuryFinancialVersion>;
|
|
128540
|
+
total?: Maybe<MercuryMoney>;
|
|
128541
|
+
yearMonth?: Maybe<Scalars['String']['output']>;
|
|
128542
|
+
};
|
|
128543
|
+
export declare type MercuryAggregateCostSummary = {
|
|
128544
|
+
__typename?: 'MercuryAggregateCostSummary';
|
|
128545
|
+
financialVersion?: Maybe<MercuryFinancialVersion>;
|
|
128546
|
+
total?: Maybe<MercuryMoney>;
|
|
128547
|
+
};
|
|
128140
128548
|
export declare type MercuryAggregatedFocusAreaStatusCount = {
|
|
128141
128549
|
__typename?: 'MercuryAggregatedFocusAreaStatusCount';
|
|
128142
128550
|
children: MercuryFocusAreaStatusCount;
|
|
@@ -128510,6 +128918,47 @@ export declare type MercuryCommentEdge = {
|
|
|
128510
128918
|
cursor: Scalars['String']['output'];
|
|
128511
128919
|
node?: Maybe<MercuryComment>;
|
|
128512
128920
|
};
|
|
128921
|
+
export declare type MercuryCostItem = Node & {
|
|
128922
|
+
__typename?: 'MercuryCostItem';
|
|
128923
|
+
costItemSummary?: Maybe<MercuryCostItemSummary>;
|
|
128924
|
+
costSubtype?: Maybe<MercuryCostSubtype>;
|
|
128925
|
+
costType?: Maybe<MercuryCostType>;
|
|
128926
|
+
expenditureType?: Maybe<MercuryExpenditureType>;
|
|
128927
|
+
focusAreaId?: Maybe<MercuryFocusArea>;
|
|
128928
|
+
id: Scalars['ID']['output'];
|
|
128929
|
+
investmentCategory?: Maybe<MercuryInvestmentCategory>;
|
|
128930
|
+
name: Scalars['String']['output'];
|
|
128931
|
+
};
|
|
128932
|
+
export declare type MercuryCostItemConnection = {
|
|
128933
|
+
__typename?: 'MercuryCostItemConnection';
|
|
128934
|
+
edges?: Maybe<Array<MercuryCostItemEdge>>;
|
|
128935
|
+
pageInfo: PageInfo;
|
|
128936
|
+
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
128937
|
+
};
|
|
128938
|
+
export declare type MercuryCostItemEdge = {
|
|
128939
|
+
__typename?: 'MercuryCostItemEdge';
|
|
128940
|
+
cursor: Scalars['String']['output'];
|
|
128941
|
+
node?: Maybe<MercuryCostItem>;
|
|
128942
|
+
};
|
|
128943
|
+
export declare type MercuryCostItemSort = {
|
|
128944
|
+
field: MercuryCostItemSortField;
|
|
128945
|
+
order: SortOrder;
|
|
128946
|
+
};
|
|
128947
|
+
export declare enum MercuryCostItemSortField {
|
|
128948
|
+
Name = "NAME"
|
|
128949
|
+
}
|
|
128950
|
+
export declare type MercuryCostItemSummary = {
|
|
128951
|
+
__typename?: 'MercuryCostItemSummary';
|
|
128952
|
+
aggregatedCostPerPeriodSummaries?: Maybe<Array<Maybe<MercuryAggregateCostPerPeriodSummary>>>;
|
|
128953
|
+
costItemId: Scalars['ID']['output'];
|
|
128954
|
+
costPeriodValues?: Maybe<Array<Maybe<MercuryCostPeriodValue>>>;
|
|
128955
|
+
};
|
|
128956
|
+
export declare type MercuryCostPeriodValue = Node & {
|
|
128957
|
+
__typename?: 'MercuryCostPeriodValue';
|
|
128958
|
+
amount?: Maybe<MercuryMoney>;
|
|
128959
|
+
id: Scalars['ID']['output'];
|
|
128960
|
+
yearMonth?: Maybe<Scalars['String']['output']>;
|
|
128961
|
+
};
|
|
128513
128962
|
export declare type MercuryCostSubtype = Node & {
|
|
128514
128963
|
__typename?: 'MercuryCostSubtype';
|
|
128515
128964
|
costType?: Maybe<MercuryCostType>;
|
|
@@ -128543,7 +128992,7 @@ export declare type MercuryCostSubtypeSort = {
|
|
|
128543
128992
|
export declare enum MercuryCostSubtypeSortField {
|
|
128544
128993
|
Name = "NAME"
|
|
128545
128994
|
}
|
|
128546
|
-
export declare type MercuryCostType = {
|
|
128995
|
+
export declare type MercuryCostType = Node & {
|
|
128547
128996
|
__typename?: 'MercuryCostType';
|
|
128548
128997
|
displayName: Scalars['String']['output'];
|
|
128549
128998
|
id: Scalars['ID']['output'];
|
|
@@ -128616,7 +129065,6 @@ export declare type MercuryCreateCoreCustomFieldDefinitionInput = {
|
|
|
128616
129065
|
textField?: InputMaybe<MercuryCreateTextCustomFieldDefinitionInput>;
|
|
128617
129066
|
};
|
|
128618
129067
|
export declare type MercuryCreateCostSubtypeInput = {
|
|
128619
|
-
cloudId?: InputMaybe<Scalars['ID']['input']>;
|
|
128620
129068
|
costTypeId: Scalars['ID']['input'];
|
|
128621
129069
|
name: Scalars['String']['input'];
|
|
128622
129070
|
};
|
|
@@ -129115,7 +129563,7 @@ export declare enum MercuryEventType {
|
|
|
129115
129563
|
Unlink = "UNLINK",
|
|
129116
129564
|
Update = "UPDATE"
|
|
129117
129565
|
}
|
|
129118
|
-
export declare type MercuryExpenditureType = {
|
|
129566
|
+
export declare type MercuryExpenditureType = Node & {
|
|
129119
129567
|
__typename?: 'MercuryExpenditureType';
|
|
129120
129568
|
displayName: Scalars['String']['output'];
|
|
129121
129569
|
id: Scalars['ID']['output'];
|
|
@@ -129131,6 +129579,16 @@ export declare type MercuryExternalUser = {
|
|
|
129131
129579
|
email?: Maybe<Scalars['String']['output']>;
|
|
129132
129580
|
name?: Maybe<Scalars['String']['output']>;
|
|
129133
129581
|
};
|
|
129582
|
+
export declare type MercuryFinancialVersion = Node & {
|
|
129583
|
+
__typename?: 'MercuryFinancialVersion';
|
|
129584
|
+
id: Scalars['ID']['output'];
|
|
129585
|
+
type: MercuryFinancialVersionType;
|
|
129586
|
+
};
|
|
129587
|
+
export declare enum MercuryFinancialVersionType {
|
|
129588
|
+
Actual = "ACTUAL",
|
|
129589
|
+
Baseline = "BASELINE",
|
|
129590
|
+
Forecast = "FORECAST"
|
|
129591
|
+
}
|
|
129134
129592
|
export declare type MercuryFiscalCalendarConfiguration = Node & {
|
|
129135
129593
|
__typename?: 'MercuryFiscalCalendarConfiguration';
|
|
129136
129594
|
createdDate?: Maybe<Scalars['String']['output']>;
|
|
@@ -129164,6 +129622,7 @@ export declare type MercuryFocusArea = Node & {
|
|
|
129164
129622
|
archived: Scalars['Boolean']['output'];
|
|
129165
129623
|
ari: Scalars['String']['output'];
|
|
129166
129624
|
changeSummary?: Maybe<MercuryChangeSummary>;
|
|
129625
|
+
costSummary?: Maybe<MercuryFocusAreaCostSummary>;
|
|
129167
129626
|
createdDate: Scalars['String']['output'];
|
|
129168
129627
|
customFields?: Maybe<Array<MercuryCustomField>>;
|
|
129169
129628
|
draft: Scalars['Boolean']['output'];
|
|
@@ -129264,6 +129723,12 @@ export declare type MercuryFocusAreaConnection = {
|
|
|
129264
129723
|
pageInfo: PageInfo;
|
|
129265
129724
|
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
129266
129725
|
};
|
|
129726
|
+
export declare type MercuryFocusAreaCostSummary = {
|
|
129727
|
+
__typename?: 'MercuryFocusAreaCostSummary';
|
|
129728
|
+
aggregatedCostPerPeriodSummaries?: Maybe<Array<Maybe<MercuryAggregateCostPerPeriodSummary>>>;
|
|
129729
|
+
aggregatedCostSummaries?: Maybe<Array<Maybe<MercuryAggregateCostSummary>>>;
|
|
129730
|
+
focusAreaId: Scalars['ID']['output'];
|
|
129731
|
+
};
|
|
129267
129732
|
export declare type MercuryFocusAreaCustomFieldDefinitionScope = MercuryCustomFieldDefinitionScope & {
|
|
129268
129733
|
__typename?: 'MercuryFocusAreaCustomFieldDefinitionScope';
|
|
129269
129734
|
entityType: Scalars['String']['output'];
|
|
@@ -129689,11 +130154,17 @@ export declare type MercuryFundsQueryApi = {
|
|
|
129689
130154
|
__typename?: 'MercuryFundsQueryApi';
|
|
129690
130155
|
activeCurrency: MercuryCurrency;
|
|
129691
130156
|
activeFiscalCalendarConfiguration?: Maybe<MercuryFiscalCalendarConfiguration>;
|
|
130157
|
+
costItems?: Maybe<Array<Maybe<MercuryCostItem>>>;
|
|
130158
|
+
costItemsSearch?: Maybe<MercuryCostItemConnection>;
|
|
130159
|
+
costPeriodValues?: Maybe<Array<Maybe<MercuryCostPeriodValue>>>;
|
|
129692
130160
|
costSubtypes?: Maybe<Array<Maybe<MercuryCostSubtype>>>;
|
|
129693
130161
|
costSubtypesSearch?: Maybe<MercuryCostSubtypeConnection>;
|
|
129694
130162
|
costTypes?: Maybe<Array<Maybe<MercuryCostType>>>;
|
|
130163
|
+
costTypesByIds?: Maybe<Array<Maybe<MercuryCostType>>>;
|
|
129695
130164
|
currencies?: Maybe<Array<MercuryCurrency>>;
|
|
129696
130165
|
expenditureTypes?: Maybe<Array<Maybe<MercuryExpenditureType>>>;
|
|
130166
|
+
expenditureTypesByIds?: Maybe<Array<Maybe<MercuryExpenditureType>>>;
|
|
130167
|
+
financialVersions?: Maybe<Array<Maybe<MercuryFinancialVersion>>>;
|
|
129697
130168
|
fiscalCalendarConfiguration?: Maybe<MercuryFiscalCalendarConfiguration>;
|
|
129698
130169
|
fiscalCalendarConfigurations?: Maybe<Array<Maybe<MercuryFiscalCalendarConfiguration>>>;
|
|
129699
130170
|
fiscalCalendarConfigurationsSearch?: Maybe<MercuryFiscalCalendarConfigurationConnection>;
|
|
@@ -129707,6 +130178,19 @@ export declare type MercuryFundsQueryApiActiveCurrencyArgs = {
|
|
|
129707
130178
|
export declare type MercuryFundsQueryApiActiveFiscalCalendarConfigurationArgs = {
|
|
129708
130179
|
cloudId?: InputMaybe<Scalars['ID']['input']>;
|
|
129709
130180
|
};
|
|
130181
|
+
export declare type MercuryFundsQueryApiCostItemsArgs = {
|
|
130182
|
+
ids: Array<Scalars['ID']['input']>;
|
|
130183
|
+
};
|
|
130184
|
+
export declare type MercuryFundsQueryApiCostItemsSearchArgs = {
|
|
130185
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
130186
|
+
cloudId: Scalars['ID']['input'];
|
|
130187
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
130188
|
+
q?: InputMaybe<Scalars['String']['input']>;
|
|
130189
|
+
sort?: InputMaybe<Array<InputMaybe<MercuryCostItemSort>>>;
|
|
130190
|
+
};
|
|
130191
|
+
export declare type MercuryFundsQueryApiCostPeriodValuesArgs = {
|
|
130192
|
+
ids: Array<Scalars['ID']['input']>;
|
|
130193
|
+
};
|
|
129710
130194
|
export declare type MercuryFundsQueryApiCostSubtypesArgs = {
|
|
129711
130195
|
ids: Array<Scalars['ID']['input']>;
|
|
129712
130196
|
};
|
|
@@ -129720,12 +130204,21 @@ export declare type MercuryFundsQueryApiCostSubtypesSearchArgs = {
|
|
|
129720
130204
|
export declare type MercuryFundsQueryApiCostTypesArgs = {
|
|
129721
130205
|
cloudId?: InputMaybe<Scalars['ID']['input']>;
|
|
129722
130206
|
};
|
|
130207
|
+
export declare type MercuryFundsQueryApiCostTypesByIdsArgs = {
|
|
130208
|
+
ids: Array<Scalars['ID']['input']>;
|
|
130209
|
+
};
|
|
129723
130210
|
export declare type MercuryFundsQueryApiCurrenciesArgs = {
|
|
129724
130211
|
cloudId?: InputMaybe<Scalars['ID']['input']>;
|
|
129725
130212
|
};
|
|
129726
130213
|
export declare type MercuryFundsQueryApiExpenditureTypesArgs = {
|
|
129727
130214
|
cloudId?: InputMaybe<Scalars['ID']['input']>;
|
|
129728
130215
|
};
|
|
130216
|
+
export declare type MercuryFundsQueryApiExpenditureTypesByIdsArgs = {
|
|
130217
|
+
ids: Array<Scalars['ID']['input']>;
|
|
130218
|
+
};
|
|
130219
|
+
export declare type MercuryFundsQueryApiFinancialVersionsArgs = {
|
|
130220
|
+
ids: Array<Scalars['ID']['input']>;
|
|
130221
|
+
};
|
|
129729
130222
|
export declare type MercuryFundsQueryApiFiscalCalendarConfigurationArgs = {
|
|
129730
130223
|
id: Scalars['ID']['input'];
|
|
129731
130224
|
};
|
|
@@ -130091,6 +130584,11 @@ export declare type MercuryMediaToken = {
|
|
|
130091
130584
|
__typename?: 'MercuryMediaToken';
|
|
130092
130585
|
token: Scalars['String']['output'];
|
|
130093
130586
|
};
|
|
130587
|
+
export declare type MercuryMoney = {
|
|
130588
|
+
__typename?: 'MercuryMoney';
|
|
130589
|
+
amount?: Maybe<Scalars['String']['output']>;
|
|
130590
|
+
currency?: Maybe<Scalars['String']['output']>;
|
|
130591
|
+
};
|
|
130094
130592
|
export declare type MercuryMoveChangesInput = {
|
|
130095
130593
|
changeIds: Array<Scalars['ID']['input']>;
|
|
130096
130594
|
sourceChangeProposalId: Scalars['ID']['input'];
|
|
@@ -131264,6 +131762,16 @@ export declare type MercurySetChangeProposalCustomFieldPayload = Payload & {
|
|
|
131264
131762
|
errors?: Maybe<Array<MutationError>>;
|
|
131265
131763
|
success: Scalars['Boolean']['output'];
|
|
131266
131764
|
};
|
|
131765
|
+
export declare type MercurySetChangeProposalCustomFieldsInput = {
|
|
131766
|
+
cloudId?: InputMaybe<Scalars['ID']['input']>;
|
|
131767
|
+
customFields: Array<MercurySetChangeProposalCustomFieldInput>;
|
|
131768
|
+
};
|
|
131769
|
+
export declare type MercurySetChangeProposalCustomFieldsPayload = Payload & {
|
|
131770
|
+
__typename?: 'MercurySetChangeProposalCustomFieldsPayload';
|
|
131771
|
+
customFields?: Maybe<Array<MercuryCustomField>>;
|
|
131772
|
+
errors?: Maybe<Array<MutationError>>;
|
|
131773
|
+
success: Scalars['Boolean']['output'];
|
|
131774
|
+
};
|
|
131267
131775
|
export declare type MercurySetFocusAreaCustomFieldInput = {
|
|
131268
131776
|
coreField?: InputMaybe<MercuryCustomFieldInput>;
|
|
131269
131777
|
customFieldDefinitionId: Scalars['ID']['input'];
|
|
@@ -131434,6 +131942,7 @@ export declare type MercuryStrategicEventsMutationApi = {
|
|
|
131434
131942
|
removeTagsFromChangeProposal?: Maybe<MercuryRemoveTagsFromProposalPayload>;
|
|
131435
131943
|
reorderChangeProposalCustomFieldDefinitionOptions?: Maybe<MercuryReorderCustomFieldDefinitionOptionsPayload>;
|
|
131436
131944
|
setChangeProposalCustomFieldValue?: Maybe<MercurySetChangeProposalCustomFieldPayload>;
|
|
131945
|
+
setChangeProposalCustomFieldValues?: Maybe<MercurySetChangeProposalCustomFieldsPayload>;
|
|
131437
131946
|
transitionChangeProposalStatus?: Maybe<MercuryTransitionChangeProposalPayload>;
|
|
131438
131947
|
transitionStrategicEventStatus?: Maybe<MercuryTransitionStrategicEventPayload>;
|
|
131439
131948
|
unlinkGoalsFromChangeProposal?: Maybe<MercuryUnlinkGoalsFromChangeProposalPayload>;
|
|
@@ -131527,6 +132036,9 @@ export declare type MercuryStrategicEventsMutationApiReorderChangeProposalCustom
|
|
|
131527
132036
|
export declare type MercuryStrategicEventsMutationApiSetChangeProposalCustomFieldValueArgs = {
|
|
131528
132037
|
input: MercurySetChangeProposalCustomFieldInput;
|
|
131529
132038
|
};
|
|
132039
|
+
export declare type MercuryStrategicEventsMutationApiSetChangeProposalCustomFieldValuesArgs = {
|
|
132040
|
+
input: MercurySetChangeProposalCustomFieldsInput;
|
|
132041
|
+
};
|
|
131530
132042
|
export declare type MercuryStrategicEventsMutationApiTransitionChangeProposalStatusArgs = {
|
|
131531
132043
|
input: MercuryTransitionChangeProposalStatusInput;
|
|
131532
132044
|
};
|
|
@@ -132584,6 +133096,7 @@ export declare type Mutation = {
|
|
|
132584
133096
|
agentStudio_modifyDatasetItem?: Maybe<AgentStudioUpdateDatasetItemPayload>;
|
|
132585
133097
|
agentStudio_publishAgentVersion?: Maybe<AgentStudioPublishAgentVersionPayload>;
|
|
132586
133098
|
agentStudio_removeActorRoles?: Maybe<AgentStudioUpdateAgentPermissionPayload>;
|
|
133099
|
+
agentStudio_removeBatchEvaluationJobRun?: Maybe<AgentStudioDeleteBatchEvaluationJobRunPayload>;
|
|
132587
133100
|
agentStudio_removeDataset?: Maybe<AgentStudioDeleteDatasetPayload>;
|
|
132588
133101
|
agentStudio_removeDatasetItem?: Maybe<AgentStudioDeleteDatasetItemPayload>;
|
|
132589
133102
|
agentStudio_removeGroupsFromCreatePermission?: Maybe<AgentStudioRemoveGroupsFromCreatePermissionPayload>;
|
|
@@ -132800,6 +133313,7 @@ export declare type Mutation = {
|
|
|
132800
133313
|
confluence_inviteUsers?: Maybe<ConfluenceInviteUserPayload>;
|
|
132801
133314
|
confluence_makeSubCalendarPrivateUrl?: Maybe<ConfluenceMakeSubCalendarPrivateUrlPayload>;
|
|
132802
133315
|
confluence_markAllCommentsAsRead?: Maybe<ConfluenceMarkAllCommentsAsReadPayload>;
|
|
133316
|
+
confluence_nbmAddGlobalTransformer?: Maybe<ConfluenceNbmAddGlobalTransformerPayload>;
|
|
132803
133317
|
confluence_nbmBulkUpdateVerificationEntry?: Maybe<ConfluenceNbmBulkUpdateVerificationEntryPayload>;
|
|
132804
133318
|
confluence_nbmExecuteTestTransformation?: Maybe<ConfluenceNbmExecuteTestTransformationPayload>;
|
|
132805
133319
|
confluence_nbmRetryPerfScanLongTask?: Maybe<ConfluenceNbmRetryPerfScanLongTaskPayload>;
|
|
@@ -133097,6 +133611,7 @@ export declare type Mutation = {
|
|
|
133097
133611
|
graphIntegration_updateDataConnectorConnection?: Maybe<GraphIntegrationUpdateConnectionPayload>;
|
|
133098
133612
|
graphStore?: Maybe<GraphStoreMutation>;
|
|
133099
133613
|
graphStoreV2?: Maybe<GraphStoreV2Mutation>;
|
|
133614
|
+
gravity_createViewFromTemplate: GravityCreateViewFromTemplatePayload;
|
|
133100
133615
|
growthUnifiedProfile_createEntitlementProfile?: Maybe<GrowthUnifiedProfileCreateEntitlementProfileResponse>;
|
|
133101
133616
|
growthUnifiedProfile_createOrgProfile?: Maybe<GrowthUnifiedProfileTwcCreateOrgProfileResponse>;
|
|
133102
133617
|
growthUnifiedProfile_createUnifiedProfile?: Maybe<GrowthUnifiedProfileResult>;
|
|
@@ -133250,11 +133765,14 @@ export declare type Mutation = {
|
|
|
133250
133765
|
jsmConversation_closeConversation?: Maybe<JsmConversationCloseConversationPayload>;
|
|
133251
133766
|
jsmConversation_updateSettings?: Maybe<JsmConversationSettingsPayload>;
|
|
133252
133767
|
jsw?: Maybe<JswMutation>;
|
|
133768
|
+
kitsune_createCustomer?: Maybe<KitsuneCustomer>;
|
|
133253
133769
|
kitsune_createFeedback?: Maybe<KitsuneFeedback>;
|
|
133254
133770
|
kitsune_createSection?: Maybe<KitsuneSection>;
|
|
133255
133771
|
kitsune_createSpace?: Maybe<KitsuneSpace>;
|
|
133256
133772
|
kitsune_createView?: Maybe<KitsuneView>;
|
|
133257
133773
|
kitsune_generateFeedbackSummary?: Maybe<Scalars['Boolean']['output']>;
|
|
133774
|
+
kitsune_moveSection?: Maybe<KitsuneSpace>;
|
|
133775
|
+
kitsune_moveView?: Maybe<KitsuneSpace>;
|
|
133258
133776
|
kitsune_removeFeedback?: Maybe<KitsuneDeletedRecord>;
|
|
133259
133777
|
kitsune_removeSection?: Maybe<KitsuneDeletedRecord>;
|
|
133260
133778
|
kitsune_removeView?: Maybe<KitsuneDeletedRecord>;
|
|
@@ -133757,8 +134275,15 @@ export declare type MutationAgentStudio_RemoveActorRolesArgs = {
|
|
|
133757
134275
|
id: Scalars['ID']['input'];
|
|
133758
134276
|
input: AgentStudioUpdateAgentPermissionInput;
|
|
133759
134277
|
};
|
|
134278
|
+
export declare type MutationAgentStudio_RemoveBatchEvaluationJobRunArgs = {
|
|
134279
|
+
cloudId: Scalars['String']['input'];
|
|
134280
|
+
jobRunId: Scalars['ID']['input'];
|
|
134281
|
+
productType: AgentStudioProductType;
|
|
134282
|
+
projectContainerAri: Scalars['ID']['input'];
|
|
134283
|
+
};
|
|
133760
134284
|
export declare type MutationAgentStudio_RemoveDatasetArgs = {
|
|
133761
134285
|
cloudId: Scalars['String']['input'];
|
|
134286
|
+
deleteAssociatedJobs?: InputMaybe<Scalars['Boolean']['input']>;
|
|
133762
134287
|
id: Scalars['ID']['input'];
|
|
133763
134288
|
productType: AgentStudioProductType;
|
|
133764
134289
|
projectContainerAri: Scalars['ID']['input'];
|
|
@@ -134583,6 +135108,10 @@ export declare type MutationConfluence_MarkAllCommentsAsReadArgs = {
|
|
|
134583
135108
|
cloudId: Scalars['ID']['input'];
|
|
134584
135109
|
input: ConfluenceMarkAllContainerCommentsAsReadInput;
|
|
134585
135110
|
};
|
|
135111
|
+
export declare type MutationConfluence_NbmAddGlobalTransformerArgs = {
|
|
135112
|
+
cloudId: Scalars['ID']['input'];
|
|
135113
|
+
input: ConfluenceNbmAddGlobalTransformerInput;
|
|
135114
|
+
};
|
|
134586
135115
|
export declare type MutationConfluence_NbmBulkUpdateVerificationEntryArgs = {
|
|
134587
135116
|
cloudId: Scalars['ID']['input'];
|
|
134588
135117
|
input: ConfluenceNbmBulkUpdateVerificationEntryInput;
|
|
@@ -135623,6 +136152,10 @@ export declare type MutationGraphIntegration_RemoveTwgCapabilityContainerArgs =
|
|
|
135623
136152
|
export declare type MutationGraphIntegration_UpdateDataConnectorConnectionArgs = {
|
|
135624
136153
|
input: GraphIntegrationUpdateDataConnectorConnectionInput;
|
|
135625
136154
|
};
|
|
136155
|
+
export declare type MutationGravity_CreateViewFromTemplateArgs = {
|
|
136156
|
+
cloudId: Scalars['ID']['input'];
|
|
136157
|
+
input: GravityCreateViewFromTemplateInput;
|
|
136158
|
+
};
|
|
135626
136159
|
export declare type MutationGrowthUnifiedProfile_CreateEntitlementProfileArgs = {
|
|
135627
136160
|
profile: GrowthUnifiedProfileCreateEntitlementProfileInput;
|
|
135628
136161
|
};
|
|
@@ -136099,6 +136632,12 @@ export declare type MutationJsmConversation_CloseConversationArgs = {
|
|
|
136099
136632
|
export declare type MutationJsmConversation_UpdateSettingsArgs = {
|
|
136100
136633
|
input: JsmConversationSettingsInput;
|
|
136101
136634
|
};
|
|
136635
|
+
export declare type MutationKitsune_CreateCustomerArgs = {
|
|
136636
|
+
email?: InputMaybe<Scalars['String']['input']>;
|
|
136637
|
+
name?: InputMaybe<Scalars['String']['input']>;
|
|
136638
|
+
organizationId?: InputMaybe<Scalars['ID']['input']>;
|
|
136639
|
+
workspaceAri: Scalars['ID']['input'];
|
|
136640
|
+
};
|
|
136102
136641
|
export declare type MutationKitsune_CreateFeedbackArgs = {
|
|
136103
136642
|
content: Scalars['KitsuneADF']['input'];
|
|
136104
136643
|
source?: InputMaybe<KitsuneSourceInput>;
|
|
@@ -136124,6 +136663,15 @@ export declare type MutationKitsune_CreateViewArgs = {
|
|
|
136124
136663
|
export declare type MutationKitsune_GenerateFeedbackSummaryArgs = {
|
|
136125
136664
|
feedbackAri: Scalars['ID']['input'];
|
|
136126
136665
|
};
|
|
136666
|
+
export declare type MutationKitsune_MoveSectionArgs = {
|
|
136667
|
+
rank: KitsuneRankInput;
|
|
136668
|
+
sectionAri: Scalars['ID']['input'];
|
|
136669
|
+
};
|
|
136670
|
+
export declare type MutationKitsune_MoveViewArgs = {
|
|
136671
|
+
parentId?: InputMaybe<Scalars['ID']['input']>;
|
|
136672
|
+
rank: KitsuneRankInput;
|
|
136673
|
+
viewAri: Scalars['ID']['input'];
|
|
136674
|
+
};
|
|
136127
136675
|
export declare type MutationKitsune_RemoveFeedbackArgs = {
|
|
136128
136676
|
feedbackAri: Scalars['ID']['input'];
|
|
136129
136677
|
};
|
|
@@ -136140,6 +136688,7 @@ export declare type MutationKitsune_SuggestSnippetsArgs = {
|
|
|
136140
136688
|
export declare type MutationKitsune_UpdateFeedbackArgs = {
|
|
136141
136689
|
content?: InputMaybe<Scalars['KitsuneADF']['input']>;
|
|
136142
136690
|
id: Scalars['ID']['input'];
|
|
136691
|
+
summaryContent?: InputMaybe<Scalars['KitsuneADF']['input']>;
|
|
136143
136692
|
title?: InputMaybe<Scalars['String']['input']>;
|
|
136144
136693
|
};
|
|
136145
136694
|
export declare type MutationKitsune_UpdateSectionArgs = {
|
|
@@ -139680,6 +140229,7 @@ export declare enum PolarisViewSetType {
|
|
|
139680
140229
|
Capture = "CAPTURE",
|
|
139681
140230
|
Custom = "CUSTOM",
|
|
139682
140231
|
Deliver = "DELIVER",
|
|
140232
|
+
Global = "GLOBAL",
|
|
139683
140233
|
Prioritize = "PRIORITIZE",
|
|
139684
140234
|
Section = "SECTION",
|
|
139685
140235
|
Single = "SINGLE",
|
|
@@ -140220,6 +140770,8 @@ export declare type Query = {
|
|
|
140220
140770
|
agentStudio_jobExecutionHistoryList?: Maybe<AgentStudioJobExecutionHistory>;
|
|
140221
140771
|
agentStudio_jobRun?: Maybe<AgentStudioBatchEvaluationJobRun>;
|
|
140222
140772
|
agentStudio_jobRunList?: Maybe<AgentStudioBatchEvaluationJobRunResult>;
|
|
140773
|
+
agentStudio_knowledgeGapSuggestionArticles?: Maybe<AgentStudioKnowledgeGapSuggestionArticleResult>;
|
|
140774
|
+
agentStudio_knowledgeGapUploadJobs?: Maybe<Array<AgentStudioKnowledgeGapUploadJob>>;
|
|
140223
140775
|
agentStudio_liveConversationHistoryById?: Maybe<AgentStudioConversationHistoryResult>;
|
|
140224
140776
|
agentStudio_liveConversationListByContainerId?: Maybe<AgentStudioConversationListResult>;
|
|
140225
140777
|
agentStudio_scenarioById?: Maybe<AgentStudioScenarioResult>;
|
|
@@ -140245,6 +140797,7 @@ export declare type Query = {
|
|
|
140245
140797
|
agentWorkspace_skill?: Maybe<AgentWorkspaceSkill>;
|
|
140246
140798
|
agentWorkspace_skillGaps?: Maybe<AgentWorkspaceSkillConnection>;
|
|
140247
140799
|
agentWorkspace_skills?: Maybe<AgentWorkspaceSkillConnection>;
|
|
140800
|
+
agentWorkspace_userSkill?: Maybe<AgentWorkspaceUserSkill>;
|
|
140248
140801
|
agentWorkspace_userSkills?: Maybe<AgentWorkspaceUserSkillConnection>;
|
|
140249
140802
|
agentWorkspace_usersBySkills?: Maybe<AgentWorkspaceUserConnection>;
|
|
140250
140803
|
aiCoreApi_vsaQuestionsByProject?: Maybe<AiCoreApiVsaQuestionsResult>;
|
|
@@ -140285,6 +140838,8 @@ export declare type Query = {
|
|
|
140285
140838
|
assetsDM_allCleansingRules?: Maybe<Array<AssetsDmDefFunction>>;
|
|
140286
140839
|
assetsDM_attributePrioritiesList?: Maybe<AssetsDmAttributePrioritiesList>;
|
|
140287
140840
|
assetsDM_attributePriority?: Maybe<AssetsDmAttributePriority>;
|
|
140841
|
+
assetsDM_bigfixDefaultQuery?: Maybe<AssetsDmBigfixDefaultQueryResponse>;
|
|
140842
|
+
assetsDM_bigfixDefaultQueryMapping?: Maybe<AssetsDmBigfixDefaultQueryMappingResponse>;
|
|
140288
140843
|
assetsDM_computedIssues?: Maybe<Array<AssetsDmComputedIssueItem>>;
|
|
140289
140844
|
assetsDM_dataDictionaries?: Maybe<AssetsDmDataDictionaryResponse>;
|
|
140290
140845
|
assetsDM_dataDictionaryGroupValues?: Maybe<AssetsDmDataDictionaryGroupValuesResponse>;
|
|
@@ -140357,6 +140912,7 @@ export declare type Query = {
|
|
|
140357
140912
|
avp_getDashboardTemplates?: Maybe<Array<AvpDashboardTemplate>>;
|
|
140358
140913
|
avp_getDashboardsByAris?: Maybe<Array<Maybe<AvpDashboard>>>;
|
|
140359
140914
|
avp_getFilterExpression?: Maybe<AvpFilterExpression>;
|
|
140915
|
+
avpanalytics_getDataSources?: Maybe<Array<AvpAnalyticsDataSource>>;
|
|
140360
140916
|
avpanalytics_getModel?: Maybe<AvpAnalyticsModel>;
|
|
140361
140917
|
avpanalytics_getModels?: Maybe<AvpAnalyticsModelConnection>;
|
|
140362
140918
|
bitbucket?: Maybe<BitbucketQuery>;
|
|
@@ -140770,6 +141326,8 @@ export declare type Query = {
|
|
|
140770
141326
|
graphStore?: Maybe<GraphStore>;
|
|
140771
141327
|
graphStoreV2?: Maybe<GraphStoreV2>;
|
|
140772
141328
|
gravity_jpdImportIdeas?: Maybe<JpdImportIdeasPayload>;
|
|
141329
|
+
gravity_viewTemplateMappingProposals: GravityRefMappingProposals;
|
|
141330
|
+
gravity_viewTemplates: Array<GravityViewTemplate>;
|
|
140773
141331
|
group?: Maybe<Group>;
|
|
140774
141332
|
groupCounts?: Maybe<GraphQlGroupCountsResult>;
|
|
140775
141333
|
groupMembers?: Maybe<PaginatedPersonList>;
|
|
@@ -140869,6 +141427,7 @@ export declare type Query = {
|
|
|
140869
141427
|
jpdViewsService_globalView?: Maybe<JpdViewsServiceGlobalView>;
|
|
140870
141428
|
jpdViewsService_globalViewsByCriteria?: Maybe<JpdViewsServiceGlobalViewConnection>;
|
|
140871
141429
|
jpdViewsService_globalViewsById?: Maybe<Array<Maybe<JpdViewsServiceGlobalView>>>;
|
|
141430
|
+
jpdViewsService_hydrateGlobalViews?: Maybe<JpdViewsServiceGlobalViewsHydrationExample>;
|
|
140872
141431
|
jpdViewsService_hydrateUser?: Maybe<JpdViewsServiceUserHydrationExample>;
|
|
140873
141432
|
jsmAgentWorkspace_locations?: Maybe<JsmAgentWorkspaceLocations>;
|
|
140874
141433
|
jsmChannels_conversationsByContainerAri?: Maybe<JsmChannelsConversationsByContainerAriResult>;
|
|
@@ -140886,7 +141445,9 @@ export declare type Query = {
|
|
|
140886
141445
|
kitsune_chunks?: Maybe<Array<Maybe<KitsuneChunk>>>;
|
|
140887
141446
|
kitsune_feedbackEvent?: Maybe<KitsuneFeedbackEvent>;
|
|
140888
141447
|
kitsune_feedbacks?: Maybe<Array<Maybe<KitsuneFeedback>>>;
|
|
141448
|
+
kitsune_fields?: Maybe<Array<Maybe<KitsuneField>>>;
|
|
140889
141449
|
kitsune_node?: Maybe<KitsuneNode>;
|
|
141450
|
+
kitsune_searchFeedback?: Maybe<KitsuneFeedbackConnection>;
|
|
140890
141451
|
kitsune_sections?: Maybe<Array<Maybe<KitsuneSection>>>;
|
|
140891
141452
|
kitsune_spaces?: Maybe<Array<Maybe<KitsuneSpace>>>;
|
|
140892
141453
|
kitsune_spacesForWorkspace?: Maybe<KitsuneSpaceConnection>;
|
|
@@ -141677,6 +142238,19 @@ export declare type QueryAgentStudio_JobRunListArgs = {
|
|
|
141677
142238
|
projectContainerAri: Scalars['ID']['input'];
|
|
141678
142239
|
status?: InputMaybe<AgentStudioJobRunStatus>;
|
|
141679
142240
|
};
|
|
142241
|
+
export declare type QueryAgentStudio_KnowledgeGapSuggestionArticlesArgs = {
|
|
142242
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
142243
|
+
cloudId: Scalars['String']['input'];
|
|
142244
|
+
containerAri: Scalars['ID']['input'];
|
|
142245
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
142246
|
+
productType: AgentStudioProductType;
|
|
142247
|
+
status?: InputMaybe<AgentStudioKnowledgeGapSuggestionArticleStatus>;
|
|
142248
|
+
};
|
|
142249
|
+
export declare type QueryAgentStudio_KnowledgeGapUploadJobsArgs = {
|
|
142250
|
+
cloudId: Scalars['String']['input'];
|
|
142251
|
+
containerAri: Scalars['ID']['input'];
|
|
142252
|
+
productType: AgentStudioProductType;
|
|
142253
|
+
};
|
|
141680
142254
|
export declare type QueryAgentStudio_LiveConversationHistoryByIdArgs = {
|
|
141681
142255
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
141682
142256
|
cloudId: Scalars['String']['input'];
|
|
@@ -141802,6 +142376,10 @@ export declare type QueryAgentWorkspace_SkillsArgs = {
|
|
|
141802
142376
|
filter?: InputMaybe<AgentWorkspaceSkillFilterInput>;
|
|
141803
142377
|
pagination?: InputMaybe<AgentWorkspacePaginationInput>;
|
|
141804
142378
|
};
|
|
142379
|
+
export declare type QueryAgentWorkspace_UserSkillArgs = {
|
|
142380
|
+
cloudId: Scalars['ID']['input'];
|
|
142381
|
+
id: Scalars['ID']['input'];
|
|
142382
|
+
};
|
|
141805
142383
|
export declare type QueryAgentWorkspace_UserSkillsArgs = {
|
|
141806
142384
|
cloudId: Scalars['ID']['input'];
|
|
141807
142385
|
filter?: InputMaybe<AgentWorkspaceUserSkillFilterInput>;
|
|
@@ -141989,6 +142567,14 @@ export declare type QueryAssetsDm_AttributePriorityArgs = {
|
|
|
141989
142567
|
objectAttributePriorityId: Scalars['ID']['input'];
|
|
141990
142568
|
workspaceId: Scalars['ID']['input'];
|
|
141991
142569
|
};
|
|
142570
|
+
export declare type QueryAssetsDm_BigfixDefaultQueryArgs = {
|
|
142571
|
+
cloudId: Scalars['ID']['input'];
|
|
142572
|
+
workspaceId: Scalars['ID']['input'];
|
|
142573
|
+
};
|
|
142574
|
+
export declare type QueryAssetsDm_BigfixDefaultQueryMappingArgs = {
|
|
142575
|
+
cloudId: Scalars['ID']['input'];
|
|
142576
|
+
workspaceId: Scalars['ID']['input'];
|
|
142577
|
+
};
|
|
141992
142578
|
export declare type QueryAssetsDm_ComputedIssuesArgs = {
|
|
141993
142579
|
cloudId: Scalars['ID']['input'];
|
|
141994
142580
|
objectAttributeId: Scalars['ID']['input'];
|
|
@@ -142377,6 +142963,11 @@ export declare type QueryAvp_GetDashboardsByArisArgs = {
|
|
|
142377
142963
|
export declare type QueryAvp_GetFilterExpressionArgs = {
|
|
142378
142964
|
dashboardAri: Scalars['ID']['input'];
|
|
142379
142965
|
};
|
|
142966
|
+
export declare type QueryAvpanalytics_GetDataSourcesArgs = {
|
|
142967
|
+
cloudId: Scalars['ID']['input'];
|
|
142968
|
+
searchInput?: InputMaybe<AvpAnalyticsSearchInput>;
|
|
142969
|
+
workspaceId: Scalars['ID']['input'];
|
|
142970
|
+
};
|
|
142380
142971
|
export declare type QueryAvpanalytics_GetModelArgs = {
|
|
142381
142972
|
input?: InputMaybe<AvpAnalyticsGetModelInput>;
|
|
142382
142973
|
};
|
|
@@ -144190,8 +144781,16 @@ export declare type QueryGraphIntegration_TwgCapabilityContainersInContextArgs =
|
|
|
144190
144781
|
last?: InputMaybe<Scalars['Int']['input']>;
|
|
144191
144782
|
};
|
|
144192
144783
|
export declare type QueryGravity_JpdImportIdeasArgs = {
|
|
144784
|
+
cloudId?: InputMaybe<Scalars['ID']['input']>;
|
|
144193
144785
|
input: JpdImportIdeasInput;
|
|
144194
144786
|
};
|
|
144787
|
+
export declare type QueryGravity_ViewTemplateMappingProposalsArgs = {
|
|
144788
|
+
cloudId: Scalars['ID']['input'];
|
|
144789
|
+
templateId: Scalars['ID']['input'];
|
|
144790
|
+
};
|
|
144791
|
+
export declare type QueryGravity_ViewTemplatesArgs = {
|
|
144792
|
+
cloudId: Scalars['ID']['input'];
|
|
144793
|
+
};
|
|
144195
144794
|
export declare type QueryGroupArgs = {
|
|
144196
144795
|
groupId?: InputMaybe<Scalars['String']['input']>;
|
|
144197
144796
|
groupName?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -144545,8 +145144,12 @@ export declare type QueryJpdViewsService_GlobalViewsByCriteriaArgs = {
|
|
|
144545
145144
|
sortBy?: InputMaybe<JpdViewsServiceSortByInput>;
|
|
144546
145145
|
};
|
|
144547
145146
|
export declare type QueryJpdViewsService_GlobalViewsByIdArgs = {
|
|
145147
|
+
cloudId: Scalars['ID']['input'];
|
|
144548
145148
|
ids: Array<Scalars['ID']['input']>;
|
|
144549
145149
|
};
|
|
145150
|
+
export declare type QueryJpdViewsService_HydrateGlobalViewsArgs = {
|
|
145151
|
+
cloudId: Scalars['ID']['input'];
|
|
145152
|
+
};
|
|
144550
145153
|
export declare type QueryJpdViewsService_HydrateUserArgs = {
|
|
144551
145154
|
cloudId: Scalars['ID']['input'];
|
|
144552
145155
|
};
|
|
@@ -144615,9 +145218,20 @@ export declare type QueryKitsune_FeedbackEventArgs = {
|
|
|
144615
145218
|
export declare type QueryKitsune_FeedbacksArgs = {
|
|
144616
145219
|
ids: Array<Scalars['ID']['input']>;
|
|
144617
145220
|
};
|
|
145221
|
+
export declare type QueryKitsune_FieldsArgs = {
|
|
145222
|
+
ids: Array<Scalars['ID']['input']>;
|
|
145223
|
+
};
|
|
144618
145224
|
export declare type QueryKitsune_NodeArgs = {
|
|
144619
145225
|
id: Scalars['ID']['input'];
|
|
144620
145226
|
};
|
|
145227
|
+
export declare type QueryKitsune_SearchFeedbackArgs = {
|
|
145228
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
145229
|
+
before?: InputMaybe<Scalars['String']['input']>;
|
|
145230
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
145231
|
+
input?: InputMaybe<KitsuneSearchFeedbackInput>;
|
|
145232
|
+
last?: InputMaybe<Scalars['Int']['input']>;
|
|
145233
|
+
workspaceAri: Scalars['ID']['input'];
|
|
145234
|
+
};
|
|
144621
145235
|
export declare type QueryKitsune_SectionsArgs = {
|
|
144622
145236
|
ids: Array<Scalars['ID']['input']>;
|
|
144623
145237
|
};
|
|
@@ -144625,6 +145239,10 @@ export declare type QueryKitsune_SpacesArgs = {
|
|
|
144625
145239
|
ids: Array<Scalars['ID']['input']>;
|
|
144626
145240
|
};
|
|
144627
145241
|
export declare type QueryKitsune_SpacesForWorkspaceArgs = {
|
|
145242
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
145243
|
+
before?: InputMaybe<Scalars['String']['input']>;
|
|
145244
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
145245
|
+
last?: InputMaybe<Scalars['Int']['input']>;
|
|
144628
145246
|
pagination?: InputMaybe<KitsunePaginationInput>;
|
|
144629
145247
|
workspaceAri: Scalars['ID']['input'];
|
|
144630
145248
|
};
|
|
@@ -179792,6 +180410,7 @@ export declare type TrelloMemberLabsPreference = {
|
|
|
179792
180410
|
dateModified?: Maybe<Scalars['DateTime']['output']>;
|
|
179793
180411
|
description: Scalars['String']['output'];
|
|
179794
180412
|
feature: TrelloLabsFeature;
|
|
180413
|
+
isEligible: Scalars['Boolean']['output'];
|
|
179795
180414
|
name: Scalars['String']['output'];
|
|
179796
180415
|
status: TrelloLabsFeatureStatus;
|
|
179797
180416
|
};
|
|
@@ -179872,6 +180491,7 @@ export declare type TrelloMergeCardsInput = {
|
|
|
179872
180491
|
};
|
|
179873
180492
|
export declare type TrelloMergeCardsPayload = Payload & {
|
|
179874
180493
|
__typename?: 'TrelloMergeCardsPayload';
|
|
180494
|
+
actionId?: Maybe<Scalars['ID']['output']>;
|
|
179875
180495
|
archivedCardIds?: Maybe<Array<Scalars['ID']['output']>>;
|
|
179876
180496
|
card?: Maybe<TrelloBaseCard>;
|
|
179877
180497
|
errors?: Maybe<Array<MutationError>>;
|
|
@@ -180053,6 +180673,7 @@ export declare type TrelloMutationApi = {
|
|
|
180053
180673
|
updateKeyboardShortcutsPref?: Maybe<TrelloUpdateKeyboardShortcutsPrefPayload>;
|
|
180054
180674
|
updateMemberTimezone?: Maybe<TrelloUpdateMemberTimezonePayload>;
|
|
180055
180675
|
updateOAuth2Client?: Maybe<TrelloUpdateOAuth2ClientPayload>;
|
|
180676
|
+
updatePlannerDueDateCardSettings?: Maybe<TrelloUpdatePlannerDueDateCardSettingsPayload>;
|
|
180056
180677
|
updatePrimaryPlannerAccount?: Maybe<TrelloUpdatePrimaryPlannerAccountPayload>;
|
|
180057
180678
|
updateProactiveSmartScheduleStatus?: Maybe<TrelloUpdateProactiveSmartScheduleStatusPayload>;
|
|
180058
180679
|
updateProposedEvent?: Maybe<TrelloUpdateProposedEventPayload>;
|
|
@@ -180261,6 +180882,9 @@ export declare type TrelloMutationApiUpdateMemberTimezoneArgs = {
|
|
|
180261
180882
|
export declare type TrelloMutationApiUpdateOAuth2ClientArgs = {
|
|
180262
180883
|
input: TrelloUpdateOAuth2ClientInput;
|
|
180263
180884
|
};
|
|
180885
|
+
export declare type TrelloMutationApiUpdatePlannerDueDateCardSettingsArgs = {
|
|
180886
|
+
input: TrelloUpdatePlannerDueDateCardSettingsInput;
|
|
180887
|
+
};
|
|
180264
180888
|
export declare type TrelloMutationApiUpdatePrimaryPlannerAccountArgs = {
|
|
180265
180889
|
input: TrelloUpdatePrimaryPlannerAccountInput;
|
|
180266
180890
|
};
|
|
@@ -180704,20 +181328,63 @@ export declare type TrelloPlannerCardWithDueDate = {
|
|
|
180704
181328
|
id: Scalars['ID']['output'];
|
|
180705
181329
|
listId?: Maybe<Scalars['ID']['output']>;
|
|
180706
181330
|
};
|
|
181331
|
+
export declare type TrelloPlannerCardWithDueDateBoardDeleted = {
|
|
181332
|
+
__typename?: 'TrelloPlannerCardWithDueDateBoardDeleted';
|
|
181333
|
+
id: Scalars['ID']['output'];
|
|
181334
|
+
objectId?: Maybe<Scalars['ID']['output']>;
|
|
181335
|
+
};
|
|
181336
|
+
export declare type TrelloPlannerCardWithDueDateDeleted = {
|
|
181337
|
+
__typename?: 'TrelloPlannerCardWithDueDateDeleted';
|
|
181338
|
+
boardId?: Maybe<Scalars['ID']['output']>;
|
|
181339
|
+
boardObjectId?: Maybe<Scalars['ID']['output']>;
|
|
181340
|
+
id: Scalars['ID']['output'];
|
|
181341
|
+
listId?: Maybe<Scalars['ID']['output']>;
|
|
181342
|
+
listObjectId?: Maybe<Scalars['ID']['output']>;
|
|
181343
|
+
objectId?: Maybe<Scalars['ID']['output']>;
|
|
181344
|
+
};
|
|
181345
|
+
export declare type TrelloPlannerCardWithDueDateListDeleted = {
|
|
181346
|
+
__typename?: 'TrelloPlannerCardWithDueDateListDeleted';
|
|
181347
|
+
boardId?: Maybe<Scalars['ID']['output']>;
|
|
181348
|
+
boardObjectId?: Maybe<Scalars['ID']['output']>;
|
|
181349
|
+
id: Scalars['ID']['output'];
|
|
181350
|
+
objectId?: Maybe<Scalars['ID']['output']>;
|
|
181351
|
+
};
|
|
181352
|
+
export declare type TrelloPlannerCardWithDueDateUpdated = {
|
|
181353
|
+
__typename?: 'TrelloPlannerCardWithDueDateUpdated';
|
|
181354
|
+
boardId?: Maybe<Scalars['ID']['output']>;
|
|
181355
|
+
boardObjectId?: Maybe<Scalars['ID']['output']>;
|
|
181356
|
+
due?: Maybe<Scalars['DateTime']['output']>;
|
|
181357
|
+
id: Scalars['ID']['output'];
|
|
181358
|
+
listId?: Maybe<Scalars['ID']['output']>;
|
|
181359
|
+
listObjectId?: Maybe<Scalars['ID']['output']>;
|
|
181360
|
+
objectId?: Maybe<Scalars['ID']['output']>;
|
|
181361
|
+
};
|
|
180707
181362
|
export declare type TrelloPlannerCardsWithDueDatesConnection = {
|
|
180708
181363
|
__typename?: 'TrelloPlannerCardsWithDueDatesConnection';
|
|
180709
181364
|
edges?: Maybe<Array<TrelloPlannerCardsWithDueDatesEdge>>;
|
|
180710
181365
|
pageInfo: PageInfo;
|
|
180711
181366
|
};
|
|
181367
|
+
export declare type TrelloPlannerCardsWithDueDatesConnectionUpdated = {
|
|
181368
|
+
__typename?: 'TrelloPlannerCardsWithDueDatesConnectionUpdated';
|
|
181369
|
+
edges?: Maybe<Array<TrelloPlannerCardsWithDueDatesEdgeUpdated>>;
|
|
181370
|
+
};
|
|
180712
181371
|
export declare type TrelloPlannerCardsWithDueDatesEdge = {
|
|
180713
181372
|
__typename?: 'TrelloPlannerCardsWithDueDatesEdge';
|
|
180714
181373
|
cursor?: Maybe<Scalars['String']['output']>;
|
|
180715
181374
|
node?: Maybe<TrelloPlannerCardWithDueDate>;
|
|
180716
181375
|
};
|
|
181376
|
+
export declare type TrelloPlannerCardsWithDueDatesEdgeUpdated = {
|
|
181377
|
+
__typename?: 'TrelloPlannerCardsWithDueDatesEdgeUpdated';
|
|
181378
|
+
node?: Maybe<TrelloPlannerCardWithDueDateUpdated>;
|
|
181379
|
+
};
|
|
180717
181380
|
export declare type TrelloPlannerCardsWithDueDatesFilter = {
|
|
180718
181381
|
dueEnd?: InputMaybe<Scalars['DateTime']['input']>;
|
|
180719
181382
|
dueStart?: InputMaybe<Scalars['DateTime']['input']>;
|
|
180720
181383
|
};
|
|
181384
|
+
export declare type TrelloPlannerCardsWithDueDatesUpdatedFilter = {
|
|
181385
|
+
dueEnd?: InputMaybe<Scalars['DateTime']['input']>;
|
|
181386
|
+
dueStart?: InputMaybe<Scalars['DateTime']['input']>;
|
|
181387
|
+
};
|
|
180721
181388
|
export declare type TrelloPlannerDueDateCardsSettings = {
|
|
180722
181389
|
__typename?: 'TrelloPlannerDueDateCardsSettings';
|
|
180723
181390
|
assignedToMe?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -180830,13 +181497,20 @@ export declare type TrelloPlannerProviderCalendarUpdated = {
|
|
|
180830
181497
|
export declare type TrelloPlannerUpdated = {
|
|
180831
181498
|
__typename?: 'TrelloPlannerUpdated';
|
|
180832
181499
|
accounts?: Maybe<TrelloPlannerCalendarAccountConnectionUpdated>;
|
|
181500
|
+
cardsWithDueDates?: Maybe<TrelloPlannerCardsWithDueDatesConnectionUpdated>;
|
|
180833
181501
|
id: Scalars['ID']['output'];
|
|
181502
|
+
onBoardWithCardDueDeleted?: Maybe<Array<TrelloPlannerCardWithDueDateBoardDeleted>>;
|
|
181503
|
+
onCardWithDueDateDeleted?: Maybe<Array<TrelloPlannerCardWithDueDateDeleted>>;
|
|
181504
|
+
onListWithCardDueDeleted?: Maybe<Array<TrelloPlannerCardWithDueDateListDeleted>>;
|
|
180834
181505
|
onPlannerCalendarAccountDeleted?: Maybe<Array<TrelloPlannerCalendarAccountDeleted>>;
|
|
180835
181506
|
onProposedEventDeleted?: Maybe<Array<TrelloProposedEventDeleted>>;
|
|
180836
181507
|
primaryAccountId?: Maybe<Scalars['ID']['output']>;
|
|
180837
181508
|
primaryCalendarId?: Maybe<Scalars['ID']['output']>;
|
|
180838
181509
|
proposedEvents?: Maybe<TrelloPlannerProposedEventConnectionUpdated>;
|
|
180839
181510
|
};
|
|
181511
|
+
export declare type TrelloPlannerUpdatedCardsWithDueDatesArgs = {
|
|
181512
|
+
filter: TrelloPlannerCardsWithDueDatesUpdatedFilter;
|
|
181513
|
+
};
|
|
180840
181514
|
export declare type TrelloPowerUp = {
|
|
180841
181515
|
__typename?: 'TrelloPowerUp';
|
|
180842
181516
|
author?: Maybe<Scalars['String']['output']>;
|
|
@@ -181441,7 +182115,7 @@ export declare type TrelloSubscriptionApiOnInboxUpdatedArgs = {
|
|
|
181441
182115
|
memberId: Scalars['ID']['input'];
|
|
181442
182116
|
};
|
|
181443
182117
|
export declare type TrelloSubscriptionApiOnMemberPlannerEventCardsUpdatedArgs = {
|
|
181444
|
-
memberId
|
|
182118
|
+
memberId: Scalars['ID']['input'];
|
|
181445
182119
|
};
|
|
181446
182120
|
export declare type TrelloSubscriptionApiOnMemberUpdatedArgs = {
|
|
181447
182121
|
id: Scalars['ID']['input'];
|
|
@@ -181871,6 +182545,15 @@ export declare type TrelloUpdateOAuth2ClientPayload = Payload & {
|
|
|
181871
182545
|
errors?: Maybe<Array<MutationError>>;
|
|
181872
182546
|
success: Scalars['Boolean']['output'];
|
|
181873
182547
|
};
|
|
182548
|
+
export declare type TrelloUpdatePlannerDueDateCardSettingsInput = {
|
|
182549
|
+
assignedToMe?: InputMaybe<Scalars['Boolean']['input']>;
|
|
182550
|
+
};
|
|
182551
|
+
export declare type TrelloUpdatePlannerDueDateCardSettingsPayload = Payload & {
|
|
182552
|
+
__typename?: 'TrelloUpdatePlannerDueDateCardSettingsPayload';
|
|
182553
|
+
errors?: Maybe<Array<MutationError>>;
|
|
182554
|
+
planner?: Maybe<TrelloPlanner>;
|
|
182555
|
+
success: Scalars['Boolean']['output'];
|
|
182556
|
+
};
|
|
181874
182557
|
export declare type TrelloUpdatePrimaryPlannerAccountInput = {
|
|
181875
182558
|
calendarId?: InputMaybe<Scalars['ID']['input']>;
|
|
181876
182559
|
providerAccountId: Scalars['ID']['input'];
|