@forge/cli-shared 8.2.0 → 8.3.0-next.0
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 +12 -0
- package/out/graphql/graphql-types.d.ts +2205 -190
- package/out/graphql/graphql-types.d.ts.map +1 -1
- package/out/graphql/graphql-types.js +174 -27
- package/out/service/statsig-service.d.ts +2 -1
- package/out/service/statsig-service.d.ts.map +1 -1
- package/out/service/statsig-service.js +6 -0
- package/out/ui/text.d.ts +33 -0
- package/out/ui/text.d.ts.map +1 -1
- package/out/ui/text.js +34 -1
- package/package.json +2 -2
|
@@ -116,6 +116,10 @@ export declare type Scalars = {
|
|
|
116
116
|
input: any;
|
|
117
117
|
output: any;
|
|
118
118
|
};
|
|
119
|
+
Upload: {
|
|
120
|
+
input: any;
|
|
121
|
+
output: any;
|
|
122
|
+
};
|
|
119
123
|
};
|
|
120
124
|
export declare type AiConfigResponse = {
|
|
121
125
|
__typename?: 'AIConfigResponse';
|
|
@@ -1198,6 +1202,13 @@ export declare type AgentStudioActionConfigurationInput = {
|
|
|
1198
1202
|
export declare type AgentStudioActionInput = {
|
|
1199
1203
|
actionKey: Scalars['String']['input'];
|
|
1200
1204
|
};
|
|
1205
|
+
export declare type AgentStudioAddGroupsToCreatePermissionPayload = Payload & {
|
|
1206
|
+
__typename?: 'AgentStudioAddGroupsToCreatePermissionPayload';
|
|
1207
|
+
addedScopedGroupARIs?: Maybe<Array<Scalars['ID']['output']>>;
|
|
1208
|
+
errors?: Maybe<Array<MutationError>>;
|
|
1209
|
+
groups?: Maybe<Array<Maybe<IdentityGroup>>>;
|
|
1210
|
+
success: Scalars['Boolean']['output'];
|
|
1211
|
+
};
|
|
1201
1212
|
export declare type AgentStudioAgent = {
|
|
1202
1213
|
connectedChannels?: Maybe<AgentStudioConnectedChannels>;
|
|
1203
1214
|
description?: Maybe<Scalars['String']['output']>;
|
|
@@ -1205,6 +1216,22 @@ export declare type AgentStudioAgent = {
|
|
|
1205
1216
|
knowledgeSources?: Maybe<AgentStudioKnowledgeConfiguration>;
|
|
1206
1217
|
name?: Maybe<Scalars['String']['output']>;
|
|
1207
1218
|
};
|
|
1219
|
+
export declare type AgentStudioAgentCreatePermission = {
|
|
1220
|
+
__typename?: 'AgentStudioAgentCreatePermission';
|
|
1221
|
+
group?: Maybe<IdentityGroup>;
|
|
1222
|
+
scopedGroupARI?: Maybe<Scalars['ID']['output']>;
|
|
1223
|
+
};
|
|
1224
|
+
export declare type AgentStudioAgentCreatePermissionEdge = {
|
|
1225
|
+
__typename?: 'AgentStudioAgentCreatePermissionEdge';
|
|
1226
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
1227
|
+
node?: Maybe<AgentStudioAgentCreatePermission>;
|
|
1228
|
+
};
|
|
1229
|
+
export declare type AgentStudioAgentCreatePermissionsConnection = {
|
|
1230
|
+
__typename?: 'AgentStudioAgentCreatePermissionsConnection';
|
|
1231
|
+
edges?: Maybe<Array<AgentStudioAgentCreatePermissionEdge>>;
|
|
1232
|
+
mode?: Maybe<AgentStudioCreateAgentPermissionMode>;
|
|
1233
|
+
pageInfo?: Maybe<PageInfo>;
|
|
1234
|
+
};
|
|
1208
1235
|
export declare type AgentStudioAgentEdge = {
|
|
1209
1236
|
__typename?: 'AgentStudioAgentEdge';
|
|
1210
1237
|
cursor?: Maybe<Scalars['String']['output']>;
|
|
@@ -1250,6 +1277,9 @@ export declare type AgentStudioAssistantScenario = AgentStudioScenario & Node &
|
|
|
1250
1277
|
id: Scalars['ID']['output'];
|
|
1251
1278
|
instructions: Scalars['String']['output'];
|
|
1252
1279
|
invocationDescription: Scalars['String']['output'];
|
|
1280
|
+
isActive: Scalars['Boolean']['output'];
|
|
1281
|
+
isDefault: Scalars['Boolean']['output'];
|
|
1282
|
+
isValid: Scalars['Boolean']['output'];
|
|
1253
1283
|
knowledgeSources?: Maybe<AgentStudioKnowledgeConfiguration>;
|
|
1254
1284
|
name: Scalars['String']['output'];
|
|
1255
1285
|
};
|
|
@@ -1294,11 +1324,18 @@ export declare type AgentStudioCreateAgentPayload = Payload & {
|
|
|
1294
1324
|
errors?: Maybe<Array<MutationError>>;
|
|
1295
1325
|
success: Scalars['Boolean']['output'];
|
|
1296
1326
|
};
|
|
1327
|
+
export declare enum AgentStudioCreateAgentPermissionMode {
|
|
1328
|
+
Everyone = "EVERYONE",
|
|
1329
|
+
NoOne = "NO_ONE",
|
|
1330
|
+
Selected = "SELECTED"
|
|
1331
|
+
}
|
|
1297
1332
|
export declare type AgentStudioCreateScenarioInput = {
|
|
1298
1333
|
actions?: InputMaybe<Array<AgentStudioActionInput>>;
|
|
1299
|
-
containerId
|
|
1334
|
+
containerId: Scalars['ID']['input'];
|
|
1300
1335
|
instructions: Scalars['String']['input'];
|
|
1301
1336
|
invocationDescription: Scalars['String']['input'];
|
|
1337
|
+
isActive: Scalars['Boolean']['input'];
|
|
1338
|
+
isDefault: Scalars['Boolean']['input'];
|
|
1302
1339
|
knowledgeSources?: InputMaybe<AgentStudioKnowledgeConfigurationInput>;
|
|
1303
1340
|
name: Scalars['String']['input'];
|
|
1304
1341
|
};
|
|
@@ -1349,6 +1386,13 @@ export declare type AgentStudioJiraKnowledgeFilter = {
|
|
|
1349
1386
|
export declare type AgentStudioJiraKnowledgeFilterInput = {
|
|
1350
1387
|
projectFilter?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
1351
1388
|
};
|
|
1389
|
+
export declare type AgentStudioJsmKnowledgeFilter = {
|
|
1390
|
+
__typename?: 'AgentStudioJsmKnowledgeFilter';
|
|
1391
|
+
jsmProjectFilter?: Maybe<Array<Scalars['ID']['output']>>;
|
|
1392
|
+
};
|
|
1393
|
+
export declare type AgentStudioJsmKnowledgeFilterInput = {
|
|
1394
|
+
jsmProjectFilter?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
1395
|
+
};
|
|
1352
1396
|
export declare type AgentStudioKnowledgeConfiguration = {
|
|
1353
1397
|
__typename?: 'AgentStudioKnowledgeConfiguration';
|
|
1354
1398
|
enabled?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -1358,10 +1402,11 @@ export declare type AgentStudioKnowledgeConfigurationInput = {
|
|
|
1358
1402
|
enabled?: InputMaybe<Scalars['Boolean']['input']>;
|
|
1359
1403
|
sources?: InputMaybe<Array<AgentStudioKnowledgeSourceInput>>;
|
|
1360
1404
|
};
|
|
1361
|
-
export declare type AgentStudioKnowledgeFilter = AgentStudioConfluenceKnowledgeFilter | AgentStudioJiraKnowledgeFilter | AgentStudioSlackKnowledgeFilter;
|
|
1405
|
+
export declare type AgentStudioKnowledgeFilter = AgentStudioConfluenceKnowledgeFilter | AgentStudioJiraKnowledgeFilter | AgentStudioJsmKnowledgeFilter | AgentStudioSlackKnowledgeFilter;
|
|
1362
1406
|
export declare type AgentStudioKnowledgeFiltersInput = {
|
|
1363
1407
|
confluenceFilter?: InputMaybe<AgentStudioConfluenceKnowledgeFilterInput>;
|
|
1364
1408
|
jiraFilter?: InputMaybe<AgentStudioJiraKnowledgeFilterInput>;
|
|
1409
|
+
jsmFilter?: InputMaybe<AgentStudioJsmKnowledgeFilterInput>;
|
|
1365
1410
|
slackFilter?: InputMaybe<AgentStudioSlackKnowledgeFilterInput>;
|
|
1366
1411
|
};
|
|
1367
1412
|
export declare type AgentStudioKnowledgeSource = {
|
|
@@ -1380,21 +1425,38 @@ export declare type AgentStudioPortalChannel = AgentStudioChannel & {
|
|
|
1380
1425
|
connected?: Maybe<Scalars['Boolean']['output']>;
|
|
1381
1426
|
url?: Maybe<Scalars['String']['output']>;
|
|
1382
1427
|
};
|
|
1428
|
+
export declare type AgentStudioRemoveGroupsFromCreatePermissionPayload = Payload & {
|
|
1429
|
+
__typename?: 'AgentStudioRemoveGroupsFromCreatePermissionPayload';
|
|
1430
|
+
errors?: Maybe<Array<MutationError>>;
|
|
1431
|
+
groups?: Maybe<Array<Maybe<IdentityGroup>>>;
|
|
1432
|
+
removedScopedGroupARIs?: Maybe<Array<Scalars['ID']['output']>>;
|
|
1433
|
+
success: Scalars['Boolean']['output'];
|
|
1434
|
+
};
|
|
1383
1435
|
export declare type AgentStudioScenario = {
|
|
1384
1436
|
actions?: Maybe<Array<AgentStudioAction>>;
|
|
1385
1437
|
creatorId: Scalars['ID']['output'];
|
|
1386
1438
|
id: Scalars['ID']['output'];
|
|
1387
1439
|
instructions: Scalars['String']['output'];
|
|
1388
1440
|
invocationDescription: Scalars['String']['output'];
|
|
1441
|
+
isActive: Scalars['Boolean']['output'];
|
|
1442
|
+
isDefault: Scalars['Boolean']['output'];
|
|
1443
|
+
isValid: Scalars['Boolean']['output'];
|
|
1389
1444
|
knowledgeSources?: Maybe<AgentStudioKnowledgeConfiguration>;
|
|
1390
1445
|
name: Scalars['String']['output'];
|
|
1391
1446
|
};
|
|
1392
|
-
export declare type AgentStudioScenarioList = {
|
|
1393
|
-
__typename?: 'AgentStudioScenarioList';
|
|
1394
|
-
scenarioList: Array<AgentStudioScenario>;
|
|
1395
|
-
};
|
|
1396
|
-
export declare type AgentStudioScenarioListResult = AgentStudioScenarioList | QueryError;
|
|
1397
1447
|
export declare type AgentStudioScenarioResult = AgentStudioAssistantScenario | QueryError;
|
|
1448
|
+
export declare type AgentStudioScenariosEdge = {
|
|
1449
|
+
__typename?: 'AgentStudioScenariosEdge';
|
|
1450
|
+
cursor: Scalars['String']['output'];
|
|
1451
|
+
node?: Maybe<AgentStudioScenario>;
|
|
1452
|
+
};
|
|
1453
|
+
export declare type AgentStudioScenariosResult = {
|
|
1454
|
+
__typename?: 'AgentStudioScenariosResult';
|
|
1455
|
+
edges?: Maybe<Array<AgentStudioScenariosEdge>>;
|
|
1456
|
+
errors?: Maybe<Array<QueryError>>;
|
|
1457
|
+
pageInfo: PageInfo;
|
|
1458
|
+
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
1459
|
+
};
|
|
1398
1460
|
export declare type AgentStudioServiceAgent = AgentStudioAgent & Node & {
|
|
1399
1461
|
__typename?: 'AgentStudioServiceAgent';
|
|
1400
1462
|
connectedChannels?: Maybe<AgentStudioConnectedChannels>;
|
|
@@ -1482,11 +1544,20 @@ export declare type AgentStudioUpdateConversationStartersPayload = Payload & {
|
|
|
1482
1544
|
errors?: Maybe<Array<MutationError>>;
|
|
1483
1545
|
success: Scalars['Boolean']['output'];
|
|
1484
1546
|
};
|
|
1547
|
+
export declare type AgentStudioUpdateCreatePermissionModePayload = Payload & {
|
|
1548
|
+
__typename?: 'AgentStudioUpdateCreatePermissionModePayload';
|
|
1549
|
+
errors?: Maybe<Array<MutationError>>;
|
|
1550
|
+
mode?: Maybe<AgentStudioCreateAgentPermissionMode>;
|
|
1551
|
+
success: Scalars['Boolean']['output'];
|
|
1552
|
+
};
|
|
1485
1553
|
export declare type AgentStudioUpdateScenarioInput = {
|
|
1486
1554
|
actions?: InputMaybe<Array<AgentStudioActionInput>>;
|
|
1555
|
+
containerId: Scalars['ID']['input'];
|
|
1487
1556
|
creatorId: Scalars['ID']['input'];
|
|
1488
1557
|
instructions: Scalars['String']['input'];
|
|
1489
1558
|
invocationDescription: Scalars['String']['input'];
|
|
1559
|
+
isActive: Scalars['Boolean']['input'];
|
|
1560
|
+
isDefault: Scalars['Boolean']['input'];
|
|
1490
1561
|
knowledgeSources?: InputMaybe<AgentStudioKnowledgeConfigurationInput>;
|
|
1491
1562
|
name: Scalars['String']['input'];
|
|
1492
1563
|
};
|
|
@@ -1499,7 +1570,7 @@ export declare type AgentStudioUpdateScenarioMappingsPayload = Payload & {
|
|
|
1499
1570
|
export declare type AgentStudioUpdateScenarioPayload = Payload & {
|
|
1500
1571
|
__typename?: 'AgentStudioUpdateScenarioPayload';
|
|
1501
1572
|
errors?: Maybe<Array<MutationError>>;
|
|
1502
|
-
|
|
1573
|
+
scenarioList?: Maybe<Array<Maybe<AgentStudioScenario>>>;
|
|
1503
1574
|
success: Scalars['Boolean']['output'];
|
|
1504
1575
|
};
|
|
1505
1576
|
export declare enum AiCoreApiQuestionType {
|
|
@@ -1721,6 +1792,7 @@ export declare type App = {
|
|
|
1721
1792
|
createdBy?: Maybe<User>;
|
|
1722
1793
|
deployments?: Maybe<AppDeploymentConnection>;
|
|
1723
1794
|
description: Scalars['String']['output'];
|
|
1795
|
+
developerSpaceId?: Maybe<Scalars['ID']['output']>;
|
|
1724
1796
|
distributionStatus: Scalars['String']['output'];
|
|
1725
1797
|
ensureCollaborator: Scalars['Boolean']['output'];
|
|
1726
1798
|
environmentByKey?: Maybe<AppEnvironment>;
|
|
@@ -1870,6 +1942,7 @@ export declare enum AppContributorRole {
|
|
|
1870
1942
|
export declare type AppDeployment = {
|
|
1871
1943
|
__typename?: 'AppDeployment';
|
|
1872
1944
|
appId: Scalars['ID']['output'];
|
|
1945
|
+
buildTag?: Maybe<Scalars['ID']['output']>;
|
|
1873
1946
|
createdAt: Scalars['String']['output'];
|
|
1874
1947
|
createdBy?: Maybe<User>;
|
|
1875
1948
|
environmentKey: Scalars['String']['output'];
|
|
@@ -3172,11 +3245,46 @@ export declare type AssetsDmDataSource = {
|
|
|
3172
3245
|
noOfRecords?: Maybe<Scalars['Int']['output']>;
|
|
3173
3246
|
statusText?: Maybe<Scalars['String']['output']>;
|
|
3174
3247
|
};
|
|
3248
|
+
export declare type AssetsDmDataSourceConfig = {
|
|
3249
|
+
__typename?: 'AssetsDMDataSourceConfig';
|
|
3250
|
+
adapterType?: Maybe<Scalars['String']['output']>;
|
|
3251
|
+
configuration?: Maybe<Scalars['JSON']['output']>;
|
|
3252
|
+
objectClassType?: Maybe<AssetsDmObjectClassEnum>;
|
|
3253
|
+
};
|
|
3254
|
+
export declare type AssetsDmDataSourceDefaultTransformFunctionParameter = {
|
|
3255
|
+
__typename?: 'AssetsDMDataSourceDefaultTransformFunctionParameter';
|
|
3256
|
+
defFunctionParameterId: Scalars['ID']['output'];
|
|
3257
|
+
description: Scalars['String']['output'];
|
|
3258
|
+
displayName: Scalars['String']['output'];
|
|
3259
|
+
name: Scalars['String']['output'];
|
|
3260
|
+
required: Scalars['Boolean']['output'];
|
|
3261
|
+
type: AssetsDmDataSourceTransformParameterType;
|
|
3262
|
+
value?: Maybe<Scalars['String']['output']>;
|
|
3263
|
+
};
|
|
3264
|
+
export declare type AssetsDmDataSourceDefaultTransformFunctions = {
|
|
3265
|
+
__typename?: 'AssetsDMDataSourceDefaultTransformFunctions';
|
|
3266
|
+
defFunctionId: Scalars['ID']['output'];
|
|
3267
|
+
defFunctionParameters: Array<AssetsDmDataSourceDefaultTransformFunctionParameter>;
|
|
3268
|
+
description: Scalars['String']['output'];
|
|
3269
|
+
name: Scalars['String']['output'];
|
|
3270
|
+
type: Scalars['String']['output'];
|
|
3271
|
+
};
|
|
3272
|
+
export declare type AssetsDmDataSourceDetails = {
|
|
3273
|
+
__typename?: 'AssetsDMDataSourceDetails';
|
|
3274
|
+
dataSourceId: Scalars['ID']['output'];
|
|
3275
|
+
dataSourceTypeId: Scalars['Int']['output'];
|
|
3276
|
+
isTemplate: Scalars['Boolean']['output'];
|
|
3277
|
+
name: Scalars['String']['output'];
|
|
3278
|
+
objectClassName: Scalars['String']['output'];
|
|
3279
|
+
steps: AssetsDmDataSourceSteps;
|
|
3280
|
+
};
|
|
3175
3281
|
export declare type AssetsDmDataSourceFormFields = {
|
|
3176
3282
|
__typename?: 'AssetsDMDataSourceFormFields';
|
|
3177
3283
|
dataSourceJobs: Array<AssetsDmDataSourceJobs>;
|
|
3178
3284
|
dataSourceTypes: AssetsDmDataSourceTypesConnection;
|
|
3179
3285
|
dateFormats: Array<AssetsDmDateFormats>;
|
|
3286
|
+
objectSchemas: Array<AssetsDmObjectSchema>;
|
|
3287
|
+
schemaObjectTypes: Array<AssetsDmSchemaObjectType>;
|
|
3180
3288
|
};
|
|
3181
3289
|
export declare type AssetsDmDataSourceFormFieldsDataSourceTypesArgs = {
|
|
3182
3290
|
name?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -3195,12 +3303,59 @@ export declare type AssetsDmDataSourceJobs = {
|
|
|
3195
3303
|
jobId: Scalars['String']['output'];
|
|
3196
3304
|
name: Scalars['String']['output'];
|
|
3197
3305
|
};
|
|
3306
|
+
export declare enum AssetsDmDataSourceOperationEnum {
|
|
3307
|
+
Create = "Create",
|
|
3308
|
+
Update = "Update"
|
|
3309
|
+
}
|
|
3198
3310
|
export declare type AssetsDmDataSourceResponse = {
|
|
3199
3311
|
__typename?: 'AssetsDMDataSourceResponse';
|
|
3200
3312
|
error?: Maybe<Scalars['String']['output']>;
|
|
3201
3313
|
message?: Maybe<Scalars['String']['output']>;
|
|
3202
3314
|
success: Scalars['Boolean']['output'];
|
|
3203
3315
|
};
|
|
3316
|
+
export declare type AssetsDmDataSourceSteps = {
|
|
3317
|
+
__typename?: 'AssetsDMDataSourceSteps';
|
|
3318
|
+
cleanse: AssetsDmStep;
|
|
3319
|
+
fetch: AssetsDmStep;
|
|
3320
|
+
map: AssetsDmStep;
|
|
3321
|
+
merge: AssetsDmStep;
|
|
3322
|
+
transform: AssetsDmStep;
|
|
3323
|
+
};
|
|
3324
|
+
export declare type AssetsDmDataSourceTransform = {
|
|
3325
|
+
__typename?: 'AssetsDMDataSourceTransform';
|
|
3326
|
+
dataSourceTypeId: Scalars['Int']['output'];
|
|
3327
|
+
defaultFunctions: Array<AssetsDmDataSourceDefaultTransformFunctions>;
|
|
3328
|
+
functions: Array<AssetsDmDataSourceTransformFunctions>;
|
|
3329
|
+
isTemplate: Scalars['Boolean']['output'];
|
|
3330
|
+
};
|
|
3331
|
+
export declare type AssetsDmDataSourceTransformFunctionParameter = {
|
|
3332
|
+
__typename?: 'AssetsDMDataSourceTransformFunctionParameter';
|
|
3333
|
+
defFunctionParameterId: Scalars['ID']['output'];
|
|
3334
|
+
description: Scalars['String']['output'];
|
|
3335
|
+
displayName: Scalars['String']['output'];
|
|
3336
|
+
functionParameterId: Scalars['ID']['output'];
|
|
3337
|
+
name: Scalars['String']['output'];
|
|
3338
|
+
placeholder: Scalars['String']['output'];
|
|
3339
|
+
required: Scalars['Boolean']['output'];
|
|
3340
|
+
type: AssetsDmDataSourceTransformParameterType;
|
|
3341
|
+
value: Scalars['String']['output'];
|
|
3342
|
+
};
|
|
3343
|
+
export declare type AssetsDmDataSourceTransformFunctions = {
|
|
3344
|
+
__typename?: 'AssetsDMDataSourceTransformFunctions';
|
|
3345
|
+
defFunctionDescription: Scalars['String']['output'];
|
|
3346
|
+
defFunctionId: Scalars['ID']['output'];
|
|
3347
|
+
defFunctionName: Scalars['String']['output'];
|
|
3348
|
+
enabled: Scalars['Boolean']['output'];
|
|
3349
|
+
functionId: Scalars['ID']['output'];
|
|
3350
|
+
functionParameters: Array<AssetsDmDataSourceTransformFunctionParameter>;
|
|
3351
|
+
priority: Scalars['Int']['output'];
|
|
3352
|
+
};
|
|
3353
|
+
export declare enum AssetsDmDataSourceTransformParameterType {
|
|
3354
|
+
Date = "date",
|
|
3355
|
+
Numeric = "numeric",
|
|
3356
|
+
Select = "select",
|
|
3357
|
+
String = "string"
|
|
3358
|
+
}
|
|
3204
3359
|
export declare type AssetsDmDataSourceTypes = {
|
|
3205
3360
|
__typename?: 'AssetsDMDataSourceTypes';
|
|
3206
3361
|
dataSourceTypeId: Scalars['ID']['output'];
|
|
@@ -3259,13 +3414,107 @@ export declare enum AssetsDmObjectClassEnum {
|
|
|
3259
3414
|
Peripherals = "Peripherals",
|
|
3260
3415
|
Software = "Software"
|
|
3261
3416
|
}
|
|
3417
|
+
export declare type AssetsDmObjectSchema = {
|
|
3418
|
+
__typename?: 'AssetsDMObjectSchema';
|
|
3419
|
+
id: Scalars['ID']['output'];
|
|
3420
|
+
name: Scalars['String']['output'];
|
|
3421
|
+
objectCount: Scalars['Int']['output'];
|
|
3422
|
+
};
|
|
3423
|
+
export declare enum AssetsDmObjectsListColumnType {
|
|
3424
|
+
Boolean = "BOOLEAN",
|
|
3425
|
+
Datetime = "DATETIME",
|
|
3426
|
+
Icon = "ICON",
|
|
3427
|
+
String = "STRING",
|
|
3428
|
+
Tag = "TAG"
|
|
3429
|
+
}
|
|
3430
|
+
export declare type AssetsDmObjectsListColumns = {
|
|
3431
|
+
__typename?: 'AssetsDMObjectsListColumns';
|
|
3432
|
+
dataColumns: Array<AssetsDmObjectsListDataColumn>;
|
|
3433
|
+
};
|
|
3434
|
+
export declare type AssetsDmObjectsListDataColumn = {
|
|
3435
|
+
__typename?: 'AssetsDMObjectsListDataColumn';
|
|
3436
|
+
columnName: Scalars['String']['output'];
|
|
3437
|
+
columnType: AssetsDmObjectsListColumnType;
|
|
3438
|
+
isDataSource?: Maybe<Scalars['Boolean']['output']>;
|
|
3439
|
+
isPrimary: Scalars['Boolean']['output'];
|
|
3440
|
+
};
|
|
3441
|
+
export declare type AssetsDmObjectsListDataRow = {
|
|
3442
|
+
__typename?: 'AssetsDMObjectsListDataRow';
|
|
3443
|
+
data: Array<AssetsDmObjectsListDataRowItem>;
|
|
3444
|
+
key: Scalars['String']['output'];
|
|
3445
|
+
tags: Array<AssetsDmObjectsListTag>;
|
|
3446
|
+
};
|
|
3447
|
+
export declare type AssetsDmObjectsListDataRowItem = {
|
|
3448
|
+
__typename?: 'AssetsDMObjectsListDataRowItem';
|
|
3449
|
+
columnName: Scalars['String']['output'];
|
|
3450
|
+
columnType: AssetsDmObjectsListColumnType;
|
|
3451
|
+
value?: Maybe<Scalars['JSON']['output']>;
|
|
3452
|
+
};
|
|
3453
|
+
export declare type AssetsDmObjectsListDataRows = {
|
|
3454
|
+
__typename?: 'AssetsDMObjectsListDataRows';
|
|
3455
|
+
dataRows: Array<AssetsDmObjectsListDataRow>;
|
|
3456
|
+
pageInfo: AssetsDmObjectsListPageInfo;
|
|
3457
|
+
totalCount: Scalars['Int']['output'];
|
|
3458
|
+
};
|
|
3459
|
+
export declare enum AssetsDmObjectsListIconType {
|
|
3460
|
+
Failed = "FAILED",
|
|
3461
|
+
Success = "SUCCESS",
|
|
3462
|
+
Unknown = "UNKNOWN"
|
|
3463
|
+
}
|
|
3464
|
+
export declare type AssetsDmObjectsListPageInfo = {
|
|
3465
|
+
__typename?: 'AssetsDMObjectsListPageInfo';
|
|
3466
|
+
currentPageCursor?: Maybe<Scalars['Int']['output']>;
|
|
3467
|
+
hasNextPage: Scalars['Boolean']['output'];
|
|
3468
|
+
hasPreviousPage: Scalars['Boolean']['output'];
|
|
3469
|
+
nextPageCursor?: Maybe<Scalars['Int']['output']>;
|
|
3470
|
+
pageSize: Scalars['Int']['output'];
|
|
3471
|
+
previousPageCursor?: Maybe<Scalars['Int']['output']>;
|
|
3472
|
+
totalPages: Scalars['Int']['output'];
|
|
3473
|
+
};
|
|
3474
|
+
export declare type AssetsDmObjectsListPageInfoInput = {
|
|
3475
|
+
pageCursor?: InputMaybe<Scalars['Int']['input']>;
|
|
3476
|
+
pageSize?: InputMaybe<Scalars['Int']['input']>;
|
|
3477
|
+
};
|
|
3478
|
+
export declare type AssetsDmObjectsListSortBy = {
|
|
3479
|
+
name: Scalars['String']['input'];
|
|
3480
|
+
order: AssetsDmObjectsListSortOrder;
|
|
3481
|
+
};
|
|
3482
|
+
export declare enum AssetsDmObjectsListSortOrder {
|
|
3483
|
+
Asc = "ASC",
|
|
3484
|
+
Desc = "DESC"
|
|
3485
|
+
}
|
|
3486
|
+
export declare type AssetsDmObjectsListTag = {
|
|
3487
|
+
__typename?: 'AssetsDMObjectsListTag';
|
|
3488
|
+
name: Scalars['String']['output'];
|
|
3489
|
+
tagcode: Scalars['Int']['output'];
|
|
3490
|
+
};
|
|
3491
|
+
export declare type AssetsDmSchemaObjectType = {
|
|
3492
|
+
__typename?: 'AssetsDMSchemaObjectType';
|
|
3493
|
+
id: Scalars['ID']['output'];
|
|
3494
|
+
name: Scalars['String']['output'];
|
|
3495
|
+
objectCount?: Maybe<Scalars['Int']['output']>;
|
|
3496
|
+
objectSchemaId: Scalars['String']['output'];
|
|
3497
|
+
parentObjectTypeId?: Maybe<Scalars['String']['output']>;
|
|
3498
|
+
};
|
|
3499
|
+
export declare type AssetsDmStep = {
|
|
3500
|
+
__typename?: 'AssetsDMStep';
|
|
3501
|
+
lastFetched: Scalars['String']['output'];
|
|
3502
|
+
status: AssetsDmStepStatus;
|
|
3503
|
+
};
|
|
3504
|
+
export declare enum AssetsDmStepStatus {
|
|
3505
|
+
Blocked = "BLOCKED",
|
|
3506
|
+
Completed = "COMPLETED",
|
|
3507
|
+
Error = "ERROR",
|
|
3508
|
+
NotStarted = "NOT_STARTED",
|
|
3509
|
+
Outdated = "OUTDATED"
|
|
3510
|
+
}
|
|
3262
3511
|
export declare type AssetsIcon = {
|
|
3263
3512
|
__typename?: 'AssetsIcon';
|
|
3264
3513
|
id?: Maybe<Scalars['String']['output']>;
|
|
3265
3514
|
url16?: Maybe<Scalars['String']['output']>;
|
|
3266
3515
|
url48?: Maybe<Scalars['String']['output']>;
|
|
3267
3516
|
};
|
|
3268
|
-
export declare type AssetsObject = {
|
|
3517
|
+
export declare type AssetsObject = Node & {
|
|
3269
3518
|
__typename?: 'AssetsObject';
|
|
3270
3519
|
avatar?: Maybe<AssetsAvatar>;
|
|
3271
3520
|
created?: Maybe<Scalars['DateTime']['output']>;
|
|
@@ -3275,7 +3524,7 @@ export declare type AssetsObject = {
|
|
|
3275
3524
|
objectType?: Maybe<AssetsObjectType>;
|
|
3276
3525
|
updated?: Maybe<Scalars['DateTime']['output']>;
|
|
3277
3526
|
};
|
|
3278
|
-
export declare type AssetsObjectType = {
|
|
3527
|
+
export declare type AssetsObjectType = Node & {
|
|
3279
3528
|
__typename?: 'AssetsObjectType';
|
|
3280
3529
|
created?: Maybe<Scalars['DateTime']['output']>;
|
|
3281
3530
|
icon?: Maybe<AssetsIcon>;
|
|
@@ -3284,7 +3533,7 @@ export declare type AssetsObjectType = {
|
|
|
3284
3533
|
schema?: Maybe<AssetsSchema>;
|
|
3285
3534
|
updated?: Maybe<Scalars['DateTime']['output']>;
|
|
3286
3535
|
};
|
|
3287
|
-
export declare type AssetsSchema = {
|
|
3536
|
+
export declare type AssetsSchema = Node & {
|
|
3288
3537
|
__typename?: 'AssetsSchema';
|
|
3289
3538
|
created?: Maybe<Scalars['DateTime']['output']>;
|
|
3290
3539
|
id: Scalars['ID']['output'];
|
|
@@ -3352,6 +3601,8 @@ export declare enum AtlassianProductHostingType {
|
|
|
3352
3601
|
}
|
|
3353
3602
|
export declare type AtlassianStudioUserProductPermissions = {
|
|
3354
3603
|
__typename?: 'AtlassianStudioUserProductPermissions';
|
|
3604
|
+
isAbleToCreateAgents?: Maybe<Scalars['Boolean']['output']>;
|
|
3605
|
+
isAbleToGrantCreateAgentPermission?: Maybe<Scalars['Boolean']['output']>;
|
|
3355
3606
|
isConfluenceGlobalAdmin?: Maybe<Scalars['Boolean']['output']>;
|
|
3356
3607
|
isHelpCenterAdmin?: Maybe<Scalars['Boolean']['output']>;
|
|
3357
3608
|
isJiraGlobalAdmin?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -3511,6 +3762,7 @@ export declare type Backlog = {
|
|
|
3511
3762
|
cardTypes: Array<Maybe<CardType>>;
|
|
3512
3763
|
cards: Array<Maybe<SoftwareCard>>;
|
|
3513
3764
|
extension?: Maybe<BacklogExtension>;
|
|
3765
|
+
filteredCardIds?: Maybe<Array<Maybe<Scalars['ID']['output']>>>;
|
|
3514
3766
|
labels: Array<Maybe<Scalars['String']['output']>>;
|
|
3515
3767
|
requestColumnMigration: Scalars['Boolean']['output'];
|
|
3516
3768
|
};
|
|
@@ -4569,6 +4821,7 @@ export declare type CcpEntitlement = CommerceEntitlement & Node & {
|
|
|
4569
4821
|
id: Scalars['ID']['output'];
|
|
4570
4822
|
invoiceRequests?: Maybe<Array<Maybe<CcpInvoiceRequest>>>;
|
|
4571
4823
|
latestUsageForChargeElement?: Maybe<Scalars['Int']['output']>;
|
|
4824
|
+
license?: Maybe<CcpLicense>;
|
|
4572
4825
|
metadata?: Maybe<Array<Maybe<CcpMapEntry>>>;
|
|
4573
4826
|
meteredChargeElementUsageAggregated?: Maybe<CcpUsageQueryResult>;
|
|
4574
4827
|
meteredChargeElementUsageLatest?: Maybe<Scalars['Float']['output']>;
|
|
@@ -4769,6 +5022,30 @@ export declare type CcpInvoiceRequestItemSubscriptionObj = {
|
|
|
4769
5022
|
id?: Maybe<Scalars['ID']['output']>;
|
|
4770
5023
|
itemId?: Maybe<Scalars['String']['output']>;
|
|
4771
5024
|
};
|
|
5025
|
+
export declare type CcpLicense = {
|
|
5026
|
+
__typename?: 'CcpLicense';
|
|
5027
|
+
billToPartyName?: Maybe<Scalars['String']['output']>;
|
|
5028
|
+
created?: Maybe<Scalars['Float']['output']>;
|
|
5029
|
+
description?: Maybe<Scalars['String']['output']>;
|
|
5030
|
+
endDate?: Maybe<Scalars['Float']['output']>;
|
|
5031
|
+
entitlement?: Maybe<CcpEntitlement>;
|
|
5032
|
+
invoiceId?: Maybe<Scalars['ID']['output']>;
|
|
5033
|
+
isAddon?: Maybe<Scalars['Boolean']['output']>;
|
|
5034
|
+
isEvaluation?: Maybe<Scalars['Boolean']['output']>;
|
|
5035
|
+
key?: Maybe<Scalars['ID']['output']>;
|
|
5036
|
+
license?: Maybe<Scalars['String']['output']>;
|
|
5037
|
+
licenseType?: Maybe<Scalars['String']['output']>;
|
|
5038
|
+
offering?: Maybe<CcpOffering>;
|
|
5039
|
+
orderItemId?: Maybe<Scalars['ID']['output']>;
|
|
5040
|
+
product?: Maybe<CcpProduct>;
|
|
5041
|
+
sId?: Maybe<Scalars['ID']['output']>;
|
|
5042
|
+
startDate?: Maybe<Scalars['Float']['output']>;
|
|
5043
|
+
unitCount?: Maybe<Scalars['Float']['output']>;
|
|
5044
|
+
unitType?: Maybe<Scalars['String']['output']>;
|
|
5045
|
+
updated?: Maybe<Scalars['Float']['output']>;
|
|
5046
|
+
updatedByEmail?: Maybe<Scalars['String']['output']>;
|
|
5047
|
+
version?: Maybe<Scalars['Float']['output']>;
|
|
5048
|
+
};
|
|
4772
5049
|
export declare type CcpListPriceEstimate = {
|
|
4773
5050
|
__typename?: 'CcpListPriceEstimate';
|
|
4774
5051
|
averageAmountPerUnit?: Maybe<Scalars['Float']['output']>;
|
|
@@ -6216,6 +6493,10 @@ export declare type ChannelPlatformSubmitTicketResponse = {
|
|
|
6216
6493
|
__typename?: 'ChannelPlatformSubmitTicketResponse';
|
|
6217
6494
|
requestUuid?: Maybe<Scalars['String']['output']>;
|
|
6218
6495
|
};
|
|
6496
|
+
export declare type ChannelPlatformSurveyLinkResponse = {
|
|
6497
|
+
__typename?: 'ChannelPlatformSurveyLinkResponse';
|
|
6498
|
+
surveyLink: Scalars['String']['output'];
|
|
6499
|
+
};
|
|
6219
6500
|
export declare type ChannelPlatformTokenResponse = ChannelPlatformGetChannelTokenResponse | ChannelPlatformSubmitTicketResponse;
|
|
6220
6501
|
export declare type ChannelPlatformTranscriptEntry = {
|
|
6221
6502
|
__typename?: 'ChannelPlatformTranscriptEntry';
|
|
@@ -16553,6 +16834,10 @@ export declare type CountUsersGroupByPageItem = {
|
|
|
16553
16834
|
page: Scalars['String']['output'];
|
|
16554
16835
|
user: Scalars['Int']['output'];
|
|
16555
16836
|
};
|
|
16837
|
+
export declare type CplsCapacityPlanningScope = {
|
|
16838
|
+
__typename?: 'CplsCapacityPlanningScope';
|
|
16839
|
+
id: Scalars['ID']['output'];
|
|
16840
|
+
};
|
|
16556
16841
|
export declare type CreateAppContainerPayload = Payload & {
|
|
16557
16842
|
__typename?: 'CreateAppContainerPayload';
|
|
16558
16843
|
container: AppContainer;
|
|
@@ -16597,6 +16882,7 @@ export declare type CreateAppEnvironmentResponse = Payload & {
|
|
|
16597
16882
|
export declare type CreateAppInput = {
|
|
16598
16883
|
appFeatures?: InputMaybe<AppFeaturesInput>;
|
|
16599
16884
|
description?: InputMaybe<Scalars['String']['input']>;
|
|
16885
|
+
developerSpaceId?: InputMaybe<Scalars['ID']['input']>;
|
|
16600
16886
|
name: Scalars['String']['input'];
|
|
16601
16887
|
};
|
|
16602
16888
|
export declare type CreateAppResponse = Payload & {
|
|
@@ -17363,6 +17649,16 @@ export declare type CsmAiAgentConversationStarter = {
|
|
|
17363
17649
|
id: Scalars['ID']['output'];
|
|
17364
17650
|
message?: Maybe<Scalars['String']['output']>;
|
|
17365
17651
|
};
|
|
17652
|
+
export declare type CsmAiAgentIdentity = {
|
|
17653
|
+
__typename?: 'CsmAiAgentIdentity';
|
|
17654
|
+
companyDescription?: Maybe<Scalars['String']['output']>;
|
|
17655
|
+
companyName?: Maybe<Scalars['String']['output']>;
|
|
17656
|
+
conversationStarters?: Maybe<Array<CsmAiAgentConversationStarter>>;
|
|
17657
|
+
greetingMessage?: Maybe<Scalars['String']['output']>;
|
|
17658
|
+
name?: Maybe<Scalars['String']['output']>;
|
|
17659
|
+
tone?: Maybe<CsmAiAgentTone>;
|
|
17660
|
+
};
|
|
17661
|
+
export declare type CsmAiAgentIdentityConfigResult = CsmAiAgentIdentity | QueryError;
|
|
17366
17662
|
export declare type CsmAiAgentResult = CsmAiAgent | QueryError;
|
|
17367
17663
|
export declare type CsmAiAgentTone = {
|
|
17368
17664
|
__typename?: 'CsmAiAgentTone';
|
|
@@ -17373,6 +17669,24 @@ export declare type CsmAiAgentToneInput = {
|
|
|
17373
17669
|
description?: InputMaybe<Scalars['String']['input']>;
|
|
17374
17670
|
type: Scalars['String']['input'];
|
|
17375
17671
|
};
|
|
17672
|
+
export declare type CsmAiAgentVersion = {
|
|
17673
|
+
__typename?: 'CsmAiAgentVersion';
|
|
17674
|
+
actions?: Maybe<Array<CsmAiActionResult>>;
|
|
17675
|
+
agentIdentityConfig?: Maybe<CsmAiAgentIdentityConfigResult>;
|
|
17676
|
+
coachingContents?: Maybe<Array<CsmAiCoachingContentResult>>;
|
|
17677
|
+
handoffConfigs?: Maybe<Array<CsmAiHandoffConfigResult>>;
|
|
17678
|
+
versionId: Scalars['ID']['output'];
|
|
17679
|
+
versionNumber?: Maybe<Scalars['Int']['output']>;
|
|
17680
|
+
versionType?: Maybe<Scalars['String']['output']>;
|
|
17681
|
+
};
|
|
17682
|
+
export declare type CsmAiAgentVersionActionsArgs = {
|
|
17683
|
+
filterEnabled?: InputMaybe<Scalars['Boolean']['input']>;
|
|
17684
|
+
};
|
|
17685
|
+
export declare type CsmAiAgentVersionConnection = {
|
|
17686
|
+
__typename?: 'CsmAiAgentVersionConnection';
|
|
17687
|
+
nodes?: Maybe<Array<CsmAiAgentVersion>>;
|
|
17688
|
+
pageInfo: PageInfo;
|
|
17689
|
+
};
|
|
17376
17690
|
export declare type CsmAiApiOperation = {
|
|
17377
17691
|
__typename?: 'CsmAiApiOperation';
|
|
17378
17692
|
headers?: Maybe<Array<Maybe<CsmAiKeyValuePair>>>;
|
|
@@ -17407,8 +17721,8 @@ export declare type CsmAiAuthoredCoachingContent = {
|
|
|
17407
17721
|
triggerConditionByCoach?: Maybe<Scalars['String']['output']>;
|
|
17408
17722
|
};
|
|
17409
17723
|
export declare type CsmAiAuthoredCoachingContentInput = {
|
|
17410
|
-
triggerBehaviorByCoach
|
|
17411
|
-
triggerConditionByCoach
|
|
17724
|
+
triggerBehaviorByCoach?: InputMaybe<Scalars['String']['input']>;
|
|
17725
|
+
triggerConditionByCoach?: InputMaybe<Scalars['String']['input']>;
|
|
17412
17726
|
};
|
|
17413
17727
|
export declare type CsmAiCoachingContentResult = CsmAiAgentCoachingContent | QueryError;
|
|
17414
17728
|
export declare type CsmAiConnectorConfiguration = CsmAiMessageHandoff | CsmAiTicketingHandoff;
|
|
@@ -17437,7 +17751,7 @@ export declare type CsmAiCreateCoachingContentInput = {
|
|
|
17437
17751
|
coachingContentType?: InputMaybe<Scalars['String']['input']>;
|
|
17438
17752
|
groundingConversationId?: InputMaybe<Scalars['ID']['input']>;
|
|
17439
17753
|
groundingMessageId?: InputMaybe<Scalars['ID']['input']>;
|
|
17440
|
-
name
|
|
17754
|
+
name?: InputMaybe<Scalars['String']['input']>;
|
|
17441
17755
|
};
|
|
17442
17756
|
export declare type CsmAiCreateCoachingContentPayload = Payload & {
|
|
17443
17757
|
__typename?: 'CsmAiCreateCoachingContentPayload';
|
|
@@ -17450,6 +17764,11 @@ export declare type CsmAiDeleteActionPayload = Payload & {
|
|
|
17450
17764
|
errors?: Maybe<Array<MutationError>>;
|
|
17451
17765
|
success: Scalars['Boolean']['output'];
|
|
17452
17766
|
};
|
|
17767
|
+
export declare type CsmAiDeleteCoachingContentPayload = Payload & {
|
|
17768
|
+
__typename?: 'CsmAiDeleteCoachingContentPayload';
|
|
17769
|
+
errors?: Maybe<Array<MutationError>>;
|
|
17770
|
+
success: Scalars['Boolean']['output'];
|
|
17771
|
+
};
|
|
17453
17772
|
export declare type CsmAiHandoffConfig = {
|
|
17454
17773
|
__typename?: 'CsmAiHandoffConfig';
|
|
17455
17774
|
connectorConfiguration: CsmAiConnectorConfiguration;
|
|
@@ -17477,6 +17796,7 @@ export declare type CsmAiHub = {
|
|
|
17477
17796
|
__typename?: 'CsmAiHub';
|
|
17478
17797
|
actions?: Maybe<Array<Maybe<CsmAiActionResult>>>;
|
|
17479
17798
|
agent?: Maybe<CsmAiAgentResult>;
|
|
17799
|
+
agents?: Maybe<Array<CsmAiMultiVersionAgentResult>>;
|
|
17480
17800
|
coachingContents?: Maybe<Array<Maybe<CsmAiCoachingContentResult>>>;
|
|
17481
17801
|
handoffConfigs?: Maybe<Array<Maybe<CsmAiHandoffConfigResult>>>;
|
|
17482
17802
|
id: Scalars['ID']['output'];
|
|
@@ -17509,6 +17829,17 @@ export declare type CsmAiMessageHandoff = {
|
|
|
17509
17829
|
export declare type CsmAiMessageHandoffInput = {
|
|
17510
17830
|
message: Scalars['String']['input'];
|
|
17511
17831
|
};
|
|
17832
|
+
export declare type CsmAiMultiVersionAgent = {
|
|
17833
|
+
__typename?: 'CsmAiMultiVersionAgent';
|
|
17834
|
+
agentId: Scalars['ID']['output'];
|
|
17835
|
+
versions?: Maybe<CsmAiAgentVersionConnection>;
|
|
17836
|
+
};
|
|
17837
|
+
export declare type CsmAiMultiVersionAgentVersionsArgs = {
|
|
17838
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
17839
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
17840
|
+
versionType?: InputMaybe<Scalars['String']['input']>;
|
|
17841
|
+
};
|
|
17842
|
+
export declare type CsmAiMultiVersionAgentResult = CsmAiMultiVersionAgent | QueryError;
|
|
17512
17843
|
export declare type CsmAiTicketingHandoff = {
|
|
17513
17844
|
__typename?: 'CsmAiTicketingHandoff';
|
|
17514
17845
|
formId: Scalars['ID']['output'];
|
|
@@ -17552,6 +17883,22 @@ export declare type CsmAiUpdateAgentPayload = Payload & {
|
|
|
17552
17883
|
errors?: Maybe<Array<MutationError>>;
|
|
17553
17884
|
success: Scalars['Boolean']['output'];
|
|
17554
17885
|
};
|
|
17886
|
+
export declare type CsmAiUpdateCoachingContentInput = {
|
|
17887
|
+
coachingContent?: InputMaybe<CsmAiAuthoredCoachingContentInput>;
|
|
17888
|
+
coachingContentType?: InputMaybe<Scalars['String']['input']>;
|
|
17889
|
+
embedding?: InputMaybe<Scalars['String']['input']>;
|
|
17890
|
+
groundingConversationId?: InputMaybe<Scalars['ID']['input']>;
|
|
17891
|
+
groundingMessageId?: InputMaybe<Scalars['ID']['input']>;
|
|
17892
|
+
name?: InputMaybe<Scalars['String']['input']>;
|
|
17893
|
+
ranking?: InputMaybe<Scalars['String']['input']>;
|
|
17894
|
+
status?: InputMaybe<Scalars['Boolean']['input']>;
|
|
17895
|
+
};
|
|
17896
|
+
export declare type CsmAiUpdateCoachingContentPayload = Payload & {
|
|
17897
|
+
__typename?: 'CsmAiUpdateCoachingContentPayload';
|
|
17898
|
+
coachingContent?: Maybe<CsmAiAgentCoachingContent>;
|
|
17899
|
+
errors?: Maybe<Array<MutationError>>;
|
|
17900
|
+
success: Scalars['Boolean']['output'];
|
|
17901
|
+
};
|
|
17555
17902
|
export declare type CsmAiUpdateHandoffConfigInput = {
|
|
17556
17903
|
connectorConfiguration: CsmAiConnectorConfigurationInput;
|
|
17557
17904
|
enabled: Scalars['Boolean']['input'];
|
|
@@ -17605,6 +17952,7 @@ export declare type CsmAiWidgetBrandingTheme = {
|
|
|
17605
17952
|
attribution?: Maybe<CsmAiWidgetBrandingAttribution>;
|
|
17606
17953
|
chatColor: CsmAiWidgetBrandingChatColorVibeVariant;
|
|
17607
17954
|
colorVibeVariant: CsmAiWidgetBrandingColorVibeVariant;
|
|
17955
|
+
icon: CsmAiWidgetIcon;
|
|
17608
17956
|
radius: CsmAiWidgetBrandingRadius;
|
|
17609
17957
|
space: CsmAiWidgetBrandingSpaceVariant;
|
|
17610
17958
|
};
|
|
@@ -17612,6 +17960,7 @@ export declare type CsmAiWidgetBrandingThemeUpdateInput = {
|
|
|
17612
17960
|
attribution?: InputMaybe<CsmAiWidgetBrandingAttributionInput>;
|
|
17613
17961
|
chatColor: CsmAiWidgetBrandingChatColorVibeVariant;
|
|
17614
17962
|
colorVibeVariant: CsmAiWidgetBrandingColorVibeVariant;
|
|
17963
|
+
icon?: InputMaybe<CsmAiWidgetIconUpdateInput>;
|
|
17615
17964
|
radius: CsmAiWidgetBrandingRadius;
|
|
17616
17965
|
space: CsmAiWidgetBrandingSpaceVariant;
|
|
17617
17966
|
};
|
|
@@ -17621,10 +17970,29 @@ export declare type CsmAiWidgetConfig = {
|
|
|
17621
17970
|
id: Scalars['ID']['output'];
|
|
17622
17971
|
isAnonymousAccessEnabled?: Maybe<Scalars['Boolean']['output']>;
|
|
17623
17972
|
isEnabled?: Maybe<Scalars['Boolean']['output']>;
|
|
17973
|
+
position: CsmAiWidgetPosition;
|
|
17624
17974
|
theme?: Maybe<CsmAiWidgetBrandingTheme>;
|
|
17625
17975
|
type: CsmAiWidgetType;
|
|
17626
17976
|
};
|
|
17627
17977
|
export declare type CsmAiWidgetConfigResult = CsmAiWidgetConfig | QueryError;
|
|
17978
|
+
export declare type CsmAiWidgetIcon = {
|
|
17979
|
+
__typename?: 'CsmAiWidgetIcon';
|
|
17980
|
+
type: CsmAiWidgetIconType;
|
|
17981
|
+
url?: Maybe<Scalars['String']['output']>;
|
|
17982
|
+
};
|
|
17983
|
+
export declare enum CsmAiWidgetIconType {
|
|
17984
|
+
Custom = "CUSTOM",
|
|
17985
|
+
Default = "DEFAULT",
|
|
17986
|
+
Inherited = "INHERITED"
|
|
17987
|
+
}
|
|
17988
|
+
export declare type CsmAiWidgetIconUpdateInput = {
|
|
17989
|
+
type: CsmAiWidgetIconType;
|
|
17990
|
+
url?: InputMaybe<Scalars['String']['input']>;
|
|
17991
|
+
};
|
|
17992
|
+
export declare enum CsmAiWidgetPosition {
|
|
17993
|
+
Center = "CENTER",
|
|
17994
|
+
Corner = "CORNER"
|
|
17995
|
+
}
|
|
17628
17996
|
export declare enum CsmAiWidgetType {
|
|
17629
17997
|
Embed = "EMBED",
|
|
17630
17998
|
SupportSite = "SUPPORT_SITE"
|
|
@@ -17633,6 +18001,7 @@ export declare type CsmAiWidgetUpdateInput = {
|
|
|
17633
18001
|
allowedDomains?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
17634
18002
|
isAnonymousAccessEnabled?: InputMaybe<Scalars['Boolean']['input']>;
|
|
17635
18003
|
isEnabled?: InputMaybe<Scalars['Boolean']['input']>;
|
|
18004
|
+
position?: InputMaybe<CsmAiWidgetPosition>;
|
|
17636
18005
|
theme?: InputMaybe<CsmAiWidgetBrandingThemeUpdateInput>;
|
|
17637
18006
|
type: CsmAiWidgetType;
|
|
17638
18007
|
};
|
|
@@ -18368,6 +18737,7 @@ export declare type CustomerServiceMutationApiUpdateOrganizationAttributeValueBy
|
|
|
18368
18737
|
input: CustomerServiceOrganizationUpdateAttributeByNameInput;
|
|
18369
18738
|
};
|
|
18370
18739
|
export declare type CustomerServiceMutationApiUpdateParticipantsArgs = {
|
|
18740
|
+
helpCenterId?: InputMaybe<Scalars['ID']['input']>;
|
|
18371
18741
|
input: CustomerServiceUpdateRequestParticipantInput;
|
|
18372
18742
|
workItemId: Scalars['ID']['input'];
|
|
18373
18743
|
};
|
|
@@ -18640,6 +19010,7 @@ export declare type CustomerServiceQueryApiTemplateFormsArgs = {
|
|
|
18640
19010
|
};
|
|
18641
19011
|
export declare type CustomerServiceRequest = {
|
|
18642
19012
|
__typename?: 'CustomerServiceRequest';
|
|
19013
|
+
attachments?: Maybe<Array<CustomerServiceRequestAttachment>>;
|
|
18643
19014
|
createdOn?: Maybe<Scalars['DateTime']['output']>;
|
|
18644
19015
|
formData?: Maybe<CustomerServiceRequestFormDataConnection>;
|
|
18645
19016
|
id: Scalars['ID']['output'];
|
|
@@ -18649,6 +19020,12 @@ export declare type CustomerServiceRequest = {
|
|
|
18649
19020
|
summary?: Maybe<Scalars['String']['output']>;
|
|
18650
19021
|
templateForm?: Maybe<CustomerServiceTemplateForm>;
|
|
18651
19022
|
};
|
|
19023
|
+
export declare type CustomerServiceRequestAttachment = {
|
|
19024
|
+
__typename?: 'CustomerServiceRequestAttachment';
|
|
19025
|
+
attachmentId: Scalars['ID']['output'];
|
|
19026
|
+
attachmentMediaApiId?: Maybe<Scalars['String']['output']>;
|
|
19027
|
+
issueId?: Maybe<Scalars['ID']['output']>;
|
|
19028
|
+
};
|
|
18652
19029
|
export declare type CustomerServiceRequestByKeyResult = CustomerServiceRequest | QueryError;
|
|
18653
19030
|
export declare type CustomerServiceRequestConnection = {
|
|
18654
19031
|
__typename?: 'CustomerServiceRequestConnection';
|
|
@@ -18707,6 +19084,7 @@ export declare type CustomerServiceRequestParticipant = {
|
|
|
18707
19084
|
};
|
|
18708
19085
|
export declare type CustomerServiceRequestUpdateParticipantsPayload = Payload & {
|
|
18709
19086
|
__typename?: 'CustomerServiceRequestUpdateParticipantsPayload';
|
|
19087
|
+
addedParticipants?: Maybe<Array<CustomerServiceRequestParticipant>>;
|
|
18710
19088
|
errors?: Maybe<Array<MutationError>>;
|
|
18711
19089
|
success: Scalars['Boolean']['output'];
|
|
18712
19090
|
};
|
|
@@ -19923,6 +20301,25 @@ export declare enum DevAiRovoAgentTemplateFilter {
|
|
|
19923
20301
|
Include = "INCLUDE",
|
|
19924
20302
|
Only = "ONLY"
|
|
19925
20303
|
}
|
|
20304
|
+
export declare type DevAiRovoDevArchiveSessionInput = {
|
|
20305
|
+
sessionId: Scalars['ID']['input'];
|
|
20306
|
+
};
|
|
20307
|
+
export declare type DevAiRovoDevArchiveSessionPayload = Payload & {
|
|
20308
|
+
__typename?: 'DevAiRovoDevArchiveSessionPayload';
|
|
20309
|
+
errors: Array<MutationError>;
|
|
20310
|
+
session?: Maybe<DevAiRovoDevSession>;
|
|
20311
|
+
success: Scalars['Boolean']['output'];
|
|
20312
|
+
};
|
|
20313
|
+
export declare type DevAiRovoDevBulkCreateSessionInput = {
|
|
20314
|
+
issueAris: Array<Scalars['ID']['input']>;
|
|
20315
|
+
options: DevAiRovoDevCreateSessionInput;
|
|
20316
|
+
};
|
|
20317
|
+
export declare type DevAiRovoDevBulkCreateSessionPayload = Payload & {
|
|
20318
|
+
__typename?: 'DevAiRovoDevBulkCreateSessionPayload';
|
|
20319
|
+
errors?: Maybe<Array<MutationError>>;
|
|
20320
|
+
sessions?: Maybe<Array<Maybe<DevAiRovoDevSession>>>;
|
|
20321
|
+
success: Scalars['Boolean']['output'];
|
|
20322
|
+
};
|
|
19926
20323
|
export declare type DevAiRovoDevCreateSessionInput = {
|
|
19927
20324
|
links?: InputMaybe<Array<DevAiRovoDevSessionLinkInput>>;
|
|
19928
20325
|
options?: InputMaybe<DevAiRovoDevCreateSessionOptionsInput>;
|
|
@@ -19966,6 +20363,7 @@ export declare type DevAiRovoDevSession = Node & {
|
|
|
19966
20363
|
editorUrl?: Maybe<Scalars['URL']['output']>;
|
|
19967
20364
|
errorMessage?: Maybe<Scalars['String']['output']>;
|
|
19968
20365
|
id: Scalars['ID']['output'];
|
|
20366
|
+
isArchived?: Maybe<Scalars['Boolean']['output']>;
|
|
19969
20367
|
options?: Maybe<DevAiRovoDevSessionOptions>;
|
|
19970
20368
|
promptAdf?: Maybe<Scalars['JSON']['output']>;
|
|
19971
20369
|
repository?: Maybe<DevAiRovoDevRepository>;
|
|
@@ -19999,6 +20397,10 @@ export declare type DevAiRovoDevSessionOptions = {
|
|
|
19999
20397
|
raisePullRequestOptions?: Maybe<DevAiRovoDevRaisePullRequestOption>;
|
|
20000
20398
|
useDeepPlan?: Maybe<Scalars['Boolean']['output']>;
|
|
20001
20399
|
};
|
|
20400
|
+
export declare enum DevAiRovoDevSessionSort {
|
|
20401
|
+
Asc = "ASC",
|
|
20402
|
+
Desc = "DESC"
|
|
20403
|
+
}
|
|
20002
20404
|
export declare enum DevAiRovoDevSessionStatus {
|
|
20003
20405
|
Archived = "ARCHIVED",
|
|
20004
20406
|
Failed = "FAILED",
|
|
@@ -20122,6 +20524,16 @@ export declare type DevAiWorkspace = {
|
|
|
20122
20524
|
status?: Maybe<Scalars['String']['output']>;
|
|
20123
20525
|
workspaceAri: Scalars['ID']['output'];
|
|
20124
20526
|
};
|
|
20527
|
+
export declare type DevConsoleAssignDeveloperSpaceInput = {
|
|
20528
|
+
appId: Scalars['String']['input'];
|
|
20529
|
+
developerSpaceId: Scalars['String']['input'];
|
|
20530
|
+
};
|
|
20531
|
+
export declare type DevConsoleAssignDeveloperSpacePayload = Payload & {
|
|
20532
|
+
__typename?: 'DevConsoleAssignDeveloperSpacePayload';
|
|
20533
|
+
errors?: Maybe<Array<MutationError>>;
|
|
20534
|
+
message?: Maybe<Scalars['String']['output']>;
|
|
20535
|
+
success: Scalars['Boolean']['output'];
|
|
20536
|
+
};
|
|
20125
20537
|
export declare type DevConsoleBulkDeveloperSpaceDetailsResponse = {
|
|
20126
20538
|
__typename?: 'DevConsoleBulkDeveloperSpaceDetailsResponse';
|
|
20127
20539
|
results: Array<DevConsoleDeveloperSpaceDetailsResult>;
|
|
@@ -20143,45 +20555,88 @@ export declare type DevConsoleDeveloperSpaceDetails = {
|
|
|
20143
20555
|
logo?: Maybe<Scalars['String']['output']>;
|
|
20144
20556
|
name: Scalars['String']['output'];
|
|
20145
20557
|
};
|
|
20146
|
-
export declare type DevConsoleDeveloperSpaceDetailsError = {
|
|
20147
|
-
__typename?: 'DevConsoleDeveloperSpaceDetailsError';
|
|
20148
|
-
code: Scalars['String']['output'];
|
|
20149
|
-
message: Scalars['String']['output'];
|
|
20150
|
-
};
|
|
20151
20558
|
export declare type DevConsoleDeveloperSpaceDetailsResult = {
|
|
20152
20559
|
__typename?: 'DevConsoleDeveloperSpaceDetailsResult';
|
|
20153
20560
|
details?: Maybe<DevConsoleDeveloperSpaceDetails>;
|
|
20154
20561
|
developerSpaceId: Scalars['String']['output'];
|
|
20155
|
-
error?: Maybe<
|
|
20156
|
-
success: Scalars['Boolean']['output'];
|
|
20562
|
+
error?: Maybe<QueryError>;
|
|
20157
20563
|
};
|
|
20158
20564
|
export declare type DevConsoleDeveloperSpaceMember = {
|
|
20159
20565
|
__typename?: 'DevConsoleDeveloperSpaceMember';
|
|
20160
20566
|
accountId: Scalars['String']['output'];
|
|
20161
|
-
email
|
|
20162
|
-
name
|
|
20567
|
+
email?: Maybe<Scalars['String']['output']>;
|
|
20568
|
+
name?: Maybe<Scalars['String']['output']>;
|
|
20163
20569
|
picture?: Maybe<Scalars['String']['output']>;
|
|
20164
20570
|
};
|
|
20571
|
+
export declare type DevConsoleDeveloperSpaceMemberInput = {
|
|
20572
|
+
developerSpaceId: Scalars['String']['input'];
|
|
20573
|
+
memberEmail: Scalars['String']['input'];
|
|
20574
|
+
role: DevConsoleDeveloperSpaceMemberRole;
|
|
20575
|
+
};
|
|
20576
|
+
export declare type DevConsoleDeveloperSpaceMemberPayload = Payload & {
|
|
20577
|
+
__typename?: 'DevConsoleDeveloperSpaceMemberPayload';
|
|
20578
|
+
devSpace?: Maybe<DevConsoleDeveloperSpace>;
|
|
20579
|
+
errors?: Maybe<Array<MutationError>>;
|
|
20580
|
+
success: Scalars['Boolean']['output'];
|
|
20581
|
+
};
|
|
20582
|
+
export declare enum DevConsoleDeveloperSpaceMemberRole {
|
|
20583
|
+
Admin = "ADMIN",
|
|
20584
|
+
Member = "MEMBER"
|
|
20585
|
+
}
|
|
20165
20586
|
export declare type DevConsoleDeveloperSpaceMembersResponse = {
|
|
20166
20587
|
__typename?: 'DevConsoleDeveloperSpaceMembersResponse';
|
|
20588
|
+
errors?: Maybe<Array<QueryError>>;
|
|
20167
20589
|
members: Array<DevConsoleDeveloperSpaceMember>;
|
|
20168
20590
|
};
|
|
20591
|
+
export declare type DevConsoleDeveloperSpacePayload = Payload & {
|
|
20592
|
+
__typename?: 'DevConsoleDeveloperSpacePayload';
|
|
20593
|
+
devSpace?: Maybe<DevConsoleDeveloperSpace>;
|
|
20594
|
+
errors?: Maybe<Array<MutationError>>;
|
|
20595
|
+
success: Scalars['Boolean']['output'];
|
|
20596
|
+
};
|
|
20597
|
+
export declare type DevConsoleDeveloperSpaceSettingsPayload = Payload & {
|
|
20598
|
+
__typename?: 'DevConsoleDeveloperSpaceSettingsPayload';
|
|
20599
|
+
devSpace?: Maybe<DevConsoleDeveloperSpace>;
|
|
20600
|
+
errors?: Maybe<Array<MutationError>>;
|
|
20601
|
+
success: Scalars['Boolean']['output'];
|
|
20602
|
+
};
|
|
20169
20603
|
export declare enum DevConsoleDeveloperSpaceType {
|
|
20170
20604
|
AtlassianExternal = "ATLASSIAN_EXTERNAL",
|
|
20171
20605
|
AtlassianInternal = "ATLASSIAN_INTERNAL"
|
|
20172
20606
|
}
|
|
20173
20607
|
export declare type DevConsoleMutation = {
|
|
20174
20608
|
__typename?: 'DevConsoleMutation';
|
|
20175
|
-
|
|
20609
|
+
addDeveloperSpaceMember?: Maybe<DevConsoleDeveloperSpaceMemberPayload>;
|
|
20610
|
+
assignDeveloperSpace?: Maybe<DevConsoleAssignDeveloperSpacePayload>;
|
|
20611
|
+
createDeveloperSpace?: Maybe<DevConsoleDeveloperSpacePayload>;
|
|
20612
|
+
removeDeveloperSpaceMember?: Maybe<DevConsoleDeveloperSpaceMemberPayload>;
|
|
20613
|
+
updateDeveloperSpaceMember?: Maybe<DevConsoleDeveloperSpaceMemberPayload>;
|
|
20614
|
+
updateDeveloperSpaceSettings?: Maybe<DevConsoleDeveloperSpaceSettingsPayload>;
|
|
20615
|
+
};
|
|
20616
|
+
export declare type DevConsoleMutationAddDeveloperSpaceMemberArgs = {
|
|
20617
|
+
input: DevConsoleDeveloperSpaceMemberInput;
|
|
20618
|
+
};
|
|
20619
|
+
export declare type DevConsoleMutationAssignDeveloperSpaceArgs = {
|
|
20620
|
+
input: DevConsoleAssignDeveloperSpaceInput;
|
|
20176
20621
|
};
|
|
20177
20622
|
export declare type DevConsoleMutationCreateDeveloperSpaceArgs = {
|
|
20178
20623
|
input: DevConsoleCreateDeveloperSpaceInput;
|
|
20179
20624
|
};
|
|
20625
|
+
export declare type DevConsoleMutationRemoveDeveloperSpaceMemberArgs = {
|
|
20626
|
+
input: DevConsoleRemoveDeveloperSpaceMemberInput;
|
|
20627
|
+
};
|
|
20628
|
+
export declare type DevConsoleMutationUpdateDeveloperSpaceMemberArgs = {
|
|
20629
|
+
input: DevConsoleUpdateDeveloperSpaceMemberInput;
|
|
20630
|
+
};
|
|
20631
|
+
export declare type DevConsoleMutationUpdateDeveloperSpaceSettingsArgs = {
|
|
20632
|
+
input: DevConsoleUpdateDeveloperSpaceSettingsInput;
|
|
20633
|
+
};
|
|
20180
20634
|
export declare type DevConsoleQuery = {
|
|
20181
20635
|
__typename?: 'DevConsoleQuery';
|
|
20182
|
-
getDeveloperSpaceDetails
|
|
20183
|
-
getDeveloperSpaceMembers
|
|
20184
|
-
getDeveloperSpaceWithLinkingAccess
|
|
20636
|
+
getDeveloperSpaceDetails?: Maybe<DevConsoleBulkDeveloperSpaceDetailsResponse>;
|
|
20637
|
+
getDeveloperSpaceMembers?: Maybe<DevConsoleDeveloperSpaceMembersResponse>;
|
|
20638
|
+
getDeveloperSpaceWithLinkingAccess?: Maybe<Array<Maybe<Scalars['String']['output']>>>;
|
|
20639
|
+
tenantContexts: Array<Maybe<DevConsoleTenantContext>>;
|
|
20185
20640
|
};
|
|
20186
20641
|
export declare type DevConsoleQueryGetDeveloperSpaceDetailsArgs = {
|
|
20187
20642
|
developerSpaceIds: Array<Scalars['String']['input']>;
|
|
@@ -20189,6 +20644,30 @@ export declare type DevConsoleQueryGetDeveloperSpaceDetailsArgs = {
|
|
|
20189
20644
|
export declare type DevConsoleQueryGetDeveloperSpaceMembersArgs = {
|
|
20190
20645
|
developerSpaceId: Scalars['String']['input'];
|
|
20191
20646
|
};
|
|
20647
|
+
export declare type DevConsoleQueryTenantContextsArgs = {
|
|
20648
|
+
ids: Array<Scalars['ID']['input']>;
|
|
20649
|
+
};
|
|
20650
|
+
export declare type DevConsoleRemoveDeveloperSpaceMemberInput = {
|
|
20651
|
+
developerSpaceId: Scalars['String']['input'];
|
|
20652
|
+
memberId: Scalars['String']['input'];
|
|
20653
|
+
};
|
|
20654
|
+
export declare type DevConsoleTenantContext = {
|
|
20655
|
+
__typename?: 'DevConsoleTenantContext';
|
|
20656
|
+
activationId?: Maybe<Scalars['ID']['output']>;
|
|
20657
|
+
cloudId: Scalars['ID']['output'];
|
|
20658
|
+
cloudIdOrActivationId: Scalars['ID']['output'];
|
|
20659
|
+
hostName: Scalars['String']['output'];
|
|
20660
|
+
};
|
|
20661
|
+
export declare type DevConsoleUpdateDeveloperSpaceMemberInput = {
|
|
20662
|
+
developerSpaceId: Scalars['String']['input'];
|
|
20663
|
+
memberId: Scalars['String']['input'];
|
|
20664
|
+
role: DevConsoleDeveloperSpaceMemberRole;
|
|
20665
|
+
};
|
|
20666
|
+
export declare type DevConsoleUpdateDeveloperSpaceSettingsInput = {
|
|
20667
|
+
developerSpaceId: Scalars['String']['input'];
|
|
20668
|
+
logo?: InputMaybe<Scalars['Upload']['input']>;
|
|
20669
|
+
name?: InputMaybe<Scalars['String']['input']>;
|
|
20670
|
+
};
|
|
20192
20671
|
export declare type DevOps = {
|
|
20193
20672
|
__typename?: 'DevOps';
|
|
20194
20673
|
ariGraph?: Maybe<AriGraph>;
|
|
@@ -21872,7 +22351,6 @@ export declare type EcosystemMutation = {
|
|
|
21872
22351
|
devConsole?: Maybe<DevConsoleMutation>;
|
|
21873
22352
|
forgeAlerts?: Maybe<ForgeAlertsMutation>;
|
|
21874
22353
|
forgeMetrics?: Maybe<ForgeMetricsMutation>;
|
|
21875
|
-
publishAppClientEvent?: Maybe<EcosystemPublishEventBody>;
|
|
21876
22354
|
publishRealtimeChannel?: Maybe<EcosystemRealtimePublishBody>;
|
|
21877
22355
|
removeAppContributors?: Maybe<RemoveAppContributorsResponsePayload>;
|
|
21878
22356
|
updateAppContributorRole?: Maybe<UpdateAppContributorRoleResponsePayload>;
|
|
@@ -21911,13 +22389,6 @@ export declare type EcosystemMutationForgeAlertsArgs = {
|
|
|
21911
22389
|
export declare type EcosystemMutationForgeMetricsArgs = {
|
|
21912
22390
|
appId: Scalars['ID']['input'];
|
|
21913
22391
|
};
|
|
21914
|
-
export declare type EcosystemMutationPublishAppClientEventArgs = {
|
|
21915
|
-
appId: Scalars['ID']['input'];
|
|
21916
|
-
channel: Scalars['String']['input'];
|
|
21917
|
-
contextAri: Scalars['ID']['input'];
|
|
21918
|
-
eventName?: InputMaybe<Scalars['String']['input']>;
|
|
21919
|
-
payload: Scalars['String']['input'];
|
|
21920
|
-
};
|
|
21921
22392
|
export declare type EcosystemMutationPublishRealtimeChannelArgs = {
|
|
21922
22393
|
context?: InputMaybe<Scalars['String']['input']>;
|
|
21923
22394
|
installationId: Scalars['ID']['input'];
|
|
@@ -21953,14 +22424,6 @@ export declare type EcosystemMutationUpdateInstallationRemoteRegionArgs = {
|
|
|
21953
22424
|
export declare type EcosystemMutationUpdateUserInstallationRulesArgs = {
|
|
21954
22425
|
input: UpdateUserInstallationRulesInput;
|
|
21955
22426
|
};
|
|
21956
|
-
export declare type EcosystemOnEventBody = {
|
|
21957
|
-
__typename?: 'EcosystemOnEventBody';
|
|
21958
|
-
payload?: Maybe<Scalars['String']['output']>;
|
|
21959
|
-
};
|
|
21960
|
-
export declare type EcosystemPublishEventBody = {
|
|
21961
|
-
__typename?: 'EcosystemPublishEventBody';
|
|
21962
|
-
statusCode?: Maybe<Scalars['Int']['output']>;
|
|
21963
|
-
};
|
|
21964
22427
|
export declare type EcosystemQuery = {
|
|
21965
22428
|
__typename?: 'EcosystemQuery';
|
|
21966
22429
|
appByOauthClient?: Maybe<App>;
|
|
@@ -22092,15 +22555,8 @@ export declare enum EcosystemRequiredProduct {
|
|
|
22092
22555
|
}
|
|
22093
22556
|
export declare type EcosystemSubscription = {
|
|
22094
22557
|
__typename?: 'EcosystemSubscription';
|
|
22095
|
-
onAppClientEvent?: Maybe<EcosystemOnEventBody>;
|
|
22096
22558
|
realtimeChannel?: Maybe<EcosystemRealtimeSubscriptionBody>;
|
|
22097
22559
|
};
|
|
22098
|
-
export declare type EcosystemSubscriptionOnAppClientEventArgs = {
|
|
22099
|
-
appId: Scalars['ID']['input'];
|
|
22100
|
-
channel: Scalars['String']['input'];
|
|
22101
|
-
contextAri: Scalars['ID']['input'];
|
|
22102
|
-
eventName?: InputMaybe<Scalars['String']['input']>;
|
|
22103
|
-
};
|
|
22104
22560
|
export declare type EcosystemSubscriptionRealtimeChannelArgs = {
|
|
22105
22561
|
context?: InputMaybe<Scalars['String']['input']>;
|
|
22106
22562
|
installationId: Scalars['ID']['input'];
|
|
@@ -22528,7 +22984,7 @@ export declare type ExternalAssociationEdge = {
|
|
|
22528
22984
|
cursor?: Maybe<Scalars['String']['output']>;
|
|
22529
22985
|
node?: Maybe<ExternalAssociation>;
|
|
22530
22986
|
};
|
|
22531
|
-
export declare type ExternalAssociationEntity = DevOpsService | ExternalBranch | ExternalBuildInfo | ExternalCalendarEvent | ExternalComment | ExternalCommit | ExternalConversation | ExternalCustomerOrg | ExternalDeal | ExternalDeployment | ExternalDesign | ExternalDocument | ExternalFeatureFlag | ExternalMessage | ExternalOrganisation | ExternalPosition | ExternalProject | ExternalPullRequest | ExternalRemoteLink | ExternalRepository | ExternalSpace | ExternalVideo | ExternalVulnerability | ExternalWorkItem | ExternalWorker | JiraIssue | JiraProject | JiraVersion | ThirdPartyUser;
|
|
22987
|
+
export declare type ExternalAssociationEntity = DevOpsService | ExternalBranch | ExternalBuildInfo | ExternalCalendarEvent | ExternalComment | ExternalCommit | ExternalConversation | ExternalCustomerOrg | ExternalDeal | ExternalDeployment | ExternalDesign | ExternalDocument | ExternalFeatureFlag | ExternalMessage | ExternalOrganisation | ExternalPosition | ExternalProject | ExternalPullRequest | ExternalRemoteLink | ExternalRepository | ExternalSoftwareService | ExternalSpace | ExternalVideo | ExternalVulnerability | ExternalWorkItem | ExternalWorker | JiraIssue | JiraProject | JiraVersion | ThirdPartyUser;
|
|
22532
22988
|
export declare type ExternalAttachment = {
|
|
22533
22989
|
__typename?: 'ExternalAttachment';
|
|
22534
22990
|
byteSize?: Maybe<Scalars['Long']['output']>;
|
|
@@ -23021,13 +23477,14 @@ export declare type ExternalEntities = {
|
|
|
23021
23477
|
pullRequest?: Maybe<Array<Maybe<ExternalPullRequest>>>;
|
|
23022
23478
|
remoteLink?: Maybe<Array<Maybe<ExternalRemoteLink>>>;
|
|
23023
23479
|
repository?: Maybe<Array<Maybe<ExternalRepository>>>;
|
|
23480
|
+
softwareService?: Maybe<Array<Maybe<ExternalSoftwareService>>>;
|
|
23024
23481
|
space?: Maybe<Array<Maybe<ExternalSpace>>>;
|
|
23025
23482
|
video?: Maybe<Array<Maybe<ExternalVideo>>>;
|
|
23026
23483
|
vulnerability?: Maybe<Array<Maybe<ExternalVulnerability>>>;
|
|
23027
23484
|
workItem?: Maybe<Array<Maybe<ExternalWorkItem>>>;
|
|
23028
23485
|
worker?: Maybe<Array<Maybe<ExternalWorker>>>;
|
|
23029
23486
|
};
|
|
23030
|
-
export declare type ExternalEntity = ExternalBranch | ExternalBuildInfo | ExternalCalendarEvent | ExternalComment | ExternalCommit | ExternalConversation | ExternalCustomerOrg | ExternalDeal | ExternalDeployment | ExternalDesign | ExternalDocument | ExternalFeatureFlag | ExternalMessage | ExternalOrganisation | ExternalPosition | ExternalProject | ExternalPullRequest | ExternalRemoteLink | ExternalRepository | ExternalSpace | ExternalVideo | ExternalVulnerability | ExternalWorkItem | ExternalWorker;
|
|
23487
|
+
export declare type ExternalEntity = ExternalBranch | ExternalBuildInfo | ExternalCalendarEvent | ExternalComment | ExternalCommit | ExternalConversation | ExternalCustomerOrg | ExternalDeal | ExternalDeployment | ExternalDesign | ExternalDocument | ExternalFeatureFlag | ExternalMessage | ExternalOrganisation | ExternalPosition | ExternalProject | ExternalPullRequest | ExternalRemoteLink | ExternalRepository | ExternalSoftwareService | ExternalSpace | ExternalVideo | ExternalVulnerability | ExternalWorkItem | ExternalWorker;
|
|
23031
23488
|
export declare type ExternalEnvironment = {
|
|
23032
23489
|
__typename?: 'ExternalEnvironment';
|
|
23033
23490
|
displayName?: Maybe<Scalars['String']['output']>;
|
|
@@ -23359,6 +23816,42 @@ export declare type ExternalReviewer = {
|
|
|
23359
23816
|
approvalStatus?: Maybe<ExternalApprovalStatus>;
|
|
23360
23817
|
user?: Maybe<ExternalUser>;
|
|
23361
23818
|
};
|
|
23819
|
+
export declare type ExternalSoftwareService = Node & {
|
|
23820
|
+
__typename?: 'ExternalSoftwareService';
|
|
23821
|
+
associatedWith?: Maybe<ExternalAssociationConnection>;
|
|
23822
|
+
associationsMetadata?: Maybe<Array<Maybe<ExternalSoftwareServiceAssociationsMetadataTuple>>>;
|
|
23823
|
+
createdAt?: Maybe<Scalars['String']['output']>;
|
|
23824
|
+
createdBy?: Maybe<ExternalUser>;
|
|
23825
|
+
description?: Maybe<Scalars['String']['output']>;
|
|
23826
|
+
displayName?: Maybe<Scalars['String']['output']>;
|
|
23827
|
+
environment?: Maybe<Scalars['String']['output']>;
|
|
23828
|
+
externalId?: Maybe<Scalars['String']['output']>;
|
|
23829
|
+
id: Scalars['ID']['output'];
|
|
23830
|
+
lastUpdated?: Maybe<Scalars['String']['output']>;
|
|
23831
|
+
lastUpdatedBy?: Maybe<ExternalUser>;
|
|
23832
|
+
namespace?: Maybe<Scalars['String']['output']>;
|
|
23833
|
+
owners?: Maybe<Array<Maybe<ExternalUser>>>;
|
|
23834
|
+
parent?: Maybe<ExternalEntity>;
|
|
23835
|
+
parentId?: Maybe<Scalars['ID']['output']>;
|
|
23836
|
+
provider?: Maybe<ExternalProvider>;
|
|
23837
|
+
serviceType?: Maybe<Scalars['String']['output']>;
|
|
23838
|
+
tags?: Maybe<Array<Maybe<Scalars['String']['output']>>>;
|
|
23839
|
+
thirdPartyId?: Maybe<Scalars['String']['output']>;
|
|
23840
|
+
thumbnail?: Maybe<ExternalThumbnail>;
|
|
23841
|
+
tier?: Maybe<Scalars['String']['output']>;
|
|
23842
|
+
updateSequenceNumber?: Maybe<Scalars['Long']['output']>;
|
|
23843
|
+
url?: Maybe<Scalars['String']['output']>;
|
|
23844
|
+
};
|
|
23845
|
+
export declare type ExternalSoftwareServiceAssociationMetadata = {
|
|
23846
|
+
__typename?: 'ExternalSoftwareServiceAssociationMetadata';
|
|
23847
|
+
associationType?: Maybe<Scalars['String']['output']>;
|
|
23848
|
+
experience?: Maybe<Scalars['String']['output']>;
|
|
23849
|
+
};
|
|
23850
|
+
export declare type ExternalSoftwareServiceAssociationsMetadataTuple = {
|
|
23851
|
+
__typename?: 'ExternalSoftwareServiceAssociationsMetadataTuple';
|
|
23852
|
+
key?: Maybe<Scalars['String']['output']>;
|
|
23853
|
+
value?: Maybe<Array<Maybe<ExternalSoftwareServiceAssociationMetadata>>>;
|
|
23854
|
+
};
|
|
23362
23855
|
export declare type ExternalSpace = Node & {
|
|
23363
23856
|
__typename?: 'ExternalSpace';
|
|
23364
23857
|
associatedWith?: Maybe<ExternalAssociationConnection>;
|
|
@@ -24530,9 +25023,11 @@ export declare enum ForgeMetricsGroupByDimensions {
|
|
|
24530
25023
|
}
|
|
24531
25024
|
export declare type ForgeMetricsInstallationContext = {
|
|
24532
25025
|
__typename?: 'ForgeMetricsInstallationContext';
|
|
25026
|
+
cloudId: Scalars['ID']['output'];
|
|
24533
25027
|
contextAri: Scalars['ID']['output'];
|
|
24534
25028
|
contextAris: Array<Scalars['ID']['output']>;
|
|
24535
25029
|
tenantContext?: Maybe<TenantContext>;
|
|
25030
|
+
tenantContexts?: Maybe<DevConsoleTenantContext>;
|
|
24536
25031
|
};
|
|
24537
25032
|
export declare type ForgeMetricsIntervalInput = {
|
|
24538
25033
|
end: Scalars['DateTime']['input'];
|
|
@@ -28666,14 +29161,18 @@ export declare type GraphStore = {
|
|
|
28666
29161
|
atlasGoalHasGoalUpdate?: Maybe<GraphStoreSimplifiedAtlasGoalHasGoalUpdateConnection>;
|
|
28667
29162
|
atlasGoalHasGoalUpdateInverse?: Maybe<GraphStoreSimplifiedAtlasGoalHasGoalUpdateInverseConnection>;
|
|
28668
29163
|
atlasGoalHasJiraAlignProject?: Maybe<GraphStoreSimplifiedAtlasGoalHasJiraAlignProjectConnection>;
|
|
29164
|
+
atlasGoalHasJiraAlignProjectBatch?: Maybe<GraphStoreBatchAtlasGoalHasJiraAlignProjectConnection>;
|
|
28669
29165
|
atlasGoalHasJiraAlignProjectInverse?: Maybe<GraphStoreSimplifiedAtlasGoalHasJiraAlignProjectInverseConnection>;
|
|
29166
|
+
atlasGoalHasJiraAlignProjectInverseBatch?: Maybe<GraphStoreBatchAtlasGoalHasJiraAlignProjectConnection>;
|
|
28670
29167
|
atlasGoalHasOwner?: Maybe<GraphStoreSimplifiedAtlasGoalHasOwnerConnection>;
|
|
28671
29168
|
atlasGoalHasOwnerInverse?: Maybe<GraphStoreSimplifiedAtlasGoalHasOwnerInverseConnection>;
|
|
28672
29169
|
atlasGoalHasSubAtlasGoal?: Maybe<GraphStoreSimplifiedAtlasGoalHasSubAtlasGoalConnection>;
|
|
28673
29170
|
atlasGoalHasSubAtlasGoalInverse?: Maybe<GraphStoreSimplifiedAtlasGoalHasSubAtlasGoalInverseConnection>;
|
|
28674
29171
|
atlasHomeFeed: GraphStoreAtlasHomeQueryConnection;
|
|
28675
29172
|
atlasProjectContributesToAtlasGoal?: Maybe<GraphStoreSimplifiedAtlasProjectContributesToAtlasGoalConnection>;
|
|
29173
|
+
atlasProjectContributesToAtlasGoalBatch?: Maybe<GraphStoreBatchAtlasProjectContributesToAtlasGoalConnection>;
|
|
28676
29174
|
atlasProjectContributesToAtlasGoalInverse?: Maybe<GraphStoreSimplifiedAtlasProjectContributesToAtlasGoalInverseConnection>;
|
|
29175
|
+
atlasProjectContributesToAtlasGoalInverseBatch?: Maybe<GraphStoreBatchAtlasProjectContributesToAtlasGoalConnection>;
|
|
28677
29176
|
atlasProjectContributesToAtlasGoalInverseRelationship?: Maybe<GraphStoreFullAtlasProjectContributesToAtlasGoalConnection>;
|
|
28678
29177
|
atlasProjectContributesToAtlasGoalRelationship?: Maybe<GraphStoreFullAtlasProjectContributesToAtlasGoalConnection>;
|
|
28679
29178
|
atlasProjectDependsOnAtlasProject?: Maybe<GraphStoreSimplifiedAtlasProjectDependsOnAtlasProjectConnection>;
|
|
@@ -28909,7 +29408,9 @@ export declare type GraphStore = {
|
|
|
28909
29408
|
jcsIssueAssociatedSupportEscalation?: Maybe<GraphStoreSimplifiedJcsIssueAssociatedSupportEscalationConnection>;
|
|
28910
29409
|
jcsIssueAssociatedSupportEscalationInverse?: Maybe<GraphStoreSimplifiedJcsIssueAssociatedSupportEscalationInverseConnection>;
|
|
28911
29410
|
jiraEpicContributesToAtlasGoal?: Maybe<GraphStoreSimplifiedJiraEpicContributesToAtlasGoalConnection>;
|
|
29411
|
+
jiraEpicContributesToAtlasGoalBatch?: Maybe<GraphStoreBatchJiraEpicContributesToAtlasGoalConnection>;
|
|
28912
29412
|
jiraEpicContributesToAtlasGoalInverse?: Maybe<GraphStoreSimplifiedJiraEpicContributesToAtlasGoalInverseConnection>;
|
|
29413
|
+
jiraEpicContributesToAtlasGoalInverseBatch?: Maybe<GraphStoreBatchJiraEpicContributesToAtlasGoalConnection>;
|
|
28913
29414
|
jiraEpicContributesToAtlasGoalInverseRelationship?: Maybe<GraphStoreFullJiraEpicContributesToAtlasGoalConnection>;
|
|
28914
29415
|
jiraEpicContributesToAtlasGoalRelationship?: Maybe<GraphStoreFullJiraEpicContributesToAtlasGoalConnection>;
|
|
28915
29416
|
jiraIssueBlockedByJiraIssue?: Maybe<GraphStoreSimplifiedJiraIssueBlockedByJiraIssueConnection>;
|
|
@@ -28981,6 +29482,8 @@ export declare type GraphStore = {
|
|
|
28981
29482
|
parentMessageHasChildMessageInverse?: Maybe<GraphStoreSimplifiedParentMessageHasChildMessageInverseConnection>;
|
|
28982
29483
|
positionAllocatedToFocusArea?: Maybe<GraphStoreSimplifiedPositionAllocatedToFocusAreaConnection>;
|
|
28983
29484
|
positionAllocatedToFocusAreaInverse?: Maybe<GraphStoreSimplifiedPositionAllocatedToFocusAreaInverseConnection>;
|
|
29485
|
+
positionAssociatedExternalPosition?: Maybe<GraphStoreSimplifiedPositionAssociatedExternalPositionConnection>;
|
|
29486
|
+
positionAssociatedExternalPositionInverse?: Maybe<GraphStoreSimplifiedPositionAssociatedExternalPositionInverseConnection>;
|
|
28984
29487
|
prHasComment?: Maybe<GraphStoreSimplifiedPrHasCommentConnection>;
|
|
28985
29488
|
prHasCommentInverse?: Maybe<GraphStoreSimplifiedPrHasCommentInverseConnection>;
|
|
28986
29489
|
prInProviderRepo?: Maybe<GraphStoreSimplifiedPrInProviderRepoConnection>;
|
|
@@ -29252,6 +29755,8 @@ export declare type GraphStore = {
|
|
|
29252
29755
|
userCreatedVideoComment?: Maybe<GraphStoreSimplifiedUserCreatedVideoCommentConnection>;
|
|
29253
29756
|
userCreatedVideoCommentInverse?: Maybe<GraphStoreSimplifiedUserCreatedVideoCommentInverseConnection>;
|
|
29254
29757
|
userCreatedVideoInverse?: Maybe<GraphStoreSimplifiedUserCreatedVideoInverseConnection>;
|
|
29758
|
+
userCreatedWorkItem?: Maybe<GraphStoreSimplifiedUserCreatedWorkItemConnection>;
|
|
29759
|
+
userCreatedWorkItemInverse?: Maybe<GraphStoreSimplifiedUserCreatedWorkItemInverseConnection>;
|
|
29255
29760
|
userFavoritedConfluenceBlogpost?: Maybe<GraphStoreSimplifiedUserFavoritedConfluenceBlogpostConnection>;
|
|
29256
29761
|
userFavoritedConfluenceBlogpostInverse?: Maybe<GraphStoreSimplifiedUserFavoritedConfluenceBlogpostInverseConnection>;
|
|
29257
29762
|
userFavoritedConfluenceDatabase?: Maybe<GraphStoreSimplifiedUserFavoritedConfluenceDatabaseConnection>;
|
|
@@ -29488,6 +29993,12 @@ export declare type GraphStoreAtlasGoalHasJiraAlignProjectArgs = {
|
|
|
29488
29993
|
id: Scalars['ID']['input'];
|
|
29489
29994
|
sort?: InputMaybe<GraphStoreAtlasGoalHasJiraAlignProjectSortInput>;
|
|
29490
29995
|
};
|
|
29996
|
+
export declare type GraphStoreAtlasGoalHasJiraAlignProjectBatchArgs = {
|
|
29997
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
29998
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
29999
|
+
ids: Array<Scalars['ID']['input']>;
|
|
30000
|
+
sort?: InputMaybe<GraphStoreAtlasGoalHasJiraAlignProjectSortInput>;
|
|
30001
|
+
};
|
|
29491
30002
|
export declare type GraphStoreAtlasGoalHasJiraAlignProjectInverseArgs = {
|
|
29492
30003
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
29493
30004
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -29495,6 +30006,12 @@ export declare type GraphStoreAtlasGoalHasJiraAlignProjectInverseArgs = {
|
|
|
29495
30006
|
id: Scalars['ID']['input'];
|
|
29496
30007
|
sort?: InputMaybe<GraphStoreAtlasGoalHasJiraAlignProjectSortInput>;
|
|
29497
30008
|
};
|
|
30009
|
+
export declare type GraphStoreAtlasGoalHasJiraAlignProjectInverseBatchArgs = {
|
|
30010
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
30011
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
30012
|
+
ids: Array<Scalars['ID']['input']>;
|
|
30013
|
+
sort?: InputMaybe<GraphStoreAtlasGoalHasJiraAlignProjectSortInput>;
|
|
30014
|
+
};
|
|
29498
30015
|
export declare type GraphStoreAtlasGoalHasOwnerArgs = {
|
|
29499
30016
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
29500
30017
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -29535,6 +30052,12 @@ export declare type GraphStoreAtlasProjectContributesToAtlasGoalArgs = {
|
|
|
29535
30052
|
id: Scalars['ID']['input'];
|
|
29536
30053
|
sort?: InputMaybe<GraphStoreAtlasProjectContributesToAtlasGoalSortInput>;
|
|
29537
30054
|
};
|
|
30055
|
+
export declare type GraphStoreAtlasProjectContributesToAtlasGoalBatchArgs = {
|
|
30056
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
30057
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
30058
|
+
ids: Array<Scalars['ID']['input']>;
|
|
30059
|
+
sort?: InputMaybe<GraphStoreAtlasProjectContributesToAtlasGoalSortInput>;
|
|
30060
|
+
};
|
|
29538
30061
|
export declare type GraphStoreAtlasProjectContributesToAtlasGoalInverseArgs = {
|
|
29539
30062
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
29540
30063
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -29542,6 +30065,12 @@ export declare type GraphStoreAtlasProjectContributesToAtlasGoalInverseArgs = {
|
|
|
29542
30065
|
id: Scalars['ID']['input'];
|
|
29543
30066
|
sort?: InputMaybe<GraphStoreAtlasProjectContributesToAtlasGoalSortInput>;
|
|
29544
30067
|
};
|
|
30068
|
+
export declare type GraphStoreAtlasProjectContributesToAtlasGoalInverseBatchArgs = {
|
|
30069
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
30070
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
30071
|
+
ids: Array<Scalars['ID']['input']>;
|
|
30072
|
+
sort?: InputMaybe<GraphStoreAtlasProjectContributesToAtlasGoalSortInput>;
|
|
30073
|
+
};
|
|
29545
30074
|
export declare type GraphStoreAtlasProjectContributesToAtlasGoalInverseRelationshipArgs = {
|
|
29546
30075
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
29547
30076
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
@@ -30053,17 +30582,20 @@ export declare type GraphStoreCypherQueryArgs = {
|
|
|
30053
30582
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
30054
30583
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
30055
30584
|
query: Scalars['String']['input'];
|
|
30585
|
+
queryContext?: InputMaybe<Scalars['String']['input']>;
|
|
30056
30586
|
};
|
|
30057
30587
|
export declare type GraphStoreCypherQueryV2Args = {
|
|
30058
30588
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
30059
30589
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
30060
30590
|
params?: InputMaybe<Scalars['JSON']['input']>;
|
|
30061
30591
|
query: Scalars['String']['input'];
|
|
30592
|
+
queryContext?: InputMaybe<Scalars['String']['input']>;
|
|
30062
30593
|
version?: InputMaybe<GraphStoreCypherQueryV2VersionEnum>;
|
|
30063
30594
|
};
|
|
30064
30595
|
export declare type GraphStoreCypherQueryV2BatchArgs = {
|
|
30065
30596
|
params?: InputMaybe<Array<InputMaybe<Scalars['JSON']['input']>>>;
|
|
30066
30597
|
queries: Array<GraphStoreCypherQueryV2BatchQueryRequestInput>;
|
|
30598
|
+
queryContext?: InputMaybe<Scalars['String']['input']>;
|
|
30067
30599
|
version?: InputMaybe<GraphStoreCypherQueryV2BatchVersionEnum>;
|
|
30068
30600
|
};
|
|
30069
30601
|
export declare type GraphStoreDeploymentAssociatedDeploymentArgs = {
|
|
@@ -31077,6 +31609,12 @@ export declare type GraphStoreJiraEpicContributesToAtlasGoalArgs = {
|
|
|
31077
31609
|
id: Scalars['ID']['input'];
|
|
31078
31610
|
sort?: InputMaybe<GraphStoreJiraEpicContributesToAtlasGoalSortInput>;
|
|
31079
31611
|
};
|
|
31612
|
+
export declare type GraphStoreJiraEpicContributesToAtlasGoalBatchArgs = {
|
|
31613
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
31614
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
31615
|
+
ids: Array<Scalars['ID']['input']>;
|
|
31616
|
+
sort?: InputMaybe<GraphStoreJiraEpicContributesToAtlasGoalSortInput>;
|
|
31617
|
+
};
|
|
31080
31618
|
export declare type GraphStoreJiraEpicContributesToAtlasGoalInverseArgs = {
|
|
31081
31619
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
31082
31620
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -31084,6 +31622,12 @@ export declare type GraphStoreJiraEpicContributesToAtlasGoalInverseArgs = {
|
|
|
31084
31622
|
id: Scalars['ID']['input'];
|
|
31085
31623
|
sort?: InputMaybe<GraphStoreJiraEpicContributesToAtlasGoalSortInput>;
|
|
31086
31624
|
};
|
|
31625
|
+
export declare type GraphStoreJiraEpicContributesToAtlasGoalInverseBatchArgs = {
|
|
31626
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
31627
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
31628
|
+
ids: Array<Scalars['ID']['input']>;
|
|
31629
|
+
sort?: InputMaybe<GraphStoreJiraEpicContributesToAtlasGoalSortInput>;
|
|
31630
|
+
};
|
|
31087
31631
|
export declare type GraphStoreJiraEpicContributesToAtlasGoalInverseRelationshipArgs = {
|
|
31088
31632
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
31089
31633
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
@@ -31539,6 +32083,20 @@ export declare type GraphStorePositionAllocatedToFocusAreaInverseArgs = {
|
|
|
31539
32083
|
id: Scalars['ID']['input'];
|
|
31540
32084
|
sort?: InputMaybe<GraphStorePositionAllocatedToFocusAreaSortInput>;
|
|
31541
32085
|
};
|
|
32086
|
+
export declare type GraphStorePositionAssociatedExternalPositionArgs = {
|
|
32087
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
32088
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
32089
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
32090
|
+
id: Scalars['ID']['input'];
|
|
32091
|
+
sort?: InputMaybe<GraphStorePositionAssociatedExternalPositionSortInput>;
|
|
32092
|
+
};
|
|
32093
|
+
export declare type GraphStorePositionAssociatedExternalPositionInverseArgs = {
|
|
32094
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
32095
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
32096
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
32097
|
+
id: Scalars['ID']['input'];
|
|
32098
|
+
sort?: InputMaybe<GraphStorePositionAssociatedExternalPositionSortInput>;
|
|
32099
|
+
};
|
|
31542
32100
|
export declare type GraphStorePrHasCommentArgs = {
|
|
31543
32101
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
31544
32102
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -33372,6 +33930,20 @@ export declare type GraphStoreUserCreatedVideoInverseArgs = {
|
|
|
33372
33930
|
id: Scalars['ID']['input'];
|
|
33373
33931
|
sort?: InputMaybe<GraphStoreUserCreatedVideoSortInput>;
|
|
33374
33932
|
};
|
|
33933
|
+
export declare type GraphStoreUserCreatedWorkItemArgs = {
|
|
33934
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
33935
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
33936
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
33937
|
+
id: Scalars['ID']['input'];
|
|
33938
|
+
sort?: InputMaybe<GraphStoreUserCreatedWorkItemSortInput>;
|
|
33939
|
+
};
|
|
33940
|
+
export declare type GraphStoreUserCreatedWorkItemInverseArgs = {
|
|
33941
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
33942
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
33943
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
33944
|
+
id: Scalars['ID']['input'];
|
|
33945
|
+
sort?: InputMaybe<GraphStoreUserCreatedWorkItemSortInput>;
|
|
33946
|
+
};
|
|
33375
33947
|
export declare type GraphStoreUserFavoritedConfluenceBlogpostArgs = {
|
|
33376
33948
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
33377
33949
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -34617,6 +35189,88 @@ export declare type GraphStoreAtlasProjectIsRelatedToAtlasProjectSortInput = {
|
|
|
34617
35189
|
export declare type GraphStoreAtlasProjectIsTrackedOnJiraEpicSortInput = {
|
|
34618
35190
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
34619
35191
|
};
|
|
35192
|
+
export declare type GraphStoreBatchAtlasGoalHasJiraAlignProjectConnection = HasPageInfo & {
|
|
35193
|
+
__typename?: 'GraphStoreBatchAtlasGoalHasJiraAlignProjectConnection';
|
|
35194
|
+
edges: Array<Maybe<GraphStoreBatchAtlasGoalHasJiraAlignProjectEdge>>;
|
|
35195
|
+
nodes: Array<Maybe<GraphStoreBatchAtlasGoalHasJiraAlignProjectNode>>;
|
|
35196
|
+
pageInfo: PageInfo;
|
|
35197
|
+
};
|
|
35198
|
+
export declare type GraphStoreBatchAtlasGoalHasJiraAlignProjectEdge = {
|
|
35199
|
+
__typename?: 'GraphStoreBatchAtlasGoalHasJiraAlignProjectEdge';
|
|
35200
|
+
node: GraphStoreBatchAtlasGoalHasJiraAlignProjectInnerConnection;
|
|
35201
|
+
};
|
|
35202
|
+
export declare type GraphStoreBatchAtlasGoalHasJiraAlignProjectEndNode = {
|
|
35203
|
+
__typename?: 'GraphStoreBatchAtlasGoalHasJiraAlignProjectEndNode';
|
|
35204
|
+
data?: Maybe<GraphStoreBatchAtlasGoalHasJiraAlignProjectEndUnion>;
|
|
35205
|
+
id: Scalars['ID']['output'];
|
|
35206
|
+
};
|
|
35207
|
+
export declare type GraphStoreBatchAtlasGoalHasJiraAlignProjectEndUnion = JiraAlignAggProject;
|
|
35208
|
+
export declare type GraphStoreBatchAtlasGoalHasJiraAlignProjectInnerConnection = {
|
|
35209
|
+
__typename?: 'GraphStoreBatchAtlasGoalHasJiraAlignProjectInnerConnection';
|
|
35210
|
+
edges: Array<Maybe<GraphStoreBatchAtlasGoalHasJiraAlignProjectInnerEdge>>;
|
|
35211
|
+
nodes: Array<Maybe<GraphStoreBatchAtlasGoalHasJiraAlignProjectNode>>;
|
|
35212
|
+
requestedId: Scalars['ID']['output'];
|
|
35213
|
+
};
|
|
35214
|
+
export declare type GraphStoreBatchAtlasGoalHasJiraAlignProjectInnerEdge = {
|
|
35215
|
+
__typename?: 'GraphStoreBatchAtlasGoalHasJiraAlignProjectInnerEdge';
|
|
35216
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
35217
|
+
node: GraphStoreBatchAtlasGoalHasJiraAlignProjectNode;
|
|
35218
|
+
};
|
|
35219
|
+
export declare type GraphStoreBatchAtlasGoalHasJiraAlignProjectNode = Node & {
|
|
35220
|
+
__typename?: 'GraphStoreBatchAtlasGoalHasJiraAlignProjectNode';
|
|
35221
|
+
createdAt: Scalars['DateTime']['output'];
|
|
35222
|
+
from: GraphStoreBatchAtlasGoalHasJiraAlignProjectStartNode;
|
|
35223
|
+
id: Scalars['ID']['output'];
|
|
35224
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
35225
|
+
to: GraphStoreBatchAtlasGoalHasJiraAlignProjectEndNode;
|
|
35226
|
+
};
|
|
35227
|
+
export declare type GraphStoreBatchAtlasGoalHasJiraAlignProjectStartNode = {
|
|
35228
|
+
__typename?: 'GraphStoreBatchAtlasGoalHasJiraAlignProjectStartNode';
|
|
35229
|
+
data?: Maybe<GraphStoreBatchAtlasGoalHasJiraAlignProjectStartUnion>;
|
|
35230
|
+
id: Scalars['ID']['output'];
|
|
35231
|
+
};
|
|
35232
|
+
export declare type GraphStoreBatchAtlasGoalHasJiraAlignProjectStartUnion = TownsquareGoal;
|
|
35233
|
+
export declare type GraphStoreBatchAtlasProjectContributesToAtlasGoalConnection = HasPageInfo & {
|
|
35234
|
+
__typename?: 'GraphStoreBatchAtlasProjectContributesToAtlasGoalConnection';
|
|
35235
|
+
edges: Array<Maybe<GraphStoreBatchAtlasProjectContributesToAtlasGoalEdge>>;
|
|
35236
|
+
nodes: Array<Maybe<GraphStoreBatchAtlasProjectContributesToAtlasGoalNode>>;
|
|
35237
|
+
pageInfo: PageInfo;
|
|
35238
|
+
};
|
|
35239
|
+
export declare type GraphStoreBatchAtlasProjectContributesToAtlasGoalEdge = {
|
|
35240
|
+
__typename?: 'GraphStoreBatchAtlasProjectContributesToAtlasGoalEdge';
|
|
35241
|
+
node: GraphStoreBatchAtlasProjectContributesToAtlasGoalInnerConnection;
|
|
35242
|
+
};
|
|
35243
|
+
export declare type GraphStoreBatchAtlasProjectContributesToAtlasGoalEndNode = {
|
|
35244
|
+
__typename?: 'GraphStoreBatchAtlasProjectContributesToAtlasGoalEndNode';
|
|
35245
|
+
data?: Maybe<GraphStoreBatchAtlasProjectContributesToAtlasGoalEndUnion>;
|
|
35246
|
+
id: Scalars['ID']['output'];
|
|
35247
|
+
};
|
|
35248
|
+
export declare type GraphStoreBatchAtlasProjectContributesToAtlasGoalEndUnion = TownsquareGoal;
|
|
35249
|
+
export declare type GraphStoreBatchAtlasProjectContributesToAtlasGoalInnerConnection = {
|
|
35250
|
+
__typename?: 'GraphStoreBatchAtlasProjectContributesToAtlasGoalInnerConnection';
|
|
35251
|
+
edges: Array<Maybe<GraphStoreBatchAtlasProjectContributesToAtlasGoalInnerEdge>>;
|
|
35252
|
+
nodes: Array<Maybe<GraphStoreBatchAtlasProjectContributesToAtlasGoalNode>>;
|
|
35253
|
+
requestedId: Scalars['ID']['output'];
|
|
35254
|
+
};
|
|
35255
|
+
export declare type GraphStoreBatchAtlasProjectContributesToAtlasGoalInnerEdge = {
|
|
35256
|
+
__typename?: 'GraphStoreBatchAtlasProjectContributesToAtlasGoalInnerEdge';
|
|
35257
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
35258
|
+
node: GraphStoreBatchAtlasProjectContributesToAtlasGoalNode;
|
|
35259
|
+
};
|
|
35260
|
+
export declare type GraphStoreBatchAtlasProjectContributesToAtlasGoalNode = Node & {
|
|
35261
|
+
__typename?: 'GraphStoreBatchAtlasProjectContributesToAtlasGoalNode';
|
|
35262
|
+
createdAt: Scalars['DateTime']['output'];
|
|
35263
|
+
from: GraphStoreBatchAtlasProjectContributesToAtlasGoalStartNode;
|
|
35264
|
+
id: Scalars['ID']['output'];
|
|
35265
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
35266
|
+
to: GraphStoreBatchAtlasProjectContributesToAtlasGoalEndNode;
|
|
35267
|
+
};
|
|
35268
|
+
export declare type GraphStoreBatchAtlasProjectContributesToAtlasGoalStartNode = {
|
|
35269
|
+
__typename?: 'GraphStoreBatchAtlasProjectContributesToAtlasGoalStartNode';
|
|
35270
|
+
data?: Maybe<GraphStoreBatchAtlasProjectContributesToAtlasGoalStartUnion>;
|
|
35271
|
+
id: Scalars['ID']['output'];
|
|
35272
|
+
};
|
|
35273
|
+
export declare type GraphStoreBatchAtlasProjectContributesToAtlasGoalStartUnion = TownsquareProject;
|
|
34620
35274
|
export declare type GraphStoreBatchContentReferencedEntityConnection = HasPageInfo & {
|
|
34621
35275
|
__typename?: 'GraphStoreBatchContentReferencedEntityConnection';
|
|
34622
35276
|
edges: Array<Maybe<GraphStoreBatchContentReferencedEntityEdge>>;
|
|
@@ -35150,6 +35804,47 @@ export declare type GraphStoreBatchIssueAssociatedIssueRemoteLinkStartNode = {
|
|
|
35150
35804
|
id: Scalars['ID']['output'];
|
|
35151
35805
|
};
|
|
35152
35806
|
export declare type GraphStoreBatchIssueAssociatedIssueRemoteLinkStartUnion = JiraIssue;
|
|
35807
|
+
export declare type GraphStoreBatchJiraEpicContributesToAtlasGoalConnection = HasPageInfo & {
|
|
35808
|
+
__typename?: 'GraphStoreBatchJiraEpicContributesToAtlasGoalConnection';
|
|
35809
|
+
edges: Array<Maybe<GraphStoreBatchJiraEpicContributesToAtlasGoalEdge>>;
|
|
35810
|
+
nodes: Array<Maybe<GraphStoreBatchJiraEpicContributesToAtlasGoalNode>>;
|
|
35811
|
+
pageInfo: PageInfo;
|
|
35812
|
+
};
|
|
35813
|
+
export declare type GraphStoreBatchJiraEpicContributesToAtlasGoalEdge = {
|
|
35814
|
+
__typename?: 'GraphStoreBatchJiraEpicContributesToAtlasGoalEdge';
|
|
35815
|
+
node: GraphStoreBatchJiraEpicContributesToAtlasGoalInnerConnection;
|
|
35816
|
+
};
|
|
35817
|
+
export declare type GraphStoreBatchJiraEpicContributesToAtlasGoalEndNode = {
|
|
35818
|
+
__typename?: 'GraphStoreBatchJiraEpicContributesToAtlasGoalEndNode';
|
|
35819
|
+
data?: Maybe<GraphStoreBatchJiraEpicContributesToAtlasGoalEndUnion>;
|
|
35820
|
+
id: Scalars['ID']['output'];
|
|
35821
|
+
};
|
|
35822
|
+
export declare type GraphStoreBatchJiraEpicContributesToAtlasGoalEndUnion = TownsquareGoal;
|
|
35823
|
+
export declare type GraphStoreBatchJiraEpicContributesToAtlasGoalInnerConnection = {
|
|
35824
|
+
__typename?: 'GraphStoreBatchJiraEpicContributesToAtlasGoalInnerConnection';
|
|
35825
|
+
edges: Array<Maybe<GraphStoreBatchJiraEpicContributesToAtlasGoalInnerEdge>>;
|
|
35826
|
+
nodes: Array<Maybe<GraphStoreBatchJiraEpicContributesToAtlasGoalNode>>;
|
|
35827
|
+
requestedId: Scalars['ID']['output'];
|
|
35828
|
+
};
|
|
35829
|
+
export declare type GraphStoreBatchJiraEpicContributesToAtlasGoalInnerEdge = {
|
|
35830
|
+
__typename?: 'GraphStoreBatchJiraEpicContributesToAtlasGoalInnerEdge';
|
|
35831
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
35832
|
+
node: GraphStoreBatchJiraEpicContributesToAtlasGoalNode;
|
|
35833
|
+
};
|
|
35834
|
+
export declare type GraphStoreBatchJiraEpicContributesToAtlasGoalNode = Node & {
|
|
35835
|
+
__typename?: 'GraphStoreBatchJiraEpicContributesToAtlasGoalNode';
|
|
35836
|
+
createdAt: Scalars['DateTime']['output'];
|
|
35837
|
+
from: GraphStoreBatchJiraEpicContributesToAtlasGoalStartNode;
|
|
35838
|
+
id: Scalars['ID']['output'];
|
|
35839
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
35840
|
+
to: GraphStoreBatchJiraEpicContributesToAtlasGoalEndNode;
|
|
35841
|
+
};
|
|
35842
|
+
export declare type GraphStoreBatchJiraEpicContributesToAtlasGoalStartNode = {
|
|
35843
|
+
__typename?: 'GraphStoreBatchJiraEpicContributesToAtlasGoalStartNode';
|
|
35844
|
+
data?: Maybe<GraphStoreBatchJiraEpicContributesToAtlasGoalStartUnion>;
|
|
35845
|
+
id: Scalars['ID']['output'];
|
|
35846
|
+
};
|
|
35847
|
+
export declare type GraphStoreBatchJiraEpicContributesToAtlasGoalStartUnion = JiraIssue;
|
|
35153
35848
|
export declare type GraphStoreBatchJsmProjectAssociatedServiceConnection = HasPageInfo & {
|
|
35154
35849
|
__typename?: 'GraphStoreBatchJsmProjectAssociatedServiceConnection';
|
|
35155
35850
|
edges: Array<Maybe<GraphStoreBatchJsmProjectAssociatedServiceEdge>>;
|
|
@@ -40632,6 +41327,9 @@ export declare type GraphStoreParentMessageHasChildMessageSortInput = {
|
|
|
40632
41327
|
export declare type GraphStorePositionAllocatedToFocusAreaSortInput = {
|
|
40633
41328
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
40634
41329
|
};
|
|
41330
|
+
export declare type GraphStorePositionAssociatedExternalPositionSortInput = {
|
|
41331
|
+
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
41332
|
+
};
|
|
40635
41333
|
export declare type GraphStorePrHasCommentSortInput = {
|
|
40636
41334
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
40637
41335
|
};
|
|
@@ -44407,6 +45105,34 @@ export declare type GraphStoreSimplifiedPositionAllocatedToFocusAreaInverseEdge
|
|
|
44407
45105
|
};
|
|
44408
45106
|
export declare type GraphStoreSimplifiedPositionAllocatedToFocusAreaInverseUnion = RadarPosition;
|
|
44409
45107
|
export declare type GraphStoreSimplifiedPositionAllocatedToFocusAreaUnion = MercuryFocusArea;
|
|
45108
|
+
export declare type GraphStoreSimplifiedPositionAssociatedExternalPositionConnection = HasPageInfo & {
|
|
45109
|
+
__typename?: 'GraphStoreSimplifiedPositionAssociatedExternalPositionConnection';
|
|
45110
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedPositionAssociatedExternalPositionEdge>>>;
|
|
45111
|
+
pageInfo: PageInfo;
|
|
45112
|
+
};
|
|
45113
|
+
export declare type GraphStoreSimplifiedPositionAssociatedExternalPositionEdge = {
|
|
45114
|
+
__typename?: 'GraphStoreSimplifiedPositionAssociatedExternalPositionEdge';
|
|
45115
|
+
createdAt: Scalars['DateTime']['output'];
|
|
45116
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
45117
|
+
id: Scalars['ID']['output'];
|
|
45118
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
45119
|
+
node?: Maybe<GraphStoreSimplifiedPositionAssociatedExternalPositionUnion>;
|
|
45120
|
+
};
|
|
45121
|
+
export declare type GraphStoreSimplifiedPositionAssociatedExternalPositionInverseConnection = HasPageInfo & {
|
|
45122
|
+
__typename?: 'GraphStoreSimplifiedPositionAssociatedExternalPositionInverseConnection';
|
|
45123
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedPositionAssociatedExternalPositionInverseEdge>>>;
|
|
45124
|
+
pageInfo: PageInfo;
|
|
45125
|
+
};
|
|
45126
|
+
export declare type GraphStoreSimplifiedPositionAssociatedExternalPositionInverseEdge = {
|
|
45127
|
+
__typename?: 'GraphStoreSimplifiedPositionAssociatedExternalPositionInverseEdge';
|
|
45128
|
+
createdAt: Scalars['DateTime']['output'];
|
|
45129
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
45130
|
+
id: Scalars['ID']['output'];
|
|
45131
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
45132
|
+
node?: Maybe<GraphStoreSimplifiedPositionAssociatedExternalPositionInverseUnion>;
|
|
45133
|
+
};
|
|
45134
|
+
export declare type GraphStoreSimplifiedPositionAssociatedExternalPositionInverseUnion = RadarPosition;
|
|
45135
|
+
export declare type GraphStoreSimplifiedPositionAssociatedExternalPositionUnion = ExternalPosition;
|
|
44410
45136
|
export declare type GraphStoreSimplifiedPrHasCommentConnection = HasPageInfo & {
|
|
44411
45137
|
__typename?: 'GraphStoreSimplifiedPrHasCommentConnection';
|
|
44412
45138
|
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedPrHasCommentEdge>>>;
|
|
@@ -47309,6 +48035,34 @@ export declare type GraphStoreSimplifiedUserCreatedVideoInverseEdge = {
|
|
|
47309
48035
|
};
|
|
47310
48036
|
export declare type GraphStoreSimplifiedUserCreatedVideoInverseUnion = AppUser | AtlassianAccountUser | CustomerUser;
|
|
47311
48037
|
export declare type GraphStoreSimplifiedUserCreatedVideoUnion = LoomVideo;
|
|
48038
|
+
export declare type GraphStoreSimplifiedUserCreatedWorkItemConnection = HasPageInfo & {
|
|
48039
|
+
__typename?: 'GraphStoreSimplifiedUserCreatedWorkItemConnection';
|
|
48040
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedUserCreatedWorkItemEdge>>>;
|
|
48041
|
+
pageInfo: PageInfo;
|
|
48042
|
+
};
|
|
48043
|
+
export declare type GraphStoreSimplifiedUserCreatedWorkItemEdge = {
|
|
48044
|
+
__typename?: 'GraphStoreSimplifiedUserCreatedWorkItemEdge';
|
|
48045
|
+
createdAt: Scalars['DateTime']['output'];
|
|
48046
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
48047
|
+
id: Scalars['ID']['output'];
|
|
48048
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
48049
|
+
node?: Maybe<GraphStoreSimplifiedUserCreatedWorkItemUnion>;
|
|
48050
|
+
};
|
|
48051
|
+
export declare type GraphStoreSimplifiedUserCreatedWorkItemInverseConnection = HasPageInfo & {
|
|
48052
|
+
__typename?: 'GraphStoreSimplifiedUserCreatedWorkItemInverseConnection';
|
|
48053
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedUserCreatedWorkItemInverseEdge>>>;
|
|
48054
|
+
pageInfo: PageInfo;
|
|
48055
|
+
};
|
|
48056
|
+
export declare type GraphStoreSimplifiedUserCreatedWorkItemInverseEdge = {
|
|
48057
|
+
__typename?: 'GraphStoreSimplifiedUserCreatedWorkItemInverseEdge';
|
|
48058
|
+
createdAt: Scalars['DateTime']['output'];
|
|
48059
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
48060
|
+
id: Scalars['ID']['output'];
|
|
48061
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
48062
|
+
node?: Maybe<GraphStoreSimplifiedUserCreatedWorkItemInverseUnion>;
|
|
48063
|
+
};
|
|
48064
|
+
export declare type GraphStoreSimplifiedUserCreatedWorkItemInverseUnion = AppUser | AtlassianAccountUser | CustomerUser | ThirdPartyUser;
|
|
48065
|
+
export declare type GraphStoreSimplifiedUserCreatedWorkItemUnion = ExternalWorkItem;
|
|
47312
48066
|
export declare type GraphStoreSimplifiedUserFavoritedConfluenceBlogpostConnection = HasPageInfo & {
|
|
47313
48067
|
__typename?: 'GraphStoreSimplifiedUserFavoritedConfluenceBlogpostConnection';
|
|
47314
48068
|
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedUserFavoritedConfluenceBlogpostEdge>>>;
|
|
@@ -49778,6 +50532,9 @@ export declare type GraphStoreUserCreatedVideoCommentSortInput = {
|
|
|
49778
50532
|
export declare type GraphStoreUserCreatedVideoSortInput = {
|
|
49779
50533
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
49780
50534
|
};
|
|
50535
|
+
export declare type GraphStoreUserCreatedWorkItemSortInput = {
|
|
50536
|
+
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
50537
|
+
};
|
|
49781
50538
|
export declare type GraphStoreUserFavoritedConfluenceBlogpostSortInput = {
|
|
49782
50539
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
49783
50540
|
};
|
|
@@ -50223,6 +50980,23 @@ export declare enum GrowthUnifiedProfileAnchorType {
|
|
|
50223
50980
|
Pfm = "PFM",
|
|
50224
50981
|
Seo = "SEO"
|
|
50225
50982
|
}
|
|
50983
|
+
export declare type GrowthUnifiedProfileAvgResourceEngagementSeries = {
|
|
50984
|
+
__typename?: 'GrowthUnifiedProfileAvgResourceEngagementSeries';
|
|
50985
|
+
date?: Maybe<Scalars['String']['output']>;
|
|
50986
|
+
value?: Maybe<Scalars['Float']['output']>;
|
|
50987
|
+
};
|
|
50988
|
+
export declare type GrowthUnifiedProfileBestPerformingTarget = {
|
|
50989
|
+
__typename?: 'GrowthUnifiedProfileBestPerformingTarget';
|
|
50990
|
+
data?: Maybe<GrowthUnifiedProfileBestPerformingTargetData>;
|
|
50991
|
+
date?: Maybe<Scalars['String']['output']>;
|
|
50992
|
+
};
|
|
50993
|
+
export declare type GrowthUnifiedProfileBestPerformingTargetData = {
|
|
50994
|
+
__typename?: 'GrowthUnifiedProfileBestPerformingTargetData';
|
|
50995
|
+
score?: Maybe<Scalars['Float']['output']>;
|
|
50996
|
+
total?: Maybe<Scalars['Int']['output']>;
|
|
50997
|
+
type?: Maybe<Scalars['String']['output']>;
|
|
50998
|
+
value?: Maybe<Scalars['String']['output']>;
|
|
50999
|
+
};
|
|
50226
51000
|
export declare enum GrowthUnifiedProfileChannel {
|
|
50227
51001
|
PaidContent = "PAID_CONTENT",
|
|
50228
51002
|
PaidDisplay = "PAID_DISPLAY",
|
|
@@ -50259,6 +51033,16 @@ export declare enum GrowthUnifiedProfileCompanyType {
|
|
|
50259
51033
|
Private = "PRIVATE",
|
|
50260
51034
|
Public = "PUBLIC"
|
|
50261
51035
|
}
|
|
51036
|
+
export declare type GrowthUnifiedProfileCompletionRateSeries = {
|
|
51037
|
+
__typename?: 'GrowthUnifiedProfileCompletionRateSeries';
|
|
51038
|
+
date?: Maybe<Scalars['String']['output']>;
|
|
51039
|
+
value?: Maybe<Scalars['Float']['output']>;
|
|
51040
|
+
};
|
|
51041
|
+
export declare type GrowthUnifiedProfileCompletionSeries = {
|
|
51042
|
+
__typename?: 'GrowthUnifiedProfileCompletionSeries';
|
|
51043
|
+
date?: Maybe<Scalars['String']['output']>;
|
|
51044
|
+
value?: Maybe<Scalars['Int']['output']>;
|
|
51045
|
+
};
|
|
50262
51046
|
export declare type GrowthUnifiedProfileConfluenceOnboardingContext = {
|
|
50263
51047
|
__typename?: 'GrowthUnifiedProfileConfluenceOnboardingContext';
|
|
50264
51048
|
jobsToBeDone?: Maybe<Array<Maybe<GrowthUnifiedProfileJtbd>>>;
|
|
@@ -50519,6 +51303,15 @@ export declare type GrowthUnifiedProfileResult = {
|
|
|
50519
51303
|
userFootprints?: Maybe<GrowthUnifiedProfileUserFootprints>;
|
|
50520
51304
|
userProfile?: Maybe<GrowthUnifiedProfileUserProfile>;
|
|
50521
51305
|
};
|
|
51306
|
+
export declare enum GrowthUnifiedProfileRollingDateIntervalInput {
|
|
51307
|
+
Days_1 = "DAYS_1",
|
|
51308
|
+
Days_7 = "DAYS_7",
|
|
51309
|
+
Days_30 = "DAYS_30",
|
|
51310
|
+
Days_90 = "DAYS_90",
|
|
51311
|
+
Days_180 = "DAYS_180",
|
|
51312
|
+
Days_270 = "DAYS_270",
|
|
51313
|
+
Days_365 = "DAYS_365"
|
|
51314
|
+
}
|
|
50522
51315
|
export declare type GrowthUnifiedProfileSeoContext = {
|
|
50523
51316
|
__typename?: 'GrowthUnifiedProfileSeoContext';
|
|
50524
51317
|
anchor?: Maybe<GrowthUnifiedProfileAnchor>;
|
|
@@ -50532,6 +51325,43 @@ export declare type GrowthUnifiedProfileSiteDetails = {
|
|
|
50532
51325
|
siteCreatedAt?: Maybe<Scalars['String']['output']>;
|
|
50533
51326
|
url?: Maybe<Scalars['String']['output']>;
|
|
50534
51327
|
};
|
|
51328
|
+
export declare type GrowthUnifiedProfileSiteOnboardingInsightsPerOnboardingResult = {
|
|
51329
|
+
__typename?: 'GrowthUnifiedProfileSiteOnboardingInsightsPerOnboardingResult';
|
|
51330
|
+
insights?: Maybe<Array<Maybe<GrowthUnifiedProfileSiteOnboardingInsightsResult>>>;
|
|
51331
|
+
onboardingId: Scalars['ID']['output'];
|
|
51332
|
+
};
|
|
51333
|
+
export declare type GrowthUnifiedProfileSiteOnboardingInsightsResult = {
|
|
51334
|
+
__typename?: 'GrowthUnifiedProfileSiteOnboardingInsightsResult';
|
|
51335
|
+
availableDataPoints?: Maybe<Scalars['Int']['output']>;
|
|
51336
|
+
avgResourceEngagement?: Maybe<Scalars['Float']['output']>;
|
|
51337
|
+
avgResourceEngagementSeries?: Maybe<Array<Maybe<GrowthUnifiedProfileAvgResourceEngagementSeries>>>;
|
|
51338
|
+
bestPerformingTarget?: Maybe<Array<Maybe<GrowthUnifiedProfileBestPerformingTarget>>>;
|
|
51339
|
+
completionRate?: Maybe<Scalars['Float']['output']>;
|
|
51340
|
+
completionRateSeries?: Maybe<Array<Maybe<GrowthUnifiedProfileCompletionRateSeries>>>;
|
|
51341
|
+
completionSeries?: Maybe<Array<Maybe<GrowthUnifiedProfileCompletionSeries>>>;
|
|
51342
|
+
dataSufficiencyPercentage?: Maybe<Scalars['Float']['output']>;
|
|
51343
|
+
dateRangeDays?: Maybe<Scalars['Int']['output']>;
|
|
51344
|
+
earliestDataDate?: Maybe<Scalars['String']['output']>;
|
|
51345
|
+
latestDataDate?: Maybe<Scalars['String']['output']>;
|
|
51346
|
+
rollingInterval: Scalars['String']['output'];
|
|
51347
|
+
tags?: Maybe<Array<Maybe<Scalars['String']['output']>>>;
|
|
51348
|
+
totalCompletions?: Maybe<Scalars['Int']['output']>;
|
|
51349
|
+
totalDataDays?: Maybe<Scalars['Int']['output']>;
|
|
51350
|
+
totalViews?: Maybe<Scalars['Int']['output']>;
|
|
51351
|
+
viewSeries?: Maybe<Array<Maybe<GrowthUnifiedProfileViewSeries>>>;
|
|
51352
|
+
};
|
|
51353
|
+
export declare type GrowthUnifiedProfileSiteProfileResult = {
|
|
51354
|
+
__typename?: 'GrowthUnifiedProfileSiteProfileResult';
|
|
51355
|
+
onboardingHubInsightsOverAll?: Maybe<Array<Maybe<GrowthUnifiedProfileSiteOnboardingInsightsResult>>>;
|
|
51356
|
+
onboardingHubInsightsPerOnboarding?: Maybe<Array<Maybe<GrowthUnifiedProfileSiteOnboardingInsightsPerOnboardingResult>>>;
|
|
51357
|
+
};
|
|
51358
|
+
export declare type GrowthUnifiedProfileSiteProfileResultOnboardingHubInsightsOverAllArgs = {
|
|
51359
|
+
rollingIntervals: Array<GrowthUnifiedProfileRollingDateIntervalInput>;
|
|
51360
|
+
};
|
|
51361
|
+
export declare type GrowthUnifiedProfileSiteProfileResultOnboardingHubInsightsPerOnboardingArgs = {
|
|
51362
|
+
onboardingIds: Array<Scalars['ID']['input']>;
|
|
51363
|
+
rollingIntervals: Array<GrowthUnifiedProfileRollingDateIntervalInput>;
|
|
51364
|
+
};
|
|
50535
51365
|
export declare enum GrowthUnifiedProfileTeamType {
|
|
50536
51366
|
CustomerService = "CUSTOMER_SERVICE",
|
|
50537
51367
|
DataScience = "DATA_SCIENCE",
|
|
@@ -50590,8 +51420,10 @@ export declare enum GrowthUnifiedProfileTwcCreatedFrom {
|
|
|
50590
51420
|
SignUp = "SIGN_UP"
|
|
50591
51421
|
}
|
|
50592
51422
|
export declare enum GrowthUnifiedProfileTwcEdition {
|
|
51423
|
+
Enterprise = "ENTERPRISE",
|
|
50593
51424
|
Free = "FREE",
|
|
50594
|
-
Premium = "PREMIUM"
|
|
51425
|
+
Premium = "PREMIUM",
|
|
51426
|
+
Standard = "STANDARD"
|
|
50595
51427
|
}
|
|
50596
51428
|
export declare type GrowthUnifiedProfileTwcOnboardingContext = {
|
|
50597
51429
|
__typename?: 'GrowthUnifiedProfileTwcOnboardingContext';
|
|
@@ -50653,6 +51485,11 @@ export declare type GrowthUnifiedProfileUtm = {
|
|
|
50653
51485
|
keyword?: Maybe<Scalars['String']['output']>;
|
|
50654
51486
|
source?: Maybe<Scalars['String']['output']>;
|
|
50655
51487
|
};
|
|
51488
|
+
export declare type GrowthUnifiedProfileViewSeries = {
|
|
51489
|
+
__typename?: 'GrowthUnifiedProfileViewSeries';
|
|
51490
|
+
date?: Maybe<Scalars['String']['output']>;
|
|
51491
|
+
value?: Maybe<Scalars['Int']['output']>;
|
|
51492
|
+
};
|
|
50656
51493
|
export declare type HamsAccountDetails = CommerceAccountDetails & {
|
|
50657
51494
|
__typename?: 'HamsAccountDetails';
|
|
50658
51495
|
invoiceGroup?: Maybe<HamsInvoiceGroup>;
|
|
@@ -51033,6 +51870,7 @@ export declare type HelpCenterHomePageLayout = {
|
|
|
51033
51870
|
};
|
|
51034
51871
|
export declare type HelpCenterHomePageLayoutInput = {
|
|
51035
51872
|
layoutAdf?: InputMaybe<Scalars['String']['input']>;
|
|
51873
|
+
metadata?: InputMaybe<Scalars['String']['input']>;
|
|
51036
51874
|
};
|
|
51037
51875
|
export declare type HelpCenterHomePageTitle = {
|
|
51038
51876
|
__typename?: 'HelpCenterHomePageTitle';
|
|
@@ -51200,9 +52038,11 @@ export declare type HelpCenterPageLayout = {
|
|
|
51200
52038
|
__typename?: 'HelpCenterPageLayout';
|
|
51201
52039
|
layoutAdf?: Maybe<HelpCenterLayoutAdf>;
|
|
51202
52040
|
layoutAri: Scalars['ID']['output'];
|
|
52041
|
+
metadata?: Maybe<Scalars['String']['output']>;
|
|
51203
52042
|
};
|
|
51204
52043
|
export declare type HelpCenterPageLayoutInput = {
|
|
51205
52044
|
layoutAdf?: InputMaybe<Scalars['String']['input']>;
|
|
52045
|
+
metadata?: InputMaybe<Scalars['String']['input']>;
|
|
51206
52046
|
};
|
|
51207
52047
|
export declare type HelpCenterPageName = {
|
|
51208
52048
|
__typename?: 'HelpCenterPageName';
|
|
@@ -52610,6 +53450,7 @@ export declare type HelpObjectStoreSuccessfullyCreatedEntityMappingDetail = {
|
|
|
52610
53450
|
};
|
|
52611
53451
|
export declare type HelpObjectStoreSupportSiteArticleSearchInput = {
|
|
52612
53452
|
articleIds?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
53453
|
+
contentTypes?: InputMaybe<Array<HelpObjectStoreArticleContentType>>;
|
|
52613
53454
|
expand?: InputMaybe<Array<HelpObjectStoreArticleSearchExpandType>>;
|
|
52614
53455
|
orderBy?: InputMaybe<Scalars['String']['input']>;
|
|
52615
53456
|
parentId?: InputMaybe<Scalars['Long']['input']>;
|
|
@@ -52631,14 +53472,14 @@ export declare type HelpObjectStoreSupportSiteArticleSearchResult = {
|
|
|
52631
53472
|
};
|
|
52632
53473
|
export declare type HelpObjectStoreSupportSiteArticleSearchResultConnection = {
|
|
52633
53474
|
__typename?: 'HelpObjectStoreSupportSiteArticleSearchResultConnection';
|
|
52634
|
-
edges?: Maybe<Array<
|
|
52635
|
-
nodes?: Maybe<Array<
|
|
53475
|
+
edges?: Maybe<Array<HelpObjectStoreSupportSiteArticleSearchResultEdge>>;
|
|
53476
|
+
nodes?: Maybe<Array<HelpObjectStoreSupportSiteArticleSearchResponse>>;
|
|
52636
53477
|
pageInfo: PageInfo;
|
|
52637
53478
|
};
|
|
52638
53479
|
export declare type HelpObjectStoreSupportSiteArticleSearchResultEdge = {
|
|
52639
53480
|
__typename?: 'HelpObjectStoreSupportSiteArticleSearchResultEdge';
|
|
52640
53481
|
cursor: Scalars['String']['output'];
|
|
52641
|
-
node
|
|
53482
|
+
node: HelpObjectStoreSupportSiteArticleSearchResponse;
|
|
52642
53483
|
};
|
|
52643
53484
|
export declare type History = {
|
|
52644
53485
|
__typename?: 'History';
|
|
@@ -53177,6 +54018,7 @@ export declare type InstallationContextWithLogAccess = {
|
|
|
53177
54018
|
__typename?: 'InstallationContextWithLogAccess';
|
|
53178
54019
|
installationContext: Scalars['ID']['output'];
|
|
53179
54020
|
tenantContext?: Maybe<TenantContext>;
|
|
54021
|
+
tenantContexts?: Maybe<DevConsoleTenantContext>;
|
|
53180
54022
|
};
|
|
53181
54023
|
export declare type InstallationSummary = {
|
|
53182
54024
|
__typename?: 'InstallationSummary';
|
|
@@ -53764,6 +54606,10 @@ export declare type JiraAddRelatedWorkToVersionPayload = Payload & {
|
|
|
53764
54606
|
relatedWorkV2Edge?: Maybe<JiraVersionRelatedWorkV2Edge>;
|
|
53765
54607
|
success: Scalars['Boolean']['output'];
|
|
53766
54608
|
};
|
|
54609
|
+
export declare type JiraAddTimelineIssueLinkInput = {
|
|
54610
|
+
inwardItemId: Scalars['ID']['input'];
|
|
54611
|
+
outwardItemId: Scalars['ID']['input'];
|
|
54612
|
+
};
|
|
53767
54613
|
export declare enum JiraAddValueFieldOperations {
|
|
53768
54614
|
Add = "ADD"
|
|
53769
54615
|
}
|
|
@@ -53882,6 +54728,7 @@ export declare type JiraAffectedServicesFieldSelectedValuesArgs = {
|
|
|
53882
54728
|
};
|
|
53883
54729
|
export declare type JiraAffectedServicesFieldInput = {
|
|
53884
54730
|
affectedServices: Array<JiraAffectedServicesInput>;
|
|
54731
|
+
bulkEditMultiSelectFieldOption?: InputMaybe<JiraBulkEditMultiSelectFieldOptions>;
|
|
53885
54732
|
fieldId: Scalars['ID']['input'];
|
|
53886
54733
|
};
|
|
53887
54734
|
export declare type JiraAffectedServicesFieldOperationInput = {
|
|
@@ -53939,6 +54786,9 @@ export declare type JiraAlignAggProject = HasMercuryProjectFields & Node & {
|
|
|
53939
54786
|
mercuryTargetDateStart?: Maybe<Scalars['DateTime']['output']>;
|
|
53940
54787
|
mercuryTargetDateType?: Maybe<MercuryProjectTargetDateType>;
|
|
53941
54788
|
};
|
|
54789
|
+
export declare enum JiraAllowedFieldFormatConfig {
|
|
54790
|
+
NumberFieldFormatConfig = "NUMBER_FIELD_FORMAT_CONFIG"
|
|
54791
|
+
}
|
|
53942
54792
|
export declare type JiraAnnouncementBanner = Node & {
|
|
53943
54793
|
__typename?: 'JiraAnnouncementBanner';
|
|
53944
54794
|
id: Scalars['ID']['output'];
|
|
@@ -55600,7 +56450,12 @@ export declare type JiraChildIssuesExceedingLimit = {
|
|
|
55600
56450
|
};
|
|
55601
56451
|
export declare type JiraChildIssuesWithinLimit = {
|
|
55602
56452
|
__typename?: 'JiraChildIssuesWithinLimit';
|
|
56453
|
+
donePercentage?: Maybe<Scalars['Int']['output']>;
|
|
56454
|
+
doneStatusCount?: Maybe<Scalars['Int']['output']>;
|
|
56455
|
+
inProgressStatusCount?: Maybe<Scalars['Int']['output']>;
|
|
55603
56456
|
issues?: Maybe<JiraIssueConnection>;
|
|
56457
|
+
todoStatusCount?: Maybe<Scalars['Int']['output']>;
|
|
56458
|
+
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
55604
56459
|
};
|
|
55605
56460
|
export declare type JiraChildIssuesWithinLimitIssuesArgs = {
|
|
55606
56461
|
activeIssuesOnly?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -55657,6 +56512,10 @@ export declare enum JiraClassificationLevelType {
|
|
|
55657
56512
|
System = "SYSTEM",
|
|
55658
56513
|
User = "USER"
|
|
55659
56514
|
}
|
|
56515
|
+
export declare type JiraClearableDateFieldInput = {
|
|
56516
|
+
date?: InputMaybe<JiraDateInput>;
|
|
56517
|
+
fieldId: Scalars['ID']['input'];
|
|
56518
|
+
};
|
|
55660
56519
|
export declare type JiraClearableNumberFieldInput = {
|
|
55661
56520
|
fieldId: Scalars['ID']['input'];
|
|
55662
56521
|
value?: InputMaybe<Scalars['Float']['input']>;
|
|
@@ -57045,6 +57904,7 @@ export declare type JiraDataClassificationField = JiraIssueField & JiraIssueFiel
|
|
|
57045
57904
|
isEditableInIssueView?: Maybe<Scalars['Boolean']['output']>;
|
|
57046
57905
|
issue?: Maybe<JiraIssue>;
|
|
57047
57906
|
name: Scalars['String']['output'];
|
|
57907
|
+
organizationClassificationLevel?: Maybe<JiraClassificationLevel>;
|
|
57048
57908
|
type: Scalars['String']['output'];
|
|
57049
57909
|
userFieldConfig?: Maybe<JiraUserFieldConfig>;
|
|
57050
57910
|
};
|
|
@@ -57278,6 +58138,11 @@ export declare type JiraDeleteNavigationItemPayload = Payload & {
|
|
|
57278
58138
|
navigationItem?: Maybe<Scalars['ID']['output']>;
|
|
57279
58139
|
success: Scalars['Boolean']['output'];
|
|
57280
58140
|
};
|
|
58141
|
+
export declare type JiraDeleteOnboardingConfigPayload = Payload & {
|
|
58142
|
+
__typename?: 'JiraDeleteOnboardingConfigPayload';
|
|
58143
|
+
errors?: Maybe<Array<MutationError>>;
|
|
58144
|
+
success: Scalars['Boolean']['output'];
|
|
58145
|
+
};
|
|
57281
58146
|
export declare type JiraDeleteProjectNotificationPreferencesInput = {
|
|
57282
58147
|
projectId: Scalars['ID']['input'];
|
|
57283
58148
|
};
|
|
@@ -57766,7 +58631,7 @@ export declare type JiraEditCustomFieldPayload = Payload & {
|
|
|
57766
58631
|
};
|
|
57767
58632
|
export declare type JiraEditFieldSchemeInput = {
|
|
57768
58633
|
description?: InputMaybe<Scalars['String']['input']>;
|
|
57769
|
-
name
|
|
58634
|
+
name: Scalars['String']['input'];
|
|
57770
58635
|
schemeId: Scalars['ID']['input'];
|
|
57771
58636
|
};
|
|
57772
58637
|
export declare enum JiraEmailMimeType {
|
|
@@ -58757,6 +59622,7 @@ export declare type JiraForgeWorkItemPanel = {
|
|
|
58757
59622
|
id: Scalars['ID']['output'];
|
|
58758
59623
|
instances: Array<JiraForgeWorkItemPanelInstance>;
|
|
58759
59624
|
moduleId: Scalars['ID']['output'];
|
|
59625
|
+
pinnedTo: JiraForgeWorkItemPinnableEntityType;
|
|
58760
59626
|
};
|
|
58761
59627
|
export declare type JiraForgeWorkItemPanelInstance = {
|
|
58762
59628
|
__typename?: 'JiraForgeWorkItemPanelInstance';
|
|
@@ -59103,6 +59969,7 @@ export declare enum JiraGroupUsageType {
|
|
|
59103
59969
|
export declare type JiraGroupedListView = JiraIssueSearchViewMetadata & JiraSpreadsheetView & JiraView & Node & {
|
|
59104
59970
|
__typename?: 'JiraGroupedListView';
|
|
59105
59971
|
canPublishViewConfig?: Maybe<Scalars['Boolean']['output']>;
|
|
59972
|
+
conditionalFormattingRules?: Maybe<JiraFormattingRuleConnection>;
|
|
59106
59973
|
error?: Maybe<QueryError>;
|
|
59107
59974
|
fieldSets?: Maybe<JiraIssueSearchFieldSetConnection>;
|
|
59108
59975
|
filterId?: Maybe<Scalars['String']['output']>;
|
|
@@ -59118,6 +59985,10 @@ export declare type JiraGroupedListView = JiraIssueSearchViewMetadata & JiraSpre
|
|
|
59118
59985
|
viewId?: Maybe<Scalars['String']['output']>;
|
|
59119
59986
|
viewSettings?: Maybe<JiraIssueSearchViewConfigSettings>;
|
|
59120
59987
|
};
|
|
59988
|
+
export declare type JiraGroupedListViewConditionalFormattingRulesArgs = {
|
|
59989
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
59990
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
59991
|
+
};
|
|
59121
59992
|
export declare type JiraGroupedListViewFieldSetsArgs = {
|
|
59122
59993
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
59123
59994
|
before?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -59258,6 +60129,7 @@ export declare type JiraIssue = HasMercuryProjectFields & JiraScenarioIssueLike
|
|
|
59258
60129
|
dueDateField?: Maybe<JiraDatePickerField>;
|
|
59259
60130
|
endDateViewField?: Maybe<JiraIssueField>;
|
|
59260
60131
|
errorRetrievingData?: Maybe<Scalars['Boolean']['output']>;
|
|
60132
|
+
exceededChildIssueLimit?: Maybe<Scalars['Boolean']['output']>;
|
|
59261
60133
|
fieldByIdOrAlias?: Maybe<JiraIssueField>;
|
|
59262
60134
|
fieldSets?: Maybe<JiraIssueFieldSetConnection>;
|
|
59263
60135
|
fieldSetsById?: Maybe<JiraIssueFieldSetConnection>;
|
|
@@ -59266,6 +60138,7 @@ export declare type JiraIssue = HasMercuryProjectFields & JiraScenarioIssueLike
|
|
|
59266
60138
|
fieldsById?: Maybe<JiraIssueFieldConnection>;
|
|
59267
60139
|
fieldsByIdOrAlias?: Maybe<Array<Maybe<JiraIssueField>>>;
|
|
59268
60140
|
groupsByFieldId?: Maybe<JiraSpreadsheetGroupConnection>;
|
|
60141
|
+
hasChildIssues?: Maybe<Scalars['Boolean']['output']>;
|
|
59269
60142
|
hasChildren?: Maybe<Scalars['Boolean']['output']>;
|
|
59270
60143
|
hasCustomisedContentPanels?: Maybe<Scalars['Boolean']['output']>;
|
|
59271
60144
|
hasProjectPermission?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -59859,6 +60732,7 @@ export declare type JiraIssueExportInput = {
|
|
|
59859
60732
|
maxResults?: InputMaybe<Scalars['Int']['input']>;
|
|
59860
60733
|
modified?: InputMaybe<Scalars['Boolean']['input']>;
|
|
59861
60734
|
pagerStart?: InputMaybe<Scalars['Int']['input']>;
|
|
60735
|
+
scope?: InputMaybe<JiraIssueSearchScope>;
|
|
59862
60736
|
};
|
|
59863
60737
|
export declare type JiraIssueExportTask = {
|
|
59864
60738
|
__typename?: 'JiraIssueExportTask';
|
|
@@ -59894,8 +60768,10 @@ export declare type JiraIssueExportTaskTerminated = {
|
|
|
59894
60768
|
export declare enum JiraIssueExportType {
|
|
59895
60769
|
CsvAllFields = "CSV_ALL_FIELDS",
|
|
59896
60770
|
CsvCurrentFields = "CSV_CURRENT_FIELDS",
|
|
60771
|
+
CsvFilterDefaultFields = "CSV_FILTER_DEFAULT_FIELDS",
|
|
59897
60772
|
CsvWithBomAllFields = "CSV_WITH_BOM_ALL_FIELDS",
|
|
59898
|
-
CsvWithBomCurrentFields = "CSV_WITH_BOM_CURRENT_FIELDS"
|
|
60773
|
+
CsvWithBomCurrentFields = "CSV_WITH_BOM_CURRENT_FIELDS",
|
|
60774
|
+
CsvWithBomFilterDefaultFields = "CSV_WITH_BOM_FILTER_DEFAULT_FIELDS"
|
|
59899
60775
|
}
|
|
59900
60776
|
export declare type JiraIssueField = {
|
|
59901
60777
|
aliasFieldId?: Maybe<Scalars['ID']['output']>;
|
|
@@ -59911,6 +60787,7 @@ export declare type JiraIssueField = {
|
|
|
59911
60787
|
};
|
|
59912
60788
|
export declare type JiraIssueFieldConfig = Node & {
|
|
59913
60789
|
__typename?: 'JiraIssueFieldConfig';
|
|
60790
|
+
allowedFormatConfigs?: Maybe<Array<JiraAllowedFieldFormatConfig>>;
|
|
59914
60791
|
associatedContexts?: Maybe<JiraContextConnection>;
|
|
59915
60792
|
associatedContextsCount?: Maybe<Scalars['Int']['output']>;
|
|
59916
60793
|
associatedContextsV2?: Maybe<JiraContextConnection>;
|
|
@@ -59993,6 +60870,7 @@ export declare type JiraIssueFieldConfigAssociatedScreensV2Args = {
|
|
|
59993
60870
|
before?: InputMaybe<Scalars['String']['input']>;
|
|
59994
60871
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
59995
60872
|
last?: InputMaybe<Scalars['Int']['input']>;
|
|
60873
|
+
query?: InputMaybe<Scalars['String']['input']>;
|
|
59996
60874
|
};
|
|
59997
60875
|
export declare type JiraIssueFieldConfigAvailableFieldConfigSchemesArgs = {
|
|
59998
60876
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -60738,6 +61616,7 @@ export declare type JiraIssueSearchSettings = {
|
|
|
60738
61616
|
groupBy?: InputMaybe<Scalars['String']['input']>;
|
|
60739
61617
|
hideDone?: InputMaybe<Scalars['Boolean']['input']>;
|
|
60740
61618
|
hierarchyEnabled?: InputMaybe<Scalars['Boolean']['input']>;
|
|
61619
|
+
jql?: InputMaybe<Scalars['String']['input']>;
|
|
60741
61620
|
};
|
|
60742
61621
|
export declare type JiraIssueSearchStaticViewInput = {
|
|
60743
61622
|
isGroupingEnabled?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -61126,6 +62005,7 @@ export declare enum JiraIssueViewUserPreferenceLayoutType {
|
|
|
61126
62005
|
Custom = "CUSTOM",
|
|
61127
62006
|
Discussion = "DISCUSSION",
|
|
61128
62007
|
Standard = "STANDARD",
|
|
62008
|
+
Tab = "TAB",
|
|
61129
62009
|
Wide = "WIDE"
|
|
61130
62010
|
}
|
|
61131
62011
|
export declare type JiraIssueViewUserPreferredLayout = {
|
|
@@ -62134,6 +63014,7 @@ export declare type JiraLinkedIssuesInput = {
|
|
|
62134
63014
|
export declare type JiraListView = JiraIssueSearchViewMetadata & JiraSpreadsheetView & JiraView & Node & {
|
|
62135
63015
|
__typename?: 'JiraListView';
|
|
62136
63016
|
canPublishViewConfig?: Maybe<Scalars['Boolean']['output']>;
|
|
63017
|
+
conditionalFormattingRules?: Maybe<JiraFormattingRuleConnection>;
|
|
62137
63018
|
error?: Maybe<QueryError>;
|
|
62138
63019
|
fieldSets?: Maybe<JiraIssueSearchFieldSetConnection>;
|
|
62139
63020
|
filterId?: Maybe<Scalars['String']['output']>;
|
|
@@ -62149,6 +63030,10 @@ export declare type JiraListView = JiraIssueSearchViewMetadata & JiraSpreadsheet
|
|
|
62149
63030
|
viewId?: Maybe<Scalars['String']['output']>;
|
|
62150
63031
|
viewSettings?: Maybe<JiraIssueSearchViewConfigSettings>;
|
|
62151
63032
|
};
|
|
63033
|
+
export declare type JiraListViewConditionalFormattingRulesArgs = {
|
|
63034
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
63035
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
63036
|
+
};
|
|
62152
63037
|
export declare type JiraListViewFieldSetsArgs = {
|
|
62153
63038
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
62154
63039
|
before?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -62565,6 +63450,7 @@ export declare type JiraMutation = {
|
|
|
62565
63450
|
addPostIncidentReviewLink?: Maybe<JiraAddPostIncidentReviewLinkMutationPayload>;
|
|
62566
63451
|
addRelatedWorkToVersion?: Maybe<JiraAddRelatedWorkToVersionPayload>;
|
|
62567
63452
|
answerApprovalDecision?: Maybe<JiraAnswerApprovalDecisionPayload>;
|
|
63453
|
+
approveProjectAccessRequest?: Maybe<JiraProjectAccessRequestMutationPayload>;
|
|
62568
63454
|
archiveJiraJourneyConfiguration?: Maybe<JiraUpdateJourneyConfigurationPayload>;
|
|
62569
63455
|
assignRelatedWorkToUser?: Maybe<JiraAssignRelatedWorkPayload>;
|
|
62570
63456
|
attributeUnsplashImage?: Maybe<JiraUnsplashAttributionPayload>;
|
|
@@ -62589,6 +63475,7 @@ export declare type JiraMutation = {
|
|
|
62589
63475
|
createJwmFilter?: Maybe<JiraWorkManagementCreateFilterPayload>;
|
|
62590
63476
|
createJwmIssue?: Maybe<JiraWorkManagementCreateIssuePayload>;
|
|
62591
63477
|
createJwmOverview?: Maybe<JiraWorkManagementGiraCreateOverviewPayload>;
|
|
63478
|
+
createOnboardingConfig?: Maybe<JiraOnboardingConfigPayload>;
|
|
62592
63479
|
createProjectCleanupRecommendations?: Maybe<JiraCreateProjectCleanupRecommendationsPayload>;
|
|
62593
63480
|
createProjectShortcut?: Maybe<JiraProjectShortcutPayload>;
|
|
62594
63481
|
createReleaseNoteConfluencePage?: Maybe<JiraCreateReleaseNoteConfluencePagePayload>;
|
|
@@ -62605,8 +63492,10 @@ export declare type JiraMutation = {
|
|
|
62605
63492
|
deleteJiraVersionWithNoIssues?: Maybe<JiraUpdateVersionPayload>;
|
|
62606
63493
|
deleteJwmOverview?: Maybe<JiraWorkManagementGiraDeleteOverviewPayload>;
|
|
62607
63494
|
deleteNavigationItem?: Maybe<JiraDeleteNavigationItemPayload>;
|
|
63495
|
+
deleteOnboardingConfig?: Maybe<JiraDeleteOnboardingConfigPayload>;
|
|
62608
63496
|
deleteProjectNotificationPreferences?: Maybe<JiraDeleteProjectNotificationPreferencesPayload>;
|
|
62609
63497
|
deleteProjectShortcut?: Maybe<JiraProjectShortcutPayload>;
|
|
63498
|
+
denyProjectAccessRequest?: Maybe<JiraProjectAccessRequestMutationPayload>;
|
|
62610
63499
|
devOps?: Maybe<JiraDevOpsMutation>;
|
|
62611
63500
|
disableJiraJourneyConfiguration?: Maybe<JiraUpdateJourneyConfigurationPayload>;
|
|
62612
63501
|
discardUnpublishedChangesJiraJourneyConfiguration?: Maybe<JiraUpdateJourneyConfigurationPayload>;
|
|
@@ -62649,7 +63538,6 @@ export declare type JiraMutation = {
|
|
|
62649
63538
|
removePostIncidentReviewLink?: Maybe<JiraRemovePostIncidentReviewLinkMutationPayload>;
|
|
62650
63539
|
removeRelatedWorkFromVersion?: Maybe<JiraRemoveRelatedWorkFromVersionPayload>;
|
|
62651
63540
|
renameNavigationItem?: Maybe<JiraRenameNavigationItemPayload>;
|
|
62652
|
-
replaceIssueSearchViewFieldSets?: Maybe<JiraIssueSearchViewPayload>;
|
|
62653
63541
|
replaceSpreadsheetViewFieldSets?: Maybe<JiraSpreadsheetViewPayload>;
|
|
62654
63542
|
requestCancelIssueExportTask?: Maybe<JiraIssueExportTaskCancellationResult>;
|
|
62655
63543
|
restoreJiraJourneyConfiguration?: Maybe<JiraUpdateJourneyConfigurationPayload>;
|
|
@@ -62659,6 +63547,7 @@ export declare type JiraMutation = {
|
|
|
62659
63547
|
scheduleBulkExecuteProjectCleanupRecommendations?: Maybe<JiraBulkCleanupProjectsPayload>;
|
|
62660
63548
|
scheduleCalendarIssue?: Maybe<JiraScheduleCalendarIssuePayload>;
|
|
62661
63549
|
scheduleCalendarIssueV2?: Maybe<JiraScheduleCalendarIssueWithScenarioPayload>;
|
|
63550
|
+
scheduleTimelineItem?: Maybe<JiraScheduleTimelineItemPayload>;
|
|
62662
63551
|
setApplicationProperties?: Maybe<JiraSetApplicationPropertiesPayload>;
|
|
62663
63552
|
setDefaultNavigationItem?: Maybe<JiraSetDefaultNavigationItemPayload>;
|
|
62664
63553
|
setEntityIsFavourite?: Maybe<JiraSetIsFavouritePayload>;
|
|
@@ -62723,6 +63612,7 @@ export declare type JiraMutation = {
|
|
|
62723
63612
|
updateMultipleSelectUserPickerField?: Maybe<JiraMultipleSelectUserPickerFieldPayload>;
|
|
62724
63613
|
updateMultipleVersionPickerField?: Maybe<JiraMultipleVersionPickerFieldPayload>;
|
|
62725
63614
|
updateNumberField?: Maybe<JiraNumberFieldPayload>;
|
|
63615
|
+
updateOnboardingConfig?: Maybe<JiraOnboardingConfigPayload>;
|
|
62726
63616
|
updateOrganizationField?: Maybe<JiraCustomerServiceOrganizationFieldPayload>;
|
|
62727
63617
|
updateOriginalTimeEstimateField?: Maybe<JiraOriginalTimeEstimateFieldPayload>;
|
|
62728
63618
|
updateParentField?: Maybe<JiraParentFieldPayload>;
|
|
@@ -62795,6 +63685,9 @@ export declare type JiraMutationAnswerApprovalDecisionArgs = {
|
|
|
62795
63685
|
cloudId: Scalars['ID']['input'];
|
|
62796
63686
|
input: JiraAnswerApprovalDecisionInput;
|
|
62797
63687
|
};
|
|
63688
|
+
export declare type JiraMutationApproveProjectAccessRequestArgs = {
|
|
63689
|
+
input: JiraProjectApproveAccessRequestInput;
|
|
63690
|
+
};
|
|
62798
63691
|
export declare type JiraMutationArchiveJiraJourneyConfigurationArgs = {
|
|
62799
63692
|
cloudId: Scalars['ID']['input'];
|
|
62800
63693
|
input: JiraArchiveJourneyConfigurationInput;
|
|
@@ -62881,6 +63774,10 @@ export declare type JiraMutationCreateJwmOverviewArgs = {
|
|
|
62881
63774
|
cloudId: Scalars['ID']['input'];
|
|
62882
63775
|
input: JiraWorkManagementCreateOverviewInput;
|
|
62883
63776
|
};
|
|
63777
|
+
export declare type JiraMutationCreateOnboardingConfigArgs = {
|
|
63778
|
+
cloudId: Scalars['ID']['input'];
|
|
63779
|
+
input: JiraOnboardingConfigInput;
|
|
63780
|
+
};
|
|
62884
63781
|
export declare type JiraMutationCreateProjectCleanupRecommendationsArgs = {
|
|
62885
63782
|
cloudId: Scalars['ID']['input'];
|
|
62886
63783
|
};
|
|
@@ -62933,6 +63830,9 @@ export declare type JiraMutationDeleteJwmOverviewArgs = {
|
|
|
62933
63830
|
export declare type JiraMutationDeleteNavigationItemArgs = {
|
|
62934
63831
|
input: JiraDeleteNavigationItemInput;
|
|
62935
63832
|
};
|
|
63833
|
+
export declare type JiraMutationDeleteOnboardingConfigArgs = {
|
|
63834
|
+
id: Scalars['ID']['input'];
|
|
63835
|
+
};
|
|
62936
63836
|
export declare type JiraMutationDeleteProjectNotificationPreferencesArgs = {
|
|
62937
63837
|
cloudId: Scalars['ID']['input'];
|
|
62938
63838
|
input: JiraDeleteProjectNotificationPreferencesInput;
|
|
@@ -62940,6 +63840,9 @@ export declare type JiraMutationDeleteProjectNotificationPreferencesArgs = {
|
|
|
62940
63840
|
export declare type JiraMutationDeleteProjectShortcutArgs = {
|
|
62941
63841
|
input: JiraDeleteShortcutInput;
|
|
62942
63842
|
};
|
|
63843
|
+
export declare type JiraMutationDenyProjectAccessRequestArgs = {
|
|
63844
|
+
input: JiraProjectDenyAccessRequestInput;
|
|
63845
|
+
};
|
|
62943
63846
|
export declare type JiraMutationDisableJiraJourneyConfigurationArgs = {
|
|
62944
63847
|
cloudId: Scalars['ID']['input'];
|
|
62945
63848
|
input: JiraDisableJourneyConfigurationInput;
|
|
@@ -63071,11 +63974,6 @@ export declare type JiraMutationRemoveRelatedWorkFromVersionArgs = {
|
|
|
63071
63974
|
export declare type JiraMutationRenameNavigationItemArgs = {
|
|
63072
63975
|
input: JiraRenameNavigationItemInput;
|
|
63073
63976
|
};
|
|
63074
|
-
export declare type JiraMutationReplaceIssueSearchViewFieldSetsArgs = {
|
|
63075
|
-
fieldSetsInput?: InputMaybe<JiraFieldSetsMutationInput>;
|
|
63076
|
-
id: Scalars['ID']['input'];
|
|
63077
|
-
input?: InputMaybe<JiraReplaceIssueSearchViewFieldSetsInput>;
|
|
63078
|
-
};
|
|
63079
63977
|
export declare type JiraMutationReplaceSpreadsheetViewFieldSetsArgs = {
|
|
63080
63978
|
fieldSetsInput?: InputMaybe<JiraFieldSetsMutationInput>;
|
|
63081
63979
|
id: Scalars['ID']['input'];
|
|
@@ -63115,6 +64013,10 @@ export declare type JiraMutationScheduleCalendarIssueV2Args = {
|
|
|
63115
64013
|
scope?: InputMaybe<JiraViewScopeInput>;
|
|
63116
64014
|
startDateInput?: InputMaybe<Scalars['DateTime']['input']>;
|
|
63117
64015
|
};
|
|
64016
|
+
export declare type JiraMutationScheduleTimelineItemArgs = {
|
|
64017
|
+
cloudId: Scalars['ID']['input'];
|
|
64018
|
+
input: JiraScheduleTimelineItemInput;
|
|
64019
|
+
};
|
|
63118
64020
|
export declare type JiraMutationSetApplicationPropertiesArgs = {
|
|
63119
64021
|
cloudId: Scalars['ID']['input'];
|
|
63120
64022
|
input: Array<JiraSetApplicationPropertyInput>;
|
|
@@ -63325,6 +64227,10 @@ export declare type JiraMutationUpdateMultipleVersionPickerFieldArgs = {
|
|
|
63325
64227
|
export declare type JiraMutationUpdateNumberFieldArgs = {
|
|
63326
64228
|
input: JiraUpdateNumberFieldInput;
|
|
63327
64229
|
};
|
|
64230
|
+
export declare type JiraMutationUpdateOnboardingConfigArgs = {
|
|
64231
|
+
id: Scalars['ID']['input'];
|
|
64232
|
+
input: JiraOnboardingConfigInput;
|
|
64233
|
+
};
|
|
63328
64234
|
export declare type JiraMutationUpdateOrganizationFieldArgs = {
|
|
63329
64235
|
input: JiraCustomerServiceUpdateOrganizationFieldInput;
|
|
63330
64236
|
};
|
|
@@ -63904,6 +64810,101 @@ export declare type JiraOAuthDevOpsProvider = JiraDevOpsProvider & {
|
|
|
63904
64810
|
};
|
|
63905
64811
|
export declare type JiraOnIssueCreatedForUserResponseType = JiraIssueAndProject | JiraProjectConnection;
|
|
63906
64812
|
export declare type JiraOnSuggestedChildIssueResult = JiraSuggestedChildIssueError | JiraSuggestedChildIssueStatus | JiraSuggestedIssue;
|
|
64813
|
+
export declare type JiraOnboardingConfig = {
|
|
64814
|
+
__typename?: 'JiraOnboardingConfig';
|
|
64815
|
+
canDismiss?: Maybe<Scalars['Boolean']['output']>;
|
|
64816
|
+
destination?: Maybe<Scalars['URL']['output']>;
|
|
64817
|
+
isDisabled?: Maybe<Scalars['Boolean']['output']>;
|
|
64818
|
+
logo?: Maybe<JiraOnboardingMedia>;
|
|
64819
|
+
modals?: Maybe<Array<Maybe<JiraOnboardingModal>>>;
|
|
64820
|
+
name: Scalars['String']['output'];
|
|
64821
|
+
onboardingConfigAri: Scalars['ID']['output'];
|
|
64822
|
+
targetType: JiraOnboardingTargetType;
|
|
64823
|
+
targetValues: Array<Scalars['String']['output']>;
|
|
64824
|
+
updatedAt?: Maybe<Scalars['DateTime']['output']>;
|
|
64825
|
+
};
|
|
64826
|
+
export declare type JiraOnboardingConfigConnection = {
|
|
64827
|
+
__typename?: 'JiraOnboardingConfigConnection';
|
|
64828
|
+
edges?: Maybe<Array<JiraOnboardingConfigEdge>>;
|
|
64829
|
+
errors?: Maybe<Array<QueryError>>;
|
|
64830
|
+
pageInfo: PageInfo;
|
|
64831
|
+
};
|
|
64832
|
+
export declare type JiraOnboardingConfigEdge = {
|
|
64833
|
+
__typename?: 'JiraOnboardingConfigEdge';
|
|
64834
|
+
cursor: Scalars['String']['output'];
|
|
64835
|
+
node?: Maybe<JiraOnboardingConfig>;
|
|
64836
|
+
};
|
|
64837
|
+
export declare type JiraOnboardingConfigInput = {
|
|
64838
|
+
canDismiss?: InputMaybe<Scalars['Boolean']['input']>;
|
|
64839
|
+
destination?: InputMaybe<Scalars['URL']['input']>;
|
|
64840
|
+
isDisabled?: InputMaybe<Scalars['Boolean']['input']>;
|
|
64841
|
+
logo?: InputMaybe<JiraOnboardingMediaInput>;
|
|
64842
|
+
modals?: InputMaybe<Array<InputMaybe<JiraOnboardingModalInput>>>;
|
|
64843
|
+
name: Scalars['String']['input'];
|
|
64844
|
+
targetType: JiraOnboardingTargetType;
|
|
64845
|
+
targetValues: Array<Scalars['String']['input']>;
|
|
64846
|
+
};
|
|
64847
|
+
export declare type JiraOnboardingConfigPayload = Payload & {
|
|
64848
|
+
__typename?: 'JiraOnboardingConfigPayload';
|
|
64849
|
+
errors?: Maybe<Array<MutationError>>;
|
|
64850
|
+
onboardingConfig?: Maybe<JiraOnboardingConfig>;
|
|
64851
|
+
success: Scalars['Boolean']['output'];
|
|
64852
|
+
};
|
|
64853
|
+
export declare type JiraOnboardingLink = {
|
|
64854
|
+
__typename?: 'JiraOnboardingLink';
|
|
64855
|
+
target?: Maybe<Scalars['String']['output']>;
|
|
64856
|
+
text: Scalars['String']['output'];
|
|
64857
|
+
url: Scalars['URL']['output'];
|
|
64858
|
+
};
|
|
64859
|
+
export declare type JiraOnboardingLinkInput = {
|
|
64860
|
+
target?: InputMaybe<Scalars['String']['input']>;
|
|
64861
|
+
text: Scalars['String']['input'];
|
|
64862
|
+
url: Scalars['URL']['input'];
|
|
64863
|
+
};
|
|
64864
|
+
export declare type JiraOnboardingMedia = {
|
|
64865
|
+
__typename?: 'JiraOnboardingMedia';
|
|
64866
|
+
altText?: Maybe<Scalars['String']['output']>;
|
|
64867
|
+
fileId?: Maybe<Scalars['ID']['output']>;
|
|
64868
|
+
mediaType: JiraOnboardingMediaType;
|
|
64869
|
+
url?: Maybe<Scalars['URL']['output']>;
|
|
64870
|
+
};
|
|
64871
|
+
export declare type JiraOnboardingMediaInput = {
|
|
64872
|
+
altText?: InputMaybe<Scalars['String']['input']>;
|
|
64873
|
+
fileId?: InputMaybe<Scalars['ID']['input']>;
|
|
64874
|
+
mediaType: JiraOnboardingMediaType;
|
|
64875
|
+
url?: InputMaybe<Scalars['URL']['input']>;
|
|
64876
|
+
};
|
|
64877
|
+
export declare enum JiraOnboardingMediaType {
|
|
64878
|
+
Image = "IMAGE",
|
|
64879
|
+
Video = "VIDEO"
|
|
64880
|
+
}
|
|
64881
|
+
export declare type JiraOnboardingModal = {
|
|
64882
|
+
__typename?: 'JiraOnboardingModal';
|
|
64883
|
+
locale?: Maybe<Scalars['String']['output']>;
|
|
64884
|
+
steps?: Maybe<Array<Maybe<JiraOnboardingStep>>>;
|
|
64885
|
+
};
|
|
64886
|
+
export declare type JiraOnboardingModalInput = {
|
|
64887
|
+
locale?: InputMaybe<Scalars['String']['input']>;
|
|
64888
|
+
steps?: InputMaybe<Array<InputMaybe<JiraOnboardingStepInput>>>;
|
|
64889
|
+
};
|
|
64890
|
+
export declare type JiraOnboardingStep = {
|
|
64891
|
+
__typename?: 'JiraOnboardingStep';
|
|
64892
|
+
background?: Maybe<JiraOnboardingMedia>;
|
|
64893
|
+
description: Scalars['String']['output'];
|
|
64894
|
+
links?: Maybe<Array<Maybe<JiraOnboardingLink>>>;
|
|
64895
|
+
media?: Maybe<JiraOnboardingMedia>;
|
|
64896
|
+
title: Scalars['String']['output'];
|
|
64897
|
+
};
|
|
64898
|
+
export declare type JiraOnboardingStepInput = {
|
|
64899
|
+
background?: InputMaybe<JiraOnboardingMediaInput>;
|
|
64900
|
+
description: Scalars['String']['input'];
|
|
64901
|
+
links?: InputMaybe<Array<InputMaybe<JiraOnboardingLinkInput>>>;
|
|
64902
|
+
media?: InputMaybe<JiraOnboardingMediaInput>;
|
|
64903
|
+
title: Scalars['String']['input'];
|
|
64904
|
+
};
|
|
64905
|
+
export declare enum JiraOnboardingTargetType {
|
|
64906
|
+
TeamType = "TEAM_TYPE"
|
|
64907
|
+
}
|
|
63907
64908
|
export declare type JiraOpsgenieTeam = Node & {
|
|
63908
64909
|
__typename?: 'JiraOpsgenieTeam';
|
|
63909
64910
|
id: Scalars['ID']['output'];
|
|
@@ -64026,6 +65027,7 @@ export declare enum JiraOrganizationApprovalLocation {
|
|
|
64026
65027
|
Unknown = "UNKNOWN"
|
|
64027
65028
|
}
|
|
64028
65029
|
export declare type JiraOrganizationFieldInput = {
|
|
65030
|
+
bulkEditMultiSelectFieldOption?: InputMaybe<JiraBulkEditMultiSelectFieldOptions>;
|
|
64029
65031
|
fieldId: Scalars['ID']['input'];
|
|
64030
65032
|
organizations: Array<JiraOrganizationsInput>;
|
|
64031
65033
|
};
|
|
@@ -64210,6 +65212,7 @@ export declare type JiraPeopleFieldUsersArgs = {
|
|
|
64210
65212
|
suggested?: InputMaybe<Scalars['Boolean']['input']>;
|
|
64211
65213
|
};
|
|
64212
65214
|
export declare type JiraPeopleFieldInput = {
|
|
65215
|
+
bulkEditMultiSelectFieldOption?: InputMaybe<JiraBulkEditMultiSelectFieldOptions>;
|
|
64213
65216
|
fieldId: Scalars['ID']['input'];
|
|
64214
65217
|
users: Array<JiraUserInput>;
|
|
64215
65218
|
};
|
|
@@ -65074,6 +66077,35 @@ export declare enum JiraProjectAccessLevelType {
|
|
|
65074
66077
|
Open = "OPEN",
|
|
65075
66078
|
Private = "PRIVATE"
|
|
65076
66079
|
}
|
|
66080
|
+
export declare type JiraProjectAccessRequestConnection = {
|
|
66081
|
+
__typename?: 'JiraProjectAccessRequestConnection';
|
|
66082
|
+
edges?: Maybe<Array<Maybe<JiraProjectAccessRequestDetailsEdge>>>;
|
|
66083
|
+
pageInfo: PageInfo;
|
|
66084
|
+
};
|
|
66085
|
+
export declare type JiraProjectAccessRequestDetails = {
|
|
66086
|
+
__typename?: 'JiraProjectAccessRequestDetails';
|
|
66087
|
+
accessUrl?: Maybe<Scalars['String']['output']>;
|
|
66088
|
+
createdAt: Scalars['Long']['output'];
|
|
66089
|
+
id: Scalars['ID']['output'];
|
|
66090
|
+
note?: Maybe<Scalars['String']['output']>;
|
|
66091
|
+
requester?: Maybe<User>;
|
|
66092
|
+
user?: Maybe<User>;
|
|
66093
|
+
};
|
|
66094
|
+
export declare type JiraProjectAccessRequestDetailsEdge = {
|
|
66095
|
+
__typename?: 'JiraProjectAccessRequestDetailsEdge';
|
|
66096
|
+
cursor: Scalars['String']['output'];
|
|
66097
|
+
node?: Maybe<JiraProjectAccessRequestDetails>;
|
|
66098
|
+
};
|
|
66099
|
+
export declare type JiraProjectAccessRequestMutationPayload = Payload & {
|
|
66100
|
+
__typename?: 'JiraProjectAccessRequestMutationPayload';
|
|
66101
|
+
errors?: Maybe<Array<MutationError>>;
|
|
66102
|
+
success: Scalars['Boolean']['output'];
|
|
66103
|
+
};
|
|
66104
|
+
export declare type JiraProjectAccessRequests = {
|
|
66105
|
+
__typename?: 'JiraProjectAccessRequests';
|
|
66106
|
+
availableRoles?: Maybe<JiraRoleConnection>;
|
|
66107
|
+
requests?: Maybe<JiraProjectAccessRequestConnection>;
|
|
66108
|
+
};
|
|
65077
66109
|
export declare type JiraProjectAction = {
|
|
65078
66110
|
__typename?: 'JiraProjectAction';
|
|
65079
66111
|
canPerform: Scalars['Boolean']['output'];
|
|
@@ -65092,6 +66124,13 @@ export declare enum JiraProjectActionType {
|
|
|
65092
66124
|
ViewIssues = "VIEW_ISSUES",
|
|
65093
66125
|
ViewProjectConfig = "VIEW_PROJECT_CONFIG"
|
|
65094
66126
|
}
|
|
66127
|
+
export declare type JiraProjectApproveAccessRequestInput = {
|
|
66128
|
+
actorAccountId: Scalars['ID']['input'];
|
|
66129
|
+
cloudId: Scalars['ID']['input'];
|
|
66130
|
+
projectId: Scalars['ID']['input'];
|
|
66131
|
+
projectRoleIds?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
66132
|
+
requestId: Scalars['ID']['input'];
|
|
66133
|
+
};
|
|
65095
66134
|
export declare type JiraProjectAssociatedFieldsInput = {
|
|
65096
66135
|
includedFieldTypes?: InputMaybe<Array<JiraConfigFieldType>>;
|
|
65097
66136
|
};
|
|
@@ -65212,6 +66251,11 @@ export declare type JiraProjectDeleteCustomBackgroundMutationPayload = Payload &
|
|
|
65212
66251
|
project?: Maybe<JiraProject>;
|
|
65213
66252
|
success: Scalars['Boolean']['output'];
|
|
65214
66253
|
};
|
|
66254
|
+
export declare type JiraProjectDenyAccessRequestInput = {
|
|
66255
|
+
cloudId: Scalars['ID']['input'];
|
|
66256
|
+
projectId: Scalars['ID']['input'];
|
|
66257
|
+
requestId: Scalars['ID']['input'];
|
|
66258
|
+
};
|
|
65215
66259
|
export declare type JiraProjectEdge = {
|
|
65216
66260
|
__typename?: 'JiraProjectEdge';
|
|
65217
66261
|
cursor: Scalars['String']['output'];
|
|
@@ -65657,6 +66701,7 @@ export declare type JiraPublishBoardViewConfigPayload = Payload & {
|
|
|
65657
66701
|
success: Scalars['Boolean']['output'];
|
|
65658
66702
|
};
|
|
65659
66703
|
export declare type JiraPublishIssueSearchConfigInput = {
|
|
66704
|
+
settings?: InputMaybe<JiraIssueSearchSettings>;
|
|
65660
66705
|
viewId: Scalars['ID']['input'];
|
|
65661
66706
|
};
|
|
65662
66707
|
export declare type JiraPublishIssueSearchConfigPayload = Payload & {
|
|
@@ -65792,6 +66837,7 @@ export declare type JiraQuery = {
|
|
|
65792
66837
|
jiraJourneyProjectSettings?: Maybe<JiraJourneyProjectSettings>;
|
|
65793
66838
|
jiraJourneySettings?: Maybe<JiraJourneySettings>;
|
|
65794
66839
|
jiraProject?: Maybe<JiraProject>;
|
|
66840
|
+
jiraProjectAccessRequests?: Maybe<JiraProjectAccessRequests>;
|
|
65795
66841
|
jiraProjectByKey?: Maybe<JiraProject>;
|
|
65796
66842
|
jiraProjects?: Maybe<Array<Maybe<JiraProject>>>;
|
|
65797
66843
|
jiraProjectsByJql?: Maybe<JiraProjectConnection>;
|
|
@@ -66416,6 +67462,10 @@ export declare type JiraQueryJiraJourneySettingsArgs = {
|
|
|
66416
67462
|
export declare type JiraQueryJiraProjectArgs = {
|
|
66417
67463
|
id: Scalars['ID']['input'];
|
|
66418
67464
|
};
|
|
67465
|
+
export declare type JiraQueryJiraProjectAccessRequestsArgs = {
|
|
67466
|
+
projectId: Scalars['ID']['input'];
|
|
67467
|
+
requestIds?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
67468
|
+
};
|
|
66419
67469
|
export declare type JiraQueryJiraProjectByKeyArgs = {
|
|
66420
67470
|
cloudId: Scalars['ID']['input'];
|
|
66421
67471
|
ignoreDeleteStatus?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -67261,6 +68311,9 @@ export declare type JiraRemoveRelatedWorkFromVersionPayload = Payload & {
|
|
|
67261
68311
|
errors?: Maybe<Array<MutationError>>;
|
|
67262
68312
|
success: Scalars['Boolean']['output'];
|
|
67263
68313
|
};
|
|
68314
|
+
export declare type JiraRemoveTimelineIssueLinkInput = {
|
|
68315
|
+
id: Scalars['ID']['input'];
|
|
68316
|
+
};
|
|
67264
68317
|
export declare type JiraRenameBoardViewStatusColumnInput = {
|
|
67265
68318
|
columnId: Scalars['ID']['input'];
|
|
67266
68319
|
name: Scalars['String']['input'];
|
|
@@ -67787,6 +68840,22 @@ export declare type JiraScheduleCalendarIssueWithScenarioPayload = Payload & {
|
|
|
67787
68840
|
issue?: Maybe<JiraScenarioIssueLike>;
|
|
67788
68841
|
success: Scalars['Boolean']['output'];
|
|
67789
68842
|
};
|
|
68843
|
+
export declare type JiraScheduleTimelineItemInput = {
|
|
68844
|
+
dueDate?: InputMaybe<JiraClearableDateFieldInput>;
|
|
68845
|
+
issueId: Scalars['ID']['input'];
|
|
68846
|
+
operation: JiraScheduleTimelineItemOperation;
|
|
68847
|
+
startDate?: InputMaybe<JiraClearableDateFieldInput>;
|
|
68848
|
+
};
|
|
68849
|
+
export declare enum JiraScheduleTimelineItemOperation {
|
|
68850
|
+
Drag = "DRAG",
|
|
68851
|
+
Set = "SET"
|
|
68852
|
+
}
|
|
68853
|
+
export declare type JiraScheduleTimelineItemPayload = {
|
|
68854
|
+
__typename?: 'JiraScheduleTimelineItemPayload';
|
|
68855
|
+
errors?: Maybe<Array<MutationError>>;
|
|
68856
|
+
issue?: Maybe<JiraIssue>;
|
|
68857
|
+
success: Scalars['Boolean']['output'];
|
|
68858
|
+
};
|
|
67790
68859
|
export declare type JiraScmRepository = {
|
|
67791
68860
|
__typename?: 'JiraScmRepository';
|
|
67792
68861
|
entityUrl?: Maybe<Scalars['URL']['output']>;
|
|
@@ -69710,6 +70779,7 @@ export declare type JiraSpreadsheetGroupIssuesArgs = {
|
|
|
69710
70779
|
issueSearchInput?: InputMaybe<JiraIssueSearchInput>;
|
|
69711
70780
|
last?: InputMaybe<Scalars['Int']['input']>;
|
|
69712
70781
|
scope?: InputMaybe<JiraIssueSearchScope>;
|
|
70782
|
+
settings?: InputMaybe<JiraIssueSearchSettings>;
|
|
69713
70783
|
viewConfigInput?: InputMaybe<JiraIssueSearchViewConfigInput>;
|
|
69714
70784
|
};
|
|
69715
70785
|
export declare type JiraSpreadsheetGroupByConfig = {
|
|
@@ -69763,6 +70833,7 @@ export declare type JiraSpreadsheetGroupEdge = {
|
|
|
69763
70833
|
export declare type JiraSpreadsheetGroupFieldValue = JiraGoal | JiraOption | JiraPriority | JiraStatus | JiraStoryPoint;
|
|
69764
70834
|
export declare type JiraSpreadsheetView = {
|
|
69765
70835
|
canPublishViewConfig?: Maybe<Scalars['Boolean']['output']>;
|
|
70836
|
+
conditionalFormattingRules?: Maybe<JiraFormattingRuleConnection>;
|
|
69766
70837
|
error?: Maybe<QueryError>;
|
|
69767
70838
|
fieldSets?: Maybe<JiraIssueSearchFieldSetConnection>;
|
|
69768
70839
|
filterId?: Maybe<Scalars['String']['output']>;
|
|
@@ -69777,6 +70848,10 @@ export declare type JiraSpreadsheetView = {
|
|
|
69777
70848
|
viewId?: Maybe<Scalars['String']['output']>;
|
|
69778
70849
|
viewSettings?: Maybe<JiraIssueSearchViewConfigSettings>;
|
|
69779
70850
|
};
|
|
70851
|
+
export declare type JiraSpreadsheetViewConditionalFormattingRulesArgs = {
|
|
70852
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
70853
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
70854
|
+
};
|
|
69780
70855
|
export declare type JiraSpreadsheetViewFieldSetsArgs = {
|
|
69781
70856
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
69782
70857
|
before?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -70456,8 +71531,11 @@ export declare type JiraTimeTrackingField = JiraIssueField & JiraIssueFieldConfi
|
|
|
70456
71531
|
issue?: Maybe<JiraIssue>;
|
|
70457
71532
|
name: Scalars['String']['output'];
|
|
70458
71533
|
originalEstimate?: Maybe<JiraEstimate>;
|
|
71534
|
+
originalEstimateOnChildIssues?: Maybe<JiraEstimate>;
|
|
70459
71535
|
remainingEstimate?: Maybe<JiraEstimate>;
|
|
71536
|
+
remainingEstimateOnChildIssues?: Maybe<JiraEstimate>;
|
|
70460
71537
|
timeSpent?: Maybe<JiraEstimate>;
|
|
71538
|
+
timeSpentOnChildIssues?: Maybe<JiraEstimate>;
|
|
70461
71539
|
timeTrackingSettings?: Maybe<JiraTimeTrackingSettings>;
|
|
70462
71540
|
type: Scalars['String']['output'];
|
|
70463
71541
|
userFieldConfig?: Maybe<JiraUserFieldConfig>;
|
|
@@ -70486,6 +71564,28 @@ export declare enum JiraTimeUnit {
|
|
|
70486
71564
|
Minute = "MINUTE",
|
|
70487
71565
|
Week = "WEEK"
|
|
70488
71566
|
}
|
|
71567
|
+
export declare type JiraTimelineField = JiraIssueField & JiraIssueFieldConfiguration & Node & {
|
|
71568
|
+
__typename?: 'JiraTimelineField';
|
|
71569
|
+
aliasFieldId?: Maybe<Scalars['ID']['output']>;
|
|
71570
|
+
description?: Maybe<Scalars['String']['output']>;
|
|
71571
|
+
fieldConfig?: Maybe<JiraFieldConfig>;
|
|
71572
|
+
fieldId: Scalars['String']['output'];
|
|
71573
|
+
fieldOperations?: Maybe<JiraFieldOperation>;
|
|
71574
|
+
id: Scalars['ID']['output'];
|
|
71575
|
+
isEditableInIssueTransition?: Maybe<Scalars['Boolean']['output']>;
|
|
71576
|
+
isEditableInIssueView?: Maybe<Scalars['Boolean']['output']>;
|
|
71577
|
+
isSearchableInJql?: Maybe<Scalars['Boolean']['output']>;
|
|
71578
|
+
issue?: Maybe<JiraIssue>;
|
|
71579
|
+
name: Scalars['String']['output'];
|
|
71580
|
+
type: Scalars['String']['output'];
|
|
71581
|
+
};
|
|
71582
|
+
export declare type JiraTimelineIssueLinkOperationPayload = {
|
|
71583
|
+
__typename?: 'JiraTimelineIssueLinkOperationPayload';
|
|
71584
|
+
errors?: Maybe<Array<MutationError>>;
|
|
71585
|
+
inwardItem?: Maybe<JiraIssue>;
|
|
71586
|
+
outwardItem?: Maybe<JiraIssue>;
|
|
71587
|
+
success: Scalars['Boolean']['output'];
|
|
71588
|
+
};
|
|
70489
71589
|
export declare type JiraToolchain = {
|
|
70490
71590
|
__typename?: 'JiraToolchain';
|
|
70491
71591
|
hasViewDevToolsPermission?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -74628,6 +75728,7 @@ export declare type LoomMeeting = Node & {
|
|
|
74628
75728
|
id: Scalars['ID']['output'];
|
|
74629
75729
|
recorder?: Maybe<User>;
|
|
74630
75730
|
recorderId?: Maybe<Scalars['ID']['output']>;
|
|
75731
|
+
recurrenceAri?: Maybe<Scalars['ID']['output']>;
|
|
74631
75732
|
recurring?: Maybe<Scalars['Boolean']['output']>;
|
|
74632
75733
|
source?: Maybe<LoomMeetingSource>;
|
|
74633
75734
|
startsAt?: Maybe<Scalars['String']['output']>;
|
|
@@ -74648,6 +75749,11 @@ export declare enum LoomMeetingSource {
|
|
|
74648
75749
|
MicrosoftOutlook = "MICROSOFT_OUTLOOK",
|
|
74649
75750
|
Zoom = "ZOOM"
|
|
74650
75751
|
}
|
|
75752
|
+
export declare type LoomMeetings = {
|
|
75753
|
+
__typename?: 'LoomMeetings';
|
|
75754
|
+
recurring?: Maybe<Array<Maybe<LoomMeeting>>>;
|
|
75755
|
+
single?: Maybe<Array<Maybe<LoomMeeting>>>;
|
|
75756
|
+
};
|
|
74651
75757
|
export declare type LoomPhrase = {
|
|
74652
75758
|
__typename?: 'LoomPhrase';
|
|
74653
75759
|
ranges?: Maybe<Array<LoomPhraseRange>>;
|
|
@@ -75313,7 +76419,9 @@ export declare type MarketplaceConsoleAppSoftwareShort = {
|
|
|
75313
76419
|
hosting: MarketplaceConsoleHosting;
|
|
75314
76420
|
isLatestActiveVersionPaidViaAtlassian?: Maybe<Scalars['Boolean']['output']>;
|
|
75315
76421
|
isLatestVersionPaidViaAtlassian?: Maybe<Scalars['Boolean']['output']>;
|
|
76422
|
+
latestApprovedVersion?: Maybe<MarketplaceConsoleAppSoftwareVersion>;
|
|
75316
76423
|
latestForgeVersion?: Maybe<MarketplaceConsoleAppSoftwareVersion>;
|
|
76424
|
+
latestSubmittedVersion?: Maybe<MarketplaceConsoleAppSoftwareVersion>;
|
|
75317
76425
|
latestVersion?: Maybe<MarketplaceConsoleAppSoftwareVersion>;
|
|
75318
76426
|
pricingParentSoftware?: Maybe<MarketplaceConsolePricingParentSoftware>;
|
|
75319
76427
|
pricingParentSoftwares?: Maybe<Array<Maybe<MarketplaceConsolePricingParentSoftware>>>;
|
|
@@ -75365,6 +76473,44 @@ export declare type MarketplaceConsoleAppSoftwareVersionFrameworkDetailsInput =
|
|
|
75365
76473
|
attributes: MarketplaceConsoleFrameworkAttributesInput;
|
|
75366
76474
|
frameworkId: Scalars['ID']['input'];
|
|
75367
76475
|
};
|
|
76476
|
+
export declare type MarketplaceConsoleAppSoftwareVersionInput = {
|
|
76477
|
+
appStatusPageUrl?: InputMaybe<Scalars['String']['input']>;
|
|
76478
|
+
bonTermsSupported?: InputMaybe<Scalars['Boolean']['input']>;
|
|
76479
|
+
buildNumber?: InputMaybe<Scalars['String']['input']>;
|
|
76480
|
+
communityEnabled?: InputMaybe<Scalars['Boolean']['input']>;
|
|
76481
|
+
compatibilities: Array<MarketplaceConsoleAppSoftwareVersionCompatibilityInput>;
|
|
76482
|
+
deploymentInstructions?: InputMaybe<Array<MarketplaceConsoleDeploymentInstructionInput>>;
|
|
76483
|
+
documentationUrl?: InputMaybe<Scalars['String']['input']>;
|
|
76484
|
+
editionDetails?: InputMaybe<MarketplaceConsoleEditionDetailsInput>;
|
|
76485
|
+
eulaUrl?: InputMaybe<Scalars['String']['input']>;
|
|
76486
|
+
forumsUrl?: InputMaybe<Scalars['String']['input']>;
|
|
76487
|
+
frameworkDetails: MarketplaceConsoleAppSoftwareVersionFrameworkDetailsInput;
|
|
76488
|
+
heroImageUrl?: InputMaybe<Scalars['String']['input']>;
|
|
76489
|
+
highlights?: InputMaybe<Array<MarketplaceConsoleListingHighLightInput>>;
|
|
76490
|
+
isBeta?: InputMaybe<Scalars['Boolean']['input']>;
|
|
76491
|
+
isSupported?: InputMaybe<Scalars['Boolean']['input']>;
|
|
76492
|
+
issueTrackerUrl?: InputMaybe<Scalars['String']['input']>;
|
|
76493
|
+
learnMoreUrl?: InputMaybe<Scalars['String']['input']>;
|
|
76494
|
+
licenseType?: InputMaybe<MarketplaceConsoleAppSoftwareVersionLicenseTypeId>;
|
|
76495
|
+
moreDetails?: InputMaybe<Scalars['String']['input']>;
|
|
76496
|
+
name?: InputMaybe<Scalars['String']['input']>;
|
|
76497
|
+
partnerSpecificTerms?: InputMaybe<Scalars['String']['input']>;
|
|
76498
|
+
paymentModel?: InputMaybe<MarketplaceConsolePaymentModel>;
|
|
76499
|
+
privacyUrl?: InputMaybe<Scalars['String']['input']>;
|
|
76500
|
+
productId?: InputMaybe<Scalars['String']['input']>;
|
|
76501
|
+
purchaseUrl?: InputMaybe<Scalars['String']['input']>;
|
|
76502
|
+
releaseNotes?: InputMaybe<Scalars['String']['input']>;
|
|
76503
|
+
releaseSummary?: InputMaybe<Scalars['String']['input']>;
|
|
76504
|
+
screenshots?: InputMaybe<Array<MarketplaceConsoleListingScreenshotInput>>;
|
|
76505
|
+
segmentWriteKey?: InputMaybe<Scalars['String']['input']>;
|
|
76506
|
+
sourceCodeLicenseUrl?: InputMaybe<Scalars['String']['input']>;
|
|
76507
|
+
status: MarketplaceConsoleVersionType;
|
|
76508
|
+
statusAfterApproval?: InputMaybe<MarketplaceConsoleLegacyMongoStatus>;
|
|
76509
|
+
summary?: InputMaybe<Scalars['String']['input']>;
|
|
76510
|
+
supportTicketSystemUrl?: InputMaybe<Scalars['String']['input']>;
|
|
76511
|
+
versionNumber?: InputMaybe<Scalars['String']['input']>;
|
|
76512
|
+
youtubeId?: InputMaybe<Scalars['String']['input']>;
|
|
76513
|
+
};
|
|
75368
76514
|
export declare type MarketplaceConsoleAppSoftwareVersionLicenseType = {
|
|
75369
76515
|
__typename?: 'MarketplaceConsoleAppSoftwareVersionLicenseType';
|
|
75370
76516
|
id: MarketplaceConsoleAppSoftwareVersionLicenseTypeId;
|
|
@@ -75483,6 +76629,25 @@ export declare type MarketplaceConsoleConnectFrameworkAttributes = {
|
|
|
75483
76629
|
export declare type MarketplaceConsoleConnectFrameworkAttributesInput = {
|
|
75484
76630
|
href: Scalars['String']['input'];
|
|
75485
76631
|
};
|
|
76632
|
+
export declare type MarketplaceConsoleCreateAppSoftwareVersionError = MarketplaceConsoleError & {
|
|
76633
|
+
__typename?: 'MarketplaceConsoleCreateAppSoftwareVersionError';
|
|
76634
|
+
id: Scalars['ID']['output'];
|
|
76635
|
+
message: Scalars['String']['output'];
|
|
76636
|
+
path?: Maybe<Scalars['String']['output']>;
|
|
76637
|
+
subCode?: Maybe<Scalars['String']['output']>;
|
|
76638
|
+
versionType?: Maybe<MarketplaceConsoleVersionType>;
|
|
76639
|
+
};
|
|
76640
|
+
export declare type MarketplaceConsoleCreateAppSoftwareVersionKnownError = {
|
|
76641
|
+
__typename?: 'MarketplaceConsoleCreateAppSoftwareVersionKnownError';
|
|
76642
|
+
errors?: Maybe<Array<Maybe<MarketplaceConsoleCreateAppSoftwareVersionError>>>;
|
|
76643
|
+
};
|
|
76644
|
+
export declare type MarketplaceConsoleCreateAppSoftwareVersionMutationOutput = MarketplaceConsoleCreateAppSoftwareVersionKnownError | MarketplaceConsoleCreateAppSoftwareVersionMutationResponse;
|
|
76645
|
+
export declare type MarketplaceConsoleCreateAppSoftwareVersionMutationResponse = {
|
|
76646
|
+
__typename?: 'MarketplaceConsoleCreateAppSoftwareVersionMutationResponse';
|
|
76647
|
+
resourceUrl?: Maybe<Scalars['String']['output']>;
|
|
76648
|
+
success: Scalars['Boolean']['output'];
|
|
76649
|
+
versionType: MarketplaceConsoleVersionType;
|
|
76650
|
+
};
|
|
75486
76651
|
export declare type MarketplaceConsoleCreatePrivateAppVersionError = MarketplaceConsoleError & {
|
|
75487
76652
|
__typename?: 'MarketplaceConsoleCreatePrivateAppVersionError';
|
|
75488
76653
|
id: Scalars['ID']['output'];
|
|
@@ -75504,6 +76669,13 @@ export declare type MarketplaceConsoleCreateVersionAssetsInput = {
|
|
|
75504
76669
|
highlights?: InputMaybe<Array<MarketplaceConsoleHighlightAssetInput>>;
|
|
75505
76670
|
screenshots?: InputMaybe<Array<MarketplaceConsoleImageAssetInput>>;
|
|
75506
76671
|
};
|
|
76672
|
+
export declare type MarketplaceConsoleDefaultEditionEnrolled = {
|
|
76673
|
+
__typename?: 'MarketplaceConsoleDefaultEditionEnrolled';
|
|
76674
|
+
edition?: Maybe<MarketplaceConsoleEditionType>;
|
|
76675
|
+
};
|
|
76676
|
+
export declare type MarketplaceConsoleDefaultEditionEnrolledInput = {
|
|
76677
|
+
appKey?: InputMaybe<Scalars['String']['input']>;
|
|
76678
|
+
};
|
|
75507
76679
|
export declare type MarketplaceConsoleDeleteAppVersionResponse = MarketplaceConsoleKnownError | MarketplaceConsoleMutationVoidResponse;
|
|
75508
76680
|
export declare type MarketplaceConsoleDeploymentInstruction = {
|
|
75509
76681
|
__typename?: 'MarketplaceConsoleDeploymentInstruction';
|
|
@@ -75933,6 +77105,7 @@ export declare type MarketplaceConsoleMutationApi = {
|
|
|
75933
77105
|
__typename?: 'MarketplaceConsoleMutationApi';
|
|
75934
77106
|
activateEditions?: Maybe<MarketplaceConsoleEditionsActivation>;
|
|
75935
77107
|
createAppSoftwareToken?: Maybe<MarketplaceConsoleTokenDetails>;
|
|
77108
|
+
createAppSoftwareVersion?: Maybe<MarketplaceConsoleCreateAppSoftwareVersionMutationOutput>;
|
|
75936
77109
|
createEcoHelpTicket?: Maybe<Scalars['ID']['output']>;
|
|
75937
77110
|
createPrivateAppSoftwareVersion?: Maybe<MarketplaceConsoleCreatePrivateAppVersionMutationOutput>;
|
|
75938
77111
|
deleteAppSoftwareToken?: Maybe<MarketplaceConsoleMutationVoidResponse>;
|
|
@@ -75951,12 +77124,16 @@ export declare type MarketplaceConsoleMutationApiCreateAppSoftwareTokenArgs = {
|
|
|
75951
77124
|
appId: Scalars['String']['input'];
|
|
75952
77125
|
appSoftwareId: Scalars['String']['input'];
|
|
75953
77126
|
};
|
|
77127
|
+
export declare type MarketplaceConsoleMutationApiCreateAppSoftwareVersionArgs = {
|
|
77128
|
+
appKey: Scalars['ID']['input'];
|
|
77129
|
+
version: MarketplaceConsoleAppSoftwareVersionInput;
|
|
77130
|
+
};
|
|
75954
77131
|
export declare type MarketplaceConsoleMutationApiCreateEcoHelpTicketArgs = {
|
|
75955
77132
|
product: MarketplaceConsoleEditionsInput;
|
|
75956
77133
|
};
|
|
75957
77134
|
export declare type MarketplaceConsoleMutationApiCreatePrivateAppSoftwareVersionArgs = {
|
|
75958
77135
|
appKey: Scalars['ID']['input'];
|
|
75959
|
-
cloudComplianceBoundaries?: InputMaybe<Array<
|
|
77136
|
+
cloudComplianceBoundaries?: InputMaybe<Array<MarketplaceConsoleCloudComplianceBoundary>>;
|
|
75960
77137
|
version: MarketplaceConsoleAppVersionCreateRequestInput;
|
|
75961
77138
|
};
|
|
75962
77139
|
export declare type MarketplaceConsoleMutationApiDeleteAppSoftwareTokenArgs = {
|
|
@@ -76236,6 +77413,7 @@ export declare type MarketplaceConsoleQueryApi = {
|
|
|
76236
77413
|
currentPartnerContactByAppId?: Maybe<MarketplaceConsolePartnerContact>;
|
|
76237
77414
|
currentUserPreferences?: Maybe<MarketplaceConsoleUserPreferences>;
|
|
76238
77415
|
currentUserProfile?: Maybe<MarketplaceConsoleUser>;
|
|
77416
|
+
defaultEditionEnrolled?: Maybe<MarketplaceConsoleDefaultEditionEnrolled>;
|
|
76239
77417
|
developerSpace?: Maybe<MarketplaceConsoleDevSpace>;
|
|
76240
77418
|
developerSpaceByAppId?: Maybe<MarketplaceConsoleDevSpace>;
|
|
76241
77419
|
editions?: Maybe<Array<Maybe<MarketplaceConsoleEdition>>>;
|
|
@@ -76282,6 +77460,9 @@ export declare type MarketplaceConsoleQueryApiCurrentPartnerContactArgs = {
|
|
|
76282
77460
|
export declare type MarketplaceConsoleQueryApiCurrentPartnerContactByAppIdArgs = {
|
|
76283
77461
|
appId: Scalars['ID']['input'];
|
|
76284
77462
|
};
|
|
77463
|
+
export declare type MarketplaceConsoleQueryApiDefaultEditionEnrolledArgs = {
|
|
77464
|
+
product: MarketplaceConsoleDefaultEditionEnrolledInput;
|
|
77465
|
+
};
|
|
76285
77466
|
export declare type MarketplaceConsoleQueryApiDeveloperSpaceArgs = {
|
|
76286
77467
|
vendorId: Scalars['ID']['input'];
|
|
76287
77468
|
};
|
|
@@ -76429,6 +77610,10 @@ export declare type MarketplaceConsoleVendorLinks = {
|
|
|
76429
77610
|
privacy?: Maybe<Scalars['String']['output']>;
|
|
76430
77611
|
supportTicketSystem?: Maybe<Scalars['String']['output']>;
|
|
76431
77612
|
};
|
|
77613
|
+
export declare enum MarketplaceConsoleVersionType {
|
|
77614
|
+
Private = "PRIVATE",
|
|
77615
|
+
Public = "PUBLIC"
|
|
77616
|
+
}
|
|
76432
77617
|
export declare type MarketplaceConsoleWorkflowFrameworkAttributes = {
|
|
76433
77618
|
__typename?: 'MarketplaceConsoleWorkflowFrameworkAttributes';
|
|
76434
77619
|
artifact?: Maybe<MarketplaceConsoleSoftwareArtifact>;
|
|
@@ -77693,6 +78878,7 @@ export declare type MercuryChangeProposalFunding = {
|
|
|
77693
78878
|
};
|
|
77694
78879
|
export declare type MercuryChangeProposalImpact = {
|
|
77695
78880
|
__typename?: 'MercuryChangeProposalImpact';
|
|
78881
|
+
key: Scalars['String']['output'];
|
|
77696
78882
|
value: Scalars['Int']['output'];
|
|
77697
78883
|
};
|
|
77698
78884
|
export declare type MercuryChangeProposalPositionDetails = {
|
|
@@ -77889,6 +79075,7 @@ export declare type MercuryCreatePortfolioFocusAreasInput = {
|
|
|
77889
79075
|
cloudId: Scalars['ID']['input'];
|
|
77890
79076
|
focusAreaIds: Array<Scalars['ID']['input']>;
|
|
77891
79077
|
name: Scalars['String']['input'];
|
|
79078
|
+
viewType?: InputMaybe<MercuryViewType>;
|
|
77892
79079
|
};
|
|
77893
79080
|
export declare type MercuryCreatePortfolioPayload = Payload & {
|
|
77894
79081
|
__typename?: 'MercuryCreatePortfolioPayload';
|
|
@@ -78290,7 +79477,7 @@ export declare type MercuryFocusAreaRankingValidation = {
|
|
|
78290
79477
|
export declare type MercuryFocusAreaRankingValidationError = {
|
|
78291
79478
|
__typename?: 'MercuryFocusAreaRankingValidationError';
|
|
78292
79479
|
errorCode: MercuryFocusAreaRankingValidationErrorCode;
|
|
78293
|
-
focusArea
|
|
79480
|
+
focusArea?: Maybe<MercuryFocusArea>;
|
|
78294
79481
|
rankingView?: Maybe<MercuryPortfolio>;
|
|
78295
79482
|
};
|
|
78296
79483
|
export declare enum MercuryFocusAreaRankingValidationErrorCode {
|
|
@@ -78305,10 +79492,13 @@ export declare enum MercuryFocusAreaSortField {
|
|
|
78305
79492
|
Budget = "BUDGET",
|
|
78306
79493
|
FocusAreaType = "FOCUS_AREA_TYPE",
|
|
78307
79494
|
HasParent = "HAS_PARENT",
|
|
79495
|
+
Health = "HEALTH",
|
|
78308
79496
|
HierarchyLevel = "HIERARCHY_LEVEL",
|
|
78309
79497
|
LastUpdated = "LAST_UPDATED",
|
|
78310
79498
|
Name = "NAME",
|
|
79499
|
+
Rank = "RANK",
|
|
78311
79500
|
Spend = "SPEND",
|
|
79501
|
+
Starred = "STARRED",
|
|
78312
79502
|
Status = "STATUS",
|
|
78313
79503
|
TargetDate = "TARGET_DATE",
|
|
78314
79504
|
Watching = "WATCHING"
|
|
@@ -78785,6 +79975,8 @@ export declare type MercuryPortfolio = Node & {
|
|
|
78785
79975
|
owner?: Maybe<User>;
|
|
78786
79976
|
url?: Maybe<Scalars['String']['output']>;
|
|
78787
79977
|
uuid: Scalars['ID']['output'];
|
|
79978
|
+
version?: Maybe<Scalars['String']['output']>;
|
|
79979
|
+
viewType: MercuryViewType;
|
|
78788
79980
|
};
|
|
78789
79981
|
export declare type MercuryPortfolioAllocations = {
|
|
78790
79982
|
__typename?: 'MercuryPortfolioAllocations';
|
|
@@ -79241,6 +80433,7 @@ export declare type MercuryRecreatePortfolioFocusAreasInput = {
|
|
|
79241
80433
|
cloudId: Scalars['ID']['input'];
|
|
79242
80434
|
focusAreaIds: Array<Scalars['ID']['input']>;
|
|
79243
80435
|
id: Scalars['ID']['input'];
|
|
80436
|
+
rankVersion?: InputMaybe<Scalars['String']['input']>;
|
|
79244
80437
|
};
|
|
79245
80438
|
export declare type MercuryRemoveWatcherFromFocusAreaInput = {
|
|
79246
80439
|
cloudId: Scalars['ID']['input'];
|
|
@@ -79537,6 +80730,7 @@ export declare type MercuryStrategicEventsMutationApiUpdateStrategicEventTargetD
|
|
|
79537
80730
|
export declare type MercuryStrategicEventsQueryApi = {
|
|
79538
80731
|
__typename?: 'MercuryStrategicEventsQueryApi';
|
|
79539
80732
|
changeProposal?: Maybe<MercuryChangeProposal>;
|
|
80733
|
+
changeProposalImpactValues: Array<MercuryChangeProposalImpact>;
|
|
79540
80734
|
changeProposalStatuses: Array<MercuryChangeProposalStatus>;
|
|
79541
80735
|
changeProposalSummaryForStrategicEvent?: Maybe<MercuryChangeProposalSummaryForStrategicEvent>;
|
|
79542
80736
|
changeProposals?: Maybe<Array<Maybe<MercuryChangeProposal>>>;
|
|
@@ -79547,6 +80741,7 @@ export declare type MercuryStrategicEventsQueryApi = {
|
|
|
79547
80741
|
changeSummaryForChangeProposal?: Maybe<MercuryChangeSummaryForChangeProposal>;
|
|
79548
80742
|
changeSummaryForStrategicEvent?: Maybe<MercuryFocusAreaChangeSummary>;
|
|
79549
80743
|
changeSummaryInternal?: Maybe<Array<Maybe<MercuryChangeSummary>>>;
|
|
80744
|
+
changeTypes: Array<MercuryChangeType>;
|
|
79550
80745
|
changes?: Maybe<Array<Maybe<MercuryChange>>>;
|
|
79551
80746
|
changesByPositionIds?: Maybe<Array<Maybe<MercuryChange>>>;
|
|
79552
80747
|
changesSearch?: Maybe<MercuryChangeConnection>;
|
|
@@ -79559,6 +80754,9 @@ export declare type MercuryStrategicEventsQueryApi = {
|
|
|
79559
80754
|
export declare type MercuryStrategicEventsQueryApiChangeProposalArgs = {
|
|
79560
80755
|
id: Scalars['ID']['input'];
|
|
79561
80756
|
};
|
|
80757
|
+
export declare type MercuryStrategicEventsQueryApiChangeProposalImpactValuesArgs = {
|
|
80758
|
+
cloudId?: InputMaybe<Scalars['ID']['input']>;
|
|
80759
|
+
};
|
|
79562
80760
|
export declare type MercuryStrategicEventsQueryApiChangeProposalStatusesArgs = {
|
|
79563
80761
|
cloudId?: InputMaybe<Scalars['ID']['input']>;
|
|
79564
80762
|
};
|
|
@@ -79595,6 +80793,9 @@ export declare type MercuryStrategicEventsQueryApiChangeSummaryForStrategicEvent
|
|
|
79595
80793
|
export declare type MercuryStrategicEventsQueryApiChangeSummaryInternalArgs = {
|
|
79596
80794
|
inputs: Array<MercuryChangeSummaryInput>;
|
|
79597
80795
|
};
|
|
80796
|
+
export declare type MercuryStrategicEventsQueryApiChangeTypesArgs = {
|
|
80797
|
+
cloudId?: InputMaybe<Scalars['ID']['input']>;
|
|
80798
|
+
};
|
|
79598
80799
|
export declare type MercuryStrategicEventsQueryApiChangesArgs = {
|
|
79599
80800
|
ids: Array<Scalars['ID']['input']>;
|
|
79600
80801
|
};
|
|
@@ -79950,6 +81151,10 @@ export declare type MercuryValidateFocusAreasForRankingPayload = Payload & {
|
|
|
79950
81151
|
success: Scalars['Boolean']['output'];
|
|
79951
81152
|
validation?: Maybe<MercuryFocusAreaRankingValidation>;
|
|
79952
81153
|
};
|
|
81154
|
+
export declare enum MercuryViewType {
|
|
81155
|
+
HierarchyView = "HIERARCHY_VIEW",
|
|
81156
|
+
RankingView = "RANKING_VIEW"
|
|
81157
|
+
}
|
|
79953
81158
|
export declare type MercuryWorkResult = MercuryProviderWork | MercuryProviderWorkError;
|
|
79954
81159
|
export declare type MercuryWorkspaceConnectionStatus = {
|
|
79955
81160
|
__typename?: 'MercuryWorkspaceConnectionStatus';
|
|
@@ -80193,15 +81398,18 @@ export declare type Mutation = {
|
|
|
80193
81398
|
addReaction?: Maybe<SaveReactionResponse>;
|
|
80194
81399
|
admin_createAccessUrl?: Maybe<AdminAccessUrlCreationResponsePayload>;
|
|
80195
81400
|
admin_deleteAccessUrl?: Maybe<AdminAccessUrlDeletionResponsePayload>;
|
|
81401
|
+
agentStudio_addGroupsToCreatePermission?: Maybe<AgentStudioAddGroupsToCreatePermissionPayload>;
|
|
80196
81402
|
agentStudio_createAgent?: Maybe<AgentStudioCreateAgentPayload>;
|
|
80197
81403
|
agentStudio_createScenario?: Maybe<AgentStudioCreateScenarioPayload>;
|
|
80198
81404
|
agentStudio_deleteAgent?: Maybe<AgentStudioDeleteAgentPayload>;
|
|
80199
81405
|
agentStudio_deleteScenario?: Maybe<AgentStudioDeleteScenarioPayload>;
|
|
81406
|
+
agentStudio_removeGroupsFromCreatePermission?: Maybe<AgentStudioRemoveGroupsFromCreatePermissionPayload>;
|
|
80200
81407
|
agentStudio_updateAgentActions?: Maybe<AgentStudioUpdateAgentActionsPayload>;
|
|
80201
81408
|
agentStudio_updateAgentAsFavourite?: Maybe<AgentStudioUpdateAgentAsFavouritePayload>;
|
|
80202
81409
|
agentStudio_updateAgentDetails?: Maybe<AgentStudioUpdateAgentDetailsPayload>;
|
|
80203
81410
|
agentStudio_updateAgentKnowledgeSources?: Maybe<AgentStudioUpdateAgentKnowledgeSourcesPayload>;
|
|
80204
81411
|
agentStudio_updateConversationStarters?: Maybe<AgentStudioUpdateConversationStartersPayload>;
|
|
81412
|
+
agentStudio_updateCreatePermissionMode?: Maybe<AgentStudioUpdateCreatePermissionModePayload>;
|
|
80205
81413
|
agentStudio_updateScenario?: Maybe<AgentStudioUpdateScenarioPayload>;
|
|
80206
81414
|
agentStudio_updateScenarioMappingsForContainer?: Maybe<AgentStudioUpdateScenarioMappingsPayload>;
|
|
80207
81415
|
appRecommendations?: Maybe<AppRecMutation>;
|
|
@@ -80350,8 +81558,10 @@ export declare type Mutation = {
|
|
|
80350
81558
|
csmAi_createAction?: Maybe<CsmAiCreateActionPayload>;
|
|
80351
81559
|
csmAi_createCoachingContent?: Maybe<CsmAiCreateCoachingContentPayload>;
|
|
80352
81560
|
csmAi_deleteAction?: Maybe<CsmAiDeleteActionPayload>;
|
|
81561
|
+
csmAi_deleteCoachingContent?: Maybe<CsmAiDeleteCoachingContentPayload>;
|
|
80353
81562
|
csmAi_updateAction?: Maybe<CsmAiUpdateActionPayload>;
|
|
80354
81563
|
csmAi_updateAgent?: Maybe<CsmAiUpdateAgentPayload>;
|
|
81564
|
+
csmAi_updateCoachingContent?: Maybe<CsmAiUpdateCoachingContentPayload>;
|
|
80355
81565
|
csmAi_updateHandoffConfig?: Maybe<CsmAiUpdateHandoffConfigPayload>;
|
|
80356
81566
|
csmAi_updateWidget?: Maybe<CsmAiUpdateWidgetPayload>;
|
|
80357
81567
|
customerService?: Maybe<CustomerServiceMutationApi>;
|
|
@@ -80405,6 +81615,8 @@ export declare type Mutation = {
|
|
|
80405
81615
|
devai_invokeAutodevRovoAgent?: Maybe<DevAiInvokeAutodevRovoAgentPayload>;
|
|
80406
81616
|
devai_invokeAutodevRovoAgentInBulk?: Maybe<DevAiInvokeAutodevRovoAgentInBulkPayload>;
|
|
80407
81617
|
devai_invokeSelfCorrection?: Maybe<DevAiInvokeSelfCorrectionPayload>;
|
|
81618
|
+
devai_rovodevArchiveSession?: Maybe<DevAiRovoDevArchiveSessionPayload>;
|
|
81619
|
+
devai_rovodevCreateBulkSession?: Maybe<DevAiRovoDevBulkCreateSessionPayload>;
|
|
80408
81620
|
devai_rovodevCreateSession?: Maybe<DevAiRovoDevCreateSessionPayload>;
|
|
80409
81621
|
disableExperiment?: Maybe<TapExperiment>;
|
|
80410
81622
|
disablePublicLinkForPage?: Maybe<DisablePublicLinkForPagePayload>;
|
|
@@ -80423,6 +81635,7 @@ export declare type Mutation = {
|
|
|
80423
81635
|
favouriteSpaceBulk?: Maybe<FavouriteSpaceBulkPayload>;
|
|
80424
81636
|
followUser?: Maybe<FollowUserPayload>;
|
|
80425
81637
|
generatePermsReport?: Maybe<ConfluenceAdminReportPayload>;
|
|
81638
|
+
goals_setWatchingGoal?: Maybe<TownsquareGoalsSetWatchingGoalPayload>;
|
|
80426
81639
|
grantContentAccess?: Maybe<GrantContentAccessPayload>;
|
|
80427
81640
|
graphStore?: Maybe<GraphStoreMutation>;
|
|
80428
81641
|
growthUnifiedProfile_createOrgProfile?: Maybe<GrowthUnifiedProfileTwcCreateOrgProfileResponse>;
|
|
@@ -80432,6 +81645,8 @@ export declare type Mutation = {
|
|
|
80432
81645
|
helpExternalResource?: Maybe<HelpExternalResourceMutationApi>;
|
|
80433
81646
|
helpLayout?: Maybe<HelpLayoutMutationApi>;
|
|
80434
81647
|
helpObjectStore?: Maybe<HelpObjectStoreMutationApi>;
|
|
81648
|
+
home_addTagsById?: Maybe<TownsquareAddTagToEntityPayload>;
|
|
81649
|
+
home_removeTags?: Maybe<TownsquareRemoveTagsPayload>;
|
|
80435
81650
|
insightsMutation?: Maybe<InsightsMutation>;
|
|
80436
81651
|
installApp?: Maybe<AppInstallationResponse>;
|
|
80437
81652
|
invokeAuxEffects?: Maybe<InvokeAuxEffectsResponse>;
|
|
@@ -80441,6 +81656,7 @@ export declare type Mutation = {
|
|
|
80441
81656
|
jiraCannedResponse?: Maybe<JiraCannedResponseMutationApi>;
|
|
80442
81657
|
jiraOAuthApps?: Maybe<JiraOAuthAppsMutation>;
|
|
80443
81658
|
jira_addFieldsToFieldScheme?: Maybe<JiraAddFieldsToFieldSchemePayload>;
|
|
81659
|
+
jira_addTimelineIssueLink?: Maybe<JiraTimelineIssueLinkOperationPayload>;
|
|
80444
81660
|
jira_bulkSetBoardViewColumnState?: Maybe<JiraBulkSetBoardViewColumnStatePayload>;
|
|
80445
81661
|
jira_createBoardViewStatusColumn?: Maybe<JiraCreateBoardViewStatusColumnPayload>;
|
|
80446
81662
|
jira_createCustomBackground?: Maybe<JiraProjectCreateCustomBackgroundMutationPayload>;
|
|
@@ -80461,10 +81677,12 @@ export declare type Mutation = {
|
|
|
80461
81677
|
jira_publishBoardViewConfig?: Maybe<JiraPublishBoardViewConfigPayload>;
|
|
80462
81678
|
jira_publishIssueSearchConfig?: Maybe<JiraPublishIssueSearchConfigPayload>;
|
|
80463
81679
|
jira_removeFieldsFromFieldScheme?: Maybe<JiraRemoveFieldsFromFieldSchemePayload>;
|
|
81680
|
+
jira_removeTimelineIssueLink?: Maybe<JiraTimelineIssueLinkOperationPayload>;
|
|
80464
81681
|
jira_renameBoardViewStatusColumn?: Maybe<JiraRenameBoardViewStatusColumnPayload>;
|
|
80465
81682
|
jira_reorderBoardViewColumn?: Maybe<JiraReorderBoardViewColumnPayload>;
|
|
80466
81683
|
jira_reorderProjectsSidebarMenuItem?: Maybe<JiraProjectsSidebarMenu>;
|
|
80467
81684
|
jira_restoreGlobalCustomFields?: Maybe<JiraRestoreGlobalCustomFieldsPayload>;
|
|
81685
|
+
jira_scheduleTimelineItem?: Maybe<JiraScheduleTimelineItemPayload>;
|
|
80468
81686
|
jira_setBoardIssueCardCover?: Maybe<JiraSetBoardIssueCardCoverPayload>;
|
|
80469
81687
|
jira_setBoardViewCardFieldSelected?: Maybe<JiraSetBoardViewCardFieldSelectedPayload>;
|
|
80470
81688
|
jira_setBoardViewCardOptionState?: Maybe<JiraSetBoardViewCardOptionStatePayload>;
|
|
@@ -80536,8 +81754,16 @@ export declare type Mutation = {
|
|
|
80536
81754
|
polaris?: Maybe<PolarisMutationNamespace>;
|
|
80537
81755
|
polarisAddReaction?: Maybe<PolarisAddReactionPayload>;
|
|
80538
81756
|
polarisDeleteReaction?: Maybe<PolarisDeleteReactionPayload>;
|
|
81757
|
+
projects_addGoalLink?: Maybe<TownsquareProjectsAddGoalLinkPayload>;
|
|
81758
|
+
projects_addMembers?: Maybe<TownsquareProjectsAddMembersPayload>;
|
|
81759
|
+
projects_create?: Maybe<TownsquareProjectsCreatePayload>;
|
|
80539
81760
|
projects_createLink?: Maybe<TownsquareProjectsCreateLinkPayload>;
|
|
81761
|
+
projects_deleteLink?: Maybe<TownsquareProjectsDeleteLinkPayload>;
|
|
80540
81762
|
projects_edit?: Maybe<TownsquareProjectsEditPayload>;
|
|
81763
|
+
projects_editLink?: Maybe<TownsquareProjectsEditLinkPayload>;
|
|
81764
|
+
projects_removeMember?: Maybe<TownsquareProjectsRemoveMemberPayload>;
|
|
81765
|
+
projects_setWatchingProject?: Maybe<TownsquareProjectsSetWatchingProjectPayload>;
|
|
81766
|
+
projects_shareProject?: Maybe<TownsquareProjectsShareProjectPayload>;
|
|
80541
81767
|
publicLinkPagesAdminAction?: Maybe<PublicLinkPagesAdminActionPayload>;
|
|
80542
81768
|
publicLinkSpacesAction?: Maybe<PublicLinkSpacesActionPayload>;
|
|
80543
81769
|
publishReleaseNote: ContentPlatformReleaseNote;
|
|
@@ -80614,30 +81840,36 @@ export declare type Mutation = {
|
|
|
80614
81840
|
shepherd?: Maybe<ShepherdMutation>;
|
|
80615
81841
|
softDeleteSpace?: Maybe<SoftDeleteSpacePayload>;
|
|
80616
81842
|
spf_attachAskLink?: Maybe<SpfAttachAskLinkPayload>;
|
|
80617
|
-
spf_createAsk?: Maybe<
|
|
80618
|
-
spf_createAskComment?: Maybe<
|
|
80619
|
-
spf_createAskUpdate?: Maybe<
|
|
81843
|
+
spf_createAsk?: Maybe<SpfUpsertAskPayload>;
|
|
81844
|
+
spf_createAskComment?: Maybe<SpfUpsertAskCommentPayload>;
|
|
81845
|
+
spf_createAskUpdate?: Maybe<SpfUpsertAskUpdatePayload>;
|
|
80620
81846
|
spf_deleteAsk?: Maybe<SpfDeleteAskPayload>;
|
|
80621
81847
|
spf_deleteAskComment?: Maybe<SpfDeleteAskCommentPayload>;
|
|
80622
81848
|
spf_deleteAskLink?: Maybe<SpfDeleteAskLinkPayload>;
|
|
80623
81849
|
spf_deleteAskUpdate?: Maybe<SpfDeleteAskUpdatePayload>;
|
|
80624
|
-
spf_updateAskComment?: Maybe<
|
|
80625
|
-
spf_updateAskDescription?: Maybe<
|
|
80626
|
-
spf_updateAskImpactedWork?: Maybe<
|
|
80627
|
-
spf_updateAskJustification?: Maybe<
|
|
80628
|
-
spf_updateAskName?: Maybe<
|
|
80629
|
-
spf_updateAskOwner?: Maybe<
|
|
80630
|
-
spf_updateAskPriority?: Maybe<
|
|
80631
|
-
spf_updateAskReceivingTeam?: Maybe<
|
|
80632
|
-
spf_updateAskSubmitter?: Maybe<
|
|
80633
|
-
spf_updateAskSubmittingTeam?: Maybe<
|
|
80634
|
-
spf_updateAskUpdateDescription?: Maybe<
|
|
80635
|
-
spf_updateAskUpdateStatus?: Maybe<
|
|
80636
|
-
spf_updateAskUpdateTargetDate?: Maybe<
|
|
81850
|
+
spf_updateAskComment?: Maybe<SpfUpsertAskCommentPayload>;
|
|
81851
|
+
spf_updateAskDescription?: Maybe<SpfUpsertAskPayload>;
|
|
81852
|
+
spf_updateAskImpactedWork?: Maybe<SpfUpsertAskPayload>;
|
|
81853
|
+
spf_updateAskJustification?: Maybe<SpfUpsertAskPayload>;
|
|
81854
|
+
spf_updateAskName?: Maybe<SpfUpsertAskPayload>;
|
|
81855
|
+
spf_updateAskOwner?: Maybe<SpfUpsertAskPayload>;
|
|
81856
|
+
spf_updateAskPriority?: Maybe<SpfUpsertAskPayload>;
|
|
81857
|
+
spf_updateAskReceivingTeam?: Maybe<SpfUpsertAskPayload>;
|
|
81858
|
+
spf_updateAskSubmitter?: Maybe<SpfUpsertAskPayload>;
|
|
81859
|
+
spf_updateAskSubmittingTeam?: Maybe<SpfUpsertAskPayload>;
|
|
81860
|
+
spf_updateAskUpdateDescription?: Maybe<SpfUpsertAskUpdatePayload>;
|
|
81861
|
+
spf_updateAskUpdateStatus?: Maybe<SpfUpsertAskUpdatePayload>;
|
|
81862
|
+
spf_updateAskUpdateTargetDate?: Maybe<SpfUpsertAskUpdatePayload>;
|
|
80637
81863
|
splitIssue?: Maybe<SplitIssueOutput>;
|
|
81864
|
+
stakeholderComms_addStakeholderMembers?: Maybe<StakeholderCommsStakeholderGroupMutationResponse>;
|
|
80638
81865
|
stakeholderComms_createStakeholder?: Maybe<StakeholderCommsStakeholderAssignmentResponse>;
|
|
81866
|
+
stakeholderComms_createStakeholderGroupAndMembers?: Maybe<StakeholderCommsStakeholderGroupsAndMemberships>;
|
|
80639
81867
|
stakeholderComms_removeStakeholderAssignment?: Maybe<StakeholderCommsStakeholderAssignmentResponse>;
|
|
81868
|
+
stakeholderComms_removeStakeholderGroup?: Maybe<StakeholderCommsStakeholderGroupMutationResponse>;
|
|
81869
|
+
stakeholderComms_removeStakeholderGroups?: Maybe<StakeholderCommsStakeholderGroupMutationResponse>;
|
|
81870
|
+
stakeholderComms_removeStakeholderMembers?: Maybe<StakeholderCommsStakeholderGroupMutationResponse>;
|
|
80640
81871
|
stakeholderComms_updateStakeholder?: Maybe<StakeholderCommsStakeholderResponse>;
|
|
81872
|
+
stakeholderComms_updateStakeholderGroup?: Maybe<StakeholderCommsStakeholderGroup>;
|
|
80641
81873
|
startSprint?: Maybe<SprintResponse>;
|
|
80642
81874
|
subscribeToApp?: Maybe<AppSubscribePayload>;
|
|
80643
81875
|
team?: Maybe<TeamMutation>;
|
|
@@ -80752,6 +81984,10 @@ export declare type MutationAdmin_CreateAccessUrlArgs = {
|
|
|
80752
81984
|
export declare type MutationAdmin_DeleteAccessUrlArgs = {
|
|
80753
81985
|
id: Scalars['ID']['input'];
|
|
80754
81986
|
};
|
|
81987
|
+
export declare type MutationAgentStudio_AddGroupsToCreatePermissionArgs = {
|
|
81988
|
+
cloudId: Scalars['ID']['input'];
|
|
81989
|
+
groupARIs: Array<Scalars['ID']['input']>;
|
|
81990
|
+
};
|
|
80755
81991
|
export declare type MutationAgentStudio_CreateAgentArgs = {
|
|
80756
81992
|
cloudId: Scalars['String']['input'];
|
|
80757
81993
|
input: AgentStudioCreateAgentInput;
|
|
@@ -80766,6 +82002,10 @@ export declare type MutationAgentStudio_DeleteAgentArgs = {
|
|
|
80766
82002
|
export declare type MutationAgentStudio_DeleteScenarioArgs = {
|
|
80767
82003
|
id: Scalars['ID']['input'];
|
|
80768
82004
|
};
|
|
82005
|
+
export declare type MutationAgentStudio_RemoveGroupsFromCreatePermissionArgs = {
|
|
82006
|
+
cloudId: Scalars['ID']['input'];
|
|
82007
|
+
groupARIs: Array<Scalars['ID']['input']>;
|
|
82008
|
+
};
|
|
80769
82009
|
export declare type MutationAgentStudio_UpdateAgentActionsArgs = {
|
|
80770
82010
|
id: Scalars['ID']['input'];
|
|
80771
82011
|
input: AgentStudioActionConfigurationInput;
|
|
@@ -80786,6 +82026,10 @@ export declare type MutationAgentStudio_UpdateConversationStartersArgs = {
|
|
|
80786
82026
|
id: Scalars['ID']['input'];
|
|
80787
82027
|
input: AgentStudioUpdateConversationStartersInput;
|
|
80788
82028
|
};
|
|
82029
|
+
export declare type MutationAgentStudio_UpdateCreatePermissionModeArgs = {
|
|
82030
|
+
cloudId: Scalars['ID']['input'];
|
|
82031
|
+
mode: AgentStudioCreateAgentPermissionMode;
|
|
82032
|
+
};
|
|
80789
82033
|
export declare type MutationAgentStudio_UpdateScenarioArgs = {
|
|
80790
82034
|
id: Scalars['ID']['input'];
|
|
80791
82035
|
input: AgentStudioUpdateScenarioInput;
|
|
@@ -80818,7 +82062,9 @@ export declare type MutationAssetsDm_AutoColumnMappingArgs = {
|
|
|
80818
82062
|
};
|
|
80819
82063
|
export declare type MutationAssetsDm_DataSourceArgs = {
|
|
80820
82064
|
cloudId: Scalars['ID']['input'];
|
|
82065
|
+
dataSourceId?: InputMaybe<Scalars['String']['input']>;
|
|
80821
82066
|
input: AssetsDmDataSourceInput;
|
|
82067
|
+
operation?: InputMaybe<AssetsDmDataSourceOperationEnum>;
|
|
80822
82068
|
workspaceId: Scalars['ID']['input'];
|
|
80823
82069
|
};
|
|
80824
82070
|
export declare type MutationAssetsDm_GenerateAdapterTokenArgs = {
|
|
@@ -81292,6 +82538,7 @@ export declare type MutationCsmAi_CreateActionArgs = {
|
|
|
81292
82538
|
input: CsmAiCreateActionInput;
|
|
81293
82539
|
};
|
|
81294
82540
|
export declare type MutationCsmAi_CreateCoachingContentArgs = {
|
|
82541
|
+
csmAIAgentId?: InputMaybe<Scalars['ID']['input']>;
|
|
81295
82542
|
csmAiHubId: Scalars['ID']['input'];
|
|
81296
82543
|
helpCenterAri: Scalars['ID']['input'];
|
|
81297
82544
|
input: CsmAiCreateCoachingContentInput;
|
|
@@ -81301,6 +82548,12 @@ export declare type MutationCsmAi_DeleteActionArgs = {
|
|
|
81301
82548
|
csmAiHubId: Scalars['ID']['input'];
|
|
81302
82549
|
helpCenterAri: Scalars['ID']['input'];
|
|
81303
82550
|
};
|
|
82551
|
+
export declare type MutationCsmAi_DeleteCoachingContentArgs = {
|
|
82552
|
+
csmAIAgentId?: InputMaybe<Scalars['ID']['input']>;
|
|
82553
|
+
csmAiCoachingContentId: Scalars['ID']['input'];
|
|
82554
|
+
csmAiHubId: Scalars['ID']['input'];
|
|
82555
|
+
helpCenterAri: Scalars['ID']['input'];
|
|
82556
|
+
};
|
|
81304
82557
|
export declare type MutationCsmAi_UpdateActionArgs = {
|
|
81305
82558
|
csmAiActionId: Scalars['ID']['input'];
|
|
81306
82559
|
csmAiHubId: Scalars['ID']['input'];
|
|
@@ -81312,6 +82565,13 @@ export declare type MutationCsmAi_UpdateAgentArgs = {
|
|
|
81312
82565
|
helpCenterAri: Scalars['ID']['input'];
|
|
81313
82566
|
input?: InputMaybe<CsmAiUpdateAgentInput>;
|
|
81314
82567
|
};
|
|
82568
|
+
export declare type MutationCsmAi_UpdateCoachingContentArgs = {
|
|
82569
|
+
csmAIAgentId?: InputMaybe<Scalars['ID']['input']>;
|
|
82570
|
+
csmAiCoachingContentId: Scalars['ID']['input'];
|
|
82571
|
+
csmAiHubId: Scalars['ID']['input'];
|
|
82572
|
+
helpCenterAri: Scalars['ID']['input'];
|
|
82573
|
+
input: CsmAiUpdateCoachingContentInput;
|
|
82574
|
+
};
|
|
81315
82575
|
export declare type MutationCsmAi_UpdateHandoffConfigArgs = {
|
|
81316
82576
|
configId: Scalars['ID']['input'];
|
|
81317
82577
|
csmAiHubId: Scalars['ID']['input'];
|
|
@@ -81501,6 +82761,12 @@ export declare type MutationDevai_InvokeSelfCorrectionArgs = {
|
|
|
81501
82761
|
issueAri: Scalars['ID']['input'];
|
|
81502
82762
|
jobId: Scalars['ID']['input'];
|
|
81503
82763
|
};
|
|
82764
|
+
export declare type MutationDevai_RovodevArchiveSessionArgs = {
|
|
82765
|
+
input: DevAiRovoDevArchiveSessionInput;
|
|
82766
|
+
};
|
|
82767
|
+
export declare type MutationDevai_RovodevCreateBulkSessionArgs = {
|
|
82768
|
+
input: DevAiRovoDevBulkCreateSessionInput;
|
|
82769
|
+
};
|
|
81504
82770
|
export declare type MutationDevai_RovodevCreateSessionArgs = {
|
|
81505
82771
|
input: DevAiRovoDevCreateSessionInput;
|
|
81506
82772
|
};
|
|
@@ -81539,6 +82805,9 @@ export declare type MutationGeneratePermsReportArgs = {
|
|
|
81539
82805
|
id: Scalars['ID']['input'];
|
|
81540
82806
|
targetType: PermsReportTargetType;
|
|
81541
82807
|
};
|
|
82808
|
+
export declare type MutationGoals_SetWatchingGoalArgs = {
|
|
82809
|
+
input?: InputMaybe<TownsquareGoalsSetWatchingGoalInput>;
|
|
82810
|
+
};
|
|
81542
82811
|
export declare type MutationGrantContentAccessArgs = {
|
|
81543
82812
|
grantContentAccessInput: GrantContentAccessInput;
|
|
81544
82813
|
};
|
|
@@ -81563,6 +82832,12 @@ export declare type MutationHelpLayoutArgs = {
|
|
|
81563
82832
|
export declare type MutationHelpObjectStoreArgs = {
|
|
81564
82833
|
cloudId: Scalars['ID']['input'];
|
|
81565
82834
|
};
|
|
82835
|
+
export declare type MutationHome_AddTagsByIdArgs = {
|
|
82836
|
+
input: TownsquareAddTagToEntityByIdInput;
|
|
82837
|
+
};
|
|
82838
|
+
export declare type MutationHome_RemoveTagsArgs = {
|
|
82839
|
+
input: TownsquareRemoveTagsInput;
|
|
82840
|
+
};
|
|
81566
82841
|
export declare type MutationInstallAppArgs = {
|
|
81567
82842
|
input: AppInstallationInput;
|
|
81568
82843
|
};
|
|
@@ -81579,6 +82854,10 @@ export declare type MutationJira_AddFieldsToFieldSchemeArgs = {
|
|
|
81579
82854
|
cloudId: Scalars['ID']['input'];
|
|
81580
82855
|
input: JiraAddFieldsToFieldSchemeInput;
|
|
81581
82856
|
};
|
|
82857
|
+
export declare type MutationJira_AddTimelineIssueLinkArgs = {
|
|
82858
|
+
cloudId: Scalars['ID']['input'];
|
|
82859
|
+
input: JiraAddTimelineIssueLinkInput;
|
|
82860
|
+
};
|
|
81582
82861
|
export declare type MutationJira_BulkSetBoardViewColumnStateArgs = {
|
|
81583
82862
|
input: JiraBulkSetBoardViewColumnStateInput;
|
|
81584
82863
|
};
|
|
@@ -81644,6 +82923,10 @@ export declare type MutationJira_RemoveFieldsFromFieldSchemeArgs = {
|
|
|
81644
82923
|
cloudId: Scalars['ID']['input'];
|
|
81645
82924
|
input: JiraRemoveFieldsFromFieldSchemeInput;
|
|
81646
82925
|
};
|
|
82926
|
+
export declare type MutationJira_RemoveTimelineIssueLinkArgs = {
|
|
82927
|
+
cloudId: Scalars['ID']['input'];
|
|
82928
|
+
input: JiraRemoveTimelineIssueLinkInput;
|
|
82929
|
+
};
|
|
81647
82930
|
export declare type MutationJira_RenameBoardViewStatusColumnArgs = {
|
|
81648
82931
|
input: JiraRenameBoardViewStatusColumnInput;
|
|
81649
82932
|
};
|
|
@@ -81657,6 +82940,10 @@ export declare type MutationJira_RestoreGlobalCustomFieldsArgs = {
|
|
|
81657
82940
|
cloudId: Scalars['ID']['input'];
|
|
81658
82941
|
input: JiraRestoreGlobalCustomFieldsInput;
|
|
81659
82942
|
};
|
|
82943
|
+
export declare type MutationJira_ScheduleTimelineItemArgs = {
|
|
82944
|
+
cloudId: Scalars['ID']['input'];
|
|
82945
|
+
input: JiraScheduleTimelineItemInput;
|
|
82946
|
+
};
|
|
81660
82947
|
export declare type MutationJira_SetBoardIssueCardCoverArgs = {
|
|
81661
82948
|
input: JiraSetBoardIssueCardCoverInput;
|
|
81662
82949
|
};
|
|
@@ -81849,12 +83136,36 @@ export declare type MutationPolarisAddReactionArgs = {
|
|
|
81849
83136
|
export declare type MutationPolarisDeleteReactionArgs = {
|
|
81850
83137
|
input: PolarisDeleteReactionInput;
|
|
81851
83138
|
};
|
|
83139
|
+
export declare type MutationProjects_AddGoalLinkArgs = {
|
|
83140
|
+
input: TownsquareProjectsAddGoalLink;
|
|
83141
|
+
};
|
|
83142
|
+
export declare type MutationProjects_AddMembersArgs = {
|
|
83143
|
+
input?: InputMaybe<TownsquareProjectsAddMembersInput>;
|
|
83144
|
+
};
|
|
83145
|
+
export declare type MutationProjects_CreateArgs = {
|
|
83146
|
+
input: TownsquareProjectsCreateInput;
|
|
83147
|
+
};
|
|
81852
83148
|
export declare type MutationProjects_CreateLinkArgs = {
|
|
81853
83149
|
input?: InputMaybe<TownsquareProjectsCreateLinkInput>;
|
|
81854
83150
|
};
|
|
83151
|
+
export declare type MutationProjects_DeleteLinkArgs = {
|
|
83152
|
+
input?: InputMaybe<TownsquareProjectsDeleteLinkInput>;
|
|
83153
|
+
};
|
|
81855
83154
|
export declare type MutationProjects_EditArgs = {
|
|
81856
83155
|
input?: InputMaybe<TownsquareProjectsEditInput>;
|
|
81857
83156
|
};
|
|
83157
|
+
export declare type MutationProjects_EditLinkArgs = {
|
|
83158
|
+
input?: InputMaybe<TownsquareProjectsEditLinkInput>;
|
|
83159
|
+
};
|
|
83160
|
+
export declare type MutationProjects_RemoveMemberArgs = {
|
|
83161
|
+
input: TownsquareProjectsRemoveMemberInput;
|
|
83162
|
+
};
|
|
83163
|
+
export declare type MutationProjects_SetWatchingProjectArgs = {
|
|
83164
|
+
input?: InputMaybe<TownsquareProjectsSetWatchingProjectInput>;
|
|
83165
|
+
};
|
|
83166
|
+
export declare type MutationProjects_ShareProjectArgs = {
|
|
83167
|
+
input?: InputMaybe<TownsquareProjectsShareProjectInput>;
|
|
83168
|
+
};
|
|
81858
83169
|
export declare type MutationPublicLinkPagesAdminActionArgs = {
|
|
81859
83170
|
action: PublicLinkAdminAction;
|
|
81860
83171
|
pageIds: Array<Scalars['ID']['input']>;
|
|
@@ -82166,15 +83477,36 @@ export declare type MutationSpf_UpdateAskUpdateTargetDateArgs = {
|
|
|
82166
83477
|
export declare type MutationSplitIssueArgs = {
|
|
82167
83478
|
input?: InputMaybe<SplitIssueInput>;
|
|
82168
83479
|
};
|
|
83480
|
+
export declare type MutationStakeholderComms_AddStakeholderMembersArgs = {
|
|
83481
|
+
groupId: Scalars['String']['input'];
|
|
83482
|
+
stakeholders?: InputMaybe<Array<StakeholderCommsCreateStakeholderInput>>;
|
|
83483
|
+
};
|
|
82169
83484
|
export declare type MutationStakeholderComms_CreateStakeholderArgs = {
|
|
82170
83485
|
stakeholder: StakeholderCommsCreateStakeholderInput;
|
|
82171
83486
|
};
|
|
83487
|
+
export declare type MutationStakeholderComms_CreateStakeholderGroupAndMembersArgs = {
|
|
83488
|
+
stakeholderGroupInput: StakeholderCommsCreateStakeholderGroupInput;
|
|
83489
|
+
stakeholders?: InputMaybe<Array<InputMaybe<StakeholderCommsCreateStakeholderInput>>>;
|
|
83490
|
+
};
|
|
82172
83491
|
export declare type MutationStakeholderComms_RemoveStakeholderAssignmentArgs = {
|
|
82173
83492
|
stakeholderAssignmentInput: StakeholderCommsStakeholderAssignmentIdInput;
|
|
82174
83493
|
};
|
|
83494
|
+
export declare type MutationStakeholderComms_RemoveStakeholderGroupArgs = {
|
|
83495
|
+
id: Scalars['String']['input'];
|
|
83496
|
+
};
|
|
83497
|
+
export declare type MutationStakeholderComms_RemoveStakeholderGroupsArgs = {
|
|
83498
|
+
ids: Array<Scalars['String']['input']>;
|
|
83499
|
+
};
|
|
83500
|
+
export declare type MutationStakeholderComms_RemoveStakeholderMembersArgs = {
|
|
83501
|
+
groupId: Scalars['String']['input'];
|
|
83502
|
+
stakeholderIds?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
83503
|
+
};
|
|
82175
83504
|
export declare type MutationStakeholderComms_UpdateStakeholderArgs = {
|
|
82176
83505
|
updateStakeholderInput: StakeholderCommsUpdateStakeholderInput;
|
|
82177
83506
|
};
|
|
83507
|
+
export declare type MutationStakeholderComms_UpdateStakeholderGroupArgs = {
|
|
83508
|
+
stakeholderGroupInput: StakeholderCommsUpdateStakeholderGroupInput;
|
|
83509
|
+
};
|
|
82178
83510
|
export declare type MutationStartSprintArgs = {
|
|
82179
83511
|
input?: InputMaybe<StartSprintInput>;
|
|
82180
83512
|
};
|
|
@@ -83685,13 +85017,6 @@ export declare type PaginatedSmartLinkList = {
|
|
|
83685
85017
|
nodes?: Maybe<Array<Maybe<SmartLink>>>;
|
|
83686
85018
|
pageInfo?: Maybe<PageInfo>;
|
|
83687
85019
|
};
|
|
83688
|
-
export declare type PaginatedSnippetList = {
|
|
83689
|
-
__typename?: 'PaginatedSnippetList';
|
|
83690
|
-
count?: Maybe<Scalars['Int']['output']>;
|
|
83691
|
-
edges?: Maybe<Array<Maybe<SnippetEdge>>>;
|
|
83692
|
-
nodes?: Maybe<Array<Maybe<Snippet>>>;
|
|
83693
|
-
pageInfo?: Maybe<PageInfo>;
|
|
83694
|
-
};
|
|
83695
85020
|
export declare type PaginatedSpaceList = {
|
|
83696
85021
|
__typename?: 'PaginatedSpaceList';
|
|
83697
85022
|
count?: Maybe<Scalars['Int']['output']>;
|
|
@@ -85210,8 +86535,9 @@ export declare type Query = {
|
|
|
85210
86535
|
agentStudio_agentById?: Maybe<AgentStudioAgentResult>;
|
|
85211
86536
|
agentStudio_getAgents?: Maybe<AgentStudioAgentsConnection>;
|
|
85212
86537
|
agentStudio_getByExternalReference?: Maybe<AgentStudioAgentResult>;
|
|
86538
|
+
agentStudio_getCreateAgentPermissions?: Maybe<AgentStudioAgentCreatePermissionsConnection>;
|
|
85213
86539
|
agentStudio_scenarioById?: Maybe<AgentStudioScenarioResult>;
|
|
85214
|
-
agentStudio_scenarioListByContainerId?: Maybe<
|
|
86540
|
+
agentStudio_scenarioListByContainerId?: Maybe<AgentStudioScenariosResult>;
|
|
85215
86541
|
agentStudio_scenariosByIds?: Maybe<Array<Maybe<AgentStudioScenario>>>;
|
|
85216
86542
|
agentStudio_suggestConversationStarters?: Maybe<AgentStudioSuggestConversationStartersResult>;
|
|
85217
86543
|
aiCoreApi_vsaQuestionsByProject?: Maybe<AiCoreApiVsaQuestionsResult>;
|
|
@@ -85247,8 +86573,13 @@ export declare type Query = {
|
|
|
85247
86573
|
apps?: Maybe<AppConnection>;
|
|
85248
86574
|
aquaOutgoingEmailLogs?: Maybe<AquaOutgoingEmailLogsQueryApi>;
|
|
85249
86575
|
assetsDM_adapters?: Maybe<AssetsDmAdapters>;
|
|
86576
|
+
assetsDM_dataSourceConfig?: Maybe<AssetsDmDataSourceConfig>;
|
|
86577
|
+
assetsDM_dataSourceDetails?: Maybe<AssetsDmDataSourceDetails>;
|
|
85250
86578
|
assetsDM_dataSourceFormFields?: Maybe<AssetsDmDataSourceFormFields>;
|
|
86579
|
+
assetsDM_dataSourceTransform?: Maybe<AssetsDmDataSourceTransform>;
|
|
85251
86580
|
assetsDM_objectClasses?: Maybe<Array<Maybe<AssetsDmObjectClass>>>;
|
|
86581
|
+
assetsDM_objectsListColumns?: Maybe<AssetsDmObjectsListColumns>;
|
|
86582
|
+
assetsDM_objectsListDataRows?: Maybe<AssetsDmObjectsListDataRows>;
|
|
85252
86583
|
assets_objectTypesByIds?: Maybe<Array<Maybe<AssetsObjectType>>>;
|
|
85253
86584
|
assets_objectsByIds?: Maybe<Array<Maybe<AssetsObject>>>;
|
|
85254
86585
|
assets_schemasByIds?: Maybe<Array<Maybe<AssetsSchema>>>;
|
|
@@ -85277,6 +86608,7 @@ export declare type Query = {
|
|
|
85277
86608
|
channelPlatform_getConnectDetails?: Maybe<ChannelPlatformConnectDetails>;
|
|
85278
86609
|
channelPlatform_getContactDetails?: Maybe<Array<Maybe<ChannelPlatformContact>>>;
|
|
85279
86610
|
channelPlatform_getQueue?: Maybe<ChannelPlatformConnectQueue>;
|
|
86611
|
+
channelPlatform_getSurveyLink?: Maybe<ChannelPlatformSurveyLinkResponse>;
|
|
85280
86612
|
channelPlatform_getTranscript?: Maybe<ChannelPlatformTranscriptResponse>;
|
|
85281
86613
|
channelPlatform_listQueues?: Maybe<Array<Maybe<ChannelPlatformConnectQueue>>>;
|
|
85282
86614
|
channelPlatform_sampleQueueById?: Maybe<ChannelPlatformSampleQueue>;
|
|
@@ -85287,6 +86619,7 @@ export declare type Query = {
|
|
|
85287
86619
|
collabContext_workspaceIsConnectedToWorkspace?: Maybe<CollabContextWorkspaceConnection>;
|
|
85288
86620
|
collabDraft?: Maybe<CollabDraft>;
|
|
85289
86621
|
collabToken?: Maybe<CollabTokenResponse>;
|
|
86622
|
+
collaboratorsLinkedToJiraIssue?: Maybe<GraphStoreCypherQueryConnection>;
|
|
85290
86623
|
comments?: Maybe<PaginatedCommentList>;
|
|
85291
86624
|
compass?: Maybe<CompassCatalogQueryApi>;
|
|
85292
86625
|
confluence?: Maybe<ConfluenceQueryApi>;
|
|
@@ -85373,6 +86706,7 @@ export declare type Query = {
|
|
|
85373
86706
|
contentWatchers?: Maybe<PaginatedPersonList>;
|
|
85374
86707
|
contributorsLinkedToAtlasProject?: Maybe<GraphStoreCypherQueryConnection>;
|
|
85375
86708
|
contributorsLinkedToConfluencePage?: Maybe<GraphStoreCypherQueryConnection>;
|
|
86709
|
+
contributorsLinkedToConfluencePageV2?: Maybe<GraphStoreCypherQueryConnection>;
|
|
85376
86710
|
convoai_jiraEchoAiFeature?: Maybe<Scalars['String']['output']>;
|
|
85377
86711
|
convoai_jiraRelatedResourcesSuggestions?: Maybe<ConvoAiJiraIssueRelatedResourcesResult>;
|
|
85378
86712
|
convoai_jiraSimilarWorkItems?: Maybe<ConvoAiJiraSimilarWorkItemsConnection>;
|
|
@@ -85381,6 +86715,7 @@ export declare type Query = {
|
|
|
85381
86715
|
countGroupBySpace?: Maybe<CountGroupBySpace>;
|
|
85382
86716
|
countGroupByUser?: Maybe<CountGroupByUser>;
|
|
85383
86717
|
countUsersGroupByPage?: Maybe<CountUsersGroupByPage>;
|
|
86718
|
+
cpls_capacityPlanningScope?: Maybe<CplsCapacityPlanningScope>;
|
|
85384
86719
|
cqlMetaData?: Maybe<Confluence_CqlMetaData>;
|
|
85385
86720
|
csmAi_getAiHubByHelpCenterAri?: Maybe<CsmAiHubResult>;
|
|
85386
86721
|
currentConfluenceUser?: Maybe<CurrentConfluenceUser>;
|
|
@@ -85435,6 +86770,8 @@ export declare type Query = {
|
|
|
85435
86770
|
devai_rovodevSessionById?: Maybe<DevAiRovoDevSession>;
|
|
85436
86771
|
devai_rovodevSessions?: Maybe<DevAiRovoDevSessionConnection>;
|
|
85437
86772
|
devai_rovodevSessionsByAri?: Maybe<Array<DevAiRovoDevSession>>;
|
|
86773
|
+
devai_rovodevSessionsByCloudId?: Maybe<DevAiRovoDevSessionConnection>;
|
|
86774
|
+
devai_rovodevSessionsByIssueKey?: Maybe<DevAiRovoDevSessionConnection>;
|
|
85438
86775
|
devai_technicalPlannerJobById?: Maybe<DevAiTechnicalPlannerJob>;
|
|
85439
86776
|
devai_technicalPlannerJobsForIssue?: Maybe<DevAiTechnicalPlannerJobConnection>;
|
|
85440
86777
|
developerLogAccess?: Maybe<Array<Maybe<DeveloperLogAccessResult>>>;
|
|
@@ -85499,6 +86836,7 @@ export declare type Query = {
|
|
|
85499
86836
|
growthUnifiedProfile_getOrgProfile?: Maybe<GrowthUnifiedProfileOrgProfileResult>;
|
|
85500
86837
|
growthUnifiedProfile_getUnifiedProfile?: Maybe<GrowthUnifiedProfileResult>;
|
|
85501
86838
|
growthUnifiedProfile_getUnifiedUserProfile?: Maybe<GrowthUnifiedProfileUserProfileResult>;
|
|
86839
|
+
growthUnifiedProfile_siteProfile?: Maybe<GrowthUnifiedProfileSiteProfileResult>;
|
|
85502
86840
|
hasUserAccessAdminRole?: Maybe<Scalars['Boolean']['output']>;
|
|
85503
86841
|
hasUserCommented?: Maybe<Scalars['Boolean']['output']>;
|
|
85504
86842
|
helpCenter?: Maybe<HelpCenterQueryApi>;
|
|
@@ -85550,6 +86888,9 @@ export declare type Query = {
|
|
|
85550
86888
|
jira_issueSearchViewsByIds?: Maybe<Array<Maybe<JiraIssueSearchView>>>;
|
|
85551
86889
|
jira_issuesByIds?: Maybe<Array<Maybe<JiraIssue>>>;
|
|
85552
86890
|
jira_jiraServiceManagementDefaultCommentBehavior?: Maybe<JiraServiceManagementDefaultCommentBehavior>;
|
|
86891
|
+
jira_onboardingConfigById?: Maybe<JiraOnboardingConfig>;
|
|
86892
|
+
jira_onboardingConfigByTarget?: Maybe<JiraOnboardingConfig>;
|
|
86893
|
+
jira_onboardingConfigs?: Maybe<JiraOnboardingConfigConnection>;
|
|
85553
86894
|
jira_projectByIdOrKey?: Maybe<JiraProject>;
|
|
85554
86895
|
jira_projectLevelSidebarMenuCustomization?: Maybe<JiraProjectLevelSidebarMenuCustomization>;
|
|
85555
86896
|
jira_projectTypesByIds?: Maybe<Array<Maybe<JiraProjectTypeDetails>>>;
|
|
@@ -85567,7 +86908,9 @@ export declare type Query = {
|
|
|
85567
86908
|
latestKnowledgeGraphObject?: Maybe<KnowledgeGraphObjectResponse>;
|
|
85568
86909
|
license?: Maybe<License>;
|
|
85569
86910
|
linksIncomingToConfluencePage?: Maybe<GraphStoreCypherQueryConnection>;
|
|
86911
|
+
linksIncomingToJiraIssue?: Maybe<GraphStoreCypherQueryConnection>;
|
|
85570
86912
|
linksOutgoingFromConfluencePage?: Maybe<GraphStoreCypherQueryConnection>;
|
|
86913
|
+
linksOutgoingFromJiraIssue?: Maybe<GraphStoreCypherQueryConnection>;
|
|
85571
86914
|
localStorage?: Maybe<LocalStorage>;
|
|
85572
86915
|
logAccessByContexts?: Maybe<Array<InstallationContextWithInstallationIdResponse>>;
|
|
85573
86916
|
lookAndFeel?: Maybe<LookAndFeelSettings>;
|
|
@@ -85582,6 +86925,7 @@ export declare type Query = {
|
|
|
85582
86925
|
loom_meetingRecurrence?: Maybe<LoomMeetingRecurrence>;
|
|
85583
86926
|
loom_meetingRecurrences?: Maybe<Array<Maybe<LoomMeetingRecurrence>>>;
|
|
85584
86927
|
loom_meetings?: Maybe<Array<Maybe<LoomMeeting>>>;
|
|
86928
|
+
loom_meetingsSearch?: Maybe<LoomMeetings>;
|
|
85585
86929
|
loom_primaryAuthTypeForEmail?: Maybe<LoomUserPrimaryAuthType>;
|
|
85586
86930
|
loom_settings?: Maybe<LoomSettings>;
|
|
85587
86931
|
loom_space?: Maybe<LoomSpace>;
|
|
@@ -85673,6 +87017,7 @@ export declare type Query = {
|
|
|
85673
87017
|
projects_byAris?: Maybe<Array<Maybe<TownsquareProject>>>;
|
|
85674
87018
|
projects_byId?: Maybe<TownsquareProject>;
|
|
85675
87019
|
projects_byIds?: Maybe<Array<Maybe<TownsquareProject>>>;
|
|
87020
|
+
projects_linksByIds?: Maybe<Array<Maybe<TownsquareLink>>>;
|
|
85676
87021
|
projects_search?: Maybe<TownsquareProjectConnection>;
|
|
85677
87022
|
projects_updatesByIds?: Maybe<Array<Maybe<TownsquareProjectUpdate>>>;
|
|
85678
87023
|
ptpage?: Maybe<PtPage>;
|
|
@@ -85726,7 +87071,6 @@ export declare type Query = {
|
|
|
85726
87071
|
sitePermissions?: Maybe<SitePermission>;
|
|
85727
87072
|
siteSettings?: Maybe<SiteSettings>;
|
|
85728
87073
|
smarts?: Maybe<SmartsQueryApi>;
|
|
85729
|
-
snippets?: Maybe<PaginatedSnippetList>;
|
|
85730
87074
|
socialSignals?: Maybe<SocialSignalsApi>;
|
|
85731
87075
|
softwareBoards?: Maybe<BoardScopeConnection>;
|
|
85732
87076
|
spaViewContext?: Maybe<SpaViewModel>;
|
|
@@ -85753,9 +87097,15 @@ export declare type Query = {
|
|
|
85753
87097
|
sqlSlowQueryLogs: Array<SqlSlowQueryLogsResponse>;
|
|
85754
87098
|
stakeholderComms_getAssignmentsByStakeholder?: Maybe<StakeholderCommsPaginatedAssignmentResults>;
|
|
85755
87099
|
stakeholderComms_getAssignmentsByStakeholderV2?: Maybe<StakeholderCommsAssignmentConnection>;
|
|
87100
|
+
stakeholderComms_getMemberships?: Maybe<Array<Maybe<StakeholderCommsStakeholderGroupMembership>>>;
|
|
85756
87101
|
stakeholderComms_getStakeholder?: Maybe<StakeholderCommsStakeholderResponse>;
|
|
87102
|
+
stakeholderComms_getStakeholderGroup?: Maybe<StakeholderCommsStakeholderGroup>;
|
|
87103
|
+
stakeholderComms_getStakeholderGroupByMembership?: Maybe<Array<Maybe<StakeholderCommsStakeholderGroup>>>;
|
|
87104
|
+
stakeholderComms_getStakeholderGroupWithMemberships?: Maybe<StakeholderCommsStakeholderGroupsAndMemberships>;
|
|
87105
|
+
stakeholderComms_getStakeholderGroupsWithMemberships?: Maybe<StakeholderCommsStakeholderGroupConnection>;
|
|
85757
87106
|
stakeholderComms_getStakeholdersByAssignment?: Maybe<StakeholderCommsPaginatedStakeholderResults>;
|
|
85758
87107
|
stakeholderComms_getStakeholdersByAssignmentV2?: Maybe<StakeholderCommsStakeholderConnection>;
|
|
87108
|
+
stakeholderComms_isStakeholderGroupNameUnique?: Maybe<Scalars['Boolean']['output']>;
|
|
85759
87109
|
stalePages?: Maybe<PaginatedStalePagePayloadList>;
|
|
85760
87110
|
suggest?: Maybe<QuerySuggestionApi>;
|
|
85761
87111
|
suggestedSpaces?: Maybe<PaginatedSpaceList>;
|
|
@@ -85848,14 +87198,23 @@ export declare type QueryAgentStudio_GetByExternalReferenceArgs = {
|
|
|
85848
87198
|
cloudId: Scalars['String']['input'];
|
|
85849
87199
|
externalReference: Scalars['String']['input'];
|
|
85850
87200
|
};
|
|
87201
|
+
export declare type QueryAgentStudio_GetCreateAgentPermissionsArgs = {
|
|
87202
|
+
cloudId: Scalars['String']['input'];
|
|
87203
|
+
};
|
|
85851
87204
|
export declare type QueryAgentStudio_ScenarioByIdArgs = {
|
|
87205
|
+
containerId: Scalars['ID']['input'];
|
|
85852
87206
|
id: Scalars['ID']['input'];
|
|
85853
87207
|
};
|
|
85854
87208
|
export declare type QueryAgentStudio_ScenarioListByContainerIdArgs = {
|
|
87209
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
87210
|
+
before?: InputMaybe<Scalars['String']['input']>;
|
|
85855
87211
|
cloudId: Scalars['String']['input'];
|
|
85856
87212
|
containerId: Scalars['ID']['input'];
|
|
87213
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
87214
|
+
last?: InputMaybe<Scalars['Int']['input']>;
|
|
85857
87215
|
};
|
|
85858
87216
|
export declare type QueryAgentStudio_ScenariosByIdsArgs = {
|
|
87217
|
+
containerId: Scalars['ID']['input'];
|
|
85859
87218
|
ids: Array<Scalars['ID']['input']>;
|
|
85860
87219
|
};
|
|
85861
87220
|
export declare type QueryAgentStudio_SuggestConversationStartersArgs = {
|
|
@@ -86017,14 +87376,46 @@ export declare type QueryAssetsDm_AdaptersArgs = {
|
|
|
86017
87376
|
cloudId: Scalars['ID']['input'];
|
|
86018
87377
|
workspaceId: Scalars['ID']['input'];
|
|
86019
87378
|
};
|
|
87379
|
+
export declare type QueryAssetsDm_DataSourceConfigArgs = {
|
|
87380
|
+
cloudId: Scalars['ID']['input'];
|
|
87381
|
+
dataSourceId: Scalars['ID']['input'];
|
|
87382
|
+
dataSourceTypeId: Scalars['Int']['input'];
|
|
87383
|
+
workspaceId: Scalars['ID']['input'];
|
|
87384
|
+
};
|
|
87385
|
+
export declare type QueryAssetsDm_DataSourceDetailsArgs = {
|
|
87386
|
+
cloudId: Scalars['ID']['input'];
|
|
87387
|
+
dataSourceId: Scalars['ID']['input'];
|
|
87388
|
+
dataSourceTypeId: Scalars['Int']['input'];
|
|
87389
|
+
workspaceId: Scalars['ID']['input'];
|
|
87390
|
+
};
|
|
86020
87391
|
export declare type QueryAssetsDm_DataSourceFormFieldsArgs = {
|
|
86021
87392
|
cloudId: Scalars['ID']['input'];
|
|
87393
|
+
schemaId?: InputMaybe<Scalars['String']['input']>;
|
|
87394
|
+
workspaceId: Scalars['ID']['input'];
|
|
87395
|
+
};
|
|
87396
|
+
export declare type QueryAssetsDm_DataSourceTransformArgs = {
|
|
87397
|
+
cloudID: Scalars['ID']['input'];
|
|
87398
|
+
dataSourceId: Scalars['ID']['input'];
|
|
87399
|
+
dataSourceTypeId: Scalars['Int']['input'];
|
|
87400
|
+
isTemplate: Scalars['Boolean']['input'];
|
|
86022
87401
|
workspaceId: Scalars['ID']['input'];
|
|
86023
87402
|
};
|
|
86024
87403
|
export declare type QueryAssetsDm_ObjectClassesArgs = {
|
|
86025
87404
|
cloudId: Scalars['ID']['input'];
|
|
86026
87405
|
workspaceId: Scalars['ID']['input'];
|
|
86027
87406
|
};
|
|
87407
|
+
export declare type QueryAssetsDm_ObjectsListColumnsArgs = {
|
|
87408
|
+
cloudId: Scalars['ID']['input'];
|
|
87409
|
+
objectId: Scalars['String']['input'];
|
|
87410
|
+
workspaceId: Scalars['ID']['input'];
|
|
87411
|
+
};
|
|
87412
|
+
export declare type QueryAssetsDm_ObjectsListDataRowsArgs = {
|
|
87413
|
+
cloudId: Scalars['ID']['input'];
|
|
87414
|
+
objectId: Scalars['String']['input'];
|
|
87415
|
+
pageInfo?: InputMaybe<AssetsDmObjectsListPageInfoInput>;
|
|
87416
|
+
sortBy?: InputMaybe<AssetsDmObjectsListSortBy>;
|
|
87417
|
+
workspaceId: Scalars['ID']['input'];
|
|
87418
|
+
};
|
|
86028
87419
|
export declare type QueryAssets_ObjectTypesByIdsArgs = {
|
|
86029
87420
|
ids: Array<Scalars['ID']['input']>;
|
|
86030
87421
|
};
|
|
@@ -86127,6 +87518,9 @@ export declare type QueryChannelPlatform_GetContactDetailsArgs = {
|
|
|
86127
87518
|
export declare type QueryChannelPlatform_GetQueueArgs = {
|
|
86128
87519
|
id?: InputMaybe<Scalars['ID']['input']>;
|
|
86129
87520
|
};
|
|
87521
|
+
export declare type QueryChannelPlatform_GetSurveyLinkArgs = {
|
|
87522
|
+
issueId: Scalars['String']['input'];
|
|
87523
|
+
};
|
|
86130
87524
|
export declare type QueryChannelPlatform_GetTranscriptArgs = {
|
|
86131
87525
|
request?: InputMaybe<ChannelPlatformTranscriptRequest>;
|
|
86132
87526
|
};
|
|
@@ -86159,6 +87553,11 @@ export declare type QueryCollabTokenArgs = {
|
|
|
86159
87553
|
draftShareId?: InputMaybe<Scalars['String']['input']>;
|
|
86160
87554
|
id: Scalars['ID']['input'];
|
|
86161
87555
|
};
|
|
87556
|
+
export declare type QueryCollaboratorsLinkedToJiraIssueArgs = {
|
|
87557
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
87558
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
87559
|
+
issueId: Scalars['ID']['input'];
|
|
87560
|
+
};
|
|
86162
87561
|
export declare type QueryCommentsArgs = {
|
|
86163
87562
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
86164
87563
|
before?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -86350,6 +87749,7 @@ export declare type QueryConfluence_SearchUserArgs = {
|
|
|
86350
87749
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
86351
87750
|
cloudId?: InputMaybe<Scalars['ID']['input']>;
|
|
86352
87751
|
cql: Scalars['String']['input'];
|
|
87752
|
+
excludeServiceAppUsers?: InputMaybe<Scalars['Boolean']['input']>;
|
|
86353
87753
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
86354
87754
|
offset?: InputMaybe<Scalars['Int']['input']>;
|
|
86355
87755
|
sitePermissionTypeFilter?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -86610,6 +88010,11 @@ export declare type QueryContributorsLinkedToConfluencePageArgs = {
|
|
|
86610
88010
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
86611
88011
|
pageId: Scalars['ID']['input'];
|
|
86612
88012
|
};
|
|
88013
|
+
export declare type QueryContributorsLinkedToConfluencePageV2Args = {
|
|
88014
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
88015
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
88016
|
+
pageId: Scalars['ID']['input'];
|
|
88017
|
+
};
|
|
86613
88018
|
export declare type QueryConvoai_JiraEchoAiFeatureArgs = {
|
|
86614
88019
|
cloudId?: InputMaybe<Scalars['ID']['input']>;
|
|
86615
88020
|
text?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -86674,6 +88079,9 @@ export declare type QueryCountUsersGroupByPageArgs = {
|
|
|
86674
88079
|
sortOrder?: InputMaybe<Scalars['String']['input']>;
|
|
86675
88080
|
startTime: Scalars['String']['input'];
|
|
86676
88081
|
};
|
|
88082
|
+
export declare type QueryCpls_CapacityPlanningScopeArgs = {
|
|
88083
|
+
id: Scalars['ID']['input'];
|
|
88084
|
+
};
|
|
86677
88085
|
export declare type QueryCsmAi_GetAiHubByHelpCenterAriArgs = {
|
|
86678
88086
|
helpCenterAri: Scalars['ID']['input'];
|
|
86679
88087
|
};
|
|
@@ -86888,11 +88296,25 @@ export declare type QueryDevai_RovodevSessionsArgs = {
|
|
|
86888
88296
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
86889
88297
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
86890
88298
|
sessionStatus?: InputMaybe<DevAiRovoDevSessionStatus>;
|
|
88299
|
+
sort?: InputMaybe<DevAiRovoDevSessionSort>;
|
|
86891
88300
|
workspaceAri: Scalars['ID']['input'];
|
|
86892
88301
|
};
|
|
86893
88302
|
export declare type QueryDevai_RovodevSessionsByAriArgs = {
|
|
86894
88303
|
sessionAris: Array<Scalars['ID']['input']>;
|
|
86895
88304
|
};
|
|
88305
|
+
export declare type QueryDevai_RovodevSessionsByCloudIdArgs = {
|
|
88306
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
88307
|
+
cloudId: Scalars['ID']['input'];
|
|
88308
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
88309
|
+
sessionStatus?: InputMaybe<DevAiRovoDevSessionStatus>;
|
|
88310
|
+
sort?: InputMaybe<DevAiRovoDevSessionSort>;
|
|
88311
|
+
};
|
|
88312
|
+
export declare type QueryDevai_RovodevSessionsByIssueKeyArgs = {
|
|
88313
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
88314
|
+
cloudId?: InputMaybe<Scalars['ID']['input']>;
|
|
88315
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
88316
|
+
issueKey?: InputMaybe<Scalars['String']['input']>;
|
|
88317
|
+
};
|
|
86896
88318
|
export declare type QueryDevai_TechnicalPlannerJobByIdArgs = {
|
|
86897
88319
|
cloudId: Scalars['ID']['input'];
|
|
86898
88320
|
jobId: Scalars['ID']['input'];
|
|
@@ -87109,6 +88531,9 @@ export declare type QueryGrowthUnifiedProfile_GetUnifiedUserProfileArgs = {
|
|
|
87109
88531
|
idType: GrowthUnifiedProfileUserIdType;
|
|
87110
88532
|
where?: InputMaybe<GrowthUnifiedProfileGetUnifiedUserProfileWhereInput>;
|
|
87111
88533
|
};
|
|
88534
|
+
export declare type QueryGrowthUnifiedProfile_SiteProfileArgs = {
|
|
88535
|
+
tenantId: Scalars['ID']['input'];
|
|
88536
|
+
};
|
|
87112
88537
|
export declare type QueryHasUserCommentedArgs = {
|
|
87113
88538
|
accountId: Scalars['String']['input'];
|
|
87114
88539
|
};
|
|
@@ -87271,6 +88696,18 @@ export declare type QueryJira_IssuesByIdsArgs = {
|
|
|
87271
88696
|
export declare type QueryJira_JiraServiceManagementDefaultCommentBehaviorArgs = {
|
|
87272
88697
|
cloudId: Scalars['ID']['input'];
|
|
87273
88698
|
};
|
|
88699
|
+
export declare type QueryJira_OnboardingConfigByIdArgs = {
|
|
88700
|
+
cloudId: Scalars['ID']['input'];
|
|
88701
|
+
id: Scalars['ID']['input'];
|
|
88702
|
+
};
|
|
88703
|
+
export declare type QueryJira_OnboardingConfigByTargetArgs = {
|
|
88704
|
+
cloudId: Scalars['ID']['input'];
|
|
88705
|
+
targetType: Scalars['String']['input'];
|
|
88706
|
+
targetValue: Scalars['String']['input'];
|
|
88707
|
+
};
|
|
88708
|
+
export declare type QueryJira_OnboardingConfigsArgs = {
|
|
88709
|
+
cloudId: Scalars['ID']['input'];
|
|
88710
|
+
};
|
|
87274
88711
|
export declare type QueryJira_ProjectByIdOrKeyArgs = {
|
|
87275
88712
|
cloudId: Scalars['ID']['input'];
|
|
87276
88713
|
idOrKey: Scalars['String']['input'];
|
|
@@ -87325,9 +88762,15 @@ export declare type QueryLatestKnowledgeGraphObjectArgs = {
|
|
|
87325
88762
|
export declare type QueryLinksIncomingToConfluencePageArgs = {
|
|
87326
88763
|
pageId: Scalars['ID']['input'];
|
|
87327
88764
|
};
|
|
88765
|
+
export declare type QueryLinksIncomingToJiraIssueArgs = {
|
|
88766
|
+
issueId: Scalars['ID']['input'];
|
|
88767
|
+
};
|
|
87328
88768
|
export declare type QueryLinksOutgoingFromConfluencePageArgs = {
|
|
87329
88769
|
pageId: Scalars['ID']['input'];
|
|
87330
88770
|
};
|
|
88771
|
+
export declare type QueryLinksOutgoingFromJiraIssueArgs = {
|
|
88772
|
+
issueId: Scalars['ID']['input'];
|
|
88773
|
+
};
|
|
87331
88774
|
export declare type QueryLogAccessByContextsArgs = {
|
|
87332
88775
|
appId: Scalars['ID']['input'];
|
|
87333
88776
|
contextInstallationPairs: Array<InstallationContextWithInstallationIdInput>;
|
|
@@ -87365,6 +88808,9 @@ export declare type QueryLoom_MeetingRecurrencesArgs = {
|
|
|
87365
88808
|
export declare type QueryLoom_MeetingsArgs = {
|
|
87366
88809
|
ids: Array<Scalars['ID']['input']>;
|
|
87367
88810
|
};
|
|
88811
|
+
export declare type QueryLoom_MeetingsSearchArgs = {
|
|
88812
|
+
id: Scalars['ID']['input'];
|
|
88813
|
+
};
|
|
87368
88814
|
export declare type QueryLoom_PrimaryAuthTypeForEmailArgs = {
|
|
87369
88815
|
email: Scalars['String']['input'];
|
|
87370
88816
|
};
|
|
@@ -87657,6 +89103,9 @@ export declare type QueryProjects_ByIdArgs = {
|
|
|
87657
89103
|
export declare type QueryProjects_ByIdsArgs = {
|
|
87658
89104
|
projectIds: Array<Scalars['String']['input']>;
|
|
87659
89105
|
};
|
|
89106
|
+
export declare type QueryProjects_LinksByIdsArgs = {
|
|
89107
|
+
linkIds: Array<Scalars['ID']['input']>;
|
|
89108
|
+
};
|
|
87660
89109
|
export declare type QueryProjects_SearchArgs = {
|
|
87661
89110
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
87662
89111
|
containerId: Scalars['String']['input'];
|
|
@@ -87877,14 +89326,6 @@ export declare type QuerySitePermissionsArgs = {
|
|
|
87877
89326
|
export declare type QuerySiteSettingsArgs = {
|
|
87878
89327
|
cloudId?: InputMaybe<Scalars['ID']['input']>;
|
|
87879
89328
|
};
|
|
87880
|
-
export declare type QuerySnippetsArgs = {
|
|
87881
|
-
accountId: Scalars['String']['input'];
|
|
87882
|
-
after?: InputMaybe<Scalars['String']['input']>;
|
|
87883
|
-
first?: InputMaybe<Scalars['Int']['input']>;
|
|
87884
|
-
scope?: InputMaybe<Scalars['String']['input']>;
|
|
87885
|
-
spaceKey?: InputMaybe<Scalars['String']['input']>;
|
|
87886
|
-
type?: InputMaybe<Scalars['String']['input']>;
|
|
87887
|
-
};
|
|
87888
89329
|
export declare type QuerySoftwareBoardsArgs = {
|
|
87889
89330
|
projectAri: Scalars['ID']['input'];
|
|
87890
89331
|
};
|
|
@@ -88009,15 +89450,36 @@ export declare type QueryStakeholderComms_GetAssignmentsByStakeholderArgs = {
|
|
|
88009
89450
|
export declare type QueryStakeholderComms_GetAssignmentsByStakeholderV2Args = {
|
|
88010
89451
|
assignmentConnectionInput: StakeholderCommsAssignmentConnectionInput;
|
|
88011
89452
|
};
|
|
89453
|
+
export declare type QueryStakeholderComms_GetMembershipsArgs = {
|
|
89454
|
+
groupId: Scalars['String']['input'];
|
|
89455
|
+
};
|
|
88012
89456
|
export declare type QueryStakeholderComms_GetStakeholderArgs = {
|
|
88013
89457
|
stakeholderIdInput: StakeholderCommsStakeholderIdInput;
|
|
88014
89458
|
};
|
|
89459
|
+
export declare type QueryStakeholderComms_GetStakeholderGroupArgs = {
|
|
89460
|
+
id: Scalars['String']['input'];
|
|
89461
|
+
};
|
|
89462
|
+
export declare type QueryStakeholderComms_GetStakeholderGroupByMembershipArgs = {
|
|
89463
|
+
id: Scalars['String']['input'];
|
|
89464
|
+
};
|
|
89465
|
+
export declare type QueryStakeholderComms_GetStakeholderGroupWithMembershipsArgs = {
|
|
89466
|
+
id: Scalars['String']['input'];
|
|
89467
|
+
};
|
|
89468
|
+
export declare type QueryStakeholderComms_GetStakeholderGroupsWithMembershipsArgs = {
|
|
89469
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
89470
|
+
before?: InputMaybe<Scalars['String']['input']>;
|
|
89471
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
89472
|
+
last?: InputMaybe<Scalars['Int']['input']>;
|
|
89473
|
+
};
|
|
88015
89474
|
export declare type QueryStakeholderComms_GetStakeholdersByAssignmentArgs = {
|
|
88016
89475
|
paginatedStakeholderInput: StakeholderCommsPaginatedStakeholderInput;
|
|
88017
89476
|
};
|
|
88018
89477
|
export declare type QueryStakeholderComms_GetStakeholdersByAssignmentV2Args = {
|
|
88019
89478
|
stakeholderConnectionInput: StakeholderCommsStakeholderConnectionInput;
|
|
88020
89479
|
};
|
|
89480
|
+
export declare type QueryStakeholderComms_IsStakeholderGroupNameUniqueArgs = {
|
|
89481
|
+
name: Scalars['String']['input'];
|
|
89482
|
+
};
|
|
88021
89483
|
export declare type QueryStalePagesArgs = {
|
|
88022
89484
|
cursor?: InputMaybe<Scalars['String']['input']>;
|
|
88023
89485
|
includePagesWithChildren?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -88295,10 +89757,11 @@ export declare type QuotaInfo = {
|
|
|
88295
89757
|
};
|
|
88296
89758
|
export declare type RadarAriFieldValue = {
|
|
88297
89759
|
__typename?: 'RadarAriFieldValue';
|
|
89760
|
+
ari?: Maybe<Scalars['ID']['output']>;
|
|
88298
89761
|
isRestricted?: Maybe<Scalars['Boolean']['output']>;
|
|
88299
89762
|
value?: Maybe<RadarAriObject>;
|
|
88300
89763
|
};
|
|
88301
|
-
export declare type RadarAriObject = MercuryChangeProposal | MercuryFocusArea | RadarPosition | RadarWorker;
|
|
89764
|
+
export declare type RadarAriObject = MercuryChangeProposal | MercuryFocusArea | RadarPosition | RadarWorker | TeamV2;
|
|
88302
89765
|
export declare type RadarBooleanFieldValue = {
|
|
88303
89766
|
__typename?: 'RadarBooleanFieldValue';
|
|
88304
89767
|
isRestricted?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -88399,6 +89862,7 @@ export declare enum RadarEntityType {
|
|
|
88399
89862
|
FocusArea = "focusArea",
|
|
88400
89863
|
Position = "position",
|
|
88401
89864
|
Proposal = "proposal",
|
|
89865
|
+
Team = "team",
|
|
88402
89866
|
Worker = "worker"
|
|
88403
89867
|
}
|
|
88404
89868
|
export declare type RadarFieldDefinition = {
|
|
@@ -88741,6 +90205,7 @@ export declare type RadarWorkspace = {
|
|
|
88741
90205
|
positionFields: Array<RadarFieldDefinition>;
|
|
88742
90206
|
proposalFields: Array<RadarFieldDefinition>;
|
|
88743
90207
|
settings: RadarSettings;
|
|
90208
|
+
teamFields: Array<RadarFieldDefinition>;
|
|
88744
90209
|
userContext?: Maybe<RadarUserContext>;
|
|
88745
90210
|
workerFields: Array<RadarFieldDefinition>;
|
|
88746
90211
|
};
|
|
@@ -90524,6 +91989,8 @@ export declare type SearchConfluencePageBlogAttachment = SearchL2FeatureProvider
|
|
|
90524
91989
|
l2Features?: Maybe<Array<Maybe<SearchL2Feature>>>;
|
|
90525
91990
|
lastModified?: Maybe<Scalars['DateTime']['output']>;
|
|
90526
91991
|
lastModifiedDate?: Maybe<Scalars['String']['output']>;
|
|
91992
|
+
latestUserAction?: Maybe<Scalars['String']['output']>;
|
|
91993
|
+
latestUserActionTs?: Maybe<Scalars['String']['output']>;
|
|
90527
91994
|
pageEntity?: Maybe<ConfluencePage>;
|
|
90528
91995
|
scoreL2Ranker?: Maybe<Scalars['Float']['output']>;
|
|
90529
91996
|
socialSignal?: Maybe<SocialSignalSearch>;
|
|
@@ -92521,6 +93988,7 @@ export declare type ShepherdQuery = {
|
|
|
92521
93988
|
shepherdAppInfo: ShepherdAppInfo;
|
|
92522
93989
|
subscriptions?: Maybe<ShepherdSubscriptionsResult>;
|
|
92523
93990
|
workspace?: Maybe<ShepherdWorkspaceResult>;
|
|
93991
|
+
workspaceByCloudId?: Maybe<ShepherdWorkspaceByCloudId>;
|
|
92524
93992
|
workspaceByOrgId?: Maybe<ShepherdWorkspaceByOrgId>;
|
|
92525
93993
|
workspacesByUserContext?: Maybe<ShepherdWorkspaceResult>;
|
|
92526
93994
|
};
|
|
@@ -92554,6 +94022,9 @@ export declare type ShepherdQueryWorkspaceArgs = {
|
|
|
92554
94022
|
id?: InputMaybe<Scalars['ID']['input']>;
|
|
92555
94023
|
orgId?: InputMaybe<Scalars['ID']['input']>;
|
|
92556
94024
|
};
|
|
94025
|
+
export declare type ShepherdQueryWorkspaceByCloudIdArgs = {
|
|
94026
|
+
cloudId: Scalars['ID']['input'];
|
|
94027
|
+
};
|
|
92557
94028
|
export declare type ShepherdQueryWorkspaceByOrgIdArgs = {
|
|
92558
94029
|
orgId: Scalars['ID']['input'];
|
|
92559
94030
|
};
|
|
@@ -92905,7 +94376,6 @@ export declare type ShepherdUpdateWebhookInput = {
|
|
|
92905
94376
|
export declare type ShepherdUser = {
|
|
92906
94377
|
__typename?: 'ShepherdUser';
|
|
92907
94378
|
aaid: Scalars['ID']['output'];
|
|
92908
|
-
createdOn?: Maybe<Scalars['DateTime']['output']>;
|
|
92909
94379
|
user?: Maybe<User>;
|
|
92910
94380
|
};
|
|
92911
94381
|
export declare enum ShepherdVortexModeStatus {
|
|
@@ -92956,6 +94426,10 @@ export declare type ShepherdWorkspaceDetectionsArgs = {
|
|
|
92956
94426
|
detectionId?: InputMaybe<Scalars['ID']['input']>;
|
|
92957
94427
|
settingId?: InputMaybe<Scalars['ID']['input']>;
|
|
92958
94428
|
};
|
|
94429
|
+
export declare type ShepherdWorkspaceByCloudId = {
|
|
94430
|
+
__typename?: 'ShepherdWorkspaceByCloudId';
|
|
94431
|
+
ari?: Maybe<Scalars['ID']['output']>;
|
|
94432
|
+
};
|
|
92959
94433
|
export declare type ShepherdWorkspaceByOrgId = {
|
|
92960
94434
|
__typename?: 'ShepherdWorkspaceByOrgId';
|
|
92961
94435
|
ari?: Maybe<Scalars['ID']['output']>;
|
|
@@ -93348,23 +94822,6 @@ export declare type SmartsRecommendedUser = {
|
|
|
93348
94822
|
score?: Maybe<Scalars['Float']['output']>;
|
|
93349
94823
|
user?: Maybe<User>;
|
|
93350
94824
|
};
|
|
93351
|
-
export declare type Snippet = {
|
|
93352
|
-
__typename?: 'Snippet';
|
|
93353
|
-
body?: Maybe<Scalars['String']['output']>;
|
|
93354
|
-
creator?: Maybe<Scalars['String']['output']>;
|
|
93355
|
-
icon?: Maybe<Scalars['String']['output']>;
|
|
93356
|
-
id?: Maybe<Scalars['ID']['output']>;
|
|
93357
|
-
position?: Maybe<Scalars['Float']['output']>;
|
|
93358
|
-
scope?: Maybe<Scalars['String']['output']>;
|
|
93359
|
-
spaceKey?: Maybe<Scalars['String']['output']>;
|
|
93360
|
-
title?: Maybe<Scalars['String']['output']>;
|
|
93361
|
-
type?: Maybe<Scalars['String']['output']>;
|
|
93362
|
-
};
|
|
93363
|
-
export declare type SnippetEdge = {
|
|
93364
|
-
__typename?: 'SnippetEdge';
|
|
93365
|
-
cursor?: Maybe<Scalars['String']['output']>;
|
|
93366
|
-
node?: Maybe<Snippet>;
|
|
93367
|
-
};
|
|
93368
94825
|
export declare type SocialSignalSearch = {
|
|
93369
94826
|
__typename?: 'SocialSignalSearch';
|
|
93370
94827
|
objectARI: Scalars['ID']['output'];
|
|
@@ -94138,6 +95595,8 @@ export declare type SpfAsk = Node & {
|
|
|
94138
95595
|
createdBy?: Maybe<User>;
|
|
94139
95596
|
createdByUserId?: Maybe<Scalars['String']['output']>;
|
|
94140
95597
|
description?: Maybe<Scalars['String']['output']>;
|
|
95598
|
+
focusAreas?: Maybe<GraphStoreCypherQueryV2Connection>;
|
|
95599
|
+
goals?: Maybe<GraphStoreCypherQueryV2Connection>;
|
|
94141
95600
|
id: Scalars['ID']['output'];
|
|
94142
95601
|
impactedWork?: Maybe<SpfImpactedWork>;
|
|
94143
95602
|
impactedWorkId?: Maybe<Scalars['String']['output']>;
|
|
@@ -94171,6 +95630,14 @@ export declare type SpfAskCommentsArgs = {
|
|
|
94171
95630
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
94172
95631
|
q?: InputMaybe<Scalars['String']['input']>;
|
|
94173
95632
|
};
|
|
95633
|
+
export declare type SpfAskFocusAreasArgs = {
|
|
95634
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
95635
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
95636
|
+
};
|
|
95637
|
+
export declare type SpfAskGoalsArgs = {
|
|
95638
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
95639
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
95640
|
+
};
|
|
94174
95641
|
export declare type SpfAskLinksArgs = {
|
|
94175
95642
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
94176
95643
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
@@ -94380,6 +95847,7 @@ export declare type SpfAskTransition = {
|
|
|
94380
95847
|
export declare type SpfAskUpdate = {
|
|
94381
95848
|
__typename?: 'SpfAskUpdate';
|
|
94382
95849
|
createdAt?: Maybe<Scalars['DateTime']['output']>;
|
|
95850
|
+
createdBy?: Maybe<User>;
|
|
94383
95851
|
createdByUserId?: Maybe<Scalars['String']['output']>;
|
|
94384
95852
|
description?: Maybe<Scalars['String']['output']>;
|
|
94385
95853
|
id: Scalars['ID']['output'];
|
|
@@ -94388,6 +95856,7 @@ export declare type SpfAskUpdate = {
|
|
|
94388
95856
|
oldStatus?: Maybe<SpfAskStatus>;
|
|
94389
95857
|
oldTargetDate?: Maybe<SpfAskTargetDate>;
|
|
94390
95858
|
updatedAt?: Maybe<Scalars['DateTime']['output']>;
|
|
95859
|
+
updatedBy?: Maybe<User>;
|
|
94391
95860
|
updatedByUserId?: Maybe<Scalars['String']['output']>;
|
|
94392
95861
|
};
|
|
94393
95862
|
export declare type SpfAskUpdateConnection = {
|
|
@@ -94405,12 +95874,6 @@ export declare type SpfAskUpdateEdge = {
|
|
|
94405
95874
|
cursor: Scalars['String']['output'];
|
|
94406
95875
|
node?: Maybe<SpfAskUpdateResult>;
|
|
94407
95876
|
};
|
|
94408
|
-
export declare type SpfAskUpdatePayload = Payload & {
|
|
94409
|
-
__typename?: 'SpfAskUpdatePayload';
|
|
94410
|
-
askUpdate?: Maybe<SpfAskUpdate>;
|
|
94411
|
-
errors?: Maybe<Array<MutationError>>;
|
|
94412
|
-
success: Scalars['Boolean']['output'];
|
|
94413
|
-
};
|
|
94414
95877
|
export declare type SpfAskUpdateResult = QueryError | SpfAskUpdate;
|
|
94415
95878
|
export declare type SpfAskUpdateStatusInput = {
|
|
94416
95879
|
id: Scalars['ID']['input'];
|
|
@@ -94435,12 +95898,6 @@ export declare type SpfCreateAskCommentInput = {
|
|
|
94435
95898
|
askId: Scalars['ID']['input'];
|
|
94436
95899
|
data: Scalars['String']['input'];
|
|
94437
95900
|
};
|
|
94438
|
-
export declare type SpfCreateAskCommentPayload = Payload & {
|
|
94439
|
-
__typename?: 'SpfCreateAskCommentPayload';
|
|
94440
|
-
comment?: Maybe<SpfAskComment>;
|
|
94441
|
-
errors?: Maybe<Array<MutationError>>;
|
|
94442
|
-
success: Scalars['Boolean']['output'];
|
|
94443
|
-
};
|
|
94444
95901
|
export declare type SpfCreateAskInput = {
|
|
94445
95902
|
cloudId: Scalars['ID']['input'];
|
|
94446
95903
|
description?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -94455,24 +95912,12 @@ export declare type SpfCreateAskInput = {
|
|
|
94455
95912
|
submittingTeamId?: InputMaybe<Scalars['String']['input']>;
|
|
94456
95913
|
targetDate?: InputMaybe<SpfAskTargetDateInput>;
|
|
94457
95914
|
};
|
|
94458
|
-
export declare type SpfCreateAskPayload = Payload & {
|
|
94459
|
-
__typename?: 'SpfCreateAskPayload';
|
|
94460
|
-
ask?: Maybe<SpfAsk>;
|
|
94461
|
-
errors?: Maybe<Array<MutationError>>;
|
|
94462
|
-
success: Scalars['Boolean']['output'];
|
|
94463
|
-
};
|
|
94464
95915
|
export declare type SpfCreateAskUpdateInput = {
|
|
94465
95916
|
askId: Scalars['String']['input'];
|
|
94466
95917
|
description?: InputMaybe<Scalars['String']['input']>;
|
|
94467
95918
|
status?: InputMaybe<SpfAskStatus>;
|
|
94468
95919
|
targetDate?: InputMaybe<SpfAskTargetDateInput>;
|
|
94469
95920
|
};
|
|
94470
|
-
export declare type SpfCreateAskUpdatePayload = Payload & {
|
|
94471
|
-
__typename?: 'SpfCreateAskUpdatePayload';
|
|
94472
|
-
askUpdate?: Maybe<SpfAskUpdate>;
|
|
94473
|
-
errors?: Maybe<Array<MutationError>>;
|
|
94474
|
-
success: Scalars['Boolean']['output'];
|
|
94475
|
-
};
|
|
94476
95921
|
export declare type SpfDeleteAskCommentInput = {
|
|
94477
95922
|
id: Scalars['ID']['input'];
|
|
94478
95923
|
};
|
|
@@ -94514,12 +95959,6 @@ export declare type SpfUpdateAskCommentDataInput = {
|
|
|
94514
95959
|
data: Scalars['String']['input'];
|
|
94515
95960
|
id: Scalars['ID']['input'];
|
|
94516
95961
|
};
|
|
94517
|
-
export declare type SpfUpdateAskCommentPayload = Payload & {
|
|
94518
|
-
__typename?: 'SpfUpdateAskCommentPayload';
|
|
94519
|
-
comment?: Maybe<SpfAskComment>;
|
|
94520
|
-
errors?: Maybe<Array<MutationError>>;
|
|
94521
|
-
success: Scalars['Boolean']['output'];
|
|
94522
|
-
};
|
|
94523
95962
|
export declare type SpfUpdateAskDescriptionInput = {
|
|
94524
95963
|
description?: InputMaybe<Scalars['String']['input']>;
|
|
94525
95964
|
id: Scalars['ID']['input'];
|
|
@@ -94541,12 +95980,6 @@ export declare type SpfUpdateAskOwnerInput = {
|
|
|
94541
95980
|
id: Scalars['ID']['input'];
|
|
94542
95981
|
ownerId?: InputMaybe<Scalars['String']['input']>;
|
|
94543
95982
|
};
|
|
94544
|
-
export declare type SpfUpdateAskPayload = Payload & {
|
|
94545
|
-
__typename?: 'SpfUpdateAskPayload';
|
|
94546
|
-
ask?: Maybe<SpfAsk>;
|
|
94547
|
-
errors?: Maybe<Array<MutationError>>;
|
|
94548
|
-
success: Scalars['Boolean']['output'];
|
|
94549
|
-
};
|
|
94550
95983
|
export declare type SpfUpdateAskPriorityInput = {
|
|
94551
95984
|
id: Scalars['ID']['input'];
|
|
94552
95985
|
priority: SpfAskPriority;
|
|
@@ -94563,6 +95996,25 @@ export declare type SpfUpdateAskSubmittingTeamInput = {
|
|
|
94563
95996
|
id: Scalars['ID']['input'];
|
|
94564
95997
|
submittingTeamId?: InputMaybe<Scalars['String']['input']>;
|
|
94565
95998
|
};
|
|
95999
|
+
export declare type SpfUpsertAskCommentPayload = Payload & {
|
|
96000
|
+
__typename?: 'SpfUpsertAskCommentPayload';
|
|
96001
|
+
comment?: Maybe<SpfAskComment>;
|
|
96002
|
+
errors?: Maybe<Array<MutationError>>;
|
|
96003
|
+
success: Scalars['Boolean']['output'];
|
|
96004
|
+
};
|
|
96005
|
+
export declare type SpfUpsertAskPayload = Payload & {
|
|
96006
|
+
__typename?: 'SpfUpsertAskPayload';
|
|
96007
|
+
ask?: Maybe<SpfAsk>;
|
|
96008
|
+
errors?: Maybe<Array<MutationError>>;
|
|
96009
|
+
success: Scalars['Boolean']['output'];
|
|
96010
|
+
};
|
|
96011
|
+
export declare type SpfUpsertAskUpdatePayload = Payload & {
|
|
96012
|
+
__typename?: 'SpfUpsertAskUpdatePayload';
|
|
96013
|
+
ask?: Maybe<SpfAsk>;
|
|
96014
|
+
askUpdate?: Maybe<SpfAskUpdate>;
|
|
96015
|
+
errors?: Maybe<Array<MutationError>>;
|
|
96016
|
+
success: Scalars['Boolean']['output'];
|
|
96017
|
+
};
|
|
94566
96018
|
export declare type SplitIssueInput = {
|
|
94567
96019
|
newIssues: Array<InputMaybe<NewSplitIssueRequest>>;
|
|
94568
96020
|
originalIssue: OriginalSplitIssue;
|
|
@@ -94581,6 +96033,7 @@ export declare type Sprint = BaseSprint & {
|
|
|
94581
96033
|
cards: Array<Maybe<SoftwareCard>>;
|
|
94582
96034
|
daysRemaining?: Maybe<Scalars['Int']['output']>;
|
|
94583
96035
|
endDate?: Maybe<Scalars['DateTime']['output']>;
|
|
96036
|
+
filteredCardIds?: Maybe<Array<Maybe<Scalars['ID']['output']>>>;
|
|
94584
96037
|
goal?: Maybe<Scalars['String']['output']>;
|
|
94585
96038
|
id?: Maybe<Scalars['ID']['output']>;
|
|
94586
96039
|
name?: Maybe<Scalars['String']['output']>;
|
|
@@ -94703,6 +96156,16 @@ export declare enum StakeholderCommsAssignmentType {
|
|
|
94703
96156
|
Services = "SERVICES",
|
|
94704
96157
|
Site = "SITE"
|
|
94705
96158
|
}
|
|
96159
|
+
export declare type StakeholderCommsCreateStakeholderGroupInput = {
|
|
96160
|
+
description?: InputMaybe<Scalars['String']['input']>;
|
|
96161
|
+
insertedAt?: InputMaybe<Scalars['String']['input']>;
|
|
96162
|
+
logoUrl?: InputMaybe<Scalars['String']['input']>;
|
|
96163
|
+
name: Scalars['String']['input'];
|
|
96164
|
+
ownerId: Scalars['String']['input'];
|
|
96165
|
+
services?: InputMaybe<Array<InputMaybe<Scalars['String']['input']>>>;
|
|
96166
|
+
status: StakeholderCommsStakeholderGroupStatus;
|
|
96167
|
+
updatedAt?: InputMaybe<Scalars['String']['input']>;
|
|
96168
|
+
};
|
|
94706
96169
|
export declare type StakeholderCommsCreateStakeholderInput = {
|
|
94707
96170
|
aaid?: InputMaybe<Scalars['String']['input']>;
|
|
94708
96171
|
addedFrom: StakeholderCommsAddedFromType;
|
|
@@ -94826,6 +96289,61 @@ export declare type StakeholderCommsStakeholderEdge = {
|
|
|
94826
96289
|
cursor: Scalars['String']['output'];
|
|
94827
96290
|
node: StakeholderCommsStakeholder;
|
|
94828
96291
|
};
|
|
96292
|
+
export declare type StakeholderCommsStakeholderGroup = {
|
|
96293
|
+
__typename?: 'StakeholderCommsStakeholderGroup';
|
|
96294
|
+
description?: Maybe<Scalars['String']['output']>;
|
|
96295
|
+
id?: Maybe<Scalars['String']['output']>;
|
|
96296
|
+
insertedAt?: Maybe<Scalars['String']['output']>;
|
|
96297
|
+
logoUrl?: Maybe<Scalars['String']['output']>;
|
|
96298
|
+
name: Scalars['String']['output'];
|
|
96299
|
+
ownerId?: Maybe<Scalars['String']['output']>;
|
|
96300
|
+
services?: Maybe<Array<Maybe<Scalars['String']['output']>>>;
|
|
96301
|
+
status?: Maybe<StakeholderCommsStakeholderGroupStatus>;
|
|
96302
|
+
updatedAt?: Maybe<Scalars['String']['output']>;
|
|
96303
|
+
};
|
|
96304
|
+
export declare type StakeholderCommsStakeholderGroupConnection = {
|
|
96305
|
+
__typename?: 'StakeholderCommsStakeholderGroupConnection';
|
|
96306
|
+
edges: Array<StakeholderCommsStakeholderGroupEdge>;
|
|
96307
|
+
error?: Maybe<Scalars['String']['output']>;
|
|
96308
|
+
nodes: Array<StakeholderCommsStakeholderGroupsAndMemberships>;
|
|
96309
|
+
pageInfo: StakeholderCommsPageInfo;
|
|
96310
|
+
totalCount: Scalars['Int']['output'];
|
|
96311
|
+
};
|
|
96312
|
+
export declare type StakeholderCommsStakeholderGroupEdge = {
|
|
96313
|
+
__typename?: 'StakeholderCommsStakeholderGroupEdge';
|
|
96314
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
96315
|
+
node: StakeholderCommsStakeholderGroupsAndMemberships;
|
|
96316
|
+
};
|
|
96317
|
+
export declare type StakeholderCommsStakeholderGroupMemberRoleMapEntry = {
|
|
96318
|
+
memberId: Scalars['String']['input'];
|
|
96319
|
+
type: StakeholderCommsStakeholderType;
|
|
96320
|
+
};
|
|
96321
|
+
export declare type StakeholderCommsStakeholderGroupMembership = {
|
|
96322
|
+
__typename?: 'StakeholderCommsStakeholderGroupMembership';
|
|
96323
|
+
memberId?: Maybe<Scalars['String']['output']>;
|
|
96324
|
+
memberType?: Maybe<StakeholderCommsStakeholderType>;
|
|
96325
|
+
};
|
|
96326
|
+
export declare type StakeholderCommsStakeholderGroupMutationResponse = {
|
|
96327
|
+
__typename?: 'StakeholderCommsStakeholderGroupMutationResponse';
|
|
96328
|
+
message: Scalars['String']['output'];
|
|
96329
|
+
success: Scalars['Boolean']['output'];
|
|
96330
|
+
};
|
|
96331
|
+
export declare type StakeholderCommsStakeholderGroupResponse = {
|
|
96332
|
+
__typename?: 'StakeholderCommsStakeholderGroupResponse';
|
|
96333
|
+
error?: Maybe<Scalars['String']['output']>;
|
|
96334
|
+
group?: Maybe<StakeholderCommsStakeholderGroup>;
|
|
96335
|
+
};
|
|
96336
|
+
export declare enum StakeholderCommsStakeholderGroupStatus {
|
|
96337
|
+
Active = "ACTIVE",
|
|
96338
|
+
Deleted = "DELETED",
|
|
96339
|
+
Inactive = "INACTIVE",
|
|
96340
|
+
Suspended = "SUSPENDED"
|
|
96341
|
+
}
|
|
96342
|
+
export declare type StakeholderCommsStakeholderGroupsAndMemberships = {
|
|
96343
|
+
__typename?: 'StakeholderCommsStakeholderGroupsAndMemberships';
|
|
96344
|
+
group?: Maybe<StakeholderCommsStakeholderGroup>;
|
|
96345
|
+
memberships?: Maybe<Array<Maybe<StakeholderCommsStakeholderGroupMembership>>>;
|
|
96346
|
+
};
|
|
94829
96347
|
export declare type StakeholderCommsStakeholderIdInput = {
|
|
94830
96348
|
aaid?: InputMaybe<Scalars['String']['input']>;
|
|
94831
96349
|
emailId?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -94844,8 +96362,20 @@ export declare enum StakeholderCommsStakeholderStatus {
|
|
|
94844
96362
|
}
|
|
94845
96363
|
export declare enum StakeholderCommsStakeholderType {
|
|
94846
96364
|
External = "EXTERNAL",
|
|
94847
|
-
Internal = "INTERNAL"
|
|
96365
|
+
Internal = "INTERNAL",
|
|
96366
|
+
Team = "TEAM"
|
|
94848
96367
|
}
|
|
96368
|
+
export declare type StakeholderCommsUpdateStakeholderGroupInput = {
|
|
96369
|
+
description?: InputMaybe<Scalars['String']['input']>;
|
|
96370
|
+
id: Scalars['String']['input'];
|
|
96371
|
+
insertedAt?: InputMaybe<Scalars['String']['input']>;
|
|
96372
|
+
logoUrl?: InputMaybe<Scalars['String']['input']>;
|
|
96373
|
+
name: Scalars['String']['input'];
|
|
96374
|
+
ownerId: Scalars['String']['input'];
|
|
96375
|
+
services?: InputMaybe<Array<InputMaybe<Scalars['String']['input']>>>;
|
|
96376
|
+
status: StakeholderCommsStakeholderGroupStatus;
|
|
96377
|
+
updatedAt?: InputMaybe<Scalars['String']['input']>;
|
|
96378
|
+
};
|
|
94849
96379
|
export declare type StakeholderCommsUpdateStakeholderInput = {
|
|
94850
96380
|
notificationPreference?: InputMaybe<StakeholderCommsNotificationPreferenceInput>;
|
|
94851
96381
|
stakeholderIdInput: StakeholderCommsStakeholderIdInput;
|
|
@@ -96350,6 +97880,16 @@ export declare enum TownsquareAccessControlCapability {
|
|
|
96350
97880
|
Administer = "ADMINISTER",
|
|
96351
97881
|
Create = "CREATE"
|
|
96352
97882
|
}
|
|
97883
|
+
export declare type TownsquareAddTagToEntityByIdInput = {
|
|
97884
|
+
nounId: Scalars['ID']['input'];
|
|
97885
|
+
tagIds: Array<Scalars['ID']['input']>;
|
|
97886
|
+
};
|
|
97887
|
+
export declare type TownsquareAddTagToEntityPayload = {
|
|
97888
|
+
__typename?: 'TownsquareAddTagToEntityPayload';
|
|
97889
|
+
errors?: Maybe<Array<MutationError>>;
|
|
97890
|
+
success: Scalars['Boolean']['output'];
|
|
97891
|
+
tags?: Maybe<Array<Maybe<TownsquareTag>>>;
|
|
97892
|
+
};
|
|
96353
97893
|
export declare type TownsquareArchiveGoalInput = {
|
|
96354
97894
|
id: Scalars['String']['input'];
|
|
96355
97895
|
};
|
|
@@ -96370,6 +97910,7 @@ export declare enum TownsquareCapabilityContainer {
|
|
|
96370
97910
|
}
|
|
96371
97911
|
export declare type TownsquareComment = Node & {
|
|
96372
97912
|
__typename?: 'TownsquareComment';
|
|
97913
|
+
commentText?: Maybe<Scalars['String']['output']>;
|
|
96373
97914
|
container?: Maybe<TownsquareCommentContainer>;
|
|
96374
97915
|
creator?: Maybe<User>;
|
|
96375
97916
|
id: Scalars['ID']['output'];
|
|
@@ -96455,6 +97996,18 @@ export declare type TownsquareCreateRelationshipsPayload = {
|
|
|
96455
97996
|
relationships?: Maybe<Array<TownsquareRelationship>>;
|
|
96456
97997
|
success: Scalars['Boolean']['output'];
|
|
96457
97998
|
};
|
|
97999
|
+
export declare type TownsquareDecision = TownsquareHighlight & {
|
|
98000
|
+
__typename?: 'TownsquareDecision';
|
|
98001
|
+
creationDate?: Maybe<Scalars['DateTime']['output']>;
|
|
98002
|
+
creator?: Maybe<User>;
|
|
98003
|
+
description?: Maybe<Scalars['String']['output']>;
|
|
98004
|
+
goal?: Maybe<TownsquareGoal>;
|
|
98005
|
+
id: Scalars['ID']['output'];
|
|
98006
|
+
lastEditedBy?: Maybe<User>;
|
|
98007
|
+
lastEditedDate?: Maybe<Scalars['DateTime']['output']>;
|
|
98008
|
+
project?: Maybe<TownsquareProject>;
|
|
98009
|
+
summary?: Maybe<Scalars['String']['output']>;
|
|
98010
|
+
};
|
|
96458
98011
|
export declare type TownsquareDeleteGoalHasJiraAlignProjectInput = {
|
|
96459
98012
|
from: Scalars['String']['input'];
|
|
96460
98013
|
to: Scalars['String']['input'];
|
|
@@ -96496,6 +98049,7 @@ export declare type TownsquareEditGoalInput = {
|
|
|
96496
98049
|
id: Scalars['String']['input'];
|
|
96497
98050
|
name?: InputMaybe<Scalars['String']['input']>;
|
|
96498
98051
|
owner?: InputMaybe<Scalars['String']['input']>;
|
|
98052
|
+
startDate?: InputMaybe<Scalars['Date']['input']>;
|
|
96499
98053
|
targetDate?: InputMaybe<TownsquareTargetDateInput>;
|
|
96500
98054
|
};
|
|
96501
98055
|
export declare type TownsquareEditGoalPayload = {
|
|
@@ -96522,8 +98076,12 @@ export declare type TownsquareFusionDetails = {
|
|
|
96522
98076
|
export declare type TownsquareGoal = Node & {
|
|
96523
98077
|
__typename?: 'TownsquareGoal';
|
|
96524
98078
|
archived: Scalars['Boolean']['output'];
|
|
98079
|
+
canEditMembers?: Maybe<Scalars['Boolean']['output']>;
|
|
98080
|
+
canEditUpdate?: Maybe<Scalars['Boolean']['output']>;
|
|
98081
|
+
canPostUpdate?: Maybe<Scalars['Boolean']['output']>;
|
|
96525
98082
|
creationDate: Scalars['DateTime']['output'];
|
|
96526
98083
|
description?: Maybe<Scalars['String']['output']>;
|
|
98084
|
+
draftUpdate?: Maybe<TownsquareDraftUpdate>;
|
|
96527
98085
|
dueDate?: Maybe<TownsquareTargetDate>;
|
|
96528
98086
|
goalType?: Maybe<TownsquareGoalType>;
|
|
96529
98087
|
icon?: Maybe<TownsquareGoalIcon>;
|
|
@@ -96536,13 +98094,17 @@ export declare type TownsquareGoal = Node & {
|
|
|
96536
98094
|
owner?: Maybe<User>;
|
|
96537
98095
|
parentGoal?: Maybe<TownsquareGoal>;
|
|
96538
98096
|
parentGoalSuggestions?: Maybe<TownsquareGoalConnection>;
|
|
98097
|
+
progress?: Maybe<TownsquareGoalProgress>;
|
|
98098
|
+
projects?: Maybe<TownsquareProjectConnection>;
|
|
96539
98099
|
risks?: Maybe<TownsquareRiskConnection>;
|
|
98100
|
+
startDate?: Maybe<Scalars['Date']['output']>;
|
|
96540
98101
|
state?: Maybe<TownsquareGoalState>;
|
|
96541
98102
|
status?: Maybe<TownsquareStatus>;
|
|
96542
98103
|
subGoalSuggestions?: Maybe<TownsquareGoalConnection>;
|
|
96543
98104
|
subGoals?: Maybe<TownsquareGoalConnection>;
|
|
96544
98105
|
tags?: Maybe<TownsquareTagConnection>;
|
|
96545
98106
|
targetDate?: Maybe<TownsquareTargetDate>;
|
|
98107
|
+
teams?: Maybe<TownsquareGoalTeamConnection>;
|
|
96546
98108
|
updates?: Maybe<TownsquareGoalUpdateConnection>;
|
|
96547
98109
|
url?: Maybe<Scalars['String']['output']>;
|
|
96548
98110
|
uuid: Scalars['String']['output'];
|
|
@@ -96553,6 +98115,11 @@ export declare type TownsquareGoalParentGoalSuggestionsArgs = {
|
|
|
96553
98115
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
96554
98116
|
searchString?: InputMaybe<Scalars['String']['input']>;
|
|
96555
98117
|
};
|
|
98118
|
+
export declare type TownsquareGoalProjectsArgs = {
|
|
98119
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
98120
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
98121
|
+
tql?: InputMaybe<Scalars['String']['input']>;
|
|
98122
|
+
};
|
|
96556
98123
|
export declare type TownsquareGoalRisksArgs = {
|
|
96557
98124
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
96558
98125
|
createdAfter?: InputMaybe<Scalars['DateTime']['input']>;
|
|
@@ -96574,6 +98141,10 @@ export declare type TownsquareGoalTagsArgs = {
|
|
|
96574
98141
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
96575
98142
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
96576
98143
|
};
|
|
98144
|
+
export declare type TownsquareGoalTeamsArgs = {
|
|
98145
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
98146
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
98147
|
+
};
|
|
96577
98148
|
export declare type TownsquareGoalUpdatesArgs = {
|
|
96578
98149
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
96579
98150
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
@@ -96604,6 +98175,16 @@ export declare enum TownsquareGoalIconKey {
|
|
|
96604
98175
|
KeyResult = "KEY_RESULT",
|
|
96605
98176
|
Objective = "OBJECTIVE"
|
|
96606
98177
|
}
|
|
98178
|
+
export declare type TownsquareGoalProgress = {
|
|
98179
|
+
__typename?: 'TownsquareGoalProgress';
|
|
98180
|
+
percentage?: Maybe<Scalars['Float']['output']>;
|
|
98181
|
+
type?: Maybe<TownsquareGoalProgressType>;
|
|
98182
|
+
};
|
|
98183
|
+
export declare enum TownsquareGoalProgressType {
|
|
98184
|
+
AttachedMetric = "ATTACHED_METRIC",
|
|
98185
|
+
AverageRollup = "AVERAGE_ROLLUP",
|
|
98186
|
+
None = "NONE"
|
|
98187
|
+
}
|
|
96607
98188
|
export declare enum TownsquareGoalSortEnum {
|
|
96608
98189
|
CreationDateAsc = "CREATION_DATE_ASC",
|
|
96609
98190
|
CreationDateDesc = "CREATION_DATE_DESC",
|
|
@@ -96642,6 +98223,17 @@ export declare enum TownsquareGoalStateValue {
|
|
|
96642
98223
|
Paused = "paused",
|
|
96643
98224
|
Pending = "pending"
|
|
96644
98225
|
}
|
|
98226
|
+
export declare type TownsquareGoalTeamConnection = {
|
|
98227
|
+
__typename?: 'TownsquareGoalTeamConnection';
|
|
98228
|
+
edges?: Maybe<Array<Maybe<TownsquareGoalTeamEdge>>>;
|
|
98229
|
+
pageInfo: PageInfo;
|
|
98230
|
+
};
|
|
98231
|
+
export declare type TownsquareGoalTeamEdge = {
|
|
98232
|
+
__typename?: 'TownsquareGoalTeamEdge';
|
|
98233
|
+
canRemove?: Maybe<Scalars['Boolean']['output']>;
|
|
98234
|
+
cursor: Scalars['String']['output'];
|
|
98235
|
+
node?: Maybe<TeamV2>;
|
|
98236
|
+
};
|
|
96645
98237
|
export declare type TownsquareGoalType = Node & {
|
|
96646
98238
|
__typename?: 'TownsquareGoalType';
|
|
96647
98239
|
allowedChildTypes?: Maybe<TownsquareGoalTypeConnection>;
|
|
@@ -96732,6 +98324,18 @@ export declare type TownsquareGoalUpdateEdge = {
|
|
|
96732
98324
|
cursor: Scalars['String']['output'];
|
|
96733
98325
|
node?: Maybe<TownsquareGoalUpdate>;
|
|
96734
98326
|
};
|
|
98327
|
+
export declare type TownsquareGoalsSetWatchingGoalInput = {
|
|
98328
|
+
goalId: Scalars['ID']['input'];
|
|
98329
|
+
isWatching: Scalars['Boolean']['input'];
|
|
98330
|
+
userId: Scalars['ID']['input'];
|
|
98331
|
+
};
|
|
98332
|
+
export declare type TownsquareGoalsSetWatchingGoalPayload = {
|
|
98333
|
+
__typename?: 'TownsquareGoalsSetWatchingGoalPayload';
|
|
98334
|
+
errors?: Maybe<Array<MutationError>>;
|
|
98335
|
+
goal?: Maybe<TownsquareGoal>;
|
|
98336
|
+
success: Scalars['Boolean']['output'];
|
|
98337
|
+
user?: Maybe<User>;
|
|
98338
|
+
};
|
|
96735
98339
|
export declare type TownsquareHighlight = {
|
|
96736
98340
|
creationDate?: Maybe<Scalars['DateTime']['output']>;
|
|
96737
98341
|
creator?: Maybe<User>;
|
|
@@ -96743,6 +98347,29 @@ export declare type TownsquareHighlight = {
|
|
|
96743
98347
|
project?: Maybe<TownsquareProject>;
|
|
96744
98348
|
summary?: Maybe<Scalars['String']['output']>;
|
|
96745
98349
|
};
|
|
98350
|
+
export declare type TownsquareHighlightConnection = {
|
|
98351
|
+
__typename?: 'TownsquareHighlightConnection';
|
|
98352
|
+
edges?: Maybe<Array<Maybe<TownsquareHighlightEdge>>>;
|
|
98353
|
+
pageInfo: PageInfo;
|
|
98354
|
+
};
|
|
98355
|
+
export declare type TownsquareHighlightEdge = {
|
|
98356
|
+
__typename?: 'TownsquareHighlightEdge';
|
|
98357
|
+
cursor: Scalars['String']['output'];
|
|
98358
|
+
node?: Maybe<TownsquareHighlight>;
|
|
98359
|
+
};
|
|
98360
|
+
export declare enum TownsquareHighlightSortEnum {
|
|
98361
|
+
CreationDateAsc = "CREATION_DATE_ASC",
|
|
98362
|
+
CreationDateDesc = "CREATION_DATE_DESC",
|
|
98363
|
+
IdAsc = "ID_ASC",
|
|
98364
|
+
IdDesc = "ID_DESC",
|
|
98365
|
+
SummaryAsc = "SUMMARY_ASC",
|
|
98366
|
+
SummaryDesc = "SUMMARY_DESC"
|
|
98367
|
+
}
|
|
98368
|
+
export declare enum TownsquareHighlightType {
|
|
98369
|
+
Decision = "DECISION",
|
|
98370
|
+
Learning = "LEARNING",
|
|
98371
|
+
Risk = "RISK"
|
|
98372
|
+
}
|
|
96746
98373
|
export declare type TownsquareIcon = {
|
|
96747
98374
|
__typename?: 'TownsquareIcon';
|
|
96748
98375
|
color?: Maybe<Scalars['String']['output']>;
|
|
@@ -96759,9 +98386,22 @@ export declare type TownsquareIconUrIs = {
|
|
|
96759
98386
|
roundedSquare?: Maybe<TownsquareThemeUrIs>;
|
|
96760
98387
|
square?: Maybe<TownsquareThemeUrIs>;
|
|
96761
98388
|
};
|
|
96762
|
-
export declare type
|
|
98389
|
+
export declare type TownsquareLearning = TownsquareHighlight & {
|
|
98390
|
+
__typename?: 'TownsquareLearning';
|
|
98391
|
+
creationDate?: Maybe<Scalars['DateTime']['output']>;
|
|
98392
|
+
creator?: Maybe<User>;
|
|
98393
|
+
description?: Maybe<Scalars['String']['output']>;
|
|
98394
|
+
goal?: Maybe<TownsquareGoal>;
|
|
98395
|
+
id: Scalars['ID']['output'];
|
|
98396
|
+
lastEditedBy?: Maybe<User>;
|
|
98397
|
+
lastEditedDate?: Maybe<Scalars['DateTime']['output']>;
|
|
98398
|
+
project?: Maybe<TownsquareProject>;
|
|
98399
|
+
summary?: Maybe<Scalars['String']['output']>;
|
|
98400
|
+
};
|
|
98401
|
+
export declare type TownsquareLink = Node & {
|
|
96763
98402
|
__typename?: 'TownsquareLink';
|
|
96764
98403
|
iconUrl?: Maybe<Scalars['URL']['output']>;
|
|
98404
|
+
id: Scalars['ID']['output'];
|
|
96765
98405
|
name?: Maybe<Scalars['String']['output']>;
|
|
96766
98406
|
provider?: Maybe<Scalars['String']['output']>;
|
|
96767
98407
|
type?: Maybe<TownsquareLinkType>;
|
|
@@ -96853,12 +98493,14 @@ export declare type TownsquareProject = HasMercuryProjectFields & Node & {
|
|
|
96853
98493
|
changelog?: Maybe<TownsquareProjectChangelogItemConnection>;
|
|
96854
98494
|
comments?: Maybe<TownsquareCommentConnection>;
|
|
96855
98495
|
contributors?: Maybe<TownsquareContributorConnection>;
|
|
98496
|
+
creationDate?: Maybe<Scalars['Date']['output']>;
|
|
96856
98497
|
dependencies?: Maybe<TownsquareProjectDependencyConnection>;
|
|
96857
98498
|
description?: Maybe<TownsquareProjectDescription>;
|
|
96858
98499
|
draftUpdate?: Maybe<TownsquareDraftUpdate>;
|
|
96859
98500
|
dueDate?: Maybe<TownsquareTargetDate>;
|
|
96860
98501
|
fusion?: Maybe<TownsquareFusionDetails>;
|
|
96861
98502
|
goals?: Maybe<TownsquareGoalConnection>;
|
|
98503
|
+
highlights?: Maybe<TownsquareHighlightConnection>;
|
|
96862
98504
|
icon?: Maybe<TownsquareIcon>;
|
|
96863
98505
|
iconData?: Maybe<Scalars['String']['output']>;
|
|
96864
98506
|
iconUrl?: Maybe<TownsquareIconUrIs>;
|
|
@@ -96921,6 +98563,15 @@ export declare type TownsquareProjectGoalsArgs = {
|
|
|
96921
98563
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
96922
98564
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
96923
98565
|
};
|
|
98566
|
+
export declare type TownsquareProjectHighlightsArgs = {
|
|
98567
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
98568
|
+
createdAfter?: InputMaybe<Scalars['DateTime']['input']>;
|
|
98569
|
+
createdBefore?: InputMaybe<Scalars['DateTime']['input']>;
|
|
98570
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
98571
|
+
noUpdateAttached?: InputMaybe<Scalars['Boolean']['input']>;
|
|
98572
|
+
sort?: InputMaybe<Array<InputMaybe<TownsquareHighlightSortEnum>>>;
|
|
98573
|
+
type?: InputMaybe<TownsquareHighlightType>;
|
|
98574
|
+
};
|
|
96924
98575
|
export declare type TownsquareProjectLinksArgs = {
|
|
96925
98576
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
96926
98577
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
@@ -97117,6 +98768,36 @@ export declare type TownsquareProjectUpdateEdge = {
|
|
|
97117
98768
|
cursor: Scalars['String']['output'];
|
|
97118
98769
|
node?: Maybe<TownsquareProjectUpdate>;
|
|
97119
98770
|
};
|
|
98771
|
+
export declare type TownsquareProjectsAddGoalLink = {
|
|
98772
|
+
goalId: Scalars['ID']['input'];
|
|
98773
|
+
projectId: Scalars['ID']['input'];
|
|
98774
|
+
};
|
|
98775
|
+
export declare type TownsquareProjectsAddGoalLinkPayload = {
|
|
98776
|
+
__typename?: 'TownsquareProjectsAddGoalLinkPayload';
|
|
98777
|
+
errors?: Maybe<Array<MutationError>>;
|
|
98778
|
+
goal?: Maybe<TownsquareGoal>;
|
|
98779
|
+
project?: Maybe<TownsquareProject>;
|
|
98780
|
+
success: Scalars['Boolean']['output'];
|
|
98781
|
+
};
|
|
98782
|
+
export declare type TownsquareProjectsAddMembersInput = {
|
|
98783
|
+
addAsWatchers?: InputMaybe<Scalars['Boolean']['input']>;
|
|
98784
|
+
projectId: Scalars['ID']['input'];
|
|
98785
|
+
users: Array<Scalars['ID']['input']>;
|
|
98786
|
+
};
|
|
98787
|
+
export declare type TownsquareProjectsAddMembersPayload = {
|
|
98788
|
+
__typename?: 'TownsquareProjectsAddMembersPayload';
|
|
98789
|
+
errors?: Maybe<Array<MutationError>>;
|
|
98790
|
+
project?: Maybe<TownsquareProject>;
|
|
98791
|
+
success: Scalars['Boolean']['output'];
|
|
98792
|
+
users?: Maybe<Array<User>>;
|
|
98793
|
+
};
|
|
98794
|
+
export declare type TownsquareProjectsCreateInput = {
|
|
98795
|
+
containerId: Scalars['String']['input'];
|
|
98796
|
+
icon?: InputMaybe<TownsquareIconInput>;
|
|
98797
|
+
name: Scalars['String']['input'];
|
|
98798
|
+
private?: InputMaybe<Scalars['Boolean']['input']>;
|
|
98799
|
+
targetDate?: InputMaybe<TownsquareTargetDateInput>;
|
|
98800
|
+
};
|
|
97120
98801
|
export declare type TownsquareProjectsCreateLinkInput = {
|
|
97121
98802
|
iconUrl?: InputMaybe<Scalars['String']['input']>;
|
|
97122
98803
|
name?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -97137,12 +98818,42 @@ export declare type TownsquareProjectsCreateLinkPayload = {
|
|
|
97137
98818
|
project?: Maybe<TownsquareProject>;
|
|
97138
98819
|
success: Scalars['Boolean']['output'];
|
|
97139
98820
|
};
|
|
98821
|
+
export declare type TownsquareProjectsCreatePayload = {
|
|
98822
|
+
__typename?: 'TownsquareProjectsCreatePayload';
|
|
98823
|
+
errors?: Maybe<Array<MutationError>>;
|
|
98824
|
+
project?: Maybe<TownsquareProject>;
|
|
98825
|
+
success: Scalars['Boolean']['output'];
|
|
98826
|
+
};
|
|
98827
|
+
export declare type TownsquareProjectsDeleteLinkInput = {
|
|
98828
|
+
linkId: Scalars['ID']['input'];
|
|
98829
|
+
};
|
|
98830
|
+
export declare type TownsquareProjectsDeleteLinkPayload = {
|
|
98831
|
+
__typename?: 'TownsquareProjectsDeleteLinkPayload';
|
|
98832
|
+
errors?: Maybe<Array<MutationError>>;
|
|
98833
|
+
linkId?: Maybe<Scalars['ID']['output']>;
|
|
98834
|
+
project?: Maybe<TownsquareProject>;
|
|
98835
|
+
success: Scalars['Boolean']['output'];
|
|
98836
|
+
};
|
|
97140
98837
|
export declare type TownsquareProjectsEditInput = {
|
|
97141
98838
|
archived?: InputMaybe<Scalars['Boolean']['input']>;
|
|
97142
98839
|
icon?: InputMaybe<TownsquareIconInput>;
|
|
97143
98840
|
id: Scalars['ID']['input'];
|
|
97144
98841
|
name?: InputMaybe<Scalars['String']['input']>;
|
|
97145
98842
|
owner?: InputMaybe<Scalars['ID']['input']>;
|
|
98843
|
+
startDate?: InputMaybe<Scalars['Date']['input']>;
|
|
98844
|
+
};
|
|
98845
|
+
export declare type TownsquareProjectsEditLinkInput = {
|
|
98846
|
+
iconUrl?: InputMaybe<Scalars['String']['input']>;
|
|
98847
|
+
linkId: Scalars['ID']['input'];
|
|
98848
|
+
name?: InputMaybe<Scalars['String']['input']>;
|
|
98849
|
+
provider?: InputMaybe<Scalars['String']['input']>;
|
|
98850
|
+
url?: InputMaybe<Scalars['String']['input']>;
|
|
98851
|
+
};
|
|
98852
|
+
export declare type TownsquareProjectsEditLinkPayload = {
|
|
98853
|
+
__typename?: 'TownsquareProjectsEditLinkPayload';
|
|
98854
|
+
errors?: Maybe<Array<MutationError>>;
|
|
98855
|
+
link?: Maybe<TownsquareLink>;
|
|
98856
|
+
success: Scalars['Boolean']['output'];
|
|
97146
98857
|
};
|
|
97147
98858
|
export declare type TownsquareProjectsEditMutationErrorExtension = MutationErrorExtension & {
|
|
97148
98859
|
__typename?: 'TownsquareProjectsEditMutationErrorExtension';
|
|
@@ -97155,6 +98866,39 @@ export declare type TownsquareProjectsEditPayload = {
|
|
|
97155
98866
|
project?: Maybe<TownsquareProject>;
|
|
97156
98867
|
success: Scalars['Boolean']['output'];
|
|
97157
98868
|
};
|
|
98869
|
+
export declare type TownsquareProjectsRemoveMemberInput = {
|
|
98870
|
+
projectId: Scalars['ID']['input'];
|
|
98871
|
+
userId: Scalars['ID']['input'];
|
|
98872
|
+
};
|
|
98873
|
+
export declare type TownsquareProjectsRemoveMemberPayload = {
|
|
98874
|
+
__typename?: 'TownsquareProjectsRemoveMemberPayload';
|
|
98875
|
+
errors?: Maybe<Array<MutationError>>;
|
|
98876
|
+
success: Scalars['Boolean']['output'];
|
|
98877
|
+
userId?: Maybe<Scalars['ID']['output']>;
|
|
98878
|
+
};
|
|
98879
|
+
export declare type TownsquareProjectsSetWatchingProjectInput = {
|
|
98880
|
+
isWatching: Scalars['Boolean']['input'];
|
|
98881
|
+
projectId: Scalars['ID']['input'];
|
|
98882
|
+
userId: Scalars['ID']['input'];
|
|
98883
|
+
};
|
|
98884
|
+
export declare type TownsquareProjectsSetWatchingProjectPayload = {
|
|
98885
|
+
__typename?: 'TownsquareProjectsSetWatchingProjectPayload';
|
|
98886
|
+
errors?: Maybe<Array<MutationError>>;
|
|
98887
|
+
project?: Maybe<TownsquareProject>;
|
|
98888
|
+
success: Scalars['Boolean']['output'];
|
|
98889
|
+
user?: Maybe<User>;
|
|
98890
|
+
};
|
|
98891
|
+
export declare type TownsquareProjectsShareProjectInput = {
|
|
98892
|
+
projectId: Scalars['ID']['input'];
|
|
98893
|
+
users?: InputMaybe<Array<InputMaybe<TownsquareShareProjectUserInput>>>;
|
|
98894
|
+
};
|
|
98895
|
+
export declare type TownsquareProjectsShareProjectPayload = {
|
|
98896
|
+
__typename?: 'TownsquareProjectsShareProjectPayload';
|
|
98897
|
+
errors?: Maybe<Array<MutationError>>;
|
|
98898
|
+
project?: Maybe<TownsquareProject>;
|
|
98899
|
+
success: Scalars['Boolean']['output'];
|
|
98900
|
+
usersAdded?: Maybe<Array<User>>;
|
|
98901
|
+
};
|
|
97158
98902
|
export declare type TownsquareQueryApi = {
|
|
97159
98903
|
__typename?: 'TownsquareQueryApi';
|
|
97160
98904
|
allWorkspaceSummariesForOrg?: Maybe<TownsquareWorkspaceSummaryConnection>;
|
|
@@ -97267,6 +99011,16 @@ export declare type TownsquareRelationshipInput = {
|
|
|
97267
99011
|
from: Scalars['String']['input'];
|
|
97268
99012
|
to: Scalars['String']['input'];
|
|
97269
99013
|
};
|
|
99014
|
+
export declare type TownsquareRemoveTagsInput = {
|
|
99015
|
+
nounId: Scalars['ID']['input'];
|
|
99016
|
+
tagIds: Array<Scalars['ID']['input']>;
|
|
99017
|
+
};
|
|
99018
|
+
export declare type TownsquareRemoveTagsPayload = {
|
|
99019
|
+
__typename?: 'TownsquareRemoveTagsPayload';
|
|
99020
|
+
errors?: Maybe<Array<MutationError>>;
|
|
99021
|
+
success: Scalars['Boolean']['output'];
|
|
99022
|
+
tagIds?: Maybe<Array<Maybe<Scalars['ID']['output']>>>;
|
|
99023
|
+
};
|
|
97270
99024
|
export declare type TownsquareRisk = TownsquareHighlight & {
|
|
97271
99025
|
__typename?: 'TownsquareRisk';
|
|
97272
99026
|
creationDate?: Maybe<Scalars['DateTime']['output']>;
|
|
@@ -97308,6 +99062,10 @@ export declare type TownsquareSetParentGoalPayload = {
|
|
|
97308
99062
|
goal?: Maybe<TownsquareGoal>;
|
|
97309
99063
|
parentGoal?: Maybe<TownsquareGoal>;
|
|
97310
99064
|
};
|
|
99065
|
+
export declare type TownsquareShareProjectUserInput = {
|
|
99066
|
+
accountId?: InputMaybe<Scalars['ID']['input']>;
|
|
99067
|
+
addAsWatcher?: InputMaybe<Scalars['Boolean']['input']>;
|
|
99068
|
+
};
|
|
97311
99069
|
export declare type TownsquareStatus = {
|
|
97312
99070
|
__typename?: 'TownsquareStatus';
|
|
97313
99071
|
localizedLabel?: Maybe<TownsquareLocalizationField>;
|
|
@@ -97537,8 +99295,8 @@ export declare type TrelloActionAttachmentPreviewEntity = {
|
|
|
97537
99295
|
};
|
|
97538
99296
|
export declare type TrelloActionBoardEntity = {
|
|
97539
99297
|
__typename?: 'TrelloActionBoardEntity';
|
|
97540
|
-
id?: Maybe<Scalars['ID']['output']>;
|
|
97541
99298
|
name?: Maybe<Scalars['String']['output']>;
|
|
99299
|
+
objectId?: Maybe<Scalars['ID']['output']>;
|
|
97542
99300
|
shortLink?: Maybe<Scalars['TrelloShortLink']['output']>;
|
|
97543
99301
|
text?: Maybe<Scalars['String']['output']>;
|
|
97544
99302
|
type?: Maybe<Scalars['String']['output']>;
|
|
@@ -97551,9 +99309,9 @@ export declare type TrelloActionCardEntity = {
|
|
|
97551
99309
|
due?: Maybe<Scalars['DateTime']['output']>;
|
|
97552
99310
|
dueComplete?: Maybe<Scalars['Boolean']['output']>;
|
|
97553
99311
|
hideIfContext?: Maybe<Scalars['Boolean']['output']>;
|
|
97554
|
-
|
|
97555
|
-
listId?: Maybe<Scalars['String']['output']>;
|
|
99312
|
+
listObjectId?: Maybe<Scalars['String']['output']>;
|
|
97556
99313
|
name?: Maybe<Scalars['String']['output']>;
|
|
99314
|
+
objectId?: Maybe<Scalars['ID']['output']>;
|
|
97557
99315
|
position?: Maybe<Scalars['Float']['output']>;
|
|
97558
99316
|
shortId?: Maybe<Scalars['Int']['output']>;
|
|
97559
99317
|
shortLink?: Maybe<Scalars['TrelloShortLink']['output']>;
|
|
@@ -97695,16 +99453,107 @@ export declare type TrelloAddRemoveMemberActionDisplayEntities = {
|
|
|
97695
99453
|
member?: Maybe<TrelloActionMemberEntity>;
|
|
97696
99454
|
membercreator?: Maybe<TrelloActionMemberEntity>;
|
|
97697
99455
|
};
|
|
99456
|
+
export declare type TrelloAiRule = {
|
|
99457
|
+
__typename?: 'TrelloAiRule';
|
|
99458
|
+
objectId: Scalars['ID']['output'];
|
|
99459
|
+
position?: Maybe<Scalars['Float']['output']>;
|
|
99460
|
+
rule?: Maybe<Scalars['String']['output']>;
|
|
99461
|
+
};
|
|
99462
|
+
export declare type TrelloAiRuleInput = {
|
|
99463
|
+
position: Scalars['Float']['input'];
|
|
99464
|
+
rule: Scalars['String']['input'];
|
|
99465
|
+
};
|
|
99466
|
+
export declare type TrelloAiRulePayload = Payload & {
|
|
99467
|
+
__typename?: 'TrelloAiRulePayload';
|
|
99468
|
+
errors?: Maybe<Array<MutationError>>;
|
|
99469
|
+
rules?: Maybe<Array<TrelloAiRule>>;
|
|
99470
|
+
success: Scalars['Boolean']['output'];
|
|
99471
|
+
};
|
|
97698
99472
|
export declare type TrelloAppCreator = {
|
|
97699
99473
|
__typename?: 'TrelloAppCreator';
|
|
97700
99474
|
icon?: Maybe<TrelloApplicationIcon>;
|
|
97701
99475
|
id: Scalars['ID']['output'];
|
|
97702
99476
|
name?: Maybe<Scalars['String']['output']>;
|
|
97703
99477
|
};
|
|
99478
|
+
export declare type TrelloApplication = {
|
|
99479
|
+
__typename?: 'TrelloApplication';
|
|
99480
|
+
agreement?: Maybe<TrelloApplicationAgreement>;
|
|
99481
|
+
author?: Maybe<Scalars['String']['output']>;
|
|
99482
|
+
capabilities?: Maybe<Array<Scalars['String']['output']>>;
|
|
99483
|
+
capabilitiesOptions?: Maybe<Array<Scalars['String']['output']>>;
|
|
99484
|
+
categories?: Maybe<Array<Scalars['String']['output']>>;
|
|
99485
|
+
collaborators?: Maybe<Array<TrelloMember>>;
|
|
99486
|
+
compliance?: Maybe<TrelloApplicationCompliance>;
|
|
99487
|
+
deprecation?: Maybe<TrelloApplicationDeprecation>;
|
|
99488
|
+
email?: Maybe<Scalars['String']['output']>;
|
|
99489
|
+
heroImageUrl?: Maybe<TrelloApplicationHeroImageUrl>;
|
|
99490
|
+
icon?: Maybe<TrelloApplicationIcon>;
|
|
99491
|
+
id: Scalars['ID']['output'];
|
|
99492
|
+
iframeConnectorUrl?: Maybe<Scalars['URL']['output']>;
|
|
99493
|
+
key?: Maybe<Scalars['String']['output']>;
|
|
99494
|
+
listings?: Maybe<Array<TrelloApplicationListing>>;
|
|
99495
|
+
moderatedState?: Maybe<Scalars['String']['output']>;
|
|
99496
|
+
name?: Maybe<Scalars['String']['output']>;
|
|
99497
|
+
oauth2Client?: Maybe<TrelloOAuth2Client>;
|
|
99498
|
+
privacyUrl?: Maybe<Scalars['URL']['output']>;
|
|
99499
|
+
public?: Maybe<Scalars['Boolean']['output']>;
|
|
99500
|
+
supportEmail?: Maybe<Scalars['String']['output']>;
|
|
99501
|
+
tags?: Maybe<Array<Scalars['String']['output']>>;
|
|
99502
|
+
usage?: Maybe<TrelloApplicationUsage>;
|
|
99503
|
+
workspaceId?: Maybe<Scalars['ID']['output']>;
|
|
99504
|
+
};
|
|
99505
|
+
export declare type TrelloApplicationAgreement = {
|
|
99506
|
+
__typename?: 'TrelloApplicationAgreement';
|
|
99507
|
+
agreementType?: Maybe<Scalars['String']['output']>;
|
|
99508
|
+
id: Scalars['ID']['output'];
|
|
99509
|
+
};
|
|
99510
|
+
export declare type TrelloApplicationBoardCountByDate = {
|
|
99511
|
+
__typename?: 'TrelloApplicationBoardCountByDate';
|
|
99512
|
+
boards?: Maybe<Scalars['Int']['output']>;
|
|
99513
|
+
date?: Maybe<Scalars['DateTime']['output']>;
|
|
99514
|
+
};
|
|
99515
|
+
export declare type TrelloApplicationCompliance = {
|
|
99516
|
+
__typename?: 'TrelloApplicationCompliance';
|
|
99517
|
+
dateUpdatedStoresPersonalData?: Maybe<Scalars['DateTime']['output']>;
|
|
99518
|
+
lastPolled?: Maybe<Scalars['DateTime']['output']>;
|
|
99519
|
+
storesPersonalData?: Maybe<Scalars['Boolean']['output']>;
|
|
99520
|
+
};
|
|
99521
|
+
export declare type TrelloApplicationDeprecation = {
|
|
99522
|
+
__typename?: 'TrelloApplicationDeprecation';
|
|
99523
|
+
date?: Maybe<Scalars['DateTime']['output']>;
|
|
99524
|
+
infoLink?: Maybe<Scalars['URL']['output']>;
|
|
99525
|
+
};
|
|
99526
|
+
export declare type TrelloApplicationHeroImageUrl = {
|
|
99527
|
+
__typename?: 'TrelloApplicationHeroImageUrl';
|
|
99528
|
+
image1x?: Maybe<Scalars['URL']['output']>;
|
|
99529
|
+
image2x?: Maybe<Scalars['URL']['output']>;
|
|
99530
|
+
};
|
|
97704
99531
|
export declare type TrelloApplicationIcon = {
|
|
97705
99532
|
__typename?: 'TrelloApplicationIcon';
|
|
97706
99533
|
url?: Maybe<Scalars['URL']['output']>;
|
|
97707
99534
|
};
|
|
99535
|
+
export declare type TrelloApplicationListing = {
|
|
99536
|
+
__typename?: 'TrelloApplicationListing';
|
|
99537
|
+
description?: Maybe<Scalars['String']['output']>;
|
|
99538
|
+
id: Scalars['ID']['output'];
|
|
99539
|
+
locale?: Maybe<Scalars['String']['output']>;
|
|
99540
|
+
name?: Maybe<Scalars['String']['output']>;
|
|
99541
|
+
overview?: Maybe<Scalars['String']['output']>;
|
|
99542
|
+
updates?: Maybe<Array<TrelloApplicationListingUpdate>>;
|
|
99543
|
+
};
|
|
99544
|
+
export declare type TrelloApplicationListingUpdate = {
|
|
99545
|
+
__typename?: 'TrelloApplicationListingUpdate';
|
|
99546
|
+
content?: Maybe<Scalars['String']['output']>;
|
|
99547
|
+
date?: Maybe<Scalars['DateTime']['output']>;
|
|
99548
|
+
id: Scalars['ID']['output'];
|
|
99549
|
+
title?: Maybe<Scalars['String']['output']>;
|
|
99550
|
+
};
|
|
99551
|
+
export declare type TrelloApplicationUsage = {
|
|
99552
|
+
__typename?: 'TrelloApplicationUsage';
|
|
99553
|
+
boardCountByDate?: Maybe<Array<TrelloApplicationBoardCountByDate>>;
|
|
99554
|
+
boards?: Maybe<Scalars['Int']['output']>;
|
|
99555
|
+
members?: Maybe<Scalars['Int']['output']>;
|
|
99556
|
+
};
|
|
97708
99557
|
export declare type TrelloArchiveCardInput = {
|
|
97709
99558
|
cardId: Scalars['ID']['input'];
|
|
97710
99559
|
};
|
|
@@ -98456,6 +100305,7 @@ export declare type TrelloCardUpdated = {
|
|
|
98456
100305
|
onChecklistDeleted?: Maybe<Array<TrelloChecklistDeleted>>;
|
|
98457
100306
|
pinned?: Maybe<Scalars['Boolean']['output']>;
|
|
98458
100307
|
position?: Maybe<Scalars['Float']['output']>;
|
|
100308
|
+
powerUpData?: Maybe<TrelloPowerUpDataConnectionUpdated>;
|
|
98459
100309
|
role?: Maybe<TrelloCardRole>;
|
|
98460
100310
|
shortId?: Maybe<Scalars['Int']['output']>;
|
|
98461
100311
|
shortLink?: Maybe<Scalars['TrelloShortLink']['output']>;
|
|
@@ -98762,20 +100612,6 @@ export declare type TrelloCreateInboxCardActionDisplayEntities = {
|
|
|
98762
100612
|
card?: Maybe<TrelloActionCardEntity>;
|
|
98763
100613
|
memberCreator?: Maybe<TrelloActionMemberEntity>;
|
|
98764
100614
|
};
|
|
98765
|
-
export declare type TrelloCreateOAuth2ApplicationInput = {
|
|
98766
|
-
author: Scalars['String']['input'];
|
|
98767
|
-
email: Scalars['String']['input'];
|
|
98768
|
-
iframeUrl?: InputMaybe<Scalars['URL']['input']>;
|
|
98769
|
-
locale?: InputMaybe<Scalars['String']['input']>;
|
|
98770
|
-
name: Scalars['String']['input'];
|
|
98771
|
-
supportContact: Scalars['String']['input'];
|
|
98772
|
-
workspaceId: Scalars['ID']['input'];
|
|
98773
|
-
};
|
|
98774
|
-
export declare type TrelloCreateOAuth2ApplicationPayload = {
|
|
98775
|
-
__typename?: 'TrelloCreateOAuth2ApplicationPayload';
|
|
98776
|
-
id: Scalars['ID']['output'];
|
|
98777
|
-
oauth2Client?: Maybe<TrelloOAuth2Client>;
|
|
98778
|
-
};
|
|
98779
100615
|
export declare type TrelloCreateOrUpdatePlannerCalendarInput = {
|
|
98780
100616
|
enabled: Scalars['Boolean']['input'];
|
|
98781
100617
|
primaryCalendar?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -98810,6 +100646,7 @@ export declare type TrelloCreatePlannerCalendarEventPayload = Payload & {
|
|
|
98810
100646
|
export declare type TrelloCustomField = {
|
|
98811
100647
|
__typename?: 'TrelloCustomField';
|
|
98812
100648
|
display?: Maybe<TrelloCustomFieldDisplay>;
|
|
100649
|
+
id: Scalars['ID']['output'];
|
|
98813
100650
|
name?: Maybe<Scalars['String']['output']>;
|
|
98814
100651
|
objectId: Scalars['ID']['output'];
|
|
98815
100652
|
options?: Maybe<Array<TrelloCustomFieldOption>>;
|
|
@@ -98828,6 +100665,7 @@ export declare type TrelloCustomFieldConnectionUpdated = {
|
|
|
98828
100665
|
};
|
|
98829
100666
|
export declare type TrelloCustomFieldDeleted = {
|
|
98830
100667
|
__typename?: 'TrelloCustomFieldDeleted';
|
|
100668
|
+
id: Scalars['ID']['output'];
|
|
98831
100669
|
objectId?: Maybe<Scalars['ID']['output']>;
|
|
98832
100670
|
};
|
|
98833
100671
|
export declare type TrelloCustomFieldDisplay = {
|
|
@@ -98845,6 +100683,7 @@ export declare type TrelloCustomFieldEdgeUpdated = {
|
|
|
98845
100683
|
};
|
|
98846
100684
|
export declare type TrelloCustomFieldId = {
|
|
98847
100685
|
__typename?: 'TrelloCustomFieldId';
|
|
100686
|
+
id: Scalars['ID']['output'];
|
|
98848
100687
|
objectId: Scalars['ID']['output'];
|
|
98849
100688
|
};
|
|
98850
100689
|
export declare type TrelloCustomFieldItem = {
|
|
@@ -99000,6 +100839,10 @@ export declare type TrelloInbox = {
|
|
|
99000
100839
|
__typename?: 'TrelloInbox';
|
|
99001
100840
|
board: TrelloBoard;
|
|
99002
100841
|
};
|
|
100842
|
+
export declare type TrelloInboxUpdated = {
|
|
100843
|
+
__typename?: 'TrelloInboxUpdated';
|
|
100844
|
+
board: TrelloBoardUpdated;
|
|
100845
|
+
};
|
|
99003
100846
|
export declare type TrelloJwmWorkspaceLink = {
|
|
99004
100847
|
__typename?: 'TrelloJwmWorkspaceLink';
|
|
99005
100848
|
cloudId?: Maybe<Scalars['String']['output']>;
|
|
@@ -99148,10 +100991,12 @@ export declare type TrelloListViewer = {
|
|
|
99148
100991
|
export declare type TrelloMember = Node & {
|
|
99149
100992
|
__typename?: 'TrelloMember';
|
|
99150
100993
|
activityBlocked?: Maybe<Scalars['Boolean']['output']>;
|
|
100994
|
+
aiRules?: Maybe<Array<TrelloAiRule>>;
|
|
99151
100995
|
avatarSource?: Maybe<Scalars['String']['output']>;
|
|
99152
100996
|
avatarUrl?: Maybe<Scalars['URL']['output']>;
|
|
99153
100997
|
bio?: Maybe<Scalars['String']['output']>;
|
|
99154
100998
|
bioData?: Maybe<Scalars['JSON']['output']>;
|
|
100999
|
+
boardStars?: Maybe<TrelloMemberBoardStarConnection>;
|
|
99155
101000
|
confirmed?: Maybe<Scalars['Boolean']['output']>;
|
|
99156
101001
|
enterprise?: Maybe<TrelloEnterprise>;
|
|
99157
101002
|
fullName?: Maybe<Scalars['String']['output']>;
|
|
@@ -99169,11 +101014,27 @@ export declare type TrelloMember = Node & {
|
|
|
99169
101014
|
username?: Maybe<Scalars['String']['output']>;
|
|
99170
101015
|
workspaces?: Maybe<TrelloMemberWorkspaceConnection>;
|
|
99171
101016
|
};
|
|
101017
|
+
export declare type TrelloMemberBoardStarsArgs = {
|
|
101018
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
101019
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
101020
|
+
};
|
|
99172
101021
|
export declare type TrelloMemberWorkspacesArgs = {
|
|
99173
101022
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
99174
101023
|
filter: TrelloMemberWorkspaceFilter;
|
|
99175
101024
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
99176
101025
|
};
|
|
101026
|
+
export declare type TrelloMemberBoardStarConnection = {
|
|
101027
|
+
__typename?: 'TrelloMemberBoardStarConnection';
|
|
101028
|
+
edges?: Maybe<Array<TrelloMemberBoardStarEdge>>;
|
|
101029
|
+
nodes?: Maybe<Array<TrelloBoard>>;
|
|
101030
|
+
pageInfo: PageInfo;
|
|
101031
|
+
};
|
|
101032
|
+
export declare type TrelloMemberBoardStarEdge = {
|
|
101033
|
+
__typename?: 'TrelloMemberBoardStarEdge';
|
|
101034
|
+
cursor: Scalars['String']['output'];
|
|
101035
|
+
node: TrelloBoard;
|
|
101036
|
+
position: Scalars['Float']['output'];
|
|
101037
|
+
};
|
|
99177
101038
|
export declare type TrelloMemberConnection = {
|
|
99178
101039
|
__typename?: 'TrelloMemberConnection';
|
|
99179
101040
|
edges?: Maybe<Array<Maybe<TrelloMemberEdge>>>;
|
|
@@ -99202,7 +101063,9 @@ export declare type TrelloMemberUpdated = {
|
|
|
99202
101063
|
boards?: Maybe<TrelloBoardConnectionUpdated>;
|
|
99203
101064
|
fullName?: Maybe<Scalars['String']['output']>;
|
|
99204
101065
|
id?: Maybe<Scalars['ID']['output']>;
|
|
101066
|
+
inbox?: Maybe<TrelloInboxUpdated>;
|
|
99205
101067
|
initials?: Maybe<Scalars['String']['output']>;
|
|
101068
|
+
planner?: Maybe<TrelloPlannerUpdated>;
|
|
99206
101069
|
username?: Maybe<Scalars['String']['output']>;
|
|
99207
101070
|
};
|
|
99208
101071
|
export declare type TrelloMemberUpdatedConnection = {
|
|
@@ -99309,9 +101172,9 @@ export declare type TrelloMutationApi = {
|
|
|
99309
101172
|
addMemberToCard?: Maybe<TrelloAddMemberToCardPayload>;
|
|
99310
101173
|
archiveCard?: Maybe<TrelloArchiveCardPayload>;
|
|
99311
101174
|
assignCardToPlannerCalendarEvent?: Maybe<TrelloAssignCardToPlannerCalendarEventPayload>;
|
|
101175
|
+
createAiRule?: Maybe<TrelloAiRulePayload>;
|
|
99312
101176
|
createApplication?: Maybe<TrelloCreateApplicationPayload>;
|
|
99313
101177
|
createCard?: Maybe<TrelloCreateCardPayload>;
|
|
99314
|
-
createOAuth2Application?: Maybe<TrelloCreateOAuth2ApplicationPayload>;
|
|
99315
101178
|
createOrUpdatePlannerCalendar?: Maybe<TrelloCreateOrUpdatePlannerCalendarPayload>;
|
|
99316
101179
|
createPlannerCalendarEvent?: Maybe<TrelloCreatePlannerCalendarEventPayload>;
|
|
99317
101180
|
deletePlannerCalendarEvent?: Maybe<TrelloDeletePlannerCalendarEventPayload>;
|
|
@@ -99332,6 +101195,7 @@ export declare type TrelloMutationApi = {
|
|
|
99332
101195
|
updateBoardViewerMirrorCard?: Maybe<TrelloUpdateBoardViewerShowCompactMirrorCardPayload>;
|
|
99333
101196
|
updateBoardVisibility?: Maybe<TrelloUpdateBoardVisibilityPayload>;
|
|
99334
101197
|
updateCardName?: Maybe<TrelloUpdateCardNamePayload>;
|
|
101198
|
+
updateCardPositionOnPlannerCalendarEvent?: Maybe<TrelloUpdateCardPositionOnPlannerCalendarEventPayload>;
|
|
99335
101199
|
updateKeyboardShortcutsPref?: Maybe<TrelloUpdateKeyboardShortcutsPrefPayload>;
|
|
99336
101200
|
updateOAuth2AppCallbackUrls?: Maybe<TrelloUpdateOAuth2AppCallbackUrlsPayload>;
|
|
99337
101201
|
watchCard?: Maybe<TrelloWatchCardPayload>;
|
|
@@ -99345,15 +101209,15 @@ export declare type TrelloMutationApiArchiveCardArgs = {
|
|
|
99345
101209
|
export declare type TrelloMutationApiAssignCardToPlannerCalendarEventArgs = {
|
|
99346
101210
|
input: TrelloAssignCardToPlannerCalendarEventInput;
|
|
99347
101211
|
};
|
|
101212
|
+
export declare type TrelloMutationApiCreateAiRuleArgs = {
|
|
101213
|
+
input: TrelloAiRuleInput;
|
|
101214
|
+
};
|
|
99348
101215
|
export declare type TrelloMutationApiCreateApplicationArgs = {
|
|
99349
101216
|
input: TrelloCreateApplicationInput;
|
|
99350
101217
|
};
|
|
99351
101218
|
export declare type TrelloMutationApiCreateCardArgs = {
|
|
99352
101219
|
input: TrelloCreateCardInput;
|
|
99353
101220
|
};
|
|
99354
|
-
export declare type TrelloMutationApiCreateOAuth2ApplicationArgs = {
|
|
99355
|
-
input: TrelloCreateOAuth2ApplicationInput;
|
|
99356
|
-
};
|
|
99357
101221
|
export declare type TrelloMutationApiCreateOrUpdatePlannerCalendarArgs = {
|
|
99358
101222
|
input: TrelloCreateOrUpdatePlannerCalendarInput;
|
|
99359
101223
|
};
|
|
@@ -99414,6 +101278,9 @@ export declare type TrelloMutationApiUpdateBoardVisibilityArgs = {
|
|
|
99414
101278
|
export declare type TrelloMutationApiUpdateCardNameArgs = {
|
|
99415
101279
|
input: TrelloUpdateCardNameInput;
|
|
99416
101280
|
};
|
|
101281
|
+
export declare type TrelloMutationApiUpdateCardPositionOnPlannerCalendarEventArgs = {
|
|
101282
|
+
input: TrelloUpdateCardPositionOnPlannerCalendarEventInput;
|
|
101283
|
+
};
|
|
99417
101284
|
export declare type TrelloMutationApiUpdateKeyboardShortcutsPrefArgs = {
|
|
99418
101285
|
input: TrelloUpdateKeyboardShortcutsPrefInput;
|
|
99419
101286
|
};
|
|
@@ -99830,11 +101697,19 @@ export declare type TrelloPowerUpDataConnection = {
|
|
|
99830
101697
|
nodes?: Maybe<Array<TrelloPowerUpData>>;
|
|
99831
101698
|
pageInfo: PageInfo;
|
|
99832
101699
|
};
|
|
101700
|
+
export declare type TrelloPowerUpDataConnectionUpdated = {
|
|
101701
|
+
__typename?: 'TrelloPowerUpDataConnectionUpdated';
|
|
101702
|
+
edges?: Maybe<Array<TrelloPowerUpDataEdgeUpdated>>;
|
|
101703
|
+
};
|
|
99833
101704
|
export declare type TrelloPowerUpDataEdge = {
|
|
99834
101705
|
__typename?: 'TrelloPowerUpDataEdge';
|
|
99835
101706
|
cursor: Scalars['String']['output'];
|
|
99836
101707
|
node: TrelloPowerUpData;
|
|
99837
101708
|
};
|
|
101709
|
+
export declare type TrelloPowerUpDataEdgeUpdated = {
|
|
101710
|
+
__typename?: 'TrelloPowerUpDataEdgeUpdated';
|
|
101711
|
+
node: TrelloPowerUpData;
|
|
101712
|
+
};
|
|
99838
101713
|
export declare type TrelloPowerUpDataFilterInput = {
|
|
99839
101714
|
access?: InputMaybe<Scalars['String']['input']>;
|
|
99840
101715
|
powerUps?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
@@ -99868,6 +101743,7 @@ export declare type TrelloProviderCalendarInterface = {
|
|
|
99868
101743
|
};
|
|
99869
101744
|
export declare type TrelloQueryApi = {
|
|
99870
101745
|
__typename?: 'TrelloQueryApi';
|
|
101746
|
+
application?: Maybe<TrelloApplication>;
|
|
99871
101747
|
attachmentsById?: Maybe<Array<Maybe<TrelloAttachment>>>;
|
|
99872
101748
|
board?: Maybe<TrelloBoard>;
|
|
99873
101749
|
boardByShortLink?: Maybe<TrelloBoard>;
|
|
@@ -99898,6 +101774,9 @@ export declare type TrelloQueryApi = {
|
|
|
99898
101774
|
usersById?: Maybe<Array<Maybe<TrelloMember>>>;
|
|
99899
101775
|
workspace?: Maybe<TrelloWorkspace>;
|
|
99900
101776
|
};
|
|
101777
|
+
export declare type TrelloQueryApiApplicationArgs = {
|
|
101778
|
+
id: Scalars['ID']['input'];
|
|
101779
|
+
};
|
|
99901
101780
|
export declare type TrelloQueryApiAttachmentsByIdArgs = {
|
|
99902
101781
|
ids: Array<Scalars['ID']['input']>;
|
|
99903
101782
|
};
|
|
@@ -100355,6 +102234,16 @@ export declare type TrelloUpdateCardNamePayload = Payload & {
|
|
|
100355
102234
|
errors?: Maybe<Array<MutationError>>;
|
|
100356
102235
|
success: Scalars['Boolean']['output'];
|
|
100357
102236
|
};
|
|
102237
|
+
export declare type TrelloUpdateCardPositionOnPlannerCalendarEventInput = {
|
|
102238
|
+
plannerCalendarEventCardId: Scalars['ID']['input'];
|
|
102239
|
+
position: Scalars['Float']['input'];
|
|
102240
|
+
};
|
|
102241
|
+
export declare type TrelloUpdateCardPositionOnPlannerCalendarEventPayload = Payload & {
|
|
102242
|
+
__typename?: 'TrelloUpdateCardPositionOnPlannerCalendarEventPayload';
|
|
102243
|
+
errors?: Maybe<Array<MutationError>>;
|
|
102244
|
+
eventCard?: Maybe<TrelloPlannerCalendarEventCard>;
|
|
102245
|
+
success: Scalars['Boolean']['output'];
|
|
102246
|
+
};
|
|
100358
102247
|
export declare type TrelloUpdateCheckItemStateOnCardAction = TrelloAction & TrelloCardActionData & {
|
|
100359
102248
|
__typename?: 'TrelloUpdateCheckItemStateOnCardAction';
|
|
100360
102249
|
appCreator?: Maybe<TrelloAppCreator>;
|
|
@@ -100676,11 +102565,21 @@ export declare type UnifiedAiErrorExtensions = {
|
|
|
100676
102565
|
errorType?: Maybe<Scalars['String']['output']>;
|
|
100677
102566
|
statusCode?: Maybe<Scalars['Int']['output']>;
|
|
100678
102567
|
};
|
|
102568
|
+
export declare type UnifiedAiLikePayload = UnifiedAiPostPayload | UnifiedAiResponsePayload;
|
|
102569
|
+
export declare enum UnifiedAiLikeTargetType {
|
|
102570
|
+
Post = "POST",
|
|
102571
|
+
Response = "RESPONSE"
|
|
102572
|
+
}
|
|
100679
102573
|
export declare type UnifiedAiMutation = {
|
|
100680
102574
|
__typename?: 'UnifiedAiMutation';
|
|
100681
102575
|
createForumCategory?: Maybe<UnifiedAiCategoryPayload>;
|
|
100682
102576
|
createPost?: Maybe<UnifiedAiPostPayload>;
|
|
102577
|
+
createResponseByPostId?: Maybe<UnifiedAiResponsePayload>;
|
|
102578
|
+
createTag?: Maybe<UnifiedAiTagPayload>;
|
|
100683
102579
|
deletePost?: Maybe<UnifiedAiPostPayload>;
|
|
102580
|
+
incrementView?: Maybe<UnifiedAiPostPayload>;
|
|
102581
|
+
like?: Maybe<UnifiedAiLikePayload>;
|
|
102582
|
+
unlike?: Maybe<UnifiedAiLikePayload>;
|
|
100684
102583
|
updatePost?: Maybe<UnifiedAiPostPayload>;
|
|
100685
102584
|
};
|
|
100686
102585
|
export declare type UnifiedAiMutationCreateForumCategoryArgs = {
|
|
@@ -100695,16 +102594,39 @@ export declare type UnifiedAiMutationCreateForumCategoryArgs = {
|
|
|
100695
102594
|
export declare type UnifiedAiMutationCreatePostArgs = {
|
|
100696
102595
|
categoryId: Scalars['String']['input'];
|
|
100697
102596
|
content: Scalars['String']['input'];
|
|
102597
|
+
tags?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
100698
102598
|
title: Scalars['String']['input'];
|
|
100699
102599
|
type: Scalars['String']['input'];
|
|
100700
102600
|
};
|
|
102601
|
+
export declare type UnifiedAiMutationCreateResponseByPostIdArgs = {
|
|
102602
|
+
content: Scalars['String']['input'];
|
|
102603
|
+
parentResponseId?: InputMaybe<Scalars['String']['input']>;
|
|
102604
|
+
postId: Scalars['String']['input'];
|
|
102605
|
+
};
|
|
102606
|
+
export declare type UnifiedAiMutationCreateTagArgs = {
|
|
102607
|
+
color: Scalars['String']['input'];
|
|
102608
|
+
description?: InputMaybe<Scalars['String']['input']>;
|
|
102609
|
+
name: Scalars['String']['input'];
|
|
102610
|
+
};
|
|
100701
102611
|
export declare type UnifiedAiMutationDeletePostArgs = {
|
|
100702
102612
|
id: Scalars['String']['input'];
|
|
100703
102613
|
};
|
|
102614
|
+
export declare type UnifiedAiMutationIncrementViewArgs = {
|
|
102615
|
+
postId: Scalars['String']['input'];
|
|
102616
|
+
};
|
|
102617
|
+
export declare type UnifiedAiMutationLikeArgs = {
|
|
102618
|
+
targetId: Scalars['String']['input'];
|
|
102619
|
+
targetType: UnifiedAiLikeTargetType;
|
|
102620
|
+
};
|
|
102621
|
+
export declare type UnifiedAiMutationUnlikeArgs = {
|
|
102622
|
+
targetId: Scalars['String']['input'];
|
|
102623
|
+
targetType: UnifiedAiLikeTargetType;
|
|
102624
|
+
};
|
|
100704
102625
|
export declare type UnifiedAiMutationUpdatePostArgs = {
|
|
100705
102626
|
content: Scalars['String']['input'];
|
|
100706
102627
|
editReason?: InputMaybe<Scalars['String']['input']>;
|
|
100707
102628
|
id: Scalars['String']['input'];
|
|
102629
|
+
tags?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
100708
102630
|
};
|
|
100709
102631
|
export declare type UnifiedAiPost = UnifiedINode & {
|
|
100710
102632
|
__typename?: 'UnifiedAiPost';
|
|
@@ -100719,7 +102641,7 @@ export declare type UnifiedAiPost = UnifiedINode & {
|
|
|
100719
102641
|
is_locked: Scalars['Boolean']['output'];
|
|
100720
102642
|
is_pinned: Scalars['Boolean']['output'];
|
|
100721
102643
|
like_ids: Array<Scalars['String']['output']>;
|
|
100722
|
-
responses?: Maybe<Array<Maybe<
|
|
102644
|
+
responses?: Maybe<Array<Maybe<UnifiedAiResponse>>>;
|
|
100723
102645
|
tags: Array<Scalars['String']['output']>;
|
|
100724
102646
|
title: Scalars['String']['output'];
|
|
100725
102647
|
type: Scalars['String']['output'];
|
|
@@ -100742,12 +102664,21 @@ export declare type UnifiedAiPostResult = {
|
|
|
100742
102664
|
};
|
|
100743
102665
|
export declare enum UnifiedAiPostSortField {
|
|
100744
102666
|
CreatedAt = "CREATED_AT",
|
|
100745
|
-
IsPinned = "IS_PINNED",
|
|
100746
102667
|
LastReplyAt = "LAST_REPLY_AT",
|
|
100747
|
-
|
|
102668
|
+
LikeCount = "LIKE_COUNT",
|
|
100748
102669
|
UpdatedAt = "UPDATED_AT",
|
|
100749
102670
|
ViewCount = "VIEW_COUNT"
|
|
100750
102671
|
}
|
|
102672
|
+
export declare type UnifiedAiPostSortOrder = {
|
|
102673
|
+
direction: UnifiedSortDirection;
|
|
102674
|
+
field: UnifiedAiPostSortField;
|
|
102675
|
+
};
|
|
102676
|
+
export declare type UnifiedAiPostSummarizerResult = {
|
|
102677
|
+
__typename?: 'UnifiedAiPostSummarizerResult';
|
|
102678
|
+
keyPoints: Array<Scalars['String']['output']>;
|
|
102679
|
+
sentiment: Scalars['String']['output'];
|
|
102680
|
+
summary: Scalars['String']['output'];
|
|
102681
|
+
};
|
|
100751
102682
|
export declare enum UnifiedAiPostType {
|
|
100752
102683
|
Article = "ARTICLE",
|
|
100753
102684
|
Question = "QUESTION"
|
|
@@ -100764,29 +102695,94 @@ export declare type UnifiedAiPostsResult = {
|
|
|
100764
102695
|
};
|
|
100765
102696
|
export declare type UnifiedAiQuery = {
|
|
100766
102697
|
__typename?: 'UnifiedAiQuery';
|
|
100767
|
-
getAllPosts?: Maybe<UnifiedUAiPostsConnectionResult>;
|
|
100768
102698
|
getForumCategories?: Maybe<UnifiedUAiCategoriesResult>;
|
|
100769
102699
|
getPostById?: Maybe<UnifiedUAiPostResult>;
|
|
102700
|
+
getPostSummarizer?: Maybe<UnifiedUAiPostSummarizerResult>;
|
|
102701
|
+
getPosts?: Maybe<UnifiedUAiPostsConnectionResult>;
|
|
100770
102702
|
getPostsByAuthorId?: Maybe<UnifiedUAiPostsResult>;
|
|
100771
|
-
|
|
102703
|
+
getTagSuggestions?: Maybe<UnifiedUAiTagSuggestionsConnectionResult>;
|
|
100772
102704
|
};
|
|
100773
|
-
export declare type
|
|
102705
|
+
export declare type UnifiedAiQueryGetPostByIdArgs = {
|
|
102706
|
+
id: Scalars['String']['input'];
|
|
102707
|
+
};
|
|
102708
|
+
export declare type UnifiedAiQueryGetPostSummarizerArgs = {
|
|
102709
|
+
postId: Scalars['String']['input'];
|
|
102710
|
+
};
|
|
102711
|
+
export declare type UnifiedAiQueryGetPostsArgs = {
|
|
100774
102712
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
102713
|
+
categoryId?: InputMaybe<Scalars['String']['input']>;
|
|
100775
102714
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
100776
102715
|
isLocked?: InputMaybe<Scalars['Boolean']['input']>;
|
|
100777
102716
|
isPinned?: InputMaybe<Scalars['Boolean']['input']>;
|
|
100778
|
-
|
|
100779
|
-
|
|
102717
|
+
maxLikes?: InputMaybe<Scalars['Int']['input']>;
|
|
102718
|
+
maxViews?: InputMaybe<Scalars['Int']['input']>;
|
|
102719
|
+
minLikes?: InputMaybe<Scalars['Int']['input']>;
|
|
102720
|
+
minViews?: InputMaybe<Scalars['Int']['input']>;
|
|
102721
|
+
sortOrders?: InputMaybe<Array<UnifiedAiPostSortOrder>>;
|
|
100780
102722
|
type?: InputMaybe<Array<UnifiedAiPostType>>;
|
|
100781
102723
|
};
|
|
100782
|
-
export declare type UnifiedAiQueryGetPostByIdArgs = {
|
|
100783
|
-
id: Scalars['String']['input'];
|
|
100784
|
-
};
|
|
100785
102724
|
export declare type UnifiedAiQueryGetPostsByAuthorIdArgs = {
|
|
100786
102725
|
authorId: Scalars['String']['input'];
|
|
100787
102726
|
};
|
|
100788
|
-
export declare type
|
|
100789
|
-
|
|
102727
|
+
export declare type UnifiedAiQueryGetTagSuggestionsArgs = {
|
|
102728
|
+
content: Scalars['String']['input'];
|
|
102729
|
+
title: Scalars['String']['input'];
|
|
102730
|
+
};
|
|
102731
|
+
export declare type UnifiedAiResponse = UnifiedINode & {
|
|
102732
|
+
__typename?: 'UnifiedAiResponse';
|
|
102733
|
+
author?: Maybe<UnifiedAiAccount>;
|
|
102734
|
+
author_id: Scalars['String']['output'];
|
|
102735
|
+
content: Scalars['String']['output'];
|
|
102736
|
+
created_at: Scalars['String']['output'];
|
|
102737
|
+
edited_at?: Maybe<Scalars['String']['output']>;
|
|
102738
|
+
id: Scalars['ID']['output'];
|
|
102739
|
+
is_edited: Scalars['Boolean']['output'];
|
|
102740
|
+
is_solution: Scalars['Boolean']['output'];
|
|
102741
|
+
is_spam: Scalars['Boolean']['output'];
|
|
102742
|
+
like_ids: Array<Scalars['String']['output']>;
|
|
102743
|
+
order: Scalars['Int']['output'];
|
|
102744
|
+
parent_response?: Maybe<UnifiedAiResponse>;
|
|
102745
|
+
parent_responseid?: Maybe<Scalars['String']['output']>;
|
|
102746
|
+
post_id: Scalars['String']['output'];
|
|
102747
|
+
responses?: Maybe<Array<Maybe<UnifiedAiResponse>>>;
|
|
102748
|
+
updated_at: Scalars['String']['output'];
|
|
102749
|
+
};
|
|
102750
|
+
export declare type UnifiedAiResponsePayload = {
|
|
102751
|
+
__typename?: 'UnifiedAiResponsePayload';
|
|
102752
|
+
errors?: Maybe<Array<Maybe<UnifiedAiError>>>;
|
|
102753
|
+
response?: Maybe<UnifiedAiResponse>;
|
|
102754
|
+
success: Scalars['Boolean']['output'];
|
|
102755
|
+
};
|
|
102756
|
+
export declare type UnifiedAiTag = UnifiedINode & {
|
|
102757
|
+
__typename?: 'UnifiedAiTag';
|
|
102758
|
+
color: Scalars['String']['output'];
|
|
102759
|
+
created_at: Scalars['String']['output'];
|
|
102760
|
+
description?: Maybe<Scalars['String']['output']>;
|
|
102761
|
+
id: Scalars['ID']['output'];
|
|
102762
|
+
name: Scalars['String']['output'];
|
|
102763
|
+
updated_at: Scalars['String']['output'];
|
|
102764
|
+
};
|
|
102765
|
+
export declare type UnifiedAiTagPayload = {
|
|
102766
|
+
__typename?: 'UnifiedAiTagPayload';
|
|
102767
|
+
errors?: Maybe<Array<Maybe<UnifiedAiError>>>;
|
|
102768
|
+
success: Scalars['Boolean']['output'];
|
|
102769
|
+
tag?: Maybe<UnifiedAiTag>;
|
|
102770
|
+
};
|
|
102771
|
+
export declare type UnifiedAiTagSuggestion = UnifiedINode & {
|
|
102772
|
+
__typename?: 'UnifiedAiTagSuggestion';
|
|
102773
|
+
id: Scalars['ID']['output'];
|
|
102774
|
+
tag: Scalars['String']['output'];
|
|
102775
|
+
};
|
|
102776
|
+
export declare type UnifiedAiTagSuggestionEdge = UnifiedIEdge & {
|
|
102777
|
+
__typename?: 'UnifiedAiTagSuggestionEdge';
|
|
102778
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
102779
|
+
node?: Maybe<UnifiedAiTagSuggestion>;
|
|
102780
|
+
};
|
|
102781
|
+
export declare type UnifiedAiTagSuggestionsConnection = UnifiedIConnection & {
|
|
102782
|
+
__typename?: 'UnifiedAiTagSuggestionsConnection';
|
|
102783
|
+
edges?: Maybe<Array<Maybe<UnifiedAiTagSuggestionEdge>>>;
|
|
102784
|
+
pageInfo: UnifiedPageInfo;
|
|
102785
|
+
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
100790
102786
|
};
|
|
100791
102787
|
export declare type UnifiedAllowList = UnifiedINode & {
|
|
100792
102788
|
__typename?: 'UnifiedAllowList';
|
|
@@ -101155,6 +103151,21 @@ export declare type UnifiedGamificationLevel = UnifiedINode & {
|
|
|
101155
103151
|
maxPoints?: Maybe<Scalars['Int']['output']>;
|
|
101156
103152
|
nextLevelName?: Maybe<Scalars['String']['output']>;
|
|
101157
103153
|
};
|
|
103154
|
+
export declare type UnifiedGamificationMutation = {
|
|
103155
|
+
__typename?: 'UnifiedGamificationMutation';
|
|
103156
|
+
sendRecognition?: Maybe<UnifiedGamificationPayload>;
|
|
103157
|
+
};
|
|
103158
|
+
export declare type UnifiedGamificationMutationSendRecognitionArgs = {
|
|
103159
|
+
comment?: InputMaybe<Scalars['String']['input']>;
|
|
103160
|
+
receiverId?: InputMaybe<Scalars['String']['input']>;
|
|
103161
|
+
value?: InputMaybe<Scalars['Int']['input']>;
|
|
103162
|
+
};
|
|
103163
|
+
export declare type UnifiedGamificationPayload = UnifiedPayload & {
|
|
103164
|
+
__typename?: 'UnifiedGamificationPayload';
|
|
103165
|
+
errors?: Maybe<Array<UnifiedMutationError>>;
|
|
103166
|
+
message?: Maybe<Scalars['String']['output']>;
|
|
103167
|
+
success: Scalars['Boolean']['output'];
|
|
103168
|
+
};
|
|
101158
103169
|
export declare type UnifiedGamificationProfile = {
|
|
101159
103170
|
__typename?: 'UnifiedGamificationProfile';
|
|
101160
103171
|
firstName?: Maybe<Scalars['String']['output']>;
|
|
@@ -101366,6 +103377,7 @@ export declare type UnifiedMutation = {
|
|
|
101366
103377
|
community?: Maybe<UnifiedCommunityMutation>;
|
|
101367
103378
|
consent?: Maybe<UnifiedConsentMutation>;
|
|
101368
103379
|
createUnifiedSystem?: Maybe<UnifiedProfilePayload>;
|
|
103380
|
+
gamification?: Maybe<UnifiedGamificationMutation>;
|
|
101369
103381
|
gating?: Maybe<UnifiedGatingMutation>;
|
|
101370
103382
|
linking?: Maybe<UnifiedLinkingMutation>;
|
|
101371
103383
|
profile?: Maybe<UnifiedProfileMutation>;
|
|
@@ -101560,8 +103572,10 @@ export declare type UnifiedUAccountResult = UnifiedAccount | UnifiedQueryError;
|
|
|
101560
103572
|
export declare type UnifiedUAdminsResult = UnifiedAdmins | UnifiedQueryError;
|
|
101561
103573
|
export declare type UnifiedUAiCategoriesResult = UnifiedAiCategoriesResult | UnifiedQueryError;
|
|
101562
103574
|
export declare type UnifiedUAiPostResult = UnifiedAiPostResult | UnifiedQueryError;
|
|
103575
|
+
export declare type UnifiedUAiPostSummarizerResult = UnifiedAiPostSummarizerResult | UnifiedQueryError;
|
|
101563
103576
|
export declare type UnifiedUAiPostsConnectionResult = UnifiedAiPostsConnection | UnifiedQueryError;
|
|
101564
103577
|
export declare type UnifiedUAiPostsResult = UnifiedAiPostsResult | UnifiedQueryError;
|
|
103578
|
+
export declare type UnifiedUAiTagSuggestionsConnectionResult = UnifiedAiTagSuggestionsConnection | UnifiedQueryError;
|
|
101565
103579
|
export declare type UnifiedUAllowListResult = UnifiedAllowList | UnifiedQueryError;
|
|
101566
103580
|
export declare type UnifiedUAtlassianOneUserConnectionResult = UnifiedAtlassianOneUserConnection | UnifiedQueryError;
|
|
101567
103581
|
export declare type UnifiedUAtlassianOneUserResult = UnifiedAtlassianOneUser | UnifiedQueryError;
|
|
@@ -101644,6 +103658,7 @@ export declare type UpdateAppDetailsInput = {
|
|
|
101644
103658
|
avatarFileId?: InputMaybe<Scalars['String']['input']>;
|
|
101645
103659
|
contactLink?: InputMaybe<Scalars['String']['input']>;
|
|
101646
103660
|
description?: InputMaybe<Scalars['String']['input']>;
|
|
103661
|
+
developerSpaceId?: InputMaybe<Scalars['ID']['input']>;
|
|
101647
103662
|
distributionStatus?: InputMaybe<DistributionStatus>;
|
|
101648
103663
|
hasPDReportingApiImplemented?: InputMaybe<Scalars['Boolean']['input']>;
|
|
101649
103664
|
name?: InputMaybe<Scalars['String']['input']>;
|