@forge/cli-shared 9.4.0-next.9 → 9.4.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +51 -0
- package/out/app-logs/graphql-client.d.ts.map +1 -1
- package/out/app-logs/graphql-client.js +26 -0
- package/out/app-logs/view-logs.d.ts +15 -3
- package/out/app-logs/view-logs.d.ts.map +1 -1
- package/out/app-logs/view-logs.js +14 -4
- package/out/graphql/graphql-types.d.ts +495 -35
- package/out/graphql/graphql-types.d.ts.map +1 -1
- package/out/graphql/graphql-types.js +85 -50
- package/out/service/statsig-service.d.ts +1 -2
- package/out/service/statsig-service.d.ts.map +1 -1
- package/out/service/statsig-service.js +2 -2
- package/out/ui/text.d.ts +5 -1
- package/out/ui/text.d.ts.map +1 -1
- package/out/ui/text.js +6 -2
- package/package.json +2 -2
|
@@ -2732,7 +2732,8 @@ export declare enum AvpPermissionsCapabilityFailureType {
|
|
|
2732
2732
|
None = "NONE",
|
|
2733
2733
|
PerimeterDenied = "PERIMETER_DENIED",
|
|
2734
2734
|
PermissionDenied = "PERMISSION_DENIED",
|
|
2735
|
-
ProductRequired = "PRODUCT_REQUIRED"
|
|
2735
|
+
ProductRequired = "PRODUCT_REQUIRED",
|
|
2736
|
+
UserRequired = "USER_REQUIRED"
|
|
2736
2737
|
}
|
|
2737
2738
|
export type AvpPermissionsCapabilityResult = {
|
|
2738
2739
|
__typename?: 'AVPPermissionsCapabilityResult';
|
|
@@ -3863,6 +3864,14 @@ export type AdminAccountStatusCounts = {
|
|
|
3863
3864
|
accountStatus: Scalars['String']['output'];
|
|
3864
3865
|
count: Scalars['Int']['output'];
|
|
3865
3866
|
};
|
|
3867
|
+
export type AdminActivateOrgForUnitsInput = {
|
|
3868
|
+
orgId: Scalars['ID']['input'];
|
|
3869
|
+
};
|
|
3870
|
+
export type AdminActivateOrgForUnitsPayload = {
|
|
3871
|
+
__typename?: 'AdminActivateOrgForUnitsPayload';
|
|
3872
|
+
errors?: Maybe<Array<AdminMutationError>>;
|
|
3873
|
+
success: Scalars['Boolean']['output'];
|
|
3874
|
+
};
|
|
3866
3875
|
export type AdminActivateUserInput = {
|
|
3867
3876
|
accountId: Scalars['String']['input'];
|
|
3868
3877
|
directoryId: Scalars['String']['input'];
|
|
@@ -9832,6 +9841,11 @@ export type AgentWorkspaceWorkforceTeamAccessLevelUpdateInput = {
|
|
|
9832
9841
|
projectARI: Scalars['ID']['input'];
|
|
9833
9842
|
teamARI: Scalars['ID']['input'];
|
|
9834
9843
|
};
|
|
9844
|
+
export type AgentWorkspaceWorkforceTeamAccessLevelsPayload = {
|
|
9845
|
+
__typename?: 'AgentWorkspaceWorkforceTeamAccessLevelsPayload';
|
|
9846
|
+
accessLevels: Array<AgentWorkspaceWorkforceTeamAccessLevelResult>;
|
|
9847
|
+
errors: Array<AgentWorkspaceWorkforceTeamAccessError>;
|
|
9848
|
+
};
|
|
9835
9849
|
export type AgentWorkspaceWorkloadJqlConfig = {
|
|
9836
9850
|
__typename?: 'AgentWorkspaceWorkloadJqlConfig';
|
|
9837
9851
|
jql: Scalars['String']['output'];
|
|
@@ -12294,16 +12308,26 @@ export type Artifact = {
|
|
|
12294
12308
|
id: Scalars['ID']['output'];
|
|
12295
12309
|
name: Scalars['String']['output'];
|
|
12296
12310
|
type: Scalars['String']['output'];
|
|
12297
|
-
url
|
|
12311
|
+
url: Scalars['URL']['output'];
|
|
12312
|
+
};
|
|
12313
|
+
export declare enum ArtifactChecksumType {
|
|
12314
|
+
Sha256 = "SHA256"
|
|
12315
|
+
}
|
|
12316
|
+
export type ArtifactCreateContentInput = {
|
|
12317
|
+
checksum: Scalars['String']['input'];
|
|
12318
|
+
checksumType: ArtifactChecksumType;
|
|
12319
|
+
contextId: Scalars['ID']['input'];
|
|
12320
|
+
length: Scalars['Int']['input'];
|
|
12298
12321
|
};
|
|
12299
|
-
export type ArtifactCreateContentPayload = {
|
|
12322
|
+
export type ArtifactCreateContentPayload = Payload & {
|
|
12300
12323
|
__typename?: 'ArtifactCreateContentPayload';
|
|
12301
12324
|
errors?: Maybe<Array<MutationError>>;
|
|
12302
|
-
success
|
|
12325
|
+
success: Scalars['Boolean']['output'];
|
|
12303
12326
|
upload?: Maybe<ArtifactUploadTarget>;
|
|
12304
12327
|
};
|
|
12305
12328
|
export type ArtifactCreateInput = {
|
|
12306
12329
|
contentId: Scalars['ID']['input'];
|
|
12330
|
+
contextId: Scalars['ID']['input'];
|
|
12307
12331
|
name: Scalars['String']['input'];
|
|
12308
12332
|
type: Scalars['String']['input'];
|
|
12309
12333
|
};
|
|
@@ -12313,6 +12337,10 @@ export type ArtifactCreatePayload = Payload & {
|
|
|
12313
12337
|
errors?: Maybe<Array<MutationError>>;
|
|
12314
12338
|
success: Scalars['Boolean']['output'];
|
|
12315
12339
|
};
|
|
12340
|
+
export type ArtifactGetInput = {
|
|
12341
|
+
contextId: Scalars['ID']['input'];
|
|
12342
|
+
id: Scalars['ID']['input'];
|
|
12343
|
+
};
|
|
12316
12344
|
export type ArtifactUploadTarget = {
|
|
12317
12345
|
__typename?: 'ArtifactUploadTarget';
|
|
12318
12346
|
contentId: Scalars['ID']['output'];
|
|
@@ -14275,6 +14303,7 @@ export type AssetsDmObjectInfo = {
|
|
|
14275
14303
|
};
|
|
14276
14304
|
export type AssetsDmObjectSchema = {
|
|
14277
14305
|
__typename?: 'AssetsDMObjectSchema';
|
|
14306
|
+
displayName?: Maybe<Scalars['String']['output']>;
|
|
14278
14307
|
id: Scalars['ID']['output'];
|
|
14279
14308
|
name: Scalars['String']['output'];
|
|
14280
14309
|
objectCount: Scalars['Int']['output'];
|
|
@@ -14704,6 +14733,7 @@ export type AssetsDmSavedSearchesQueryArgs = {
|
|
|
14704
14733
|
};
|
|
14705
14734
|
export type AssetsDmSchemaObjectType = {
|
|
14706
14735
|
__typename?: 'AssetsDMSchemaObjectType';
|
|
14736
|
+
displayName?: Maybe<Scalars['String']['output']>;
|
|
14707
14737
|
id: Scalars['ID']['output'];
|
|
14708
14738
|
name: Scalars['String']['output'];
|
|
14709
14739
|
objectCount?: Maybe<Scalars['Int']['output']>;
|
|
@@ -23610,11 +23640,15 @@ export declare enum CommerceExpEntitlementLevel {
|
|
|
23610
23640
|
}
|
|
23611
23641
|
export type CommerceExpEntitlementProvisioning = {
|
|
23612
23642
|
__typename?: 'CommerceExpEntitlementProvisioning';
|
|
23643
|
+
bitbucketWorkspace?: Maybe<BitbucketWorkspace>;
|
|
23644
|
+
bitbucketWorkspaceAri?: Maybe<Scalars['String']['output']>;
|
|
23613
23645
|
canReactivate?: Maybe<Scalars['Boolean']['output']>;
|
|
23614
23646
|
level?: Maybe<CommerceExpEntitlementLevel>;
|
|
23615
23647
|
lifecycleState?: Maybe<Scalars['String']['output']>;
|
|
23616
23648
|
organisation?: Maybe<CommerceExpOrganisation>;
|
|
23617
23649
|
resourceAris?: Maybe<Array<Maybe<Scalars['ID']['output']>>>;
|
|
23650
|
+
site?: Maybe<TenantContext>;
|
|
23651
|
+
siteResourceId?: Maybe<Scalars['String']['output']>;
|
|
23618
23652
|
sourceEntitlement?: Maybe<CommerceExpCcpEntitlement>;
|
|
23619
23653
|
status?: Maybe<CommerceExpEntitlementProvisioningStatus>;
|
|
23620
23654
|
suspensionReasons?: Maybe<Array<Maybe<Scalars['String']['output']>>>;
|
|
@@ -30954,8 +30988,8 @@ export type ConfluenceAccessLinkInfo = {
|
|
|
30954
30988
|
};
|
|
30955
30989
|
export type ConfluenceAccessLinkSpacesActionInput = {
|
|
30956
30990
|
accessTypes: Array<ConfluenceShareableLinkAccessType>;
|
|
30991
|
+
action: ConfluenceShareableLinkSpaceStatus;
|
|
30957
30992
|
spaceIds: Array<Scalars['ID']['input']>;
|
|
30958
|
-
status: ConfluenceShareableLinkSpaceStatus;
|
|
30959
30993
|
};
|
|
30960
30994
|
export type ConfluenceAccessLinkSpacesActionPayload = Payload & {
|
|
30961
30995
|
__typename?: 'ConfluenceAccessLinkSpacesActionPayload';
|
|
@@ -39972,6 +40006,7 @@ export type ConvoAiSearchAgentPayload = {
|
|
|
39972
40006
|
ranking?: Maybe<Array<Maybe<ConvoAiSearchAgentRankedDocument>>>;
|
|
39973
40007
|
sources?: Maybe<Array<Maybe<ConvoAiSearchAgentSourceResult>>>;
|
|
39974
40008
|
timing?: Maybe<ConvoAiSearchAgentTiming>;
|
|
40009
|
+
tokenUsage?: Maybe<ConvoAiSearchAgentTokenUsage>;
|
|
39975
40010
|
};
|
|
39976
40011
|
export type ConvoAiSearchAgentRankedDocument = {
|
|
39977
40012
|
__typename?: 'ConvoAiSearchAgentRankedDocument';
|
|
@@ -40014,6 +40049,17 @@ export type ConvoAiSearchAgentTiming = {
|
|
|
40014
40049
|
toolExecutionsCount?: Maybe<Scalars['Int']['output']>;
|
|
40015
40050
|
toolExecutionsMs?: Maybe<Scalars['Long']['output']>;
|
|
40016
40051
|
};
|
|
40052
|
+
export type ConvoAiSearchAgentTokenUsage = {
|
|
40053
|
+
__typename?: 'ConvoAiSearchAgentTokenUsage';
|
|
40054
|
+
audioTokens?: Maybe<Scalars['Int']['output']>;
|
|
40055
|
+
cacheCreationInputTokens?: Maybe<Scalars['Int']['output']>;
|
|
40056
|
+
cacheReadInputTokens?: Maybe<Scalars['Int']['output']>;
|
|
40057
|
+
completionTokens?: Maybe<Scalars['Int']['output']>;
|
|
40058
|
+
imageTokens?: Maybe<Scalars['Int']['output']>;
|
|
40059
|
+
promptTokens?: Maybe<Scalars['Int']['output']>;
|
|
40060
|
+
reasoningTokens?: Maybe<Scalars['Int']['output']>;
|
|
40061
|
+
totalTokens?: Maybe<Scalars['Int']['output']>;
|
|
40062
|
+
};
|
|
40017
40063
|
export type ConvoAiSkill = {
|
|
40018
40064
|
__typename?: 'ConvoAiSkill';
|
|
40019
40065
|
category?: Maybe<Scalars['String']['output']>;
|
|
@@ -45815,6 +45861,7 @@ export type DevAiAutodevNextWorkstreamSettings = {
|
|
|
45815
45861
|
defaultJiraProjectAri?: Maybe<Scalars['ID']['output']>;
|
|
45816
45862
|
eligibilityCriteria?: Maybe<Scalars['String']['output']>;
|
|
45817
45863
|
notifications?: Maybe<DevAiAutodevNextNotificationSettings>;
|
|
45864
|
+
prNursingEnabled?: Maybe<Scalars['Boolean']['output']>;
|
|
45818
45865
|
pullRequestMessage?: Maybe<Scalars['String']['output']>;
|
|
45819
45866
|
pullRequestPrefix?: Maybe<Scalars['String']['output']>;
|
|
45820
45867
|
scanSchedule?: Maybe<DevAiAutodevNextScanSchedule>;
|
|
@@ -45836,6 +45883,7 @@ export type DevAiAutodevNextWorkstreamSettingsInput = {
|
|
|
45836
45883
|
defaultJiraProjectAri?: InputMaybe<Scalars['ID']['input']>;
|
|
45837
45884
|
eligibilityCriteria?: InputMaybe<Scalars['String']['input']>;
|
|
45838
45885
|
notifications?: InputMaybe<DevAiAutodevNextNotificationSettingsInput>;
|
|
45886
|
+
prNursingEnabled?: InputMaybe<Scalars['Boolean']['input']>;
|
|
45839
45887
|
pullRequestMessage?: InputMaybe<Scalars['String']['input']>;
|
|
45840
45888
|
pullRequestPrefix?: InputMaybe<Scalars['String']['input']>;
|
|
45841
45889
|
scanSchedule?: InputMaybe<DevAiAutodevNextScanScheduleInput>;
|
|
@@ -49254,6 +49302,7 @@ export type EcosystemGlobalInstallationOverrideInput = {
|
|
|
49254
49302
|
export declare enum EcosystemGlobalInstallationOverrideKeys {
|
|
49255
49303
|
AllowCustomMetrics = "ALLOW_CUSTOM_METRICS",
|
|
49256
49304
|
AllowEgressAnalytics = "ALLOW_EGRESS_ANALYTICS",
|
|
49305
|
+
AllowExternalMcp = "ALLOW_EXTERNAL_MCP",
|
|
49257
49306
|
AllowLlmCapability = "ALLOW_LLM_CAPABILITY",
|
|
49258
49307
|
AllowLogsAccess = "ALLOW_LOGS_ACCESS",
|
|
49259
49308
|
AllowPersonalApps = "ALLOW_PERSONAL_APPS",
|
|
@@ -49265,6 +49314,7 @@ export type EcosystemInstallationConfigInput = {
|
|
|
49265
49314
|
export declare enum EcosystemInstallationOverrideKeys {
|
|
49266
49315
|
AllowCustomMetrics = "ALLOW_CUSTOM_METRICS",
|
|
49267
49316
|
AllowEgressAnalytics = "ALLOW_EGRESS_ANALYTICS",
|
|
49317
|
+
AllowExternalMcp = "ALLOW_EXTERNAL_MCP",
|
|
49268
49318
|
AllowLlmCapability = "ALLOW_LLM_CAPABILITY",
|
|
49269
49319
|
AllowLogsAccess = "ALLOW_LOGS_ACCESS",
|
|
49270
49320
|
AllowRestApis = "ALLOW_REST_APIS"
|
|
@@ -53814,6 +53864,7 @@ export type GeneratedPlaybook = {
|
|
|
53814
53864
|
};
|
|
53815
53865
|
export type GeneratedStep = {
|
|
53816
53866
|
__typename?: 'GeneratedStep';
|
|
53867
|
+
checklistItems?: Maybe<Array<ChecklistItem>>;
|
|
53817
53868
|
description?: Maybe<Scalars['JSON']['output']>;
|
|
53818
53869
|
name: Scalars['String']['output'];
|
|
53819
53870
|
type: JiraPlaybookStepType;
|
|
@@ -55310,6 +55361,17 @@ export type GraphInferenceInferenceAppV3 = {
|
|
|
55310
55361
|
reasoningLevel: Scalars['String']['output'];
|
|
55311
55362
|
source: Scalars['String']['output'];
|
|
55312
55363
|
};
|
|
55364
|
+
export type GraphInferenceInferenceEvalInput = {
|
|
55365
|
+
appId: Scalars['String']['input'];
|
|
55366
|
+
sourceAri: Scalars['String']['input'];
|
|
55367
|
+
};
|
|
55368
|
+
export type GraphInferenceInferenceEvalResponse = {
|
|
55369
|
+
__typename?: 'GraphInferenceInferenceEvalResponse';
|
|
55370
|
+
appId: Scalars['String']['output'];
|
|
55371
|
+
result: Scalars['JSON']['output'];
|
|
55372
|
+
sourceAri: Scalars['String']['output'];
|
|
55373
|
+
status: Scalars['String']['output'];
|
|
55374
|
+
};
|
|
55313
55375
|
export type GraphInferenceInferenceModelChoice = {
|
|
55314
55376
|
__typename?: 'GraphInferenceInferenceModelChoice';
|
|
55315
55377
|
id: Scalars['String']['output'];
|
|
@@ -56420,6 +56482,16 @@ export type GraphIntegrationRemoveTwgCapabilityContainerPayload = Payload & {
|
|
|
56420
56482
|
errors?: Maybe<Array<MutationError>>;
|
|
56421
56483
|
success: Scalars['Boolean']['output'];
|
|
56422
56484
|
};
|
|
56485
|
+
export type GraphIntegrationResolveSkillCloneLinkInput = {
|
|
56486
|
+
cloneToken: Scalars['String']['input'];
|
|
56487
|
+
contextAri: Scalars['ID']['input'];
|
|
56488
|
+
};
|
|
56489
|
+
export type GraphIntegrationResolveSkillCloneLinkPayload = {
|
|
56490
|
+
__typename?: 'GraphIntegrationResolveSkillCloneLinkPayload';
|
|
56491
|
+
createdBy?: Maybe<User>;
|
|
56492
|
+
errors?: Maybe<Array<MutationError>>;
|
|
56493
|
+
skills: Array<GraphIntegrationSharedSkillInfo>;
|
|
56494
|
+
};
|
|
56423
56495
|
export type GraphIntegrationSetTwgPlatformCapabilityGlobalAdminSettingInput = {
|
|
56424
56496
|
capabilityType: GraphIntegrationTwgCapabilityType;
|
|
56425
56497
|
cloudId: Scalars['ID']['input'];
|
|
@@ -56431,6 +56503,13 @@ export type GraphIntegrationSetTwgPlatformCapabilityGlobalAdminSettingPayload =
|
|
|
56431
56503
|
setting?: Maybe<GraphIntegrationTwgPlatformCapabilityGlobalAdminSetting>;
|
|
56432
56504
|
success: Scalars['Boolean']['output'];
|
|
56433
56505
|
};
|
|
56506
|
+
export type GraphIntegrationSharedSkillInfo = {
|
|
56507
|
+
__typename?: 'GraphIntegrationSharedSkillInfo';
|
|
56508
|
+
hasConflict: Scalars['Boolean']['output'];
|
|
56509
|
+
id: Scalars['ID']['output'];
|
|
56510
|
+
name: Scalars['String']['output'];
|
|
56511
|
+
uiMetadata: GraphIntegrationSkillUiMetadata;
|
|
56512
|
+
};
|
|
56434
56513
|
export type GraphIntegrationSkill = {
|
|
56435
56514
|
__typename?: 'GraphIntegrationSkill';
|
|
56436
56515
|
description: Scalars['String']['output'];
|
|
@@ -59458,6 +59537,8 @@ export type GraphStore = {
|
|
|
59458
59537
|
atlassianUserDismissedJiraForYouRecommendationEntityInverseBatch?: Maybe<GraphStoreBatchAtlassianUserDismissedJiraForYouRecommendationEntityConnection>;
|
|
59459
59538
|
atlassianUserFollowsAtlassianHomeTag?: Maybe<GraphStoreSimplifiedAtlassianUserFollowsAtlassianHomeTagConnection>;
|
|
59460
59539
|
atlassianUserFollowsAtlassianHomeTagInverse?: Maybe<GraphStoreSimplifiedAtlassianUserFollowsAtlassianHomeTagInverseConnection>;
|
|
59540
|
+
atlassianUserHasPendingApprovalOnJiraWorkItem?: Maybe<GraphStoreSimplifiedAtlassianUserHasPendingApprovalOnJiraWorkItemConnection>;
|
|
59541
|
+
atlassianUserHasPendingApprovalOnJiraWorkItemInverse?: Maybe<GraphStoreSimplifiedAtlassianUserHasPendingApprovalOnJiraWorkItemInverseConnection>;
|
|
59461
59542
|
atlassianUserInvitedToLoomMeeting?: Maybe<GraphStoreSimplifiedAtlassianUserInvitedToLoomMeetingConnection>;
|
|
59462
59543
|
atlassianUserInvitedToLoomMeetingBatch?: Maybe<GraphStoreBatchAtlassianUserInvitedToLoomMeetingConnection>;
|
|
59463
59544
|
atlassianUserInvitedToLoomMeetingInverse?: Maybe<GraphStoreSimplifiedAtlassianUserInvitedToLoomMeetingInverseConnection>;
|
|
@@ -61450,6 +61531,22 @@ export type GraphStoreAtlassianUserFollowsAtlassianHomeTagInverseArgs = {
|
|
|
61450
61531
|
queryContext?: InputMaybe<Scalars['String']['input']>;
|
|
61451
61532
|
sort?: InputMaybe<GraphStoreAtlassianUserFollowsAtlassianHomeTagSortInput>;
|
|
61452
61533
|
};
|
|
61534
|
+
export type GraphStoreAtlassianUserHasPendingApprovalOnJiraWorkItemArgs = {
|
|
61535
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
61536
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
61537
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
61538
|
+
id: Scalars['ID']['input'];
|
|
61539
|
+
queryContext?: InputMaybe<Scalars['String']['input']>;
|
|
61540
|
+
sort?: InputMaybe<GraphStoreAtlassianUserHasPendingApprovalOnJiraWorkItemSortInput>;
|
|
61541
|
+
};
|
|
61542
|
+
export type GraphStoreAtlassianUserHasPendingApprovalOnJiraWorkItemInverseArgs = {
|
|
61543
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
61544
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
61545
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
61546
|
+
id: Scalars['ID']['input'];
|
|
61547
|
+
queryContext?: InputMaybe<Scalars['String']['input']>;
|
|
61548
|
+
sort?: InputMaybe<GraphStoreAtlassianUserHasPendingApprovalOnJiraWorkItemSortInput>;
|
|
61549
|
+
};
|
|
61453
61550
|
export type GraphStoreAtlassianUserInvitedToLoomMeetingArgs = {
|
|
61454
61551
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
61455
61552
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -70442,6 +70539,9 @@ export type GraphStoreAtlassianUserDismissedJiraForYouRecommendationEntitySortIn
|
|
|
70442
70539
|
export type GraphStoreAtlassianUserFollowsAtlassianHomeTagSortInput = {
|
|
70443
70540
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
70444
70541
|
};
|
|
70542
|
+
export type GraphStoreAtlassianUserHasPendingApprovalOnJiraWorkItemSortInput = {
|
|
70543
|
+
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
70544
|
+
};
|
|
70445
70545
|
export type GraphStoreAtlassianUserInvitedToLoomMeetingSortInput = {
|
|
70446
70546
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
70447
70547
|
};
|
|
@@ -80718,6 +80818,34 @@ export type GraphStoreSimplifiedAtlassianUserFollowsAtlassianHomeTagInverseEdge
|
|
|
80718
80818
|
};
|
|
80719
80819
|
export type GraphStoreSimplifiedAtlassianUserFollowsAtlassianHomeTagInverseUnion = AppUser | AtlassianAccountUser | CustomerUser;
|
|
80720
80820
|
export type GraphStoreSimplifiedAtlassianUserFollowsAtlassianHomeTagUnion = TownsquareTag;
|
|
80821
|
+
export type GraphStoreSimplifiedAtlassianUserHasPendingApprovalOnJiraWorkItemConnection = HasPageInfo & {
|
|
80822
|
+
__typename?: 'GraphStoreSimplifiedAtlassianUserHasPendingApprovalOnJiraWorkItemConnection';
|
|
80823
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedAtlassianUserHasPendingApprovalOnJiraWorkItemEdge>>>;
|
|
80824
|
+
pageInfo: PageInfo;
|
|
80825
|
+
};
|
|
80826
|
+
export type GraphStoreSimplifiedAtlassianUserHasPendingApprovalOnJiraWorkItemEdge = {
|
|
80827
|
+
__typename?: 'GraphStoreSimplifiedAtlassianUserHasPendingApprovalOnJiraWorkItemEdge';
|
|
80828
|
+
createdAt: Scalars['DateTime']['output'];
|
|
80829
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
80830
|
+
id: Scalars['ID']['output'];
|
|
80831
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
80832
|
+
node?: Maybe<GraphStoreSimplifiedAtlassianUserHasPendingApprovalOnJiraWorkItemUnion>;
|
|
80833
|
+
};
|
|
80834
|
+
export type GraphStoreSimplifiedAtlassianUserHasPendingApprovalOnJiraWorkItemInverseConnection = HasPageInfo & {
|
|
80835
|
+
__typename?: 'GraphStoreSimplifiedAtlassianUserHasPendingApprovalOnJiraWorkItemInverseConnection';
|
|
80836
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedAtlassianUserHasPendingApprovalOnJiraWorkItemInverseEdge>>>;
|
|
80837
|
+
pageInfo: PageInfo;
|
|
80838
|
+
};
|
|
80839
|
+
export type GraphStoreSimplifiedAtlassianUserHasPendingApprovalOnJiraWorkItemInverseEdge = {
|
|
80840
|
+
__typename?: 'GraphStoreSimplifiedAtlassianUserHasPendingApprovalOnJiraWorkItemInverseEdge';
|
|
80841
|
+
createdAt: Scalars['DateTime']['output'];
|
|
80842
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
80843
|
+
id: Scalars['ID']['output'];
|
|
80844
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
80845
|
+
node?: Maybe<GraphStoreSimplifiedAtlassianUserHasPendingApprovalOnJiraWorkItemInverseUnion>;
|
|
80846
|
+
};
|
|
80847
|
+
export type GraphStoreSimplifiedAtlassianUserHasPendingApprovalOnJiraWorkItemInverseUnion = AppUser | AtlassianAccountUser | CustomerUser;
|
|
80848
|
+
export type GraphStoreSimplifiedAtlassianUserHasPendingApprovalOnJiraWorkItemUnion = JiraIssue;
|
|
80721
80849
|
export type GraphStoreSimplifiedAtlassianUserInvitedToLoomMeetingConnection = HasPageInfo & {
|
|
80722
80850
|
__typename?: 'GraphStoreSimplifiedAtlassianUserInvitedToLoomMeetingConnection';
|
|
80723
80851
|
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedAtlassianUserInvitedToLoomMeetingEdge>>>;
|
|
@@ -94412,6 +94540,8 @@ export type GraphStoreV2 = {
|
|
|
94412
94540
|
atlassianUserHasConfluenceMeetingNotesFolderInverse?: Maybe<GraphStoreV2SimplifiedAtlassianUserHasConfluenceMeetingNotesFolderInverseConnection>;
|
|
94413
94541
|
atlassianUserHasExternalPosition?: Maybe<GraphStoreV2SimplifiedAtlassianUserHasExternalPositionConnection>;
|
|
94414
94542
|
atlassianUserHasExternalPositionInverse?: Maybe<GraphStoreV2SimplifiedAtlassianUserHasExternalPositionInverseConnection>;
|
|
94543
|
+
atlassianUserHasPendingApprovalOnJiraWorkItem?: Maybe<GraphStoreV2SimplifiedAtlassianUserHasPendingApprovalOnJiraWorkItemConnection>;
|
|
94544
|
+
atlassianUserHasPendingApprovalOnJiraWorkItemInverse?: Maybe<GraphStoreV2SimplifiedAtlassianUserHasPendingApprovalOnJiraWorkItemInverseConnection>;
|
|
94415
94545
|
atlassianUserHasRelevantJiraSpace?: Maybe<GraphStoreV2SimplifiedAtlassianUserHasRelevantJiraSpaceConnection>;
|
|
94416
94546
|
atlassianUserHasRelevantJiraSpaceInverse?: Maybe<GraphStoreV2SimplifiedAtlassianUserHasRelevantJiraSpaceInverseConnection>;
|
|
94417
94547
|
atlassianUserInvitedToLoomMeeting?: Maybe<GraphStoreV2SimplifiedAtlassianUserInvitedToLoomMeetingConnection>;
|
|
@@ -96297,6 +96427,20 @@ export type GraphStoreV2AtlassianUserHasExternalPositionInverseArgs = {
|
|
|
96297
96427
|
id: Scalars['ID']['input'];
|
|
96298
96428
|
sort?: InputMaybe<GraphStoreV2AtlassianUserHasExternalPositionSortInput>;
|
|
96299
96429
|
};
|
|
96430
|
+
export type GraphStoreV2AtlassianUserHasPendingApprovalOnJiraWorkItemArgs = {
|
|
96431
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
96432
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
96433
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
96434
|
+
id: Scalars['ID']['input'];
|
|
96435
|
+
sort?: InputMaybe<GraphStoreV2AtlassianUserHasPendingApprovalOnJiraWorkItemSortInput>;
|
|
96436
|
+
};
|
|
96437
|
+
export type GraphStoreV2AtlassianUserHasPendingApprovalOnJiraWorkItemInverseArgs = {
|
|
96438
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
96439
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
96440
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
96441
|
+
id: Scalars['ID']['input'];
|
|
96442
|
+
sort?: InputMaybe<GraphStoreV2AtlassianUserHasPendingApprovalOnJiraWorkItemSortInput>;
|
|
96443
|
+
};
|
|
96300
96444
|
export type GraphStoreV2AtlassianUserHasRelevantJiraSpaceArgs = {
|
|
96301
96445
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
96302
96446
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -101857,6 +102001,9 @@ export type GraphStoreV2AtlassianUserHasExternalPositionSortInput = {
|
|
|
101857
102001
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
101858
102002
|
toAti?: InputMaybe<GraphStoreSortInput>;
|
|
101859
102003
|
};
|
|
102004
|
+
export type GraphStoreV2AtlassianUserHasPendingApprovalOnJiraWorkItemSortInput = {
|
|
102005
|
+
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
102006
|
+
};
|
|
101860
102007
|
export type GraphStoreV2AtlassianUserHasRelevantJiraSpaceSortInput = {
|
|
101861
102008
|
createdAt?: InputMaybe<GraphStoreSortInput>;
|
|
101862
102009
|
fromAti?: InputMaybe<GraphStoreSortInput>;
|
|
@@ -107886,6 +108033,34 @@ export type GraphStoreV2SimplifiedAtlassianUserHasExternalPositionInverseEdge =
|
|
|
107886
108033
|
};
|
|
107887
108034
|
export type GraphStoreV2SimplifiedAtlassianUserHasExternalPositionInverseUnion = AppUser | AtlassianAccountUser | CustomerUser;
|
|
107888
108035
|
export type GraphStoreV2SimplifiedAtlassianUserHasExternalPositionUnion = ExternalPosition;
|
|
108036
|
+
export type GraphStoreV2SimplifiedAtlassianUserHasPendingApprovalOnJiraWorkItemConnection = HasPageInfo & {
|
|
108037
|
+
__typename?: 'GraphStoreV2SimplifiedAtlassianUserHasPendingApprovalOnJiraWorkItemConnection';
|
|
108038
|
+
edges?: Maybe<Array<Maybe<GraphStoreV2SimplifiedAtlassianUserHasPendingApprovalOnJiraWorkItemEdge>>>;
|
|
108039
|
+
pageInfo: PageInfo;
|
|
108040
|
+
};
|
|
108041
|
+
export type GraphStoreV2SimplifiedAtlassianUserHasPendingApprovalOnJiraWorkItemEdge = {
|
|
108042
|
+
__typename?: 'GraphStoreV2SimplifiedAtlassianUserHasPendingApprovalOnJiraWorkItemEdge';
|
|
108043
|
+
createdAt: Scalars['DateTime']['output'];
|
|
108044
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
108045
|
+
id: Scalars['ID']['output'];
|
|
108046
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
108047
|
+
node?: Maybe<GraphStoreV2SimplifiedAtlassianUserHasPendingApprovalOnJiraWorkItemUnion>;
|
|
108048
|
+
};
|
|
108049
|
+
export type GraphStoreV2SimplifiedAtlassianUserHasPendingApprovalOnJiraWorkItemInverseConnection = HasPageInfo & {
|
|
108050
|
+
__typename?: 'GraphStoreV2SimplifiedAtlassianUserHasPendingApprovalOnJiraWorkItemInverseConnection';
|
|
108051
|
+
edges?: Maybe<Array<Maybe<GraphStoreV2SimplifiedAtlassianUserHasPendingApprovalOnJiraWorkItemInverseEdge>>>;
|
|
108052
|
+
pageInfo: PageInfo;
|
|
108053
|
+
};
|
|
108054
|
+
export type GraphStoreV2SimplifiedAtlassianUserHasPendingApprovalOnJiraWorkItemInverseEdge = {
|
|
108055
|
+
__typename?: 'GraphStoreV2SimplifiedAtlassianUserHasPendingApprovalOnJiraWorkItemInverseEdge';
|
|
108056
|
+
createdAt: Scalars['DateTime']['output'];
|
|
108057
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
108058
|
+
id: Scalars['ID']['output'];
|
|
108059
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
108060
|
+
node?: Maybe<GraphStoreV2SimplifiedAtlassianUserHasPendingApprovalOnJiraWorkItemInverseUnion>;
|
|
108061
|
+
};
|
|
108062
|
+
export type GraphStoreV2SimplifiedAtlassianUserHasPendingApprovalOnJiraWorkItemInverseUnion = AppUser | AtlassianAccountUser | CustomerUser;
|
|
108063
|
+
export type GraphStoreV2SimplifiedAtlassianUserHasPendingApprovalOnJiraWorkItemUnion = JiraIssue;
|
|
107889
108064
|
export type GraphStoreV2SimplifiedAtlassianUserHasRelevantJiraSpaceConnection = HasPageInfo & HasTotal & {
|
|
107890
108065
|
__typename?: 'GraphStoreV2SimplifiedAtlassianUserHasRelevantJiraSpaceConnection';
|
|
107891
108066
|
edges?: Maybe<Array<Maybe<GraphStoreV2SimplifiedAtlassianUserHasRelevantJiraSpaceEdge>>>;
|
|
@@ -141812,6 +141987,7 @@ export type JiraProject = Node & {
|
|
|
141812
141987
|
linkedOperationsIncidentsByProject?: Maybe<GraphStoreSimplifiedJswProjectAssociatedIncidentConnection>;
|
|
141813
141988
|
linkedSecurityContainers?: Maybe<AriGraphRelationshipConnection>;
|
|
141814
141989
|
linkedSecurityVulnerabilitiesByProject?: Maybe<GraphJiraVulnerabilityConnection>;
|
|
141990
|
+
manageIssueTypesUrl?: Maybe<Scalars['String']['output']>;
|
|
141815
141991
|
manageWorkflowUrl?: Maybe<Scalars['String']['output']>;
|
|
141816
141992
|
mostRecentlyViewedBoard?: Maybe<JiraBoardResult>;
|
|
141817
141993
|
name: Scalars['String']['output'];
|
|
@@ -142979,6 +143155,7 @@ export type JiraProjectsSidebarMenu = {
|
|
|
142979
143155
|
__typename?: 'JiraProjectsSidebarMenu';
|
|
142980
143156
|
current?: Maybe<JiraProject>;
|
|
142981
143157
|
displayMode?: Maybe<JiraSidebarMenuDisplayMode>;
|
|
143158
|
+
errors?: Maybe<Array<QueryError>>;
|
|
142982
143159
|
favouriteLimit?: Maybe<Scalars['Int']['output']>;
|
|
142983
143160
|
favourites?: Maybe<JiraProjectConnection>;
|
|
142984
143161
|
hasMore?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -149613,7 +149790,6 @@ export declare enum JiraStartAgentSessionResult {
|
|
|
149613
149790
|
AlreadyStarted = "ALREADY_STARTED",
|
|
149614
149791
|
Failed = "FAILED",
|
|
149615
149792
|
RateLimited = "RATE_LIMITED",
|
|
149616
|
-
Skipped = "SKIPPED",
|
|
149617
149793
|
Started = "STARTED"
|
|
149618
149794
|
}
|
|
149619
149795
|
export type JiraStartAiAgentSessionByExternalReferenceInput = {
|
|
@@ -152193,6 +152369,24 @@ export type JiraVersionDriverEdge = {
|
|
|
152193
152369
|
cursor: Scalars['String']['output'];
|
|
152194
152370
|
node?: Maybe<User>;
|
|
152195
152371
|
};
|
|
152372
|
+
export type JiraVersionDriverOption = {
|
|
152373
|
+
__typename?: 'JiraVersionDriverOption';
|
|
152374
|
+
displayName?: Maybe<Scalars['String']['output']>;
|
|
152375
|
+
driver?: Maybe<User>;
|
|
152376
|
+
driverAccountId: Scalars['ID']['output'];
|
|
152377
|
+
};
|
|
152378
|
+
export type JiraVersionDriverOptionConnection = {
|
|
152379
|
+
__typename?: 'JiraVersionDriverOptionConnection';
|
|
152380
|
+
edges?: Maybe<Array<Maybe<JiraVersionDriverOptionEdge>>>;
|
|
152381
|
+
hasUnassigned: Scalars['Boolean']['output'];
|
|
152382
|
+
pageInfo: PageInfo;
|
|
152383
|
+
totalCount: Scalars['Int']['output'];
|
|
152384
|
+
};
|
|
152385
|
+
export type JiraVersionDriverOptionEdge = {
|
|
152386
|
+
__typename?: 'JiraVersionDriverOptionEdge';
|
|
152387
|
+
cursor: Scalars['String']['output'];
|
|
152388
|
+
node: JiraVersionDriverOption;
|
|
152389
|
+
};
|
|
152196
152390
|
export type JiraVersionDriverResult = {
|
|
152197
152391
|
__typename?: 'JiraVersionDriverResult';
|
|
152198
152392
|
driver?: Maybe<User>;
|
|
@@ -154759,9 +154953,11 @@ export type JsmChannelsRequestTypesInput = {
|
|
|
154759
154953
|
export declare enum JsmChannelsResolutionPlanAction {
|
|
154760
154954
|
Approve = "APPROVE",
|
|
154761
154955
|
Pause = "PAUSE",
|
|
154956
|
+
Pin = "PIN",
|
|
154762
154957
|
Regenerate = "REGENERATE",
|
|
154763
154958
|
Reject = "REJECT",
|
|
154764
|
-
Resume = "RESUME"
|
|
154959
|
+
Resume = "RESUME",
|
|
154960
|
+
Unpin = "UNPIN"
|
|
154765
154961
|
}
|
|
154766
154962
|
export type JsmChannelsResolutionPlanActionPayload = Payload & {
|
|
154767
154963
|
__typename?: 'JsmChannelsResolutionPlanActionPayload';
|
|
@@ -157116,6 +157312,21 @@ export type KitsuneCreateConnectorConfigPayload = Payload & {
|
|
|
157116
157312
|
errors?: Maybe<Array<MutationError>>;
|
|
157117
157313
|
success: Scalars['Boolean']['output'];
|
|
157118
157314
|
};
|
|
157315
|
+
export type KitsuneCreateFeedbackInput = {
|
|
157316
|
+
content: Scalars['KitsuneADF']['input'];
|
|
157317
|
+
customerId?: InputMaybe<Scalars['ID']['input']>;
|
|
157318
|
+
organizationId?: InputMaybe<Scalars['ID']['input']>;
|
|
157319
|
+
reporterId?: InputMaybe<Scalars['ID']['input']>;
|
|
157320
|
+
source?: InputMaybe<KitsuneSourceInputNew>;
|
|
157321
|
+
spaceAri: Scalars['ID']['input'];
|
|
157322
|
+
title?: InputMaybe<Scalars['String']['input']>;
|
|
157323
|
+
};
|
|
157324
|
+
export type KitsuneCreateFeedbackPayload = Payload & {
|
|
157325
|
+
__typename?: 'KitsuneCreateFeedbackPayload';
|
|
157326
|
+
errors?: Maybe<Array<MutationError>>;
|
|
157327
|
+
feedback?: Maybe<KitsuneFeedback>;
|
|
157328
|
+
success: Scalars['Boolean']['output'];
|
|
157329
|
+
};
|
|
157119
157330
|
export type KitsuneCreateFieldInput = {
|
|
157120
157331
|
description?: InputMaybe<Scalars['String']['input']>;
|
|
157121
157332
|
entityTypes: Array<KitsuneEntityType>;
|
|
@@ -157170,6 +157381,17 @@ export type KitsuneCreateSnippetPayload = Payload & {
|
|
|
157170
157381
|
snippet?: Maybe<KitsuneSnippet>;
|
|
157171
157382
|
success: Scalars['Boolean']['output'];
|
|
157172
157383
|
};
|
|
157384
|
+
export type KitsuneCreateSpaceInput = {
|
|
157385
|
+
description?: InputMaybe<Scalars['String']['input']>;
|
|
157386
|
+
name: Scalars['String']['input'];
|
|
157387
|
+
workspaceAri: Scalars['ID']['input'];
|
|
157388
|
+
};
|
|
157389
|
+
export type KitsuneCreateSpacePayload = Payload & {
|
|
157390
|
+
__typename?: 'KitsuneCreateSpacePayload';
|
|
157391
|
+
errors?: Maybe<Array<MutationError>>;
|
|
157392
|
+
space?: Maybe<KitsuneSpace>;
|
|
157393
|
+
success: Scalars['Boolean']['output'];
|
|
157394
|
+
};
|
|
157173
157395
|
export type KitsuneCreateViewInput = {
|
|
157174
157396
|
config?: InputMaybe<KitsuneViewConfigInput>;
|
|
157175
157397
|
description?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -157457,6 +157679,15 @@ export type KitsuneFilterValueInput = {
|
|
|
157457
157679
|
valueNumber?: InputMaybe<Array<Scalars['Float']['input']>>;
|
|
157458
157680
|
valueText?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
157459
157681
|
};
|
|
157682
|
+
export type KitsuneGenerateFeedbackSummaryInput = {
|
|
157683
|
+
feedbackAri: Scalars['ID']['input'];
|
|
157684
|
+
};
|
|
157685
|
+
export type KitsuneGenerateFeedbackSummaryPayload = Payload & {
|
|
157686
|
+
__typename?: 'KitsuneGenerateFeedbackSummaryPayload';
|
|
157687
|
+
errors?: Maybe<Array<MutationError>>;
|
|
157688
|
+
feedback?: Maybe<KitsuneFeedback>;
|
|
157689
|
+
success: Scalars['Boolean']['output'];
|
|
157690
|
+
};
|
|
157460
157691
|
export type KitsuneGenerateInsightSummaryInput = {
|
|
157461
157692
|
insightAri: Scalars['ID']['input'];
|
|
157462
157693
|
};
|
|
@@ -157678,6 +157909,23 @@ export type KitsuneRemoveFromSpacePayload = Payload & {
|
|
|
157678
157909
|
principalAri?: Maybe<Scalars['ID']['output']>;
|
|
157679
157910
|
success: Scalars['Boolean']['output'];
|
|
157680
157911
|
};
|
|
157912
|
+
export type KitsuneRemoveSpacePayload = Payload & {
|
|
157913
|
+
__typename?: 'KitsuneRemoveSpacePayload';
|
|
157914
|
+
errors?: Maybe<Array<MutationError>>;
|
|
157915
|
+
job?: Maybe<KitsuneJob>;
|
|
157916
|
+
success: Scalars['Boolean']['output'];
|
|
157917
|
+
};
|
|
157918
|
+
export type KitsuneResyncFeedbackInput = {
|
|
157919
|
+
dateRange?: InputMaybe<KitsuneDateRangeInput>;
|
|
157920
|
+
rebuildEmbeddings?: InputMaybe<Scalars['Boolean']['input']>;
|
|
157921
|
+
workspaceAri: Scalars['ID']['input'];
|
|
157922
|
+
};
|
|
157923
|
+
export type KitsuneResyncFeedbackPayload = Payload & {
|
|
157924
|
+
__typename?: 'KitsuneResyncFeedbackPayload';
|
|
157925
|
+
errors?: Maybe<Array<MutationError>>;
|
|
157926
|
+
job?: Maybe<KitsuneJob>;
|
|
157927
|
+
success: Scalars['Boolean']['output'];
|
|
157928
|
+
};
|
|
157681
157929
|
export type KitsuneResyncInsightsInput = {
|
|
157682
157930
|
workspaceAri: Scalars['ID']['input'];
|
|
157683
157931
|
};
|
|
@@ -158094,6 +158342,22 @@ export type KitsuneUpdateConnectorConfigPayload = Payload & {
|
|
|
158094
158342
|
errors?: Maybe<Array<MutationError>>;
|
|
158095
158343
|
success: Scalars['Boolean']['output'];
|
|
158096
158344
|
};
|
|
158345
|
+
export type KitsuneUpdateFeedbackInput = {
|
|
158346
|
+
content?: InputMaybe<Scalars['KitsuneADF']['input']>;
|
|
158347
|
+
customerId?: InputMaybe<Scalars['ID']['input']>;
|
|
158348
|
+
organizationId?: InputMaybe<Scalars['ID']['input']>;
|
|
158349
|
+
reporterId?: InputMaybe<Scalars['ID']['input']>;
|
|
158350
|
+
source?: InputMaybe<KitsuneSourceInputNew>;
|
|
158351
|
+
summaryContent?: InputMaybe<Scalars['KitsuneADF']['input']>;
|
|
158352
|
+
title?: InputMaybe<Scalars['String']['input']>;
|
|
158353
|
+
values?: InputMaybe<Array<KitsuneFeedbackValueInput>>;
|
|
158354
|
+
};
|
|
158355
|
+
export type KitsuneUpdateFeedbackPayload = Payload & {
|
|
158356
|
+
__typename?: 'KitsuneUpdateFeedbackPayload';
|
|
158357
|
+
errors?: Maybe<Array<MutationError>>;
|
|
158358
|
+
feedback?: Maybe<KitsuneFeedback>;
|
|
158359
|
+
success: Scalars['Boolean']['output'];
|
|
158360
|
+
};
|
|
158097
158361
|
export type KitsuneUpdateFieldInput = {
|
|
158098
158362
|
aiEnabled?: InputMaybe<Scalars['Boolean']['input']>;
|
|
158099
158363
|
description?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -158135,6 +158399,17 @@ export type KitsuneUpdateSnippetPayload = Payload & {
|
|
|
158135
158399
|
snippet?: Maybe<KitsuneSnippet>;
|
|
158136
158400
|
success: Scalars['Boolean']['output'];
|
|
158137
158401
|
};
|
|
158402
|
+
export type KitsuneUpdateSpaceInput = {
|
|
158403
|
+
accessLevel?: InputMaybe<KitsuneSpaceAccessLevel>;
|
|
158404
|
+
description?: InputMaybe<Scalars['String']['input']>;
|
|
158405
|
+
name?: InputMaybe<Scalars['String']['input']>;
|
|
158406
|
+
};
|
|
158407
|
+
export type KitsuneUpdateSpacePayload = Payload & {
|
|
158408
|
+
__typename?: 'KitsuneUpdateSpacePayload';
|
|
158409
|
+
errors?: Maybe<Array<MutationError>>;
|
|
158410
|
+
space?: Maybe<KitsuneSpace>;
|
|
158411
|
+
success: Scalars['Boolean']['output'];
|
|
158412
|
+
};
|
|
158138
158413
|
export type KitsuneUpdateViewInput = {
|
|
158139
158414
|
config?: InputMaybe<KitsuneViewConfigInput>;
|
|
158140
158415
|
description?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -164453,6 +164728,7 @@ export declare enum MarketplaceStoreLayoutSlotTheme {
|
|
|
164453
164728
|
Bounded = "BOUNDED",
|
|
164454
164729
|
Dark = "DARK",
|
|
164455
164730
|
Default = "DEFAULT",
|
|
164731
|
+
Elevated = "ELEVATED",
|
|
164456
164732
|
Inverse = "INVERSE"
|
|
164457
164733
|
}
|
|
164458
164734
|
export declare enum MarketplaceStoreLayoutSlotVariant {
|
|
@@ -167627,6 +167903,7 @@ export type MercuryCreateRateCardInput = {
|
|
|
167627
167903
|
effectiveStartDate?: InputMaybe<Scalars['Date']['input']>;
|
|
167628
167904
|
externalId?: InputMaybe<Scalars['String']['input']>;
|
|
167629
167905
|
rate?: InputMaybe<Scalars['String']['input']>;
|
|
167906
|
+
ratePeriodTypeId?: InputMaybe<Scalars['ID']['input']>;
|
|
167630
167907
|
workingHoursPerWeek?: InputMaybe<Scalars['Int']['input']>;
|
|
167631
167908
|
};
|
|
167632
167909
|
export type MercuryCreateRateCardPayload = Payload & {
|
|
@@ -169340,7 +169617,6 @@ export type MercuryFundsMutationApi = {
|
|
|
169340
169617
|
updateFocusAreaBudgetAmount?: Maybe<MercuryUpdateFocusAreaBudgetPayload>;
|
|
169341
169618
|
updateInvestmentCategoryName?: Maybe<MercuryUpdateInvestmentCategoryPayload>;
|
|
169342
169619
|
updateRateCard?: Maybe<MercuryUpdateRateCardPayload>;
|
|
169343
|
-
updateRateCardConfigurationRatePeriod?: Maybe<MercuryUpdateRateCardConfigurationPayload>;
|
|
169344
169620
|
};
|
|
169345
169621
|
export type MercuryFundsMutationApiCreateBenefitItemArgs = {
|
|
169346
169622
|
input: MercuryCreateBenefitItemInput;
|
|
@@ -169477,9 +169753,6 @@ export type MercuryFundsMutationApiUpdateInvestmentCategoryNameArgs = {
|
|
|
169477
169753
|
export type MercuryFundsMutationApiUpdateRateCardArgs = {
|
|
169478
169754
|
input: MercuryUpdateRateCardInput;
|
|
169479
169755
|
};
|
|
169480
|
-
export type MercuryFundsMutationApiUpdateRateCardConfigurationRatePeriodArgs = {
|
|
169481
|
-
input: MercuryUpdateRateCardConfigurationRatePeriodInput;
|
|
169482
|
-
};
|
|
169483
169756
|
export declare enum MercuryFundsPermission {
|
|
169484
169757
|
EditBaseline = "EDIT_BASELINE",
|
|
169485
169758
|
EditBudget = "EDIT_BUDGET",
|
|
@@ -169508,6 +169781,7 @@ export type MercuryFundsQueryApi = {
|
|
|
169508
169781
|
costTypes?: Maybe<Array<Maybe<MercuryCostType>>>;
|
|
169509
169782
|
costTypesByIds?: Maybe<Array<Maybe<MercuryCostType>>>;
|
|
169510
169783
|
currencies?: Maybe<Array<MercuryCurrency>>;
|
|
169784
|
+
defaultRateCard?: Maybe<MercuryRateCard>;
|
|
169511
169785
|
expenditureTypes?: Maybe<Array<Maybe<MercuryExpenditureType>>>;
|
|
169512
169786
|
expenditureTypesByIds?: Maybe<Array<Maybe<MercuryExpenditureType>>>;
|
|
169513
169787
|
financialVersions?: Maybe<Array<Maybe<MercuryFinancialVersion>>>;
|
|
@@ -169525,7 +169799,6 @@ export type MercuryFundsQueryApi = {
|
|
|
169525
169799
|
investmentCategoriesSearch?: Maybe<MercuryInvestmentCategoryConnection>;
|
|
169526
169800
|
rateCardAttributeTypes?: Maybe<Array<Maybe<MercuryRateCardAttributeType>>>;
|
|
169527
169801
|
rateCardAttributeTypesByIds?: Maybe<Array<Maybe<MercuryRateCardAttributeType>>>;
|
|
169528
|
-
rateCardConfiguration?: Maybe<MercuryRateCardConfiguration>;
|
|
169529
169802
|
rateCardsSearch?: Maybe<MercuryRateCardConnection>;
|
|
169530
169803
|
searchBenefitItemActivityHistory?: Maybe<MercuryBenefitItemActivityHistoryConnection>;
|
|
169531
169804
|
searchCostItemActivityHistory?: Maybe<MercuryCostItemActivityHistoryConnection>;
|
|
@@ -169607,6 +169880,9 @@ export type MercuryFundsQueryApiCostTypesByIdsArgs = {
|
|
|
169607
169880
|
export type MercuryFundsQueryApiCurrenciesArgs = {
|
|
169608
169881
|
cloudId?: InputMaybe<Scalars['ID']['input']>;
|
|
169609
169882
|
};
|
|
169883
|
+
export type MercuryFundsQueryApiDefaultRateCardArgs = {
|
|
169884
|
+
cloudId: Scalars['ID']['input'];
|
|
169885
|
+
};
|
|
169610
169886
|
export type MercuryFundsQueryApiExpenditureTypesArgs = {
|
|
169611
169887
|
cloudId?: InputMaybe<Scalars['ID']['input']>;
|
|
169612
169888
|
};
|
|
@@ -169681,9 +169957,6 @@ export type MercuryFundsQueryApiRateCardAttributeTypesByIdsArgs = {
|
|
|
169681
169957
|
cloudId: Scalars['ID']['input'];
|
|
169682
169958
|
ids: Array<Scalars['ID']['input']>;
|
|
169683
169959
|
};
|
|
169684
|
-
export type MercuryFundsQueryApiRateCardConfigurationArgs = {
|
|
169685
|
-
cloudId: Scalars['ID']['input'];
|
|
169686
|
-
};
|
|
169687
169960
|
export type MercuryFundsQueryApiRateCardsSearchArgs = {
|
|
169688
169961
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
169689
169962
|
cloudId: Scalars['ID']['input'];
|
|
@@ -172687,11 +172960,14 @@ export declare enum MercuryRankingGroupType {
|
|
|
172687
172960
|
export type MercuryRateCard = {
|
|
172688
172961
|
__typename?: 'MercuryRateCard';
|
|
172689
172962
|
attributeValues?: Maybe<Array<Maybe<MercuryRateCardAttributeValue>>>;
|
|
172690
|
-
|
|
172963
|
+
changes?: Maybe<MercuryRateCardChangeConnection>;
|
|
172691
172964
|
externalId?: Maybe<Scalars['String']['output']>;
|
|
172692
172965
|
id: Scalars['ID']['output'];
|
|
172693
|
-
|
|
172694
|
-
|
|
172966
|
+
};
|
|
172967
|
+
export type MercuryRateCardChangesArgs = {
|
|
172968
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
172969
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
172970
|
+
sort?: InputMaybe<Array<InputMaybe<MercuryRateCardChangeSort>>>;
|
|
172695
172971
|
};
|
|
172696
172972
|
export type MercuryRateCardAttribute = {
|
|
172697
172973
|
__typename?: 'MercuryRateCardAttribute';
|
|
@@ -172710,17 +172986,43 @@ export type MercuryRateCardAttributeValue = MercuryRateCardOrganizationAttribute
|
|
|
172710
172986
|
export type MercuryRateCardAttributeValueInput = {
|
|
172711
172987
|
attributeId: Scalars['ID']['input'];
|
|
172712
172988
|
attributeValue?: InputMaybe<Scalars['String']['input']>;
|
|
172713
|
-
id: Scalars['ID']['input'];
|
|
172714
172989
|
};
|
|
172715
172990
|
export type MercuryRateCardAttributeValueInterface = {
|
|
172716
172991
|
attribute?: Maybe<MercuryRateCardAttribute>;
|
|
172717
172992
|
id: Scalars['ID']['output'];
|
|
172718
172993
|
};
|
|
172994
|
+
export type MercuryRateCardChange = {
|
|
172995
|
+
__typename?: 'MercuryRateCardChange';
|
|
172996
|
+
effectiveEndDate?: Maybe<Scalars['Date']['output']>;
|
|
172997
|
+
effectiveStartDate?: Maybe<Scalars['Date']['output']>;
|
|
172998
|
+
id: Scalars['ID']['output'];
|
|
172999
|
+
rate?: Maybe<MercuryMoney>;
|
|
173000
|
+
ratePeriodType?: Maybe<MercuryRatePeriodType>;
|
|
173001
|
+
workingHoursPerWeek?: Maybe<Scalars['Int']['output']>;
|
|
173002
|
+
};
|
|
173003
|
+
export type MercuryRateCardChangeConnection = {
|
|
173004
|
+
__typename?: 'MercuryRateCardChangeConnection';
|
|
173005
|
+
edges?: Maybe<Array<MercuryRateCardChangeEdge>>;
|
|
173006
|
+
pageInfo: PageInfo;
|
|
173007
|
+
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
173008
|
+
};
|
|
173009
|
+
export type MercuryRateCardChangeEdge = {
|
|
173010
|
+
__typename?: 'MercuryRateCardChangeEdge';
|
|
173011
|
+
cursor: Scalars['String']['output'];
|
|
173012
|
+
node?: Maybe<MercuryRateCardChange>;
|
|
173013
|
+
};
|
|
173014
|
+
export type MercuryRateCardChangeSort = {
|
|
173015
|
+
field: MercuryRateCardChangeSortField;
|
|
173016
|
+
order: SortOrder;
|
|
173017
|
+
};
|
|
173018
|
+
export declare enum MercuryRateCardChangeSortField {
|
|
173019
|
+
EffectiveStartDate = "EFFECTIVE_START_DATE"
|
|
173020
|
+
}
|
|
172719
173021
|
export type MercuryRateCardConfiguration = {
|
|
172720
173022
|
__typename?: 'MercuryRateCardConfiguration';
|
|
172721
173023
|
defaultRateCard?: Maybe<MercuryRateCard>;
|
|
172722
173024
|
id: Scalars['ID']['output'];
|
|
172723
|
-
ratePeriod?: Maybe<
|
|
173025
|
+
ratePeriod?: Maybe<MercuryRatePeriodType>;
|
|
172724
173026
|
};
|
|
172725
173027
|
export type MercuryRateCardConnection = {
|
|
172726
173028
|
__typename?: 'MercuryRateCardConnection';
|
|
@@ -172739,8 +173041,8 @@ export type MercuryRateCardOrganizationAttributeValue = MercuryRateCardAttribute
|
|
|
172739
173041
|
id: Scalars['ID']['output'];
|
|
172740
173042
|
organization?: Maybe<MercuryOrganization>;
|
|
172741
173043
|
};
|
|
172742
|
-
export type
|
|
172743
|
-
__typename?: '
|
|
173044
|
+
export type MercuryRatePeriodType = {
|
|
173045
|
+
__typename?: 'MercuryRatePeriodType';
|
|
172744
173046
|
displayName: Scalars['String']['output'];
|
|
172745
173047
|
id: Scalars['ID']['output'];
|
|
172746
173048
|
key: Scalars['String']['output'];
|
|
@@ -174902,16 +175204,13 @@ export type MercuryUpdateRateCardConfigurationPayload = Payload & {
|
|
|
174902
175204
|
success: Scalars['Boolean']['output'];
|
|
174903
175205
|
updatedRateCardConfiguration?: Maybe<MercuryRateCardConfiguration>;
|
|
174904
175206
|
};
|
|
174905
|
-
export type MercuryUpdateRateCardConfigurationRatePeriodInput = {
|
|
174906
|
-
cloudId: Scalars['ID']['input'];
|
|
174907
|
-
ratePeriodKey: Scalars['String']['input'];
|
|
174908
|
-
};
|
|
174909
175207
|
export type MercuryUpdateRateCardInput = {
|
|
174910
175208
|
cloudId: Scalars['ID']['input'];
|
|
174911
175209
|
effectiveStartDate?: InputMaybe<Scalars['Date']['input']>;
|
|
174912
175210
|
externalId?: InputMaybe<Scalars['String']['input']>;
|
|
174913
175211
|
id: Scalars['ID']['input'];
|
|
174914
175212
|
rate?: InputMaybe<Scalars['String']['input']>;
|
|
175213
|
+
ratePeriodTypeId?: InputMaybe<Scalars['ID']['input']>;
|
|
174915
175214
|
workingHoursPerWeek?: InputMaybe<Scalars['Int']['input']>;
|
|
174916
175215
|
};
|
|
174917
175216
|
export type MercuryUpdateRateCardPayload = Payload & {
|
|
@@ -175644,6 +175943,7 @@ export type Mutation = {
|
|
|
175644
175943
|
addLabels?: Maybe<AddLabelsPayload>;
|
|
175645
175944
|
addPublicLinkPermissions?: Maybe<AddPublicLinkPermissionsPayload>;
|
|
175646
175945
|
addReaction?: Maybe<SaveReactionResponse>;
|
|
175946
|
+
admin_activateOrgForUnits?: Maybe<AdminActivateOrgForUnitsPayload>;
|
|
175647
175947
|
admin_activateUser?: Maybe<AdminActiveUserResponsePayload>;
|
|
175648
175948
|
admin_addConnector?: Maybe<AdminAddConnectorPayload>;
|
|
175649
175949
|
admin_assignRole?: Maybe<AdminAssignRoleResponsePayload>;
|
|
@@ -176483,6 +176783,7 @@ export type Mutation = {
|
|
|
176483
176783
|
graphInference_inferenceAppEdit?: Maybe<GraphInferenceInferenceAppMutationPayload>;
|
|
176484
176784
|
graphInference_inferenceAppEditV2?: Maybe<GraphInferenceInferenceAppMutationPayloadV2>;
|
|
176485
176785
|
graphInference_inferenceAppEditV3?: Maybe<GraphInferenceInferenceAppMutationPayloadV3>;
|
|
176786
|
+
graphInference_inferenceEval?: Maybe<GraphInferenceInferenceEvalResponse>;
|
|
176486
176787
|
graphIntegration_actionAdminManagementUpdateActionConfiguration?: Maybe<GraphIntegrationActionAdminManagementUpdateActionConfigurationPayload>;
|
|
176487
176788
|
graphIntegration_addTwgCapabilityContainer?: Maybe<GraphIntegrationAddTwgCapabilityContainerPayload>;
|
|
176488
176789
|
graphIntegration_createDataConnectorConnection?: Maybe<GraphIntegrationCreateConnectionPayload>;
|
|
@@ -176912,6 +177213,7 @@ export type Mutation = {
|
|
|
176912
177213
|
kitsune_createCustomer?: Maybe<KitsuneCustomer>;
|
|
176913
177214
|
kitsune_createCustomerField?: Maybe<KitsuneCustomerCustomField>;
|
|
176914
177215
|
kitsune_createFeedback?: Maybe<KitsuneFeedback>;
|
|
177216
|
+
kitsune_createFeedbackV2?: Maybe<KitsuneCreateFeedbackPayload>;
|
|
176915
177217
|
kitsune_createField?: Maybe<KitsuneField>;
|
|
176916
177218
|
kitsune_createFieldV2?: Maybe<KitsuneCreateFieldPayload>;
|
|
176917
177219
|
kitsune_createInsight?: Maybe<KitsuneInsight>;
|
|
@@ -176923,10 +177225,12 @@ export type Mutation = {
|
|
|
176923
177225
|
kitsune_createSnippet?: Maybe<KitsuneSnippet>;
|
|
176924
177226
|
kitsune_createSnippetV2?: Maybe<KitsuneCreateSnippetPayload>;
|
|
176925
177227
|
kitsune_createSpace?: Maybe<KitsuneSpace>;
|
|
177228
|
+
kitsune_createSpaceV2?: Maybe<KitsuneCreateSpacePayload>;
|
|
176926
177229
|
kitsune_createView?: Maybe<KitsuneView>;
|
|
176927
177230
|
kitsune_createViewV2?: Maybe<KitsuneViewPayload>;
|
|
176928
177231
|
kitsune_exportFeedbackFromView?: Maybe<KitsuneJob>;
|
|
176929
177232
|
kitsune_generateFeedbackSummary?: Maybe<KitsuneFeedback>;
|
|
177233
|
+
kitsune_generateFeedbackSummaryV2?: Maybe<KitsuneGenerateFeedbackSummaryPayload>;
|
|
176930
177234
|
kitsune_generateInsightSummary?: Maybe<KitsuneInsight>;
|
|
176931
177235
|
kitsune_generateInsightSummaryV2?: Maybe<KitsuneGenerateInsightSummaryPayload>;
|
|
176932
177236
|
kitsune_inviteToSpace?: Maybe<KitsuneInviteToSpacePayload>;
|
|
@@ -176942,6 +177246,7 @@ export type Mutation = {
|
|
|
176942
177246
|
kitsune_removeCustomer?: Maybe<KitsuneDeletedRecord>;
|
|
176943
177247
|
kitsune_removeCustomerField?: Maybe<KitsuneDeletedRecord>;
|
|
176944
177248
|
kitsune_removeFeedback?: Maybe<KitsuneDeletedRecord>;
|
|
177249
|
+
kitsune_removeFeedbackV2?: Maybe<KitsuneDeletedPayload>;
|
|
176945
177250
|
kitsune_removeField?: Maybe<KitsuneDeletedRecord>;
|
|
176946
177251
|
kitsune_removeFieldV2?: Maybe<KitsuneDeletedPayload>;
|
|
176947
177252
|
kitsune_removeFieldValue?: Maybe<KitsuneDeletedRecord>;
|
|
@@ -176956,9 +177261,11 @@ export type Mutation = {
|
|
|
176956
177261
|
kitsune_removeSnippet?: Maybe<KitsuneDeletedRecord>;
|
|
176957
177262
|
kitsune_removeSnippetV2?: Maybe<KitsuneDeletedPayload>;
|
|
176958
177263
|
kitsune_removeSpace?: Maybe<KitsuneJob>;
|
|
177264
|
+
kitsune_removeSpaceV2?: Maybe<KitsuneRemoveSpacePayload>;
|
|
176959
177265
|
kitsune_removeView?: Maybe<KitsuneDeletedRecord>;
|
|
176960
177266
|
kitsune_removeViewV2?: Maybe<KitsuneDeleteViewPayload>;
|
|
176961
177267
|
kitsune_resyncFeedback?: Maybe<KitsuneJob>;
|
|
177268
|
+
kitsune_resyncFeedbackV2?: Maybe<KitsuneResyncFeedbackPayload>;
|
|
176962
177269
|
kitsune_resyncInsights?: Maybe<KitsuneJob>;
|
|
176963
177270
|
kitsune_resyncInsightsV2?: Maybe<KitsuneResyncInsightsPayload>;
|
|
176964
177271
|
kitsune_syncCsmProperties?: Maybe<KitsuneJob>;
|
|
@@ -176968,6 +177275,7 @@ export type Mutation = {
|
|
|
176968
177275
|
kitsune_updateCustomer?: Maybe<KitsuneCustomer>;
|
|
176969
177276
|
kitsune_updateCustomerField?: Maybe<KitsuneCustomerCustomField>;
|
|
176970
177277
|
kitsune_updateFeedback?: Maybe<KitsuneFeedback>;
|
|
177278
|
+
kitsune_updateFeedbackV2?: Maybe<KitsuneUpdateFeedbackPayload>;
|
|
176971
177279
|
kitsune_updateField?: Maybe<KitsuneField>;
|
|
176972
177280
|
kitsune_updateFieldV2?: Maybe<KitsuneUpdateFieldPayload>;
|
|
176973
177281
|
kitsune_updateInsight?: Maybe<KitsuneInsight>;
|
|
@@ -176979,6 +177287,7 @@ export type Mutation = {
|
|
|
176979
177287
|
kitsune_updateSnippet?: Maybe<KitsuneSnippet>;
|
|
176980
177288
|
kitsune_updateSnippetV2?: Maybe<KitsuneUpdateSnippetPayload>;
|
|
176981
177289
|
kitsune_updateSpace?: Maybe<KitsuneSpace>;
|
|
177290
|
+
kitsune_updateSpaceV2?: Maybe<KitsuneUpdateSpacePayload>;
|
|
176982
177291
|
kitsune_updateView?: Maybe<KitsuneView>;
|
|
176983
177292
|
kitsune_updateViewV2?: Maybe<KitsuneViewPayload>;
|
|
176984
177293
|
knowledgeBase?: Maybe<KnowledgeBaseMutationApi>;
|
|
@@ -177165,6 +177474,7 @@ export type Mutation = {
|
|
|
177165
177474
|
radar_createRoleAssignment?: Maybe<RadarMutationResponse>;
|
|
177166
177475
|
radar_createSkill?: Maybe<RadarSkill>;
|
|
177167
177476
|
radar_deleteAiConnectors?: Maybe<RadarMutationResponse>;
|
|
177477
|
+
radar_deleteAllAiConnectors?: Maybe<RadarDeleteAllAiConnectorsResponse>;
|
|
177168
177478
|
radar_deleteConnector?: Maybe<RadarMutationResponse>;
|
|
177169
177479
|
radar_deleteCustomFieldDefinitions?: Maybe<RadarDeleteCustomFieldDefinitionsMutationResponse>;
|
|
177170
177480
|
radar_deleteCustomFields?: Maybe<RadarMutationResponse>;
|
|
@@ -177481,6 +177791,9 @@ export type MutationAddReactionArgs = {
|
|
|
177481
177791
|
contentType: GraphQlReactionContentType;
|
|
177482
177792
|
emojiId: Scalars['String']['input'];
|
|
177483
177793
|
};
|
|
177794
|
+
export type MutationAdmin_ActivateOrgForUnitsArgs = {
|
|
177795
|
+
input: AdminActivateOrgForUnitsInput;
|
|
177796
|
+
};
|
|
177484
177797
|
export type MutationAdmin_ActivateUserArgs = {
|
|
177485
177798
|
input: AdminActivateUserInput;
|
|
177486
177799
|
};
|
|
@@ -178032,6 +178345,9 @@ export type MutationArchiveSpaceArgs = {
|
|
|
178032
178345
|
export type MutationArtifact_CreateArtifactArgs = {
|
|
178033
178346
|
input: ArtifactCreateInput;
|
|
178034
178347
|
};
|
|
178348
|
+
export type MutationArtifact_CreateContentArgs = {
|
|
178349
|
+
input: ArtifactCreateContentInput;
|
|
178350
|
+
};
|
|
178035
178351
|
export type MutationAssetsDm_AddDataDictionaryArgs = {
|
|
178036
178352
|
cloudId: Scalars['ID']['input'];
|
|
178037
178353
|
payload: AssetsDmAddDataDictionaryInput;
|
|
@@ -179466,6 +179782,7 @@ export type MutationConvoAi_CancelConversationArgs = {
|
|
|
179466
179782
|
export type MutationConvoAi_CompleteConversationArgs = {
|
|
179467
179783
|
cloudId: Scalars['ID']['input'];
|
|
179468
179784
|
conversationId: Scalars['ID']['input'];
|
|
179785
|
+
projectId?: InputMaybe<Scalars['ID']['input']>;
|
|
179469
179786
|
};
|
|
179470
179787
|
export type MutationConvoAi_DeleteAgentSessionArgs = {
|
|
179471
179788
|
agentSessionId: Scalars['ID']['input'];
|
|
@@ -180565,6 +180882,9 @@ export type MutationGraphInference_InferenceAppEditV2Args = {
|
|
|
180565
180882
|
export type MutationGraphInference_InferenceAppEditV3Args = {
|
|
180566
180883
|
input: GraphInferenceInferenceAppEditV3Input;
|
|
180567
180884
|
};
|
|
180885
|
+
export type MutationGraphInference_InferenceEvalArgs = {
|
|
180886
|
+
input: GraphInferenceInferenceEvalInput;
|
|
180887
|
+
};
|
|
180568
180888
|
export type MutationGraphIntegration_ActionAdminManagementUpdateActionConfigurationArgs = {
|
|
180569
180889
|
input: GraphIntegrationActionAdminManagementUpdateActionConfigurationInput;
|
|
180570
180890
|
};
|
|
@@ -181951,6 +182271,9 @@ export type MutationKitsune_CreateFeedbackArgs = {
|
|
|
181951
182271
|
spaceAri: Scalars['ID']['input'];
|
|
181952
182272
|
title?: InputMaybe<Scalars['String']['input']>;
|
|
181953
182273
|
};
|
|
182274
|
+
export type MutationKitsune_CreateFeedbackV2Args = {
|
|
182275
|
+
input: KitsuneCreateFeedbackInput;
|
|
182276
|
+
};
|
|
181954
182277
|
export type MutationKitsune_CreateFieldArgs = {
|
|
181955
182278
|
description?: InputMaybe<Scalars['String']['input']>;
|
|
181956
182279
|
entityTypes: Array<KitsuneEntityType>;
|
|
@@ -182008,6 +182331,9 @@ export type MutationKitsune_CreateSpaceArgs = {
|
|
|
182008
182331
|
name: Scalars['String']['input'];
|
|
182009
182332
|
workspaceAri: Scalars['ID']['input'];
|
|
182010
182333
|
};
|
|
182334
|
+
export type MutationKitsune_CreateSpaceV2Args = {
|
|
182335
|
+
input: KitsuneCreateSpaceInput;
|
|
182336
|
+
};
|
|
182011
182337
|
export type MutationKitsune_CreateViewArgs = {
|
|
182012
182338
|
config?: InputMaybe<KitsuneViewConfigInput>;
|
|
182013
182339
|
description?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -182028,6 +182354,9 @@ export type MutationKitsune_ExportFeedbackFromViewArgs = {
|
|
|
182028
182354
|
export type MutationKitsune_GenerateFeedbackSummaryArgs = {
|
|
182029
182355
|
id: Scalars['ID']['input'];
|
|
182030
182356
|
};
|
|
182357
|
+
export type MutationKitsune_GenerateFeedbackSummaryV2Args = {
|
|
182358
|
+
input: KitsuneGenerateFeedbackSummaryInput;
|
|
182359
|
+
};
|
|
182031
182360
|
export type MutationKitsune_GenerateInsightSummaryArgs = {
|
|
182032
182361
|
insightAri: Scalars['ID']['input'];
|
|
182033
182362
|
};
|
|
@@ -182081,6 +182410,9 @@ export type MutationKitsune_RemoveCustomerFieldArgs = {
|
|
|
182081
182410
|
export type MutationKitsune_RemoveFeedbackArgs = {
|
|
182082
182411
|
id: Scalars['ID']['input'];
|
|
182083
182412
|
};
|
|
182413
|
+
export type MutationKitsune_RemoveFeedbackV2Args = {
|
|
182414
|
+
id: Scalars['ID']['input'];
|
|
182415
|
+
};
|
|
182084
182416
|
export type MutationKitsune_RemoveFieldArgs = {
|
|
182085
182417
|
id: Scalars['ID']['input'];
|
|
182086
182418
|
};
|
|
@@ -182126,6 +182458,9 @@ export type MutationKitsune_RemoveSnippetV2Args = {
|
|
|
182126
182458
|
export type MutationKitsune_RemoveSpaceArgs = {
|
|
182127
182459
|
id: Scalars['ID']['input'];
|
|
182128
182460
|
};
|
|
182461
|
+
export type MutationKitsune_RemoveSpaceV2Args = {
|
|
182462
|
+
id: Scalars['ID']['input'];
|
|
182463
|
+
};
|
|
182129
182464
|
export type MutationKitsune_RemoveViewArgs = {
|
|
182130
182465
|
viewAri: Scalars['ID']['input'];
|
|
182131
182466
|
};
|
|
@@ -182137,6 +182472,9 @@ export type MutationKitsune_ResyncFeedbackArgs = {
|
|
|
182137
182472
|
rebuildEmbeddings?: InputMaybe<Scalars['Boolean']['input']>;
|
|
182138
182473
|
workspaceAri: Scalars['ID']['input'];
|
|
182139
182474
|
};
|
|
182475
|
+
export type MutationKitsune_ResyncFeedbackV2Args = {
|
|
182476
|
+
input: KitsuneResyncFeedbackInput;
|
|
182477
|
+
};
|
|
182140
182478
|
export type MutationKitsune_ResyncInsightsArgs = {
|
|
182141
182479
|
workspaceAri: Scalars['ID']['input'];
|
|
182142
182480
|
};
|
|
@@ -182177,6 +182515,10 @@ export type MutationKitsune_UpdateFeedbackArgs = {
|
|
|
182177
182515
|
title?: InputMaybe<Scalars['String']['input']>;
|
|
182178
182516
|
values?: InputMaybe<Array<KitsuneFeedbackValueInput>>;
|
|
182179
182517
|
};
|
|
182518
|
+
export type MutationKitsune_UpdateFeedbackV2Args = {
|
|
182519
|
+
id: Scalars['ID']['input'];
|
|
182520
|
+
input: KitsuneUpdateFeedbackInput;
|
|
182521
|
+
};
|
|
182180
182522
|
export type MutationKitsune_UpdateFieldArgs = {
|
|
182181
182523
|
aiEnabled?: InputMaybe<Scalars['Boolean']['input']>;
|
|
182182
182524
|
description?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -182241,6 +182583,10 @@ export type MutationKitsune_UpdateSpaceArgs = {
|
|
|
182241
182583
|
id: Scalars['ID']['input'];
|
|
182242
182584
|
name?: InputMaybe<Scalars['String']['input']>;
|
|
182243
182585
|
};
|
|
182586
|
+
export type MutationKitsune_UpdateSpaceV2Args = {
|
|
182587
|
+
id: Scalars['ID']['input'];
|
|
182588
|
+
input: KitsuneUpdateSpaceInput;
|
|
182589
|
+
};
|
|
182244
182590
|
export type MutationKitsune_UpdateViewArgs = {
|
|
182245
182591
|
config?: InputMaybe<KitsuneViewConfigInput>;
|
|
182246
182592
|
description?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -182779,6 +183125,9 @@ export type MutationRadar_DeleteAiConnectorsArgs = {
|
|
|
182779
183125
|
cloudId: Scalars['ID']['input'];
|
|
182780
183126
|
input: RadarDeleteAiConnectorsInput;
|
|
182781
183127
|
};
|
|
183128
|
+
export type MutationRadar_DeleteAllAiConnectorsArgs = {
|
|
183129
|
+
cloudId: Scalars['ID']['input'];
|
|
183130
|
+
};
|
|
182782
183131
|
export type MutationRadar_DeleteConnectorArgs = {
|
|
182783
183132
|
cloudId: Scalars['ID']['input'];
|
|
182784
183133
|
input: RadarDeleteConnectorInput;
|
|
@@ -186441,8 +186790,8 @@ export declare enum PsmDeviceHealthStatus {
|
|
|
186441
186790
|
Excellent = "EXCELLENT",
|
|
186442
186791
|
Fair = "FAIR",
|
|
186443
186792
|
Good = "GOOD",
|
|
186444
|
-
|
|
186445
|
-
|
|
186793
|
+
NotReporting = "NOT_REPORTING",
|
|
186794
|
+
Poor = "POOR"
|
|
186446
186795
|
}
|
|
186447
186796
|
export type PsmDeviceIdentity = {
|
|
186448
186797
|
__typename?: 'PsmDeviceIdentity';
|
|
@@ -186474,6 +186823,9 @@ export declare enum PsmDeviceStatus {
|
|
|
186474
186823
|
Orphan = "ORPHAN",
|
|
186475
186824
|
Unmapped = "UNMAPPED"
|
|
186476
186825
|
}
|
|
186826
|
+
export type PsmDevicesFilter = {
|
|
186827
|
+
healthStatuses?: InputMaybe<Array<PsmDeviceHealthStatus>>;
|
|
186828
|
+
};
|
|
186477
186829
|
export type PsmEligibleUser = {
|
|
186478
186830
|
__typename?: 'PsmEligibleUser';
|
|
186479
186831
|
atlassianAccountId: Scalars['ID']['output'];
|
|
@@ -186489,6 +186841,30 @@ export type PsmEligibleUsersListResult = {
|
|
|
186489
186841
|
errors?: Maybe<Array<QueryError>>;
|
|
186490
186842
|
users?: Maybe<Array<PsmEligibleUser>>;
|
|
186491
186843
|
};
|
|
186844
|
+
export type PsmFilter = {
|
|
186845
|
+
__typename?: 'PsmFilter';
|
|
186846
|
+
key: PsmFilterKey;
|
|
186847
|
+
label: Scalars['String']['output'];
|
|
186848
|
+
options: Array<PsmFilterOption>;
|
|
186849
|
+
searchable: Scalars['Boolean']['output'];
|
|
186850
|
+
};
|
|
186851
|
+
export declare enum PsmFilterKey {
|
|
186852
|
+
RemediationCategory = "REMEDIATION_CATEGORY",
|
|
186853
|
+
Sensor = "SENSOR",
|
|
186854
|
+
SensorCategory = "SENSOR_CATEGORY",
|
|
186855
|
+
Status = "STATUS"
|
|
186856
|
+
}
|
|
186857
|
+
export type PsmFilterOption = {
|
|
186858
|
+
__typename?: 'PsmFilterOption';
|
|
186859
|
+
label: Scalars['String']['output'];
|
|
186860
|
+
value: Scalars['String']['output'];
|
|
186861
|
+
};
|
|
186862
|
+
export declare enum PsmFilterScreen {
|
|
186863
|
+
Activities = "ACTIVITIES",
|
|
186864
|
+
DeviceList = "DEVICE_LIST",
|
|
186865
|
+
OpenIssuesAgentActionPending = "OPEN_ISSUES_AGENT_ACTION_PENDING",
|
|
186866
|
+
OpenIssuesAutomatedApproved = "OPEN_ISSUES_AUTOMATED_APPROVED"
|
|
186867
|
+
}
|
|
186492
186868
|
export type PsmFinishOnboardTenantInput = {
|
|
186493
186869
|
spaceId: Scalars['ID']['input'];
|
|
186494
186870
|
};
|
|
@@ -186608,6 +186984,12 @@ export type PsmRemediationTriggerSummary = {
|
|
|
186608
186984
|
offline?: Maybe<Array<Scalars['String']['output']>>;
|
|
186609
186985
|
queued?: Maybe<Array<Scalars['String']['output']>>;
|
|
186610
186986
|
};
|
|
186987
|
+
export type PsmScreenFilterResult = {
|
|
186988
|
+
__typename?: 'PsmScreenFilterResult';
|
|
186989
|
+
errors?: Maybe<Array<QueryError>>;
|
|
186990
|
+
filters?: Maybe<Array<PsmFilter>>;
|
|
186991
|
+
screen: PsmFilterScreen;
|
|
186992
|
+
};
|
|
186611
186993
|
export type PsmSensorCategoriesInput = {
|
|
186612
186994
|
spaceId: Scalars['ID']['input'];
|
|
186613
186995
|
};
|
|
@@ -186637,6 +187019,7 @@ export type PsmSensorConfigDetails = {
|
|
|
186637
187019
|
name?: Maybe<Scalars['String']['output']>;
|
|
186638
187020
|
remediationDesc?: Maybe<Scalars['String']['output']>;
|
|
186639
187021
|
remediationFrequency?: Maybe<Scalars['String']['output']>;
|
|
187022
|
+
remediationId?: Maybe<Scalars['ID']['output']>;
|
|
186640
187023
|
remediationType?: Maybe<PsmSensorRemediationType>;
|
|
186641
187024
|
sensorId?: Maybe<Scalars['String']['output']>;
|
|
186642
187025
|
triggerCondition?: Maybe<Scalars['String']['output']>;
|
|
@@ -187261,7 +187644,6 @@ export type Query = {
|
|
|
187261
187644
|
agentWorkspace_skillCategoriesInProject?: Maybe<AgentWorkspaceProjectSkillCategoryConnection>;
|
|
187262
187645
|
agentWorkspace_skills?: Maybe<AgentWorkspaceSkillConnection>;
|
|
187263
187646
|
agentWorkspace_skillsInCategory?: Maybe<AgentWorkspaceSkillConnection>;
|
|
187264
|
-
agentWorkspace_smartRoutingConfig?: Maybe<AgentWorkspaceSmartRoutingConfig>;
|
|
187265
187647
|
agentWorkspace_smartRoutingDryRun?: Maybe<AgentWorkspaceSmartRoutingDryRun>;
|
|
187266
187648
|
agentWorkspace_smartRoutingDryRunTickets?: Maybe<AgentWorkspaceSmartRoutingDryRunTicketsPayload>;
|
|
187267
187649
|
agentWorkspace_teamCapacities?: Maybe<Array<AgentWorkspaceTeamCapacity>>;
|
|
@@ -187274,7 +187656,7 @@ export type Query = {
|
|
|
187274
187656
|
agentWorkspace_utilizationForPendingChanges?: Maybe<Array<AgentWorkspaceAgentUtilizationForPendingChanges>>;
|
|
187275
187657
|
agentWorkspace_wfoSummaryView?: Maybe<AgentWorkspaceWfoSummaryViewResult>;
|
|
187276
187658
|
agentWorkspace_wfoSummaryViewByProjectKey?: Maybe<AgentWorkspaceWfoSummaryViewByProjectKeyResult>;
|
|
187277
|
-
agentWorkspace_workforceTeamAccessLevels?: Maybe<
|
|
187659
|
+
agentWorkspace_workforceTeamAccessLevels?: Maybe<AgentWorkspaceWorkforceTeamAccessLevelsPayload>;
|
|
187278
187660
|
agentWorkspace_workloadJqlConfig?: Maybe<AgentWorkspaceWorkloadJqlConfig>;
|
|
187279
187661
|
agent_sessionAssociationQuery?: Maybe<AgentSessionAssociationConnection>;
|
|
187280
187662
|
agent_sessionQuery?: Maybe<AgentSessionConnection>;
|
|
@@ -188085,6 +188467,7 @@ export type Query = {
|
|
|
188085
188467
|
graphIntegration_mcpServers?: Maybe<Array<Maybe<GraphIntegrationMcpServerNode>>>;
|
|
188086
188468
|
graphIntegration_mcpTools?: Maybe<Array<Maybe<GraphIntegrationMcpToolNode>>>;
|
|
188087
188469
|
graphIntegration_rbacRecords?: Maybe<Array<GraphIntegrationRbacRecord>>;
|
|
188470
|
+
graphIntegration_resolveSkillCloneLink?: Maybe<GraphIntegrationResolveSkillCloneLinkPayload>;
|
|
188088
188471
|
graphIntegration_skill?: Maybe<GraphIntegrationSkill>;
|
|
188089
188472
|
graphIntegration_skillDimensionMetadata?: Maybe<GraphIntegrationSkillDimensionMetadata>;
|
|
188090
188473
|
graphIntegration_skillItems?: Maybe<Array<Maybe<GraphIntegrationSkillItem>>>;
|
|
@@ -188258,6 +188641,8 @@ export type Query = {
|
|
|
188258
188641
|
graphStoreV2_atlassianUserHasConfluenceMeetingNotesFolderInverse?: Maybe<GraphStoreV2SimplifiedAtlassianUserHasConfluenceMeetingNotesFolderInverseConnection>;
|
|
188259
188642
|
graphStoreV2_atlassianUserHasExternalPosition?: Maybe<GraphStoreV2SimplifiedAtlassianUserHasExternalPositionConnection>;
|
|
188260
188643
|
graphStoreV2_atlassianUserHasExternalPositionInverse?: Maybe<GraphStoreV2SimplifiedAtlassianUserHasExternalPositionInverseConnection>;
|
|
188644
|
+
graphStoreV2_atlassianUserHasPendingApprovalOnJiraWorkItem?: Maybe<GraphStoreV2SimplifiedAtlassianUserHasPendingApprovalOnJiraWorkItemConnection>;
|
|
188645
|
+
graphStoreV2_atlassianUserHasPendingApprovalOnJiraWorkItemInverse?: Maybe<GraphStoreV2SimplifiedAtlassianUserHasPendingApprovalOnJiraWorkItemInverseConnection>;
|
|
188261
188646
|
graphStoreV2_atlassianUserHasRelevantJiraSpace?: Maybe<GraphStoreV2SimplifiedAtlassianUserHasRelevantJiraSpaceConnection>;
|
|
188262
188647
|
graphStoreV2_atlassianUserHasRelevantJiraSpaceInverse?: Maybe<GraphStoreV2SimplifiedAtlassianUserHasRelevantJiraSpaceInverseConnection>;
|
|
188263
188648
|
graphStoreV2_atlassianUserInvitedToLoomMeeting?: Maybe<GraphStoreV2SimplifiedAtlassianUserInvitedToLoomMeetingConnection>;
|
|
@@ -189108,6 +189493,8 @@ export type Query = {
|
|
|
189108
189493
|
graphStore_atlassianUserDismissedJiraForYouRecommendationEntityInverseBatch?: Maybe<GraphStoreBatchAtlassianUserDismissedJiraForYouRecommendationEntityConnection>;
|
|
189109
189494
|
graphStore_atlassianUserFollowsAtlassianHomeTag?: Maybe<GraphStoreSimplifiedAtlassianUserFollowsAtlassianHomeTagConnection>;
|
|
189110
189495
|
graphStore_atlassianUserFollowsAtlassianHomeTagInverse?: Maybe<GraphStoreSimplifiedAtlassianUserFollowsAtlassianHomeTagInverseConnection>;
|
|
189496
|
+
graphStore_atlassianUserHasPendingApprovalOnJiraWorkItem?: Maybe<GraphStoreSimplifiedAtlassianUserHasPendingApprovalOnJiraWorkItemConnection>;
|
|
189497
|
+
graphStore_atlassianUserHasPendingApprovalOnJiraWorkItemInverse?: Maybe<GraphStoreSimplifiedAtlassianUserHasPendingApprovalOnJiraWorkItemInverseConnection>;
|
|
189111
189498
|
graphStore_atlassianUserInvitedToLoomMeeting?: Maybe<GraphStoreSimplifiedAtlassianUserInvitedToLoomMeetingConnection>;
|
|
189112
189499
|
graphStore_atlassianUserInvitedToLoomMeetingBatch?: Maybe<GraphStoreBatchAtlassianUserInvitedToLoomMeetingConnection>;
|
|
189113
189500
|
graphStore_atlassianUserInvitedToLoomMeetingInverse?: Maybe<GraphStoreSimplifiedAtlassianUserInvitedToLoomMeetingInverseConnection>;
|
|
@@ -190359,6 +190746,7 @@ export type Query = {
|
|
|
190359
190746
|
jira_projectLevelSidebarMenuCustomization?: Maybe<JiraProjectLevelSidebarMenuCustomizationResult>;
|
|
190360
190747
|
jira_projectTypesByIds?: Maybe<Array<Maybe<JiraProjectTypeDetails>>>;
|
|
190361
190748
|
jira_projectsSidebarMenu?: Maybe<JiraProjectsSidebarMenu>;
|
|
190749
|
+
jira_releaseDriversForProject?: Maybe<JiraVersionDriverOptionConnection>;
|
|
190362
190750
|
jira_rovoEnablementStatus?: Maybe<JiraRovoEnablementStatus>;
|
|
190363
190751
|
jira_sprintField?: Maybe<JiraJqlField>;
|
|
190364
190752
|
jira_subtaskCreationAdditionalServices?: Maybe<JiraIssueCreateAdditionalServicesResult>;
|
|
@@ -190665,6 +191053,7 @@ export type Query = {
|
|
|
190665
191053
|
psm_device?: Maybe<PsmDevice>;
|
|
190666
191054
|
psm_devices?: Maybe<PsmDeviceConnection>;
|
|
190667
191055
|
psm_eligibleUsersList?: Maybe<PsmEligibleUsersListResult>;
|
|
191056
|
+
psm_filters?: Maybe<PsmScreenFilterResult>;
|
|
190668
191057
|
psm_onboardTenantStatus?: Maybe<PsmOnboardTenantStatusResult>;
|
|
190669
191058
|
psm_sensorCategories?: Maybe<PsmSensorCategoriesResult>;
|
|
190670
191059
|
psm_sensorDetails?: Maybe<PsmSensorConfigResult>;
|
|
@@ -191898,9 +192287,6 @@ export type QueryAgentWorkspace_SkillsInCategoryArgs = {
|
|
|
191898
192287
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
191899
192288
|
query?: InputMaybe<Scalars['String']['input']>;
|
|
191900
192289
|
};
|
|
191901
|
-
export type QueryAgentWorkspace_SmartRoutingConfigArgs = {
|
|
191902
|
-
projectAri: Scalars['ID']['input'];
|
|
191903
|
-
};
|
|
191904
192290
|
export type QueryAgentWorkspace_SmartRoutingDryRunArgs = {
|
|
191905
192291
|
cloudId: Scalars['ID']['input'];
|
|
191906
192292
|
projectKey: Scalars['String']['input'];
|
|
@@ -192252,7 +192638,7 @@ export type QueryAquaOutgoingEmailLogsArgs = {
|
|
|
192252
192638
|
cloudId: Scalars['ID']['input'];
|
|
192253
192639
|
};
|
|
192254
192640
|
export type QueryArtifact_GetArtifactArgs = {
|
|
192255
|
-
|
|
192641
|
+
input: ArtifactGetInput;
|
|
192256
192642
|
};
|
|
192257
192643
|
export type QueryAssetsDm_AdaptersArgs = {
|
|
192258
192644
|
cloudId: Scalars['ID']['input'];
|
|
@@ -195700,6 +196086,9 @@ export type QueryGraphIntegration_RbacRecordsArgs = {
|
|
|
195700
196086
|
resourceAri: Scalars['ID']['input'];
|
|
195701
196087
|
workspaceAri: Scalars['ID']['input'];
|
|
195702
196088
|
};
|
|
196089
|
+
export type QueryGraphIntegration_ResolveSkillCloneLinkArgs = {
|
|
196090
|
+
input: GraphIntegrationResolveSkillCloneLinkInput;
|
|
196091
|
+
};
|
|
195703
196092
|
export type QueryGraphIntegration_SkillArgs = {
|
|
195704
196093
|
contextAri: Scalars['ID']['input'];
|
|
195705
196094
|
resolvePlatformToolNames?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -196881,6 +197270,20 @@ export type QueryGraphStoreV2_AtlassianUserHasExternalPositionInverseArgs = {
|
|
|
196881
197270
|
id: Scalars['ID']['input'];
|
|
196882
197271
|
sort?: InputMaybe<GraphStoreV2AtlassianUserHasExternalPositionSortInput>;
|
|
196883
197272
|
};
|
|
197273
|
+
export type QueryGraphStoreV2_AtlassianUserHasPendingApprovalOnJiraWorkItemArgs = {
|
|
197274
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
197275
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
197276
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
197277
|
+
id: Scalars['ID']['input'];
|
|
197278
|
+
sort?: InputMaybe<GraphStoreV2AtlassianUserHasPendingApprovalOnJiraWorkItemSortInput>;
|
|
197279
|
+
};
|
|
197280
|
+
export type QueryGraphStoreV2_AtlassianUserHasPendingApprovalOnJiraWorkItemInverseArgs = {
|
|
197281
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
197282
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
197283
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
197284
|
+
id: Scalars['ID']['input'];
|
|
197285
|
+
sort?: InputMaybe<GraphStoreV2AtlassianUserHasPendingApprovalOnJiraWorkItemSortInput>;
|
|
197286
|
+
};
|
|
196884
197287
|
export type QueryGraphStoreV2_AtlassianUserHasRelevantJiraSpaceArgs = {
|
|
196885
197288
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
196886
197289
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -202961,6 +203364,22 @@ export type QueryGraphStore_AtlassianUserFollowsAtlassianHomeTagInverseArgs = {
|
|
|
202961
203364
|
queryContext?: InputMaybe<Scalars['String']['input']>;
|
|
202962
203365
|
sort?: InputMaybe<GraphStoreAtlassianUserFollowsAtlassianHomeTagSortInput>;
|
|
202963
203366
|
};
|
|
203367
|
+
export type QueryGraphStore_AtlassianUserHasPendingApprovalOnJiraWorkItemArgs = {
|
|
203368
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
203369
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
203370
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
203371
|
+
id: Scalars['ID']['input'];
|
|
203372
|
+
queryContext?: InputMaybe<Scalars['String']['input']>;
|
|
203373
|
+
sort?: InputMaybe<GraphStoreAtlassianUserHasPendingApprovalOnJiraWorkItemSortInput>;
|
|
203374
|
+
};
|
|
203375
|
+
export type QueryGraphStore_AtlassianUserHasPendingApprovalOnJiraWorkItemInverseArgs = {
|
|
203376
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
203377
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
203378
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
203379
|
+
id: Scalars['ID']['input'];
|
|
203380
|
+
queryContext?: InputMaybe<Scalars['String']['input']>;
|
|
203381
|
+
sort?: InputMaybe<GraphStoreAtlassianUserHasPendingApprovalOnJiraWorkItemSortInput>;
|
|
203382
|
+
};
|
|
202964
203383
|
export type QueryGraphStore_AtlassianUserInvitedToLoomMeetingArgs = {
|
|
202965
203384
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
202966
203385
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -212187,6 +212606,11 @@ export type QueryJira_ProjectsSidebarMenuArgs = {
|
|
|
212187
212606
|
cloudId: Scalars['ID']['input'];
|
|
212188
212607
|
currentURL?: InputMaybe<Scalars['URL']['input']>;
|
|
212189
212608
|
};
|
|
212609
|
+
export type QueryJira_ReleaseDriversForProjectArgs = {
|
|
212610
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
212611
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
212612
|
+
projectId: Scalars['ID']['input'];
|
|
212613
|
+
};
|
|
212190
212614
|
export type QueryJira_RovoEnablementStatusArgs = {
|
|
212191
212615
|
cloudId: Scalars['ID']['input'];
|
|
212192
212616
|
};
|
|
@@ -213356,6 +213780,7 @@ export type QueryPsm_DeviceArgs = {
|
|
|
213356
213780
|
export type QueryPsm_DevicesArgs = {
|
|
213357
213781
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
213358
213782
|
cloudId: Scalars['ID']['input'];
|
|
213783
|
+
filter?: InputMaybe<PsmDevicesFilter>;
|
|
213359
213784
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
213360
213785
|
spaceId: Scalars['ID']['input'];
|
|
213361
213786
|
};
|
|
@@ -213363,6 +213788,11 @@ export type QueryPsm_EligibleUsersListArgs = {
|
|
|
213363
213788
|
cloudId: Scalars['ID']['input'];
|
|
213364
213789
|
input: PsmEligibleUsersListInput;
|
|
213365
213790
|
};
|
|
213791
|
+
export type QueryPsm_FiltersArgs = {
|
|
213792
|
+
cloudId: Scalars['ID']['input'];
|
|
213793
|
+
screen: PsmFilterScreen;
|
|
213794
|
+
spaceId: Scalars['ID']['input'];
|
|
213795
|
+
};
|
|
213366
213796
|
export type QueryPsm_OnboardTenantStatusArgs = {
|
|
213367
213797
|
cloudId: Scalars['ID']['input'];
|
|
213368
213798
|
input: PsmOnboardTenantStatusInput;
|
|
@@ -214814,6 +215244,11 @@ export type RadarDateFieldValue = {
|
|
|
214814
215244
|
export type RadarDeleteAiConnectorsInput = {
|
|
214815
215245
|
ids: Array<Scalars['ID']['input']>;
|
|
214816
215246
|
};
|
|
215247
|
+
export type RadarDeleteAllAiConnectorsResponse = {
|
|
215248
|
+
__typename?: 'RadarDeleteAllAiConnectorsResponse';
|
|
215249
|
+
deletedConnectorCount: Scalars['Int']['output'];
|
|
215250
|
+
deletedConnectorIds: Array<Scalars['ID']['output']>;
|
|
215251
|
+
};
|
|
214817
215252
|
export type RadarDeleteConnectorInput = {
|
|
214818
215253
|
connectorId: Scalars['ID']['input'];
|
|
214819
215254
|
};
|
|
@@ -224041,6 +224476,7 @@ export declare enum StakeholderCommsComponentSuppressionReason {
|
|
|
224041
224476
|
BelowThreshold = "BELOW_THRESHOLD",
|
|
224042
224477
|
EngineError = "ENGINE_ERROR",
|
|
224043
224478
|
FeatureDisabled = "FEATURE_DISABLED",
|
|
224479
|
+
InvalidInput = "INVALID_INPUT",
|
|
224044
224480
|
NoComponentsConfigured = "NO_COMPONENTS_CONFIGURED"
|
|
224045
224481
|
}
|
|
224046
224482
|
export declare enum StakeholderCommsComponentType {
|
|
@@ -230687,6 +231123,7 @@ export type TownsquareProject = HasMercuryProjectFields & Node & {
|
|
|
230687
231123
|
mercuryProjectStatus?: Maybe<MercuryProjectStatus>;
|
|
230688
231124
|
mercuryProjectType?: Maybe<MercuryProjectType>;
|
|
230689
231125
|
mercuryProjectUrl?: Maybe<Scalars['URL']['output']>;
|
|
231126
|
+
mercuryStartDate?: Maybe<Scalars['DateTime']['output']>;
|
|
230690
231127
|
mercuryTargetDate?: Maybe<Scalars['String']['output']>;
|
|
230691
231128
|
mercuryTargetDateEnd?: Maybe<Scalars['DateTime']['output']>;
|
|
230692
231129
|
mercuryTargetDateStart?: Maybe<Scalars['DateTime']['output']>;
|
|
@@ -232864,6 +233301,26 @@ export type TrelloAdministeredPaidWorkspacesUpdated = {
|
|
|
232864
233301
|
__typename?: 'TrelloAdministeredPaidWorkspacesUpdated';
|
|
232865
233302
|
id: Scalars['ID']['output'];
|
|
232866
233303
|
};
|
|
233304
|
+
export type TrelloAgentMessage = {
|
|
233305
|
+
__typename?: 'TrelloAgentMessage';
|
|
233306
|
+
content: Scalars['String']['output'];
|
|
233307
|
+
id: Scalars['ID']['output'];
|
|
233308
|
+
role: TrelloAgentMessageRole;
|
|
233309
|
+
taskId?: Maybe<Scalars['ID']['output']>;
|
|
233310
|
+
};
|
|
233311
|
+
export type TrelloAgentMessageEdgeUpdated = {
|
|
233312
|
+
__typename?: 'TrelloAgentMessageEdgeUpdated';
|
|
233313
|
+
node: TrelloAgentMessage;
|
|
233314
|
+
};
|
|
233315
|
+
export declare enum TrelloAgentMessageRole {
|
|
233316
|
+
Agent = "AGENT",
|
|
233317
|
+
Unspecified = "UNSPECIFIED",
|
|
233318
|
+
User = "USER"
|
|
233319
|
+
}
|
|
233320
|
+
export type TrelloAgentMessageUpdatedConnection = {
|
|
233321
|
+
__typename?: 'TrelloAgentMessageUpdatedConnection';
|
|
233322
|
+
edges?: Maybe<Array<TrelloAgentMessageEdgeUpdated>>;
|
|
233323
|
+
};
|
|
232867
233324
|
export type TrelloAgentSessionUpdated = TrelloStatefulSessionUpdated & {
|
|
232868
233325
|
__typename?: 'TrelloAgentSessionUpdated';
|
|
232869
233326
|
_deltas?: Maybe<Array<Scalars['String']['output']>>;
|
|
@@ -232897,12 +233354,13 @@ export declare enum TrelloAgentTaskState {
|
|
|
232897
233354
|
}
|
|
232898
233355
|
export type TrelloAgentTaskStatus = {
|
|
232899
233356
|
__typename?: 'TrelloAgentTaskStatus';
|
|
232900
|
-
message?: Maybe<
|
|
233357
|
+
message?: Maybe<TrelloAgentMessage>;
|
|
232901
233358
|
state: TrelloAgentTaskState;
|
|
232902
233359
|
timestamp: Scalars['DateTime']['output'];
|
|
232903
233360
|
};
|
|
232904
233361
|
export type TrelloAgentTaskUpdated = {
|
|
232905
233362
|
__typename?: 'TrelloAgentTaskUpdated';
|
|
233363
|
+
history?: Maybe<TrelloAgentMessageUpdatedConnection>;
|
|
232906
233364
|
id: Scalars['ID']['output'];
|
|
232907
233365
|
key?: Maybe<Scalars['String']['output']>;
|
|
232908
233366
|
sessionId?: Maybe<Scalars['ID']['output']>;
|
|
@@ -235872,6 +236330,7 @@ export type TrelloInitializeVoiceCaptureSessionInput = {
|
|
|
235872
236330
|
export type TrelloInitializeVoiceCaptureSessionPayload = Payload & {
|
|
235873
236331
|
__typename?: 'TrelloInitializeVoiceCaptureSessionPayload';
|
|
235874
236332
|
errors?: Maybe<Array<MutationError>>;
|
|
236333
|
+
maximumCardLimit?: Maybe<Scalars['Int']['output']>;
|
|
235875
236334
|
objectId?: Maybe<Scalars['ID']['output']>;
|
|
235876
236335
|
sessionId?: Maybe<Scalars['ID']['output']>;
|
|
235877
236336
|
success: Scalars['Boolean']['output'];
|
|
@@ -239777,6 +240236,7 @@ export type TrelloWorkspace = Node & {
|
|
|
239777
240236
|
description?: Maybe<Scalars['String']['output']>;
|
|
239778
240237
|
displayBoardCount?: Maybe<Scalars['Int']['output']>;
|
|
239779
240238
|
displayName?: Maybe<Scalars['String']['output']>;
|
|
240239
|
+
eligibleForTrial?: Maybe<Scalars['Boolean']['output']>;
|
|
239780
240240
|
enterprise?: Maybe<TrelloEnterprise>;
|
|
239781
240241
|
entitlement?: Maybe<CcpEntitlement>;
|
|
239782
240242
|
iconEmoji?: Maybe<Scalars['String']['output']>;
|