@forge/cli-shared 8.15.1-experimental-8b78d46 → 8.15.1-experimental-1ee2de3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +2 -2
- package/out/graphql/graphql-types.d.ts +911 -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.map +1 -1
- package/out/tunnel/docker-compose-lifecycle.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';
|
|
@@ -30729,6 +30997,7 @@ export declare type CplsFilters = {
|
|
|
30729
30997
|
__typename?: 'CplsFilters';
|
|
30730
30998
|
contributorDataIds?: Maybe<Array<Scalars['ID']['output']>>;
|
|
30731
30999
|
customContributionTargets?: Maybe<Array<Scalars['ID']['output']>>;
|
|
31000
|
+
id: Scalars['ID']['output'];
|
|
30732
31001
|
jiraWorkItemStatusNames?: Maybe<Array<Scalars['String']['output']>>;
|
|
30733
31002
|
jiraWorkItems?: Maybe<Array<Scalars['ID']['output']>>;
|
|
30734
31003
|
workTypes?: Maybe<Array<CplsWorkType>>;
|
|
@@ -30845,6 +31114,7 @@ export declare type CplsViewSettings = {
|
|
|
30845
31114
|
__typename?: 'CplsViewSettings';
|
|
30846
31115
|
alwaysShowNumbersInGraph?: Maybe<Scalars['Boolean']['output']>;
|
|
30847
31116
|
contributionValueType?: Maybe<CplsContributionValueType>;
|
|
31117
|
+
id: Scalars['ID']['output'];
|
|
30848
31118
|
timeScale?: Maybe<CplsTimeScaleType>;
|
|
30849
31119
|
};
|
|
30850
31120
|
export declare type CplsViewSettingsInput = {
|
|
@@ -35354,11 +35624,11 @@ export declare type DevConsoleHasConsoleAdminResponse = {
|
|
|
35354
35624
|
};
|
|
35355
35625
|
export declare type DevConsoleMutation = {
|
|
35356
35626
|
__typename?: 'DevConsoleMutation';
|
|
35357
|
-
acceptAppBillingConsent
|
|
35358
|
-
archiveDeveloperSpace
|
|
35627
|
+
acceptAppBillingConsent?: Maybe<DevConsoleResponsePayload>;
|
|
35628
|
+
archiveDeveloperSpace?: Maybe<DevConsoleResponsePayload>;
|
|
35359
35629
|
assignDeveloperSpace?: Maybe<DevConsoleAssignDeveloperSpacePayload>;
|
|
35360
35630
|
createDeveloperSpace?: Maybe<DevConsoleDeveloperSpacePayload>;
|
|
35361
|
-
publishDeveloperSpace
|
|
35631
|
+
publishDeveloperSpace?: Maybe<DevConsoleResponsePayload>;
|
|
35362
35632
|
updateDeveloperSpaceMemberRoles?: Maybe<DevConsoleDeveloperSpaceMemberPayload>;
|
|
35363
35633
|
updateDeveloperSpaceSettings?: Maybe<DevConsoleDeveloperSpaceSettingsPayload>;
|
|
35364
35634
|
};
|
|
@@ -35395,21 +35665,21 @@ export declare type DevConsolePublishDeveloperSpaceInput = {
|
|
|
35395
35665
|
};
|
|
35396
35666
|
export declare type DevConsoleQuery = {
|
|
35397
35667
|
__typename?: 'DevConsoleQuery';
|
|
35398
|
-
appResourceUsage
|
|
35399
|
-
appResourceUsageDetailedView
|
|
35400
|
-
appUsageOverview
|
|
35401
|
-
appUsageTopSites
|
|
35402
|
-
downloadAppInstallations
|
|
35403
|
-
fetchDownloadAppInstallationsStatus
|
|
35404
|
-
getAppsWithoutConsent
|
|
35668
|
+
appResourceUsage?: Maybe<DevConsoleAppResourceUsageResponse>;
|
|
35669
|
+
appResourceUsageDetailedView?: Maybe<DevConsoleAppResourceUsageDetailedViewResponse>;
|
|
35670
|
+
appUsageOverview?: Maybe<DevConsoleAppUsageOverviewResponse>;
|
|
35671
|
+
appUsageTopSites?: Maybe<DevConsoleAppUsageTopSitesResponse>;
|
|
35672
|
+
downloadAppInstallations?: Maybe<DevConsoleDownloadAppInstallationsResponse>;
|
|
35673
|
+
fetchDownloadAppInstallationsStatus?: Maybe<DevConsoleFetchDownloadAppInstallationsStatusResponse>;
|
|
35674
|
+
getAppsWithoutConsent?: Maybe<DevConsoleAppsWithoutConsentResponse>;
|
|
35405
35675
|
getDeveloperSpaceDetails?: Maybe<DevConsoleBulkDeveloperSpaceDetailsResponse>;
|
|
35406
35676
|
getDeveloperSpaceMembers?: Maybe<DevConsoleDeveloperSpaceMembersResponse>;
|
|
35407
|
-
getDeveloperSpaceTransactionAccount
|
|
35408
|
-
getDeveloperSpaceUserPermissions
|
|
35677
|
+
getDeveloperSpaceTransactionAccount?: Maybe<DevConsoleTransactionAccountResponse>;
|
|
35678
|
+
getDeveloperSpaceUserPermissions?: Maybe<DevConsoleDeveloperSpaceUserPermissionsResponse>;
|
|
35409
35679
|
getDeveloperSpaceWithLinkingAccess?: Maybe<Array<Maybe<Scalars['String']['output']>>>;
|
|
35410
|
-
getDeveloperSpaceWithRoles
|
|
35680
|
+
getDeveloperSpaceWithRoles?: Maybe<Array<DevConsoleDeveloperSpaceWithRole>>;
|
|
35411
35681
|
hasAnyConsoleAdmin?: Maybe<DevConsoleHasConsoleAdminResponse>;
|
|
35412
|
-
tenantContexts
|
|
35682
|
+
tenantContexts?: Maybe<Array<Maybe<DevConsoleTenantContext>>>;
|
|
35413
35683
|
};
|
|
35414
35684
|
export declare type DevConsoleQueryAppResourceUsageArgs = {
|
|
35415
35685
|
appId: Scalars['ID']['input'];
|
|
@@ -38655,6 +38925,8 @@ export declare type ExternalExperimental = Node & {
|
|
|
38655
38925
|
createdBy?: Maybe<ExternalUser>;
|
|
38656
38926
|
description?: Maybe<Scalars['String']['output']>;
|
|
38657
38927
|
displayName?: Maybe<Scalars['String']['output']>;
|
|
38928
|
+
experimentalEntityName?: Maybe<Scalars['String']['output']>;
|
|
38929
|
+
experimentalKey?: Maybe<Scalars['String']['output']>;
|
|
38658
38930
|
externalId?: Maybe<Scalars['String']['output']>;
|
|
38659
38931
|
id: Scalars['ID']['output'];
|
|
38660
38932
|
lastUpdated?: Maybe<Scalars['String']['output']>;
|
|
@@ -45627,6 +45899,10 @@ export declare type GraphStore = {
|
|
|
45627
45899
|
projectLinksToEntityInverseBatch?: Maybe<GraphStoreBatchProjectLinksToEntityConnection>;
|
|
45628
45900
|
pullRequestLinksToService?: Maybe<GraphStoreSimplifiedPullRequestLinksToServiceConnection>;
|
|
45629
45901
|
pullRequestLinksToServiceInverse?: Maybe<GraphStoreSimplifiedPullRequestLinksToServiceInverseConnection>;
|
|
45902
|
+
riskHasProject?: Maybe<GraphStoreSimplifiedRiskHasProjectConnection>;
|
|
45903
|
+
riskHasProjectBatch?: Maybe<GraphStoreBatchRiskHasProjectConnection>;
|
|
45904
|
+
riskHasProjectInverse?: Maybe<GraphStoreSimplifiedRiskHasProjectInverseConnection>;
|
|
45905
|
+
riskHasProjectInverseBatch?: Maybe<GraphStoreBatchRiskHasProjectConnection>;
|
|
45630
45906
|
scorecardHasAtlasGoal?: Maybe<GraphStoreSimplifiedScorecardHasAtlasGoalConnection>;
|
|
45631
45907
|
scorecardHasAtlasGoalInverse?: Maybe<GraphStoreSimplifiedScorecardHasAtlasGoalInverseConnection>;
|
|
45632
45908
|
securityContainerAssociatedToVulnerability?: Maybe<GraphStoreSimplifiedSecurityContainerAssociatedToVulnerabilityConnection>;
|
|
@@ -50491,6 +50767,36 @@ export declare type GraphStorePullRequestLinksToServiceInverseArgs = {
|
|
|
50491
50767
|
queryContext?: InputMaybe<Scalars['String']['input']>;
|
|
50492
50768
|
sort?: InputMaybe<GraphStorePullRequestLinksToServiceSortInput>;
|
|
50493
50769
|
};
|
|
50770
|
+
export declare type GraphStoreRiskHasProjectArgs = {
|
|
50771
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
50772
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
50773
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
50774
|
+
id: Scalars['ID']['input'];
|
|
50775
|
+
queryContext?: InputMaybe<Scalars['String']['input']>;
|
|
50776
|
+
sort?: InputMaybe<GraphStoreRiskHasProjectSortInput>;
|
|
50777
|
+
};
|
|
50778
|
+
export declare type GraphStoreRiskHasProjectBatchArgs = {
|
|
50779
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
50780
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
50781
|
+
ids: Array<Scalars['ID']['input']>;
|
|
50782
|
+
queryContext?: InputMaybe<Scalars['String']['input']>;
|
|
50783
|
+
sort?: InputMaybe<GraphStoreRiskHasProjectSortInput>;
|
|
50784
|
+
};
|
|
50785
|
+
export declare type GraphStoreRiskHasProjectInverseArgs = {
|
|
50786
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
50787
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
50788
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
50789
|
+
id: Scalars['ID']['input'];
|
|
50790
|
+
queryContext?: InputMaybe<Scalars['String']['input']>;
|
|
50791
|
+
sort?: InputMaybe<GraphStoreRiskHasProjectSortInput>;
|
|
50792
|
+
};
|
|
50793
|
+
export declare type GraphStoreRiskHasProjectInverseBatchArgs = {
|
|
50794
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
50795
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
50796
|
+
ids: Array<Scalars['ID']['input']>;
|
|
50797
|
+
queryContext?: InputMaybe<Scalars['String']['input']>;
|
|
50798
|
+
sort?: InputMaybe<GraphStoreRiskHasProjectSortInput>;
|
|
50799
|
+
};
|
|
50494
50800
|
export declare type GraphStoreScorecardHasAtlasGoalArgs = {
|
|
50495
50801
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
50496
50802
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -55060,6 +55366,47 @@ export declare type GraphStoreBatchProjectLinksToEntityStartNode = {
|
|
|
55060
55366
|
id: Scalars['ID']['output'];
|
|
55061
55367
|
};
|
|
55062
55368
|
export declare type GraphStoreBatchProjectLinksToEntityStartUnion = TownsquareProject;
|
|
55369
|
+
export declare type GraphStoreBatchRiskHasProjectConnection = HasPageInfo & {
|
|
55370
|
+
__typename?: 'GraphStoreBatchRiskHasProjectConnection';
|
|
55371
|
+
edges: Array<Maybe<GraphStoreBatchRiskHasProjectEdge>>;
|
|
55372
|
+
nodes: Array<Maybe<GraphStoreBatchRiskHasProjectNode>>;
|
|
55373
|
+
pageInfo: PageInfo;
|
|
55374
|
+
};
|
|
55375
|
+
export declare type GraphStoreBatchRiskHasProjectEdge = {
|
|
55376
|
+
__typename?: 'GraphStoreBatchRiskHasProjectEdge';
|
|
55377
|
+
node: GraphStoreBatchRiskHasProjectInnerConnection;
|
|
55378
|
+
};
|
|
55379
|
+
export declare type GraphStoreBatchRiskHasProjectEndNode = {
|
|
55380
|
+
__typename?: 'GraphStoreBatchRiskHasProjectEndNode';
|
|
55381
|
+
data?: Maybe<GraphStoreBatchRiskHasProjectEndUnion>;
|
|
55382
|
+
id: Scalars['ID']['output'];
|
|
55383
|
+
};
|
|
55384
|
+
export declare type GraphStoreBatchRiskHasProjectEndUnion = JiraAlignAggProject | JiraIssue | TownsquareProject;
|
|
55385
|
+
export declare type GraphStoreBatchRiskHasProjectInnerConnection = {
|
|
55386
|
+
__typename?: 'GraphStoreBatchRiskHasProjectInnerConnection';
|
|
55387
|
+
edges: Array<Maybe<GraphStoreBatchRiskHasProjectInnerEdge>>;
|
|
55388
|
+
nodes: Array<Maybe<GraphStoreBatchRiskHasProjectNode>>;
|
|
55389
|
+
requestedId: Scalars['ID']['output'];
|
|
55390
|
+
};
|
|
55391
|
+
export declare type GraphStoreBatchRiskHasProjectInnerEdge = {
|
|
55392
|
+
__typename?: 'GraphStoreBatchRiskHasProjectInnerEdge';
|
|
55393
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
55394
|
+
node: GraphStoreBatchRiskHasProjectNode;
|
|
55395
|
+
};
|
|
55396
|
+
export declare type GraphStoreBatchRiskHasProjectNode = Node & {
|
|
55397
|
+
__typename?: 'GraphStoreBatchRiskHasProjectNode';
|
|
55398
|
+
createdAt: Scalars['DateTime']['output'];
|
|
55399
|
+
from: GraphStoreBatchRiskHasProjectStartNode;
|
|
55400
|
+
id: Scalars['ID']['output'];
|
|
55401
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
55402
|
+
to: GraphStoreBatchRiskHasProjectEndNode;
|
|
55403
|
+
};
|
|
55404
|
+
export declare type GraphStoreBatchRiskHasProjectStartNode = {
|
|
55405
|
+
__typename?: 'GraphStoreBatchRiskHasProjectStartNode';
|
|
55406
|
+
data?: Maybe<GraphStoreBatchRiskHasProjectStartUnion>;
|
|
55407
|
+
id: Scalars['ID']['output'];
|
|
55408
|
+
};
|
|
55409
|
+
export declare type GraphStoreBatchRiskHasProjectStartUnion = MercuryRisk;
|
|
55063
55410
|
export declare type GraphStoreBatchSecurityContainerAssociatedToVulnerabilityConnection = HasPageInfo & {
|
|
55064
55411
|
__typename?: 'GraphStoreBatchSecurityContainerAssociatedToVulnerabilityConnection';
|
|
55065
55412
|
edges: Array<Maybe<GraphStoreBatchSecurityContainerAssociatedToVulnerabilityEdge>>;
|
|
@@ -56137,6 +56484,10 @@ export declare enum GraphStoreCypherQueryV2BatchVersionEnum {
|
|
|
56137
56484
|
V2 = "V2",
|
|
56138
56485
|
V3 = "V3"
|
|
56139
56486
|
}
|
|
56487
|
+
export declare type GraphStoreCypherQueryV2BoolListObject = {
|
|
56488
|
+
__typename?: 'GraphStoreCypherQueryV2BoolListObject';
|
|
56489
|
+
values: Array<Scalars['Boolean']['output']>;
|
|
56490
|
+
};
|
|
56140
56491
|
export declare type GraphStoreCypherQueryV2BooleanObject = {
|
|
56141
56492
|
__typename?: 'GraphStoreCypherQueryV2BooleanObject';
|
|
56142
56493
|
value: Scalars['Boolean']['output'];
|
|
@@ -56157,6 +56508,10 @@ export declare type GraphStoreCypherQueryV2Edge = {
|
|
|
56157
56508
|
cursor?: Maybe<Scalars['String']['output']>;
|
|
56158
56509
|
node: GraphStoreCypherQueryV2Node;
|
|
56159
56510
|
};
|
|
56511
|
+
export declare type GraphStoreCypherQueryV2FloatListObject = {
|
|
56512
|
+
__typename?: 'GraphStoreCypherQueryV2FloatListObject';
|
|
56513
|
+
values: Array<Scalars['Float']['output']>;
|
|
56514
|
+
};
|
|
56160
56515
|
export declare type GraphStoreCypherQueryV2FloatObject = {
|
|
56161
56516
|
__typename?: 'GraphStoreCypherQueryV2FloatObject';
|
|
56162
56517
|
value: Scalars['Float']['output'];
|
|
@@ -56181,7 +56536,7 @@ export declare type GraphStoreCypherQueryV2Path = {
|
|
|
56181
56536
|
__typename?: 'GraphStoreCypherQueryV2Path';
|
|
56182
56537
|
elements: Array<Scalars['String']['output']>;
|
|
56183
56538
|
};
|
|
56184
|
-
export declare type GraphStoreCypherQueryV2ResultRowItemValueUnion = GraphStoreCypherQueryV2AriNode | GraphStoreCypherQueryV2BooleanObject | GraphStoreCypherQueryV2FloatObject | GraphStoreCypherQueryV2IntListObject | GraphStoreCypherQueryV2IntObject | GraphStoreCypherQueryV2NodeList | GraphStoreCypherQueryV2Path | GraphStoreCypherQueryV2StringListObject | GraphStoreCypherQueryV2StringObject | GraphStoreCypherQueryV2TimestampListObject | GraphStoreCypherQueryV2TimestampObject;
|
|
56539
|
+
export declare type GraphStoreCypherQueryV2ResultRowItemValueUnion = GraphStoreCypherQueryV2AriNode | GraphStoreCypherQueryV2BoolListObject | GraphStoreCypherQueryV2BooleanObject | GraphStoreCypherQueryV2FloatListObject | GraphStoreCypherQueryV2FloatObject | GraphStoreCypherQueryV2IntListObject | GraphStoreCypherQueryV2IntObject | GraphStoreCypherQueryV2NodeList | GraphStoreCypherQueryV2Path | GraphStoreCypherQueryV2StringListObject | GraphStoreCypherQueryV2StringObject | GraphStoreCypherQueryV2TimestampListObject | GraphStoreCypherQueryV2TimestampObject;
|
|
56185
56540
|
export declare type GraphStoreCypherQueryV2StringListObject = {
|
|
56186
56541
|
__typename?: 'GraphStoreCypherQueryV2StringListObject';
|
|
56187
56542
|
values: Array<Scalars['String']['output']>;
|
|
@@ -61459,6 +61814,9 @@ export declare type GraphStoreProjectLinksToEntitySortInput = {
|
|
|
61459
61814
|
export declare type GraphStorePullRequestLinksToServiceSortInput = {
|
|
61460
61815
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
61461
61816
|
};
|
|
61817
|
+
export declare type GraphStoreRiskHasProjectSortInput = {
|
|
61818
|
+
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
61819
|
+
};
|
|
61462
61820
|
export declare type GraphStoreScorecardHasAtlasGoalSortInput = {
|
|
61463
61821
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
61464
61822
|
};
|
|
@@ -67514,6 +67872,34 @@ export declare type GraphStoreSimplifiedPullRequestLinksToServiceInverseEdge = {
|
|
|
67514
67872
|
};
|
|
67515
67873
|
export declare type GraphStoreSimplifiedPullRequestLinksToServiceInverseUnion = DevOpsPullRequestDetails | ExternalPullRequest;
|
|
67516
67874
|
export declare type GraphStoreSimplifiedPullRequestLinksToServiceUnion = DevOpsService;
|
|
67875
|
+
export declare type GraphStoreSimplifiedRiskHasProjectConnection = HasPageInfo & {
|
|
67876
|
+
__typename?: 'GraphStoreSimplifiedRiskHasProjectConnection';
|
|
67877
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedRiskHasProjectEdge>>>;
|
|
67878
|
+
pageInfo: PageInfo;
|
|
67879
|
+
};
|
|
67880
|
+
export declare type GraphStoreSimplifiedRiskHasProjectEdge = {
|
|
67881
|
+
__typename?: 'GraphStoreSimplifiedRiskHasProjectEdge';
|
|
67882
|
+
createdAt: Scalars['DateTime']['output'];
|
|
67883
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
67884
|
+
id: Scalars['ID']['output'];
|
|
67885
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
67886
|
+
node?: Maybe<GraphStoreSimplifiedRiskHasProjectUnion>;
|
|
67887
|
+
};
|
|
67888
|
+
export declare type GraphStoreSimplifiedRiskHasProjectInverseConnection = HasPageInfo & {
|
|
67889
|
+
__typename?: 'GraphStoreSimplifiedRiskHasProjectInverseConnection';
|
|
67890
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedRiskHasProjectInverseEdge>>>;
|
|
67891
|
+
pageInfo: PageInfo;
|
|
67892
|
+
};
|
|
67893
|
+
export declare type GraphStoreSimplifiedRiskHasProjectInverseEdge = {
|
|
67894
|
+
__typename?: 'GraphStoreSimplifiedRiskHasProjectInverseEdge';
|
|
67895
|
+
createdAt: Scalars['DateTime']['output'];
|
|
67896
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
67897
|
+
id: Scalars['ID']['output'];
|
|
67898
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
67899
|
+
node?: Maybe<GraphStoreSimplifiedRiskHasProjectInverseUnion>;
|
|
67900
|
+
};
|
|
67901
|
+
export declare type GraphStoreSimplifiedRiskHasProjectInverseUnion = MercuryRisk;
|
|
67902
|
+
export declare type GraphStoreSimplifiedRiskHasProjectUnion = JiraAlignAggProject | JiraIssue | TownsquareProject;
|
|
67517
67903
|
export declare type GraphStoreSimplifiedScorecardHasAtlasGoalConnection = HasPageInfo & {
|
|
67518
67904
|
__typename?: 'GraphStoreSimplifiedScorecardHasAtlasGoalConnection';
|
|
67519
67905
|
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedScorecardHasAtlasGoalEdge>>>;
|
|
@@ -72828,7 +73214,6 @@ export declare type GraphStoreUserAttendedCalendarEventConditionalFilterInput =
|
|
|
72828
73214
|
createdAt?: InputMaybe<GraphStoreDateFilterInput>;
|
|
72829
73215
|
fromAti?: InputMaybe<GraphStoreAtiFilterInput>;
|
|
72830
73216
|
lastModified?: InputMaybe<GraphStoreDateFilterInput>;
|
|
72831
|
-
relationship_isRecurringEvent?: InputMaybe<GraphStoreBooleanFilterInput>;
|
|
72832
73217
|
relationship_rsvpStatus?: InputMaybe<GraphStoreUserAttendedCalendarEventRsvpStatusFilterInput>;
|
|
72833
73218
|
toAti?: InputMaybe<GraphStoreAtiFilterInput>;
|
|
72834
73219
|
to_eventEndTime?: InputMaybe<GraphStoreLongFilterInput>;
|
|
@@ -72854,7 +73239,6 @@ export declare type GraphStoreUserAttendedCalendarEventSortInput = {
|
|
|
72854
73239
|
createdAt?: InputMaybe<GraphStoreSortInput>;
|
|
72855
73240
|
fromAti?: InputMaybe<GraphStoreSortInput>;
|
|
72856
73241
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
72857
|
-
relationship_isRecurringEvent?: InputMaybe<GraphStoreSortInput>;
|
|
72858
73242
|
relationship_rsvpStatus?: InputMaybe<GraphStoreSortInput>;
|
|
72859
73243
|
toAti?: InputMaybe<GraphStoreSortInput>;
|
|
72860
73244
|
to_eventEndTime?: InputMaybe<GraphStoreSortInput>;
|
|
@@ -73804,6 +74188,8 @@ export declare type GraphStoreV2 = {
|
|
|
73804
74188
|
focusFocusAreaHasThirdPartyDocumentInverse?: Maybe<GraphStoreV2SimplifiedFocusFocusAreaHasThirdPartyDocumentInverseConnection>;
|
|
73805
74189
|
focusFocusAreaHasWorkEntity?: Maybe<GraphStoreV2SimplifiedFocusFocusAreaHasWorkEntityConnection>;
|
|
73806
74190
|
focusFocusAreaHasWorkEntityInverse?: Maybe<GraphStoreV2SimplifiedFocusFocusAreaHasWorkEntityInverseConnection>;
|
|
74191
|
+
focusRiskHasWorkEntity?: Maybe<GraphStoreV2SimplifiedFocusRiskHasWorkEntityConnection>;
|
|
74192
|
+
focusRiskHasWorkEntityInverse?: Maybe<GraphStoreV2SimplifiedFocusRiskHasWorkEntityInverseConnection>;
|
|
73807
74193
|
focusStrategicPlanContributesToFocusFocusArea?: Maybe<GraphStoreV2SimplifiedFocusStrategicPlanContributesToFocusFocusAreaConnection>;
|
|
73808
74194
|
focusStrategicPlanContributesToFocusFocusAreaInverse?: Maybe<GraphStoreV2SimplifiedFocusStrategicPlanContributesToFocusFocusAreaInverseConnection>;
|
|
73809
74195
|
focusStrategicPlanHasFocusStrategicPlanScenario?: Maybe<GraphStoreV2SimplifiedFocusStrategicPlanHasFocusStrategicPlanScenarioConnection>;
|
|
@@ -77508,6 +77894,20 @@ export declare type GraphStoreV2FocusFocusAreaHasWorkEntityInverseArgs = {
|
|
|
77508
77894
|
id: Scalars['ID']['input'];
|
|
77509
77895
|
sort?: InputMaybe<GraphStoreV2FocusFocusAreaHasWorkEntitySortInput>;
|
|
77510
77896
|
};
|
|
77897
|
+
export declare type GraphStoreV2FocusRiskHasWorkEntityArgs = {
|
|
77898
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
77899
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
77900
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
77901
|
+
id: Scalars['ID']['input'];
|
|
77902
|
+
sort?: InputMaybe<GraphStoreV2FocusRiskHasWorkEntitySortInput>;
|
|
77903
|
+
};
|
|
77904
|
+
export declare type GraphStoreV2FocusRiskHasWorkEntityInverseArgs = {
|
|
77905
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
77906
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
77907
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
77908
|
+
id: Scalars['ID']['input'];
|
|
77909
|
+
sort?: InputMaybe<GraphStoreV2FocusRiskHasWorkEntitySortInput>;
|
|
77910
|
+
};
|
|
77511
77911
|
export declare type GraphStoreV2FocusStrategicPlanContributesToFocusFocusAreaArgs = {
|
|
77512
77912
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
77513
77913
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -79879,6 +80279,10 @@ export declare type GraphStoreV2CypherQueryV2AriNode = {
|
|
|
79879
80279
|
id: Scalars['ID']['output'];
|
|
79880
80280
|
};
|
|
79881
80281
|
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;
|
|
80282
|
+
export declare type GraphStoreV2CypherQueryV2BoolListObject = {
|
|
80283
|
+
__typename?: 'GraphStoreV2CypherQueryV2BoolListObject';
|
|
80284
|
+
values: Array<Scalars['Boolean']['output']>;
|
|
80285
|
+
};
|
|
79882
80286
|
export declare type GraphStoreV2CypherQueryV2BooleanObject = {
|
|
79883
80287
|
__typename?: 'GraphStoreV2CypherQueryV2BooleanObject';
|
|
79884
80288
|
value: Scalars['Boolean']['output'];
|
|
@@ -79899,6 +80303,10 @@ export declare type GraphStoreV2CypherQueryV2Edge = {
|
|
|
79899
80303
|
cursor?: Maybe<Scalars['String']['output']>;
|
|
79900
80304
|
node: GraphStoreV2CypherQueryV2Node;
|
|
79901
80305
|
};
|
|
80306
|
+
export declare type GraphStoreV2CypherQueryV2FloatListObject = {
|
|
80307
|
+
__typename?: 'GraphStoreV2CypherQueryV2FloatListObject';
|
|
80308
|
+
values: Array<Scalars['Float']['output']>;
|
|
80309
|
+
};
|
|
79902
80310
|
export declare type GraphStoreV2CypherQueryV2FloatObject = {
|
|
79903
80311
|
__typename?: 'GraphStoreV2CypherQueryV2FloatObject';
|
|
79904
80312
|
value: Scalars['Float']['output'];
|
|
@@ -79919,7 +80327,7 @@ export declare type GraphStoreV2CypherQueryV2NodeList = {
|
|
|
79919
80327
|
__typename?: 'GraphStoreV2CypherQueryV2NodeList';
|
|
79920
80328
|
nodes: Array<GraphStoreV2CypherQueryV2AriNode>;
|
|
79921
80329
|
};
|
|
79922
|
-
export declare type GraphStoreV2CypherQueryV2ResultRowItemValueUnion = GraphStoreV2CypherQueryV2AriNode | GraphStoreV2CypherQueryV2BooleanObject | GraphStoreV2CypherQueryV2FloatObject | GraphStoreV2CypherQueryV2IntListObject | GraphStoreV2CypherQueryV2IntObject | GraphStoreV2CypherQueryV2NodeList | GraphStoreV2CypherQueryV2StringListObject | GraphStoreV2CypherQueryV2StringObject | GraphStoreV2CypherQueryV2TimestampListObject | GraphStoreV2CypherQueryV2TimestampObject;
|
|
80330
|
+
export declare type GraphStoreV2CypherQueryV2ResultRowItemValueUnion = GraphStoreV2CypherQueryV2AriNode | GraphStoreV2CypherQueryV2BoolListObject | GraphStoreV2CypherQueryV2BooleanObject | GraphStoreV2CypherQueryV2FloatListObject | GraphStoreV2CypherQueryV2FloatObject | GraphStoreV2CypherQueryV2IntListObject | GraphStoreV2CypherQueryV2IntObject | GraphStoreV2CypherQueryV2NodeList | GraphStoreV2CypherQueryV2StringListObject | GraphStoreV2CypherQueryV2StringObject | GraphStoreV2CypherQueryV2TimestampListObject | GraphStoreV2CypherQueryV2TimestampObject;
|
|
79923
80331
|
export declare type GraphStoreV2CypherQueryV2StringListObject = {
|
|
79924
80332
|
__typename?: 'GraphStoreV2CypherQueryV2StringListObject';
|
|
79925
80333
|
values: Array<Scalars['String']['output']>;
|
|
@@ -80448,7 +80856,6 @@ export declare type GraphStoreV2ExternalUserAttendedExternalCalendarEventConditi
|
|
|
80448
80856
|
createdAt?: InputMaybe<GraphStoreDateFilterInput>;
|
|
80449
80857
|
fromAti?: InputMaybe<GraphStoreAtiFilterInput>;
|
|
80450
80858
|
lastModified?: InputMaybe<GraphStoreDateFilterInput>;
|
|
80451
|
-
relationship_isRecurringEvent?: InputMaybe<GraphStoreBooleanFilterInput>;
|
|
80452
80859
|
relationship_rsvpStatus?: InputMaybe<GraphStoreV2ExternalUserAttendedExternalCalendarEventRsvpStatusFilterInput>;
|
|
80453
80860
|
toAti?: InputMaybe<GraphStoreAtiFilterInput>;
|
|
80454
80861
|
to_eventEndTime?: InputMaybe<GraphStoreLongFilterInput>;
|
|
@@ -80474,7 +80881,6 @@ export declare type GraphStoreV2ExternalUserAttendedExternalCalendarEventSortInp
|
|
|
80474
80881
|
createdAt?: InputMaybe<GraphStoreSortInput>;
|
|
80475
80882
|
fromAti?: InputMaybe<GraphStoreSortInput>;
|
|
80476
80883
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
80477
|
-
relationship_isRecurringEvent?: InputMaybe<GraphStoreSortInput>;
|
|
80478
80884
|
relationship_rsvpStatus?: InputMaybe<GraphStoreSortInput>;
|
|
80479
80885
|
toAti?: InputMaybe<GraphStoreSortInput>;
|
|
80480
80886
|
to_eventEndTime?: InputMaybe<GraphStoreSortInput>;
|
|
@@ -80710,6 +81116,9 @@ export declare type GraphStoreV2FocusFocusAreaHasThirdPartyDocumentSortInput = {
|
|
|
80710
81116
|
export declare type GraphStoreV2FocusFocusAreaHasWorkEntitySortInput = {
|
|
80711
81117
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
80712
81118
|
};
|
|
81119
|
+
export declare type GraphStoreV2FocusRiskHasWorkEntitySortInput = {
|
|
81120
|
+
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
81121
|
+
};
|
|
80713
81122
|
export declare type GraphStoreV2FocusStrategicPlanContributesToFocusFocusAreaSortInput = {
|
|
80714
81123
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
80715
81124
|
};
|
|
@@ -89291,6 +89700,34 @@ export declare type GraphStoreV2SimplifiedFocusFocusAreaHasWorkEntityInverseEdge
|
|
|
89291
89700
|
};
|
|
89292
89701
|
export declare type GraphStoreV2SimplifiedFocusFocusAreaHasWorkEntityInverseUnion = MercuryFocusArea;
|
|
89293
89702
|
export declare type GraphStoreV2SimplifiedFocusFocusAreaHasWorkEntityUnion = JiraAlignAggProject | JiraIssue | TownsquareProject;
|
|
89703
|
+
export declare type GraphStoreV2SimplifiedFocusRiskHasWorkEntityConnection = HasPageInfo & {
|
|
89704
|
+
__typename?: 'GraphStoreV2SimplifiedFocusRiskHasWorkEntityConnection';
|
|
89705
|
+
edges?: Maybe<Array<Maybe<GraphStoreV2SimplifiedFocusRiskHasWorkEntityEdge>>>;
|
|
89706
|
+
pageInfo: PageInfo;
|
|
89707
|
+
};
|
|
89708
|
+
export declare type GraphStoreV2SimplifiedFocusRiskHasWorkEntityEdge = {
|
|
89709
|
+
__typename?: 'GraphStoreV2SimplifiedFocusRiskHasWorkEntityEdge';
|
|
89710
|
+
createdAt: Scalars['DateTime']['output'];
|
|
89711
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
89712
|
+
id: Scalars['ID']['output'];
|
|
89713
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
89714
|
+
node?: Maybe<GraphStoreV2SimplifiedFocusRiskHasWorkEntityUnion>;
|
|
89715
|
+
};
|
|
89716
|
+
export declare type GraphStoreV2SimplifiedFocusRiskHasWorkEntityInverseConnection = HasPageInfo & {
|
|
89717
|
+
__typename?: 'GraphStoreV2SimplifiedFocusRiskHasWorkEntityInverseConnection';
|
|
89718
|
+
edges?: Maybe<Array<Maybe<GraphStoreV2SimplifiedFocusRiskHasWorkEntityInverseEdge>>>;
|
|
89719
|
+
pageInfo: PageInfo;
|
|
89720
|
+
};
|
|
89721
|
+
export declare type GraphStoreV2SimplifiedFocusRiskHasWorkEntityInverseEdge = {
|
|
89722
|
+
__typename?: 'GraphStoreV2SimplifiedFocusRiskHasWorkEntityInverseEdge';
|
|
89723
|
+
createdAt: Scalars['DateTime']['output'];
|
|
89724
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
89725
|
+
id: Scalars['ID']['output'];
|
|
89726
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
89727
|
+
node?: Maybe<GraphStoreV2SimplifiedFocusRiskHasWorkEntityInverseUnion>;
|
|
89728
|
+
};
|
|
89729
|
+
export declare type GraphStoreV2SimplifiedFocusRiskHasWorkEntityInverseUnion = MercuryRisk;
|
|
89730
|
+
export declare type GraphStoreV2SimplifiedFocusRiskHasWorkEntityUnion = JiraAlignAggProject | JiraIssue | TownsquareProject;
|
|
89294
89731
|
export declare type GraphStoreV2SimplifiedFocusStrategicPlanContributesToFocusFocusAreaConnection = HasPageInfo & {
|
|
89295
89732
|
__typename?: 'GraphStoreV2SimplifiedFocusStrategicPlanContributesToFocusFocusAreaConnection';
|
|
89296
89733
|
edges?: Maybe<Array<Maybe<GraphStoreV2SimplifiedFocusStrategicPlanContributesToFocusFocusAreaEdge>>>;
|
|
@@ -92640,6 +93077,7 @@ export declare type GrowthUnifiedProfileJiraOnboardingContext = {
|
|
|
92640
93077
|
issueTypes?: Maybe<Array<Maybe<GrowthUnifiedProfileIssueType>>>;
|
|
92641
93078
|
jiraFamiliarity?: Maybe<GrowthUnifiedProfileJiraFamiliarity>;
|
|
92642
93079
|
jobsToBeDone?: Maybe<Array<Maybe<GrowthUnifiedProfileJtbd>>>;
|
|
93080
|
+
matureExampleProjectIds?: Maybe<Array<Maybe<Scalars['String']['output']>>>;
|
|
92643
93081
|
persona?: Maybe<Scalars['String']['output']>;
|
|
92644
93082
|
projectLandingSelection?: Maybe<GrowthUnifiedProfileOnboardingContextProjectLandingSelection>;
|
|
92645
93083
|
projectName?: Maybe<Scalars['String']['output']>;
|
|
@@ -92653,6 +93091,7 @@ export declare type GrowthUnifiedProfileJiraOnboardingContextInput = {
|
|
|
92653
93091
|
issueTypes?: InputMaybe<Array<InputMaybe<GrowthUnifiedProfileIssueTypeInput>>>;
|
|
92654
93092
|
jiraFamiliarity?: InputMaybe<GrowthUnifiedProfileJiraFamiliarity>;
|
|
92655
93093
|
jobsToBeDone?: InputMaybe<Array<InputMaybe<GrowthUnifiedProfileJtbd>>>;
|
|
93094
|
+
matureExampleProjectIds?: InputMaybe<Array<InputMaybe<Scalars['String']['input']>>>;
|
|
92656
93095
|
persona?: InputMaybe<Scalars['String']['input']>;
|
|
92657
93096
|
projectLandingSelection?: InputMaybe<GrowthUnifiedProfileOnboardingContextProjectLandingSelection>;
|
|
92658
93097
|
projectName?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -92781,6 +93220,12 @@ export declare type GrowthUnifiedProfilePaidFeatureUsageResult = {
|
|
|
92781
93220
|
featureName: Scalars['String']['output'];
|
|
92782
93221
|
featureSupportedEdition: Array<GrowthUnifiedProfileProductEdition>;
|
|
92783
93222
|
featureType: GrowthUnifiedProfileFeatureType;
|
|
93223
|
+
usageSummary: Array<GrowthUnifiedProfilePaidFeatureUsageSummary>;
|
|
93224
|
+
};
|
|
93225
|
+
export declare type GrowthUnifiedProfilePaidFeatureUsageSummary = {
|
|
93226
|
+
__typename?: 'GrowthUnifiedProfilePaidFeatureUsageSummary';
|
|
93227
|
+
featureEngagementLevel: GrowthUnifiedProfileFeatureEngagementLevel;
|
|
93228
|
+
usageCount: Scalars['Int']['output'];
|
|
92784
93229
|
};
|
|
92785
93230
|
export declare enum GrowthUnifiedProfileProduct {
|
|
92786
93231
|
Compass = "compass",
|
|
@@ -98523,6 +98968,26 @@ export declare type JiraBoardViewSettings = {
|
|
|
98523
98968
|
swimlanesSupported?: InputMaybe<Scalars['Boolean']['input']>;
|
|
98524
98969
|
textSearch?: InputMaybe<Scalars['String']['input']>;
|
|
98525
98970
|
};
|
|
98971
|
+
export declare type JiraBoardViewSettingsCardOption = {
|
|
98972
|
+
__typename?: 'JiraBoardViewSettingsCardOption';
|
|
98973
|
+
enabled: Scalars['Boolean']['output'];
|
|
98974
|
+
id: Scalars['ID']['output'];
|
|
98975
|
+
};
|
|
98976
|
+
export declare type JiraBoardViewSettingsCardOptionEdge = {
|
|
98977
|
+
__typename?: 'JiraBoardViewSettingsCardOptionEdge';
|
|
98978
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
98979
|
+
node?: Maybe<JiraBoardViewSettingsCardOption>;
|
|
98980
|
+
};
|
|
98981
|
+
export declare enum JiraBoardViewSettingsGroupBy {
|
|
98982
|
+
Assignee = "ASSIGNEE",
|
|
98983
|
+
Epic = "EPIC",
|
|
98984
|
+
None = "NONE",
|
|
98985
|
+
Projects = "PROJECTS",
|
|
98986
|
+
Queries = "QUERIES",
|
|
98987
|
+
Spaces = "SPACES",
|
|
98988
|
+
Stories = "STORIES",
|
|
98989
|
+
Unset = "UNSET"
|
|
98990
|
+
}
|
|
98526
98991
|
export declare type JiraBoardViewStatus = {
|
|
98527
98992
|
__typename?: 'JiraBoardViewStatus';
|
|
98528
98993
|
associatedIssueTypes?: Maybe<JiraIssueTypeConnection>;
|
|
@@ -104866,6 +105331,7 @@ export declare type JiraIssueFieldConfig = Node & {
|
|
|
104866
105331
|
searcherTemplate?: Maybe<JiraFieldSearcherTemplate>;
|
|
104867
105332
|
searcherTemplateOptions?: Maybe<JiraFieldSearcherTemplateConnection>;
|
|
104868
105333
|
translations?: Maybe<Array<JiraFieldTranslation>>;
|
|
105334
|
+
translationsLanguagesAvailableToAdd?: Maybe<Array<Scalars['String']['output']>>;
|
|
104869
105335
|
trashedByUser?: Maybe<User>;
|
|
104870
105336
|
trashedTimestamp?: Maybe<Scalars['Long']['output']>;
|
|
104871
105337
|
type: JiraConfigFieldType;
|
|
@@ -106479,6 +106945,16 @@ export declare type JiraJourneyItemConfigurationInput = {
|
|
|
106479
106945
|
statusDependencyConfiguration?: InputMaybe<JiraJourneyStatusDependencyConfigurationInput>;
|
|
106480
106946
|
workItemConfiguration?: InputMaybe<JiraJourneyWorkItemConfigurationInput>;
|
|
106481
106947
|
};
|
|
106948
|
+
export declare type JiraJourneyItemCustomizationSettingsInput = {
|
|
106949
|
+
workItemCustomizationSettings?: InputMaybe<JiraJourneyWorkItemCustomizationSettingsInput>;
|
|
106950
|
+
};
|
|
106951
|
+
export declare type JiraJourneyItemUpdateCustomizationSettingsInput = {
|
|
106952
|
+
customizationSettings?: InputMaybe<JiraJourneyItemCustomizationSettingsInput>;
|
|
106953
|
+
etag: Scalars['String']['input'];
|
|
106954
|
+
journeyId: Scalars['ID']['input'];
|
|
106955
|
+
journeyItemId: Scalars['ID']['input'];
|
|
106956
|
+
journeyVersion: Scalars['Long']['input'];
|
|
106957
|
+
};
|
|
106482
106958
|
export declare enum JiraJourneyItemUpdatedChannel {
|
|
106483
106959
|
JourneyFrontend = "JOURNEY_FRONTEND",
|
|
106484
106960
|
Rovo = "ROVO"
|
|
@@ -106605,6 +107081,7 @@ export declare type JiraJourneyWorkItem = JiraJourneyItemCommon & {
|
|
|
106605
107081
|
__typename?: 'JiraJourneyWorkItem';
|
|
106606
107082
|
associatedAutomationRules?: Maybe<Array<JiraJourneyBuilderAssociatedAutomationRule>>;
|
|
106607
107083
|
conditions?: Maybe<JiraJourneyItemConditions>;
|
|
107084
|
+
customizationSettings?: Maybe<JiraJourneyWorkItemCustomizationSettings>;
|
|
106608
107085
|
fieldValues?: Maybe<Array<JiraJourneyWorkItemFieldValueKeyValuePair>>;
|
|
106609
107086
|
id: Scalars['ID']['output'];
|
|
106610
107087
|
issueType?: Maybe<JiraIssueType>;
|
|
@@ -106624,6 +107101,13 @@ export declare type JiraJourneyWorkItemConfigurationInput = {
|
|
|
106624
107101
|
projectId?: InputMaybe<Scalars['ID']['input']>;
|
|
106625
107102
|
requestTypeId?: InputMaybe<Scalars['ID']['input']>;
|
|
106626
107103
|
};
|
|
107104
|
+
export declare type JiraJourneyWorkItemCustomizationSettings = {
|
|
107105
|
+
__typename?: 'JiraJourneyWorkItemCustomizationSettings';
|
|
107106
|
+
isImmutable?: Maybe<Scalars['Boolean']['output']>;
|
|
107107
|
+
};
|
|
107108
|
+
export declare type JiraJourneyWorkItemCustomizationSettingsInput = {
|
|
107109
|
+
isImmutable?: InputMaybe<Scalars['Boolean']['input']>;
|
|
107110
|
+
};
|
|
106627
107111
|
export declare type JiraJourneyWorkItemFieldValueKeyValuePair = {
|
|
106628
107112
|
__typename?: 'JiraJourneyWorkItemFieldValueKeyValuePair';
|
|
106629
107113
|
key?: Maybe<Scalars['String']['output']>;
|
|
@@ -107291,6 +107775,30 @@ export declare enum JiraJqlViewContext {
|
|
|
107291
107775
|
Jwm = "JWM",
|
|
107292
107776
|
ShadowRequest = "SHADOW_REQUEST"
|
|
107293
107777
|
}
|
|
107778
|
+
export declare type JiraJswBoardViewSettings = {
|
|
107779
|
+
__typename?: 'JiraJswBoardViewSettings';
|
|
107780
|
+
cardOptions?: Maybe<JiraJswBoardViewSettingsCardOptionConnection>;
|
|
107781
|
+
groupBy?: Maybe<JiraBoardViewSettingsGroupBy>;
|
|
107782
|
+
quickFilterToggle?: Maybe<Scalars['Boolean']['output']>;
|
|
107783
|
+
workSuggestionToggle?: Maybe<Scalars['Boolean']['output']>;
|
|
107784
|
+
};
|
|
107785
|
+
export declare type JiraJswBoardViewSettingsCardOptionsArgs = {
|
|
107786
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
107787
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
107788
|
+
};
|
|
107789
|
+
export declare type JiraJswBoardViewSettingsCardOptionConnection = {
|
|
107790
|
+
__typename?: 'JiraJswBoardViewSettingsCardOptionConnection';
|
|
107791
|
+
edges?: Maybe<Array<Maybe<JiraBoardViewSettingsCardOptionEdge>>>;
|
|
107792
|
+
errors?: Maybe<Array<QueryError>>;
|
|
107793
|
+
pageInfo?: Maybe<PageInfo>;
|
|
107794
|
+
};
|
|
107795
|
+
export declare type JiraJswBoardViewSettingsCardOptionInput = {
|
|
107796
|
+
enabled: Scalars['Boolean']['input'];
|
|
107797
|
+
id: Scalars['ID']['input'];
|
|
107798
|
+
};
|
|
107799
|
+
export declare type JiraJswBoardViewSettingsQueryInput = {
|
|
107800
|
+
viewId: Scalars['ID']['input'];
|
|
107801
|
+
};
|
|
107294
107802
|
export declare type JiraJwmField = {
|
|
107295
107803
|
__typename?: 'JiraJwmField';
|
|
107296
107804
|
encryptedData?: Maybe<Scalars['String']['output']>;
|
|
@@ -108157,6 +108665,7 @@ export declare type JiraMutation = {
|
|
|
108157
108665
|
updateJiraJourneyConfiguration?: Maybe<JiraUpdateJourneyConfigurationPayload>;
|
|
108158
108666
|
updateJiraJourneyCustomizationSettings?: Maybe<JiraUpdateJourneyConfigurationPayload>;
|
|
108159
108667
|
updateJiraJourneyItem?: Maybe<JiraUpdateJourneyConfigurationPayload>;
|
|
108668
|
+
updateJiraJourneyItemCustomizationSettings?: Maybe<JiraUpdateJourneyConfigurationPayload>;
|
|
108160
108669
|
updateJiraJourneyName?: Maybe<JiraUpdateJourneyConfigurationPayload>;
|
|
108161
108670
|
updateJiraJourneyParentIssueConfiguration?: Maybe<JiraUpdateJourneyConfigurationPayload>;
|
|
108162
108671
|
updateJiraJourneyParentTriggerConditions?: Maybe<JiraUpdateJourneyConfigurationPayload>;
|
|
@@ -108794,6 +109303,10 @@ export declare type JiraMutationUpdateJiraJourneyItemArgs = {
|
|
|
108794
109303
|
cloudId: Scalars['ID']['input'];
|
|
108795
109304
|
input: JiraUpdateJourneyItemInput;
|
|
108796
109305
|
};
|
|
109306
|
+
export declare type JiraMutationUpdateJiraJourneyItemCustomizationSettingsArgs = {
|
|
109307
|
+
cloudId: Scalars['ID']['input'];
|
|
109308
|
+
input: JiraJourneyItemUpdateCustomizationSettingsInput;
|
|
109309
|
+
};
|
|
108797
109310
|
export declare type JiraMutationUpdateJiraJourneyNameArgs = {
|
|
108798
109311
|
cloudId: Scalars['ID']['input'];
|
|
108799
109312
|
input: JiraUpdateJourneyNameInput;
|
|
@@ -109101,7 +109614,6 @@ export declare enum JiraNavigationItemTypeKey {
|
|
|
109101
109614
|
Requests = "REQUESTS",
|
|
109102
109615
|
Security = "SECURITY",
|
|
109103
109616
|
Shortcuts = "SHORTCUTS",
|
|
109104
|
-
Staffing = "STAFFING",
|
|
109105
109617
|
Summary = "SUMMARY",
|
|
109106
109618
|
Teams = "TEAMS",
|
|
109107
109619
|
Timeline = "TIMELINE"
|
|
@@ -115656,6 +116168,24 @@ export declare type JiraSetIssueSearchViewLayoutPayload = Payload & {
|
|
|
115656
116168
|
errors?: Maybe<Array<MutationError>>;
|
|
115657
116169
|
success: Scalars['Boolean']['output'];
|
|
115658
116170
|
};
|
|
116171
|
+
export declare type JiraSetJswBoardViewSettingCardOptionsInput = {
|
|
116172
|
+
cardOptions: Array<JiraJswBoardViewSettingsCardOptionInput>;
|
|
116173
|
+
viewId: Scalars['ID']['input'];
|
|
116174
|
+
};
|
|
116175
|
+
export declare type JiraSetJswBoardViewSettingGroupByInput = {
|
|
116176
|
+
groupBy: JiraBoardViewSettingsGroupBy;
|
|
116177
|
+
viewId: Scalars['ID']['input'];
|
|
116178
|
+
};
|
|
116179
|
+
export declare type JiraSetJswBoardViewSettingsPayload = Payload & {
|
|
116180
|
+
__typename?: 'JiraSetJswBoardViewSettingsPayload';
|
|
116181
|
+
errors?: Maybe<Array<MutationError>>;
|
|
116182
|
+
jswBoardViewSettings?: Maybe<JiraJswBoardViewSettings>;
|
|
116183
|
+
success: Scalars['Boolean']['output'];
|
|
116184
|
+
};
|
|
116185
|
+
export declare type JiraSetJswBoardViewSettingsToggleInput = {
|
|
116186
|
+
enabled: Scalars['Boolean']['input'];
|
|
116187
|
+
viewId: Scalars['ID']['input'];
|
|
116188
|
+
};
|
|
115659
116189
|
export declare type JiraSetLogoInput = {
|
|
115660
116190
|
cloudId: Scalars['ID']['input'];
|
|
115661
116191
|
logoImageInput: JiraLookAndFeelImageInput;
|
|
@@ -117252,6 +117782,16 @@ export declare type JiraTownsquareProject = {
|
|
|
117252
117782
|
state?: Maybe<Scalars['String']['output']>;
|
|
117253
117783
|
workspaceAri?: Maybe<Scalars['String']['output']>;
|
|
117254
117784
|
};
|
|
117785
|
+
export declare type JiraTownsquareProjectEntry = {
|
|
117786
|
+
__typename?: 'JiraTownsquareProjectEntry';
|
|
117787
|
+
hasPermission?: Maybe<Scalars['Boolean']['output']>;
|
|
117788
|
+
iconName?: Maybe<Scalars['String']['output']>;
|
|
117789
|
+
id?: Maybe<Scalars['String']['output']>;
|
|
117790
|
+
key?: Maybe<Scalars['String']['output']>;
|
|
117791
|
+
name?: Maybe<Scalars['String']['output']>;
|
|
117792
|
+
privateProject?: Maybe<Scalars['Boolean']['output']>;
|
|
117793
|
+
state?: Maybe<Scalars['String']['output']>;
|
|
117794
|
+
};
|
|
117255
117795
|
export declare type JiraTownsquareProjectField = JiraIssueField & JiraIssueFieldConfiguration & JiraUserIssueFieldConfiguration & Node & {
|
|
117256
117796
|
__typename?: 'JiraTownsquareProjectField';
|
|
117257
117797
|
aliasFieldId?: Maybe<Scalars['ID']['output']>;
|
|
@@ -119552,7 +120092,10 @@ export declare type JiraWorklogSortInput = {
|
|
|
119552
120092
|
};
|
|
119553
120093
|
export declare type JpdImportIdeasInput = {
|
|
119554
120094
|
csvContent?: InputMaybe<Scalars['String']['input']>;
|
|
120095
|
+
imageContent?: InputMaybe<Scalars['String']['input']>;
|
|
120096
|
+
imageMimeType?: InputMaybe<Scalars['String']['input']>;
|
|
119555
120097
|
jpdProjectId?: InputMaybe<Scalars['String']['input']>;
|
|
120098
|
+
pdfContent?: InputMaybe<Scalars['String']['input']>;
|
|
119556
120099
|
sourceLabel?: InputMaybe<Scalars['String']['input']>;
|
|
119557
120100
|
sourceType: JpdImportSourceType;
|
|
119558
120101
|
textContent?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -119570,6 +120113,8 @@ export declare type JpdImportMetadata = {
|
|
|
119570
120113
|
};
|
|
119571
120114
|
export declare enum JpdImportSourceType {
|
|
119572
120115
|
Csv = "CSV",
|
|
120116
|
+
Image = "IMAGE",
|
|
120117
|
+
Pdf = "PDF",
|
|
119573
120118
|
Text = "TEXT"
|
|
119574
120119
|
}
|
|
119575
120120
|
export declare type JpdInsightDeletedEvent = {
|
|
@@ -121307,12 +121852,29 @@ export declare type KitsuneSection = Node & {
|
|
|
121307
121852
|
id: Scalars['ID']['output'];
|
|
121308
121853
|
name: Scalars['String']['output'];
|
|
121309
121854
|
updatedAt: Scalars['DateTime']['output'];
|
|
121855
|
+
views: KitsuneViewConnection;
|
|
121856
|
+
};
|
|
121857
|
+
export declare type KitsuneSectionViewsArgs = {
|
|
121858
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
121859
|
+
before?: InputMaybe<Scalars['String']['input']>;
|
|
121860
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
121861
|
+
last?: InputMaybe<Scalars['Int']['input']>;
|
|
121310
121862
|
};
|
|
121311
121863
|
export declare type KitsuneSourceCategory = {
|
|
121312
121864
|
__typename?: 'KitsuneSourceCategory';
|
|
121313
121865
|
_id: Scalars['ID']['output'];
|
|
121314
121866
|
type: KitsuneSourceCategoryType;
|
|
121315
121867
|
};
|
|
121868
|
+
export declare type KitsuneSourceCategoryConnection = KitsuneConnection & {
|
|
121869
|
+
__typename?: 'KitsuneSourceCategoryConnection';
|
|
121870
|
+
edges: Array<KitsuneSourceCategoryEdge>;
|
|
121871
|
+
pageInfo: PageInfo;
|
|
121872
|
+
};
|
|
121873
|
+
export declare type KitsuneSourceCategoryEdge = KitsuneEdge & {
|
|
121874
|
+
__typename?: 'KitsuneSourceCategoryEdge';
|
|
121875
|
+
cursor: Scalars['String']['output'];
|
|
121876
|
+
node?: Maybe<KitsuneSourceCategory>;
|
|
121877
|
+
};
|
|
121316
121878
|
export declare enum KitsuneSourceCategoryType {
|
|
121317
121879
|
FeedbackApp = "FEEDBACK_APP",
|
|
121318
121880
|
Loom = "LOOM"
|
|
@@ -121329,6 +121891,8 @@ export declare type KitsuneSpace = Node & {
|
|
|
121329
121891
|
fields: KitsuneFieldConnection;
|
|
121330
121892
|
id: Scalars['ID']['output'];
|
|
121331
121893
|
name?: Maybe<Scalars['String']['output']>;
|
|
121894
|
+
sourceCategories: KitsuneSourceCategoryConnection;
|
|
121895
|
+
viewTree: KitsuneViewTreeConnection;
|
|
121332
121896
|
};
|
|
121333
121897
|
export declare type KitsuneSpaceFeedbacksArgs = {
|
|
121334
121898
|
pagination?: InputMaybe<KitsunePaginationInput>;
|
|
@@ -121336,6 +121900,15 @@ export declare type KitsuneSpaceFeedbacksArgs = {
|
|
|
121336
121900
|
export declare type KitsuneSpaceFieldsArgs = {
|
|
121337
121901
|
pagination?: InputMaybe<KitsunePaginationInput>;
|
|
121338
121902
|
};
|
|
121903
|
+
export declare type KitsuneSpaceSourceCategoriesArgs = {
|
|
121904
|
+
pagination?: InputMaybe<KitsunePaginationInput>;
|
|
121905
|
+
};
|
|
121906
|
+
export declare type KitsuneSpaceViewTreeArgs = {
|
|
121907
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
121908
|
+
before?: InputMaybe<Scalars['String']['input']>;
|
|
121909
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
121910
|
+
last?: InputMaybe<Scalars['Int']['input']>;
|
|
121911
|
+
};
|
|
121339
121912
|
export declare type KitsuneSpaceConnection = KitsuneConnection & {
|
|
121340
121913
|
__typename?: 'KitsuneSpaceConnection';
|
|
121341
121914
|
edges: Array<KitsuneSpaceEdge>;
|
|
@@ -121356,7 +121929,8 @@ export declare type KitsuneView = Node & {
|
|
|
121356
121929
|
config?: Maybe<KitsuneViewConfig>;
|
|
121357
121930
|
description?: Maybe<Scalars['String']['output']>;
|
|
121358
121931
|
id: Scalars['ID']['output'];
|
|
121359
|
-
name
|
|
121932
|
+
name: Scalars['String']['output'];
|
|
121933
|
+
type: KitsuneViewType;
|
|
121360
121934
|
};
|
|
121361
121935
|
export declare type KitsuneViewConfig = {
|
|
121362
121936
|
__typename?: 'KitsuneViewConfig';
|
|
@@ -121374,6 +121948,27 @@ export declare enum KitsuneViewConfigStatus {
|
|
|
121374
121948
|
Published = "PUBLISHED",
|
|
121375
121949
|
Saved = "SAVED"
|
|
121376
121950
|
}
|
|
121951
|
+
export declare type KitsuneViewConnection = KitsuneConnection & {
|
|
121952
|
+
__typename?: 'KitsuneViewConnection';
|
|
121953
|
+
edges: Array<KitsuneViewEdge>;
|
|
121954
|
+
pageInfo: PageInfo;
|
|
121955
|
+
};
|
|
121956
|
+
export declare type KitsuneViewEdge = KitsuneEdge & {
|
|
121957
|
+
__typename?: 'KitsuneViewEdge';
|
|
121958
|
+
cursor: Scalars['String']['output'];
|
|
121959
|
+
node?: Maybe<KitsuneView>;
|
|
121960
|
+
};
|
|
121961
|
+
export declare type KitsuneViewTree = KitsuneSection | KitsuneView;
|
|
121962
|
+
export declare type KitsuneViewTreeConnection = KitsuneConnection & {
|
|
121963
|
+
__typename?: 'KitsuneViewTreeConnection';
|
|
121964
|
+
edges: Array<KitsuneViewTreeEdge>;
|
|
121965
|
+
pageInfo: PageInfo;
|
|
121966
|
+
};
|
|
121967
|
+
export declare type KitsuneViewTreeEdge = KitsuneEdge & {
|
|
121968
|
+
__typename?: 'KitsuneViewTreeEdge';
|
|
121969
|
+
cursor: Scalars['String']['output'];
|
|
121970
|
+
node?: Maybe<KitsuneViewTree>;
|
|
121971
|
+
};
|
|
121377
121972
|
export declare enum KitsuneViewType {
|
|
121378
121973
|
Dashboard = "DASHBOARD",
|
|
121379
121974
|
List = "LIST",
|
|
@@ -121437,6 +122032,7 @@ export declare type KnowledgeBaseArticleMetadata = {
|
|
|
121437
122032
|
__typename?: 'KnowledgeBaseArticleMetadata';
|
|
121438
122033
|
categoryDetails?: Maybe<Array<KnowledgeBaseCategoryDetail>>;
|
|
121439
122034
|
lastModified?: Maybe<Scalars['String']['output']>;
|
|
122035
|
+
viewCount?: Maybe<Scalars['Int']['output']>;
|
|
121440
122036
|
};
|
|
121441
122037
|
export declare type KnowledgeBaseArticleSearchInput = {
|
|
121442
122038
|
articleContainers?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
@@ -128300,8 +128896,14 @@ export declare type MercuryFocusAreaStatusUpdateEdge = {
|
|
|
128300
128896
|
export declare type MercuryFocusAreaSummary = {
|
|
128301
128897
|
__typename?: 'MercuryFocusAreaSummary';
|
|
128302
128898
|
id: Scalars['ID']['output'];
|
|
128899
|
+
input?: Maybe<Scalars['String']['output']>;
|
|
128303
128900
|
summary?: Maybe<Scalars['String']['output']>;
|
|
128304
128901
|
};
|
|
128902
|
+
export declare enum MercuryFocusAreaSummaryType {
|
|
128903
|
+
FocusArea = "FOCUS_AREA",
|
|
128904
|
+
Goals = "GOALS",
|
|
128905
|
+
Work = "WORK"
|
|
128906
|
+
}
|
|
128305
128907
|
export declare type MercuryFocusAreaTargetDateInput = {
|
|
128306
128908
|
targetDate?: InputMaybe<Scalars['String']['input']>;
|
|
128307
128909
|
targetDateType?: InputMaybe<MercuryTargetDateType>;
|
|
@@ -128409,6 +129011,7 @@ export declare type MercuryFundsMutationApi = {
|
|
|
128409
129011
|
createInvestmentCategory?: Maybe<MercuryCreateInvestmentCategoryPayload>;
|
|
128410
129012
|
deleteCostSubtype?: Maybe<MercuryDeleteCostSubtypePayload>;
|
|
128411
129013
|
deleteInvestmentCategory?: Maybe<MercuryDeleteInvestmentCategoryPayload>;
|
|
129014
|
+
updateActiveCurrency?: Maybe<MercuryUpdateActiveCurrencyPayload>;
|
|
128412
129015
|
updateCostSubtypeName?: Maybe<MercuryUpdateCostSubtypePayload>;
|
|
128413
129016
|
updateInvestmentCategoryName?: Maybe<MercuryUpdateInvestmentCategoryPayload>;
|
|
128414
129017
|
};
|
|
@@ -128427,6 +129030,9 @@ export declare type MercuryFundsMutationApiDeleteCostSubtypeArgs = {
|
|
|
128427
129030
|
export declare type MercuryFundsMutationApiDeleteInvestmentCategoryArgs = {
|
|
128428
129031
|
input: MercuryDeleteInvestmentCategoryInput;
|
|
128429
129032
|
};
|
|
129033
|
+
export declare type MercuryFundsMutationApiUpdateActiveCurrencyArgs = {
|
|
129034
|
+
input: MercuryUpdateActiveCurrencyInput;
|
|
129035
|
+
};
|
|
128430
129036
|
export declare type MercuryFundsMutationApiUpdateCostSubtypeNameArgs = {
|
|
128431
129037
|
input: MercuryUpdateCostSubtypeNameInput;
|
|
128432
129038
|
};
|
|
@@ -128435,6 +129041,7 @@ export declare type MercuryFundsMutationApiUpdateInvestmentCategoryNameArgs = {
|
|
|
128435
129041
|
};
|
|
128436
129042
|
export declare type MercuryFundsQueryApi = {
|
|
128437
129043
|
__typename?: 'MercuryFundsQueryApi';
|
|
129044
|
+
activeCurrency: MercuryCurrency;
|
|
128438
129045
|
activeFiscalCalendarConfiguration?: Maybe<MercuryFiscalCalendarConfiguration>;
|
|
128439
129046
|
costSubtypes?: Maybe<Array<Maybe<MercuryCostSubtype>>>;
|
|
128440
129047
|
costSubtypesSearch?: Maybe<MercuryCostSubtypeConnection>;
|
|
@@ -128444,6 +129051,10 @@ export declare type MercuryFundsQueryApi = {
|
|
|
128444
129051
|
fiscalCalendarConfigurationsSearch?: Maybe<MercuryFiscalCalendarConfigurationConnection>;
|
|
128445
129052
|
focusAreaMonthlySummaries?: Maybe<Array<Maybe<MercuryFocusAreaFundsMonthlySummary>>>;
|
|
128446
129053
|
investmentCategories?: Maybe<Array<Maybe<MercuryInvestmentCategory>>>;
|
|
129054
|
+
investmentCategoriesSearch?: Maybe<MercuryInvestmentCategoryConnection>;
|
|
129055
|
+
};
|
|
129056
|
+
export declare type MercuryFundsQueryApiActiveCurrencyArgs = {
|
|
129057
|
+
cloudId?: InputMaybe<Scalars['ID']['input']>;
|
|
128447
129058
|
};
|
|
128448
129059
|
export declare type MercuryFundsQueryApiActiveFiscalCalendarConfigurationArgs = {
|
|
128449
129060
|
cloudId?: InputMaybe<Scalars['ID']['input']>;
|
|
@@ -128482,6 +129093,13 @@ export declare type MercuryFundsQueryApiFocusAreaMonthlySummariesArgs = {
|
|
|
128482
129093
|
export declare type MercuryFundsQueryApiInvestmentCategoriesArgs = {
|
|
128483
129094
|
ids: Array<Scalars['ID']['input']>;
|
|
128484
129095
|
};
|
|
129096
|
+
export declare type MercuryFundsQueryApiInvestmentCategoriesSearchArgs = {
|
|
129097
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
129098
|
+
cloudId?: InputMaybe<Scalars['ID']['input']>;
|
|
129099
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
129100
|
+
q?: InputMaybe<Scalars['String']['input']>;
|
|
129101
|
+
sort?: InputMaybe<Array<InputMaybe<MercuryInvestmentCategorySort>>>;
|
|
129102
|
+
};
|
|
128485
129103
|
export declare enum MercuryFundsType {
|
|
128486
129104
|
Actual = "ACTUAL",
|
|
128487
129105
|
Budget = "BUDGET",
|
|
@@ -128596,10 +129214,28 @@ export declare type MercuryInvestmentCategory = Node & {
|
|
|
128596
129214
|
updatedBy?: Maybe<User>;
|
|
128597
129215
|
updatedDate?: Maybe<Scalars['DateTime']['output']>;
|
|
128598
129216
|
};
|
|
129217
|
+
export declare type MercuryInvestmentCategoryConnection = {
|
|
129218
|
+
__typename?: 'MercuryInvestmentCategoryConnection';
|
|
129219
|
+
edges?: Maybe<Array<MercuryInvestmentCategoryEdge>>;
|
|
129220
|
+
pageInfo: PageInfo;
|
|
129221
|
+
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
129222
|
+
};
|
|
129223
|
+
export declare type MercuryInvestmentCategoryEdge = {
|
|
129224
|
+
__typename?: 'MercuryInvestmentCategoryEdge';
|
|
129225
|
+
cursor: Scalars['String']['output'];
|
|
129226
|
+
node?: Maybe<MercuryInvestmentCategory>;
|
|
129227
|
+
};
|
|
128599
129228
|
export declare type MercuryInvestmentCategoryReferences = {
|
|
128600
129229
|
__typename?: 'MercuryInvestmentCategoryReferences';
|
|
128601
129230
|
count?: Maybe<Scalars['Int']['output']>;
|
|
128602
129231
|
};
|
|
129232
|
+
export declare type MercuryInvestmentCategorySort = {
|
|
129233
|
+
field: MercuryInvestmentCategorySortField;
|
|
129234
|
+
order: SortOrder;
|
|
129235
|
+
};
|
|
129236
|
+
export declare enum MercuryInvestmentCategorySortField {
|
|
129237
|
+
Name = "NAME"
|
|
129238
|
+
}
|
|
128603
129239
|
export declare type MercuryInviteInput = {
|
|
128604
129240
|
cloudId: Scalars['ID']['input'];
|
|
128605
129241
|
userId: Scalars['ID']['input'];
|
|
@@ -129578,8 +130214,12 @@ export declare type MercuryQueryApiAiFocusAreaGoalContextDataArgs = {
|
|
|
129578
130214
|
maxDepth?: InputMaybe<Scalars['Int']['input']>;
|
|
129579
130215
|
};
|
|
129580
130216
|
export declare type MercuryQueryApiAiFocusAreaSummaryArgs = {
|
|
129581
|
-
cloudId
|
|
130217
|
+
cloudId?: InputMaybe<Scalars['ID']['input']>;
|
|
130218
|
+
dryRun?: InputMaybe<Scalars['Boolean']['input']>;
|
|
129582
130219
|
id: Scalars['ID']['input'];
|
|
130220
|
+
includeGoalsFromSubFocusAreas?: InputMaybe<Scalars['Boolean']['input']>;
|
|
130221
|
+
prompt?: InputMaybe<Scalars['String']['input']>;
|
|
130222
|
+
summaryType?: InputMaybe<MercuryFocusAreaSummaryType>;
|
|
129583
130223
|
};
|
|
129584
130224
|
export declare type MercuryQueryApiAiFocusAreaWorkContextDataArgs = {
|
|
129585
130225
|
cloudId: Scalars['ID']['input'];
|
|
@@ -130502,6 +131142,16 @@ export declare type MercuryUnrankChangeProposalInViewPayload = Payload & {
|
|
|
130502
131142
|
success: Scalars['Boolean']['output'];
|
|
130503
131143
|
updatedChangeProposalsView?: Maybe<MercuryChangeProposalsView>;
|
|
130504
131144
|
};
|
|
131145
|
+
export declare type MercuryUpdateActiveCurrencyInput = {
|
|
131146
|
+
cloudId?: InputMaybe<Scalars['ID']['input']>;
|
|
131147
|
+
currencyCode: Scalars['String']['input'];
|
|
131148
|
+
};
|
|
131149
|
+
export declare type MercuryUpdateActiveCurrencyPayload = Payload & {
|
|
131150
|
+
__typename?: 'MercuryUpdateActiveCurrencyPayload';
|
|
131151
|
+
errors?: Maybe<Array<MutationError>>;
|
|
131152
|
+
success: Scalars['Boolean']['output'];
|
|
131153
|
+
updatedActiveCurrency?: Maybe<MercuryCurrency>;
|
|
131154
|
+
};
|
|
130505
131155
|
export declare type MercuryUpdateChangeFocusAreaInput = {
|
|
130506
131156
|
focusAreaId?: InputMaybe<Scalars['ID']['input']>;
|
|
130507
131157
|
};
|
|
@@ -131180,12 +131830,21 @@ export declare type Mutation = {
|
|
|
131180
131830
|
agentStudio_updateScenario?: Maybe<AgentStudioUpdateScenarioPayload>;
|
|
131181
131831
|
agentStudio_updateScenarioMappingsForContainer?: Maybe<AgentStudioUpdateScenarioMappingsPayload>;
|
|
131182
131832
|
agentStudio_uploadDatasetCsv?: Maybe<AgentStudioBatchEvalUploadDatasetPayload>;
|
|
131833
|
+
agentWorkspace_createCatalog?: Maybe<AgentWorkspaceCatalog>;
|
|
131834
|
+
agentWorkspace_createCatalogType?: Maybe<AgentWorkspaceCatalogType>;
|
|
131183
131835
|
agentWorkspace_createSchedule?: Maybe<AgentWorkspaceCreateSchedulePayload>;
|
|
131836
|
+
agentWorkspace_createSkill?: Maybe<AgentWorkspaceSkill>;
|
|
131837
|
+
agentWorkspace_deleteCatalog?: Maybe<Scalars['Boolean']['output']>;
|
|
131838
|
+
agentWorkspace_deleteCatalogType?: Maybe<Scalars['Boolean']['output']>;
|
|
131184
131839
|
agentWorkspace_deleteSchedule?: Maybe<AgentWorkspaceDeleteSchedulePayload>;
|
|
131840
|
+
agentWorkspace_deleteSkill?: Maybe<Scalars['Boolean']['output']>;
|
|
131185
131841
|
agentWorkspace_endBreak?: Maybe<AgentWorkspaceAgentAvailability>;
|
|
131186
131842
|
agentWorkspace_setDefaultCapacity?: Maybe<AgentWorkspaceSetDefaultCapacityPayload>;
|
|
131187
131843
|
agentWorkspace_startBreak?: Maybe<AgentWorkspaceAgentAvailability>;
|
|
131844
|
+
agentWorkspace_updateCatalog?: Maybe<AgentWorkspaceCatalog>;
|
|
131845
|
+
agentWorkspace_updateCatalogType?: Maybe<AgentWorkspaceCatalogType>;
|
|
131188
131846
|
agentWorkspace_updateSchedule?: Maybe<AgentWorkspaceUpdateSchedulePayload>;
|
|
131847
|
+
agentWorkspace_updateSkill?: Maybe<AgentWorkspaceSkill>;
|
|
131189
131848
|
appRecommendations?: Maybe<AppRecMutation>;
|
|
131190
131849
|
appStorage?: Maybe<AppStorageMutation>;
|
|
131191
131850
|
appStorageCustomEntity?: Maybe<AppStorageCustomEntityMutation>;
|
|
@@ -131280,6 +131939,7 @@ export declare type Mutation = {
|
|
|
131280
131939
|
avp_updateDashboardStatus?: Maybe<AvpUpdateDashboardStatusPayload>;
|
|
131281
131940
|
avp_updateFilterExpression?: Maybe<AvpUpdateFilterExpressionPayload>;
|
|
131282
131941
|
avp_updateVariable?: Maybe<AvpUpdateVariablePayload>;
|
|
131942
|
+
avpanalytics_createModel?: Maybe<AvpAnalyticsCreateModelResponse>;
|
|
131283
131943
|
blockService_createBlock?: Maybe<BlockServiceBlockPayload>;
|
|
131284
131944
|
blockService_deleteBlock?: Maybe<BlockServiceDeleteBlockPayload>;
|
|
131285
131945
|
blockService_updateBlock?: Maybe<BlockServiceBlockPayload>;
|
|
@@ -131405,7 +132065,6 @@ export declare type Mutation = {
|
|
|
131405
132065
|
confluence_updateCustomRole?: Maybe<ConfluenceUpdateCustomRolePayload>;
|
|
131406
132066
|
confluence_updateDefaultTitleEmoji?: Maybe<ConfluenceUpdateDefaultTitleEmojiPayload>;
|
|
131407
132067
|
confluence_updateInstance?: Maybe<ConfluenceUpdateInstancePayload>;
|
|
131408
|
-
confluence_updateNav4OptIn?: Maybe<ConfluenceUpdateNav4OptInPayload>;
|
|
131409
132068
|
confluence_updateNcsPdfExportConfiguration?: Maybe<ConfluenceUpdateNcsPdfExportConfigurationPayload>;
|
|
131410
132069
|
confluence_updatePage?: Maybe<ConfluenceUpdatePagePayload>;
|
|
131411
132070
|
confluence_updateQuestion?: Maybe<ConfluenceUpdateQuestionPayload>;
|
|
@@ -131418,6 +132077,7 @@ export declare type Mutation = {
|
|
|
131418
132077
|
confluence_updateTopic?: Maybe<ConfluenceUpdateTopicPayload>;
|
|
131419
132078
|
confluence_updateVote?: Maybe<ConfluenceUpdateVotePayload>;
|
|
131420
132079
|
confluence_updateWatermarkConfig?: Maybe<ConfluenceUpdateWatermarkConfigPayload>;
|
|
132080
|
+
confluence_updateWorkflowApplication?: Maybe<ConfluenceWorkflowApplicationPayload>;
|
|
131421
132081
|
confluence_watchLabel?: Maybe<ConfluenceLabelWatchStatus>;
|
|
131422
132082
|
confluence_watchSubCalendar?: Maybe<ConfluenceWatchSubCalendarPayload>;
|
|
131423
132083
|
connectionManager_createApiTokenConnectionForJiraProject?: Maybe<ConnectionManagerCreateApiTokenConnectionForJiraProjectPayload>;
|
|
@@ -131768,6 +132428,10 @@ export declare type Mutation = {
|
|
|
131768
132428
|
jira_setIssueSearchHierarchyEnabled?: Maybe<JiraSetIssueSearchHierarchyEnabledPayload>;
|
|
131769
132429
|
jira_setIssueSearchJql?: Maybe<JiraSetIssueSearchJqlPayload>;
|
|
131770
132430
|
jira_setIssueSearchViewLayout?: Maybe<JiraSetIssueSearchViewLayoutPayload>;
|
|
132431
|
+
jira_setJswBoardCardOptions?: Maybe<JiraSetJswBoardViewSettingsPayload>;
|
|
132432
|
+
jira_setJswBoardGroupBy?: Maybe<JiraSetJswBoardViewSettingsPayload>;
|
|
132433
|
+
jira_setJswBoardQuickFilterToggle?: Maybe<JiraSetJswBoardViewSettingsPayload>;
|
|
132434
|
+
jira_setJswBoardWorkSuggestionToggle?: Maybe<JiraSetJswBoardViewSettingsPayload>;
|
|
131771
132435
|
jira_setLogo?: Maybe<JiraSetLogoPayload>;
|
|
131772
132436
|
jira_setShowUnscheduledIssuesCalendarPanel?: Maybe<JiraShowUnscheduledIssuesCalendarMutationPayload>;
|
|
131773
132437
|
jira_setTimelineHighlightedReleases?: Maybe<JiraSetTimelineHighlightedReleasesPayload>;
|
|
@@ -131809,6 +132473,7 @@ export declare type Mutation = {
|
|
|
131809
132473
|
kitsune_generateFeedbackSummary?: Maybe<Scalars['Boolean']['output']>;
|
|
131810
132474
|
kitsune_removeFeedback?: Maybe<Scalars['ID']['output']>;
|
|
131811
132475
|
kitsune_removeSection?: Maybe<KitsuneSection>;
|
|
132476
|
+
kitsune_removeView?: Maybe<GenericMutationResponse>;
|
|
131812
132477
|
kitsune_suggestSnippets?: Maybe<Scalars['Boolean']['output']>;
|
|
131813
132478
|
kitsune_updateFeedback?: Maybe<KitsuneFeedback>;
|
|
131814
132479
|
kitsune_updateSection?: Maybe<KitsuneSection>;
|
|
@@ -132389,12 +133054,33 @@ export declare type MutationAgentStudio_UploadDatasetCsvArgs = {
|
|
|
132389
133054
|
productType: AgentStudioProductType;
|
|
132390
133055
|
projectContainerAri: Scalars['ID']['input'];
|
|
132391
133056
|
};
|
|
133057
|
+
export declare type MutationAgentWorkspace_CreateCatalogArgs = {
|
|
133058
|
+
input: AgentWorkspaceCreateCatalogInput;
|
|
133059
|
+
};
|
|
133060
|
+
export declare type MutationAgentWorkspace_CreateCatalogTypeArgs = {
|
|
133061
|
+
input: AgentWorkspaceCreateCatalogTypeInput;
|
|
133062
|
+
};
|
|
132392
133063
|
export declare type MutationAgentWorkspace_CreateScheduleArgs = {
|
|
132393
133064
|
input: AgentWorkspaceCreateScheduleInput;
|
|
132394
133065
|
};
|
|
133066
|
+
export declare type MutationAgentWorkspace_CreateSkillArgs = {
|
|
133067
|
+
input: AgentWorkspaceCreateSkillInput;
|
|
133068
|
+
};
|
|
133069
|
+
export declare type MutationAgentWorkspace_DeleteCatalogArgs = {
|
|
133070
|
+
cloudId: Scalars['ID']['input'];
|
|
133071
|
+
id: Scalars['ID']['input'];
|
|
133072
|
+
};
|
|
133073
|
+
export declare type MutationAgentWorkspace_DeleteCatalogTypeArgs = {
|
|
133074
|
+
cloudId: Scalars['ID']['input'];
|
|
133075
|
+
id: Scalars['ID']['input'];
|
|
133076
|
+
};
|
|
132395
133077
|
export declare type MutationAgentWorkspace_DeleteScheduleArgs = {
|
|
132396
133078
|
input: AgentWorkspaceDeleteScheduleInput;
|
|
132397
133079
|
};
|
|
133080
|
+
export declare type MutationAgentWorkspace_DeleteSkillArgs = {
|
|
133081
|
+
cloudId: Scalars['ID']['input'];
|
|
133082
|
+
id: Scalars['ID']['input'];
|
|
133083
|
+
};
|
|
132398
133084
|
export declare type MutationAgentWorkspace_EndBreakArgs = {
|
|
132399
133085
|
agentId: Scalars['ID']['input'];
|
|
132400
133086
|
cloudId: Scalars['ID']['input'];
|
|
@@ -132406,9 +133092,18 @@ export declare type MutationAgentWorkspace_StartBreakArgs = {
|
|
|
132406
133092
|
agentId: Scalars['ID']['input'];
|
|
132407
133093
|
cloudId: Scalars['ID']['input'];
|
|
132408
133094
|
};
|
|
133095
|
+
export declare type MutationAgentWorkspace_UpdateCatalogArgs = {
|
|
133096
|
+
input: AgentWorkspaceUpdateCatalogInput;
|
|
133097
|
+
};
|
|
133098
|
+
export declare type MutationAgentWorkspace_UpdateCatalogTypeArgs = {
|
|
133099
|
+
input: AgentWorkspaceUpdateCatalogTypeInput;
|
|
133100
|
+
};
|
|
132409
133101
|
export declare type MutationAgentWorkspace_UpdateScheduleArgs = {
|
|
132410
133102
|
input: AgentWorkspaceUpdateScheduleInput;
|
|
132411
133103
|
};
|
|
133104
|
+
export declare type MutationAgentWorkspace_UpdateSkillArgs = {
|
|
133105
|
+
input: AgentWorkspaceUpdateSkillInput;
|
|
133106
|
+
};
|
|
132412
133107
|
export declare type MutationAppStorage_AdminArgs = {
|
|
132413
133108
|
appId: Scalars['ID']['input'];
|
|
132414
133109
|
};
|
|
@@ -132793,6 +133488,9 @@ export declare type MutationAvp_UpdateFilterExpressionArgs = {
|
|
|
132793
133488
|
export declare type MutationAvp_UpdateVariableArgs = {
|
|
132794
133489
|
input: AvpUpdateVariableInput;
|
|
132795
133490
|
};
|
|
133491
|
+
export declare type MutationAvpanalytics_CreateModelArgs = {
|
|
133492
|
+
input?: InputMaybe<AvpAnalyticsCreateModelRequest>;
|
|
133493
|
+
};
|
|
132796
133494
|
export declare type MutationBlockService_CreateBlockArgs = {
|
|
132797
133495
|
input: BlockServiceCreateBlockInput;
|
|
132798
133496
|
};
|
|
@@ -133244,10 +133942,6 @@ export declare type MutationConfluence_UpdateInstanceArgs = {
|
|
|
133244
133942
|
input: ConfluenceUpdateInstanceInput;
|
|
133245
133943
|
pageAri: Scalars['ID']['input'];
|
|
133246
133944
|
};
|
|
133247
|
-
export declare type MutationConfluence_UpdateNav4OptInArgs = {
|
|
133248
|
-
cloudId: Scalars['ID']['input'];
|
|
133249
|
-
input: ConfluenceUpdateNav4OptInInput;
|
|
133250
|
-
};
|
|
133251
133945
|
export declare type MutationConfluence_UpdateNcsPdfExportConfigurationArgs = {
|
|
133252
133946
|
cloudId: Scalars['ID']['input'];
|
|
133253
133947
|
input: ConfluenceUpdatePdfExportNoCodeStylingConfigInput;
|
|
@@ -133297,6 +133991,10 @@ export declare type MutationConfluence_UpdateWatermarkConfigArgs = {
|
|
|
133297
133991
|
input: ConfluenceUpdateWatermarkConfigInput;
|
|
133298
133992
|
resourceAri: Scalars['ID']['input'];
|
|
133299
133993
|
};
|
|
133994
|
+
export declare type MutationConfluence_UpdateWorkflowApplicationArgs = {
|
|
133995
|
+
cloudId: Scalars['ID']['input'];
|
|
133996
|
+
updateWorkflowApplicationRequestInput: ConfluenceUpdateWorkflowApplicationRequestInput;
|
|
133997
|
+
};
|
|
133300
133998
|
export declare type MutationConfluence_WatchLabelArgs = {
|
|
133301
133999
|
cloudId: Scalars['ID']['input'];
|
|
133302
134000
|
input: ConfluenceLabelWatchInput;
|
|
@@ -134440,6 +135138,18 @@ export declare type MutationJira_SetIssueSearchJqlArgs = {
|
|
|
134440
135138
|
export declare type MutationJira_SetIssueSearchViewLayoutArgs = {
|
|
134441
135139
|
input: JiraSetIssueSearchViewLayoutInput;
|
|
134442
135140
|
};
|
|
135141
|
+
export declare type MutationJira_SetJswBoardCardOptionsArgs = {
|
|
135142
|
+
input: JiraSetJswBoardViewSettingCardOptionsInput;
|
|
135143
|
+
};
|
|
135144
|
+
export declare type MutationJira_SetJswBoardGroupByArgs = {
|
|
135145
|
+
input: JiraSetJswBoardViewSettingGroupByInput;
|
|
135146
|
+
};
|
|
135147
|
+
export declare type MutationJira_SetJswBoardQuickFilterToggleArgs = {
|
|
135148
|
+
input: JiraSetJswBoardViewSettingsToggleInput;
|
|
135149
|
+
};
|
|
135150
|
+
export declare type MutationJira_SetJswBoardWorkSuggestionToggleArgs = {
|
|
135151
|
+
input: JiraSetJswBoardViewSettingsToggleInput;
|
|
135152
|
+
};
|
|
134443
135153
|
export declare type MutationJira_SetLogoArgs = {
|
|
134444
135154
|
input: JiraSetLogoInput;
|
|
134445
135155
|
};
|
|
@@ -134584,6 +135294,9 @@ export declare type MutationKitsune_RemoveFeedbackArgs = {
|
|
|
134584
135294
|
export declare type MutationKitsune_RemoveSectionArgs = {
|
|
134585
135295
|
sectionAri: Scalars['ID']['input'];
|
|
134586
135296
|
};
|
|
135297
|
+
export declare type MutationKitsune_RemoveViewArgs = {
|
|
135298
|
+
viewAri: Scalars['ID']['input'];
|
|
135299
|
+
};
|
|
134587
135300
|
export declare type MutationKitsune_SuggestSnippetsArgs = {
|
|
134588
135301
|
title: Scalars['String']['input'];
|
|
134589
135302
|
workspaceAri: Scalars['ID']['input'];
|
|
@@ -138671,10 +139384,16 @@ export declare type Query = {
|
|
|
138671
139384
|
agentStudio_widgetByContainerAri?: Maybe<AgentStudioWidgetByContainerAriResult>;
|
|
138672
139385
|
agentWorkspace_availability?: Maybe<AgentWorkspaceAvailabilityConnection>;
|
|
138673
139386
|
agentWorkspace_capacity?: Maybe<AgentWorkspaceCapacityConnection>;
|
|
139387
|
+
agentWorkspace_catalog?: Maybe<AgentWorkspaceCatalog>;
|
|
139388
|
+
agentWorkspace_catalogType?: Maybe<AgentWorkspaceCatalogType>;
|
|
139389
|
+
agentWorkspace_catalogTypes?: Maybe<AgentWorkspaceCatalogTypeConnection>;
|
|
139390
|
+
agentWorkspace_catalogs?: Maybe<AgentWorkspaceCatalogConnection>;
|
|
138674
139391
|
agentWorkspace_defaultCapacity?: Maybe<AgentWorkspaceDefaultCapacity>;
|
|
138675
139392
|
agentWorkspace_schedule?: Maybe<AgentWorkspaceSchedule>;
|
|
138676
139393
|
agentWorkspace_schedules?: Maybe<Array<AgentWorkspaceSchedule>>;
|
|
138677
139394
|
agentWorkspace_shifts?: Maybe<AgentWorkspaceShiftsConnection>;
|
|
139395
|
+
agentWorkspace_skill?: Maybe<AgentWorkspaceSkill>;
|
|
139396
|
+
agentWorkspace_skills?: Maybe<AgentWorkspaceSkillConnection>;
|
|
138678
139397
|
aiCoreApi_vsaQuestionsByProject?: Maybe<AiCoreApiVsaQuestionsResult>;
|
|
138679
139398
|
aiCoreApi_vsaQuestionsByProjectAndType?: Maybe<AiCoreApiVsaQuestionsWithTypeResult>;
|
|
138680
139399
|
aiCoreApi_vsaReportingByProject?: Maybe<AiCoreApiVsaReportingResult>;
|
|
@@ -138906,6 +139625,7 @@ export declare type Query = {
|
|
|
138906
139625
|
confluence_externalCollaboratorsByCriteria?: Maybe<ConfluencePersonConnection>;
|
|
138907
139626
|
confluence_forgeExtensionsByType?: Maybe<Array<Maybe<ConfluenceForgeExtension>>>;
|
|
138908
139627
|
confluence_generateSpaceKey?: Maybe<ConfluenceGeneratedSpaceKey>;
|
|
139628
|
+
confluence_getActiveWorkflowApplication?: Maybe<ConfluenceWorkflowApplicationPayload>;
|
|
138909
139629
|
confluence_getAllApps?: Maybe<ConfluenceAppConnection>;
|
|
138910
139630
|
confluence_getAudioPreference?: Maybe<ConfluenceAudioPreference>;
|
|
138911
139631
|
confluence_getCustomContentPermissionAssignments?: Maybe<ConfluenceCustomContentPermissionAssignmentConnection>;
|
|
@@ -138968,6 +139688,7 @@ export declare type Query = {
|
|
|
138968
139688
|
confluence_subCalendarEmbedInfo?: Maybe<Array<Maybe<ConfluenceSubCalendarEmbedInfo>>>;
|
|
138969
139689
|
confluence_subCalendarSubscribersCount?: Maybe<ConfluenceSubCalendarSubscribersCount>;
|
|
138970
139690
|
confluence_subCalendarWatchingStatuses?: Maybe<Array<Maybe<ConfluenceSubCalendarWatchingStatus>>>;
|
|
139691
|
+
confluence_teamAdminControlsSettings?: Maybe<ConfluenceTeamAdminControlsSettings>;
|
|
138971
139692
|
confluence_teamPresenceContentSetting?: Maybe<ConfluenceTeamPresence>;
|
|
138972
139693
|
confluence_teamPresenceSpaceSettings?: Maybe<ConfluenceTeamPresenceSpaceSettings>;
|
|
138973
139694
|
confluence_template?: Maybe<ContentTemplate>;
|
|
@@ -139274,6 +139995,7 @@ export declare type Query = {
|
|
|
139274
139995
|
jira_issueSearchViewsByIds?: Maybe<Array<Maybe<JiraIssueSearchView>>>;
|
|
139275
139996
|
jira_issuesByIds?: Maybe<Array<Maybe<JiraIssue>>>;
|
|
139276
139997
|
jira_jiraServiceManagementDefaultCommentBehavior?: Maybe<JiraServiceManagementDefaultCommentBehavior>;
|
|
139998
|
+
jira_jswBoardViewSettings?: Maybe<JiraJswBoardViewSettings>;
|
|
139277
139999
|
jira_lookAndFeel?: Maybe<JiraLookAndFeel>;
|
|
139278
140000
|
jira_mergeIssuesOperationProgress?: Maybe<JiraMergeIssuesOperationProgressResult>;
|
|
139279
140001
|
jira_onboardingConfigById?: Maybe<JiraOnboardingConfig>;
|
|
@@ -139519,6 +140241,9 @@ export declare type Query = {
|
|
|
139519
140241
|
smarts?: Maybe<SmartsQueryApi>;
|
|
139520
140242
|
socialSignals?: Maybe<SocialSignalsApi>;
|
|
139521
140243
|
softwareBoards?: Maybe<BoardScopeConnection>;
|
|
140244
|
+
softwareCatalog_servicesWithActiveIncidents?: Maybe<SoftwareCatalogSearchResult>;
|
|
140245
|
+
softwareCatalog_servicesWithOpenAlerts?: Maybe<SoftwareCatalogSearchResult>;
|
|
140246
|
+
softwareCatalog_servicesWithUpcomingChanges?: Maybe<SoftwareCatalogSearchResult>;
|
|
139522
140247
|
spaViewContext?: Maybe<SpaViewModel>;
|
|
139523
140248
|
space?: Maybe<Space>;
|
|
139524
140249
|
spaceContextContentCreationMetadata?: Maybe<ContentCreationMetadata>;
|
|
@@ -139707,25 +140432,25 @@ export declare type QueryAdmin_AppModulesArgs = {
|
|
|
139707
140432
|
export declare type QueryAdmin_AuditLogEventActionsArgs = {
|
|
139708
140433
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
139709
140434
|
before?: InputMaybe<Scalars['String']['input']>;
|
|
140435
|
+
container: AdminAuditLogContainer;
|
|
139710
140436
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
139711
140437
|
last?: InputMaybe<Scalars['Int']['input']>;
|
|
139712
|
-
orgId: Scalars['ID']['input'];
|
|
139713
140438
|
};
|
|
139714
140439
|
export declare type QueryAdmin_AuditLogEventIpAddressesArgs = {
|
|
139715
140440
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
139716
140441
|
before?: InputMaybe<Scalars['String']['input']>;
|
|
140442
|
+
container: AdminAuditLogContainer;
|
|
139717
140443
|
filter?: InputMaybe<Scalars['String']['input']>;
|
|
139718
140444
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
139719
140445
|
last?: InputMaybe<Scalars['Int']['input']>;
|
|
139720
|
-
orgId: Scalars['ID']['input'];
|
|
139721
140446
|
};
|
|
139722
140447
|
export declare type QueryAdmin_AuditLogEventLocationsArgs = {
|
|
139723
140448
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
139724
140449
|
before?: InputMaybe<Scalars['String']['input']>;
|
|
140450
|
+
container: AdminAuditLogContainer;
|
|
139725
140451
|
filter?: InputMaybe<Scalars['String']['input']>;
|
|
139726
140452
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
139727
140453
|
last?: InputMaybe<Scalars['Int']['input']>;
|
|
139728
|
-
orgId: Scalars['ID']['input'];
|
|
139729
140454
|
};
|
|
139730
140455
|
export declare type QueryAdmin_AuditLogEventsArgs = {
|
|
139731
140456
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -140158,6 +140883,26 @@ export declare type QueryAgentWorkspace_AvailabilityArgs = {
|
|
|
140158
140883
|
export declare type QueryAgentWorkspace_CapacityArgs = {
|
|
140159
140884
|
input: AgentWorkspaceCapacityInput;
|
|
140160
140885
|
};
|
|
140886
|
+
export declare type QueryAgentWorkspace_CatalogArgs = {
|
|
140887
|
+
cloudId: Scalars['ID']['input'];
|
|
140888
|
+
id: Scalars['ID']['input'];
|
|
140889
|
+
};
|
|
140890
|
+
export declare type QueryAgentWorkspace_CatalogTypeArgs = {
|
|
140891
|
+
cloudId: Scalars['ID']['input'];
|
|
140892
|
+
id: Scalars['ID']['input'];
|
|
140893
|
+
};
|
|
140894
|
+
export declare type QueryAgentWorkspace_CatalogTypesArgs = {
|
|
140895
|
+
cloudId: Scalars['ID']['input'];
|
|
140896
|
+
filter?: InputMaybe<AgentWorkspaceCatalogTypeFilter>;
|
|
140897
|
+
page?: InputMaybe<Scalars['Int']['input']>;
|
|
140898
|
+
pageSize?: InputMaybe<Scalars['Int']['input']>;
|
|
140899
|
+
};
|
|
140900
|
+
export declare type QueryAgentWorkspace_CatalogsArgs = {
|
|
140901
|
+
cloudId: Scalars['ID']['input'];
|
|
140902
|
+
filter?: InputMaybe<AgentWorkspaceCatalogFilter>;
|
|
140903
|
+
page?: InputMaybe<Scalars['Int']['input']>;
|
|
140904
|
+
pageSize?: InputMaybe<Scalars['Int']['input']>;
|
|
140905
|
+
};
|
|
140161
140906
|
export declare type QueryAgentWorkspace_DefaultCapacityArgs = {
|
|
140162
140907
|
cloudId: Scalars['ID']['input'];
|
|
140163
140908
|
projectKey: Scalars['String']['input'];
|
|
@@ -140178,6 +140923,16 @@ export declare type QueryAgentWorkspace_ShiftsArgs = {
|
|
|
140178
140923
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
140179
140924
|
input: AgentWorkspaceShiftsQueryInput;
|
|
140180
140925
|
};
|
|
140926
|
+
export declare type QueryAgentWorkspace_SkillArgs = {
|
|
140927
|
+
cloudId: Scalars['ID']['input'];
|
|
140928
|
+
id: Scalars['ID']['input'];
|
|
140929
|
+
};
|
|
140930
|
+
export declare type QueryAgentWorkspace_SkillsArgs = {
|
|
140931
|
+
cloudId: Scalars['ID']['input'];
|
|
140932
|
+
filter?: InputMaybe<AgentWorkspaceSkillFilter>;
|
|
140933
|
+
page?: InputMaybe<Scalars['Int']['input']>;
|
|
140934
|
+
pageSize?: InputMaybe<Scalars['Int']['input']>;
|
|
140935
|
+
};
|
|
140181
140936
|
export declare type QueryAiCoreApi_VsaQuestionsByProjectArgs = {
|
|
140182
140937
|
projectAri: Scalars['ID']['input'];
|
|
140183
140938
|
};
|
|
@@ -141230,6 +141985,14 @@ export declare type QueryConfluence_GenerateSpaceKeyArgs = {
|
|
|
141230
141985
|
cloudId: Scalars['ID']['input'];
|
|
141231
141986
|
spaceName?: InputMaybe<Scalars['String']['input']>;
|
|
141232
141987
|
};
|
|
141988
|
+
export declare type QueryConfluence_GetActiveWorkflowApplicationArgs = {
|
|
141989
|
+
cloudId: Scalars['ID']['input'];
|
|
141990
|
+
contentId: Scalars['Long']['input'];
|
|
141991
|
+
contentStatus: Scalars['String']['input'];
|
|
141992
|
+
contentVersion?: InputMaybe<Scalars['Int']['input']>;
|
|
141993
|
+
fetchWorkflowReview?: InputMaybe<Scalars['Boolean']['input']>;
|
|
141994
|
+
workflowId: Scalars['Long']['input'];
|
|
141995
|
+
};
|
|
141233
141996
|
export declare type QueryConfluence_GetAllAppsArgs = {
|
|
141234
141997
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
141235
141998
|
cloudId: Scalars['ID']['input'];
|
|
@@ -141541,6 +142304,9 @@ export declare type QueryConfluence_SubCalendarWatchingStatusesArgs = {
|
|
|
141541
142304
|
cloudId: Scalars['ID']['input'];
|
|
141542
142305
|
subCalendarIds?: InputMaybe<Array<InputMaybe<Scalars['String']['input']>>>;
|
|
141543
142306
|
};
|
|
142307
|
+
export declare type QueryConfluence_TeamAdminControlsSettingsArgs = {
|
|
142308
|
+
cloudId: Scalars['ID']['input'];
|
|
142309
|
+
};
|
|
141544
142310
|
export declare type QueryConfluence_TeamPresenceContentSettingArgs = {
|
|
141545
142311
|
cloudId: Scalars['ID']['input'];
|
|
141546
142312
|
spaceKey: Scalars['String']['input'];
|
|
@@ -142811,6 +143577,9 @@ export declare type QueryJira_IssuesByIdsArgs = {
|
|
|
142811
143577
|
export declare type QueryJira_JiraServiceManagementDefaultCommentBehaviorArgs = {
|
|
142812
143578
|
cloudId: Scalars['ID']['input'];
|
|
142813
143579
|
};
|
|
143580
|
+
export declare type QueryJira_JswBoardViewSettingsArgs = {
|
|
143581
|
+
input: JiraJswBoardViewSettingsQueryInput;
|
|
143582
|
+
};
|
|
142814
143583
|
export declare type QueryJira_LookAndFeelArgs = {
|
|
142815
143584
|
cloudId: Scalars['ID']['input'];
|
|
142816
143585
|
};
|
|
@@ -143678,6 +144447,21 @@ export declare type QuerySiteSettingsArgs = {
|
|
|
143678
144447
|
export declare type QuerySoftwareBoardsArgs = {
|
|
143679
144448
|
projectAri: Scalars['ID']['input'];
|
|
143680
144449
|
};
|
|
144450
|
+
export declare type QuerySoftwareCatalog_ServicesWithActiveIncidentsArgs = {
|
|
144451
|
+
cloudId: Scalars['ID']['input'];
|
|
144452
|
+
limit?: InputMaybe<Scalars['Int']['input']>;
|
|
144453
|
+
offset?: InputMaybe<Scalars['Int']['input']>;
|
|
144454
|
+
};
|
|
144455
|
+
export declare type QuerySoftwareCatalog_ServicesWithOpenAlertsArgs = {
|
|
144456
|
+
cloudId: Scalars['ID']['input'];
|
|
144457
|
+
limit?: InputMaybe<Scalars['Int']['input']>;
|
|
144458
|
+
offset?: InputMaybe<Scalars['Int']['input']>;
|
|
144459
|
+
};
|
|
144460
|
+
export declare type QuerySoftwareCatalog_ServicesWithUpcomingChangesArgs = {
|
|
144461
|
+
cloudId: Scalars['ID']['input'];
|
|
144462
|
+
limit?: InputMaybe<Scalars['Int']['input']>;
|
|
144463
|
+
offset?: InputMaybe<Scalars['Int']['input']>;
|
|
144464
|
+
};
|
|
143681
144465
|
export declare type QuerySpaceArgs = {
|
|
143682
144466
|
cloudId?: InputMaybe<Scalars['ID']['input']>;
|
|
143683
144467
|
id?: InputMaybe<Scalars['ID']['input']>;
|
|
@@ -167383,6 +168167,7 @@ export declare type SoftwareCard = {
|
|
|
167383
168167
|
priority?: Maybe<CardPriority>;
|
|
167384
168168
|
status?: Maybe<CardStatus>;
|
|
167385
168169
|
summary?: Maybe<Scalars['String']['output']>;
|
|
168170
|
+
townsquareProjectId?: Maybe<Scalars['String']['output']>;
|
|
167386
168171
|
type?: Maybe<CardType>;
|
|
167387
168172
|
};
|
|
167388
168173
|
export declare type SoftwareCardChildrenInfo = {
|
|
@@ -167427,6 +168212,13 @@ export declare enum SoftwareCardsDestinationEnum {
|
|
|
167427
168212
|
ExistingSprint = "EXISTING_SPRINT",
|
|
167428
168213
|
NewSprint = "NEW_SPRINT"
|
|
167429
168214
|
}
|
|
168215
|
+
export declare type SoftwareCatalogSearchResult = {
|
|
168216
|
+
__typename?: 'SoftwareCatalogSearchResult';
|
|
168217
|
+
items?: Maybe<Array<Maybe<AssetsServiceObject>>>;
|
|
168218
|
+
limit: Scalars['Int']['output'];
|
|
168219
|
+
offset: Scalars['Int']['output'];
|
|
168220
|
+
totalCount: Scalars['Int']['output'];
|
|
168221
|
+
};
|
|
167430
168222
|
export declare type SoftwareOperation = {
|
|
167431
168223
|
__typename?: 'SoftwareOperation';
|
|
167432
168224
|
icon?: Maybe<Icon>;
|
|
@@ -176073,6 +176865,7 @@ export declare type TrelloBoard = Node & TrelloBaseBoard & {
|
|
|
176073
176865
|
__typename?: 'TrelloBoard';
|
|
176074
176866
|
closed: Scalars['Boolean']['output'];
|
|
176075
176867
|
creationMethod?: Maybe<Scalars['String']['output']>;
|
|
176868
|
+
creationMethodLoadingStartedAt?: Maybe<Scalars['DateTime']['output']>;
|
|
176076
176869
|
creator?: Maybe<TrelloMember>;
|
|
176077
176870
|
customFields?: Maybe<TrelloCustomFieldConnection>;
|
|
176078
176871
|
description?: Maybe<TrelloUserGeneratedText>;
|
|
@@ -177458,16 +178251,7 @@ export declare type TrelloGenerateCheckItemsForCardInput = {
|
|
|
177458
178251
|
};
|
|
177459
178252
|
export declare type TrelloGenerateCheckItemsForCardPayload = {
|
|
177460
178253
|
__typename?: 'TrelloGenerateCheckItemsForCardPayload';
|
|
177461
|
-
card?: Maybe<
|
|
177462
|
-
errors?: Maybe<Array<MutationError>>;
|
|
177463
|
-
success: Scalars['Boolean']['output'];
|
|
177464
|
-
};
|
|
177465
|
-
export declare type TrelloGenerateChecklistsForCardInput = {
|
|
177466
|
-
cardId: Scalars['ID']['input'];
|
|
177467
|
-
};
|
|
177468
|
-
export declare type TrelloGenerateChecklistsForCardPayload = Payload & {
|
|
177469
|
-
__typename?: 'TrelloGenerateChecklistsForCardPayload';
|
|
177470
|
-
card?: Maybe<TrelloCard>;
|
|
178254
|
+
card?: Maybe<TrelloBaseCard>;
|
|
177471
178255
|
errors?: Maybe<Array<MutationError>>;
|
|
177472
178256
|
success: Scalars['Boolean']['output'];
|
|
177473
178257
|
};
|
|
@@ -177703,6 +178487,16 @@ export declare type TrelloLabelUpdatedConnection = {
|
|
|
177703
178487
|
edges?: Maybe<Array<TrelloCardLabelEdgeUpdated>>;
|
|
177704
178488
|
nodes?: Maybe<Array<TrelloLabel>>;
|
|
177705
178489
|
};
|
|
178490
|
+
export declare enum TrelloLabsFeature {
|
|
178491
|
+
GenerateChecklist = "GENERATE_CHECKLIST",
|
|
178492
|
+
MergeCards = "MERGE_CARDS",
|
|
178493
|
+
SmartSchedule = "SMART_SCHEDULE"
|
|
178494
|
+
}
|
|
178495
|
+
export declare enum TrelloLabsFeatureStatus {
|
|
178496
|
+
NotSet = "NOT_SET",
|
|
178497
|
+
OptedIn = "OPTED_IN",
|
|
178498
|
+
OptedOut = "OPTED_OUT"
|
|
178499
|
+
}
|
|
177706
178500
|
export declare type TrelloLimitProps = {
|
|
177707
178501
|
__typename?: 'TrelloLimitProps';
|
|
177708
178502
|
count?: Maybe<Scalars['Int']['output']>;
|
|
@@ -177837,6 +178631,7 @@ export declare type TrelloMember = Node & {
|
|
|
177837
178631
|
inbox?: Maybe<TrelloInbox>;
|
|
177838
178632
|
initials?: Maybe<Scalars['String']['output']>;
|
|
177839
178633
|
jobFunction?: Maybe<Scalars['String']['output']>;
|
|
178634
|
+
labsPreferences?: Maybe<Array<TrelloMemberLabsPreference>>;
|
|
177840
178635
|
nonPublicData?: Maybe<TrelloMemberNonPublicData>;
|
|
177841
178636
|
notifications?: Maybe<TrelloNotificationConnection>;
|
|
177842
178637
|
objectId: Scalars['ID']['output'];
|
|
@@ -177907,6 +178702,14 @@ export declare type TrelloMemberEdge = {
|
|
|
177907
178702
|
cursor: Scalars['String']['output'];
|
|
177908
178703
|
node?: Maybe<TrelloMember>;
|
|
177909
178704
|
};
|
|
178705
|
+
export declare type TrelloMemberLabsPreference = {
|
|
178706
|
+
__typename?: 'TrelloMemberLabsPreference';
|
|
178707
|
+
dateModified?: Maybe<Scalars['DateTime']['output']>;
|
|
178708
|
+
description: Scalars['String']['output'];
|
|
178709
|
+
feature: TrelloLabsFeature;
|
|
178710
|
+
name: Scalars['String']['output'];
|
|
178711
|
+
status: TrelloLabsFeatureStatus;
|
|
178712
|
+
};
|
|
177910
178713
|
export declare type TrelloMemberNonPublicData = {
|
|
177911
178714
|
__typename?: 'TrelloMemberNonPublicData';
|
|
177912
178715
|
avatarUrl?: Maybe<Scalars['URL']['output']>;
|
|
@@ -178036,11 +178839,6 @@ export declare type TrelloMoveCardBoardEntities = {
|
|
|
178036
178839
|
card?: Maybe<TrelloActionCardEntity>;
|
|
178037
178840
|
memberCreator?: Maybe<TrelloActionMemberEntity>;
|
|
178038
178841
|
};
|
|
178039
|
-
export declare type TrelloMoveCardFailure = {
|
|
178040
|
-
__typename?: 'TrelloMoveCardFailure';
|
|
178041
|
-
card: TrelloCard;
|
|
178042
|
-
message: Scalars['String']['output'];
|
|
178043
|
-
};
|
|
178044
178842
|
export declare type TrelloMoveCardToBoardAction = TrelloAction & TrelloCardActionData & {
|
|
178045
178843
|
__typename?: 'TrelloMoveCardToBoardAction';
|
|
178046
178844
|
appCreator?: Maybe<TrelloAppCreator>;
|
|
@@ -178056,19 +178854,6 @@ export declare type TrelloMoveCardToBoardAction = TrelloAction & TrelloCardActio
|
|
|
178056
178854
|
reactionsDeleted?: Maybe<Array<TrelloReactionDeleted>>;
|
|
178057
178855
|
type?: Maybe<Scalars['String']['output']>;
|
|
178058
178856
|
};
|
|
178059
|
-
export declare type TrelloMoveCardsInput = {
|
|
178060
|
-
boardId: Scalars['ID']['input'];
|
|
178061
|
-
cardIds: Array<Scalars['ID']['input']>;
|
|
178062
|
-
listId: Scalars['ID']['input'];
|
|
178063
|
-
position: Scalars['Float']['input'];
|
|
178064
|
-
};
|
|
178065
|
-
export declare type TrelloMoveCardsPayload = {
|
|
178066
|
-
__typename?: 'TrelloMoveCardsPayload';
|
|
178067
|
-
errors?: Maybe<Array<MutationError>>;
|
|
178068
|
-
moveFailures?: Maybe<Array<TrelloMoveCardFailure>>;
|
|
178069
|
-
movedCards?: Maybe<Array<TrelloCard>>;
|
|
178070
|
-
success: Scalars['Boolean']['output'];
|
|
178071
|
-
};
|
|
178072
178857
|
export declare type TrelloMoveInboxCardToBoardAction = TrelloAction & TrelloCardActionData & {
|
|
178073
178858
|
__typename?: 'TrelloMoveInboxCardToBoardAction';
|
|
178074
178859
|
appCreator?: Maybe<TrelloAppCreator>;
|
|
@@ -178133,11 +178918,9 @@ export declare type TrelloMutationApi = {
|
|
|
178133
178918
|
editPlannerCalendarEvent?: Maybe<TrelloEditPlannerCalendarEventPayload>;
|
|
178134
178919
|
generateBoardBackgroundWithAi?: Maybe<TrelloGenerateBoardBackgroundWithAiPayload>;
|
|
178135
178920
|
generateCheckItemsForCard?: Maybe<TrelloGenerateCheckItemsForCardPayload>;
|
|
178136
|
-
generateChecklistsForCard?: Maybe<TrelloGenerateChecklistsForCardPayload>;
|
|
178137
178921
|
markCardComplete?: Maybe<TrelloMarkCardCompletePayload>;
|
|
178138
178922
|
markInboxNotificationsRead?: Maybe<TrelloMarkInboxNotificationsReadPayload>;
|
|
178139
178923
|
mergeCards?: Maybe<TrelloMergeCardsPayload>;
|
|
178140
|
-
moveCards?: Maybe<TrelloMoveCardsPayload>;
|
|
178141
178924
|
movePlannerCalendarEvent?: Maybe<TrelloMovePlannerCalendarEventPayload>;
|
|
178142
178925
|
pinCard?: Maybe<TrelloPinCardPayload>;
|
|
178143
178926
|
proposePlannerEvents?: Maybe<TrelloProposePlannerEventsPayload>;
|
|
@@ -178158,6 +178941,7 @@ export declare type TrelloMutationApi = {
|
|
|
178158
178941
|
sortInboxCards?: Maybe<TrelloSortInboxCardsPayload>;
|
|
178159
178942
|
sortListCards?: Maybe<TrelloSortListCardsPayload>;
|
|
178160
178943
|
submitCardBatchToBoard?: Maybe<TrelloCardBatchJobPayload>;
|
|
178944
|
+
toggleLabsFeatureForMember?: Maybe<TrelloToggleLabsFeatureForMemberPayload>;
|
|
178161
178945
|
unarchiveCard?: Maybe<TrelloUnarchiveCardPayload>;
|
|
178162
178946
|
unwatchCard?: Maybe<TrelloWatchCardPayload>;
|
|
178163
178947
|
updateAiRule?: Maybe<TrelloUpdateAiRulePayload>;
|
|
@@ -178252,9 +179036,6 @@ export declare type TrelloMutationApiGenerateBoardBackgroundWithAiArgs = {
|
|
|
178252
179036
|
export declare type TrelloMutationApiGenerateCheckItemsForCardArgs = {
|
|
178253
179037
|
input: TrelloGenerateCheckItemsForCardInput;
|
|
178254
179038
|
};
|
|
178255
|
-
export declare type TrelloMutationApiGenerateChecklistsForCardArgs = {
|
|
178256
|
-
input: TrelloGenerateChecklistsForCardInput;
|
|
178257
|
-
};
|
|
178258
179039
|
export declare type TrelloMutationApiMarkCardCompleteArgs = {
|
|
178259
179040
|
input: TrelloMarkCardCompleteInput;
|
|
178260
179041
|
};
|
|
@@ -178264,9 +179045,6 @@ export declare type TrelloMutationApiMarkInboxNotificationsReadArgs = {
|
|
|
178264
179045
|
export declare type TrelloMutationApiMergeCardsArgs = {
|
|
178265
179046
|
input: TrelloMergeCardsInput;
|
|
178266
179047
|
};
|
|
178267
|
-
export declare type TrelloMutationApiMoveCardsArgs = {
|
|
178268
|
-
input: TrelloMoveCardsInput;
|
|
178269
|
-
};
|
|
178270
179048
|
export declare type TrelloMutationApiMovePlannerCalendarEventArgs = {
|
|
178271
179049
|
input: TrelloMovePlannerCalendarEventInput;
|
|
178272
179050
|
};
|
|
@@ -178324,6 +179102,9 @@ export declare type TrelloMutationApiSortListCardsArgs = {
|
|
|
178324
179102
|
export declare type TrelloMutationApiSubmitCardBatchToBoardArgs = {
|
|
178325
179103
|
input: TrelloCardBatchSpecificationInput;
|
|
178326
179104
|
};
|
|
179105
|
+
export declare type TrelloMutationApiToggleLabsFeatureForMemberArgs = {
|
|
179106
|
+
input: TrelloToggleLabsFeatureForMemberInput;
|
|
179107
|
+
};
|
|
178327
179108
|
export declare type TrelloMutationApiUnarchiveCardArgs = {
|
|
178328
179109
|
input: TrelloUnarchiveCardInput;
|
|
178329
179110
|
};
|
|
@@ -178461,6 +179242,7 @@ export declare type TrelloPinCardPayload = Payload & {
|
|
|
178461
179242
|
export declare type TrelloPlanner = {
|
|
178462
179243
|
__typename?: 'TrelloPlanner';
|
|
178463
179244
|
accounts?: Maybe<TrelloPlannerCalendarAccountConnection>;
|
|
179245
|
+
cardsWithDueDates?: Maybe<TrelloPlannerCardsWithDueDatesConnection>;
|
|
178464
179246
|
id: Scalars['ID']['output'];
|
|
178465
179247
|
primaryAccountId?: Maybe<Scalars['ID']['output']>;
|
|
178466
179248
|
primaryCalendarId?: Maybe<Scalars['ID']['output']>;
|
|
@@ -178471,10 +179253,21 @@ export declare type TrelloPlannerAccountsArgs = {
|
|
|
178471
179253
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
178472
179254
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
178473
179255
|
};
|
|
179256
|
+
export declare type TrelloPlannerCardsWithDueDatesArgs = {
|
|
179257
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
179258
|
+
filter?: InputMaybe<TrelloPlannerCardsWithDueDatesFilter>;
|
|
179259
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
179260
|
+
};
|
|
178474
179261
|
export declare type TrelloPlannerProposedEventsArgs = {
|
|
178475
179262
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
178476
179263
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
178477
179264
|
};
|
|
179265
|
+
export declare type TrelloPlannerBoardWithDueCards = {
|
|
179266
|
+
__typename?: 'TrelloPlannerBoardWithDueCards';
|
|
179267
|
+
board?: Maybe<TrelloBaseBoard>;
|
|
179268
|
+
id: Scalars['ID']['output'];
|
|
179269
|
+
lists?: Maybe<Array<TrelloPlannerListWithDueCards>>;
|
|
179270
|
+
};
|
|
178478
179271
|
export declare type TrelloPlannerCalendar = Node & TrelloProviderCalendarInterface & {
|
|
178479
179272
|
__typename?: 'TrelloPlannerCalendar';
|
|
178480
179273
|
color?: Maybe<TrelloPlannerCalendarColor>;
|
|
@@ -178643,6 +179436,7 @@ export declare type TrelloPlannerCalendarEventCard = Node & {
|
|
|
178643
179436
|
card?: Maybe<TrelloCard>;
|
|
178644
179437
|
cardId?: Maybe<Scalars['ID']['output']>;
|
|
178645
179438
|
cardObjectId?: Maybe<Scalars['ID']['output']>;
|
|
179439
|
+
cardOrInboxCard?: Maybe<TrelloBaseCard>;
|
|
178646
179440
|
id: Scalars['ID']['output'];
|
|
178647
179441
|
objectId?: Maybe<Scalars['ID']['output']>;
|
|
178648
179442
|
position?: Maybe<Scalars['Float']['output']>;
|
|
@@ -178809,6 +179603,26 @@ export declare type TrelloPlannerCardUpdated = {
|
|
|
178809
179603
|
list?: Maybe<TrelloPlannerCardListUpdated>;
|
|
178810
179604
|
objectId?: Maybe<Scalars['ID']['output']>;
|
|
178811
179605
|
};
|
|
179606
|
+
export declare type TrelloPlannerCardWithDueDate = {
|
|
179607
|
+
__typename?: 'TrelloPlannerCardWithDueDate';
|
|
179608
|
+
card?: Maybe<TrelloBaseCard>;
|
|
179609
|
+
id: Scalars['ID']['output'];
|
|
179610
|
+
};
|
|
179611
|
+
export declare type TrelloPlannerCardsWithDueDatesConnection = {
|
|
179612
|
+
__typename?: 'TrelloPlannerCardsWithDueDatesConnection';
|
|
179613
|
+
edges?: Maybe<Array<TrelloPlannerCardsWithDueDatesEdge>>;
|
|
179614
|
+
nodes?: Maybe<Array<TrelloPlannerBoardWithDueCards>>;
|
|
179615
|
+
pageInfo: PageInfo;
|
|
179616
|
+
};
|
|
179617
|
+
export declare type TrelloPlannerCardsWithDueDatesEdge = {
|
|
179618
|
+
__typename?: 'TrelloPlannerCardsWithDueDatesEdge';
|
|
179619
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
179620
|
+
node?: Maybe<TrelloPlannerBoardWithDueCards>;
|
|
179621
|
+
};
|
|
179622
|
+
export declare type TrelloPlannerCardsWithDueDatesFilter = {
|
|
179623
|
+
dueEnd?: InputMaybe<Scalars['DateTime']['input']>;
|
|
179624
|
+
dueStart?: InputMaybe<Scalars['DateTime']['input']>;
|
|
179625
|
+
};
|
|
178812
179626
|
export declare type TrelloPlannerEventCardConnection = {
|
|
178813
179627
|
__typename?: 'TrelloPlannerEventCardConnection';
|
|
178814
179628
|
calendarStatus?: Maybe<TrelloPlannerCalendarStatus>;
|
|
@@ -178840,6 +179654,12 @@ export declare enum TrelloPlannerEventTimeFilter {
|
|
|
178840
179654
|
All = "ALL",
|
|
178841
179655
|
Future = "FUTURE"
|
|
178842
179656
|
}
|
|
179657
|
+
export declare type TrelloPlannerListWithDueCards = {
|
|
179658
|
+
__typename?: 'TrelloPlannerListWithDueCards';
|
|
179659
|
+
cards?: Maybe<Array<TrelloPlannerCardWithDueDate>>;
|
|
179660
|
+
id: Scalars['ID']['output'];
|
|
179661
|
+
list?: Maybe<TrelloList>;
|
|
179662
|
+
};
|
|
178843
179663
|
export declare type TrelloPlannerProposedEventConnection = {
|
|
178844
179664
|
__typename?: 'TrelloPlannerProposedEventConnection';
|
|
178845
179665
|
edges?: Maybe<Array<TrelloPlannerProposedEventEdge>>;
|
|
@@ -179572,6 +180392,15 @@ export declare type TrelloTemplateGalleryLanguage = {
|
|
|
179572
180392
|
locale: Scalars['String']['output'];
|
|
179573
180393
|
localizedDescription: Scalars['String']['output'];
|
|
179574
180394
|
};
|
|
180395
|
+
export declare type TrelloToggleLabsFeatureForMemberInput = {
|
|
180396
|
+
enabled: Scalars['Boolean']['input'];
|
|
180397
|
+
feature: TrelloLabsFeature;
|
|
180398
|
+
};
|
|
180399
|
+
export declare type TrelloToggleLabsFeatureForMemberPayload = Payload & {
|
|
180400
|
+
__typename?: 'TrelloToggleLabsFeatureForMemberPayload';
|
|
180401
|
+
errors?: Maybe<Array<MutationError>>;
|
|
180402
|
+
success: Scalars['Boolean']['output'];
|
|
180403
|
+
};
|
|
179575
180404
|
export declare type TrelloUnarchiveCardInput = {
|
|
179576
180405
|
cardId: Scalars['ID']['input'];
|
|
179577
180406
|
};
|
|
@@ -180070,8 +180899,11 @@ export declare enum TrelloWorkspaceTier {
|
|
|
180070
180899
|
export declare type TrelloWorkspaceUpdated = {
|
|
180071
180900
|
__typename?: 'TrelloWorkspaceUpdated';
|
|
180072
180901
|
_deltas?: Maybe<Array<Scalars['String']['output']>>;
|
|
180902
|
+
description?: Maybe<Scalars['String']['output']>;
|
|
180903
|
+
displayName?: Maybe<Scalars['String']['output']>;
|
|
180073
180904
|
enterprise?: Maybe<TrelloWorkspaceEnterpriseUpdated>;
|
|
180074
180905
|
id: Scalars['ID']['output'];
|
|
180906
|
+
name?: Maybe<Scalars['String']['output']>;
|
|
180075
180907
|
offering?: Maybe<Scalars['String']['output']>;
|
|
180076
180908
|
onPowerUpDataDeleted?: Maybe<Array<TrelloPowerUpDataDeleted>>;
|
|
180077
180909
|
planner?: Maybe<TrelloPlannerUpdated>;
|