@forge/cli-shared 8.5.0-next.3 → 8.5.0-next.4
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 +8 -0
- package/out/graphql/graphql-types.d.ts +1449 -44
- package/out/graphql/graphql-types.d.ts.map +1 -1
- package/out/graphql/graphql-types.js +167 -27
- package/package.json +2 -2
|
@@ -1500,6 +1500,10 @@ export declare type AdminFetchUserStatsInput = {
|
|
|
1500
1500
|
directoryId?: InputMaybe<Scalars['String']['input']>;
|
|
1501
1501
|
orgId: Scalars['String']['input'];
|
|
1502
1502
|
};
|
|
1503
|
+
export declare type AdminFieldMapping = {
|
|
1504
|
+
field: Scalars['String']['input'];
|
|
1505
|
+
path: Scalars['String']['input'];
|
|
1506
|
+
};
|
|
1503
1507
|
export declare type AdminFreezeWindowsFeature = {
|
|
1504
1508
|
__typename?: 'AdminFreezeWindowsFeature';
|
|
1505
1509
|
isEntitled?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -1539,6 +1543,9 @@ export declare type AdminGroupStatsQueryInput = {
|
|
|
1539
1543
|
includeResources?: InputMaybe<Scalars['Boolean']['input']>;
|
|
1540
1544
|
includeUsers?: InputMaybe<Scalars['Boolean']['input']>;
|
|
1541
1545
|
};
|
|
1546
|
+
export declare enum AdminHttpVerbs {
|
|
1547
|
+
Delete = "DELETE"
|
|
1548
|
+
}
|
|
1542
1549
|
export declare type AdminHamsEntitlement = {
|
|
1543
1550
|
__typename?: 'AdminHamsEntitlement';
|
|
1544
1551
|
currentEdition?: Maybe<Scalars['String']['output']>;
|
|
@@ -1780,11 +1787,38 @@ export declare type AdminUnitConnection = {
|
|
|
1780
1787
|
pageInfo: PageInfo;
|
|
1781
1788
|
totalCount: Scalars['Int']['output'];
|
|
1782
1789
|
};
|
|
1790
|
+
export declare type AdminUnitCreateInput = {
|
|
1791
|
+
name: Scalars['String']['input'];
|
|
1792
|
+
};
|
|
1793
|
+
export declare type AdminUnitCreatePayload = {
|
|
1794
|
+
__typename?: 'AdminUnitCreatePayload';
|
|
1795
|
+
errors?: Maybe<Array<MutationError>>;
|
|
1796
|
+
requestId?: Maybe<Scalars['ID']['output']>;
|
|
1797
|
+
success: Scalars['Boolean']['output'];
|
|
1798
|
+
};
|
|
1799
|
+
export declare type AdminUnitCreateStatus = {
|
|
1800
|
+
__typename?: 'AdminUnitCreateStatus';
|
|
1801
|
+
status: AdminUnitCreateStatusEnum;
|
|
1802
|
+
};
|
|
1803
|
+
export declare enum AdminUnitCreateStatusEnum {
|
|
1804
|
+
Failed = "FAILED",
|
|
1805
|
+
InProgress = "IN_PROGRESS",
|
|
1806
|
+
Success = "SUCCESS"
|
|
1807
|
+
}
|
|
1783
1808
|
export declare type AdminUnitEdge = {
|
|
1784
1809
|
__typename?: 'AdminUnitEdge';
|
|
1785
1810
|
cursor: Scalars['String']['output'];
|
|
1786
1811
|
node?: Maybe<AdminUnit>;
|
|
1787
1812
|
};
|
|
1813
|
+
export declare type AdminUnitValidateName = {
|
|
1814
|
+
__typename?: 'AdminUnitValidateName';
|
|
1815
|
+
isValid: Scalars['Boolean']['output'];
|
|
1816
|
+
validationError?: Maybe<AdminUnitValidateNameErrorEnum>;
|
|
1817
|
+
};
|
|
1818
|
+
export declare enum AdminUnitValidateNameErrorEnum {
|
|
1819
|
+
NameConflict = "NAME_CONFLICT",
|
|
1820
|
+
NameInvalid = "NAME_INVALID"
|
|
1821
|
+
}
|
|
1788
1822
|
export declare type AdminUsageInfo = {
|
|
1789
1823
|
__typename?: 'AdminUsageInfo';
|
|
1790
1824
|
createdAt: Scalars['String']['output'];
|
|
@@ -1962,6 +1996,27 @@ export declare type AgentStudioActionConfigurationInput = {
|
|
|
1962
1996
|
export declare type AgentStudioActionInput = {
|
|
1963
1997
|
actionKey: Scalars['String']['input'];
|
|
1964
1998
|
};
|
|
1999
|
+
export declare type AgentStudioActorRoleAssignment = {
|
|
2000
|
+
__typename?: 'AgentStudioActorRoleAssignment';
|
|
2001
|
+
id: Scalars['ID']['output'];
|
|
2002
|
+
role?: Maybe<AgentStudioAgentRole>;
|
|
2003
|
+
user?: Maybe<User>;
|
|
2004
|
+
};
|
|
2005
|
+
export declare type AgentStudioActorRoleEdge = {
|
|
2006
|
+
__typename?: 'AgentStudioActorRoleEdge';
|
|
2007
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
2008
|
+
node?: Maybe<AgentStudioActorRoleAssignment>;
|
|
2009
|
+
};
|
|
2010
|
+
export declare type AgentStudioActorRoleInput = {
|
|
2011
|
+
role?: InputMaybe<AgentStudioAgentRole>;
|
|
2012
|
+
userARI?: InputMaybe<Scalars['ID']['input']>;
|
|
2013
|
+
};
|
|
2014
|
+
export declare type AgentStudioActorRoles = {
|
|
2015
|
+
__typename?: 'AgentStudioActorRoles';
|
|
2016
|
+
edges?: Maybe<Array<AgentStudioActorRoleEdge>>;
|
|
2017
|
+
etag?: Maybe<Scalars['String']['output']>;
|
|
2018
|
+
pageInfo: PageInfo;
|
|
2019
|
+
};
|
|
1965
2020
|
export declare type AgentStudioAddGroupsToCreatePermissionPayload = Payload & {
|
|
1966
2021
|
__typename?: 'AgentStudioAddGroupsToCreatePermissionPayload';
|
|
1967
2022
|
addedScopedGroupARIs?: Maybe<Array<Scalars['ID']['output']>>;
|
|
@@ -1975,6 +2030,7 @@ export declare type AgentStudioAgent = {
|
|
|
1975
2030
|
id: Scalars['ID']['output'];
|
|
1976
2031
|
knowledgeSources?: Maybe<AgentStudioKnowledgeConfiguration>;
|
|
1977
2032
|
name?: Maybe<Scalars['String']['output']>;
|
|
2033
|
+
permissions?: Maybe<AgentStudioAgentPermissions>;
|
|
1978
2034
|
scenarios?: Maybe<Array<Maybe<AgentStudioAssistantScenario>>>;
|
|
1979
2035
|
};
|
|
1980
2036
|
export declare type AgentStudioAgentCreatePermission = {
|
|
@@ -1998,6 +2054,12 @@ export declare type AgentStudioAgentEdge = {
|
|
|
1998
2054
|
cursor?: Maybe<Scalars['String']['output']>;
|
|
1999
2055
|
node?: Maybe<AgentStudioAssistant>;
|
|
2000
2056
|
};
|
|
2057
|
+
export declare type AgentStudioAgentPermissions = {
|
|
2058
|
+
__typename?: 'AgentStudioAgentPermissions';
|
|
2059
|
+
canArchive: Scalars['Boolean']['output'];
|
|
2060
|
+
canDelete: Scalars['Boolean']['output'];
|
|
2061
|
+
canEdit: Scalars['Boolean']['output'];
|
|
2062
|
+
};
|
|
2001
2063
|
export declare type AgentStudioAgentQueryInput = {
|
|
2002
2064
|
name?: InputMaybe<Scalars['String']['input']>;
|
|
2003
2065
|
onlyFavouriteAgents?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -2005,6 +2067,10 @@ export declare type AgentStudioAgentQueryInput = {
|
|
|
2005
2067
|
onlyTemplateAgents?: InputMaybe<Scalars['Boolean']['input']>;
|
|
2006
2068
|
};
|
|
2007
2069
|
export declare type AgentStudioAgentResult = AgentStudioAssistant | AgentStudioServiceAgent | QueryError;
|
|
2070
|
+
export declare enum AgentStudioAgentRole {
|
|
2071
|
+
Admin = "ADMIN",
|
|
2072
|
+
Collaborator = "COLLABORATOR"
|
|
2073
|
+
}
|
|
2008
2074
|
export declare enum AgentStudioAgentType {
|
|
2009
2075
|
Assistant = "ASSISTANT",
|
|
2010
2076
|
ServiceAgent = "SERVICE_AGENT"
|
|
@@ -2031,6 +2097,7 @@ export declare type AgentStudioAssistant = AgentStudioAgent & Node & {
|
|
|
2031
2097
|
isFavourite?: Maybe<Scalars['Boolean']['output']>;
|
|
2032
2098
|
knowledgeSources?: Maybe<AgentStudioKnowledgeConfiguration>;
|
|
2033
2099
|
name?: Maybe<Scalars['String']['output']>;
|
|
2100
|
+
permissions?: Maybe<AgentStudioAgentPermissions>;
|
|
2034
2101
|
scenarios?: Maybe<Array<Maybe<AgentStudioAssistantScenario>>>;
|
|
2035
2102
|
};
|
|
2036
2103
|
export declare type AgentStudioAssistantScenario = AgentStudioScenario & Node & {
|
|
@@ -2104,6 +2171,7 @@ export declare type AgentStudioCreateScenarioInput = {
|
|
|
2104
2171
|
isDefault?: InputMaybe<Scalars['Boolean']['input']>;
|
|
2105
2172
|
knowledgeSources?: InputMaybe<AgentStudioKnowledgeConfigurationInput>;
|
|
2106
2173
|
name: Scalars['String']['input'];
|
|
2174
|
+
tools?: InputMaybe<Array<AgentStudioToolInput>>;
|
|
2107
2175
|
};
|
|
2108
2176
|
export declare type AgentStudioCreateScenarioPayload = Payload & {
|
|
2109
2177
|
__typename?: 'AgentStudioCreateScenarioPayload';
|
|
@@ -2222,6 +2290,7 @@ export declare type AgentStudioScenarioInput = {
|
|
|
2222
2290
|
};
|
|
2223
2291
|
export declare type AgentStudioScenarioResult = AgentStudioAssistantScenario | QueryError;
|
|
2224
2292
|
export declare type AgentStudioScenarioValidateInput = {
|
|
2293
|
+
clientId?: InputMaybe<Scalars['String']['input']>;
|
|
2225
2294
|
invocationDescription: Scalars['String']['input'];
|
|
2226
2295
|
isActive: Scalars['Boolean']['input'];
|
|
2227
2296
|
isDefault: Scalars['Boolean']['input'];
|
|
@@ -2237,6 +2306,7 @@ export declare type AgentStudioScenarioValidateModeOutput = {
|
|
|
2237
2306
|
};
|
|
2238
2307
|
export declare type AgentStudioScenarioValidateOutput = {
|
|
2239
2308
|
__typename?: 'AgentStudioScenarioValidateOutput';
|
|
2309
|
+
clientId?: Maybe<Scalars['String']['output']>;
|
|
2240
2310
|
invocationDescription: Scalars['String']['output'];
|
|
2241
2311
|
isActive: Scalars['Boolean']['output'];
|
|
2242
2312
|
isDefault: Scalars['Boolean']['output'];
|
|
@@ -2278,6 +2348,7 @@ export declare type AgentStudioServiceAgent = AgentStudioAgent & Node & {
|
|
|
2278
2348
|
knowledgeSources?: Maybe<AgentStudioKnowledgeConfiguration>;
|
|
2279
2349
|
linkedJiraProject?: Maybe<JiraProject>;
|
|
2280
2350
|
name?: Maybe<Scalars['String']['output']>;
|
|
2351
|
+
permissions?: Maybe<AgentStudioAgentPermissions>;
|
|
2281
2352
|
scenarios?: Maybe<Array<Maybe<AgentStudioAssistantScenario>>>;
|
|
2282
2353
|
};
|
|
2283
2354
|
export declare type AgentStudioSlackChannel = AgentStudioChannel & {
|
|
@@ -2325,11 +2396,23 @@ export declare type AgentStudioTool = {
|
|
|
2325
2396
|
id: Scalars['ID']['output'];
|
|
2326
2397
|
integrationKey?: Maybe<Scalars['String']['output']>;
|
|
2327
2398
|
};
|
|
2399
|
+
export declare enum AgentStudioToolDefinitionSource {
|
|
2400
|
+
ConvoAi = "CONVO_AI",
|
|
2401
|
+
Forge = "FORGE",
|
|
2402
|
+
IntegrationsService = "INTEGRATIONS_SERVICE",
|
|
2403
|
+
McpServer = "MCP_SERVER",
|
|
2404
|
+
McpTool = "MCP_TOOL"
|
|
2405
|
+
}
|
|
2328
2406
|
export declare type AgentStudioToolEdge = {
|
|
2329
2407
|
__typename?: 'AgentStudioToolEdge';
|
|
2330
2408
|
cursor: Scalars['String']['output'];
|
|
2331
2409
|
node?: Maybe<AgentStudioTool>;
|
|
2332
2410
|
};
|
|
2411
|
+
export declare type AgentStudioToolInput = {
|
|
2412
|
+
configId?: InputMaybe<Scalars['String']['input']>;
|
|
2413
|
+
definitionId: Scalars['String']['input'];
|
|
2414
|
+
definitionSource: AgentStudioToolDefinitionSource;
|
|
2415
|
+
};
|
|
2333
2416
|
export declare type AgentStudioToolIntegration = {
|
|
2334
2417
|
__typename?: 'AgentStudioToolIntegration';
|
|
2335
2418
|
displayName?: Maybe<Scalars['String']['output']>;
|
|
@@ -2384,6 +2467,16 @@ export declare type AgentStudioUpdateAgentKnowledgeSourcesPayload = Payload & {
|
|
|
2384
2467
|
errors?: Maybe<Array<MutationError>>;
|
|
2385
2468
|
success: Scalars['Boolean']['output'];
|
|
2386
2469
|
};
|
|
2470
|
+
export declare type AgentStudioUpdateAgentPermissionInput = {
|
|
2471
|
+
actorRoles?: InputMaybe<Array<AgentStudioActorRoleInput>>;
|
|
2472
|
+
etag?: InputMaybe<Scalars['String']['input']>;
|
|
2473
|
+
};
|
|
2474
|
+
export declare type AgentStudioUpdateAgentPermissionPayload = Payload & {
|
|
2475
|
+
__typename?: 'AgentStudioUpdateAgentPermissionPayload';
|
|
2476
|
+
errors?: Maybe<Array<MutationError>>;
|
|
2477
|
+
success: Scalars['Boolean']['output'];
|
|
2478
|
+
users?: Maybe<Array<Maybe<User>>>;
|
|
2479
|
+
};
|
|
2387
2480
|
export declare type AgentStudioUpdateConversationStartersInput = {
|
|
2388
2481
|
conversationStarters?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
2389
2482
|
};
|
|
@@ -2409,6 +2502,7 @@ export declare type AgentStudioUpdateScenarioInput = {
|
|
|
2409
2502
|
isDefault?: InputMaybe<Scalars['Boolean']['input']>;
|
|
2410
2503
|
knowledgeSources?: InputMaybe<AgentStudioKnowledgeConfigurationInput>;
|
|
2411
2504
|
name?: InputMaybe<Scalars['String']['input']>;
|
|
2505
|
+
tools?: InputMaybe<Array<AgentStudioToolInput>>;
|
|
2412
2506
|
};
|
|
2413
2507
|
export declare type AgentStudioUpdateScenarioMappingsPayload = Payload & {
|
|
2414
2508
|
__typename?: 'AgentStudioUpdateScenarioMappingsPayload';
|
|
@@ -4115,7 +4209,7 @@ export declare type AssetsDmDataSourceCleansingRule = {
|
|
|
4115
4209
|
defFunction: AssetsDmDataSourceCleansingRuleDefFunction;
|
|
4116
4210
|
defFunctionId: Scalars['ID']['output'];
|
|
4117
4211
|
enabled: Scalars['Boolean']['output'];
|
|
4118
|
-
functionId
|
|
4212
|
+
functionId?: Maybe<Scalars['ID']['output']>;
|
|
4119
4213
|
functionParameters: Array<AssetsDmDataSourceCleansingRuleFunctionParameter>;
|
|
4120
4214
|
priority: Scalars['Int']['output'];
|
|
4121
4215
|
reason: AssetsDmDataSourceCleansingReason;
|
|
@@ -4167,14 +4261,14 @@ export declare type AssetsDmDataSourceCleansingRuleFunctionParameter = {
|
|
|
4167
4261
|
__typename?: 'AssetsDMDataSourceCleansingRuleFunctionParameter';
|
|
4168
4262
|
defFunctionParameter: AssetsDmDataSourceCleansingRuleDefFunctionParameter;
|
|
4169
4263
|
defFunctionParameterId: Scalars['ID']['output'];
|
|
4170
|
-
functionId
|
|
4264
|
+
functionId?: Maybe<Scalars['ID']['output']>;
|
|
4171
4265
|
functionParameterId: Scalars['ID']['output'];
|
|
4172
4266
|
value?: Maybe<Scalars['String']['output']>;
|
|
4173
4267
|
};
|
|
4174
4268
|
export declare type AssetsDmDataSourceCleansingRuleFunctionParameterInput = {
|
|
4175
4269
|
defFunctionParameter: AssetsDmDataSourceCleansingRuleDefFunctionParameterInput;
|
|
4176
4270
|
defFunctionParameterId: Scalars['ID']['input'];
|
|
4177
|
-
functionId
|
|
4271
|
+
functionId?: InputMaybe<Scalars['ID']['input']>;
|
|
4178
4272
|
functionParameterId: Scalars['ID']['input'];
|
|
4179
4273
|
value?: InputMaybe<Scalars['String']['input']>;
|
|
4180
4274
|
};
|
|
@@ -4183,7 +4277,7 @@ export declare type AssetsDmDataSourceCleansingRuleInput = {
|
|
|
4183
4277
|
defFunction: AssetsDmDataSourceCleansingRuleDefFunctionInput;
|
|
4184
4278
|
defFunctionId: Scalars['ID']['input'];
|
|
4185
4279
|
enabled: Scalars['Boolean']['input'];
|
|
4186
|
-
functionId
|
|
4280
|
+
functionId?: InputMaybe<Scalars['ID']['input']>;
|
|
4187
4281
|
functionParameters: Array<AssetsDmDataSourceCleansingRuleFunctionParameterInput>;
|
|
4188
4282
|
priority: Scalars['Int']['input'];
|
|
4189
4283
|
reason: AssetsDmDataSourceCleansingReasonInput;
|
|
@@ -4475,6 +4569,15 @@ export declare enum AssetsDmObjectClassEnum {
|
|
|
4475
4569
|
Peripherals = "Peripherals",
|
|
4476
4570
|
Software = "Software"
|
|
4477
4571
|
}
|
|
4572
|
+
export declare type AssetsDmObjectClassMetadata = {
|
|
4573
|
+
__typename?: 'AssetsDMObjectClassMetadata';
|
|
4574
|
+
allowDuplicates?: Maybe<Scalars['Boolean']['output']>;
|
|
4575
|
+
computedIssuesCount?: Maybe<Scalars['Int']['output']>;
|
|
4576
|
+
name: Scalars['String']['output'];
|
|
4577
|
+
objectId: Scalars['ID']['output'];
|
|
4578
|
+
tenantId: Scalars['ID']['output'];
|
|
4579
|
+
uniqueRecordsCount?: Maybe<Scalars['Int']['output']>;
|
|
4580
|
+
};
|
|
4478
4581
|
export declare type AssetsDmObjectSchema = {
|
|
4479
4582
|
__typename?: 'AssetsDMObjectSchema';
|
|
4480
4583
|
id: Scalars['ID']['output'];
|
|
@@ -4504,6 +4607,18 @@ export declare type AssetsDmObjectTagDeleteResponse = {
|
|
|
4504
4607
|
isSuccessful: Scalars['Boolean']['output'];
|
|
4505
4608
|
message: Scalars['String']['output'];
|
|
4506
4609
|
};
|
|
4610
|
+
export declare type AssetsDmObjectTagEditInput = {
|
|
4611
|
+
description?: InputMaybe<Scalars['String']['input']>;
|
|
4612
|
+
name: Scalars['String']['input'];
|
|
4613
|
+
objectId: Scalars['ID']['input'];
|
|
4614
|
+
tagCode: Scalars['Int']['input'];
|
|
4615
|
+
tagId: Scalars['ID']['input'];
|
|
4616
|
+
};
|
|
4617
|
+
export declare type AssetsDmObjectTagEditResponse = {
|
|
4618
|
+
__typename?: 'AssetsDMObjectTagEditResponse';
|
|
4619
|
+
isSuccessful: Scalars['Boolean']['output'];
|
|
4620
|
+
message: Scalars['String']['output'];
|
|
4621
|
+
};
|
|
4507
4622
|
export declare type AssetsDmObjectTags = {
|
|
4508
4623
|
__typename?: 'AssetsDMObjectTags';
|
|
4509
4624
|
count: Scalars['Int']['output'];
|
|
@@ -4521,6 +4636,7 @@ export declare type AssetsDmObjectsListColumns = {
|
|
|
4521
4636
|
__typename?: 'AssetsDMObjectsListColumns';
|
|
4522
4637
|
columnsCount: Scalars['Int']['output'];
|
|
4523
4638
|
dataColumns: Array<AssetsDmObjectsListDataColumn>;
|
|
4639
|
+
dataSourceColumns: Array<Maybe<Scalars['String']['output']>>;
|
|
4524
4640
|
};
|
|
4525
4641
|
export declare type AssetsDmObjectsListDataColumn = {
|
|
4526
4642
|
__typename?: 'AssetsDMObjectsListDataColumn';
|
|
@@ -4582,10 +4698,17 @@ export declare type AssetsDmObjectsListTag = {
|
|
|
4582
4698
|
tagCode: Scalars['Int']['output'];
|
|
4583
4699
|
tagId: Scalars['ID']['output'];
|
|
4584
4700
|
};
|
|
4701
|
+
export declare type AssetsDmObjectsReportAttributeByDs = {
|
|
4702
|
+
__typename?: 'AssetsDMObjectsReportAttributeByDs';
|
|
4703
|
+
columns: Array<Scalars['String']['output']>;
|
|
4704
|
+
rows: Array<Scalars['JSON']['output']>;
|
|
4705
|
+
rowsCount: Scalars['Int']['output'];
|
|
4706
|
+
};
|
|
4585
4707
|
export declare type AssetsDmObjectsReportDsByDs = {
|
|
4586
4708
|
__typename?: 'AssetsDMObjectsReportDsByDs';
|
|
4587
4709
|
columns: Array<Scalars['String']['output']>;
|
|
4588
4710
|
rows: Array<Scalars['JSON']['output']>;
|
|
4711
|
+
rowsCount: Scalars['Int']['output'];
|
|
4589
4712
|
};
|
|
4590
4713
|
export declare type AssetsDmPaginationInfo = {
|
|
4591
4714
|
__typename?: 'AssetsDMPaginationInfo';
|
|
@@ -7669,6 +7792,11 @@ export declare type ChannelPlatformGetChannelTokenResponse = {
|
|
|
7669
7792
|
participantToken?: Maybe<Scalars['String']['output']>;
|
|
7670
7793
|
region?: Maybe<Scalars['String']['output']>;
|
|
7671
7794
|
};
|
|
7795
|
+
export declare type ChannelPlatformListQuickResponsesResult = {
|
|
7796
|
+
__typename?: 'ChannelPlatformListQuickResponsesResult';
|
|
7797
|
+
nextToken?: Maybe<Scalars['String']['output']>;
|
|
7798
|
+
quickResponses: Array<Maybe<ChannelPlatformQuickResponseSummary>>;
|
|
7799
|
+
};
|
|
7672
7800
|
export declare type ChannelPlatformMediaPlacement = {
|
|
7673
7801
|
__typename?: 'ChannelPlatformMediaPlacement';
|
|
7674
7802
|
audioFallbackUrl?: Maybe<Scalars['String']['output']>;
|
|
@@ -7709,6 +7837,65 @@ export declare type ChannelPlatformPluginActionResponse = {
|
|
|
7709
7837
|
__typename?: 'ChannelPlatformPluginActionResponse';
|
|
7710
7838
|
response?: Maybe<Scalars['JSON']['output']>;
|
|
7711
7839
|
};
|
|
7840
|
+
export declare type ChannelPlatformQuickResponse = {
|
|
7841
|
+
__typename?: 'ChannelPlatformQuickResponse';
|
|
7842
|
+
content: Scalars['String']['output'];
|
|
7843
|
+
lastModifiedTime?: Maybe<Scalars['String']['output']>;
|
|
7844
|
+
name: Scalars['String']['output'];
|
|
7845
|
+
quickResponseId: Scalars['String']['output'];
|
|
7846
|
+
status: Scalars['String']['output'];
|
|
7847
|
+
tags?: Maybe<Scalars['JSON']['output']>;
|
|
7848
|
+
};
|
|
7849
|
+
export declare type ChannelPlatformQuickResponseFilter = {
|
|
7850
|
+
includeNoExistence?: InputMaybe<Scalars['Boolean']['input']>;
|
|
7851
|
+
name: Scalars['String']['input'];
|
|
7852
|
+
operator: ChannelPlatformQuickResponseFilterOperator;
|
|
7853
|
+
values: Array<Scalars['String']['input']>;
|
|
7854
|
+
};
|
|
7855
|
+
export declare enum ChannelPlatformQuickResponseFilterOperator {
|
|
7856
|
+
Equals = "EQUALS",
|
|
7857
|
+
Prefix = "PREFIX"
|
|
7858
|
+
}
|
|
7859
|
+
export declare enum ChannelPlatformQuickResponseOrder {
|
|
7860
|
+
Asc = "ASC",
|
|
7861
|
+
Desc = "DESC"
|
|
7862
|
+
}
|
|
7863
|
+
export declare type ChannelPlatformQuickResponseOrderField = {
|
|
7864
|
+
name: Scalars['String']['input'];
|
|
7865
|
+
order: ChannelPlatformQuickResponseOrder;
|
|
7866
|
+
};
|
|
7867
|
+
export declare type ChannelPlatformQuickResponseQuery = {
|
|
7868
|
+
allowFuzziness?: InputMaybe<Scalars['Boolean']['input']>;
|
|
7869
|
+
name: Scalars['String']['input'];
|
|
7870
|
+
operator: ChannelPlatformQuickResponseQueryOperator;
|
|
7871
|
+
values: Array<Scalars['String']['input']>;
|
|
7872
|
+
};
|
|
7873
|
+
export declare enum ChannelPlatformQuickResponseQueryOperator {
|
|
7874
|
+
Contains = "CONTAINS",
|
|
7875
|
+
ContainsAndPrefix = "CONTAINS_AND_PREFIX"
|
|
7876
|
+
}
|
|
7877
|
+
export declare type ChannelPlatformQuickResponseSearchExpression = {
|
|
7878
|
+
filters?: InputMaybe<Array<ChannelPlatformQuickResponseFilter>>;
|
|
7879
|
+
orderOnField?: InputMaybe<ChannelPlatformQuickResponseOrderField>;
|
|
7880
|
+
queries?: InputMaybe<Array<ChannelPlatformQuickResponseQuery>>;
|
|
7881
|
+
};
|
|
7882
|
+
export declare type ChannelPlatformQuickResponseSearchRequest = {
|
|
7883
|
+
maxResults?: InputMaybe<Scalars['Int']['input']>;
|
|
7884
|
+
nextToken?: InputMaybe<Scalars['String']['input']>;
|
|
7885
|
+
searchExpression: ChannelPlatformQuickResponseSearchExpression;
|
|
7886
|
+
};
|
|
7887
|
+
export declare type ChannelPlatformQuickResponseSummary = {
|
|
7888
|
+
__typename?: 'ChannelPlatformQuickResponseSummary';
|
|
7889
|
+
lastModifiedTime?: Maybe<Scalars['String']['output']>;
|
|
7890
|
+
name: Scalars['String']['output'];
|
|
7891
|
+
quickResponseId: Scalars['String']['output'];
|
|
7892
|
+
tags?: Maybe<Scalars['JSON']['output']>;
|
|
7893
|
+
};
|
|
7894
|
+
export declare type ChannelPlatformQuickResponsesSearchResult = {
|
|
7895
|
+
__typename?: 'ChannelPlatformQuickResponsesSearchResult';
|
|
7896
|
+
nextToken?: Maybe<Scalars['String']['output']>;
|
|
7897
|
+
quickResponses: Array<Maybe<ChannelPlatformQuickResponseSummary>>;
|
|
7898
|
+
};
|
|
7712
7899
|
export declare enum ChannelPlatformRole {
|
|
7713
7900
|
Agent = "AGENT",
|
|
7714
7901
|
Customer = "CUSTOMER"
|
|
@@ -14022,11 +14209,17 @@ export declare type ConfluenceConvertNotePayload = {
|
|
|
14022
14209
|
__typename?: 'ConfluenceConvertNotePayload';
|
|
14023
14210
|
ari?: Maybe<Scalars['String']['output']>;
|
|
14024
14211
|
errors?: Maybe<Array<NoteMutationError>>;
|
|
14025
|
-
id
|
|
14212
|
+
id?: Maybe<Scalars['ID']['output']>;
|
|
14026
14213
|
pageId?: Maybe<Scalars['String']['output']>;
|
|
14027
14214
|
success: Scalars['Boolean']['output'];
|
|
14028
14215
|
url?: Maybe<Scalars['String']['output']>;
|
|
14029
14216
|
};
|
|
14217
|
+
export declare type ConfluenceCopyNotePayload = {
|
|
14218
|
+
__typename?: 'ConfluenceCopyNotePayload';
|
|
14219
|
+
errors?: Maybe<Array<NoteMutationError>>;
|
|
14220
|
+
note?: Maybe<NoteResponse>;
|
|
14221
|
+
success: Scalars['Boolean']['output'];
|
|
14222
|
+
};
|
|
14030
14223
|
export declare type ConfluenceCopyPageTaskResult = {
|
|
14031
14224
|
__typename?: 'ConfluenceCopyPageTaskResult';
|
|
14032
14225
|
page?: Maybe<ConfluencePage>;
|
|
@@ -14603,7 +14796,6 @@ export declare type ConfluenceForgeExtension = {
|
|
|
14603
14796
|
appId: Scalars['ID']['output'];
|
|
14604
14797
|
appOwner?: Maybe<Scalars['String']['output']>;
|
|
14605
14798
|
appVersion?: Maybe<Scalars['String']['output']>;
|
|
14606
|
-
confluenceUserAccess?: Maybe<ConfluenceUserAccess>;
|
|
14607
14799
|
consentUrl?: Maybe<Scalars['String']['output']>;
|
|
14608
14800
|
definitionId: Scalars['ID']['output'];
|
|
14609
14801
|
egress?: Maybe<Array<ConfluenceExtensionEgressDeclaration>>;
|
|
@@ -14612,6 +14804,7 @@ export declare type ConfluenceForgeExtension = {
|
|
|
14612
14804
|
environmentType: Scalars['String']['output'];
|
|
14613
14805
|
hiddenBy?: Maybe<ConfluenceExtensionVisibilityControlMechanism>;
|
|
14614
14806
|
id: Scalars['ID']['output'];
|
|
14807
|
+
installationConfig?: Maybe<Array<Maybe<ConfluenceInstallationConfig>>>;
|
|
14615
14808
|
installationId: Scalars['String']['output'];
|
|
14616
14809
|
key: Scalars['String']['output'];
|
|
14617
14810
|
license?: Maybe<ConfluenceAppInstallationLicense>;
|
|
@@ -14621,6 +14814,7 @@ export declare type ConfluenceForgeExtension = {
|
|
|
14621
14814
|
properties: Array<KeyValueHierarchyMap>;
|
|
14622
14815
|
scopes: Array<Maybe<Scalars['String']['output']>>;
|
|
14623
14816
|
type: Scalars['String']['output'];
|
|
14817
|
+
userAccess?: Maybe<ConfluenceUserAccess>;
|
|
14624
14818
|
};
|
|
14625
14819
|
export declare type ConfluenceForgeExtensionData = {
|
|
14626
14820
|
content?: InputMaybe<ConfluenceForgeExtensionDataContent>;
|
|
@@ -14649,6 +14843,9 @@ export declare type ConfluenceFormattingSettings = {
|
|
|
14649
14843
|
longNumberFormat?: Maybe<Scalars['String']['output']>;
|
|
14650
14844
|
timeFormat?: Maybe<Scalars['String']['output']>;
|
|
14651
14845
|
};
|
|
14846
|
+
export declare enum ConfluenceGeneratedBy {
|
|
14847
|
+
Onboarding = "ONBOARDING"
|
|
14848
|
+
}
|
|
14652
14849
|
export declare type ConfluenceGeneratedSpaceKey = {
|
|
14653
14850
|
__typename?: 'ConfluenceGeneratedSpaceKey';
|
|
14654
14851
|
key?: Maybe<Scalars['String']['output']>;
|
|
@@ -14830,6 +15027,11 @@ export declare type ConfluenceInsertOfflineVersionPayload = Payload & {
|
|
|
14830
15027
|
success: Scalars['Boolean']['output'];
|
|
14831
15028
|
versionNumber?: Maybe<Scalars['Int']['output']>;
|
|
14832
15029
|
};
|
|
15030
|
+
export declare type ConfluenceInstallationConfig = {
|
|
15031
|
+
__typename?: 'ConfluenceInstallationConfig';
|
|
15032
|
+
key?: Maybe<Scalars['String']['output']>;
|
|
15033
|
+
value?: Maybe<Scalars['Boolean']['output']>;
|
|
15034
|
+
};
|
|
14833
15035
|
export declare type ConfluenceInviteUserInput = {
|
|
14834
15036
|
inviteeIds: Array<InputMaybe<Scalars['ID']['input']>>;
|
|
14835
15037
|
};
|
|
@@ -15196,6 +15398,95 @@ export declare enum ConfluenceMutationContentStatus {
|
|
|
15196
15398
|
Current = "CURRENT",
|
|
15197
15399
|
Draft = "DRAFT"
|
|
15198
15400
|
}
|
|
15401
|
+
export declare type ConfluenceNbmCategory = {
|
|
15402
|
+
__typename?: 'ConfluenceNbmCategory';
|
|
15403
|
+
details?: Maybe<Array<Maybe<ConfluenceNbmCategoryDetail>>>;
|
|
15404
|
+
totalChains?: Maybe<Scalars['Long']['output']>;
|
|
15405
|
+
totalPages?: Maybe<Scalars['Long']['output']>;
|
|
15406
|
+
totalSpaces?: Maybe<Scalars['Long']['output']>;
|
|
15407
|
+
type: ConfluenceNbmCategoryTypes;
|
|
15408
|
+
};
|
|
15409
|
+
export declare type ConfluenceNbmCategoryDetail = {
|
|
15410
|
+
__typename?: 'ConfluenceNbmCategoryDetail';
|
|
15411
|
+
chainType?: Maybe<Scalars['String']['output']>;
|
|
15412
|
+
count?: Maybe<Scalars['Long']['output']>;
|
|
15413
|
+
pages?: Maybe<Array<Maybe<ConfluenceNbmPageReference>>>;
|
|
15414
|
+
};
|
|
15415
|
+
export declare enum ConfluenceNbmCategoryTypes {
|
|
15416
|
+
UnknownMacros = "UNKNOWN_MACROS",
|
|
15417
|
+
UnverifiedNbm = "UNVERIFIED_NBM",
|
|
15418
|
+
VerifiedNotSupported = "VERIFIED_NOT_SUPPORTED",
|
|
15419
|
+
VerifiedSupported = "VERIFIED_SUPPORTED",
|
|
15420
|
+
VerifiedSupportedWithTransformations = "VERIFIED_SUPPORTED_WITH_TRANSFORMATIONS"
|
|
15421
|
+
}
|
|
15422
|
+
export declare type ConfluenceNbmPageInfo = {
|
|
15423
|
+
__typename?: 'ConfluenceNbmPageInfo';
|
|
15424
|
+
endCursor?: Maybe<Scalars['String']['output']>;
|
|
15425
|
+
hasNextPage: Scalars['Boolean']['output'];
|
|
15426
|
+
hasPreviousPage: Scalars['Boolean']['output'];
|
|
15427
|
+
startCursor?: Maybe<Scalars['String']['output']>;
|
|
15428
|
+
totalPages: Scalars['Int']['output'];
|
|
15429
|
+
};
|
|
15430
|
+
export declare type ConfluenceNbmPageReference = {
|
|
15431
|
+
__typename?: 'ConfluenceNbmPageReference';
|
|
15432
|
+
url?: Maybe<Scalars['String']['output']>;
|
|
15433
|
+
};
|
|
15434
|
+
export declare type ConfluenceNbmResultFile = {
|
|
15435
|
+
__typename?: 'ConfluenceNbmResultFile';
|
|
15436
|
+
csv?: Maybe<Scalars['String']['output']>;
|
|
15437
|
+
};
|
|
15438
|
+
export declare type ConfluenceNbmScanConnection = {
|
|
15439
|
+
__typename?: 'ConfluenceNbmScanConnection';
|
|
15440
|
+
edges?: Maybe<Array<Maybe<ConfluenceNbmScanEdge>>>;
|
|
15441
|
+
nodes?: Maybe<Array<Maybe<ConfluenceNbmScanSummary>>>;
|
|
15442
|
+
pageInfo: ConfluenceNbmPageInfo;
|
|
15443
|
+
};
|
|
15444
|
+
export declare type ConfluenceNbmScanEdge = {
|
|
15445
|
+
__typename?: 'ConfluenceNbmScanEdge';
|
|
15446
|
+
cursor: Scalars['String']['output'];
|
|
15447
|
+
node?: Maybe<ConfluenceNbmScanSummary>;
|
|
15448
|
+
};
|
|
15449
|
+
export declare type ConfluenceNbmScanResult = {
|
|
15450
|
+
__typename?: 'ConfluenceNbmScanResult';
|
|
15451
|
+
categories?: Maybe<Array<Maybe<ConfluenceNbmCategory>>>;
|
|
15452
|
+
id: Scalars['ID']['output'];
|
|
15453
|
+
resultFile?: Maybe<ConfluenceNbmResultFile>;
|
|
15454
|
+
status: ConfluenceNbmScanStatus;
|
|
15455
|
+
totalChains?: Maybe<Scalars['Long']['output']>;
|
|
15456
|
+
totalPages?: Maybe<Scalars['Long']['output']>;
|
|
15457
|
+
totalSpaces?: Maybe<Scalars['Long']['output']>;
|
|
15458
|
+
};
|
|
15459
|
+
export declare enum ConfluenceNbmScanStatus {
|
|
15460
|
+
Cancelled = "CANCELLED",
|
|
15461
|
+
Completed = "COMPLETED",
|
|
15462
|
+
Failed = "FAILED",
|
|
15463
|
+
Pending = "PENDING",
|
|
15464
|
+
Running = "RUNNING"
|
|
15465
|
+
}
|
|
15466
|
+
export declare type ConfluenceNbmScanSummary = {
|
|
15467
|
+
__typename?: 'ConfluenceNbmScanSummary';
|
|
15468
|
+
completedPages?: Maybe<Scalars['Int']['output']>;
|
|
15469
|
+
completedSpaces?: Maybe<Scalars['Int']['output']>;
|
|
15470
|
+
endTime?: Maybe<Scalars['String']['output']>;
|
|
15471
|
+
id: Scalars['ID']['output'];
|
|
15472
|
+
startTime?: Maybe<Scalars['String']['output']>;
|
|
15473
|
+
status?: Maybe<ConfluenceNbmScanStatus>;
|
|
15474
|
+
totalNBMChains?: Maybe<Scalars['Int']['output']>;
|
|
15475
|
+
totalPages?: Maybe<Scalars['Int']['output']>;
|
|
15476
|
+
totalSpaces?: Maybe<Scalars['Int']['output']>;
|
|
15477
|
+
};
|
|
15478
|
+
export declare type ConfluenceNbmStartScanLongTaskInput = {
|
|
15479
|
+
includeAllSpaces: Scalars['Boolean']['input'];
|
|
15480
|
+
scanId?: InputMaybe<Scalars['String']['input']>;
|
|
15481
|
+
spaceIds: Array<Scalars['Long']['input']>;
|
|
15482
|
+
};
|
|
15483
|
+
export declare type ConfluenceNbmStartScanLongTaskPayload = Payload & {
|
|
15484
|
+
__typename?: 'ConfluenceNbmStartScanLongTaskPayload';
|
|
15485
|
+
errors?: Maybe<Array<MutationError>>;
|
|
15486
|
+
scanId: Scalars['String']['output'];
|
|
15487
|
+
success: Scalars['Boolean']['output'];
|
|
15488
|
+
taskId: Scalars['String']['output'];
|
|
15489
|
+
};
|
|
15199
15490
|
export declare type ConfluenceNewCodeMacro = {
|
|
15200
15491
|
__typename?: 'ConfluenceNewCodeMacro';
|
|
15201
15492
|
languages?: Maybe<Array<Maybe<ConfluenceNewCodeMacroLanguage>>>;
|
|
@@ -15387,6 +15678,15 @@ export declare type ConfluencePdfExportTask = {
|
|
|
15387
15678
|
progressPercent?: Maybe<Scalars['Int']['output']>;
|
|
15388
15679
|
secondsElapsed?: Maybe<Scalars['Long']['output']>;
|
|
15389
15680
|
};
|
|
15681
|
+
export declare type ConfluencePendingAccessRequest = {
|
|
15682
|
+
__typename?: 'ConfluencePendingAccessRequest';
|
|
15683
|
+
isPendingAccessRequestExists?: Maybe<Scalars['Boolean']['output']>;
|
|
15684
|
+
};
|
|
15685
|
+
export declare enum ConfluencePermissionTypeAssignabilityCode {
|
|
15686
|
+
AnonymousAssignable = "ANONYMOUS_ASSIGNABLE",
|
|
15687
|
+
Assignable = "ASSIGNABLE",
|
|
15688
|
+
GuestAssignable = "GUEST_ASSIGNABLE"
|
|
15689
|
+
}
|
|
15390
15690
|
export declare type ConfluencePerson = {
|
|
15391
15691
|
__typename?: 'ConfluencePerson';
|
|
15392
15692
|
accountId?: Maybe<Scalars['String']['output']>;
|
|
@@ -15772,6 +16072,7 @@ export declare enum ConfluenceRoleAssignabilityCode {
|
|
|
15772
16072
|
DefaultRoleAssignmentNotSupported = "DEFAULT_ROLE_ASSIGNMENT_NOT_SUPPORTED",
|
|
15773
16073
|
EscalationNotAssignable = "ESCALATION_NOT_ASSIGNABLE",
|
|
15774
16074
|
GuestExistingSpaceAccess = "GUEST_EXISTING_SPACE_ACCESS",
|
|
16075
|
+
GuestSystemSpaceAccess = "GUEST_SYSTEM_SPACE_ACCESS",
|
|
15775
16076
|
NotAssignable = "NOT_ASSIGNABLE",
|
|
15776
16077
|
NoManageGuestUsersPermNotAssignable = "NO_MANAGE_GUEST_USERS_PERM_NOT_ASSIGNABLE",
|
|
15777
16078
|
NoManageNonlicensedUsersPermNotAssignable = "NO_MANAGE_NONLICENSED_USERS_PERM_NOT_ASSIGNABLE",
|
|
@@ -16631,6 +16932,18 @@ export declare type ConfluenceWhiteboardLinks = {
|
|
|
16631
16932
|
base?: Maybe<Scalars['String']['output']>;
|
|
16632
16933
|
webUi?: Maybe<Scalars['String']['output']>;
|
|
16633
16934
|
};
|
|
16935
|
+
export declare type ConfluenceWhiteboardTemplateInfo = {
|
|
16936
|
+
__typename?: 'ConfluenceWhiteboardTemplateInfo';
|
|
16937
|
+
description: Scalars['String']['output'];
|
|
16938
|
+
id: Scalars['String']['output'];
|
|
16939
|
+
keywords: Array<Maybe<Scalars['String']['output']>>;
|
|
16940
|
+
name: Scalars['String']['output'];
|
|
16941
|
+
};
|
|
16942
|
+
export declare type ConfluenceWhiteboardTemplateInfoEdge = {
|
|
16943
|
+
__typename?: 'ConfluenceWhiteboardTemplateInfoEdge';
|
|
16944
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
16945
|
+
node?: Maybe<ConfluenceWhiteboardTemplateInfo>;
|
|
16946
|
+
};
|
|
16634
16947
|
export declare type Confluence_CqlMetaData = {
|
|
16635
16948
|
__typename?: 'Confluence_cqlMetaData';
|
|
16636
16949
|
cqlContentTypes: Array<Maybe<CqlDisplayableType>>;
|
|
@@ -19927,6 +20240,12 @@ export declare type CsmAiAgentVersionConnection = {
|
|
|
19927
20240
|
nodes?: Maybe<Array<CsmAiAgentVersion>>;
|
|
19928
20241
|
pageInfo: PageInfo;
|
|
19929
20242
|
};
|
|
20243
|
+
export declare type CsmAiAgentVersionPayload = Payload & {
|
|
20244
|
+
__typename?: 'CsmAiAgentVersionPayload';
|
|
20245
|
+
errors?: Maybe<Array<MutationError>>;
|
|
20246
|
+
success: Scalars['Boolean']['output'];
|
|
20247
|
+
version?: Maybe<CsmAiAgentVersion>;
|
|
20248
|
+
};
|
|
19930
20249
|
export declare type CsmAiAgentVersionResult = CsmAiAgentVersion | QueryError;
|
|
19931
20250
|
export declare type CsmAiApiOperation = {
|
|
19932
20251
|
__typename?: 'CsmAiApiOperation';
|
|
@@ -20445,6 +20764,26 @@ export declare enum CustomUserFieldInputComparators {
|
|
|
20445
20764
|
IsSet = "IS_SET",
|
|
20446
20765
|
NotSet = "NOT_SET"
|
|
20447
20766
|
}
|
|
20767
|
+
export declare type Customer360Customer = {
|
|
20768
|
+
__typename?: 'Customer360Customer';
|
|
20769
|
+
churnRisk?: Maybe<Scalars['String']['output']>;
|
|
20770
|
+
countryName?: Maybe<Scalars['String']['output']>;
|
|
20771
|
+
domain?: Maybe<Scalars['String']['output']>;
|
|
20772
|
+
entityId: Scalars['ID']['output'];
|
|
20773
|
+
hasPremierSupport?: Maybe<Scalars['Boolean']['output']>;
|
|
20774
|
+
hasRecentSurveyFeedback?: Maybe<Scalars['Boolean']['output']>;
|
|
20775
|
+
hasRecentlyMigrated?: Maybe<Scalars['Boolean']['output']>;
|
|
20776
|
+
id: Scalars['ID']['output'];
|
|
20777
|
+
industryName?: Maybe<Scalars['String']['output']>;
|
|
20778
|
+
isHela?: Maybe<Scalars['Boolean']['output']>;
|
|
20779
|
+
name?: Maybe<Scalars['String']['output']>;
|
|
20780
|
+
paidTenure?: Maybe<Scalars['String']['output']>;
|
|
20781
|
+
region?: Maybe<Scalars['String']['output']>;
|
|
20782
|
+
sectorName?: Maybe<Scalars['String']['output']>;
|
|
20783
|
+
segment?: Maybe<Scalars['String']['output']>;
|
|
20784
|
+
startDate?: Maybe<Scalars['String']['output']>;
|
|
20785
|
+
type?: Maybe<Scalars['String']['output']>;
|
|
20786
|
+
};
|
|
20448
20787
|
export declare type CustomerServiceAttribute = Node & {
|
|
20449
20788
|
__typename?: 'CustomerServiceAttribute';
|
|
20450
20789
|
config?: Maybe<CustomerServiceAttributeConfigMetadata>;
|
|
@@ -21944,6 +22283,11 @@ export declare type DeleteExCoSpacePermissionsPayload = Payload & {
|
|
|
21944
22283
|
errors?: Maybe<Array<MutationError>>;
|
|
21945
22284
|
success: Scalars['Boolean']['output'];
|
|
21946
22285
|
};
|
|
22286
|
+
export declare type DeleteExternalCollaboratorDefaultSpacePayload = Payload & {
|
|
22287
|
+
__typename?: 'DeleteExternalCollaboratorDefaultSpacePayload';
|
|
22288
|
+
errors?: Maybe<Array<MutationError>>;
|
|
22289
|
+
success: Scalars['Boolean']['output'];
|
|
22290
|
+
};
|
|
21947
22291
|
export declare type DeleteInlineCommentInput = {
|
|
21948
22292
|
commentId: Scalars['ID']['input'];
|
|
21949
22293
|
step?: InputMaybe<Step>;
|
|
@@ -22920,6 +23264,9 @@ export declare type DevAiWorkspace = {
|
|
|
22920
23264
|
status?: Maybe<Scalars['String']['output']>;
|
|
22921
23265
|
workspaceAri: Scalars['ID']['output'];
|
|
22922
23266
|
};
|
|
23267
|
+
export declare type DevConsoleArchiveDeveloperSpaceInput = {
|
|
23268
|
+
developerSpaceId: Scalars['String']['input'];
|
|
23269
|
+
};
|
|
22923
23270
|
export declare type DevConsoleAssignDeveloperSpaceInput = {
|
|
22924
23271
|
appId: Scalars['String']['input'];
|
|
22925
23272
|
developerSpaceId: Scalars['String']['input'];
|
|
@@ -23002,6 +23349,7 @@ export declare enum DevConsoleDeveloperSpaceType {
|
|
|
23002
23349
|
export declare type DevConsoleMutation = {
|
|
23003
23350
|
__typename?: 'DevConsoleMutation';
|
|
23004
23351
|
addDeveloperSpaceMember?: Maybe<DevConsoleDeveloperSpaceMemberPayload>;
|
|
23352
|
+
archiveDeveloperSpace: DevConsoleResponsePayload;
|
|
23005
23353
|
assignDeveloperSpace?: Maybe<DevConsoleAssignDeveloperSpacePayload>;
|
|
23006
23354
|
createDeveloperSpace?: Maybe<DevConsoleDeveloperSpacePayload>;
|
|
23007
23355
|
removeDeveloperSpaceMember?: Maybe<DevConsoleDeveloperSpaceMemberPayload>;
|
|
@@ -23011,6 +23359,9 @@ export declare type DevConsoleMutation = {
|
|
|
23011
23359
|
export declare type DevConsoleMutationAddDeveloperSpaceMemberArgs = {
|
|
23012
23360
|
input: DevConsoleDeveloperSpaceMemberInput;
|
|
23013
23361
|
};
|
|
23362
|
+
export declare type DevConsoleMutationArchiveDeveloperSpaceArgs = {
|
|
23363
|
+
input: DevConsoleArchiveDeveloperSpaceInput;
|
|
23364
|
+
};
|
|
23014
23365
|
export declare type DevConsoleMutationAssignDeveloperSpaceArgs = {
|
|
23015
23366
|
input: DevConsoleAssignDeveloperSpaceInput;
|
|
23016
23367
|
};
|
|
@@ -23046,6 +23397,11 @@ export declare type DevConsoleRemoveDeveloperSpaceMemberInput = {
|
|
|
23046
23397
|
developerSpaceId: Scalars['String']['input'];
|
|
23047
23398
|
memberId: Scalars['String']['input'];
|
|
23048
23399
|
};
|
|
23400
|
+
export declare type DevConsoleResponsePayload = Payload & {
|
|
23401
|
+
__typename?: 'DevConsoleResponsePayload';
|
|
23402
|
+
errors?: Maybe<Array<MutationError>>;
|
|
23403
|
+
success: Scalars['Boolean']['output'];
|
|
23404
|
+
};
|
|
23049
23405
|
export declare type DevConsoleTenantContext = {
|
|
23050
23406
|
__typename?: 'DevConsoleTenantContext';
|
|
23051
23407
|
activationId?: Maybe<Scalars['ID']['output']>;
|
|
@@ -24479,6 +24835,7 @@ export declare enum DocumentRepresentation {
|
|
|
24479
24835
|
export declare type DraftContentProperties = {
|
|
24480
24836
|
__typename?: 'DraftContentProperties';
|
|
24481
24837
|
coverPictureWidth?: Maybe<Scalars['String']['output']>;
|
|
24838
|
+
generatedBy?: Maybe<ConfluenceGeneratedBy>;
|
|
24482
24839
|
};
|
|
24483
24840
|
export declare type DvcsBitbucketWorkspaceConnection = {
|
|
24484
24841
|
__typename?: 'DvcsBitbucketWorkspaceConnection';
|
|
@@ -29147,6 +29504,23 @@ export declare type GraphIntegrationMcpAdminManagementRegisterMcpServerPayload =
|
|
|
29147
29504
|
serverId?: Maybe<Scalars['ID']['output']>;
|
|
29148
29505
|
success: Scalars['Boolean']['output'];
|
|
29149
29506
|
};
|
|
29507
|
+
export declare type GraphIntegrationMcpAdminManagementToolSyncResult = {
|
|
29508
|
+
__typename?: 'GraphIntegrationMcpAdminManagementToolSyncResult';
|
|
29509
|
+
numberOfToolsAdded: Scalars['Int']['output'];
|
|
29510
|
+
numberOfToolsRemoved: Scalars['Int']['output'];
|
|
29511
|
+
numberOfToolsUpdated: Scalars['Int']['output'];
|
|
29512
|
+
};
|
|
29513
|
+
export declare type GraphIntegrationMcpAdminManagementTriggerToolSyncInput = {
|
|
29514
|
+
cloudId: Scalars['ID']['input'];
|
|
29515
|
+
serverId: Scalars['ID']['input'];
|
|
29516
|
+
};
|
|
29517
|
+
export declare type GraphIntegrationMcpAdminManagementTriggerToolSyncPayload = Payload & {
|
|
29518
|
+
__typename?: 'GraphIntegrationMcpAdminManagementTriggerToolSyncPayload';
|
|
29519
|
+
errors?: Maybe<Array<MutationError>>;
|
|
29520
|
+
serverId?: Maybe<Scalars['ID']['output']>;
|
|
29521
|
+
success: Scalars['Boolean']['output'];
|
|
29522
|
+
syncResult?: Maybe<GraphIntegrationMcpAdminManagementToolSyncResult>;
|
|
29523
|
+
};
|
|
29150
29524
|
export declare type GraphIntegrationMcpAdminManagementUnregisterMcpServerInput = {
|
|
29151
29525
|
cloudId: Scalars['ID']['input'];
|
|
29152
29526
|
serverId: Scalars['ID']['input'];
|
|
@@ -53769,6 +54143,8 @@ export declare type GraphStoreUserAuthoritativelyLinkedThirdPartyUserConditional
|
|
|
53769
54143
|
createdAt?: InputMaybe<GraphStoreDateFilterInput>;
|
|
53770
54144
|
fromAti?: InputMaybe<GraphStoreAtiFilterInput>;
|
|
53771
54145
|
lastModified?: InputMaybe<GraphStoreDateFilterInput>;
|
|
54146
|
+
relationship_graphworkspaceAri?: InputMaybe<GraphStoreAriFilterInput>;
|
|
54147
|
+
relationship_integrationAri?: InputMaybe<GraphStoreAriFilterInput>;
|
|
53772
54148
|
toAti?: InputMaybe<GraphStoreAtiFilterInput>;
|
|
53773
54149
|
to_graphworkspaceAri?: InputMaybe<GraphStoreAriFilterInput>;
|
|
53774
54150
|
to_integrationAri?: InputMaybe<GraphStoreAriFilterInput>;
|
|
@@ -53781,6 +54157,8 @@ export declare type GraphStoreUserAuthoritativelyLinkedThirdPartyUserSortInput =
|
|
|
53781
54157
|
createdAt?: InputMaybe<GraphStoreSortInput>;
|
|
53782
54158
|
fromAti?: InputMaybe<GraphStoreSortInput>;
|
|
53783
54159
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
54160
|
+
relationship_graphworkspaceAri?: InputMaybe<GraphStoreSortInput>;
|
|
54161
|
+
relationship_integrationAri?: InputMaybe<GraphStoreSortInput>;
|
|
53784
54162
|
toAti?: InputMaybe<GraphStoreSortInput>;
|
|
53785
54163
|
to_graphworkspaceAri?: InputMaybe<GraphStoreSortInput>;
|
|
53786
54164
|
to_integrationAri?: InputMaybe<GraphStoreSortInput>;
|
|
@@ -53941,6 +54319,8 @@ export declare type GraphStoreUserLinkedThirdPartyUserConditionalFilterInput = {
|
|
|
53941
54319
|
createdAt?: InputMaybe<GraphStoreDateFilterInput>;
|
|
53942
54320
|
fromAti?: InputMaybe<GraphStoreAtiFilterInput>;
|
|
53943
54321
|
lastModified?: InputMaybe<GraphStoreDateFilterInput>;
|
|
54322
|
+
relationship_graphworkspaceAri?: InputMaybe<GraphStoreAriFilterInput>;
|
|
54323
|
+
relationship_integrationAri?: InputMaybe<GraphStoreAriFilterInput>;
|
|
53944
54324
|
toAti?: InputMaybe<GraphStoreAtiFilterInput>;
|
|
53945
54325
|
to_graphworkspaceAri?: InputMaybe<GraphStoreAriFilterInput>;
|
|
53946
54326
|
to_integrationAri?: InputMaybe<GraphStoreAriFilterInput>;
|
|
@@ -53953,6 +54333,8 @@ export declare type GraphStoreUserLinkedThirdPartyUserSortInput = {
|
|
|
53953
54333
|
createdAt?: InputMaybe<GraphStoreSortInput>;
|
|
53954
54334
|
fromAti?: InputMaybe<GraphStoreSortInput>;
|
|
53955
54335
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
54336
|
+
relationship_graphworkspaceAri?: InputMaybe<GraphStoreSortInput>;
|
|
54337
|
+
relationship_integrationAri?: InputMaybe<GraphStoreSortInput>;
|
|
53956
54338
|
toAti?: InputMaybe<GraphStoreSortInput>;
|
|
53957
54339
|
to_graphworkspaceAri?: InputMaybe<GraphStoreSortInput>;
|
|
53958
54340
|
to_integrationAri?: InputMaybe<GraphStoreSortInput>;
|
|
@@ -54776,6 +55158,7 @@ export declare type GrowthUnifiedProfileSiteOnboardingInsightsResult = {
|
|
|
54776
55158
|
bestPerformingTarget?: Maybe<Array<Maybe<GrowthUnifiedProfileBestPerformingTarget>>>;
|
|
54777
55159
|
completionRate?: Maybe<Scalars['Float']['output']>;
|
|
54778
55160
|
completionRateSeries?: Maybe<Array<Maybe<GrowthUnifiedProfileCompletionRateSeries>>>;
|
|
55161
|
+
completionSeries?: Maybe<Array<Maybe<GrowthUnifiedProfileCompletionSeries>>>;
|
|
54779
55162
|
completionsSeries?: Maybe<Array<Maybe<GrowthUnifiedProfileCompletionSeries>>>;
|
|
54780
55163
|
dataSufficiencyPercentage?: Maybe<Scalars['Float']['output']>;
|
|
54781
55164
|
dateRangeDays?: Maybe<Scalars['Int']['output']>;
|
|
@@ -54788,6 +55171,7 @@ export declare type GrowthUnifiedProfileSiteOnboardingInsightsResult = {
|
|
|
54788
55171
|
totalDataDays?: Maybe<Scalars['Int']['output']>;
|
|
54789
55172
|
totalEngagements?: Maybe<Scalars['Int']['output']>;
|
|
54790
55173
|
totalViews?: Maybe<Scalars['Int']['output']>;
|
|
55174
|
+
viewSeries?: Maybe<Array<Maybe<GrowthUnifiedProfileViewSeries>>>;
|
|
54791
55175
|
viewsSeries?: Maybe<Array<Maybe<GrowthUnifiedProfileViewSeries>>>;
|
|
54792
55176
|
};
|
|
54793
55177
|
export declare type GrowthUnifiedProfileSiteProfileResult = {
|
|
@@ -58034,6 +58418,23 @@ export declare type JiraActivityFieldValueKeyValuePairInput = {
|
|
|
58034
58418
|
key: Scalars['String']['input'];
|
|
58035
58419
|
value: Array<InputMaybe<Scalars['String']['input']>>;
|
|
58036
58420
|
};
|
|
58421
|
+
export declare type JiraActivitySortOrderPayload = Payload & {
|
|
58422
|
+
__typename?: 'JiraActivitySortOrderPayload';
|
|
58423
|
+
activitySortOrder?: Maybe<JiraIssueViewActivityFeedSortOrder>;
|
|
58424
|
+
errors?: Maybe<Array<MutationError>>;
|
|
58425
|
+
success: Scalars['Boolean']['output'];
|
|
58426
|
+
};
|
|
58427
|
+
export declare type JiraAddCommentInput = {
|
|
58428
|
+
content: JiraAdfInput;
|
|
58429
|
+
issueId: Scalars['ID']['input'];
|
|
58430
|
+
threadParentId?: InputMaybe<Scalars['ID']['input']>;
|
|
58431
|
+
};
|
|
58432
|
+
export declare type JiraAddCommentPayload = {
|
|
58433
|
+
__typename?: 'JiraAddCommentPayload';
|
|
58434
|
+
comment: JiraComment;
|
|
58435
|
+
errors?: Maybe<Array<MutationError>>;
|
|
58436
|
+
success: Scalars['Boolean']['output'];
|
|
58437
|
+
};
|
|
58037
58438
|
export declare type JiraAddFieldsToFieldSchemeInput = {
|
|
58038
58439
|
fieldIds?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
58039
58440
|
schemeId: Scalars['ID']['input'];
|
|
@@ -58590,6 +58991,11 @@ export declare type JiraAssignableUsersEdge = {
|
|
|
58590
58991
|
cursor: Scalars['String']['output'];
|
|
58591
58992
|
node?: Maybe<User>;
|
|
58592
58993
|
};
|
|
58994
|
+
export declare type JiraAssociateProjectToFieldSchemeInput = {
|
|
58995
|
+
fieldConfigSchemeId?: InputMaybe<Scalars['ID']['input']>;
|
|
58996
|
+
fieldSchemeId?: InputMaybe<Scalars['ID']['input']>;
|
|
58997
|
+
projectId: Scalars['ID']['input'];
|
|
58998
|
+
};
|
|
58593
58999
|
export declare type JiraAtlassianIntelligenceAction = JiraAccessAtlassianIntelligenceFeature | JiraContactOrgAdminToEnableAtlassianIntelligence | JiraEnableAtlassianIntelligenceDeepLink;
|
|
58594
59000
|
export declare enum JiraAtlassianIntelligenceFeatureEnum {
|
|
58595
59001
|
AiMate = "AI_MATE",
|
|
@@ -59247,7 +59653,7 @@ export declare type JiraBacklogProject = {
|
|
|
59247
59653
|
export declare type JiraBacklogProjectVersions = {
|
|
59248
59654
|
__typename?: 'JiraBacklogProjectVersions';
|
|
59249
59655
|
projectId: Scalars['ID']['output'];
|
|
59250
|
-
versions?: Maybe<Array<Maybe<
|
|
59656
|
+
versions?: Maybe<Array<Maybe<JiraBacklogVersion>>>;
|
|
59251
59657
|
};
|
|
59252
59658
|
export declare type JiraBacklogQuickFilter = {
|
|
59253
59659
|
__typename?: 'JiraBacklogQuickFilter';
|
|
@@ -59376,6 +59782,12 @@ export declare type JiraBacklogTrackingConfig = {
|
|
|
59376
59782
|
__typename?: 'JiraBacklogTrackingConfig';
|
|
59377
59783
|
currentTrackingStatistic?: Maybe<JiraBacklogStatisticsField>;
|
|
59378
59784
|
};
|
|
59785
|
+
export declare type JiraBacklogVersion = {
|
|
59786
|
+
__typename?: 'JiraBacklogVersion';
|
|
59787
|
+
id: Scalars['Long']['output'];
|
|
59788
|
+
name?: Maybe<Scalars['String']['output']>;
|
|
59789
|
+
released?: Maybe<Scalars['Boolean']['output']>;
|
|
59790
|
+
};
|
|
59379
59791
|
export declare type JiraBacklogVersionData = {
|
|
59380
59792
|
__typename?: 'JiraBacklogVersionData';
|
|
59381
59793
|
canCreateVersion?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -59479,6 +59891,7 @@ export declare type JiraBoardView = {
|
|
|
59479
59891
|
__typename?: 'JiraBoardView';
|
|
59480
59892
|
canConfigureStatusColumnMapping?: Maybe<Scalars['Boolean']['output']>;
|
|
59481
59893
|
canInlineEditStatusColumns?: Maybe<Scalars['Boolean']['output']>;
|
|
59894
|
+
canManageStatuses?: Maybe<Scalars['Boolean']['output']>;
|
|
59482
59895
|
canPublishViewConfig?: Maybe<Scalars['Boolean']['output']>;
|
|
59483
59896
|
cardOptions?: Maybe<JiraBoardViewCardOptionConnection>;
|
|
59484
59897
|
columns?: Maybe<JiraBoardViewColumnConnection>;
|
|
@@ -60963,6 +61376,10 @@ export declare type JiraConfigurableNavigationItemInput = {
|
|
|
60963
61376
|
isVisible: Scalars['Boolean']['input'];
|
|
60964
61377
|
menuId: Scalars['String']['input'];
|
|
60965
61378
|
};
|
|
61379
|
+
export declare enum JiraConfluenceContentRelationshipType {
|
|
61380
|
+
Linked = "LINKED",
|
|
61381
|
+
MentionedIn = "MENTIONED_IN"
|
|
61382
|
+
}
|
|
60966
61383
|
export declare type JiraConfluencePageContent = JiraConfluencePageContentDetails | JiraConfluencePageContentError;
|
|
60967
61384
|
export declare type JiraConfluencePageContentDetails = {
|
|
60968
61385
|
__typename?: 'JiraConfluencePageContentDetails';
|
|
@@ -61873,6 +62290,12 @@ export declare type JiraDeleteActivityConfigurationInput = {
|
|
|
61873
62290
|
journeyId: Scalars['ID']['input'];
|
|
61874
62291
|
journeyVersion: Scalars['Long']['input'];
|
|
61875
62292
|
};
|
|
62293
|
+
export declare type JiraDeleteAttachmentsPayload = Payload & {
|
|
62294
|
+
__typename?: 'JiraDeleteAttachmentsPayload';
|
|
62295
|
+
deletedCount?: Maybe<Scalars['Int']['output']>;
|
|
62296
|
+
errors?: Maybe<Array<MutationError>>;
|
|
62297
|
+
success: Scalars['Boolean']['output'];
|
|
62298
|
+
};
|
|
61876
62299
|
export declare type JiraDeleteBoardViewStatusColumnInput = {
|
|
61877
62300
|
columnId: Scalars['ID']['input'];
|
|
61878
62301
|
replacementStatusId: Scalars['ID']['input'];
|
|
@@ -61886,6 +62309,16 @@ export declare type JiraDeleteBoardViewStatusColumnPayload = Payload & {
|
|
|
61886
62309
|
migrationId?: Maybe<Scalars['ID']['output']>;
|
|
61887
62310
|
success: Scalars['Boolean']['output'];
|
|
61888
62311
|
};
|
|
62312
|
+
export declare type JiraDeleteCommentInput = {
|
|
62313
|
+
id: Scalars['ID']['input'];
|
|
62314
|
+
issueId: Scalars['ID']['input'];
|
|
62315
|
+
};
|
|
62316
|
+
export declare type JiraDeleteCommentPayload = {
|
|
62317
|
+
__typename?: 'JiraDeleteCommentPayload';
|
|
62318
|
+
errors?: Maybe<Array<MutationError>>;
|
|
62319
|
+
id?: Maybe<Scalars['ID']['output']>;
|
|
62320
|
+
success: Scalars['Boolean']['output'];
|
|
62321
|
+
};
|
|
61889
62322
|
export declare type JiraDeleteCustomBackgroundInput = {
|
|
61890
62323
|
cloudId: Scalars['ID']['input'];
|
|
61891
62324
|
customBackgroundId: Scalars['ID']['input'];
|
|
@@ -61998,6 +62431,17 @@ export declare type JiraDeleteShortcutInput = {
|
|
|
61998
62431
|
export declare type JiraDeleteVersionWithNoIssuesInput = {
|
|
61999
62432
|
id: Scalars['ID']['input'];
|
|
62000
62433
|
};
|
|
62434
|
+
export declare type JiraDeleteWorklogInput = {
|
|
62435
|
+
id: Scalars['ID']['input'];
|
|
62436
|
+
remainingEstimate?: InputMaybe<JiraEstimateInput>;
|
|
62437
|
+
};
|
|
62438
|
+
export declare type JiraDeleteWorklogPayload = Payload & {
|
|
62439
|
+
__typename?: 'JiraDeleteWorklogPayload';
|
|
62440
|
+
errors?: Maybe<Array<MutationError>>;
|
|
62441
|
+
field?: Maybe<JiraTimeTrackingField>;
|
|
62442
|
+
id?: Maybe<Scalars['ID']['output']>;
|
|
62443
|
+
success: Scalars['Boolean']['output'];
|
|
62444
|
+
};
|
|
62001
62445
|
export declare type JiraDeploymentApp = {
|
|
62002
62446
|
__typename?: 'JiraDeploymentApp';
|
|
62003
62447
|
appKey: Scalars['String']['output'];
|
|
@@ -62733,6 +63177,10 @@ export declare type JiraFieldAssociationWithIssueTypesInput = {
|
|
|
62733
63177
|
filterContains?: InputMaybe<Scalars['String']['input']>;
|
|
62734
63178
|
issueTypeIds?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
62735
63179
|
};
|
|
63180
|
+
export declare type JiraFieldAvailableWorkTypesInput = {
|
|
63181
|
+
nameFilter?: InputMaybe<Scalars['String']['input']>;
|
|
63182
|
+
schemeId: Scalars['ID']['input'];
|
|
63183
|
+
};
|
|
62736
63184
|
export declare enum JiraFieldCategoryType {
|
|
62737
63185
|
Custom = "CUSTOM",
|
|
62738
63186
|
System = "SYSTEM"
|
|
@@ -63005,6 +63453,11 @@ export declare type JiraFieldToFieldConfigSchemeAssociationsPayload = {
|
|
|
63005
63453
|
errors?: Maybe<Array<MutationError>>;
|
|
63006
63454
|
success: Scalars['Boolean']['output'];
|
|
63007
63455
|
};
|
|
63456
|
+
export declare type JiraFieldToWorkTypesAssociation = {
|
|
63457
|
+
__typename?: 'JiraFieldToWorkTypesAssociation';
|
|
63458
|
+
availableOnAllWorkTypes?: Maybe<Scalars['Boolean']['output']>;
|
|
63459
|
+
workTypes?: Maybe<Array<Maybe<JiraIssueType>>>;
|
|
63460
|
+
};
|
|
63008
63461
|
export declare type JiraFieldType = {
|
|
63009
63462
|
__typename?: 'JiraFieldType';
|
|
63010
63463
|
displayName?: Maybe<Scalars['String']['output']>;
|
|
@@ -63041,6 +63494,33 @@ export declare type JiraFieldValidationMutationErrorExtension = MutationErrorExt
|
|
|
63041
63494
|
fieldId?: Maybe<Scalars['String']['output']>;
|
|
63042
63495
|
statusCode?: Maybe<Scalars['Int']['output']>;
|
|
63043
63496
|
};
|
|
63497
|
+
export declare type JiraFieldWorkTypeAssociationsInput = {
|
|
63498
|
+
availableOnAllWorkTypes: Scalars['Boolean']['input'];
|
|
63499
|
+
workTypeIds?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
63500
|
+
};
|
|
63501
|
+
export declare type JiraFieldWorkTypeConfigurationPayload = Payload & {
|
|
63502
|
+
__typename?: 'JiraFieldWorkTypeConfigurationPayload';
|
|
63503
|
+
errors?: Maybe<Array<MutationError>>;
|
|
63504
|
+
success: Scalars['Boolean']['output'];
|
|
63505
|
+
};
|
|
63506
|
+
export declare type JiraFieldWorkTypeCustomizationsInput = {
|
|
63507
|
+
descriptionCustomisations?: InputMaybe<Array<JiraFieldWorkTypeDescriptionCustomizationInput>>;
|
|
63508
|
+
fieldId: Scalars['ID']['input'];
|
|
63509
|
+
requiredOnWorkTypeIds?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
63510
|
+
schemeId: Scalars['ID']['input'];
|
|
63511
|
+
workTypeAssociations: JiraFieldWorkTypeAssociationsInput;
|
|
63512
|
+
};
|
|
63513
|
+
export declare type JiraFieldWorkTypeDescriptionCustomization = {
|
|
63514
|
+
__typename?: 'JiraFieldWorkTypeDescriptionCustomization';
|
|
63515
|
+
description?: Maybe<Scalars['String']['output']>;
|
|
63516
|
+
isDefault?: Maybe<Scalars['Boolean']['output']>;
|
|
63517
|
+
workTypes?: Maybe<Array<Maybe<JiraIssueType>>>;
|
|
63518
|
+
};
|
|
63519
|
+
export declare type JiraFieldWorkTypeDescriptionCustomizationInput = {
|
|
63520
|
+
description: Scalars['String']['input'];
|
|
63521
|
+
isDefault: Scalars['Boolean']['input'];
|
|
63522
|
+
workTypeIds?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
63523
|
+
};
|
|
63044
63524
|
export declare type JiraFilter = {
|
|
63045
63525
|
filterId: Scalars['String']['output'];
|
|
63046
63526
|
filterUrl?: Maybe<Scalars['URL']['output']>;
|
|
@@ -64008,6 +64488,7 @@ export declare type JiraIssue = HasMercuryProjectFields & JiraScenarioIssueLike
|
|
|
64008
64488
|
commandPaletteFields?: Maybe<JiraIssueFieldConnection>;
|
|
64009
64489
|
comments?: Maybe<JiraCommentConnection>;
|
|
64010
64490
|
configurationUrl?: Maybe<Scalars['URL']['output']>;
|
|
64491
|
+
confluenceLinks?: Maybe<JiraConfluenceRemoteIssueLinkConnection>;
|
|
64011
64492
|
confluenceMentionedLinks?: Maybe<JiraConfluenceRemoteIssueLinkConnection>;
|
|
64012
64493
|
contentPanels?: Maybe<JiraIssueContentPanelConnection>;
|
|
64013
64494
|
coverMedia?: Maybe<JiraWorkManagementBackground>;
|
|
@@ -64150,6 +64631,13 @@ export declare type JiraIssueCommentsArgs = {
|
|
|
64150
64631
|
sortBy?: InputMaybe<JiraCommentSortInput>;
|
|
64151
64632
|
targetId?: InputMaybe<Scalars['String']['input']>;
|
|
64152
64633
|
};
|
|
64634
|
+
export declare type JiraIssueConfluenceLinksArgs = {
|
|
64635
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
64636
|
+
before?: InputMaybe<Scalars['String']['input']>;
|
|
64637
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
64638
|
+
last?: InputMaybe<Scalars['Int']['input']>;
|
|
64639
|
+
relationship?: InputMaybe<JiraConfluenceContentRelationshipType>;
|
|
64640
|
+
};
|
|
64153
64641
|
export declare type JiraIssueConfluenceMentionedLinksArgs = {
|
|
64154
64642
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
64155
64643
|
before?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -64313,9 +64801,13 @@ export declare type JiraIssueWebLinksArgs = {
|
|
|
64313
64801
|
};
|
|
64314
64802
|
export declare type JiraIssueWorklogsArgs = {
|
|
64315
64803
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
64804
|
+
afterTarget?: InputMaybe<Scalars['Int']['input']>;
|
|
64316
64805
|
before?: InputMaybe<Scalars['String']['input']>;
|
|
64806
|
+
beforeTarget?: InputMaybe<Scalars['Int']['input']>;
|
|
64317
64807
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
64318
64808
|
last?: InputMaybe<Scalars['Int']['input']>;
|
|
64809
|
+
sortBy?: InputMaybe<JiraWorklogSortInput>;
|
|
64810
|
+
targetId?: InputMaybe<Scalars['String']['input']>;
|
|
64319
64811
|
};
|
|
64320
64812
|
export declare type JiraIssueAndProject = {
|
|
64321
64813
|
__typename?: 'JiraIssueAndProject';
|
|
@@ -64716,12 +65208,15 @@ export declare type JiraIssueFieldConfig = Node & {
|
|
|
64716
65208
|
associatedScreensCount?: Maybe<Scalars['Int']['output']>;
|
|
64717
65209
|
associatedScreensV2?: Maybe<JiraScreenConnection>;
|
|
64718
65210
|
availableFieldConfigSchemes?: Maybe<JiraFieldConfigSchemesConnection>;
|
|
65211
|
+
availableWorkTypesFromSchemesProjects?: Maybe<JiraIssueTypeConnection>;
|
|
65212
|
+
availableWorkTypesJiraWide?: Maybe<JiraIssueTypeConnection>;
|
|
64719
65213
|
customId?: Maybe<Scalars['Int']['output']>;
|
|
64720
65214
|
dateCreated?: Maybe<Scalars['DateTime']['output']>;
|
|
64721
65215
|
dateCreatedTimestamp?: Maybe<Scalars['Long']['output']>;
|
|
64722
65216
|
defaultFieldOptions?: Maybe<JiraParentOptionConnection>;
|
|
64723
65217
|
defaultJqlClauseName?: Maybe<Scalars['String']['output']>;
|
|
64724
65218
|
description?: Maybe<Scalars['String']['output']>;
|
|
65219
|
+
descriptionCustomisations?: Maybe<Array<Maybe<JiraFieldWorkTypeDescriptionCustomization>>>;
|
|
64725
65220
|
fieldId: Scalars['String']['output'];
|
|
64726
65221
|
formatConfig?: Maybe<JiraFieldFormatConfig>;
|
|
64727
65222
|
id: Scalars['ID']['output'];
|
|
@@ -64736,6 +65231,7 @@ export declare type JiraIssueFieldConfig = Node & {
|
|
|
64736
65231
|
lastUsedTimestamp?: Maybe<Scalars['Long']['output']>;
|
|
64737
65232
|
name: Scalars['String']['output'];
|
|
64738
65233
|
plannedDeletionTimestamp?: Maybe<Scalars['Long']['output']>;
|
|
65234
|
+
requiredOnWorkTypes?: Maybe<Array<Maybe<JiraIssueType>>>;
|
|
64739
65235
|
searcherTemplate?: Maybe<JiraFieldSearcherTemplate>;
|
|
64740
65236
|
searcherTemplateOptions?: Maybe<JiraFieldSearcherTemplateConnection>;
|
|
64741
65237
|
trashedByUser?: Maybe<User>;
|
|
@@ -64743,6 +65239,7 @@ export declare type JiraIssueFieldConfig = Node & {
|
|
|
64743
65239
|
type: JiraConfigFieldType;
|
|
64744
65240
|
typeDisplayName?: Maybe<Scalars['String']['output']>;
|
|
64745
65241
|
typeKey?: Maybe<Scalars['String']['output']>;
|
|
65242
|
+
workTypesAssociation?: Maybe<JiraFieldToWorkTypesAssociation>;
|
|
64746
65243
|
};
|
|
64747
65244
|
export declare type JiraIssueFieldConfigAssociatedContextsArgs = {
|
|
64748
65245
|
after?: InputMaybe<Scalars['Int']['input']>;
|
|
@@ -64793,21 +65290,40 @@ export declare type JiraIssueFieldConfigAvailableFieldConfigSchemesArgs = {
|
|
|
64793
65290
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
64794
65291
|
input?: InputMaybe<JiraFieldConfigSchemesInput>;
|
|
64795
65292
|
};
|
|
65293
|
+
export declare type JiraIssueFieldConfigAvailableWorkTypesFromSchemesProjectsArgs = {
|
|
65294
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
65295
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
65296
|
+
input?: InputMaybe<JiraFieldAvailableWorkTypesInput>;
|
|
65297
|
+
};
|
|
65298
|
+
export declare type JiraIssueFieldConfigAvailableWorkTypesJiraWideArgs = {
|
|
65299
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
65300
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
65301
|
+
nameFilter?: InputMaybe<Scalars['String']['input']>;
|
|
65302
|
+
};
|
|
64796
65303
|
export declare type JiraIssueFieldConfigDefaultFieldOptionsArgs = {
|
|
64797
65304
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
64798
65305
|
before?: InputMaybe<Scalars['String']['input']>;
|
|
64799
65306
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
64800
65307
|
last?: InputMaybe<Scalars['Int']['input']>;
|
|
64801
65308
|
};
|
|
65309
|
+
export declare type JiraIssueFieldConfigDescriptionCustomisationsArgs = {
|
|
65310
|
+
schemeId: Scalars['ID']['input'];
|
|
65311
|
+
};
|
|
64802
65312
|
export declare type JiraIssueFieldConfigIsDefaultFieldOptionsCountOverLimitArgs = {
|
|
64803
65313
|
limit: Scalars['Int']['input'];
|
|
64804
65314
|
};
|
|
65315
|
+
export declare type JiraIssueFieldConfigRequiredOnWorkTypesArgs = {
|
|
65316
|
+
schemeId: Scalars['ID']['input'];
|
|
65317
|
+
};
|
|
64805
65318
|
export declare type JiraIssueFieldConfigSearcherTemplateOptionsArgs = {
|
|
64806
65319
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
64807
65320
|
before?: InputMaybe<Scalars['String']['input']>;
|
|
64808
65321
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
64809
65322
|
last?: InputMaybe<Scalars['Int']['input']>;
|
|
64810
65323
|
};
|
|
65324
|
+
export declare type JiraIssueFieldConfigWorkTypesAssociationArgs = {
|
|
65325
|
+
schemeId: Scalars['ID']['input'];
|
|
65326
|
+
};
|
|
64811
65327
|
export declare type JiraIssueFieldConfiguration = {
|
|
64812
65328
|
fieldConfig?: Maybe<JiraFieldConfig>;
|
|
64813
65329
|
};
|
|
@@ -65256,6 +65772,38 @@ export declare type JiraIssueRemoteIssueLink = {
|
|
|
65256
65772
|
relationship?: Maybe<Scalars['String']['output']>;
|
|
65257
65773
|
title?: Maybe<Scalars['String']['output']>;
|
|
65258
65774
|
};
|
|
65775
|
+
export declare type JiraIssueRemoteIssueLinkInput = {
|
|
65776
|
+
applicationName?: InputMaybe<Scalars['String']['input']>;
|
|
65777
|
+
applicationType?: InputMaybe<Scalars['String']['input']>;
|
|
65778
|
+
globalId?: InputMaybe<Scalars['String']['input']>;
|
|
65779
|
+
iconTitle?: InputMaybe<Scalars['String']['input']>;
|
|
65780
|
+
iconUrl?: InputMaybe<Scalars['String']['input']>;
|
|
65781
|
+
id?: InputMaybe<Scalars['ID']['input']>;
|
|
65782
|
+
relationship?: InputMaybe<Scalars['String']['input']>;
|
|
65783
|
+
resolved?: InputMaybe<Scalars['Boolean']['input']>;
|
|
65784
|
+
statusIconLink?: InputMaybe<Scalars['String']['input']>;
|
|
65785
|
+
statusIconTitle?: InputMaybe<Scalars['String']['input']>;
|
|
65786
|
+
statusIconUrl?: InputMaybe<Scalars['String']['input']>;
|
|
65787
|
+
summary?: InputMaybe<Scalars['String']['input']>;
|
|
65788
|
+
title?: InputMaybe<Scalars['String']['input']>;
|
|
65789
|
+
url?: InputMaybe<Scalars['String']['input']>;
|
|
65790
|
+
};
|
|
65791
|
+
export declare type JiraIssueRemoteIssueLinkPayload = Payload & {
|
|
65792
|
+
__typename?: 'JiraIssueRemoteIssueLinkPayload';
|
|
65793
|
+
errors?: Maybe<Array<MutationError>>;
|
|
65794
|
+
remoteLink?: Maybe<JiraRemoteIssueLink>;
|
|
65795
|
+
success: Scalars['Boolean']['output'];
|
|
65796
|
+
};
|
|
65797
|
+
export declare type JiraIssueRemoteLinkInput = {
|
|
65798
|
+
issueId: Scalars['ID']['input'];
|
|
65799
|
+
operation: JiraIssueRemoteLinkOperations;
|
|
65800
|
+
remoteLink?: InputMaybe<JiraIssueRemoteIssueLinkInput>;
|
|
65801
|
+
};
|
|
65802
|
+
export declare enum JiraIssueRemoteLinkOperations {
|
|
65803
|
+
Add = "ADD",
|
|
65804
|
+
Remove = "REMOVE",
|
|
65805
|
+
Set = "SET"
|
|
65806
|
+
}
|
|
65259
65807
|
export declare type JiraIssueRestrictionField = JiraIssueField & JiraIssueFieldConfiguration & JiraUserIssueFieldConfiguration & Node & {
|
|
65260
65808
|
__typename?: 'JiraIssueRestrictionField';
|
|
65261
65809
|
aliasFieldId?: Maybe<Scalars['ID']['output']>;
|
|
@@ -67370,6 +67918,8 @@ export declare type JiraMultipleVersionPickerFieldPayload = Payload & {
|
|
|
67370
67918
|
};
|
|
67371
67919
|
export declare type JiraMutation = {
|
|
67372
67920
|
__typename?: 'JiraMutation';
|
|
67921
|
+
activitySortOrder?: Maybe<JiraActivitySortOrderPayload>;
|
|
67922
|
+
addComment?: Maybe<JiraAddCommentPayload>;
|
|
67373
67923
|
addFieldsToProject?: Maybe<JiraAddFieldsToProjectPayload>;
|
|
67374
67924
|
addIssuesToFixVersion?: Maybe<JiraAddIssuesToFixVersionPayload>;
|
|
67375
67925
|
addJiraJourneyWorkItemAssociatedAutomationRule?: Maybe<JiraUpdateJourneyConfigurationPayload>;
|
|
@@ -67409,6 +67959,8 @@ export declare type JiraMutation = {
|
|
|
67409
67959
|
createProjectShortcut?: Maybe<JiraProjectShortcutPayload>;
|
|
67410
67960
|
createReleaseNoteConfluencePage?: Maybe<JiraCreateReleaseNoteConfluencePagePayload>;
|
|
67411
67961
|
createSimpleNavigationItem?: Maybe<JiraCreateNavigationItemPayload>;
|
|
67962
|
+
deleteAttachments?: Maybe<JiraDeleteAttachmentsPayload>;
|
|
67963
|
+
deleteComment?: Maybe<JiraDeleteCommentPayload>;
|
|
67412
67964
|
deleteCustomBackground?: Maybe<JiraDeleteCustomBackgroundPayload>;
|
|
67413
67965
|
deleteCustomField?: Maybe<JiraDeleteCustomFieldPayload>;
|
|
67414
67966
|
deleteFormattingRule?: Maybe<JiraDeleteFormattingRulePayload>;
|
|
@@ -67424,6 +67976,7 @@ export declare type JiraMutation = {
|
|
|
67424
67976
|
deleteOnboardingConfig?: Maybe<JiraDeleteOnboardingConfigPayload>;
|
|
67425
67977
|
deleteProjectNotificationPreferences?: Maybe<JiraDeleteProjectNotificationPreferencesPayload>;
|
|
67426
67978
|
deleteProjectShortcut?: Maybe<JiraProjectShortcutPayload>;
|
|
67979
|
+
deleteWorklog?: Maybe<JiraDeleteWorklogPayload>;
|
|
67427
67980
|
denyProjectAccessRequest?: Maybe<JiraProjectAccessRequestMutationPayload>;
|
|
67428
67981
|
devOps?: Maybe<JiraDevOpsMutation>;
|
|
67429
67982
|
disableJiraJourneyConfiguration?: Maybe<JiraUpdateJourneyConfigurationPayload>;
|
|
@@ -67434,6 +67987,7 @@ export declare type JiraMutation = {
|
|
|
67434
67987
|
forge: JiraForgeMutation;
|
|
67435
67988
|
grantGlobalPermission?: Maybe<JiraGlobalPermissionAddGroupGrantPayload>;
|
|
67436
67989
|
initializeProjectNotificationPreferences?: Maybe<JiraInitializeProjectNotificationPreferencesPayload>;
|
|
67990
|
+
issueRemoteLinkMutation?: Maybe<JiraIssueRemoteIssueLinkPayload>;
|
|
67437
67991
|
jiraFilterMutation?: Maybe<JiraFilterMutation>;
|
|
67438
67992
|
jiraServiceManagementCreateRequestTypeCategory?: Maybe<JiraServiceManagementRequestTypeCategoryPayload>;
|
|
67439
67993
|
jiraServiceManagementDeleteRequestTypeCategory?: Maybe<JiraServiceManagementRequestTypeCategoryDefaultPayload>;
|
|
@@ -67497,6 +68051,7 @@ export declare type JiraMutation = {
|
|
|
67497
68051
|
updateCheckboxesField?: Maybe<JiraCheckboxesFieldPayload>;
|
|
67498
68052
|
updateCmdbField?: Maybe<JiraCmdbFieldPayload>;
|
|
67499
68053
|
updateColorField?: Maybe<JiraColorFieldPayload>;
|
|
68054
|
+
updateComment?: Maybe<JiraUpdateCommentPayload>;
|
|
67500
68055
|
updateComponentsField?: Maybe<JiraComponentsFieldPayload>;
|
|
67501
68056
|
updateConfluenceRemoteIssueLinksField?: Maybe<JiraUpdateConfluenceRemoteIssueLinksFieldPayload>;
|
|
67502
68057
|
updateCustomBackground?: Maybe<JiraUpdateCustomBackgroundPayload>;
|
|
@@ -67587,6 +68142,13 @@ export declare type JiraMutation = {
|
|
|
67587
68142
|
updateWorklog?: Maybe<JiraWorklogPayload>;
|
|
67588
68143
|
userPreferences?: Maybe<JiraUserPreferencesMutation>;
|
|
67589
68144
|
};
|
|
68145
|
+
export declare type JiraMutationActivitySortOrderArgs = {
|
|
68146
|
+
cloudId: Scalars['ID']['input'];
|
|
68147
|
+
orderBy: JiraIssueViewActivityFeedSortOrder;
|
|
68148
|
+
};
|
|
68149
|
+
export declare type JiraMutationAddCommentArgs = {
|
|
68150
|
+
input: JiraAddCommentInput;
|
|
68151
|
+
};
|
|
67590
68152
|
export declare type JiraMutationAddFieldsToProjectArgs = {
|
|
67591
68153
|
input: JiraAddFieldsToProjectInput;
|
|
67592
68154
|
};
|
|
@@ -67722,6 +68284,12 @@ export declare type JiraMutationCreateReleaseNoteConfluencePageArgs = {
|
|
|
67722
68284
|
export declare type JiraMutationCreateSimpleNavigationItemArgs = {
|
|
67723
68285
|
input: JiraCreateSimpleNavigationItemInput;
|
|
67724
68286
|
};
|
|
68287
|
+
export declare type JiraMutationDeleteAttachmentsArgs = {
|
|
68288
|
+
ids: Array<Scalars['ID']['input']>;
|
|
68289
|
+
};
|
|
68290
|
+
export declare type JiraMutationDeleteCommentArgs = {
|
|
68291
|
+
input: JiraDeleteCommentInput;
|
|
68292
|
+
};
|
|
67725
68293
|
export declare type JiraMutationDeleteCustomBackgroundArgs = {
|
|
67726
68294
|
input: JiraDeleteCustomBackgroundInput;
|
|
67727
68295
|
};
|
|
@@ -67772,6 +68340,9 @@ export declare type JiraMutationDeleteProjectNotificationPreferencesArgs = {
|
|
|
67772
68340
|
export declare type JiraMutationDeleteProjectShortcutArgs = {
|
|
67773
68341
|
input: JiraDeleteShortcutInput;
|
|
67774
68342
|
};
|
|
68343
|
+
export declare type JiraMutationDeleteWorklogArgs = {
|
|
68344
|
+
input: JiraDeleteWorklogInput;
|
|
68345
|
+
};
|
|
67775
68346
|
export declare type JiraMutationDenyProjectAccessRequestArgs = {
|
|
67776
68347
|
input: JiraProjectDenyAccessRequestInput;
|
|
67777
68348
|
};
|
|
@@ -67801,6 +68372,9 @@ export declare type JiraMutationInitializeProjectNotificationPreferencesArgs = {
|
|
|
67801
68372
|
cloudId: Scalars['ID']['input'];
|
|
67802
68373
|
input: JiraInitializeProjectNotificationPreferencesInput;
|
|
67803
68374
|
};
|
|
68375
|
+
export declare type JiraMutationIssueRemoteLinkMutationArgs = {
|
|
68376
|
+
input: JiraIssueRemoteLinkInput;
|
|
68377
|
+
};
|
|
67804
68378
|
export declare type JiraMutationJiraServiceManagementCreateRequestTypeCategoryArgs = {
|
|
67805
68379
|
cloudId: Scalars['ID']['input'];
|
|
67806
68380
|
input: JiraServiceManagementCreateRequestTypeCategoryInput;
|
|
@@ -68011,6 +68585,9 @@ export declare type JiraMutationUpdateCmdbFieldArgs = {
|
|
|
68011
68585
|
export declare type JiraMutationUpdateColorFieldArgs = {
|
|
68012
68586
|
input: JiraUpdateColorFieldInput;
|
|
68013
68587
|
};
|
|
68588
|
+
export declare type JiraMutationUpdateCommentArgs = {
|
|
68589
|
+
input: JiraUpdateCommentInput;
|
|
68590
|
+
};
|
|
68014
68591
|
export declare type JiraMutationUpdateComponentsFieldArgs = {
|
|
68015
68592
|
input: JiraUpdateComponentsFieldInput;
|
|
68016
68593
|
};
|
|
@@ -69789,9 +70366,13 @@ export declare type JiraProject = Node & {
|
|
|
69789
70366
|
activeBackground?: Maybe<JiraBackground>;
|
|
69790
70367
|
assignableUsers?: Maybe<JiraAssignableUsersConnection>;
|
|
69791
70368
|
associatedComponents?: Maybe<GraphGenericConnection>;
|
|
70369
|
+
associatedFieldConfigScheme?: Maybe<JiraFieldConfigScheme>;
|
|
70370
|
+
associatedFieldScheme?: Maybe<JiraFieldScheme>;
|
|
69792
70371
|
associatedIssueLayoutFields?: Maybe<JiraFieldConnection>;
|
|
69793
70372
|
associatedJsmProjectsByComponent?: Maybe<GraphJiraProjectConnection>;
|
|
69794
70373
|
associatedServices?: Maybe<GraphProjectServiceConnection>;
|
|
70374
|
+
availableFieldConfigSchemes?: Maybe<JiraFieldConfigSchemesConnection>;
|
|
70375
|
+
availableFieldSchemes?: Maybe<JiraFieldSchemesConnection>;
|
|
69795
70376
|
avatar?: Maybe<JiraAvatar>;
|
|
69796
70377
|
background?: Maybe<JiraActiveBackgroundDetailsResult>;
|
|
69797
70378
|
boards?: Maybe<JiraBoardConnection>;
|
|
@@ -69887,6 +70468,16 @@ export declare type JiraProjectAssociatedComponentsArgs = {
|
|
|
69887
70468
|
export declare type JiraProjectAssociatedIssueLayoutFieldsArgs = {
|
|
69888
70469
|
input?: InputMaybe<JiraProjectAssociatedFieldsInput>;
|
|
69889
70470
|
};
|
|
70471
|
+
export declare type JiraProjectAvailableFieldConfigSchemesArgs = {
|
|
70472
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
70473
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
70474
|
+
input?: InputMaybe<JiraFieldConfigSchemesInput>;
|
|
70475
|
+
};
|
|
70476
|
+
export declare type JiraProjectAvailableFieldSchemesArgs = {
|
|
70477
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
70478
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
70479
|
+
input?: InputMaybe<JiraFieldSchemesInput>;
|
|
70480
|
+
};
|
|
69890
70481
|
export declare type JiraProjectBoardsArgs = {
|
|
69891
70482
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
69892
70483
|
before?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -74179,8 +74770,20 @@ export declare type JiraSetBoardViewGroupByPayload = Payload & {
|
|
|
74179
74770
|
success: Scalars['Boolean']['output'];
|
|
74180
74771
|
view?: Maybe<JiraBoardView>;
|
|
74181
74772
|
};
|
|
74773
|
+
export declare type JiraSetBoardViewStatusColumnMappingCreateStatusInput = {
|
|
74774
|
+
name: Scalars['String']['input'];
|
|
74775
|
+
reference: Scalars['ID']['input'];
|
|
74776
|
+
statusCategoryId: Scalars['ID']['input'];
|
|
74777
|
+
};
|
|
74778
|
+
export declare type JiraSetBoardViewStatusColumnMappingDeleteStatusInput = {
|
|
74779
|
+
replacementStatusId: Scalars['ID']['input'];
|
|
74780
|
+
statusId: Scalars['ID']['input'];
|
|
74781
|
+
};
|
|
74182
74782
|
export declare type JiraSetBoardViewStatusColumnMappingInput = {
|
|
74183
74783
|
columns: Array<JiraBoardViewStatusColumnMapping>;
|
|
74784
|
+
createStatuses?: InputMaybe<Array<JiraSetBoardViewStatusColumnMappingCreateStatusInput>>;
|
|
74785
|
+
deleteStatuses?: InputMaybe<Array<JiraSetBoardViewStatusColumnMappingDeleteStatusInput>>;
|
|
74786
|
+
renameStatuses?: InputMaybe<Array<JiraSetBoardViewStatusColumnMappingRenameStatusInput>>;
|
|
74184
74787
|
settings?: InputMaybe<JiraBoardViewSettings>;
|
|
74185
74788
|
viewId: Scalars['ID']['input'];
|
|
74186
74789
|
};
|
|
@@ -74190,6 +74793,10 @@ export declare type JiraSetBoardViewStatusColumnMappingPayload = Payload & {
|
|
|
74190
74793
|
errors?: Maybe<Array<MutationError>>;
|
|
74191
74794
|
success: Scalars['Boolean']['output'];
|
|
74192
74795
|
};
|
|
74796
|
+
export declare type JiraSetBoardViewStatusColumnMappingRenameStatusInput = {
|
|
74797
|
+
name: Scalars['String']['input'];
|
|
74798
|
+
statusId: Scalars['ID']['input'];
|
|
74799
|
+
};
|
|
74193
74800
|
export declare type JiraSetBoardViewWorkflowSelectedInput = {
|
|
74194
74801
|
selectedWorkflowId: Scalars['ID']['input'];
|
|
74195
74802
|
settings?: InputMaybe<JiraBoardViewSettings>;
|
|
@@ -75745,6 +76352,18 @@ export declare type JiraUpdateColorFieldInput = {
|
|
|
75745
76352
|
id: Scalars['ID']['input'];
|
|
75746
76353
|
operation: JiraColorFieldOperationInput;
|
|
75747
76354
|
};
|
|
76355
|
+
export declare type JiraUpdateCommentInput = {
|
|
76356
|
+
content: JiraAdfInput;
|
|
76357
|
+
id: Scalars['ID']['input'];
|
|
76358
|
+
issueId: Scalars['ID']['input'];
|
|
76359
|
+
threadParentId?: InputMaybe<Scalars['ID']['input']>;
|
|
76360
|
+
};
|
|
76361
|
+
export declare type JiraUpdateCommentPayload = {
|
|
76362
|
+
__typename?: 'JiraUpdateCommentPayload';
|
|
76363
|
+
comment: JiraComment;
|
|
76364
|
+
errors?: Maybe<Array<MutationError>>;
|
|
76365
|
+
success: Scalars['Boolean']['output'];
|
|
76366
|
+
};
|
|
75748
76367
|
export declare type JiraUpdateComponentsFieldInput = {
|
|
75749
76368
|
id: Scalars['ID']['input'];
|
|
75750
76369
|
operations: Array<JiraComponentFieldOperationInput>;
|
|
@@ -77719,6 +78338,9 @@ export declare type JiraWorklogPayload = Payload & {
|
|
|
77719
78338
|
success: Scalars['Boolean']['output'];
|
|
77720
78339
|
worklog?: Maybe<JiraWorklog>;
|
|
77721
78340
|
};
|
|
78341
|
+
export declare type JiraWorklogSortInput = {
|
|
78342
|
+
order: SortDirection;
|
|
78343
|
+
};
|
|
77722
78344
|
export declare type JsmChannelsConversationsByContainerAriResult = JsmChannelsOrchestratorConversationsConnection | QueryError;
|
|
77723
78345
|
export declare type JsmChannelsOrchestratorConversation = Node & {
|
|
77724
78346
|
__typename?: 'JsmChannelsOrchestratorConversation';
|
|
@@ -79105,6 +79727,7 @@ export declare enum KnowledgeDiscoveryKeyPhraseInputTextFormat {
|
|
|
79105
79727
|
export declare type KnowledgeDiscoveryKeyPhrasesResult = KnowledgeDiscoveryKeyPhraseConnection | QueryError;
|
|
79106
79728
|
export declare type KnowledgeDiscoveryMarkZeroQueryInteractedInput = {
|
|
79107
79729
|
cloudId: Scalars['String']['input'];
|
|
79730
|
+
product?: InputMaybe<KnowledgeDiscoveryProduct>;
|
|
79108
79731
|
query: Scalars['String']['input'];
|
|
79109
79732
|
};
|
|
79110
79733
|
export declare type KnowledgeDiscoveryMarkZeroQueryInteractedPayload = Payload & {
|
|
@@ -79170,6 +79793,10 @@ export declare type KnowledgeDiscoveryPopularSearchQuery = {
|
|
|
79170
79793
|
isPopular: Scalars['Boolean']['output'];
|
|
79171
79794
|
};
|
|
79172
79795
|
export declare type KnowledgeDiscoveryPopularSearchQueryResult = KnowledgeDiscoveryPopularSearchQuery | QueryError;
|
|
79796
|
+
export declare enum KnowledgeDiscoveryProduct {
|
|
79797
|
+
Confluence = "CONFLUENCE",
|
|
79798
|
+
Jira = "JIRA"
|
|
79799
|
+
}
|
|
79173
79800
|
export declare type KnowledgeDiscoveryQueryApi = {
|
|
79174
79801
|
__typename?: 'KnowledgeDiscoveryQueryApi';
|
|
79175
79802
|
adminhubBookmark?: Maybe<KnowledgeDiscoveryAdminhubBookmarkResult>;
|
|
@@ -79294,6 +79921,7 @@ export declare type KnowledgeDiscoveryQueryApiTopicsByArisArgs = {
|
|
|
79294
79921
|
};
|
|
79295
79922
|
export declare type KnowledgeDiscoveryQueryApiZeroQueriesArgs = {
|
|
79296
79923
|
cloudId: Scalars['String']['input'];
|
|
79924
|
+
product?: InputMaybe<KnowledgeDiscoveryProduct>;
|
|
79297
79925
|
};
|
|
79298
79926
|
export declare type KnowledgeDiscoveryRelatedEntitiesResult = KnowledgeDiscoveryRelatedEntityConnection | QueryError;
|
|
79299
79927
|
export declare type KnowledgeDiscoveryRelatedEntityAction = {
|
|
@@ -79457,6 +80085,7 @@ export declare type KnowledgeDiscoveryZeroQuery = {
|
|
|
79457
80085
|
type: KnowledgeDiscoveryZeroQueryType;
|
|
79458
80086
|
};
|
|
79459
80087
|
export declare enum KnowledgeDiscoveryZeroQueryType {
|
|
80088
|
+
JiraNlq = "JIRA_NLQ",
|
|
79460
80089
|
RelatedQuestion = "RELATED_QUESTION",
|
|
79461
80090
|
WhoIs = "WHO_IS"
|
|
79462
80091
|
}
|
|
@@ -80878,6 +81507,7 @@ export declare type MarketplaceConsoleEditionDetailsInput = {
|
|
|
80878
81507
|
enabled?: InputMaybe<Scalars['Boolean']['input']>;
|
|
80879
81508
|
};
|
|
80880
81509
|
export declare type MarketplaceConsoleEditionInput = {
|
|
81510
|
+
cloudComplianceBoundary?: InputMaybe<MarketplaceConsoleCloudComplianceBoundary>;
|
|
80881
81511
|
features: Array<MarketplaceConsoleFeatureInput>;
|
|
80882
81512
|
id?: InputMaybe<Scalars['ID']['input']>;
|
|
80883
81513
|
isDecoupled?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -82375,6 +83005,7 @@ export declare type MarketplaceStoreOfferingDetails = {
|
|
|
82375
83005
|
id: Scalars['ID']['output'];
|
|
82376
83006
|
isInstance?: Maybe<Scalars['Boolean']['output']>;
|
|
82377
83007
|
isSandbox?: Maybe<Scalars['Boolean']['output']>;
|
|
83008
|
+
isUserTierDecoupled?: Maybe<Scalars['Boolean']['output']>;
|
|
82378
83009
|
name: Scalars['String']['output'];
|
|
82379
83010
|
};
|
|
82380
83011
|
export declare type MarketplaceStoreOrgDetails = MarketplaceStoreMultiInstanceDetails & {
|
|
@@ -83055,6 +83686,11 @@ export declare type MercuryChangeProposalSummaryForStrategicEvent = {
|
|
|
83055
83686
|
newPositions?: Maybe<MercuryNewPositionSummaryByChangeProposalStatus>;
|
|
83056
83687
|
strategicEventId: Scalars['ID']['output'];
|
|
83057
83688
|
};
|
|
83689
|
+
export declare type MercuryChangeProposalTag = {
|
|
83690
|
+
__typename?: 'MercuryChangeProposalTag';
|
|
83691
|
+
id: Scalars['ID']['output'];
|
|
83692
|
+
tag?: Maybe<TownsquareTag>;
|
|
83693
|
+
};
|
|
83058
83694
|
export declare type MercuryChangeProposalTagConnection = {
|
|
83059
83695
|
__typename?: 'MercuryChangeProposalTagConnection';
|
|
83060
83696
|
edges?: Maybe<Array<Maybe<MercuryChangeProposalTagEdge>>>;
|
|
@@ -83064,7 +83700,7 @@ export declare type MercuryChangeProposalTagConnection = {
|
|
|
83064
83700
|
export declare type MercuryChangeProposalTagEdge = {
|
|
83065
83701
|
__typename?: 'MercuryChangeProposalTagEdge';
|
|
83066
83702
|
cursor: Scalars['String']['output'];
|
|
83067
|
-
node?: Maybe<
|
|
83703
|
+
node?: Maybe<MercuryChangeProposalTag>;
|
|
83068
83704
|
};
|
|
83069
83705
|
export declare type MercuryChangeProposalUpdate = {
|
|
83070
83706
|
__typename?: 'MercuryChangeProposalUpdate';
|
|
@@ -83074,17 +83710,18 @@ export declare type MercuryChangeProposalUpdate = {
|
|
|
83074
83710
|
};
|
|
83075
83711
|
export declare type MercuryChangeProposalsView = MercuryView & {
|
|
83076
83712
|
__typename?: 'MercuryChangeProposalsView';
|
|
83077
|
-
createdBy
|
|
83078
|
-
createdDate
|
|
83713
|
+
createdBy?: Maybe<Scalars['ID']['output']>;
|
|
83714
|
+
createdDate?: Maybe<Scalars['String']['output']>;
|
|
83079
83715
|
id: Scalars['ID']['output'];
|
|
83080
83716
|
name: Scalars['String']['output'];
|
|
83081
83717
|
priorities?: Maybe<MercuryChangeProposalConnection>;
|
|
83082
83718
|
settings?: Maybe<Array<Maybe<MercuryViewSetting>>>;
|
|
83083
|
-
|
|
83719
|
+
updatedBy?: Maybe<Scalars['ID']['output']>;
|
|
83720
|
+
updatedDate?: Maybe<Scalars['String']['output']>;
|
|
83084
83721
|
};
|
|
83085
83722
|
export declare type MercuryChangeProposalsViewConnection = {
|
|
83086
83723
|
__typename?: 'MercuryChangeProposalsViewConnection';
|
|
83087
|
-
edges?: Maybe<Array<
|
|
83724
|
+
edges?: Maybe<Array<MercuryChangeProposalsViewEdge>>;
|
|
83088
83725
|
pageInfo: PageInfo;
|
|
83089
83726
|
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
83090
83727
|
};
|
|
@@ -83310,15 +83947,6 @@ export declare type MercuryDeleteChangeProposalCommentPayload = Payload & {
|
|
|
83310
83947
|
errors?: Maybe<Array<MutationError>>;
|
|
83311
83948
|
success: Scalars['Boolean']['output'];
|
|
83312
83949
|
};
|
|
83313
|
-
export declare type MercuryDeleteChangeProposalGoalLinksInput = {
|
|
83314
|
-
changeProposalAri: Scalars['ID']['input'];
|
|
83315
|
-
goalAris: Array<Scalars['ID']['input']>;
|
|
83316
|
-
};
|
|
83317
|
-
export declare type MercuryDeleteChangeProposalGoalLinksPayload = Payload & {
|
|
83318
|
-
__typename?: 'MercuryDeleteChangeProposalGoalLinksPayload';
|
|
83319
|
-
errors?: Maybe<Array<MutationError>>;
|
|
83320
|
-
success: Scalars['Boolean']['output'];
|
|
83321
|
-
};
|
|
83322
83950
|
export declare type MercuryDeleteChangeProposalInput = {
|
|
83323
83951
|
id: Scalars['ID']['input'];
|
|
83324
83952
|
};
|
|
@@ -84882,8 +85510,7 @@ export declare type MercuryStrategicEventsMutationApi = {
|
|
|
84882
85510
|
createStrategicEventComment?: Maybe<MercuryCreateStrategicEventCommentPayload>;
|
|
84883
85511
|
deleteChangeProposal?: Maybe<MercuryDeleteChangeProposalPayload>;
|
|
84884
85512
|
deleteChangeProposalComment?: Maybe<MercuryDeleteChangeProposalCommentPayload>;
|
|
84885
|
-
|
|
84886
|
-
deleteChangeProposalsViewSetting?: Maybe<MercuryDeleteChangeProposalsViewPayload>;
|
|
85513
|
+
deleteChangeProposalsView?: Maybe<MercuryDeleteChangeProposalsViewPayload>;
|
|
84887
85514
|
deleteChanges?: Maybe<MercuryDeleteChangesPayload>;
|
|
84888
85515
|
deleteStrategicEventComment?: Maybe<MercuryDeleteStrategicEventCommentPayload>;
|
|
84889
85516
|
linkGoalsToChangeProposal?: Maybe<MercuryLinkGoalsToChangeProposalPayload>;
|
|
@@ -84892,6 +85519,7 @@ export declare type MercuryStrategicEventsMutationApi = {
|
|
|
84892
85519
|
removeTagsFromChangeProposal?: Maybe<MercuryRemoveTagsFromProposalPayload>;
|
|
84893
85520
|
transitionChangeProposalStatus?: Maybe<MercuryTransitionChangeProposalPayload>;
|
|
84894
85521
|
transitionStrategicEventStatus?: Maybe<MercuryTransitionStrategicEventPayload>;
|
|
85522
|
+
unlinkGoalsFromChangeProposal?: Maybe<MercuryUnlinkGoalsFromChangeProposalPayload>;
|
|
84895
85523
|
updateChangeProposalComment?: Maybe<MercuryUpdateChangeProposalCommentPayload>;
|
|
84896
85524
|
updateChangeProposalDescription?: Maybe<MercuryUpdateChangeProposalPayload>;
|
|
84897
85525
|
updateChangeProposalFocusArea?: Maybe<MercuryUpdateChangeProposalPayload>;
|
|
@@ -84899,6 +85527,7 @@ export declare type MercuryStrategicEventsMutationApi = {
|
|
|
84899
85527
|
updateChangeProposalName?: Maybe<MercuryUpdateChangeProposalPayload>;
|
|
84900
85528
|
updateChangeProposalOwner?: Maybe<MercuryUpdateChangeProposalPayload>;
|
|
84901
85529
|
updateChangeProposalsView?: Maybe<MercuryUpdateChangeProposalsViewPayload>;
|
|
85530
|
+
updateChangeProposalsViewSettings?: Maybe<MercuryUpdateChangeProposalsViewSettingsPayload>;
|
|
84902
85531
|
updateMoveFundsChange: MercuryUpdateChangePayload;
|
|
84903
85532
|
updateMovePositionsChange: MercuryUpdateChangePayload;
|
|
84904
85533
|
updateRequestFundsChange: MercuryUpdateChangePayload;
|
|
@@ -84934,10 +85563,7 @@ export declare type MercuryStrategicEventsMutationApiDeleteChangeProposalArgs =
|
|
|
84934
85563
|
export declare type MercuryStrategicEventsMutationApiDeleteChangeProposalCommentArgs = {
|
|
84935
85564
|
input: MercuryDeleteChangeProposalCommentInput;
|
|
84936
85565
|
};
|
|
84937
|
-
export declare type
|
|
84938
|
-
input: MercuryDeleteChangeProposalGoalLinksInput;
|
|
84939
|
-
};
|
|
84940
|
-
export declare type MercuryStrategicEventsMutationApiDeleteChangeProposalsViewSettingArgs = {
|
|
85566
|
+
export declare type MercuryStrategicEventsMutationApiDeleteChangeProposalsViewArgs = {
|
|
84941
85567
|
input: MercuryDeleteChangeProposalsViewInput;
|
|
84942
85568
|
};
|
|
84943
85569
|
export declare type MercuryStrategicEventsMutationApiDeleteChangesArgs = {
|
|
@@ -84964,6 +85590,9 @@ export declare type MercuryStrategicEventsMutationApiTransitionChangeProposalSta
|
|
|
84964
85590
|
export declare type MercuryStrategicEventsMutationApiTransitionStrategicEventStatusArgs = {
|
|
84965
85591
|
input: MercuryTransitionStrategicEventStatusInput;
|
|
84966
85592
|
};
|
|
85593
|
+
export declare type MercuryStrategicEventsMutationApiUnlinkGoalsFromChangeProposalArgs = {
|
|
85594
|
+
input: MercuryUnlinkGoalsFromChangeProposalInput;
|
|
85595
|
+
};
|
|
84967
85596
|
export declare type MercuryStrategicEventsMutationApiUpdateChangeProposalCommentArgs = {
|
|
84968
85597
|
input: MercuryUpdateChangeProposalCommentInput;
|
|
84969
85598
|
};
|
|
@@ -84985,6 +85614,9 @@ export declare type MercuryStrategicEventsMutationApiUpdateChangeProposalOwnerAr
|
|
|
84985
85614
|
export declare type MercuryStrategicEventsMutationApiUpdateChangeProposalsViewArgs = {
|
|
84986
85615
|
input: MercuryUpdateChangeProposalsViewInput;
|
|
84987
85616
|
};
|
|
85617
|
+
export declare type MercuryStrategicEventsMutationApiUpdateChangeProposalsViewSettingsArgs = {
|
|
85618
|
+
input: MercuryUpdateChangeProposalsViewSettingsInput;
|
|
85619
|
+
};
|
|
84988
85620
|
export declare type MercuryStrategicEventsMutationApiUpdateMoveFundsChangeArgs = {
|
|
84989
85621
|
input: MercuryUpdateMoveFundsChangeInput;
|
|
84990
85622
|
};
|
|
@@ -85246,6 +85878,15 @@ export declare type MercuryUnarchiveFocusAreaPayload = Payload & {
|
|
|
85246
85878
|
errors?: Maybe<Array<MutationError>>;
|
|
85247
85879
|
success: Scalars['Boolean']['output'];
|
|
85248
85880
|
};
|
|
85881
|
+
export declare type MercuryUnlinkGoalsFromChangeProposalInput = {
|
|
85882
|
+
changeProposalAri: Scalars['ID']['input'];
|
|
85883
|
+
goalAris: Array<Scalars['ID']['input']>;
|
|
85884
|
+
};
|
|
85885
|
+
export declare type MercuryUnlinkGoalsFromChangeProposalPayload = Payload & {
|
|
85886
|
+
__typename?: 'MercuryUnlinkGoalsFromChangeProposalPayload';
|
|
85887
|
+
errors?: Maybe<Array<MutationError>>;
|
|
85888
|
+
success: Scalars['Boolean']['output'];
|
|
85889
|
+
};
|
|
85249
85890
|
export declare type MercuryUpdateChangeFocusAreaInput = {
|
|
85250
85891
|
focusAreaId?: InputMaybe<Scalars['ID']['input']>;
|
|
85251
85892
|
};
|
|
@@ -85309,6 +85950,16 @@ export declare type MercuryUpdateChangeProposalsViewPayload = Payload & {
|
|
|
85309
85950
|
errors?: Maybe<Array<MutationError>>;
|
|
85310
85951
|
success: Scalars['Boolean']['output'];
|
|
85311
85952
|
};
|
|
85953
|
+
export declare type MercuryUpdateChangeProposalsViewSettingsInput = {
|
|
85954
|
+
id: Scalars['ID']['input'];
|
|
85955
|
+
settings?: InputMaybe<Array<InputMaybe<MercuryViewSettingInput>>>;
|
|
85956
|
+
};
|
|
85957
|
+
export declare type MercuryUpdateChangeProposalsViewSettingsPayload = {
|
|
85958
|
+
__typename?: 'MercuryUpdateChangeProposalsViewSettingsPayload';
|
|
85959
|
+
changeProposalsView?: Maybe<MercuryChangeProposalsView>;
|
|
85960
|
+
errors?: Maybe<Array<MutationError>>;
|
|
85961
|
+
success: Scalars['Boolean']['output'];
|
|
85962
|
+
};
|
|
85312
85963
|
export declare type MercuryUpdateChangeQuantityInput = {
|
|
85313
85964
|
quantity?: InputMaybe<Scalars['Int']['input']>;
|
|
85314
85965
|
};
|
|
@@ -85497,6 +86148,7 @@ export declare type MercuryWorkspaceConnectionStatus = {
|
|
|
85497
86148
|
};
|
|
85498
86149
|
export declare type MercuryWorkspaceContext = {
|
|
85499
86150
|
__typename?: 'MercuryWorkspaceContext';
|
|
86151
|
+
activationDate?: Maybe<Scalars['String']['output']>;
|
|
85500
86152
|
activationId: Scalars['String']['output'];
|
|
85501
86153
|
aiEnabled: Scalars['Boolean']['output'];
|
|
85502
86154
|
cloudId: Scalars['String']['output'];
|
|
@@ -85739,12 +86391,15 @@ export declare type Mutation = {
|
|
|
85739
86391
|
admin_releaseImpersonationUser?: Maybe<AdminReleaseImpersonationResponsePayload>;
|
|
85740
86392
|
admin_removeUser?: Maybe<AdminRemoveUserResponsePayload>;
|
|
85741
86393
|
admin_revokeRole?: Maybe<AdminRevokeRoleResponsePayload>;
|
|
86394
|
+
admin_unitCreate?: Maybe<AdminUnitCreatePayload>;
|
|
85742
86395
|
agentStudio_addGroupsToCreatePermission?: Maybe<AgentStudioAddGroupsToCreatePermissionPayload>;
|
|
85743
86396
|
agentStudio_createAgent?: Maybe<AgentStudioCreateAgentPayload>;
|
|
85744
86397
|
agentStudio_createScenario?: Maybe<AgentStudioCreateScenarioPayload>;
|
|
85745
86398
|
agentStudio_deleteAgent?: Maybe<AgentStudioDeleteAgentPayload>;
|
|
85746
86399
|
agentStudio_deleteScenario?: Maybe<AgentStudioDeleteScenarioPayload>;
|
|
86400
|
+
agentStudio_removeActorRoles?: Maybe<AgentStudioUpdateAgentPermissionPayload>;
|
|
85747
86401
|
agentStudio_removeGroupsFromCreatePermission?: Maybe<AgentStudioRemoveGroupsFromCreatePermissionPayload>;
|
|
86402
|
+
agentStudio_updateActorRoles?: Maybe<AgentStudioUpdateAgentPermissionPayload>;
|
|
85748
86403
|
agentStudio_updateAgentActions?: Maybe<AgentStudioUpdateAgentActionsPayload>;
|
|
85749
86404
|
agentStudio_updateAgentAsFavourite?: Maybe<AgentStudioUpdateAgentAsFavouritePayload>;
|
|
85750
86405
|
agentStudio_updateAgentDetails?: Maybe<AgentStudioUpdateAgentDetailsPayload>;
|
|
@@ -85769,6 +86424,7 @@ export declare type Mutation = {
|
|
|
85769
86424
|
assetsDM_dataSourceRunMerge?: Maybe<AssetsDmDataSourceRunMergeResponse>;
|
|
85770
86425
|
assetsDM_dataSourceRunTransform?: Maybe<AssetsDmDataSourceRunTransformResponse>;
|
|
85771
86426
|
assetsDM_deleteObjectTag?: Maybe<AssetsDmObjectTagDeleteResponse>;
|
|
86427
|
+
assetsDM_editObjectTag?: Maybe<AssetsDmObjectTagEditResponse>;
|
|
85772
86428
|
assetsDM_generateAdapterToken?: Maybe<AssetsDmGenerateAdapterTokenResponse>;
|
|
85773
86429
|
assignIssueParent?: Maybe<AssignIssueParentOutput>;
|
|
85774
86430
|
attachDanglingComment?: Maybe<Comment>;
|
|
@@ -85813,6 +86469,7 @@ export declare type Mutation = {
|
|
|
85813
86469
|
confluence_addReaction?: Maybe<ConfluenceReactionPayload>;
|
|
85814
86470
|
confluence_bulkNestedConvertToLiveDocs?: Maybe<ConfluenceBulkNestedConvertToLiveDocsPayload>;
|
|
85815
86471
|
confluence_convertNote?: Maybe<ConfluenceConvertNotePayload>;
|
|
86472
|
+
confluence_copyNote?: Maybe<ConfluenceCopyNotePayload>;
|
|
85816
86473
|
confluence_copySpaceSecurityConfiguration?: Maybe<ConfluenceCopySpaceSecurityConfigurationPayload>;
|
|
85817
86474
|
confluence_createCsvExportTask?: Maybe<ConfluenceCreateCsvExportTaskPayload>;
|
|
85818
86475
|
confluence_createCustomRole?: Maybe<ConfluenceCreateCustomRolePayload>;
|
|
@@ -85835,6 +86492,7 @@ export declare type Mutation = {
|
|
|
85835
86492
|
confluence_makeSubCalendarPrivateUrl?: Maybe<ConfluenceMakeSubCalendarPrivateUrlPayload>;
|
|
85836
86493
|
confluence_markAllCommentsAsRead?: Maybe<ConfluenceMarkAllCommentsAsReadPayload>;
|
|
85837
86494
|
confluence_markCommentAsDangling?: Maybe<ConfluenceMarkCommentAsDanglingPayload>;
|
|
86495
|
+
confluence_nbmStartScanLongTask?: Maybe<ConfluenceNbmStartScanLongTaskPayload>;
|
|
85838
86496
|
confluence_reopenComment?: Maybe<ConfluenceReopenCommentPayload>;
|
|
85839
86497
|
confluence_resolveComments?: Maybe<ConfluenceResolveCommentsPayload>;
|
|
85840
86498
|
confluence_resolveCommentsByContentId?: Maybe<ConfluenceResolveCommentByContentIdPayload>;
|
|
@@ -85915,6 +86573,9 @@ export declare type Mutation = {
|
|
|
85915
86573
|
csmAi_createCoachingContent?: Maybe<CsmAiCreateCoachingContentPayload>;
|
|
85916
86574
|
csmAi_deleteAction?: Maybe<CsmAiDeleteActionPayload>;
|
|
85917
86575
|
csmAi_deleteCoachingContent?: Maybe<CsmAiDeleteCoachingContentPayload>;
|
|
86576
|
+
csmAi_publishAgent?: Maybe<CsmAiAgentVersionPayload>;
|
|
86577
|
+
csmAi_restoreAgentVersionAsDraft?: Maybe<CsmAiAgentVersionPayload>;
|
|
86578
|
+
csmAi_restoreFromAgentVersion?: Maybe<CsmAiAgentVersionPayload>;
|
|
85918
86579
|
csmAi_updateAction?: Maybe<CsmAiUpdateActionPayload>;
|
|
85919
86580
|
csmAi_updateAgent?: Maybe<CsmAiUpdateAgentPayload>;
|
|
85920
86581
|
csmAi_updateCoachingContent?: Maybe<CsmAiUpdateCoachingContentPayload>;
|
|
@@ -85943,6 +86604,7 @@ export declare type Mutation = {
|
|
|
85943
86604
|
deleteDevOpsServiceEntityProperties?: Maybe<DeleteDevOpsServiceEntityPropertiesPayload>;
|
|
85944
86605
|
deleteDevOpsServiceRelationship?: Maybe<DeleteDevOpsServiceRelationshipPayload>;
|
|
85945
86606
|
deleteExCoSpacePermissions?: Maybe<Array<Maybe<DeleteExCoSpacePermissionsPayload>>>;
|
|
86607
|
+
deleteExternalCollaboratorDefaultSpace?: Maybe<DeleteExternalCollaboratorDefaultSpacePayload>;
|
|
85946
86608
|
deleteInlineComment?: Maybe<Scalars['Boolean']['output']>;
|
|
85947
86609
|
deleteLabel?: Maybe<DeleteLabelPayload>;
|
|
85948
86610
|
deleteNote?: Maybe<DeleteNotePayload>;
|
|
@@ -86005,6 +86667,7 @@ export declare type Mutation = {
|
|
|
86005
86667
|
goals_shareGoal?: Maybe<TownsquareGoalsShareGoalPayload>;
|
|
86006
86668
|
grantContentAccess?: Maybe<GrantContentAccessPayload>;
|
|
86007
86669
|
graphIntegration_mcpAdminManagementRegisterMcpServer?: Maybe<GraphIntegrationMcpAdminManagementRegisterMcpServerPayload>;
|
|
86670
|
+
graphIntegration_mcpAdminManagementTriggerToolSync?: Maybe<GraphIntegrationMcpAdminManagementTriggerToolSyncPayload>;
|
|
86008
86671
|
graphIntegration_mcpAdminManagementUnregisterMcpServer?: Maybe<GraphIntegrationMcpAdminManagementUnregisterMcpServerPayload>;
|
|
86009
86672
|
graphIntegration_mcpAdminManagementUpdateMcpToolConfiguration?: Maybe<GraphIntegrationMcpAdminManagementUpdateMcpToolConfigurationPayload>;
|
|
86010
86673
|
graphStore?: Maybe<GraphStoreMutation>;
|
|
@@ -86085,6 +86748,7 @@ export declare type Mutation = {
|
|
|
86085
86748
|
jira_updateIssueType?: Maybe<JiraUpsertIssueTypePayload>;
|
|
86086
86749
|
jira_updateProjectBackground?: Maybe<JiraProjectUpdateBackgroundMutationPayload>;
|
|
86087
86750
|
jira_updateProjectsSidebarMenu?: Maybe<JiraProjectsSidebarMenu>;
|
|
86751
|
+
jira_updateSchemeFieldPerWorkTypeCustomizations?: Maybe<JiraFieldWorkTypeConfigurationPayload>;
|
|
86088
86752
|
jsmChat?: Maybe<JsmChatMutation>;
|
|
86089
86753
|
jsw?: Maybe<JswMutation>;
|
|
86090
86754
|
knowledgeBase?: Maybe<KnowledgeBaseMutationApi>;
|
|
@@ -86250,12 +86914,15 @@ export declare type Mutation = {
|
|
|
86250
86914
|
spf_updateAskUpdateTargetDate?: Maybe<SpfUpsertAskUpdatePayload>;
|
|
86251
86915
|
splitIssue?: Maybe<SplitIssueOutput>;
|
|
86252
86916
|
stakeholderComms_addStakeholderMembers?: Maybe<StakeholderCommsStakeholderGroupMutationResponse>;
|
|
86917
|
+
stakeholderComms_createPage?: Maybe<StakeholderCommsPageResponse>;
|
|
86253
86918
|
stakeholderComms_createStakeholder?: Maybe<StakeholderCommsStakeholderAssignmentResponse>;
|
|
86254
86919
|
stakeholderComms_createStakeholderGroupAndMembers?: Maybe<StakeholderCommsStakeholderGroupsAndMemberships>;
|
|
86920
|
+
stakeholderComms_deleteStakeholder?: Maybe<StakeholderCommsStakeholderGroupMutationResponse>;
|
|
86255
86921
|
stakeholderComms_removeStakeholderAssignment?: Maybe<StakeholderCommsStakeholderAssignmentResponse>;
|
|
86256
86922
|
stakeholderComms_removeStakeholderGroup?: Maybe<StakeholderCommsStakeholderGroupMutationResponse>;
|
|
86257
86923
|
stakeholderComms_removeStakeholderGroups?: Maybe<StakeholderCommsStakeholderGroupMutationResponse>;
|
|
86258
86924
|
stakeholderComms_removeStakeholderMembers?: Maybe<StakeholderCommsStakeholderGroupMutationResponse>;
|
|
86925
|
+
stakeholderComms_updatePage?: Maybe<StakeholderCommsPageResponse>;
|
|
86259
86926
|
stakeholderComms_updateStakeholder?: Maybe<StakeholderCommsStakeholderResponse>;
|
|
86260
86927
|
stakeholderComms_updateStakeholderGroup?: Maybe<StakeholderCommsStakeholderGroup>;
|
|
86261
86928
|
startSprint?: Maybe<SprintResponse>;
|
|
@@ -86299,6 +86966,7 @@ export declare type Mutation = {
|
|
|
86299
86966
|
updateDevOpsServiceRelationship?: Maybe<UpdateDevOpsServiceRelationshipPayload>;
|
|
86300
86967
|
updateDeveloperLogAccess?: Maybe<UpdateDeveloperLogAccessPayload>;
|
|
86301
86968
|
updateEmbed?: Maybe<Content>;
|
|
86969
|
+
updateExCoSpacePermissions?: Maybe<Array<Maybe<UpdateExCoSpacePermissionsPayload>>>;
|
|
86302
86970
|
updateExternalCollaboratorDefaultSpace?: Maybe<UpdateExternalCollaboratorDefaultSpacePayload>;
|
|
86303
86971
|
updateHomeUserSettings?: Maybe<HomeUserSettings>;
|
|
86304
86972
|
updateLocalStorage?: Maybe<LocalStorage>;
|
|
@@ -86399,6 +87067,10 @@ export declare type MutationAdmin_RevokeRoleArgs = {
|
|
|
86399
87067
|
orgId: Scalars['ID']['input'];
|
|
86400
87068
|
revokeRoleInput?: InputMaybe<AdminRevokeRoleInput>;
|
|
86401
87069
|
};
|
|
87070
|
+
export declare type MutationAdmin_UnitCreateArgs = {
|
|
87071
|
+
orgId: Scalars['ID']['input'];
|
|
87072
|
+
unit: AdminUnitCreateInput;
|
|
87073
|
+
};
|
|
86402
87074
|
export declare type MutationAgentStudio_AddGroupsToCreatePermissionArgs = {
|
|
86403
87075
|
cloudId: Scalars['ID']['input'];
|
|
86404
87076
|
groupARIs: Array<Scalars['ID']['input']>;
|
|
@@ -86417,10 +87089,18 @@ export declare type MutationAgentStudio_DeleteAgentArgs = {
|
|
|
86417
87089
|
export declare type MutationAgentStudio_DeleteScenarioArgs = {
|
|
86418
87090
|
id: Scalars['ID']['input'];
|
|
86419
87091
|
};
|
|
87092
|
+
export declare type MutationAgentStudio_RemoveActorRolesArgs = {
|
|
87093
|
+
id: Scalars['ID']['input'];
|
|
87094
|
+
input: AgentStudioUpdateAgentPermissionInput;
|
|
87095
|
+
};
|
|
86420
87096
|
export declare type MutationAgentStudio_RemoveGroupsFromCreatePermissionArgs = {
|
|
86421
87097
|
cloudId: Scalars['ID']['input'];
|
|
86422
87098
|
groupARIs: Array<Scalars['ID']['input']>;
|
|
86423
87099
|
};
|
|
87100
|
+
export declare type MutationAgentStudio_UpdateActorRolesArgs = {
|
|
87101
|
+
id: Scalars['ID']['input'];
|
|
87102
|
+
input: AgentStudioUpdateAgentPermissionInput;
|
|
87103
|
+
};
|
|
86424
87104
|
export declare type MutationAgentStudio_UpdateAgentActionsArgs = {
|
|
86425
87105
|
id: Scalars['ID']['input'];
|
|
86426
87106
|
input: AgentStudioActionConfigurationInput;
|
|
@@ -86515,6 +87195,11 @@ export declare type MutationAssetsDm_DeleteObjectTagArgs = {
|
|
|
86515
87195
|
tagId: Scalars['ID']['input'];
|
|
86516
87196
|
workspaceId: Scalars['ID']['input'];
|
|
86517
87197
|
};
|
|
87198
|
+
export declare type MutationAssetsDm_EditObjectTagArgs = {
|
|
87199
|
+
cloudId: Scalars['ID']['input'];
|
|
87200
|
+
input: AssetsDmObjectTagEditInput;
|
|
87201
|
+
workspaceId: Scalars['ID']['input'];
|
|
87202
|
+
};
|
|
86518
87203
|
export declare type MutationAssetsDm_GenerateAdapterTokenArgs = {
|
|
86519
87204
|
cloudId: Scalars['ID']['input'];
|
|
86520
87205
|
generateTokenInput: AssetsDmGenerateAdapterTokenInput;
|
|
@@ -86653,6 +87338,9 @@ export declare type MutationConfluence_BulkNestedConvertToLiveDocsArgs = {
|
|
|
86653
87338
|
export declare type MutationConfluence_ConvertNoteArgs = {
|
|
86654
87339
|
input: ConfluenceConvertNoteInput;
|
|
86655
87340
|
};
|
|
87341
|
+
export declare type MutationConfluence_CopyNoteArgs = {
|
|
87342
|
+
id: Scalars['ID']['input'];
|
|
87343
|
+
};
|
|
86656
87344
|
export declare type MutationConfluence_CopySpaceSecurityConfigurationArgs = {
|
|
86657
87345
|
cloudId: Scalars['ID']['input'];
|
|
86658
87346
|
input: ConfluenceCopySpaceSecurityConfigurationInput;
|
|
@@ -86738,6 +87426,10 @@ export declare type MutationConfluence_MarkCommentAsDanglingArgs = {
|
|
|
86738
87426
|
cloudId: Scalars['ID']['input'];
|
|
86739
87427
|
input: ConfluenceMarkCommentAsDanglingInput;
|
|
86740
87428
|
};
|
|
87429
|
+
export declare type MutationConfluence_NbmStartScanLongTaskArgs = {
|
|
87430
|
+
cloudId: Scalars['ID']['input'];
|
|
87431
|
+
input: ConfluenceNbmStartScanLongTaskInput;
|
|
87432
|
+
};
|
|
86741
87433
|
export declare type MutationConfluence_ReopenCommentArgs = {
|
|
86742
87434
|
cloudId: Scalars['ID']['input'];
|
|
86743
87435
|
commentId: Scalars['ID']['input'];
|
|
@@ -87033,6 +87725,20 @@ export declare type MutationCsmAi_DeleteCoachingContentArgs = {
|
|
|
87033
87725
|
csmAiHubId: Scalars['ID']['input'];
|
|
87034
87726
|
helpCenterAri: Scalars['ID']['input'];
|
|
87035
87727
|
};
|
|
87728
|
+
export declare type MutationCsmAi_PublishAgentArgs = {
|
|
87729
|
+
csmAgentId: Scalars['ID']['input'];
|
|
87730
|
+
helpCenterAri: Scalars['ID']['input'];
|
|
87731
|
+
};
|
|
87732
|
+
export declare type MutationCsmAi_RestoreAgentVersionAsDraftArgs = {
|
|
87733
|
+
csmAgentId: Scalars['ID']['input'];
|
|
87734
|
+
helpCenterAri: Scalars['ID']['input'];
|
|
87735
|
+
versionId: Scalars['ID']['input'];
|
|
87736
|
+
};
|
|
87737
|
+
export declare type MutationCsmAi_RestoreFromAgentVersionArgs = {
|
|
87738
|
+
csmAgentId: Scalars['ID']['input'];
|
|
87739
|
+
helpCenterAri: Scalars['ID']['input'];
|
|
87740
|
+
versionId: Scalars['ID']['input'];
|
|
87741
|
+
};
|
|
87036
87742
|
export declare type MutationCsmAi_UpdateActionArgs = {
|
|
87037
87743
|
csmAiActionId: Scalars['ID']['input'];
|
|
87038
87744
|
csmAiHubId: Scalars['ID']['input'];
|
|
@@ -87323,6 +88029,9 @@ export declare type MutationGrantContentAccessArgs = {
|
|
|
87323
88029
|
export declare type MutationGraphIntegration_McpAdminManagementRegisterMcpServerArgs = {
|
|
87324
88030
|
input: GraphIntegrationMcpAdminManagementRegisterMcpServerInput;
|
|
87325
88031
|
};
|
|
88032
|
+
export declare type MutationGraphIntegration_McpAdminManagementTriggerToolSyncArgs = {
|
|
88033
|
+
input: GraphIntegrationMcpAdminManagementTriggerToolSyncInput;
|
|
88034
|
+
};
|
|
87326
88035
|
export declare type MutationGraphIntegration_McpAdminManagementUnregisterMcpServerArgs = {
|
|
87327
88036
|
input: GraphIntegrationMcpAdminManagementUnregisterMcpServerInput;
|
|
87328
88037
|
};
|
|
@@ -87563,6 +88272,10 @@ export declare type MutationJira_UpdateProjectBackgroundArgs = {
|
|
|
87563
88272
|
export declare type MutationJira_UpdateProjectsSidebarMenuArgs = {
|
|
87564
88273
|
input: JiraUpdateSidebarMenuDisplaySettingInput;
|
|
87565
88274
|
};
|
|
88275
|
+
export declare type MutationJira_UpdateSchemeFieldPerWorkTypeCustomizationsArgs = {
|
|
88276
|
+
cloudId: Scalars['ID']['input'];
|
|
88277
|
+
input?: InputMaybe<JiraFieldWorkTypeCustomizationsInput>;
|
|
88278
|
+
};
|
|
87566
88279
|
export declare type MutationKnowledgeBaseArgs = {
|
|
87567
88280
|
cloudId: Scalars['ID']['input'];
|
|
87568
88281
|
};
|
|
@@ -88058,6 +88771,9 @@ export declare type MutationStakeholderComms_AddStakeholderMembersArgs = {
|
|
|
88058
88771
|
groupId: Scalars['String']['input'];
|
|
88059
88772
|
stakeholders?: InputMaybe<Array<StakeholderCommsCreateStakeholderInput>>;
|
|
88060
88773
|
};
|
|
88774
|
+
export declare type MutationStakeholderComms_CreatePageArgs = {
|
|
88775
|
+
page: StakeholderCommsCreatePageInputType;
|
|
88776
|
+
};
|
|
88061
88777
|
export declare type MutationStakeholderComms_CreateStakeholderArgs = {
|
|
88062
88778
|
stakeholder: StakeholderCommsCreateStakeholderInput;
|
|
88063
88779
|
};
|
|
@@ -88065,6 +88781,9 @@ export declare type MutationStakeholderComms_CreateStakeholderGroupAndMembersArg
|
|
|
88065
88781
|
stakeholderGroupInput: StakeholderCommsCreateStakeholderGroupInput;
|
|
88066
88782
|
stakeholders?: InputMaybe<Array<InputMaybe<StakeholderCommsCreateStakeholderInput>>>;
|
|
88067
88783
|
};
|
|
88784
|
+
export declare type MutationStakeholderComms_DeleteStakeholderArgs = {
|
|
88785
|
+
id: Scalars['String']['input'];
|
|
88786
|
+
};
|
|
88068
88787
|
export declare type MutationStakeholderComms_RemoveStakeholderAssignmentArgs = {
|
|
88069
88788
|
stakeholderAssignmentInput: StakeholderCommsStakeholderAssignmentIdInput;
|
|
88070
88789
|
};
|
|
@@ -88078,6 +88797,9 @@ export declare type MutationStakeholderComms_RemoveStakeholderMembersArgs = {
|
|
|
88078
88797
|
groupId: Scalars['String']['input'];
|
|
88079
88798
|
stakeholderIds?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
88080
88799
|
};
|
|
88800
|
+
export declare type MutationStakeholderComms_UpdatePageArgs = {
|
|
88801
|
+
page: StakeholderCommsUpdatePageInputType;
|
|
88802
|
+
};
|
|
88081
88803
|
export declare type MutationStakeholderComms_UpdateStakeholderArgs = {
|
|
88082
88804
|
updateStakeholderInput: StakeholderCommsUpdateStakeholderInput;
|
|
88083
88805
|
};
|
|
@@ -88201,6 +88923,9 @@ export declare type MutationUpdateDeveloperLogAccessArgs = {
|
|
|
88201
88923
|
export declare type MutationUpdateEmbedArgs = {
|
|
88202
88924
|
input: UpdateEmbedInput;
|
|
88203
88925
|
};
|
|
88926
|
+
export declare type MutationUpdateExCoSpacePermissionsArgs = {
|
|
88927
|
+
input: Array<InputMaybe<UpdateExCoSpacePermissionsInput>>;
|
|
88928
|
+
};
|
|
88204
88929
|
export declare type MutationUpdateExternalCollaboratorDefaultSpaceArgs = {
|
|
88205
88930
|
input: UpdateExternalCollaboratorDefaultSpaceInput;
|
|
88206
88931
|
};
|
|
@@ -88710,6 +89435,22 @@ export declare type OAuthClientsAccountGrantPageInfo = {
|
|
|
88710
89435
|
hasPreviousPage: Scalars['Boolean']['output'];
|
|
88711
89436
|
startCursor?: Maybe<Scalars['String']['output']>;
|
|
88712
89437
|
};
|
|
89438
|
+
export declare type OAuthClientsClient = {
|
|
89439
|
+
__typename?: 'OAuthClientsClient';
|
|
89440
|
+
appContactLink?: Maybe<Scalars['String']['output']>;
|
|
89441
|
+
appDescription?: Maybe<Scalars['String']['output']>;
|
|
89442
|
+
appId?: Maybe<Scalars['String']['output']>;
|
|
89443
|
+
appLogoUrl?: Maybe<Scalars['String']['output']>;
|
|
89444
|
+
appVendorName?: Maybe<Scalars['String']['output']>;
|
|
89445
|
+
clientId: Scalars['ID']['output'];
|
|
89446
|
+
clientName?: Maybe<Scalars['String']['output']>;
|
|
89447
|
+
consentedUserCount?: Maybe<Scalars['Int']['output']>;
|
|
89448
|
+
customerName?: Maybe<Scalars['String']['output']>;
|
|
89449
|
+
profileName?: Maybe<Scalars['String']['output']>;
|
|
89450
|
+
};
|
|
89451
|
+
export declare type OAuthClientsClientConsentedUserCountArgs = {
|
|
89452
|
+
max?: InputMaybe<Scalars['Int']['input']>;
|
|
89453
|
+
};
|
|
88713
89454
|
export declare type OAuthClientsClientInfo = {
|
|
88714
89455
|
__typename?: 'OAuthClientsClientInfo';
|
|
88715
89456
|
appContactLink?: Maybe<Scalars['String']['output']>;
|
|
@@ -88725,11 +89466,15 @@ export declare type OAuthClientsClientInfo = {
|
|
|
88725
89466
|
export declare type OAuthClientsQuery = {
|
|
88726
89467
|
__typename?: 'OAuthClientsQuery';
|
|
88727
89468
|
allAccountGrantsForUser?: Maybe<OAuthClientsAccountGrantConnection>;
|
|
89469
|
+
client?: Maybe<OAuthClientsClient>;
|
|
88728
89470
|
};
|
|
88729
89471
|
export declare type OAuthClientsQueryAllAccountGrantsForUserArgs = {
|
|
88730
89472
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
88731
89473
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
88732
89474
|
};
|
|
89475
|
+
export declare type OAuthClientsQueryClientArgs = {
|
|
89476
|
+
id: Scalars['ID']['input'];
|
|
89477
|
+
};
|
|
88733
89478
|
export declare type OAuthClientsScopeDetails = {
|
|
88734
89479
|
__typename?: 'OAuthClientsScopeDetails';
|
|
88735
89480
|
description?: Maybe<Scalars['String']['output']>;
|
|
@@ -89513,6 +90258,14 @@ export declare type PaginatedCommentList = {
|
|
|
89513
90258
|
pageInfo?: Maybe<PageInfo>;
|
|
89514
90259
|
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
89515
90260
|
};
|
|
90261
|
+
export declare type PaginatedConfluenceWhiteboardTemplateInfoList = {
|
|
90262
|
+
__typename?: 'PaginatedConfluenceWhiteboardTemplateInfoList';
|
|
90263
|
+
count?: Maybe<Scalars['Int']['output']>;
|
|
90264
|
+
edges?: Maybe<Array<Maybe<ConfluenceWhiteboardTemplateInfoEdge>>>;
|
|
90265
|
+
links?: Maybe<LinksContextBase>;
|
|
90266
|
+
nodes?: Maybe<Array<Maybe<ConfluenceWhiteboardTemplateInfo>>>;
|
|
90267
|
+
pageInfo?: Maybe<PageInfo>;
|
|
90268
|
+
};
|
|
89516
90269
|
export declare type PaginatedContentHistoryList = {
|
|
89517
90270
|
__typename?: 'PaginatedContentHistoryList';
|
|
89518
90271
|
count?: Maybe<Scalars['Int']['output']>;
|
|
@@ -91065,6 +91818,7 @@ export declare type PublishedContentProperties = {
|
|
|
91065
91818
|
coverPictureWidth?: Maybe<Scalars['String']['output']>;
|
|
91066
91819
|
defaultTitleEmoji?: Maybe<Scalars['String']['output']>;
|
|
91067
91820
|
externalVersionId?: Maybe<Scalars['String']['output']>;
|
|
91821
|
+
generatedBy?: Maybe<ConfluenceGeneratedBy>;
|
|
91068
91822
|
versionContainsAIContent?: Maybe<Scalars['Boolean']['output']>;
|
|
91069
91823
|
};
|
|
91070
91824
|
export declare type PullRequestStatusInTimeRangeQueryFilter = {
|
|
@@ -91151,6 +91905,8 @@ export declare type Query = {
|
|
|
91151
91905
|
admin_groups?: Maybe<AdminGroupConnection>;
|
|
91152
91906
|
admin_org?: Maybe<AdminOrganization>;
|
|
91153
91907
|
admin_permissions?: Maybe<Array<AdminPermission>>;
|
|
91908
|
+
admin_unitCreateStatus?: Maybe<AdminUnitCreateStatus>;
|
|
91909
|
+
admin_unitValidateName?: Maybe<AdminUnitValidateName>;
|
|
91154
91910
|
admin_user?: Maybe<AdminUser>;
|
|
91155
91911
|
admin_userStats?: Maybe<AdminUserStats>;
|
|
91156
91912
|
admin_users?: Maybe<AdminUserConnection>;
|
|
@@ -91161,6 +91917,7 @@ export declare type Query = {
|
|
|
91161
91917
|
agentAI_contextPanel?: Maybe<AgentAiContextPanelResult>;
|
|
91162
91918
|
agentAI_summarizeIssue?: Maybe<AgentAiIssueSummaryResult>;
|
|
91163
91919
|
agentStudio_agentById?: Maybe<AgentStudioAgentResult>;
|
|
91920
|
+
agentStudio_getAgentActorRoles?: Maybe<AgentStudioActorRoles>;
|
|
91164
91921
|
agentStudio_getAgents?: Maybe<AgentStudioAgentsConnection>;
|
|
91165
91922
|
agentStudio_getByExternalReference?: Maybe<AgentStudioAgentResult>;
|
|
91166
91923
|
agentStudio_getCreateAgentPermissions?: Maybe<AgentStudioAgentCreatePermissionsConnection>;
|
|
@@ -91212,10 +91969,12 @@ export declare type Query = {
|
|
|
91212
91969
|
assetsDM_dataSourceMerge?: Maybe<AssetsDmDataSourceMergeResponse>;
|
|
91213
91970
|
assetsDM_dataSourceTransform?: Maybe<AssetsDmDataSourceTransform>;
|
|
91214
91971
|
assetsDM_datasourceCleansingRules?: Maybe<AssetsDmDataSourceCleansingRulesResponse>;
|
|
91972
|
+
assetsDM_objectClassMetadata?: Maybe<AssetsDmObjectClassMetadata>;
|
|
91215
91973
|
assetsDM_objectClasses?: Maybe<Array<Maybe<AssetsDmObjectClass>>>;
|
|
91216
91974
|
assetsDM_objectTags?: Maybe<AssetsDmObjectTags>;
|
|
91217
91975
|
assetsDM_objectsListColumns?: Maybe<AssetsDmObjectsListColumns>;
|
|
91218
91976
|
assetsDM_objectsListDataRows?: Maybe<AssetsDmObjectsListDataRows>;
|
|
91977
|
+
assetsDM_objectsReportAttributeByDs?: Maybe<AssetsDmObjectsReportAttributeByDs>;
|
|
91219
91978
|
assetsDM_objectsReportDsByDs?: Maybe<AssetsDmObjectsReportDsByDs>;
|
|
91220
91979
|
assetsDM_rawData?: Maybe<AssetsDmRawDataResponse>;
|
|
91221
91980
|
assetsDM_transformedData?: Maybe<AssetsDmTransformedDataResponse>;
|
|
@@ -91247,10 +92006,13 @@ export declare type Query = {
|
|
|
91247
92006
|
channelPlatform_getConnectDetails?: Maybe<ChannelPlatformConnectDetails>;
|
|
91248
92007
|
channelPlatform_getContactDetails?: Maybe<Array<Maybe<ChannelPlatformContact>>>;
|
|
91249
92008
|
channelPlatform_getQueue?: Maybe<ChannelPlatformConnectQueue>;
|
|
92009
|
+
channelPlatform_getQuickResponse?: Maybe<ChannelPlatformQuickResponse>;
|
|
91250
92010
|
channelPlatform_getSurveyLink?: Maybe<ChannelPlatformSurveyLinkResponse>;
|
|
91251
92011
|
channelPlatform_getTranscript?: Maybe<ChannelPlatformTranscriptResponse>;
|
|
91252
92012
|
channelPlatform_listQueues?: Maybe<Array<Maybe<ChannelPlatformConnectQueue>>>;
|
|
92013
|
+
channelPlatform_listQuickResponses?: Maybe<ChannelPlatformListQuickResponsesResult>;
|
|
91253
92014
|
channelPlatform_sampleQueueById?: Maybe<ChannelPlatformSampleQueue>;
|
|
92015
|
+
channelPlatform_searchQuickResponses?: Maybe<ChannelPlatformQuickResponsesSearchResult>;
|
|
91254
92016
|
channelPlatform_submitRequest?: Maybe<ChannelPlatformSubmitRequestResponse>;
|
|
91255
92017
|
classificationLevel?: Maybe<ContentDataClassificationLevel>;
|
|
91256
92018
|
classificationLevels?: Maybe<Array<ContentDataClassificationLevel>>;
|
|
@@ -91300,14 +92062,16 @@ export declare type Query = {
|
|
|
91300
92062
|
confluence_loomEntryPoints?: Maybe<ConfluenceLoomEntryPoints>;
|
|
91301
92063
|
confluence_macrosByIds?: Maybe<Array<Maybe<Macro>>>;
|
|
91302
92064
|
confluence_mediaTokenData?: Maybe<ConfluenceMediaTokenData>;
|
|
92065
|
+
confluence_nbmScanList?: Maybe<ConfluenceNbmScanConnection>;
|
|
92066
|
+
confluence_nbmScanResult?: Maybe<ConfluenceNbmScanResult>;
|
|
91303
92067
|
confluence_note?: Maybe<NoteResponse>;
|
|
91304
92068
|
confluence_notesByProductLink?: Maybe<NoteConnection>;
|
|
91305
92069
|
confluence_pdfExportDownloadLink?: Maybe<ConfluencePdfExportDownloadLink>;
|
|
91306
92070
|
confluence_pdfExportTask?: Maybe<ConfluencePdfExportTask>;
|
|
92071
|
+
confluence_pendingRequestExists?: Maybe<ConfluencePendingAccessRequest>;
|
|
91307
92072
|
confluence_publicLinkSpaceHomePage?: Maybe<PublicLinkPage>;
|
|
91308
92073
|
confluence_questionsConfiguration?: Maybe<ConfluenceQuestionsConfiguration>;
|
|
91309
92074
|
confluence_reactedUsers?: Maybe<ConfluenceReactedUsersResponsePayload>;
|
|
91310
|
-
confluence_reactionsSummaries?: Maybe<Array<Maybe<ReactionsSummaryResponse>>>;
|
|
91311
92075
|
confluence_reactionsSummary?: Maybe<ConfluenceReactionSummary>;
|
|
91312
92076
|
confluence_refreshMigrationMediaSession?: Maybe<ContentMediaSession>;
|
|
91313
92077
|
confluence_search?: Maybe<ConfluenceSearchConnection>;
|
|
@@ -91331,6 +92095,7 @@ export declare type Query = {
|
|
|
91331
92095
|
confluence_userContentAccess?: Maybe<ConfluenceUserContentAccessResult>;
|
|
91332
92096
|
confluence_usersHavePermission?: Maybe<ConfluenceUsersHavePermissionList>;
|
|
91333
92097
|
confluence_validateCalendarJql?: Maybe<ConfluenceCalendarJqlValidationResult>;
|
|
92098
|
+
confluence_whiteboardTemplates?: Maybe<PaginatedConfluenceWhiteboardTemplateInfoList>;
|
|
91334
92099
|
connectionManager_connectionsByJiraProject?: Maybe<ConnectionManagerConnectionsByJiraProjectResult>;
|
|
91335
92100
|
contactAdminPageConfig?: Maybe<ContactAdminPageConfig>;
|
|
91336
92101
|
content?: Maybe<PaginatedContentListWithChild>;
|
|
@@ -91377,6 +92142,7 @@ export declare type Query = {
|
|
|
91377
92142
|
csmAi_getAgentVersion?: Maybe<CsmAiAgentVersionResult>;
|
|
91378
92143
|
csmAi_getAiHubByHelpCenterAri?: Maybe<CsmAiHubResult>;
|
|
91379
92144
|
currentConfluenceUser?: Maybe<CurrentConfluenceUser>;
|
|
92145
|
+
customer360_customer?: Maybe<Customer360Customer>;
|
|
91380
92146
|
customerService?: Maybe<CustomerServiceQueryApi>;
|
|
91381
92147
|
customerStories: ContentPlatformCustomerStorySearchConnection;
|
|
91382
92148
|
customerStory?: Maybe<ContentPlatformCustomerStory>;
|
|
@@ -91484,6 +92250,11 @@ export declare type Query = {
|
|
|
91484
92250
|
glance_getVULNIssues?: Maybe<Array<Maybe<GlanceUserInsights>>>;
|
|
91485
92251
|
globalContextContentCreationMetadata?: Maybe<ContentCreationMetadata>;
|
|
91486
92252
|
globalSpaceConfiguration?: Maybe<GlobalSpaceConfiguration>;
|
|
92253
|
+
goals_byId?: Maybe<TownsquareGoal>;
|
|
92254
|
+
goals_byIds?: Maybe<Array<Maybe<TownsquareGoal>>>;
|
|
92255
|
+
goals_metricTargetsByIds?: Maybe<Array<Maybe<TownsquareMetricTarget>>>;
|
|
92256
|
+
goals_metricValuesByIds?: Maybe<Array<Maybe<TownsquareMetricValue>>>;
|
|
92257
|
+
goals_metricsByIds?: Maybe<Array<Maybe<TownsquareMetric>>>;
|
|
91487
92258
|
graphIntegration_componentDirectoryDimensions?: Maybe<GraphIntegrationDirectoryFilterDimensionConnection>;
|
|
91488
92259
|
graphIntegration_componentDirectoryItems?: Maybe<GraphIntegrationDirectoryItemConnection>;
|
|
91489
92260
|
graphIntegration_mcpAdminManagementMcpServer?: Maybe<GraphIntegrationMcpAdminManagementMcpServerNode>;
|
|
@@ -91514,6 +92285,7 @@ export declare type Query = {
|
|
|
91514
92285
|
helpObjectStore_searchRequestTypes?: Maybe<HelpObjectStoreRequestTypeSearchResponse>;
|
|
91515
92286
|
homeUserSettings?: Maybe<HomeUserSettings>;
|
|
91516
92287
|
home_tagSearch?: Maybe<TownsquareTagConnection>;
|
|
92288
|
+
home_tagsByIds?: Maybe<Array<Maybe<TownsquareTag>>>;
|
|
91517
92289
|
identity_groupsByIds?: Maybe<Array<IdentityGroup>>;
|
|
91518
92290
|
incomingLinksCount?: Maybe<IncomingLinksCount>;
|
|
91519
92291
|
inlineTasks?: Maybe<InlineTasksQueryResult>;
|
|
@@ -91769,11 +92541,13 @@ export declare type Query = {
|
|
|
91769
92541
|
stakeholderComms_getAssignmentsByStakeholder?: Maybe<StakeholderCommsPaginatedAssignmentResults>;
|
|
91770
92542
|
stakeholderComms_getAssignmentsByStakeholderV2?: Maybe<StakeholderCommsAssignmentConnection>;
|
|
91771
92543
|
stakeholderComms_getMemberships?: Maybe<Array<Maybe<StakeholderCommsStakeholderGroupMembership>>>;
|
|
92544
|
+
stakeholderComms_getPageById?: Maybe<StakeholderCommsPageResponse>;
|
|
91772
92545
|
stakeholderComms_getStakeholder?: Maybe<StakeholderCommsStakeholderResponse>;
|
|
91773
92546
|
stakeholderComms_getStakeholderGroup?: Maybe<StakeholderCommsStakeholderGroup>;
|
|
91774
92547
|
stakeholderComms_getStakeholderGroupByMembership?: Maybe<Array<Maybe<StakeholderCommsStakeholderGroup>>>;
|
|
91775
92548
|
stakeholderComms_getStakeholderGroupWithMemberships?: Maybe<StakeholderCommsStakeholderGroupsAndMemberships>;
|
|
91776
92549
|
stakeholderComms_getStakeholderGroupsWithMemberships?: Maybe<StakeholderCommsStakeholderGroupConnection>;
|
|
92550
|
+
stakeholderComms_getStakeholderGroupsWithStakeholders?: Maybe<StakeholderCommsStakeholderGroupAndStakeholdersConnection>;
|
|
91777
92551
|
stakeholderComms_getStakeholdersByAssignment?: Maybe<StakeholderCommsPaginatedStakeholderResults>;
|
|
91778
92552
|
stakeholderComms_getStakeholdersByAssignmentV2?: Maybe<StakeholderCommsStakeholderConnection>;
|
|
91779
92553
|
stakeholderComms_isStakeholderGroupNameUnique?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -91882,6 +92656,14 @@ export declare type QueryAdmin_PermissionsArgs = {
|
|
|
91882
92656
|
principalId: Scalars['ID']['input'];
|
|
91883
92657
|
resourceId: Scalars['ID']['input'];
|
|
91884
92658
|
};
|
|
92659
|
+
export declare type QueryAdmin_UnitCreateStatusArgs = {
|
|
92660
|
+
orgId: Scalars['ID']['input'];
|
|
92661
|
+
requestId: Scalars['ID']['input'];
|
|
92662
|
+
};
|
|
92663
|
+
export declare type QueryAdmin_UnitValidateNameArgs = {
|
|
92664
|
+
orgId: Scalars['ID']['input'];
|
|
92665
|
+
unitName: Scalars['String']['input'];
|
|
92666
|
+
};
|
|
91885
92667
|
export declare type QueryAdmin_UserArgs = {
|
|
91886
92668
|
input?: InputMaybe<AdminFetchUserInput>;
|
|
91887
92669
|
};
|
|
@@ -91933,6 +92715,11 @@ export declare type QueryAgentAi_SummarizeIssueArgs = {
|
|
|
91933
92715
|
export declare type QueryAgentStudio_AgentByIdArgs = {
|
|
91934
92716
|
id: Scalars['ID']['input'];
|
|
91935
92717
|
};
|
|
92718
|
+
export declare type QueryAgentStudio_GetAgentActorRolesArgs = {
|
|
92719
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
92720
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
92721
|
+
id: Scalars['ID']['input'];
|
|
92722
|
+
};
|
|
91936
92723
|
export declare type QueryAgentStudio_GetAgentsArgs = {
|
|
91937
92724
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
91938
92725
|
cloudId: Scalars['String']['input'];
|
|
@@ -92187,6 +92974,11 @@ export declare type QueryAssetsDm_DatasourceCleansingRulesArgs = {
|
|
|
92187
92974
|
dataSourceId: Scalars['ID']['input'];
|
|
92188
92975
|
workspaceId: Scalars['ID']['input'];
|
|
92189
92976
|
};
|
|
92977
|
+
export declare type QueryAssetsDm_ObjectClassMetadataArgs = {
|
|
92978
|
+
cloudId: Scalars['ID']['input'];
|
|
92979
|
+
objectId: Scalars['ID']['input'];
|
|
92980
|
+
workspaceId: Scalars['ID']['input'];
|
|
92981
|
+
};
|
|
92190
92982
|
export declare type QueryAssetsDm_ObjectClassesArgs = {
|
|
92191
92983
|
cloudId: Scalars['ID']['input'];
|
|
92192
92984
|
workspaceId: Scalars['ID']['input'];
|
|
@@ -92208,6 +93000,12 @@ export declare type QueryAssetsDm_ObjectsListDataRowsArgs = {
|
|
|
92208
93000
|
sortBy?: InputMaybe<AssetsDmObjectsListSortBy>;
|
|
92209
93001
|
workspaceId: Scalars['ID']['input'];
|
|
92210
93002
|
};
|
|
93003
|
+
export declare type QueryAssetsDm_ObjectsReportAttributeByDsArgs = {
|
|
93004
|
+
attributeName: Scalars['String']['input'];
|
|
93005
|
+
cloudId: Scalars['ID']['input'];
|
|
93006
|
+
objectId: Scalars['ID']['input'];
|
|
93007
|
+
workspaceId: Scalars['ID']['input'];
|
|
93008
|
+
};
|
|
92211
93009
|
export declare type QueryAssetsDm_ObjectsReportDsByDsArgs = {
|
|
92212
93010
|
cloudId: Scalars['ID']['input'];
|
|
92213
93011
|
fromSources: Array<Scalars['String']['input']>;
|
|
@@ -92330,6 +93128,9 @@ export declare type QueryChannelPlatform_GetContactDetailsArgs = {
|
|
|
92330
93128
|
export declare type QueryChannelPlatform_GetQueueArgs = {
|
|
92331
93129
|
id?: InputMaybe<Scalars['ID']['input']>;
|
|
92332
93130
|
};
|
|
93131
|
+
export declare type QueryChannelPlatform_GetQuickResponseArgs = {
|
|
93132
|
+
quickResponseId: Scalars['String']['input'];
|
|
93133
|
+
};
|
|
92333
93134
|
export declare type QueryChannelPlatform_GetSurveyLinkArgs = {
|
|
92334
93135
|
conversationId?: InputMaybe<Scalars['String']['input']>;
|
|
92335
93136
|
issueId?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -92337,9 +93138,16 @@ export declare type QueryChannelPlatform_GetSurveyLinkArgs = {
|
|
|
92337
93138
|
export declare type QueryChannelPlatform_GetTranscriptArgs = {
|
|
92338
93139
|
request?: InputMaybe<ChannelPlatformTranscriptRequest>;
|
|
92339
93140
|
};
|
|
93141
|
+
export declare type QueryChannelPlatform_ListQuickResponsesArgs = {
|
|
93142
|
+
maxResults?: InputMaybe<Scalars['Int']['input']>;
|
|
93143
|
+
nextToken?: InputMaybe<Scalars['String']['input']>;
|
|
93144
|
+
};
|
|
92340
93145
|
export declare type QueryChannelPlatform_SampleQueueByIdArgs = {
|
|
92341
93146
|
id?: InputMaybe<Scalars['ID']['input']>;
|
|
92342
93147
|
};
|
|
93148
|
+
export declare type QueryChannelPlatform_SearchQuickResponsesArgs = {
|
|
93149
|
+
request: ChannelPlatformQuickResponseSearchRequest;
|
|
93150
|
+
};
|
|
92343
93151
|
export declare type QueryChannelPlatform_SubmitRequestArgs = {
|
|
92344
93152
|
request?: InputMaybe<ChannelPlatformSubmitRequestInput>;
|
|
92345
93153
|
requestType?: InputMaybe<ChannelPlatformChannelType>;
|
|
@@ -92572,6 +93380,16 @@ export declare type QueryConfluence_MacrosByIdsArgs = {
|
|
|
92572
93380
|
export declare type QueryConfluence_MediaTokenDataArgs = {
|
|
92573
93381
|
noteId: Scalars['ID']['input'];
|
|
92574
93382
|
};
|
|
93383
|
+
export declare type QueryConfluence_NbmScanListArgs = {
|
|
93384
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
93385
|
+
cloudId: Scalars['ID']['input'];
|
|
93386
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
93387
|
+
status?: InputMaybe<ConfluenceNbmScanStatus>;
|
|
93388
|
+
};
|
|
93389
|
+
export declare type QueryConfluence_NbmScanResultArgs = {
|
|
93390
|
+
cloudId: Scalars['ID']['input'];
|
|
93391
|
+
scanId: Scalars['ID']['input'];
|
|
93392
|
+
};
|
|
92575
93393
|
export declare type QueryConfluence_NoteArgs = {
|
|
92576
93394
|
id: Scalars['ID']['input'];
|
|
92577
93395
|
};
|
|
@@ -92589,6 +93407,11 @@ export declare type QueryConfluence_PdfExportTaskArgs = {
|
|
|
92589
93407
|
cloudId: Scalars['ID']['input'];
|
|
92590
93408
|
id: Scalars['ID']['input'];
|
|
92591
93409
|
};
|
|
93410
|
+
export declare type QueryConfluence_PendingRequestExistsArgs = {
|
|
93411
|
+
accessRequestedAaid: Scalars['String']['input'];
|
|
93412
|
+
cloudId: Scalars['ID']['input'];
|
|
93413
|
+
contentId: Scalars['ID']['input'];
|
|
93414
|
+
};
|
|
92592
93415
|
export declare type QueryConfluence_PublicLinkSpaceHomePageArgs = {
|
|
92593
93416
|
cloudId: Scalars['ID']['input'];
|
|
92594
93417
|
spaceKey: Scalars['String']['input'];
|
|
@@ -92600,9 +93423,6 @@ export declare type QueryConfluence_ReactedUsersArgs = {
|
|
|
92600
93423
|
cloudId: Scalars['ID']['input'];
|
|
92601
93424
|
input: ConfluenceReactedUsersInput;
|
|
92602
93425
|
};
|
|
92603
|
-
export declare type QueryConfluence_ReactionsSummariesArgs = {
|
|
92604
|
-
ids: Array<InputMaybe<Scalars['ID']['input']>>;
|
|
92605
|
-
};
|
|
92606
93426
|
export declare type QueryConfluence_ReactionsSummaryArgs = {
|
|
92607
93427
|
cloudId?: InputMaybe<Scalars['ID']['input']>;
|
|
92608
93428
|
contentId: Scalars['ID']['input'];
|
|
@@ -92635,6 +93455,7 @@ export declare type QueryConfluence_SearchUserArgs = {
|
|
|
92635
93455
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
92636
93456
|
cloudId?: InputMaybe<Scalars['ID']['input']>;
|
|
92637
93457
|
cql: Scalars['String']['input'];
|
|
93458
|
+
excludeServiceAppUsers?: InputMaybe<Scalars['Boolean']['input']>;
|
|
92638
93459
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
92639
93460
|
offset?: InputMaybe<Scalars['Int']['input']>;
|
|
92640
93461
|
sitePermissionTypeFilter?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -92724,6 +93545,9 @@ export declare type QueryConfluence_ValidateCalendarJqlArgs = {
|
|
|
92724
93545
|
cloudId: Scalars['ID']['input'];
|
|
92725
93546
|
jql: Scalars['String']['input'];
|
|
92726
93547
|
};
|
|
93548
|
+
export declare type QueryConfluence_WhiteboardTemplatesArgs = {
|
|
93549
|
+
cloudId: Scalars['ID']['input'];
|
|
93550
|
+
};
|
|
92727
93551
|
export declare type QueryConnectionManager_ConnectionsByJiraProjectArgs = {
|
|
92728
93552
|
filter?: InputMaybe<ConnectionManagerConnectionsFilter>;
|
|
92729
93553
|
jiraProjectARI?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -92991,6 +93815,9 @@ export declare type QueryCsmAi_GetAgentVersionArgs = {
|
|
|
92991
93815
|
export declare type QueryCsmAi_GetAiHubByHelpCenterAriArgs = {
|
|
92992
93816
|
helpCenterAri: Scalars['ID']['input'];
|
|
92993
93817
|
};
|
|
93818
|
+
export declare type QueryCustomer360_CustomerArgs = {
|
|
93819
|
+
domain: Scalars['String']['input'];
|
|
93820
|
+
};
|
|
92994
93821
|
export declare type QueryCustomerServiceArgs = {
|
|
92995
93822
|
cloudId: Scalars['ID']['input'];
|
|
92996
93823
|
};
|
|
@@ -93213,6 +94040,7 @@ export declare type QueryDevai_RovodevSessionsByCloudIdArgs = {
|
|
|
93213
94040
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
93214
94041
|
cloudId: Scalars['ID']['input'];
|
|
93215
94042
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
94043
|
+
isArchived?: InputMaybe<DevAiRovoDevSessionArchivedFilter>;
|
|
93216
94044
|
sessionStatus?: InputMaybe<DevAiRovoDevSessionStatus>;
|
|
93217
94045
|
sort?: InputMaybe<DevAiRovoDevSessionSort>;
|
|
93218
94046
|
};
|
|
@@ -93400,6 +94228,21 @@ export declare type QueryGetSummaryArgs = {
|
|
|
93400
94228
|
lastUpdatedTimeSeconds: Scalars['Long']['input'];
|
|
93401
94229
|
responseType?: InputMaybe<ResponseType>;
|
|
93402
94230
|
};
|
|
94231
|
+
export declare type QueryGoals_ByIdArgs = {
|
|
94232
|
+
goalId: Scalars['ID']['input'];
|
|
94233
|
+
};
|
|
94234
|
+
export declare type QueryGoals_ByIdsArgs = {
|
|
94235
|
+
goalIds: Array<Scalars['ID']['input']>;
|
|
94236
|
+
};
|
|
94237
|
+
export declare type QueryGoals_MetricTargetsByIdsArgs = {
|
|
94238
|
+
metricTargetIds: Array<Scalars['ID']['input']>;
|
|
94239
|
+
};
|
|
94240
|
+
export declare type QueryGoals_MetricValuesByIdsArgs = {
|
|
94241
|
+
metricValueIds: Array<Scalars['ID']['input']>;
|
|
94242
|
+
};
|
|
94243
|
+
export declare type QueryGoals_MetricsByIdsArgs = {
|
|
94244
|
+
metricIds: Array<Scalars['ID']['input']>;
|
|
94245
|
+
};
|
|
93403
94246
|
export declare type QueryGraphIntegration_ComponentDirectoryDimensionsArgs = {
|
|
93404
94247
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
93405
94248
|
cloudId: Scalars['ID']['input'];
|
|
@@ -93529,6 +94372,9 @@ export declare type QueryHome_TagSearchArgs = {
|
|
|
93529
94372
|
searchString?: InputMaybe<Scalars['String']['input']>;
|
|
93530
94373
|
sort?: InputMaybe<Array<InputMaybe<TownsquareTagSortEnum>>>;
|
|
93531
94374
|
};
|
|
94375
|
+
export declare type QueryHome_TagsByIdsArgs = {
|
|
94376
|
+
ids: Array<Scalars['ID']['input']>;
|
|
94377
|
+
};
|
|
93532
94378
|
export declare type QueryIdentity_GroupsByIdsArgs = {
|
|
93533
94379
|
ids: Array<Scalars['ID']['input']>;
|
|
93534
94380
|
};
|
|
@@ -93666,7 +94512,8 @@ export declare type QueryJira_ProjectByIdOrKeyArgs = {
|
|
|
93666
94512
|
};
|
|
93667
94513
|
export declare type QueryJira_ProjectLevelSidebarMenuCustomizationArgs = {
|
|
93668
94514
|
cloudId: Scalars['ID']['input'];
|
|
93669
|
-
projectId
|
|
94515
|
+
projectId?: InputMaybe<Scalars['ID']['input']>;
|
|
94516
|
+
projectKey?: InputMaybe<Scalars['ID']['input']>;
|
|
93670
94517
|
};
|
|
93671
94518
|
export declare type QueryJira_ProjectTypesByIdsArgs = {
|
|
93672
94519
|
ids: Array<Scalars['ID']['input']>;
|
|
@@ -94422,6 +95269,9 @@ export declare type QueryStakeholderComms_GetAssignmentsByStakeholderV2Args = {
|
|
|
94422
95269
|
export declare type QueryStakeholderComms_GetMembershipsArgs = {
|
|
94423
95270
|
groupId: Scalars['String']['input'];
|
|
94424
95271
|
};
|
|
95272
|
+
export declare type QueryStakeholderComms_GetPageByIdArgs = {
|
|
95273
|
+
pageId: Scalars['String']['input'];
|
|
95274
|
+
};
|
|
94425
95275
|
export declare type QueryStakeholderComms_GetStakeholderArgs = {
|
|
94426
95276
|
stakeholderIdInput: StakeholderCommsStakeholderIdInput;
|
|
94427
95277
|
};
|
|
@@ -94440,6 +95290,12 @@ export declare type QueryStakeholderComms_GetStakeholderGroupsWithMembershipsArg
|
|
|
94440
95290
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
94441
95291
|
last?: InputMaybe<Scalars['Int']['input']>;
|
|
94442
95292
|
};
|
|
95293
|
+
export declare type QueryStakeholderComms_GetStakeholderGroupsWithStakeholdersArgs = {
|
|
95294
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
95295
|
+
before?: InputMaybe<Scalars['String']['input']>;
|
|
95296
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
95297
|
+
last?: InputMaybe<Scalars['Int']['input']>;
|
|
95298
|
+
};
|
|
94443
95299
|
export declare type QueryStakeholderComms_GetStakeholdersByAssignmentArgs = {
|
|
94444
95300
|
paginatedStakeholderInput: StakeholderCommsPaginatedStakeholderInput;
|
|
94445
95301
|
};
|
|
@@ -94450,7 +95306,11 @@ export declare type QueryStakeholderComms_IsStakeholderGroupNameUniqueArgs = {
|
|
|
94450
95306
|
name: Scalars['String']['input'];
|
|
94451
95307
|
};
|
|
94452
95308
|
export declare type QueryStakeholderComms_ListStakeholdersArgs = {
|
|
94453
|
-
|
|
95309
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
95310
|
+
before?: InputMaybe<Scalars['String']['input']>;
|
|
95311
|
+
filter?: InputMaybe<StakeholderCommsStakeholderConnectionFilter>;
|
|
95312
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
95313
|
+
last?: InputMaybe<Scalars['Int']['input']>;
|
|
94454
95314
|
};
|
|
94455
95315
|
export declare type QueryStalePagesArgs = {
|
|
94456
95316
|
cursor?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -96942,6 +97802,12 @@ export declare type SearchCommonRangeFilterFields = {
|
|
|
96942
97802
|
gt?: InputMaybe<Scalars['String']['input']>;
|
|
96943
97803
|
lt?: InputMaybe<Scalars['String']['input']>;
|
|
96944
97804
|
};
|
|
97805
|
+
export declare type SearchCompassComponentFilter = {
|
|
97806
|
+
componentStates: Array<Scalars['String']['input']>;
|
|
97807
|
+
};
|
|
97808
|
+
export declare type SearchCompassFilter = {
|
|
97809
|
+
componentFilter?: InputMaybe<SearchCompassComponentFilter>;
|
|
97810
|
+
};
|
|
96945
97811
|
export declare enum SearchConfluenceDocumentStatus {
|
|
96946
97812
|
Archived = "ARCHIVED",
|
|
96947
97813
|
Current = "CURRENT",
|
|
@@ -96981,6 +97847,7 @@ export declare type SearchConfluencePageBlogAttachment = SearchL2FeatureProvider
|
|
|
96981
97847
|
lastModifiedDate?: Maybe<Scalars['String']['output']>;
|
|
96982
97848
|
latestUserAction?: Maybe<Scalars['String']['output']>;
|
|
96983
97849
|
latestUserActionTs?: Maybe<Scalars['String']['output']>;
|
|
97850
|
+
linkedResults?: Maybe<Array<SearchLinkedResult>>;
|
|
96984
97851
|
pageEntity?: Maybe<ConfluencePage>;
|
|
96985
97852
|
scoreL2Ranker?: Maybe<Scalars['Float']['output']>;
|
|
96986
97853
|
socialSignal?: Maybe<SocialSignalSearch>;
|
|
@@ -97023,6 +97890,7 @@ export declare type SearchConfluenceSpace = SearchL2FeatureProvider & SearchResu
|
|
|
97023
97890
|
l2Features?: Maybe<Array<Maybe<SearchL2Feature>>>;
|
|
97024
97891
|
lastModified?: Maybe<Scalars['DateTime']['output']>;
|
|
97025
97892
|
lastModifiedDate?: Maybe<Scalars['String']['output']>;
|
|
97893
|
+
linkedResults?: Maybe<Array<SearchLinkedResult>>;
|
|
97026
97894
|
scoreL2Ranker?: Maybe<Scalars['Float']['output']>;
|
|
97027
97895
|
socialSignal?: Maybe<SocialSignalSearch>;
|
|
97028
97896
|
spaceEntity?: Maybe<ConfluenceSpace>;
|
|
@@ -97044,6 +97912,7 @@ export declare type SearchDefaultResult = SearchResult & {
|
|
|
97044
97912
|
iconUrl?: Maybe<Scalars['URL']['output']>;
|
|
97045
97913
|
id: Scalars['ID']['output'];
|
|
97046
97914
|
lastModifiedDate?: Maybe<Scalars['DateTime']['output']>;
|
|
97915
|
+
linkedResults?: Maybe<Array<SearchLinkedResult>>;
|
|
97047
97916
|
scoreL2Ranker?: Maybe<Scalars['Float']['output']>;
|
|
97048
97917
|
title: Scalars['String']['output'];
|
|
97049
97918
|
type: SearchResultType;
|
|
@@ -97095,6 +97964,7 @@ export declare type SearchFieldLookAndFeel = {
|
|
|
97095
97964
|
};
|
|
97096
97965
|
export declare type SearchFilterInput = {
|
|
97097
97966
|
commonFilters?: InputMaybe<SearchCommonFilter>;
|
|
97967
|
+
compassFilters?: InputMaybe<SearchCompassFilter>;
|
|
97098
97968
|
confluenceFilters?: InputMaybe<SearchConfluenceFilter>;
|
|
97099
97969
|
entities: Array<Scalars['String']['input']>;
|
|
97100
97970
|
externalFilters?: InputMaybe<SearchExternalFilter>;
|
|
@@ -97162,6 +98032,27 @@ export declare enum SearchLinkedEntityGranularity {
|
|
|
97162
98032
|
Default = "DEFAULT",
|
|
97163
98033
|
FullThread = "FULL_THREAD"
|
|
97164
98034
|
}
|
|
98035
|
+
export declare type SearchLinkedResult = SearchResult & {
|
|
98036
|
+
__typename?: 'SearchLinkedResult';
|
|
98037
|
+
category: SearchLinkedResultCategory;
|
|
98038
|
+
description: Scalars['String']['output'];
|
|
98039
|
+
iconUrl?: Maybe<Scalars['URL']['output']>;
|
|
98040
|
+
id: Scalars['ID']['output'];
|
|
98041
|
+
integrationId?: Maybe<Scalars['String']['output']>;
|
|
98042
|
+
lastModifiedDate?: Maybe<Scalars['String']['output']>;
|
|
98043
|
+
linkedResults?: Maybe<Array<SearchLinkedResult>>;
|
|
98044
|
+
providerId?: Maybe<Scalars['String']['output']>;
|
|
98045
|
+
scoreL2Ranker?: Maybe<Scalars['Float']['output']>;
|
|
98046
|
+
subtype?: Maybe<Scalars['String']['output']>;
|
|
98047
|
+
title: Scalars['String']['output'];
|
|
98048
|
+
type: SearchResultType;
|
|
98049
|
+
url: Scalars['URL']['output'];
|
|
98050
|
+
};
|
|
98051
|
+
export declare enum SearchLinkedResultCategory {
|
|
98052
|
+
MentionedBy = "mentionedBy",
|
|
98053
|
+
Mentions = "mentions",
|
|
98054
|
+
Similar = "similar"
|
|
98055
|
+
}
|
|
97165
98056
|
export declare type SearchMercuryFilter = {
|
|
97166
98057
|
ancestorIds?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
97167
98058
|
focusAreaTypeIds?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
@@ -97237,6 +98128,7 @@ export declare type SearchResult = {
|
|
|
97237
98128
|
description: Scalars['String']['output'];
|
|
97238
98129
|
iconUrl?: Maybe<Scalars['URL']['output']>;
|
|
97239
98130
|
id: Scalars['ID']['output'];
|
|
98131
|
+
linkedResults?: Maybe<Array<SearchLinkedResult>>;
|
|
97240
98132
|
scoreL2Ranker?: Maybe<Scalars['Float']['output']>;
|
|
97241
98133
|
title: Scalars['String']['output'];
|
|
97242
98134
|
type: SearchResultType;
|
|
@@ -97249,6 +98141,7 @@ export declare type SearchResultAtlasGoal = SearchResult & {
|
|
|
97249
98141
|
iconUrl?: Maybe<Scalars['URL']['output']>;
|
|
97250
98142
|
id: Scalars['ID']['output'];
|
|
97251
98143
|
lastModifiedDate?: Maybe<Scalars['String']['output']>;
|
|
98144
|
+
linkedResults?: Maybe<Array<SearchLinkedResult>>;
|
|
97252
98145
|
scoreL2Ranker?: Maybe<Scalars['Float']['output']>;
|
|
97253
98146
|
title: Scalars['String']['output'];
|
|
97254
98147
|
type: SearchResultType;
|
|
@@ -97260,6 +98153,7 @@ export declare type SearchResultAtlasGoalUpdate = SearchResult & {
|
|
|
97260
98153
|
iconUrl?: Maybe<Scalars['URL']['output']>;
|
|
97261
98154
|
id: Scalars['ID']['output'];
|
|
97262
98155
|
lastModifiedDate?: Maybe<Scalars['String']['output']>;
|
|
98156
|
+
linkedResults?: Maybe<Array<SearchLinkedResult>>;
|
|
97263
98157
|
score?: Maybe<Scalars['Float']['output']>;
|
|
97264
98158
|
scoreL2Ranker?: Maybe<Scalars['Float']['output']>;
|
|
97265
98159
|
title: Scalars['String']['output'];
|
|
@@ -97272,6 +98166,7 @@ export declare type SearchResultAtlasProject = SearchResult & {
|
|
|
97272
98166
|
iconUrl?: Maybe<Scalars['URL']['output']>;
|
|
97273
98167
|
id: Scalars['ID']['output'];
|
|
97274
98168
|
lastModifiedDate?: Maybe<Scalars['String']['output']>;
|
|
98169
|
+
linkedResults?: Maybe<Array<SearchLinkedResult>>;
|
|
97275
98170
|
project?: Maybe<TownsquareProject>;
|
|
97276
98171
|
scoreL2Ranker?: Maybe<Scalars['Float']['output']>;
|
|
97277
98172
|
title: Scalars['String']['output'];
|
|
@@ -97284,6 +98179,7 @@ export declare type SearchResultAtlasProjectUpdate = SearchResult & {
|
|
|
97284
98179
|
iconUrl?: Maybe<Scalars['URL']['output']>;
|
|
97285
98180
|
id: Scalars['ID']['output'];
|
|
97286
98181
|
lastModifiedDate?: Maybe<Scalars['String']['output']>;
|
|
98182
|
+
linkedResults?: Maybe<Array<SearchLinkedResult>>;
|
|
97287
98183
|
score?: Maybe<Scalars['Float']['output']>;
|
|
97288
98184
|
scoreL2Ranker?: Maybe<Scalars['Float']['output']>;
|
|
97289
98185
|
title: Scalars['String']['output'];
|
|
@@ -97297,6 +98193,7 @@ export declare type SearchResultBitbucketRepository = SearchResult & {
|
|
|
97297
98193
|
iconUrl?: Maybe<Scalars['URL']['output']>;
|
|
97298
98194
|
id: Scalars['ID']['output'];
|
|
97299
98195
|
lastModifiedDate?: Maybe<Scalars['String']['output']>;
|
|
98196
|
+
linkedResults?: Maybe<Array<SearchLinkedResult>>;
|
|
97300
98197
|
scoreL2Ranker?: Maybe<Scalars['Float']['output']>;
|
|
97301
98198
|
title: Scalars['String']['output'];
|
|
97302
98199
|
type: SearchResultType;
|
|
@@ -97310,8 +98207,10 @@ export declare type SearchResultCompassComponent = SearchResult & {
|
|
|
97310
98207
|
iconUrl?: Maybe<Scalars['URL']['output']>;
|
|
97311
98208
|
id: Scalars['ID']['output'];
|
|
97312
98209
|
lastModifiedDate?: Maybe<Scalars['String']['output']>;
|
|
98210
|
+
linkedResults?: Maybe<Array<SearchLinkedResult>>;
|
|
97313
98211
|
ownerId?: Maybe<Scalars['String']['output']>;
|
|
97314
98212
|
scoreL2Ranker?: Maybe<Scalars['Float']['output']>;
|
|
98213
|
+
state: Scalars['String']['output'];
|
|
97315
98214
|
tier?: Maybe<Scalars['String']['output']>;
|
|
97316
98215
|
title: Scalars['String']['output'];
|
|
97317
98216
|
type: SearchResultType;
|
|
@@ -97325,6 +98224,7 @@ export declare type SearchResultFederated = SearchResult & {
|
|
|
97325
98224
|
iconUrl?: Maybe<Scalars['URL']['output']>;
|
|
97326
98225
|
id: Scalars['ID']['output'];
|
|
97327
98226
|
lastModifiedDate?: Maybe<Scalars['String']['output']>;
|
|
98227
|
+
linkedResults?: Maybe<Array<SearchLinkedResult>>;
|
|
97328
98228
|
score?: Maybe<Scalars['Float']['output']>;
|
|
97329
98229
|
scoreL2Ranker?: Maybe<Scalars['Float']['output']>;
|
|
97330
98230
|
title: Scalars['String']['output'];
|
|
@@ -97340,6 +98240,7 @@ export declare type SearchResultGoogleDocument = SearchL2FeatureProvider & Searc
|
|
|
97340
98240
|
id: Scalars['ID']['output'];
|
|
97341
98241
|
l2Features?: Maybe<Array<Maybe<SearchL2Feature>>>;
|
|
97342
98242
|
lastModifiedDate?: Maybe<Scalars['String']['output']>;
|
|
98243
|
+
linkedResults?: Maybe<Array<SearchLinkedResult>>;
|
|
97343
98244
|
permissionLevel?: Maybe<Scalars['String']['output']>;
|
|
97344
98245
|
scoreL2Ranker?: Maybe<Scalars['Float']['output']>;
|
|
97345
98246
|
title: Scalars['String']['output'];
|
|
@@ -97355,6 +98256,7 @@ export declare type SearchResultGooglePresentation = SearchL2FeatureProvider & S
|
|
|
97355
98256
|
id: Scalars['ID']['output'];
|
|
97356
98257
|
l2Features?: Maybe<Array<Maybe<SearchL2Feature>>>;
|
|
97357
98258
|
lastModifiedDate?: Maybe<Scalars['String']['output']>;
|
|
98259
|
+
linkedResults?: Maybe<Array<SearchLinkedResult>>;
|
|
97358
98260
|
permissionLevel?: Maybe<Scalars['String']['output']>;
|
|
97359
98261
|
scoreL2Ranker?: Maybe<Scalars['Float']['output']>;
|
|
97360
98262
|
title: Scalars['String']['output'];
|
|
@@ -97370,6 +98272,7 @@ export declare type SearchResultGoogleSpreadsheet = SearchL2FeatureProvider & Se
|
|
|
97370
98272
|
id: Scalars['ID']['output'];
|
|
97371
98273
|
l2Features?: Maybe<Array<Maybe<SearchL2Feature>>>;
|
|
97372
98274
|
lastModifiedDate?: Maybe<Scalars['String']['output']>;
|
|
98275
|
+
linkedResults?: Maybe<Array<SearchLinkedResult>>;
|
|
97373
98276
|
permissionLevel?: Maybe<Scalars['String']['output']>;
|
|
97374
98277
|
scoreL2Ranker?: Maybe<Scalars['Float']['output']>;
|
|
97375
98278
|
title: Scalars['String']['output'];
|
|
@@ -97391,6 +98294,7 @@ export declare type SearchResultGraphDocument = SearchL2FeatureProvider & Search
|
|
|
97391
98294
|
l2Features?: Maybe<Array<Maybe<SearchL2Feature>>>;
|
|
97392
98295
|
lastModifiedDate?: Maybe<Scalars['String']['output']>;
|
|
97393
98296
|
linkedEntities?: Maybe<Array<SearchResultGraphDocument>>;
|
|
98297
|
+
linkedResults?: Maybe<Array<SearchLinkedResult>>;
|
|
97394
98298
|
owner?: Maybe<ThirdPartyUser>;
|
|
97395
98299
|
permissionLevel?: Maybe<Scalars['String']['output']>;
|
|
97396
98300
|
providerId?: Maybe<Scalars['String']['output']>;
|
|
@@ -97415,6 +98319,7 @@ export declare type SearchResultJiraBoard = SearchResult & {
|
|
|
97415
98319
|
id: Scalars['ID']['output'];
|
|
97416
98320
|
isSimpleBoard: Scalars['Boolean']['output'];
|
|
97417
98321
|
lastModifiedDate?: Maybe<Scalars['String']['output']>;
|
|
98322
|
+
linkedResults?: Maybe<Array<SearchLinkedResult>>;
|
|
97418
98323
|
product: SearchBoardProductType;
|
|
97419
98324
|
scoreL2Ranker?: Maybe<Scalars['Float']['output']>;
|
|
97420
98325
|
socialSignal?: Maybe<SocialSignalSearch>;
|
|
@@ -97445,6 +98350,7 @@ export declare type SearchResultJiraDashboard = SearchResult & {
|
|
|
97445
98350
|
iconUrl?: Maybe<Scalars['URL']['output']>;
|
|
97446
98351
|
id: Scalars['ID']['output'];
|
|
97447
98352
|
lastModifiedDate?: Maybe<Scalars['String']['output']>;
|
|
98353
|
+
linkedResults?: Maybe<Array<SearchLinkedResult>>;
|
|
97448
98354
|
scoreL2Ranker?: Maybe<Scalars['Float']['output']>;
|
|
97449
98355
|
socialSignal?: Maybe<SocialSignalSearch>;
|
|
97450
98356
|
title: Scalars['String']['output'];
|
|
@@ -97461,6 +98367,7 @@ export declare type SearchResultJiraFilter = SearchResult & {
|
|
|
97461
98367
|
iconUrl?: Maybe<Scalars['URL']['output']>;
|
|
97462
98368
|
id: Scalars['ID']['output'];
|
|
97463
98369
|
lastModifiedDate?: Maybe<Scalars['String']['output']>;
|
|
98370
|
+
linkedResults?: Maybe<Array<SearchLinkedResult>>;
|
|
97464
98371
|
scoreL2Ranker?: Maybe<Scalars['Float']['output']>;
|
|
97465
98372
|
socialSignal?: Maybe<SocialSignalSearch>;
|
|
97466
98373
|
title: Scalars['String']['output'];
|
|
@@ -97478,6 +98385,7 @@ export declare type SearchResultJiraIssue = SearchResult & {
|
|
|
97478
98385
|
issue?: Maybe<JiraIssue>;
|
|
97479
98386
|
issueTypeId: Scalars['String']['output'];
|
|
97480
98387
|
lastModifiedDate?: Maybe<Scalars['String']['output']>;
|
|
98388
|
+
linkedResults?: Maybe<Array<SearchLinkedResult>>;
|
|
97481
98389
|
scoreL2Ranker?: Maybe<Scalars['Float']['output']>;
|
|
97482
98390
|
socialSignal?: Maybe<SocialSignalSearch>;
|
|
97483
98391
|
status?: Maybe<SearchResultJiraIssueStatus>;
|
|
@@ -97508,6 +98416,7 @@ export declare type SearchResultJiraPlan = SearchResult & {
|
|
|
97508
98416
|
iconUrl?: Maybe<Scalars['URL']['output']>;
|
|
97509
98417
|
id: Scalars['ID']['output'];
|
|
97510
98418
|
lastModifiedDate?: Maybe<Scalars['String']['output']>;
|
|
98419
|
+
linkedResults?: Maybe<Array<SearchLinkedResult>>;
|
|
97511
98420
|
scoreL2Ranker?: Maybe<Scalars['Float']['output']>;
|
|
97512
98421
|
title: Scalars['String']['output'];
|
|
97513
98422
|
type: SearchResultType;
|
|
@@ -97521,6 +98430,7 @@ export declare type SearchResultJiraProject = SearchResult & {
|
|
|
97521
98430
|
iconUrl?: Maybe<Scalars['URL']['output']>;
|
|
97522
98431
|
id: Scalars['ID']['output'];
|
|
97523
98432
|
lastModifiedDate?: Maybe<Scalars['String']['output']>;
|
|
98433
|
+
linkedResults?: Maybe<Array<SearchLinkedResult>>;
|
|
97524
98434
|
project?: Maybe<JiraProject>;
|
|
97525
98435
|
projectId: Scalars['String']['output'];
|
|
97526
98436
|
projectKey: Scalars['String']['output'];
|
|
@@ -97543,6 +98453,7 @@ export declare type SearchResultMercuryFocusArea = SearchResult & {
|
|
|
97543
98453
|
iconUrl?: Maybe<Scalars['URL']['output']>;
|
|
97544
98454
|
id: Scalars['ID']['output'];
|
|
97545
98455
|
lastModifiedDate?: Maybe<Scalars['String']['output']>;
|
|
98456
|
+
linkedResults?: Maybe<Array<SearchLinkedResult>>;
|
|
97546
98457
|
scoreL2Ranker?: Maybe<Scalars['Float']['output']>;
|
|
97547
98458
|
title: Scalars['String']['output'];
|
|
97548
98459
|
type: SearchResultType;
|
|
@@ -97555,6 +98466,7 @@ export declare type SearchResultMercuryFocusAreaStatusUpdate = SearchResult & {
|
|
|
97555
98466
|
iconUrl?: Maybe<Scalars['URL']['output']>;
|
|
97556
98467
|
id: Scalars['ID']['output'];
|
|
97557
98468
|
lastModifiedDate?: Maybe<Scalars['String']['output']>;
|
|
98469
|
+
linkedResults?: Maybe<Array<SearchLinkedResult>>;
|
|
97558
98470
|
scoreL2Ranker?: Maybe<Scalars['Float']['output']>;
|
|
97559
98471
|
title: Scalars['String']['output'];
|
|
97560
98472
|
type: SearchResultType;
|
|
@@ -97569,6 +98481,7 @@ export declare type SearchResultMicrosoftDocument = SearchL2FeatureProvider & Se
|
|
|
97569
98481
|
id: Scalars['ID']['output'];
|
|
97570
98482
|
l2Features?: Maybe<Array<Maybe<SearchL2Feature>>>;
|
|
97571
98483
|
lastModifiedDate?: Maybe<Scalars['String']['output']>;
|
|
98484
|
+
linkedResults?: Maybe<Array<SearchLinkedResult>>;
|
|
97572
98485
|
permissionLevel?: Maybe<Scalars['String']['output']>;
|
|
97573
98486
|
scoreL2Ranker?: Maybe<Scalars['Float']['output']>;
|
|
97574
98487
|
title: Scalars['String']['output'];
|
|
@@ -97585,6 +98498,7 @@ export declare type SearchResultSlackMessage = SearchL2FeatureProvider & SearchR
|
|
|
97585
98498
|
l2Features?: Maybe<Array<Maybe<SearchL2Feature>>>;
|
|
97586
98499
|
lastModifiedDate?: Maybe<Scalars['String']['output']>;
|
|
97587
98500
|
linkedEntities?: Maybe<Array<SearchResultSlackMessage>>;
|
|
98501
|
+
linkedResults?: Maybe<Array<SearchLinkedResult>>;
|
|
97588
98502
|
mentions?: Maybe<Array<ThirdPartyUser>>;
|
|
97589
98503
|
scoreL2Ranker?: Maybe<Scalars['Float']['output']>;
|
|
97590
98504
|
subtype?: Maybe<Scalars['String']['output']>;
|
|
@@ -97598,6 +98512,7 @@ export declare type SearchResultTrelloBoard = SearchResult & {
|
|
|
97598
98512
|
iconUrl?: Maybe<Scalars['URL']['output']>;
|
|
97599
98513
|
id: Scalars['ID']['output'];
|
|
97600
98514
|
lastModifiedDate?: Maybe<Scalars['String']['output']>;
|
|
98515
|
+
linkedResults?: Maybe<Array<SearchLinkedResult>>;
|
|
97601
98516
|
scoreL2Ranker?: Maybe<Scalars['Float']['output']>;
|
|
97602
98517
|
title: Scalars['String']['output'];
|
|
97603
98518
|
type: SearchResultType;
|
|
@@ -97611,6 +98526,7 @@ export declare type SearchResultTrelloCard = SearchResult & {
|
|
|
97611
98526
|
iconUrl?: Maybe<Scalars['URL']['output']>;
|
|
97612
98527
|
id: Scalars['ID']['output'];
|
|
97613
98528
|
lastModifiedDate?: Maybe<Scalars['String']['output']>;
|
|
98529
|
+
linkedResults?: Maybe<Array<SearchLinkedResult>>;
|
|
97614
98530
|
scoreL2Ranker?: Maybe<Scalars['Float']['output']>;
|
|
97615
98531
|
title: Scalars['String']['output'];
|
|
97616
98532
|
type: SearchResultType;
|
|
@@ -99589,16 +100505,16 @@ export declare type SitePermission = {
|
|
|
99589
100505
|
__typename?: 'SitePermission';
|
|
99590
100506
|
anonymous?: Maybe<Anonymous>;
|
|
99591
100507
|
anonymousAccessDSPBlocked: Scalars['Boolean']['output'];
|
|
100508
|
+
confluencePersons?: Maybe<ConfluencePersonWithPermissionsConnection>;
|
|
99592
100509
|
groups?: Maybe<PaginatedGroupWithPermissions>;
|
|
99593
|
-
personConnection?: Maybe<ConfluencePersonWithPermissionsConnection>;
|
|
99594
100510
|
unlicensedUserWithPermissions?: Maybe<UnlicensedUserWithPermissions>;
|
|
99595
100511
|
};
|
|
99596
|
-
export declare type
|
|
100512
|
+
export declare type SitePermissionConfluencePersonsArgs = {
|
|
99597
100513
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
99598
100514
|
filterText?: InputMaybe<Scalars['String']['input']>;
|
|
99599
100515
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
99600
100516
|
};
|
|
99601
|
-
export declare type
|
|
100517
|
+
export declare type SitePermissionGroupsArgs = {
|
|
99602
100518
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
99603
100519
|
filterText?: InputMaybe<Scalars['String']['input']>;
|
|
99604
100520
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
@@ -100352,6 +101268,7 @@ export declare type SpacePermissionGroup = {
|
|
|
100352
101268
|
};
|
|
100353
101269
|
export declare type SpacePermissionInfo = {
|
|
100354
101270
|
__typename?: 'SpacePermissionInfo';
|
|
101271
|
+
confluenceAssignabilityCodes: Array<Maybe<ConfluencePermissionTypeAssignabilityCode>>;
|
|
100355
101272
|
description?: Maybe<Scalars['String']['output']>;
|
|
100356
101273
|
displayName: Scalars['String']['output'];
|
|
100357
101274
|
group: SpacePermissionGroup;
|
|
@@ -101181,6 +102098,94 @@ export declare enum StakeholderCommsAssignmentType {
|
|
|
101181
102098
|
Services = "SERVICES",
|
|
101182
102099
|
Site = "SITE"
|
|
101183
102100
|
}
|
|
102101
|
+
export declare type StakeholderCommsBodyConfigInput = {
|
|
102102
|
+
componentStyle?: InputMaybe<StakeholderCommsComponentStyle>;
|
|
102103
|
+
componentUptimeDisplay?: InputMaybe<Scalars['String']['input']>;
|
|
102104
|
+
componentUptimeRange?: InputMaybe<Scalars['Int']['input']>;
|
|
102105
|
+
enableSearchAndFilter?: InputMaybe<Scalars['Boolean']['input']>;
|
|
102106
|
+
numberOfCardsPerRow?: InputMaybe<Scalars['Int']['input']>;
|
|
102107
|
+
overallUptimeDisplay?: InputMaybe<Scalars['String']['input']>;
|
|
102108
|
+
overallUptimeRange?: InputMaybe<Scalars['Int']['input']>;
|
|
102109
|
+
uptimeStyle?: InputMaybe<StakeholderCommsUptimeStyle>;
|
|
102110
|
+
};
|
|
102111
|
+
export declare type StakeholderCommsBodyConfigType = {
|
|
102112
|
+
__typename?: 'StakeholderCommsBodyConfigType';
|
|
102113
|
+
componentStyle?: Maybe<StakeholderCommsComponentStyle>;
|
|
102114
|
+
componentUptimeDisplay?: Maybe<Scalars['String']['output']>;
|
|
102115
|
+
componentUptimeRange?: Maybe<Scalars['Int']['output']>;
|
|
102116
|
+
enableSearchAndFilter?: Maybe<Scalars['Boolean']['output']>;
|
|
102117
|
+
numberOfCardsPerRow?: Maybe<Scalars['Int']['output']>;
|
|
102118
|
+
overallUptimeDisplay?: Maybe<Scalars['String']['output']>;
|
|
102119
|
+
overallUptimeRange?: Maybe<Scalars['Int']['output']>;
|
|
102120
|
+
uptimeStyle?: Maybe<StakeholderCommsUptimeStyle>;
|
|
102121
|
+
};
|
|
102122
|
+
export declare type StakeholderCommsColoursInput = {
|
|
102123
|
+
cssBlueColor?: InputMaybe<Scalars['String']['input']>;
|
|
102124
|
+
cssBodyBackgroundColor?: InputMaybe<Scalars['String']['input']>;
|
|
102125
|
+
cssBorderColor?: InputMaybe<Scalars['String']['input']>;
|
|
102126
|
+
cssFontColor?: InputMaybe<Scalars['String']['input']>;
|
|
102127
|
+
cssGraphColor?: InputMaybe<Scalars['String']['input']>;
|
|
102128
|
+
cssGreenColor?: InputMaybe<Scalars['String']['input']>;
|
|
102129
|
+
cssLightFontColor?: InputMaybe<Scalars['String']['input']>;
|
|
102130
|
+
cssLinkColor?: InputMaybe<Scalars['String']['input']>;
|
|
102131
|
+
cssNoDataColor?: InputMaybe<Scalars['String']['input']>;
|
|
102132
|
+
cssOrangeColor?: InputMaybe<Scalars['String']['input']>;
|
|
102133
|
+
cssRedColor?: InputMaybe<Scalars['String']['input']>;
|
|
102134
|
+
cssYellowColor?: InputMaybe<Scalars['String']['input']>;
|
|
102135
|
+
};
|
|
102136
|
+
export declare type StakeholderCommsColoursType = {
|
|
102137
|
+
__typename?: 'StakeholderCommsColoursType';
|
|
102138
|
+
cssBlueColor?: Maybe<Scalars['String']['output']>;
|
|
102139
|
+
cssBodyBackgroundColor?: Maybe<Scalars['String']['output']>;
|
|
102140
|
+
cssBorderColor?: Maybe<Scalars['String']['output']>;
|
|
102141
|
+
cssFontColor?: Maybe<Scalars['String']['output']>;
|
|
102142
|
+
cssGraphColor?: Maybe<Scalars['String']['output']>;
|
|
102143
|
+
cssGreenColor?: Maybe<Scalars['String']['output']>;
|
|
102144
|
+
cssLightFontColor?: Maybe<Scalars['String']['output']>;
|
|
102145
|
+
cssLinkColor?: Maybe<Scalars['String']['output']>;
|
|
102146
|
+
cssNoDataColor?: Maybe<Scalars['String']['output']>;
|
|
102147
|
+
cssOrangeColor?: Maybe<Scalars['String']['output']>;
|
|
102148
|
+
cssRedColor?: Maybe<Scalars['String']['output']>;
|
|
102149
|
+
cssYellowColor?: Maybe<Scalars['String']['output']>;
|
|
102150
|
+
};
|
|
102151
|
+
export declare enum StakeholderCommsComponentStyle {
|
|
102152
|
+
Card = "CARD",
|
|
102153
|
+
Table = "TABLE"
|
|
102154
|
+
}
|
|
102155
|
+
export declare type StakeholderCommsCreatePageInputType = {
|
|
102156
|
+
activityScore?: InputMaybe<Scalars['Int']['input']>;
|
|
102157
|
+
allowPageSubscribers?: InputMaybe<Scalars['Boolean']['input']>;
|
|
102158
|
+
allowRssAtomFields?: InputMaybe<Scalars['Boolean']['input']>;
|
|
102159
|
+
blackHole?: InputMaybe<Scalars['Boolean']['input']>;
|
|
102160
|
+
bodyConfig?: InputMaybe<StakeholderCommsBodyConfigInput>;
|
|
102161
|
+
colours?: InputMaybe<StakeholderCommsColoursInput>;
|
|
102162
|
+
components?: InputMaybe<Array<InputMaybe<Scalars['String']['input']>>>;
|
|
102163
|
+
createdAt?: InputMaybe<Scalars['String']['input']>;
|
|
102164
|
+
customCss?: InputMaybe<Scalars['String']['input']>;
|
|
102165
|
+
customFooterHtml?: InputMaybe<Scalars['String']['input']>;
|
|
102166
|
+
customHeaderHtml?: InputMaybe<Scalars['String']['input']>;
|
|
102167
|
+
deletedAt?: InputMaybe<Scalars['String']['input']>;
|
|
102168
|
+
description?: InputMaybe<Scalars['String']['input']>;
|
|
102169
|
+
domain?: InputMaybe<Scalars['String']['input']>;
|
|
102170
|
+
externalAccounts?: InputMaybe<Array<InputMaybe<Scalars['String']['input']>>>;
|
|
102171
|
+
footerData?: InputMaybe<StakeholderCommsFooterDataInput>;
|
|
102172
|
+
googleAnalyticsEnabled?: InputMaybe<Scalars['Boolean']['input']>;
|
|
102173
|
+
googleAnalyticsTrackingId?: InputMaybe<Scalars['String']['input']>;
|
|
102174
|
+
headerData?: InputMaybe<StakeholderCommsHeaderDataInput>;
|
|
102175
|
+
helpCenterUrl?: InputMaybe<Scalars['String']['input']>;
|
|
102176
|
+
hiddenFromSearch?: InputMaybe<Scalars['Boolean']['input']>;
|
|
102177
|
+
id?: InputMaybe<Scalars['String']['input']>;
|
|
102178
|
+
name: Scalars['String']['input'];
|
|
102179
|
+
pageTheme?: InputMaybe<StakeholderCommsPageTheme>;
|
|
102180
|
+
pageThemeMode?: InputMaybe<StakeholderCommsPageThemeMode>;
|
|
102181
|
+
privacyPolicyUrl?: InputMaybe<Scalars['String']['input']>;
|
|
102182
|
+
seoConfig?: InputMaybe<StakeholderCommsSeoConfigInput>;
|
|
102183
|
+
statusEmbedEnabled?: InputMaybe<Scalars['Boolean']['input']>;
|
|
102184
|
+
subdomain?: InputMaybe<Scalars['String']['input']>;
|
|
102185
|
+
timezone?: InputMaybe<Scalars['String']['input']>;
|
|
102186
|
+
updatedAt?: InputMaybe<Scalars['String']['input']>;
|
|
102187
|
+
url?: InputMaybe<Scalars['String']['input']>;
|
|
102188
|
+
};
|
|
101184
102189
|
export declare type StakeholderCommsCreateStakeholderGroupInput = {
|
|
101185
102190
|
description?: InputMaybe<Scalars['String']['input']>;
|
|
101186
102191
|
insertedAt?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -101204,18 +102209,52 @@ export declare type StakeholderCommsCreateStakeholderInput = {
|
|
|
101204
102209
|
stakeholderType: StakeholderCommsStakeholderType;
|
|
101205
102210
|
webhook?: InputMaybe<Scalars['String']['input']>;
|
|
101206
102211
|
};
|
|
102212
|
+
export declare type StakeholderCommsFooterDataInput = {
|
|
102213
|
+
copyrightText?: InputMaybe<Scalars['String']['input']>;
|
|
102214
|
+
footerLogoId?: InputMaybe<Scalars['String']['input']>;
|
|
102215
|
+
footerText?: InputMaybe<Scalars['String']['input']>;
|
|
102216
|
+
links?: InputMaybe<Array<InputMaybe<StakeholderCommsLinkInput>>>;
|
|
102217
|
+
};
|
|
102218
|
+
export declare type StakeholderCommsFooterDataType = {
|
|
102219
|
+
__typename?: 'StakeholderCommsFooterDataType';
|
|
102220
|
+
copyrightText?: Maybe<Scalars['String']['output']>;
|
|
102221
|
+
footerLogoId?: Maybe<Scalars['String']['output']>;
|
|
102222
|
+
footerText?: Maybe<Scalars['String']['output']>;
|
|
102223
|
+
links?: Maybe<Array<Maybe<StakeholderCommsLinkType>>>;
|
|
102224
|
+
};
|
|
101207
102225
|
export declare type StakeholderCommsGroups = {
|
|
101208
102226
|
__typename?: 'StakeholderCommsGroups';
|
|
101209
102227
|
avatar?: Maybe<Scalars['String']['output']>;
|
|
101210
102228
|
id?: Maybe<Scalars['ID']['output']>;
|
|
101211
102229
|
name?: Maybe<Scalars['String']['output']>;
|
|
101212
102230
|
};
|
|
101213
|
-
export declare type
|
|
101214
|
-
|
|
101215
|
-
|
|
101216
|
-
|
|
101217
|
-
|
|
101218
|
-
|
|
102231
|
+
export declare type StakeholderCommsHeaderDataInput = {
|
|
102232
|
+
coverImageId?: InputMaybe<Scalars['String']['input']>;
|
|
102233
|
+
coverImageImmersive?: InputMaybe<Scalars['Boolean']['input']>;
|
|
102234
|
+
faviconIconId?: InputMaybe<Scalars['String']['input']>;
|
|
102235
|
+
headerLogoId?: InputMaybe<Scalars['String']['input']>;
|
|
102236
|
+
headerText?: InputMaybe<Scalars['String']['input']>;
|
|
102237
|
+
links?: InputMaybe<Array<InputMaybe<StakeholderCommsLinkInput>>>;
|
|
102238
|
+
};
|
|
102239
|
+
export declare type StakeholderCommsHeaderDataType = {
|
|
102240
|
+
__typename?: 'StakeholderCommsHeaderDataType';
|
|
102241
|
+
coverImageId?: Maybe<Scalars['String']['output']>;
|
|
102242
|
+
coverImageImmersive?: Maybe<Scalars['Boolean']['output']>;
|
|
102243
|
+
faviconIconId?: Maybe<Scalars['String']['output']>;
|
|
102244
|
+
headerLogoId?: Maybe<Scalars['String']['output']>;
|
|
102245
|
+
headerText?: Maybe<Scalars['String']['output']>;
|
|
102246
|
+
links?: Maybe<Array<Maybe<StakeholderCommsLinkType>>>;
|
|
102247
|
+
};
|
|
102248
|
+
export declare type StakeholderCommsLinkInput = {
|
|
102249
|
+
label?: InputMaybe<Scalars['String']['input']>;
|
|
102250
|
+
position?: InputMaybe<Scalars['Int']['input']>;
|
|
102251
|
+
url?: InputMaybe<Scalars['String']['input']>;
|
|
102252
|
+
};
|
|
102253
|
+
export declare type StakeholderCommsLinkType = {
|
|
102254
|
+
__typename?: 'StakeholderCommsLinkType';
|
|
102255
|
+
label?: Maybe<Scalars['String']['output']>;
|
|
102256
|
+
position?: Maybe<Scalars['Int']['output']>;
|
|
102257
|
+
url?: Maybe<Scalars['String']['output']>;
|
|
101219
102258
|
};
|
|
101220
102259
|
export declare type StakeholderCommsModePreference = {
|
|
101221
102260
|
__typename?: 'StakeholderCommsModePreference';
|
|
@@ -101242,6 +102281,42 @@ export declare type StakeholderCommsNotificationPreferenceInput = {
|
|
|
101242
102281
|
preference?: InputMaybe<StakeholderCommsPreferencesInput>;
|
|
101243
102282
|
webhook?: InputMaybe<Scalars['String']['input']>;
|
|
101244
102283
|
};
|
|
102284
|
+
export declare type StakeholderCommsPage = {
|
|
102285
|
+
__typename?: 'StakeholderCommsPage';
|
|
102286
|
+
activityScore?: Maybe<Scalars['Int']['output']>;
|
|
102287
|
+
allowPageSubscribers?: Maybe<Scalars['Boolean']['output']>;
|
|
102288
|
+
allowRssAtomFields?: Maybe<Scalars['Boolean']['output']>;
|
|
102289
|
+
blackHole?: Maybe<Scalars['Boolean']['output']>;
|
|
102290
|
+
bodyConfig?: Maybe<StakeholderCommsBodyConfigType>;
|
|
102291
|
+
colours?: Maybe<StakeholderCommsColoursType>;
|
|
102292
|
+
components?: Maybe<Array<Maybe<Scalars['String']['output']>>>;
|
|
102293
|
+
createdAt?: Maybe<Scalars['String']['output']>;
|
|
102294
|
+
customCss?: Maybe<Scalars['String']['output']>;
|
|
102295
|
+
customFooterHtml?: Maybe<Scalars['String']['output']>;
|
|
102296
|
+
customHeaderHtml?: Maybe<Scalars['String']['output']>;
|
|
102297
|
+
deletedAt?: Maybe<Scalars['String']['output']>;
|
|
102298
|
+
description?: Maybe<Scalars['String']['output']>;
|
|
102299
|
+
domain?: Maybe<Scalars['String']['output']>;
|
|
102300
|
+
externalAccounts?: Maybe<Array<Maybe<Scalars['String']['output']>>>;
|
|
102301
|
+
footerData?: Maybe<StakeholderCommsFooterDataType>;
|
|
102302
|
+
googleAnalyticsEnabled?: Maybe<Scalars['Boolean']['output']>;
|
|
102303
|
+
googleAnalyticsTrackingId?: Maybe<Scalars['String']['output']>;
|
|
102304
|
+
headerData?: Maybe<StakeholderCommsHeaderDataType>;
|
|
102305
|
+
helpCenterUrl?: Maybe<Scalars['String']['output']>;
|
|
102306
|
+
hiddenFromSearch?: Maybe<Scalars['Boolean']['output']>;
|
|
102307
|
+
id: Scalars['String']['output'];
|
|
102308
|
+
name: Scalars['String']['output'];
|
|
102309
|
+
pageTheme?: Maybe<StakeholderCommsPageTheme>;
|
|
102310
|
+
pageThemeMode?: Maybe<StakeholderCommsPageThemeMode>;
|
|
102311
|
+
privacyPolicyUrl?: Maybe<Scalars['String']['output']>;
|
|
102312
|
+
seoConfig?: Maybe<StakeholderCommsSeoConfigType>;
|
|
102313
|
+
statusEmbedEnabled?: Maybe<Scalars['Boolean']['output']>;
|
|
102314
|
+
subdomain?: Maybe<Scalars['String']['output']>;
|
|
102315
|
+
timezone?: Maybe<Scalars['String']['output']>;
|
|
102316
|
+
updatedAt?: Maybe<Scalars['String']['output']>;
|
|
102317
|
+
url?: Maybe<Scalars['String']['output']>;
|
|
102318
|
+
version?: Maybe<Scalars['Int']['output']>;
|
|
102319
|
+
};
|
|
101245
102320
|
export declare type StakeholderCommsPageInfo = {
|
|
101246
102321
|
__typename?: 'StakeholderCommsPageInfo';
|
|
101247
102322
|
endCursor?: Maybe<Scalars['String']['output']>;
|
|
@@ -101249,6 +102324,21 @@ export declare type StakeholderCommsPageInfo = {
|
|
|
101249
102324
|
hasPreviousPage: Scalars['Boolean']['output'];
|
|
101250
102325
|
startCursor?: Maybe<Scalars['String']['output']>;
|
|
101251
102326
|
};
|
|
102327
|
+
export declare type StakeholderCommsPageResponse = {
|
|
102328
|
+
__typename?: 'StakeholderCommsPageResponse';
|
|
102329
|
+
error?: Maybe<Scalars['String']['output']>;
|
|
102330
|
+
page?: Maybe<StakeholderCommsPage>;
|
|
102331
|
+
};
|
|
102332
|
+
export declare enum StakeholderCommsPageTheme {
|
|
102333
|
+
AllSystemsGlow = "ALL_SYSTEMS_GLOW",
|
|
102334
|
+
Blank = "BLANK",
|
|
102335
|
+
ClearSkies = "CLEAR_SKIES",
|
|
102336
|
+
UpAndRunning = "UP_AND_RUNNING"
|
|
102337
|
+
}
|
|
102338
|
+
export declare enum StakeholderCommsPageThemeMode {
|
|
102339
|
+
Dark = "DARK",
|
|
102340
|
+
Light = "LIGHT"
|
|
102341
|
+
}
|
|
101252
102342
|
export declare type StakeholderCommsPaginatedAssignmentByStakeholderInput = {
|
|
101253
102343
|
cursor?: InputMaybe<Scalars['String']['input']>;
|
|
101254
102344
|
limit?: InputMaybe<Scalars['Int']['input']>;
|
|
@@ -101284,6 +102374,19 @@ export declare type StakeholderCommsPreferencesInput = {
|
|
|
101284
102374
|
sms?: InputMaybe<StakeholderCommsModePreferenceInput>;
|
|
101285
102375
|
webhook?: InputMaybe<StakeholderCommsModePreferenceInput>;
|
|
101286
102376
|
};
|
|
102377
|
+
export declare type StakeholderCommsSeoConfigInput = {
|
|
102378
|
+
description?: InputMaybe<Scalars['String']['input']>;
|
|
102379
|
+
enabled?: InputMaybe<Scalars['Boolean']['input']>;
|
|
102380
|
+
keywords?: InputMaybe<Scalars['String']['input']>;
|
|
102381
|
+
title?: InputMaybe<Scalars['String']['input']>;
|
|
102382
|
+
};
|
|
102383
|
+
export declare type StakeholderCommsSeoConfigType = {
|
|
102384
|
+
__typename?: 'StakeholderCommsSeoConfigType';
|
|
102385
|
+
description?: Maybe<Scalars['String']['output']>;
|
|
102386
|
+
enabled?: Maybe<Scalars['Boolean']['output']>;
|
|
102387
|
+
keywords?: Maybe<Scalars['String']['output']>;
|
|
102388
|
+
title?: Maybe<Scalars['String']['output']>;
|
|
102389
|
+
};
|
|
101287
102390
|
export declare type StakeholderCommsStakeholder = {
|
|
101288
102391
|
__typename?: 'StakeholderCommsStakeholder';
|
|
101289
102392
|
aaid?: Maybe<Scalars['String']['output']>;
|
|
@@ -101347,6 +102450,19 @@ export declare type StakeholderCommsStakeholderGroup = {
|
|
|
101347
102450
|
status?: Maybe<StakeholderCommsStakeholderGroupStatus>;
|
|
101348
102451
|
updatedAt?: Maybe<Scalars['String']['output']>;
|
|
101349
102452
|
};
|
|
102453
|
+
export declare type StakeholderCommsStakeholderGroupAndStakeholdersConnection = {
|
|
102454
|
+
__typename?: 'StakeholderCommsStakeholderGroupAndStakeholdersConnection';
|
|
102455
|
+
edges: Array<StakeholderCommsStakeholderGroupAndStakeholdersEdge>;
|
|
102456
|
+
error?: Maybe<Scalars['String']['output']>;
|
|
102457
|
+
nodes: Array<StakeholderCommsStakeholderGroupsAndStakeholders>;
|
|
102458
|
+
pageInfo: StakeholderCommsPageInfo;
|
|
102459
|
+
totalCount: Scalars['Int']['output'];
|
|
102460
|
+
};
|
|
102461
|
+
export declare type StakeholderCommsStakeholderGroupAndStakeholdersEdge = {
|
|
102462
|
+
__typename?: 'StakeholderCommsStakeholderGroupAndStakeholdersEdge';
|
|
102463
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
102464
|
+
node: StakeholderCommsStakeholderGroupsAndStakeholders;
|
|
102465
|
+
};
|
|
101350
102466
|
export declare type StakeholderCommsStakeholderGroupConnection = {
|
|
101351
102467
|
__typename?: 'StakeholderCommsStakeholderGroupConnection';
|
|
101352
102468
|
edges: Array<StakeholderCommsStakeholderGroupEdge>;
|
|
@@ -101390,6 +102506,13 @@ export declare type StakeholderCommsStakeholderGroupsAndMemberships = {
|
|
|
101390
102506
|
group?: Maybe<StakeholderCommsStakeholderGroup>;
|
|
101391
102507
|
memberships?: Maybe<Array<Maybe<StakeholderCommsStakeholderGroupMembership>>>;
|
|
101392
102508
|
};
|
|
102509
|
+
export declare type StakeholderCommsStakeholderGroupsAndStakeholders = {
|
|
102510
|
+
__typename?: 'StakeholderCommsStakeholderGroupsAndStakeholders';
|
|
102511
|
+
group?: Maybe<StakeholderCommsStakeholderGroup>;
|
|
102512
|
+
ownerAvatar?: Maybe<Scalars['String']['output']>;
|
|
102513
|
+
ownerName?: Maybe<Scalars['String']['output']>;
|
|
102514
|
+
stakeholders?: Maybe<Array<Maybe<StakeholderCommsStakeholder>>>;
|
|
102515
|
+
};
|
|
101393
102516
|
export declare type StakeholderCommsStakeholderIdInput = {
|
|
101394
102517
|
aaid?: InputMaybe<Scalars['String']['input']>;
|
|
101395
102518
|
ari?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -101412,6 +102535,41 @@ export declare enum StakeholderCommsStakeholderType {
|
|
|
101412
102535
|
Internal = "INTERNAL",
|
|
101413
102536
|
Team = "TEAM"
|
|
101414
102537
|
}
|
|
102538
|
+
export declare type StakeholderCommsUpdatePageInputType = {
|
|
102539
|
+
activityScore?: InputMaybe<Scalars['Int']['input']>;
|
|
102540
|
+
allowPageSubscribers?: InputMaybe<Scalars['Boolean']['input']>;
|
|
102541
|
+
allowRssAtomFields?: InputMaybe<Scalars['Boolean']['input']>;
|
|
102542
|
+
blackHole?: InputMaybe<Scalars['Boolean']['input']>;
|
|
102543
|
+
bodyConfig?: InputMaybe<StakeholderCommsBodyConfigInput>;
|
|
102544
|
+
colours?: InputMaybe<StakeholderCommsColoursInput>;
|
|
102545
|
+
components?: InputMaybe<Array<InputMaybe<Scalars['String']['input']>>>;
|
|
102546
|
+
createdAt?: InputMaybe<Scalars['String']['input']>;
|
|
102547
|
+
customCss?: InputMaybe<Scalars['String']['input']>;
|
|
102548
|
+
customFooterHtml?: InputMaybe<Scalars['String']['input']>;
|
|
102549
|
+
customHeaderHtml?: InputMaybe<Scalars['String']['input']>;
|
|
102550
|
+
deletedAt?: InputMaybe<Scalars['String']['input']>;
|
|
102551
|
+
description?: InputMaybe<Scalars['String']['input']>;
|
|
102552
|
+
domain?: InputMaybe<Scalars['String']['input']>;
|
|
102553
|
+
externalAccounts?: InputMaybe<Array<InputMaybe<Scalars['String']['input']>>>;
|
|
102554
|
+
footerData?: InputMaybe<StakeholderCommsFooterDataInput>;
|
|
102555
|
+
googleAnalyticsEnabled?: InputMaybe<Scalars['Boolean']['input']>;
|
|
102556
|
+
googleAnalyticsTrackingId?: InputMaybe<Scalars['String']['input']>;
|
|
102557
|
+
headerData?: InputMaybe<StakeholderCommsHeaderDataInput>;
|
|
102558
|
+
helpCenterUrl?: InputMaybe<Scalars['String']['input']>;
|
|
102559
|
+
hiddenFromSearch?: InputMaybe<Scalars['Boolean']['input']>;
|
|
102560
|
+
id: Scalars['String']['input'];
|
|
102561
|
+
name?: InputMaybe<Scalars['String']['input']>;
|
|
102562
|
+
pageTheme?: InputMaybe<StakeholderCommsPageTheme>;
|
|
102563
|
+
pageThemeMode?: InputMaybe<StakeholderCommsPageThemeMode>;
|
|
102564
|
+
privacyPolicyUrl?: InputMaybe<Scalars['String']['input']>;
|
|
102565
|
+
seoConfig?: InputMaybe<StakeholderCommsSeoConfigInput>;
|
|
102566
|
+
statusEmbedEnabled?: InputMaybe<Scalars['Boolean']['input']>;
|
|
102567
|
+
subdomain?: InputMaybe<Scalars['String']['input']>;
|
|
102568
|
+
timezone?: InputMaybe<Scalars['String']['input']>;
|
|
102569
|
+
updatedAt?: InputMaybe<Scalars['String']['input']>;
|
|
102570
|
+
url?: InputMaybe<Scalars['String']['input']>;
|
|
102571
|
+
version?: InputMaybe<Scalars['Int']['input']>;
|
|
102572
|
+
};
|
|
101415
102573
|
export declare type StakeholderCommsUpdateStakeholderGroupInput = {
|
|
101416
102574
|
description?: InputMaybe<Scalars['String']['input']>;
|
|
101417
102575
|
id: Scalars['String']['input'];
|
|
@@ -101428,6 +102586,10 @@ export declare type StakeholderCommsUpdateStakeholderInput = {
|
|
|
101428
102586
|
stakeholderIdInput: StakeholderCommsStakeholderIdInput;
|
|
101429
102587
|
status?: InputMaybe<StakeholderCommsStakeholderStatus>;
|
|
101430
102588
|
};
|
|
102589
|
+
export declare enum StakeholderCommsUptimeStyle {
|
|
102590
|
+
DetailCard = "DETAIL_CARD",
|
|
102591
|
+
OnlyStatus = "ONLY_STATUS"
|
|
102592
|
+
}
|
|
101431
102593
|
export declare type StalePagePayload = {
|
|
101432
102594
|
__typename?: 'StalePagePayload';
|
|
101433
102595
|
lastActivityDate: Scalars['String']['output'];
|
|
@@ -101557,6 +102719,7 @@ export declare type Subscription = {
|
|
|
101557
102719
|
devai_onAutodevJobLogGroupsUpdated?: Maybe<DevAiAutodevLogGroupConnection>;
|
|
101558
102720
|
devai_onAutodevJobLogsListUpdated?: Maybe<DevAiAutodevLogConnection>;
|
|
101559
102721
|
devai_onAutodevJobLogsUpdated?: Maybe<DevAiAutodevLogEdge>;
|
|
102722
|
+
devai_onBoysenberrySessionCreatedOnJiraIssue?: Maybe<DevAiRovoDevSessionConnection>;
|
|
101560
102723
|
devai_onBoysenberrySessionUpdated?: Maybe<DevAiRovoDevSession>;
|
|
101561
102724
|
devai_onTechnicalPlannerJobUpdated?: Maybe<DevAiTechnicalPlannerJob>;
|
|
101562
102725
|
ecosystem?: Maybe<EcosystemSubscription>;
|
|
@@ -101585,6 +102748,10 @@ export declare type SubscriptionDevai_OnAutodevJobLogsUpdatedArgs = {
|
|
|
101585
102748
|
cloudId: Scalars['ID']['input'];
|
|
101586
102749
|
jobId: Scalars['ID']['input'];
|
|
101587
102750
|
};
|
|
102751
|
+
export declare type SubscriptionDevai_OnBoysenberrySessionCreatedOnJiraIssueArgs = {
|
|
102752
|
+
cloudId?: InputMaybe<Scalars['ID']['input']>;
|
|
102753
|
+
issueKey?: InputMaybe<Scalars['String']['input']>;
|
|
102754
|
+
};
|
|
101588
102755
|
export declare type SubscriptionDevai_OnBoysenberrySessionUpdatedArgs = {
|
|
101589
102756
|
sessionAri: Scalars['ID']['input'];
|
|
101590
102757
|
};
|
|
@@ -102153,6 +103320,39 @@ export declare type TeamCalendarSettings = {
|
|
|
102153
103320
|
__typename?: 'TeamCalendarSettings';
|
|
102154
103321
|
startDayOfWeek: TeamCalendarDayOfWeek;
|
|
102155
103322
|
};
|
|
103323
|
+
export declare type TeamChildrenConnection = {
|
|
103324
|
+
__typename?: 'TeamChildrenConnection';
|
|
103325
|
+
edges?: Maybe<Array<TeamChildrenEdge>>;
|
|
103326
|
+
nodes?: Maybe<Array<TeamV2>>;
|
|
103327
|
+
pageInfo: PageInfo;
|
|
103328
|
+
};
|
|
103329
|
+
export declare type TeamChildrenEdge = {
|
|
103330
|
+
__typename?: 'TeamChildrenEdge';
|
|
103331
|
+
cursor: Scalars['String']['output'];
|
|
103332
|
+
node?: Maybe<TeamV2>;
|
|
103333
|
+
};
|
|
103334
|
+
export declare type TeamHierarchy = {
|
|
103335
|
+
__typename?: 'TeamHierarchy';
|
|
103336
|
+
ancestorErrors?: Maybe<Array<TeamHierarchyErrors>>;
|
|
103337
|
+
ancestors?: Maybe<Array<TeamV2>>;
|
|
103338
|
+
children?: Maybe<TeamChildrenConnection>;
|
|
103339
|
+
parent?: Maybe<TeamV2>;
|
|
103340
|
+
};
|
|
103341
|
+
export declare type TeamHierarchyChildrenArgs = {
|
|
103342
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
103343
|
+
first?: Scalars['Int']['input'];
|
|
103344
|
+
};
|
|
103345
|
+
export declare enum TeamHierarchyErrorCode {
|
|
103346
|
+
AncestorHierarchyExceedsMaxDepth = "ANCESTOR_HIERARCHY_EXCEEDS_MAX_DEPTH",
|
|
103347
|
+
AncestorInCycle = "ANCESTOR_IN_CYCLE",
|
|
103348
|
+
InvalidAncestorInHierarchy = "INVALID_ANCESTOR_IN_HIERARCHY",
|
|
103349
|
+
TeamInCycle = "TEAM_IN_CYCLE"
|
|
103350
|
+
}
|
|
103351
|
+
export declare type TeamHierarchyErrors = {
|
|
103352
|
+
__typename?: 'TeamHierarchyErrors';
|
|
103353
|
+
description?: Maybe<Scalars['String']['output']>;
|
|
103354
|
+
reason: TeamHierarchyErrorCode;
|
|
103355
|
+
};
|
|
102156
103356
|
export declare type TeamMember = {
|
|
102157
103357
|
__typename?: 'TeamMember';
|
|
102158
103358
|
member?: Maybe<User>;
|
|
@@ -102206,8 +103406,31 @@ export declare enum TeamMembershipState {
|
|
|
102206
103406
|
}
|
|
102207
103407
|
export declare type TeamMutation = {
|
|
102208
103408
|
__typename?: 'TeamMutation';
|
|
103409
|
+
addChild?: Maybe<TeamV2>;
|
|
103410
|
+
addParent?: Maybe<TeamV2>;
|
|
103411
|
+
removeChild?: Maybe<TeamV2>;
|
|
103412
|
+
removeParent?: Maybe<TeamV2>;
|
|
102209
103413
|
updateRoleAssignments?: Maybe<TeamUpdateRoleAssignmentsResponse>;
|
|
102210
103414
|
};
|
|
103415
|
+
export declare type TeamMutationAddChildArgs = {
|
|
103416
|
+
childId: Scalars['ID']['input'];
|
|
103417
|
+
siteId: Scalars['ID']['input'];
|
|
103418
|
+
teamId: Scalars['ID']['input'];
|
|
103419
|
+
};
|
|
103420
|
+
export declare type TeamMutationAddParentArgs = {
|
|
103421
|
+
parentId: Scalars['ID']['input'];
|
|
103422
|
+
siteId: Scalars['ID']['input'];
|
|
103423
|
+
teamId: Scalars['ID']['input'];
|
|
103424
|
+
};
|
|
103425
|
+
export declare type TeamMutationRemoveChildArgs = {
|
|
103426
|
+
childId: Scalars['ID']['input'];
|
|
103427
|
+
siteId: Scalars['ID']['input'];
|
|
103428
|
+
teamId: Scalars['ID']['input'];
|
|
103429
|
+
};
|
|
103430
|
+
export declare type TeamMutationRemoveParentArgs = {
|
|
103431
|
+
siteId: Scalars['ID']['input'];
|
|
103432
|
+
teamId: Scalars['ID']['input'];
|
|
103433
|
+
};
|
|
102211
103434
|
export declare type TeamMutationUpdateRoleAssignmentsArgs = {
|
|
102212
103435
|
organizationId: Scalars['ID']['input'];
|
|
102213
103436
|
principalsToAdd: Array<InputMaybe<Scalars['ID']['input']>>;
|
|
@@ -102347,6 +103570,7 @@ export declare type TeamV2 = Node & {
|
|
|
102347
103570
|
creator?: Maybe<User>;
|
|
102348
103571
|
description?: Maybe<Scalars['String']['output']>;
|
|
102349
103572
|
displayName?: Maybe<Scalars['String']['output']>;
|
|
103573
|
+
hierarchy?: Maybe<TeamHierarchy>;
|
|
102350
103574
|
id: Scalars['ID']['output'];
|
|
102351
103575
|
isVerified?: Maybe<Scalars['Boolean']['output']>;
|
|
102352
103576
|
largeAvatarImageUrl?: Maybe<Scalars['String']['output']>;
|
|
@@ -103171,6 +104395,7 @@ export declare type TownsquareGoal = Node & {
|
|
|
103171
104395
|
isWatching?: Maybe<Scalars['Boolean']['output']>;
|
|
103172
104396
|
key: Scalars['String']['output'];
|
|
103173
104397
|
latestUpdateDate?: Maybe<Scalars['DateTime']['output']>;
|
|
104398
|
+
metricTargets?: Maybe<TownsquareMetricTargetConnection>;
|
|
103174
104399
|
name: Scalars['String']['output'];
|
|
103175
104400
|
owner?: Maybe<User>;
|
|
103176
104401
|
parentGoal?: Maybe<TownsquareGoal>;
|
|
@@ -103178,6 +104403,7 @@ export declare type TownsquareGoal = Node & {
|
|
|
103178
104403
|
progress?: Maybe<TownsquareGoalProgress>;
|
|
103179
104404
|
projects?: Maybe<TownsquareProjectConnection>;
|
|
103180
104405
|
risks?: Maybe<TownsquareRiskConnection>;
|
|
104406
|
+
scoringMode?: Maybe<TownsquareGoalScoringMode>;
|
|
103181
104407
|
startDate?: Maybe<Scalars['Date']['output']>;
|
|
103182
104408
|
state?: Maybe<TownsquareGoalState>;
|
|
103183
104409
|
status?: Maybe<TownsquareStatus>;
|
|
@@ -103195,6 +104421,10 @@ export declare type TownsquareGoalCommentsArgs = {
|
|
|
103195
104421
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
103196
104422
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
103197
104423
|
};
|
|
104424
|
+
export declare type TownsquareGoalMetricTargetsArgs = {
|
|
104425
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
104426
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
104427
|
+
};
|
|
103198
104428
|
export declare type TownsquareGoalParentGoalSuggestionsArgs = {
|
|
103199
104429
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
103200
104430
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
@@ -103270,6 +104500,10 @@ export declare enum TownsquareGoalProgressType {
|
|
|
103270
104500
|
AverageRollup = "AVERAGE_ROLLUP",
|
|
103271
104501
|
None = "NONE"
|
|
103272
104502
|
}
|
|
104503
|
+
export declare enum TownsquareGoalScoringMode {
|
|
104504
|
+
Okr = "OKR",
|
|
104505
|
+
Simple = "SIMPLE"
|
|
104506
|
+
}
|
|
103273
104507
|
export declare enum TownsquareGoalSortEnum {
|
|
103274
104508
|
CreationDateAsc = "CREATION_DATE_ASC",
|
|
103275
104509
|
CreationDateDesc = "CREATION_DATE_DESC",
|
|
@@ -103607,6 +104841,67 @@ export declare type TownsquareMercuryProjectTypeDto = MercuryProjectType & {
|
|
|
103607
104841
|
__typename?: 'TownsquareMercuryProjectTypeDto';
|
|
103608
104842
|
mercuryProjectTypeName?: Maybe<Scalars['String']['output']>;
|
|
103609
104843
|
};
|
|
104844
|
+
export declare type TownsquareMetric = Node & {
|
|
104845
|
+
__typename?: 'TownsquareMetric';
|
|
104846
|
+
archived?: Maybe<Scalars['Boolean']['output']>;
|
|
104847
|
+
externalEntityId?: Maybe<Scalars['String']['output']>;
|
|
104848
|
+
id: Scalars['ID']['output'];
|
|
104849
|
+
name?: Maybe<Scalars['String']['output']>;
|
|
104850
|
+
subType?: Maybe<Scalars['String']['output']>;
|
|
104851
|
+
type?: Maybe<TownsquareMetricType>;
|
|
104852
|
+
values?: Maybe<TownsquareMetricValueConnection>;
|
|
104853
|
+
};
|
|
104854
|
+
export declare type TownsquareMetricValuesArgs = {
|
|
104855
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
104856
|
+
endDate?: InputMaybe<Scalars['DateTime']['input']>;
|
|
104857
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
104858
|
+
sort?: InputMaybe<Array<InputMaybe<TownsquareMetricValueSortEnum>>>;
|
|
104859
|
+
startDate?: InputMaybe<Scalars['DateTime']['input']>;
|
|
104860
|
+
};
|
|
104861
|
+
export declare type TownsquareMetricTarget = Node & {
|
|
104862
|
+
__typename?: 'TownsquareMetricTarget';
|
|
104863
|
+
id: Scalars['ID']['output'];
|
|
104864
|
+
metric?: Maybe<TownsquareMetric>;
|
|
104865
|
+
snapshotValue?: Maybe<TownsquareMetricValue>;
|
|
104866
|
+
startValue?: Maybe<Scalars['Float']['output']>;
|
|
104867
|
+
targetValue?: Maybe<Scalars['Float']['output']>;
|
|
104868
|
+
};
|
|
104869
|
+
export declare type TownsquareMetricTargetConnection = {
|
|
104870
|
+
__typename?: 'TownsquareMetricTargetConnection';
|
|
104871
|
+
edges?: Maybe<Array<Maybe<TownsquareMetricTargetEdge>>>;
|
|
104872
|
+
pageInfo: PageInfo;
|
|
104873
|
+
};
|
|
104874
|
+
export declare type TownsquareMetricTargetEdge = {
|
|
104875
|
+
__typename?: 'TownsquareMetricTargetEdge';
|
|
104876
|
+
cursor: Scalars['String']['output'];
|
|
104877
|
+
node?: Maybe<TownsquareMetricTarget>;
|
|
104878
|
+
};
|
|
104879
|
+
export declare enum TownsquareMetricType {
|
|
104880
|
+
Currency = "CURRENCY",
|
|
104881
|
+
Numeric = "NUMERIC",
|
|
104882
|
+
Percentage = "PERCENTAGE"
|
|
104883
|
+
}
|
|
104884
|
+
export declare type TownsquareMetricValue = Node & {
|
|
104885
|
+
__typename?: 'TownsquareMetricValue';
|
|
104886
|
+
id: Scalars['ID']['output'];
|
|
104887
|
+
value?: Maybe<Scalars['Float']['output']>;
|
|
104888
|
+
};
|
|
104889
|
+
export declare type TownsquareMetricValueConnection = {
|
|
104890
|
+
__typename?: 'TownsquareMetricValueConnection';
|
|
104891
|
+
edges?: Maybe<Array<Maybe<TownsquareMetricValueEdge>>>;
|
|
104892
|
+
pageInfo: PageInfo;
|
|
104893
|
+
};
|
|
104894
|
+
export declare type TownsquareMetricValueEdge = {
|
|
104895
|
+
__typename?: 'TownsquareMetricValueEdge';
|
|
104896
|
+
cursor: Scalars['String']['output'];
|
|
104897
|
+
node?: Maybe<TownsquareMetricValue>;
|
|
104898
|
+
};
|
|
104899
|
+
export declare enum TownsquareMetricValueSortEnum {
|
|
104900
|
+
IdAsc = "ID_ASC",
|
|
104901
|
+
IdDesc = "ID_DESC",
|
|
104902
|
+
TimeAsc = "TIME_ASC",
|
|
104903
|
+
TimeDesc = "TIME_DESC"
|
|
104904
|
+
}
|
|
103610
104905
|
export declare type TownsquareMutationApi = {
|
|
103611
104906
|
__typename?: 'TownsquareMutationApi';
|
|
103612
104907
|
archiveGoal?: Maybe<TownsquareArchiveGoalPayload>;
|
|
@@ -104662,6 +105957,10 @@ export declare type TrelloActionDateEntity = {
|
|
|
104662
105957
|
date?: Maybe<Scalars['DateTime']['output']>;
|
|
104663
105958
|
type?: Maybe<Scalars['String']['output']>;
|
|
104664
105959
|
};
|
|
105960
|
+
export declare type TrelloActionDeleted = {
|
|
105961
|
+
__typename?: 'TrelloActionDeleted';
|
|
105962
|
+
id: Scalars['ID']['output'];
|
|
105963
|
+
};
|
|
104665
105964
|
export declare type TrelloActionLimits = {
|
|
104666
105965
|
__typename?: 'TrelloActionLimits';
|
|
104667
105966
|
reactions?: Maybe<TrelloReactionLimits>;
|
|
@@ -104776,6 +106075,16 @@ export declare type TrelloAddRemoveMemberActionDisplayEntities = {
|
|
|
104776
106075
|
member?: Maybe<TrelloActionMemberEntity>;
|
|
104777
106076
|
memberCreator?: Maybe<TrelloActionMemberEntity>;
|
|
104778
106077
|
};
|
|
106078
|
+
export declare type TrelloAddWorkspaceTagToBoardInput = {
|
|
106079
|
+
boardId: Scalars['ID']['input'];
|
|
106080
|
+
tagId: Scalars['ID']['input'];
|
|
106081
|
+
};
|
|
106082
|
+
export declare type TrelloAddWorkspaceTagToBoardPayload = Payload & {
|
|
106083
|
+
__typename?: 'TrelloAddWorkspaceTagToBoardPayload';
|
|
106084
|
+
board?: Maybe<TrelloBoard>;
|
|
106085
|
+
errors?: Maybe<Array<MutationError>>;
|
|
106086
|
+
success: Scalars['Boolean']['output'];
|
|
106087
|
+
};
|
|
104779
106088
|
export declare type TrelloAiRule = {
|
|
104780
106089
|
__typename?: 'TrelloAiRule';
|
|
104781
106090
|
id: Scalars['ID']['output'];
|
|
@@ -105595,6 +106904,7 @@ export declare type TrelloCardMemberEdgeUpdated = {
|
|
|
105595
106904
|
__typename?: 'TrelloCardMemberEdgeUpdated';
|
|
105596
106905
|
node?: Maybe<TrelloMember>;
|
|
105597
106906
|
};
|
|
106907
|
+
export declare type TrelloCardOrInboxCard = TrelloCard | TrelloInboxCard;
|
|
105598
106908
|
export declare enum TrelloCardRole {
|
|
105599
106909
|
Board = "BOARD",
|
|
105600
106910
|
Link = "LINK",
|
|
@@ -105629,6 +106939,7 @@ export declare type TrelloCardUpdated = {
|
|
|
105629
106939
|
mirrorSourceObjectId?: Maybe<Scalars['ID']['output']>;
|
|
105630
106940
|
name?: Maybe<Scalars['String']['output']>;
|
|
105631
106941
|
objectId?: Maybe<Scalars['ID']['output']>;
|
|
106942
|
+
onActionDeleted?: Maybe<Array<TrelloActionDeleted>>;
|
|
105632
106943
|
onChecklistDeleted?: Maybe<Array<TrelloChecklistDeleted>>;
|
|
105633
106944
|
onPowerUpDataDeleted?: Maybe<Array<TrelloPowerUpDataDeleted>>;
|
|
105634
106945
|
pinned?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -105843,9 +107154,8 @@ export declare type TrelloCreateApplicationInput = {
|
|
|
105843
107154
|
};
|
|
105844
107155
|
export declare type TrelloCreateApplicationPayload = Payload & {
|
|
105845
107156
|
__typename?: 'TrelloCreateApplicationPayload';
|
|
107157
|
+
application?: Maybe<TrelloApplication>;
|
|
105846
107158
|
errors?: Maybe<Array<MutationError>>;
|
|
105847
|
-
id?: Maybe<Scalars['ID']['output']>;
|
|
105848
|
-
oauth2Client?: Maybe<TrelloOAuth2Client>;
|
|
105849
107159
|
success: Scalars['Boolean']['output'];
|
|
105850
107160
|
};
|
|
105851
107161
|
export declare type TrelloCreateCardAction = TrelloAction & TrelloCardActionData & {
|
|
@@ -106133,6 +107443,16 @@ export declare type TrelloDeletePlannerCalendarEventPayload = Payload & {
|
|
|
106133
107443
|
event?: Maybe<TrelloPlannerCalendarEventDeleted>;
|
|
106134
107444
|
success: Scalars['Boolean']['output'];
|
|
106135
107445
|
};
|
|
107446
|
+
export declare type TrelloDeleteWorkspaceTagInput = {
|
|
107447
|
+
tagId: Scalars['ID']['input'];
|
|
107448
|
+
workspaceId: Scalars['ID']['input'];
|
|
107449
|
+
};
|
|
107450
|
+
export declare type TrelloDeleteWorkspaceTagPayload = Payload & {
|
|
107451
|
+
__typename?: 'TrelloDeleteWorkspaceTagPayload';
|
|
107452
|
+
errors?: Maybe<Array<MutationError>>;
|
|
107453
|
+
success: Scalars['Boolean']['output'];
|
|
107454
|
+
workspace?: Maybe<TrelloWorkspace>;
|
|
107455
|
+
};
|
|
106136
107456
|
export declare type TrelloEditPlannerCalendarEventInput = {
|
|
106137
107457
|
event: TrelloEditPlannerCalendarEventOptions;
|
|
106138
107458
|
plannerCalendarId: Scalars['ID']['input'];
|
|
@@ -106160,11 +107480,16 @@ export declare type TrelloEmoji = {
|
|
|
106160
107480
|
};
|
|
106161
107481
|
export declare type TrelloEnterprise = Node & {
|
|
106162
107482
|
__typename?: 'TrelloEnterprise';
|
|
107483
|
+
admins?: Maybe<TrelloMemberConnection>;
|
|
106163
107484
|
displayName?: Maybe<Scalars['String']['output']>;
|
|
106164
107485
|
id: Scalars['ID']['output'];
|
|
106165
107486
|
objectId: Scalars['ID']['output'];
|
|
106166
107487
|
prefs: TrelloEnterprisePrefs;
|
|
106167
107488
|
};
|
|
107489
|
+
export declare type TrelloEnterpriseAdminsArgs = {
|
|
107490
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
107491
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
107492
|
+
};
|
|
106168
107493
|
export declare type TrelloEnterprisePrefs = {
|
|
106169
107494
|
__typename?: 'TrelloEnterprisePrefs';
|
|
106170
107495
|
atlassianIntelligence?: Maybe<TrelloAtlassianIntelligence>;
|
|
@@ -106216,6 +107541,45 @@ export declare type TrelloInboxListsArgs = {
|
|
|
106216
107541
|
filter?: InputMaybe<TrelloListFilterInput>;
|
|
106217
107542
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
106218
107543
|
};
|
|
107544
|
+
export declare type TrelloInboxCard = {
|
|
107545
|
+
__typename?: 'TrelloInboxCard';
|
|
107546
|
+
actions?: Maybe<TrelloCardActionConnection>;
|
|
107547
|
+
attachments?: Maybe<TrelloAttachmentConnection>;
|
|
107548
|
+
badges?: Maybe<TrelloCardBadges>;
|
|
107549
|
+
checklists?: Maybe<TrelloChecklistConnection>;
|
|
107550
|
+
closed?: Maybe<Scalars['Boolean']['output']>;
|
|
107551
|
+
complete?: Maybe<Scalars['Boolean']['output']>;
|
|
107552
|
+
cover?: Maybe<TrelloCardCover>;
|
|
107553
|
+
creation?: Maybe<TrelloCardCreationInfo>;
|
|
107554
|
+
description?: Maybe<Scalars['String']['output']>;
|
|
107555
|
+
due?: Maybe<Scalars['DateTime']['output']>;
|
|
107556
|
+
id: Scalars['ID']['output'];
|
|
107557
|
+
lastActivityAt?: Maybe<Scalars['DateTime']['output']>;
|
|
107558
|
+
limits?: Maybe<TrelloCardLimits>;
|
|
107559
|
+
list?: Maybe<TrelloList>;
|
|
107560
|
+
name?: Maybe<Scalars['String']['output']>;
|
|
107561
|
+
objectId: Scalars['ID']['output'];
|
|
107562
|
+
originalDesc?: Maybe<TrelloUserGeneratedText>;
|
|
107563
|
+
originalName?: Maybe<TrelloUserGeneratedText>;
|
|
107564
|
+
pinned?: Maybe<Scalars['Boolean']['output']>;
|
|
107565
|
+
position?: Maybe<Scalars['Float']['output']>;
|
|
107566
|
+
role?: Maybe<Scalars['String']['output']>;
|
|
107567
|
+
singleInstrumentationId?: Maybe<Scalars['String']['output']>;
|
|
107568
|
+
startedAt?: Maybe<Scalars['DateTime']['output']>;
|
|
107569
|
+
};
|
|
107570
|
+
export declare type TrelloInboxCardActionsArgs = {
|
|
107571
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
107572
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
107573
|
+
type?: InputMaybe<Array<TrelloCardActionType>>;
|
|
107574
|
+
};
|
|
107575
|
+
export declare type TrelloInboxCardAttachmentsArgs = {
|
|
107576
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
107577
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
107578
|
+
};
|
|
107579
|
+
export declare type TrelloInboxCardChecklistsArgs = {
|
|
107580
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
107581
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
107582
|
+
};
|
|
106219
107583
|
export declare type TrelloInboxPrefs = {
|
|
106220
107584
|
__typename?: 'TrelloInboxPrefs';
|
|
106221
107585
|
autoArchive?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -106569,6 +107933,7 @@ export declare type TrelloMutationApi = {
|
|
|
106569
107933
|
__typename?: 'TrelloMutationApi';
|
|
106570
107934
|
addBoardStar?: Maybe<TrelloAddBoardStarPayload>;
|
|
106571
107935
|
addMemberToCard?: Maybe<TrelloAddMemberToCardPayload>;
|
|
107936
|
+
addWorkspaceTagToBoard?: Maybe<TrelloAddWorkspaceTagToBoardPayload>;
|
|
106572
107937
|
archiveCard?: Maybe<TrelloArchiveCardPayload>;
|
|
106573
107938
|
assignCardToPlannerCalendarEvent?: Maybe<TrelloAssignCardToPlannerCalendarEventPayload>;
|
|
106574
107939
|
createApplication?: Maybe<TrelloCreateApplicationPayload>;
|
|
@@ -106579,12 +107944,14 @@ export declare type TrelloMutationApi = {
|
|
|
106579
107944
|
createWorkspaceTag?: Maybe<TrelloCreateWorkspaceTagPayload>;
|
|
106580
107945
|
deleteAiRule?: Maybe<TrelloDeleteAiRulePayload>;
|
|
106581
107946
|
deletePlannerCalendarEvent?: Maybe<TrelloDeletePlannerCalendarEventPayload>;
|
|
107947
|
+
deleteWorkspaceTag?: Maybe<TrelloDeleteWorkspaceTagPayload>;
|
|
106582
107948
|
editPlannerCalendarEvent?: Maybe<TrelloEditPlannerCalendarEventPayload>;
|
|
106583
107949
|
pinCard?: Maybe<TrelloPinCardPayload>;
|
|
106584
107950
|
removeBoardStar?: Maybe<TrelloRemoveBoardStarPayload>;
|
|
106585
107951
|
removeCardFromPlannerCalendarEvent?: Maybe<TrelloRemoveCardFromPlannerCalendarEventPayload>;
|
|
106586
107952
|
removeMemberFromCard?: Maybe<TrelloRemoveMemberFromCardPayload>;
|
|
106587
107953
|
removeMemberFromWorkspace?: Maybe<TrelloRemoveMemberFromWorkspacePayload>;
|
|
107954
|
+
removeWorkspaceTagFromBoard?: Maybe<TrelloRemoveWorkspaceTagFromBoardPayload>;
|
|
106588
107955
|
submitCardBatchToBoard?: Maybe<TrelloCardBatchJobPayload>;
|
|
106589
107956
|
unarchiveCard?: Maybe<TrelloUnarchiveCardPayload>;
|
|
106590
107957
|
unwatchCard?: Maybe<TrelloWatchCardPayload>;
|
|
@@ -106608,6 +107975,9 @@ export declare type TrelloMutationApiAddBoardStarArgs = {
|
|
|
106608
107975
|
export declare type TrelloMutationApiAddMemberToCardArgs = {
|
|
106609
107976
|
input: TrelloAddMemberInput;
|
|
106610
107977
|
};
|
|
107978
|
+
export declare type TrelloMutationApiAddWorkspaceTagToBoardArgs = {
|
|
107979
|
+
input: TrelloAddWorkspaceTagToBoardInput;
|
|
107980
|
+
};
|
|
106611
107981
|
export declare type TrelloMutationApiArchiveCardArgs = {
|
|
106612
107982
|
input: TrelloArchiveCardInput;
|
|
106613
107983
|
};
|
|
@@ -106638,6 +108008,9 @@ export declare type TrelloMutationApiDeleteAiRuleArgs = {
|
|
|
106638
108008
|
export declare type TrelloMutationApiDeletePlannerCalendarEventArgs = {
|
|
106639
108009
|
input: TrelloDeletePlannerCalendarEventInput;
|
|
106640
108010
|
};
|
|
108011
|
+
export declare type TrelloMutationApiDeleteWorkspaceTagArgs = {
|
|
108012
|
+
input: TrelloDeleteWorkspaceTagInput;
|
|
108013
|
+
};
|
|
106641
108014
|
export declare type TrelloMutationApiEditPlannerCalendarEventArgs = {
|
|
106642
108015
|
input: TrelloEditPlannerCalendarEventInput;
|
|
106643
108016
|
};
|
|
@@ -106656,6 +108029,9 @@ export declare type TrelloMutationApiRemoveMemberFromCardArgs = {
|
|
|
106656
108029
|
export declare type TrelloMutationApiRemoveMemberFromWorkspaceArgs = {
|
|
106657
108030
|
input: TrelloRemoveMemberFromWorkspaceInput;
|
|
106658
108031
|
};
|
|
108032
|
+
export declare type TrelloMutationApiRemoveWorkspaceTagFromBoardArgs = {
|
|
108033
|
+
input: TrelloRemoveWorkspaceTagFromBoardInput;
|
|
108034
|
+
};
|
|
106659
108035
|
export declare type TrelloMutationApiSubmitCardBatchToBoardArgs = {
|
|
106660
108036
|
input: TrelloCardBatchSpecificationInput;
|
|
106661
108037
|
};
|
|
@@ -106732,6 +108108,7 @@ export declare type TrelloPlanner = {
|
|
|
106732
108108
|
__typename?: 'TrelloPlanner';
|
|
106733
108109
|
accounts?: Maybe<TrelloPlannerCalendarAccountConnection>;
|
|
106734
108110
|
id: Scalars['ID']['output'];
|
|
108111
|
+
primaryAccountId?: Maybe<Scalars['ID']['output']>;
|
|
106735
108112
|
workspace?: Maybe<TrelloWorkspace>;
|
|
106736
108113
|
};
|
|
106737
108114
|
export declare type TrelloPlannerAccountsArgs = {
|
|
@@ -107083,6 +108460,7 @@ export declare type TrelloPlannerUpdated = {
|
|
|
107083
108460
|
__typename?: 'TrelloPlannerUpdated';
|
|
107084
108461
|
accounts?: Maybe<TrelloPlannerCalendarAccountConnectionUpdated>;
|
|
107085
108462
|
id: Scalars['ID']['output'];
|
|
108463
|
+
primaryAccountId?: Maybe<Scalars['ID']['output']>;
|
|
107086
108464
|
};
|
|
107087
108465
|
export declare type TrelloPowerUp = {
|
|
107088
108466
|
__typename?: 'TrelloPowerUp';
|
|
@@ -107399,6 +108777,16 @@ export declare type TrelloRemoveMemberInput = {
|
|
|
107399
108777
|
cardId: Scalars['ID']['input'];
|
|
107400
108778
|
userId: Scalars['ID']['input'];
|
|
107401
108779
|
};
|
|
108780
|
+
export declare type TrelloRemoveWorkspaceTagFromBoardInput = {
|
|
108781
|
+
boardId: Scalars['ID']['input'];
|
|
108782
|
+
tagId: Scalars['ID']['input'];
|
|
108783
|
+
};
|
|
108784
|
+
export declare type TrelloRemoveWorkspaceTagFromBoardPayload = Payload & {
|
|
108785
|
+
__typename?: 'TrelloRemoveWorkspaceTagFromBoardPayload';
|
|
108786
|
+
board?: Maybe<TrelloBoard>;
|
|
108787
|
+
errors?: Maybe<Array<MutationError>>;
|
|
108788
|
+
success: Scalars['Boolean']['output'];
|
|
108789
|
+
};
|
|
107402
108790
|
export declare type TrelloScaleProps = {
|
|
107403
108791
|
__typename?: 'TrelloScaleProps';
|
|
107404
108792
|
height?: Maybe<Scalars['Int']['output']>;
|
|
@@ -107409,6 +108797,7 @@ export declare type TrelloSmartScheduleCardsInput = {
|
|
|
107409
108797
|
cardIds?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
107410
108798
|
endDate?: InputMaybe<Scalars['DateTime']['input']>;
|
|
107411
108799
|
startDate?: InputMaybe<Scalars['DateTime']['input']>;
|
|
108800
|
+
timezoneOffsetHours?: InputMaybe<Scalars['Float']['input']>;
|
|
107412
108801
|
};
|
|
107413
108802
|
export declare type TrelloSticker = {
|
|
107414
108803
|
__typename?: 'TrelloSticker';
|
|
@@ -109576,6 +110965,22 @@ export declare type UpdateEmbedInput = {
|
|
|
109576
110965
|
resourceType?: InputMaybe<Scalars['String']['input']>;
|
|
109577
110966
|
title?: InputMaybe<Scalars['String']['input']>;
|
|
109578
110967
|
};
|
|
110968
|
+
export declare type UpdateExCoSpacePermissionsInput = {
|
|
110969
|
+
accountId: Scalars['String']['input'];
|
|
110970
|
+
spaceId: Scalars['Long']['input'];
|
|
110971
|
+
};
|
|
110972
|
+
export declare type UpdateExCoSpacePermissionsMutationErrorExtension = MutationErrorExtension & {
|
|
110973
|
+
__typename?: 'UpdateExCoSpacePermissionsMutationErrorExtension';
|
|
110974
|
+
accountId?: Maybe<Scalars['String']['output']>;
|
|
110975
|
+
errorType?: Maybe<Scalars['String']['output']>;
|
|
110976
|
+
spaceId?: Maybe<Scalars['Long']['output']>;
|
|
110977
|
+
statusCode?: Maybe<Scalars['Int']['output']>;
|
|
110978
|
+
};
|
|
110979
|
+
export declare type UpdateExCoSpacePermissionsPayload = Payload & {
|
|
110980
|
+
__typename?: 'UpdateExCoSpacePermissionsPayload';
|
|
110981
|
+
errors?: Maybe<Array<MutationError>>;
|
|
110982
|
+
success: Scalars['Boolean']['output'];
|
|
110983
|
+
};
|
|
109579
110984
|
export declare type UpdateExternalCollaboratorDefaultSpaceInput = {
|
|
109580
110985
|
enabled: Scalars['Boolean']['input'];
|
|
109581
110986
|
spaceId: Scalars['Long']['input'];
|