@forge/cli-shared 9.4.0-next.8-experimental-3dcad97 → 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 +41 -2
- 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 +497 -35
- package/out/graphql/graphql-types.d.ts.map +1 -1
- package/out/graphql/graphql-types.js +86 -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 +4 -1
- package/out/ui/text.d.ts.map +1 -1
- package/out/ui/text.js +4 -1
- 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'];
|
|
@@ -10996,6 +11010,7 @@ export declare enum AppFeatureKey {
|
|
|
10996
11010
|
HasExposedCredentials = "HAS_EXPOSED_CREDENTIALS",
|
|
10997
11011
|
HasResourceRestrictedToken = "HAS_RESOURCE_RESTRICTED_TOKEN",
|
|
10998
11012
|
IsPersonalApp = "IS_PERSONAL_APP",
|
|
11013
|
+
IsPlatformApp = "IS_PLATFORM_APP",
|
|
10999
11014
|
SupportsCompute = "SUPPORTS_COMPUTE",
|
|
11000
11015
|
SupportsCustomEnvironments = "SUPPORTS_CUSTOM_ENVIRONMENTS"
|
|
11001
11016
|
}
|
|
@@ -11016,6 +11031,7 @@ export type AppFeaturesInput = {
|
|
|
11016
11031
|
hasExposedCredentials?: InputMaybe<AppFeaturesExposedCredentialsInput>;
|
|
11017
11032
|
hasResourceRestrictedToken?: InputMaybe<Scalars['Boolean']['input']>;
|
|
11018
11033
|
isPersonalApp?: InputMaybe<Scalars['Boolean']['input']>;
|
|
11034
|
+
platformAppId?: InputMaybe<Scalars['ID']['input']>;
|
|
11019
11035
|
};
|
|
11020
11036
|
export type AppHostService = {
|
|
11021
11037
|
__typename?: 'AppHostService';
|
|
@@ -12292,16 +12308,26 @@ export type Artifact = {
|
|
|
12292
12308
|
id: Scalars['ID']['output'];
|
|
12293
12309
|
name: Scalars['String']['output'];
|
|
12294
12310
|
type: Scalars['String']['output'];
|
|
12295
|
-
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'];
|
|
12296
12321
|
};
|
|
12297
|
-
export type ArtifactCreateContentPayload = {
|
|
12322
|
+
export type ArtifactCreateContentPayload = Payload & {
|
|
12298
12323
|
__typename?: 'ArtifactCreateContentPayload';
|
|
12299
12324
|
errors?: Maybe<Array<MutationError>>;
|
|
12300
|
-
success
|
|
12325
|
+
success: Scalars['Boolean']['output'];
|
|
12301
12326
|
upload?: Maybe<ArtifactUploadTarget>;
|
|
12302
12327
|
};
|
|
12303
12328
|
export type ArtifactCreateInput = {
|
|
12304
12329
|
contentId: Scalars['ID']['input'];
|
|
12330
|
+
contextId: Scalars['ID']['input'];
|
|
12305
12331
|
name: Scalars['String']['input'];
|
|
12306
12332
|
type: Scalars['String']['input'];
|
|
12307
12333
|
};
|
|
@@ -12311,6 +12337,10 @@ export type ArtifactCreatePayload = Payload & {
|
|
|
12311
12337
|
errors?: Maybe<Array<MutationError>>;
|
|
12312
12338
|
success: Scalars['Boolean']['output'];
|
|
12313
12339
|
};
|
|
12340
|
+
export type ArtifactGetInput = {
|
|
12341
|
+
contextId: Scalars['ID']['input'];
|
|
12342
|
+
id: Scalars['ID']['input'];
|
|
12343
|
+
};
|
|
12314
12344
|
export type ArtifactUploadTarget = {
|
|
12315
12345
|
__typename?: 'ArtifactUploadTarget';
|
|
12316
12346
|
contentId: Scalars['ID']['output'];
|
|
@@ -14273,6 +14303,7 @@ export type AssetsDmObjectInfo = {
|
|
|
14273
14303
|
};
|
|
14274
14304
|
export type AssetsDmObjectSchema = {
|
|
14275
14305
|
__typename?: 'AssetsDMObjectSchema';
|
|
14306
|
+
displayName?: Maybe<Scalars['String']['output']>;
|
|
14276
14307
|
id: Scalars['ID']['output'];
|
|
14277
14308
|
name: Scalars['String']['output'];
|
|
14278
14309
|
objectCount: Scalars['Int']['output'];
|
|
@@ -14702,6 +14733,7 @@ export type AssetsDmSavedSearchesQueryArgs = {
|
|
|
14702
14733
|
};
|
|
14703
14734
|
export type AssetsDmSchemaObjectType = {
|
|
14704
14735
|
__typename?: 'AssetsDMSchemaObjectType';
|
|
14736
|
+
displayName?: Maybe<Scalars['String']['output']>;
|
|
14705
14737
|
id: Scalars['ID']['output'];
|
|
14706
14738
|
name: Scalars['String']['output'];
|
|
14707
14739
|
objectCount?: Maybe<Scalars['Int']['output']>;
|
|
@@ -23608,11 +23640,15 @@ export declare enum CommerceExpEntitlementLevel {
|
|
|
23608
23640
|
}
|
|
23609
23641
|
export type CommerceExpEntitlementProvisioning = {
|
|
23610
23642
|
__typename?: 'CommerceExpEntitlementProvisioning';
|
|
23643
|
+
bitbucketWorkspace?: Maybe<BitbucketWorkspace>;
|
|
23644
|
+
bitbucketWorkspaceAri?: Maybe<Scalars['String']['output']>;
|
|
23611
23645
|
canReactivate?: Maybe<Scalars['Boolean']['output']>;
|
|
23612
23646
|
level?: Maybe<CommerceExpEntitlementLevel>;
|
|
23613
23647
|
lifecycleState?: Maybe<Scalars['String']['output']>;
|
|
23614
23648
|
organisation?: Maybe<CommerceExpOrganisation>;
|
|
23615
23649
|
resourceAris?: Maybe<Array<Maybe<Scalars['ID']['output']>>>;
|
|
23650
|
+
site?: Maybe<TenantContext>;
|
|
23651
|
+
siteResourceId?: Maybe<Scalars['String']['output']>;
|
|
23616
23652
|
sourceEntitlement?: Maybe<CommerceExpCcpEntitlement>;
|
|
23617
23653
|
status?: Maybe<CommerceExpEntitlementProvisioningStatus>;
|
|
23618
23654
|
suspensionReasons?: Maybe<Array<Maybe<Scalars['String']['output']>>>;
|
|
@@ -30952,8 +30988,8 @@ export type ConfluenceAccessLinkInfo = {
|
|
|
30952
30988
|
};
|
|
30953
30989
|
export type ConfluenceAccessLinkSpacesActionInput = {
|
|
30954
30990
|
accessTypes: Array<ConfluenceShareableLinkAccessType>;
|
|
30991
|
+
action: ConfluenceShareableLinkSpaceStatus;
|
|
30955
30992
|
spaceIds: Array<Scalars['ID']['input']>;
|
|
30956
|
-
status: ConfluenceShareableLinkSpaceStatus;
|
|
30957
30993
|
};
|
|
30958
30994
|
export type ConfluenceAccessLinkSpacesActionPayload = Payload & {
|
|
30959
30995
|
__typename?: 'ConfluenceAccessLinkSpacesActionPayload';
|
|
@@ -39970,6 +40006,7 @@ export type ConvoAiSearchAgentPayload = {
|
|
|
39970
40006
|
ranking?: Maybe<Array<Maybe<ConvoAiSearchAgentRankedDocument>>>;
|
|
39971
40007
|
sources?: Maybe<Array<Maybe<ConvoAiSearchAgentSourceResult>>>;
|
|
39972
40008
|
timing?: Maybe<ConvoAiSearchAgentTiming>;
|
|
40009
|
+
tokenUsage?: Maybe<ConvoAiSearchAgentTokenUsage>;
|
|
39973
40010
|
};
|
|
39974
40011
|
export type ConvoAiSearchAgentRankedDocument = {
|
|
39975
40012
|
__typename?: 'ConvoAiSearchAgentRankedDocument';
|
|
@@ -40012,6 +40049,17 @@ export type ConvoAiSearchAgentTiming = {
|
|
|
40012
40049
|
toolExecutionsCount?: Maybe<Scalars['Int']['output']>;
|
|
40013
40050
|
toolExecutionsMs?: Maybe<Scalars['Long']['output']>;
|
|
40014
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
|
+
};
|
|
40015
40063
|
export type ConvoAiSkill = {
|
|
40016
40064
|
__typename?: 'ConvoAiSkill';
|
|
40017
40065
|
category?: Maybe<Scalars['String']['output']>;
|
|
@@ -45813,6 +45861,7 @@ export type DevAiAutodevNextWorkstreamSettings = {
|
|
|
45813
45861
|
defaultJiraProjectAri?: Maybe<Scalars['ID']['output']>;
|
|
45814
45862
|
eligibilityCriteria?: Maybe<Scalars['String']['output']>;
|
|
45815
45863
|
notifications?: Maybe<DevAiAutodevNextNotificationSettings>;
|
|
45864
|
+
prNursingEnabled?: Maybe<Scalars['Boolean']['output']>;
|
|
45816
45865
|
pullRequestMessage?: Maybe<Scalars['String']['output']>;
|
|
45817
45866
|
pullRequestPrefix?: Maybe<Scalars['String']['output']>;
|
|
45818
45867
|
scanSchedule?: Maybe<DevAiAutodevNextScanSchedule>;
|
|
@@ -45834,6 +45883,7 @@ export type DevAiAutodevNextWorkstreamSettingsInput = {
|
|
|
45834
45883
|
defaultJiraProjectAri?: InputMaybe<Scalars['ID']['input']>;
|
|
45835
45884
|
eligibilityCriteria?: InputMaybe<Scalars['String']['input']>;
|
|
45836
45885
|
notifications?: InputMaybe<DevAiAutodevNextNotificationSettingsInput>;
|
|
45886
|
+
prNursingEnabled?: InputMaybe<Scalars['Boolean']['input']>;
|
|
45837
45887
|
pullRequestMessage?: InputMaybe<Scalars['String']['input']>;
|
|
45838
45888
|
pullRequestPrefix?: InputMaybe<Scalars['String']['input']>;
|
|
45839
45889
|
scanSchedule?: InputMaybe<DevAiAutodevNextScanScheduleInput>;
|
|
@@ -49252,6 +49302,7 @@ export type EcosystemGlobalInstallationOverrideInput = {
|
|
|
49252
49302
|
export declare enum EcosystemGlobalInstallationOverrideKeys {
|
|
49253
49303
|
AllowCustomMetrics = "ALLOW_CUSTOM_METRICS",
|
|
49254
49304
|
AllowEgressAnalytics = "ALLOW_EGRESS_ANALYTICS",
|
|
49305
|
+
AllowExternalMcp = "ALLOW_EXTERNAL_MCP",
|
|
49255
49306
|
AllowLlmCapability = "ALLOW_LLM_CAPABILITY",
|
|
49256
49307
|
AllowLogsAccess = "ALLOW_LOGS_ACCESS",
|
|
49257
49308
|
AllowPersonalApps = "ALLOW_PERSONAL_APPS",
|
|
@@ -49263,6 +49314,7 @@ export type EcosystemInstallationConfigInput = {
|
|
|
49263
49314
|
export declare enum EcosystemInstallationOverrideKeys {
|
|
49264
49315
|
AllowCustomMetrics = "ALLOW_CUSTOM_METRICS",
|
|
49265
49316
|
AllowEgressAnalytics = "ALLOW_EGRESS_ANALYTICS",
|
|
49317
|
+
AllowExternalMcp = "ALLOW_EXTERNAL_MCP",
|
|
49266
49318
|
AllowLlmCapability = "ALLOW_LLM_CAPABILITY",
|
|
49267
49319
|
AllowLogsAccess = "ALLOW_LOGS_ACCESS",
|
|
49268
49320
|
AllowRestApis = "ALLOW_REST_APIS"
|
|
@@ -53812,6 +53864,7 @@ export type GeneratedPlaybook = {
|
|
|
53812
53864
|
};
|
|
53813
53865
|
export type GeneratedStep = {
|
|
53814
53866
|
__typename?: 'GeneratedStep';
|
|
53867
|
+
checklistItems?: Maybe<Array<ChecklistItem>>;
|
|
53815
53868
|
description?: Maybe<Scalars['JSON']['output']>;
|
|
53816
53869
|
name: Scalars['String']['output'];
|
|
53817
53870
|
type: JiraPlaybookStepType;
|
|
@@ -55308,6 +55361,17 @@ export type GraphInferenceInferenceAppV3 = {
|
|
|
55308
55361
|
reasoningLevel: Scalars['String']['output'];
|
|
55309
55362
|
source: Scalars['String']['output'];
|
|
55310
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
|
+
};
|
|
55311
55375
|
export type GraphInferenceInferenceModelChoice = {
|
|
55312
55376
|
__typename?: 'GraphInferenceInferenceModelChoice';
|
|
55313
55377
|
id: Scalars['String']['output'];
|
|
@@ -56418,6 +56482,16 @@ export type GraphIntegrationRemoveTwgCapabilityContainerPayload = Payload & {
|
|
|
56418
56482
|
errors?: Maybe<Array<MutationError>>;
|
|
56419
56483
|
success: Scalars['Boolean']['output'];
|
|
56420
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
|
+
};
|
|
56421
56495
|
export type GraphIntegrationSetTwgPlatformCapabilityGlobalAdminSettingInput = {
|
|
56422
56496
|
capabilityType: GraphIntegrationTwgCapabilityType;
|
|
56423
56497
|
cloudId: Scalars['ID']['input'];
|
|
@@ -56429,6 +56503,13 @@ export type GraphIntegrationSetTwgPlatformCapabilityGlobalAdminSettingPayload =
|
|
|
56429
56503
|
setting?: Maybe<GraphIntegrationTwgPlatformCapabilityGlobalAdminSetting>;
|
|
56430
56504
|
success: Scalars['Boolean']['output'];
|
|
56431
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
|
+
};
|
|
56432
56513
|
export type GraphIntegrationSkill = {
|
|
56433
56514
|
__typename?: 'GraphIntegrationSkill';
|
|
56434
56515
|
description: Scalars['String']['output'];
|
|
@@ -59456,6 +59537,8 @@ export type GraphStore = {
|
|
|
59456
59537
|
atlassianUserDismissedJiraForYouRecommendationEntityInverseBatch?: Maybe<GraphStoreBatchAtlassianUserDismissedJiraForYouRecommendationEntityConnection>;
|
|
59457
59538
|
atlassianUserFollowsAtlassianHomeTag?: Maybe<GraphStoreSimplifiedAtlassianUserFollowsAtlassianHomeTagConnection>;
|
|
59458
59539
|
atlassianUserFollowsAtlassianHomeTagInverse?: Maybe<GraphStoreSimplifiedAtlassianUserFollowsAtlassianHomeTagInverseConnection>;
|
|
59540
|
+
atlassianUserHasPendingApprovalOnJiraWorkItem?: Maybe<GraphStoreSimplifiedAtlassianUserHasPendingApprovalOnJiraWorkItemConnection>;
|
|
59541
|
+
atlassianUserHasPendingApprovalOnJiraWorkItemInverse?: Maybe<GraphStoreSimplifiedAtlassianUserHasPendingApprovalOnJiraWorkItemInverseConnection>;
|
|
59459
59542
|
atlassianUserInvitedToLoomMeeting?: Maybe<GraphStoreSimplifiedAtlassianUserInvitedToLoomMeetingConnection>;
|
|
59460
59543
|
atlassianUserInvitedToLoomMeetingBatch?: Maybe<GraphStoreBatchAtlassianUserInvitedToLoomMeetingConnection>;
|
|
59461
59544
|
atlassianUserInvitedToLoomMeetingInverse?: Maybe<GraphStoreSimplifiedAtlassianUserInvitedToLoomMeetingInverseConnection>;
|
|
@@ -61448,6 +61531,22 @@ export type GraphStoreAtlassianUserFollowsAtlassianHomeTagInverseArgs = {
|
|
|
61448
61531
|
queryContext?: InputMaybe<Scalars['String']['input']>;
|
|
61449
61532
|
sort?: InputMaybe<GraphStoreAtlassianUserFollowsAtlassianHomeTagSortInput>;
|
|
61450
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
|
+
};
|
|
61451
61550
|
export type GraphStoreAtlassianUserInvitedToLoomMeetingArgs = {
|
|
61452
61551
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
61453
61552
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -70440,6 +70539,9 @@ export type GraphStoreAtlassianUserDismissedJiraForYouRecommendationEntitySortIn
|
|
|
70440
70539
|
export type GraphStoreAtlassianUserFollowsAtlassianHomeTagSortInput = {
|
|
70441
70540
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
70442
70541
|
};
|
|
70542
|
+
export type GraphStoreAtlassianUserHasPendingApprovalOnJiraWorkItemSortInput = {
|
|
70543
|
+
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
70544
|
+
};
|
|
70443
70545
|
export type GraphStoreAtlassianUserInvitedToLoomMeetingSortInput = {
|
|
70444
70546
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
70445
70547
|
};
|
|
@@ -80716,6 +80818,34 @@ export type GraphStoreSimplifiedAtlassianUserFollowsAtlassianHomeTagInverseEdge
|
|
|
80716
80818
|
};
|
|
80717
80819
|
export type GraphStoreSimplifiedAtlassianUserFollowsAtlassianHomeTagInverseUnion = AppUser | AtlassianAccountUser | CustomerUser;
|
|
80718
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;
|
|
80719
80849
|
export type GraphStoreSimplifiedAtlassianUserInvitedToLoomMeetingConnection = HasPageInfo & {
|
|
80720
80850
|
__typename?: 'GraphStoreSimplifiedAtlassianUserInvitedToLoomMeetingConnection';
|
|
80721
80851
|
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedAtlassianUserInvitedToLoomMeetingEdge>>>;
|
|
@@ -94410,6 +94540,8 @@ export type GraphStoreV2 = {
|
|
|
94410
94540
|
atlassianUserHasConfluenceMeetingNotesFolderInverse?: Maybe<GraphStoreV2SimplifiedAtlassianUserHasConfluenceMeetingNotesFolderInverseConnection>;
|
|
94411
94541
|
atlassianUserHasExternalPosition?: Maybe<GraphStoreV2SimplifiedAtlassianUserHasExternalPositionConnection>;
|
|
94412
94542
|
atlassianUserHasExternalPositionInverse?: Maybe<GraphStoreV2SimplifiedAtlassianUserHasExternalPositionInverseConnection>;
|
|
94543
|
+
atlassianUserHasPendingApprovalOnJiraWorkItem?: Maybe<GraphStoreV2SimplifiedAtlassianUserHasPendingApprovalOnJiraWorkItemConnection>;
|
|
94544
|
+
atlassianUserHasPendingApprovalOnJiraWorkItemInverse?: Maybe<GraphStoreV2SimplifiedAtlassianUserHasPendingApprovalOnJiraWorkItemInverseConnection>;
|
|
94413
94545
|
atlassianUserHasRelevantJiraSpace?: Maybe<GraphStoreV2SimplifiedAtlassianUserHasRelevantJiraSpaceConnection>;
|
|
94414
94546
|
atlassianUserHasRelevantJiraSpaceInverse?: Maybe<GraphStoreV2SimplifiedAtlassianUserHasRelevantJiraSpaceInverseConnection>;
|
|
94415
94547
|
atlassianUserInvitedToLoomMeeting?: Maybe<GraphStoreV2SimplifiedAtlassianUserInvitedToLoomMeetingConnection>;
|
|
@@ -96295,6 +96427,20 @@ export type GraphStoreV2AtlassianUserHasExternalPositionInverseArgs = {
|
|
|
96295
96427
|
id: Scalars['ID']['input'];
|
|
96296
96428
|
sort?: InputMaybe<GraphStoreV2AtlassianUserHasExternalPositionSortInput>;
|
|
96297
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
|
+
};
|
|
96298
96444
|
export type GraphStoreV2AtlassianUserHasRelevantJiraSpaceArgs = {
|
|
96299
96445
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
96300
96446
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -101855,6 +102001,9 @@ export type GraphStoreV2AtlassianUserHasExternalPositionSortInput = {
|
|
|
101855
102001
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
101856
102002
|
toAti?: InputMaybe<GraphStoreSortInput>;
|
|
101857
102003
|
};
|
|
102004
|
+
export type GraphStoreV2AtlassianUserHasPendingApprovalOnJiraWorkItemSortInput = {
|
|
102005
|
+
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
102006
|
+
};
|
|
101858
102007
|
export type GraphStoreV2AtlassianUserHasRelevantJiraSpaceSortInput = {
|
|
101859
102008
|
createdAt?: InputMaybe<GraphStoreSortInput>;
|
|
101860
102009
|
fromAti?: InputMaybe<GraphStoreSortInput>;
|
|
@@ -107884,6 +108033,34 @@ export type GraphStoreV2SimplifiedAtlassianUserHasExternalPositionInverseEdge =
|
|
|
107884
108033
|
};
|
|
107885
108034
|
export type GraphStoreV2SimplifiedAtlassianUserHasExternalPositionInverseUnion = AppUser | AtlassianAccountUser | CustomerUser;
|
|
107886
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;
|
|
107887
108064
|
export type GraphStoreV2SimplifiedAtlassianUserHasRelevantJiraSpaceConnection = HasPageInfo & HasTotal & {
|
|
107888
108065
|
__typename?: 'GraphStoreV2SimplifiedAtlassianUserHasRelevantJiraSpaceConnection';
|
|
107889
108066
|
edges?: Maybe<Array<Maybe<GraphStoreV2SimplifiedAtlassianUserHasRelevantJiraSpaceEdge>>>;
|
|
@@ -141810,6 +141987,7 @@ export type JiraProject = Node & {
|
|
|
141810
141987
|
linkedOperationsIncidentsByProject?: Maybe<GraphStoreSimplifiedJswProjectAssociatedIncidentConnection>;
|
|
141811
141988
|
linkedSecurityContainers?: Maybe<AriGraphRelationshipConnection>;
|
|
141812
141989
|
linkedSecurityVulnerabilitiesByProject?: Maybe<GraphJiraVulnerabilityConnection>;
|
|
141990
|
+
manageIssueTypesUrl?: Maybe<Scalars['String']['output']>;
|
|
141813
141991
|
manageWorkflowUrl?: Maybe<Scalars['String']['output']>;
|
|
141814
141992
|
mostRecentlyViewedBoard?: Maybe<JiraBoardResult>;
|
|
141815
141993
|
name: Scalars['String']['output'];
|
|
@@ -142977,6 +143155,7 @@ export type JiraProjectsSidebarMenu = {
|
|
|
142977
143155
|
__typename?: 'JiraProjectsSidebarMenu';
|
|
142978
143156
|
current?: Maybe<JiraProject>;
|
|
142979
143157
|
displayMode?: Maybe<JiraSidebarMenuDisplayMode>;
|
|
143158
|
+
errors?: Maybe<Array<QueryError>>;
|
|
142980
143159
|
favouriteLimit?: Maybe<Scalars['Int']['output']>;
|
|
142981
143160
|
favourites?: Maybe<JiraProjectConnection>;
|
|
142982
143161
|
hasMore?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -149611,7 +149790,6 @@ export declare enum JiraStartAgentSessionResult {
|
|
|
149611
149790
|
AlreadyStarted = "ALREADY_STARTED",
|
|
149612
149791
|
Failed = "FAILED",
|
|
149613
149792
|
RateLimited = "RATE_LIMITED",
|
|
149614
|
-
Skipped = "SKIPPED",
|
|
149615
149793
|
Started = "STARTED"
|
|
149616
149794
|
}
|
|
149617
149795
|
export type JiraStartAiAgentSessionByExternalReferenceInput = {
|
|
@@ -152191,6 +152369,24 @@ export type JiraVersionDriverEdge = {
|
|
|
152191
152369
|
cursor: Scalars['String']['output'];
|
|
152192
152370
|
node?: Maybe<User>;
|
|
152193
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
|
+
};
|
|
152194
152390
|
export type JiraVersionDriverResult = {
|
|
152195
152391
|
__typename?: 'JiraVersionDriverResult';
|
|
152196
152392
|
driver?: Maybe<User>;
|
|
@@ -154757,9 +154953,11 @@ export type JsmChannelsRequestTypesInput = {
|
|
|
154757
154953
|
export declare enum JsmChannelsResolutionPlanAction {
|
|
154758
154954
|
Approve = "APPROVE",
|
|
154759
154955
|
Pause = "PAUSE",
|
|
154956
|
+
Pin = "PIN",
|
|
154760
154957
|
Regenerate = "REGENERATE",
|
|
154761
154958
|
Reject = "REJECT",
|
|
154762
|
-
Resume = "RESUME"
|
|
154959
|
+
Resume = "RESUME",
|
|
154960
|
+
Unpin = "UNPIN"
|
|
154763
154961
|
}
|
|
154764
154962
|
export type JsmChannelsResolutionPlanActionPayload = Payload & {
|
|
154765
154963
|
__typename?: 'JsmChannelsResolutionPlanActionPayload';
|
|
@@ -157114,6 +157312,21 @@ export type KitsuneCreateConnectorConfigPayload = Payload & {
|
|
|
157114
157312
|
errors?: Maybe<Array<MutationError>>;
|
|
157115
157313
|
success: Scalars['Boolean']['output'];
|
|
157116
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
|
+
};
|
|
157117
157330
|
export type KitsuneCreateFieldInput = {
|
|
157118
157331
|
description?: InputMaybe<Scalars['String']['input']>;
|
|
157119
157332
|
entityTypes: Array<KitsuneEntityType>;
|
|
@@ -157168,6 +157381,17 @@ export type KitsuneCreateSnippetPayload = Payload & {
|
|
|
157168
157381
|
snippet?: Maybe<KitsuneSnippet>;
|
|
157169
157382
|
success: Scalars['Boolean']['output'];
|
|
157170
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
|
+
};
|
|
157171
157395
|
export type KitsuneCreateViewInput = {
|
|
157172
157396
|
config?: InputMaybe<KitsuneViewConfigInput>;
|
|
157173
157397
|
description?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -157455,6 +157679,15 @@ export type KitsuneFilterValueInput = {
|
|
|
157455
157679
|
valueNumber?: InputMaybe<Array<Scalars['Float']['input']>>;
|
|
157456
157680
|
valueText?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
157457
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
|
+
};
|
|
157458
157691
|
export type KitsuneGenerateInsightSummaryInput = {
|
|
157459
157692
|
insightAri: Scalars['ID']['input'];
|
|
157460
157693
|
};
|
|
@@ -157676,6 +157909,23 @@ export type KitsuneRemoveFromSpacePayload = Payload & {
|
|
|
157676
157909
|
principalAri?: Maybe<Scalars['ID']['output']>;
|
|
157677
157910
|
success: Scalars['Boolean']['output'];
|
|
157678
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
|
+
};
|
|
157679
157929
|
export type KitsuneResyncInsightsInput = {
|
|
157680
157930
|
workspaceAri: Scalars['ID']['input'];
|
|
157681
157931
|
};
|
|
@@ -158092,6 +158342,22 @@ export type KitsuneUpdateConnectorConfigPayload = Payload & {
|
|
|
158092
158342
|
errors?: Maybe<Array<MutationError>>;
|
|
158093
158343
|
success: Scalars['Boolean']['output'];
|
|
158094
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
|
+
};
|
|
158095
158361
|
export type KitsuneUpdateFieldInput = {
|
|
158096
158362
|
aiEnabled?: InputMaybe<Scalars['Boolean']['input']>;
|
|
158097
158363
|
description?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -158133,6 +158399,17 @@ export type KitsuneUpdateSnippetPayload = Payload & {
|
|
|
158133
158399
|
snippet?: Maybe<KitsuneSnippet>;
|
|
158134
158400
|
success: Scalars['Boolean']['output'];
|
|
158135
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
|
+
};
|
|
158136
158413
|
export type KitsuneUpdateViewInput = {
|
|
158137
158414
|
config?: InputMaybe<KitsuneViewConfigInput>;
|
|
158138
158415
|
description?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -164451,6 +164728,7 @@ export declare enum MarketplaceStoreLayoutSlotTheme {
|
|
|
164451
164728
|
Bounded = "BOUNDED",
|
|
164452
164729
|
Dark = "DARK",
|
|
164453
164730
|
Default = "DEFAULT",
|
|
164731
|
+
Elevated = "ELEVATED",
|
|
164454
164732
|
Inverse = "INVERSE"
|
|
164455
164733
|
}
|
|
164456
164734
|
export declare enum MarketplaceStoreLayoutSlotVariant {
|
|
@@ -167625,6 +167903,7 @@ export type MercuryCreateRateCardInput = {
|
|
|
167625
167903
|
effectiveStartDate?: InputMaybe<Scalars['Date']['input']>;
|
|
167626
167904
|
externalId?: InputMaybe<Scalars['String']['input']>;
|
|
167627
167905
|
rate?: InputMaybe<Scalars['String']['input']>;
|
|
167906
|
+
ratePeriodTypeId?: InputMaybe<Scalars['ID']['input']>;
|
|
167628
167907
|
workingHoursPerWeek?: InputMaybe<Scalars['Int']['input']>;
|
|
167629
167908
|
};
|
|
167630
167909
|
export type MercuryCreateRateCardPayload = Payload & {
|
|
@@ -169338,7 +169617,6 @@ export type MercuryFundsMutationApi = {
|
|
|
169338
169617
|
updateFocusAreaBudgetAmount?: Maybe<MercuryUpdateFocusAreaBudgetPayload>;
|
|
169339
169618
|
updateInvestmentCategoryName?: Maybe<MercuryUpdateInvestmentCategoryPayload>;
|
|
169340
169619
|
updateRateCard?: Maybe<MercuryUpdateRateCardPayload>;
|
|
169341
|
-
updateRateCardConfigurationRatePeriod?: Maybe<MercuryUpdateRateCardConfigurationPayload>;
|
|
169342
169620
|
};
|
|
169343
169621
|
export type MercuryFundsMutationApiCreateBenefitItemArgs = {
|
|
169344
169622
|
input: MercuryCreateBenefitItemInput;
|
|
@@ -169475,9 +169753,6 @@ export type MercuryFundsMutationApiUpdateInvestmentCategoryNameArgs = {
|
|
|
169475
169753
|
export type MercuryFundsMutationApiUpdateRateCardArgs = {
|
|
169476
169754
|
input: MercuryUpdateRateCardInput;
|
|
169477
169755
|
};
|
|
169478
|
-
export type MercuryFundsMutationApiUpdateRateCardConfigurationRatePeriodArgs = {
|
|
169479
|
-
input: MercuryUpdateRateCardConfigurationRatePeriodInput;
|
|
169480
|
-
};
|
|
169481
169756
|
export declare enum MercuryFundsPermission {
|
|
169482
169757
|
EditBaseline = "EDIT_BASELINE",
|
|
169483
169758
|
EditBudget = "EDIT_BUDGET",
|
|
@@ -169506,6 +169781,7 @@ export type MercuryFundsQueryApi = {
|
|
|
169506
169781
|
costTypes?: Maybe<Array<Maybe<MercuryCostType>>>;
|
|
169507
169782
|
costTypesByIds?: Maybe<Array<Maybe<MercuryCostType>>>;
|
|
169508
169783
|
currencies?: Maybe<Array<MercuryCurrency>>;
|
|
169784
|
+
defaultRateCard?: Maybe<MercuryRateCard>;
|
|
169509
169785
|
expenditureTypes?: Maybe<Array<Maybe<MercuryExpenditureType>>>;
|
|
169510
169786
|
expenditureTypesByIds?: Maybe<Array<Maybe<MercuryExpenditureType>>>;
|
|
169511
169787
|
financialVersions?: Maybe<Array<Maybe<MercuryFinancialVersion>>>;
|
|
@@ -169523,7 +169799,6 @@ export type MercuryFundsQueryApi = {
|
|
|
169523
169799
|
investmentCategoriesSearch?: Maybe<MercuryInvestmentCategoryConnection>;
|
|
169524
169800
|
rateCardAttributeTypes?: Maybe<Array<Maybe<MercuryRateCardAttributeType>>>;
|
|
169525
169801
|
rateCardAttributeTypesByIds?: Maybe<Array<Maybe<MercuryRateCardAttributeType>>>;
|
|
169526
|
-
rateCardConfiguration?: Maybe<MercuryRateCardConfiguration>;
|
|
169527
169802
|
rateCardsSearch?: Maybe<MercuryRateCardConnection>;
|
|
169528
169803
|
searchBenefitItemActivityHistory?: Maybe<MercuryBenefitItemActivityHistoryConnection>;
|
|
169529
169804
|
searchCostItemActivityHistory?: Maybe<MercuryCostItemActivityHistoryConnection>;
|
|
@@ -169605,6 +169880,9 @@ export type MercuryFundsQueryApiCostTypesByIdsArgs = {
|
|
|
169605
169880
|
export type MercuryFundsQueryApiCurrenciesArgs = {
|
|
169606
169881
|
cloudId?: InputMaybe<Scalars['ID']['input']>;
|
|
169607
169882
|
};
|
|
169883
|
+
export type MercuryFundsQueryApiDefaultRateCardArgs = {
|
|
169884
|
+
cloudId: Scalars['ID']['input'];
|
|
169885
|
+
};
|
|
169608
169886
|
export type MercuryFundsQueryApiExpenditureTypesArgs = {
|
|
169609
169887
|
cloudId?: InputMaybe<Scalars['ID']['input']>;
|
|
169610
169888
|
};
|
|
@@ -169679,9 +169957,6 @@ export type MercuryFundsQueryApiRateCardAttributeTypesByIdsArgs = {
|
|
|
169679
169957
|
cloudId: Scalars['ID']['input'];
|
|
169680
169958
|
ids: Array<Scalars['ID']['input']>;
|
|
169681
169959
|
};
|
|
169682
|
-
export type MercuryFundsQueryApiRateCardConfigurationArgs = {
|
|
169683
|
-
cloudId: Scalars['ID']['input'];
|
|
169684
|
-
};
|
|
169685
169960
|
export type MercuryFundsQueryApiRateCardsSearchArgs = {
|
|
169686
169961
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
169687
169962
|
cloudId: Scalars['ID']['input'];
|
|
@@ -172685,11 +172960,14 @@ export declare enum MercuryRankingGroupType {
|
|
|
172685
172960
|
export type MercuryRateCard = {
|
|
172686
172961
|
__typename?: 'MercuryRateCard';
|
|
172687
172962
|
attributeValues?: Maybe<Array<Maybe<MercuryRateCardAttributeValue>>>;
|
|
172688
|
-
|
|
172963
|
+
changes?: Maybe<MercuryRateCardChangeConnection>;
|
|
172689
172964
|
externalId?: Maybe<Scalars['String']['output']>;
|
|
172690
172965
|
id: Scalars['ID']['output'];
|
|
172691
|
-
|
|
172692
|
-
|
|
172966
|
+
};
|
|
172967
|
+
export type MercuryRateCardChangesArgs = {
|
|
172968
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
172969
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
172970
|
+
sort?: InputMaybe<Array<InputMaybe<MercuryRateCardChangeSort>>>;
|
|
172693
172971
|
};
|
|
172694
172972
|
export type MercuryRateCardAttribute = {
|
|
172695
172973
|
__typename?: 'MercuryRateCardAttribute';
|
|
@@ -172708,17 +172986,43 @@ export type MercuryRateCardAttributeValue = MercuryRateCardOrganizationAttribute
|
|
|
172708
172986
|
export type MercuryRateCardAttributeValueInput = {
|
|
172709
172987
|
attributeId: Scalars['ID']['input'];
|
|
172710
172988
|
attributeValue?: InputMaybe<Scalars['String']['input']>;
|
|
172711
|
-
id: Scalars['ID']['input'];
|
|
172712
172989
|
};
|
|
172713
172990
|
export type MercuryRateCardAttributeValueInterface = {
|
|
172714
172991
|
attribute?: Maybe<MercuryRateCardAttribute>;
|
|
172715
172992
|
id: Scalars['ID']['output'];
|
|
172716
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
|
+
}
|
|
172717
173021
|
export type MercuryRateCardConfiguration = {
|
|
172718
173022
|
__typename?: 'MercuryRateCardConfiguration';
|
|
172719
173023
|
defaultRateCard?: Maybe<MercuryRateCard>;
|
|
172720
173024
|
id: Scalars['ID']['output'];
|
|
172721
|
-
ratePeriod?: Maybe<
|
|
173025
|
+
ratePeriod?: Maybe<MercuryRatePeriodType>;
|
|
172722
173026
|
};
|
|
172723
173027
|
export type MercuryRateCardConnection = {
|
|
172724
173028
|
__typename?: 'MercuryRateCardConnection';
|
|
@@ -172737,8 +173041,8 @@ export type MercuryRateCardOrganizationAttributeValue = MercuryRateCardAttribute
|
|
|
172737
173041
|
id: Scalars['ID']['output'];
|
|
172738
173042
|
organization?: Maybe<MercuryOrganization>;
|
|
172739
173043
|
};
|
|
172740
|
-
export type
|
|
172741
|
-
__typename?: '
|
|
173044
|
+
export type MercuryRatePeriodType = {
|
|
173045
|
+
__typename?: 'MercuryRatePeriodType';
|
|
172742
173046
|
displayName: Scalars['String']['output'];
|
|
172743
173047
|
id: Scalars['ID']['output'];
|
|
172744
173048
|
key: Scalars['String']['output'];
|
|
@@ -174900,16 +175204,13 @@ export type MercuryUpdateRateCardConfigurationPayload = Payload & {
|
|
|
174900
175204
|
success: Scalars['Boolean']['output'];
|
|
174901
175205
|
updatedRateCardConfiguration?: Maybe<MercuryRateCardConfiguration>;
|
|
174902
175206
|
};
|
|
174903
|
-
export type MercuryUpdateRateCardConfigurationRatePeriodInput = {
|
|
174904
|
-
cloudId: Scalars['ID']['input'];
|
|
174905
|
-
ratePeriodKey: Scalars['String']['input'];
|
|
174906
|
-
};
|
|
174907
175207
|
export type MercuryUpdateRateCardInput = {
|
|
174908
175208
|
cloudId: Scalars['ID']['input'];
|
|
174909
175209
|
effectiveStartDate?: InputMaybe<Scalars['Date']['input']>;
|
|
174910
175210
|
externalId?: InputMaybe<Scalars['String']['input']>;
|
|
174911
175211
|
id: Scalars['ID']['input'];
|
|
174912
175212
|
rate?: InputMaybe<Scalars['String']['input']>;
|
|
175213
|
+
ratePeriodTypeId?: InputMaybe<Scalars['ID']['input']>;
|
|
174913
175214
|
workingHoursPerWeek?: InputMaybe<Scalars['Int']['input']>;
|
|
174914
175215
|
};
|
|
174915
175216
|
export type MercuryUpdateRateCardPayload = Payload & {
|
|
@@ -175642,6 +175943,7 @@ export type Mutation = {
|
|
|
175642
175943
|
addLabels?: Maybe<AddLabelsPayload>;
|
|
175643
175944
|
addPublicLinkPermissions?: Maybe<AddPublicLinkPermissionsPayload>;
|
|
175644
175945
|
addReaction?: Maybe<SaveReactionResponse>;
|
|
175946
|
+
admin_activateOrgForUnits?: Maybe<AdminActivateOrgForUnitsPayload>;
|
|
175645
175947
|
admin_activateUser?: Maybe<AdminActiveUserResponsePayload>;
|
|
175646
175948
|
admin_addConnector?: Maybe<AdminAddConnectorPayload>;
|
|
175647
175949
|
admin_assignRole?: Maybe<AdminAssignRoleResponsePayload>;
|
|
@@ -176481,6 +176783,7 @@ export type Mutation = {
|
|
|
176481
176783
|
graphInference_inferenceAppEdit?: Maybe<GraphInferenceInferenceAppMutationPayload>;
|
|
176482
176784
|
graphInference_inferenceAppEditV2?: Maybe<GraphInferenceInferenceAppMutationPayloadV2>;
|
|
176483
176785
|
graphInference_inferenceAppEditV3?: Maybe<GraphInferenceInferenceAppMutationPayloadV3>;
|
|
176786
|
+
graphInference_inferenceEval?: Maybe<GraphInferenceInferenceEvalResponse>;
|
|
176484
176787
|
graphIntegration_actionAdminManagementUpdateActionConfiguration?: Maybe<GraphIntegrationActionAdminManagementUpdateActionConfigurationPayload>;
|
|
176485
176788
|
graphIntegration_addTwgCapabilityContainer?: Maybe<GraphIntegrationAddTwgCapabilityContainerPayload>;
|
|
176486
176789
|
graphIntegration_createDataConnectorConnection?: Maybe<GraphIntegrationCreateConnectionPayload>;
|
|
@@ -176910,6 +177213,7 @@ export type Mutation = {
|
|
|
176910
177213
|
kitsune_createCustomer?: Maybe<KitsuneCustomer>;
|
|
176911
177214
|
kitsune_createCustomerField?: Maybe<KitsuneCustomerCustomField>;
|
|
176912
177215
|
kitsune_createFeedback?: Maybe<KitsuneFeedback>;
|
|
177216
|
+
kitsune_createFeedbackV2?: Maybe<KitsuneCreateFeedbackPayload>;
|
|
176913
177217
|
kitsune_createField?: Maybe<KitsuneField>;
|
|
176914
177218
|
kitsune_createFieldV2?: Maybe<KitsuneCreateFieldPayload>;
|
|
176915
177219
|
kitsune_createInsight?: Maybe<KitsuneInsight>;
|
|
@@ -176921,10 +177225,12 @@ export type Mutation = {
|
|
|
176921
177225
|
kitsune_createSnippet?: Maybe<KitsuneSnippet>;
|
|
176922
177226
|
kitsune_createSnippetV2?: Maybe<KitsuneCreateSnippetPayload>;
|
|
176923
177227
|
kitsune_createSpace?: Maybe<KitsuneSpace>;
|
|
177228
|
+
kitsune_createSpaceV2?: Maybe<KitsuneCreateSpacePayload>;
|
|
176924
177229
|
kitsune_createView?: Maybe<KitsuneView>;
|
|
176925
177230
|
kitsune_createViewV2?: Maybe<KitsuneViewPayload>;
|
|
176926
177231
|
kitsune_exportFeedbackFromView?: Maybe<KitsuneJob>;
|
|
176927
177232
|
kitsune_generateFeedbackSummary?: Maybe<KitsuneFeedback>;
|
|
177233
|
+
kitsune_generateFeedbackSummaryV2?: Maybe<KitsuneGenerateFeedbackSummaryPayload>;
|
|
176928
177234
|
kitsune_generateInsightSummary?: Maybe<KitsuneInsight>;
|
|
176929
177235
|
kitsune_generateInsightSummaryV2?: Maybe<KitsuneGenerateInsightSummaryPayload>;
|
|
176930
177236
|
kitsune_inviteToSpace?: Maybe<KitsuneInviteToSpacePayload>;
|
|
@@ -176940,6 +177246,7 @@ export type Mutation = {
|
|
|
176940
177246
|
kitsune_removeCustomer?: Maybe<KitsuneDeletedRecord>;
|
|
176941
177247
|
kitsune_removeCustomerField?: Maybe<KitsuneDeletedRecord>;
|
|
176942
177248
|
kitsune_removeFeedback?: Maybe<KitsuneDeletedRecord>;
|
|
177249
|
+
kitsune_removeFeedbackV2?: Maybe<KitsuneDeletedPayload>;
|
|
176943
177250
|
kitsune_removeField?: Maybe<KitsuneDeletedRecord>;
|
|
176944
177251
|
kitsune_removeFieldV2?: Maybe<KitsuneDeletedPayload>;
|
|
176945
177252
|
kitsune_removeFieldValue?: Maybe<KitsuneDeletedRecord>;
|
|
@@ -176954,9 +177261,11 @@ export type Mutation = {
|
|
|
176954
177261
|
kitsune_removeSnippet?: Maybe<KitsuneDeletedRecord>;
|
|
176955
177262
|
kitsune_removeSnippetV2?: Maybe<KitsuneDeletedPayload>;
|
|
176956
177263
|
kitsune_removeSpace?: Maybe<KitsuneJob>;
|
|
177264
|
+
kitsune_removeSpaceV2?: Maybe<KitsuneRemoveSpacePayload>;
|
|
176957
177265
|
kitsune_removeView?: Maybe<KitsuneDeletedRecord>;
|
|
176958
177266
|
kitsune_removeViewV2?: Maybe<KitsuneDeleteViewPayload>;
|
|
176959
177267
|
kitsune_resyncFeedback?: Maybe<KitsuneJob>;
|
|
177268
|
+
kitsune_resyncFeedbackV2?: Maybe<KitsuneResyncFeedbackPayload>;
|
|
176960
177269
|
kitsune_resyncInsights?: Maybe<KitsuneJob>;
|
|
176961
177270
|
kitsune_resyncInsightsV2?: Maybe<KitsuneResyncInsightsPayload>;
|
|
176962
177271
|
kitsune_syncCsmProperties?: Maybe<KitsuneJob>;
|
|
@@ -176966,6 +177275,7 @@ export type Mutation = {
|
|
|
176966
177275
|
kitsune_updateCustomer?: Maybe<KitsuneCustomer>;
|
|
176967
177276
|
kitsune_updateCustomerField?: Maybe<KitsuneCustomerCustomField>;
|
|
176968
177277
|
kitsune_updateFeedback?: Maybe<KitsuneFeedback>;
|
|
177278
|
+
kitsune_updateFeedbackV2?: Maybe<KitsuneUpdateFeedbackPayload>;
|
|
176969
177279
|
kitsune_updateField?: Maybe<KitsuneField>;
|
|
176970
177280
|
kitsune_updateFieldV2?: Maybe<KitsuneUpdateFieldPayload>;
|
|
176971
177281
|
kitsune_updateInsight?: Maybe<KitsuneInsight>;
|
|
@@ -176977,6 +177287,7 @@ export type Mutation = {
|
|
|
176977
177287
|
kitsune_updateSnippet?: Maybe<KitsuneSnippet>;
|
|
176978
177288
|
kitsune_updateSnippetV2?: Maybe<KitsuneUpdateSnippetPayload>;
|
|
176979
177289
|
kitsune_updateSpace?: Maybe<KitsuneSpace>;
|
|
177290
|
+
kitsune_updateSpaceV2?: Maybe<KitsuneUpdateSpacePayload>;
|
|
176980
177291
|
kitsune_updateView?: Maybe<KitsuneView>;
|
|
176981
177292
|
kitsune_updateViewV2?: Maybe<KitsuneViewPayload>;
|
|
176982
177293
|
knowledgeBase?: Maybe<KnowledgeBaseMutationApi>;
|
|
@@ -177163,6 +177474,7 @@ export type Mutation = {
|
|
|
177163
177474
|
radar_createRoleAssignment?: Maybe<RadarMutationResponse>;
|
|
177164
177475
|
radar_createSkill?: Maybe<RadarSkill>;
|
|
177165
177476
|
radar_deleteAiConnectors?: Maybe<RadarMutationResponse>;
|
|
177477
|
+
radar_deleteAllAiConnectors?: Maybe<RadarDeleteAllAiConnectorsResponse>;
|
|
177166
177478
|
radar_deleteConnector?: Maybe<RadarMutationResponse>;
|
|
177167
177479
|
radar_deleteCustomFieldDefinitions?: Maybe<RadarDeleteCustomFieldDefinitionsMutationResponse>;
|
|
177168
177480
|
radar_deleteCustomFields?: Maybe<RadarMutationResponse>;
|
|
@@ -177479,6 +177791,9 @@ export type MutationAddReactionArgs = {
|
|
|
177479
177791
|
contentType: GraphQlReactionContentType;
|
|
177480
177792
|
emojiId: Scalars['String']['input'];
|
|
177481
177793
|
};
|
|
177794
|
+
export type MutationAdmin_ActivateOrgForUnitsArgs = {
|
|
177795
|
+
input: AdminActivateOrgForUnitsInput;
|
|
177796
|
+
};
|
|
177482
177797
|
export type MutationAdmin_ActivateUserArgs = {
|
|
177483
177798
|
input: AdminActivateUserInput;
|
|
177484
177799
|
};
|
|
@@ -178030,6 +178345,9 @@ export type MutationArchiveSpaceArgs = {
|
|
|
178030
178345
|
export type MutationArtifact_CreateArtifactArgs = {
|
|
178031
178346
|
input: ArtifactCreateInput;
|
|
178032
178347
|
};
|
|
178348
|
+
export type MutationArtifact_CreateContentArgs = {
|
|
178349
|
+
input: ArtifactCreateContentInput;
|
|
178350
|
+
};
|
|
178033
178351
|
export type MutationAssetsDm_AddDataDictionaryArgs = {
|
|
178034
178352
|
cloudId: Scalars['ID']['input'];
|
|
178035
178353
|
payload: AssetsDmAddDataDictionaryInput;
|
|
@@ -179464,6 +179782,7 @@ export type MutationConvoAi_CancelConversationArgs = {
|
|
|
179464
179782
|
export type MutationConvoAi_CompleteConversationArgs = {
|
|
179465
179783
|
cloudId: Scalars['ID']['input'];
|
|
179466
179784
|
conversationId: Scalars['ID']['input'];
|
|
179785
|
+
projectId?: InputMaybe<Scalars['ID']['input']>;
|
|
179467
179786
|
};
|
|
179468
179787
|
export type MutationConvoAi_DeleteAgentSessionArgs = {
|
|
179469
179788
|
agentSessionId: Scalars['ID']['input'];
|
|
@@ -180563,6 +180882,9 @@ export type MutationGraphInference_InferenceAppEditV2Args = {
|
|
|
180563
180882
|
export type MutationGraphInference_InferenceAppEditV3Args = {
|
|
180564
180883
|
input: GraphInferenceInferenceAppEditV3Input;
|
|
180565
180884
|
};
|
|
180885
|
+
export type MutationGraphInference_InferenceEvalArgs = {
|
|
180886
|
+
input: GraphInferenceInferenceEvalInput;
|
|
180887
|
+
};
|
|
180566
180888
|
export type MutationGraphIntegration_ActionAdminManagementUpdateActionConfigurationArgs = {
|
|
180567
180889
|
input: GraphIntegrationActionAdminManagementUpdateActionConfigurationInput;
|
|
180568
180890
|
};
|
|
@@ -181949,6 +182271,9 @@ export type MutationKitsune_CreateFeedbackArgs = {
|
|
|
181949
182271
|
spaceAri: Scalars['ID']['input'];
|
|
181950
182272
|
title?: InputMaybe<Scalars['String']['input']>;
|
|
181951
182273
|
};
|
|
182274
|
+
export type MutationKitsune_CreateFeedbackV2Args = {
|
|
182275
|
+
input: KitsuneCreateFeedbackInput;
|
|
182276
|
+
};
|
|
181952
182277
|
export type MutationKitsune_CreateFieldArgs = {
|
|
181953
182278
|
description?: InputMaybe<Scalars['String']['input']>;
|
|
181954
182279
|
entityTypes: Array<KitsuneEntityType>;
|
|
@@ -182006,6 +182331,9 @@ export type MutationKitsune_CreateSpaceArgs = {
|
|
|
182006
182331
|
name: Scalars['String']['input'];
|
|
182007
182332
|
workspaceAri: Scalars['ID']['input'];
|
|
182008
182333
|
};
|
|
182334
|
+
export type MutationKitsune_CreateSpaceV2Args = {
|
|
182335
|
+
input: KitsuneCreateSpaceInput;
|
|
182336
|
+
};
|
|
182009
182337
|
export type MutationKitsune_CreateViewArgs = {
|
|
182010
182338
|
config?: InputMaybe<KitsuneViewConfigInput>;
|
|
182011
182339
|
description?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -182026,6 +182354,9 @@ export type MutationKitsune_ExportFeedbackFromViewArgs = {
|
|
|
182026
182354
|
export type MutationKitsune_GenerateFeedbackSummaryArgs = {
|
|
182027
182355
|
id: Scalars['ID']['input'];
|
|
182028
182356
|
};
|
|
182357
|
+
export type MutationKitsune_GenerateFeedbackSummaryV2Args = {
|
|
182358
|
+
input: KitsuneGenerateFeedbackSummaryInput;
|
|
182359
|
+
};
|
|
182029
182360
|
export type MutationKitsune_GenerateInsightSummaryArgs = {
|
|
182030
182361
|
insightAri: Scalars['ID']['input'];
|
|
182031
182362
|
};
|
|
@@ -182079,6 +182410,9 @@ export type MutationKitsune_RemoveCustomerFieldArgs = {
|
|
|
182079
182410
|
export type MutationKitsune_RemoveFeedbackArgs = {
|
|
182080
182411
|
id: Scalars['ID']['input'];
|
|
182081
182412
|
};
|
|
182413
|
+
export type MutationKitsune_RemoveFeedbackV2Args = {
|
|
182414
|
+
id: Scalars['ID']['input'];
|
|
182415
|
+
};
|
|
182082
182416
|
export type MutationKitsune_RemoveFieldArgs = {
|
|
182083
182417
|
id: Scalars['ID']['input'];
|
|
182084
182418
|
};
|
|
@@ -182124,6 +182458,9 @@ export type MutationKitsune_RemoveSnippetV2Args = {
|
|
|
182124
182458
|
export type MutationKitsune_RemoveSpaceArgs = {
|
|
182125
182459
|
id: Scalars['ID']['input'];
|
|
182126
182460
|
};
|
|
182461
|
+
export type MutationKitsune_RemoveSpaceV2Args = {
|
|
182462
|
+
id: Scalars['ID']['input'];
|
|
182463
|
+
};
|
|
182127
182464
|
export type MutationKitsune_RemoveViewArgs = {
|
|
182128
182465
|
viewAri: Scalars['ID']['input'];
|
|
182129
182466
|
};
|
|
@@ -182135,6 +182472,9 @@ export type MutationKitsune_ResyncFeedbackArgs = {
|
|
|
182135
182472
|
rebuildEmbeddings?: InputMaybe<Scalars['Boolean']['input']>;
|
|
182136
182473
|
workspaceAri: Scalars['ID']['input'];
|
|
182137
182474
|
};
|
|
182475
|
+
export type MutationKitsune_ResyncFeedbackV2Args = {
|
|
182476
|
+
input: KitsuneResyncFeedbackInput;
|
|
182477
|
+
};
|
|
182138
182478
|
export type MutationKitsune_ResyncInsightsArgs = {
|
|
182139
182479
|
workspaceAri: Scalars['ID']['input'];
|
|
182140
182480
|
};
|
|
@@ -182175,6 +182515,10 @@ export type MutationKitsune_UpdateFeedbackArgs = {
|
|
|
182175
182515
|
title?: InputMaybe<Scalars['String']['input']>;
|
|
182176
182516
|
values?: InputMaybe<Array<KitsuneFeedbackValueInput>>;
|
|
182177
182517
|
};
|
|
182518
|
+
export type MutationKitsune_UpdateFeedbackV2Args = {
|
|
182519
|
+
id: Scalars['ID']['input'];
|
|
182520
|
+
input: KitsuneUpdateFeedbackInput;
|
|
182521
|
+
};
|
|
182178
182522
|
export type MutationKitsune_UpdateFieldArgs = {
|
|
182179
182523
|
aiEnabled?: InputMaybe<Scalars['Boolean']['input']>;
|
|
182180
182524
|
description?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -182239,6 +182583,10 @@ export type MutationKitsune_UpdateSpaceArgs = {
|
|
|
182239
182583
|
id: Scalars['ID']['input'];
|
|
182240
182584
|
name?: InputMaybe<Scalars['String']['input']>;
|
|
182241
182585
|
};
|
|
182586
|
+
export type MutationKitsune_UpdateSpaceV2Args = {
|
|
182587
|
+
id: Scalars['ID']['input'];
|
|
182588
|
+
input: KitsuneUpdateSpaceInput;
|
|
182589
|
+
};
|
|
182242
182590
|
export type MutationKitsune_UpdateViewArgs = {
|
|
182243
182591
|
config?: InputMaybe<KitsuneViewConfigInput>;
|
|
182244
182592
|
description?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -182777,6 +183125,9 @@ export type MutationRadar_DeleteAiConnectorsArgs = {
|
|
|
182777
183125
|
cloudId: Scalars['ID']['input'];
|
|
182778
183126
|
input: RadarDeleteAiConnectorsInput;
|
|
182779
183127
|
};
|
|
183128
|
+
export type MutationRadar_DeleteAllAiConnectorsArgs = {
|
|
183129
|
+
cloudId: Scalars['ID']['input'];
|
|
183130
|
+
};
|
|
182780
183131
|
export type MutationRadar_DeleteConnectorArgs = {
|
|
182781
183132
|
cloudId: Scalars['ID']['input'];
|
|
182782
183133
|
input: RadarDeleteConnectorInput;
|
|
@@ -186439,8 +186790,8 @@ export declare enum PsmDeviceHealthStatus {
|
|
|
186439
186790
|
Excellent = "EXCELLENT",
|
|
186440
186791
|
Fair = "FAIR",
|
|
186441
186792
|
Good = "GOOD",
|
|
186442
|
-
|
|
186443
|
-
|
|
186793
|
+
NotReporting = "NOT_REPORTING",
|
|
186794
|
+
Poor = "POOR"
|
|
186444
186795
|
}
|
|
186445
186796
|
export type PsmDeviceIdentity = {
|
|
186446
186797
|
__typename?: 'PsmDeviceIdentity';
|
|
@@ -186472,6 +186823,9 @@ export declare enum PsmDeviceStatus {
|
|
|
186472
186823
|
Orphan = "ORPHAN",
|
|
186473
186824
|
Unmapped = "UNMAPPED"
|
|
186474
186825
|
}
|
|
186826
|
+
export type PsmDevicesFilter = {
|
|
186827
|
+
healthStatuses?: InputMaybe<Array<PsmDeviceHealthStatus>>;
|
|
186828
|
+
};
|
|
186475
186829
|
export type PsmEligibleUser = {
|
|
186476
186830
|
__typename?: 'PsmEligibleUser';
|
|
186477
186831
|
atlassianAccountId: Scalars['ID']['output'];
|
|
@@ -186487,6 +186841,30 @@ export type PsmEligibleUsersListResult = {
|
|
|
186487
186841
|
errors?: Maybe<Array<QueryError>>;
|
|
186488
186842
|
users?: Maybe<Array<PsmEligibleUser>>;
|
|
186489
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
|
+
}
|
|
186490
186868
|
export type PsmFinishOnboardTenantInput = {
|
|
186491
186869
|
spaceId: Scalars['ID']['input'];
|
|
186492
186870
|
};
|
|
@@ -186606,6 +186984,12 @@ export type PsmRemediationTriggerSummary = {
|
|
|
186606
186984
|
offline?: Maybe<Array<Scalars['String']['output']>>;
|
|
186607
186985
|
queued?: Maybe<Array<Scalars['String']['output']>>;
|
|
186608
186986
|
};
|
|
186987
|
+
export type PsmScreenFilterResult = {
|
|
186988
|
+
__typename?: 'PsmScreenFilterResult';
|
|
186989
|
+
errors?: Maybe<Array<QueryError>>;
|
|
186990
|
+
filters?: Maybe<Array<PsmFilter>>;
|
|
186991
|
+
screen: PsmFilterScreen;
|
|
186992
|
+
};
|
|
186609
186993
|
export type PsmSensorCategoriesInput = {
|
|
186610
186994
|
spaceId: Scalars['ID']['input'];
|
|
186611
186995
|
};
|
|
@@ -186635,6 +187019,7 @@ export type PsmSensorConfigDetails = {
|
|
|
186635
187019
|
name?: Maybe<Scalars['String']['output']>;
|
|
186636
187020
|
remediationDesc?: Maybe<Scalars['String']['output']>;
|
|
186637
187021
|
remediationFrequency?: Maybe<Scalars['String']['output']>;
|
|
187022
|
+
remediationId?: Maybe<Scalars['ID']['output']>;
|
|
186638
187023
|
remediationType?: Maybe<PsmSensorRemediationType>;
|
|
186639
187024
|
sensorId?: Maybe<Scalars['String']['output']>;
|
|
186640
187025
|
triggerCondition?: Maybe<Scalars['String']['output']>;
|
|
@@ -187259,7 +187644,6 @@ export type Query = {
|
|
|
187259
187644
|
agentWorkspace_skillCategoriesInProject?: Maybe<AgentWorkspaceProjectSkillCategoryConnection>;
|
|
187260
187645
|
agentWorkspace_skills?: Maybe<AgentWorkspaceSkillConnection>;
|
|
187261
187646
|
agentWorkspace_skillsInCategory?: Maybe<AgentWorkspaceSkillConnection>;
|
|
187262
|
-
agentWorkspace_smartRoutingConfig?: Maybe<AgentWorkspaceSmartRoutingConfig>;
|
|
187263
187647
|
agentWorkspace_smartRoutingDryRun?: Maybe<AgentWorkspaceSmartRoutingDryRun>;
|
|
187264
187648
|
agentWorkspace_smartRoutingDryRunTickets?: Maybe<AgentWorkspaceSmartRoutingDryRunTicketsPayload>;
|
|
187265
187649
|
agentWorkspace_teamCapacities?: Maybe<Array<AgentWorkspaceTeamCapacity>>;
|
|
@@ -187272,7 +187656,7 @@ export type Query = {
|
|
|
187272
187656
|
agentWorkspace_utilizationForPendingChanges?: Maybe<Array<AgentWorkspaceAgentUtilizationForPendingChanges>>;
|
|
187273
187657
|
agentWorkspace_wfoSummaryView?: Maybe<AgentWorkspaceWfoSummaryViewResult>;
|
|
187274
187658
|
agentWorkspace_wfoSummaryViewByProjectKey?: Maybe<AgentWorkspaceWfoSummaryViewByProjectKeyResult>;
|
|
187275
|
-
agentWorkspace_workforceTeamAccessLevels?: Maybe<
|
|
187659
|
+
agentWorkspace_workforceTeamAccessLevels?: Maybe<AgentWorkspaceWorkforceTeamAccessLevelsPayload>;
|
|
187276
187660
|
agentWorkspace_workloadJqlConfig?: Maybe<AgentWorkspaceWorkloadJqlConfig>;
|
|
187277
187661
|
agent_sessionAssociationQuery?: Maybe<AgentSessionAssociationConnection>;
|
|
187278
187662
|
agent_sessionQuery?: Maybe<AgentSessionConnection>;
|
|
@@ -188083,6 +188467,7 @@ export type Query = {
|
|
|
188083
188467
|
graphIntegration_mcpServers?: Maybe<Array<Maybe<GraphIntegrationMcpServerNode>>>;
|
|
188084
188468
|
graphIntegration_mcpTools?: Maybe<Array<Maybe<GraphIntegrationMcpToolNode>>>;
|
|
188085
188469
|
graphIntegration_rbacRecords?: Maybe<Array<GraphIntegrationRbacRecord>>;
|
|
188470
|
+
graphIntegration_resolveSkillCloneLink?: Maybe<GraphIntegrationResolveSkillCloneLinkPayload>;
|
|
188086
188471
|
graphIntegration_skill?: Maybe<GraphIntegrationSkill>;
|
|
188087
188472
|
graphIntegration_skillDimensionMetadata?: Maybe<GraphIntegrationSkillDimensionMetadata>;
|
|
188088
188473
|
graphIntegration_skillItems?: Maybe<Array<Maybe<GraphIntegrationSkillItem>>>;
|
|
@@ -188256,6 +188641,8 @@ export type Query = {
|
|
|
188256
188641
|
graphStoreV2_atlassianUserHasConfluenceMeetingNotesFolderInverse?: Maybe<GraphStoreV2SimplifiedAtlassianUserHasConfluenceMeetingNotesFolderInverseConnection>;
|
|
188257
188642
|
graphStoreV2_atlassianUserHasExternalPosition?: Maybe<GraphStoreV2SimplifiedAtlassianUserHasExternalPositionConnection>;
|
|
188258
188643
|
graphStoreV2_atlassianUserHasExternalPositionInverse?: Maybe<GraphStoreV2SimplifiedAtlassianUserHasExternalPositionInverseConnection>;
|
|
188644
|
+
graphStoreV2_atlassianUserHasPendingApprovalOnJiraWorkItem?: Maybe<GraphStoreV2SimplifiedAtlassianUserHasPendingApprovalOnJiraWorkItemConnection>;
|
|
188645
|
+
graphStoreV2_atlassianUserHasPendingApprovalOnJiraWorkItemInverse?: Maybe<GraphStoreV2SimplifiedAtlassianUserHasPendingApprovalOnJiraWorkItemInverseConnection>;
|
|
188259
188646
|
graphStoreV2_atlassianUserHasRelevantJiraSpace?: Maybe<GraphStoreV2SimplifiedAtlassianUserHasRelevantJiraSpaceConnection>;
|
|
188260
188647
|
graphStoreV2_atlassianUserHasRelevantJiraSpaceInverse?: Maybe<GraphStoreV2SimplifiedAtlassianUserHasRelevantJiraSpaceInverseConnection>;
|
|
188261
188648
|
graphStoreV2_atlassianUserInvitedToLoomMeeting?: Maybe<GraphStoreV2SimplifiedAtlassianUserInvitedToLoomMeetingConnection>;
|
|
@@ -189106,6 +189493,8 @@ export type Query = {
|
|
|
189106
189493
|
graphStore_atlassianUserDismissedJiraForYouRecommendationEntityInverseBatch?: Maybe<GraphStoreBatchAtlassianUserDismissedJiraForYouRecommendationEntityConnection>;
|
|
189107
189494
|
graphStore_atlassianUserFollowsAtlassianHomeTag?: Maybe<GraphStoreSimplifiedAtlassianUserFollowsAtlassianHomeTagConnection>;
|
|
189108
189495
|
graphStore_atlassianUserFollowsAtlassianHomeTagInverse?: Maybe<GraphStoreSimplifiedAtlassianUserFollowsAtlassianHomeTagInverseConnection>;
|
|
189496
|
+
graphStore_atlassianUserHasPendingApprovalOnJiraWorkItem?: Maybe<GraphStoreSimplifiedAtlassianUserHasPendingApprovalOnJiraWorkItemConnection>;
|
|
189497
|
+
graphStore_atlassianUserHasPendingApprovalOnJiraWorkItemInverse?: Maybe<GraphStoreSimplifiedAtlassianUserHasPendingApprovalOnJiraWorkItemInverseConnection>;
|
|
189109
189498
|
graphStore_atlassianUserInvitedToLoomMeeting?: Maybe<GraphStoreSimplifiedAtlassianUserInvitedToLoomMeetingConnection>;
|
|
189110
189499
|
graphStore_atlassianUserInvitedToLoomMeetingBatch?: Maybe<GraphStoreBatchAtlassianUserInvitedToLoomMeetingConnection>;
|
|
189111
189500
|
graphStore_atlassianUserInvitedToLoomMeetingInverse?: Maybe<GraphStoreSimplifiedAtlassianUserInvitedToLoomMeetingInverseConnection>;
|
|
@@ -190357,6 +190746,7 @@ export type Query = {
|
|
|
190357
190746
|
jira_projectLevelSidebarMenuCustomization?: Maybe<JiraProjectLevelSidebarMenuCustomizationResult>;
|
|
190358
190747
|
jira_projectTypesByIds?: Maybe<Array<Maybe<JiraProjectTypeDetails>>>;
|
|
190359
190748
|
jira_projectsSidebarMenu?: Maybe<JiraProjectsSidebarMenu>;
|
|
190749
|
+
jira_releaseDriversForProject?: Maybe<JiraVersionDriverOptionConnection>;
|
|
190360
190750
|
jira_rovoEnablementStatus?: Maybe<JiraRovoEnablementStatus>;
|
|
190361
190751
|
jira_sprintField?: Maybe<JiraJqlField>;
|
|
190362
190752
|
jira_subtaskCreationAdditionalServices?: Maybe<JiraIssueCreateAdditionalServicesResult>;
|
|
@@ -190663,6 +191053,7 @@ export type Query = {
|
|
|
190663
191053
|
psm_device?: Maybe<PsmDevice>;
|
|
190664
191054
|
psm_devices?: Maybe<PsmDeviceConnection>;
|
|
190665
191055
|
psm_eligibleUsersList?: Maybe<PsmEligibleUsersListResult>;
|
|
191056
|
+
psm_filters?: Maybe<PsmScreenFilterResult>;
|
|
190666
191057
|
psm_onboardTenantStatus?: Maybe<PsmOnboardTenantStatusResult>;
|
|
190667
191058
|
psm_sensorCategories?: Maybe<PsmSensorCategoriesResult>;
|
|
190668
191059
|
psm_sensorDetails?: Maybe<PsmSensorConfigResult>;
|
|
@@ -191896,9 +192287,6 @@ export type QueryAgentWorkspace_SkillsInCategoryArgs = {
|
|
|
191896
192287
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
191897
192288
|
query?: InputMaybe<Scalars['String']['input']>;
|
|
191898
192289
|
};
|
|
191899
|
-
export type QueryAgentWorkspace_SmartRoutingConfigArgs = {
|
|
191900
|
-
projectAri: Scalars['ID']['input'];
|
|
191901
|
-
};
|
|
191902
192290
|
export type QueryAgentWorkspace_SmartRoutingDryRunArgs = {
|
|
191903
192291
|
cloudId: Scalars['ID']['input'];
|
|
191904
192292
|
projectKey: Scalars['String']['input'];
|
|
@@ -192250,7 +192638,7 @@ export type QueryAquaOutgoingEmailLogsArgs = {
|
|
|
192250
192638
|
cloudId: Scalars['ID']['input'];
|
|
192251
192639
|
};
|
|
192252
192640
|
export type QueryArtifact_GetArtifactArgs = {
|
|
192253
|
-
|
|
192641
|
+
input: ArtifactGetInput;
|
|
192254
192642
|
};
|
|
192255
192643
|
export type QueryAssetsDm_AdaptersArgs = {
|
|
192256
192644
|
cloudId: Scalars['ID']['input'];
|
|
@@ -195698,6 +196086,9 @@ export type QueryGraphIntegration_RbacRecordsArgs = {
|
|
|
195698
196086
|
resourceAri: Scalars['ID']['input'];
|
|
195699
196087
|
workspaceAri: Scalars['ID']['input'];
|
|
195700
196088
|
};
|
|
196089
|
+
export type QueryGraphIntegration_ResolveSkillCloneLinkArgs = {
|
|
196090
|
+
input: GraphIntegrationResolveSkillCloneLinkInput;
|
|
196091
|
+
};
|
|
195701
196092
|
export type QueryGraphIntegration_SkillArgs = {
|
|
195702
196093
|
contextAri: Scalars['ID']['input'];
|
|
195703
196094
|
resolvePlatformToolNames?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -196879,6 +197270,20 @@ export type QueryGraphStoreV2_AtlassianUserHasExternalPositionInverseArgs = {
|
|
|
196879
197270
|
id: Scalars['ID']['input'];
|
|
196880
197271
|
sort?: InputMaybe<GraphStoreV2AtlassianUserHasExternalPositionSortInput>;
|
|
196881
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
|
+
};
|
|
196882
197287
|
export type QueryGraphStoreV2_AtlassianUserHasRelevantJiraSpaceArgs = {
|
|
196883
197288
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
196884
197289
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -202959,6 +203364,22 @@ export type QueryGraphStore_AtlassianUserFollowsAtlassianHomeTagInverseArgs = {
|
|
|
202959
203364
|
queryContext?: InputMaybe<Scalars['String']['input']>;
|
|
202960
203365
|
sort?: InputMaybe<GraphStoreAtlassianUserFollowsAtlassianHomeTagSortInput>;
|
|
202961
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
|
+
};
|
|
202962
203383
|
export type QueryGraphStore_AtlassianUserInvitedToLoomMeetingArgs = {
|
|
202963
203384
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
202964
203385
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -212185,6 +212606,11 @@ export type QueryJira_ProjectsSidebarMenuArgs = {
|
|
|
212185
212606
|
cloudId: Scalars['ID']['input'];
|
|
212186
212607
|
currentURL?: InputMaybe<Scalars['URL']['input']>;
|
|
212187
212608
|
};
|
|
212609
|
+
export type QueryJira_ReleaseDriversForProjectArgs = {
|
|
212610
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
212611
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
212612
|
+
projectId: Scalars['ID']['input'];
|
|
212613
|
+
};
|
|
212188
212614
|
export type QueryJira_RovoEnablementStatusArgs = {
|
|
212189
212615
|
cloudId: Scalars['ID']['input'];
|
|
212190
212616
|
};
|
|
@@ -213354,6 +213780,7 @@ export type QueryPsm_DeviceArgs = {
|
|
|
213354
213780
|
export type QueryPsm_DevicesArgs = {
|
|
213355
213781
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
213356
213782
|
cloudId: Scalars['ID']['input'];
|
|
213783
|
+
filter?: InputMaybe<PsmDevicesFilter>;
|
|
213357
213784
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
213358
213785
|
spaceId: Scalars['ID']['input'];
|
|
213359
213786
|
};
|
|
@@ -213361,6 +213788,11 @@ export type QueryPsm_EligibleUsersListArgs = {
|
|
|
213361
213788
|
cloudId: Scalars['ID']['input'];
|
|
213362
213789
|
input: PsmEligibleUsersListInput;
|
|
213363
213790
|
};
|
|
213791
|
+
export type QueryPsm_FiltersArgs = {
|
|
213792
|
+
cloudId: Scalars['ID']['input'];
|
|
213793
|
+
screen: PsmFilterScreen;
|
|
213794
|
+
spaceId: Scalars['ID']['input'];
|
|
213795
|
+
};
|
|
213364
213796
|
export type QueryPsm_OnboardTenantStatusArgs = {
|
|
213365
213797
|
cloudId: Scalars['ID']['input'];
|
|
213366
213798
|
input: PsmOnboardTenantStatusInput;
|
|
@@ -214812,6 +215244,11 @@ export type RadarDateFieldValue = {
|
|
|
214812
215244
|
export type RadarDeleteAiConnectorsInput = {
|
|
214813
215245
|
ids: Array<Scalars['ID']['input']>;
|
|
214814
215246
|
};
|
|
215247
|
+
export type RadarDeleteAllAiConnectorsResponse = {
|
|
215248
|
+
__typename?: 'RadarDeleteAllAiConnectorsResponse';
|
|
215249
|
+
deletedConnectorCount: Scalars['Int']['output'];
|
|
215250
|
+
deletedConnectorIds: Array<Scalars['ID']['output']>;
|
|
215251
|
+
};
|
|
214815
215252
|
export type RadarDeleteConnectorInput = {
|
|
214816
215253
|
connectorId: Scalars['ID']['input'];
|
|
214817
215254
|
};
|
|
@@ -224039,6 +224476,7 @@ export declare enum StakeholderCommsComponentSuppressionReason {
|
|
|
224039
224476
|
BelowThreshold = "BELOW_THRESHOLD",
|
|
224040
224477
|
EngineError = "ENGINE_ERROR",
|
|
224041
224478
|
FeatureDisabled = "FEATURE_DISABLED",
|
|
224479
|
+
InvalidInput = "INVALID_INPUT",
|
|
224042
224480
|
NoComponentsConfigured = "NO_COMPONENTS_CONFIGURED"
|
|
224043
224481
|
}
|
|
224044
224482
|
export declare enum StakeholderCommsComponentType {
|
|
@@ -230685,6 +231123,7 @@ export type TownsquareProject = HasMercuryProjectFields & Node & {
|
|
|
230685
231123
|
mercuryProjectStatus?: Maybe<MercuryProjectStatus>;
|
|
230686
231124
|
mercuryProjectType?: Maybe<MercuryProjectType>;
|
|
230687
231125
|
mercuryProjectUrl?: Maybe<Scalars['URL']['output']>;
|
|
231126
|
+
mercuryStartDate?: Maybe<Scalars['DateTime']['output']>;
|
|
230688
231127
|
mercuryTargetDate?: Maybe<Scalars['String']['output']>;
|
|
230689
231128
|
mercuryTargetDateEnd?: Maybe<Scalars['DateTime']['output']>;
|
|
230690
231129
|
mercuryTargetDateStart?: Maybe<Scalars['DateTime']['output']>;
|
|
@@ -232862,6 +233301,26 @@ export type TrelloAdministeredPaidWorkspacesUpdated = {
|
|
|
232862
233301
|
__typename?: 'TrelloAdministeredPaidWorkspacesUpdated';
|
|
232863
233302
|
id: Scalars['ID']['output'];
|
|
232864
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
|
+
};
|
|
232865
233324
|
export type TrelloAgentSessionUpdated = TrelloStatefulSessionUpdated & {
|
|
232866
233325
|
__typename?: 'TrelloAgentSessionUpdated';
|
|
232867
233326
|
_deltas?: Maybe<Array<Scalars['String']['output']>>;
|
|
@@ -232895,12 +233354,13 @@ export declare enum TrelloAgentTaskState {
|
|
|
232895
233354
|
}
|
|
232896
233355
|
export type TrelloAgentTaskStatus = {
|
|
232897
233356
|
__typename?: 'TrelloAgentTaskStatus';
|
|
232898
|
-
message?: Maybe<
|
|
233357
|
+
message?: Maybe<TrelloAgentMessage>;
|
|
232899
233358
|
state: TrelloAgentTaskState;
|
|
232900
233359
|
timestamp: Scalars['DateTime']['output'];
|
|
232901
233360
|
};
|
|
232902
233361
|
export type TrelloAgentTaskUpdated = {
|
|
232903
233362
|
__typename?: 'TrelloAgentTaskUpdated';
|
|
233363
|
+
history?: Maybe<TrelloAgentMessageUpdatedConnection>;
|
|
232904
233364
|
id: Scalars['ID']['output'];
|
|
232905
233365
|
key?: Maybe<Scalars['String']['output']>;
|
|
232906
233366
|
sessionId?: Maybe<Scalars['ID']['output']>;
|
|
@@ -235870,6 +236330,7 @@ export type TrelloInitializeVoiceCaptureSessionInput = {
|
|
|
235870
236330
|
export type TrelloInitializeVoiceCaptureSessionPayload = Payload & {
|
|
235871
236331
|
__typename?: 'TrelloInitializeVoiceCaptureSessionPayload';
|
|
235872
236332
|
errors?: Maybe<Array<MutationError>>;
|
|
236333
|
+
maximumCardLimit?: Maybe<Scalars['Int']['output']>;
|
|
235873
236334
|
objectId?: Maybe<Scalars['ID']['output']>;
|
|
235874
236335
|
sessionId?: Maybe<Scalars['ID']['output']>;
|
|
235875
236336
|
success: Scalars['Boolean']['output'];
|
|
@@ -239775,6 +240236,7 @@ export type TrelloWorkspace = Node & {
|
|
|
239775
240236
|
description?: Maybe<Scalars['String']['output']>;
|
|
239776
240237
|
displayBoardCount?: Maybe<Scalars['Int']['output']>;
|
|
239777
240238
|
displayName?: Maybe<Scalars['String']['output']>;
|
|
240239
|
+
eligibleForTrial?: Maybe<Scalars['Boolean']['output']>;
|
|
239778
240240
|
enterprise?: Maybe<TrelloEnterprise>;
|
|
239779
240241
|
entitlement?: Maybe<CcpEntitlement>;
|
|
239780
240242
|
iconEmoji?: Maybe<Scalars['String']['output']>;
|