@forge/cli-shared 9.2.0-next.3-experimental-fda9df6 → 9.2.0-next.3-experimental-0949616
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 +2 -2
- package/out/graphql/graphql-types.d.ts +747 -22
- package/out/graphql/graphql-types.d.ts.map +1 -1
- package/out/graphql/graphql-types.js +139 -48
- package/package.json +2 -2
|
@@ -813,6 +813,7 @@ export type AiOpsTriggerInvestigationInput = {
|
|
|
813
813
|
agentic?: InputMaybe<Scalars['Boolean']['input']>;
|
|
814
814
|
inScopeServiceIds: Array<Scalars['ID']['input']>;
|
|
815
815
|
rcaMode?: InputMaybe<AiOpsRcaMode>;
|
|
816
|
+
rerun?: InputMaybe<Scalars['Boolean']['input']>;
|
|
816
817
|
sourceEntityId: Scalars['ID']['input'];
|
|
817
818
|
sourceEntityType: AiOpsInvestigationSourceEntityType;
|
|
818
819
|
userContext?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -6067,6 +6068,23 @@ export type AgentStudioAgentUsePermissionSettings = {
|
|
|
6067
6068
|
etag?: Maybe<Scalars['String']['output']>;
|
|
6068
6069
|
mode?: Maybe<AgentStudioUsePermissionMode>;
|
|
6069
6070
|
};
|
|
6071
|
+
export type AgentStudioAgentValueConfig = {
|
|
6072
|
+
__typename?: 'AgentStudioAgentValueConfig';
|
|
6073
|
+
agentId?: Maybe<Scalars['ID']['output']>;
|
|
6074
|
+
customMeasurementLabel?: Maybe<Scalars['String']['output']>;
|
|
6075
|
+
customUnitLabel?: Maybe<Scalars['String']['output']>;
|
|
6076
|
+
unitValue?: Maybe<Scalars['String']['output']>;
|
|
6077
|
+
valueType?: Maybe<AgentStudioAgentValueType>;
|
|
6078
|
+
};
|
|
6079
|
+
export type AgentStudioAgentValueConfigResult = AgentStudioAgentValueConfig | QueryError;
|
|
6080
|
+
export declare enum AgentStudioAgentValueType {
|
|
6081
|
+
ComplianceChecks = "COMPLIANCE_CHECKS",
|
|
6082
|
+
CostSavings = "COST_SAVINGS",
|
|
6083
|
+
Custom = "CUSTOM",
|
|
6084
|
+
DeflectedTickets = "DEFLECTED_TICKETS",
|
|
6085
|
+
PipelineGrowth = "PIPELINE_GROWTH",
|
|
6086
|
+
TimeSavings = "TIME_SAVINGS"
|
|
6087
|
+
}
|
|
6070
6088
|
export type AgentStudioAgentVersion = {
|
|
6071
6089
|
__typename?: 'AgentStudioAgentVersion';
|
|
6072
6090
|
id: Scalars['ID']['output'];
|
|
@@ -6513,6 +6531,11 @@ export type AgentStudioCreateScenarioPayload = Payload & {
|
|
|
6513
6531
|
scenario?: Maybe<AgentStudioScenario>;
|
|
6514
6532
|
success: Scalars['Boolean']['output'];
|
|
6515
6533
|
};
|
|
6534
|
+
export type AgentStudioCustomValueConfigInput = {
|
|
6535
|
+
customMeasurementLabel: Scalars['String']['input'];
|
|
6536
|
+
customUnitLabel: Scalars['String']['input'];
|
|
6537
|
+
unitValue: Scalars['String']['input'];
|
|
6538
|
+
};
|
|
6516
6539
|
export type AgentStudioDataset = {
|
|
6517
6540
|
__typename?: 'AgentStudioDataset';
|
|
6518
6541
|
count?: Maybe<Scalars['Int']['output']>;
|
|
@@ -6953,6 +6976,17 @@ export type AgentStudioPortalChannel = AgentStudioChannel & {
|
|
|
6953
6976
|
connected?: Maybe<Scalars['Boolean']['output']>;
|
|
6954
6977
|
url?: Maybe<Scalars['String']['output']>;
|
|
6955
6978
|
};
|
|
6979
|
+
export type AgentStudioPresetValueConfigInput = {
|
|
6980
|
+
unitValue: Scalars['String']['input'];
|
|
6981
|
+
valueType: AgentStudioPresetValueType;
|
|
6982
|
+
};
|
|
6983
|
+
export declare enum AgentStudioPresetValueType {
|
|
6984
|
+
ComplianceChecks = "COMPLIANCE_CHECKS",
|
|
6985
|
+
CostSavings = "COST_SAVINGS",
|
|
6986
|
+
DeflectedTickets = "DEFLECTED_TICKETS",
|
|
6987
|
+
PipelineGrowth = "PIPELINE_GROWTH",
|
|
6988
|
+
TimeSavings = "TIME_SAVINGS"
|
|
6989
|
+
}
|
|
6956
6990
|
export type AgentStudioProductAriAgentResult = {
|
|
6957
6991
|
__typename?: 'AgentStudioProductAriAgentResult';
|
|
6958
6992
|
agent?: Maybe<AgentStudioAgentResult>;
|
|
@@ -7490,6 +7524,16 @@ export type AgentStudioUpdateAgentUsePermissionSettingsInput = {
|
|
|
7490
7524
|
etag?: InputMaybe<Scalars['String']['input']>;
|
|
7491
7525
|
mode?: InputMaybe<AgentStudioUsePermissionMode>;
|
|
7492
7526
|
};
|
|
7527
|
+
export type AgentStudioUpdateAgentValueConfigInput = {
|
|
7528
|
+
custom?: InputMaybe<AgentStudioCustomValueConfigInput>;
|
|
7529
|
+
preset?: InputMaybe<AgentStudioPresetValueConfigInput>;
|
|
7530
|
+
};
|
|
7531
|
+
export type AgentStudioUpdateAgentValueConfigPayload = Payload & {
|
|
7532
|
+
__typename?: 'AgentStudioUpdateAgentValueConfigPayload';
|
|
7533
|
+
errors?: Maybe<Array<MutationError>>;
|
|
7534
|
+
success: Scalars['Boolean']['output'];
|
|
7535
|
+
valueConfig?: Maybe<AgentStudioAgentValueConfig>;
|
|
7536
|
+
};
|
|
7493
7537
|
export type AgentStudioUpdateAgentVerificationPayload = Payload & {
|
|
7494
7538
|
__typename?: 'AgentStudioUpdateAgentVerificationPayload';
|
|
7495
7539
|
agent?: Maybe<AgentStudioAgent>;
|
|
@@ -7852,6 +7896,7 @@ export declare enum AgentWorkspaceBulkImportJobStatus {
|
|
|
7852
7896
|
}
|
|
7853
7897
|
export type AgentWorkspaceBulkUpsertDraftedRoutingTableEntriesInput = {
|
|
7854
7898
|
cloudId: Scalars['ID']['input'];
|
|
7899
|
+
draftId?: InputMaybe<Scalars['ID']['input']>;
|
|
7855
7900
|
entries: Array<AgentWorkspaceBulkUpsertDraftedRoutingTableEntryInput>;
|
|
7856
7901
|
projectKey: Scalars['String']['input'];
|
|
7857
7902
|
};
|
|
@@ -7931,6 +7976,38 @@ export type AgentWorkspaceCapacitySummary = {
|
|
|
7931
7976
|
totalUnassignedWorkItems: Scalars['Int']['output'];
|
|
7932
7977
|
totalUtilizationPercent: Scalars['Float']['output'];
|
|
7933
7978
|
};
|
|
7979
|
+
export declare enum AgentWorkspaceConfigurableRoutingInput {
|
|
7980
|
+
Availability = "AVAILABILITY",
|
|
7981
|
+
Capacity = "CAPACITY",
|
|
7982
|
+
Schedule = "SCHEDULE",
|
|
7983
|
+
Skills = "SKILLS"
|
|
7984
|
+
}
|
|
7985
|
+
export type AgentWorkspaceConfigurableRoutingInputSetting = {
|
|
7986
|
+
__typename?: 'AgentWorkspaceConfigurableRoutingInputSetting';
|
|
7987
|
+
enabled: Scalars['Boolean']['output'];
|
|
7988
|
+
input: AgentWorkspaceConfigurableRoutingInput;
|
|
7989
|
+
};
|
|
7990
|
+
export type AgentWorkspaceConfigurableRoutingInputUpdate = {
|
|
7991
|
+
enabled: Scalars['Boolean']['input'];
|
|
7992
|
+
input: AgentWorkspaceConfigurableRoutingInput;
|
|
7993
|
+
};
|
|
7994
|
+
export declare enum AgentWorkspaceConfigurableRoutingTrigger {
|
|
7995
|
+
IssueCreated = "ISSUE_CREATED",
|
|
7996
|
+
IssueMoved = "ISSUE_MOVED",
|
|
7997
|
+
IssueReopened = "ISSUE_REOPENED",
|
|
7998
|
+
IssueUpdated = "ISSUE_UPDATED",
|
|
7999
|
+
ServiceUpdated = "SERVICE_UPDATED",
|
|
8000
|
+
TeamUpdated = "TEAM_UPDATED"
|
|
8001
|
+
}
|
|
8002
|
+
export type AgentWorkspaceConfigurableRoutingTriggerSetting = {
|
|
8003
|
+
__typename?: 'AgentWorkspaceConfigurableRoutingTriggerSetting';
|
|
8004
|
+
enabled: Scalars['Boolean']['output'];
|
|
8005
|
+
trigger: AgentWorkspaceConfigurableRoutingTrigger;
|
|
8006
|
+
};
|
|
8007
|
+
export type AgentWorkspaceConfigurableRoutingTriggerUpdate = {
|
|
8008
|
+
enabled: Scalars['Boolean']['input'];
|
|
8009
|
+
trigger: AgentWorkspaceConfigurableRoutingTrigger;
|
|
8010
|
+
};
|
|
7934
8011
|
export type AgentWorkspaceConfusionMatrix = {
|
|
7935
8012
|
__typename?: 'AgentWorkspaceConfusionMatrix';
|
|
7936
8013
|
falseNegatives: Scalars['Int']['output'];
|
|
@@ -8899,10 +8976,12 @@ export type AgentWorkspaceSkillUpdatePayload = {
|
|
|
8899
8976
|
export type AgentWorkspaceSmartRoutingConfig = {
|
|
8900
8977
|
__typename?: 'AgentWorkspaceSmartRoutingConfig';
|
|
8901
8978
|
enabled: Scalars['Boolean']['output'];
|
|
8979
|
+
inputs: Array<AgentWorkspaceConfigurableRoutingInputSetting>;
|
|
8902
8980
|
serviceFieldId?: Maybe<Scalars['String']['output']>;
|
|
8903
8981
|
serviceFieldName?: Maybe<Scalars['String']['output']>;
|
|
8904
8982
|
serviceFieldType?: Maybe<AgentWorkspaceSmartRoutingServiceFieldType>;
|
|
8905
8983
|
setupVersion: Scalars['Int']['output'];
|
|
8984
|
+
triggers: Array<AgentWorkspaceConfigurableRoutingTriggerSetting>;
|
|
8906
8985
|
warning?: Maybe<Scalars['String']['output']>;
|
|
8907
8986
|
};
|
|
8908
8987
|
export type AgentWorkspaceSmartRoutingDryRun = {
|
|
@@ -9210,6 +9289,20 @@ export type AgentWorkspaceUnassignCoverShiftPayload = {
|
|
|
9210
9289
|
errors?: Maybe<Array<AgentWorkspaceScheduleError>>;
|
|
9211
9290
|
success: Scalars['Boolean']['output'];
|
|
9212
9291
|
};
|
|
9292
|
+
export type AgentWorkspaceUpdateConfigurableRoutingInputsInput = {
|
|
9293
|
+
inputs: Array<AgentWorkspaceConfigurableRoutingInputUpdate>;
|
|
9294
|
+
projectAri: Scalars['ID']['input'];
|
|
9295
|
+
};
|
|
9296
|
+
export type AgentWorkspaceUpdateConfigurableRoutingPayload = {
|
|
9297
|
+
__typename?: 'AgentWorkspaceUpdateConfigurableRoutingPayload';
|
|
9298
|
+
inputs: Array<AgentWorkspaceConfigurableRoutingInputSetting>;
|
|
9299
|
+
success: Scalars['Boolean']['output'];
|
|
9300
|
+
triggers: Array<AgentWorkspaceConfigurableRoutingTriggerSetting>;
|
|
9301
|
+
};
|
|
9302
|
+
export type AgentWorkspaceUpdateConfigurableRoutingTriggersInput = {
|
|
9303
|
+
projectAri: Scalars['ID']['input'];
|
|
9304
|
+
triggers: Array<AgentWorkspaceConfigurableRoutingTriggerUpdate>;
|
|
9305
|
+
};
|
|
9213
9306
|
export type AgentWorkspaceUpdateRoutingConfigInput = {
|
|
9214
9307
|
cloudId: Scalars['ID']['input'];
|
|
9215
9308
|
enabled: Scalars['Boolean']['input'];
|
|
@@ -10457,7 +10550,8 @@ export declare enum AppFeatureKey {
|
|
|
10457
10550
|
HasExposedCredentials = "HAS_EXPOSED_CREDENTIALS",
|
|
10458
10551
|
HasResourceRestrictedToken = "HAS_RESOURCE_RESTRICTED_TOKEN",
|
|
10459
10552
|
IsPersonalApp = "IS_PERSONAL_APP",
|
|
10460
|
-
SupportsCompute = "SUPPORTS_COMPUTE"
|
|
10553
|
+
SupportsCompute = "SUPPORTS_COMPUTE",
|
|
10554
|
+
SupportsCustomEnvironments = "SUPPORTS_CUSTOM_ENVIRONMENTS"
|
|
10461
10555
|
}
|
|
10462
10556
|
export type AppFeaturesExposedCredentialsInput = {
|
|
10463
10557
|
contactLink?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -11818,7 +11912,8 @@ export type AssetsBundle = {
|
|
|
11818
11912
|
export type AssetsBundleInstantiation = {
|
|
11819
11913
|
__typename?: 'AssetsBundleInstantiation';
|
|
11820
11914
|
bundle: AssetsBundle;
|
|
11821
|
-
|
|
11915
|
+
dependencyInstantiatedSchemas?: Maybe<Array<AssetsSchema>>;
|
|
11916
|
+
id?: Maybe<Scalars['ID']['output']>;
|
|
11822
11917
|
instantiatedSchemas?: Maybe<Array<AssetsSchema>>;
|
|
11823
11918
|
};
|
|
11824
11919
|
export type AssetsBundleInstantiationResult = AssetsBundleInstantiation | QueryError;
|
|
@@ -12585,6 +12680,8 @@ export type AssetsDmDataSourceDetails = {
|
|
|
12585
12680
|
canBeScheduled?: Maybe<Scalars['Boolean']['output']>;
|
|
12586
12681
|
dataSourceId?: Maybe<Scalars['ID']['output']>;
|
|
12587
12682
|
dataSourceTypeId: Scalars['Int']['output'];
|
|
12683
|
+
fetchError?: Maybe<AssetsDmDataSourceError>;
|
|
12684
|
+
fetchWarning?: Maybe<Scalars['String']['output']>;
|
|
12588
12685
|
isCloudFetchEnabled?: Maybe<Scalars['Boolean']['output']>;
|
|
12589
12686
|
isTemplate: Scalars['Boolean']['output'];
|
|
12590
12687
|
jobId?: Maybe<Scalars['ID']['output']>;
|
|
@@ -12592,6 +12689,12 @@ export type AssetsDmDataSourceDetails = {
|
|
|
12592
12689
|
objectClassName: Scalars['String']['output'];
|
|
12593
12690
|
schedule?: Maybe<AssetsDmDataSourceSchedule>;
|
|
12594
12691
|
steps: AssetsDmDataSourceSteps;
|
|
12692
|
+
transformError?: Maybe<AssetsDmDataSourceError>;
|
|
12693
|
+
};
|
|
12694
|
+
export type AssetsDmDataSourceError = {
|
|
12695
|
+
__typename?: 'AssetsDMDataSourceError';
|
|
12696
|
+
message: Scalars['String']['output'];
|
|
12697
|
+
stackTrace: Scalars['String']['output'];
|
|
12595
12698
|
};
|
|
12596
12699
|
export type AssetsDmDataSourceFormFields = {
|
|
12597
12700
|
__typename?: 'AssetsDMDataSourceFormFields';
|
|
@@ -14539,6 +14642,7 @@ export type AssetsObjectType = Node & {
|
|
|
14539
14642
|
links?: Maybe<AssetsLinks>;
|
|
14540
14643
|
name?: Maybe<Scalars['String']['output']>;
|
|
14541
14644
|
objectCount?: Maybe<Scalars['Int']['output']>;
|
|
14645
|
+
parentObjectType?: Maybe<AssetsObjectType>;
|
|
14542
14646
|
schema?: Maybe<AssetsSchema>;
|
|
14543
14647
|
sequentialId?: Maybe<Scalars['String']['output']>;
|
|
14544
14648
|
updated?: Maybe<Scalars['DateTime']['output']>;
|
|
@@ -15817,6 +15921,10 @@ export type AssetsVerticalSchemaTemplate = {
|
|
|
15817
15921
|
objectTypeCount?: Maybe<Scalars['Int']['output']>;
|
|
15818
15922
|
type: Scalars['String']['output'];
|
|
15819
15923
|
};
|
|
15924
|
+
export type AssetsVerticalSpaceDetails = {
|
|
15925
|
+
__typename?: 'AssetsVerticalSpaceDetails';
|
|
15926
|
+
key?: Maybe<Scalars['String']['output']>;
|
|
15927
|
+
};
|
|
15820
15928
|
export type AssetsVerticalStatusCount = {
|
|
15821
15929
|
__typename?: 'AssetsVerticalStatusCount';
|
|
15822
15930
|
count?: Maybe<Scalars['Int']['output']>;
|
|
@@ -15939,6 +16047,7 @@ export type AssetsVerticalVerticalInstantiationCategory = {
|
|
|
15939
16047
|
cloudId: Scalars['ID']['output'];
|
|
15940
16048
|
id: Scalars['ID']['output'];
|
|
15941
16049
|
items?: Maybe<AssetsVerticalItemMappingConnection>;
|
|
16050
|
+
spaceDetails?: Maybe<AssetsVerticalSpaceDetails>;
|
|
15942
16051
|
status: AssetsVerticalVerticalInstantiationCategoryStatus;
|
|
15943
16052
|
verticalInstantiationId: Scalars['ID']['output'];
|
|
15944
16053
|
workspaceId: Scalars['ID']['output'];
|
|
@@ -17310,7 +17419,7 @@ export type CcpAllowancePoolAllocationsResponse = {
|
|
|
17310
17419
|
billingEntity?: Maybe<Scalars['String']['output']>;
|
|
17311
17420
|
enforcementDetails?: Maybe<CcpEnforcementDetails>;
|
|
17312
17421
|
enforcementMode?: Maybe<CcpLatestAllowanceEnforcementModeType>;
|
|
17313
|
-
id?: Maybe<Scalars['
|
|
17422
|
+
id?: Maybe<Scalars['ID']['output']>;
|
|
17314
17423
|
latestUsage?: Maybe<Scalars['Float']['output']>;
|
|
17315
17424
|
overageCap?: Maybe<Scalars['Float']['output']>;
|
|
17316
17425
|
poolId?: Maybe<Scalars['String']['output']>;
|
|
@@ -17631,7 +17740,7 @@ export declare enum CcpConcessionAllowedRedemptionMethod {
|
|
|
17631
17740
|
export type CcpConcessionApplicationReasonWithCustomisable = {
|
|
17632
17741
|
__typename?: 'CcpConcessionApplicationReasonWithCustomisable';
|
|
17633
17742
|
customisable?: Maybe<CcpCustomisableApplicationReason>;
|
|
17634
|
-
id?: Maybe<Scalars['
|
|
17743
|
+
id?: Maybe<Scalars['ID']['output']>;
|
|
17635
17744
|
readableName?: Maybe<Scalars['String']['output']>;
|
|
17636
17745
|
};
|
|
17637
17746
|
export type CcpConcessionBenefit = {
|
|
@@ -18040,6 +18149,9 @@ export type CcpEntitlementExperienceCapabilitiesPlaceOrderLiteArgs = {
|
|
|
18040
18149
|
source: Scalars['String']['input'];
|
|
18041
18150
|
targetOffering: CcpPlaceOrderLiteTargetOfferingInput;
|
|
18042
18151
|
};
|
|
18152
|
+
export type CcpEntitlementExperienceCapabilitiesSetUsageLimitArgs = {
|
|
18153
|
+
action?: InputMaybe<CcpSetUsageLimitAction>;
|
|
18154
|
+
};
|
|
18043
18155
|
export type CcpEntitlementOfferingTransition = {
|
|
18044
18156
|
__typename?: 'CcpEntitlementOfferingTransition';
|
|
18045
18157
|
id: Scalars['ID']['output'];
|
|
@@ -18439,7 +18551,7 @@ export type CcpOfferingRelationship = {
|
|
|
18439
18551
|
catalogAccountId?: Maybe<Scalars['String']['output']>;
|
|
18440
18552
|
description?: Maybe<Scalars['String']['output']>;
|
|
18441
18553
|
from?: Maybe<CcpRelationshipNode>;
|
|
18442
|
-
id?: Maybe<Scalars['
|
|
18554
|
+
id?: Maybe<Scalars['ID']['output']>;
|
|
18443
18555
|
relationshipTemplateId?: Maybe<Scalars['String']['output']>;
|
|
18444
18556
|
relationshipType?: Maybe<CcpRelationshipType>;
|
|
18445
18557
|
status?: Maybe<CcpRelationshipStatus>;
|
|
@@ -18816,7 +18928,7 @@ export type CcpPromotionAndOrRuleCondition = {
|
|
|
18816
18928
|
};
|
|
18817
18929
|
export type CcpPromotionApplicationReason = {
|
|
18818
18930
|
__typename?: 'CcpPromotionApplicationReason';
|
|
18819
|
-
id?: Maybe<Scalars['
|
|
18931
|
+
id?: Maybe<Scalars['ID']['output']>;
|
|
18820
18932
|
readableName?: Maybe<Scalars['String']['output']>;
|
|
18821
18933
|
};
|
|
18822
18934
|
export type CcpPromotionApplicationReasonSetLimiter = {
|
|
@@ -18827,7 +18939,7 @@ export type CcpPromotionApplicationReasonSetLimiter = {
|
|
|
18827
18939
|
export type CcpPromotionApplicationReasonWithCustomisable = {
|
|
18828
18940
|
__typename?: 'CcpPromotionApplicationReasonWithCustomisable';
|
|
18829
18941
|
customisable?: Maybe<CcpCustomisableApplicationReason>;
|
|
18830
|
-
id?: Maybe<Scalars['
|
|
18942
|
+
id?: Maybe<Scalars['ID']['output']>;
|
|
18831
18943
|
readableName?: Maybe<Scalars['String']['output']>;
|
|
18832
18944
|
};
|
|
18833
18945
|
export type CcpPromotionBenefit = {
|
|
@@ -19532,6 +19644,10 @@ export type CcpSearchTimestampBoundsInput = {
|
|
|
19532
19644
|
gte?: InputMaybe<Scalars['String']['input']>;
|
|
19533
19645
|
lte?: InputMaybe<Scalars['String']['input']>;
|
|
19534
19646
|
};
|
|
19647
|
+
export declare enum CcpSetUsageLimitAction {
|
|
19648
|
+
Disable = "DISABLE",
|
|
19649
|
+
Set = "SET"
|
|
19650
|
+
}
|
|
19535
19651
|
export type CcpSetUsageLimitExperienceCapability = CommerceExperienceCapability & {
|
|
19536
19652
|
__typename?: 'CcpSetUsageLimitExperienceCapability';
|
|
19537
19653
|
experienceUrl?: Maybe<Scalars['String']['output']>;
|
|
@@ -19600,7 +19716,7 @@ export declare enum CcpSupportedBillingSystems {
|
|
|
19600
19716
|
}
|
|
19601
19717
|
export type CcpTaxId = {
|
|
19602
19718
|
__typename?: 'CcpTaxId';
|
|
19603
|
-
id?: Maybe<Scalars['
|
|
19719
|
+
id?: Maybe<Scalars['ID']['output']>;
|
|
19604
19720
|
label?: Maybe<Scalars['String']['output']>;
|
|
19605
19721
|
taxIdDescription?: Maybe<Scalars['String']['output']>;
|
|
19606
19722
|
taxIdLabel?: Maybe<Scalars['String']['output']>;
|
|
@@ -31128,6 +31244,7 @@ export type ConfluenceContentModified = {
|
|
|
31128
31244
|
inlineReactionHighlightDeleted?: Maybe<ConfluenceInlineReactionHighlightDeleted>;
|
|
31129
31245
|
inlineReactionRemoved?: Maybe<ConfluenceInlineReactionRemoved>;
|
|
31130
31246
|
markdownModeUpdated?: Maybe<ConfluenceMarkdownModeUpdated>;
|
|
31247
|
+
originTabId?: Maybe<Scalars['String']['output']>;
|
|
31131
31248
|
pageBlogified?: Maybe<ConfluencePageBlogified>;
|
|
31132
31249
|
pageMigrated?: Maybe<ConfluencePageMigrated>;
|
|
31133
31250
|
pageMoved?: Maybe<ConfluencePageMoved>;
|
|
@@ -38003,7 +38120,9 @@ export type ContentAnalyticsUnreadComments = {
|
|
|
38003
38120
|
};
|
|
38004
38121
|
export type ContentAnalyticsViewers = {
|
|
38005
38122
|
__typename?: 'ContentAnalyticsViewers';
|
|
38123
|
+
agentCount?: Maybe<Scalars['Int']['output']>;
|
|
38006
38124
|
count: Scalars['Int']['output'];
|
|
38125
|
+
peopleCount?: Maybe<Scalars['Int']['output']>;
|
|
38007
38126
|
};
|
|
38008
38127
|
export type ContentAnalyticsViews = {
|
|
38009
38128
|
__typename?: 'ContentAnalyticsViews';
|
|
@@ -39805,6 +39924,7 @@ export type CreateAppDeploymentInput = {
|
|
|
39805
39924
|
appId: Scalars['ID']['input'];
|
|
39806
39925
|
artifactUrl?: InputMaybe<Scalars['URL']['input']>;
|
|
39807
39926
|
buildTag?: InputMaybe<Scalars['String']['input']>;
|
|
39927
|
+
combinedArtifactUrl?: InputMaybe<Scalars['URL']['input']>;
|
|
39808
39928
|
environmentKey: Scalars['String']['input'];
|
|
39809
39929
|
hostedResourceUploadId?: InputMaybe<Scalars['ID']['input']>;
|
|
39810
39930
|
majorVersion?: InputMaybe<Scalars['Int']['input']>;
|
|
@@ -44741,6 +44861,7 @@ export declare enum DevAiFlowSessionsStatus {
|
|
|
44741
44861
|
Pending = "PENDING"
|
|
44742
44862
|
}
|
|
44743
44863
|
export declare enum DevAiFlowUseCaseId {
|
|
44864
|
+
AgenticPlanning = "AGENTIC_PLANNING",
|
|
44744
44865
|
Automation = "AUTOMATION",
|
|
44745
44866
|
CodeStandards = "CODE_STANDARDS",
|
|
44746
44867
|
Jca = "JCA",
|
|
@@ -52214,6 +52335,46 @@ export type GlanceUserInsights = {
|
|
|
52214
52335
|
type?: Maybe<Scalars['String']['output']>;
|
|
52215
52336
|
updated_at?: Maybe<Scalars['String']['output']>;
|
|
52216
52337
|
};
|
|
52338
|
+
export type GlobalAppEgress = {
|
|
52339
|
+
__typename?: 'GlobalAppEgress';
|
|
52340
|
+
addresses?: Maybe<Array<Scalars['String']['output']>>;
|
|
52341
|
+
category?: Maybe<Scalars['String']['output']>;
|
|
52342
|
+
inScopeEUD?: Maybe<Scalars['Boolean']['output']>;
|
|
52343
|
+
type?: Maybe<Scalars['String']['output']>;
|
|
52344
|
+
};
|
|
52345
|
+
export type GlobalAppExtension = {
|
|
52346
|
+
__typename?: 'GlobalAppExtension';
|
|
52347
|
+
allowsConfigurableEgress?: Maybe<Scalars['Boolean']['output']>;
|
|
52348
|
+
appId: Scalars['String']['output'];
|
|
52349
|
+
appOwner: Scalars['String']['output'];
|
|
52350
|
+
appVersion: Scalars['String']['output'];
|
|
52351
|
+
appVersionId?: Maybe<Scalars['String']['output']>;
|
|
52352
|
+
definitionId: Scalars['String']['output'];
|
|
52353
|
+
description?: Maybe<Scalars['String']['output']>;
|
|
52354
|
+
distributionStatus: Scalars['String']['output'];
|
|
52355
|
+
egress: Array<GlobalAppEgress>;
|
|
52356
|
+
environmentId: Scalars['String']['output'];
|
|
52357
|
+
environmentKey: Scalars['String']['output'];
|
|
52358
|
+
environmentType: Scalars['String']['output'];
|
|
52359
|
+
groupKey: Scalars['String']['output'];
|
|
52360
|
+
installationConfig?: Maybe<Array<GlobalAppInstallationConfig>>;
|
|
52361
|
+
installationTarget?: Maybe<Scalars['String']['output']>;
|
|
52362
|
+
isSystemApp?: Maybe<Scalars['Boolean']['output']>;
|
|
52363
|
+
isSystemUserProvisioned?: Maybe<Scalars['Boolean']['output']>;
|
|
52364
|
+
key?: Maybe<Scalars['String']['output']>;
|
|
52365
|
+
licenseIds?: Maybe<Scalars['JSON']['output']>;
|
|
52366
|
+
manuallyAddedReadMeScope?: Maybe<Scalars['Boolean']['output']>;
|
|
52367
|
+
migrationKeys?: Maybe<Scalars['JSON']['output']>;
|
|
52368
|
+
name?: Maybe<Scalars['String']['output']>;
|
|
52369
|
+
oauthClientId: Scalars['String']['output'];
|
|
52370
|
+
outboundAuthContainerId?: Maybe<Scalars['String']['output']>;
|
|
52371
|
+
principal: GlobalAppPrincipal;
|
|
52372
|
+
properties: Scalars['JSON']['output'];
|
|
52373
|
+
requiresLicense?: Maybe<Scalars['Boolean']['output']>;
|
|
52374
|
+
scopes: Array<Scalars['String']['output']>;
|
|
52375
|
+
securityPolicies: Array<GlobalAppSecurityPolicy>;
|
|
52376
|
+
versionId: Scalars['String']['output'];
|
|
52377
|
+
};
|
|
52217
52378
|
export type GlobalAppExtensionContextInput = {
|
|
52218
52379
|
appVersion: Scalars['String']['input'];
|
|
52219
52380
|
context: Scalars['JSON']['input'];
|
|
@@ -52221,12 +52382,36 @@ export type GlobalAppExtensionContextInput = {
|
|
|
52221
52382
|
extensionType?: InputMaybe<Scalars['String']['input']>;
|
|
52222
52383
|
installationId?: InputMaybe<Scalars['ID']['input']>;
|
|
52223
52384
|
};
|
|
52385
|
+
export type GlobalAppExtensionsResponse = {
|
|
52386
|
+
__typename?: 'GlobalAppExtensionsResponse';
|
|
52387
|
+
extensions?: Maybe<Array<GlobalAppExtension>>;
|
|
52388
|
+
};
|
|
52224
52389
|
export type GlobalAppForgeContextToken = {
|
|
52225
52390
|
__typename?: 'GlobalAppForgeContextToken';
|
|
52226
52391
|
expiresAt: Scalars['String']['output'];
|
|
52227
52392
|
extensionId: Scalars['ID']['output'];
|
|
52228
52393
|
jwt: Scalars['String']['output'];
|
|
52229
52394
|
};
|
|
52395
|
+
export type GlobalAppInstallationConfig = {
|
|
52396
|
+
__typename?: 'GlobalAppInstallationConfig';
|
|
52397
|
+
key: Scalars['String']['output'];
|
|
52398
|
+
value: Scalars['Boolean']['output'];
|
|
52399
|
+
};
|
|
52400
|
+
export type GlobalAppIsProductAdminResponse = {
|
|
52401
|
+
__typename?: 'GlobalAppIsProductAdminResponse';
|
|
52402
|
+
isAdmin: Scalars['Boolean']['output'];
|
|
52403
|
+
};
|
|
52404
|
+
export type GlobalAppPrincipal = {
|
|
52405
|
+
__typename?: 'GlobalAppPrincipal';
|
|
52406
|
+
avatarUrl?: Maybe<Scalars['String']['output']>;
|
|
52407
|
+
id?: Maybe<Scalars['String']['output']>;
|
|
52408
|
+
mentionName?: Maybe<Scalars['String']['output']>;
|
|
52409
|
+
};
|
|
52410
|
+
export type GlobalAppSecurityPolicy = {
|
|
52411
|
+
__typename?: 'GlobalAppSecurityPolicy';
|
|
52412
|
+
policies?: Maybe<Array<Scalars['String']['output']>>;
|
|
52413
|
+
type?: Maybe<Scalars['String']['output']>;
|
|
52414
|
+
};
|
|
52230
52415
|
export type GlobalAppSignForgeContextTokensInput = {
|
|
52231
52416
|
contextIds: Array<Scalars['ID']['input']>;
|
|
52232
52417
|
extensionContexts: Array<GlobalAppExtensionContextInput>;
|
|
@@ -53311,6 +53496,7 @@ export type GraphInferenceGetJiraEntityContextInput = {
|
|
|
53311
53496
|
nodeTypes?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
53312
53497
|
recursionDepth?: InputMaybe<Scalars['Int']['input']>;
|
|
53313
53498
|
sessionId?: InputMaybe<Scalars['String']['input']>;
|
|
53499
|
+
weightVersion?: InputMaybe<Scalars['String']['input']>;
|
|
53314
53500
|
};
|
|
53315
53501
|
export type GraphInferenceGetJiraEntityContextResponse = {
|
|
53316
53502
|
__typename?: 'GraphInferenceGetJiraEntityContextResponse';
|
|
@@ -53461,6 +53647,7 @@ export type GraphInferenceJiraEntityContextMeta = {
|
|
|
53461
53647
|
servedBy: Scalars['String']['output'];
|
|
53462
53648
|
traceId?: Maybe<Scalars['String']['output']>;
|
|
53463
53649
|
warnings: Array<Scalars['String']['output']>;
|
|
53650
|
+
weightVersion: Scalars['String']['output'];
|
|
53464
53651
|
};
|
|
53465
53652
|
export type GraphInferenceJiraEntityContextProperty = {
|
|
53466
53653
|
__typename?: 'GraphInferenceJiraEntityContextProperty';
|
|
@@ -53564,6 +53751,7 @@ export type GraphIntegrationActionDirectoryItem = {
|
|
|
53564
53751
|
displayName: Scalars['String']['output'];
|
|
53565
53752
|
iconUrl?: Maybe<Scalars['String']['output']>;
|
|
53566
53753
|
id: Scalars['ID']['output'];
|
|
53754
|
+
inputSchema?: Maybe<Scalars['JSON']['output']>;
|
|
53567
53755
|
integrationKey?: Maybe<GraphIntegrationDirectoryFilterDimension>;
|
|
53568
53756
|
name: Scalars['String']['output'];
|
|
53569
53757
|
tags: Array<GraphIntegrationDirectoryFilterDimension>;
|
|
@@ -53646,6 +53834,7 @@ export type GraphIntegrationDirectoryFilterDimension = {
|
|
|
53646
53834
|
iconUrl?: Maybe<Scalars['String']['output']>;
|
|
53647
53835
|
id: Scalars['ID']['output'];
|
|
53648
53836
|
relevantFor?: Maybe<GraphIntegrationDirectoryItemType>;
|
|
53837
|
+
templateId?: Maybe<Scalars['String']['output']>;
|
|
53649
53838
|
};
|
|
53650
53839
|
export type GraphIntegrationDirectoryFilterDimensionConnection = {
|
|
53651
53840
|
__typename?: 'GraphIntegrationDirectoryFilterDimensionConnection';
|
|
@@ -116281,6 +116470,7 @@ export type GrowthUnifiedProfileTrialHistoryResult = {
|
|
|
116281
116470
|
export declare enum GrowthUnifiedProfileTrialTrigger {
|
|
116282
116471
|
AutoUpgradeStorageLimit = "AUTO_UPGRADE_STORAGE_LIMIT",
|
|
116283
116472
|
AutoUpgradeUserLimit = "AUTO_UPGRADE_USER_LIMIT",
|
|
116473
|
+
CrossflowReverseTrial = "CROSSFLOW_REVERSE_TRIAL",
|
|
116284
116474
|
CrossflowUserLimit = "CROSSFLOW_USER_LIMIT",
|
|
116285
116475
|
EditionParity = "EDITION_PARITY",
|
|
116286
116476
|
EditionParityAutoProvisioning = "EDITION_PARITY_AUTO_PROVISIONING",
|
|
@@ -117031,6 +117221,7 @@ export type HelpCenterPage = Node & {
|
|
|
117031
117221
|
name?: Maybe<HelpCenterPageName>;
|
|
117032
117222
|
pageLayout?: Maybe<HelpCenterPageLayout>;
|
|
117033
117223
|
pageType?: Maybe<HelpCenterPageType>;
|
|
117224
|
+
rovoConfig?: Maybe<HelpCenterPageRovoConfig>;
|
|
117034
117225
|
updatedAt?: Maybe<Scalars['String']['output']>;
|
|
117035
117226
|
};
|
|
117036
117227
|
export type HelpCenterPageCreateInput = {
|
|
@@ -117086,6 +117277,12 @@ export type HelpCenterPageQueryResultEdge = {
|
|
|
117086
117277
|
cursor: Scalars['String']['output'];
|
|
117087
117278
|
node?: Maybe<HelpCenterPageQueryResult>;
|
|
117088
117279
|
};
|
|
117280
|
+
export type HelpCenterPageRovoConfig = {
|
|
117281
|
+
__typename?: 'HelpCenterPageRovoConfig';
|
|
117282
|
+
agentId?: Maybe<Scalars['String']['output']>;
|
|
117283
|
+
isCustomAgentsAvailable?: Maybe<Scalars['Boolean']['output']>;
|
|
117284
|
+
isRovoEnabled?: Maybe<Scalars['Boolean']['output']>;
|
|
117285
|
+
};
|
|
117089
117286
|
export declare enum HelpCenterPageType {
|
|
117090
117287
|
Custom = "CUSTOM",
|
|
117091
117288
|
CustomHome = "CUSTOM_HOME",
|
|
@@ -120402,6 +120599,7 @@ export declare enum JiraAgentSessionInvocationType {
|
|
|
120402
120599
|
Unknown = "UNKNOWN"
|
|
120403
120600
|
}
|
|
120404
120601
|
export declare enum JiraAgentSessionPreExecutionStep {
|
|
120602
|
+
AgentReadiness = "AGENT_READINESS",
|
|
120405
120603
|
Planning = "PLANNING"
|
|
120406
120604
|
}
|
|
120407
120605
|
export declare enum JiraAgentSessionState {
|
|
@@ -120447,6 +120645,11 @@ export type JiraAgentSessionsFieldAgentSessionsArgs = {
|
|
|
120447
120645
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
120448
120646
|
last?: InputMaybe<Scalars['Int']['input']>;
|
|
120449
120647
|
};
|
|
120648
|
+
export type JiraAgentSessionsScopeInput = {
|
|
120649
|
+
boardId?: InputMaybe<Scalars['ID']['input']>;
|
|
120650
|
+
jql?: InputMaybe<Scalars['String']['input']>;
|
|
120651
|
+
spaceKey?: InputMaybe<Scalars['String']['input']>;
|
|
120652
|
+
};
|
|
120450
120653
|
export declare enum JiraAgentStateCategory {
|
|
120451
120654
|
Finished = "FINISHED",
|
|
120452
120655
|
NeedsInput = "NEEDS_INPUT",
|
|
@@ -122630,6 +122833,7 @@ export type JiraBoardViewSelectedWorkflowIdArgs = {
|
|
|
122630
122833
|
};
|
|
122631
122834
|
export type JiraBoardViewSprintsArgs = {
|
|
122632
122835
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
122836
|
+
autoManaged?: InputMaybe<JiraAutoManagedSprintSetting>;
|
|
122633
122837
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
122634
122838
|
};
|
|
122635
122839
|
export type JiraBoardViewUnmappedStatusesArgs = {
|
|
@@ -131182,6 +131386,7 @@ export type JiraIssueNextActionSuggestions = {
|
|
|
131182
131386
|
relatedLinkSuggestions?: Maybe<JiraRelatedLinkSuggestions>;
|
|
131183
131387
|
sdlcSuggestions?: Maybe<JiraSdlcSuggestions>;
|
|
131184
131388
|
similarWorkItemSuggestions?: Maybe<JiraSimilarWorkItemSuggestions>;
|
|
131389
|
+
triageAgentSuggestions?: Maybe<JiraTriageAgentSuggestions>;
|
|
131185
131390
|
workBreakdownSuggestions?: Maybe<JiraWorkBreakdownSuggestions>;
|
|
131186
131391
|
};
|
|
131187
131392
|
export type JiraIssueNoEnrichmentStreamHubPayload = {
|
|
@@ -134316,6 +134521,7 @@ export type JiraMutation = {
|
|
|
134316
134521
|
jiraServiceManagementUpdateRequestTypeCategory?: Maybe<JiraServiceManagementRequestTypeCategoryPayload>;
|
|
134317
134522
|
jira_dismissForYouRecommendedAction?: Maybe<JiraDismissForYouRecommendedActionPayload>;
|
|
134318
134523
|
jira_setProjectPolicyAssociatedProjects?: Maybe<JiraSetProjectPolicyAssociatedProjectsPayload>;
|
|
134524
|
+
jira_updateProjectPolicyAssociatedProjects?: Maybe<JiraUpdateProjectPolicyAssociatedProjectsPayload>;
|
|
134319
134525
|
jwmAssociateField?: Maybe<JiraWorkManagementAssociateFieldPayload>;
|
|
134320
134526
|
jwmCreateCustomBackground?: Maybe<JiraWorkManagementCreateCustomBackgroundPayload>;
|
|
134321
134527
|
jwmCreateSavedView?: Maybe<JiraWorkManagementCreateSavedViewPayload>;
|
|
@@ -134772,6 +134978,9 @@ export type JiraMutationJira_DismissForYouRecommendedActionArgs = {
|
|
|
134772
134978
|
export type JiraMutationJira_SetProjectPolicyAssociatedProjectsArgs = {
|
|
134773
134979
|
input: JiraSetProjectPolicyAssociatedProjectsInput;
|
|
134774
134980
|
};
|
|
134981
|
+
export type JiraMutationJira_UpdateProjectPolicyAssociatedProjectsArgs = {
|
|
134982
|
+
input: JiraUpdateProjectPolicyAssociatedProjectsInput;
|
|
134983
|
+
};
|
|
134775
134984
|
export type JiraMutationJwmAssociateFieldArgs = {
|
|
134776
134985
|
cloudId: Scalars['ID']['input'];
|
|
134777
134986
|
input: JiraWorkManagementAssociateFieldInput;
|
|
@@ -135456,7 +135665,8 @@ export declare enum JiraNextActionContentType {
|
|
|
135456
135665
|
export declare enum JiraNextActionGroup {
|
|
135457
135666
|
AiFeatures = "AI_FEATURES",
|
|
135458
135667
|
LoomUpdates = "LOOM_UPDATES",
|
|
135459
|
-
Sdlc = "SDLC"
|
|
135668
|
+
Sdlc = "SDLC",
|
|
135669
|
+
TriageAgent = "TRIAGE_AGENT"
|
|
135460
135670
|
}
|
|
135461
135671
|
export declare enum JiraNextActionInteractionType {
|
|
135462
135672
|
ActionNudge = "ACTION_NUDGE",
|
|
@@ -137253,6 +137463,9 @@ export type JiraProjectBoardsArgs = {
|
|
|
137253
137463
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
137254
137464
|
last?: InputMaybe<Scalars['Int']['input']>;
|
|
137255
137465
|
};
|
|
137466
|
+
export type JiraProjectCapabilitiesArgs = {
|
|
137467
|
+
domain?: InputMaybe<Scalars['String']['input']>;
|
|
137468
|
+
};
|
|
137256
137469
|
export type JiraProjectComponentsArgs = {
|
|
137257
137470
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
137258
137471
|
before?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -138385,6 +138598,7 @@ export type JiraQuery = {
|
|
|
138385
138598
|
activeBackgroundDetails?: Maybe<JiraActiveBackgroundDetailsResult>;
|
|
138386
138599
|
advancedRoadmapsNavigation?: Maybe<JiraAdvancedRoadmapsNavigation>;
|
|
138387
138600
|
agentSessions?: Maybe<AgentSessionAssociationConnection>;
|
|
138601
|
+
agentSessionsByScope?: Maybe<AgentSessionAssociationConnection>;
|
|
138388
138602
|
aiAgentSessionEnrichment?: Maybe<JiraAiAgentSession>;
|
|
138389
138603
|
allGrantTypeKeys?: Maybe<Array<JiraGrantTypeKey>>;
|
|
138390
138604
|
allJiraJourneyConfigurations?: Maybe<JiraJourneyConfigurationConnection>;
|
|
@@ -138411,6 +138625,7 @@ export type JiraQuery = {
|
|
|
138411
138625
|
bulkOperationProgress?: Maybe<JiraIssueBulkOperationProgress>;
|
|
138412
138626
|
bulkOperationsMetadata?: Maybe<JiraIssueBulkOperationsMetadata>;
|
|
138413
138627
|
canPerform?: Maybe<Scalars['Boolean']['output']>;
|
|
138628
|
+
caseManagementRequestTypeCreationOptions?: Maybe<JiraServiceManagementCaseManagementRequestTypeCreationOptionConnection>;
|
|
138414
138629
|
cfoAnalytics?: Maybe<JiraCfoAnalyticsResult>;
|
|
138415
138630
|
cfoConfigs?: Maybe<JiraCfoConfigsResult>;
|
|
138416
138631
|
cfoInsights?: Maybe<JiraCfoMetricInsightConnection>;
|
|
@@ -138623,6 +138838,7 @@ export type JiraQuery = {
|
|
|
138623
138838
|
resourceUsageMetrics?: Maybe<JiraResourceUsageMetricConnection>;
|
|
138624
138839
|
resourceUsageMetricsV2?: Maybe<JiraResourceUsageMetricConnectionV2>;
|
|
138625
138840
|
resourceUsageRecommendationStats?: Maybe<JiraResourceUsageRecommendationStats>;
|
|
138841
|
+
rovoEnablementStatus?: Maybe<JiraRovoEnablementStatus>;
|
|
138626
138842
|
savedFilters?: Maybe<JiraFilterConnection>;
|
|
138627
138843
|
screenById?: Maybe<Array<Maybe<JiraScreen>>>;
|
|
138628
138844
|
screenIdByIssueId?: Maybe<Scalars['Long']['output']>;
|
|
@@ -138668,6 +138884,16 @@ export type JiraQueryAgentSessionsArgs = {
|
|
|
138668
138884
|
last?: InputMaybe<Scalars['Int']['input']>;
|
|
138669
138885
|
state?: InputMaybe<JiraAgentSessionStateCategory>;
|
|
138670
138886
|
};
|
|
138887
|
+
export type JiraQueryAgentSessionsByScopeArgs = {
|
|
138888
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
138889
|
+
before?: InputMaybe<Scalars['String']['input']>;
|
|
138890
|
+
cloudId: Scalars['ID']['input'];
|
|
138891
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
138892
|
+
isDeleted: Scalars['Boolean']['input'];
|
|
138893
|
+
last?: InputMaybe<Scalars['Int']['input']>;
|
|
138894
|
+
scope: JiraAgentSessionsScopeInput;
|
|
138895
|
+
state?: InputMaybe<JiraAgentSessionStateCategory>;
|
|
138896
|
+
};
|
|
138671
138897
|
export type JiraQueryAiAgentSessionEnrichmentArgs = {
|
|
138672
138898
|
input: JiraAiAgentSessionEnrichmentInput;
|
|
138673
138899
|
};
|
|
@@ -138801,6 +139027,12 @@ export type JiraQueryCanPerformArgs = {
|
|
|
138801
139027
|
cloudId: Scalars['ID']['input'];
|
|
138802
139028
|
type: JiraActionType;
|
|
138803
139029
|
};
|
|
139030
|
+
export type JiraQueryCaseManagementRequestTypeCreationOptionsArgs = {
|
|
139031
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
139032
|
+
cloudId: Scalars['ID']['input'];
|
|
139033
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
139034
|
+
projectId: Scalars['ID']['input'];
|
|
139035
|
+
};
|
|
138804
139036
|
export type JiraQueryCfoAnalyticsArgs = {
|
|
138805
139037
|
cloudId: Scalars['ID']['input'];
|
|
138806
139038
|
dimensions?: InputMaybe<Array<JiraCfoDimensionInput>>;
|
|
@@ -139878,6 +140110,9 @@ export type JiraQueryResourceUsageRecommendationStatsArgs = {
|
|
|
139878
140110
|
category: JiraRecommendationCategory;
|
|
139879
140111
|
cloudId: Scalars['ID']['input'];
|
|
139880
140112
|
};
|
|
140113
|
+
export type JiraQueryRovoEnablementStatusArgs = {
|
|
140114
|
+
cloudId: Scalars['ID']['input'];
|
|
140115
|
+
};
|
|
139881
140116
|
export type JiraQuerySavedFiltersArgs = {
|
|
139882
140117
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
139883
140118
|
before?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -140104,8 +140339,10 @@ export type JiraRecentItemsFilter = {
|
|
|
140104
140339
|
export declare enum JiraRecommendationCategory {
|
|
140105
140340
|
CustomField = "CUSTOM_FIELD",
|
|
140106
140341
|
IssueArchival = "ISSUE_ARCHIVAL",
|
|
140342
|
+
PermissionGrantScheme = "PERMISSION_GRANT_SCHEME",
|
|
140107
140343
|
ProjectCleanup = "PROJECT_CLEANUP",
|
|
140108
|
-
ProjectRoleActor = "PROJECT_ROLE_ACTOR"
|
|
140344
|
+
ProjectRoleActor = "PROJECT_ROLE_ACTOR",
|
|
140345
|
+
WorkflowScheme = "WORKFLOW_SCHEME"
|
|
140109
140346
|
}
|
|
140110
140347
|
export type JiraRecommendedAction = {
|
|
140111
140348
|
__typename?: 'JiraRecommendedAction';
|
|
@@ -141987,6 +142224,27 @@ export type JiraServiceManagementBulkCreateRequestTypeFromTemplateInput = {
|
|
|
141987
142224
|
createRequestTypeFromTemplateInputItems: Array<JiraServiceManagementCreateRequestTypeFromTemplateInput>;
|
|
141988
142225
|
projectId: Scalars['ID']['input'];
|
|
141989
142226
|
};
|
|
142227
|
+
export type JiraServiceManagementCaseManagementRequestTypeCreationOption = {
|
|
142228
|
+
__typename?: 'JiraServiceManagementCaseManagementRequestTypeCreationOption';
|
|
142229
|
+
existingRequestType?: Maybe<JiraServiceManagementRequestType>;
|
|
142230
|
+
key: Scalars['String']['output'];
|
|
142231
|
+
name: Scalars['String']['output'];
|
|
142232
|
+
requestTypeIconUrl?: Maybe<Scalars['String']['output']>;
|
|
142233
|
+
templateId: Scalars['ID']['output'];
|
|
142234
|
+
};
|
|
142235
|
+
export type JiraServiceManagementCaseManagementRequestTypeCreationOptionConnection = {
|
|
142236
|
+
__typename?: 'JiraServiceManagementCaseManagementRequestTypeCreationOptionConnection';
|
|
142237
|
+
edges?: Maybe<Array<Maybe<JiraServiceManagementCaseManagementRequestTypeCreationOptionEdge>>>;
|
|
142238
|
+
errors?: Maybe<Array<QueryError>>;
|
|
142239
|
+
nodes: Array<JiraServiceManagementCaseManagementRequestTypeCreationOption>;
|
|
142240
|
+
pageInfo: PageInfo;
|
|
142241
|
+
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
142242
|
+
};
|
|
142243
|
+
export type JiraServiceManagementCaseManagementRequestTypeCreationOptionEdge = {
|
|
142244
|
+
__typename?: 'JiraServiceManagementCaseManagementRequestTypeCreationOptionEdge';
|
|
142245
|
+
cursor: Scalars['String']['output'];
|
|
142246
|
+
node?: Maybe<JiraServiceManagementCaseManagementRequestTypeCreationOption>;
|
|
142247
|
+
};
|
|
141990
142248
|
export type JiraServiceManagementChannelSource = {
|
|
141991
142249
|
__typename?: 'JiraServiceManagementChannelSource';
|
|
141992
142250
|
displayName?: Maybe<Scalars['String']['output']>;
|
|
@@ -145493,6 +145751,8 @@ export type JiraTimelineIssueSearchCustomInput = {
|
|
|
145493
145751
|
additionalJql?: InputMaybe<Scalars['String']['input']>;
|
|
145494
145752
|
boardId: Scalars['ID']['input'];
|
|
145495
145753
|
customFilterIds?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
145754
|
+
hideUnParentedItems?: InputMaybe<Scalars['Boolean']['input']>;
|
|
145755
|
+
maxHierarchyLevel?: InputMaybe<Scalars['Int']['input']>;
|
|
145496
145756
|
quickFilterIds?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
145497
145757
|
useSavedFilters?: InputMaybe<Scalars['Boolean']['input']>;
|
|
145498
145758
|
};
|
|
@@ -145797,6 +146057,58 @@ export type JiraTrashGlobalCustomFieldsPayload = Payload & {
|
|
|
145797
146057
|
succeededNodeIds?: Maybe<Array<Scalars['ID']['output']>>;
|
|
145798
146058
|
success: Scalars['Boolean']['output'];
|
|
145799
146059
|
};
|
|
146060
|
+
export type JiraTriageAgentSuggestionConnection = {
|
|
146061
|
+
__typename?: 'JiraTriageAgentSuggestionConnection';
|
|
146062
|
+
edges?: Maybe<Array<Maybe<JiraTriageAgentSuggestionEdge>>>;
|
|
146063
|
+
pageInfo: PageInfo;
|
|
146064
|
+
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
146065
|
+
};
|
|
146066
|
+
export type JiraTriageAgentSuggestionEdge = {
|
|
146067
|
+
__typename?: 'JiraTriageAgentSuggestionEdge';
|
|
146068
|
+
cursor: Scalars['String']['output'];
|
|
146069
|
+
node?: Maybe<JiraTriageAgentSuggestionItem>;
|
|
146070
|
+
};
|
|
146071
|
+
export type JiraTriageAgentSuggestionItem = {
|
|
146072
|
+
__typename?: 'JiraTriageAgentSuggestionItem';
|
|
146073
|
+
actionKey?: Maybe<Scalars['String']['output']>;
|
|
146074
|
+
conversationId?: Maybe<Scalars['ID']['output']>;
|
|
146075
|
+
experienceId?: Maybe<Scalars['String']['output']>;
|
|
146076
|
+
invocationId?: Maybe<Scalars['ID']['output']>;
|
|
146077
|
+
messageId?: Maybe<Scalars['ID']['output']>;
|
|
146078
|
+
product?: Maybe<Scalars['String']['output']>;
|
|
146079
|
+
recipientAgentNamedId?: Maybe<Scalars['String']['output']>;
|
|
146080
|
+
updates?: Maybe<Array<JiraTriageAgentWorkItemUpdate>>;
|
|
146081
|
+
};
|
|
146082
|
+
export type JiraTriageAgentSuggestions = JiraBaseNextActionsEntity & {
|
|
146083
|
+
__typename?: 'JiraTriageAgentSuggestions';
|
|
146084
|
+
contentType?: Maybe<JiraNextActionContentType>;
|
|
146085
|
+
dismissed?: Maybe<Scalars['Boolean']['output']>;
|
|
146086
|
+
group?: Maybe<JiraNextActionGroup>;
|
|
146087
|
+
id?: Maybe<Scalars['ID']['output']>;
|
|
146088
|
+
interactionType?: Maybe<JiraNextActionInteractionType>;
|
|
146089
|
+
isHidden?: Maybe<Scalars['Boolean']['output']>;
|
|
146090
|
+
items?: Maybe<JiraTriageAgentSuggestionConnection>;
|
|
146091
|
+
queryError?: Maybe<QueryError>;
|
|
146092
|
+
rank?: Maybe<Scalars['Float']['output']>;
|
|
146093
|
+
rationale?: Maybe<Scalars['String']['output']>;
|
|
146094
|
+
};
|
|
146095
|
+
export type JiraTriageAgentSuggestionsItemsArgs = {
|
|
146096
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
146097
|
+
before?: InputMaybe<Scalars['String']['input']>;
|
|
146098
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
146099
|
+
last?: InputMaybe<Scalars['Int']['input']>;
|
|
146100
|
+
};
|
|
146101
|
+
export type JiraTriageAgentWorkItemUpdate = {
|
|
146102
|
+
__typename?: 'JiraTriageAgentWorkItemUpdate';
|
|
146103
|
+
fields?: Maybe<Array<JiraTriageAgentWorkItemUpdateField>>;
|
|
146104
|
+
issueIdOrKey?: Maybe<Scalars['String']['output']>;
|
|
146105
|
+
};
|
|
146106
|
+
export type JiraTriageAgentWorkItemUpdateField = {
|
|
146107
|
+
__typename?: 'JiraTriageAgentWorkItemUpdateField';
|
|
146108
|
+
fieldId?: Maybe<Scalars['String']['output']>;
|
|
146109
|
+
reasoning?: Maybe<Scalars['String']['output']>;
|
|
146110
|
+
value?: Maybe<Scalars['String']['output']>;
|
|
146111
|
+
};
|
|
145800
146112
|
export type JiraUiExposedError = {
|
|
145801
146113
|
__typename?: 'JiraUIExposedError';
|
|
145802
146114
|
message?: Maybe<Scalars['String']['output']>;
|
|
@@ -145904,6 +146216,7 @@ export type JiraUpdateBackgroundInput = {
|
|
|
145904
146216
|
export type JiraUpdateBoardViewStatusColumnAgentInput = {
|
|
145905
146217
|
agentAccountId: Scalars['ID']['input'];
|
|
145906
146218
|
agentPrompt?: InputMaybe<Scalars['String']['input']>;
|
|
146219
|
+
agentRulesToUpdate?: InputMaybe<Array<JiraUpdateBoardViewStatusColumnAgentRuleInput>>;
|
|
145907
146220
|
columnId: Scalars['ID']['input'];
|
|
145908
146221
|
settings?: InputMaybe<JiraBoardViewSettings>;
|
|
145909
146222
|
transitionsToAdd?: InputMaybe<Array<JiraUpdateBoardViewStatusColumnAgentTransitionInput>>;
|
|
@@ -145916,7 +146229,12 @@ export type JiraUpdateBoardViewStatusColumnAgentPayload = Payload & {
|
|
|
145916
146229
|
errors?: Maybe<Array<MutationError>>;
|
|
145917
146230
|
success: Scalars['Boolean']['output'];
|
|
145918
146231
|
};
|
|
146232
|
+
export type JiraUpdateBoardViewStatusColumnAgentRuleInput = {
|
|
146233
|
+
ruleId: Scalars['ID']['input'];
|
|
146234
|
+
workflowId: Scalars['ID']['input'];
|
|
146235
|
+
};
|
|
145919
146236
|
export type JiraUpdateBoardViewStatusColumnAgentTransitionInput = {
|
|
146237
|
+
ruleId?: InputMaybe<Scalars['ID']['input']>;
|
|
145920
146238
|
transitionId: Scalars['ID']['input'];
|
|
145921
146239
|
workflowId: Scalars['ID']['input'];
|
|
145922
146240
|
};
|
|
@@ -146363,6 +146681,17 @@ export type JiraUpdateProjectNotificationPreferencesPayload = Payload & {
|
|
|
146363
146681
|
preferences?: Maybe<JiraNotificationPreferences>;
|
|
146364
146682
|
success: Scalars['Boolean']['output'];
|
|
146365
146683
|
};
|
|
146684
|
+
export type JiraUpdateProjectPolicyAssociatedProjectsInput = {
|
|
146685
|
+
addProjectIds?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
146686
|
+
policyId: Scalars['ID']['input'];
|
|
146687
|
+
removeProjectIds?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
146688
|
+
};
|
|
146689
|
+
export type JiraUpdateProjectPolicyAssociatedProjectsPayload = Payload & {
|
|
146690
|
+
__typename?: 'JiraUpdateProjectPolicyAssociatedProjectsPayload';
|
|
146691
|
+
errors?: Maybe<Array<MutationError>>;
|
|
146692
|
+
projectPolicy?: Maybe<JiraProjectPolicy>;
|
|
146693
|
+
success: Scalars['Boolean']['output'];
|
|
146694
|
+
};
|
|
146366
146695
|
export type JiraUpdateRadioSelectFieldInput = {
|
|
146367
146696
|
id: Scalars['ID']['input'];
|
|
146368
146697
|
operation: JiraRadioSelectFieldOperationInput;
|
|
@@ -148169,6 +148498,26 @@ export type JiraWorkTypeUsageMetricValuesArgs = {
|
|
|
148169
148498
|
last?: InputMaybe<Scalars['Int']['input']>;
|
|
148170
148499
|
toDate?: InputMaybe<Scalars['Date']['input']>;
|
|
148171
148500
|
};
|
|
148501
|
+
export type JiraWorkflowResourceUsageMetric = JiraResourceUsageMetricV2 & Node & {
|
|
148502
|
+
__typename?: 'JiraWorkflowResourceUsageMetric';
|
|
148503
|
+
cleanupValue?: Maybe<Scalars['Long']['output']>;
|
|
148504
|
+
currentValue?: Maybe<Scalars['Long']['output']>;
|
|
148505
|
+
id: Scalars['ID']['output'];
|
|
148506
|
+
key?: Maybe<Scalars['String']['output']>;
|
|
148507
|
+
schemesOverLimit?: Maybe<Scalars['Int']['output']>;
|
|
148508
|
+
schemesReachingLimit?: Maybe<Scalars['Int']['output']>;
|
|
148509
|
+
thresholdValue?: Maybe<Scalars['Long']['output']>;
|
|
148510
|
+
values?: Maybe<JiraResourceUsageMetricValueConnection>;
|
|
148511
|
+
warningValue?: Maybe<Scalars['Long']['output']>;
|
|
148512
|
+
};
|
|
148513
|
+
export type JiraWorkflowResourceUsageMetricValuesArgs = {
|
|
148514
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
148515
|
+
before?: InputMaybe<Scalars['String']['input']>;
|
|
148516
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
148517
|
+
fromDate?: InputMaybe<Scalars['Date']['input']>;
|
|
148518
|
+
last?: InputMaybe<Scalars['Int']['input']>;
|
|
148519
|
+
toDate?: InputMaybe<Scalars['Date']['input']>;
|
|
148520
|
+
};
|
|
148172
148521
|
export type JiraWorklog = Node & {
|
|
148173
148522
|
__typename?: 'JiraWorklog';
|
|
148174
148523
|
author?: Maybe<User>;
|
|
@@ -150447,6 +150796,21 @@ export declare enum JsmTelemetryDomainErrorCode {
|
|
|
150447
150796
|
UnsupportedQuery = "UNSUPPORTED_QUERY",
|
|
150448
150797
|
ValidationError = "VALIDATION_ERROR"
|
|
150449
150798
|
}
|
|
150799
|
+
export type JsmTelemetryIncidentContextResponse = {
|
|
150800
|
+
__typename?: 'JsmTelemetryIncidentContextResponse';
|
|
150801
|
+
affectedServices: Array<Scalars['String']['output']>;
|
|
150802
|
+
alertFiredAt?: Maybe<Scalars['DateTime']['output']>;
|
|
150803
|
+
description?: Maybe<Scalars['String']['output']>;
|
|
150804
|
+
incidentId: Scalars['String']['output'];
|
|
150805
|
+
labels: Array<Scalars['String']['output']>;
|
|
150806
|
+
severity?: Maybe<Scalars['String']['output']>;
|
|
150807
|
+
title: Scalars['String']['output'];
|
|
150808
|
+
};
|
|
150809
|
+
export type JsmTelemetryIncidentContextResult = {
|
|
150810
|
+
__typename?: 'JsmTelemetryIncidentContextResult';
|
|
150811
|
+
data?: Maybe<JsmTelemetryIncidentContextResponse>;
|
|
150812
|
+
error?: Maybe<JsmTelemetryDomainError>;
|
|
150813
|
+
};
|
|
150450
150814
|
export type JsmTelemetryIncidentTelemetryResult = {
|
|
150451
150815
|
__typename?: 'JsmTelemetryIncidentTelemetryResult';
|
|
150452
150816
|
data?: Maybe<Array<JsmTelemetryMetricDataResponse>>;
|
|
@@ -151425,6 +151789,7 @@ export declare enum KitsuneJobType {
|
|
|
151425
151789
|
ImportCustomer = "IMPORT_CUSTOMER",
|
|
151426
151790
|
ImportFeedback = "IMPORT_FEEDBACK",
|
|
151427
151791
|
ImportOrganization = "IMPORT_ORGANIZATION",
|
|
151792
|
+
RefreshInsightCounters = "REFRESH_INSIGHT_COUNTERS",
|
|
151428
151793
|
ResyncFeedback = "RESYNC_FEEDBACK",
|
|
151429
151794
|
ResyncInsights = "RESYNC_INSIGHTS",
|
|
151430
151795
|
SyncCsmProperties = "SYNC_CSM_PROPERTIES",
|
|
@@ -159218,6 +159583,7 @@ export type MercuryAskCommentsArgs = {
|
|
|
159218
159583
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
159219
159584
|
cloudId: Scalars['ID']['input'];
|
|
159220
159585
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
159586
|
+
sortOrder?: InputMaybe<MercuryCommentSortOrder>;
|
|
159221
159587
|
};
|
|
159222
159588
|
export type MercuryAskConnectedWorkArgs = {
|
|
159223
159589
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -160174,7 +160540,12 @@ export type MercuryCommentQueryApiCommentsByParentIdArgs = {
|
|
|
160174
160540
|
commentType?: InputMaybe<MercuryCommentType>;
|
|
160175
160541
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
160176
160542
|
parentId: Scalars['ID']['input'];
|
|
160543
|
+
sortOrder?: InputMaybe<MercuryCommentSortOrder>;
|
|
160177
160544
|
};
|
|
160545
|
+
export declare enum MercuryCommentSortOrder {
|
|
160546
|
+
Asc = "ASC",
|
|
160547
|
+
Desc = "DESC"
|
|
160548
|
+
}
|
|
160178
160549
|
export declare enum MercuryCommentType {
|
|
160179
160550
|
Funds = "FUNDS"
|
|
160180
160551
|
}
|
|
@@ -160611,6 +160982,7 @@ export type MercuryCreateFocusAreaPayload = Payload & {
|
|
|
160611
160982
|
export type MercuryCreateFocusAreaStatusUpdateInput = {
|
|
160612
160983
|
cloudId: Scalars['ID']['input'];
|
|
160613
160984
|
focusAreaId: Scalars['ID']['input'];
|
|
160985
|
+
health?: InputMaybe<MercuryFocusAreaHealthInput>;
|
|
160614
160986
|
newTargetDate?: InputMaybe<MercuryFocusAreaTargetDateInput>;
|
|
160615
160987
|
statusTransitionId?: InputMaybe<Scalars['ID']['input']>;
|
|
160616
160988
|
summary?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -161623,6 +161995,7 @@ export type MercuryFocusAreaFundsCommentsArgs = {
|
|
|
161623
161995
|
cloudId: Scalars['ID']['input'];
|
|
161624
161996
|
commentType?: MercuryCommentType;
|
|
161625
161997
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
161998
|
+
sortOrder?: InputMaybe<MercuryCommentSortOrder>;
|
|
161626
161999
|
};
|
|
161627
162000
|
export type MercuryFocusAreaLinkedGoalsArgs = {
|
|
161628
162001
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -161820,6 +162193,9 @@ export declare enum MercuryFocusAreaHealthColor {
|
|
|
161820
162193
|
Red = "RED",
|
|
161821
162194
|
Yellow = "YELLOW"
|
|
161822
162195
|
}
|
|
162196
|
+
export type MercuryFocusAreaHealthInput = {
|
|
162197
|
+
healthId?: InputMaybe<Scalars['ID']['input']>;
|
|
162198
|
+
};
|
|
161823
162199
|
export type MercuryFocusAreaHierarchy = Node & {
|
|
161824
162200
|
__typename?: 'MercuryFocusAreaHierarchy';
|
|
161825
162201
|
focusAreaTypes?: Maybe<Array<MercuryFocusAreaType>>;
|
|
@@ -163522,6 +163898,28 @@ export type MercuryNormalizedWorkTargetDateRangeInput = {
|
|
|
163522
163898
|
targetDateMax?: InputMaybe<Scalars['String']['input']>;
|
|
163523
163899
|
targetDateMin?: InputMaybe<Scalars['String']['input']>;
|
|
163524
163900
|
};
|
|
163901
|
+
export declare enum MercuryNotificationChannel {
|
|
163902
|
+
ChatApp = "CHAT_APP",
|
|
163903
|
+
Email = "EMAIL",
|
|
163904
|
+
InApp = "IN_APP"
|
|
163905
|
+
}
|
|
163906
|
+
export declare enum MercuryNotificationGroup {
|
|
163907
|
+
Digest = "DIGEST",
|
|
163908
|
+
RealTime = "REAL_TIME"
|
|
163909
|
+
}
|
|
163910
|
+
export type MercuryNotificationPreference = {
|
|
163911
|
+
__typename?: 'MercuryNotificationPreference';
|
|
163912
|
+
channel: MercuryNotificationChannel;
|
|
163913
|
+
enabled: Scalars['Boolean']['output'];
|
|
163914
|
+
group: MercuryNotificationGroup;
|
|
163915
|
+
type: MercuryNotificationType;
|
|
163916
|
+
};
|
|
163917
|
+
export declare enum MercuryNotificationType {
|
|
163918
|
+
MonthlyDigest = "MONTHLY_DIGEST",
|
|
163919
|
+
OwnerUpdated = "OWNER_UPDATED",
|
|
163920
|
+
StatusUpdateCreated = "STATUS_UPDATE_CREATED",
|
|
163921
|
+
WatcherAdded = "WATCHER_ADDED"
|
|
163922
|
+
}
|
|
163525
163923
|
export type MercuryNumberCustomField = MercuryCustomField & {
|
|
163526
163924
|
__typename?: 'MercuryNumberCustomField';
|
|
163527
163925
|
createdBy?: Maybe<User>;
|
|
@@ -163799,10 +164197,15 @@ export type MercuryOrganizationMembership = Node & {
|
|
|
163799
164197
|
id: Scalars['ID']['output'];
|
|
163800
164198
|
organization?: Maybe<MercuryOrganization>;
|
|
163801
164199
|
startDate: Scalars['Date']['output'];
|
|
164200
|
+
teams?: Maybe<GraphStoreCypherQueryV2Connection>;
|
|
163802
164201
|
updatedBy?: Maybe<User>;
|
|
163803
164202
|
updatedDate: Scalars['DateTime']['output'];
|
|
163804
164203
|
user?: Maybe<User>;
|
|
163805
164204
|
};
|
|
164205
|
+
export type MercuryOrganizationMembershipTeamsArgs = {
|
|
164206
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
164207
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
164208
|
+
};
|
|
163806
164209
|
export type MercuryOrganizationMembershipConnection = {
|
|
163807
164210
|
__typename?: 'MercuryOrganizationMembershipConnection';
|
|
163808
164211
|
edges?: Maybe<Array<Maybe<MercuryOrganizationMembershipEdge>>>;
|
|
@@ -163897,6 +164300,7 @@ export type MercuryOrganizationStatusUpdateCommentsArgs = {
|
|
|
163897
164300
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
163898
164301
|
cloudId: Scalars['ID']['input'];
|
|
163899
164302
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
164303
|
+
sortOrder?: InputMaybe<MercuryCommentSortOrder>;
|
|
163900
164304
|
};
|
|
163901
164305
|
export type MercuryOrganizationStatusUpdateConnection = {
|
|
163902
164306
|
__typename?: 'MercuryOrganizationStatusUpdateConnection';
|
|
@@ -165144,6 +165548,7 @@ export type MercuryQueryApi = {
|
|
|
165144
165548
|
focusAreaActivityHistory?: Maybe<MercuryFocusAreaActivityConnection>;
|
|
165145
165549
|
focusAreaActivityHistoryByIds?: Maybe<Array<Maybe<MercuryFocusAreaActivityHistory>>>;
|
|
165146
165550
|
focusAreaAsks?: Maybe<GraphStoreCypherQueryV2Connection>;
|
|
165551
|
+
focusAreaCount?: Maybe<Scalars['Int']['output']>;
|
|
165147
165552
|
focusAreaCustomFieldDefinitionsSearch?: Maybe<MercuryCustomFieldDefinitionConnection>;
|
|
165148
165553
|
focusAreaHierarchies?: Maybe<Array<MercuryFocusAreaHierarchy>>;
|
|
165149
165554
|
focusAreaHierarchiesSearch?: Maybe<MercuryFocusAreaHierarchyConnection>;
|
|
@@ -165163,6 +165568,7 @@ export type MercuryQueryApi = {
|
|
|
165163
165568
|
myPreferences?: Maybe<Array<MercuryPreference>>;
|
|
165164
165569
|
portfoliosByAris?: Maybe<Array<MercuryPortfolio>>;
|
|
165165
165570
|
searchFocusAreaActivityHistory?: Maybe<MercuryFocusAreaActivityConnection>;
|
|
165571
|
+
userNotificationSettings?: Maybe<MercuryUserNotificationSettings>;
|
|
165166
165572
|
workspaceContext: MercuryWorkspaceContext;
|
|
165167
165573
|
};
|
|
165168
165574
|
export type MercuryQueryApiAiFocusAreaGoalContextDataArgs = {
|
|
@@ -165229,6 +165635,10 @@ export type MercuryQueryApiFocusAreaAsksArgs = {
|
|
|
165229
165635
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
165230
165636
|
focusAreaId: Scalars['ID']['input'];
|
|
165231
165637
|
};
|
|
165638
|
+
export type MercuryQueryApiFocusAreaCountArgs = {
|
|
165639
|
+
cloudId: Scalars['ID']['input'];
|
|
165640
|
+
q: Scalars['String']['input'];
|
|
165641
|
+
};
|
|
165232
165642
|
export type MercuryQueryApiFocusAreaCustomFieldDefinitionsSearchArgs = {
|
|
165233
165643
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
165234
165644
|
cloudId?: InputMaybe<Scalars['ID']['input']>;
|
|
@@ -165310,6 +165720,9 @@ export type MercuryQueryApiSearchFocusAreaActivityHistoryArgs = {
|
|
|
165310
165720
|
q?: InputMaybe<Scalars['String']['input']>;
|
|
165311
165721
|
sort?: InputMaybe<Array<InputMaybe<MercuryFocusAreaActivitySort>>>;
|
|
165312
165722
|
};
|
|
165723
|
+
export type MercuryQueryApiUserNotificationSettingsArgs = {
|
|
165724
|
+
cloudId: Scalars['ID']['input'];
|
|
165725
|
+
};
|
|
165313
165726
|
export type MercuryQueryApiWorkspaceContextArgs = {
|
|
165314
165727
|
cloudId: Scalars['ID']['input'];
|
|
165315
165728
|
};
|
|
@@ -165520,18 +165933,18 @@ export type MercuryRequestPositionsChangeInput = {
|
|
|
165520
165933
|
export type MercuryRerankFocusAreaAbsoluteInput = {
|
|
165521
165934
|
containerId: Scalars['ID']['input'];
|
|
165522
165935
|
containerType: MercuryRankingContainerType;
|
|
165523
|
-
|
|
165524
|
-
focusAreaIds?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
165936
|
+
focusAreaIds: Array<Scalars['ID']['input']>;
|
|
165525
165937
|
newRank?: InputMaybe<Scalars['Int']['input']>;
|
|
165526
165938
|
};
|
|
165527
165939
|
export type MercuryRerankFocusAreaAbsolutePayload = Payload & {
|
|
165528
165940
|
__typename?: 'MercuryRerankFocusAreaAbsolutePayload';
|
|
165529
165941
|
errors?: Maybe<Array<MutationError>>;
|
|
165530
|
-
|
|
165942
|
+
focusAreas?: Maybe<Array<MercuryFocusArea>>;
|
|
165531
165943
|
success: Scalars['Boolean']['output'];
|
|
165532
165944
|
};
|
|
165533
165945
|
export type MercuryRerankFocusAreasInput = {
|
|
165534
165946
|
afterFocusAreaId?: InputMaybe<Scalars['ID']['input']>;
|
|
165947
|
+
beforeFocusAreaId?: InputMaybe<Scalars['ID']['input']>;
|
|
165535
165948
|
containerId: Scalars['ID']['input'];
|
|
165536
165949
|
containerType: MercuryRankingContainerType;
|
|
165537
165950
|
focusAreaIds: Array<Scalars['ID']['input']>;
|
|
@@ -165613,6 +166026,7 @@ export type MercuryRiskCommentsArgs = {
|
|
|
165613
166026
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
165614
166027
|
cloudId: Scalars['ID']['input'];
|
|
165615
166028
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
166029
|
+
sortOrder?: InputMaybe<MercuryCommentSortOrder>;
|
|
165616
166030
|
};
|
|
165617
166031
|
export type MercuryRiskRiskStatusUpdatesArgs = {
|
|
165618
166032
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -165878,6 +166292,7 @@ export type MercuryRisksQueryApiRisksArgs = {
|
|
|
165878
166292
|
export type MercuryRisksQueryApiRisksByLikelihoodAndImpactArgs = {
|
|
165879
166293
|
cloudId: Scalars['ID']['input'];
|
|
165880
166294
|
focusAreaIds?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
166295
|
+
organizationIds?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
165881
166296
|
riskStatusId: Scalars['ID']['input'];
|
|
165882
166297
|
};
|
|
165883
166298
|
export type MercuryRisksQueryApiRisksSearchArgs = {
|
|
@@ -167223,6 +167638,7 @@ export type MercuryUpdateFocusAreaPayload = Payload & {
|
|
|
167223
167638
|
};
|
|
167224
167639
|
export type MercuryUpdateFocusAreaStatusUpdateInput = {
|
|
167225
167640
|
cloudId: Scalars['ID']['input'];
|
|
167641
|
+
health?: InputMaybe<MercuryFocusAreaHealthInput>;
|
|
167226
167642
|
id: Scalars['ID']['input'];
|
|
167227
167643
|
newTargetDate?: InputMaybe<MercuryFocusAreaTargetDateInput>;
|
|
167228
167644
|
statusTransitionId?: InputMaybe<Scalars['ID']['input']>;
|
|
@@ -167551,6 +167967,10 @@ export type MercuryUserEdge = {
|
|
|
167551
167967
|
cursor: Scalars['String']['output'];
|
|
167552
167968
|
node?: Maybe<User>;
|
|
167553
167969
|
};
|
|
167970
|
+
export type MercuryUserNotificationSettings = {
|
|
167971
|
+
__typename?: 'MercuryUserNotificationSettings';
|
|
167972
|
+
preferences?: Maybe<Array<MercuryNotificationPreference>>;
|
|
167973
|
+
};
|
|
167554
167974
|
export type MercuryValidateFocusAreasForRankingInput = {
|
|
167555
167975
|
cloudId?: InputMaybe<Scalars['ID']['input']>;
|
|
167556
167976
|
focusAreaIds: Array<Scalars['ID']['input']>;
|
|
@@ -168124,6 +168544,7 @@ export type Mutation = {
|
|
|
168124
168544
|
agentStudio_updateAgentDetails?: Maybe<AgentStudioUpdateAgentDetailsPayload>;
|
|
168125
168545
|
agentStudio_updateAgentKnowledgeSources?: Maybe<AgentStudioUpdateAgentKnowledgeSourcesPayload>;
|
|
168126
168546
|
agentStudio_updateAgentModelVersion?: Maybe<AgentStudioUpdateAgentModelVersionPayload>;
|
|
168547
|
+
agentStudio_updateAgentValueConfig?: Maybe<AgentStudioUpdateAgentValueConfigPayload>;
|
|
168127
168548
|
agentStudio_updateAgentVerification?: Maybe<AgentStudioUpdateAgentVerificationPayload>;
|
|
168128
168549
|
agentStudio_updateConversationConfiguration?: Maybe<AgentStudioUpdateConversationConfigurationPayload>;
|
|
168129
168550
|
agentStudio_updateConversationStarters?: Maybe<AgentStudioUpdateConversationStartersPayload>;
|
|
@@ -168166,6 +168587,8 @@ export type Mutation = {
|
|
|
168166
168587
|
agentWorkspace_startSmartRoutingDryRun?: Maybe<AgentWorkspaceStartSmartRoutingDryRunPayload>;
|
|
168167
168588
|
agentWorkspace_submitDraftedRoutingTable?: Maybe<AgentWorkspaceSubmitDraftedRoutingTablePayload>;
|
|
168168
168589
|
agentWorkspace_unassignCoverShift?: Maybe<AgentWorkspaceUnassignCoverShiftPayload>;
|
|
168590
|
+
agentWorkspace_updateConfigurableRoutingInputs?: Maybe<AgentWorkspaceUpdateConfigurableRoutingPayload>;
|
|
168591
|
+
agentWorkspace_updateConfigurableRoutingTriggers?: Maybe<AgentWorkspaceUpdateConfigurableRoutingPayload>;
|
|
168169
168592
|
agentWorkspace_updateRoutingConfig?: Maybe<AgentWorkspaceUpdateSmartRoutingConfigPayload>;
|
|
168170
168593
|
agentWorkspace_updateSchedule?: Maybe<AgentWorkspaceUpdateSchedulePayload>;
|
|
168171
168594
|
agentWorkspace_updateSkill?: Maybe<AgentWorkspaceSkillUpdatePayload>;
|
|
@@ -169249,8 +169672,10 @@ export type Mutation = {
|
|
|
169249
169672
|
kitsune_exportFeedbackFromView?: Maybe<KitsuneJob>;
|
|
169250
169673
|
kitsune_generateFeedbackSummary?: Maybe<KitsuneFeedback>;
|
|
169251
169674
|
kitsune_generateInsightSummary?: Maybe<KitsuneInsight>;
|
|
169675
|
+
kitsune_linkInsightsToIdea?: Maybe<Array<Maybe<KitsuneInsight>>>;
|
|
169252
169676
|
kitsune_moveSection?: Maybe<KitsuneSpace>;
|
|
169253
169677
|
kitsune_moveView?: Maybe<KitsuneSpace>;
|
|
169678
|
+
kitsune_refreshInsightCounters?: Maybe<KitsuneJob>;
|
|
169254
169679
|
kitsune_removeCustomer?: Maybe<KitsuneDeletedRecord>;
|
|
169255
169680
|
kitsune_removeCustomerField?: Maybe<KitsuneDeletedRecord>;
|
|
169256
169681
|
kitsune_removeFeedback?: Maybe<KitsuneDeletedRecord>;
|
|
@@ -169433,6 +169858,9 @@ export type Mutation = {
|
|
|
169433
169858
|
projects_updateAppPermissionPolicies?: Maybe<TownsquareUpdateProjectsAppPermissionPoliciesPayload>;
|
|
169434
169859
|
projects_updateSlackSubscription?: Maybe<TownsquareProjectsUpdateSlackSubscriptionPayload>;
|
|
169435
169860
|
provisionDemoSite?: Maybe<ProvisionDemoSiteResponse>;
|
|
169861
|
+
psm_finishOnboardTenant?: Maybe<PsmFinishOnboardTenantPayload>;
|
|
169862
|
+
psm_onboardTenant?: Maybe<PsmOnboardTenantPayload>;
|
|
169863
|
+
psm_registerDevice?: Maybe<PsmRegisterDevicePayload>;
|
|
169436
169864
|
publicLinkPagesAdminAction?: Maybe<PublicLinkPagesAdminActionPayload>;
|
|
169437
169865
|
publicLinkSpacesAction?: Maybe<PublicLinkSpacesActionPayload>;
|
|
169438
169866
|
radar_clearFocusAreaProposals?: Maybe<RadarMutationResponse>;
|
|
@@ -170024,6 +170452,11 @@ export type MutationAgentStudio_UpdateAgentModelVersionArgs = {
|
|
|
170024
170452
|
action: AgentStudioModelUpgradeAction;
|
|
170025
170453
|
id: Scalars['ID']['input'];
|
|
170026
170454
|
};
|
|
170455
|
+
export type MutationAgentStudio_UpdateAgentValueConfigArgs = {
|
|
170456
|
+
cloudId: Scalars['String']['input'];
|
|
170457
|
+
id: Scalars['ID']['input'];
|
|
170458
|
+
input: AgentStudioUpdateAgentValueConfigInput;
|
|
170459
|
+
};
|
|
170027
170460
|
export type MutationAgentStudio_UpdateAgentVerificationArgs = {
|
|
170028
170461
|
id: Scalars['ID']['input'];
|
|
170029
170462
|
verified: Scalars['Boolean']['input'];
|
|
@@ -170167,6 +170600,12 @@ export type MutationAgentWorkspace_SubmitDraftedRoutingTableArgs = {
|
|
|
170167
170600
|
export type MutationAgentWorkspace_UnassignCoverShiftArgs = {
|
|
170168
170601
|
input: AgentWorkspaceUnassignCoverShiftInput;
|
|
170169
170602
|
};
|
|
170603
|
+
export type MutationAgentWorkspace_UpdateConfigurableRoutingInputsArgs = {
|
|
170604
|
+
input: AgentWorkspaceUpdateConfigurableRoutingInputsInput;
|
|
170605
|
+
};
|
|
170606
|
+
export type MutationAgentWorkspace_UpdateConfigurableRoutingTriggersArgs = {
|
|
170607
|
+
input: AgentWorkspaceUpdateConfigurableRoutingTriggersInput;
|
|
170608
|
+
};
|
|
170170
170609
|
export type MutationAgentWorkspace_UpdateRoutingConfigArgs = {
|
|
170171
170610
|
input: AgentWorkspaceUpdateRoutingConfigInput;
|
|
170172
170611
|
};
|
|
@@ -173945,6 +174384,10 @@ export type MutationKitsune_GenerateFeedbackSummaryArgs = {
|
|
|
173945
174384
|
export type MutationKitsune_GenerateInsightSummaryArgs = {
|
|
173946
174385
|
insightAri: Scalars['ID']['input'];
|
|
173947
174386
|
};
|
|
174387
|
+
export type MutationKitsune_LinkInsightsToIdeaArgs = {
|
|
174388
|
+
ideaAri: Scalars['ID']['input'];
|
|
174389
|
+
insightIds: Array<Scalars['ID']['input']>;
|
|
174390
|
+
};
|
|
173948
174391
|
export type MutationKitsune_MoveSectionArgs = {
|
|
173949
174392
|
rank: KitsuneRankInput;
|
|
173950
174393
|
sectionAri: Scalars['ID']['input'];
|
|
@@ -173954,6 +174397,9 @@ export type MutationKitsune_MoveViewArgs = {
|
|
|
173954
174397
|
rank?: InputMaybe<KitsuneRankInput>;
|
|
173955
174398
|
viewAri: Scalars['ID']['input'];
|
|
173956
174399
|
};
|
|
174400
|
+
export type MutationKitsune_RefreshInsightCountersArgs = {
|
|
174401
|
+
workspaceAri: Scalars['ID']['input'];
|
|
174402
|
+
};
|
|
173957
174403
|
export type MutationKitsune_RemoveCustomerArgs = {
|
|
173958
174404
|
ari: Scalars['ID']['input'];
|
|
173959
174405
|
};
|
|
@@ -174510,6 +174956,17 @@ export type MutationProjects_UpdateAppPermissionPoliciesArgs = {
|
|
|
174510
174956
|
export type MutationProjects_UpdateSlackSubscriptionArgs = {
|
|
174511
174957
|
input: TownsquareProjectsUpdateSlackSubscriptionInput;
|
|
174512
174958
|
};
|
|
174959
|
+
export type MutationPsm_FinishOnboardTenantArgs = {
|
|
174960
|
+
cloudId: Scalars['ID']['input'];
|
|
174961
|
+
input: PsmFinishOnboardTenantInput;
|
|
174962
|
+
};
|
|
174963
|
+
export type MutationPsm_OnboardTenantArgs = {
|
|
174964
|
+
cloudId: Scalars['ID']['input'];
|
|
174965
|
+
input: PsmOnboardTenantInput;
|
|
174966
|
+
};
|
|
174967
|
+
export type MutationPsm_RegisterDeviceArgs = {
|
|
174968
|
+
input: PsmRegisterDeviceInput;
|
|
174969
|
+
};
|
|
174513
174970
|
export type MutationPublicLinkPagesAdminActionArgs = {
|
|
174514
174971
|
action: PublicLinkAdminAction;
|
|
174515
174972
|
pageIds: Array<Scalars['ID']['input']>;
|
|
@@ -178204,6 +178661,9 @@ export type ProactiveAiRovoInsightsStatusResponse = {
|
|
|
178204
178661
|
generatedAt?: Maybe<Scalars['String']['output']>;
|
|
178205
178662
|
insightsAvailable: Scalars['Boolean']['output'];
|
|
178206
178663
|
};
|
|
178664
|
+
export type ProactiveAiStratusTestInsightsAccountIdOverride = {
|
|
178665
|
+
accountId: Scalars['String']['input'];
|
|
178666
|
+
};
|
|
178207
178667
|
export type ProactiveAiStratusTestInsightsMinion = {
|
|
178208
178668
|
__typename?: 'ProactiveAiStratusTestInsightsMinion';
|
|
178209
178669
|
name: Scalars['String']['output'];
|
|
@@ -178294,6 +178754,88 @@ export type ProvisionDemoSiteResponse = {
|
|
|
178294
178754
|
taskId?: Maybe<Scalars['ID']['output']>;
|
|
178295
178755
|
xnId?: Maybe<Scalars['String']['output']>;
|
|
178296
178756
|
};
|
|
178757
|
+
export type PsmDevice = {
|
|
178758
|
+
__typename?: 'PsmDevice';
|
|
178759
|
+
atlassianAccountId: Scalars['ID']['output'];
|
|
178760
|
+
cloudId: Scalars['ID']['output'];
|
|
178761
|
+
createdAt: Scalars['DateTime']['output'];
|
|
178762
|
+
lastSeen?: Maybe<Scalars['DateTime']['output']>;
|
|
178763
|
+
providerSystemId?: Maybe<Scalars['ID']['output']>;
|
|
178764
|
+
serialNumber: Scalars['String']['output'];
|
|
178765
|
+
spaceId?: Maybe<Scalars['ID']['output']>;
|
|
178766
|
+
status: PsmDeviceStatus;
|
|
178767
|
+
updatedAt: Scalars['DateTime']['output'];
|
|
178768
|
+
};
|
|
178769
|
+
export type PsmDeviceConnection = {
|
|
178770
|
+
__typename?: 'PsmDeviceConnection';
|
|
178771
|
+
edges?: Maybe<Array<PsmDeviceEdge>>;
|
|
178772
|
+
errors?: Maybe<Array<QueryError>>;
|
|
178773
|
+
nodes?: Maybe<Array<Maybe<PsmDevice>>>;
|
|
178774
|
+
pageInfo: PageInfo;
|
|
178775
|
+
};
|
|
178776
|
+
export type PsmDeviceEdge = {
|
|
178777
|
+
__typename?: 'PsmDeviceEdge';
|
|
178778
|
+
cursor: Scalars['String']['output'];
|
|
178779
|
+
node?: Maybe<PsmDevice>;
|
|
178780
|
+
};
|
|
178781
|
+
export declare enum PsmDeviceStatus {
|
|
178782
|
+
Active = "ACTIVE",
|
|
178783
|
+
Offline = "OFFLINE",
|
|
178784
|
+
Orphan = "ORPHAN",
|
|
178785
|
+
Unmapped = "UNMAPPED"
|
|
178786
|
+
}
|
|
178787
|
+
export type PsmFinishOnboardTenantInput = {
|
|
178788
|
+
spaceId: Scalars['ID']['input'];
|
|
178789
|
+
};
|
|
178790
|
+
export type PsmFinishOnboardTenantPayload = Payload & {
|
|
178791
|
+
__typename?: 'PsmFinishOnboardTenantPayload';
|
|
178792
|
+
errors?: Maybe<Array<MutationError>>;
|
|
178793
|
+
success: Scalars['Boolean']['output'];
|
|
178794
|
+
tenant?: Maybe<PsmTenant>;
|
|
178795
|
+
};
|
|
178796
|
+
export type PsmOnboardTenantInput = {
|
|
178797
|
+
spaceId: Scalars['ID']['input'];
|
|
178798
|
+
};
|
|
178799
|
+
export type PsmOnboardTenantPayload = Payload & {
|
|
178800
|
+
__typename?: 'PsmOnboardTenantPayload';
|
|
178801
|
+
errors?: Maybe<Array<MutationError>>;
|
|
178802
|
+
success: Scalars['Boolean']['output'];
|
|
178803
|
+
tenant?: Maybe<PsmTenant>;
|
|
178804
|
+
};
|
|
178805
|
+
export declare enum PsmOnboardTenantStatus {
|
|
178806
|
+
ConfigurationUploadSuccess = "CONFIGURATION_UPLOAD_SUCCESS",
|
|
178807
|
+
Failed = "FAILED",
|
|
178808
|
+
Initiated = "INITIATED",
|
|
178809
|
+
Onboarded = "ONBOARDED"
|
|
178810
|
+
}
|
|
178811
|
+
export type PsmOnboardTenantStatusInput = {
|
|
178812
|
+
spaceId: Scalars['ID']['input'];
|
|
178813
|
+
};
|
|
178814
|
+
export type PsmOnboardTenantStatusResult = {
|
|
178815
|
+
__typename?: 'PsmOnboardTenantStatusResult';
|
|
178816
|
+
createdAt?: Maybe<Scalars['DateTime']['output']>;
|
|
178817
|
+
errorMessage?: Maybe<Scalars['String']['output']>;
|
|
178818
|
+
spaceId: Scalars['ID']['output'];
|
|
178819
|
+
status: PsmOnboardTenantStatus;
|
|
178820
|
+
};
|
|
178821
|
+
export type PsmRegisterDeviceInput = {
|
|
178822
|
+
atlassianAccountId: Scalars['ID']['input'];
|
|
178823
|
+
cloudId: Scalars['ID']['input'];
|
|
178824
|
+
serialNumber: Scalars['String']['input'];
|
|
178825
|
+
};
|
|
178826
|
+
export type PsmRegisterDevicePayload = Payload & {
|
|
178827
|
+
__typename?: 'PsmRegisterDevicePayload';
|
|
178828
|
+
device?: Maybe<PsmDevice>;
|
|
178829
|
+
errors?: Maybe<Array<MutationError>>;
|
|
178830
|
+
success: Scalars['Boolean']['output'];
|
|
178831
|
+
};
|
|
178832
|
+
export type PsmTenant = {
|
|
178833
|
+
__typename?: 'PsmTenant';
|
|
178834
|
+
createdAt?: Maybe<Scalars['DateTime']['output']>;
|
|
178835
|
+
errorMessage?: Maybe<Scalars['String']['output']>;
|
|
178836
|
+
spaceId: Scalars['ID']['output'];
|
|
178837
|
+
status: PsmOnboardTenantStatus;
|
|
178838
|
+
};
|
|
178297
178839
|
export type PublicLink = {
|
|
178298
178840
|
__typename?: 'PublicLink';
|
|
178299
178841
|
accessType?: Maybe<ConfluenceShareableLinkAccessType>;
|
|
@@ -178662,6 +179204,7 @@ export type Query = {
|
|
|
178662
179204
|
agentStudio_agentById?: Maybe<AgentStudioAgentResult>;
|
|
178663
179205
|
agentStudio_agentByIdForDuplicate?: Maybe<AgentStudioAgentResult>;
|
|
178664
179206
|
agentStudio_agentByIdentityAccountId?: Maybe<AgentStudioAgentResult>;
|
|
179207
|
+
agentStudio_agentValueConfig?: Maybe<AgentStudioAgentValueConfigResult>;
|
|
178665
179208
|
agentStudio_agentsByIds?: Maybe<Array<Maybe<AgentStudioAgent>>>;
|
|
178666
179209
|
agentStudio_authReadinessForAgent?: Maybe<AgentStudioAuthReadinessResult>;
|
|
178667
179210
|
agentStudio_batchEvalConversationById?: Maybe<AgentStudioConversationResult>;
|
|
@@ -179115,7 +179658,6 @@ export type Query = {
|
|
|
179115
179658
|
confluence_contentTreeChildren?: Maybe<ConfluenceContentTreeItemConnection>;
|
|
179116
179659
|
confluence_contentWatchersUnfiltered?: Maybe<PaginatedPersonList>;
|
|
179117
179660
|
confluence_contents?: Maybe<Array<Maybe<Content>>>;
|
|
179118
|
-
confluence_contextualTitleEmoji?: Maybe<Scalars['String']['output']>;
|
|
179119
179661
|
confluence_csvExportDownloadLink?: Maybe<Scalars['String']['output']>;
|
|
179120
179662
|
confluence_cutoverDate?: Maybe<ConfluenceCutoverDate>;
|
|
179121
179663
|
confluence_dataLifecycleManagementPolicy?: Maybe<ConfluenceDataLifecycleManagementPolicy>;
|
|
@@ -179479,9 +180021,9 @@ export type Query = {
|
|
|
179479
180021
|
glance_getCurrentUserSettings?: Maybe<UserSettings>;
|
|
179480
180022
|
glance_getPipelineEvents?: Maybe<Array<Maybe<GlanceUserInsights>>>;
|
|
179481
180023
|
glance_getVULNIssues?: Maybe<Array<Maybe<GlanceUserInsights>>>;
|
|
179482
|
-
globalApp_extensionsByContextAri?: Maybe<
|
|
179483
|
-
globalApp_extensionsByInstallationId?: Maybe<
|
|
179484
|
-
globalApp_isProductAdmin?: Maybe<
|
|
180024
|
+
globalApp_extensionsByContextAri?: Maybe<GlobalAppExtensionsResponse>;
|
|
180025
|
+
globalApp_extensionsByInstallationId?: Maybe<GlobalAppExtensionsResponse>;
|
|
180026
|
+
globalApp_isProductAdmin?: Maybe<GlobalAppIsProductAdminResponse>;
|
|
179485
180027
|
globalContextContentCreationMetadata?: Maybe<ContentCreationMetadata>;
|
|
179486
180028
|
globalSpaceConfiguration?: Maybe<GlobalSpaceConfiguration>;
|
|
179487
180029
|
goals_allWatchedGoalUpdates?: Maybe<TownsquareUpdateConnection>;
|
|
@@ -181792,6 +182334,7 @@ export type Query = {
|
|
|
181792
182334
|
jsmSolutionComposerPlan?: Maybe<JsmSolutionComposerPlanQueryApi>;
|
|
181793
182335
|
jsmTelemetry_aiPrompt?: Maybe<Scalars['String']['output']>;
|
|
181794
182336
|
jsmTelemetry_dashboard?: Maybe<JsmTelemetryDashboardResult>;
|
|
182337
|
+
jsmTelemetry_getIncidentContext?: Maybe<JsmTelemetryIncidentContextResult>;
|
|
181795
182338
|
jsmTelemetry_getMetricAttributeValues?: Maybe<JsmTelemetryMetricAttributeValuesResult>;
|
|
181796
182339
|
jsmTelemetry_getMetricAttributes?: Maybe<JsmTelemetryMetricAttributesResult>;
|
|
181797
182340
|
jsmTelemetry_getProviderContextSchema?: Maybe<JsmTelemetryProviderContextSchemaResult>;
|
|
@@ -182022,6 +182565,9 @@ export type Query = {
|
|
|
182022
182565
|
projects_statusSummary?: Maybe<TownsquareStatusSummary>;
|
|
182023
182566
|
projects_statusSummaryForTag?: Maybe<TownsquareStatusSummaryForTag>;
|
|
182024
182567
|
projects_updatesByIds?: Maybe<Array<Maybe<TownsquareProjectUpdate>>>;
|
|
182568
|
+
psm_device?: Maybe<PsmDevice>;
|
|
182569
|
+
psm_devices?: Maybe<PsmDeviceConnection>;
|
|
182570
|
+
psm_onboardTenantStatus?: Maybe<PsmOnboardTenantStatusResult>;
|
|
182025
182571
|
ptpage?: Maybe<PtPage>;
|
|
182026
182572
|
publicLinkInformation?: Maybe<PublicLinkInformation>;
|
|
182027
182573
|
publicLinkOnboardingReference?: Maybe<PublicLinkOnboardingReference>;
|
|
@@ -182666,6 +183212,10 @@ export type QueryAgentStudio_AgentByIdentityAccountIdArgs = {
|
|
|
182666
183212
|
cloudId: Scalars['String']['input'];
|
|
182667
183213
|
id: Scalars['ID']['input'];
|
|
182668
183214
|
};
|
|
183215
|
+
export type QueryAgentStudio_AgentValueConfigArgs = {
|
|
183216
|
+
cloudId: Scalars['String']['input'];
|
|
183217
|
+
id: Scalars['ID']['input'];
|
|
183218
|
+
};
|
|
182669
183219
|
export type QueryAgentStudio_AgentsByIdsArgs = {
|
|
182670
183220
|
ids: Array<Scalars['ID']['input']>;
|
|
182671
183221
|
};
|
|
@@ -184867,10 +185417,6 @@ export type QueryConfluence_ContentWatchersUnfilteredArgs = {
|
|
|
184867
185417
|
export type QueryConfluence_ContentsArgs = {
|
|
184868
185418
|
ids: Array<InputMaybe<Scalars['ID']['input']>>;
|
|
184869
185419
|
};
|
|
184870
|
-
export type QueryConfluence_ContextualTitleEmojiArgs = {
|
|
184871
|
-
pageAri: Scalars['ID']['input'];
|
|
184872
|
-
pageTitle: Scalars['String']['input'];
|
|
184873
|
-
};
|
|
184874
185420
|
export type QueryConfluence_CsvExportDownloadLinkArgs = {
|
|
184875
185421
|
cloudId: Scalars['ID']['input'];
|
|
184876
185422
|
taskId: Scalars['String']['input'];
|
|
@@ -202780,6 +203326,7 @@ export type QueryJira_IssueCreateLayoutArgs = {
|
|
|
202780
203326
|
layoutFilter?: InputMaybe<JiraIssueCreateLayoutFilter>;
|
|
202781
203327
|
project?: InputMaybe<JiraProjectInput>;
|
|
202782
203328
|
requestType?: InputMaybe<JiraRequestTypeInput>;
|
|
203329
|
+
sessionId?: InputMaybe<Scalars['String']['input']>;
|
|
202783
203330
|
};
|
|
202784
203331
|
export type QueryJira_IssueCreateLayoutWithMlArgs = {
|
|
202785
203332
|
cloudId: Scalars['ID']['input'];
|
|
@@ -202787,6 +203334,7 @@ export type QueryJira_IssueCreateLayoutWithMlArgs = {
|
|
|
202787
203334
|
layoutFilter?: InputMaybe<JiraIssueCreateLayoutFilter>;
|
|
202788
203335
|
project?: InputMaybe<JiraProjectInput>;
|
|
202789
203336
|
requestType?: InputMaybe<JiraRequestTypeInput>;
|
|
203337
|
+
sessionId?: InputMaybe<Scalars['String']['input']>;
|
|
202790
203338
|
};
|
|
202791
203339
|
export type QueryJira_IssueSearchTopLevelIssueFieldsAggregationArgs = {
|
|
202792
203340
|
aggregationConfig?: InputMaybe<JiraIssueSearchAggregationConfigInput>;
|
|
@@ -203022,6 +203570,10 @@ export type QueryJsmTelemetry_DashboardArgs = {
|
|
|
203022
203570
|
incidentId: Scalars['ID']['input'];
|
|
203023
203571
|
input: JsmTelemetryDashboardQueryInput;
|
|
203024
203572
|
};
|
|
203573
|
+
export type QueryJsmTelemetry_GetIncidentContextArgs = {
|
|
203574
|
+
cloudId?: InputMaybe<Scalars['ID']['input']>;
|
|
203575
|
+
incidentId: Scalars['ID']['input'];
|
|
203576
|
+
};
|
|
203025
203577
|
export type QueryJsmTelemetry_GetMetricAttributeValuesArgs = {
|
|
203026
203578
|
cloudId?: InputMaybe<Scalars['ID']['input']>;
|
|
203027
203579
|
incidentId: Scalars['ID']['input'];
|
|
@@ -203716,6 +204268,7 @@ export type QueryProactiveAi_RovoInsightsStatusArgs = {
|
|
|
203716
204268
|
forceCacheMiss?: InputMaybe<Scalars['Boolean']['input']>;
|
|
203717
204269
|
};
|
|
203718
204270
|
export type QueryProactiveAi_StratusTestInsightsArgs = {
|
|
204271
|
+
accountIdOverride?: InputMaybe<ProactiveAiStratusTestInsightsAccountIdOverride>;
|
|
203719
204272
|
cloudId: Scalars['ID']['input'];
|
|
203720
204273
|
variables?: InputMaybe<Array<InputMaybe<ProactiveAiStratusTestInsightsPromptVariable>>>;
|
|
203721
204274
|
};
|
|
@@ -203843,6 +204396,20 @@ export type QueryProjects_StatusSummaryForTagArgs = {
|
|
|
203843
204396
|
export type QueryProjects_UpdatesByIdsArgs = {
|
|
203844
204397
|
projectUpdateIds: Array<Scalars['String']['input']>;
|
|
203845
204398
|
};
|
|
204399
|
+
export type QueryPsm_DeviceArgs = {
|
|
204400
|
+
cloudId: Scalars['ID']['input'];
|
|
204401
|
+
serialNumber: Scalars['String']['input'];
|
|
204402
|
+
};
|
|
204403
|
+
export type QueryPsm_DevicesArgs = {
|
|
204404
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
204405
|
+
cloudId: Scalars['ID']['input'];
|
|
204406
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
204407
|
+
spaceId: Scalars['ID']['input'];
|
|
204408
|
+
};
|
|
204409
|
+
export type QueryPsm_OnboardTenantStatusArgs = {
|
|
204410
|
+
cloudId: Scalars['ID']['input'];
|
|
204411
|
+
input: PsmOnboardTenantStatusInput;
|
|
204412
|
+
};
|
|
203846
204413
|
export type QueryPtpageArgs = {
|
|
203847
204414
|
enablePaging?: InputMaybe<Scalars['Boolean']['input']>;
|
|
203848
204415
|
id?: InputMaybe<Scalars['ID']['input']>;
|
|
@@ -205787,10 +206354,10 @@ export type RadarSkill = Node & {
|
|
|
205787
206354
|
description?: Maybe<Scalars['String']['output']>;
|
|
205788
206355
|
hasChildren?: Maybe<Scalars['Boolean']['output']>;
|
|
205789
206356
|
id: Scalars['ID']['output'];
|
|
205790
|
-
level?: Maybe<Scalars['Int']['output']>;
|
|
205791
206357
|
name: Scalars['String']['output'];
|
|
205792
206358
|
parent?: Maybe<RadarSkill>;
|
|
205793
206359
|
parentId?: Maybe<Scalars['ID']['output']>;
|
|
206360
|
+
pathIds: Array<Scalars['ID']['output']>;
|
|
205794
206361
|
updatedAt: Scalars['DateTime']['output'];
|
|
205795
206362
|
};
|
|
205796
206363
|
export type RadarSkillAssignmentInput = {
|
|
@@ -232939,6 +233506,7 @@ export type Subscription = {
|
|
|
232939
233506
|
migrationPlanningService: MigrationPlanningServiceSubscription;
|
|
232940
233507
|
postOffice_onMessageReceived?: Maybe<PostOfficeMessagePayload>;
|
|
232941
233508
|
postOffice_onMessageReceivedEnriched?: Maybe<PostOfficeEnrichedMessagePayload>;
|
|
233509
|
+
psm_dummy?: Maybe<Scalars['String']['output']>;
|
|
232942
233510
|
sandbox: SandboxSubscription;
|
|
232943
233511
|
signup: SignupSubscriptionApi;
|
|
232944
233512
|
spf_onPlanUpdate?: Maybe<SpfPlan>;
|
|
@@ -240038,6 +240606,80 @@ export declare enum TrelloAiFeatureEntityAction {
|
|
|
240038
240606
|
Create = "CREATE",
|
|
240039
240607
|
Update = "UPDATE"
|
|
240040
240608
|
}
|
|
240609
|
+
export type TrelloAiInterjectionParameterOverrides = {
|
|
240610
|
+
__typename?: 'TrelloAiInterjectionParameterOverrides';
|
|
240611
|
+
maximumTokens?: Maybe<Scalars['Int']['output']>;
|
|
240612
|
+
reasoningEffort?: Maybe<TrelloAiReasoningEffort>;
|
|
240613
|
+
temperature?: Maybe<Scalars['Float']['output']>;
|
|
240614
|
+
timeoutSeconds?: Maybe<Scalars['Int']['output']>;
|
|
240615
|
+
topP?: Maybe<Scalars['Float']['output']>;
|
|
240616
|
+
};
|
|
240617
|
+
export type TrelloAiInterjectionParameterOverridesInput = {
|
|
240618
|
+
maximumTokens?: InputMaybe<Scalars['Int']['input']>;
|
|
240619
|
+
reasoningEffort?: InputMaybe<TrelloAiReasoningEffort>;
|
|
240620
|
+
temperature?: InputMaybe<Scalars['Float']['input']>;
|
|
240621
|
+
timeoutSeconds?: InputMaybe<Scalars['Int']['input']>;
|
|
240622
|
+
topP?: InputMaybe<Scalars['Float']['input']>;
|
|
240623
|
+
};
|
|
240624
|
+
export type TrelloAiModelConfig = {
|
|
240625
|
+
__typename?: 'TrelloAiModelConfig';
|
|
240626
|
+
maximumTokens?: Maybe<Scalars['Int']['output']>;
|
|
240627
|
+
responseFormat?: Maybe<Scalars['String']['output']>;
|
|
240628
|
+
temperature?: Maybe<Scalars['Float']['output']>;
|
|
240629
|
+
topP?: Maybe<Scalars['Float']['output']>;
|
|
240630
|
+
};
|
|
240631
|
+
export type TrelloAiModelMetadata = {
|
|
240632
|
+
__typename?: 'TrelloAiModelMetadata';
|
|
240633
|
+
capabilities?: Maybe<Array<Scalars['String']['output']>>;
|
|
240634
|
+
id?: Maybe<Scalars['String']['output']>;
|
|
240635
|
+
isDefault?: Maybe<Scalars['Boolean']['output']>;
|
|
240636
|
+
name?: Maybe<Scalars['String']['output']>;
|
|
240637
|
+
provider?: Maybe<Scalars['String']['output']>;
|
|
240638
|
+
};
|
|
240639
|
+
export type TrelloAiPromptConfig = {
|
|
240640
|
+
__typename?: 'TrelloAiPromptConfig';
|
|
240641
|
+
feature?: Maybe<Scalars['String']['output']>;
|
|
240642
|
+
id?: Maybe<Scalars['String']['output']>;
|
|
240643
|
+
model?: Maybe<Scalars['String']['output']>;
|
|
240644
|
+
modelConfiguration?: Maybe<TrelloAiModelConfig>;
|
|
240645
|
+
systemPrompt?: Maybe<Scalars['String']['output']>;
|
|
240646
|
+
tools?: Maybe<Scalars['JSON']['output']>;
|
|
240647
|
+
useCaseId?: Maybe<Scalars['String']['output']>;
|
|
240648
|
+
version?: Maybe<Scalars['Int']['output']>;
|
|
240649
|
+
};
|
|
240650
|
+
export type TrelloAiPromptInterjectionContract = {
|
|
240651
|
+
__typename?: 'TrelloAiPromptInterjectionContract';
|
|
240652
|
+
definitions?: Maybe<Array<TrelloAiPromptInterjectionDefinition>>;
|
|
240653
|
+
models?: Maybe<Array<TrelloAiModelMetadata>>;
|
|
240654
|
+
overrideSchema?: Maybe<Scalars['JSON']['output']>;
|
|
240655
|
+
};
|
|
240656
|
+
export type TrelloAiPromptInterjectionDefinition = {
|
|
240657
|
+
__typename?: 'TrelloAiPromptInterjectionDefinition';
|
|
240658
|
+
currentPrompt?: Maybe<TrelloAiPromptConfig>;
|
|
240659
|
+
promptType?: Maybe<Scalars['String']['output']>;
|
|
240660
|
+
};
|
|
240661
|
+
export type TrelloAiPromptInterjectionOverride = {
|
|
240662
|
+
__typename?: 'TrelloAiPromptInterjectionOverride';
|
|
240663
|
+
enabled?: Maybe<Scalars['Boolean']['output']>;
|
|
240664
|
+
modelId?: Maybe<Scalars['String']['output']>;
|
|
240665
|
+
parameters?: Maybe<TrelloAiInterjectionParameterOverrides>;
|
|
240666
|
+
promptType: Scalars['String']['output'];
|
|
240667
|
+
systemPrompt?: Maybe<Scalars['String']['output']>;
|
|
240668
|
+
};
|
|
240669
|
+
export type TrelloAiPromptInterjectionOverrideInput = {
|
|
240670
|
+
enabled?: InputMaybe<Scalars['Boolean']['input']>;
|
|
240671
|
+
modelId?: InputMaybe<Scalars['String']['input']>;
|
|
240672
|
+
parameters?: InputMaybe<TrelloAiInterjectionParameterOverridesInput>;
|
|
240673
|
+
promptType: Scalars['String']['input'];
|
|
240674
|
+
systemPrompt?: InputMaybe<Scalars['String']['input']>;
|
|
240675
|
+
};
|
|
240676
|
+
export declare enum TrelloAiReasoningEffort {
|
|
240677
|
+
High = "HIGH",
|
|
240678
|
+
Low = "LOW",
|
|
240679
|
+
Medium = "MEDIUM",
|
|
240680
|
+
Minimal = "MINIMAL",
|
|
240681
|
+
None = "NONE"
|
|
240682
|
+
}
|
|
240041
240683
|
export type TrelloAiRule = {
|
|
240042
240684
|
__typename?: 'TrelloAiRule';
|
|
240043
240685
|
id: Scalars['ID']['output'];
|
|
@@ -242416,6 +243058,11 @@ export type TrelloEnterprisePrefs = {
|
|
|
242416
243058
|
__typename?: 'TrelloEnterprisePrefs';
|
|
242417
243059
|
atlassianIntelligence?: Maybe<TrelloAtlassianIntelligence>;
|
|
242418
243060
|
};
|
|
243061
|
+
export type TrelloExistingLabelSuggestion = {
|
|
243062
|
+
__typename?: 'TrelloExistingLabelSuggestion';
|
|
243063
|
+
label?: Maybe<TrelloLabel>;
|
|
243064
|
+
reason?: Maybe<Scalars['String']['output']>;
|
|
243065
|
+
};
|
|
242419
243066
|
export type TrelloGenerateBoardBackgroundJob = TrelloJob & {
|
|
242420
243067
|
__typename?: 'TrelloGenerateBoardBackgroundJob';
|
|
242421
243068
|
background?: Maybe<TrelloBoardBackground>;
|
|
@@ -243523,12 +244170,15 @@ export type TrelloMutationApi = {
|
|
|
243523
244170
|
removeWorkspaceTagFromBoard?: Maybe<TrelloRemoveWorkspaceTagFromBoardPayload>;
|
|
243524
244171
|
reopenBoard?: Maybe<TrelloReopenBoardPayload>;
|
|
243525
244172
|
reopenCard?: Maybe<TrelloReopenCardPayload>;
|
|
244173
|
+
researchCardWithAi?: Maybe<TrelloResearchCardWithAiPayload>;
|
|
243526
244174
|
resetCardCover?: Maybe<TrelloResetCardCoverPayload>;
|
|
244175
|
+
resetMemberAiImageGenerationUsage?: Maybe<TrelloResetMemberAiImageGenerationUsagePayload>;
|
|
243527
244176
|
retryAiOnBoard?: Maybe<TrelloRetryAiOnBoardPayload>;
|
|
243528
244177
|
revokeMemberOAuth2AccessGrants?: Maybe<TrelloRevokeMemberOAuth2AccessGrantsPayload>;
|
|
243529
244178
|
rotateOAuth2ClientSecret?: Maybe<TrelloRotateOAuth2ClientSecretPayload>;
|
|
243530
244179
|
sendBoardEmailKeyMessage?: Maybe<TrelloSendBoardEmailKeyMessagePayload>;
|
|
243531
244180
|
sendInboxEmailKeyMessage?: Maybe<TrelloSendBoardEmailKeyMessagePayload>;
|
|
244181
|
+
setAiPromptInterjectionOverrides?: Maybe<TrelloSetAiPromptInterjectionOverridesPayload>;
|
|
243532
244182
|
setBoardBackgroundFromImageUrl?: Maybe<TrelloSetBoardBackgroundFromImageUrlPayload>;
|
|
243533
244183
|
setPlannerBoardOverride?: Maybe<TrelloSetPlannerBoardOverridePayload>;
|
|
243534
244184
|
showCardCoversOnCardFront?: Maybe<TrelloShowCardCoversOnCardFrontPayload>;
|
|
@@ -243536,6 +244186,8 @@ export type TrelloMutationApi = {
|
|
|
243536
244186
|
sortInboxCards?: Maybe<TrelloSortInboxCardsPayload>;
|
|
243537
244187
|
sortListCards?: Maybe<TrelloSortListCardsPayload>;
|
|
243538
244188
|
submitCardBatchToBoard?: Maybe<TrelloCardBatchJobPayload>;
|
|
244189
|
+
suggestExistingLabelsForCard?: Maybe<TrelloSuggestExistingLabelsForCardPayload>;
|
|
244190
|
+
suggestNewLabelsForCard?: Maybe<TrelloSuggestNewLabelsForCardPayload>;
|
|
243539
244191
|
toggleLabsFeatureForMember?: Maybe<TrelloToggleLabsFeatureForMemberPayload>;
|
|
243540
244192
|
undoAction?: Maybe<TrelloUndoActionPayload>;
|
|
243541
244193
|
unwatchCard?: Maybe<TrelloWatchCardPayload>;
|
|
@@ -243822,6 +244474,9 @@ export type TrelloMutationApiReopenBoardArgs = {
|
|
|
243822
244474
|
export type TrelloMutationApiReopenCardArgs = {
|
|
243823
244475
|
input: TrelloReopenCardInput;
|
|
243824
244476
|
};
|
|
244477
|
+
export type TrelloMutationApiResearchCardWithAiArgs = {
|
|
244478
|
+
input: TrelloResearchCardWithAiInput;
|
|
244479
|
+
};
|
|
243825
244480
|
export type TrelloMutationApiResetCardCoverArgs = {
|
|
243826
244481
|
input: TrelloResetCardCoverInput;
|
|
243827
244482
|
};
|
|
@@ -243837,6 +244492,9 @@ export type TrelloMutationApiRotateOAuth2ClientSecretArgs = {
|
|
|
243837
244492
|
export type TrelloMutationApiSendBoardEmailKeyMessageArgs = {
|
|
243838
244493
|
input?: InputMaybe<TrelloSendBoardEmailKeyInput>;
|
|
243839
244494
|
};
|
|
244495
|
+
export type TrelloMutationApiSetAiPromptInterjectionOverridesArgs = {
|
|
244496
|
+
input: TrelloSetAiPromptInterjectionOverridesInput;
|
|
244497
|
+
};
|
|
243840
244498
|
export type TrelloMutationApiSetBoardBackgroundFromImageUrlArgs = {
|
|
243841
244499
|
input: TrelloSetBoardBackgroundFromImageUrlInput;
|
|
243842
244500
|
};
|
|
@@ -243858,6 +244516,12 @@ export type TrelloMutationApiSortListCardsArgs = {
|
|
|
243858
244516
|
export type TrelloMutationApiSubmitCardBatchToBoardArgs = {
|
|
243859
244517
|
input: TrelloCardBatchSpecificationInput;
|
|
243860
244518
|
};
|
|
244519
|
+
export type TrelloMutationApiSuggestExistingLabelsForCardArgs = {
|
|
244520
|
+
input: TrelloSuggestExistingLabelsForCardInput;
|
|
244521
|
+
};
|
|
244522
|
+
export type TrelloMutationApiSuggestNewLabelsForCardArgs = {
|
|
244523
|
+
input: TrelloSuggestNewLabelsForCardInput;
|
|
244524
|
+
};
|
|
243861
244525
|
export type TrelloMutationApiToggleLabsFeatureForMemberArgs = {
|
|
243862
244526
|
input: TrelloToggleLabsFeatureForMemberInput;
|
|
243863
244527
|
};
|
|
@@ -244011,6 +244675,12 @@ export type TrelloNewCustomFieldOptionInput = {
|
|
|
244011
244675
|
position?: InputMaybe<Scalars['Float']['input']>;
|
|
244012
244676
|
value: TrelloCustomFieldOptionValueInput;
|
|
244013
244677
|
};
|
|
244678
|
+
export type TrelloNewLabelSuggestion = {
|
|
244679
|
+
__typename?: 'TrelloNewLabelSuggestion';
|
|
244680
|
+
color?: Maybe<Scalars['String']['output']>;
|
|
244681
|
+
name?: Maybe<Scalars['String']['output']>;
|
|
244682
|
+
reason?: Maybe<Scalars['String']['output']>;
|
|
244683
|
+
};
|
|
244014
244684
|
export type TrelloNewYearsResolutionAiBoardInput = {
|
|
244015
244685
|
resolution: Scalars['String']['input'];
|
|
244016
244686
|
};
|
|
@@ -244928,6 +245598,8 @@ export type TrelloProviderCalendarInterface = {
|
|
|
244928
245598
|
};
|
|
244929
245599
|
export type TrelloQueryApi = {
|
|
244930
245600
|
__typename?: 'TrelloQueryApi';
|
|
245601
|
+
aiPromptInterjectionContract?: Maybe<TrelloAiPromptInterjectionContract>;
|
|
245602
|
+
aiPromptInterjectionOverrides?: Maybe<Array<TrelloAiPromptInterjectionOverride>>;
|
|
244931
245603
|
application?: Maybe<TrelloApplication>;
|
|
244932
245604
|
archivedCards?: Maybe<TrelloArchivedCardConnection>;
|
|
244933
245605
|
attachmentsById?: Maybe<Array<Maybe<TrelloAttachment>>>;
|
|
@@ -245318,6 +245990,26 @@ export type TrelloReopenCardPayload = Payload & {
|
|
|
245318
245990
|
errors?: Maybe<Array<MutationError>>;
|
|
245319
245991
|
success: Scalars['Boolean']['output'];
|
|
245320
245992
|
};
|
|
245993
|
+
export type TrelloResearchCardSuggestedLink = {
|
|
245994
|
+
__typename?: 'TrelloResearchCardSuggestedLink';
|
|
245995
|
+
reason: Scalars['String']['output'];
|
|
245996
|
+
title: Scalars['String']['output'];
|
|
245997
|
+
url: Scalars['String']['output'];
|
|
245998
|
+
};
|
|
245999
|
+
export type TrelloResearchCardWithAiInput = {
|
|
246000
|
+
cardId: Scalars['ID']['input'];
|
|
246001
|
+
};
|
|
246002
|
+
export type TrelloResearchCardWithAiPayload = Payload & {
|
|
246003
|
+
__typename?: 'TrelloResearchCardWithAiPayload';
|
|
246004
|
+
errors?: Maybe<Array<MutationError>>;
|
|
246005
|
+
result?: Maybe<TrelloResearchCardWithAiResult>;
|
|
246006
|
+
success: Scalars['Boolean']['output'];
|
|
246007
|
+
};
|
|
246008
|
+
export type TrelloResearchCardWithAiResult = {
|
|
246009
|
+
__typename?: 'TrelloResearchCardWithAiResult';
|
|
246010
|
+
suggestedLinks: Array<TrelloResearchCardSuggestedLink>;
|
|
246011
|
+
summary: Scalars['String']['output'];
|
|
246012
|
+
};
|
|
245321
246013
|
export type TrelloResetCardCoverInput = {
|
|
245322
246014
|
cardId: Scalars['ID']['input'];
|
|
245323
246015
|
};
|
|
@@ -245327,6 +246019,12 @@ export type TrelloResetCardCoverPayload = Payload & {
|
|
|
245327
246019
|
errors?: Maybe<Array<MutationError>>;
|
|
245328
246020
|
success: Scalars['Boolean']['output'];
|
|
245329
246021
|
};
|
|
246022
|
+
export type TrelloResetMemberAiImageGenerationUsagePayload = Payload & {
|
|
246023
|
+
__typename?: 'TrelloResetMemberAiImageGenerationUsagePayload';
|
|
246024
|
+
errors?: Maybe<Array<MutationError>>;
|
|
246025
|
+
success: Scalars['Boolean']['output'];
|
|
246026
|
+
usageLimits?: Maybe<Array<TrelloUsageLimit>>;
|
|
246027
|
+
};
|
|
245330
246028
|
export type TrelloRetryAiOnBoardInput = {
|
|
245331
246029
|
boardId: Scalars['ID']['input'];
|
|
245332
246030
|
userInput: TrelloAiBoardUserInput;
|
|
@@ -245399,6 +246097,14 @@ export type TrelloSendBoardEmailKeyMessagePayload = Payload & {
|
|
|
245399
246097
|
errors?: Maybe<Array<MutationError>>;
|
|
245400
246098
|
success: Scalars['Boolean']['output'];
|
|
245401
246099
|
};
|
|
246100
|
+
export type TrelloSetAiPromptInterjectionOverridesInput = {
|
|
246101
|
+
overrides: Array<TrelloAiPromptInterjectionOverrideInput>;
|
|
246102
|
+
};
|
|
246103
|
+
export type TrelloSetAiPromptInterjectionOverridesPayload = Payload & {
|
|
246104
|
+
__typename?: 'TrelloSetAiPromptInterjectionOverridesPayload';
|
|
246105
|
+
errors?: Maybe<Array<MutationError>>;
|
|
246106
|
+
success: Scalars['Boolean']['output'];
|
|
246107
|
+
};
|
|
245402
246108
|
export type TrelloSetBoardBackgroundFromImageUrlInput = {
|
|
245403
246109
|
boardId: Scalars['ID']['input'];
|
|
245404
246110
|
url: Scalars['String']['input'];
|
|
@@ -245560,6 +246266,24 @@ export type TrelloSubscriptionApiOnWorkspaceUpdatedArgs = {
|
|
|
245560
246266
|
id: Scalars['ID']['input'];
|
|
245561
246267
|
noInitialResponse?: InputMaybe<Scalars['Boolean']['input']>;
|
|
245562
246268
|
};
|
|
246269
|
+
export type TrelloSuggestExistingLabelsForCardInput = {
|
|
246270
|
+
cardId: Scalars['ID']['input'];
|
|
246271
|
+
};
|
|
246272
|
+
export type TrelloSuggestExistingLabelsForCardPayload = Payload & {
|
|
246273
|
+
__typename?: 'TrelloSuggestExistingLabelsForCardPayload';
|
|
246274
|
+
errors?: Maybe<Array<MutationError>>;
|
|
246275
|
+
success: Scalars['Boolean']['output'];
|
|
246276
|
+
suggestedLabels?: Maybe<Array<TrelloExistingLabelSuggestion>>;
|
|
246277
|
+
};
|
|
246278
|
+
export type TrelloSuggestNewLabelsForCardInput = {
|
|
246279
|
+
cardId: Scalars['ID']['input'];
|
|
246280
|
+
};
|
|
246281
|
+
export type TrelloSuggestNewLabelsForCardPayload = Payload & {
|
|
246282
|
+
__typename?: 'TrelloSuggestNewLabelsForCardPayload';
|
|
246283
|
+
errors?: Maybe<Array<MutationError>>;
|
|
246284
|
+
success: Scalars['Boolean']['output'];
|
|
246285
|
+
suggestedLabels?: Maybe<Array<TrelloNewLabelSuggestion>>;
|
|
246286
|
+
};
|
|
245563
246287
|
export declare enum TrelloSupportedPlannerProviders {
|
|
245564
246288
|
Google = "GOOGLE",
|
|
245565
246289
|
Outlook = "OUTLOOK"
|
|
@@ -246292,6 +247016,7 @@ export type TrelloUserUnrestrictedAccessSummary = {
|
|
|
246292
247016
|
};
|
|
246293
247017
|
export type TrelloVoiceCaptureCardUpdated = {
|
|
246294
247018
|
__typename?: 'TrelloVoiceCaptureCardUpdated';
|
|
247019
|
+
description?: Maybe<Scalars['String']['output']>;
|
|
246295
247020
|
due?: Maybe<Scalars['DateTime']['output']>;
|
|
246296
247021
|
name?: Maybe<Scalars['String']['output']>;
|
|
246297
247022
|
objectId: Scalars['ID']['output'];
|