@forge/cli-shared 8.15.0-next.3-experimental-cb1ecce → 8.15.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 +3 -12
- package/out/graphql/graphql-types.d.ts +743 -113
- package/out/graphql/graphql-types.d.ts.map +1 -1
- package/out/graphql/graphql-types.js +176 -38
- package/package.json +2 -2
|
@@ -454,6 +454,18 @@ export declare type AvpClearChartsInRowInput = {
|
|
|
454
454
|
dashboardAri: Scalars['ID']['input'];
|
|
455
455
|
rowId: Scalars['ID']['input'];
|
|
456
456
|
};
|
|
457
|
+
export declare type AvpCloneChartInput = {
|
|
458
|
+
canvasElementId?: InputMaybe<Scalars['ID']['input']>;
|
|
459
|
+
chartAri: Scalars['ID']['input'];
|
|
460
|
+
dashboardAri: Scalars['ID']['input'];
|
|
461
|
+
};
|
|
462
|
+
export declare type AvpCloneChartPayload = Payload & {
|
|
463
|
+
__typename?: 'AVPCloneChartPayload';
|
|
464
|
+
canvasLayout?: Maybe<AvpDashboardCanvasLayout>;
|
|
465
|
+
chart?: Maybe<AvpChart>;
|
|
466
|
+
errors?: Maybe<Array<MutationError>>;
|
|
467
|
+
success: Scalars['Boolean']['output'];
|
|
468
|
+
};
|
|
457
469
|
export declare type AvpCopyChartInput = {
|
|
458
470
|
chartAri: Scalars['ID']['input'];
|
|
459
471
|
};
|
|
@@ -523,6 +535,20 @@ export declare type AvpCreateDashboardPayload = Payload & {
|
|
|
523
535
|
errors?: Maybe<Array<MutationError>>;
|
|
524
536
|
success: Scalars['Boolean']['output'];
|
|
525
537
|
};
|
|
538
|
+
export declare type AvpCreateStandaloneChartInput = {
|
|
539
|
+
chart: AvpChartInput;
|
|
540
|
+
cloudId: Scalars['ID']['input'];
|
|
541
|
+
containerAri?: InputMaybe<Scalars['ID']['input']>;
|
|
542
|
+
integrationId?: InputMaybe<AvpIntegrationId>;
|
|
543
|
+
workspaceId: Scalars['ID']['input'];
|
|
544
|
+
};
|
|
545
|
+
export declare type AvpCreateStandaloneChartPayload = Payload & {
|
|
546
|
+
__typename?: 'AVPCreateStandaloneChartPayload';
|
|
547
|
+
chart?: Maybe<AvpChart>;
|
|
548
|
+
dashboard?: Maybe<AvpDashboard>;
|
|
549
|
+
errors?: Maybe<Array<MutationError>>;
|
|
550
|
+
success: Scalars['Boolean']['output'];
|
|
551
|
+
};
|
|
526
552
|
export declare type AvpCreateVariableInput = {
|
|
527
553
|
dashboardAri: Scalars['ID']['input'];
|
|
528
554
|
variable: AvpVariableInput;
|
|
@@ -821,6 +847,18 @@ export declare type AvpMoveDashboardRowPayload = Payload & {
|
|
|
821
847
|
errors?: Maybe<Array<MutationError>>;
|
|
822
848
|
success: Scalars['Boolean']['output'];
|
|
823
849
|
};
|
|
850
|
+
export declare enum AvpPermissionsAccessLevel {
|
|
851
|
+
Manage = "MANAGE",
|
|
852
|
+
Read = "READ",
|
|
853
|
+
Write = "WRITE"
|
|
854
|
+
}
|
|
855
|
+
export declare type AvpPermissionsDashboardIdentityAccess = {
|
|
856
|
+
__typename?: 'AVPPermissionsDashboardIdentityAccess';
|
|
857
|
+
dashboardId: Scalars['ID']['output'];
|
|
858
|
+
manage: AvpPermissionsPrincipals;
|
|
859
|
+
read: AvpPermissionsPrincipals;
|
|
860
|
+
write: AvpPermissionsPrincipals;
|
|
861
|
+
};
|
|
824
862
|
export declare type AvpPermissionsDashboardUserAccess = {
|
|
825
863
|
accessLevel: AvpPermissionsDashboardUserAccessLevel;
|
|
826
864
|
accountId: Scalars['String']['input'];
|
|
@@ -839,10 +877,22 @@ export declare type AvpPermissionsFailedDashboardUserAccess = {
|
|
|
839
877
|
errorMessage: Scalars['String']['output'];
|
|
840
878
|
user: AvpPermissionsDashboardUserAccessResult;
|
|
841
879
|
};
|
|
880
|
+
export declare type AvpPermissionsGetDashboardIdentityAccessInput = {
|
|
881
|
+
cloudId: Scalars['ID']['input'];
|
|
882
|
+
dashboardId: Scalars['ID']['input'];
|
|
883
|
+
directAccess?: InputMaybe<Scalars['Boolean']['input']>;
|
|
884
|
+
includeGroups?: InputMaybe<Scalars['Boolean']['input']>;
|
|
885
|
+
permissions?: InputMaybe<Array<AvpPermissionsAccessLevel>>;
|
|
886
|
+
};
|
|
842
887
|
export declare type AvpPermissionsHelloResponse = {
|
|
843
888
|
__typename?: 'AVPPermissionsHelloResponse';
|
|
844
889
|
hello?: Maybe<Scalars['String']['output']>;
|
|
845
890
|
};
|
|
891
|
+
export declare type AvpPermissionsPrincipals = {
|
|
892
|
+
__typename?: 'AVPPermissionsPrincipals';
|
|
893
|
+
groups: Array<Scalars['ID']['output']>;
|
|
894
|
+
users: Array<Scalars['ID']['output']>;
|
|
895
|
+
};
|
|
846
896
|
export declare type AvpPermissionsUpdateDashboardUserAccessInput = {
|
|
847
897
|
cloudId: Scalars['ID']['input'];
|
|
848
898
|
containerId?: InputMaybe<Scalars['ID']['input']>;
|
|
@@ -3072,6 +3122,7 @@ export declare type AgentStudioAssistant = AgentStudioAgent & Node & {
|
|
|
3072
3122
|
identityAccountId?: Maybe<Scalars['String']['output']>;
|
|
3073
3123
|
instructions?: Maybe<Scalars['String']['output']>;
|
|
3074
3124
|
isFavourite?: Maybe<Scalars['Boolean']['output']>;
|
|
3125
|
+
isVerified?: Maybe<Scalars['Boolean']['output']>;
|
|
3075
3126
|
knowledgeSources?: Maybe<AgentStudioKnowledgeConfiguration>;
|
|
3076
3127
|
name?: Maybe<Scalars['String']['output']>;
|
|
3077
3128
|
permissions?: Maybe<AgentStudioAgentPermissions>;
|
|
@@ -3117,6 +3168,7 @@ export declare type AgentStudioAssistantScenario = AgentStudioScenario & Node &
|
|
|
3117
3168
|
isDefault: Scalars['Boolean']['output'];
|
|
3118
3169
|
isValid: AgentStudioScenarioValidation;
|
|
3119
3170
|
isWebSearchEnabled?: Maybe<Scalars['Boolean']['output']>;
|
|
3171
|
+
isWebSearchEnabledForOrganization?: Maybe<Scalars['Boolean']['output']>;
|
|
3120
3172
|
knowledgeSources?: Maybe<AgentStudioKnowledgeConfiguration>;
|
|
3121
3173
|
mcpServerIds: Array<Scalars['ID']['output']>;
|
|
3122
3174
|
mcpServers?: Maybe<Array<Maybe<GraphIntegrationMcpServerNode>>>;
|
|
@@ -3626,6 +3678,7 @@ export declare type AgentStudioScenario = {
|
|
|
3626
3678
|
isDefault: Scalars['Boolean']['output'];
|
|
3627
3679
|
isValid: AgentStudioScenarioValidation;
|
|
3628
3680
|
isWebSearchEnabled?: Maybe<Scalars['Boolean']['output']>;
|
|
3681
|
+
isWebSearchEnabledForOrganization?: Maybe<Scalars['Boolean']['output']>;
|
|
3629
3682
|
knowledgeSources?: Maybe<AgentStudioKnowledgeConfiguration>;
|
|
3630
3683
|
mcpServerIds: Array<Scalars['ID']['output']>;
|
|
3631
3684
|
mcpServers?: Maybe<Array<Maybe<GraphIntegrationMcpServerNode>>>;
|
|
@@ -3872,6 +3925,12 @@ export declare type AgentStudioUpdateAgentUsePermissionSettingsInput = {
|
|
|
3872
3925
|
etag?: InputMaybe<Scalars['String']['input']>;
|
|
3873
3926
|
mode?: InputMaybe<AgentStudioUsePermissionMode>;
|
|
3874
3927
|
};
|
|
3928
|
+
export declare type AgentStudioUpdateAgentVerificationPayload = Payload & {
|
|
3929
|
+
__typename?: 'AgentStudioUpdateAgentVerificationPayload';
|
|
3930
|
+
agent?: Maybe<AgentStudioAgent>;
|
|
3931
|
+
errors?: Maybe<Array<MutationError>>;
|
|
3932
|
+
success: Scalars['Boolean']['output'];
|
|
3933
|
+
};
|
|
3875
3934
|
export declare type AgentStudioUpdateConversationStartersInput = {
|
|
3876
3935
|
conversationStarters?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
3877
3936
|
etag?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -3973,6 +4032,10 @@ export declare type AgentStudioWidgets = {
|
|
|
3973
4032
|
widgets?: Maybe<Array<AgentStudioWidget>>;
|
|
3974
4033
|
};
|
|
3975
4034
|
export declare type AgentStudioWidgetsByAgentIdAndContainerTypeResult = AgentStudioWidgets | QueryError;
|
|
4035
|
+
export declare type AgentWorkspaceHelloWorld = {
|
|
4036
|
+
__typename?: 'AgentWorkspaceHelloWorld';
|
|
4037
|
+
value: Scalars['String']['output'];
|
|
4038
|
+
};
|
|
3976
4039
|
export declare enum AiCoreApiQuestionType {
|
|
3977
4040
|
DraftDocument = "DRAFT_DOCUMENT",
|
|
3978
4041
|
KnowledgeBase = "KNOWLEDGE_BASE"
|
|
@@ -4367,7 +4430,7 @@ export declare type AppCustomScopeEdge = {
|
|
|
4367
4430
|
};
|
|
4368
4431
|
export declare type AppCustomScopeSpec = {
|
|
4369
4432
|
description: Scalars['String']['input'];
|
|
4370
|
-
displayName
|
|
4433
|
+
displayName: Scalars['String']['input'];
|
|
4371
4434
|
name: Scalars['String']['input'];
|
|
4372
4435
|
};
|
|
4373
4436
|
export declare type AppDeployment = {
|
|
@@ -7067,6 +7130,12 @@ export declare type AssetsDmEditDefaultAttributeMappingResponse = {
|
|
|
7067
7130
|
isSuccessful: Scalars['Boolean']['output'];
|
|
7068
7131
|
message: Scalars['String']['output'];
|
|
7069
7132
|
};
|
|
7133
|
+
export declare type AssetsDmErrorDetail = {
|
|
7134
|
+
__typename?: 'AssetsDMErrorDetail';
|
|
7135
|
+
code?: Maybe<Scalars['String']['output']>;
|
|
7136
|
+
field?: Maybe<Scalars['String']['output']>;
|
|
7137
|
+
message?: Maybe<Scalars['String']['output']>;
|
|
7138
|
+
};
|
|
7070
7139
|
export declare type AssetsDmExportedObjectsListFileStatusPayload = {
|
|
7071
7140
|
name: Scalars['String']['input'];
|
|
7072
7141
|
};
|
|
@@ -7153,6 +7222,7 @@ export declare type AssetsDmJobDataFilterInput = {
|
|
|
7153
7222
|
export declare type AssetsDmJobDataResponse = {
|
|
7154
7223
|
__typename?: 'AssetsDMJobDataResponse';
|
|
7155
7224
|
columns: Array<AssetsDmJobDataColumn>;
|
|
7225
|
+
errorDetails?: Maybe<Array<AssetsDmErrorDetail>>;
|
|
7156
7226
|
pagination: AssetsDmPaginationInfo;
|
|
7157
7227
|
rows: Array<Scalars['JSON']['output']>;
|
|
7158
7228
|
};
|
|
@@ -7919,7 +7989,7 @@ export declare type AssetsObjectReferenceAttributeOnObject = AssetsAttributeOnOb
|
|
|
7919
7989
|
export declare type AssetsObjectReferenceAttributeValue = {
|
|
7920
7990
|
__typename?: 'AssetsObjectReferenceAttributeValue';
|
|
7921
7991
|
displayValue: Scalars['String']['output'];
|
|
7922
|
-
value?: Maybe<
|
|
7992
|
+
value?: Maybe<AssetsObjectNode>;
|
|
7923
7993
|
};
|
|
7924
7994
|
export declare type AssetsObjectType = Node & {
|
|
7925
7995
|
__typename?: 'AssetsObjectType';
|
|
@@ -8021,9 +8091,9 @@ export declare type AssetsStatusAttributeValue = {
|
|
|
8021
8091
|
value?: Maybe<AssetsStatusType>;
|
|
8022
8092
|
};
|
|
8023
8093
|
export declare enum AssetsStatusCategory {
|
|
8024
|
-
|
|
8025
|
-
|
|
8026
|
-
|
|
8094
|
+
Active = "ACTIVE",
|
|
8095
|
+
Inactive = "INACTIVE",
|
|
8096
|
+
Pending = "PENDING"
|
|
8027
8097
|
}
|
|
8028
8098
|
export declare type AssetsStatusType = {
|
|
8029
8099
|
__typename?: 'AssetsStatusType';
|
|
@@ -8152,6 +8222,7 @@ export declare enum AtlassianProductHostingType {
|
|
|
8152
8222
|
export declare type AtlassianStudioUserProductPermissions = {
|
|
8153
8223
|
__typename?: 'AtlassianStudioUserProductPermissions';
|
|
8154
8224
|
isAbleToCreateAgents?: Maybe<Scalars['Boolean']['output']>;
|
|
8225
|
+
isAbleToGovernAgents?: Maybe<Scalars['Boolean']['output']>;
|
|
8155
8226
|
isAbleToGrantCreateAgentPermission?: Maybe<Scalars['Boolean']['output']>;
|
|
8156
8227
|
isConfluenceGlobalAdmin?: Maybe<Scalars['Boolean']['output']>;
|
|
8157
8228
|
isHelpCenterAdmin?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -8451,6 +8522,7 @@ export declare type BitbucketWorkspaceRepositoriesArgs = {
|
|
|
8451
8522
|
};
|
|
8452
8523
|
export declare type BlockServiceBatchRetrieveBlocksInput = {
|
|
8453
8524
|
blockAris: Array<Scalars['String']['input']>;
|
|
8525
|
+
blockIdentifiers?: InputMaybe<Array<BlockServiceBlockIdentifierInput>>;
|
|
8454
8526
|
documentAri?: InputMaybe<Scalars['String']['input']>;
|
|
8455
8527
|
};
|
|
8456
8528
|
export declare type BlockServiceBatchRetrieveBlocksPayload = {
|
|
@@ -8464,6 +8536,10 @@ export declare type BlockServiceBlockErrorPayload = {
|
|
|
8464
8536
|
code: Scalars['String']['output'];
|
|
8465
8537
|
reason: Scalars['String']['output'];
|
|
8466
8538
|
};
|
|
8539
|
+
export declare type BlockServiceBlockIdentifierInput = {
|
|
8540
|
+
blockAri: Scalars['String']['input'];
|
|
8541
|
+
blockInstanceId?: InputMaybe<Scalars['String']['input']>;
|
|
8542
|
+
};
|
|
8467
8543
|
export declare type BlockServiceBlockPayload = {
|
|
8468
8544
|
__typename?: 'BlockServiceBlockPayload';
|
|
8469
8545
|
blockAri: Scalars['String']['output'];
|
|
@@ -9134,6 +9210,28 @@ export declare type CcpAddPaymentMethodExperienceCapability = CommerceExperience
|
|
|
9134
9210
|
experienceUrl?: Maybe<Scalars['String']['output']>;
|
|
9135
9211
|
isAvailableToUser?: Maybe<Scalars['Boolean']['output']>;
|
|
9136
9212
|
};
|
|
9213
|
+
export declare enum CcpAllowancePoolAllocationDetailsType {
|
|
9214
|
+
Custom = "CUSTOM",
|
|
9215
|
+
Default = "DEFAULT"
|
|
9216
|
+
}
|
|
9217
|
+
export declare type CcpAllowancePoolAllocationsResponse = {
|
|
9218
|
+
__typename?: 'CcpAllowancePoolAllocationsResponse';
|
|
9219
|
+
allowance?: Maybe<Scalars['Float']['output']>;
|
|
9220
|
+
balance?: Maybe<Scalars['Float']['output']>;
|
|
9221
|
+
billingEntity?: Maybe<Scalars['String']['output']>;
|
|
9222
|
+
enforcementMode?: Maybe<CcpLatestAllowanceEnforcementModeType>;
|
|
9223
|
+
id?: Maybe<Scalars['String']['output']>;
|
|
9224
|
+
latestUsage?: Maybe<Scalars['Float']['output']>;
|
|
9225
|
+
overageCap?: Maybe<Scalars['Float']['output']>;
|
|
9226
|
+
poolId?: Maybe<Scalars['String']['output']>;
|
|
9227
|
+
poolShare?: Maybe<Scalars['Float']['output']>;
|
|
9228
|
+
type?: Maybe<CcpAllowancePoolAllocationDetailsType>;
|
|
9229
|
+
};
|
|
9230
|
+
export declare type CcpAllowancePoolMembersResponse = {
|
|
9231
|
+
__typename?: 'CcpAllowancePoolMembersResponse';
|
|
9232
|
+
allowance?: Maybe<Scalars['Float']['output']>;
|
|
9233
|
+
memberId?: Maybe<Scalars['String']['output']>;
|
|
9234
|
+
};
|
|
9137
9235
|
export declare enum CcpAndOr {
|
|
9138
9236
|
And = "AND",
|
|
9139
9237
|
Or = "OR"
|
|
@@ -9491,6 +9589,8 @@ export declare type CcpEligiblePromotionWindow = {
|
|
|
9491
9589
|
};
|
|
9492
9590
|
export declare type CcpEntitlement = CommerceEntitlement & Node & {
|
|
9493
9591
|
__typename?: 'CcpEntitlement';
|
|
9592
|
+
allowancePoolAllocations?: Maybe<Array<Maybe<CcpAllowancePoolAllocationsResponse>>>;
|
|
9593
|
+
allowancePoolMembers?: Maybe<Array<Maybe<CcpAllowancePoolMembersResponse>>>;
|
|
9494
9594
|
changeReason?: Maybe<Scalars['String']['output']>;
|
|
9495
9595
|
chargeElementLatestAllowancesDetails?: Maybe<CcpChargeElementLatestAllowancesResult>;
|
|
9496
9596
|
childrenIds?: Maybe<Array<Maybe<Scalars['ID']['output']>>>;
|
|
@@ -9535,6 +9635,9 @@ export declare type CcpEntitlement = CommerceEntitlement & Node & {
|
|
|
9535
9635
|
usage?: Maybe<Array<Maybe<CcpEntitlementUsage>>>;
|
|
9536
9636
|
version?: Maybe<Scalars['Int']['output']>;
|
|
9537
9637
|
};
|
|
9638
|
+
export declare type CcpEntitlementAllowancePoolMembersArgs = {
|
|
9639
|
+
poolId: Scalars['ID']['input'];
|
|
9640
|
+
};
|
|
9538
9641
|
export declare type CcpEntitlementChargeElementLatestAllowancesDetailsArgs = {
|
|
9539
9642
|
input: CcpChargeElementLatestAllowancesInput;
|
|
9540
9643
|
};
|
|
@@ -25250,6 +25353,12 @@ export declare type ConvoAiAgentSession = ConvoAiAgentSessionNode & {
|
|
|
25250
25353
|
state?: Maybe<Scalars['String']['output']>;
|
|
25251
25354
|
version?: Maybe<Scalars['Long']['output']>;
|
|
25252
25355
|
};
|
|
25356
|
+
export declare type ConvoAiAgentSessionCreate = {
|
|
25357
|
+
__typename?: 'ConvoAiAgentSessionCreate';
|
|
25358
|
+
agent?: Maybe<ConvoAiUser>;
|
|
25359
|
+
agentIdentityAccountId?: Maybe<Scalars['String']['output']>;
|
|
25360
|
+
conversationId: Scalars['String']['output'];
|
|
25361
|
+
};
|
|
25253
25362
|
export declare type ConvoAiAgentSessionNode = {
|
|
25254
25363
|
id?: Maybe<Scalars['ID']['output']>;
|
|
25255
25364
|
};
|
|
@@ -25445,6 +25554,12 @@ export declare type ConvoAiUpdateConversationStatePayload = Payload & {
|
|
|
25445
25554
|
errors?: Maybe<Array<MutationError>>;
|
|
25446
25555
|
success: Scalars['Boolean']['output'];
|
|
25447
25556
|
};
|
|
25557
|
+
export declare type ConvoAiUser = {
|
|
25558
|
+
__typename?: 'ConvoAiUser';
|
|
25559
|
+
accountId?: Maybe<Scalars['ID']['output']>;
|
|
25560
|
+
name?: Maybe<Scalars['String']['output']>;
|
|
25561
|
+
picture?: Maybe<Scalars['String']['output']>;
|
|
25562
|
+
};
|
|
25448
25563
|
export declare type CopyPolarisInsightsContainerInput = {
|
|
25449
25564
|
container?: InputMaybe<Scalars['ID']['input']>;
|
|
25450
25565
|
project: Scalars['ID']['input'];
|
|
@@ -27982,6 +28097,7 @@ export declare type CustomerServiceIndividualNotesArgs = {
|
|
|
27982
28097
|
};
|
|
27983
28098
|
export declare type CustomerServiceIndividualRequestsArgs = {
|
|
27984
28099
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
28100
|
+
filter?: InputMaybe<CustomerServiceRequestFilterInput>;
|
|
27985
28101
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
27986
28102
|
helpCenterId?: InputMaybe<Scalars['ID']['input']>;
|
|
27987
28103
|
};
|
|
@@ -28481,6 +28597,10 @@ export declare type CustomerServiceRequestEdge = {
|
|
|
28481
28597
|
cursor: Scalars['String']['output'];
|
|
28482
28598
|
node?: Maybe<CustomerServiceRequest>;
|
|
28483
28599
|
};
|
|
28600
|
+
export declare type CustomerServiceRequestFilterInput = {
|
|
28601
|
+
status?: InputMaybe<CustomerServiceStatusKey>;
|
|
28602
|
+
summaryContains?: InputMaybe<Scalars['String']['input']>;
|
|
28603
|
+
};
|
|
28484
28604
|
export declare type CustomerServiceRequestFormDataConnection = {
|
|
28485
28605
|
__typename?: 'CustomerServiceRequestFormDataConnection';
|
|
28486
28606
|
edges: Array<CustomerServiceRequestFormDataEdge>;
|
|
@@ -30356,6 +30476,23 @@ export declare type DevConsoleDeveloperSpaceWithRole = {
|
|
|
30356
30476
|
devSpaceId: Scalars['ID']['output'];
|
|
30357
30477
|
roles: Array<Scalars['String']['output']>;
|
|
30358
30478
|
};
|
|
30479
|
+
export declare type DevConsoleDownloadAppInstallationsResponse = {
|
|
30480
|
+
__typename?: 'DevConsoleDownloadAppInstallationsResponse';
|
|
30481
|
+
downloadUrl?: Maybe<Scalars['String']['output']>;
|
|
30482
|
+
errors?: Maybe<Array<QueryError>>;
|
|
30483
|
+
status: DevConsoleDownloadAppInstallationsStatus;
|
|
30484
|
+
};
|
|
30485
|
+
export declare enum DevConsoleDownloadAppInstallationsStatus {
|
|
30486
|
+
Completed = "COMPLETED",
|
|
30487
|
+
Failed = "FAILED",
|
|
30488
|
+
NotStarted = "NOT_STARTED",
|
|
30489
|
+
Processing = "PROCESSING"
|
|
30490
|
+
}
|
|
30491
|
+
export declare type DevConsoleFetchDownloadAppInstallationsStatusResponse = {
|
|
30492
|
+
__typename?: 'DevConsoleFetchDownloadAppInstallationsStatusResponse';
|
|
30493
|
+
errors?: Maybe<Array<QueryError>>;
|
|
30494
|
+
status: DevConsoleDownloadAppInstallationsStatus;
|
|
30495
|
+
};
|
|
30359
30496
|
export declare enum DevConsoleGroupBy {
|
|
30360
30497
|
ContextAri = "CONTEXT_ARI",
|
|
30361
30498
|
EnvironmentId = "ENVIRONMENT_ID"
|
|
@@ -30412,6 +30549,8 @@ export declare type DevConsoleQuery = {
|
|
|
30412
30549
|
appResourceUsageDetailedView: DevConsoleAppResourceUsageDetailedViewResponse;
|
|
30413
30550
|
appUsageOverview: DevConsoleAppUsageOverviewResponse;
|
|
30414
30551
|
appUsageTopSites: DevConsoleAppUsageTopSitesResponse;
|
|
30552
|
+
downloadAppInstallations: DevConsoleDownloadAppInstallationsResponse;
|
|
30553
|
+
fetchDownloadAppInstallationsStatus: DevConsoleFetchDownloadAppInstallationsStatusResponse;
|
|
30415
30554
|
getAppsWithoutConsent: DevConsoleAppsWithoutConsentResponse;
|
|
30416
30555
|
getDeveloperSpaceDetails?: Maybe<DevConsoleBulkDeveloperSpaceDetailsResponse>;
|
|
30417
30556
|
getDeveloperSpaceMembers?: Maybe<DevConsoleDeveloperSpaceMembersResponse>;
|
|
@@ -30439,6 +30578,12 @@ export declare type DevConsoleQueryAppUsageTopSitesArgs = {
|
|
|
30439
30578
|
appId: Scalars['ID']['input'];
|
|
30440
30579
|
filters: DevConsoleAppUsageTopSitesFiltersInput;
|
|
30441
30580
|
};
|
|
30581
|
+
export declare type DevConsoleQueryDownloadAppInstallationsArgs = {
|
|
30582
|
+
appId: Scalars['ID']['input'];
|
|
30583
|
+
};
|
|
30584
|
+
export declare type DevConsoleQueryFetchDownloadAppInstallationsStatusArgs = {
|
|
30585
|
+
appId: Scalars['ID']['input'];
|
|
30586
|
+
};
|
|
30442
30587
|
export declare type DevConsoleQueryGetAppsWithoutConsentArgs = {
|
|
30443
30588
|
developerSpaceId: Scalars['String']['input'];
|
|
30444
30589
|
};
|
|
@@ -32157,6 +32302,7 @@ export declare type EcosystemGlobalInstallationOverrideInput = {
|
|
|
32157
32302
|
};
|
|
32158
32303
|
export declare enum EcosystemGlobalInstallationOverrideKeys {
|
|
32159
32304
|
AllowEgressAnalytics = "ALLOW_EGRESS_ANALYTICS",
|
|
32305
|
+
AllowLlmCapability = "ALLOW_LLM_CAPABILITY",
|
|
32160
32306
|
AllowLogsAccess = "ALLOW_LOGS_ACCESS",
|
|
32161
32307
|
AllowRestApis = "ALLOW_REST_APIS"
|
|
32162
32308
|
}
|
|
@@ -32165,6 +32311,7 @@ export declare type EcosystemInstallationConfigInput = {
|
|
|
32165
32311
|
};
|
|
32166
32312
|
export declare enum EcosystemInstallationOverrideKeys {
|
|
32167
32313
|
AllowEgressAnalytics = "ALLOW_EGRESS_ANALYTICS",
|
|
32314
|
+
AllowLlmCapability = "ALLOW_LLM_CAPABILITY",
|
|
32168
32315
|
AllowRestApis = "ALLOW_REST_APIS"
|
|
32169
32316
|
}
|
|
32170
32317
|
export declare type EcosystemInstallationOverrides = {
|
|
@@ -33559,6 +33706,7 @@ export declare enum ExternalDocumentCategory {
|
|
|
33559
33706
|
Folder = "FOLDER",
|
|
33560
33707
|
Form = "FORM",
|
|
33561
33708
|
Image = "IMAGE",
|
|
33709
|
+
Notebook = "NOTEBOOK",
|
|
33562
33710
|
Other = "OTHER",
|
|
33563
33711
|
Page = "PAGE",
|
|
33564
33712
|
Pdf = "PDF",
|
|
@@ -33756,6 +33904,7 @@ export declare type ExternalMessage = Node & {
|
|
|
33756
33904
|
parent?: Maybe<ExternalEntity>;
|
|
33757
33905
|
parentId?: Maybe<Scalars['ID']['output']>;
|
|
33758
33906
|
provider?: Maybe<ExternalProvider>;
|
|
33907
|
+
reactionCount?: Maybe<Scalars['Int']['output']>;
|
|
33759
33908
|
thirdPartyId?: Maybe<Scalars['String']['output']>;
|
|
33760
33909
|
thumbnail?: Maybe<ExternalThumbnail>;
|
|
33761
33910
|
updateSequenceNumber?: Maybe<Scalars['Long']['output']>;
|
|
@@ -37195,6 +37344,7 @@ export declare enum GraphIntegrationSurface {
|
|
|
37195
37344
|
export declare type GraphIntegrationTwgCapabilityContainer = {
|
|
37196
37345
|
__typename?: 'GraphIntegrationTwgCapabilityContainer';
|
|
37197
37346
|
actionConfigurations: Array<GraphIntegrationActionAdminManagementActionNode>;
|
|
37347
|
+
availableCapabilities: Array<GraphIntegrationAppCapability>;
|
|
37198
37348
|
connections: Array<GraphIntegrationDataConnectorConnection>;
|
|
37199
37349
|
contextAri: Scalars['ID']['output'];
|
|
37200
37350
|
dataConnectors: Array<GraphIntegrationDataConnector>;
|
|
@@ -40668,8 +40818,6 @@ export declare type GraphStore = {
|
|
|
40668
40818
|
userHasRelevantProjectInverse?: Maybe<GraphStoreSimplifiedUserHasRelevantProjectInverseConnection>;
|
|
40669
40819
|
userHasTopProject?: Maybe<GraphStoreSimplifiedUserHasTopProjectConnection>;
|
|
40670
40820
|
userHasTopProjectInverse?: Maybe<GraphStoreSimplifiedUserHasTopProjectInverseConnection>;
|
|
40671
|
-
userInvitedUser?: Maybe<GraphStoreSimplifiedUserInvitedUserConnection>;
|
|
40672
|
-
userInvitedUserInverse?: Maybe<GraphStoreSimplifiedUserInvitedUserInverseConnection>;
|
|
40673
40821
|
userIsInTeam?: Maybe<GraphStoreSimplifiedUserIsInTeamConnection>;
|
|
40674
40822
|
userIsInTeamInverse?: Maybe<GraphStoreSimplifiedUserIsInTeamInverseConnection>;
|
|
40675
40823
|
userLastUpdatedDesign?: Maybe<GraphStoreSimplifiedUserLastUpdatedDesignConnection>;
|
|
@@ -46647,22 +46795,6 @@ export declare type GraphStoreUserHasTopProjectInverseArgs = {
|
|
|
46647
46795
|
queryContext?: InputMaybe<Scalars['String']['input']>;
|
|
46648
46796
|
sort?: InputMaybe<GraphStoreUserHasTopProjectSortInput>;
|
|
46649
46797
|
};
|
|
46650
|
-
export declare type GraphStoreUserInvitedUserArgs = {
|
|
46651
|
-
after?: InputMaybe<Scalars['String']['input']>;
|
|
46652
|
-
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
46653
|
-
first?: InputMaybe<Scalars['Int']['input']>;
|
|
46654
|
-
id: Scalars['ID']['input'];
|
|
46655
|
-
queryContext?: InputMaybe<Scalars['String']['input']>;
|
|
46656
|
-
sort?: InputMaybe<GraphStoreUserInvitedUserSortInput>;
|
|
46657
|
-
};
|
|
46658
|
-
export declare type GraphStoreUserInvitedUserInverseArgs = {
|
|
46659
|
-
after?: InputMaybe<Scalars['String']['input']>;
|
|
46660
|
-
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
46661
|
-
first?: InputMaybe<Scalars['Int']['input']>;
|
|
46662
|
-
id: Scalars['ID']['input'];
|
|
46663
|
-
queryContext?: InputMaybe<Scalars['String']['input']>;
|
|
46664
|
-
sort?: InputMaybe<GraphStoreUserInvitedUserSortInput>;
|
|
46665
|
-
};
|
|
46666
46798
|
export declare type GraphStoreUserIsInTeamArgs = {
|
|
46667
46799
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
46668
46800
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -63778,34 +63910,6 @@ export declare type GraphStoreSimplifiedUserHasTopProjectInverseEdge = {
|
|
|
63778
63910
|
};
|
|
63779
63911
|
export declare type GraphStoreSimplifiedUserHasTopProjectInverseUnion = AppUser | AtlassianAccountUser | CustomerUser;
|
|
63780
63912
|
export declare type GraphStoreSimplifiedUserHasTopProjectUnion = JiraProject;
|
|
63781
|
-
export declare type GraphStoreSimplifiedUserInvitedUserConnection = HasPageInfo & {
|
|
63782
|
-
__typename?: 'GraphStoreSimplifiedUserInvitedUserConnection';
|
|
63783
|
-
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedUserInvitedUserEdge>>>;
|
|
63784
|
-
pageInfo: PageInfo;
|
|
63785
|
-
};
|
|
63786
|
-
export declare type GraphStoreSimplifiedUserInvitedUserEdge = {
|
|
63787
|
-
__typename?: 'GraphStoreSimplifiedUserInvitedUserEdge';
|
|
63788
|
-
createdAt: Scalars['DateTime']['output'];
|
|
63789
|
-
cursor?: Maybe<Scalars['String']['output']>;
|
|
63790
|
-
id: Scalars['ID']['output'];
|
|
63791
|
-
lastUpdated: Scalars['DateTime']['output'];
|
|
63792
|
-
node?: Maybe<GraphStoreSimplifiedUserInvitedUserUnion>;
|
|
63793
|
-
};
|
|
63794
|
-
export declare type GraphStoreSimplifiedUserInvitedUserInverseConnection = HasPageInfo & {
|
|
63795
|
-
__typename?: 'GraphStoreSimplifiedUserInvitedUserInverseConnection';
|
|
63796
|
-
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedUserInvitedUserInverseEdge>>>;
|
|
63797
|
-
pageInfo: PageInfo;
|
|
63798
|
-
};
|
|
63799
|
-
export declare type GraphStoreSimplifiedUserInvitedUserInverseEdge = {
|
|
63800
|
-
__typename?: 'GraphStoreSimplifiedUserInvitedUserInverseEdge';
|
|
63801
|
-
createdAt: Scalars['DateTime']['output'];
|
|
63802
|
-
cursor?: Maybe<Scalars['String']['output']>;
|
|
63803
|
-
id: Scalars['ID']['output'];
|
|
63804
|
-
lastUpdated: Scalars['DateTime']['output'];
|
|
63805
|
-
node?: Maybe<GraphStoreSimplifiedUserInvitedUserInverseUnion>;
|
|
63806
|
-
};
|
|
63807
|
-
export declare type GraphStoreSimplifiedUserInvitedUserInverseUnion = AppUser | AtlassianAccountUser | CustomerUser;
|
|
63808
|
-
export declare type GraphStoreSimplifiedUserInvitedUserUnion = AppUser | AtlassianAccountUser | CustomerUser;
|
|
63809
63913
|
export declare type GraphStoreSimplifiedUserIsInTeamConnection = HasPageInfo & {
|
|
63810
63914
|
__typename?: 'GraphStoreSimplifiedUserIsInTeamConnection';
|
|
63811
63915
|
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedUserIsInTeamEdge>>>;
|
|
@@ -66595,9 +66699,6 @@ export declare type GraphStoreUserHasRelevantProjectSortInput = {
|
|
|
66595
66699
|
export declare type GraphStoreUserHasTopProjectSortInput = {
|
|
66596
66700
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
66597
66701
|
};
|
|
66598
|
-
export declare type GraphStoreUserInvitedUserSortInput = {
|
|
66599
|
-
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
66600
|
-
};
|
|
66601
66702
|
export declare type GraphStoreUserIsInTeamSortInput = {
|
|
66602
66703
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
66603
66704
|
};
|
|
@@ -66952,8 +67053,6 @@ export declare type GraphStoreV2 = {
|
|
|
66952
67053
|
atlassianUserHasExternalPositionInverse?: Maybe<GraphStoreV2SimplifiedAtlassianUserHasExternalPositionInverseConnection>;
|
|
66953
67054
|
atlassianUserHasRelevantJiraSpace?: Maybe<GraphStoreV2SimplifiedAtlassianUserHasRelevantJiraSpaceConnection>;
|
|
66954
67055
|
atlassianUserHasRelevantJiraSpaceInverse?: Maybe<GraphStoreV2SimplifiedAtlassianUserHasRelevantJiraSpaceInverseConnection>;
|
|
66955
|
-
atlassianUserInvitedAtlassianUser?: Maybe<GraphStoreV2SimplifiedAtlassianUserInvitedAtlassianUserConnection>;
|
|
66956
|
-
atlassianUserInvitedAtlassianUserInverse?: Maybe<GraphStoreV2SimplifiedAtlassianUserInvitedAtlassianUserInverseConnection>;
|
|
66957
67056
|
atlassianUserInvitedToLoomMeeting?: Maybe<GraphStoreV2SimplifiedAtlassianUserInvitedToLoomMeetingConnection>;
|
|
66958
67057
|
atlassianUserInvitedToLoomMeetingInverse?: Maybe<GraphStoreV2SimplifiedAtlassianUserInvitedToLoomMeetingInverseConnection>;
|
|
66959
67058
|
atlassianUserIsInAtlassianTeam?: Maybe<GraphStoreV2SimplifiedAtlassianUserIsInAtlassianTeamConnection>;
|
|
@@ -68326,20 +68425,6 @@ export declare type GraphStoreV2AtlassianUserHasRelevantJiraSpaceInverseArgs = {
|
|
|
68326
68425
|
id: Scalars['ID']['input'];
|
|
68327
68426
|
sort?: InputMaybe<GraphStoreV2AtlassianUserHasRelevantJiraSpaceSortInput>;
|
|
68328
68427
|
};
|
|
68329
|
-
export declare type GraphStoreV2AtlassianUserInvitedAtlassianUserArgs = {
|
|
68330
|
-
after?: InputMaybe<Scalars['String']['input']>;
|
|
68331
|
-
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
68332
|
-
first?: InputMaybe<Scalars['Int']['input']>;
|
|
68333
|
-
id: Scalars['ID']['input'];
|
|
68334
|
-
sort?: InputMaybe<GraphStoreV2AtlassianUserInvitedAtlassianUserSortInput>;
|
|
68335
|
-
};
|
|
68336
|
-
export declare type GraphStoreV2AtlassianUserInvitedAtlassianUserInverseArgs = {
|
|
68337
|
-
after?: InputMaybe<Scalars['String']['input']>;
|
|
68338
|
-
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
68339
|
-
first?: InputMaybe<Scalars['Int']['input']>;
|
|
68340
|
-
id: Scalars['ID']['input'];
|
|
68341
|
-
sort?: InputMaybe<GraphStoreV2AtlassianUserInvitedAtlassianUserSortInput>;
|
|
68342
|
-
};
|
|
68343
68428
|
export declare type GraphStoreV2AtlassianUserInvitedToLoomMeetingArgs = {
|
|
68344
68429
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
68345
68430
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -72206,9 +72291,6 @@ export declare type GraphStoreV2AtlassianUserHasRelevantJiraSpaceSortInput = {
|
|
|
72206
72291
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
72207
72292
|
toAti?: InputMaybe<GraphStoreSortInput>;
|
|
72208
72293
|
};
|
|
72209
|
-
export declare type GraphStoreV2AtlassianUserInvitedAtlassianUserSortInput = {
|
|
72210
|
-
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
72211
|
-
};
|
|
72212
72294
|
export declare type GraphStoreV2AtlassianUserInvitedToLoomMeetingSortInput = {
|
|
72213
72295
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
72214
72296
|
};
|
|
@@ -76940,34 +77022,6 @@ export declare type GraphStoreV2SimplifiedAtlassianUserHasRelevantJiraSpaceInver
|
|
|
76940
77022
|
};
|
|
76941
77023
|
export declare type GraphStoreV2SimplifiedAtlassianUserHasRelevantJiraSpaceInverseUnion = AppUser | AtlassianAccountUser | CustomerUser;
|
|
76942
77024
|
export declare type GraphStoreV2SimplifiedAtlassianUserHasRelevantJiraSpaceUnion = JiraProject;
|
|
76943
|
-
export declare type GraphStoreV2SimplifiedAtlassianUserInvitedAtlassianUserConnection = HasPageInfo & {
|
|
76944
|
-
__typename?: 'GraphStoreV2SimplifiedAtlassianUserInvitedAtlassianUserConnection';
|
|
76945
|
-
edges?: Maybe<Array<Maybe<GraphStoreV2SimplifiedAtlassianUserInvitedAtlassianUserEdge>>>;
|
|
76946
|
-
pageInfo: PageInfo;
|
|
76947
|
-
};
|
|
76948
|
-
export declare type GraphStoreV2SimplifiedAtlassianUserInvitedAtlassianUserEdge = {
|
|
76949
|
-
__typename?: 'GraphStoreV2SimplifiedAtlassianUserInvitedAtlassianUserEdge';
|
|
76950
|
-
createdAt: Scalars['DateTime']['output'];
|
|
76951
|
-
cursor?: Maybe<Scalars['String']['output']>;
|
|
76952
|
-
id: Scalars['ID']['output'];
|
|
76953
|
-
lastUpdated: Scalars['DateTime']['output'];
|
|
76954
|
-
node?: Maybe<GraphStoreV2SimplifiedAtlassianUserInvitedAtlassianUserUnion>;
|
|
76955
|
-
};
|
|
76956
|
-
export declare type GraphStoreV2SimplifiedAtlassianUserInvitedAtlassianUserInverseConnection = HasPageInfo & {
|
|
76957
|
-
__typename?: 'GraphStoreV2SimplifiedAtlassianUserInvitedAtlassianUserInverseConnection';
|
|
76958
|
-
edges?: Maybe<Array<Maybe<GraphStoreV2SimplifiedAtlassianUserInvitedAtlassianUserInverseEdge>>>;
|
|
76959
|
-
pageInfo: PageInfo;
|
|
76960
|
-
};
|
|
76961
|
-
export declare type GraphStoreV2SimplifiedAtlassianUserInvitedAtlassianUserInverseEdge = {
|
|
76962
|
-
__typename?: 'GraphStoreV2SimplifiedAtlassianUserInvitedAtlassianUserInverseEdge';
|
|
76963
|
-
createdAt: Scalars['DateTime']['output'];
|
|
76964
|
-
cursor?: Maybe<Scalars['String']['output']>;
|
|
76965
|
-
id: Scalars['ID']['output'];
|
|
76966
|
-
lastUpdated: Scalars['DateTime']['output'];
|
|
76967
|
-
node?: Maybe<GraphStoreV2SimplifiedAtlassianUserInvitedAtlassianUserInverseUnion>;
|
|
76968
|
-
};
|
|
76969
|
-
export declare type GraphStoreV2SimplifiedAtlassianUserInvitedAtlassianUserInverseUnion = AppUser | AtlassianAccountUser | CustomerUser;
|
|
76970
|
-
export declare type GraphStoreV2SimplifiedAtlassianUserInvitedAtlassianUserUnion = AppUser | AtlassianAccountUser | CustomerUser;
|
|
76971
77025
|
export declare type GraphStoreV2SimplifiedAtlassianUserInvitedToLoomMeetingConnection = HasPageInfo & {
|
|
76972
77026
|
__typename?: 'GraphStoreV2SimplifiedAtlassianUserInvitedToLoomMeetingConnection';
|
|
76973
77027
|
edges?: Maybe<Array<Maybe<GraphStoreV2SimplifiedAtlassianUserInvitedToLoomMeetingEdge>>>;
|
|
@@ -84901,6 +84955,7 @@ export declare type GrowthUnifiedProfileJiraOnboardingContext = {
|
|
|
84901
84955
|
statusNames?: Maybe<Array<Maybe<Scalars['String']['output']>>>;
|
|
84902
84956
|
teamType?: Maybe<GrowthUnifiedProfileTeamType>;
|
|
84903
84957
|
template?: Maybe<Scalars['String']['output']>;
|
|
84958
|
+
thirdPartyTools?: Maybe<Array<Maybe<GrowthUnifiedProfileThirdPartyTools>>>;
|
|
84904
84959
|
};
|
|
84905
84960
|
export declare type GrowthUnifiedProfileJiraOnboardingContextInput = {
|
|
84906
84961
|
experienceLevel?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -84913,6 +84968,7 @@ export declare type GrowthUnifiedProfileJiraOnboardingContextInput = {
|
|
|
84913
84968
|
statusNames?: InputMaybe<Array<InputMaybe<Scalars['String']['input']>>>;
|
|
84914
84969
|
teamType?: InputMaybe<GrowthUnifiedProfileTeamType>;
|
|
84915
84970
|
template?: InputMaybe<Scalars['String']['input']>;
|
|
84971
|
+
thirdPartyTools?: InputMaybe<Array<InputMaybe<GrowthUnifiedProfileThirdPartyTools>>>;
|
|
84916
84972
|
};
|
|
84917
84973
|
export declare type GrowthUnifiedProfileLinkEngagement = {
|
|
84918
84974
|
__typename?: 'GrowthUnifiedProfileLinkEngagement';
|
|
@@ -85203,6 +85259,22 @@ export declare enum GrowthUnifiedProfileTenantType {
|
|
|
85203
85259
|
CloudId = "CLOUD_ID",
|
|
85204
85260
|
OrgId = "ORG_ID"
|
|
85205
85261
|
}
|
|
85262
|
+
export declare enum GrowthUnifiedProfileThirdPartyTools {
|
|
85263
|
+
Asana = "ASANA",
|
|
85264
|
+
Bitbucket = "BITBUCKET",
|
|
85265
|
+
Canva = "CANVA",
|
|
85266
|
+
Confluence = "CONFLUENCE",
|
|
85267
|
+
Dropbox = "DROPBOX",
|
|
85268
|
+
Figma = "FIGMA",
|
|
85269
|
+
Github = "GITHUB",
|
|
85270
|
+
Gitlab = "GITLAB",
|
|
85271
|
+
Google = "GOOGLE",
|
|
85272
|
+
Microsoft = "MICROSOFT",
|
|
85273
|
+
Monday = "MONDAY",
|
|
85274
|
+
Notion = "NOTION",
|
|
85275
|
+
Slack = "SLACK",
|
|
85276
|
+
Trello = "TRELLO"
|
|
85277
|
+
}
|
|
85206
85278
|
export declare type GrowthUnifiedProfileTrialContext = {
|
|
85207
85279
|
__typename?: 'GrowthUnifiedProfileTrialContext';
|
|
85208
85280
|
createdAt?: Maybe<Scalars['String']['output']>;
|
|
@@ -85673,6 +85745,7 @@ export declare type HelpCenterCreateInput = {
|
|
|
85673
85745
|
homePageLayout?: InputMaybe<HelpCenterHomePageLayoutInput>;
|
|
85674
85746
|
name: HelpCenterNameInput;
|
|
85675
85747
|
projectMapping?: InputMaybe<HelpCenterAddProjectMappingInput>;
|
|
85748
|
+
rovoConfig?: InputMaybe<HelpCenterRovoConfig>;
|
|
85676
85749
|
slug: Scalars['String']['input'];
|
|
85677
85750
|
workspaceARI: Scalars['String']['input'];
|
|
85678
85751
|
};
|
|
@@ -86224,6 +86297,9 @@ export declare type HelpCenterReportingPerformanceIndicatorsWithMetaData = {
|
|
|
86224
86297
|
refreshedAt?: Maybe<Scalars['DateTime']['output']>;
|
|
86225
86298
|
};
|
|
86226
86299
|
export declare type HelpCenterReportingResult = HelpCenterReporting | QueryError;
|
|
86300
|
+
export declare type HelpCenterRovoConfig = {
|
|
86301
|
+
agentId?: InputMaybe<Scalars['String']['input']>;
|
|
86302
|
+
};
|
|
86227
86303
|
export declare enum HelpCenterSortMode {
|
|
86228
86304
|
Manual = "MANUAL",
|
|
86229
86305
|
Parent = "PARENT",
|
|
@@ -90426,7 +90502,8 @@ export declare enum JiraBoardSwimlaneStrategy {
|
|
|
90426
90502
|
None = "NONE",
|
|
90427
90503
|
ParentChild = "PARENT_CHILD",
|
|
90428
90504
|
Project = "PROJECT",
|
|
90429
|
-
RequestType = "REQUEST_TYPE"
|
|
90505
|
+
RequestType = "REQUEST_TYPE",
|
|
90506
|
+
TownsquareProject = "TOWNSQUARE_PROJECT"
|
|
90430
90507
|
}
|
|
90431
90508
|
export declare enum JiraBoardType {
|
|
90432
90509
|
Kanban = "KANBAN",
|
|
@@ -96813,6 +96890,7 @@ export declare type JiraIssueField = {
|
|
|
96813
96890
|
export declare type JiraIssueFieldConfig = Node & {
|
|
96814
96891
|
__typename?: 'JiraIssueFieldConfig';
|
|
96815
96892
|
allowedFormatConfigs?: Maybe<Array<JiraAllowedFieldFormatConfig>>;
|
|
96893
|
+
areOptionsSupported?: Maybe<Scalars['Boolean']['output']>;
|
|
96816
96894
|
associatedContexts?: Maybe<JiraContextConnection>;
|
|
96817
96895
|
associatedContextsCount?: Maybe<Scalars['Int']['output']>;
|
|
96818
96896
|
associatedContextsV2?: Maybe<JiraContextConnection>;
|
|
@@ -96820,6 +96898,7 @@ export declare type JiraIssueFieldConfig = Node & {
|
|
|
96820
96898
|
associatedFieldConfigSchemesCount?: Maybe<Scalars['Int']['output']>;
|
|
96821
96899
|
associatedFieldSchemes?: Maybe<JiraFieldSchemesConnection>;
|
|
96822
96900
|
associatedFieldSchemesCount?: Maybe<Scalars['Int']['output']>;
|
|
96901
|
+
associatedOptionsCount?: Maybe<Scalars['Int']['output']>;
|
|
96823
96902
|
associatedProjects?: Maybe<JiraProjectConnection>;
|
|
96824
96903
|
associatedProjectsCount?: Maybe<Scalars['Int']['output']>;
|
|
96825
96904
|
associatedProjectsV2?: Maybe<JiraProjectConnection>;
|
|
@@ -96848,6 +96927,7 @@ export declare type JiraIssueFieldConfig = Node & {
|
|
|
96848
96927
|
isForge?: Maybe<Scalars['Boolean']['output']>;
|
|
96849
96928
|
isGlobal?: Maybe<Scalars['Boolean']['output']>;
|
|
96850
96929
|
isLocked?: Maybe<Scalars['Boolean']['output']>;
|
|
96930
|
+
isOptionsCountOverLimit?: Maybe<Scalars['Boolean']['output']>;
|
|
96851
96931
|
isTrashed?: Maybe<Scalars['Boolean']['output']>;
|
|
96852
96932
|
isUnscreenable?: Maybe<Scalars['Boolean']['output']>;
|
|
96853
96933
|
jqlClauseNames?: Maybe<Array<Scalars['String']['output']>>;
|
|
@@ -97549,6 +97629,7 @@ export declare type JiraIssueSearchAggregationConfigSettings = {
|
|
|
97549
97629
|
__typename?: 'JiraIssueSearchAggregationConfigSettings';
|
|
97550
97630
|
aggregationFields?: Maybe<Array<JiraIssueSearchFieldAggregation>>;
|
|
97551
97631
|
canEnableAggregation?: Maybe<Scalars['Boolean']['output']>;
|
|
97632
|
+
hasExceededAggregationLimit?: Maybe<Scalars['Boolean']['output']>;
|
|
97552
97633
|
};
|
|
97553
97634
|
export declare enum JiraIssueSearchAggregationFunction {
|
|
97554
97635
|
Rollup = "ROLLUP"
|
|
@@ -98410,8 +98491,13 @@ export declare enum JiraJourneyConfigurationType {
|
|
|
98410
98491
|
}
|
|
98411
98492
|
export declare type JiraJourneyCustomizationSettings = {
|
|
98412
98493
|
__typename?: 'JiraJourneyCustomizationSettings';
|
|
98494
|
+
agentId?: Maybe<Scalars['ID']['output']>;
|
|
98413
98495
|
timeout?: Maybe<Scalars['Int']['output']>;
|
|
98414
98496
|
};
|
|
98497
|
+
export declare type JiraJourneyCustomizationSettingsInput = {
|
|
98498
|
+
agentId: Scalars['ID']['input'];
|
|
98499
|
+
timeout: Scalars['Int']['input'];
|
|
98500
|
+
};
|
|
98415
98501
|
export declare type JiraJourneyItem = JiraJourneyStatusDependency | JiraJourneyWorkItem;
|
|
98416
98502
|
export declare type JiraJourneyItemCommon = {
|
|
98417
98503
|
id: Scalars['ID']['output'];
|
|
@@ -103520,6 +103606,15 @@ export declare type JiraPublishJourneyConfigurationInput = {
|
|
|
103520
103606
|
type?: InputMaybe<JiraJourneyConfigurationType>;
|
|
103521
103607
|
version: Scalars['Long']['input'];
|
|
103522
103608
|
};
|
|
103609
|
+
export declare type JiraPublishTimelineViewConfigInput = {
|
|
103610
|
+
settings?: InputMaybe<JiraTimelineViewSettings>;
|
|
103611
|
+
viewId: Scalars['ID']['input'];
|
|
103612
|
+
};
|
|
103613
|
+
export declare type JiraPublishTimelineViewConfigPayload = Payload & {
|
|
103614
|
+
__typename?: 'JiraPublishTimelineViewConfigPayload';
|
|
103615
|
+
errors?: Maybe<Array<MutationError>>;
|
|
103616
|
+
success: Scalars['Boolean']['output'];
|
|
103617
|
+
};
|
|
103523
103618
|
export declare type JiraPullRequestReviewer = {
|
|
103524
103619
|
__typename?: 'JiraPullRequestReviewer';
|
|
103525
103620
|
avatar?: Maybe<JiraAvatar>;
|
|
@@ -109058,6 +109153,11 @@ export declare enum JiraTimelineViewRangeMode {
|
|
|
109058
109153
|
Quarters = "QUARTERS",
|
|
109059
109154
|
Weeks = "WEEKS"
|
|
109060
109155
|
}
|
|
109156
|
+
export declare type JiraTimelineViewSettings = {
|
|
109157
|
+
hideDone?: InputMaybe<Scalars['Boolean']['input']>;
|
|
109158
|
+
jql?: InputMaybe<Scalars['String']['input']>;
|
|
109159
|
+
rangeMode?: InputMaybe<JiraTimelineViewRangeMode>;
|
|
109160
|
+
};
|
|
109061
109161
|
export declare type JiraTimelineVirtualField = {
|
|
109062
109162
|
issue?: Maybe<JiraIssue>;
|
|
109063
109163
|
};
|
|
@@ -109544,6 +109644,7 @@ export declare type JiraUpdateJourneyConfigurationPayload = Payload & {
|
|
|
109544
109644
|
success: Scalars['Boolean']['output'];
|
|
109545
109645
|
};
|
|
109546
109646
|
export declare type JiraUpdateJourneyCustomizationSettingsInput = {
|
|
109647
|
+
customizationSettings?: InputMaybe<JiraJourneyCustomizationSettingsInput>;
|
|
109547
109648
|
etag: Scalars['String']['input'];
|
|
109548
109649
|
journeyId: Scalars['ID']['input'];
|
|
109549
109650
|
journeyVersion: Scalars['Long']['input'];
|
|
@@ -112431,6 +112532,12 @@ export declare type JsmConversationClaimConversationPayload = Payload & {
|
|
|
112431
112532
|
errors?: Maybe<Array<MutationError>>;
|
|
112432
112533
|
success: Scalars['Boolean']['output'];
|
|
112433
112534
|
};
|
|
112535
|
+
export declare type JsmConversationClaimedConversationMessage = {
|
|
112536
|
+
__typename?: 'JsmConversationClaimedConversationMessage';
|
|
112537
|
+
author?: Maybe<Scalars['ID']['output']>;
|
|
112538
|
+
conversationId: Scalars['ID']['output'];
|
|
112539
|
+
plainTextContent?: Maybe<Scalars['String']['output']>;
|
|
112540
|
+
};
|
|
112434
112541
|
export declare type JsmConversationCloseConversationInput = {
|
|
112435
112542
|
channelId: Scalars['ID']['input'];
|
|
112436
112543
|
cloudId: Scalars['ID']['input'];
|
|
@@ -112479,6 +112586,35 @@ export declare enum JsmConversationMessageSource {
|
|
|
112479
112586
|
Helpseeker = "HELPSEEKER",
|
|
112480
112587
|
System = "SYSTEM"
|
|
112481
112588
|
}
|
|
112589
|
+
export declare type JsmConversationSettings = {
|
|
112590
|
+
__typename?: 'JsmConversationSettings';
|
|
112591
|
+
projectAri?: Maybe<Scalars['String']['output']>;
|
|
112592
|
+
slaList?: Maybe<Array<Maybe<JsmConversationSla>>>;
|
|
112593
|
+
teamId?: Maybe<Scalars['String']['output']>;
|
|
112594
|
+
};
|
|
112595
|
+
export declare type JsmConversationSettingsInput = {
|
|
112596
|
+
projectAri?: InputMaybe<Scalars['String']['input']>;
|
|
112597
|
+
slaList?: InputMaybe<Array<JsmConversationSlaInput>>;
|
|
112598
|
+
teamId?: InputMaybe<Scalars['String']['input']>;
|
|
112599
|
+
};
|
|
112600
|
+
export declare type JsmConversationSettingsPayload = Payload & {
|
|
112601
|
+
__typename?: 'JsmConversationSettingsPayload';
|
|
112602
|
+
errors?: Maybe<Array<MutationError>>;
|
|
112603
|
+
success: Scalars['Boolean']['output'];
|
|
112604
|
+
};
|
|
112605
|
+
export declare type JsmConversationSla = {
|
|
112606
|
+
__typename?: 'JsmConversationSla';
|
|
112607
|
+
slaDuration?: Maybe<Scalars['String']['output']>;
|
|
112608
|
+
slaType?: Maybe<JsmConversationSlaType>;
|
|
112609
|
+
};
|
|
112610
|
+
export declare type JsmConversationSlaInput = {
|
|
112611
|
+
slaDuration: Scalars['String']['input'];
|
|
112612
|
+
slaType: JsmConversationSlaType;
|
|
112613
|
+
};
|
|
112614
|
+
export declare enum JsmConversationSlaType {
|
|
112615
|
+
TimeToClaimConversation = "TIME_TO_CLAIM_CONVERSATION",
|
|
112616
|
+
TimeToReplyAfterHsMessage = "TIME_TO_REPLY_AFTER_HS_MESSAGE"
|
|
112617
|
+
}
|
|
112482
112618
|
export declare enum JsmConversationStatus {
|
|
112483
112619
|
Closed = "CLOSED",
|
|
112484
112620
|
InProgress = "IN_PROGRESS",
|
|
@@ -112487,6 +112623,7 @@ export declare enum JsmConversationStatus {
|
|
|
112487
112623
|
Timeout = "TIMEOUT",
|
|
112488
112624
|
Unassigned = "UNASSIGNED"
|
|
112489
112625
|
}
|
|
112626
|
+
export declare type JsmConversationUpdate = JsmConversation | JsmConversationClaimedConversationMessage | QueryError;
|
|
112490
112627
|
export declare type JsonContentProperty = {
|
|
112491
112628
|
__typename?: 'JsonContentProperty';
|
|
112492
112629
|
content?: Maybe<Content>;
|
|
@@ -113473,9 +113610,12 @@ export declare type KnowledgeDiscoveryDeleteBookmarksPayload = Payload & {
|
|
|
113473
113610
|
successCount?: Maybe<Scalars['Int']['output']>;
|
|
113474
113611
|
};
|
|
113475
113612
|
export declare enum KnowledgeDiscoveryDetectionType {
|
|
113613
|
+
Bookmark = "BOOKMARK",
|
|
113614
|
+
ContentNav = "CONTENT_NAV",
|
|
113476
113615
|
EntityRecognition = "ENTITY_RECOGNITION",
|
|
113477
113616
|
Heuristic = "HEURISTIC",
|
|
113478
113617
|
Llm = "LLM",
|
|
113618
|
+
None = "NONE",
|
|
113479
113619
|
Slm = "SLM"
|
|
113480
113620
|
}
|
|
113481
113621
|
export declare type KnowledgeDiscoveryDismissAdminhubBookmarkSuggestionInput = {
|
|
@@ -113608,6 +113748,7 @@ export declare type KnowledgeDiscoveryMutationApi = {
|
|
|
113608
113748
|
deleteBookmarks?: Maybe<KnowledgeDiscoveryDeleteBookmarksPayload>;
|
|
113609
113749
|
dismissBookmarkSuggestion?: Maybe<KnowledgeDiscoveryDismissAdminhubBookmarkSuggestionPayload>;
|
|
113610
113750
|
markZeroQueryInteracted?: Maybe<KnowledgeDiscoveryMarkZeroQueryInteractedPayload>;
|
|
113751
|
+
markZeroQueryInteractedV1?: Maybe<KnowledgeDiscoveryMarkZeroQueryInteractedPayload>;
|
|
113611
113752
|
updateBookmark?: Maybe<KnowledgeDiscoveryUpdateAdminhubBookmarkPayload>;
|
|
113612
113753
|
updateRelatedEntities?: Maybe<KnowledgeDiscoveryUpdateRelatedEntitiesPayload>;
|
|
113613
113754
|
updateUserKeyPhraseInteraction?: Maybe<KnowledgeDiscoveryUpdateUserKeyPhraseInteractionPayload>;
|
|
@@ -113633,6 +113774,9 @@ export declare type KnowledgeDiscoveryMutationApiDismissBookmarkSuggestionArgs =
|
|
|
113633
113774
|
export declare type KnowledgeDiscoveryMutationApiMarkZeroQueryInteractedArgs = {
|
|
113634
113775
|
input: KnowledgeDiscoveryMarkZeroQueryInteractedInput;
|
|
113635
113776
|
};
|
|
113777
|
+
export declare type KnowledgeDiscoveryMutationApiMarkZeroQueryInteractedV1Args = {
|
|
113778
|
+
input: KnowledgeDiscoveryMarkZeroQueryInteractedInput;
|
|
113779
|
+
};
|
|
113636
113780
|
export declare type KnowledgeDiscoveryMutationApiUpdateBookmarkArgs = {
|
|
113637
113781
|
input: KnowledgeDiscoveryUpdateAdminhubBookmarkInput;
|
|
113638
113782
|
};
|
|
@@ -113673,6 +113817,13 @@ export declare type KnowledgeDiscoveryNoneIntent = KnowledgeDiscoveryIntent & {
|
|
|
113673
113817
|
subTypes: Array<KnowledgeDiscoveryQuerySubType>;
|
|
113674
113818
|
transformedQuery: Scalars['String']['output'];
|
|
113675
113819
|
};
|
|
113820
|
+
export declare type KnowledgeDiscoveryOrgChartIntent = KnowledgeDiscoveryIntent & {
|
|
113821
|
+
__typename?: 'KnowledgeDiscoveryOrgChartIntent';
|
|
113822
|
+
classification: KnowledgeDiscoveryQueryClassification;
|
|
113823
|
+
detectionType: KnowledgeDiscoveryDetectionType;
|
|
113824
|
+
subTypes: Array<KnowledgeDiscoveryQuerySubType>;
|
|
113825
|
+
transformedQuery: Scalars['String']['output'];
|
|
113826
|
+
};
|
|
113676
113827
|
export declare type KnowledgeDiscoveryPageInfo = {
|
|
113677
113828
|
__typename?: 'KnowledgeDiscoveryPageInfo';
|
|
113678
113829
|
endCursor?: Maybe<Scalars['String']['output']>;
|
|
@@ -113735,6 +113886,7 @@ export declare type KnowledgeDiscoveryQueryApi = {
|
|
|
113735
113886
|
topic?: Maybe<KnowledgeDiscoveryTopicResult>;
|
|
113736
113887
|
topicsByAris?: Maybe<Array<Maybe<KnowledgeDiscoveryTopicByAri>>>;
|
|
113737
113888
|
zeroQueries?: Maybe<KnowledgeDiscoveryZeroQueriesResult>;
|
|
113889
|
+
zeroQueriesV1?: Maybe<KnowledgeDiscoveryZeroQueriesResult>;
|
|
113738
113890
|
};
|
|
113739
113891
|
export declare type KnowledgeDiscoveryQueryApiAdminhubBookmarkArgs = {
|
|
113740
113892
|
cloudId: Scalars['ID']['input'];
|
|
@@ -113853,6 +114005,10 @@ export declare type KnowledgeDiscoveryQueryApiZeroQueriesArgs = {
|
|
|
113853
114005
|
cloudId: Scalars['String']['input'];
|
|
113854
114006
|
product?: InputMaybe<KnowledgeDiscoveryProduct>;
|
|
113855
114007
|
};
|
|
114008
|
+
export declare type KnowledgeDiscoveryQueryApiZeroQueriesV1Args = {
|
|
114009
|
+
cloudId: Scalars['String']['input'];
|
|
114010
|
+
product?: InputMaybe<KnowledgeDiscoveryProduct>;
|
|
114011
|
+
};
|
|
113856
114012
|
export declare enum KnowledgeDiscoveryQueryClassification {
|
|
113857
114013
|
Bookmark = "BOOKMARK",
|
|
113858
114014
|
JiraNaturalLanguageQuery = "JIRA_NATURAL_LANGUAGE_QUERY",
|
|
@@ -113918,10 +114074,12 @@ export declare type KnowledgeDiscoveryScopeInput = {
|
|
|
113918
114074
|
scope: KnowledgeDiscoveryDefinitionScope;
|
|
113919
114075
|
};
|
|
113920
114076
|
export declare enum KnowledgeDiscoverySearchQueryClassification {
|
|
114077
|
+
JiraNaturalLanguageQuery = "JIRA_NATURAL_LANGUAGE_QUERY",
|
|
113921
114078
|
KeywordOrAcronym = "KEYWORD_OR_ACRONYM",
|
|
113922
114079
|
NaturalLanguageQuery = "NATURAL_LANGUAGE_QUERY",
|
|
113923
114080
|
Navigational = "NAVIGATIONAL",
|
|
113924
114081
|
None = "NONE",
|
|
114082
|
+
OrgChart = "ORG_CHART",
|
|
113925
114083
|
Person = "PERSON",
|
|
113926
114084
|
Team = "TEAM",
|
|
113927
114085
|
Topic = "TOPIC"
|
|
@@ -114085,6 +114243,7 @@ export declare enum KnowledgeDiscoveryZeroQueryType {
|
|
|
114085
114243
|
ConfluencePagesCreatedCollaborator = "CONFLUENCE_PAGES_CREATED_COLLABORATOR",
|
|
114086
114244
|
ConfluencePagesCreatedCollaborator_7Days = "CONFLUENCE_PAGES_CREATED_COLLABORATOR_7_DAYS",
|
|
114087
114245
|
ConfluencePagesCreatedCollaborator_30Days = "CONFLUENCE_PAGES_CREATED_COLLABORATOR_30_DAYS",
|
|
114246
|
+
JiraAssignedCollaboratorInProject = "JIRA_ASSIGNED_COLLABORATOR_IN_PROJECT",
|
|
114088
114247
|
JiraMyWorkItems = "JIRA_MY_WORK_ITEMS",
|
|
114089
114248
|
JiraNlq = "JIRA_NLQ",
|
|
114090
114249
|
JiraNlqCollaborator = "JIRA_NLQ_COLLABORATOR",
|
|
@@ -114409,6 +114568,7 @@ export declare type LogQueryInput = {
|
|
|
114409
114568
|
appVersion?: InputMaybe<Scalars['String']['input']>;
|
|
114410
114569
|
appVersions?: InputMaybe<Array<InputMaybe<Scalars['String']['input']>>>;
|
|
114411
114570
|
container?: InputMaybe<Scalars['String']['input']>;
|
|
114571
|
+
containers?: InputMaybe<Array<InputMaybe<Scalars['String']['input']>>>;
|
|
114412
114572
|
contexts?: InputMaybe<Array<InputMaybe<Context>>>;
|
|
114413
114573
|
dates?: InputMaybe<DateSearchInput>;
|
|
114414
114574
|
editions?: InputMaybe<Array<InputMaybe<EditionValue>>>;
|
|
@@ -114416,6 +114576,7 @@ export declare type LogQueryInput = {
|
|
|
114416
114576
|
functionKeys?: InputMaybe<Array<InputMaybe<Scalars['String']['input']>>>;
|
|
114417
114577
|
installationContexts?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
114418
114578
|
instance?: InputMaybe<Scalars['String']['input']>;
|
|
114579
|
+
instances?: InputMaybe<Array<InputMaybe<Scalars['String']['input']>>>;
|
|
114419
114580
|
invocationId?: InputMaybe<Scalars['String']['input']>;
|
|
114420
114581
|
licenseStates?: InputMaybe<Array<InputMaybe<LicenseValue>>>;
|
|
114421
114582
|
lvl?: InputMaybe<Array<InputMaybe<Scalars['String']['input']>>>;
|
|
@@ -114423,6 +114584,7 @@ export declare type LogQueryInput = {
|
|
|
114423
114584
|
msg?: InputMaybe<Scalars['String']['input']>;
|
|
114424
114585
|
runtime?: InputMaybe<Scalars['String']['input']>;
|
|
114425
114586
|
service?: InputMaybe<Scalars['String']['input']>;
|
|
114587
|
+
services?: InputMaybe<Array<InputMaybe<Scalars['String']['input']>>>;
|
|
114426
114588
|
traceId?: InputMaybe<Scalars['String']['input']>;
|
|
114427
114589
|
};
|
|
114428
114590
|
export declare type LookAndFeel = {
|
|
@@ -116196,6 +116358,8 @@ export declare type MarketplaceConsoleMutationApi = {
|
|
|
116196
116358
|
updateMakerAccountAndMakerListing?: Maybe<MarketplaceConsoleMakerResponse>;
|
|
116197
116359
|
updateMakerContact?: Maybe<MarketplaceConsoleMakerContactResponse>;
|
|
116198
116360
|
updateProductListingApprovalStatus: MarketplaceConsoleUpdateProductListingApprovalStatusResponse;
|
|
116361
|
+
updateProductListingReleaseStatus: MarketplaceConsoleUpdateProductListingReleaseStatusResponse;
|
|
116362
|
+
updateVersionListingApprovalStatus: MarketplaceConsoleUpdateVersionListingApprovalStatusResponse;
|
|
116199
116363
|
upsertMakerPaymentDetails?: Maybe<MarketplaceConsoleMakerResponse>;
|
|
116200
116364
|
upsertProgramEnrollment?: Maybe<MarketplaceConsoleMakerResponse>;
|
|
116201
116365
|
validateArtifactUrl?: Maybe<MarketplaceConsoleSoftwareArtifact>;
|
|
@@ -116273,6 +116437,12 @@ export declare type MarketplaceConsoleMutationApiUpdateMakerContactArgs = {
|
|
|
116273
116437
|
export declare type MarketplaceConsoleMutationApiUpdateProductListingApprovalStatusArgs = {
|
|
116274
116438
|
input: MarketplaceConsoleUpdateProductListingApprovalStatusInput;
|
|
116275
116439
|
};
|
|
116440
|
+
export declare type MarketplaceConsoleMutationApiUpdateProductListingReleaseStatusArgs = {
|
|
116441
|
+
productId: Scalars['ID']['input'];
|
|
116442
|
+
};
|
|
116443
|
+
export declare type MarketplaceConsoleMutationApiUpdateVersionListingApprovalStatusArgs = {
|
|
116444
|
+
input: MarketplaceConsoleUpdateVersionListingApprovalStatusInput;
|
|
116445
|
+
};
|
|
116276
116446
|
export declare type MarketplaceConsoleMutationApiUpsertMakerPaymentDetailsArgs = {
|
|
116277
116447
|
input: MarketplaceConsoleUpsertMakerPaymentInput;
|
|
116278
116448
|
};
|
|
@@ -116578,6 +116748,33 @@ export declare enum MarketplaceConsoleProductListingCurrentTaskStatus {
|
|
|
116578
116748
|
Processing = "PROCESSING",
|
|
116579
116749
|
Success = "SUCCESS"
|
|
116580
116750
|
}
|
|
116751
|
+
export declare enum MarketplaceConsoleProductListingReleaseAppListingStatus {
|
|
116752
|
+
Private = "PRIVATE",
|
|
116753
|
+
Public = "PUBLIC",
|
|
116754
|
+
Rejected = "REJECTED",
|
|
116755
|
+
Submitted = "SUBMITTED"
|
|
116756
|
+
}
|
|
116757
|
+
export declare enum MarketplaceConsoleProductListingReleaseCurrentStatus {
|
|
116758
|
+
Approved = "APPROVED",
|
|
116759
|
+
Failed = "FAILED",
|
|
116760
|
+
Pending = "PENDING",
|
|
116761
|
+
Processing = "PROCESSING",
|
|
116762
|
+
Rejected = "REJECTED"
|
|
116763
|
+
}
|
|
116764
|
+
export declare type MarketplaceConsoleProductListingReleaseStatusError = MarketplaceConsoleError & {
|
|
116765
|
+
__typename?: 'MarketplaceConsoleProductListingReleaseStatusError';
|
|
116766
|
+
code: Scalars['String']['output'];
|
|
116767
|
+
message: Scalars['String']['output'];
|
|
116768
|
+
statusCode: Scalars['Int']['output'];
|
|
116769
|
+
};
|
|
116770
|
+
export declare type MarketplaceConsoleProductListingReleaseStatusResponse = MarketplaceConsoleProductListingReleaseStatusError | MarketplaceConsoleProductListingReleaseStatusSuccess;
|
|
116771
|
+
export declare type MarketplaceConsoleProductListingReleaseStatusSuccess = {
|
|
116772
|
+
__typename?: 'MarketplaceConsoleProductListingReleaseStatusSuccess';
|
|
116773
|
+
appListingStatusInProcess?: Maybe<MarketplaceConsoleProductListingReleaseAppListingStatus>;
|
|
116774
|
+
currentAppListingStatus: MarketplaceConsoleProductListingReleaseAppListingStatus;
|
|
116775
|
+
currentStatus: MarketplaceConsoleProductListingReleaseCurrentStatus;
|
|
116776
|
+
failureReason?: Maybe<Scalars['String']['output']>;
|
|
116777
|
+
};
|
|
116581
116778
|
export declare type MarketplaceConsoleProductListingTags = {
|
|
116582
116779
|
__typename?: 'MarketplaceConsoleProductListingTags';
|
|
116583
116780
|
category?: Maybe<Array<Maybe<MarketplaceConsoleTagsContent>>>;
|
|
@@ -116665,9 +116862,11 @@ export declare type MarketplaceConsoleQueryApi = {
|
|
|
116665
116862
|
productListingAdditionalChecks?: Maybe<MarketplaceConsoleProductListingAdditionalChecks>;
|
|
116666
116863
|
productListingApprovalStatus: MarketplaceConsoleProductListingApprovalStatusResponse;
|
|
116667
116864
|
productListingByAppId?: Maybe<MarketplaceConsoleProductListing>;
|
|
116865
|
+
productListingReleaseStatus: MarketplaceConsoleProductListingReleaseStatusResponse;
|
|
116668
116866
|
productMetadataByAppId?: Maybe<MarketplaceConsoleProductMetadata>;
|
|
116669
116867
|
productTags?: Maybe<MarketplaceConsoleProductTags>;
|
|
116670
116868
|
validateForgeAGCApp?: Maybe<MarketplaceConsoleForgeAgcAppValidationResponse>;
|
|
116869
|
+
versionListingApprovalStatus: MarketplaceConsoleVersionListingApprovalStatusResponse;
|
|
116671
116870
|
};
|
|
116672
116871
|
export declare type MarketplaceConsoleQueryApiAppPrivateListingsArgs = {
|
|
116673
116872
|
appSoftwareId: Scalars['ID']['input'];
|
|
@@ -116754,12 +116953,19 @@ export declare type MarketplaceConsoleQueryApiProductListingByAppIdArgs = {
|
|
|
116754
116953
|
appId: Scalars['ID']['input'];
|
|
116755
116954
|
productId?: InputMaybe<Scalars['ID']['input']>;
|
|
116756
116955
|
};
|
|
116956
|
+
export declare type MarketplaceConsoleQueryApiProductListingReleaseStatusArgs = {
|
|
116957
|
+
productId: Scalars['ID']['input'];
|
|
116958
|
+
};
|
|
116757
116959
|
export declare type MarketplaceConsoleQueryApiProductMetadataByAppIdArgs = {
|
|
116758
116960
|
appId: Scalars['ID']['input'];
|
|
116759
116961
|
};
|
|
116760
116962
|
export declare type MarketplaceConsoleQueryApiValidateForgeAgcAppArgs = {
|
|
116761
116963
|
appId: Scalars['ID']['input'];
|
|
116762
116964
|
};
|
|
116965
|
+
export declare type MarketplaceConsoleQueryApiVersionListingApprovalStatusArgs = {
|
|
116966
|
+
appSoftwareId: Scalars['ID']['input'];
|
|
116967
|
+
buildNumber: Scalars['String']['input'];
|
|
116968
|
+
};
|
|
116763
116969
|
export declare type MarketplaceConsoleRemoteArtifactDetails = {
|
|
116764
116970
|
__typename?: 'MarketplaceConsoleRemoteArtifactDetails';
|
|
116765
116971
|
dataCenterStatus?: Maybe<Scalars['String']['output']>;
|
|
@@ -116879,6 +117085,22 @@ export declare type MarketplaceConsoleUpdateProductListingApprovalStatusSuccess
|
|
|
116879
117085
|
__typename?: 'MarketplaceConsoleUpdateProductListingApprovalStatusSuccess';
|
|
116880
117086
|
success: Scalars['Boolean']['output'];
|
|
116881
117087
|
};
|
|
117088
|
+
export declare type MarketplaceConsoleUpdateProductListingReleaseStatusResponse = MarketplaceConsoleProductListingReleaseStatusError | MarketplaceConsoleUpdateProductListingReleaseStatusSuccess;
|
|
117089
|
+
export declare type MarketplaceConsoleUpdateProductListingReleaseStatusSuccess = {
|
|
117090
|
+
__typename?: 'MarketplaceConsoleUpdateProductListingReleaseStatusSuccess';
|
|
117091
|
+
success: Scalars['Boolean']['output'];
|
|
117092
|
+
};
|
|
117093
|
+
export declare type MarketplaceConsoleUpdateVersionListingApprovalStatusInput = {
|
|
117094
|
+
appSoftwareId: Scalars['ID']['input'];
|
|
117095
|
+
buildNumber: Scalars['String']['input'];
|
|
117096
|
+
reason?: InputMaybe<Scalars['String']['input']>;
|
|
117097
|
+
status: MarketplaceConsoleVersionListingApprovalStatusUpdateAction;
|
|
117098
|
+
};
|
|
117099
|
+
export declare type MarketplaceConsoleUpdateVersionListingApprovalStatusResponse = MarketplaceConsoleUpdateVersionListingApprovalStatusSuccess | MarketplaceConsoleVersionListingApprovalStatusError;
|
|
117100
|
+
export declare type MarketplaceConsoleUpdateVersionListingApprovalStatusSuccess = {
|
|
117101
|
+
__typename?: 'MarketplaceConsoleUpdateVersionListingApprovalStatusSuccess';
|
|
117102
|
+
success: Scalars['Boolean']['output'];
|
|
117103
|
+
};
|
|
116882
117104
|
export declare type MarketplaceConsoleUpsertMakerPaymentInput = {
|
|
116883
117105
|
developerId: Scalars['ID']['input'];
|
|
116884
117106
|
paymentDetails: MarketplaceConsoleMakerPaymentInput;
|
|
@@ -116908,6 +117130,41 @@ export declare type MarketplaceConsoleVendorLinks = {
|
|
|
116908
117130
|
privacy?: Maybe<Scalars['String']['output']>;
|
|
116909
117131
|
supportTicketSystem?: Maybe<Scalars['String']['output']>;
|
|
116910
117132
|
};
|
|
117133
|
+
export declare enum MarketplaceConsoleVersionListingApprovalStatus {
|
|
117134
|
+
Approved = "APPROVED",
|
|
117135
|
+
Pending = "PENDING",
|
|
117136
|
+
Rejected = "REJECTED",
|
|
117137
|
+
Submitted = "SUBMITTED",
|
|
117138
|
+
Uninitiated = "UNINITIATED"
|
|
117139
|
+
}
|
|
117140
|
+
export declare type MarketplaceConsoleVersionListingApprovalStatusDetail = {
|
|
117141
|
+
__typename?: 'MarketplaceConsoleVersionListingApprovalStatusDetail';
|
|
117142
|
+
approvalStatus: MarketplaceConsoleVersionListingApprovalStatus;
|
|
117143
|
+
reason?: Maybe<Scalars['String']['output']>;
|
|
117144
|
+
};
|
|
117145
|
+
export declare type MarketplaceConsoleVersionListingApprovalStatusError = MarketplaceConsoleError & {
|
|
117146
|
+
__typename?: 'MarketplaceConsoleVersionListingApprovalStatusError';
|
|
117147
|
+
code: Scalars['String']['output'];
|
|
117148
|
+
message: Scalars['String']['output'];
|
|
117149
|
+
statusCode: Scalars['Int']['output'];
|
|
117150
|
+
};
|
|
117151
|
+
export declare type MarketplaceConsoleVersionListingApprovalStatusResponse = MarketplaceConsoleVersionListingApprovalStatusError | MarketplaceConsoleVersionListingApprovalStatusSuccess;
|
|
117152
|
+
export declare type MarketplaceConsoleVersionListingApprovalStatusSuccess = {
|
|
117153
|
+
__typename?: 'MarketplaceConsoleVersionListingApprovalStatusSuccess';
|
|
117154
|
+
currentTaskStatus: MarketplaceConsoleVersionListingCurrentTaskStatus;
|
|
117155
|
+
failureReason?: Maybe<Scalars['String']['output']>;
|
|
117156
|
+
versionListing: MarketplaceConsoleVersionListingApprovalStatusDetail;
|
|
117157
|
+
};
|
|
117158
|
+
export declare enum MarketplaceConsoleVersionListingApprovalStatusUpdateAction {
|
|
117159
|
+
Approved = "APPROVED",
|
|
117160
|
+
Rejected = "REJECTED",
|
|
117161
|
+
Resubmit = "RESUBMIT"
|
|
117162
|
+
}
|
|
117163
|
+
export declare enum MarketplaceConsoleVersionListingCurrentTaskStatus {
|
|
117164
|
+
Failed = "FAILED",
|
|
117165
|
+
Processing = "PROCESSING",
|
|
117166
|
+
Success = "SUCCESS"
|
|
117167
|
+
}
|
|
116911
117168
|
export declare enum MarketplaceConsoleVersionType {
|
|
116912
117169
|
Private = "PRIVATE",
|
|
116913
117170
|
Public = "PUBLIC"
|
|
@@ -119197,6 +119454,15 @@ export declare enum MercuryEventType {
|
|
|
119197
119454
|
Unlink = "UNLINK",
|
|
119198
119455
|
Update = "UPDATE"
|
|
119199
119456
|
}
|
|
119457
|
+
export declare type MercuryExternalOwner = MercuryExternalUser & {
|
|
119458
|
+
__typename?: 'MercuryExternalOwner';
|
|
119459
|
+
email?: Maybe<Scalars['String']['output']>;
|
|
119460
|
+
name?: Maybe<Scalars['String']['output']>;
|
|
119461
|
+
};
|
|
119462
|
+
export declare type MercuryExternalUser = {
|
|
119463
|
+
email?: Maybe<Scalars['String']['output']>;
|
|
119464
|
+
name?: Maybe<Scalars['String']['output']>;
|
|
119465
|
+
};
|
|
119200
119466
|
export declare type MercuryFiscalCalendarConfiguration = Node & {
|
|
119201
119467
|
__typename?: 'MercuryFiscalCalendarConfiguration';
|
|
119202
119468
|
createdDate?: Maybe<Scalars['String']['output']>;
|
|
@@ -119452,6 +119718,11 @@ export declare type MercuryFocusAreaLinks = {
|
|
|
119452
119718
|
__typename?: 'MercuryFocusAreaLinks';
|
|
119453
119719
|
links: Array<MercuryFocusAreaLink>;
|
|
119454
119720
|
};
|
|
119721
|
+
export declare type MercuryFocusAreaNode = {
|
|
119722
|
+
__typename?: 'MercuryFocusAreaNode';
|
|
119723
|
+
focusArea?: Maybe<MercuryFocusArea>;
|
|
119724
|
+
id: Scalars['ID']['output'];
|
|
119725
|
+
};
|
|
119455
119726
|
export declare enum MercuryFocusAreaPermission {
|
|
119456
119727
|
Archive = "ARCHIVE",
|
|
119457
119728
|
CreateGoalLink = "CREATE_GOAL_LINK",
|
|
@@ -119662,11 +119933,13 @@ export declare type MercuryFundsAmountSummary = {
|
|
|
119662
119933
|
};
|
|
119663
119934
|
export declare type MercuryFundsMonthlySummary = {
|
|
119664
119935
|
__typename?: 'MercuryFundsMonthlySummary';
|
|
119665
|
-
|
|
119936
|
+
actualAmountSummary?: Maybe<MercuryFundsAmountSummary>;
|
|
119937
|
+
baselineAmountSummary?: Maybe<MercuryFundsAmountSummary>;
|
|
119938
|
+
budgetAmountSummary?: Maybe<MercuryFundsAmountSummary>;
|
|
119666
119939
|
costSubtype?: Maybe<MercuryCostSubtype>;
|
|
119667
119940
|
fiscalQuarter?: Maybe<Scalars['Int']['output']>;
|
|
119668
119941
|
fiscalYear?: Maybe<Scalars['Int']['output']>;
|
|
119669
|
-
|
|
119942
|
+
forecastAmountSummary?: Maybe<MercuryFundsAmountSummary>;
|
|
119670
119943
|
investmentCategory?: Maybe<MercuryInvestmentCategory>;
|
|
119671
119944
|
investmentCategorySet?: Maybe<MercuryInvestmentCategorySet>;
|
|
119672
119945
|
monthStartDate?: Maybe<Scalars['String']['output']>;
|
|
@@ -119769,7 +120042,9 @@ export declare type MercuryFundsQueryApiFiscalCalendarConfigurationsSearchArgs =
|
|
|
119769
120042
|
sort?: InputMaybe<Array<InputMaybe<MercuryFiscalCalendarConfigurationSort>>>;
|
|
119770
120043
|
};
|
|
119771
120044
|
export declare type MercuryFundsQueryApiFocusAreaMonthlySummariesArgs = {
|
|
120045
|
+
endDateExclusive?: InputMaybe<Scalars['Date']['input']>;
|
|
119772
120046
|
focusAreaIds?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
120047
|
+
startDateInclusive?: InputMaybe<Scalars['Date']['input']>;
|
|
119773
120048
|
};
|
|
119774
120049
|
export declare type MercuryFundsQueryApiInvestmentCategoriesArgs = {
|
|
119775
120050
|
ids: Array<Scalars['ID']['input']>;
|
|
@@ -120372,6 +120647,46 @@ export declare type MercuryNewPositionSummaryByChangeProposalStatus = {
|
|
|
120372
120647
|
countByStatus?: Maybe<Array<Maybe<MercuryNewPositionCountByStatus>>>;
|
|
120373
120648
|
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
120374
120649
|
};
|
|
120650
|
+
export declare type MercuryNormalizedWork = {
|
|
120651
|
+
__typename?: 'MercuryNormalizedWork';
|
|
120652
|
+
connectedFocusArea: Scalars['ID']['output'];
|
|
120653
|
+
externalOwner?: Maybe<MercuryExternalOwner>;
|
|
120654
|
+
id: Scalars['ID']['output'];
|
|
120655
|
+
key?: Maybe<Scalars['String']['output']>;
|
|
120656
|
+
name?: Maybe<Scalars['String']['output']>;
|
|
120657
|
+
owner?: Maybe<User>;
|
|
120658
|
+
sourceStatus?: Maybe<MercuryNormalizedWorkSourceStatus>;
|
|
120659
|
+
status?: Maybe<MercuryNormalizedWorkStatus>;
|
|
120660
|
+
targetDate?: Maybe<MercuryNormalizedWorkTargetDate>;
|
|
120661
|
+
type?: Maybe<Scalars['String']['output']>;
|
|
120662
|
+
};
|
|
120663
|
+
export declare type MercuryNormalizedWorkSourceStatus = {
|
|
120664
|
+
__typename?: 'MercuryNormalizedWorkSourceStatus';
|
|
120665
|
+
color?: Maybe<MercuryNormalizedWorkStatusColor>;
|
|
120666
|
+
name: Scalars['String']['output'];
|
|
120667
|
+
};
|
|
120668
|
+
export declare type MercuryNormalizedWorkStatus = {
|
|
120669
|
+
__typename?: 'MercuryNormalizedWorkStatus';
|
|
120670
|
+
color: MercuryNormalizedWorkStatusColor;
|
|
120671
|
+
name: Scalars['String']['output'];
|
|
120672
|
+
};
|
|
120673
|
+
export declare enum MercuryNormalizedWorkStatusColor {
|
|
120674
|
+
Blue = "BLUE",
|
|
120675
|
+
Gray = "GRAY",
|
|
120676
|
+
Green = "GREEN",
|
|
120677
|
+
Red = "RED",
|
|
120678
|
+
Yellow = "YELLOW"
|
|
120679
|
+
}
|
|
120680
|
+
export declare type MercuryNormalizedWorkTargetDate = {
|
|
120681
|
+
__typename?: 'MercuryNormalizedWorkTargetDate';
|
|
120682
|
+
targetDate?: Maybe<Scalars['String']['output']>;
|
|
120683
|
+
targetDateType?: Maybe<MercuryNormalizedWorkTargetDateType>;
|
|
120684
|
+
};
|
|
120685
|
+
export declare enum MercuryNormalizedWorkTargetDateType {
|
|
120686
|
+
Day = "DAY",
|
|
120687
|
+
Month = "MONTH",
|
|
120688
|
+
Quarter = "QUARTER"
|
|
120689
|
+
}
|
|
120375
120690
|
export declare type MercuryNumberCustomField = MercuryCustomField & {
|
|
120376
120691
|
__typename?: 'MercuryNumberCustomField';
|
|
120377
120692
|
createdBy?: Maybe<User>;
|
|
@@ -122002,6 +122317,25 @@ export declare enum MercuryViewType {
|
|
|
122002
122317
|
HierarchyView = "HIERARCHY_VIEW",
|
|
122003
122318
|
RankingView = "RANKING_VIEW"
|
|
122004
122319
|
}
|
|
122320
|
+
export declare type MercuryWorkNormalizationQueryApi = {
|
|
122321
|
+
__typename?: 'MercuryWorkNormalizationQueryApi';
|
|
122322
|
+
workNormalizationByFocusAreaId?: Maybe<MercuryWorkNormalizationSearchConnection>;
|
|
122323
|
+
};
|
|
122324
|
+
export declare type MercuryWorkNormalizationQueryApiWorkNormalizationByFocusAreaIdArgs = {
|
|
122325
|
+
focusAreaId: Scalars['ID']['input'];
|
|
122326
|
+
};
|
|
122327
|
+
export declare type MercuryWorkNormalizationSearchConnection = {
|
|
122328
|
+
__typename?: 'MercuryWorkNormalizationSearchConnection';
|
|
122329
|
+
edges?: Maybe<Array<Maybe<MercuryWorkNormalizationSearchEdge>>>;
|
|
122330
|
+
pageInfo: PageInfo;
|
|
122331
|
+
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
122332
|
+
};
|
|
122333
|
+
export declare type MercuryWorkNormalizationSearchEdge = {
|
|
122334
|
+
__typename?: 'MercuryWorkNormalizationSearchEdge';
|
|
122335
|
+
cursor: Scalars['String']['output'];
|
|
122336
|
+
node?: Maybe<MercuryWorkNormalizationSearchResult>;
|
|
122337
|
+
};
|
|
122338
|
+
export declare type MercuryWorkNormalizationSearchResult = MercuryFocusAreaNode | MercuryNormalizedWork;
|
|
122005
122339
|
export declare type MercuryWorkResult = MercuryProviderWork | MercuryProviderWorkError;
|
|
122006
122340
|
export declare type MercuryWorkSuggestionsSearchItem = {
|
|
122007
122341
|
__typename?: 'MercuryWorkSuggestionsSearchItem';
|
|
@@ -122303,6 +122637,7 @@ export declare type Mutation = {
|
|
|
122303
122637
|
agentStudio_updateAgentAsFavourite?: Maybe<AgentStudioUpdateAgentAsFavouritePayload>;
|
|
122304
122638
|
agentStudio_updateAgentDetails?: Maybe<AgentStudioUpdateAgentDetailsPayload>;
|
|
122305
122639
|
agentStudio_updateAgentKnowledgeSources?: Maybe<AgentStudioUpdateAgentKnowledgeSourcesPayload>;
|
|
122640
|
+
agentStudio_updateAgentVerification?: Maybe<AgentStudioUpdateAgentVerificationPayload>;
|
|
122306
122641
|
agentStudio_updateConversationStarters?: Maybe<AgentStudioUpdateConversationStartersPayload>;
|
|
122307
122642
|
agentStudio_updateCreatePermissionMode?: Maybe<AgentStudioUpdateCreatePermissionModePayload>;
|
|
122308
122643
|
agentStudio_updateScenario?: Maybe<AgentStudioUpdateScenarioPayload>;
|
|
@@ -122372,12 +122707,14 @@ export declare type Mutation = {
|
|
|
122372
122707
|
avp_addDashboardElement?: Maybe<AvpAddDashboardElementPayload>;
|
|
122373
122708
|
avp_addDashboardRow?: Maybe<AvpAddDashboardRowPayload>;
|
|
122374
122709
|
avp_clearChartsInRow?: Maybe<AvpClearChartInRowPayload>;
|
|
122710
|
+
avp_cloneChart?: Maybe<AvpCloneChartPayload>;
|
|
122375
122711
|
avp_copyChart?: Maybe<AvpCopyChartPayload>;
|
|
122376
122712
|
avp_copyDashboardRow?: Maybe<AvpCopyDashboardRowPayload>;
|
|
122377
122713
|
avp_createChart?: Maybe<AvpCreateChartPayload>;
|
|
122378
122714
|
avp_createDashboard?: Maybe<AvpCreateDashboardPayload>;
|
|
122379
122715
|
avp_createDashboardFilter?: Maybe<AvpCreateDashboardFilterPayload>;
|
|
122380
122716
|
avp_createDashboardFromTemplate?: Maybe<AvpCreateDashboardPayload>;
|
|
122717
|
+
avp_createStandaloneChart?: Maybe<AvpCreateStandaloneChartPayload>;
|
|
122381
122718
|
avp_createVariable?: Maybe<AvpCreateVariablePayload>;
|
|
122382
122719
|
avp_deleteChart?: Maybe<AvpDeleteChartPayload>;
|
|
122383
122720
|
avp_deleteDashboardFilter?: Maybe<AvpDeleteDashboardFilterPayload>;
|
|
@@ -122822,6 +123159,7 @@ export declare type Mutation = {
|
|
|
122822
123159
|
jira_orderIssueSearchFormattingRule?: Maybe<JiraOrderIssueSearchFormattingRulePayload>;
|
|
122823
123160
|
jira_publishBoardViewConfig?: Maybe<JiraPublishBoardViewConfigPayload>;
|
|
122824
123161
|
jira_publishIssueSearchConfig?: Maybe<JiraPublishIssueSearchConfigPayload>;
|
|
123162
|
+
jira_publishTimelineViewConfig?: Maybe<JiraPublishTimelineViewConfigPayload>;
|
|
122825
123163
|
jira_removeFieldsFromFieldScheme?: Maybe<JiraRemoveFieldsFromFieldSchemePayload>;
|
|
122826
123164
|
jira_removeTimelineIssueLink?: Maybe<JiraTimelineIssueLinkOperationPayload>;
|
|
122827
123165
|
jira_renameBoardViewStatusColumn?: Maybe<JiraRenameBoardViewStatusColumnPayload>;
|
|
@@ -122893,6 +123231,7 @@ export declare type Mutation = {
|
|
|
122893
123231
|
jsmChat?: Maybe<JsmChatMutation>;
|
|
122894
123232
|
jsmConversation_claimConversation?: Maybe<JsmConversationClaimConversationPayload>;
|
|
122895
123233
|
jsmConversation_closeConversation?: Maybe<JsmConversationCloseConversationPayload>;
|
|
123234
|
+
jsmConversation_updateSettings?: Maybe<JsmConversationSettingsPayload>;
|
|
122896
123235
|
jsw?: Maybe<JswMutation>;
|
|
122897
123236
|
kitsune_createFeedback?: Maybe<KitsuneFeedback>;
|
|
122898
123237
|
kitsune_createSpace?: Maybe<KitsuneSpace>;
|
|
@@ -123086,6 +123425,7 @@ export declare type Mutation = {
|
|
|
123086
123425
|
signInvocationTokenForUI?: Maybe<SignInvocationTokenForUiResponse>;
|
|
123087
123426
|
softDeleteSpace?: Maybe<SoftDeleteSpacePayload>;
|
|
123088
123427
|
spf_acceptProposedDate?: Maybe<SpfUpsertAskUpdatePayload>;
|
|
123428
|
+
spf_addPlanApprover?: Maybe<SpfUpsertPlanApproverPayload>;
|
|
123089
123429
|
spf_addPlanOwner?: Maybe<SpfUpsertPlanOwnerPayload>;
|
|
123090
123430
|
spf_attachAskLink?: Maybe<SpfAttachAskLinkPayload>;
|
|
123091
123431
|
spf_createAsk?: Maybe<SpfUpsertAskPayload>;
|
|
@@ -123102,6 +123442,7 @@ export declare type Mutation = {
|
|
|
123102
123442
|
spf_deletePlanScenario?: Maybe<SpfDeletePlanScenarioPayload>;
|
|
123103
123443
|
spf_deletePlanScenarioInvestment?: Maybe<SpfDeletePlanScenarioInvestmentPayload>;
|
|
123104
123444
|
spf_rejectProposedDate?: Maybe<SpfUpsertAskUpdatePayload>;
|
|
123445
|
+
spf_removePlanApprover?: Maybe<SpfRemovePlanApproverPayload>;
|
|
123105
123446
|
spf_removePlanOwner?: Maybe<SpfRemovePlanOwnerPayload>;
|
|
123106
123447
|
spf_updateAskComment?: Maybe<SpfUpsertAskCommentPayload>;
|
|
123107
123448
|
spf_updateAskDescription?: Maybe<SpfUpsertAskPayload>;
|
|
@@ -123139,6 +123480,7 @@ export declare type Mutation = {
|
|
|
123139
123480
|
stakeholderComms_createSubscriber?: Maybe<StakeholderCommsSubscriberResponse>;
|
|
123140
123481
|
stakeholderComms_deleteDraftPage?: Maybe<StakeholderCommsPageDeleteResponse>;
|
|
123141
123482
|
stakeholderComms_deletePage?: Maybe<StakeholderCommsPageDeleteResponse>;
|
|
123483
|
+
stakeholderComms_deletePagePermanently?: Maybe<StakeholderCommsPageDeleteResponse>;
|
|
123142
123484
|
stakeholderComms_deleteStakeholder?: Maybe<StakeholderCommsStakeholderGroupMutationResponse>;
|
|
123143
123485
|
stakeholderComms_deleteSubscribers?: Maybe<Scalars['Boolean']['output']>;
|
|
123144
123486
|
stakeholderComms_getPreSignedUrl?: Maybe<StakeholderCommsPreSignedUrlResponse>;
|
|
@@ -123152,7 +123494,6 @@ export declare type Mutation = {
|
|
|
123152
123494
|
stakeholderComms_removeStakeholderGroups?: Maybe<StakeholderCommsStakeholderGroupMutationResponse>;
|
|
123153
123495
|
stakeholderComms_removeStakeholderMembers?: Maybe<StakeholderCommsStakeholderGroupMutationResponse>;
|
|
123154
123496
|
stakeholderComms_resendStakeholderInvite?: Maybe<StakeholderCommsResendInviteResponse>;
|
|
123155
|
-
stakeholderComms_restorePage?: Maybe<StakeholderCommsPageResponse>;
|
|
123156
123497
|
stakeholderComms_softDeletePage?: Maybe<StakeholderCommsPageDeleteResponse>;
|
|
123157
123498
|
stakeholderComms_unpublishPage?: Maybe<StakeholderCommsPageResponse>;
|
|
123158
123499
|
stakeholderComms_unsubscribeSubscriber?: Maybe<StakeholderCommsUnsubscribeSubscriberResponse>;
|
|
@@ -123439,6 +123780,10 @@ export declare type MutationAgentStudio_UpdateAgentKnowledgeSourcesArgs = {
|
|
|
123439
123780
|
id: Scalars['ID']['input'];
|
|
123440
123781
|
input: AgentStudioKnowledgeConfigurationInput;
|
|
123441
123782
|
};
|
|
123783
|
+
export declare type MutationAgentStudio_UpdateAgentVerificationArgs = {
|
|
123784
|
+
id: Scalars['ID']['input'];
|
|
123785
|
+
verified: Scalars['Boolean']['input'];
|
|
123786
|
+
};
|
|
123442
123787
|
export declare type MutationAgentStudio_UpdateConversationStartersArgs = {
|
|
123443
123788
|
id: Scalars['ID']['input'];
|
|
123444
123789
|
input: AgentStudioUpdateConversationStartersInput;
|
|
@@ -123754,6 +124099,9 @@ export declare type MutationAvp_AddDashboardRowArgs = {
|
|
|
123754
124099
|
export declare type MutationAvp_ClearChartsInRowArgs = {
|
|
123755
124100
|
input: AvpClearChartsInRowInput;
|
|
123756
124101
|
};
|
|
124102
|
+
export declare type MutationAvp_CloneChartArgs = {
|
|
124103
|
+
input: AvpCloneChartInput;
|
|
124104
|
+
};
|
|
123757
124105
|
export declare type MutationAvp_CopyChartArgs = {
|
|
123758
124106
|
input: AvpCopyChartInput;
|
|
123759
124107
|
};
|
|
@@ -123772,6 +124120,9 @@ export declare type MutationAvp_CreateDashboardFilterArgs = {
|
|
|
123772
124120
|
export declare type MutationAvp_CreateDashboardFromTemplateArgs = {
|
|
123773
124121
|
input: AvpCreateDashboardFromTemplateInput;
|
|
123774
124122
|
};
|
|
124123
|
+
export declare type MutationAvp_CreateStandaloneChartArgs = {
|
|
124124
|
+
input: AvpCreateStandaloneChartInput;
|
|
124125
|
+
};
|
|
123775
124126
|
export declare type MutationAvp_CreateVariableArgs = {
|
|
123776
124127
|
input: AvpCreateVariableInput;
|
|
123777
124128
|
};
|
|
@@ -125289,6 +125640,9 @@ export declare type MutationJira_PublishBoardViewConfigArgs = {
|
|
|
125289
125640
|
export declare type MutationJira_PublishIssueSearchConfigArgs = {
|
|
125290
125641
|
input: JiraPublishIssueSearchConfigInput;
|
|
125291
125642
|
};
|
|
125643
|
+
export declare type MutationJira_PublishTimelineViewConfigArgs = {
|
|
125644
|
+
input: JiraPublishTimelineViewConfigInput;
|
|
125645
|
+
};
|
|
125292
125646
|
export declare type MutationJira_RemoveFieldsFromFieldSchemeArgs = {
|
|
125293
125647
|
cloudId: Scalars['ID']['input'];
|
|
125294
125648
|
input: JiraRemoveFieldsFromFieldSchemeInput;
|
|
@@ -125521,6 +125875,9 @@ export declare type MutationJsmConversation_ClaimConversationArgs = {
|
|
|
125521
125875
|
export declare type MutationJsmConversation_CloseConversationArgs = {
|
|
125522
125876
|
input: JsmConversationCloseConversationInput;
|
|
125523
125877
|
};
|
|
125878
|
+
export declare type MutationJsmConversation_UpdateSettingsArgs = {
|
|
125879
|
+
input: JsmConversationSettingsInput;
|
|
125880
|
+
};
|
|
125524
125881
|
export declare type MutationKitsune_CreateFeedbackArgs = {
|
|
125525
125882
|
content: Scalars['KitsuneADF']['input'];
|
|
125526
125883
|
source?: InputMaybe<KitsuneSourceInput>;
|
|
@@ -126115,6 +126472,9 @@ export declare type MutationSoftDeleteSpaceArgs = {
|
|
|
126115
126472
|
export declare type MutationSpf_AcceptProposedDateArgs = {
|
|
126116
126473
|
input: SpfResolveProposedDateInput;
|
|
126117
126474
|
};
|
|
126475
|
+
export declare type MutationSpf_AddPlanApproverArgs = {
|
|
126476
|
+
input: SpfAddPlanApproverInput;
|
|
126477
|
+
};
|
|
126118
126478
|
export declare type MutationSpf_AddPlanOwnerArgs = {
|
|
126119
126479
|
input: SpfAddPlanOwnerInput;
|
|
126120
126480
|
};
|
|
@@ -126163,6 +126523,9 @@ export declare type MutationSpf_DeletePlanScenarioInvestmentArgs = {
|
|
|
126163
126523
|
export declare type MutationSpf_RejectProposedDateArgs = {
|
|
126164
126524
|
input: SpfResolveProposedDateInput;
|
|
126165
126525
|
};
|
|
126526
|
+
export declare type MutationSpf_RemovePlanApproverArgs = {
|
|
126527
|
+
input: SpfRemovePlanApproverInput;
|
|
126528
|
+
};
|
|
126166
126529
|
export declare type MutationSpf_RemovePlanOwnerArgs = {
|
|
126167
126530
|
input: SpfRemovePlanOwnerInput;
|
|
126168
126531
|
};
|
|
@@ -126278,6 +126641,9 @@ export declare type MutationStakeholderComms_DeleteDraftPageArgs = {
|
|
|
126278
126641
|
export declare type MutationStakeholderComms_DeletePageArgs = {
|
|
126279
126642
|
pageId: Scalars['String']['input'];
|
|
126280
126643
|
};
|
|
126644
|
+
export declare type MutationStakeholderComms_DeletePagePermanentlyArgs = {
|
|
126645
|
+
pageId: Scalars['String']['input'];
|
|
126646
|
+
};
|
|
126281
126647
|
export declare type MutationStakeholderComms_DeleteStakeholderArgs = {
|
|
126282
126648
|
id: Scalars['String']['input'];
|
|
126283
126649
|
};
|
|
@@ -126319,9 +126685,6 @@ export declare type MutationStakeholderComms_RemoveStakeholderMembersArgs = {
|
|
|
126319
126685
|
export declare type MutationStakeholderComms_ResendStakeholderInviteArgs = {
|
|
126320
126686
|
resendInviteInput: StakeholderCommsResendInviteInput;
|
|
126321
126687
|
};
|
|
126322
|
-
export declare type MutationStakeholderComms_RestorePageArgs = {
|
|
126323
|
-
pageId: Scalars['String']['input'];
|
|
126324
|
-
};
|
|
126325
126688
|
export declare type MutationStakeholderComms_SoftDeletePageArgs = {
|
|
126326
126689
|
deletedBy: Scalars['String']['input'];
|
|
126327
126690
|
pageId: Scalars['String']['input'];
|
|
@@ -129560,6 +129923,7 @@ export declare type Query = {
|
|
|
129560
129923
|
agentStudio_validateScenario?: Maybe<AgentStudioScenarioValidationPayload>;
|
|
129561
129924
|
agentStudio_validateScenarios?: Maybe<AgentStudioScenarioValidateModeOutput>;
|
|
129562
129925
|
agentStudio_widgetByContainerAri?: Maybe<AgentStudioWidgetByContainerAriResult>;
|
|
129926
|
+
agentWorkspace_helloWorld?: Maybe<AgentWorkspaceHelloWorld>;
|
|
129563
129927
|
aiCoreApi_vsaQuestionsByProject?: Maybe<AiCoreApiVsaQuestionsResult>;
|
|
129564
129928
|
aiCoreApi_vsaQuestionsByProjectAndType?: Maybe<AiCoreApiVsaQuestionsWithTypeResult>;
|
|
129565
129929
|
aiCoreApi_vsaReportingByProject?: Maybe<AiCoreApiVsaReportingResult>;
|
|
@@ -129653,6 +130017,7 @@ export declare type Query = {
|
|
|
129653
130017
|
atlasProjectsLinkedToJiraIssue?: Maybe<GraphStoreCypherQueryConnection>;
|
|
129654
130018
|
atlassianStudio_userSiteContext?: Maybe<AtlassianStudioUserSiteContextResult>;
|
|
129655
130019
|
availableContentStates?: Maybe<AvailableContentStates>;
|
|
130020
|
+
avpPermissions_getDashboardIdentityAccess?: Maybe<AvpPermissionsDashboardIdentityAccess>;
|
|
129656
130021
|
avpPermissions_hello?: Maybe<AvpPermissionsHelloResponse>;
|
|
129657
130022
|
avp_getChart?: Maybe<AvpChart>;
|
|
129658
130023
|
avp_getChartTemplates?: Maybe<Array<AvpChartTemplate>>;
|
|
@@ -130152,6 +130517,7 @@ export declare type Query = {
|
|
|
130152
130517
|
jsmChat?: Maybe<JsmChatQuery>;
|
|
130153
130518
|
jsmConversation_conversations?: Maybe<JsmConversationConnection>;
|
|
130154
130519
|
jsmConversation_messages?: Maybe<JsmConversationMessageConnection>;
|
|
130520
|
+
jsmConversation_settings?: Maybe<JsmConversationSettings>;
|
|
130155
130521
|
jsw?: Maybe<JswQuery>;
|
|
130156
130522
|
kitsune_feedbackEvent?: Maybe<KitsuneFeedbackEvent>;
|
|
130157
130523
|
kitsune_feedbacks?: Maybe<Array<Maybe<KitsuneFeedback>>>;
|
|
@@ -130219,6 +130585,7 @@ export declare type Query = {
|
|
|
130219
130585
|
mercury_insights?: Maybe<MercuryInsightsQueryApi>;
|
|
130220
130586
|
mercury_jiraAlignProvider?: Maybe<MercuryJiraAlignProviderQueryApi>;
|
|
130221
130587
|
mercury_jiraProvider?: Maybe<MercuryJiraProviderQueryApi>;
|
|
130588
|
+
mercury_normalizedWork?: Maybe<MercuryWorkNormalizationQueryApi>;
|
|
130222
130589
|
mercury_providerOrchestration?: Maybe<MercuryProviderOrchestrationQueryApi>;
|
|
130223
130590
|
mercury_strategicEvents?: Maybe<MercuryStrategicEventsQueryApi>;
|
|
130224
130591
|
migration: MigrationQuery;
|
|
@@ -130288,6 +130655,7 @@ export declare type Query = {
|
|
|
130288
130655
|
projects_byAris?: Maybe<Array<Maybe<TownsquareProject>>>;
|
|
130289
130656
|
projects_byId?: Maybe<TownsquareProject>;
|
|
130290
130657
|
projects_byIds?: Maybe<Array<Maybe<TownsquareProject>>>;
|
|
130658
|
+
projects_byKey?: Maybe<TownsquareProject>;
|
|
130291
130659
|
projects_canCreateProjectFusion?: Maybe<TownsquareProjectsCanCreateProjectFusionPayload>;
|
|
130292
130660
|
projects_linksByIds?: Maybe<Array<Maybe<TownsquareLink>>>;
|
|
130293
130661
|
projects_search?: Maybe<TownsquareProjectConnection>;
|
|
@@ -130414,6 +130782,7 @@ export declare type Query = {
|
|
|
130414
130782
|
stakeholderComms_getPageSummaryDetails?: Maybe<StakeholderCommsPageSummaryDetailsResponse>;
|
|
130415
130783
|
stakeholderComms_getPageUptimePercentage?: Maybe<StakeholderCommsPageUptimePercentageResponse>;
|
|
130416
130784
|
stakeholderComms_getPagesSummaryByCloudId?: Maybe<StakeholderCommsPagesSummaryByCloudIdResponse>;
|
|
130785
|
+
stakeholderComms_getPagesSummaryByCloudIdV2?: Maybe<StakeholderCommsPagesSummaryByCloudIdResponse>;
|
|
130417
130786
|
stakeholderComms_getStakeholder?: Maybe<StakeholderCommsStakeholderResponse>;
|
|
130418
130787
|
stakeholderComms_getStakeholderGroup?: Maybe<StakeholderCommsStakeholderGroup>;
|
|
130419
130788
|
stakeholderComms_getStakeholderGroupByMembership?: Maybe<Array<Maybe<StakeholderCommsStakeholderGroup>>>;
|
|
@@ -130772,6 +131141,7 @@ export declare type QueryAgentStudio_BatchEvalConversationListByContainerIdArgs
|
|
|
130772
131141
|
experienceId: Scalars['String']['input'];
|
|
130773
131142
|
filter?: InputMaybe<AgentStudioBatchEvalConversationFilterInput>;
|
|
130774
131143
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
131144
|
+
productType?: InputMaybe<AgentStudioProductType>;
|
|
130775
131145
|
};
|
|
130776
131146
|
export declare type QueryAgentStudio_BatchEvaluationJobArgs = {
|
|
130777
131147
|
cloudId: Scalars['String']['input'];
|
|
@@ -130956,6 +131326,9 @@ export declare type QueryAgentStudio_WidgetByContainerAriArgs = {
|
|
|
130956
131326
|
cloudId: Scalars['String']['input'];
|
|
130957
131327
|
containerAri: Scalars['ID']['input'];
|
|
130958
131328
|
};
|
|
131329
|
+
export declare type QueryAgentWorkspace_HelloWorldArgs = {
|
|
131330
|
+
userName: Scalars['String']['input'];
|
|
131331
|
+
};
|
|
130959
131332
|
export declare type QueryAiCoreApi_VsaQuestionsByProjectArgs = {
|
|
130960
131333
|
projectAri: Scalars['ID']['input'];
|
|
130961
131334
|
};
|
|
@@ -131449,6 +131822,9 @@ export declare type QueryAtlassianStudio_UserSiteContextArgs = {
|
|
|
131449
131822
|
export declare type QueryAvailableContentStatesArgs = {
|
|
131450
131823
|
contentId: Scalars['ID']['input'];
|
|
131451
131824
|
};
|
|
131825
|
+
export declare type QueryAvpPermissions_GetDashboardIdentityAccessArgs = {
|
|
131826
|
+
input: AvpPermissionsGetDashboardIdentityAccessInput;
|
|
131827
|
+
};
|
|
131452
131828
|
export declare type QueryAvpPermissions_HelloArgs = {
|
|
131453
131829
|
cloudId: Scalars['ID']['input'];
|
|
131454
131830
|
integrationId: Scalars['String']['input'];
|
|
@@ -131484,6 +131860,7 @@ export declare type QueryBlockService_BatchRetrieveBlocksArgs = {
|
|
|
131484
131860
|
};
|
|
131485
131861
|
export declare type QueryBlockService_GetBlockArgs = {
|
|
131486
131862
|
blockAri: Scalars['String']['input'];
|
|
131863
|
+
blockInstanceId?: InputMaybe<Scalars['String']['input']>;
|
|
131487
131864
|
documentAri?: InputMaybe<Scalars['String']['input']>;
|
|
131488
131865
|
};
|
|
131489
131866
|
export declare type QueryBlockService_GetDocumentReferenceBlocksArgs = {
|
|
@@ -133574,6 +133951,9 @@ export declare type QueryJsmConversation_MessagesArgs = {
|
|
|
133574
133951
|
conversationAri: Scalars['ID']['input'];
|
|
133575
133952
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
133576
133953
|
};
|
|
133954
|
+
export declare type QueryJsmConversation_SettingsArgs = {
|
|
133955
|
+
projectAri: Scalars['String']['input'];
|
|
133956
|
+
};
|
|
133577
133957
|
export declare type QueryKitsune_FeedbackEventArgs = {
|
|
133578
133958
|
id: Scalars['ID']['input'];
|
|
133579
133959
|
spaceAri: Scalars['ID']['input'];
|
|
@@ -133999,6 +134379,10 @@ export declare type QueryProjects_ByIdArgs = {
|
|
|
133999
134379
|
export declare type QueryProjects_ByIdsArgs = {
|
|
134000
134380
|
projectIds: Array<Scalars['String']['input']>;
|
|
134001
134381
|
};
|
|
134382
|
+
export declare type QueryProjects_ByKeyArgs = {
|
|
134383
|
+
containerId: Scalars['ID']['input'];
|
|
134384
|
+
projectKey: Scalars['String']['input'];
|
|
134385
|
+
};
|
|
134002
134386
|
export declare type QueryProjects_CanCreateProjectFusionArgs = {
|
|
134003
134387
|
input: TownsquareProjectsCanCreateProjectFusionInput;
|
|
134004
134388
|
};
|
|
@@ -134138,6 +134522,7 @@ export declare type QueryRadar_ViewsSearchArgs = {
|
|
|
134138
134522
|
cloudId: Scalars['ID']['input'];
|
|
134139
134523
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
134140
134524
|
last?: InputMaybe<Scalars['Int']['input']>;
|
|
134525
|
+
query?: InputMaybe<Scalars['String']['input']>;
|
|
134141
134526
|
};
|
|
134142
134527
|
export declare type QueryRadar_WorkerByAriArgs = {
|
|
134143
134528
|
id: Scalars['ID']['input'];
|
|
@@ -134515,6 +134900,10 @@ export declare type QueryStakeholderComms_GetPagesSummaryByCloudIdArgs = {
|
|
|
134515
134900
|
cloudId: Scalars['String']['input'];
|
|
134516
134901
|
filter?: InputMaybe<StakeholderCommsPageStatusFilter>;
|
|
134517
134902
|
};
|
|
134903
|
+
export declare type QueryStakeholderComms_GetPagesSummaryByCloudIdV2Args = {
|
|
134904
|
+
cloudId: Scalars['String']['input'];
|
|
134905
|
+
filter?: InputMaybe<StakeholderCommsPageStatusFilter>;
|
|
134906
|
+
};
|
|
134518
134907
|
export declare type QueryStakeholderComms_GetStakeholderArgs = {
|
|
134519
134908
|
stakeholderIdInput: StakeholderCommsStakeholderIdInput;
|
|
134520
134909
|
};
|
|
@@ -135152,6 +135541,7 @@ export declare enum RadarFieldType {
|
|
|
135152
135541
|
Ari = "ARI",
|
|
135153
135542
|
Boolean = "BOOLEAN",
|
|
135154
135543
|
Date = "DATE",
|
|
135544
|
+
Group = "GROUP",
|
|
135155
135545
|
Keyword = "KEYWORD",
|
|
135156
135546
|
Money = "MONEY",
|
|
135157
135547
|
Number = "NUMBER",
|
|
@@ -135159,7 +135549,7 @@ export declare enum RadarFieldType {
|
|
|
135159
135549
|
String = "STRING",
|
|
135160
135550
|
Url = "URL"
|
|
135161
135551
|
}
|
|
135162
|
-
export declare type RadarFieldValue = RadarAriFieldValue | RadarBooleanFieldValue | RadarDateFieldValue | RadarMoneyFieldValue | RadarNumericFieldValue | RadarStatusFieldValue | RadarStringFieldValue | RadarUrlFieldValue;
|
|
135552
|
+
export declare type RadarFieldValue = RadarAriFieldValue | RadarBooleanFieldValue | RadarDateFieldValue | RadarGroupFieldValue | RadarMoneyFieldValue | RadarNumericFieldValue | RadarStatusFieldValue | RadarStringFieldValue | RadarUrlFieldValue;
|
|
135163
135553
|
export declare type RadarFieldValueIdPair = {
|
|
135164
135554
|
__typename?: 'RadarFieldValueIdPair';
|
|
135165
135555
|
fieldId: Scalars['ID']['output'];
|
|
@@ -135185,6 +135575,7 @@ export declare type RadarFields = {
|
|
|
135185
135575
|
proposalFields: Array<RadarFieldDefinition>;
|
|
135186
135576
|
proposedMovementFields: Array<RadarFieldDefinition>;
|
|
135187
135577
|
teamFields: Array<RadarFieldDefinition>;
|
|
135578
|
+
viewFields: Array<RadarFieldDefinition>;
|
|
135188
135579
|
workerFields: Array<RadarFieldDefinition>;
|
|
135189
135580
|
};
|
|
135190
135581
|
export declare enum RadarFilterInputType {
|
|
@@ -135230,6 +135621,11 @@ export declare enum RadarFunctionId {
|
|
|
135230
135621
|
Currentuser = "CURRENTUSER",
|
|
135231
135622
|
Under = "UNDER"
|
|
135232
135623
|
}
|
|
135624
|
+
export declare type RadarGroupFieldValue = {
|
|
135625
|
+
__typename?: 'RadarGroupFieldValue';
|
|
135626
|
+
isRestricted?: Maybe<Scalars['Boolean']['output']>;
|
|
135627
|
+
value?: Maybe<Array<RadarGroupObject>>;
|
|
135628
|
+
};
|
|
135233
135629
|
export declare type RadarGroupMetrics = {
|
|
135234
135630
|
__typename?: 'RadarGroupMetrics';
|
|
135235
135631
|
count: Scalars['Int']['output'];
|
|
@@ -135256,6 +135652,7 @@ export declare type RadarGroupMetricsEdge = RadarEdge & {
|
|
|
135256
135652
|
cursor: Scalars['String']['output'];
|
|
135257
135653
|
node: RadarGroupMetrics;
|
|
135258
135654
|
};
|
|
135655
|
+
export declare type RadarGroupObject = RadarWorkAllocationUnit;
|
|
135259
135656
|
export declare type RadarGroupPrincipal = {
|
|
135260
135657
|
__typename?: 'RadarGroupPrincipal';
|
|
135261
135658
|
id: Scalars['ID']['output'];
|
|
@@ -135554,8 +135951,7 @@ export declare type RadarViewEdge = RadarEdge & {
|
|
|
135554
135951
|
node: RadarView;
|
|
135555
135952
|
};
|
|
135556
135953
|
export declare enum RadarViewPageName {
|
|
135557
|
-
TalentPositionsPage = "TALENT_POSITIONS_PAGE"
|
|
135558
|
-
TalentSubPositionsPage = "TALENT_SUB_POSITIONS_PAGE"
|
|
135954
|
+
TalentPositionsPage = "TALENT_POSITIONS_PAGE"
|
|
135559
135955
|
}
|
|
135560
135956
|
export declare type RadarViewPermissions = {
|
|
135561
135957
|
__typename?: 'RadarViewPermissions';
|
|
@@ -137021,6 +137417,8 @@ export declare enum Scope {
|
|
|
137021
137417
|
DeleteServicedeskCustomer = "DELETE_SERVICEDESK_CUSTOMER",
|
|
137022
137418
|
DeleteServicedeskOrganization = "DELETE_SERVICEDESK_ORGANIZATION",
|
|
137023
137419
|
DeleteServicedeskProperty = "DELETE_SERVICEDESK_PROPERTY",
|
|
137420
|
+
DeployAppEnvironment = "DEPLOY_APP_ENVIRONMENT",
|
|
137421
|
+
DevelopAppEnvironment = "DEVELOP_APP_ENVIRONMENT",
|
|
137024
137422
|
FieldConfigurationDelete = "FIELD_CONFIGURATION_DELETE",
|
|
137025
137423
|
FieldConfigurationRead = "FIELD_CONFIGURATION_READ",
|
|
137026
137424
|
FieldConfigurationSchemeDelete = "FIELD_CONFIGURATION_SCHEME_DELETE",
|
|
@@ -137110,6 +137508,7 @@ export declare enum Scope {
|
|
|
137110
137508
|
LabelRead = "LABEL_READ",
|
|
137111
137509
|
LicenseRead = "LICENSE_READ",
|
|
137112
137510
|
ManageApp = "MANAGE_APP",
|
|
137511
|
+
ManageAppInstallation = "MANAGE_APP_INSTALLATION",
|
|
137113
137512
|
ManageDirectory = "MANAGE_DIRECTORY",
|
|
137114
137513
|
ManageJiraConfiguration = "MANAGE_JIRA_CONFIGURATION",
|
|
137115
137514
|
ManageJiraDataProvider = "MANAGE_JIRA_DATA_PROVIDER",
|
|
@@ -137157,6 +137556,10 @@ export declare enum Scope {
|
|
|
137157
137556
|
PullRequest = "PULL_REQUEST",
|
|
137158
137557
|
PullRequestWrite = "PULL_REQUEST_WRITE",
|
|
137159
137558
|
ReadAccount = "READ_ACCOUNT",
|
|
137559
|
+
ReadAppDetails = "READ_APP_DETAILS",
|
|
137560
|
+
ReadAppEnvironment = "READ_APP_ENVIRONMENT",
|
|
137561
|
+
ReadAppInstallation = "READ_APP_INSTALLATION",
|
|
137562
|
+
ReadAppLogs = "READ_APP_LOGS",
|
|
137160
137563
|
ReadAppSystemToken = "READ_APP_SYSTEM_TOKEN",
|
|
137161
137564
|
ReadCompassAttentionItem = "READ_COMPASS_ATTENTION_ITEM",
|
|
137162
137565
|
ReadCompassComponent = "READ_COMPASS_COMPONENT",
|
|
@@ -137276,6 +137679,7 @@ export declare enum Scope {
|
|
|
137276
137679
|
WorkflowSchemeRead = "WORKFLOW_SCHEME_READ",
|
|
137277
137680
|
WorkflowSchemeWrite = "WORKFLOW_SCHEME_WRITE",
|
|
137278
137681
|
WorkflowWrite = "WORKFLOW_WRITE",
|
|
137682
|
+
WriteAppDetails = "WRITE_APP_DETAILS",
|
|
137279
137683
|
WriteCompassComponent = "WRITE_COMPASS_COMPONENT",
|
|
137280
137684
|
WriteCompassEvent = "WRITE_COMPASS_EVENT",
|
|
137281
137685
|
WriteCompassMetric = "WRITE_COMPASS_METRIC",
|
|
@@ -137621,6 +138025,25 @@ export declare type SearchGraphQlConfigurationResponse = {
|
|
|
137621
138025
|
siteMetadata: SearchConfigurationSiteMetadata;
|
|
137622
138026
|
thirdPartyProducts: Array<SearchThirdPartyMetadata>;
|
|
137623
138027
|
};
|
|
138028
|
+
export declare type SearchInput = {
|
|
138029
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
138030
|
+
analytics?: InputMaybe<SearchAnalyticsInput>;
|
|
138031
|
+
before?: InputMaybe<Scalars['String']['input']>;
|
|
138032
|
+
disableQueryReplacement?: InputMaybe<Scalars['Boolean']['input']>;
|
|
138033
|
+
disableWildcardMatching?: InputMaybe<Scalars['Boolean']['input']>;
|
|
138034
|
+
enableHighlighting?: InputMaybe<Scalars['Boolean']['input']>;
|
|
138035
|
+
enableRelevanceDebugging?: InputMaybe<Scalars['Boolean']['input']>;
|
|
138036
|
+
experience: Scalars['String']['input'];
|
|
138037
|
+
experimentContext?: InputMaybe<SearchExperimentContextInput>;
|
|
138038
|
+
fanoutExperimentCohort?: InputMaybe<Scalars['String']['input']>;
|
|
138039
|
+
filters: SearchFilterInput;
|
|
138040
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
138041
|
+
includeBoostedLinks?: InputMaybe<Scalars['Boolean']['input']>;
|
|
138042
|
+
interleaveResults?: InputMaybe<Scalars['Boolean']['input']>;
|
|
138043
|
+
last?: InputMaybe<Scalars['Int']['input']>;
|
|
138044
|
+
query?: InputMaybe<Scalars['String']['input']>;
|
|
138045
|
+
sort?: InputMaybe<Array<InputMaybe<SearchSortInput>>>;
|
|
138046
|
+
};
|
|
137624
138047
|
export declare type SearchInterleaverScrapingResult = {
|
|
137625
138048
|
__typename?: 'SearchInterleaverScrapingResult';
|
|
137626
138049
|
rerankerRequestInJSON: Scalars['String']['output'];
|
|
@@ -137751,10 +138174,14 @@ export declare enum SearchProjectType {
|
|
|
137751
138174
|
}
|
|
137752
138175
|
export declare type SearchQueryApi = {
|
|
137753
138176
|
__typename?: 'SearchQueryAPI';
|
|
138177
|
+
asyncSearch?: Maybe<SearchItemConnection>;
|
|
137754
138178
|
configuration?: Maybe<SearchGraphQlConfigurationResponse>;
|
|
137755
138179
|
recent?: Maybe<Array<SearchResult>>;
|
|
137756
138180
|
search?: Maybe<SearchItemConnection>;
|
|
137757
138181
|
};
|
|
138182
|
+
export declare type SearchQueryApiAsyncSearchArgs = {
|
|
138183
|
+
input: SearchInput;
|
|
138184
|
+
};
|
|
137758
138185
|
export declare type SearchQueryApiConfigurationArgs = {
|
|
137759
138186
|
cloudId: Scalars['ID']['input'];
|
|
137760
138187
|
};
|
|
@@ -158575,6 +159002,10 @@ export declare type SpaceWithExemption = {
|
|
|
158575
159002
|
status?: Maybe<Scalars['String']['output']>;
|
|
158576
159003
|
type?: Maybe<Scalars['String']['output']>;
|
|
158577
159004
|
};
|
|
159005
|
+
export declare type SpfAddPlanApproverInput = {
|
|
159006
|
+
approverId: Scalars['String']['input'];
|
|
159007
|
+
planId: Scalars['ID']['input'];
|
|
159008
|
+
};
|
|
158578
159009
|
export declare type SpfAddPlanOwnerInput = {
|
|
158579
159010
|
ownerId: Scalars['String']['input'];
|
|
158580
159011
|
planId: Scalars['ID']['input'];
|
|
@@ -159029,6 +159460,7 @@ export declare enum SpfMediaTokenUsageType {
|
|
|
159029
159460
|
}
|
|
159030
159461
|
export declare type SpfPlan = Node & {
|
|
159031
159462
|
__typename?: 'SpfPlan';
|
|
159463
|
+
approvers?: Maybe<SpfPlanApproverConnection>;
|
|
159032
159464
|
createdAt?: Maybe<Scalars['DateTime']['output']>;
|
|
159033
159465
|
createdBy?: Maybe<User>;
|
|
159034
159466
|
description?: Maybe<Scalars['String']['output']>;
|
|
@@ -159043,6 +159475,11 @@ export declare type SpfPlan = Node & {
|
|
|
159043
159475
|
updatedAt?: Maybe<Scalars['DateTime']['output']>;
|
|
159044
159476
|
updatedBy?: Maybe<User>;
|
|
159045
159477
|
};
|
|
159478
|
+
export declare type SpfPlanApproversArgs = {
|
|
159479
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
159480
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
159481
|
+
q?: InputMaybe<Scalars['String']['input']>;
|
|
159482
|
+
};
|
|
159046
159483
|
export declare type SpfPlanOwnersArgs = {
|
|
159047
159484
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
159048
159485
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
@@ -159053,6 +159490,17 @@ export declare type SpfPlanScenariosArgs = {
|
|
|
159053
159490
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
159054
159491
|
q?: InputMaybe<Scalars['String']['input']>;
|
|
159055
159492
|
};
|
|
159493
|
+
export declare type SpfPlanApproverConnection = {
|
|
159494
|
+
__typename?: 'SpfPlanApproverConnection';
|
|
159495
|
+
edges?: Maybe<Array<Maybe<SpfPlanApproverEdge>>>;
|
|
159496
|
+
pageInfo: PageInfo;
|
|
159497
|
+
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
159498
|
+
};
|
|
159499
|
+
export declare type SpfPlanApproverEdge = {
|
|
159500
|
+
__typename?: 'SpfPlanApproverEdge';
|
|
159501
|
+
cursor: Scalars['String']['output'];
|
|
159502
|
+
node?: Maybe<User>;
|
|
159503
|
+
};
|
|
159056
159504
|
export declare type SpfPlanConnection = {
|
|
159057
159505
|
__typename?: 'SpfPlanConnection';
|
|
159058
159506
|
edges?: Maybe<Array<Maybe<SpfPlanEdge>>>;
|
|
@@ -159159,6 +159607,17 @@ export declare type SpfPlanTransition = {
|
|
|
159159
159607
|
status?: Maybe<SpfPlanStatus>;
|
|
159160
159608
|
unmetRequirements?: Maybe<Array<Maybe<Scalars['String']['output']>>>;
|
|
159161
159609
|
};
|
|
159610
|
+
export declare type SpfRemovePlanApproverInput = {
|
|
159611
|
+
approverId: Scalars['String']['input'];
|
|
159612
|
+
planId: Scalars['ID']['input'];
|
|
159613
|
+
};
|
|
159614
|
+
export declare type SpfRemovePlanApproverPayload = Payload & {
|
|
159615
|
+
__typename?: 'SpfRemovePlanApproverPayload';
|
|
159616
|
+
approverId: Scalars['String']['output'];
|
|
159617
|
+
errors?: Maybe<Array<MutationError>>;
|
|
159618
|
+
planId: Scalars['ID']['output'];
|
|
159619
|
+
success: Scalars['Boolean']['output'];
|
|
159620
|
+
};
|
|
159162
159621
|
export declare type SpfRemovePlanOwnerInput = {
|
|
159163
159622
|
ownerId: Scalars['String']['input'];
|
|
159164
159623
|
planId: Scalars['ID']['input'];
|
|
@@ -159276,6 +159735,14 @@ export declare type SpfUpsertAskUpdatePayload = Payload & {
|
|
|
159276
159735
|
errors?: Maybe<Array<MutationError>>;
|
|
159277
159736
|
success: Scalars['Boolean']['output'];
|
|
159278
159737
|
};
|
|
159738
|
+
export declare type SpfUpsertPlanApproverPayload = Payload & {
|
|
159739
|
+
__typename?: 'SpfUpsertPlanApproverPayload';
|
|
159740
|
+
approverId: Scalars['String']['output'];
|
|
159741
|
+
errors?: Maybe<Array<MutationError>>;
|
|
159742
|
+
planApprover?: Maybe<User>;
|
|
159743
|
+
planId: Scalars['ID']['output'];
|
|
159744
|
+
success: Scalars['Boolean']['output'];
|
|
159745
|
+
};
|
|
159279
159746
|
export declare type SpfUpsertPlanOwnerPayload = Payload & {
|
|
159280
159747
|
__typename?: 'SpfUpsertPlanOwnerPayload';
|
|
159281
159748
|
errors?: Maybe<Array<MutationError>>;
|
|
@@ -160199,6 +160666,7 @@ export declare type StakeholderCommsPageSummary = {
|
|
|
160199
160666
|
name?: Maybe<Scalars['String']['output']>;
|
|
160200
160667
|
pageType?: Maybe<StakeholderCommsPageType>;
|
|
160201
160668
|
stakeholderCount?: Maybe<Scalars['Int']['output']>;
|
|
160669
|
+
status?: Maybe<StakeholderCommsPageStatus>;
|
|
160202
160670
|
};
|
|
160203
160671
|
export declare type StakeholderCommsPageSummaryDetails = {
|
|
160204
160672
|
__typename?: 'StakeholderCommsPageSummaryDetails';
|
|
@@ -160357,9 +160825,11 @@ export declare type StakeholderCommsSimplifiedStakeholder = {
|
|
|
160357
160825
|
type?: Maybe<Scalars['String']['output']>;
|
|
160358
160826
|
};
|
|
160359
160827
|
export declare enum StakeholderCommsSslStatus {
|
|
160828
|
+
Deprovisioning = "DEPROVISIONING",
|
|
160360
160829
|
Expired = "EXPIRED",
|
|
160361
160830
|
Failed = "FAILED",
|
|
160362
160831
|
Issued = "ISSUED",
|
|
160832
|
+
NotConfigured = "NOT_CONFIGURED",
|
|
160363
160833
|
Pending = "PENDING"
|
|
160364
160834
|
}
|
|
160365
160835
|
export declare type StakeholderCommsStakeholder = {
|
|
@@ -160611,7 +161081,8 @@ export declare enum StakeholderCommsSubscriberStatus {
|
|
|
160611
161081
|
Quarantined = "QUARANTINED",
|
|
160612
161082
|
Subscribed = "SUBSCRIBED",
|
|
160613
161083
|
Suspended = "SUSPENDED",
|
|
160614
|
-
Unsubscribed = "UNSUBSCRIBED"
|
|
161084
|
+
Unsubscribed = "UNSUBSCRIBED",
|
|
161085
|
+
Unverified = "UNVERIFIED"
|
|
160615
161086
|
}
|
|
160616
161087
|
export declare enum StakeholderCommsSubscriptionChannel {
|
|
160617
161088
|
Email = "EMAIL",
|
|
@@ -160876,6 +161347,7 @@ export declare type Subscription = {
|
|
|
160876
161347
|
bitbucket?: Maybe<BitbucketSubscription>;
|
|
160877
161348
|
blockService_onBlockUpdated?: Maybe<BlockServiceBlockPayload>;
|
|
160878
161349
|
confluence_onContentModified?: Maybe<ConfluenceContentModified>;
|
|
161350
|
+
convoai_onAgentSessionCreate?: Maybe<ConvoAiAgentSessionCreate>;
|
|
160879
161351
|
convoai_onAgentSessionUpdate?: Maybe<ConvoAiAgentSessionUpdate>;
|
|
160880
161352
|
devOps?: Maybe<AriGraphSubscriptions>;
|
|
160881
161353
|
devai_onAutodevJobLogGroupsUpdated?: Maybe<DevAiAutodevLogGroupConnection>;
|
|
@@ -160896,7 +161368,8 @@ export declare type Subscription = {
|
|
|
160896
161368
|
jsmChannels_getResolutionPlanGraphUpdate: JsmChannelsResolutionPlanGraphResult;
|
|
160897
161369
|
jsmChannels_onServiceAgentResolutionStateByTicketIdUpdate: JsmChannelsTicketServiceAgentResolutionStateResult;
|
|
160898
161370
|
jsmChat?: Maybe<JsmChatSubscription>;
|
|
160899
|
-
|
|
161371
|
+
jsmConversation_updatesByProject?: Maybe<JsmConversationUpdate>;
|
|
161372
|
+
jsmConversation_updatesByUser?: Maybe<JsmConversationUpdate>;
|
|
160900
161373
|
kitsune_onFeedbackCreated?: Maybe<KitsuneFeedbackEvent>;
|
|
160901
161374
|
liveChat_updates?: Maybe<LiveChatUpdate>;
|
|
160902
161375
|
mercury?: Maybe<MercurySubscriptionApi>;
|
|
@@ -160914,6 +161387,11 @@ export declare type SubscriptionBlockService_OnBlockUpdatedArgs = {
|
|
|
160914
161387
|
export declare type SubscriptionConfluence_OnContentModifiedArgs = {
|
|
160915
161388
|
id: Scalars['ID']['input'];
|
|
160916
161389
|
};
|
|
161390
|
+
export declare type SubscriptionConvoai_OnAgentSessionCreateArgs = {
|
|
161391
|
+
accountId: Scalars['String']['input'];
|
|
161392
|
+
cloudId: Scalars['ID']['input'];
|
|
161393
|
+
issueId: Scalars['String']['input'];
|
|
161394
|
+
};
|
|
160917
161395
|
export declare type SubscriptionConvoai_OnAgentSessionUpdateArgs = {
|
|
160918
161396
|
cloudId: Scalars['ID']['input'];
|
|
160919
161397
|
conversationId: Scalars['ID']['input'];
|
|
@@ -160969,6 +161447,12 @@ export declare type SubscriptionJsmChannels_OnServiceAgentResolutionStateByTicke
|
|
|
160969
161447
|
jiraProjectAri: Scalars['ID']['input'];
|
|
160970
161448
|
workItemId: Scalars['ID']['input'];
|
|
160971
161449
|
};
|
|
161450
|
+
export declare type SubscriptionJsmConversation_UpdatesByProjectArgs = {
|
|
161451
|
+
projectAri: Scalars['ID']['input'];
|
|
161452
|
+
};
|
|
161453
|
+
export declare type SubscriptionJsmConversation_UpdatesByUserArgs = {
|
|
161454
|
+
projectAri: Scalars['ID']['input'];
|
|
161455
|
+
};
|
|
160972
161456
|
export declare type SubscriptionKitsune_OnFeedbackCreatedArgs = {
|
|
160973
161457
|
spaceAri: Scalars['ID']['input'];
|
|
160974
161458
|
};
|
|
@@ -161039,6 +161523,7 @@ export declare type SupportRequest = {
|
|
|
161039
161523
|
destinationLicense?: Maybe<Scalars['String']['output']>;
|
|
161040
161524
|
experienceFields?: Maybe<Array<SupportRequestField>>;
|
|
161041
161525
|
fields: Array<SupportRequestField>;
|
|
161526
|
+
hipaaStatus?: Maybe<Scalars['Boolean']['output']>;
|
|
161042
161527
|
id: Scalars['ID']['output'];
|
|
161043
161528
|
lastComment: SupportRequestComments;
|
|
161044
161529
|
migrationPhase?: Maybe<Scalars['String']['output']>;
|
|
@@ -161105,6 +161590,7 @@ export declare type SupportRequestAddCommentInput = {
|
|
|
161105
161590
|
message: Scalars['String']['input'];
|
|
161106
161591
|
};
|
|
161107
161592
|
export declare type SupportRequestAdditionalTicketData = {
|
|
161593
|
+
chatTranscript?: InputMaybe<Scalars['String']['input']>;
|
|
161108
161594
|
operationType?: InputMaybe<Scalars['String']['input']>;
|
|
161109
161595
|
parentIssueIdOrKey?: InputMaybe<Scalars['String']['input']>;
|
|
161110
161596
|
};
|
|
@@ -161557,6 +162043,13 @@ export declare type TeamChildrenEdge = {
|
|
|
161557
162043
|
cursor: Scalars['String']['output'];
|
|
161558
162044
|
node?: Maybe<TeamV2>;
|
|
161559
162045
|
};
|
|
162046
|
+
export declare type TeamCreateCustomFieldPayload = {
|
|
162047
|
+
cardinality: TeamCustomFieldCardinality;
|
|
162048
|
+
description?: InputMaybe<Scalars['String']['input']>;
|
|
162049
|
+
name: Scalars['String']['input'];
|
|
162050
|
+
options?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
162051
|
+
type: TeamCustomFieldType;
|
|
162052
|
+
};
|
|
161560
162053
|
export declare type TeamCreatePayload = Payload & {
|
|
161561
162054
|
__typename?: 'TeamCreatePayload';
|
|
161562
162055
|
errors?: Maybe<Array<MutationError>>;
|
|
@@ -161571,6 +162064,26 @@ export declare type TeamCreateTeamInput = {
|
|
|
161571
162064
|
scopeId: Scalars['ID']['input'];
|
|
161572
162065
|
typeId?: InputMaybe<Scalars['ID']['input']>;
|
|
161573
162066
|
};
|
|
162067
|
+
export declare enum TeamCustomFieldCardinality {
|
|
162068
|
+
Multi = "MULTI",
|
|
162069
|
+
Single = "SINGLE"
|
|
162070
|
+
}
|
|
162071
|
+
export declare type TeamCustomFieldInfo = {
|
|
162072
|
+
__typename?: 'TeamCustomFieldInfo';
|
|
162073
|
+
cardinality: TeamCustomFieldCardinality;
|
|
162074
|
+
description?: Maybe<Scalars['String']['output']>;
|
|
162075
|
+
id: Scalars['ID']['output'];
|
|
162076
|
+
name: Scalars['String']['output'];
|
|
162077
|
+
options?: Maybe<Array<Scalars['String']['output']>>;
|
|
162078
|
+
type: TeamCustomFieldType;
|
|
162079
|
+
};
|
|
162080
|
+
export declare enum TeamCustomFieldType {
|
|
162081
|
+
Number = "NUMBER",
|
|
162082
|
+
Selector = "SELECTOR",
|
|
162083
|
+
String = "STRING",
|
|
162084
|
+
Team = "TEAM",
|
|
162085
|
+
User = "USER"
|
|
162086
|
+
}
|
|
161574
162087
|
export declare type TeamDeletePayload = Payload & {
|
|
161575
162088
|
__typename?: 'TeamDeletePayload';
|
|
161576
162089
|
errors?: Maybe<Array<MutationError>>;
|
|
@@ -161661,12 +162174,16 @@ export declare type TeamMutation = {
|
|
|
161661
162174
|
addParent?: Maybe<TeamV2>;
|
|
161662
162175
|
assignTeamToType?: Maybe<TeamV2>;
|
|
161663
162176
|
bulkAssignTeamsToType?: Maybe<Array<Maybe<TeamV2>>>;
|
|
162177
|
+
createCustomField?: Maybe<TeamCustomFieldInfo>;
|
|
161664
162178
|
createTeam?: Maybe<TeamCreatePayload>;
|
|
161665
162179
|
createTeamType?: Maybe<TeamType>;
|
|
162180
|
+
deleteCustomField?: Maybe<Scalars['Boolean']['output']>;
|
|
162181
|
+
deleteCustomFieldValue?: Maybe<Scalars['Boolean']['output']>;
|
|
161666
162182
|
deleteTeam?: Maybe<TeamDeletePayload>;
|
|
161667
162183
|
deleteTeamType?: Maybe<TeamType>;
|
|
161668
162184
|
removeChild?: Maybe<TeamV2>;
|
|
161669
162185
|
removeParent?: Maybe<TeamV2>;
|
|
162186
|
+
setNotificationConfiguration?: Maybe<TeamNotificationConfiguration>;
|
|
161670
162187
|
updateRoleAssignments?: Maybe<TeamUpdateRoleAssignmentsResponse>;
|
|
161671
162188
|
updateTeam?: Maybe<TeamUpdatePayload>;
|
|
161672
162189
|
updateType?: Maybe<TeamType>;
|
|
@@ -161690,6 +162207,10 @@ export declare type TeamMutationBulkAssignTeamsToTypeArgs = {
|
|
|
161690
162207
|
teamIds: Array<InputMaybe<Scalars['ID']['input']>>;
|
|
161691
162208
|
typeId: Scalars['ID']['input'];
|
|
161692
162209
|
};
|
|
162210
|
+
export declare type TeamMutationCreateCustomFieldArgs = {
|
|
162211
|
+
customFieldData: TeamCreateCustomFieldPayload;
|
|
162212
|
+
scopeId: Scalars['ID']['input'];
|
|
162213
|
+
};
|
|
161693
162214
|
export declare type TeamMutationCreateTeamArgs = {
|
|
161694
162215
|
input: TeamCreateTeamInput;
|
|
161695
162216
|
};
|
|
@@ -161697,6 +162218,12 @@ export declare type TeamMutationCreateTeamTypeArgs = {
|
|
|
161697
162218
|
scopeId: Scalars['ID']['input'];
|
|
161698
162219
|
typeData: TeamTypeCreationPayload;
|
|
161699
162220
|
};
|
|
162221
|
+
export declare type TeamMutationDeleteCustomFieldArgs = {
|
|
162222
|
+
id: Scalars['ID']['input'];
|
|
162223
|
+
};
|
|
162224
|
+
export declare type TeamMutationDeleteCustomFieldValueArgs = {
|
|
162225
|
+
id: Scalars['ID']['input'];
|
|
162226
|
+
};
|
|
161700
162227
|
export declare type TeamMutationDeleteTeamArgs = {
|
|
161701
162228
|
input: TeamDeleteTeamInput;
|
|
161702
162229
|
};
|
|
@@ -161712,6 +162239,9 @@ export declare type TeamMutationRemoveParentArgs = {
|
|
|
161712
162239
|
siteId: Scalars['ID']['input'];
|
|
161713
162240
|
teamId: Scalars['ID']['input'];
|
|
161714
162241
|
};
|
|
162242
|
+
export declare type TeamMutationSetNotificationConfigurationArgs = {
|
|
162243
|
+
input: TeamSetNotificationConfigurationInput;
|
|
162244
|
+
};
|
|
161715
162245
|
export declare type TeamMutationUpdateRoleAssignmentsArgs = {
|
|
161716
162246
|
organizationId: Scalars['ID']['input'];
|
|
161717
162247
|
principalsToAdd: Array<InputMaybe<Scalars['ID']['input']>>;
|
|
@@ -161725,6 +162255,26 @@ export declare type TeamMutationUpdateTypeArgs = {
|
|
|
161725
162255
|
id: Scalars['ID']['input'];
|
|
161726
162256
|
typeData: TeamTypeUpdatePayload;
|
|
161727
162257
|
};
|
|
162258
|
+
export declare enum TeamNotificationChannel {
|
|
162259
|
+
Email = "EMAIL",
|
|
162260
|
+
InApp = "IN_APP"
|
|
162261
|
+
}
|
|
162262
|
+
export declare type TeamNotificationConfiguration = {
|
|
162263
|
+
__typename?: 'TeamNotificationConfiguration';
|
|
162264
|
+
ari: Scalars['ID']['output'];
|
|
162265
|
+
enabled: Scalars['Boolean']['output'];
|
|
162266
|
+
notificationChannel: TeamNotificationChannel;
|
|
162267
|
+
notificationType: TeamNotificationType;
|
|
162268
|
+
};
|
|
162269
|
+
export declare enum TeamNotificationType {
|
|
162270
|
+
UserAddedToTeam = "USER_ADDED_TO_TEAM",
|
|
162271
|
+
UserArchivedTeam = "USER_ARCHIVED_TEAM",
|
|
162272
|
+
UserDeletedTeam = "USER_DELETED_TEAM",
|
|
162273
|
+
UserInvitedToTeam = "USER_INVITED_TO_TEAM",
|
|
162274
|
+
UserRequestedToJoinTeam = "USER_REQUESTED_TO_JOIN_TEAM",
|
|
162275
|
+
UserRestoredTeam = "USER_RESTORED_TEAM",
|
|
162276
|
+
UserUnarchivedTeam = "USER_UNARCHIVED_TEAM"
|
|
162277
|
+
}
|
|
161728
162278
|
export declare enum TeamPermission {
|
|
161729
162279
|
FullRead = "FULL_READ",
|
|
161730
162280
|
FullWrite = "FULL_WRITE",
|
|
@@ -161741,6 +162291,8 @@ export declare type TeamPrincipalEdge = {
|
|
|
161741
162291
|
};
|
|
161742
162292
|
export declare type TeamQuery = {
|
|
161743
162293
|
__typename?: 'TeamQuery';
|
|
162294
|
+
customFieldsWithinScope?: Maybe<Array<TeamCustomFieldInfo>>;
|
|
162295
|
+
notificationConfigurations?: Maybe<Array<TeamNotificationConfiguration>>;
|
|
161744
162296
|
roleAssignments?: Maybe<TeamRoleAssignmentsConnection>;
|
|
161745
162297
|
team?: Maybe<Team>;
|
|
161746
162298
|
teamSearch?: Maybe<TeamSearchResultConnection>;
|
|
@@ -161751,6 +162303,12 @@ export declare type TeamQuery = {
|
|
|
161751
162303
|
typeInformation?: Maybe<TeamType>;
|
|
161752
162304
|
typesWithinScope?: Maybe<TeamTypeConnection>;
|
|
161753
162305
|
};
|
|
162306
|
+
export declare type TeamQueryCustomFieldsWithinScopeArgs = {
|
|
162307
|
+
scopeId: Scalars['ID']['input'];
|
|
162308
|
+
};
|
|
162309
|
+
export declare type TeamQueryNotificationConfigurationsArgs = {
|
|
162310
|
+
ari: Scalars['ID']['input'];
|
|
162311
|
+
};
|
|
161754
162312
|
export declare type TeamQueryRoleAssignmentsArgs = {
|
|
161755
162313
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
161756
162314
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
@@ -161851,6 +162409,12 @@ export declare type TeamSearchResultV2 = {
|
|
|
161851
162409
|
memberCount?: Maybe<Scalars['Int']['output']>;
|
|
161852
162410
|
team?: Maybe<TeamV2>;
|
|
161853
162411
|
};
|
|
162412
|
+
export declare type TeamSetNotificationConfigurationInput = {
|
|
162413
|
+
ari: Scalars['ID']['input'];
|
|
162414
|
+
enabled: Scalars['Boolean']['input'];
|
|
162415
|
+
notificationChannel: TeamNotificationChannel;
|
|
162416
|
+
notificationType: TeamNotificationType;
|
|
162417
|
+
};
|
|
161854
162418
|
export declare type TeamSort = {
|
|
161855
162419
|
field: TeamSortField;
|
|
161856
162420
|
order?: InputMaybe<TeamSortOrder>;
|
|
@@ -162545,6 +163109,24 @@ export declare enum TownsquareAccessControlCapability {
|
|
|
162545
163109
|
Create = "CREATE"
|
|
162546
163110
|
}
|
|
162547
163111
|
export declare type TownsquareAccessPrincipal = AppUser | AtlassianAccountUser | CustomerUser;
|
|
163112
|
+
export declare type TownsquareActivityChange = TownsquareGoalCreatedChange;
|
|
163113
|
+
export declare type TownsquareActivityItem = {
|
|
163114
|
+
__typename?: 'TownsquareActivityItem';
|
|
163115
|
+
actor?: Maybe<User>;
|
|
163116
|
+
change?: Maybe<TownsquareActivityChange>;
|
|
163117
|
+
createdAt?: Maybe<Scalars['DateTime']['output']>;
|
|
163118
|
+
uuid?: Maybe<Scalars['UUID']['output']>;
|
|
163119
|
+
};
|
|
163120
|
+
export declare type TownsquareActivityItemConnection = {
|
|
163121
|
+
__typename?: 'TownsquareActivityItemConnection';
|
|
163122
|
+
edges?: Maybe<Array<Maybe<TownsquareActivityItemEdge>>>;
|
|
163123
|
+
pageInfo: PageInfo;
|
|
163124
|
+
};
|
|
163125
|
+
export declare type TownsquareActivityItemEdge = {
|
|
163126
|
+
__typename?: 'TownsquareActivityItemEdge';
|
|
163127
|
+
cursor: Scalars['String']['output'];
|
|
163128
|
+
node?: Maybe<TownsquareActivityItem>;
|
|
163129
|
+
};
|
|
162548
163130
|
export declare type TownsquareAddProjectLinkInput = {
|
|
162549
163131
|
goalId: Scalars['ID']['input'];
|
|
162550
163132
|
projectId: Scalars['ID']['input'];
|
|
@@ -162922,6 +163504,7 @@ export declare type TownsquareFusionDetails = {
|
|
|
162922
163504
|
export declare type TownsquareGoal = Node & {
|
|
162923
163505
|
__typename?: 'TownsquareGoal';
|
|
162924
163506
|
access?: Maybe<TownsquareGoalAccessConnection>;
|
|
163507
|
+
activityItems?: Maybe<TownsquareActivityItemConnection>;
|
|
162925
163508
|
archived: Scalars['Boolean']['output'];
|
|
162926
163509
|
canEditMembers?: Maybe<Scalars['Boolean']['output']>;
|
|
162927
163510
|
canEditUpdate?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -162973,6 +163556,10 @@ export declare type TownsquareGoalAccessArgs = {
|
|
|
162973
163556
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
162974
163557
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
162975
163558
|
};
|
|
163559
|
+
export declare type TownsquareGoalActivityItemsArgs = {
|
|
163560
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
163561
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
163562
|
+
};
|
|
162976
163563
|
export declare type TownsquareGoalCommentsArgs = {
|
|
162977
163564
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
162978
163565
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
@@ -163138,6 +163725,10 @@ export declare type TownsquareGoalCreateMetricInput = {
|
|
|
163138
163725
|
type: TownsquareMetricType;
|
|
163139
163726
|
value: Scalars['Float']['input'];
|
|
163140
163727
|
};
|
|
163728
|
+
export declare type TownsquareGoalCreatedChange = {
|
|
163729
|
+
__typename?: 'TownsquareGoalCreatedChange';
|
|
163730
|
+
goalType?: Maybe<TownsquareGoalType>;
|
|
163731
|
+
};
|
|
163141
163732
|
export declare type TownsquareGoalEdge = {
|
|
163142
163733
|
__typename?: 'TownsquareGoalEdge';
|
|
163143
163734
|
cursor: Scalars['String']['output'];
|
|
@@ -166433,6 +167024,7 @@ export declare type TrelloBoardUpdated = TrelloBaseBoardUpdated & {
|
|
|
166433
167024
|
onLabelDeleted?: Maybe<Array<TrelloLabelDeleted>>;
|
|
166434
167025
|
onMembersDeleted?: Maybe<Array<TrelloBoardMembershipDeleted>>;
|
|
166435
167026
|
onPlannerEventCardsDeleted?: Maybe<Array<TrelloPlannerEventCardDeleted>>;
|
|
167027
|
+
onPowerUpDataDeleted?: Maybe<Array<TrelloPowerUpDataDeleted>>;
|
|
166436
167028
|
plannerEventCards?: Maybe<TrelloCardUpdatedConnection>;
|
|
166437
167029
|
powerUpData?: Maybe<TrelloPowerUpDataConnectionUpdated>;
|
|
166438
167030
|
powerUps?: Maybe<TrelloBoardPowerUpConnectionUpdated>;
|
|
@@ -168083,6 +168675,11 @@ export declare type TrelloMoveCardBoardEntities = {
|
|
|
168083
168675
|
card?: Maybe<TrelloActionCardEntity>;
|
|
168084
168676
|
memberCreator?: Maybe<TrelloActionMemberEntity>;
|
|
168085
168677
|
};
|
|
168678
|
+
export declare type TrelloMoveCardFailure = {
|
|
168679
|
+
__typename?: 'TrelloMoveCardFailure';
|
|
168680
|
+
card: TrelloCard;
|
|
168681
|
+
message: Scalars['String']['output'];
|
|
168682
|
+
};
|
|
168086
168683
|
export declare type TrelloMoveCardToBoardAction = TrelloAction & TrelloCardActionData & {
|
|
168087
168684
|
__typename?: 'TrelloMoveCardToBoardAction';
|
|
168088
168685
|
appCreator?: Maybe<TrelloAppCreator>;
|
|
@@ -168098,6 +168695,19 @@ export declare type TrelloMoveCardToBoardAction = TrelloAction & TrelloCardActio
|
|
|
168098
168695
|
reactionsDeleted?: Maybe<Array<TrelloReactionDeleted>>;
|
|
168099
168696
|
type?: Maybe<Scalars['String']['output']>;
|
|
168100
168697
|
};
|
|
168698
|
+
export declare type TrelloMoveCardsInput = {
|
|
168699
|
+
boardId: Scalars['ID']['input'];
|
|
168700
|
+
cardIds: Array<Scalars['ID']['input']>;
|
|
168701
|
+
listId: Scalars['ID']['input'];
|
|
168702
|
+
position: Scalars['Float']['input'];
|
|
168703
|
+
};
|
|
168704
|
+
export declare type TrelloMoveCardsPayload = {
|
|
168705
|
+
__typename?: 'TrelloMoveCardsPayload';
|
|
168706
|
+
errors?: Maybe<Array<MutationError>>;
|
|
168707
|
+
moveFailures?: Maybe<Array<TrelloMoveCardFailure>>;
|
|
168708
|
+
movedCards?: Maybe<Array<TrelloCard>>;
|
|
168709
|
+
success: Scalars['Boolean']['output'];
|
|
168710
|
+
};
|
|
168101
168711
|
export declare type TrelloMoveInboxCardToBoardAction = TrelloAction & TrelloCardActionData & {
|
|
168102
168712
|
__typename?: 'TrelloMoveInboxCardToBoardAction';
|
|
168103
168713
|
appCreator?: Maybe<TrelloAppCreator>;
|
|
@@ -168164,6 +168774,7 @@ export declare type TrelloMutationApi = {
|
|
|
168164
168774
|
markCardComplete?: Maybe<TrelloMarkCardCompletePayload>;
|
|
168165
168775
|
markInboxNotificationsRead?: Maybe<TrelloMarkInboxNotificationsReadPayload>;
|
|
168166
168776
|
mergeCards?: Maybe<TrelloMergeCardsPayload>;
|
|
168777
|
+
moveCards?: Maybe<TrelloMoveCardsPayload>;
|
|
168167
168778
|
movePlannerCalendarEvent?: Maybe<TrelloMovePlannerCalendarEventPayload>;
|
|
168168
168779
|
pinCard?: Maybe<TrelloPinCardPayload>;
|
|
168169
168780
|
proposePlannerEvents?: Maybe<TrelloProposePlannerEventsPayload>;
|
|
@@ -168283,6 +168894,9 @@ export declare type TrelloMutationApiMarkInboxNotificationsReadArgs = {
|
|
|
168283
168894
|
export declare type TrelloMutationApiMergeCardsArgs = {
|
|
168284
168895
|
input: TrelloMergeCardsInput;
|
|
168285
168896
|
};
|
|
168897
|
+
export declare type TrelloMutationApiMoveCardsArgs = {
|
|
168898
|
+
input: TrelloMoveCardsInput;
|
|
168899
|
+
};
|
|
168286
168900
|
export declare type TrelloMutationApiMovePlannerCalendarEventArgs = {
|
|
168287
168901
|
input: TrelloMovePlannerCalendarEventInput;
|
|
168288
168902
|
};
|
|
@@ -168476,6 +169090,7 @@ export declare type TrelloPlanner = {
|
|
|
168476
169090
|
accounts?: Maybe<TrelloPlannerCalendarAccountConnection>;
|
|
168477
169091
|
id: Scalars['ID']['output'];
|
|
168478
169092
|
primaryAccountId?: Maybe<Scalars['ID']['output']>;
|
|
169093
|
+
primaryCalendarId?: Maybe<Scalars['ID']['output']>;
|
|
168479
169094
|
proposedEvents?: Maybe<TrelloPlannerProposedEventConnection>;
|
|
168480
169095
|
workspace?: Maybe<TrelloWorkspace>;
|
|
168481
169096
|
};
|
|
@@ -168764,6 +169379,11 @@ export declare type TrelloPlannerCalendarMutated = TrelloPlannerCalendarAccount
|
|
|
168764
169379
|
export declare type TrelloPlannerCalendarProviderCalendarsFilter = {
|
|
168765
169380
|
updateCursor?: InputMaybe<Scalars['String']['input']>;
|
|
168766
169381
|
};
|
|
169382
|
+
export declare type TrelloPlannerCalendarStatus = {
|
|
169383
|
+
__typename?: 'TrelloPlannerCalendarStatus';
|
|
169384
|
+
failed: Array<Scalars['ID']['output']>;
|
|
169385
|
+
succeeded: Array<Scalars['ID']['output']>;
|
|
169386
|
+
};
|
|
168767
169387
|
export declare type TrelloPlannerCalendarUpdated = {
|
|
168768
169388
|
__typename?: 'TrelloPlannerCalendarUpdated';
|
|
168769
169389
|
color?: Maybe<TrelloPlannerCalendarColor>;
|
|
@@ -168802,6 +169422,7 @@ export declare type TrelloPlannerCardUpdated = {
|
|
|
168802
169422
|
};
|
|
168803
169423
|
export declare type TrelloPlannerEventCardConnection = {
|
|
168804
169424
|
__typename?: 'TrelloPlannerEventCardConnection';
|
|
169425
|
+
calendarStatus: TrelloPlannerCalendarStatus;
|
|
168805
169426
|
edges: Array<TrelloPlannerEventCardEdge>;
|
|
168806
169427
|
pageInfo: PageInfo;
|
|
168807
169428
|
};
|
|
@@ -168817,6 +169438,7 @@ export declare type TrelloPlannerEventCardEdge = {
|
|
|
168817
169438
|
};
|
|
168818
169439
|
export declare type TrelloPlannerEventConnection = {
|
|
168819
169440
|
__typename?: 'TrelloPlannerEventConnection';
|
|
169441
|
+
calendarStatus?: Maybe<TrelloPlannerCalendarStatus>;
|
|
168820
169442
|
edges: Array<TrelloPlannerEventEdge>;
|
|
168821
169443
|
pageInfo: PageInfo;
|
|
168822
169444
|
};
|
|
@@ -168897,6 +169519,7 @@ export declare type TrelloPlannerUpdated = {
|
|
|
168897
169519
|
onPlannerCalendarAccountDeleted?: Maybe<Array<TrelloPlannerCalendarAccountDeleted>>;
|
|
168898
169520
|
onProposedEventDeleted?: Maybe<Array<TrelloProposedEventDeleted>>;
|
|
168899
169521
|
primaryAccountId?: Maybe<Scalars['ID']['output']>;
|
|
169522
|
+
primaryCalendarId?: Maybe<Scalars['ID']['output']>;
|
|
168900
169523
|
proposedEvents?: Maybe<TrelloPlannerProposedEventConnectionUpdated>;
|
|
168901
169524
|
};
|
|
168902
169525
|
export declare type TrelloPowerUp = {
|
|
@@ -169881,6 +170504,7 @@ export declare type TrelloUpdateOAuth2ClientPayload = Payload & {
|
|
|
169881
170504
|
success: Scalars['Boolean']['output'];
|
|
169882
170505
|
};
|
|
169883
170506
|
export declare type TrelloUpdatePrimaryPlannerAccountInput = {
|
|
170507
|
+
calendarId?: InputMaybe<Scalars['ID']['input']>;
|
|
169884
170508
|
providerAccountId: Scalars['ID']['input'];
|
|
169885
170509
|
};
|
|
169886
170510
|
export declare type TrelloUpdatePrimaryPlannerAccountPayload = Payload & {
|
|
@@ -169965,6 +170589,7 @@ export declare type TrelloWorkspace = Node & {
|
|
|
169965
170589
|
name?: Maybe<Scalars['String']['output']>;
|
|
169966
170590
|
objectId?: Maybe<Scalars['ID']['output']>;
|
|
169967
170591
|
offering?: Maybe<Scalars['String']['output']>;
|
|
170592
|
+
powerUpData?: Maybe<TrelloPowerUpDataConnection>;
|
|
169968
170593
|
prefs?: Maybe<TrelloWorkspacePrefs>;
|
|
169969
170594
|
premiumFeatures?: Maybe<Array<Scalars['String']['output']>>;
|
|
169970
170595
|
products?: Maybe<Array<Scalars['Float']['output']>>;
|
|
@@ -169976,6 +170601,11 @@ export declare type TrelloWorkspaceMembersArgs = {
|
|
|
169976
170601
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
169977
170602
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
169978
170603
|
};
|
|
170604
|
+
export declare type TrelloWorkspacePowerUpDataArgs = {
|
|
170605
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
170606
|
+
filter?: InputMaybe<TrelloPowerUpDataFilterInput>;
|
|
170607
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
170608
|
+
};
|
|
169979
170609
|
export declare type TrelloWorkspaceTagsArgs = {
|
|
169980
170610
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
169981
170611
|
first?: InputMaybe<Scalars['Int']['input']>;
|