@forge/cli-shared 9.4.0-next.9 → 9.4.1-next.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +58 -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 +541 -36
- 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 +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'];
|
|
12298
12312
|
};
|
|
12299
|
-
export
|
|
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'];
|
|
12321
|
+
};
|
|
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']>;
|
|
@@ -40243,6 +40289,26 @@ export type CplsAddWorkScopeAssociationsPayload = Payload & {
|
|
|
40243
40289
|
workDataIds?: Maybe<Array<CplsWorkDataIdEdge>>;
|
|
40244
40290
|
works?: Maybe<Array<CplsWorkEdge>>;
|
|
40245
40291
|
};
|
|
40292
|
+
export type CplsAllocateCapacityInput = {
|
|
40293
|
+
allocations: Array<CplsAllocationInput>;
|
|
40294
|
+
cloudId: Scalars['ID']['input'];
|
|
40295
|
+
contributorDataIds: Array<Scalars['ID']['input']>;
|
|
40296
|
+
workId: Scalars['ID']['input'];
|
|
40297
|
+
};
|
|
40298
|
+
export type CplsAllocateCapacityPayload = Payload & {
|
|
40299
|
+
__typename?: 'CplsAllocateCapacityPayload';
|
|
40300
|
+
contributorContributionAggregations?: Maybe<Array<CplsContributorContributionAggregations>>;
|
|
40301
|
+
contributorWorkAssociations?: Maybe<Array<CplsContributorWorkAssociationNode>>;
|
|
40302
|
+
errors?: Maybe<Array<MutationError>>;
|
|
40303
|
+
success: Scalars['Boolean']['output'];
|
|
40304
|
+
workContributionAggregations?: Maybe<Array<CplsWorkContributionAggregations>>;
|
|
40305
|
+
};
|
|
40306
|
+
export type CplsAllocationInput = {
|
|
40307
|
+
endDate: Scalars['Date']['input'];
|
|
40308
|
+
startDate: Scalars['Date']['input'];
|
|
40309
|
+
value: Scalars['Float']['input'];
|
|
40310
|
+
valueType: CplsContributionValueType;
|
|
40311
|
+
};
|
|
40246
40312
|
export type CplsAtlasProject = {
|
|
40247
40313
|
__typename?: 'CplsAtlasProject';
|
|
40248
40314
|
atlasProject?: Maybe<TownsquareProject>;
|
|
@@ -42775,6 +42841,14 @@ export type CustomerServiceAcceptEscalationPayload = Payload & {
|
|
|
42775
42841
|
errors?: Maybe<Array<MutationError>>;
|
|
42776
42842
|
success: Scalars['Boolean']['output'];
|
|
42777
42843
|
};
|
|
42844
|
+
export type CustomerServiceAccessibleCustomerExperience = {
|
|
42845
|
+
__typename?: 'CustomerServiceAccessibleCustomerExperience';
|
|
42846
|
+
accessControlType: Scalars['String']['output'];
|
|
42847
|
+
helpCenterId: Scalars['ID']['output'];
|
|
42848
|
+
hoistedProjectId?: Maybe<Scalars['ID']['output']>;
|
|
42849
|
+
icon?: Maybe<CustomerServiceBrandingIcon>;
|
|
42850
|
+
name: Scalars['String']['output'];
|
|
42851
|
+
};
|
|
42778
42852
|
export type CustomerServiceAddConversationNoteInput = {
|
|
42779
42853
|
body: Scalars['String']['input'];
|
|
42780
42854
|
};
|
|
@@ -43523,6 +43597,7 @@ export type CustomerServiceHelpCenterMetadataUpsertPayload = {
|
|
|
43523
43597
|
};
|
|
43524
43598
|
export type CustomerServiceIndividual = Node & {
|
|
43525
43599
|
__typename?: 'CustomerServiceIndividual';
|
|
43600
|
+
accessibleCustomerExperiences?: Maybe<Array<CustomerServiceAccessibleCustomerExperience>>;
|
|
43526
43601
|
attributes: Array<CustomerServiceAttributeValue>;
|
|
43527
43602
|
details: CustomerServiceCustomDetailValuesQueryResult;
|
|
43528
43603
|
entitlementList: Array<CustomerServiceEntitlement>;
|
|
@@ -45815,6 +45890,7 @@ export type DevAiAutodevNextWorkstreamSettings = {
|
|
|
45815
45890
|
defaultJiraProjectAri?: Maybe<Scalars['ID']['output']>;
|
|
45816
45891
|
eligibilityCriteria?: Maybe<Scalars['String']['output']>;
|
|
45817
45892
|
notifications?: Maybe<DevAiAutodevNextNotificationSettings>;
|
|
45893
|
+
prNursingEnabled?: Maybe<Scalars['Boolean']['output']>;
|
|
45818
45894
|
pullRequestMessage?: Maybe<Scalars['String']['output']>;
|
|
45819
45895
|
pullRequestPrefix?: Maybe<Scalars['String']['output']>;
|
|
45820
45896
|
scanSchedule?: Maybe<DevAiAutodevNextScanSchedule>;
|
|
@@ -45836,6 +45912,7 @@ export type DevAiAutodevNextWorkstreamSettingsInput = {
|
|
|
45836
45912
|
defaultJiraProjectAri?: InputMaybe<Scalars['ID']['input']>;
|
|
45837
45913
|
eligibilityCriteria?: InputMaybe<Scalars['String']['input']>;
|
|
45838
45914
|
notifications?: InputMaybe<DevAiAutodevNextNotificationSettingsInput>;
|
|
45915
|
+
prNursingEnabled?: InputMaybe<Scalars['Boolean']['input']>;
|
|
45839
45916
|
pullRequestMessage?: InputMaybe<Scalars['String']['input']>;
|
|
45840
45917
|
pullRequestPrefix?: InputMaybe<Scalars['String']['input']>;
|
|
45841
45918
|
scanSchedule?: InputMaybe<DevAiAutodevNextScanScheduleInput>;
|
|
@@ -49254,6 +49331,7 @@ export type EcosystemGlobalInstallationOverrideInput = {
|
|
|
49254
49331
|
export declare enum EcosystemGlobalInstallationOverrideKeys {
|
|
49255
49332
|
AllowCustomMetrics = "ALLOW_CUSTOM_METRICS",
|
|
49256
49333
|
AllowEgressAnalytics = "ALLOW_EGRESS_ANALYTICS",
|
|
49334
|
+
AllowExternalMcp = "ALLOW_EXTERNAL_MCP",
|
|
49257
49335
|
AllowLlmCapability = "ALLOW_LLM_CAPABILITY",
|
|
49258
49336
|
AllowLogsAccess = "ALLOW_LOGS_ACCESS",
|
|
49259
49337
|
AllowPersonalApps = "ALLOW_PERSONAL_APPS",
|
|
@@ -49265,6 +49343,7 @@ export type EcosystemInstallationConfigInput = {
|
|
|
49265
49343
|
export declare enum EcosystemInstallationOverrideKeys {
|
|
49266
49344
|
AllowCustomMetrics = "ALLOW_CUSTOM_METRICS",
|
|
49267
49345
|
AllowEgressAnalytics = "ALLOW_EGRESS_ANALYTICS",
|
|
49346
|
+
AllowExternalMcp = "ALLOW_EXTERNAL_MCP",
|
|
49268
49347
|
AllowLlmCapability = "ALLOW_LLM_CAPABILITY",
|
|
49269
49348
|
AllowLogsAccess = "ALLOW_LOGS_ACCESS",
|
|
49270
49349
|
AllowRestApis = "ALLOW_REST_APIS"
|
|
@@ -49672,7 +49751,8 @@ export type EcosystemRealtimeSubscriptionBody = {
|
|
|
49672
49751
|
export declare enum EcosystemRequiredProduct {
|
|
49673
49752
|
Compass = "COMPASS",
|
|
49674
49753
|
Confluence = "CONFLUENCE",
|
|
49675
|
-
Jira = "JIRA"
|
|
49754
|
+
Jira = "JIRA",
|
|
49755
|
+
Platform = "PLATFORM"
|
|
49676
49756
|
}
|
|
49677
49757
|
export type EcosystemRollingRelease = {
|
|
49678
49758
|
__typename?: 'EcosystemRollingRelease';
|
|
@@ -53814,6 +53894,7 @@ export type GeneratedPlaybook = {
|
|
|
53814
53894
|
};
|
|
53815
53895
|
export type GeneratedStep = {
|
|
53816
53896
|
__typename?: 'GeneratedStep';
|
|
53897
|
+
checklistItems?: Maybe<Array<ChecklistItem>>;
|
|
53817
53898
|
description?: Maybe<Scalars['JSON']['output']>;
|
|
53818
53899
|
name: Scalars['String']['output'];
|
|
53819
53900
|
type: JiraPlaybookStepType;
|
|
@@ -55310,6 +55391,17 @@ export type GraphInferenceInferenceAppV3 = {
|
|
|
55310
55391
|
reasoningLevel: Scalars['String']['output'];
|
|
55311
55392
|
source: Scalars['String']['output'];
|
|
55312
55393
|
};
|
|
55394
|
+
export type GraphInferenceInferenceEvalInput = {
|
|
55395
|
+
appId: Scalars['String']['input'];
|
|
55396
|
+
sourceAri: Scalars['String']['input'];
|
|
55397
|
+
};
|
|
55398
|
+
export type GraphInferenceInferenceEvalResponse = {
|
|
55399
|
+
__typename?: 'GraphInferenceInferenceEvalResponse';
|
|
55400
|
+
appId: Scalars['String']['output'];
|
|
55401
|
+
result: Scalars['JSON']['output'];
|
|
55402
|
+
sourceAri: Scalars['String']['output'];
|
|
55403
|
+
status: Scalars['String']['output'];
|
|
55404
|
+
};
|
|
55313
55405
|
export type GraphInferenceInferenceModelChoice = {
|
|
55314
55406
|
__typename?: 'GraphInferenceInferenceModelChoice';
|
|
55315
55407
|
id: Scalars['String']['output'];
|
|
@@ -55629,6 +55721,11 @@ export declare enum GraphIntegrationAppCapability {
|
|
|
55629
55721
|
Action = "ACTION",
|
|
55630
55722
|
DataConnector = "DATA_CONNECTOR"
|
|
55631
55723
|
}
|
|
55724
|
+
export type GraphIntegrationCloneCandidateSkillInput = {
|
|
55725
|
+
cloneToken: Scalars['String']['input'];
|
|
55726
|
+
contextAri: Scalars['ID']['input'];
|
|
55727
|
+
skillAri: Scalars['ID']['input'];
|
|
55728
|
+
};
|
|
55632
55729
|
export type GraphIntegrationConsentInput = {
|
|
55633
55730
|
agreement: Scalars['String']['input'];
|
|
55634
55731
|
formUrlReferer: Scalars['URL']['input'];
|
|
@@ -56420,6 +56517,16 @@ export type GraphIntegrationRemoveTwgCapabilityContainerPayload = Payload & {
|
|
|
56420
56517
|
errors?: Maybe<Array<MutationError>>;
|
|
56421
56518
|
success: Scalars['Boolean']['output'];
|
|
56422
56519
|
};
|
|
56520
|
+
export type GraphIntegrationResolveSkillCloneLinkInput = {
|
|
56521
|
+
cloneToken: Scalars['String']['input'];
|
|
56522
|
+
contextAri: Scalars['ID']['input'];
|
|
56523
|
+
};
|
|
56524
|
+
export type GraphIntegrationResolveSkillCloneLinkPayload = {
|
|
56525
|
+
__typename?: 'GraphIntegrationResolveSkillCloneLinkPayload';
|
|
56526
|
+
createdBy?: Maybe<User>;
|
|
56527
|
+
errors?: Maybe<Array<MutationError>>;
|
|
56528
|
+
skills: Array<GraphIntegrationSharedSkillInfo>;
|
|
56529
|
+
};
|
|
56423
56530
|
export type GraphIntegrationSetTwgPlatformCapabilityGlobalAdminSettingInput = {
|
|
56424
56531
|
capabilityType: GraphIntegrationTwgCapabilityType;
|
|
56425
56532
|
cloudId: Scalars['ID']['input'];
|
|
@@ -56431,6 +56538,13 @@ export type GraphIntegrationSetTwgPlatformCapabilityGlobalAdminSettingPayload =
|
|
|
56431
56538
|
setting?: Maybe<GraphIntegrationTwgPlatformCapabilityGlobalAdminSetting>;
|
|
56432
56539
|
success: Scalars['Boolean']['output'];
|
|
56433
56540
|
};
|
|
56541
|
+
export type GraphIntegrationSharedSkillInfo = {
|
|
56542
|
+
__typename?: 'GraphIntegrationSharedSkillInfo';
|
|
56543
|
+
hasConflict: Scalars['Boolean']['output'];
|
|
56544
|
+
id: Scalars['ID']['output'];
|
|
56545
|
+
name: Scalars['String']['output'];
|
|
56546
|
+
uiMetadata: GraphIntegrationSkillUiMetadata;
|
|
56547
|
+
};
|
|
56434
56548
|
export type GraphIntegrationSkill = {
|
|
56435
56549
|
__typename?: 'GraphIntegrationSkill';
|
|
56436
56550
|
description: Scalars['String']['output'];
|
|
@@ -59458,6 +59572,8 @@ export type GraphStore = {
|
|
|
59458
59572
|
atlassianUserDismissedJiraForYouRecommendationEntityInverseBatch?: Maybe<GraphStoreBatchAtlassianUserDismissedJiraForYouRecommendationEntityConnection>;
|
|
59459
59573
|
atlassianUserFollowsAtlassianHomeTag?: Maybe<GraphStoreSimplifiedAtlassianUserFollowsAtlassianHomeTagConnection>;
|
|
59460
59574
|
atlassianUserFollowsAtlassianHomeTagInverse?: Maybe<GraphStoreSimplifiedAtlassianUserFollowsAtlassianHomeTagInverseConnection>;
|
|
59575
|
+
atlassianUserHasPendingApprovalOnJiraWorkItem?: Maybe<GraphStoreSimplifiedAtlassianUserHasPendingApprovalOnJiraWorkItemConnection>;
|
|
59576
|
+
atlassianUserHasPendingApprovalOnJiraWorkItemInverse?: Maybe<GraphStoreSimplifiedAtlassianUserHasPendingApprovalOnJiraWorkItemInverseConnection>;
|
|
59461
59577
|
atlassianUserInvitedToLoomMeeting?: Maybe<GraphStoreSimplifiedAtlassianUserInvitedToLoomMeetingConnection>;
|
|
59462
59578
|
atlassianUserInvitedToLoomMeetingBatch?: Maybe<GraphStoreBatchAtlassianUserInvitedToLoomMeetingConnection>;
|
|
59463
59579
|
atlassianUserInvitedToLoomMeetingInverse?: Maybe<GraphStoreSimplifiedAtlassianUserInvitedToLoomMeetingInverseConnection>;
|
|
@@ -61450,6 +61566,22 @@ export type GraphStoreAtlassianUserFollowsAtlassianHomeTagInverseArgs = {
|
|
|
61450
61566
|
queryContext?: InputMaybe<Scalars['String']['input']>;
|
|
61451
61567
|
sort?: InputMaybe<GraphStoreAtlassianUserFollowsAtlassianHomeTagSortInput>;
|
|
61452
61568
|
};
|
|
61569
|
+
export type GraphStoreAtlassianUserHasPendingApprovalOnJiraWorkItemArgs = {
|
|
61570
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
61571
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
61572
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
61573
|
+
id: Scalars['ID']['input'];
|
|
61574
|
+
queryContext?: InputMaybe<Scalars['String']['input']>;
|
|
61575
|
+
sort?: InputMaybe<GraphStoreAtlassianUserHasPendingApprovalOnJiraWorkItemSortInput>;
|
|
61576
|
+
};
|
|
61577
|
+
export type GraphStoreAtlassianUserHasPendingApprovalOnJiraWorkItemInverseArgs = {
|
|
61578
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
61579
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
61580
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
61581
|
+
id: Scalars['ID']['input'];
|
|
61582
|
+
queryContext?: InputMaybe<Scalars['String']['input']>;
|
|
61583
|
+
sort?: InputMaybe<GraphStoreAtlassianUserHasPendingApprovalOnJiraWorkItemSortInput>;
|
|
61584
|
+
};
|
|
61453
61585
|
export type GraphStoreAtlassianUserInvitedToLoomMeetingArgs = {
|
|
61454
61586
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
61455
61587
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -70442,6 +70574,9 @@ export type GraphStoreAtlassianUserDismissedJiraForYouRecommendationEntitySortIn
|
|
|
70442
70574
|
export type GraphStoreAtlassianUserFollowsAtlassianHomeTagSortInput = {
|
|
70443
70575
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
70444
70576
|
};
|
|
70577
|
+
export type GraphStoreAtlassianUserHasPendingApprovalOnJiraWorkItemSortInput = {
|
|
70578
|
+
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
70579
|
+
};
|
|
70445
70580
|
export type GraphStoreAtlassianUserInvitedToLoomMeetingSortInput = {
|
|
70446
70581
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
70447
70582
|
};
|
|
@@ -80718,6 +80853,34 @@ export type GraphStoreSimplifiedAtlassianUserFollowsAtlassianHomeTagInverseEdge
|
|
|
80718
80853
|
};
|
|
80719
80854
|
export type GraphStoreSimplifiedAtlassianUserFollowsAtlassianHomeTagInverseUnion = AppUser | AtlassianAccountUser | CustomerUser;
|
|
80720
80855
|
export type GraphStoreSimplifiedAtlassianUserFollowsAtlassianHomeTagUnion = TownsquareTag;
|
|
80856
|
+
export type GraphStoreSimplifiedAtlassianUserHasPendingApprovalOnJiraWorkItemConnection = HasPageInfo & {
|
|
80857
|
+
__typename?: 'GraphStoreSimplifiedAtlassianUserHasPendingApprovalOnJiraWorkItemConnection';
|
|
80858
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedAtlassianUserHasPendingApprovalOnJiraWorkItemEdge>>>;
|
|
80859
|
+
pageInfo: PageInfo;
|
|
80860
|
+
};
|
|
80861
|
+
export type GraphStoreSimplifiedAtlassianUserHasPendingApprovalOnJiraWorkItemEdge = {
|
|
80862
|
+
__typename?: 'GraphStoreSimplifiedAtlassianUserHasPendingApprovalOnJiraWorkItemEdge';
|
|
80863
|
+
createdAt: Scalars['DateTime']['output'];
|
|
80864
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
80865
|
+
id: Scalars['ID']['output'];
|
|
80866
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
80867
|
+
node?: Maybe<GraphStoreSimplifiedAtlassianUserHasPendingApprovalOnJiraWorkItemUnion>;
|
|
80868
|
+
};
|
|
80869
|
+
export type GraphStoreSimplifiedAtlassianUserHasPendingApprovalOnJiraWorkItemInverseConnection = HasPageInfo & {
|
|
80870
|
+
__typename?: 'GraphStoreSimplifiedAtlassianUserHasPendingApprovalOnJiraWorkItemInverseConnection';
|
|
80871
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedAtlassianUserHasPendingApprovalOnJiraWorkItemInverseEdge>>>;
|
|
80872
|
+
pageInfo: PageInfo;
|
|
80873
|
+
};
|
|
80874
|
+
export type GraphStoreSimplifiedAtlassianUserHasPendingApprovalOnJiraWorkItemInverseEdge = {
|
|
80875
|
+
__typename?: 'GraphStoreSimplifiedAtlassianUserHasPendingApprovalOnJiraWorkItemInverseEdge';
|
|
80876
|
+
createdAt: Scalars['DateTime']['output'];
|
|
80877
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
80878
|
+
id: Scalars['ID']['output'];
|
|
80879
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
80880
|
+
node?: Maybe<GraphStoreSimplifiedAtlassianUserHasPendingApprovalOnJiraWorkItemInverseUnion>;
|
|
80881
|
+
};
|
|
80882
|
+
export type GraphStoreSimplifiedAtlassianUserHasPendingApprovalOnJiraWorkItemInverseUnion = AppUser | AtlassianAccountUser | CustomerUser;
|
|
80883
|
+
export type GraphStoreSimplifiedAtlassianUserHasPendingApprovalOnJiraWorkItemUnion = JiraIssue;
|
|
80721
80884
|
export type GraphStoreSimplifiedAtlassianUserInvitedToLoomMeetingConnection = HasPageInfo & {
|
|
80722
80885
|
__typename?: 'GraphStoreSimplifiedAtlassianUserInvitedToLoomMeetingConnection';
|
|
80723
80886
|
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedAtlassianUserInvitedToLoomMeetingEdge>>>;
|
|
@@ -94412,6 +94575,8 @@ export type GraphStoreV2 = {
|
|
|
94412
94575
|
atlassianUserHasConfluenceMeetingNotesFolderInverse?: Maybe<GraphStoreV2SimplifiedAtlassianUserHasConfluenceMeetingNotesFolderInverseConnection>;
|
|
94413
94576
|
atlassianUserHasExternalPosition?: Maybe<GraphStoreV2SimplifiedAtlassianUserHasExternalPositionConnection>;
|
|
94414
94577
|
atlassianUserHasExternalPositionInverse?: Maybe<GraphStoreV2SimplifiedAtlassianUserHasExternalPositionInverseConnection>;
|
|
94578
|
+
atlassianUserHasPendingApprovalOnJiraWorkItem?: Maybe<GraphStoreV2SimplifiedAtlassianUserHasPendingApprovalOnJiraWorkItemConnection>;
|
|
94579
|
+
atlassianUserHasPendingApprovalOnJiraWorkItemInverse?: Maybe<GraphStoreV2SimplifiedAtlassianUserHasPendingApprovalOnJiraWorkItemInverseConnection>;
|
|
94415
94580
|
atlassianUserHasRelevantJiraSpace?: Maybe<GraphStoreV2SimplifiedAtlassianUserHasRelevantJiraSpaceConnection>;
|
|
94416
94581
|
atlassianUserHasRelevantJiraSpaceInverse?: Maybe<GraphStoreV2SimplifiedAtlassianUserHasRelevantJiraSpaceInverseConnection>;
|
|
94417
94582
|
atlassianUserInvitedToLoomMeeting?: Maybe<GraphStoreV2SimplifiedAtlassianUserInvitedToLoomMeetingConnection>;
|
|
@@ -96297,6 +96462,20 @@ export type GraphStoreV2AtlassianUserHasExternalPositionInverseArgs = {
|
|
|
96297
96462
|
id: Scalars['ID']['input'];
|
|
96298
96463
|
sort?: InputMaybe<GraphStoreV2AtlassianUserHasExternalPositionSortInput>;
|
|
96299
96464
|
};
|
|
96465
|
+
export type GraphStoreV2AtlassianUserHasPendingApprovalOnJiraWorkItemArgs = {
|
|
96466
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
96467
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
96468
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
96469
|
+
id: Scalars['ID']['input'];
|
|
96470
|
+
sort?: InputMaybe<GraphStoreV2AtlassianUserHasPendingApprovalOnJiraWorkItemSortInput>;
|
|
96471
|
+
};
|
|
96472
|
+
export type GraphStoreV2AtlassianUserHasPendingApprovalOnJiraWorkItemInverseArgs = {
|
|
96473
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
96474
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
96475
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
96476
|
+
id: Scalars['ID']['input'];
|
|
96477
|
+
sort?: InputMaybe<GraphStoreV2AtlassianUserHasPendingApprovalOnJiraWorkItemSortInput>;
|
|
96478
|
+
};
|
|
96300
96479
|
export type GraphStoreV2AtlassianUserHasRelevantJiraSpaceArgs = {
|
|
96301
96480
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
96302
96481
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -101857,6 +102036,9 @@ export type GraphStoreV2AtlassianUserHasExternalPositionSortInput = {
|
|
|
101857
102036
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
101858
102037
|
toAti?: InputMaybe<GraphStoreSortInput>;
|
|
101859
102038
|
};
|
|
102039
|
+
export type GraphStoreV2AtlassianUserHasPendingApprovalOnJiraWorkItemSortInput = {
|
|
102040
|
+
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
102041
|
+
};
|
|
101860
102042
|
export type GraphStoreV2AtlassianUserHasRelevantJiraSpaceSortInput = {
|
|
101861
102043
|
createdAt?: InputMaybe<GraphStoreSortInput>;
|
|
101862
102044
|
fromAti?: InputMaybe<GraphStoreSortInput>;
|
|
@@ -107886,6 +108068,34 @@ export type GraphStoreV2SimplifiedAtlassianUserHasExternalPositionInverseEdge =
|
|
|
107886
108068
|
};
|
|
107887
108069
|
export type GraphStoreV2SimplifiedAtlassianUserHasExternalPositionInverseUnion = AppUser | AtlassianAccountUser | CustomerUser;
|
|
107888
108070
|
export type GraphStoreV2SimplifiedAtlassianUserHasExternalPositionUnion = ExternalPosition;
|
|
108071
|
+
export type GraphStoreV2SimplifiedAtlassianUserHasPendingApprovalOnJiraWorkItemConnection = HasPageInfo & {
|
|
108072
|
+
__typename?: 'GraphStoreV2SimplifiedAtlassianUserHasPendingApprovalOnJiraWorkItemConnection';
|
|
108073
|
+
edges?: Maybe<Array<Maybe<GraphStoreV2SimplifiedAtlassianUserHasPendingApprovalOnJiraWorkItemEdge>>>;
|
|
108074
|
+
pageInfo: PageInfo;
|
|
108075
|
+
};
|
|
108076
|
+
export type GraphStoreV2SimplifiedAtlassianUserHasPendingApprovalOnJiraWorkItemEdge = {
|
|
108077
|
+
__typename?: 'GraphStoreV2SimplifiedAtlassianUserHasPendingApprovalOnJiraWorkItemEdge';
|
|
108078
|
+
createdAt: Scalars['DateTime']['output'];
|
|
108079
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
108080
|
+
id: Scalars['ID']['output'];
|
|
108081
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
108082
|
+
node?: Maybe<GraphStoreV2SimplifiedAtlassianUserHasPendingApprovalOnJiraWorkItemUnion>;
|
|
108083
|
+
};
|
|
108084
|
+
export type GraphStoreV2SimplifiedAtlassianUserHasPendingApprovalOnJiraWorkItemInverseConnection = HasPageInfo & {
|
|
108085
|
+
__typename?: 'GraphStoreV2SimplifiedAtlassianUserHasPendingApprovalOnJiraWorkItemInverseConnection';
|
|
108086
|
+
edges?: Maybe<Array<Maybe<GraphStoreV2SimplifiedAtlassianUserHasPendingApprovalOnJiraWorkItemInverseEdge>>>;
|
|
108087
|
+
pageInfo: PageInfo;
|
|
108088
|
+
};
|
|
108089
|
+
export type GraphStoreV2SimplifiedAtlassianUserHasPendingApprovalOnJiraWorkItemInverseEdge = {
|
|
108090
|
+
__typename?: 'GraphStoreV2SimplifiedAtlassianUserHasPendingApprovalOnJiraWorkItemInverseEdge';
|
|
108091
|
+
createdAt: Scalars['DateTime']['output'];
|
|
108092
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
108093
|
+
id: Scalars['ID']['output'];
|
|
108094
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
108095
|
+
node?: Maybe<GraphStoreV2SimplifiedAtlassianUserHasPendingApprovalOnJiraWorkItemInverseUnion>;
|
|
108096
|
+
};
|
|
108097
|
+
export type GraphStoreV2SimplifiedAtlassianUserHasPendingApprovalOnJiraWorkItemInverseUnion = AppUser | AtlassianAccountUser | CustomerUser;
|
|
108098
|
+
export type GraphStoreV2SimplifiedAtlassianUserHasPendingApprovalOnJiraWorkItemUnion = JiraIssue;
|
|
107889
108099
|
export type GraphStoreV2SimplifiedAtlassianUserHasRelevantJiraSpaceConnection = HasPageInfo & HasTotal & {
|
|
107890
108100
|
__typename?: 'GraphStoreV2SimplifiedAtlassianUserHasRelevantJiraSpaceConnection';
|
|
107891
108101
|
edges?: Maybe<Array<Maybe<GraphStoreV2SimplifiedAtlassianUserHasRelevantJiraSpaceEdge>>>;
|
|
@@ -133827,6 +134037,8 @@ export type JiraIssue = HasMercuryProjectFields & JiraListRow & JiraScenarioIssu
|
|
|
133827
134037
|
securityLevelField?: Maybe<JiraSecurityLevelField>;
|
|
133828
134038
|
securityVulnerabilityRelationships?: Maybe<AriGraphRelationshipConnection>;
|
|
133829
134039
|
servicedeskPractices?: Maybe<JiraServiceManagementPractice>;
|
|
134040
|
+
servicedeskRequestChannel?: Maybe<Scalars['String']['output']>;
|
|
134041
|
+
servicedeskRequestPortalUrl?: Maybe<Scalars['String']['output']>;
|
|
133830
134042
|
shouldShowIncidentCommandCenter?: Maybe<Scalars['Boolean']['output']>;
|
|
133831
134043
|
shouldShowPlaybooks?: Maybe<Scalars['Boolean']['output']>;
|
|
133832
134044
|
smartSummary?: Maybe<JiraAdf>;
|
|
@@ -141812,6 +142024,7 @@ export type JiraProject = Node & {
|
|
|
141812
142024
|
linkedOperationsIncidentsByProject?: Maybe<GraphStoreSimplifiedJswProjectAssociatedIncidentConnection>;
|
|
141813
142025
|
linkedSecurityContainers?: Maybe<AriGraphRelationshipConnection>;
|
|
141814
142026
|
linkedSecurityVulnerabilitiesByProject?: Maybe<GraphJiraVulnerabilityConnection>;
|
|
142027
|
+
manageIssueTypesUrl?: Maybe<Scalars['String']['output']>;
|
|
141815
142028
|
manageWorkflowUrl?: Maybe<Scalars['String']['output']>;
|
|
141816
142029
|
mostRecentlyViewedBoard?: Maybe<JiraBoardResult>;
|
|
141817
142030
|
name: Scalars['String']['output'];
|
|
@@ -142979,6 +143192,7 @@ export type JiraProjectsSidebarMenu = {
|
|
|
142979
143192
|
__typename?: 'JiraProjectsSidebarMenu';
|
|
142980
143193
|
current?: Maybe<JiraProject>;
|
|
142981
143194
|
displayMode?: Maybe<JiraSidebarMenuDisplayMode>;
|
|
143195
|
+
errors?: Maybe<Array<QueryError>>;
|
|
142982
143196
|
favouriteLimit?: Maybe<Scalars['Int']['output']>;
|
|
142983
143197
|
favourites?: Maybe<JiraProjectConnection>;
|
|
142984
143198
|
hasMore?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -149613,7 +149827,6 @@ export declare enum JiraStartAgentSessionResult {
|
|
|
149613
149827
|
AlreadyStarted = "ALREADY_STARTED",
|
|
149614
149828
|
Failed = "FAILED",
|
|
149615
149829
|
RateLimited = "RATE_LIMITED",
|
|
149616
|
-
Skipped = "SKIPPED",
|
|
149617
149830
|
Started = "STARTED"
|
|
149618
149831
|
}
|
|
149619
149832
|
export type JiraStartAiAgentSessionByExternalReferenceInput = {
|
|
@@ -152193,6 +152406,24 @@ export type JiraVersionDriverEdge = {
|
|
|
152193
152406
|
cursor: Scalars['String']['output'];
|
|
152194
152407
|
node?: Maybe<User>;
|
|
152195
152408
|
};
|
|
152409
|
+
export type JiraVersionDriverOption = {
|
|
152410
|
+
__typename?: 'JiraVersionDriverOption';
|
|
152411
|
+
displayName?: Maybe<Scalars['String']['output']>;
|
|
152412
|
+
driver?: Maybe<User>;
|
|
152413
|
+
driverAccountId: Scalars['ID']['output'];
|
|
152414
|
+
};
|
|
152415
|
+
export type JiraVersionDriverOptionConnection = {
|
|
152416
|
+
__typename?: 'JiraVersionDriverOptionConnection';
|
|
152417
|
+
edges?: Maybe<Array<Maybe<JiraVersionDriverOptionEdge>>>;
|
|
152418
|
+
hasUnassigned: Scalars['Boolean']['output'];
|
|
152419
|
+
pageInfo: PageInfo;
|
|
152420
|
+
totalCount: Scalars['Int']['output'];
|
|
152421
|
+
};
|
|
152422
|
+
export type JiraVersionDriverOptionEdge = {
|
|
152423
|
+
__typename?: 'JiraVersionDriverOptionEdge';
|
|
152424
|
+
cursor: Scalars['String']['output'];
|
|
152425
|
+
node: JiraVersionDriverOption;
|
|
152426
|
+
};
|
|
152196
152427
|
export type JiraVersionDriverResult = {
|
|
152197
152428
|
__typename?: 'JiraVersionDriverResult';
|
|
152198
152429
|
driver?: Maybe<User>;
|
|
@@ -154759,9 +154990,11 @@ export type JsmChannelsRequestTypesInput = {
|
|
|
154759
154990
|
export declare enum JsmChannelsResolutionPlanAction {
|
|
154760
154991
|
Approve = "APPROVE",
|
|
154761
154992
|
Pause = "PAUSE",
|
|
154993
|
+
Pin = "PIN",
|
|
154762
154994
|
Regenerate = "REGENERATE",
|
|
154763
154995
|
Reject = "REJECT",
|
|
154764
|
-
Resume = "RESUME"
|
|
154996
|
+
Resume = "RESUME",
|
|
154997
|
+
Unpin = "UNPIN"
|
|
154765
154998
|
}
|
|
154766
154999
|
export type JsmChannelsResolutionPlanActionPayload = Payload & {
|
|
154767
155000
|
__typename?: 'JsmChannelsResolutionPlanActionPayload';
|
|
@@ -157116,6 +157349,21 @@ export type KitsuneCreateConnectorConfigPayload = Payload & {
|
|
|
157116
157349
|
errors?: Maybe<Array<MutationError>>;
|
|
157117
157350
|
success: Scalars['Boolean']['output'];
|
|
157118
157351
|
};
|
|
157352
|
+
export type KitsuneCreateFeedbackInput = {
|
|
157353
|
+
content: Scalars['KitsuneADF']['input'];
|
|
157354
|
+
customerId?: InputMaybe<Scalars['ID']['input']>;
|
|
157355
|
+
organizationId?: InputMaybe<Scalars['ID']['input']>;
|
|
157356
|
+
reporterId?: InputMaybe<Scalars['ID']['input']>;
|
|
157357
|
+
source?: InputMaybe<KitsuneSourceInputNew>;
|
|
157358
|
+
spaceAri: Scalars['ID']['input'];
|
|
157359
|
+
title?: InputMaybe<Scalars['String']['input']>;
|
|
157360
|
+
};
|
|
157361
|
+
export type KitsuneCreateFeedbackPayload = Payload & {
|
|
157362
|
+
__typename?: 'KitsuneCreateFeedbackPayload';
|
|
157363
|
+
errors?: Maybe<Array<MutationError>>;
|
|
157364
|
+
feedback?: Maybe<KitsuneFeedback>;
|
|
157365
|
+
success: Scalars['Boolean']['output'];
|
|
157366
|
+
};
|
|
157119
157367
|
export type KitsuneCreateFieldInput = {
|
|
157120
157368
|
description?: InputMaybe<Scalars['String']['input']>;
|
|
157121
157369
|
entityTypes: Array<KitsuneEntityType>;
|
|
@@ -157170,6 +157418,17 @@ export type KitsuneCreateSnippetPayload = Payload & {
|
|
|
157170
157418
|
snippet?: Maybe<KitsuneSnippet>;
|
|
157171
157419
|
success: Scalars['Boolean']['output'];
|
|
157172
157420
|
};
|
|
157421
|
+
export type KitsuneCreateSpaceInput = {
|
|
157422
|
+
description?: InputMaybe<Scalars['String']['input']>;
|
|
157423
|
+
name: Scalars['String']['input'];
|
|
157424
|
+
workspaceAri: Scalars['ID']['input'];
|
|
157425
|
+
};
|
|
157426
|
+
export type KitsuneCreateSpacePayload = Payload & {
|
|
157427
|
+
__typename?: 'KitsuneCreateSpacePayload';
|
|
157428
|
+
errors?: Maybe<Array<MutationError>>;
|
|
157429
|
+
space?: Maybe<KitsuneSpace>;
|
|
157430
|
+
success: Scalars['Boolean']['output'];
|
|
157431
|
+
};
|
|
157173
157432
|
export type KitsuneCreateViewInput = {
|
|
157174
157433
|
config?: InputMaybe<KitsuneViewConfigInput>;
|
|
157175
157434
|
description?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -157457,6 +157716,15 @@ export type KitsuneFilterValueInput = {
|
|
|
157457
157716
|
valueNumber?: InputMaybe<Array<Scalars['Float']['input']>>;
|
|
157458
157717
|
valueText?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
157459
157718
|
};
|
|
157719
|
+
export type KitsuneGenerateFeedbackSummaryInput = {
|
|
157720
|
+
feedbackAri: Scalars['ID']['input'];
|
|
157721
|
+
};
|
|
157722
|
+
export type KitsuneGenerateFeedbackSummaryPayload = Payload & {
|
|
157723
|
+
__typename?: 'KitsuneGenerateFeedbackSummaryPayload';
|
|
157724
|
+
errors?: Maybe<Array<MutationError>>;
|
|
157725
|
+
feedback?: Maybe<KitsuneFeedback>;
|
|
157726
|
+
success: Scalars['Boolean']['output'];
|
|
157727
|
+
};
|
|
157460
157728
|
export type KitsuneGenerateInsightSummaryInput = {
|
|
157461
157729
|
insightAri: Scalars['ID']['input'];
|
|
157462
157730
|
};
|
|
@@ -157678,6 +157946,23 @@ export type KitsuneRemoveFromSpacePayload = Payload & {
|
|
|
157678
157946
|
principalAri?: Maybe<Scalars['ID']['output']>;
|
|
157679
157947
|
success: Scalars['Boolean']['output'];
|
|
157680
157948
|
};
|
|
157949
|
+
export type KitsuneRemoveSpacePayload = Payload & {
|
|
157950
|
+
__typename?: 'KitsuneRemoveSpacePayload';
|
|
157951
|
+
errors?: Maybe<Array<MutationError>>;
|
|
157952
|
+
job?: Maybe<KitsuneJob>;
|
|
157953
|
+
success: Scalars['Boolean']['output'];
|
|
157954
|
+
};
|
|
157955
|
+
export type KitsuneResyncFeedbackInput = {
|
|
157956
|
+
dateRange?: InputMaybe<KitsuneDateRangeInput>;
|
|
157957
|
+
rebuildEmbeddings?: InputMaybe<Scalars['Boolean']['input']>;
|
|
157958
|
+
workspaceAri: Scalars['ID']['input'];
|
|
157959
|
+
};
|
|
157960
|
+
export type KitsuneResyncFeedbackPayload = Payload & {
|
|
157961
|
+
__typename?: 'KitsuneResyncFeedbackPayload';
|
|
157962
|
+
errors?: Maybe<Array<MutationError>>;
|
|
157963
|
+
job?: Maybe<KitsuneJob>;
|
|
157964
|
+
success: Scalars['Boolean']['output'];
|
|
157965
|
+
};
|
|
157681
157966
|
export type KitsuneResyncInsightsInput = {
|
|
157682
157967
|
workspaceAri: Scalars['ID']['input'];
|
|
157683
157968
|
};
|
|
@@ -158094,6 +158379,22 @@ export type KitsuneUpdateConnectorConfigPayload = Payload & {
|
|
|
158094
158379
|
errors?: Maybe<Array<MutationError>>;
|
|
158095
158380
|
success: Scalars['Boolean']['output'];
|
|
158096
158381
|
};
|
|
158382
|
+
export type KitsuneUpdateFeedbackInput = {
|
|
158383
|
+
content?: InputMaybe<Scalars['KitsuneADF']['input']>;
|
|
158384
|
+
customerId?: InputMaybe<Scalars['ID']['input']>;
|
|
158385
|
+
organizationId?: InputMaybe<Scalars['ID']['input']>;
|
|
158386
|
+
reporterId?: InputMaybe<Scalars['ID']['input']>;
|
|
158387
|
+
source?: InputMaybe<KitsuneSourceInputNew>;
|
|
158388
|
+
summaryContent?: InputMaybe<Scalars['KitsuneADF']['input']>;
|
|
158389
|
+
title?: InputMaybe<Scalars['String']['input']>;
|
|
158390
|
+
values?: InputMaybe<Array<KitsuneFeedbackValueInput>>;
|
|
158391
|
+
};
|
|
158392
|
+
export type KitsuneUpdateFeedbackPayload = Payload & {
|
|
158393
|
+
__typename?: 'KitsuneUpdateFeedbackPayload';
|
|
158394
|
+
errors?: Maybe<Array<MutationError>>;
|
|
158395
|
+
feedback?: Maybe<KitsuneFeedback>;
|
|
158396
|
+
success: Scalars['Boolean']['output'];
|
|
158397
|
+
};
|
|
158097
158398
|
export type KitsuneUpdateFieldInput = {
|
|
158098
158399
|
aiEnabled?: InputMaybe<Scalars['Boolean']['input']>;
|
|
158099
158400
|
description?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -158135,6 +158436,17 @@ export type KitsuneUpdateSnippetPayload = Payload & {
|
|
|
158135
158436
|
snippet?: Maybe<KitsuneSnippet>;
|
|
158136
158437
|
success: Scalars['Boolean']['output'];
|
|
158137
158438
|
};
|
|
158439
|
+
export type KitsuneUpdateSpaceInput = {
|
|
158440
|
+
accessLevel?: InputMaybe<KitsuneSpaceAccessLevel>;
|
|
158441
|
+
description?: InputMaybe<Scalars['String']['input']>;
|
|
158442
|
+
name?: InputMaybe<Scalars['String']['input']>;
|
|
158443
|
+
};
|
|
158444
|
+
export type KitsuneUpdateSpacePayload = Payload & {
|
|
158445
|
+
__typename?: 'KitsuneUpdateSpacePayload';
|
|
158446
|
+
errors?: Maybe<Array<MutationError>>;
|
|
158447
|
+
space?: Maybe<KitsuneSpace>;
|
|
158448
|
+
success: Scalars['Boolean']['output'];
|
|
158449
|
+
};
|
|
158138
158450
|
export type KitsuneUpdateViewInput = {
|
|
158139
158451
|
config?: InputMaybe<KitsuneViewConfigInput>;
|
|
158140
158452
|
description?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -164453,6 +164765,7 @@ export declare enum MarketplaceStoreLayoutSlotTheme {
|
|
|
164453
164765
|
Bounded = "BOUNDED",
|
|
164454
164766
|
Dark = "DARK",
|
|
164455
164767
|
Default = "DEFAULT",
|
|
164768
|
+
Elevated = "ELEVATED",
|
|
164456
164769
|
Inverse = "INVERSE"
|
|
164457
164770
|
}
|
|
164458
164771
|
export declare enum MarketplaceStoreLayoutSlotVariant {
|
|
@@ -167627,6 +167940,7 @@ export type MercuryCreateRateCardInput = {
|
|
|
167627
167940
|
effectiveStartDate?: InputMaybe<Scalars['Date']['input']>;
|
|
167628
167941
|
externalId?: InputMaybe<Scalars['String']['input']>;
|
|
167629
167942
|
rate?: InputMaybe<Scalars['String']['input']>;
|
|
167943
|
+
ratePeriodTypeId?: InputMaybe<Scalars['ID']['input']>;
|
|
167630
167944
|
workingHoursPerWeek?: InputMaybe<Scalars['Int']['input']>;
|
|
167631
167945
|
};
|
|
167632
167946
|
export type MercuryCreateRateCardPayload = Payload & {
|
|
@@ -169340,7 +169654,6 @@ export type MercuryFundsMutationApi = {
|
|
|
169340
169654
|
updateFocusAreaBudgetAmount?: Maybe<MercuryUpdateFocusAreaBudgetPayload>;
|
|
169341
169655
|
updateInvestmentCategoryName?: Maybe<MercuryUpdateInvestmentCategoryPayload>;
|
|
169342
169656
|
updateRateCard?: Maybe<MercuryUpdateRateCardPayload>;
|
|
169343
|
-
updateRateCardConfigurationRatePeriod?: Maybe<MercuryUpdateRateCardConfigurationPayload>;
|
|
169344
169657
|
};
|
|
169345
169658
|
export type MercuryFundsMutationApiCreateBenefitItemArgs = {
|
|
169346
169659
|
input: MercuryCreateBenefitItemInput;
|
|
@@ -169477,9 +169790,6 @@ export type MercuryFundsMutationApiUpdateInvestmentCategoryNameArgs = {
|
|
|
169477
169790
|
export type MercuryFundsMutationApiUpdateRateCardArgs = {
|
|
169478
169791
|
input: MercuryUpdateRateCardInput;
|
|
169479
169792
|
};
|
|
169480
|
-
export type MercuryFundsMutationApiUpdateRateCardConfigurationRatePeriodArgs = {
|
|
169481
|
-
input: MercuryUpdateRateCardConfigurationRatePeriodInput;
|
|
169482
|
-
};
|
|
169483
169793
|
export declare enum MercuryFundsPermission {
|
|
169484
169794
|
EditBaseline = "EDIT_BASELINE",
|
|
169485
169795
|
EditBudget = "EDIT_BUDGET",
|
|
@@ -169508,6 +169818,7 @@ export type MercuryFundsQueryApi = {
|
|
|
169508
169818
|
costTypes?: Maybe<Array<Maybe<MercuryCostType>>>;
|
|
169509
169819
|
costTypesByIds?: Maybe<Array<Maybe<MercuryCostType>>>;
|
|
169510
169820
|
currencies?: Maybe<Array<MercuryCurrency>>;
|
|
169821
|
+
defaultRateCard?: Maybe<MercuryRateCard>;
|
|
169511
169822
|
expenditureTypes?: Maybe<Array<Maybe<MercuryExpenditureType>>>;
|
|
169512
169823
|
expenditureTypesByIds?: Maybe<Array<Maybe<MercuryExpenditureType>>>;
|
|
169513
169824
|
financialVersions?: Maybe<Array<Maybe<MercuryFinancialVersion>>>;
|
|
@@ -169525,7 +169836,6 @@ export type MercuryFundsQueryApi = {
|
|
|
169525
169836
|
investmentCategoriesSearch?: Maybe<MercuryInvestmentCategoryConnection>;
|
|
169526
169837
|
rateCardAttributeTypes?: Maybe<Array<Maybe<MercuryRateCardAttributeType>>>;
|
|
169527
169838
|
rateCardAttributeTypesByIds?: Maybe<Array<Maybe<MercuryRateCardAttributeType>>>;
|
|
169528
|
-
rateCardConfiguration?: Maybe<MercuryRateCardConfiguration>;
|
|
169529
169839
|
rateCardsSearch?: Maybe<MercuryRateCardConnection>;
|
|
169530
169840
|
searchBenefitItemActivityHistory?: Maybe<MercuryBenefitItemActivityHistoryConnection>;
|
|
169531
169841
|
searchCostItemActivityHistory?: Maybe<MercuryCostItemActivityHistoryConnection>;
|
|
@@ -169607,6 +169917,9 @@ export type MercuryFundsQueryApiCostTypesByIdsArgs = {
|
|
|
169607
169917
|
export type MercuryFundsQueryApiCurrenciesArgs = {
|
|
169608
169918
|
cloudId?: InputMaybe<Scalars['ID']['input']>;
|
|
169609
169919
|
};
|
|
169920
|
+
export type MercuryFundsQueryApiDefaultRateCardArgs = {
|
|
169921
|
+
cloudId: Scalars['ID']['input'];
|
|
169922
|
+
};
|
|
169610
169923
|
export type MercuryFundsQueryApiExpenditureTypesArgs = {
|
|
169611
169924
|
cloudId?: InputMaybe<Scalars['ID']['input']>;
|
|
169612
169925
|
};
|
|
@@ -169681,9 +169994,6 @@ export type MercuryFundsQueryApiRateCardAttributeTypesByIdsArgs = {
|
|
|
169681
169994
|
cloudId: Scalars['ID']['input'];
|
|
169682
169995
|
ids: Array<Scalars['ID']['input']>;
|
|
169683
169996
|
};
|
|
169684
|
-
export type MercuryFundsQueryApiRateCardConfigurationArgs = {
|
|
169685
|
-
cloudId: Scalars['ID']['input'];
|
|
169686
|
-
};
|
|
169687
169997
|
export type MercuryFundsQueryApiRateCardsSearchArgs = {
|
|
169688
169998
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
169689
169999
|
cloudId: Scalars['ID']['input'];
|
|
@@ -172687,11 +172997,14 @@ export declare enum MercuryRankingGroupType {
|
|
|
172687
172997
|
export type MercuryRateCard = {
|
|
172688
172998
|
__typename?: 'MercuryRateCard';
|
|
172689
172999
|
attributeValues?: Maybe<Array<Maybe<MercuryRateCardAttributeValue>>>;
|
|
172690
|
-
|
|
173000
|
+
changes?: Maybe<MercuryRateCardChangeConnection>;
|
|
172691
173001
|
externalId?: Maybe<Scalars['String']['output']>;
|
|
172692
173002
|
id: Scalars['ID']['output'];
|
|
172693
|
-
|
|
172694
|
-
|
|
173003
|
+
};
|
|
173004
|
+
export type MercuryRateCardChangesArgs = {
|
|
173005
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
173006
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
173007
|
+
sort?: InputMaybe<Array<InputMaybe<MercuryRateCardChangeSort>>>;
|
|
172695
173008
|
};
|
|
172696
173009
|
export type MercuryRateCardAttribute = {
|
|
172697
173010
|
__typename?: 'MercuryRateCardAttribute';
|
|
@@ -172710,17 +173023,43 @@ export type MercuryRateCardAttributeValue = MercuryRateCardOrganizationAttribute
|
|
|
172710
173023
|
export type MercuryRateCardAttributeValueInput = {
|
|
172711
173024
|
attributeId: Scalars['ID']['input'];
|
|
172712
173025
|
attributeValue?: InputMaybe<Scalars['String']['input']>;
|
|
172713
|
-
id: Scalars['ID']['input'];
|
|
172714
173026
|
};
|
|
172715
173027
|
export type MercuryRateCardAttributeValueInterface = {
|
|
172716
173028
|
attribute?: Maybe<MercuryRateCardAttribute>;
|
|
172717
173029
|
id: Scalars['ID']['output'];
|
|
172718
173030
|
};
|
|
173031
|
+
export type MercuryRateCardChange = {
|
|
173032
|
+
__typename?: 'MercuryRateCardChange';
|
|
173033
|
+
effectiveEndDate?: Maybe<Scalars['Date']['output']>;
|
|
173034
|
+
effectiveStartDate?: Maybe<Scalars['Date']['output']>;
|
|
173035
|
+
id: Scalars['ID']['output'];
|
|
173036
|
+
rate?: Maybe<MercuryMoney>;
|
|
173037
|
+
ratePeriodType?: Maybe<MercuryRatePeriodType>;
|
|
173038
|
+
workingHoursPerWeek?: Maybe<Scalars['Int']['output']>;
|
|
173039
|
+
};
|
|
173040
|
+
export type MercuryRateCardChangeConnection = {
|
|
173041
|
+
__typename?: 'MercuryRateCardChangeConnection';
|
|
173042
|
+
edges?: Maybe<Array<MercuryRateCardChangeEdge>>;
|
|
173043
|
+
pageInfo: PageInfo;
|
|
173044
|
+
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
173045
|
+
};
|
|
173046
|
+
export type MercuryRateCardChangeEdge = {
|
|
173047
|
+
__typename?: 'MercuryRateCardChangeEdge';
|
|
173048
|
+
cursor: Scalars['String']['output'];
|
|
173049
|
+
node?: Maybe<MercuryRateCardChange>;
|
|
173050
|
+
};
|
|
173051
|
+
export type MercuryRateCardChangeSort = {
|
|
173052
|
+
field: MercuryRateCardChangeSortField;
|
|
173053
|
+
order: SortOrder;
|
|
173054
|
+
};
|
|
173055
|
+
export declare enum MercuryRateCardChangeSortField {
|
|
173056
|
+
EffectiveStartDate = "EFFECTIVE_START_DATE"
|
|
173057
|
+
}
|
|
172719
173058
|
export type MercuryRateCardConfiguration = {
|
|
172720
173059
|
__typename?: 'MercuryRateCardConfiguration';
|
|
172721
173060
|
defaultRateCard?: Maybe<MercuryRateCard>;
|
|
172722
173061
|
id: Scalars['ID']['output'];
|
|
172723
|
-
ratePeriod?: Maybe<
|
|
173062
|
+
ratePeriod?: Maybe<MercuryRatePeriodType>;
|
|
172724
173063
|
};
|
|
172725
173064
|
export type MercuryRateCardConnection = {
|
|
172726
173065
|
__typename?: 'MercuryRateCardConnection';
|
|
@@ -172739,8 +173078,8 @@ export type MercuryRateCardOrganizationAttributeValue = MercuryRateCardAttribute
|
|
|
172739
173078
|
id: Scalars['ID']['output'];
|
|
172740
173079
|
organization?: Maybe<MercuryOrganization>;
|
|
172741
173080
|
};
|
|
172742
|
-
export type
|
|
172743
|
-
__typename?: '
|
|
173081
|
+
export type MercuryRatePeriodType = {
|
|
173082
|
+
__typename?: 'MercuryRatePeriodType';
|
|
172744
173083
|
displayName: Scalars['String']['output'];
|
|
172745
173084
|
id: Scalars['ID']['output'];
|
|
172746
173085
|
key: Scalars['String']['output'];
|
|
@@ -174902,16 +175241,13 @@ export type MercuryUpdateRateCardConfigurationPayload = Payload & {
|
|
|
174902
175241
|
success: Scalars['Boolean']['output'];
|
|
174903
175242
|
updatedRateCardConfiguration?: Maybe<MercuryRateCardConfiguration>;
|
|
174904
175243
|
};
|
|
174905
|
-
export type MercuryUpdateRateCardConfigurationRatePeriodInput = {
|
|
174906
|
-
cloudId: Scalars['ID']['input'];
|
|
174907
|
-
ratePeriodKey: Scalars['String']['input'];
|
|
174908
|
-
};
|
|
174909
175244
|
export type MercuryUpdateRateCardInput = {
|
|
174910
175245
|
cloudId: Scalars['ID']['input'];
|
|
174911
175246
|
effectiveStartDate?: InputMaybe<Scalars['Date']['input']>;
|
|
174912
175247
|
externalId?: InputMaybe<Scalars['String']['input']>;
|
|
174913
175248
|
id: Scalars['ID']['input'];
|
|
174914
175249
|
rate?: InputMaybe<Scalars['String']['input']>;
|
|
175250
|
+
ratePeriodTypeId?: InputMaybe<Scalars['ID']['input']>;
|
|
174915
175251
|
workingHoursPerWeek?: InputMaybe<Scalars['Int']['input']>;
|
|
174916
175252
|
};
|
|
174917
175253
|
export type MercuryUpdateRateCardPayload = Payload & {
|
|
@@ -175644,6 +175980,7 @@ export type Mutation = {
|
|
|
175644
175980
|
addLabels?: Maybe<AddLabelsPayload>;
|
|
175645
175981
|
addPublicLinkPermissions?: Maybe<AddPublicLinkPermissionsPayload>;
|
|
175646
175982
|
addReaction?: Maybe<SaveReactionResponse>;
|
|
175983
|
+
admin_activateOrgForUnits?: Maybe<AdminActivateOrgForUnitsPayload>;
|
|
175647
175984
|
admin_activateUser?: Maybe<AdminActiveUserResponsePayload>;
|
|
175648
175985
|
admin_addConnector?: Maybe<AdminAddConnectorPayload>;
|
|
175649
175986
|
admin_assignRole?: Maybe<AdminAssignRoleResponsePayload>;
|
|
@@ -176169,6 +176506,7 @@ export type Mutation = {
|
|
|
176169
176506
|
cpls_addContributorScopeAssociation?: Maybe<CplsAddContributorScopeAssociationPayload>;
|
|
176170
176507
|
cpls_addContributorWorkAssociation?: Maybe<CplsAddContributorWorkAssociationPayload>;
|
|
176171
176508
|
cpls_addWorkScopeAssociations?: Maybe<CplsAddWorkScopeAssociationsPayload>;
|
|
176509
|
+
cpls_allocateCapacity?: Maybe<CplsAllocateCapacityPayload>;
|
|
176172
176510
|
cpls_copyContributorToWorks?: Maybe<CplsCopyContributorToWorksPayload>;
|
|
176173
176511
|
cpls_copyWorkToContributors?: Maybe<CplsCopyWorkToContributorsPayload>;
|
|
176174
176512
|
cpls_createCustomContributionTarget?: Maybe<CplsCreateCustomContributionTargetPayload>;
|
|
@@ -176483,6 +176821,7 @@ export type Mutation = {
|
|
|
176483
176821
|
graphInference_inferenceAppEdit?: Maybe<GraphInferenceInferenceAppMutationPayload>;
|
|
176484
176822
|
graphInference_inferenceAppEditV2?: Maybe<GraphInferenceInferenceAppMutationPayloadV2>;
|
|
176485
176823
|
graphInference_inferenceAppEditV3?: Maybe<GraphInferenceInferenceAppMutationPayloadV3>;
|
|
176824
|
+
graphInference_inferenceEval?: Maybe<GraphInferenceInferenceEvalResponse>;
|
|
176486
176825
|
graphIntegration_actionAdminManagementUpdateActionConfiguration?: Maybe<GraphIntegrationActionAdminManagementUpdateActionConfigurationPayload>;
|
|
176487
176826
|
graphIntegration_addTwgCapabilityContainer?: Maybe<GraphIntegrationAddTwgCapabilityContainerPayload>;
|
|
176488
176827
|
graphIntegration_createDataConnectorConnection?: Maybe<GraphIntegrationCreateConnectionPayload>;
|
|
@@ -176912,6 +177251,7 @@ export type Mutation = {
|
|
|
176912
177251
|
kitsune_createCustomer?: Maybe<KitsuneCustomer>;
|
|
176913
177252
|
kitsune_createCustomerField?: Maybe<KitsuneCustomerCustomField>;
|
|
176914
177253
|
kitsune_createFeedback?: Maybe<KitsuneFeedback>;
|
|
177254
|
+
kitsune_createFeedbackV2?: Maybe<KitsuneCreateFeedbackPayload>;
|
|
176915
177255
|
kitsune_createField?: Maybe<KitsuneField>;
|
|
176916
177256
|
kitsune_createFieldV2?: Maybe<KitsuneCreateFieldPayload>;
|
|
176917
177257
|
kitsune_createInsight?: Maybe<KitsuneInsight>;
|
|
@@ -176923,10 +177263,12 @@ export type Mutation = {
|
|
|
176923
177263
|
kitsune_createSnippet?: Maybe<KitsuneSnippet>;
|
|
176924
177264
|
kitsune_createSnippetV2?: Maybe<KitsuneCreateSnippetPayload>;
|
|
176925
177265
|
kitsune_createSpace?: Maybe<KitsuneSpace>;
|
|
177266
|
+
kitsune_createSpaceV2?: Maybe<KitsuneCreateSpacePayload>;
|
|
176926
177267
|
kitsune_createView?: Maybe<KitsuneView>;
|
|
176927
177268
|
kitsune_createViewV2?: Maybe<KitsuneViewPayload>;
|
|
176928
177269
|
kitsune_exportFeedbackFromView?: Maybe<KitsuneJob>;
|
|
176929
177270
|
kitsune_generateFeedbackSummary?: Maybe<KitsuneFeedback>;
|
|
177271
|
+
kitsune_generateFeedbackSummaryV2?: Maybe<KitsuneGenerateFeedbackSummaryPayload>;
|
|
176930
177272
|
kitsune_generateInsightSummary?: Maybe<KitsuneInsight>;
|
|
176931
177273
|
kitsune_generateInsightSummaryV2?: Maybe<KitsuneGenerateInsightSummaryPayload>;
|
|
176932
177274
|
kitsune_inviteToSpace?: Maybe<KitsuneInviteToSpacePayload>;
|
|
@@ -176942,6 +177284,7 @@ export type Mutation = {
|
|
|
176942
177284
|
kitsune_removeCustomer?: Maybe<KitsuneDeletedRecord>;
|
|
176943
177285
|
kitsune_removeCustomerField?: Maybe<KitsuneDeletedRecord>;
|
|
176944
177286
|
kitsune_removeFeedback?: Maybe<KitsuneDeletedRecord>;
|
|
177287
|
+
kitsune_removeFeedbackV2?: Maybe<KitsuneDeletedPayload>;
|
|
176945
177288
|
kitsune_removeField?: Maybe<KitsuneDeletedRecord>;
|
|
176946
177289
|
kitsune_removeFieldV2?: Maybe<KitsuneDeletedPayload>;
|
|
176947
177290
|
kitsune_removeFieldValue?: Maybe<KitsuneDeletedRecord>;
|
|
@@ -176956,9 +177299,11 @@ export type Mutation = {
|
|
|
176956
177299
|
kitsune_removeSnippet?: Maybe<KitsuneDeletedRecord>;
|
|
176957
177300
|
kitsune_removeSnippetV2?: Maybe<KitsuneDeletedPayload>;
|
|
176958
177301
|
kitsune_removeSpace?: Maybe<KitsuneJob>;
|
|
177302
|
+
kitsune_removeSpaceV2?: Maybe<KitsuneRemoveSpacePayload>;
|
|
176959
177303
|
kitsune_removeView?: Maybe<KitsuneDeletedRecord>;
|
|
176960
177304
|
kitsune_removeViewV2?: Maybe<KitsuneDeleteViewPayload>;
|
|
176961
177305
|
kitsune_resyncFeedback?: Maybe<KitsuneJob>;
|
|
177306
|
+
kitsune_resyncFeedbackV2?: Maybe<KitsuneResyncFeedbackPayload>;
|
|
176962
177307
|
kitsune_resyncInsights?: Maybe<KitsuneJob>;
|
|
176963
177308
|
kitsune_resyncInsightsV2?: Maybe<KitsuneResyncInsightsPayload>;
|
|
176964
177309
|
kitsune_syncCsmProperties?: Maybe<KitsuneJob>;
|
|
@@ -176968,6 +177313,7 @@ export type Mutation = {
|
|
|
176968
177313
|
kitsune_updateCustomer?: Maybe<KitsuneCustomer>;
|
|
176969
177314
|
kitsune_updateCustomerField?: Maybe<KitsuneCustomerCustomField>;
|
|
176970
177315
|
kitsune_updateFeedback?: Maybe<KitsuneFeedback>;
|
|
177316
|
+
kitsune_updateFeedbackV2?: Maybe<KitsuneUpdateFeedbackPayload>;
|
|
176971
177317
|
kitsune_updateField?: Maybe<KitsuneField>;
|
|
176972
177318
|
kitsune_updateFieldV2?: Maybe<KitsuneUpdateFieldPayload>;
|
|
176973
177319
|
kitsune_updateInsight?: Maybe<KitsuneInsight>;
|
|
@@ -176979,6 +177325,7 @@ export type Mutation = {
|
|
|
176979
177325
|
kitsune_updateSnippet?: Maybe<KitsuneSnippet>;
|
|
176980
177326
|
kitsune_updateSnippetV2?: Maybe<KitsuneUpdateSnippetPayload>;
|
|
176981
177327
|
kitsune_updateSpace?: Maybe<KitsuneSpace>;
|
|
177328
|
+
kitsune_updateSpaceV2?: Maybe<KitsuneUpdateSpacePayload>;
|
|
176982
177329
|
kitsune_updateView?: Maybe<KitsuneView>;
|
|
176983
177330
|
kitsune_updateViewV2?: Maybe<KitsuneViewPayload>;
|
|
176984
177331
|
knowledgeBase?: Maybe<KnowledgeBaseMutationApi>;
|
|
@@ -177165,6 +177512,7 @@ export type Mutation = {
|
|
|
177165
177512
|
radar_createRoleAssignment?: Maybe<RadarMutationResponse>;
|
|
177166
177513
|
radar_createSkill?: Maybe<RadarSkill>;
|
|
177167
177514
|
radar_deleteAiConnectors?: Maybe<RadarMutationResponse>;
|
|
177515
|
+
radar_deleteAllAiConnectors?: Maybe<RadarDeleteAllAiConnectorsResponse>;
|
|
177168
177516
|
radar_deleteConnector?: Maybe<RadarMutationResponse>;
|
|
177169
177517
|
radar_deleteCustomFieldDefinitions?: Maybe<RadarDeleteCustomFieldDefinitionsMutationResponse>;
|
|
177170
177518
|
radar_deleteCustomFields?: Maybe<RadarMutationResponse>;
|
|
@@ -177481,6 +177829,9 @@ export type MutationAddReactionArgs = {
|
|
|
177481
177829
|
contentType: GraphQlReactionContentType;
|
|
177482
177830
|
emojiId: Scalars['String']['input'];
|
|
177483
177831
|
};
|
|
177832
|
+
export type MutationAdmin_ActivateOrgForUnitsArgs = {
|
|
177833
|
+
input: AdminActivateOrgForUnitsInput;
|
|
177834
|
+
};
|
|
177484
177835
|
export type MutationAdmin_ActivateUserArgs = {
|
|
177485
177836
|
input: AdminActivateUserInput;
|
|
177486
177837
|
};
|
|
@@ -178032,6 +178383,9 @@ export type MutationArchiveSpaceArgs = {
|
|
|
178032
178383
|
export type MutationArtifact_CreateArtifactArgs = {
|
|
178033
178384
|
input: ArtifactCreateInput;
|
|
178034
178385
|
};
|
|
178386
|
+
export type MutationArtifact_CreateContentArgs = {
|
|
178387
|
+
input: ArtifactCreateContentInput;
|
|
178388
|
+
};
|
|
178035
178389
|
export type MutationAssetsDm_AddDataDictionaryArgs = {
|
|
178036
178390
|
cloudId: Scalars['ID']['input'];
|
|
178037
178391
|
payload: AssetsDmAddDataDictionaryInput;
|
|
@@ -179466,6 +179820,7 @@ export type MutationConvoAi_CancelConversationArgs = {
|
|
|
179466
179820
|
export type MutationConvoAi_CompleteConversationArgs = {
|
|
179467
179821
|
cloudId: Scalars['ID']['input'];
|
|
179468
179822
|
conversationId: Scalars['ID']['input'];
|
|
179823
|
+
projectId?: InputMaybe<Scalars['ID']['input']>;
|
|
179469
179824
|
};
|
|
179470
179825
|
export type MutationConvoAi_DeleteAgentSessionArgs = {
|
|
179471
179826
|
agentSessionId: Scalars['ID']['input'];
|
|
@@ -179498,6 +179853,9 @@ export type MutationCpls_AddContributorWorkAssociationArgs = {
|
|
|
179498
179853
|
export type MutationCpls_AddWorkScopeAssociationsArgs = {
|
|
179499
179854
|
input: CplsAddWorkScopeAssociationsInput;
|
|
179500
179855
|
};
|
|
179856
|
+
export type MutationCpls_AllocateCapacityArgs = {
|
|
179857
|
+
input: CplsAllocateCapacityInput;
|
|
179858
|
+
};
|
|
179501
179859
|
export type MutationCpls_CopyContributorToWorksArgs = {
|
|
179502
179860
|
input: CplsCopyContributorToWorksInput;
|
|
179503
179861
|
};
|
|
@@ -180565,6 +180923,9 @@ export type MutationGraphInference_InferenceAppEditV2Args = {
|
|
|
180565
180923
|
export type MutationGraphInference_InferenceAppEditV3Args = {
|
|
180566
180924
|
input: GraphInferenceInferenceAppEditV3Input;
|
|
180567
180925
|
};
|
|
180926
|
+
export type MutationGraphInference_InferenceEvalArgs = {
|
|
180927
|
+
input: GraphInferenceInferenceEvalInput;
|
|
180928
|
+
};
|
|
180568
180929
|
export type MutationGraphIntegration_ActionAdminManagementUpdateActionConfigurationArgs = {
|
|
180569
180930
|
input: GraphIntegrationActionAdminManagementUpdateActionConfigurationInput;
|
|
180570
180931
|
};
|
|
@@ -181951,6 +182312,9 @@ export type MutationKitsune_CreateFeedbackArgs = {
|
|
|
181951
182312
|
spaceAri: Scalars['ID']['input'];
|
|
181952
182313
|
title?: InputMaybe<Scalars['String']['input']>;
|
|
181953
182314
|
};
|
|
182315
|
+
export type MutationKitsune_CreateFeedbackV2Args = {
|
|
182316
|
+
input: KitsuneCreateFeedbackInput;
|
|
182317
|
+
};
|
|
181954
182318
|
export type MutationKitsune_CreateFieldArgs = {
|
|
181955
182319
|
description?: InputMaybe<Scalars['String']['input']>;
|
|
181956
182320
|
entityTypes: Array<KitsuneEntityType>;
|
|
@@ -182008,6 +182372,9 @@ export type MutationKitsune_CreateSpaceArgs = {
|
|
|
182008
182372
|
name: Scalars['String']['input'];
|
|
182009
182373
|
workspaceAri: Scalars['ID']['input'];
|
|
182010
182374
|
};
|
|
182375
|
+
export type MutationKitsune_CreateSpaceV2Args = {
|
|
182376
|
+
input: KitsuneCreateSpaceInput;
|
|
182377
|
+
};
|
|
182011
182378
|
export type MutationKitsune_CreateViewArgs = {
|
|
182012
182379
|
config?: InputMaybe<KitsuneViewConfigInput>;
|
|
182013
182380
|
description?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -182028,6 +182395,9 @@ export type MutationKitsune_ExportFeedbackFromViewArgs = {
|
|
|
182028
182395
|
export type MutationKitsune_GenerateFeedbackSummaryArgs = {
|
|
182029
182396
|
id: Scalars['ID']['input'];
|
|
182030
182397
|
};
|
|
182398
|
+
export type MutationKitsune_GenerateFeedbackSummaryV2Args = {
|
|
182399
|
+
input: KitsuneGenerateFeedbackSummaryInput;
|
|
182400
|
+
};
|
|
182031
182401
|
export type MutationKitsune_GenerateInsightSummaryArgs = {
|
|
182032
182402
|
insightAri: Scalars['ID']['input'];
|
|
182033
182403
|
};
|
|
@@ -182081,6 +182451,9 @@ export type MutationKitsune_RemoveCustomerFieldArgs = {
|
|
|
182081
182451
|
export type MutationKitsune_RemoveFeedbackArgs = {
|
|
182082
182452
|
id: Scalars['ID']['input'];
|
|
182083
182453
|
};
|
|
182454
|
+
export type MutationKitsune_RemoveFeedbackV2Args = {
|
|
182455
|
+
id: Scalars['ID']['input'];
|
|
182456
|
+
};
|
|
182084
182457
|
export type MutationKitsune_RemoveFieldArgs = {
|
|
182085
182458
|
id: Scalars['ID']['input'];
|
|
182086
182459
|
};
|
|
@@ -182126,6 +182499,9 @@ export type MutationKitsune_RemoveSnippetV2Args = {
|
|
|
182126
182499
|
export type MutationKitsune_RemoveSpaceArgs = {
|
|
182127
182500
|
id: Scalars['ID']['input'];
|
|
182128
182501
|
};
|
|
182502
|
+
export type MutationKitsune_RemoveSpaceV2Args = {
|
|
182503
|
+
id: Scalars['ID']['input'];
|
|
182504
|
+
};
|
|
182129
182505
|
export type MutationKitsune_RemoveViewArgs = {
|
|
182130
182506
|
viewAri: Scalars['ID']['input'];
|
|
182131
182507
|
};
|
|
@@ -182137,6 +182513,9 @@ export type MutationKitsune_ResyncFeedbackArgs = {
|
|
|
182137
182513
|
rebuildEmbeddings?: InputMaybe<Scalars['Boolean']['input']>;
|
|
182138
182514
|
workspaceAri: Scalars['ID']['input'];
|
|
182139
182515
|
};
|
|
182516
|
+
export type MutationKitsune_ResyncFeedbackV2Args = {
|
|
182517
|
+
input: KitsuneResyncFeedbackInput;
|
|
182518
|
+
};
|
|
182140
182519
|
export type MutationKitsune_ResyncInsightsArgs = {
|
|
182141
182520
|
workspaceAri: Scalars['ID']['input'];
|
|
182142
182521
|
};
|
|
@@ -182177,6 +182556,10 @@ export type MutationKitsune_UpdateFeedbackArgs = {
|
|
|
182177
182556
|
title?: InputMaybe<Scalars['String']['input']>;
|
|
182178
182557
|
values?: InputMaybe<Array<KitsuneFeedbackValueInput>>;
|
|
182179
182558
|
};
|
|
182559
|
+
export type MutationKitsune_UpdateFeedbackV2Args = {
|
|
182560
|
+
id: Scalars['ID']['input'];
|
|
182561
|
+
input: KitsuneUpdateFeedbackInput;
|
|
182562
|
+
};
|
|
182180
182563
|
export type MutationKitsune_UpdateFieldArgs = {
|
|
182181
182564
|
aiEnabled?: InputMaybe<Scalars['Boolean']['input']>;
|
|
182182
182565
|
description?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -182241,6 +182624,10 @@ export type MutationKitsune_UpdateSpaceArgs = {
|
|
|
182241
182624
|
id: Scalars['ID']['input'];
|
|
182242
182625
|
name?: InputMaybe<Scalars['String']['input']>;
|
|
182243
182626
|
};
|
|
182627
|
+
export type MutationKitsune_UpdateSpaceV2Args = {
|
|
182628
|
+
id: Scalars['ID']['input'];
|
|
182629
|
+
input: KitsuneUpdateSpaceInput;
|
|
182630
|
+
};
|
|
182244
182631
|
export type MutationKitsune_UpdateViewArgs = {
|
|
182245
182632
|
config?: InputMaybe<KitsuneViewConfigInput>;
|
|
182246
182633
|
description?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -182779,6 +183166,9 @@ export type MutationRadar_DeleteAiConnectorsArgs = {
|
|
|
182779
183166
|
cloudId: Scalars['ID']['input'];
|
|
182780
183167
|
input: RadarDeleteAiConnectorsInput;
|
|
182781
183168
|
};
|
|
183169
|
+
export type MutationRadar_DeleteAllAiConnectorsArgs = {
|
|
183170
|
+
cloudId: Scalars['ID']['input'];
|
|
183171
|
+
};
|
|
182782
183172
|
export type MutationRadar_DeleteConnectorArgs = {
|
|
182783
183173
|
cloudId: Scalars['ID']['input'];
|
|
182784
183174
|
input: RadarDeleteConnectorInput;
|
|
@@ -186441,8 +186831,8 @@ export declare enum PsmDeviceHealthStatus {
|
|
|
186441
186831
|
Excellent = "EXCELLENT",
|
|
186442
186832
|
Fair = "FAIR",
|
|
186443
186833
|
Good = "GOOD",
|
|
186444
|
-
|
|
186445
|
-
|
|
186834
|
+
NotReporting = "NOT_REPORTING",
|
|
186835
|
+
Poor = "POOR"
|
|
186446
186836
|
}
|
|
186447
186837
|
export type PsmDeviceIdentity = {
|
|
186448
186838
|
__typename?: 'PsmDeviceIdentity';
|
|
@@ -186474,6 +186864,9 @@ export declare enum PsmDeviceStatus {
|
|
|
186474
186864
|
Orphan = "ORPHAN",
|
|
186475
186865
|
Unmapped = "UNMAPPED"
|
|
186476
186866
|
}
|
|
186867
|
+
export type PsmDevicesFilter = {
|
|
186868
|
+
healthStatuses?: InputMaybe<Array<PsmDeviceHealthStatus>>;
|
|
186869
|
+
};
|
|
186477
186870
|
export type PsmEligibleUser = {
|
|
186478
186871
|
__typename?: 'PsmEligibleUser';
|
|
186479
186872
|
atlassianAccountId: Scalars['ID']['output'];
|
|
@@ -186489,6 +186882,30 @@ export type PsmEligibleUsersListResult = {
|
|
|
186489
186882
|
errors?: Maybe<Array<QueryError>>;
|
|
186490
186883
|
users?: Maybe<Array<PsmEligibleUser>>;
|
|
186491
186884
|
};
|
|
186885
|
+
export type PsmFilter = {
|
|
186886
|
+
__typename?: 'PsmFilter';
|
|
186887
|
+
key: PsmFilterKey;
|
|
186888
|
+
label: Scalars['String']['output'];
|
|
186889
|
+
options: Array<PsmFilterOption>;
|
|
186890
|
+
searchable: Scalars['Boolean']['output'];
|
|
186891
|
+
};
|
|
186892
|
+
export declare enum PsmFilterKey {
|
|
186893
|
+
RemediationCategory = "REMEDIATION_CATEGORY",
|
|
186894
|
+
Sensor = "SENSOR",
|
|
186895
|
+
SensorCategory = "SENSOR_CATEGORY",
|
|
186896
|
+
Status = "STATUS"
|
|
186897
|
+
}
|
|
186898
|
+
export type PsmFilterOption = {
|
|
186899
|
+
__typename?: 'PsmFilterOption';
|
|
186900
|
+
label: Scalars['String']['output'];
|
|
186901
|
+
value: Scalars['String']['output'];
|
|
186902
|
+
};
|
|
186903
|
+
export declare enum PsmFilterScreen {
|
|
186904
|
+
Activities = "ACTIVITIES",
|
|
186905
|
+
DeviceList = "DEVICE_LIST",
|
|
186906
|
+
OpenIssuesAgentActionPending = "OPEN_ISSUES_AGENT_ACTION_PENDING",
|
|
186907
|
+
OpenIssuesAutomatedApproved = "OPEN_ISSUES_AUTOMATED_APPROVED"
|
|
186908
|
+
}
|
|
186492
186909
|
export type PsmFinishOnboardTenantInput = {
|
|
186493
186910
|
spaceId: Scalars['ID']['input'];
|
|
186494
186911
|
};
|
|
@@ -186608,6 +187025,12 @@ export type PsmRemediationTriggerSummary = {
|
|
|
186608
187025
|
offline?: Maybe<Array<Scalars['String']['output']>>;
|
|
186609
187026
|
queued?: Maybe<Array<Scalars['String']['output']>>;
|
|
186610
187027
|
};
|
|
187028
|
+
export type PsmScreenFilterResult = {
|
|
187029
|
+
__typename?: 'PsmScreenFilterResult';
|
|
187030
|
+
errors?: Maybe<Array<QueryError>>;
|
|
187031
|
+
filters?: Maybe<Array<PsmFilter>>;
|
|
187032
|
+
screen: PsmFilterScreen;
|
|
187033
|
+
};
|
|
186611
187034
|
export type PsmSensorCategoriesInput = {
|
|
186612
187035
|
spaceId: Scalars['ID']['input'];
|
|
186613
187036
|
};
|
|
@@ -186637,6 +187060,7 @@ export type PsmSensorConfigDetails = {
|
|
|
186637
187060
|
name?: Maybe<Scalars['String']['output']>;
|
|
186638
187061
|
remediationDesc?: Maybe<Scalars['String']['output']>;
|
|
186639
187062
|
remediationFrequency?: Maybe<Scalars['String']['output']>;
|
|
187063
|
+
remediationId?: Maybe<Scalars['ID']['output']>;
|
|
186640
187064
|
remediationType?: Maybe<PsmSensorRemediationType>;
|
|
186641
187065
|
sensorId?: Maybe<Scalars['String']['output']>;
|
|
186642
187066
|
triggerCondition?: Maybe<Scalars['String']['output']>;
|
|
@@ -187261,7 +187685,6 @@ export type Query = {
|
|
|
187261
187685
|
agentWorkspace_skillCategoriesInProject?: Maybe<AgentWorkspaceProjectSkillCategoryConnection>;
|
|
187262
187686
|
agentWorkspace_skills?: Maybe<AgentWorkspaceSkillConnection>;
|
|
187263
187687
|
agentWorkspace_skillsInCategory?: Maybe<AgentWorkspaceSkillConnection>;
|
|
187264
|
-
agentWorkspace_smartRoutingConfig?: Maybe<AgentWorkspaceSmartRoutingConfig>;
|
|
187265
187688
|
agentWorkspace_smartRoutingDryRun?: Maybe<AgentWorkspaceSmartRoutingDryRun>;
|
|
187266
187689
|
agentWorkspace_smartRoutingDryRunTickets?: Maybe<AgentWorkspaceSmartRoutingDryRunTicketsPayload>;
|
|
187267
187690
|
agentWorkspace_teamCapacities?: Maybe<Array<AgentWorkspaceTeamCapacity>>;
|
|
@@ -187274,7 +187697,7 @@ export type Query = {
|
|
|
187274
187697
|
agentWorkspace_utilizationForPendingChanges?: Maybe<Array<AgentWorkspaceAgentUtilizationForPendingChanges>>;
|
|
187275
187698
|
agentWorkspace_wfoSummaryView?: Maybe<AgentWorkspaceWfoSummaryViewResult>;
|
|
187276
187699
|
agentWorkspace_wfoSummaryViewByProjectKey?: Maybe<AgentWorkspaceWfoSummaryViewByProjectKeyResult>;
|
|
187277
|
-
agentWorkspace_workforceTeamAccessLevels?: Maybe<
|
|
187700
|
+
agentWorkspace_workforceTeamAccessLevels?: Maybe<AgentWorkspaceWorkforceTeamAccessLevelsPayload>;
|
|
187278
187701
|
agentWorkspace_workloadJqlConfig?: Maybe<AgentWorkspaceWorkloadJqlConfig>;
|
|
187279
187702
|
agent_sessionAssociationQuery?: Maybe<AgentSessionAssociationConnection>;
|
|
187280
187703
|
agent_sessionQuery?: Maybe<AgentSessionConnection>;
|
|
@@ -188067,6 +188490,7 @@ export type Query = {
|
|
|
188067
188490
|
graphInference_inferredProjectMe?: Maybe<GraphInferenceInferredProjectMeResponse>;
|
|
188068
188491
|
graphInference_inferredProjectSummaries?: Maybe<GraphInferenceInferredProjectSummariesResponse>;
|
|
188069
188492
|
graphIntegration_availableTwgCapabilityContainers?: Maybe<Array<Maybe<GraphIntegrationTwgCapabilityContainerMeta>>>;
|
|
188493
|
+
graphIntegration_cloneCandidateSkill?: Maybe<GraphIntegrationSkill>;
|
|
188070
188494
|
graphIntegration_componentDirectoryDimensions?: Maybe<GraphIntegrationDirectoryFilterDimensionConnection>;
|
|
188071
188495
|
graphIntegration_componentDirectoryItems?: Maybe<GraphIntegrationDirectoryItemConnection>;
|
|
188072
188496
|
graphIntegration_customAuth?: Maybe<GraphIntegrationCustomAuthNode>;
|
|
@@ -188085,6 +188509,7 @@ export type Query = {
|
|
|
188085
188509
|
graphIntegration_mcpServers?: Maybe<Array<Maybe<GraphIntegrationMcpServerNode>>>;
|
|
188086
188510
|
graphIntegration_mcpTools?: Maybe<Array<Maybe<GraphIntegrationMcpToolNode>>>;
|
|
188087
188511
|
graphIntegration_rbacRecords?: Maybe<Array<GraphIntegrationRbacRecord>>;
|
|
188512
|
+
graphIntegration_resolveSkillCloneLink?: Maybe<GraphIntegrationResolveSkillCloneLinkPayload>;
|
|
188088
188513
|
graphIntegration_skill?: Maybe<GraphIntegrationSkill>;
|
|
188089
188514
|
graphIntegration_skillDimensionMetadata?: Maybe<GraphIntegrationSkillDimensionMetadata>;
|
|
188090
188515
|
graphIntegration_skillItems?: Maybe<Array<Maybe<GraphIntegrationSkillItem>>>;
|
|
@@ -188258,6 +188683,8 @@ export type Query = {
|
|
|
188258
188683
|
graphStoreV2_atlassianUserHasConfluenceMeetingNotesFolderInverse?: Maybe<GraphStoreV2SimplifiedAtlassianUserHasConfluenceMeetingNotesFolderInverseConnection>;
|
|
188259
188684
|
graphStoreV2_atlassianUserHasExternalPosition?: Maybe<GraphStoreV2SimplifiedAtlassianUserHasExternalPositionConnection>;
|
|
188260
188685
|
graphStoreV2_atlassianUserHasExternalPositionInverse?: Maybe<GraphStoreV2SimplifiedAtlassianUserHasExternalPositionInverseConnection>;
|
|
188686
|
+
graphStoreV2_atlassianUserHasPendingApprovalOnJiraWorkItem?: Maybe<GraphStoreV2SimplifiedAtlassianUserHasPendingApprovalOnJiraWorkItemConnection>;
|
|
188687
|
+
graphStoreV2_atlassianUserHasPendingApprovalOnJiraWorkItemInverse?: Maybe<GraphStoreV2SimplifiedAtlassianUserHasPendingApprovalOnJiraWorkItemInverseConnection>;
|
|
188261
188688
|
graphStoreV2_atlassianUserHasRelevantJiraSpace?: Maybe<GraphStoreV2SimplifiedAtlassianUserHasRelevantJiraSpaceConnection>;
|
|
188262
188689
|
graphStoreV2_atlassianUserHasRelevantJiraSpaceInverse?: Maybe<GraphStoreV2SimplifiedAtlassianUserHasRelevantJiraSpaceInverseConnection>;
|
|
188263
188690
|
graphStoreV2_atlassianUserInvitedToLoomMeeting?: Maybe<GraphStoreV2SimplifiedAtlassianUserInvitedToLoomMeetingConnection>;
|
|
@@ -189108,6 +189535,8 @@ export type Query = {
|
|
|
189108
189535
|
graphStore_atlassianUserDismissedJiraForYouRecommendationEntityInverseBatch?: Maybe<GraphStoreBatchAtlassianUserDismissedJiraForYouRecommendationEntityConnection>;
|
|
189109
189536
|
graphStore_atlassianUserFollowsAtlassianHomeTag?: Maybe<GraphStoreSimplifiedAtlassianUserFollowsAtlassianHomeTagConnection>;
|
|
189110
189537
|
graphStore_atlassianUserFollowsAtlassianHomeTagInverse?: Maybe<GraphStoreSimplifiedAtlassianUserFollowsAtlassianHomeTagInverseConnection>;
|
|
189538
|
+
graphStore_atlassianUserHasPendingApprovalOnJiraWorkItem?: Maybe<GraphStoreSimplifiedAtlassianUserHasPendingApprovalOnJiraWorkItemConnection>;
|
|
189539
|
+
graphStore_atlassianUserHasPendingApprovalOnJiraWorkItemInverse?: Maybe<GraphStoreSimplifiedAtlassianUserHasPendingApprovalOnJiraWorkItemInverseConnection>;
|
|
189111
189540
|
graphStore_atlassianUserInvitedToLoomMeeting?: Maybe<GraphStoreSimplifiedAtlassianUserInvitedToLoomMeetingConnection>;
|
|
189112
189541
|
graphStore_atlassianUserInvitedToLoomMeetingBatch?: Maybe<GraphStoreBatchAtlassianUserInvitedToLoomMeetingConnection>;
|
|
189113
189542
|
graphStore_atlassianUserInvitedToLoomMeetingInverse?: Maybe<GraphStoreSimplifiedAtlassianUserInvitedToLoomMeetingInverseConnection>;
|
|
@@ -190359,6 +190788,7 @@ export type Query = {
|
|
|
190359
190788
|
jira_projectLevelSidebarMenuCustomization?: Maybe<JiraProjectLevelSidebarMenuCustomizationResult>;
|
|
190360
190789
|
jira_projectTypesByIds?: Maybe<Array<Maybe<JiraProjectTypeDetails>>>;
|
|
190361
190790
|
jira_projectsSidebarMenu?: Maybe<JiraProjectsSidebarMenu>;
|
|
190791
|
+
jira_releaseDriversForProject?: Maybe<JiraVersionDriverOptionConnection>;
|
|
190362
190792
|
jira_rovoEnablementStatus?: Maybe<JiraRovoEnablementStatus>;
|
|
190363
190793
|
jira_sprintField?: Maybe<JiraJqlField>;
|
|
190364
190794
|
jira_subtaskCreationAdditionalServices?: Maybe<JiraIssueCreateAdditionalServicesResult>;
|
|
@@ -190665,6 +191095,7 @@ export type Query = {
|
|
|
190665
191095
|
psm_device?: Maybe<PsmDevice>;
|
|
190666
191096
|
psm_devices?: Maybe<PsmDeviceConnection>;
|
|
190667
191097
|
psm_eligibleUsersList?: Maybe<PsmEligibleUsersListResult>;
|
|
191098
|
+
psm_filters?: Maybe<PsmScreenFilterResult>;
|
|
190668
191099
|
psm_onboardTenantStatus?: Maybe<PsmOnboardTenantStatusResult>;
|
|
190669
191100
|
psm_sensorCategories?: Maybe<PsmSensorCategoriesResult>;
|
|
190670
191101
|
psm_sensorDetails?: Maybe<PsmSensorConfigResult>;
|
|
@@ -191898,9 +192329,6 @@ export type QueryAgentWorkspace_SkillsInCategoryArgs = {
|
|
|
191898
192329
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
191899
192330
|
query?: InputMaybe<Scalars['String']['input']>;
|
|
191900
192331
|
};
|
|
191901
|
-
export type QueryAgentWorkspace_SmartRoutingConfigArgs = {
|
|
191902
|
-
projectAri: Scalars['ID']['input'];
|
|
191903
|
-
};
|
|
191904
192332
|
export type QueryAgentWorkspace_SmartRoutingDryRunArgs = {
|
|
191905
192333
|
cloudId: Scalars['ID']['input'];
|
|
191906
192334
|
projectKey: Scalars['String']['input'];
|
|
@@ -192252,7 +192680,7 @@ export type QueryAquaOutgoingEmailLogsArgs = {
|
|
|
192252
192680
|
cloudId: Scalars['ID']['input'];
|
|
192253
192681
|
};
|
|
192254
192682
|
export type QueryArtifact_GetArtifactArgs = {
|
|
192255
|
-
|
|
192683
|
+
input: ArtifactGetInput;
|
|
192256
192684
|
};
|
|
192257
192685
|
export type QueryAssetsDm_AdaptersArgs = {
|
|
192258
192686
|
cloudId: Scalars['ID']['input'];
|
|
@@ -195609,6 +196037,9 @@ export type QueryGraphIntegration_AvailableTwgCapabilityContainersArgs = {
|
|
|
195609
196037
|
contextAri: Scalars['ID']['input'];
|
|
195610
196038
|
includeEnabledToolCount?: Scalars['Boolean']['input'];
|
|
195611
196039
|
};
|
|
196040
|
+
export type QueryGraphIntegration_CloneCandidateSkillArgs = {
|
|
196041
|
+
input: GraphIntegrationCloneCandidateSkillInput;
|
|
196042
|
+
};
|
|
195612
196043
|
export type QueryGraphIntegration_ComponentDirectoryDimensionsArgs = {
|
|
195613
196044
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
195614
196045
|
cloudId: Scalars['ID']['input'];
|
|
@@ -195700,6 +196131,9 @@ export type QueryGraphIntegration_RbacRecordsArgs = {
|
|
|
195700
196131
|
resourceAri: Scalars['ID']['input'];
|
|
195701
196132
|
workspaceAri: Scalars['ID']['input'];
|
|
195702
196133
|
};
|
|
196134
|
+
export type QueryGraphIntegration_ResolveSkillCloneLinkArgs = {
|
|
196135
|
+
input: GraphIntegrationResolveSkillCloneLinkInput;
|
|
196136
|
+
};
|
|
195703
196137
|
export type QueryGraphIntegration_SkillArgs = {
|
|
195704
196138
|
contextAri: Scalars['ID']['input'];
|
|
195705
196139
|
resolvePlatformToolNames?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -196881,6 +197315,20 @@ export type QueryGraphStoreV2_AtlassianUserHasExternalPositionInverseArgs = {
|
|
|
196881
197315
|
id: Scalars['ID']['input'];
|
|
196882
197316
|
sort?: InputMaybe<GraphStoreV2AtlassianUserHasExternalPositionSortInput>;
|
|
196883
197317
|
};
|
|
197318
|
+
export type QueryGraphStoreV2_AtlassianUserHasPendingApprovalOnJiraWorkItemArgs = {
|
|
197319
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
197320
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
197321
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
197322
|
+
id: Scalars['ID']['input'];
|
|
197323
|
+
sort?: InputMaybe<GraphStoreV2AtlassianUserHasPendingApprovalOnJiraWorkItemSortInput>;
|
|
197324
|
+
};
|
|
197325
|
+
export type QueryGraphStoreV2_AtlassianUserHasPendingApprovalOnJiraWorkItemInverseArgs = {
|
|
197326
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
197327
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
197328
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
197329
|
+
id: Scalars['ID']['input'];
|
|
197330
|
+
sort?: InputMaybe<GraphStoreV2AtlassianUserHasPendingApprovalOnJiraWorkItemSortInput>;
|
|
197331
|
+
};
|
|
196884
197332
|
export type QueryGraphStoreV2_AtlassianUserHasRelevantJiraSpaceArgs = {
|
|
196885
197333
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
196886
197334
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -202961,6 +203409,22 @@ export type QueryGraphStore_AtlassianUserFollowsAtlassianHomeTagInverseArgs = {
|
|
|
202961
203409
|
queryContext?: InputMaybe<Scalars['String']['input']>;
|
|
202962
203410
|
sort?: InputMaybe<GraphStoreAtlassianUserFollowsAtlassianHomeTagSortInput>;
|
|
202963
203411
|
};
|
|
203412
|
+
export type QueryGraphStore_AtlassianUserHasPendingApprovalOnJiraWorkItemArgs = {
|
|
203413
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
203414
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
203415
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
203416
|
+
id: Scalars['ID']['input'];
|
|
203417
|
+
queryContext?: InputMaybe<Scalars['String']['input']>;
|
|
203418
|
+
sort?: InputMaybe<GraphStoreAtlassianUserHasPendingApprovalOnJiraWorkItemSortInput>;
|
|
203419
|
+
};
|
|
203420
|
+
export type QueryGraphStore_AtlassianUserHasPendingApprovalOnJiraWorkItemInverseArgs = {
|
|
203421
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
203422
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
203423
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
203424
|
+
id: Scalars['ID']['input'];
|
|
203425
|
+
queryContext?: InputMaybe<Scalars['String']['input']>;
|
|
203426
|
+
sort?: InputMaybe<GraphStoreAtlassianUserHasPendingApprovalOnJiraWorkItemSortInput>;
|
|
203427
|
+
};
|
|
202964
203428
|
export type QueryGraphStore_AtlassianUserInvitedToLoomMeetingArgs = {
|
|
202965
203429
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
202966
203430
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -212187,6 +212651,11 @@ export type QueryJira_ProjectsSidebarMenuArgs = {
|
|
|
212187
212651
|
cloudId: Scalars['ID']['input'];
|
|
212188
212652
|
currentURL?: InputMaybe<Scalars['URL']['input']>;
|
|
212189
212653
|
};
|
|
212654
|
+
export type QueryJira_ReleaseDriversForProjectArgs = {
|
|
212655
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
212656
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
212657
|
+
projectId: Scalars['ID']['input'];
|
|
212658
|
+
};
|
|
212190
212659
|
export type QueryJira_RovoEnablementStatusArgs = {
|
|
212191
212660
|
cloudId: Scalars['ID']['input'];
|
|
212192
212661
|
};
|
|
@@ -213356,6 +213825,7 @@ export type QueryPsm_DeviceArgs = {
|
|
|
213356
213825
|
export type QueryPsm_DevicesArgs = {
|
|
213357
213826
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
213358
213827
|
cloudId: Scalars['ID']['input'];
|
|
213828
|
+
filter?: InputMaybe<PsmDevicesFilter>;
|
|
213359
213829
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
213360
213830
|
spaceId: Scalars['ID']['input'];
|
|
213361
213831
|
};
|
|
@@ -213363,6 +213833,11 @@ export type QueryPsm_EligibleUsersListArgs = {
|
|
|
213363
213833
|
cloudId: Scalars['ID']['input'];
|
|
213364
213834
|
input: PsmEligibleUsersListInput;
|
|
213365
213835
|
};
|
|
213836
|
+
export type QueryPsm_FiltersArgs = {
|
|
213837
|
+
cloudId: Scalars['ID']['input'];
|
|
213838
|
+
screen: PsmFilterScreen;
|
|
213839
|
+
spaceId: Scalars['ID']['input'];
|
|
213840
|
+
};
|
|
213366
213841
|
export type QueryPsm_OnboardTenantStatusArgs = {
|
|
213367
213842
|
cloudId: Scalars['ID']['input'];
|
|
213368
213843
|
input: PsmOnboardTenantStatusInput;
|
|
@@ -214814,6 +215289,11 @@ export type RadarDateFieldValue = {
|
|
|
214814
215289
|
export type RadarDeleteAiConnectorsInput = {
|
|
214815
215290
|
ids: Array<Scalars['ID']['input']>;
|
|
214816
215291
|
};
|
|
215292
|
+
export type RadarDeleteAllAiConnectorsResponse = {
|
|
215293
|
+
__typename?: 'RadarDeleteAllAiConnectorsResponse';
|
|
215294
|
+
deletedConnectorCount: Scalars['Int']['output'];
|
|
215295
|
+
deletedConnectorIds: Array<Scalars['ID']['output']>;
|
|
215296
|
+
};
|
|
214817
215297
|
export type RadarDeleteConnectorInput = {
|
|
214818
215298
|
connectorId: Scalars['ID']['input'];
|
|
214819
215299
|
};
|
|
@@ -224041,6 +224521,7 @@ export declare enum StakeholderCommsComponentSuppressionReason {
|
|
|
224041
224521
|
BelowThreshold = "BELOW_THRESHOLD",
|
|
224042
224522
|
EngineError = "ENGINE_ERROR",
|
|
224043
224523
|
FeatureDisabled = "FEATURE_DISABLED",
|
|
224524
|
+
InvalidInput = "INVALID_INPUT",
|
|
224044
224525
|
NoComponentsConfigured = "NO_COMPONENTS_CONFIGURED"
|
|
224045
224526
|
}
|
|
224046
224527
|
export declare enum StakeholderCommsComponentType {
|
|
@@ -230687,6 +231168,7 @@ export type TownsquareProject = HasMercuryProjectFields & Node & {
|
|
|
230687
231168
|
mercuryProjectStatus?: Maybe<MercuryProjectStatus>;
|
|
230688
231169
|
mercuryProjectType?: Maybe<MercuryProjectType>;
|
|
230689
231170
|
mercuryProjectUrl?: Maybe<Scalars['URL']['output']>;
|
|
231171
|
+
mercuryStartDate?: Maybe<Scalars['DateTime']['output']>;
|
|
230690
231172
|
mercuryTargetDate?: Maybe<Scalars['String']['output']>;
|
|
230691
231173
|
mercuryTargetDateEnd?: Maybe<Scalars['DateTime']['output']>;
|
|
230692
231174
|
mercuryTargetDateStart?: Maybe<Scalars['DateTime']['output']>;
|
|
@@ -232864,6 +233346,26 @@ export type TrelloAdministeredPaidWorkspacesUpdated = {
|
|
|
232864
233346
|
__typename?: 'TrelloAdministeredPaidWorkspacesUpdated';
|
|
232865
233347
|
id: Scalars['ID']['output'];
|
|
232866
233348
|
};
|
|
233349
|
+
export type TrelloAgentMessage = {
|
|
233350
|
+
__typename?: 'TrelloAgentMessage';
|
|
233351
|
+
content: Scalars['String']['output'];
|
|
233352
|
+
id: Scalars['ID']['output'];
|
|
233353
|
+
role: TrelloAgentMessageRole;
|
|
233354
|
+
taskId?: Maybe<Scalars['ID']['output']>;
|
|
233355
|
+
};
|
|
233356
|
+
export type TrelloAgentMessageEdgeUpdated = {
|
|
233357
|
+
__typename?: 'TrelloAgentMessageEdgeUpdated';
|
|
233358
|
+
node: TrelloAgentMessage;
|
|
233359
|
+
};
|
|
233360
|
+
export declare enum TrelloAgentMessageRole {
|
|
233361
|
+
Agent = "AGENT",
|
|
233362
|
+
Unspecified = "UNSPECIFIED",
|
|
233363
|
+
User = "USER"
|
|
233364
|
+
}
|
|
233365
|
+
export type TrelloAgentMessageUpdatedConnection = {
|
|
233366
|
+
__typename?: 'TrelloAgentMessageUpdatedConnection';
|
|
233367
|
+
edges?: Maybe<Array<TrelloAgentMessageEdgeUpdated>>;
|
|
233368
|
+
};
|
|
232867
233369
|
export type TrelloAgentSessionUpdated = TrelloStatefulSessionUpdated & {
|
|
232868
233370
|
__typename?: 'TrelloAgentSessionUpdated';
|
|
232869
233371
|
_deltas?: Maybe<Array<Scalars['String']['output']>>;
|
|
@@ -232897,12 +233399,13 @@ export declare enum TrelloAgentTaskState {
|
|
|
232897
233399
|
}
|
|
232898
233400
|
export type TrelloAgentTaskStatus = {
|
|
232899
233401
|
__typename?: 'TrelloAgentTaskStatus';
|
|
232900
|
-
message?: Maybe<
|
|
233402
|
+
message?: Maybe<TrelloAgentMessage>;
|
|
232901
233403
|
state: TrelloAgentTaskState;
|
|
232902
233404
|
timestamp: Scalars['DateTime']['output'];
|
|
232903
233405
|
};
|
|
232904
233406
|
export type TrelloAgentTaskUpdated = {
|
|
232905
233407
|
__typename?: 'TrelloAgentTaskUpdated';
|
|
233408
|
+
history?: Maybe<TrelloAgentMessageUpdatedConnection>;
|
|
232906
233409
|
id: Scalars['ID']['output'];
|
|
232907
233410
|
key?: Maybe<Scalars['String']['output']>;
|
|
232908
233411
|
sessionId?: Maybe<Scalars['ID']['output']>;
|
|
@@ -235872,6 +236375,7 @@ export type TrelloInitializeVoiceCaptureSessionInput = {
|
|
|
235872
236375
|
export type TrelloInitializeVoiceCaptureSessionPayload = Payload & {
|
|
235873
236376
|
__typename?: 'TrelloInitializeVoiceCaptureSessionPayload';
|
|
235874
236377
|
errors?: Maybe<Array<MutationError>>;
|
|
236378
|
+
maximumCardLimit?: Maybe<Scalars['Int']['output']>;
|
|
235875
236379
|
objectId?: Maybe<Scalars['ID']['output']>;
|
|
235876
236380
|
sessionId?: Maybe<Scalars['ID']['output']>;
|
|
235877
236381
|
success: Scalars['Boolean']['output'];
|
|
@@ -239777,6 +240281,7 @@ export type TrelloWorkspace = Node & {
|
|
|
239777
240281
|
description?: Maybe<Scalars['String']['output']>;
|
|
239778
240282
|
displayBoardCount?: Maybe<Scalars['Int']['output']>;
|
|
239779
240283
|
displayName?: Maybe<Scalars['String']['output']>;
|
|
240284
|
+
eligibleForTrial?: Maybe<Scalars['Boolean']['output']>;
|
|
239780
240285
|
enterprise?: Maybe<TrelloEnterprise>;
|
|
239781
240286
|
entitlement?: Maybe<CcpEntitlement>;
|
|
239782
240287
|
iconEmoji?: Maybe<Scalars['String']['output']>;
|