@forge/cli-shared 8.15.2-next.0 → 8.15.2-next.0-experimental-1dcd593
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 +14 -0
- package/out/graphql/graphql-types.d.ts +889 -79
- package/out/graphql/graphql-types.d.ts.map +1 -1
- package/out/graphql/graphql-types.js +95 -38
- package/out/tunnel/docker-compose-lifecycle.d.ts +9 -2
- package/out/tunnel/docker-compose-lifecycle.d.ts.map +1 -1
- package/out/tunnel/docker-compose-lifecycle.js +212 -23
- package/out/tunnel/tunnel-options.d.ts +2 -0
- package/out/tunnel/tunnel-options.d.ts.map +1 -1
- package/out/tunnel/tunnel-options.js +3 -1
- package/out/ui/text.d.ts +1 -0
- package/out/ui/text.d.ts.map +1 -1
- package/out/ui/text.js +2 -1
- package/package.json +2 -2
|
@@ -176,11 +176,26 @@ export declare type AvpAnalyticsColumn = {
|
|
|
176
176
|
name: Scalars['String']['output'];
|
|
177
177
|
type: AvpAnalyticsColumnType;
|
|
178
178
|
};
|
|
179
|
+
export declare type AvpAnalyticsColumnRequest = {
|
|
180
|
+
formula?: InputMaybe<AvpAnalyticsFormulaColumnRequest>;
|
|
181
|
+
simple?: InputMaybe<AvpAnalyticsSimpleColumnRequest>;
|
|
182
|
+
};
|
|
179
183
|
export declare enum AvpAnalyticsColumnType {
|
|
180
184
|
DateTime = "DATE_TIME",
|
|
181
185
|
Integer = "INTEGER",
|
|
182
186
|
Text = "TEXT"
|
|
183
187
|
}
|
|
188
|
+
export declare type AvpAnalyticsCreateModelRequest = {
|
|
189
|
+
cloudId: Scalars['ID']['input'];
|
|
190
|
+
modelDefinition?: InputMaybe<AvpAnalyticsModelDefinitionRequest>;
|
|
191
|
+
modelDescription?: InputMaybe<Scalars['String']['input']>;
|
|
192
|
+
modelName?: InputMaybe<Scalars['String']['input']>;
|
|
193
|
+
workspaceId: Scalars['ID']['input'];
|
|
194
|
+
};
|
|
195
|
+
export declare type AvpAnalyticsCreateModelResponse = {
|
|
196
|
+
__typename?: 'AVPAnalyticsCreateModelResponse';
|
|
197
|
+
model: AvpAnalyticsModel;
|
|
198
|
+
};
|
|
184
199
|
export declare type AvpAnalyticsDataSourceMetadata = {
|
|
185
200
|
__typename?: 'AVPAnalyticsDataSourceMetadata';
|
|
186
201
|
icon: Scalars['String']['output'];
|
|
@@ -219,6 +234,12 @@ export declare type AvpAnalyticsFormulaColumn = AvpAnalyticsColumn & {
|
|
|
219
234
|
name: Scalars['String']['output'];
|
|
220
235
|
type: AvpAnalyticsColumnType;
|
|
221
236
|
};
|
|
237
|
+
export declare type AvpAnalyticsFormulaColumnRequest = {
|
|
238
|
+
expression: Scalars['String']['input'];
|
|
239
|
+
isHidden: Scalars['Boolean']['input'];
|
|
240
|
+
name: Scalars['String']['input'];
|
|
241
|
+
type: AvpAnalyticsColumnType;
|
|
242
|
+
};
|
|
222
243
|
export declare type AvpAnalyticsGetModelDataRequest = {
|
|
223
244
|
cloudId: Scalars['ID']['input'];
|
|
224
245
|
dimensions?: InputMaybe<Array<InputMaybe<AvpAnalyticsDimension>>>;
|
|
@@ -253,6 +274,11 @@ export declare type AvpAnalyticsJoinColumnPairs = {
|
|
|
253
274
|
leftColumnId: Scalars['ID']['output'];
|
|
254
275
|
rightColumnId: Scalars['ID']['output'];
|
|
255
276
|
};
|
|
277
|
+
export declare type AvpAnalyticsJoinColumnPairsRequest = {
|
|
278
|
+
joinOnOperator: AvpAnalyticsJoinOnOperator;
|
|
279
|
+
leftColumnId: Scalars['ID']['input'];
|
|
280
|
+
rightColumnId: Scalars['ID']['input'];
|
|
281
|
+
};
|
|
256
282
|
export declare enum AvpAnalyticsJoinOnOperator {
|
|
257
283
|
Equals = "EQUALS",
|
|
258
284
|
GreaterOrEqualThan = "GREATER_OR_EQUAL_THAN",
|
|
@@ -268,6 +294,12 @@ export declare type AvpAnalyticsJoinPaths = {
|
|
|
268
294
|
leftModelId: Scalars['ID']['output'];
|
|
269
295
|
rightModelId: Scalars['ID']['output'];
|
|
270
296
|
};
|
|
297
|
+
export declare type AvpAnalyticsJoinPathsRequest = {
|
|
298
|
+
columnPairs: Array<AvpAnalyticsJoinColumnPairsRequest>;
|
|
299
|
+
joinType: AvpAnalyticsJoinType;
|
|
300
|
+
leftModelId: Scalars['ID']['input'];
|
|
301
|
+
rightModelId: Scalars['ID']['input'];
|
|
302
|
+
};
|
|
271
303
|
export declare enum AvpAnalyticsJoinType {
|
|
272
304
|
Full = "FULL",
|
|
273
305
|
Inner = "INNER",
|
|
@@ -314,6 +346,11 @@ export declare type AvpAnalyticsModelDataSource = {
|
|
|
314
346
|
name?: Maybe<Scalars['String']['output']>;
|
|
315
347
|
subDataSources?: Maybe<Array<AvpAnalyticsModelDataSource>>;
|
|
316
348
|
};
|
|
349
|
+
export declare type AvpAnalyticsModelDataSourceRequest = {
|
|
350
|
+
id: Scalars['ID']['input'];
|
|
351
|
+
models?: InputMaybe<Array<AvpAnalyticsModelRequest>>;
|
|
352
|
+
subDataSources?: InputMaybe<Array<AvpAnalyticsModelDataSourceRequest>>;
|
|
353
|
+
};
|
|
317
354
|
export declare type AvpAnalyticsModelDefinition = {
|
|
318
355
|
__typename?: 'AVPAnalyticsModelDefinition';
|
|
319
356
|
columns?: Maybe<Array<AvpAnalyticsColumn>>;
|
|
@@ -321,10 +358,19 @@ export declare type AvpAnalyticsModelDefinition = {
|
|
|
321
358
|
filters?: Maybe<Array<AvpAnalyticsModelFilter>>;
|
|
322
359
|
joinPaths?: Maybe<Array<AvpAnalyticsJoinPaths>>;
|
|
323
360
|
};
|
|
361
|
+
export declare type AvpAnalyticsModelDefinitionRequest = {
|
|
362
|
+
columns?: InputMaybe<Array<AvpAnalyticsColumnRequest>>;
|
|
363
|
+
dataSources?: InputMaybe<Array<AvpAnalyticsModelDataSourceRequest>>;
|
|
364
|
+
filters?: InputMaybe<Array<AvpAnalyticsModelFilterRequest>>;
|
|
365
|
+
joinPaths?: InputMaybe<Array<AvpAnalyticsJoinPathsRequest>>;
|
|
366
|
+
};
|
|
324
367
|
export declare type AvpAnalyticsModelFilter = {
|
|
325
368
|
__typename?: 'AVPAnalyticsModelFilter';
|
|
326
369
|
columnName: Scalars['String']['output'];
|
|
327
370
|
};
|
|
371
|
+
export declare type AvpAnalyticsModelFilterRequest = {
|
|
372
|
+
columnName: Scalars['String']['input'];
|
|
373
|
+
};
|
|
328
374
|
export declare type AvpAnalyticsModelMetadata = {
|
|
329
375
|
__typename?: 'AVPAnalyticsModelMetadata';
|
|
330
376
|
createdAt: Scalars['DateTime']['output'];
|
|
@@ -345,6 +391,10 @@ export declare enum AvpAnalyticsModelPermission {
|
|
|
345
391
|
Edit = "EDIT",
|
|
346
392
|
ReadOnly = "READ_ONLY"
|
|
347
393
|
}
|
|
394
|
+
export declare type AvpAnalyticsModelRequest = {
|
|
395
|
+
id: Scalars['ID']['input'];
|
|
396
|
+
type: AvpAnalyticsModelType;
|
|
397
|
+
};
|
|
348
398
|
export declare enum AvpAnalyticsModelStatus {
|
|
349
399
|
Active = "ACTIVE",
|
|
350
400
|
Draft = "DRAFT"
|
|
@@ -398,6 +448,13 @@ export declare type AvpAnalyticsSimpleColumn = AvpAnalyticsColumn & {
|
|
|
398
448
|
sourceModelId?: Maybe<Scalars['ID']['output']>;
|
|
399
449
|
type: AvpAnalyticsColumnType;
|
|
400
450
|
};
|
|
451
|
+
export declare type AvpAnalyticsSimpleColumnRequest = {
|
|
452
|
+
isHidden: Scalars['Boolean']['input'];
|
|
453
|
+
name: Scalars['String']['input'];
|
|
454
|
+
sourceColumnId: Scalars['ID']['input'];
|
|
455
|
+
sourceModelId: Scalars['ID']['input'];
|
|
456
|
+
type: AvpAnalyticsColumnType;
|
|
457
|
+
};
|
|
401
458
|
export declare enum AvpAnalyticsSortKey {
|
|
402
459
|
ModelCreatedAt = "MODEL_CREATED_AT",
|
|
403
460
|
ModelCreatedBy = "MODEL_CREATED_BY",
|
|
@@ -2454,6 +2511,7 @@ export declare type AdminEntitlement = {
|
|
|
2454
2511
|
licenseLocks?: Maybe<Array<Scalars['String']['output']>>;
|
|
2455
2512
|
plan?: Maybe<AdminWorkspacePlan>;
|
|
2456
2513
|
seats?: Maybe<AdminSeats>;
|
|
2514
|
+
softCapacityLimit?: Maybe<Scalars['Int']['output']>;
|
|
2457
2515
|
sourceSystem: Scalars['String']['output'];
|
|
2458
2516
|
type?: Maybe<Scalars['String']['output']>;
|
|
2459
2517
|
};
|
|
@@ -3877,6 +3935,7 @@ export declare type AgentStudioDataset = {
|
|
|
3877
3935
|
__typename?: 'AgentStudioDataset';
|
|
3878
3936
|
count?: Maybe<Scalars['Int']['output']>;
|
|
3879
3937
|
createdAt: Scalars['String']['output'];
|
|
3938
|
+
datasetType?: Maybe<AgentStudioDatasetType>;
|
|
3880
3939
|
id: Scalars['ID']['output'];
|
|
3881
3940
|
name: Scalars['String']['output'];
|
|
3882
3941
|
projectId: Scalars['String']['output'];
|
|
@@ -3891,6 +3950,7 @@ export declare type AgentStudioDatasetItem = {
|
|
|
3891
3950
|
__typename?: 'AgentStudioDatasetItem';
|
|
3892
3951
|
createdAt: Scalars['String']['output'];
|
|
3893
3952
|
datasetId: Scalars['String']['output'];
|
|
3953
|
+
expectedAnswer?: Maybe<Scalars['String']['output']>;
|
|
3894
3954
|
id: Scalars['ID']['output'];
|
|
3895
3955
|
inputQuestion: Scalars['String']['output'];
|
|
3896
3956
|
updatedAt?: Maybe<Scalars['String']['output']>;
|
|
@@ -3911,6 +3971,10 @@ export declare enum AgentStudioDatasetResolution {
|
|
|
3911
3971
|
Resolved = "RESOLVED",
|
|
3912
3972
|
Unresolved = "UNRESOLVED"
|
|
3913
3973
|
}
|
|
3974
|
+
export declare enum AgentStudioDatasetType {
|
|
3975
|
+
QuestionAnswer = "QUESTION_ANSWER",
|
|
3976
|
+
QuestionOnly = "QUESTION_ONLY"
|
|
3977
|
+
}
|
|
3914
3978
|
export declare type AgentStudioDatasetsResult = {
|
|
3915
3979
|
__typename?: 'AgentStudioDatasetsResult';
|
|
3916
3980
|
edges: Array<AgentStudioDatasetEdge>;
|
|
@@ -3962,6 +4026,7 @@ export declare type AgentStudioEvaluationResult = {
|
|
|
3962
4026
|
datasetItemId: Scalars['String']['output'];
|
|
3963
4027
|
errorMessage?: Maybe<Scalars['String']['output']>;
|
|
3964
4028
|
evaluationDetailsJson?: Maybe<Scalars['String']['output']>;
|
|
4029
|
+
expectedAnswer?: Maybe<Scalars['String']['output']>;
|
|
3965
4030
|
id: Scalars['ID']['output'];
|
|
3966
4031
|
inputQuestion?: Maybe<Scalars['String']['output']>;
|
|
3967
4032
|
jobId: Scalars['ID']['output'];
|
|
@@ -4685,6 +4750,87 @@ export declare type AgentWorkspaceCapacitySummary = {
|
|
|
4685
4750
|
totalAssignedWorkItems: Scalars['Int']['output'];
|
|
4686
4751
|
totalCapacity: Scalars['Int']['output'];
|
|
4687
4752
|
};
|
|
4753
|
+
export declare type AgentWorkspaceCatalog = {
|
|
4754
|
+
__typename?: 'AgentWorkspaceCatalog';
|
|
4755
|
+
attributes?: Maybe<Scalars['JSON']['output']>;
|
|
4756
|
+
catalogTypeId: Scalars['ID']['output'];
|
|
4757
|
+
childCatalogIds?: Maybe<Array<Scalars['ID']['output']>>;
|
|
4758
|
+
description?: Maybe<Scalars['String']['output']>;
|
|
4759
|
+
id: Scalars['ID']['output'];
|
|
4760
|
+
lastEdited?: Maybe<Scalars['JSON']['output']>;
|
|
4761
|
+
name: Scalars['String']['output'];
|
|
4762
|
+
parentCatalogIds?: Maybe<Array<Scalars['ID']['output']>>;
|
|
4763
|
+
skillIds: Array<Scalars['ID']['output']>;
|
|
4764
|
+
userCatalogIds?: Maybe<Array<Scalars['ID']['output']>>;
|
|
4765
|
+
};
|
|
4766
|
+
export declare type AgentWorkspaceCatalogConnection = {
|
|
4767
|
+
__typename?: 'AgentWorkspaceCatalogConnection';
|
|
4768
|
+
nodes: Array<AgentWorkspaceCatalog>;
|
|
4769
|
+
pageInfo: AgentWorkspaceCatalogPageInfo;
|
|
4770
|
+
};
|
|
4771
|
+
export declare type AgentWorkspaceCatalogFilter = {
|
|
4772
|
+
attributes?: InputMaybe<Scalars['JSON']['input']>;
|
|
4773
|
+
catalogTypeId?: InputMaybe<Scalars['ID']['input']>;
|
|
4774
|
+
ids?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
4775
|
+
nameContains?: InputMaybe<Scalars['String']['input']>;
|
|
4776
|
+
parentCatalogId?: InputMaybe<Scalars['ID']['input']>;
|
|
4777
|
+
};
|
|
4778
|
+
export declare type AgentWorkspaceCatalogPageInfo = {
|
|
4779
|
+
__typename?: 'AgentWorkspaceCatalogPageInfo';
|
|
4780
|
+
currentPage: Scalars['Int']['output'];
|
|
4781
|
+
hasNextPage: Scalars['Boolean']['output'];
|
|
4782
|
+
hasPreviousPage: Scalars['Boolean']['output'];
|
|
4783
|
+
pageSize: Scalars['Int']['output'];
|
|
4784
|
+
totalCount: Scalars['Int']['output'];
|
|
4785
|
+
totalPages: Scalars['Int']['output'];
|
|
4786
|
+
};
|
|
4787
|
+
export declare type AgentWorkspaceCatalogType = {
|
|
4788
|
+
__typename?: 'AgentWorkspaceCatalogType';
|
|
4789
|
+
attributes?: Maybe<Scalars['JSON']['output']>;
|
|
4790
|
+
catalogIds?: Maybe<Array<Scalars['ID']['output']>>;
|
|
4791
|
+
id: Scalars['ID']['output'];
|
|
4792
|
+
name: Scalars['String']['output'];
|
|
4793
|
+
nestedChildCatalogTypeIds?: Maybe<Array<Scalars['ID']['output']>>;
|
|
4794
|
+
parentTypeId?: Maybe<Scalars['ID']['output']>;
|
|
4795
|
+
};
|
|
4796
|
+
export declare type AgentWorkspaceCatalogTypeConnection = {
|
|
4797
|
+
__typename?: 'AgentWorkspaceCatalogTypeConnection';
|
|
4798
|
+
nodes: Array<AgentWorkspaceCatalogType>;
|
|
4799
|
+
pageInfo: AgentWorkspaceCatalogTypePageInfo;
|
|
4800
|
+
};
|
|
4801
|
+
export declare type AgentWorkspaceCatalogTypeFilter = {
|
|
4802
|
+
attributes?: InputMaybe<Scalars['JSON']['input']>;
|
|
4803
|
+
ids?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
4804
|
+
nameContains?: InputMaybe<Scalars['String']['input']>;
|
|
4805
|
+
parentTypeId?: InputMaybe<Scalars['ID']['input']>;
|
|
4806
|
+
};
|
|
4807
|
+
export declare type AgentWorkspaceCatalogTypePageInfo = {
|
|
4808
|
+
__typename?: 'AgentWorkspaceCatalogTypePageInfo';
|
|
4809
|
+
currentPage: Scalars['Int']['output'];
|
|
4810
|
+
hasNextPage: Scalars['Boolean']['output'];
|
|
4811
|
+
hasPreviousPage: Scalars['Boolean']['output'];
|
|
4812
|
+
pageSize: Scalars['Int']['output'];
|
|
4813
|
+
totalCount: Scalars['Int']['output'];
|
|
4814
|
+
totalPages: Scalars['Int']['output'];
|
|
4815
|
+
};
|
|
4816
|
+
export declare type AgentWorkspaceCreateCatalogInput = {
|
|
4817
|
+
attributes?: InputMaybe<Scalars['JSON']['input']>;
|
|
4818
|
+
catalogTypeId: Scalars['ID']['input'];
|
|
4819
|
+
cloudId: Scalars['ID']['input'];
|
|
4820
|
+
description?: InputMaybe<Scalars['String']['input']>;
|
|
4821
|
+
id: Scalars['ID']['input'];
|
|
4822
|
+
name: Scalars['String']['input'];
|
|
4823
|
+
parentCatalogIds?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
4824
|
+
skillIds: Array<Scalars['ID']['input']>;
|
|
4825
|
+
};
|
|
4826
|
+
export declare type AgentWorkspaceCreateCatalogTypeInput = {
|
|
4827
|
+
attributes?: InputMaybe<Scalars['JSON']['input']>;
|
|
4828
|
+
cloudId: Scalars['ID']['input'];
|
|
4829
|
+
id: Scalars['ID']['input'];
|
|
4830
|
+
name: Scalars['String']['input'];
|
|
4831
|
+
nestedChildCatalogTypeIds?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
4832
|
+
parentTypeId?: InputMaybe<Scalars['ID']['input']>;
|
|
4833
|
+
};
|
|
4688
4834
|
export declare type AgentWorkspaceCreateScheduleInput = {
|
|
4689
4835
|
agentIds: Array<Scalars['ID']['input']>;
|
|
4690
4836
|
cloudId: Scalars['ID']['input'];
|
|
@@ -4703,6 +4849,16 @@ export declare type AgentWorkspaceCreateSchedulePayload = {
|
|
|
4703
4849
|
schedule?: Maybe<AgentWorkspaceSchedule>;
|
|
4704
4850
|
success: Scalars['Boolean']['output'];
|
|
4705
4851
|
};
|
|
4852
|
+
export declare type AgentWorkspaceCreateSkillInput = {
|
|
4853
|
+
assessmentIds?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
4854
|
+
attributes?: InputMaybe<Scalars['JSON']['input']>;
|
|
4855
|
+
cloudId: Scalars['ID']['input'];
|
|
4856
|
+
description?: InputMaybe<Scalars['String']['input']>;
|
|
4857
|
+
id: Scalars['ID']['input'];
|
|
4858
|
+
name: Scalars['String']['input'];
|
|
4859
|
+
parentCatalogIds: Array<Scalars['ID']['input']>;
|
|
4860
|
+
proficiencyDefinitions?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
4861
|
+
};
|
|
4706
4862
|
export declare enum AgentWorkspaceDayOfWeek {
|
|
4707
4863
|
Friday = "FRIDAY",
|
|
4708
4864
|
Monday = "MONDAY",
|
|
@@ -4859,6 +5015,56 @@ export declare type AgentWorkspaceShiftsSummary = {
|
|
|
4859
5015
|
scheduledAgents: Scalars['Int']['output'];
|
|
4860
5016
|
totalShifts: Scalars['Int']['output'];
|
|
4861
5017
|
};
|
|
5018
|
+
export declare type AgentWorkspaceSkill = {
|
|
5019
|
+
__typename?: 'AgentWorkspaceSkill';
|
|
5020
|
+
assessmentIds?: Maybe<Array<Scalars['ID']['output']>>;
|
|
5021
|
+
attributes?: Maybe<Scalars['JSON']['output']>;
|
|
5022
|
+
description?: Maybe<Scalars['String']['output']>;
|
|
5023
|
+
id: Scalars['ID']['output'];
|
|
5024
|
+
lastEdited?: Maybe<Scalars['JSON']['output']>;
|
|
5025
|
+
name: Scalars['String']['output'];
|
|
5026
|
+
parentCatalogIds: Array<Scalars['ID']['output']>;
|
|
5027
|
+
proficiencyDefinitions?: Maybe<Array<Scalars['String']['output']>>;
|
|
5028
|
+
userSkillIds?: Maybe<Array<Scalars['ID']['output']>>;
|
|
5029
|
+
};
|
|
5030
|
+
export declare type AgentWorkspaceSkillConnection = {
|
|
5031
|
+
__typename?: 'AgentWorkspaceSkillConnection';
|
|
5032
|
+
nodes: Array<AgentWorkspaceSkill>;
|
|
5033
|
+
pageInfo: AgentWorkspaceSkillPageInfo;
|
|
5034
|
+
};
|
|
5035
|
+
export declare type AgentWorkspaceSkillFilter = {
|
|
5036
|
+
attributes?: InputMaybe<Scalars['JSON']['input']>;
|
|
5037
|
+
ids?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
5038
|
+
nameContains?: InputMaybe<Scalars['String']['input']>;
|
|
5039
|
+
parentCatalogIds?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
5040
|
+
};
|
|
5041
|
+
export declare type AgentWorkspaceSkillPageInfo = {
|
|
5042
|
+
__typename?: 'AgentWorkspaceSkillPageInfo';
|
|
5043
|
+
currentPage: Scalars['Int']['output'];
|
|
5044
|
+
hasNextPage: Scalars['Boolean']['output'];
|
|
5045
|
+
hasPreviousPage: Scalars['Boolean']['output'];
|
|
5046
|
+
pageSize: Scalars['Int']['output'];
|
|
5047
|
+
totalCount: Scalars['Int']['output'];
|
|
5048
|
+
totalPages: Scalars['Int']['output'];
|
|
5049
|
+
};
|
|
5050
|
+
export declare type AgentWorkspaceUpdateCatalogInput = {
|
|
5051
|
+
attributes?: InputMaybe<Scalars['JSON']['input']>;
|
|
5052
|
+
catalogTypeId?: InputMaybe<Scalars['ID']['input']>;
|
|
5053
|
+
cloudId: Scalars['ID']['input'];
|
|
5054
|
+
description?: InputMaybe<Scalars['String']['input']>;
|
|
5055
|
+
id: Scalars['ID']['input'];
|
|
5056
|
+
name?: InputMaybe<Scalars['String']['input']>;
|
|
5057
|
+
parentCatalogIds?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
5058
|
+
skillIds?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
5059
|
+
};
|
|
5060
|
+
export declare type AgentWorkspaceUpdateCatalogTypeInput = {
|
|
5061
|
+
attributes?: InputMaybe<Scalars['JSON']['input']>;
|
|
5062
|
+
cloudId: Scalars['ID']['input'];
|
|
5063
|
+
id: Scalars['ID']['input'];
|
|
5064
|
+
name?: InputMaybe<Scalars['String']['input']>;
|
|
5065
|
+
nestedChildCatalogTypeIds?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
5066
|
+
parentTypeId?: InputMaybe<Scalars['ID']['input']>;
|
|
5067
|
+
};
|
|
4862
5068
|
export declare type AgentWorkspaceUpdateScheduleInput = {
|
|
4863
5069
|
agentIds: Array<Scalars['ID']['input']>;
|
|
4864
5070
|
cloudId: Scalars['ID']['input'];
|
|
@@ -4880,6 +5086,16 @@ export declare type AgentWorkspaceUpdateSchedulePayload = {
|
|
|
4880
5086
|
schedule?: Maybe<AgentWorkspaceSchedule>;
|
|
4881
5087
|
success: Scalars['Boolean']['output'];
|
|
4882
5088
|
};
|
|
5089
|
+
export declare type AgentWorkspaceUpdateSkillInput = {
|
|
5090
|
+
assessmentIds?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
5091
|
+
attributes?: InputMaybe<Scalars['JSON']['input']>;
|
|
5092
|
+
cloudId: Scalars['ID']['input'];
|
|
5093
|
+
description?: InputMaybe<Scalars['String']['input']>;
|
|
5094
|
+
id: Scalars['ID']['input'];
|
|
5095
|
+
name?: InputMaybe<Scalars['String']['input']>;
|
|
5096
|
+
parentCatalogIds?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
5097
|
+
proficiencyDefinitions?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
5098
|
+
};
|
|
4883
5099
|
export declare enum AiCoreApiQuestionType {
|
|
4884
5100
|
DraftDocument = "DRAFT_DOCUMENT",
|
|
4885
5101
|
KnowledgeBase = "KNOWLEDGE_BASE"
|
|
@@ -9707,6 +9923,7 @@ export declare type BoardScope = Node & {
|
|
|
9707
9923
|
sprints?: Maybe<Array<Maybe<Sprint>>>;
|
|
9708
9924
|
startSprintPrototype?: Maybe<Sprint>;
|
|
9709
9925
|
subqueryConfig?: Maybe<JswSubqueryConfig>;
|
|
9926
|
+
townsquareProjects?: Maybe<Array<Maybe<JiraTownsquareProjectEntry>>>;
|
|
9710
9927
|
trackingStatistic?: Maybe<JswTrackingStatistic>;
|
|
9711
9928
|
userSwimlaneStrategy?: Maybe<SwimlaneStrategy>;
|
|
9712
9929
|
workingDaysConfig?: Maybe<JswWorkingDaysConfig>;
|
|
@@ -12440,6 +12657,8 @@ export declare type ChannelPlatformContact = {
|
|
|
12440
12657
|
assigneeAaid?: Maybe<Scalars['String']['output']>;
|
|
12441
12658
|
channel?: Maybe<ChannelPlatformChannelType>;
|
|
12442
12659
|
contactId?: Maybe<Scalars['ID']['output']>;
|
|
12660
|
+
disconnectReason?: Maybe<Scalars['String']['output']>;
|
|
12661
|
+
disconnectTimestamp?: Maybe<Scalars['String']['output']>;
|
|
12443
12662
|
phoneContact?: Maybe<ChannelPlatformPhoneContact>;
|
|
12444
12663
|
state?: Maybe<ChannelPlatformContactState>;
|
|
12445
12664
|
};
|
|
@@ -25588,9 +25807,12 @@ export declare type ConfluencePermissionTransitionPrincipalPageInfo = {
|
|
|
25588
25807
|
hasNextPage: Scalars['Boolean']['output'];
|
|
25589
25808
|
};
|
|
25590
25809
|
export declare enum ConfluencePermissionTransitionPrincipalType {
|
|
25810
|
+
AccessClass = "ACCESS_CLASS",
|
|
25591
25811
|
Anonymous = "ANONYMOUS",
|
|
25812
|
+
App = "APP",
|
|
25592
25813
|
Group = "GROUP",
|
|
25593
25814
|
Guest = "GUEST",
|
|
25815
|
+
Team = "TEAM",
|
|
25594
25816
|
User = "USER"
|
|
25595
25817
|
}
|
|
25596
25818
|
export declare type ConfluencePermissionTransitionPrincipalsConnection = {
|
|
@@ -25598,6 +25820,11 @@ export declare type ConfluencePermissionTransitionPrincipalsConnection = {
|
|
|
25598
25820
|
edges?: Maybe<Array<Maybe<ConfluencePermissionTransitionPrincipalEdge>>>;
|
|
25599
25821
|
pageInfo: ConfluencePermissionTransitionPrincipalPageInfo;
|
|
25600
25822
|
};
|
|
25823
|
+
export declare type ConfluencePermissionTransitionRecommendation = {
|
|
25824
|
+
__typename?: 'ConfluencePermissionTransitionRecommendation';
|
|
25825
|
+
action: ConfluenceRoleRecommendation;
|
|
25826
|
+
justification: ConfluenceRecommendationJustification;
|
|
25827
|
+
};
|
|
25601
25828
|
export declare type ConfluencePermissionTransitionSpace = {
|
|
25602
25829
|
__typename?: 'ConfluencePermissionTransitionSpace';
|
|
25603
25830
|
icon: Scalars['String']['output'];
|
|
@@ -25605,7 +25832,7 @@ export declare type ConfluencePermissionTransitionSpace = {
|
|
|
25605
25832
|
isPersonalSpace: Scalars['Boolean']['output'];
|
|
25606
25833
|
key: Scalars['String']['output'];
|
|
25607
25834
|
name: Scalars['String']['output'];
|
|
25608
|
-
owner
|
|
25835
|
+
owner?: Maybe<ConfluencePermissionTransitionSpaceOwner>;
|
|
25609
25836
|
};
|
|
25610
25837
|
export declare type ConfluencePermissionTransitionSpaceConnection = {
|
|
25611
25838
|
__typename?: 'ConfluencePermissionTransitionSpaceConnection';
|
|
@@ -25619,10 +25846,18 @@ export declare type ConfluencePermissionTransitionSpaceEdge = {
|
|
|
25619
25846
|
};
|
|
25620
25847
|
export declare type ConfluencePermissionTransitionSpaceOwner = {
|
|
25621
25848
|
__typename?: 'ConfluencePermissionTransitionSpaceOwner';
|
|
25622
|
-
|
|
25623
|
-
|
|
25624
|
-
|
|
25849
|
+
displayName?: Maybe<Scalars['String']['output']>;
|
|
25850
|
+
email?: Maybe<Scalars['String']['output']>;
|
|
25851
|
+
name?: Maybe<Scalars['String']['output']>;
|
|
25852
|
+
ownerId?: Maybe<Scalars['String']['output']>;
|
|
25853
|
+
ownerType?: Maybe<ConfluencePermissionTransitionSpaceOwnerType>;
|
|
25854
|
+
profilePicture?: Maybe<Icon>;
|
|
25855
|
+
usageType?: Maybe<ConfluencePermissionTransitionSpaceUsageType>;
|
|
25625
25856
|
};
|
|
25857
|
+
export declare enum ConfluencePermissionTransitionSpaceOwnerType {
|
|
25858
|
+
Group = "GROUP",
|
|
25859
|
+
User = "USER"
|
|
25860
|
+
}
|
|
25626
25861
|
export declare type ConfluencePermissionTransitionSpaceTargetSelectionInput = {
|
|
25627
25862
|
selectedSpaces?: InputMaybe<Array<InputMaybe<ConfluenceSpaceTargetInput>>>;
|
|
25628
25863
|
spaceType: ConfluencePermissionTransitionSpaceType;
|
|
@@ -25640,6 +25875,11 @@ export declare enum ConfluencePermissionTransitionSpaceTypeFilter {
|
|
|
25640
25875
|
KnowledgeBase = "KNOWLEDGE_BASE",
|
|
25641
25876
|
Personal = "PERSONAL"
|
|
25642
25877
|
}
|
|
25878
|
+
export declare enum ConfluencePermissionTransitionSpaceUsageType {
|
|
25879
|
+
AdminOversight = "ADMIN_OVERSIGHT",
|
|
25880
|
+
TeamCollaboration = "TEAM_COLLABORATION",
|
|
25881
|
+
UserbaseGroup = "USERBASE_GROUP"
|
|
25882
|
+
}
|
|
25643
25883
|
export declare enum ConfluencePermissionTypeAssignabilityCode {
|
|
25644
25884
|
AnonymousAssignable = "ANONYMOUS_ASSIGNABLE",
|
|
25645
25885
|
Assignable = "ASSIGNABLE",
|
|
@@ -26087,6 +26327,14 @@ export declare enum ConfluenceRecipientType {
|
|
|
26087
26327
|
Team = "TEAM",
|
|
26088
26328
|
User = "USER"
|
|
26089
26329
|
}
|
|
26330
|
+
export declare type ConfluenceRecommendationJustification = {
|
|
26331
|
+
__typename?: 'ConfluenceRecommendationJustification';
|
|
26332
|
+
description: Scalars['String']['output'];
|
|
26333
|
+
name: Scalars['String']['output'];
|
|
26334
|
+
};
|
|
26335
|
+
export declare enum ConfluenceRecommendedAction {
|
|
26336
|
+
ConvertToRole = "CONVERT_TO_ROLE"
|
|
26337
|
+
}
|
|
26090
26338
|
export declare type ConfluenceRedactionMetadata = {
|
|
26091
26339
|
__typename?: 'ConfluenceRedactionMetadata';
|
|
26092
26340
|
creationDate?: Maybe<Scalars['String']['output']>;
|
|
@@ -26270,6 +26518,7 @@ export declare type ConfluenceReviewerDecisionInfo = {
|
|
|
26270
26518
|
principalId: Scalars['String']['output'];
|
|
26271
26519
|
principalType: ConfluencePrincipalType;
|
|
26272
26520
|
reviewerDecisionStatus?: Maybe<ConfluenceReviewerDecisionState>;
|
|
26521
|
+
user?: Maybe<AtlassianUser>;
|
|
26273
26522
|
};
|
|
26274
26523
|
export declare enum ConfluenceReviewerDecisionState {
|
|
26275
26524
|
PendingReview = "PENDING_REVIEW",
|
|
@@ -26288,6 +26537,11 @@ export declare enum ConfluenceRoleAssignabilityCode {
|
|
|
26288
26537
|
NoManageNonlicensedUsersPermNotAssignable = "NO_MANAGE_NONLICENSED_USERS_PERM_NOT_ASSIGNABLE",
|
|
26289
26538
|
PrincipalInvalidRole = "PRINCIPAL_INVALID_ROLE"
|
|
26290
26539
|
}
|
|
26540
|
+
export declare type ConfluenceRoleRecommendation = {
|
|
26541
|
+
__typename?: 'ConfluenceRoleRecommendation';
|
|
26542
|
+
action: ConfluenceRecommendedAction;
|
|
26543
|
+
roleIds?: Maybe<Array<Maybe<Scalars['String']['output']>>>;
|
|
26544
|
+
};
|
|
26291
26545
|
export declare type ConfluenceSaveOrUpdateSpaceOwnerInput = {
|
|
26292
26546
|
ownerId: Scalars['ID']['input'];
|
|
26293
26547
|
spaceId: Scalars['Long']['input'];
|
|
@@ -26556,6 +26810,7 @@ export declare type ConfluenceSpacePermissionCombination = {
|
|
|
26556
26810
|
__typename?: 'ConfluenceSpacePermissionCombination';
|
|
26557
26811
|
combinationId: Scalars['String']['output'];
|
|
26558
26812
|
principalCount: Scalars['Long']['output'];
|
|
26813
|
+
recommendation?: Maybe<ConfluencePermissionTransitionRecommendation>;
|
|
26559
26814
|
spaceCount: Scalars['Long']['output'];
|
|
26560
26815
|
spaceRole?: Maybe<ConfluenceBasicSpaceRole>;
|
|
26561
26816
|
};
|
|
@@ -27399,14 +27654,6 @@ export declare type ConfluenceUpdateNcsPdfExportConfigurationPayload = Payload &
|
|
|
27399
27654
|
pdfExportConfiguration?: Maybe<ConfluenceNcsPdfExportConfiguration>;
|
|
27400
27655
|
success: Scalars['Boolean']['output'];
|
|
27401
27656
|
};
|
|
27402
|
-
export declare type ConfluenceUpdateNav4OptInInput = {
|
|
27403
|
-
enableNav4: Scalars['Boolean']['input'];
|
|
27404
|
-
};
|
|
27405
|
-
export declare type ConfluenceUpdateNav4OptInPayload = Payload & {
|
|
27406
|
-
__typename?: 'ConfluenceUpdateNav4OptInPayload';
|
|
27407
|
-
errors?: Maybe<Array<MutationError>>;
|
|
27408
|
-
success: Scalars['Boolean']['output'];
|
|
27409
|
-
};
|
|
27410
27657
|
export declare type ConfluenceUpdateNewCodeMacroInput = {
|
|
27411
27658
|
languageName: Scalars['String']['input'];
|
|
27412
27659
|
themeName: Scalars['String']['input'];
|
|
@@ -27714,6 +27961,14 @@ export declare type ConfluenceUpdateWatermarkConfigPayload = Payload & {
|
|
|
27714
27961
|
success: Scalars['Boolean']['output'];
|
|
27715
27962
|
watermarkConfig?: Maybe<ConfluenceWatermarkConfig>;
|
|
27716
27963
|
};
|
|
27964
|
+
export declare type ConfluenceUpdateWorkflowApplicationRequestInput = {
|
|
27965
|
+
contentId: Scalars['Long']['input'];
|
|
27966
|
+
contentStatus: GraphQlContentStatus;
|
|
27967
|
+
isActive?: InputMaybe<Scalars['Boolean']['input']>;
|
|
27968
|
+
version: Scalars['Int']['input'];
|
|
27969
|
+
workflowId?: InputMaybe<Scalars['Long']['input']>;
|
|
27970
|
+
workflowStatusId?: InputMaybe<Scalars['Long']['input']>;
|
|
27971
|
+
};
|
|
27717
27972
|
export declare type ConfluenceUploadDefaultSpaceLogoInput = {
|
|
27718
27973
|
fileStoreId: Scalars['ID']['input'];
|
|
27719
27974
|
};
|
|
@@ -27879,10 +28134,22 @@ export declare type ConfluenceWhiteboardTemplateInfoEdge = {
|
|
|
27879
28134
|
cursor?: Maybe<Scalars['String']['output']>;
|
|
27880
28135
|
node?: Maybe<ConfluenceWhiteboardTemplateInfo>;
|
|
27881
28136
|
};
|
|
28137
|
+
export declare type ConfluenceWorkflowApplicationDetails = {
|
|
28138
|
+
__typename?: 'ConfluenceWorkflowApplicationDetails';
|
|
28139
|
+
contentId?: Maybe<Scalars['ID']['output']>;
|
|
28140
|
+
contentStatus?: Maybe<Scalars['String']['output']>;
|
|
28141
|
+
contentVersion?: Maybe<Scalars['Int']['output']>;
|
|
28142
|
+
id?: Maybe<Scalars['ID']['output']>;
|
|
28143
|
+
isActive?: Maybe<Scalars['Boolean']['output']>;
|
|
28144
|
+
workflowId?: Maybe<Scalars['ID']['output']>;
|
|
28145
|
+
workflowStatusId?: Maybe<Scalars['ID']['output']>;
|
|
28146
|
+
};
|
|
27882
28147
|
export declare type ConfluenceWorkflowApplicationPayload = {
|
|
27883
28148
|
__typename?: 'ConfluenceWorkflowApplicationPayload';
|
|
27884
28149
|
errors: Array<MutationError>;
|
|
27885
28150
|
success: Scalars['Boolean']['output'];
|
|
28151
|
+
workflowApplication?: Maybe<ConfluenceWorkflowApplicationDetails>;
|
|
28152
|
+
workflowReviewWithDecisions?: Maybe<ConfluenceWorkflowReviewWithDecisions>;
|
|
27886
28153
|
workflowStatus?: Maybe<ConfluenceApprovalsWorkflowStatus>;
|
|
27887
28154
|
};
|
|
27888
28155
|
export declare type ConfluenceWorkflowReview = {
|
|
@@ -27917,6 +28184,7 @@ export declare type ConfluenceWorkflowReviewer = {
|
|
|
27917
28184
|
isRequired: Scalars['Boolean']['output'];
|
|
27918
28185
|
principalId: Scalars['String']['output'];
|
|
27919
28186
|
principalType: Scalars['String']['output'];
|
|
28187
|
+
user?: Maybe<AtlassianUser>;
|
|
27920
28188
|
};
|
|
27921
28189
|
export declare type ConfluenceWorkflowReviewerDecisionPayload = {
|
|
27922
28190
|
__typename?: 'ConfluenceWorkflowReviewerDecisionPayload';
|
|
@@ -30450,6 +30718,7 @@ export declare type CplsAddContributionsPayload = Payload & {
|
|
|
30450
30718
|
contributors?: Maybe<Array<Maybe<CplsContributorEdge>>>;
|
|
30451
30719
|
errors?: Maybe<Array<MutationError>>;
|
|
30452
30720
|
success: Scalars['Boolean']['output'];
|
|
30721
|
+
works?: Maybe<Array<Maybe<CplsWorkEdge>>>;
|
|
30453
30722
|
};
|
|
30454
30723
|
export declare type CplsAddContributorScopeAssociationInput = {
|
|
30455
30724
|
cloudId: Scalars['ID']['input'];
|
|
@@ -30729,6 +30998,7 @@ export declare type CplsFilters = {
|
|
|
30729
30998
|
__typename?: 'CplsFilters';
|
|
30730
30999
|
contributorDataIds?: Maybe<Array<Scalars['ID']['output']>>;
|
|
30731
31000
|
customContributionTargets?: Maybe<Array<Scalars['ID']['output']>>;
|
|
31001
|
+
id: Scalars['ID']['output'];
|
|
30732
31002
|
jiraWorkItemStatusNames?: Maybe<Array<Scalars['String']['output']>>;
|
|
30733
31003
|
jiraWorkItems?: Maybe<Array<Scalars['ID']['output']>>;
|
|
30734
31004
|
workTypes?: Maybe<Array<CplsWorkType>>;
|
|
@@ -30845,6 +31115,7 @@ export declare type CplsViewSettings = {
|
|
|
30845
31115
|
__typename?: 'CplsViewSettings';
|
|
30846
31116
|
alwaysShowNumbersInGraph?: Maybe<Scalars['Boolean']['output']>;
|
|
30847
31117
|
contributionValueType?: Maybe<CplsContributionValueType>;
|
|
31118
|
+
id: Scalars['ID']['output'];
|
|
30848
31119
|
timeScale?: Maybe<CplsTimeScaleType>;
|
|
30849
31120
|
};
|
|
30850
31121
|
export declare type CplsViewSettingsInput = {
|
|
@@ -35354,11 +35625,11 @@ export declare type DevConsoleHasConsoleAdminResponse = {
|
|
|
35354
35625
|
};
|
|
35355
35626
|
export declare type DevConsoleMutation = {
|
|
35356
35627
|
__typename?: 'DevConsoleMutation';
|
|
35357
|
-
acceptAppBillingConsent
|
|
35358
|
-
archiveDeveloperSpace
|
|
35628
|
+
acceptAppBillingConsent?: Maybe<DevConsoleResponsePayload>;
|
|
35629
|
+
archiveDeveloperSpace?: Maybe<DevConsoleResponsePayload>;
|
|
35359
35630
|
assignDeveloperSpace?: Maybe<DevConsoleAssignDeveloperSpacePayload>;
|
|
35360
35631
|
createDeveloperSpace?: Maybe<DevConsoleDeveloperSpacePayload>;
|
|
35361
|
-
publishDeveloperSpace
|
|
35632
|
+
publishDeveloperSpace?: Maybe<DevConsoleResponsePayload>;
|
|
35362
35633
|
updateDeveloperSpaceMemberRoles?: Maybe<DevConsoleDeveloperSpaceMemberPayload>;
|
|
35363
35634
|
updateDeveloperSpaceSettings?: Maybe<DevConsoleDeveloperSpaceSettingsPayload>;
|
|
35364
35635
|
};
|
|
@@ -35395,21 +35666,21 @@ export declare type DevConsolePublishDeveloperSpaceInput = {
|
|
|
35395
35666
|
};
|
|
35396
35667
|
export declare type DevConsoleQuery = {
|
|
35397
35668
|
__typename?: 'DevConsoleQuery';
|
|
35398
|
-
appResourceUsage
|
|
35399
|
-
appResourceUsageDetailedView
|
|
35400
|
-
appUsageOverview
|
|
35401
|
-
appUsageTopSites
|
|
35402
|
-
downloadAppInstallations
|
|
35403
|
-
fetchDownloadAppInstallationsStatus
|
|
35404
|
-
getAppsWithoutConsent
|
|
35669
|
+
appResourceUsage?: Maybe<DevConsoleAppResourceUsageResponse>;
|
|
35670
|
+
appResourceUsageDetailedView?: Maybe<DevConsoleAppResourceUsageDetailedViewResponse>;
|
|
35671
|
+
appUsageOverview?: Maybe<DevConsoleAppUsageOverviewResponse>;
|
|
35672
|
+
appUsageTopSites?: Maybe<DevConsoleAppUsageTopSitesResponse>;
|
|
35673
|
+
downloadAppInstallations?: Maybe<DevConsoleDownloadAppInstallationsResponse>;
|
|
35674
|
+
fetchDownloadAppInstallationsStatus?: Maybe<DevConsoleFetchDownloadAppInstallationsStatusResponse>;
|
|
35675
|
+
getAppsWithoutConsent?: Maybe<DevConsoleAppsWithoutConsentResponse>;
|
|
35405
35676
|
getDeveloperSpaceDetails?: Maybe<DevConsoleBulkDeveloperSpaceDetailsResponse>;
|
|
35406
35677
|
getDeveloperSpaceMembers?: Maybe<DevConsoleDeveloperSpaceMembersResponse>;
|
|
35407
|
-
getDeveloperSpaceTransactionAccount
|
|
35408
|
-
getDeveloperSpaceUserPermissions
|
|
35678
|
+
getDeveloperSpaceTransactionAccount?: Maybe<DevConsoleTransactionAccountResponse>;
|
|
35679
|
+
getDeveloperSpaceUserPermissions?: Maybe<DevConsoleDeveloperSpaceUserPermissionsResponse>;
|
|
35409
35680
|
getDeveloperSpaceWithLinkingAccess?: Maybe<Array<Maybe<Scalars['String']['output']>>>;
|
|
35410
|
-
getDeveloperSpaceWithRoles
|
|
35681
|
+
getDeveloperSpaceWithRoles?: Maybe<Array<DevConsoleDeveloperSpaceWithRole>>;
|
|
35411
35682
|
hasAnyConsoleAdmin?: Maybe<DevConsoleHasConsoleAdminResponse>;
|
|
35412
|
-
tenantContexts
|
|
35683
|
+
tenantContexts?: Maybe<Array<Maybe<DevConsoleTenantContext>>>;
|
|
35413
35684
|
};
|
|
35414
35685
|
export declare type DevConsoleQueryAppResourceUsageArgs = {
|
|
35415
35686
|
appId: Scalars['ID']['input'];
|
|
@@ -38655,6 +38926,8 @@ export declare type ExternalExperimental = Node & {
|
|
|
38655
38926
|
createdBy?: Maybe<ExternalUser>;
|
|
38656
38927
|
description?: Maybe<Scalars['String']['output']>;
|
|
38657
38928
|
displayName?: Maybe<Scalars['String']['output']>;
|
|
38929
|
+
experimentalEntityName?: Maybe<Scalars['String']['output']>;
|
|
38930
|
+
experimentalKey?: Maybe<Scalars['String']['output']>;
|
|
38658
38931
|
externalId?: Maybe<Scalars['String']['output']>;
|
|
38659
38932
|
id: Scalars['ID']['output'];
|
|
38660
38933
|
lastUpdated?: Maybe<Scalars['String']['output']>;
|
|
@@ -45627,6 +45900,10 @@ export declare type GraphStore = {
|
|
|
45627
45900
|
projectLinksToEntityInverseBatch?: Maybe<GraphStoreBatchProjectLinksToEntityConnection>;
|
|
45628
45901
|
pullRequestLinksToService?: Maybe<GraphStoreSimplifiedPullRequestLinksToServiceConnection>;
|
|
45629
45902
|
pullRequestLinksToServiceInverse?: Maybe<GraphStoreSimplifiedPullRequestLinksToServiceInverseConnection>;
|
|
45903
|
+
riskHasProject?: Maybe<GraphStoreSimplifiedRiskHasProjectConnection>;
|
|
45904
|
+
riskHasProjectBatch?: Maybe<GraphStoreBatchRiskHasProjectConnection>;
|
|
45905
|
+
riskHasProjectInverse?: Maybe<GraphStoreSimplifiedRiskHasProjectInverseConnection>;
|
|
45906
|
+
riskHasProjectInverseBatch?: Maybe<GraphStoreBatchRiskHasProjectConnection>;
|
|
45630
45907
|
scorecardHasAtlasGoal?: Maybe<GraphStoreSimplifiedScorecardHasAtlasGoalConnection>;
|
|
45631
45908
|
scorecardHasAtlasGoalInverse?: Maybe<GraphStoreSimplifiedScorecardHasAtlasGoalInverseConnection>;
|
|
45632
45909
|
securityContainerAssociatedToVulnerability?: Maybe<GraphStoreSimplifiedSecurityContainerAssociatedToVulnerabilityConnection>;
|
|
@@ -50491,6 +50768,36 @@ export declare type GraphStorePullRequestLinksToServiceInverseArgs = {
|
|
|
50491
50768
|
queryContext?: InputMaybe<Scalars['String']['input']>;
|
|
50492
50769
|
sort?: InputMaybe<GraphStorePullRequestLinksToServiceSortInput>;
|
|
50493
50770
|
};
|
|
50771
|
+
export declare type GraphStoreRiskHasProjectArgs = {
|
|
50772
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
50773
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
50774
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
50775
|
+
id: Scalars['ID']['input'];
|
|
50776
|
+
queryContext?: InputMaybe<Scalars['String']['input']>;
|
|
50777
|
+
sort?: InputMaybe<GraphStoreRiskHasProjectSortInput>;
|
|
50778
|
+
};
|
|
50779
|
+
export declare type GraphStoreRiskHasProjectBatchArgs = {
|
|
50780
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
50781
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
50782
|
+
ids: Array<Scalars['ID']['input']>;
|
|
50783
|
+
queryContext?: InputMaybe<Scalars['String']['input']>;
|
|
50784
|
+
sort?: InputMaybe<GraphStoreRiskHasProjectSortInput>;
|
|
50785
|
+
};
|
|
50786
|
+
export declare type GraphStoreRiskHasProjectInverseArgs = {
|
|
50787
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
50788
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
50789
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
50790
|
+
id: Scalars['ID']['input'];
|
|
50791
|
+
queryContext?: InputMaybe<Scalars['String']['input']>;
|
|
50792
|
+
sort?: InputMaybe<GraphStoreRiskHasProjectSortInput>;
|
|
50793
|
+
};
|
|
50794
|
+
export declare type GraphStoreRiskHasProjectInverseBatchArgs = {
|
|
50795
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
50796
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
50797
|
+
ids: Array<Scalars['ID']['input']>;
|
|
50798
|
+
queryContext?: InputMaybe<Scalars['String']['input']>;
|
|
50799
|
+
sort?: InputMaybe<GraphStoreRiskHasProjectSortInput>;
|
|
50800
|
+
};
|
|
50494
50801
|
export declare type GraphStoreScorecardHasAtlasGoalArgs = {
|
|
50495
50802
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
50496
50803
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -55060,6 +55367,47 @@ export declare type GraphStoreBatchProjectLinksToEntityStartNode = {
|
|
|
55060
55367
|
id: Scalars['ID']['output'];
|
|
55061
55368
|
};
|
|
55062
55369
|
export declare type GraphStoreBatchProjectLinksToEntityStartUnion = TownsquareProject;
|
|
55370
|
+
export declare type GraphStoreBatchRiskHasProjectConnection = HasPageInfo & {
|
|
55371
|
+
__typename?: 'GraphStoreBatchRiskHasProjectConnection';
|
|
55372
|
+
edges: Array<Maybe<GraphStoreBatchRiskHasProjectEdge>>;
|
|
55373
|
+
nodes: Array<Maybe<GraphStoreBatchRiskHasProjectNode>>;
|
|
55374
|
+
pageInfo: PageInfo;
|
|
55375
|
+
};
|
|
55376
|
+
export declare type GraphStoreBatchRiskHasProjectEdge = {
|
|
55377
|
+
__typename?: 'GraphStoreBatchRiskHasProjectEdge';
|
|
55378
|
+
node: GraphStoreBatchRiskHasProjectInnerConnection;
|
|
55379
|
+
};
|
|
55380
|
+
export declare type GraphStoreBatchRiskHasProjectEndNode = {
|
|
55381
|
+
__typename?: 'GraphStoreBatchRiskHasProjectEndNode';
|
|
55382
|
+
data?: Maybe<GraphStoreBatchRiskHasProjectEndUnion>;
|
|
55383
|
+
id: Scalars['ID']['output'];
|
|
55384
|
+
};
|
|
55385
|
+
export declare type GraphStoreBatchRiskHasProjectEndUnion = JiraAlignAggProject | JiraIssue | TownsquareProject;
|
|
55386
|
+
export declare type GraphStoreBatchRiskHasProjectInnerConnection = {
|
|
55387
|
+
__typename?: 'GraphStoreBatchRiskHasProjectInnerConnection';
|
|
55388
|
+
edges: Array<Maybe<GraphStoreBatchRiskHasProjectInnerEdge>>;
|
|
55389
|
+
nodes: Array<Maybe<GraphStoreBatchRiskHasProjectNode>>;
|
|
55390
|
+
requestedId: Scalars['ID']['output'];
|
|
55391
|
+
};
|
|
55392
|
+
export declare type GraphStoreBatchRiskHasProjectInnerEdge = {
|
|
55393
|
+
__typename?: 'GraphStoreBatchRiskHasProjectInnerEdge';
|
|
55394
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
55395
|
+
node: GraphStoreBatchRiskHasProjectNode;
|
|
55396
|
+
};
|
|
55397
|
+
export declare type GraphStoreBatchRiskHasProjectNode = Node & {
|
|
55398
|
+
__typename?: 'GraphStoreBatchRiskHasProjectNode';
|
|
55399
|
+
createdAt: Scalars['DateTime']['output'];
|
|
55400
|
+
from: GraphStoreBatchRiskHasProjectStartNode;
|
|
55401
|
+
id: Scalars['ID']['output'];
|
|
55402
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
55403
|
+
to: GraphStoreBatchRiskHasProjectEndNode;
|
|
55404
|
+
};
|
|
55405
|
+
export declare type GraphStoreBatchRiskHasProjectStartNode = {
|
|
55406
|
+
__typename?: 'GraphStoreBatchRiskHasProjectStartNode';
|
|
55407
|
+
data?: Maybe<GraphStoreBatchRiskHasProjectStartUnion>;
|
|
55408
|
+
id: Scalars['ID']['output'];
|
|
55409
|
+
};
|
|
55410
|
+
export declare type GraphStoreBatchRiskHasProjectStartUnion = MercuryRisk;
|
|
55063
55411
|
export declare type GraphStoreBatchSecurityContainerAssociatedToVulnerabilityConnection = HasPageInfo & {
|
|
55064
55412
|
__typename?: 'GraphStoreBatchSecurityContainerAssociatedToVulnerabilityConnection';
|
|
55065
55413
|
edges: Array<Maybe<GraphStoreBatchSecurityContainerAssociatedToVulnerabilityEdge>>;
|
|
@@ -56137,6 +56485,10 @@ export declare enum GraphStoreCypherQueryV2BatchVersionEnum {
|
|
|
56137
56485
|
V2 = "V2",
|
|
56138
56486
|
V3 = "V3"
|
|
56139
56487
|
}
|
|
56488
|
+
export declare type GraphStoreCypherQueryV2BoolListObject = {
|
|
56489
|
+
__typename?: 'GraphStoreCypherQueryV2BoolListObject';
|
|
56490
|
+
values: Array<Scalars['Boolean']['output']>;
|
|
56491
|
+
};
|
|
56140
56492
|
export declare type GraphStoreCypherQueryV2BooleanObject = {
|
|
56141
56493
|
__typename?: 'GraphStoreCypherQueryV2BooleanObject';
|
|
56142
56494
|
value: Scalars['Boolean']['output'];
|
|
@@ -56157,6 +56509,10 @@ export declare type GraphStoreCypherQueryV2Edge = {
|
|
|
56157
56509
|
cursor?: Maybe<Scalars['String']['output']>;
|
|
56158
56510
|
node: GraphStoreCypherQueryV2Node;
|
|
56159
56511
|
};
|
|
56512
|
+
export declare type GraphStoreCypherQueryV2FloatListObject = {
|
|
56513
|
+
__typename?: 'GraphStoreCypherQueryV2FloatListObject';
|
|
56514
|
+
values: Array<Scalars['Float']['output']>;
|
|
56515
|
+
};
|
|
56160
56516
|
export declare type GraphStoreCypherQueryV2FloatObject = {
|
|
56161
56517
|
__typename?: 'GraphStoreCypherQueryV2FloatObject';
|
|
56162
56518
|
value: Scalars['Float']['output'];
|
|
@@ -56181,7 +56537,7 @@ export declare type GraphStoreCypherQueryV2Path = {
|
|
|
56181
56537
|
__typename?: 'GraphStoreCypherQueryV2Path';
|
|
56182
56538
|
elements: Array<Scalars['String']['output']>;
|
|
56183
56539
|
};
|
|
56184
|
-
export declare type GraphStoreCypherQueryV2ResultRowItemValueUnion = GraphStoreCypherQueryV2AriNode | GraphStoreCypherQueryV2BooleanObject | GraphStoreCypherQueryV2FloatObject | GraphStoreCypherQueryV2IntListObject | GraphStoreCypherQueryV2IntObject | GraphStoreCypherQueryV2NodeList | GraphStoreCypherQueryV2Path | GraphStoreCypherQueryV2StringListObject | GraphStoreCypherQueryV2StringObject | GraphStoreCypherQueryV2TimestampListObject | GraphStoreCypherQueryV2TimestampObject;
|
|
56540
|
+
export declare type GraphStoreCypherQueryV2ResultRowItemValueUnion = GraphStoreCypherQueryV2AriNode | GraphStoreCypherQueryV2BoolListObject | GraphStoreCypherQueryV2BooleanObject | GraphStoreCypherQueryV2FloatListObject | GraphStoreCypherQueryV2FloatObject | GraphStoreCypherQueryV2IntListObject | GraphStoreCypherQueryV2IntObject | GraphStoreCypherQueryV2NodeList | GraphStoreCypherQueryV2Path | GraphStoreCypherQueryV2StringListObject | GraphStoreCypherQueryV2StringObject | GraphStoreCypherQueryV2TimestampListObject | GraphStoreCypherQueryV2TimestampObject;
|
|
56185
56541
|
export declare type GraphStoreCypherQueryV2StringListObject = {
|
|
56186
56542
|
__typename?: 'GraphStoreCypherQueryV2StringListObject';
|
|
56187
56543
|
values: Array<Scalars['String']['output']>;
|
|
@@ -61459,6 +61815,9 @@ export declare type GraphStoreProjectLinksToEntitySortInput = {
|
|
|
61459
61815
|
export declare type GraphStorePullRequestLinksToServiceSortInput = {
|
|
61460
61816
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
61461
61817
|
};
|
|
61818
|
+
export declare type GraphStoreRiskHasProjectSortInput = {
|
|
61819
|
+
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
61820
|
+
};
|
|
61462
61821
|
export declare type GraphStoreScorecardHasAtlasGoalSortInput = {
|
|
61463
61822
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
61464
61823
|
};
|
|
@@ -67514,6 +67873,34 @@ export declare type GraphStoreSimplifiedPullRequestLinksToServiceInverseEdge = {
|
|
|
67514
67873
|
};
|
|
67515
67874
|
export declare type GraphStoreSimplifiedPullRequestLinksToServiceInverseUnion = DevOpsPullRequestDetails | ExternalPullRequest;
|
|
67516
67875
|
export declare type GraphStoreSimplifiedPullRequestLinksToServiceUnion = DevOpsService;
|
|
67876
|
+
export declare type GraphStoreSimplifiedRiskHasProjectConnection = HasPageInfo & {
|
|
67877
|
+
__typename?: 'GraphStoreSimplifiedRiskHasProjectConnection';
|
|
67878
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedRiskHasProjectEdge>>>;
|
|
67879
|
+
pageInfo: PageInfo;
|
|
67880
|
+
};
|
|
67881
|
+
export declare type GraphStoreSimplifiedRiskHasProjectEdge = {
|
|
67882
|
+
__typename?: 'GraphStoreSimplifiedRiskHasProjectEdge';
|
|
67883
|
+
createdAt: Scalars['DateTime']['output'];
|
|
67884
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
67885
|
+
id: Scalars['ID']['output'];
|
|
67886
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
67887
|
+
node?: Maybe<GraphStoreSimplifiedRiskHasProjectUnion>;
|
|
67888
|
+
};
|
|
67889
|
+
export declare type GraphStoreSimplifiedRiskHasProjectInverseConnection = HasPageInfo & {
|
|
67890
|
+
__typename?: 'GraphStoreSimplifiedRiskHasProjectInverseConnection';
|
|
67891
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedRiskHasProjectInverseEdge>>>;
|
|
67892
|
+
pageInfo: PageInfo;
|
|
67893
|
+
};
|
|
67894
|
+
export declare type GraphStoreSimplifiedRiskHasProjectInverseEdge = {
|
|
67895
|
+
__typename?: 'GraphStoreSimplifiedRiskHasProjectInverseEdge';
|
|
67896
|
+
createdAt: Scalars['DateTime']['output'];
|
|
67897
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
67898
|
+
id: Scalars['ID']['output'];
|
|
67899
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
67900
|
+
node?: Maybe<GraphStoreSimplifiedRiskHasProjectInverseUnion>;
|
|
67901
|
+
};
|
|
67902
|
+
export declare type GraphStoreSimplifiedRiskHasProjectInverseUnion = MercuryRisk;
|
|
67903
|
+
export declare type GraphStoreSimplifiedRiskHasProjectUnion = JiraAlignAggProject | JiraIssue | TownsquareProject;
|
|
67517
67904
|
export declare type GraphStoreSimplifiedScorecardHasAtlasGoalConnection = HasPageInfo & {
|
|
67518
67905
|
__typename?: 'GraphStoreSimplifiedScorecardHasAtlasGoalConnection';
|
|
67519
67906
|
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedScorecardHasAtlasGoalEdge>>>;
|
|
@@ -72828,7 +73215,6 @@ export declare type GraphStoreUserAttendedCalendarEventConditionalFilterInput =
|
|
|
72828
73215
|
createdAt?: InputMaybe<GraphStoreDateFilterInput>;
|
|
72829
73216
|
fromAti?: InputMaybe<GraphStoreAtiFilterInput>;
|
|
72830
73217
|
lastModified?: InputMaybe<GraphStoreDateFilterInput>;
|
|
72831
|
-
relationship_isRecurringEvent?: InputMaybe<GraphStoreBooleanFilterInput>;
|
|
72832
73218
|
relationship_rsvpStatus?: InputMaybe<GraphStoreUserAttendedCalendarEventRsvpStatusFilterInput>;
|
|
72833
73219
|
toAti?: InputMaybe<GraphStoreAtiFilterInput>;
|
|
72834
73220
|
to_eventEndTime?: InputMaybe<GraphStoreLongFilterInput>;
|
|
@@ -72854,7 +73240,6 @@ export declare type GraphStoreUserAttendedCalendarEventSortInput = {
|
|
|
72854
73240
|
createdAt?: InputMaybe<GraphStoreSortInput>;
|
|
72855
73241
|
fromAti?: InputMaybe<GraphStoreSortInput>;
|
|
72856
73242
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
72857
|
-
relationship_isRecurringEvent?: InputMaybe<GraphStoreSortInput>;
|
|
72858
73243
|
relationship_rsvpStatus?: InputMaybe<GraphStoreSortInput>;
|
|
72859
73244
|
toAti?: InputMaybe<GraphStoreSortInput>;
|
|
72860
73245
|
to_eventEndTime?: InputMaybe<GraphStoreSortInput>;
|
|
@@ -73804,6 +74189,8 @@ export declare type GraphStoreV2 = {
|
|
|
73804
74189
|
focusFocusAreaHasThirdPartyDocumentInverse?: Maybe<GraphStoreV2SimplifiedFocusFocusAreaHasThirdPartyDocumentInverseConnection>;
|
|
73805
74190
|
focusFocusAreaHasWorkEntity?: Maybe<GraphStoreV2SimplifiedFocusFocusAreaHasWorkEntityConnection>;
|
|
73806
74191
|
focusFocusAreaHasWorkEntityInverse?: Maybe<GraphStoreV2SimplifiedFocusFocusAreaHasWorkEntityInverseConnection>;
|
|
74192
|
+
focusRiskHasWorkEntity?: Maybe<GraphStoreV2SimplifiedFocusRiskHasWorkEntityConnection>;
|
|
74193
|
+
focusRiskHasWorkEntityInverse?: Maybe<GraphStoreV2SimplifiedFocusRiskHasWorkEntityInverseConnection>;
|
|
73807
74194
|
focusStrategicPlanContributesToFocusFocusArea?: Maybe<GraphStoreV2SimplifiedFocusStrategicPlanContributesToFocusFocusAreaConnection>;
|
|
73808
74195
|
focusStrategicPlanContributesToFocusFocusAreaInverse?: Maybe<GraphStoreV2SimplifiedFocusStrategicPlanContributesToFocusFocusAreaInverseConnection>;
|
|
73809
74196
|
focusStrategicPlanHasFocusStrategicPlanScenario?: Maybe<GraphStoreV2SimplifiedFocusStrategicPlanHasFocusStrategicPlanScenarioConnection>;
|
|
@@ -77508,6 +77895,20 @@ export declare type GraphStoreV2FocusFocusAreaHasWorkEntityInverseArgs = {
|
|
|
77508
77895
|
id: Scalars['ID']['input'];
|
|
77509
77896
|
sort?: InputMaybe<GraphStoreV2FocusFocusAreaHasWorkEntitySortInput>;
|
|
77510
77897
|
};
|
|
77898
|
+
export declare type GraphStoreV2FocusRiskHasWorkEntityArgs = {
|
|
77899
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
77900
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
77901
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
77902
|
+
id: Scalars['ID']['input'];
|
|
77903
|
+
sort?: InputMaybe<GraphStoreV2FocusRiskHasWorkEntitySortInput>;
|
|
77904
|
+
};
|
|
77905
|
+
export declare type GraphStoreV2FocusRiskHasWorkEntityInverseArgs = {
|
|
77906
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
77907
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
77908
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
77909
|
+
id: Scalars['ID']['input'];
|
|
77910
|
+
sort?: InputMaybe<GraphStoreV2FocusRiskHasWorkEntitySortInput>;
|
|
77911
|
+
};
|
|
77511
77912
|
export declare type GraphStoreV2FocusStrategicPlanContributesToFocusFocusAreaArgs = {
|
|
77512
77913
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
77513
77914
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -79879,6 +80280,10 @@ export declare type GraphStoreV2CypherQueryV2AriNode = {
|
|
|
79879
80280
|
id: Scalars['ID']['output'];
|
|
79880
80281
|
};
|
|
79881
80282
|
export declare type GraphStoreV2CypherQueryV2AriNodeUnion = AvpDashboard | AppUser | AssetsObject | AssetsObjectType | AtlassianAccountUser | BitbucketRepository | CompassComponent | CompassLinkNode | CompassScorecard | ConfluenceBlogPost | ConfluenceDatabase | ConfluenceEmbed | ConfluenceFolder | ConfluenceFooterComment | ConfluenceInlineComment | ConfluencePage | ConfluenceSpace | ConfluenceWhiteboard | Customer360Customer | CustomerServiceCsmCustomer | CustomerServiceCsmOrganization | CustomerUser | DeploymentSummary | DevOpsDesign | DevOpsDocument | DevOpsFeatureFlag | DevOpsOperationsComponentDetails | DevOpsOperationsIncidentDetails | DevOpsOperationsPostIncidentReviewDetails | DevOpsProjectDetails | DevOpsPullRequestDetails | DevOpsRepository | DevOpsSecurityVulnerabilityDetails | DevOpsService | ExternalBranch | ExternalBuildInfo | ExternalCalendarEvent | ExternalComment | ExternalCommit | ExternalConversation | ExternalCustomerContact | ExternalCustomerOrg | ExternalCustomerOrgCategory | ExternalDashboard | ExternalDataTable | ExternalDeal | ExternalDeployment | ExternalDesign | ExternalDocument | ExternalFeatureFlag | ExternalMessage | ExternalOrganisation | ExternalPosition | ExternalPullRequest | ExternalRemoteLink | ExternalRepository | ExternalSoftwareService | ExternalSpace | ExternalTeam | ExternalTest | ExternalTestExecution | ExternalTestPlan | ExternalTestRun | ExternalTestStatus | ExternalVideo | ExternalVulnerability | ExternalWorkItem | ExternalWorker | IdentityGroup | JiraAlignAggProject | JiraAutodevJob | JiraBoard | JiraConfluenceRemoteIssueLink | JiraCustomRemoteIssueLink | JiraIssue | JiraIssueRemoteIssueLink | JiraPlatformComment | JiraPostIncidentReviewLink | JiraPriority | JiraProject | JiraServiceManagementComment | JiraSprint | JiraStatus | JiraVersion | JiraWebRemoteIssueLink | JiraWorklog | KnowledgeDiscoveryTopicByAri | LoomComment | LoomMeeting | LoomMeetingRecurrence | LoomSpace | LoomVideo | MercuryChangeProposal | MercuryFocusArea | MercuryFocusAreaStatusUpdate | MercuryRisk | MercuryStrategicEvent | OpsgenieTeam | RadarPosition | RadarWorker | SpfAsk | SpfPlan | SpfPlanScenario | SpfPlanScenarioInvestment | TeamCustomFieldValue | TeamType | TeamV2 | ThirdPartySecurityContainer | ThirdPartyUser | TownsquareComment | TownsquareGoal | TownsquareGoalUpdate | TownsquareProject | TownsquareProjectUpdate;
|
|
80283
|
+
export declare type GraphStoreV2CypherQueryV2BoolListObject = {
|
|
80284
|
+
__typename?: 'GraphStoreV2CypherQueryV2BoolListObject';
|
|
80285
|
+
values: Array<Scalars['Boolean']['output']>;
|
|
80286
|
+
};
|
|
79882
80287
|
export declare type GraphStoreV2CypherQueryV2BooleanObject = {
|
|
79883
80288
|
__typename?: 'GraphStoreV2CypherQueryV2BooleanObject';
|
|
79884
80289
|
value: Scalars['Boolean']['output'];
|
|
@@ -79899,6 +80304,10 @@ export declare type GraphStoreV2CypherQueryV2Edge = {
|
|
|
79899
80304
|
cursor?: Maybe<Scalars['String']['output']>;
|
|
79900
80305
|
node: GraphStoreV2CypherQueryV2Node;
|
|
79901
80306
|
};
|
|
80307
|
+
export declare type GraphStoreV2CypherQueryV2FloatListObject = {
|
|
80308
|
+
__typename?: 'GraphStoreV2CypherQueryV2FloatListObject';
|
|
80309
|
+
values: Array<Scalars['Float']['output']>;
|
|
80310
|
+
};
|
|
79902
80311
|
export declare type GraphStoreV2CypherQueryV2FloatObject = {
|
|
79903
80312
|
__typename?: 'GraphStoreV2CypherQueryV2FloatObject';
|
|
79904
80313
|
value: Scalars['Float']['output'];
|
|
@@ -79919,7 +80328,7 @@ export declare type GraphStoreV2CypherQueryV2NodeList = {
|
|
|
79919
80328
|
__typename?: 'GraphStoreV2CypherQueryV2NodeList';
|
|
79920
80329
|
nodes: Array<GraphStoreV2CypherQueryV2AriNode>;
|
|
79921
80330
|
};
|
|
79922
|
-
export declare type GraphStoreV2CypherQueryV2ResultRowItemValueUnion = GraphStoreV2CypherQueryV2AriNode | GraphStoreV2CypherQueryV2BooleanObject | GraphStoreV2CypherQueryV2FloatObject | GraphStoreV2CypherQueryV2IntListObject | GraphStoreV2CypherQueryV2IntObject | GraphStoreV2CypherQueryV2NodeList | GraphStoreV2CypherQueryV2StringListObject | GraphStoreV2CypherQueryV2StringObject | GraphStoreV2CypherQueryV2TimestampListObject | GraphStoreV2CypherQueryV2TimestampObject;
|
|
80331
|
+
export declare type GraphStoreV2CypherQueryV2ResultRowItemValueUnion = GraphStoreV2CypherQueryV2AriNode | GraphStoreV2CypherQueryV2BoolListObject | GraphStoreV2CypherQueryV2BooleanObject | GraphStoreV2CypherQueryV2FloatListObject | GraphStoreV2CypherQueryV2FloatObject | GraphStoreV2CypherQueryV2IntListObject | GraphStoreV2CypherQueryV2IntObject | GraphStoreV2CypherQueryV2NodeList | GraphStoreV2CypherQueryV2StringListObject | GraphStoreV2CypherQueryV2StringObject | GraphStoreV2CypherQueryV2TimestampListObject | GraphStoreV2CypherQueryV2TimestampObject;
|
|
79923
80332
|
export declare type GraphStoreV2CypherQueryV2StringListObject = {
|
|
79924
80333
|
__typename?: 'GraphStoreV2CypherQueryV2StringListObject';
|
|
79925
80334
|
values: Array<Scalars['String']['output']>;
|
|
@@ -80448,7 +80857,6 @@ export declare type GraphStoreV2ExternalUserAttendedExternalCalendarEventConditi
|
|
|
80448
80857
|
createdAt?: InputMaybe<GraphStoreDateFilterInput>;
|
|
80449
80858
|
fromAti?: InputMaybe<GraphStoreAtiFilterInput>;
|
|
80450
80859
|
lastModified?: InputMaybe<GraphStoreDateFilterInput>;
|
|
80451
|
-
relationship_isRecurringEvent?: InputMaybe<GraphStoreBooleanFilterInput>;
|
|
80452
80860
|
relationship_rsvpStatus?: InputMaybe<GraphStoreV2ExternalUserAttendedExternalCalendarEventRsvpStatusFilterInput>;
|
|
80453
80861
|
toAti?: InputMaybe<GraphStoreAtiFilterInput>;
|
|
80454
80862
|
to_eventEndTime?: InputMaybe<GraphStoreLongFilterInput>;
|
|
@@ -80474,7 +80882,6 @@ export declare type GraphStoreV2ExternalUserAttendedExternalCalendarEventSortInp
|
|
|
80474
80882
|
createdAt?: InputMaybe<GraphStoreSortInput>;
|
|
80475
80883
|
fromAti?: InputMaybe<GraphStoreSortInput>;
|
|
80476
80884
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
80477
|
-
relationship_isRecurringEvent?: InputMaybe<GraphStoreSortInput>;
|
|
80478
80885
|
relationship_rsvpStatus?: InputMaybe<GraphStoreSortInput>;
|
|
80479
80886
|
toAti?: InputMaybe<GraphStoreSortInput>;
|
|
80480
80887
|
to_eventEndTime?: InputMaybe<GraphStoreSortInput>;
|
|
@@ -80710,6 +81117,9 @@ export declare type GraphStoreV2FocusFocusAreaHasThirdPartyDocumentSortInput = {
|
|
|
80710
81117
|
export declare type GraphStoreV2FocusFocusAreaHasWorkEntitySortInput = {
|
|
80711
81118
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
80712
81119
|
};
|
|
81120
|
+
export declare type GraphStoreV2FocusRiskHasWorkEntitySortInput = {
|
|
81121
|
+
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
81122
|
+
};
|
|
80713
81123
|
export declare type GraphStoreV2FocusStrategicPlanContributesToFocusFocusAreaSortInput = {
|
|
80714
81124
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
80715
81125
|
};
|
|
@@ -89291,6 +89701,34 @@ export declare type GraphStoreV2SimplifiedFocusFocusAreaHasWorkEntityInverseEdge
|
|
|
89291
89701
|
};
|
|
89292
89702
|
export declare type GraphStoreV2SimplifiedFocusFocusAreaHasWorkEntityInverseUnion = MercuryFocusArea;
|
|
89293
89703
|
export declare type GraphStoreV2SimplifiedFocusFocusAreaHasWorkEntityUnion = JiraAlignAggProject | JiraIssue | TownsquareProject;
|
|
89704
|
+
export declare type GraphStoreV2SimplifiedFocusRiskHasWorkEntityConnection = HasPageInfo & {
|
|
89705
|
+
__typename?: 'GraphStoreV2SimplifiedFocusRiskHasWorkEntityConnection';
|
|
89706
|
+
edges?: Maybe<Array<Maybe<GraphStoreV2SimplifiedFocusRiskHasWorkEntityEdge>>>;
|
|
89707
|
+
pageInfo: PageInfo;
|
|
89708
|
+
};
|
|
89709
|
+
export declare type GraphStoreV2SimplifiedFocusRiskHasWorkEntityEdge = {
|
|
89710
|
+
__typename?: 'GraphStoreV2SimplifiedFocusRiskHasWorkEntityEdge';
|
|
89711
|
+
createdAt: Scalars['DateTime']['output'];
|
|
89712
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
89713
|
+
id: Scalars['ID']['output'];
|
|
89714
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
89715
|
+
node?: Maybe<GraphStoreV2SimplifiedFocusRiskHasWorkEntityUnion>;
|
|
89716
|
+
};
|
|
89717
|
+
export declare type GraphStoreV2SimplifiedFocusRiskHasWorkEntityInverseConnection = HasPageInfo & {
|
|
89718
|
+
__typename?: 'GraphStoreV2SimplifiedFocusRiskHasWorkEntityInverseConnection';
|
|
89719
|
+
edges?: Maybe<Array<Maybe<GraphStoreV2SimplifiedFocusRiskHasWorkEntityInverseEdge>>>;
|
|
89720
|
+
pageInfo: PageInfo;
|
|
89721
|
+
};
|
|
89722
|
+
export declare type GraphStoreV2SimplifiedFocusRiskHasWorkEntityInverseEdge = {
|
|
89723
|
+
__typename?: 'GraphStoreV2SimplifiedFocusRiskHasWorkEntityInverseEdge';
|
|
89724
|
+
createdAt: Scalars['DateTime']['output'];
|
|
89725
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
89726
|
+
id: Scalars['ID']['output'];
|
|
89727
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
89728
|
+
node?: Maybe<GraphStoreV2SimplifiedFocusRiskHasWorkEntityInverseUnion>;
|
|
89729
|
+
};
|
|
89730
|
+
export declare type GraphStoreV2SimplifiedFocusRiskHasWorkEntityInverseUnion = MercuryRisk;
|
|
89731
|
+
export declare type GraphStoreV2SimplifiedFocusRiskHasWorkEntityUnion = JiraAlignAggProject | JiraIssue | TownsquareProject;
|
|
89294
89732
|
export declare type GraphStoreV2SimplifiedFocusStrategicPlanContributesToFocusFocusAreaConnection = HasPageInfo & {
|
|
89295
89733
|
__typename?: 'GraphStoreV2SimplifiedFocusStrategicPlanContributesToFocusFocusAreaConnection';
|
|
89296
89734
|
edges?: Maybe<Array<Maybe<GraphStoreV2SimplifiedFocusStrategicPlanContributesToFocusFocusAreaEdge>>>;
|
|
@@ -92640,6 +93078,7 @@ export declare type GrowthUnifiedProfileJiraOnboardingContext = {
|
|
|
92640
93078
|
issueTypes?: Maybe<Array<Maybe<GrowthUnifiedProfileIssueType>>>;
|
|
92641
93079
|
jiraFamiliarity?: Maybe<GrowthUnifiedProfileJiraFamiliarity>;
|
|
92642
93080
|
jobsToBeDone?: Maybe<Array<Maybe<GrowthUnifiedProfileJtbd>>>;
|
|
93081
|
+
matureExampleProjectIds?: Maybe<Array<Maybe<Scalars['String']['output']>>>;
|
|
92643
93082
|
persona?: Maybe<Scalars['String']['output']>;
|
|
92644
93083
|
projectLandingSelection?: Maybe<GrowthUnifiedProfileOnboardingContextProjectLandingSelection>;
|
|
92645
93084
|
projectName?: Maybe<Scalars['String']['output']>;
|
|
@@ -92653,6 +93092,7 @@ export declare type GrowthUnifiedProfileJiraOnboardingContextInput = {
|
|
|
92653
93092
|
issueTypes?: InputMaybe<Array<InputMaybe<GrowthUnifiedProfileIssueTypeInput>>>;
|
|
92654
93093
|
jiraFamiliarity?: InputMaybe<GrowthUnifiedProfileJiraFamiliarity>;
|
|
92655
93094
|
jobsToBeDone?: InputMaybe<Array<InputMaybe<GrowthUnifiedProfileJtbd>>>;
|
|
93095
|
+
matureExampleProjectIds?: InputMaybe<Array<InputMaybe<Scalars['String']['input']>>>;
|
|
92656
93096
|
persona?: InputMaybe<Scalars['String']['input']>;
|
|
92657
93097
|
projectLandingSelection?: InputMaybe<GrowthUnifiedProfileOnboardingContextProjectLandingSelection>;
|
|
92658
93098
|
projectName?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -92781,6 +93221,12 @@ export declare type GrowthUnifiedProfilePaidFeatureUsageResult = {
|
|
|
92781
93221
|
featureName: Scalars['String']['output'];
|
|
92782
93222
|
featureSupportedEdition: Array<GrowthUnifiedProfileProductEdition>;
|
|
92783
93223
|
featureType: GrowthUnifiedProfileFeatureType;
|
|
93224
|
+
usageSummary: Array<GrowthUnifiedProfilePaidFeatureUsageSummary>;
|
|
93225
|
+
};
|
|
93226
|
+
export declare type GrowthUnifiedProfilePaidFeatureUsageSummary = {
|
|
93227
|
+
__typename?: 'GrowthUnifiedProfilePaidFeatureUsageSummary';
|
|
93228
|
+
featureEngagementLevel: GrowthUnifiedProfileFeatureEngagementLevel;
|
|
93229
|
+
usageCount: Scalars['Int']['output'];
|
|
92784
93230
|
};
|
|
92785
93231
|
export declare enum GrowthUnifiedProfileProduct {
|
|
92786
93232
|
Compass = "compass",
|
|
@@ -98523,6 +98969,26 @@ export declare type JiraBoardViewSettings = {
|
|
|
98523
98969
|
swimlanesSupported?: InputMaybe<Scalars['Boolean']['input']>;
|
|
98524
98970
|
textSearch?: InputMaybe<Scalars['String']['input']>;
|
|
98525
98971
|
};
|
|
98972
|
+
export declare type JiraBoardViewSettingsCardOption = {
|
|
98973
|
+
__typename?: 'JiraBoardViewSettingsCardOption';
|
|
98974
|
+
enabled: Scalars['Boolean']['output'];
|
|
98975
|
+
id: Scalars['ID']['output'];
|
|
98976
|
+
};
|
|
98977
|
+
export declare type JiraBoardViewSettingsCardOptionEdge = {
|
|
98978
|
+
__typename?: 'JiraBoardViewSettingsCardOptionEdge';
|
|
98979
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
98980
|
+
node?: Maybe<JiraBoardViewSettingsCardOption>;
|
|
98981
|
+
};
|
|
98982
|
+
export declare enum JiraBoardViewSettingsGroupBy {
|
|
98983
|
+
Assignee = "ASSIGNEE",
|
|
98984
|
+
Epic = "EPIC",
|
|
98985
|
+
None = "NONE",
|
|
98986
|
+
Projects = "PROJECTS",
|
|
98987
|
+
Queries = "QUERIES",
|
|
98988
|
+
Spaces = "SPACES",
|
|
98989
|
+
Stories = "STORIES",
|
|
98990
|
+
Unset = "UNSET"
|
|
98991
|
+
}
|
|
98526
98992
|
export declare type JiraBoardViewStatus = {
|
|
98527
98993
|
__typename?: 'JiraBoardViewStatus';
|
|
98528
98994
|
associatedIssueTypes?: Maybe<JiraIssueTypeConnection>;
|
|
@@ -104866,6 +105332,7 @@ export declare type JiraIssueFieldConfig = Node & {
|
|
|
104866
105332
|
searcherTemplate?: Maybe<JiraFieldSearcherTemplate>;
|
|
104867
105333
|
searcherTemplateOptions?: Maybe<JiraFieldSearcherTemplateConnection>;
|
|
104868
105334
|
translations?: Maybe<Array<JiraFieldTranslation>>;
|
|
105335
|
+
translationsLanguagesAvailableToAdd?: Maybe<Array<Scalars['String']['output']>>;
|
|
104869
105336
|
trashedByUser?: Maybe<User>;
|
|
104870
105337
|
trashedTimestamp?: Maybe<Scalars['Long']['output']>;
|
|
104871
105338
|
type: JiraConfigFieldType;
|
|
@@ -107309,6 +107776,30 @@ export declare enum JiraJqlViewContext {
|
|
|
107309
107776
|
Jwm = "JWM",
|
|
107310
107777
|
ShadowRequest = "SHADOW_REQUEST"
|
|
107311
107778
|
}
|
|
107779
|
+
export declare type JiraJswBoardViewSettings = {
|
|
107780
|
+
__typename?: 'JiraJswBoardViewSettings';
|
|
107781
|
+
cardOptions?: Maybe<JiraJswBoardViewSettingsCardOptionConnection>;
|
|
107782
|
+
groupBy?: Maybe<JiraBoardViewSettingsGroupBy>;
|
|
107783
|
+
quickFilterToggle?: Maybe<Scalars['Boolean']['output']>;
|
|
107784
|
+
workSuggestionToggle?: Maybe<Scalars['Boolean']['output']>;
|
|
107785
|
+
};
|
|
107786
|
+
export declare type JiraJswBoardViewSettingsCardOptionsArgs = {
|
|
107787
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
107788
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
107789
|
+
};
|
|
107790
|
+
export declare type JiraJswBoardViewSettingsCardOptionConnection = {
|
|
107791
|
+
__typename?: 'JiraJswBoardViewSettingsCardOptionConnection';
|
|
107792
|
+
edges?: Maybe<Array<Maybe<JiraBoardViewSettingsCardOptionEdge>>>;
|
|
107793
|
+
errors?: Maybe<Array<QueryError>>;
|
|
107794
|
+
pageInfo?: Maybe<PageInfo>;
|
|
107795
|
+
};
|
|
107796
|
+
export declare type JiraJswBoardViewSettingsCardOptionInput = {
|
|
107797
|
+
enabled: Scalars['Boolean']['input'];
|
|
107798
|
+
id: Scalars['ID']['input'];
|
|
107799
|
+
};
|
|
107800
|
+
export declare type JiraJswBoardViewSettingsQueryInput = {
|
|
107801
|
+
viewId: Scalars['ID']['input'];
|
|
107802
|
+
};
|
|
107312
107803
|
export declare type JiraJwmField = {
|
|
107313
107804
|
__typename?: 'JiraJwmField';
|
|
107314
107805
|
encryptedData?: Maybe<Scalars['String']['output']>;
|
|
@@ -109124,7 +109615,6 @@ export declare enum JiraNavigationItemTypeKey {
|
|
|
109124
109615
|
Requests = "REQUESTS",
|
|
109125
109616
|
Security = "SECURITY",
|
|
109126
109617
|
Shortcuts = "SHORTCUTS",
|
|
109127
|
-
Staffing = "STAFFING",
|
|
109128
109618
|
Summary = "SUMMARY",
|
|
109129
109619
|
Teams = "TEAMS",
|
|
109130
109620
|
Timeline = "TIMELINE"
|
|
@@ -115679,6 +116169,24 @@ export declare type JiraSetIssueSearchViewLayoutPayload = Payload & {
|
|
|
115679
116169
|
errors?: Maybe<Array<MutationError>>;
|
|
115680
116170
|
success: Scalars['Boolean']['output'];
|
|
115681
116171
|
};
|
|
116172
|
+
export declare type JiraSetJswBoardViewSettingCardOptionsInput = {
|
|
116173
|
+
cardOptions: Array<JiraJswBoardViewSettingsCardOptionInput>;
|
|
116174
|
+
viewId: Scalars['ID']['input'];
|
|
116175
|
+
};
|
|
116176
|
+
export declare type JiraSetJswBoardViewSettingGroupByInput = {
|
|
116177
|
+
groupBy: JiraBoardViewSettingsGroupBy;
|
|
116178
|
+
viewId: Scalars['ID']['input'];
|
|
116179
|
+
};
|
|
116180
|
+
export declare type JiraSetJswBoardViewSettingsPayload = Payload & {
|
|
116181
|
+
__typename?: 'JiraSetJswBoardViewSettingsPayload';
|
|
116182
|
+
errors?: Maybe<Array<MutationError>>;
|
|
116183
|
+
jswBoardViewSettings?: Maybe<JiraJswBoardViewSettings>;
|
|
116184
|
+
success: Scalars['Boolean']['output'];
|
|
116185
|
+
};
|
|
116186
|
+
export declare type JiraSetJswBoardViewSettingsToggleInput = {
|
|
116187
|
+
enabled: Scalars['Boolean']['input'];
|
|
116188
|
+
viewId: Scalars['ID']['input'];
|
|
116189
|
+
};
|
|
115682
116190
|
export declare type JiraSetLogoInput = {
|
|
115683
116191
|
cloudId: Scalars['ID']['input'];
|
|
115684
116192
|
logoImageInput: JiraLookAndFeelImageInput;
|
|
@@ -117275,6 +117783,16 @@ export declare type JiraTownsquareProject = {
|
|
|
117275
117783
|
state?: Maybe<Scalars['String']['output']>;
|
|
117276
117784
|
workspaceAri?: Maybe<Scalars['String']['output']>;
|
|
117277
117785
|
};
|
|
117786
|
+
export declare type JiraTownsquareProjectEntry = {
|
|
117787
|
+
__typename?: 'JiraTownsquareProjectEntry';
|
|
117788
|
+
hasPermission?: Maybe<Scalars['Boolean']['output']>;
|
|
117789
|
+
iconName?: Maybe<Scalars['String']['output']>;
|
|
117790
|
+
id?: Maybe<Scalars['String']['output']>;
|
|
117791
|
+
key?: Maybe<Scalars['String']['output']>;
|
|
117792
|
+
name?: Maybe<Scalars['String']['output']>;
|
|
117793
|
+
privateProject?: Maybe<Scalars['Boolean']['output']>;
|
|
117794
|
+
state?: Maybe<Scalars['String']['output']>;
|
|
117795
|
+
};
|
|
117278
117796
|
export declare type JiraTownsquareProjectField = JiraIssueField & JiraIssueFieldConfiguration & JiraUserIssueFieldConfiguration & Node & {
|
|
117279
117797
|
__typename?: 'JiraTownsquareProjectField';
|
|
117280
117798
|
aliasFieldId?: Maybe<Scalars['ID']['output']>;
|
|
@@ -119575,7 +120093,10 @@ export declare type JiraWorklogSortInput = {
|
|
|
119575
120093
|
};
|
|
119576
120094
|
export declare type JpdImportIdeasInput = {
|
|
119577
120095
|
csvContent?: InputMaybe<Scalars['String']['input']>;
|
|
120096
|
+
imageContent?: InputMaybe<Scalars['String']['input']>;
|
|
120097
|
+
imageMimeType?: InputMaybe<Scalars['String']['input']>;
|
|
119578
120098
|
jpdProjectId?: InputMaybe<Scalars['String']['input']>;
|
|
120099
|
+
pdfContent?: InputMaybe<Scalars['String']['input']>;
|
|
119579
120100
|
sourceLabel?: InputMaybe<Scalars['String']['input']>;
|
|
119580
120101
|
sourceType: JpdImportSourceType;
|
|
119581
120102
|
textContent?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -119593,6 +120114,8 @@ export declare type JpdImportMetadata = {
|
|
|
119593
120114
|
};
|
|
119594
120115
|
export declare enum JpdImportSourceType {
|
|
119595
120116
|
Csv = "CSV",
|
|
120117
|
+
Image = "IMAGE",
|
|
120118
|
+
Pdf = "PDF",
|
|
119596
120119
|
Text = "TEXT"
|
|
119597
120120
|
}
|
|
119598
120121
|
export declare type JpdInsightDeletedEvent = {
|
|
@@ -121330,12 +121853,29 @@ export declare type KitsuneSection = Node & {
|
|
|
121330
121853
|
id: Scalars['ID']['output'];
|
|
121331
121854
|
name: Scalars['String']['output'];
|
|
121332
121855
|
updatedAt: Scalars['DateTime']['output'];
|
|
121856
|
+
views: KitsuneViewConnection;
|
|
121857
|
+
};
|
|
121858
|
+
export declare type KitsuneSectionViewsArgs = {
|
|
121859
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
121860
|
+
before?: InputMaybe<Scalars['String']['input']>;
|
|
121861
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
121862
|
+
last?: InputMaybe<Scalars['Int']['input']>;
|
|
121333
121863
|
};
|
|
121334
121864
|
export declare type KitsuneSourceCategory = {
|
|
121335
121865
|
__typename?: 'KitsuneSourceCategory';
|
|
121336
121866
|
_id: Scalars['ID']['output'];
|
|
121337
121867
|
type: KitsuneSourceCategoryType;
|
|
121338
121868
|
};
|
|
121869
|
+
export declare type KitsuneSourceCategoryConnection = KitsuneConnection & {
|
|
121870
|
+
__typename?: 'KitsuneSourceCategoryConnection';
|
|
121871
|
+
edges: Array<KitsuneSourceCategoryEdge>;
|
|
121872
|
+
pageInfo: PageInfo;
|
|
121873
|
+
};
|
|
121874
|
+
export declare type KitsuneSourceCategoryEdge = KitsuneEdge & {
|
|
121875
|
+
__typename?: 'KitsuneSourceCategoryEdge';
|
|
121876
|
+
cursor: Scalars['String']['output'];
|
|
121877
|
+
node?: Maybe<KitsuneSourceCategory>;
|
|
121878
|
+
};
|
|
121339
121879
|
export declare enum KitsuneSourceCategoryType {
|
|
121340
121880
|
FeedbackApp = "FEEDBACK_APP",
|
|
121341
121881
|
Loom = "LOOM"
|
|
@@ -121352,6 +121892,8 @@ export declare type KitsuneSpace = Node & {
|
|
|
121352
121892
|
fields: KitsuneFieldConnection;
|
|
121353
121893
|
id: Scalars['ID']['output'];
|
|
121354
121894
|
name?: Maybe<Scalars['String']['output']>;
|
|
121895
|
+
sourceCategories: KitsuneSourceCategoryConnection;
|
|
121896
|
+
viewTree: KitsuneViewTreeConnection;
|
|
121355
121897
|
};
|
|
121356
121898
|
export declare type KitsuneSpaceFeedbacksArgs = {
|
|
121357
121899
|
pagination?: InputMaybe<KitsunePaginationInput>;
|
|
@@ -121359,6 +121901,15 @@ export declare type KitsuneSpaceFeedbacksArgs = {
|
|
|
121359
121901
|
export declare type KitsuneSpaceFieldsArgs = {
|
|
121360
121902
|
pagination?: InputMaybe<KitsunePaginationInput>;
|
|
121361
121903
|
};
|
|
121904
|
+
export declare type KitsuneSpaceSourceCategoriesArgs = {
|
|
121905
|
+
pagination?: InputMaybe<KitsunePaginationInput>;
|
|
121906
|
+
};
|
|
121907
|
+
export declare type KitsuneSpaceViewTreeArgs = {
|
|
121908
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
121909
|
+
before?: InputMaybe<Scalars['String']['input']>;
|
|
121910
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
121911
|
+
last?: InputMaybe<Scalars['Int']['input']>;
|
|
121912
|
+
};
|
|
121362
121913
|
export declare type KitsuneSpaceConnection = KitsuneConnection & {
|
|
121363
121914
|
__typename?: 'KitsuneSpaceConnection';
|
|
121364
121915
|
edges: Array<KitsuneSpaceEdge>;
|
|
@@ -121379,7 +121930,8 @@ export declare type KitsuneView = Node & {
|
|
|
121379
121930
|
config?: Maybe<KitsuneViewConfig>;
|
|
121380
121931
|
description?: Maybe<Scalars['String']['output']>;
|
|
121381
121932
|
id: Scalars['ID']['output'];
|
|
121382
|
-
name
|
|
121933
|
+
name: Scalars['String']['output'];
|
|
121934
|
+
type: KitsuneViewType;
|
|
121383
121935
|
};
|
|
121384
121936
|
export declare type KitsuneViewConfig = {
|
|
121385
121937
|
__typename?: 'KitsuneViewConfig';
|
|
@@ -121397,6 +121949,27 @@ export declare enum KitsuneViewConfigStatus {
|
|
|
121397
121949
|
Published = "PUBLISHED",
|
|
121398
121950
|
Saved = "SAVED"
|
|
121399
121951
|
}
|
|
121952
|
+
export declare type KitsuneViewConnection = KitsuneConnection & {
|
|
121953
|
+
__typename?: 'KitsuneViewConnection';
|
|
121954
|
+
edges: Array<KitsuneViewEdge>;
|
|
121955
|
+
pageInfo: PageInfo;
|
|
121956
|
+
};
|
|
121957
|
+
export declare type KitsuneViewEdge = KitsuneEdge & {
|
|
121958
|
+
__typename?: 'KitsuneViewEdge';
|
|
121959
|
+
cursor: Scalars['String']['output'];
|
|
121960
|
+
node?: Maybe<KitsuneView>;
|
|
121961
|
+
};
|
|
121962
|
+
export declare type KitsuneViewTree = KitsuneSection | KitsuneView;
|
|
121963
|
+
export declare type KitsuneViewTreeConnection = KitsuneConnection & {
|
|
121964
|
+
__typename?: 'KitsuneViewTreeConnection';
|
|
121965
|
+
edges: Array<KitsuneViewTreeEdge>;
|
|
121966
|
+
pageInfo: PageInfo;
|
|
121967
|
+
};
|
|
121968
|
+
export declare type KitsuneViewTreeEdge = KitsuneEdge & {
|
|
121969
|
+
__typename?: 'KitsuneViewTreeEdge';
|
|
121970
|
+
cursor: Scalars['String']['output'];
|
|
121971
|
+
node?: Maybe<KitsuneViewTree>;
|
|
121972
|
+
};
|
|
121400
121973
|
export declare enum KitsuneViewType {
|
|
121401
121974
|
Dashboard = "DASHBOARD",
|
|
121402
121975
|
List = "LIST",
|
|
@@ -121460,6 +122033,7 @@ export declare type KnowledgeBaseArticleMetadata = {
|
|
|
121460
122033
|
__typename?: 'KnowledgeBaseArticleMetadata';
|
|
121461
122034
|
categoryDetails?: Maybe<Array<KnowledgeBaseCategoryDetail>>;
|
|
121462
122035
|
lastModified?: Maybe<Scalars['String']['output']>;
|
|
122036
|
+
viewCount?: Maybe<Scalars['Int']['output']>;
|
|
121463
122037
|
};
|
|
121464
122038
|
export declare type KnowledgeBaseArticleSearchInput = {
|
|
121465
122039
|
articleContainers?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
@@ -128323,8 +128897,14 @@ export declare type MercuryFocusAreaStatusUpdateEdge = {
|
|
|
128323
128897
|
export declare type MercuryFocusAreaSummary = {
|
|
128324
128898
|
__typename?: 'MercuryFocusAreaSummary';
|
|
128325
128899
|
id: Scalars['ID']['output'];
|
|
128900
|
+
input?: Maybe<Scalars['String']['output']>;
|
|
128326
128901
|
summary?: Maybe<Scalars['String']['output']>;
|
|
128327
128902
|
};
|
|
128903
|
+
export declare enum MercuryFocusAreaSummaryType {
|
|
128904
|
+
FocusArea = "FOCUS_AREA",
|
|
128905
|
+
Goals = "GOALS",
|
|
128906
|
+
Work = "WORK"
|
|
128907
|
+
}
|
|
128328
128908
|
export declare type MercuryFocusAreaTargetDateInput = {
|
|
128329
128909
|
targetDate?: InputMaybe<Scalars['String']['input']>;
|
|
128330
128910
|
targetDateType?: InputMaybe<MercuryTargetDateType>;
|
|
@@ -128432,6 +129012,7 @@ export declare type MercuryFundsMutationApi = {
|
|
|
128432
129012
|
createInvestmentCategory?: Maybe<MercuryCreateInvestmentCategoryPayload>;
|
|
128433
129013
|
deleteCostSubtype?: Maybe<MercuryDeleteCostSubtypePayload>;
|
|
128434
129014
|
deleteInvestmentCategory?: Maybe<MercuryDeleteInvestmentCategoryPayload>;
|
|
129015
|
+
updateActiveCurrency?: Maybe<MercuryUpdateActiveCurrencyPayload>;
|
|
128435
129016
|
updateCostSubtypeName?: Maybe<MercuryUpdateCostSubtypePayload>;
|
|
128436
129017
|
updateInvestmentCategoryName?: Maybe<MercuryUpdateInvestmentCategoryPayload>;
|
|
128437
129018
|
};
|
|
@@ -128450,6 +129031,9 @@ export declare type MercuryFundsMutationApiDeleteCostSubtypeArgs = {
|
|
|
128450
129031
|
export declare type MercuryFundsMutationApiDeleteInvestmentCategoryArgs = {
|
|
128451
129032
|
input: MercuryDeleteInvestmentCategoryInput;
|
|
128452
129033
|
};
|
|
129034
|
+
export declare type MercuryFundsMutationApiUpdateActiveCurrencyArgs = {
|
|
129035
|
+
input: MercuryUpdateActiveCurrencyInput;
|
|
129036
|
+
};
|
|
128453
129037
|
export declare type MercuryFundsMutationApiUpdateCostSubtypeNameArgs = {
|
|
128454
129038
|
input: MercuryUpdateCostSubtypeNameInput;
|
|
128455
129039
|
};
|
|
@@ -128458,6 +129042,7 @@ export declare type MercuryFundsMutationApiUpdateInvestmentCategoryNameArgs = {
|
|
|
128458
129042
|
};
|
|
128459
129043
|
export declare type MercuryFundsQueryApi = {
|
|
128460
129044
|
__typename?: 'MercuryFundsQueryApi';
|
|
129045
|
+
activeCurrency: MercuryCurrency;
|
|
128461
129046
|
activeFiscalCalendarConfiguration?: Maybe<MercuryFiscalCalendarConfiguration>;
|
|
128462
129047
|
costSubtypes?: Maybe<Array<Maybe<MercuryCostSubtype>>>;
|
|
128463
129048
|
costSubtypesSearch?: Maybe<MercuryCostSubtypeConnection>;
|
|
@@ -128467,6 +129052,10 @@ export declare type MercuryFundsQueryApi = {
|
|
|
128467
129052
|
fiscalCalendarConfigurationsSearch?: Maybe<MercuryFiscalCalendarConfigurationConnection>;
|
|
128468
129053
|
focusAreaMonthlySummaries?: Maybe<Array<Maybe<MercuryFocusAreaFundsMonthlySummary>>>;
|
|
128469
129054
|
investmentCategories?: Maybe<Array<Maybe<MercuryInvestmentCategory>>>;
|
|
129055
|
+
investmentCategoriesSearch?: Maybe<MercuryInvestmentCategoryConnection>;
|
|
129056
|
+
};
|
|
129057
|
+
export declare type MercuryFundsQueryApiActiveCurrencyArgs = {
|
|
129058
|
+
cloudId?: InputMaybe<Scalars['ID']['input']>;
|
|
128470
129059
|
};
|
|
128471
129060
|
export declare type MercuryFundsQueryApiActiveFiscalCalendarConfigurationArgs = {
|
|
128472
129061
|
cloudId?: InputMaybe<Scalars['ID']['input']>;
|
|
@@ -128505,6 +129094,13 @@ export declare type MercuryFundsQueryApiFocusAreaMonthlySummariesArgs = {
|
|
|
128505
129094
|
export declare type MercuryFundsQueryApiInvestmentCategoriesArgs = {
|
|
128506
129095
|
ids: Array<Scalars['ID']['input']>;
|
|
128507
129096
|
};
|
|
129097
|
+
export declare type MercuryFundsQueryApiInvestmentCategoriesSearchArgs = {
|
|
129098
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
129099
|
+
cloudId?: InputMaybe<Scalars['ID']['input']>;
|
|
129100
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
129101
|
+
q?: InputMaybe<Scalars['String']['input']>;
|
|
129102
|
+
sort?: InputMaybe<Array<InputMaybe<MercuryInvestmentCategorySort>>>;
|
|
129103
|
+
};
|
|
128508
129104
|
export declare enum MercuryFundsType {
|
|
128509
129105
|
Actual = "ACTUAL",
|
|
128510
129106
|
Budget = "BUDGET",
|
|
@@ -128619,10 +129215,28 @@ export declare type MercuryInvestmentCategory = Node & {
|
|
|
128619
129215
|
updatedBy?: Maybe<User>;
|
|
128620
129216
|
updatedDate?: Maybe<Scalars['DateTime']['output']>;
|
|
128621
129217
|
};
|
|
129218
|
+
export declare type MercuryInvestmentCategoryConnection = {
|
|
129219
|
+
__typename?: 'MercuryInvestmentCategoryConnection';
|
|
129220
|
+
edges?: Maybe<Array<MercuryInvestmentCategoryEdge>>;
|
|
129221
|
+
pageInfo: PageInfo;
|
|
129222
|
+
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
129223
|
+
};
|
|
129224
|
+
export declare type MercuryInvestmentCategoryEdge = {
|
|
129225
|
+
__typename?: 'MercuryInvestmentCategoryEdge';
|
|
129226
|
+
cursor: Scalars['String']['output'];
|
|
129227
|
+
node?: Maybe<MercuryInvestmentCategory>;
|
|
129228
|
+
};
|
|
128622
129229
|
export declare type MercuryInvestmentCategoryReferences = {
|
|
128623
129230
|
__typename?: 'MercuryInvestmentCategoryReferences';
|
|
128624
129231
|
count?: Maybe<Scalars['Int']['output']>;
|
|
128625
129232
|
};
|
|
129233
|
+
export declare type MercuryInvestmentCategorySort = {
|
|
129234
|
+
field: MercuryInvestmentCategorySortField;
|
|
129235
|
+
order: SortOrder;
|
|
129236
|
+
};
|
|
129237
|
+
export declare enum MercuryInvestmentCategorySortField {
|
|
129238
|
+
Name = "NAME"
|
|
129239
|
+
}
|
|
128626
129240
|
export declare type MercuryInviteInput = {
|
|
128627
129241
|
cloudId: Scalars['ID']['input'];
|
|
128628
129242
|
userId: Scalars['ID']['input'];
|
|
@@ -129601,8 +130215,12 @@ export declare type MercuryQueryApiAiFocusAreaGoalContextDataArgs = {
|
|
|
129601
130215
|
maxDepth?: InputMaybe<Scalars['Int']['input']>;
|
|
129602
130216
|
};
|
|
129603
130217
|
export declare type MercuryQueryApiAiFocusAreaSummaryArgs = {
|
|
129604
|
-
cloudId
|
|
130218
|
+
cloudId?: InputMaybe<Scalars['ID']['input']>;
|
|
130219
|
+
dryRun?: InputMaybe<Scalars['Boolean']['input']>;
|
|
129605
130220
|
id: Scalars['ID']['input'];
|
|
130221
|
+
includeGoalsFromSubFocusAreas?: InputMaybe<Scalars['Boolean']['input']>;
|
|
130222
|
+
prompt?: InputMaybe<Scalars['String']['input']>;
|
|
130223
|
+
summaryType?: InputMaybe<MercuryFocusAreaSummaryType>;
|
|
129606
130224
|
};
|
|
129607
130225
|
export declare type MercuryQueryApiAiFocusAreaWorkContextDataArgs = {
|
|
129608
130226
|
cloudId: Scalars['ID']['input'];
|
|
@@ -130525,6 +131143,16 @@ export declare type MercuryUnrankChangeProposalInViewPayload = Payload & {
|
|
|
130525
131143
|
success: Scalars['Boolean']['output'];
|
|
130526
131144
|
updatedChangeProposalsView?: Maybe<MercuryChangeProposalsView>;
|
|
130527
131145
|
};
|
|
131146
|
+
export declare type MercuryUpdateActiveCurrencyInput = {
|
|
131147
|
+
cloudId?: InputMaybe<Scalars['ID']['input']>;
|
|
131148
|
+
currencyCode: Scalars['String']['input'];
|
|
131149
|
+
};
|
|
131150
|
+
export declare type MercuryUpdateActiveCurrencyPayload = Payload & {
|
|
131151
|
+
__typename?: 'MercuryUpdateActiveCurrencyPayload';
|
|
131152
|
+
errors?: Maybe<Array<MutationError>>;
|
|
131153
|
+
success: Scalars['Boolean']['output'];
|
|
131154
|
+
updatedActiveCurrency?: Maybe<MercuryCurrency>;
|
|
131155
|
+
};
|
|
130528
131156
|
export declare type MercuryUpdateChangeFocusAreaInput = {
|
|
130529
131157
|
focusAreaId?: InputMaybe<Scalars['ID']['input']>;
|
|
130530
131158
|
};
|
|
@@ -131203,12 +131831,21 @@ export declare type Mutation = {
|
|
|
131203
131831
|
agentStudio_updateScenario?: Maybe<AgentStudioUpdateScenarioPayload>;
|
|
131204
131832
|
agentStudio_updateScenarioMappingsForContainer?: Maybe<AgentStudioUpdateScenarioMappingsPayload>;
|
|
131205
131833
|
agentStudio_uploadDatasetCsv?: Maybe<AgentStudioBatchEvalUploadDatasetPayload>;
|
|
131834
|
+
agentWorkspace_createCatalog?: Maybe<AgentWorkspaceCatalog>;
|
|
131835
|
+
agentWorkspace_createCatalogType?: Maybe<AgentWorkspaceCatalogType>;
|
|
131206
131836
|
agentWorkspace_createSchedule?: Maybe<AgentWorkspaceCreateSchedulePayload>;
|
|
131837
|
+
agentWorkspace_createSkill?: Maybe<AgentWorkspaceSkill>;
|
|
131838
|
+
agentWorkspace_deleteCatalog?: Maybe<Scalars['Boolean']['output']>;
|
|
131839
|
+
agentWorkspace_deleteCatalogType?: Maybe<Scalars['Boolean']['output']>;
|
|
131207
131840
|
agentWorkspace_deleteSchedule?: Maybe<AgentWorkspaceDeleteSchedulePayload>;
|
|
131841
|
+
agentWorkspace_deleteSkill?: Maybe<Scalars['Boolean']['output']>;
|
|
131208
131842
|
agentWorkspace_endBreak?: Maybe<AgentWorkspaceAgentAvailability>;
|
|
131209
131843
|
agentWorkspace_setDefaultCapacity?: Maybe<AgentWorkspaceSetDefaultCapacityPayload>;
|
|
131210
131844
|
agentWorkspace_startBreak?: Maybe<AgentWorkspaceAgentAvailability>;
|
|
131845
|
+
agentWorkspace_updateCatalog?: Maybe<AgentWorkspaceCatalog>;
|
|
131846
|
+
agentWorkspace_updateCatalogType?: Maybe<AgentWorkspaceCatalogType>;
|
|
131211
131847
|
agentWorkspace_updateSchedule?: Maybe<AgentWorkspaceUpdateSchedulePayload>;
|
|
131848
|
+
agentWorkspace_updateSkill?: Maybe<AgentWorkspaceSkill>;
|
|
131212
131849
|
appRecommendations?: Maybe<AppRecMutation>;
|
|
131213
131850
|
appStorage?: Maybe<AppStorageMutation>;
|
|
131214
131851
|
appStorageCustomEntity?: Maybe<AppStorageCustomEntityMutation>;
|
|
@@ -131303,6 +131940,7 @@ export declare type Mutation = {
|
|
|
131303
131940
|
avp_updateDashboardStatus?: Maybe<AvpUpdateDashboardStatusPayload>;
|
|
131304
131941
|
avp_updateFilterExpression?: Maybe<AvpUpdateFilterExpressionPayload>;
|
|
131305
131942
|
avp_updateVariable?: Maybe<AvpUpdateVariablePayload>;
|
|
131943
|
+
avpanalytics_createModel?: Maybe<AvpAnalyticsCreateModelResponse>;
|
|
131306
131944
|
blockService_createBlock?: Maybe<BlockServiceBlockPayload>;
|
|
131307
131945
|
blockService_deleteBlock?: Maybe<BlockServiceDeleteBlockPayload>;
|
|
131308
131946
|
blockService_updateBlock?: Maybe<BlockServiceBlockPayload>;
|
|
@@ -131428,7 +132066,6 @@ export declare type Mutation = {
|
|
|
131428
132066
|
confluence_updateCustomRole?: Maybe<ConfluenceUpdateCustomRolePayload>;
|
|
131429
132067
|
confluence_updateDefaultTitleEmoji?: Maybe<ConfluenceUpdateDefaultTitleEmojiPayload>;
|
|
131430
132068
|
confluence_updateInstance?: Maybe<ConfluenceUpdateInstancePayload>;
|
|
131431
|
-
confluence_updateNav4OptIn?: Maybe<ConfluenceUpdateNav4OptInPayload>;
|
|
131432
132069
|
confluence_updateNcsPdfExportConfiguration?: Maybe<ConfluenceUpdateNcsPdfExportConfigurationPayload>;
|
|
131433
132070
|
confluence_updatePage?: Maybe<ConfluenceUpdatePagePayload>;
|
|
131434
132071
|
confluence_updateQuestion?: Maybe<ConfluenceUpdateQuestionPayload>;
|
|
@@ -131441,6 +132078,7 @@ export declare type Mutation = {
|
|
|
131441
132078
|
confluence_updateTopic?: Maybe<ConfluenceUpdateTopicPayload>;
|
|
131442
132079
|
confluence_updateVote?: Maybe<ConfluenceUpdateVotePayload>;
|
|
131443
132080
|
confluence_updateWatermarkConfig?: Maybe<ConfluenceUpdateWatermarkConfigPayload>;
|
|
132081
|
+
confluence_updateWorkflowApplication?: Maybe<ConfluenceWorkflowApplicationPayload>;
|
|
131444
132082
|
confluence_watchLabel?: Maybe<ConfluenceLabelWatchStatus>;
|
|
131445
132083
|
confluence_watchSubCalendar?: Maybe<ConfluenceWatchSubCalendarPayload>;
|
|
131446
132084
|
connectionManager_createApiTokenConnectionForJiraProject?: Maybe<ConnectionManagerCreateApiTokenConnectionForJiraProjectPayload>;
|
|
@@ -131791,6 +132429,10 @@ export declare type Mutation = {
|
|
|
131791
132429
|
jira_setIssueSearchHierarchyEnabled?: Maybe<JiraSetIssueSearchHierarchyEnabledPayload>;
|
|
131792
132430
|
jira_setIssueSearchJql?: Maybe<JiraSetIssueSearchJqlPayload>;
|
|
131793
132431
|
jira_setIssueSearchViewLayout?: Maybe<JiraSetIssueSearchViewLayoutPayload>;
|
|
132432
|
+
jira_setJswBoardCardOptions?: Maybe<JiraSetJswBoardViewSettingsPayload>;
|
|
132433
|
+
jira_setJswBoardGroupBy?: Maybe<JiraSetJswBoardViewSettingsPayload>;
|
|
132434
|
+
jira_setJswBoardQuickFilterToggle?: Maybe<JiraSetJswBoardViewSettingsPayload>;
|
|
132435
|
+
jira_setJswBoardWorkSuggestionToggle?: Maybe<JiraSetJswBoardViewSettingsPayload>;
|
|
131794
132436
|
jira_setLogo?: Maybe<JiraSetLogoPayload>;
|
|
131795
132437
|
jira_setShowUnscheduledIssuesCalendarPanel?: Maybe<JiraShowUnscheduledIssuesCalendarMutationPayload>;
|
|
131796
132438
|
jira_setTimelineHighlightedReleases?: Maybe<JiraSetTimelineHighlightedReleasesPayload>;
|
|
@@ -131832,6 +132474,7 @@ export declare type Mutation = {
|
|
|
131832
132474
|
kitsune_generateFeedbackSummary?: Maybe<Scalars['Boolean']['output']>;
|
|
131833
132475
|
kitsune_removeFeedback?: Maybe<Scalars['ID']['output']>;
|
|
131834
132476
|
kitsune_removeSection?: Maybe<KitsuneSection>;
|
|
132477
|
+
kitsune_removeView?: Maybe<GenericMutationResponse>;
|
|
131835
132478
|
kitsune_suggestSnippets?: Maybe<Scalars['Boolean']['output']>;
|
|
131836
132479
|
kitsune_updateFeedback?: Maybe<KitsuneFeedback>;
|
|
131837
132480
|
kitsune_updateSection?: Maybe<KitsuneSection>;
|
|
@@ -132412,12 +133055,33 @@ export declare type MutationAgentStudio_UploadDatasetCsvArgs = {
|
|
|
132412
133055
|
productType: AgentStudioProductType;
|
|
132413
133056
|
projectContainerAri: Scalars['ID']['input'];
|
|
132414
133057
|
};
|
|
133058
|
+
export declare type MutationAgentWorkspace_CreateCatalogArgs = {
|
|
133059
|
+
input: AgentWorkspaceCreateCatalogInput;
|
|
133060
|
+
};
|
|
133061
|
+
export declare type MutationAgentWorkspace_CreateCatalogTypeArgs = {
|
|
133062
|
+
input: AgentWorkspaceCreateCatalogTypeInput;
|
|
133063
|
+
};
|
|
132415
133064
|
export declare type MutationAgentWorkspace_CreateScheduleArgs = {
|
|
132416
133065
|
input: AgentWorkspaceCreateScheduleInput;
|
|
132417
133066
|
};
|
|
133067
|
+
export declare type MutationAgentWorkspace_CreateSkillArgs = {
|
|
133068
|
+
input: AgentWorkspaceCreateSkillInput;
|
|
133069
|
+
};
|
|
133070
|
+
export declare type MutationAgentWorkspace_DeleteCatalogArgs = {
|
|
133071
|
+
cloudId: Scalars['ID']['input'];
|
|
133072
|
+
id: Scalars['ID']['input'];
|
|
133073
|
+
};
|
|
133074
|
+
export declare type MutationAgentWorkspace_DeleteCatalogTypeArgs = {
|
|
133075
|
+
cloudId: Scalars['ID']['input'];
|
|
133076
|
+
id: Scalars['ID']['input'];
|
|
133077
|
+
};
|
|
132418
133078
|
export declare type MutationAgentWorkspace_DeleteScheduleArgs = {
|
|
132419
133079
|
input: AgentWorkspaceDeleteScheduleInput;
|
|
132420
133080
|
};
|
|
133081
|
+
export declare type MutationAgentWorkspace_DeleteSkillArgs = {
|
|
133082
|
+
cloudId: Scalars['ID']['input'];
|
|
133083
|
+
id: Scalars['ID']['input'];
|
|
133084
|
+
};
|
|
132421
133085
|
export declare type MutationAgentWorkspace_EndBreakArgs = {
|
|
132422
133086
|
agentId: Scalars['ID']['input'];
|
|
132423
133087
|
cloudId: Scalars['ID']['input'];
|
|
@@ -132429,9 +133093,18 @@ export declare type MutationAgentWorkspace_StartBreakArgs = {
|
|
|
132429
133093
|
agentId: Scalars['ID']['input'];
|
|
132430
133094
|
cloudId: Scalars['ID']['input'];
|
|
132431
133095
|
};
|
|
133096
|
+
export declare type MutationAgentWorkspace_UpdateCatalogArgs = {
|
|
133097
|
+
input: AgentWorkspaceUpdateCatalogInput;
|
|
133098
|
+
};
|
|
133099
|
+
export declare type MutationAgentWorkspace_UpdateCatalogTypeArgs = {
|
|
133100
|
+
input: AgentWorkspaceUpdateCatalogTypeInput;
|
|
133101
|
+
};
|
|
132432
133102
|
export declare type MutationAgentWorkspace_UpdateScheduleArgs = {
|
|
132433
133103
|
input: AgentWorkspaceUpdateScheduleInput;
|
|
132434
133104
|
};
|
|
133105
|
+
export declare type MutationAgentWorkspace_UpdateSkillArgs = {
|
|
133106
|
+
input: AgentWorkspaceUpdateSkillInput;
|
|
133107
|
+
};
|
|
132435
133108
|
export declare type MutationAppStorage_AdminArgs = {
|
|
132436
133109
|
appId: Scalars['ID']['input'];
|
|
132437
133110
|
};
|
|
@@ -132816,6 +133489,9 @@ export declare type MutationAvp_UpdateFilterExpressionArgs = {
|
|
|
132816
133489
|
export declare type MutationAvp_UpdateVariableArgs = {
|
|
132817
133490
|
input: AvpUpdateVariableInput;
|
|
132818
133491
|
};
|
|
133492
|
+
export declare type MutationAvpanalytics_CreateModelArgs = {
|
|
133493
|
+
input?: InputMaybe<AvpAnalyticsCreateModelRequest>;
|
|
133494
|
+
};
|
|
132819
133495
|
export declare type MutationBlockService_CreateBlockArgs = {
|
|
132820
133496
|
input: BlockServiceCreateBlockInput;
|
|
132821
133497
|
};
|
|
@@ -133267,10 +133943,6 @@ export declare type MutationConfluence_UpdateInstanceArgs = {
|
|
|
133267
133943
|
input: ConfluenceUpdateInstanceInput;
|
|
133268
133944
|
pageAri: Scalars['ID']['input'];
|
|
133269
133945
|
};
|
|
133270
|
-
export declare type MutationConfluence_UpdateNav4OptInArgs = {
|
|
133271
|
-
cloudId: Scalars['ID']['input'];
|
|
133272
|
-
input: ConfluenceUpdateNav4OptInInput;
|
|
133273
|
-
};
|
|
133274
133946
|
export declare type MutationConfluence_UpdateNcsPdfExportConfigurationArgs = {
|
|
133275
133947
|
cloudId: Scalars['ID']['input'];
|
|
133276
133948
|
input: ConfluenceUpdatePdfExportNoCodeStylingConfigInput;
|
|
@@ -133320,6 +133992,10 @@ export declare type MutationConfluence_UpdateWatermarkConfigArgs = {
|
|
|
133320
133992
|
input: ConfluenceUpdateWatermarkConfigInput;
|
|
133321
133993
|
resourceAri: Scalars['ID']['input'];
|
|
133322
133994
|
};
|
|
133995
|
+
export declare type MutationConfluence_UpdateWorkflowApplicationArgs = {
|
|
133996
|
+
cloudId: Scalars['ID']['input'];
|
|
133997
|
+
updateWorkflowApplicationRequestInput: ConfluenceUpdateWorkflowApplicationRequestInput;
|
|
133998
|
+
};
|
|
133323
133999
|
export declare type MutationConfluence_WatchLabelArgs = {
|
|
133324
134000
|
cloudId: Scalars['ID']['input'];
|
|
133325
134001
|
input: ConfluenceLabelWatchInput;
|
|
@@ -134463,6 +135139,18 @@ export declare type MutationJira_SetIssueSearchJqlArgs = {
|
|
|
134463
135139
|
export declare type MutationJira_SetIssueSearchViewLayoutArgs = {
|
|
134464
135140
|
input: JiraSetIssueSearchViewLayoutInput;
|
|
134465
135141
|
};
|
|
135142
|
+
export declare type MutationJira_SetJswBoardCardOptionsArgs = {
|
|
135143
|
+
input: JiraSetJswBoardViewSettingCardOptionsInput;
|
|
135144
|
+
};
|
|
135145
|
+
export declare type MutationJira_SetJswBoardGroupByArgs = {
|
|
135146
|
+
input: JiraSetJswBoardViewSettingGroupByInput;
|
|
135147
|
+
};
|
|
135148
|
+
export declare type MutationJira_SetJswBoardQuickFilterToggleArgs = {
|
|
135149
|
+
input: JiraSetJswBoardViewSettingsToggleInput;
|
|
135150
|
+
};
|
|
135151
|
+
export declare type MutationJira_SetJswBoardWorkSuggestionToggleArgs = {
|
|
135152
|
+
input: JiraSetJswBoardViewSettingsToggleInput;
|
|
135153
|
+
};
|
|
134466
135154
|
export declare type MutationJira_SetLogoArgs = {
|
|
134467
135155
|
input: JiraSetLogoInput;
|
|
134468
135156
|
};
|
|
@@ -134607,6 +135295,9 @@ export declare type MutationKitsune_RemoveFeedbackArgs = {
|
|
|
134607
135295
|
export declare type MutationKitsune_RemoveSectionArgs = {
|
|
134608
135296
|
sectionAri: Scalars['ID']['input'];
|
|
134609
135297
|
};
|
|
135298
|
+
export declare type MutationKitsune_RemoveViewArgs = {
|
|
135299
|
+
viewAri: Scalars['ID']['input'];
|
|
135300
|
+
};
|
|
134610
135301
|
export declare type MutationKitsune_SuggestSnippetsArgs = {
|
|
134611
135302
|
title: Scalars['String']['input'];
|
|
134612
135303
|
workspaceAri: Scalars['ID']['input'];
|
|
@@ -138694,10 +139385,16 @@ export declare type Query = {
|
|
|
138694
139385
|
agentStudio_widgetByContainerAri?: Maybe<AgentStudioWidgetByContainerAriResult>;
|
|
138695
139386
|
agentWorkspace_availability?: Maybe<AgentWorkspaceAvailabilityConnection>;
|
|
138696
139387
|
agentWorkspace_capacity?: Maybe<AgentWorkspaceCapacityConnection>;
|
|
139388
|
+
agentWorkspace_catalog?: Maybe<AgentWorkspaceCatalog>;
|
|
139389
|
+
agentWorkspace_catalogType?: Maybe<AgentWorkspaceCatalogType>;
|
|
139390
|
+
agentWorkspace_catalogTypes?: Maybe<AgentWorkspaceCatalogTypeConnection>;
|
|
139391
|
+
agentWorkspace_catalogs?: Maybe<AgentWorkspaceCatalogConnection>;
|
|
138697
139392
|
agentWorkspace_defaultCapacity?: Maybe<AgentWorkspaceDefaultCapacity>;
|
|
138698
139393
|
agentWorkspace_schedule?: Maybe<AgentWorkspaceSchedule>;
|
|
138699
139394
|
agentWorkspace_schedules?: Maybe<Array<AgentWorkspaceSchedule>>;
|
|
138700
139395
|
agentWorkspace_shifts?: Maybe<AgentWorkspaceShiftsConnection>;
|
|
139396
|
+
agentWorkspace_skill?: Maybe<AgentWorkspaceSkill>;
|
|
139397
|
+
agentWorkspace_skills?: Maybe<AgentWorkspaceSkillConnection>;
|
|
138701
139398
|
aiCoreApi_vsaQuestionsByProject?: Maybe<AiCoreApiVsaQuestionsResult>;
|
|
138702
139399
|
aiCoreApi_vsaQuestionsByProjectAndType?: Maybe<AiCoreApiVsaQuestionsWithTypeResult>;
|
|
138703
139400
|
aiCoreApi_vsaReportingByProject?: Maybe<AiCoreApiVsaReportingResult>;
|
|
@@ -138929,6 +139626,7 @@ export declare type Query = {
|
|
|
138929
139626
|
confluence_externalCollaboratorsByCriteria?: Maybe<ConfluencePersonConnection>;
|
|
138930
139627
|
confluence_forgeExtensionsByType?: Maybe<Array<Maybe<ConfluenceForgeExtension>>>;
|
|
138931
139628
|
confluence_generateSpaceKey?: Maybe<ConfluenceGeneratedSpaceKey>;
|
|
139629
|
+
confluence_getActiveWorkflowApplication?: Maybe<ConfluenceWorkflowApplicationPayload>;
|
|
138932
139630
|
confluence_getAllApps?: Maybe<ConfluenceAppConnection>;
|
|
138933
139631
|
confluence_getAudioPreference?: Maybe<ConfluenceAudioPreference>;
|
|
138934
139632
|
confluence_getCustomContentPermissionAssignments?: Maybe<ConfluenceCustomContentPermissionAssignmentConnection>;
|
|
@@ -138991,6 +139689,7 @@ export declare type Query = {
|
|
|
138991
139689
|
confluence_subCalendarEmbedInfo?: Maybe<Array<Maybe<ConfluenceSubCalendarEmbedInfo>>>;
|
|
138992
139690
|
confluence_subCalendarSubscribersCount?: Maybe<ConfluenceSubCalendarSubscribersCount>;
|
|
138993
139691
|
confluence_subCalendarWatchingStatuses?: Maybe<Array<Maybe<ConfluenceSubCalendarWatchingStatus>>>;
|
|
139692
|
+
confluence_teamAdminControlsSettings?: Maybe<ConfluenceTeamAdminControlsSettings>;
|
|
138994
139693
|
confluence_teamPresenceContentSetting?: Maybe<ConfluenceTeamPresence>;
|
|
138995
139694
|
confluence_teamPresenceSpaceSettings?: Maybe<ConfluenceTeamPresenceSpaceSettings>;
|
|
138996
139695
|
confluence_template?: Maybe<ContentTemplate>;
|
|
@@ -139297,6 +139996,7 @@ export declare type Query = {
|
|
|
139297
139996
|
jira_issueSearchViewsByIds?: Maybe<Array<Maybe<JiraIssueSearchView>>>;
|
|
139298
139997
|
jira_issuesByIds?: Maybe<Array<Maybe<JiraIssue>>>;
|
|
139299
139998
|
jira_jiraServiceManagementDefaultCommentBehavior?: Maybe<JiraServiceManagementDefaultCommentBehavior>;
|
|
139999
|
+
jira_jswBoardViewSettings?: Maybe<JiraJswBoardViewSettings>;
|
|
139300
140000
|
jira_lookAndFeel?: Maybe<JiraLookAndFeel>;
|
|
139301
140001
|
jira_mergeIssuesOperationProgress?: Maybe<JiraMergeIssuesOperationProgressResult>;
|
|
139302
140002
|
jira_onboardingConfigById?: Maybe<JiraOnboardingConfig>;
|
|
@@ -139542,6 +140242,9 @@ export declare type Query = {
|
|
|
139542
140242
|
smarts?: Maybe<SmartsQueryApi>;
|
|
139543
140243
|
socialSignals?: Maybe<SocialSignalsApi>;
|
|
139544
140244
|
softwareBoards?: Maybe<BoardScopeConnection>;
|
|
140245
|
+
softwareCatalog_servicesWithActiveIncidents?: Maybe<SoftwareCatalogSearchResult>;
|
|
140246
|
+
softwareCatalog_servicesWithOpenAlerts?: Maybe<SoftwareCatalogSearchResult>;
|
|
140247
|
+
softwareCatalog_servicesWithUpcomingChanges?: Maybe<SoftwareCatalogSearchResult>;
|
|
139545
140248
|
spaViewContext?: Maybe<SpaViewModel>;
|
|
139546
140249
|
space?: Maybe<Space>;
|
|
139547
140250
|
spaceContextContentCreationMetadata?: Maybe<ContentCreationMetadata>;
|
|
@@ -139730,25 +140433,25 @@ export declare type QueryAdmin_AppModulesArgs = {
|
|
|
139730
140433
|
export declare type QueryAdmin_AuditLogEventActionsArgs = {
|
|
139731
140434
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
139732
140435
|
before?: InputMaybe<Scalars['String']['input']>;
|
|
140436
|
+
container: AdminAuditLogContainer;
|
|
139733
140437
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
139734
140438
|
last?: InputMaybe<Scalars['Int']['input']>;
|
|
139735
|
-
orgId: Scalars['ID']['input'];
|
|
139736
140439
|
};
|
|
139737
140440
|
export declare type QueryAdmin_AuditLogEventIpAddressesArgs = {
|
|
139738
140441
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
139739
140442
|
before?: InputMaybe<Scalars['String']['input']>;
|
|
140443
|
+
container: AdminAuditLogContainer;
|
|
139740
140444
|
filter?: InputMaybe<Scalars['String']['input']>;
|
|
139741
140445
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
139742
140446
|
last?: InputMaybe<Scalars['Int']['input']>;
|
|
139743
|
-
orgId: Scalars['ID']['input'];
|
|
139744
140447
|
};
|
|
139745
140448
|
export declare type QueryAdmin_AuditLogEventLocationsArgs = {
|
|
139746
140449
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
139747
140450
|
before?: InputMaybe<Scalars['String']['input']>;
|
|
140451
|
+
container: AdminAuditLogContainer;
|
|
139748
140452
|
filter?: InputMaybe<Scalars['String']['input']>;
|
|
139749
140453
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
139750
140454
|
last?: InputMaybe<Scalars['Int']['input']>;
|
|
139751
|
-
orgId: Scalars['ID']['input'];
|
|
139752
140455
|
};
|
|
139753
140456
|
export declare type QueryAdmin_AuditLogEventsArgs = {
|
|
139754
140457
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -140181,6 +140884,26 @@ export declare type QueryAgentWorkspace_AvailabilityArgs = {
|
|
|
140181
140884
|
export declare type QueryAgentWorkspace_CapacityArgs = {
|
|
140182
140885
|
input: AgentWorkspaceCapacityInput;
|
|
140183
140886
|
};
|
|
140887
|
+
export declare type QueryAgentWorkspace_CatalogArgs = {
|
|
140888
|
+
cloudId: Scalars['ID']['input'];
|
|
140889
|
+
id: Scalars['ID']['input'];
|
|
140890
|
+
};
|
|
140891
|
+
export declare type QueryAgentWorkspace_CatalogTypeArgs = {
|
|
140892
|
+
cloudId: Scalars['ID']['input'];
|
|
140893
|
+
id: Scalars['ID']['input'];
|
|
140894
|
+
};
|
|
140895
|
+
export declare type QueryAgentWorkspace_CatalogTypesArgs = {
|
|
140896
|
+
cloudId: Scalars['ID']['input'];
|
|
140897
|
+
filter?: InputMaybe<AgentWorkspaceCatalogTypeFilter>;
|
|
140898
|
+
page?: InputMaybe<Scalars['Int']['input']>;
|
|
140899
|
+
pageSize?: InputMaybe<Scalars['Int']['input']>;
|
|
140900
|
+
};
|
|
140901
|
+
export declare type QueryAgentWorkspace_CatalogsArgs = {
|
|
140902
|
+
cloudId: Scalars['ID']['input'];
|
|
140903
|
+
filter?: InputMaybe<AgentWorkspaceCatalogFilter>;
|
|
140904
|
+
page?: InputMaybe<Scalars['Int']['input']>;
|
|
140905
|
+
pageSize?: InputMaybe<Scalars['Int']['input']>;
|
|
140906
|
+
};
|
|
140184
140907
|
export declare type QueryAgentWorkspace_DefaultCapacityArgs = {
|
|
140185
140908
|
cloudId: Scalars['ID']['input'];
|
|
140186
140909
|
projectKey: Scalars['String']['input'];
|
|
@@ -140201,6 +140924,16 @@ export declare type QueryAgentWorkspace_ShiftsArgs = {
|
|
|
140201
140924
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
140202
140925
|
input: AgentWorkspaceShiftsQueryInput;
|
|
140203
140926
|
};
|
|
140927
|
+
export declare type QueryAgentWorkspace_SkillArgs = {
|
|
140928
|
+
cloudId: Scalars['ID']['input'];
|
|
140929
|
+
id: Scalars['ID']['input'];
|
|
140930
|
+
};
|
|
140931
|
+
export declare type QueryAgentWorkspace_SkillsArgs = {
|
|
140932
|
+
cloudId: Scalars['ID']['input'];
|
|
140933
|
+
filter?: InputMaybe<AgentWorkspaceSkillFilter>;
|
|
140934
|
+
page?: InputMaybe<Scalars['Int']['input']>;
|
|
140935
|
+
pageSize?: InputMaybe<Scalars['Int']['input']>;
|
|
140936
|
+
};
|
|
140204
140937
|
export declare type QueryAiCoreApi_VsaQuestionsByProjectArgs = {
|
|
140205
140938
|
projectAri: Scalars['ID']['input'];
|
|
140206
140939
|
};
|
|
@@ -141253,6 +141986,14 @@ export declare type QueryConfluence_GenerateSpaceKeyArgs = {
|
|
|
141253
141986
|
cloudId: Scalars['ID']['input'];
|
|
141254
141987
|
spaceName?: InputMaybe<Scalars['String']['input']>;
|
|
141255
141988
|
};
|
|
141989
|
+
export declare type QueryConfluence_GetActiveWorkflowApplicationArgs = {
|
|
141990
|
+
cloudId: Scalars['ID']['input'];
|
|
141991
|
+
contentId: Scalars['Long']['input'];
|
|
141992
|
+
contentStatus: Scalars['String']['input'];
|
|
141993
|
+
contentVersion?: InputMaybe<Scalars['Int']['input']>;
|
|
141994
|
+
fetchWorkflowReview?: InputMaybe<Scalars['Boolean']['input']>;
|
|
141995
|
+
workflowId: Scalars['Long']['input'];
|
|
141996
|
+
};
|
|
141256
141997
|
export declare type QueryConfluence_GetAllAppsArgs = {
|
|
141257
141998
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
141258
141999
|
cloudId: Scalars['ID']['input'];
|
|
@@ -141564,6 +142305,9 @@ export declare type QueryConfluence_SubCalendarWatchingStatusesArgs = {
|
|
|
141564
142305
|
cloudId: Scalars['ID']['input'];
|
|
141565
142306
|
subCalendarIds?: InputMaybe<Array<InputMaybe<Scalars['String']['input']>>>;
|
|
141566
142307
|
};
|
|
142308
|
+
export declare type QueryConfluence_TeamAdminControlsSettingsArgs = {
|
|
142309
|
+
cloudId: Scalars['ID']['input'];
|
|
142310
|
+
};
|
|
141567
142311
|
export declare type QueryConfluence_TeamPresenceContentSettingArgs = {
|
|
141568
142312
|
cloudId: Scalars['ID']['input'];
|
|
141569
142313
|
spaceKey: Scalars['String']['input'];
|
|
@@ -142834,6 +143578,9 @@ export declare type QueryJira_IssuesByIdsArgs = {
|
|
|
142834
143578
|
export declare type QueryJira_JiraServiceManagementDefaultCommentBehaviorArgs = {
|
|
142835
143579
|
cloudId: Scalars['ID']['input'];
|
|
142836
143580
|
};
|
|
143581
|
+
export declare type QueryJira_JswBoardViewSettingsArgs = {
|
|
143582
|
+
input: JiraJswBoardViewSettingsQueryInput;
|
|
143583
|
+
};
|
|
142837
143584
|
export declare type QueryJira_LookAndFeelArgs = {
|
|
142838
143585
|
cloudId: Scalars['ID']['input'];
|
|
142839
143586
|
};
|
|
@@ -143701,6 +144448,21 @@ export declare type QuerySiteSettingsArgs = {
|
|
|
143701
144448
|
export declare type QuerySoftwareBoardsArgs = {
|
|
143702
144449
|
projectAri: Scalars['ID']['input'];
|
|
143703
144450
|
};
|
|
144451
|
+
export declare type QuerySoftwareCatalog_ServicesWithActiveIncidentsArgs = {
|
|
144452
|
+
cloudId: Scalars['ID']['input'];
|
|
144453
|
+
limit?: InputMaybe<Scalars['Int']['input']>;
|
|
144454
|
+
offset?: InputMaybe<Scalars['Int']['input']>;
|
|
144455
|
+
};
|
|
144456
|
+
export declare type QuerySoftwareCatalog_ServicesWithOpenAlertsArgs = {
|
|
144457
|
+
cloudId: Scalars['ID']['input'];
|
|
144458
|
+
limit?: InputMaybe<Scalars['Int']['input']>;
|
|
144459
|
+
offset?: InputMaybe<Scalars['Int']['input']>;
|
|
144460
|
+
};
|
|
144461
|
+
export declare type QuerySoftwareCatalog_ServicesWithUpcomingChangesArgs = {
|
|
144462
|
+
cloudId: Scalars['ID']['input'];
|
|
144463
|
+
limit?: InputMaybe<Scalars['Int']['input']>;
|
|
144464
|
+
offset?: InputMaybe<Scalars['Int']['input']>;
|
|
144465
|
+
};
|
|
143704
144466
|
export declare type QuerySpaceArgs = {
|
|
143705
144467
|
cloudId?: InputMaybe<Scalars['ID']['input']>;
|
|
143706
144468
|
id?: InputMaybe<Scalars['ID']['input']>;
|
|
@@ -167406,6 +168168,7 @@ export declare type SoftwareCard = {
|
|
|
167406
168168
|
priority?: Maybe<CardPriority>;
|
|
167407
168169
|
status?: Maybe<CardStatus>;
|
|
167408
168170
|
summary?: Maybe<Scalars['String']['output']>;
|
|
168171
|
+
townsquareProjectId?: Maybe<Scalars['String']['output']>;
|
|
167409
168172
|
type?: Maybe<CardType>;
|
|
167410
168173
|
};
|
|
167411
168174
|
export declare type SoftwareCardChildrenInfo = {
|
|
@@ -167450,6 +168213,13 @@ export declare enum SoftwareCardsDestinationEnum {
|
|
|
167450
168213
|
ExistingSprint = "EXISTING_SPRINT",
|
|
167451
168214
|
NewSprint = "NEW_SPRINT"
|
|
167452
168215
|
}
|
|
168216
|
+
export declare type SoftwareCatalogSearchResult = {
|
|
168217
|
+
__typename?: 'SoftwareCatalogSearchResult';
|
|
168218
|
+
items?: Maybe<Array<Maybe<AssetsServiceObject>>>;
|
|
168219
|
+
limit: Scalars['Int']['output'];
|
|
168220
|
+
offset: Scalars['Int']['output'];
|
|
168221
|
+
totalCount: Scalars['Int']['output'];
|
|
168222
|
+
};
|
|
167453
168223
|
export declare type SoftwareOperation = {
|
|
167454
168224
|
__typename?: 'SoftwareOperation';
|
|
167455
168225
|
icon?: Maybe<Icon>;
|
|
@@ -176096,6 +176866,7 @@ export declare type TrelloBoard = Node & TrelloBaseBoard & {
|
|
|
176096
176866
|
__typename?: 'TrelloBoard';
|
|
176097
176867
|
closed: Scalars['Boolean']['output'];
|
|
176098
176868
|
creationMethod?: Maybe<Scalars['String']['output']>;
|
|
176869
|
+
creationMethodLoadingStartedAt?: Maybe<Scalars['DateTime']['output']>;
|
|
176099
176870
|
creator?: Maybe<TrelloMember>;
|
|
176100
176871
|
customFields?: Maybe<TrelloCustomFieldConnection>;
|
|
176101
176872
|
description?: Maybe<TrelloUserGeneratedText>;
|
|
@@ -177481,16 +178252,7 @@ export declare type TrelloGenerateCheckItemsForCardInput = {
|
|
|
177481
178252
|
};
|
|
177482
178253
|
export declare type TrelloGenerateCheckItemsForCardPayload = {
|
|
177483
178254
|
__typename?: 'TrelloGenerateCheckItemsForCardPayload';
|
|
177484
|
-
card?: Maybe<
|
|
177485
|
-
errors?: Maybe<Array<MutationError>>;
|
|
177486
|
-
success: Scalars['Boolean']['output'];
|
|
177487
|
-
};
|
|
177488
|
-
export declare type TrelloGenerateChecklistsForCardInput = {
|
|
177489
|
-
cardId: Scalars['ID']['input'];
|
|
177490
|
-
};
|
|
177491
|
-
export declare type TrelloGenerateChecklistsForCardPayload = Payload & {
|
|
177492
|
-
__typename?: 'TrelloGenerateChecklistsForCardPayload';
|
|
177493
|
-
card?: Maybe<TrelloCard>;
|
|
178255
|
+
card?: Maybe<TrelloBaseCard>;
|
|
177494
178256
|
errors?: Maybe<Array<MutationError>>;
|
|
177495
178257
|
success: Scalars['Boolean']['output'];
|
|
177496
178258
|
};
|
|
@@ -177726,6 +178488,16 @@ export declare type TrelloLabelUpdatedConnection = {
|
|
|
177726
178488
|
edges?: Maybe<Array<TrelloCardLabelEdgeUpdated>>;
|
|
177727
178489
|
nodes?: Maybe<Array<TrelloLabel>>;
|
|
177728
178490
|
};
|
|
178491
|
+
export declare enum TrelloLabsFeature {
|
|
178492
|
+
GenerateChecklist = "GENERATE_CHECKLIST",
|
|
178493
|
+
MergeCards = "MERGE_CARDS",
|
|
178494
|
+
SmartSchedule = "SMART_SCHEDULE"
|
|
178495
|
+
}
|
|
178496
|
+
export declare enum TrelloLabsFeatureStatus {
|
|
178497
|
+
NotSet = "NOT_SET",
|
|
178498
|
+
OptedIn = "OPTED_IN",
|
|
178499
|
+
OptedOut = "OPTED_OUT"
|
|
178500
|
+
}
|
|
177729
178501
|
export declare type TrelloLimitProps = {
|
|
177730
178502
|
__typename?: 'TrelloLimitProps';
|
|
177731
178503
|
count?: Maybe<Scalars['Int']['output']>;
|
|
@@ -177860,6 +178632,7 @@ export declare type TrelloMember = Node & {
|
|
|
177860
178632
|
inbox?: Maybe<TrelloInbox>;
|
|
177861
178633
|
initials?: Maybe<Scalars['String']['output']>;
|
|
177862
178634
|
jobFunction?: Maybe<Scalars['String']['output']>;
|
|
178635
|
+
labsPreferences?: Maybe<Array<TrelloMemberLabsPreference>>;
|
|
177863
178636
|
nonPublicData?: Maybe<TrelloMemberNonPublicData>;
|
|
177864
178637
|
notifications?: Maybe<TrelloNotificationConnection>;
|
|
177865
178638
|
objectId: Scalars['ID']['output'];
|
|
@@ -177930,6 +178703,14 @@ export declare type TrelloMemberEdge = {
|
|
|
177930
178703
|
cursor: Scalars['String']['output'];
|
|
177931
178704
|
node?: Maybe<TrelloMember>;
|
|
177932
178705
|
};
|
|
178706
|
+
export declare type TrelloMemberLabsPreference = {
|
|
178707
|
+
__typename?: 'TrelloMemberLabsPreference';
|
|
178708
|
+
dateModified?: Maybe<Scalars['DateTime']['output']>;
|
|
178709
|
+
description: Scalars['String']['output'];
|
|
178710
|
+
feature: TrelloLabsFeature;
|
|
178711
|
+
name: Scalars['String']['output'];
|
|
178712
|
+
status: TrelloLabsFeatureStatus;
|
|
178713
|
+
};
|
|
177933
178714
|
export declare type TrelloMemberNonPublicData = {
|
|
177934
178715
|
__typename?: 'TrelloMemberNonPublicData';
|
|
177935
178716
|
avatarUrl?: Maybe<Scalars['URL']['output']>;
|
|
@@ -178059,11 +178840,6 @@ export declare type TrelloMoveCardBoardEntities = {
|
|
|
178059
178840
|
card?: Maybe<TrelloActionCardEntity>;
|
|
178060
178841
|
memberCreator?: Maybe<TrelloActionMemberEntity>;
|
|
178061
178842
|
};
|
|
178062
|
-
export declare type TrelloMoveCardFailure = {
|
|
178063
|
-
__typename?: 'TrelloMoveCardFailure';
|
|
178064
|
-
card: TrelloCard;
|
|
178065
|
-
message: Scalars['String']['output'];
|
|
178066
|
-
};
|
|
178067
178843
|
export declare type TrelloMoveCardToBoardAction = TrelloAction & TrelloCardActionData & {
|
|
178068
178844
|
__typename?: 'TrelloMoveCardToBoardAction';
|
|
178069
178845
|
appCreator?: Maybe<TrelloAppCreator>;
|
|
@@ -178079,19 +178855,6 @@ export declare type TrelloMoveCardToBoardAction = TrelloAction & TrelloCardActio
|
|
|
178079
178855
|
reactionsDeleted?: Maybe<Array<TrelloReactionDeleted>>;
|
|
178080
178856
|
type?: Maybe<Scalars['String']['output']>;
|
|
178081
178857
|
};
|
|
178082
|
-
export declare type TrelloMoveCardsInput = {
|
|
178083
|
-
boardId: Scalars['ID']['input'];
|
|
178084
|
-
cardIds: Array<Scalars['ID']['input']>;
|
|
178085
|
-
listId: Scalars['ID']['input'];
|
|
178086
|
-
position: Scalars['Float']['input'];
|
|
178087
|
-
};
|
|
178088
|
-
export declare type TrelloMoveCardsPayload = {
|
|
178089
|
-
__typename?: 'TrelloMoveCardsPayload';
|
|
178090
|
-
errors?: Maybe<Array<MutationError>>;
|
|
178091
|
-
moveFailures?: Maybe<Array<TrelloMoveCardFailure>>;
|
|
178092
|
-
movedCards?: Maybe<Array<TrelloCard>>;
|
|
178093
|
-
success: Scalars['Boolean']['output'];
|
|
178094
|
-
};
|
|
178095
178858
|
export declare type TrelloMoveInboxCardToBoardAction = TrelloAction & TrelloCardActionData & {
|
|
178096
178859
|
__typename?: 'TrelloMoveInboxCardToBoardAction';
|
|
178097
178860
|
appCreator?: Maybe<TrelloAppCreator>;
|
|
@@ -178156,11 +178919,9 @@ export declare type TrelloMutationApi = {
|
|
|
178156
178919
|
editPlannerCalendarEvent?: Maybe<TrelloEditPlannerCalendarEventPayload>;
|
|
178157
178920
|
generateBoardBackgroundWithAi?: Maybe<TrelloGenerateBoardBackgroundWithAiPayload>;
|
|
178158
178921
|
generateCheckItemsForCard?: Maybe<TrelloGenerateCheckItemsForCardPayload>;
|
|
178159
|
-
generateChecklistsForCard?: Maybe<TrelloGenerateChecklistsForCardPayload>;
|
|
178160
178922
|
markCardComplete?: Maybe<TrelloMarkCardCompletePayload>;
|
|
178161
178923
|
markInboxNotificationsRead?: Maybe<TrelloMarkInboxNotificationsReadPayload>;
|
|
178162
178924
|
mergeCards?: Maybe<TrelloMergeCardsPayload>;
|
|
178163
|
-
moveCards?: Maybe<TrelloMoveCardsPayload>;
|
|
178164
178925
|
movePlannerCalendarEvent?: Maybe<TrelloMovePlannerCalendarEventPayload>;
|
|
178165
178926
|
pinCard?: Maybe<TrelloPinCardPayload>;
|
|
178166
178927
|
proposePlannerEvents?: Maybe<TrelloProposePlannerEventsPayload>;
|
|
@@ -178181,6 +178942,7 @@ export declare type TrelloMutationApi = {
|
|
|
178181
178942
|
sortInboxCards?: Maybe<TrelloSortInboxCardsPayload>;
|
|
178182
178943
|
sortListCards?: Maybe<TrelloSortListCardsPayload>;
|
|
178183
178944
|
submitCardBatchToBoard?: Maybe<TrelloCardBatchJobPayload>;
|
|
178945
|
+
toggleLabsFeatureForMember?: Maybe<TrelloToggleLabsFeatureForMemberPayload>;
|
|
178184
178946
|
unarchiveCard?: Maybe<TrelloUnarchiveCardPayload>;
|
|
178185
178947
|
unwatchCard?: Maybe<TrelloWatchCardPayload>;
|
|
178186
178948
|
updateAiRule?: Maybe<TrelloUpdateAiRulePayload>;
|
|
@@ -178275,9 +179037,6 @@ export declare type TrelloMutationApiGenerateBoardBackgroundWithAiArgs = {
|
|
|
178275
179037
|
export declare type TrelloMutationApiGenerateCheckItemsForCardArgs = {
|
|
178276
179038
|
input: TrelloGenerateCheckItemsForCardInput;
|
|
178277
179039
|
};
|
|
178278
|
-
export declare type TrelloMutationApiGenerateChecklistsForCardArgs = {
|
|
178279
|
-
input: TrelloGenerateChecklistsForCardInput;
|
|
178280
|
-
};
|
|
178281
179040
|
export declare type TrelloMutationApiMarkCardCompleteArgs = {
|
|
178282
179041
|
input: TrelloMarkCardCompleteInput;
|
|
178283
179042
|
};
|
|
@@ -178287,9 +179046,6 @@ export declare type TrelloMutationApiMarkInboxNotificationsReadArgs = {
|
|
|
178287
179046
|
export declare type TrelloMutationApiMergeCardsArgs = {
|
|
178288
179047
|
input: TrelloMergeCardsInput;
|
|
178289
179048
|
};
|
|
178290
|
-
export declare type TrelloMutationApiMoveCardsArgs = {
|
|
178291
|
-
input: TrelloMoveCardsInput;
|
|
178292
|
-
};
|
|
178293
179049
|
export declare type TrelloMutationApiMovePlannerCalendarEventArgs = {
|
|
178294
179050
|
input: TrelloMovePlannerCalendarEventInput;
|
|
178295
179051
|
};
|
|
@@ -178347,6 +179103,9 @@ export declare type TrelloMutationApiSortListCardsArgs = {
|
|
|
178347
179103
|
export declare type TrelloMutationApiSubmitCardBatchToBoardArgs = {
|
|
178348
179104
|
input: TrelloCardBatchSpecificationInput;
|
|
178349
179105
|
};
|
|
179106
|
+
export declare type TrelloMutationApiToggleLabsFeatureForMemberArgs = {
|
|
179107
|
+
input: TrelloToggleLabsFeatureForMemberInput;
|
|
179108
|
+
};
|
|
178350
179109
|
export declare type TrelloMutationApiUnarchiveCardArgs = {
|
|
178351
179110
|
input: TrelloUnarchiveCardInput;
|
|
178352
179111
|
};
|
|
@@ -178484,6 +179243,7 @@ export declare type TrelloPinCardPayload = Payload & {
|
|
|
178484
179243
|
export declare type TrelloPlanner = {
|
|
178485
179244
|
__typename?: 'TrelloPlanner';
|
|
178486
179245
|
accounts?: Maybe<TrelloPlannerCalendarAccountConnection>;
|
|
179246
|
+
cardsWithDueDates?: Maybe<TrelloPlannerCardsWithDueDatesConnection>;
|
|
178487
179247
|
id: Scalars['ID']['output'];
|
|
178488
179248
|
primaryAccountId?: Maybe<Scalars['ID']['output']>;
|
|
178489
179249
|
primaryCalendarId?: Maybe<Scalars['ID']['output']>;
|
|
@@ -178494,10 +179254,21 @@ export declare type TrelloPlannerAccountsArgs = {
|
|
|
178494
179254
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
178495
179255
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
178496
179256
|
};
|
|
179257
|
+
export declare type TrelloPlannerCardsWithDueDatesArgs = {
|
|
179258
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
179259
|
+
filter?: InputMaybe<TrelloPlannerCardsWithDueDatesFilter>;
|
|
179260
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
179261
|
+
};
|
|
178497
179262
|
export declare type TrelloPlannerProposedEventsArgs = {
|
|
178498
179263
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
178499
179264
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
178500
179265
|
};
|
|
179266
|
+
export declare type TrelloPlannerBoardWithDueCards = {
|
|
179267
|
+
__typename?: 'TrelloPlannerBoardWithDueCards';
|
|
179268
|
+
board?: Maybe<TrelloBaseBoard>;
|
|
179269
|
+
id: Scalars['ID']['output'];
|
|
179270
|
+
lists?: Maybe<Array<TrelloPlannerListWithDueCards>>;
|
|
179271
|
+
};
|
|
178501
179272
|
export declare type TrelloPlannerCalendar = Node & TrelloProviderCalendarInterface & {
|
|
178502
179273
|
__typename?: 'TrelloPlannerCalendar';
|
|
178503
179274
|
color?: Maybe<TrelloPlannerCalendarColor>;
|
|
@@ -178666,6 +179437,7 @@ export declare type TrelloPlannerCalendarEventCard = Node & {
|
|
|
178666
179437
|
card?: Maybe<TrelloCard>;
|
|
178667
179438
|
cardId?: Maybe<Scalars['ID']['output']>;
|
|
178668
179439
|
cardObjectId?: Maybe<Scalars['ID']['output']>;
|
|
179440
|
+
cardOrInboxCard?: Maybe<TrelloBaseCard>;
|
|
178669
179441
|
id: Scalars['ID']['output'];
|
|
178670
179442
|
objectId?: Maybe<Scalars['ID']['output']>;
|
|
178671
179443
|
position?: Maybe<Scalars['Float']['output']>;
|
|
@@ -178832,6 +179604,26 @@ export declare type TrelloPlannerCardUpdated = {
|
|
|
178832
179604
|
list?: Maybe<TrelloPlannerCardListUpdated>;
|
|
178833
179605
|
objectId?: Maybe<Scalars['ID']['output']>;
|
|
178834
179606
|
};
|
|
179607
|
+
export declare type TrelloPlannerCardWithDueDate = {
|
|
179608
|
+
__typename?: 'TrelloPlannerCardWithDueDate';
|
|
179609
|
+
card?: Maybe<TrelloBaseCard>;
|
|
179610
|
+
id: Scalars['ID']['output'];
|
|
179611
|
+
};
|
|
179612
|
+
export declare type TrelloPlannerCardsWithDueDatesConnection = {
|
|
179613
|
+
__typename?: 'TrelloPlannerCardsWithDueDatesConnection';
|
|
179614
|
+
edges?: Maybe<Array<TrelloPlannerCardsWithDueDatesEdge>>;
|
|
179615
|
+
nodes?: Maybe<Array<TrelloPlannerBoardWithDueCards>>;
|
|
179616
|
+
pageInfo: PageInfo;
|
|
179617
|
+
};
|
|
179618
|
+
export declare type TrelloPlannerCardsWithDueDatesEdge = {
|
|
179619
|
+
__typename?: 'TrelloPlannerCardsWithDueDatesEdge';
|
|
179620
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
179621
|
+
node?: Maybe<TrelloPlannerBoardWithDueCards>;
|
|
179622
|
+
};
|
|
179623
|
+
export declare type TrelloPlannerCardsWithDueDatesFilter = {
|
|
179624
|
+
dueEnd?: InputMaybe<Scalars['DateTime']['input']>;
|
|
179625
|
+
dueStart?: InputMaybe<Scalars['DateTime']['input']>;
|
|
179626
|
+
};
|
|
178835
179627
|
export declare type TrelloPlannerEventCardConnection = {
|
|
178836
179628
|
__typename?: 'TrelloPlannerEventCardConnection';
|
|
178837
179629
|
calendarStatus?: Maybe<TrelloPlannerCalendarStatus>;
|
|
@@ -178863,6 +179655,12 @@ export declare enum TrelloPlannerEventTimeFilter {
|
|
|
178863
179655
|
All = "ALL",
|
|
178864
179656
|
Future = "FUTURE"
|
|
178865
179657
|
}
|
|
179658
|
+
export declare type TrelloPlannerListWithDueCards = {
|
|
179659
|
+
__typename?: 'TrelloPlannerListWithDueCards';
|
|
179660
|
+
cards?: Maybe<Array<TrelloPlannerCardWithDueDate>>;
|
|
179661
|
+
id: Scalars['ID']['output'];
|
|
179662
|
+
list?: Maybe<TrelloList>;
|
|
179663
|
+
};
|
|
178866
179664
|
export declare type TrelloPlannerProposedEventConnection = {
|
|
178867
179665
|
__typename?: 'TrelloPlannerProposedEventConnection';
|
|
178868
179666
|
edges?: Maybe<Array<TrelloPlannerProposedEventEdge>>;
|
|
@@ -179595,6 +180393,15 @@ export declare type TrelloTemplateGalleryLanguage = {
|
|
|
179595
180393
|
locale: Scalars['String']['output'];
|
|
179596
180394
|
localizedDescription: Scalars['String']['output'];
|
|
179597
180395
|
};
|
|
180396
|
+
export declare type TrelloToggleLabsFeatureForMemberInput = {
|
|
180397
|
+
enabled: Scalars['Boolean']['input'];
|
|
180398
|
+
feature: TrelloLabsFeature;
|
|
180399
|
+
};
|
|
180400
|
+
export declare type TrelloToggleLabsFeatureForMemberPayload = Payload & {
|
|
180401
|
+
__typename?: 'TrelloToggleLabsFeatureForMemberPayload';
|
|
180402
|
+
errors?: Maybe<Array<MutationError>>;
|
|
180403
|
+
success: Scalars['Boolean']['output'];
|
|
180404
|
+
};
|
|
179598
180405
|
export declare type TrelloUnarchiveCardInput = {
|
|
179599
180406
|
cardId: Scalars['ID']['input'];
|
|
179600
180407
|
};
|
|
@@ -180093,8 +180900,11 @@ export declare enum TrelloWorkspaceTier {
|
|
|
180093
180900
|
export declare type TrelloWorkspaceUpdated = {
|
|
180094
180901
|
__typename?: 'TrelloWorkspaceUpdated';
|
|
180095
180902
|
_deltas?: Maybe<Array<Scalars['String']['output']>>;
|
|
180903
|
+
description?: Maybe<Scalars['String']['output']>;
|
|
180904
|
+
displayName?: Maybe<Scalars['String']['output']>;
|
|
180096
180905
|
enterprise?: Maybe<TrelloWorkspaceEnterpriseUpdated>;
|
|
180097
180906
|
id: Scalars['ID']['output'];
|
|
180907
|
+
name?: Maybe<Scalars['String']['output']>;
|
|
180098
180908
|
offering?: Maybe<Scalars['String']['output']>;
|
|
180099
180909
|
onPowerUpDataDeleted?: Maybe<Array<TrelloPowerUpDataDeleted>>;
|
|
180100
180910
|
planner?: Maybe<TrelloPlannerUpdated>;
|