@forge/cli-shared 9.2.0-next.6 → 9.2.0-next.7
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 +12 -0
- package/out/apps/create-an-app.d.ts +4 -4
- package/out/apps/create-an-app.d.ts.map +1 -1
- package/out/apps/create-an-app.js +8 -2
- package/out/apps/register-app.d.ts +2 -1
- package/out/apps/register-app.d.ts.map +1 -1
- package/out/graphql/graphql-types.d.ts +358 -10
- package/out/graphql/graphql-types.d.ts.map +1 -1
- package/out/graphql/graphql-types.js +92 -48
- package/out/ui/text.d.ts +4 -1
- package/out/ui/text.d.ts.map +1 -1
- package/out/ui/text.js +7 -4
- package/package.json +2 -2
|
@@ -6068,6 +6068,23 @@ export type AgentStudioAgentUsePermissionSettings = {
|
|
|
6068
6068
|
etag?: Maybe<Scalars['String']['output']>;
|
|
6069
6069
|
mode?: Maybe<AgentStudioUsePermissionMode>;
|
|
6070
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
|
+
}
|
|
6071
6088
|
export type AgentStudioAgentVersion = {
|
|
6072
6089
|
__typename?: 'AgentStudioAgentVersion';
|
|
6073
6090
|
id: Scalars['ID']['output'];
|
|
@@ -6514,6 +6531,11 @@ export type AgentStudioCreateScenarioPayload = Payload & {
|
|
|
6514
6531
|
scenario?: Maybe<AgentStudioScenario>;
|
|
6515
6532
|
success: Scalars['Boolean']['output'];
|
|
6516
6533
|
};
|
|
6534
|
+
export type AgentStudioCustomValueConfigInput = {
|
|
6535
|
+
customMeasurementLabel: Scalars['String']['input'];
|
|
6536
|
+
customUnitLabel: Scalars['String']['input'];
|
|
6537
|
+
unitValue: Scalars['String']['input'];
|
|
6538
|
+
};
|
|
6517
6539
|
export type AgentStudioDataset = {
|
|
6518
6540
|
__typename?: 'AgentStudioDataset';
|
|
6519
6541
|
count?: Maybe<Scalars['Int']['output']>;
|
|
@@ -6954,6 +6976,17 @@ export type AgentStudioPortalChannel = AgentStudioChannel & {
|
|
|
6954
6976
|
connected?: Maybe<Scalars['Boolean']['output']>;
|
|
6955
6977
|
url?: Maybe<Scalars['String']['output']>;
|
|
6956
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
|
+
}
|
|
6957
6990
|
export type AgentStudioProductAriAgentResult = {
|
|
6958
6991
|
__typename?: 'AgentStudioProductAriAgentResult';
|
|
6959
6992
|
agent?: Maybe<AgentStudioAgentResult>;
|
|
@@ -7491,6 +7524,16 @@ export type AgentStudioUpdateAgentUsePermissionSettingsInput = {
|
|
|
7491
7524
|
etag?: InputMaybe<Scalars['String']['input']>;
|
|
7492
7525
|
mode?: InputMaybe<AgentStudioUsePermissionMode>;
|
|
7493
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
|
+
};
|
|
7494
7537
|
export type AgentStudioUpdateAgentVerificationPayload = Payload & {
|
|
7495
7538
|
__typename?: 'AgentStudioUpdateAgentVerificationPayload';
|
|
7496
7539
|
agent?: Maybe<AgentStudioAgent>;
|
|
@@ -7933,6 +7976,38 @@ export type AgentWorkspaceCapacitySummary = {
|
|
|
7933
7976
|
totalUnassignedWorkItems: Scalars['Int']['output'];
|
|
7934
7977
|
totalUtilizationPercent: Scalars['Float']['output'];
|
|
7935
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
|
+
};
|
|
7936
8011
|
export type AgentWorkspaceConfusionMatrix = {
|
|
7937
8012
|
__typename?: 'AgentWorkspaceConfusionMatrix';
|
|
7938
8013
|
falseNegatives: Scalars['Int']['output'];
|
|
@@ -8901,10 +8976,12 @@ export type AgentWorkspaceSkillUpdatePayload = {
|
|
|
8901
8976
|
export type AgentWorkspaceSmartRoutingConfig = {
|
|
8902
8977
|
__typename?: 'AgentWorkspaceSmartRoutingConfig';
|
|
8903
8978
|
enabled: Scalars['Boolean']['output'];
|
|
8979
|
+
inputs: Array<AgentWorkspaceConfigurableRoutingInputSetting>;
|
|
8904
8980
|
serviceFieldId?: Maybe<Scalars['String']['output']>;
|
|
8905
8981
|
serviceFieldName?: Maybe<Scalars['String']['output']>;
|
|
8906
8982
|
serviceFieldType?: Maybe<AgentWorkspaceSmartRoutingServiceFieldType>;
|
|
8907
8983
|
setupVersion: Scalars['Int']['output'];
|
|
8984
|
+
triggers: Array<AgentWorkspaceConfigurableRoutingTriggerSetting>;
|
|
8908
8985
|
warning?: Maybe<Scalars['String']['output']>;
|
|
8909
8986
|
};
|
|
8910
8987
|
export type AgentWorkspaceSmartRoutingDryRun = {
|
|
@@ -9212,6 +9289,20 @@ export type AgentWorkspaceUnassignCoverShiftPayload = {
|
|
|
9212
9289
|
errors?: Maybe<Array<AgentWorkspaceScheduleError>>;
|
|
9213
9290
|
success: Scalars['Boolean']['output'];
|
|
9214
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
|
+
};
|
|
9215
9306
|
export type AgentWorkspaceUpdateRoutingConfigInput = {
|
|
9216
9307
|
cloudId: Scalars['ID']['input'];
|
|
9217
9308
|
enabled: Scalars['Boolean']['input'];
|
|
@@ -10459,7 +10550,8 @@ export declare enum AppFeatureKey {
|
|
|
10459
10550
|
HasExposedCredentials = "HAS_EXPOSED_CREDENTIALS",
|
|
10460
10551
|
HasResourceRestrictedToken = "HAS_RESOURCE_RESTRICTED_TOKEN",
|
|
10461
10552
|
IsPersonalApp = "IS_PERSONAL_APP",
|
|
10462
|
-
SupportsCompute = "SUPPORTS_COMPUTE"
|
|
10553
|
+
SupportsCompute = "SUPPORTS_COMPUTE",
|
|
10554
|
+
SupportsCustomEnvironments = "SUPPORTS_CUSTOM_ENVIRONMENTS"
|
|
10463
10555
|
}
|
|
10464
10556
|
export type AppFeaturesExposedCredentialsInput = {
|
|
10465
10557
|
contactLink?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -12588,6 +12680,8 @@ export type AssetsDmDataSourceDetails = {
|
|
|
12588
12680
|
canBeScheduled?: Maybe<Scalars['Boolean']['output']>;
|
|
12589
12681
|
dataSourceId?: Maybe<Scalars['ID']['output']>;
|
|
12590
12682
|
dataSourceTypeId: Scalars['Int']['output'];
|
|
12683
|
+
fetchError?: Maybe<AssetsDmDataSourceError>;
|
|
12684
|
+
fetchWarning?: Maybe<Scalars['String']['output']>;
|
|
12591
12685
|
isCloudFetchEnabled?: Maybe<Scalars['Boolean']['output']>;
|
|
12592
12686
|
isTemplate: Scalars['Boolean']['output'];
|
|
12593
12687
|
jobId?: Maybe<Scalars['ID']['output']>;
|
|
@@ -12595,6 +12689,12 @@ export type AssetsDmDataSourceDetails = {
|
|
|
12595
12689
|
objectClassName: Scalars['String']['output'];
|
|
12596
12690
|
schedule?: Maybe<AssetsDmDataSourceSchedule>;
|
|
12597
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'];
|
|
12598
12698
|
};
|
|
12599
12699
|
export type AssetsDmDataSourceFormFields = {
|
|
12600
12700
|
__typename?: 'AssetsDMDataSourceFormFields';
|
|
@@ -31144,6 +31244,7 @@ export type ConfluenceContentModified = {
|
|
|
31144
31244
|
inlineReactionHighlightDeleted?: Maybe<ConfluenceInlineReactionHighlightDeleted>;
|
|
31145
31245
|
inlineReactionRemoved?: Maybe<ConfluenceInlineReactionRemoved>;
|
|
31146
31246
|
markdownModeUpdated?: Maybe<ConfluenceMarkdownModeUpdated>;
|
|
31247
|
+
originTabId?: Maybe<Scalars['String']['output']>;
|
|
31147
31248
|
pageBlogified?: Maybe<ConfluencePageBlogified>;
|
|
31148
31249
|
pageMigrated?: Maybe<ConfluencePageMigrated>;
|
|
31149
31250
|
pageMoved?: Maybe<ConfluencePageMoved>;
|
|
@@ -38019,7 +38120,9 @@ export type ContentAnalyticsUnreadComments = {
|
|
|
38019
38120
|
};
|
|
38020
38121
|
export type ContentAnalyticsViewers = {
|
|
38021
38122
|
__typename?: 'ContentAnalyticsViewers';
|
|
38123
|
+
agentCount?: Maybe<Scalars['Int']['output']>;
|
|
38022
38124
|
count: Scalars['Int']['output'];
|
|
38125
|
+
peopleCount?: Maybe<Scalars['Int']['output']>;
|
|
38023
38126
|
};
|
|
38024
38127
|
export type ContentAnalyticsViews = {
|
|
38025
38128
|
__typename?: 'ContentAnalyticsViews';
|
|
@@ -39821,6 +39924,7 @@ export type CreateAppDeploymentInput = {
|
|
|
39821
39924
|
appId: Scalars['ID']['input'];
|
|
39822
39925
|
artifactUrl?: InputMaybe<Scalars['URL']['input']>;
|
|
39823
39926
|
buildTag?: InputMaybe<Scalars['String']['input']>;
|
|
39927
|
+
combinedArtifactUrl?: InputMaybe<Scalars['URL']['input']>;
|
|
39824
39928
|
environmentKey: Scalars['String']['input'];
|
|
39825
39929
|
hostedResourceUploadId?: InputMaybe<Scalars['ID']['input']>;
|
|
39826
39930
|
majorVersion?: InputMaybe<Scalars['Int']['input']>;
|
|
@@ -44757,6 +44861,7 @@ export declare enum DevAiFlowSessionsStatus {
|
|
|
44757
44861
|
Pending = "PENDING"
|
|
44758
44862
|
}
|
|
44759
44863
|
export declare enum DevAiFlowUseCaseId {
|
|
44864
|
+
AgenticPlanning = "AGENTIC_PLANNING",
|
|
44760
44865
|
Automation = "AUTOMATION",
|
|
44761
44866
|
CodeStandards = "CODE_STANDARDS",
|
|
44762
44867
|
Jca = "JCA",
|
|
@@ -52230,6 +52335,46 @@ export type GlanceUserInsights = {
|
|
|
52230
52335
|
type?: Maybe<Scalars['String']['output']>;
|
|
52231
52336
|
updated_at?: Maybe<Scalars['String']['output']>;
|
|
52232
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
|
+
};
|
|
52233
52378
|
export type GlobalAppExtensionContextInput = {
|
|
52234
52379
|
appVersion: Scalars['String']['input'];
|
|
52235
52380
|
context: Scalars['JSON']['input'];
|
|
@@ -52239,7 +52384,7 @@ export type GlobalAppExtensionContextInput = {
|
|
|
52239
52384
|
};
|
|
52240
52385
|
export type GlobalAppExtensionsResponse = {
|
|
52241
52386
|
__typename?: 'GlobalAppExtensionsResponse';
|
|
52242
|
-
extensions?: Maybe<Array<
|
|
52387
|
+
extensions?: Maybe<Array<GlobalAppExtension>>;
|
|
52243
52388
|
};
|
|
52244
52389
|
export type GlobalAppForgeContextToken = {
|
|
52245
52390
|
__typename?: 'GlobalAppForgeContextToken';
|
|
@@ -52247,10 +52392,26 @@ export type GlobalAppForgeContextToken = {
|
|
|
52247
52392
|
extensionId: Scalars['ID']['output'];
|
|
52248
52393
|
jwt: Scalars['String']['output'];
|
|
52249
52394
|
};
|
|
52395
|
+
export type GlobalAppInstallationConfig = {
|
|
52396
|
+
__typename?: 'GlobalAppInstallationConfig';
|
|
52397
|
+
key: Scalars['String']['output'];
|
|
52398
|
+
value: Scalars['Boolean']['output'];
|
|
52399
|
+
};
|
|
52250
52400
|
export type GlobalAppIsProductAdminResponse = {
|
|
52251
52401
|
__typename?: 'GlobalAppIsProductAdminResponse';
|
|
52252
52402
|
isAdmin: Scalars['Boolean']['output'];
|
|
52253
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
|
+
};
|
|
52254
52415
|
export type GlobalAppSignForgeContextTokensInput = {
|
|
52255
52416
|
contextIds: Array<Scalars['ID']['input']>;
|
|
52256
52417
|
extensionContexts: Array<GlobalAppExtensionContextInput>;
|
|
@@ -116309,6 +116470,7 @@ export type GrowthUnifiedProfileTrialHistoryResult = {
|
|
|
116309
116470
|
export declare enum GrowthUnifiedProfileTrialTrigger {
|
|
116310
116471
|
AutoUpgradeStorageLimit = "AUTO_UPGRADE_STORAGE_LIMIT",
|
|
116311
116472
|
AutoUpgradeUserLimit = "AUTO_UPGRADE_USER_LIMIT",
|
|
116473
|
+
CrossflowReverseTrial = "CROSSFLOW_REVERSE_TRIAL",
|
|
116312
116474
|
CrossflowUserLimit = "CROSSFLOW_USER_LIMIT",
|
|
116313
116475
|
EditionParity = "EDITION_PARITY",
|
|
116314
116476
|
EditionParityAutoProvisioning = "EDITION_PARITY_AUTO_PROVISIONING",
|
|
@@ -120483,6 +120645,11 @@ export type JiraAgentSessionsFieldAgentSessionsArgs = {
|
|
|
120483
120645
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
120484
120646
|
last?: InputMaybe<Scalars['Int']['input']>;
|
|
120485
120647
|
};
|
|
120648
|
+
export type JiraAgentSessionsScopeInput = {
|
|
120649
|
+
boardId?: InputMaybe<Scalars['ID']['input']>;
|
|
120650
|
+
jql?: InputMaybe<Scalars['String']['input']>;
|
|
120651
|
+
spaceKey?: InputMaybe<Scalars['String']['input']>;
|
|
120652
|
+
};
|
|
120486
120653
|
export declare enum JiraAgentStateCategory {
|
|
120487
120654
|
Finished = "FINISHED",
|
|
120488
120655
|
NeedsInput = "NEEDS_INPUT",
|
|
@@ -138431,6 +138598,7 @@ export type JiraQuery = {
|
|
|
138431
138598
|
activeBackgroundDetails?: Maybe<JiraActiveBackgroundDetailsResult>;
|
|
138432
138599
|
advancedRoadmapsNavigation?: Maybe<JiraAdvancedRoadmapsNavigation>;
|
|
138433
138600
|
agentSessions?: Maybe<AgentSessionAssociationConnection>;
|
|
138601
|
+
agentSessionsByScope?: Maybe<AgentSessionAssociationConnection>;
|
|
138434
138602
|
aiAgentSessionEnrichment?: Maybe<JiraAiAgentSession>;
|
|
138435
138603
|
allGrantTypeKeys?: Maybe<Array<JiraGrantTypeKey>>;
|
|
138436
138604
|
allJiraJourneyConfigurations?: Maybe<JiraJourneyConfigurationConnection>;
|
|
@@ -138457,6 +138625,7 @@ export type JiraQuery = {
|
|
|
138457
138625
|
bulkOperationProgress?: Maybe<JiraIssueBulkOperationProgress>;
|
|
138458
138626
|
bulkOperationsMetadata?: Maybe<JiraIssueBulkOperationsMetadata>;
|
|
138459
138627
|
canPerform?: Maybe<Scalars['Boolean']['output']>;
|
|
138628
|
+
caseManagementRequestTypeCreationOptions?: Maybe<JiraServiceManagementCaseManagementRequestTypeCreationOptionConnection>;
|
|
138460
138629
|
cfoAnalytics?: Maybe<JiraCfoAnalyticsResult>;
|
|
138461
138630
|
cfoConfigs?: Maybe<JiraCfoConfigsResult>;
|
|
138462
138631
|
cfoInsights?: Maybe<JiraCfoMetricInsightConnection>;
|
|
@@ -138715,6 +138884,16 @@ export type JiraQueryAgentSessionsArgs = {
|
|
|
138715
138884
|
last?: InputMaybe<Scalars['Int']['input']>;
|
|
138716
138885
|
state?: InputMaybe<JiraAgentSessionStateCategory>;
|
|
138717
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
|
+
};
|
|
138718
138897
|
export type JiraQueryAiAgentSessionEnrichmentArgs = {
|
|
138719
138898
|
input: JiraAiAgentSessionEnrichmentInput;
|
|
138720
138899
|
};
|
|
@@ -138848,6 +139027,12 @@ export type JiraQueryCanPerformArgs = {
|
|
|
138848
139027
|
cloudId: Scalars['ID']['input'];
|
|
138849
139028
|
type: JiraActionType;
|
|
138850
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
|
+
};
|
|
138851
139036
|
export type JiraQueryCfoAnalyticsArgs = {
|
|
138852
139037
|
cloudId: Scalars['ID']['input'];
|
|
138853
139038
|
dimensions?: InputMaybe<Array<JiraCfoDimensionInput>>;
|
|
@@ -142039,6 +142224,27 @@ export type JiraServiceManagementBulkCreateRequestTypeFromTemplateInput = {
|
|
|
142039
142224
|
createRequestTypeFromTemplateInputItems: Array<JiraServiceManagementCreateRequestTypeFromTemplateInput>;
|
|
142040
142225
|
projectId: Scalars['ID']['input'];
|
|
142041
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
|
+
};
|
|
142042
142248
|
export type JiraServiceManagementChannelSource = {
|
|
142043
142249
|
__typename?: 'JiraServiceManagementChannelSource';
|
|
142044
142250
|
displayName?: Maybe<Scalars['String']['output']>;
|
|
@@ -146010,6 +146216,7 @@ export type JiraUpdateBackgroundInput = {
|
|
|
146010
146216
|
export type JiraUpdateBoardViewStatusColumnAgentInput = {
|
|
146011
146217
|
agentAccountId: Scalars['ID']['input'];
|
|
146012
146218
|
agentPrompt?: InputMaybe<Scalars['String']['input']>;
|
|
146219
|
+
agentRulesToUpdate?: InputMaybe<Array<JiraUpdateBoardViewStatusColumnAgentRuleInput>>;
|
|
146013
146220
|
columnId: Scalars['ID']['input'];
|
|
146014
146221
|
settings?: InputMaybe<JiraBoardViewSettings>;
|
|
146015
146222
|
transitionsToAdd?: InputMaybe<Array<JiraUpdateBoardViewStatusColumnAgentTransitionInput>>;
|
|
@@ -146022,7 +146229,12 @@ export type JiraUpdateBoardViewStatusColumnAgentPayload = Payload & {
|
|
|
146022
146229
|
errors?: Maybe<Array<MutationError>>;
|
|
146023
146230
|
success: Scalars['Boolean']['output'];
|
|
146024
146231
|
};
|
|
146232
|
+
export type JiraUpdateBoardViewStatusColumnAgentRuleInput = {
|
|
146233
|
+
ruleId: Scalars['ID']['input'];
|
|
146234
|
+
workflowId: Scalars['ID']['input'];
|
|
146235
|
+
};
|
|
146025
146236
|
export type JiraUpdateBoardViewStatusColumnAgentTransitionInput = {
|
|
146237
|
+
ruleId?: InputMaybe<Scalars['ID']['input']>;
|
|
146026
146238
|
transitionId: Scalars['ID']['input'];
|
|
146027
146239
|
workflowId: Scalars['ID']['input'];
|
|
146028
146240
|
};
|
|
@@ -165721,14 +165933,13 @@ export type MercuryRequestPositionsChangeInput = {
|
|
|
165721
165933
|
export type MercuryRerankFocusAreaAbsoluteInput = {
|
|
165722
165934
|
containerId: Scalars['ID']['input'];
|
|
165723
165935
|
containerType: MercuryRankingContainerType;
|
|
165724
|
-
|
|
165725
|
-
focusAreaIds?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
165936
|
+
focusAreaIds: Array<Scalars['ID']['input']>;
|
|
165726
165937
|
newRank?: InputMaybe<Scalars['Int']['input']>;
|
|
165727
165938
|
};
|
|
165728
165939
|
export type MercuryRerankFocusAreaAbsolutePayload = Payload & {
|
|
165729
165940
|
__typename?: 'MercuryRerankFocusAreaAbsolutePayload';
|
|
165730
165941
|
errors?: Maybe<Array<MutationError>>;
|
|
165731
|
-
|
|
165942
|
+
focusAreas?: Maybe<Array<MercuryFocusArea>>;
|
|
165732
165943
|
success: Scalars['Boolean']['output'];
|
|
165733
165944
|
};
|
|
165734
165945
|
export type MercuryRerankFocusAreasInput = {
|
|
@@ -166081,6 +166292,7 @@ export type MercuryRisksQueryApiRisksArgs = {
|
|
|
166081
166292
|
export type MercuryRisksQueryApiRisksByLikelihoodAndImpactArgs = {
|
|
166082
166293
|
cloudId: Scalars['ID']['input'];
|
|
166083
166294
|
focusAreaIds?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
166295
|
+
organizationIds?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
166084
166296
|
riskStatusId: Scalars['ID']['input'];
|
|
166085
166297
|
};
|
|
166086
166298
|
export type MercuryRisksQueryApiRisksSearchArgs = {
|
|
@@ -168332,6 +168544,7 @@ export type Mutation = {
|
|
|
168332
168544
|
agentStudio_updateAgentDetails?: Maybe<AgentStudioUpdateAgentDetailsPayload>;
|
|
168333
168545
|
agentStudio_updateAgentKnowledgeSources?: Maybe<AgentStudioUpdateAgentKnowledgeSourcesPayload>;
|
|
168334
168546
|
agentStudio_updateAgentModelVersion?: Maybe<AgentStudioUpdateAgentModelVersionPayload>;
|
|
168547
|
+
agentStudio_updateAgentValueConfig?: Maybe<AgentStudioUpdateAgentValueConfigPayload>;
|
|
168335
168548
|
agentStudio_updateAgentVerification?: Maybe<AgentStudioUpdateAgentVerificationPayload>;
|
|
168336
168549
|
agentStudio_updateConversationConfiguration?: Maybe<AgentStudioUpdateConversationConfigurationPayload>;
|
|
168337
168550
|
agentStudio_updateConversationStarters?: Maybe<AgentStudioUpdateConversationStartersPayload>;
|
|
@@ -168374,6 +168587,8 @@ export type Mutation = {
|
|
|
168374
168587
|
agentWorkspace_startSmartRoutingDryRun?: Maybe<AgentWorkspaceStartSmartRoutingDryRunPayload>;
|
|
168375
168588
|
agentWorkspace_submitDraftedRoutingTable?: Maybe<AgentWorkspaceSubmitDraftedRoutingTablePayload>;
|
|
168376
168589
|
agentWorkspace_unassignCoverShift?: Maybe<AgentWorkspaceUnassignCoverShiftPayload>;
|
|
168590
|
+
agentWorkspace_updateConfigurableRoutingInputs?: Maybe<AgentWorkspaceUpdateConfigurableRoutingPayload>;
|
|
168591
|
+
agentWorkspace_updateConfigurableRoutingTriggers?: Maybe<AgentWorkspaceUpdateConfigurableRoutingPayload>;
|
|
168377
168592
|
agentWorkspace_updateRoutingConfig?: Maybe<AgentWorkspaceUpdateSmartRoutingConfigPayload>;
|
|
168378
168593
|
agentWorkspace_updateSchedule?: Maybe<AgentWorkspaceUpdateSchedulePayload>;
|
|
168379
168594
|
agentWorkspace_updateSkill?: Maybe<AgentWorkspaceSkillUpdatePayload>;
|
|
@@ -170237,6 +170452,11 @@ export type MutationAgentStudio_UpdateAgentModelVersionArgs = {
|
|
|
170237
170452
|
action: AgentStudioModelUpgradeAction;
|
|
170238
170453
|
id: Scalars['ID']['input'];
|
|
170239
170454
|
};
|
|
170455
|
+
export type MutationAgentStudio_UpdateAgentValueConfigArgs = {
|
|
170456
|
+
cloudId: Scalars['String']['input'];
|
|
170457
|
+
id: Scalars['ID']['input'];
|
|
170458
|
+
input: AgentStudioUpdateAgentValueConfigInput;
|
|
170459
|
+
};
|
|
170240
170460
|
export type MutationAgentStudio_UpdateAgentVerificationArgs = {
|
|
170241
170461
|
id: Scalars['ID']['input'];
|
|
170242
170462
|
verified: Scalars['Boolean']['input'];
|
|
@@ -170380,6 +170600,12 @@ export type MutationAgentWorkspace_SubmitDraftedRoutingTableArgs = {
|
|
|
170380
170600
|
export type MutationAgentWorkspace_UnassignCoverShiftArgs = {
|
|
170381
170601
|
input: AgentWorkspaceUnassignCoverShiftInput;
|
|
170382
170602
|
};
|
|
170603
|
+
export type MutationAgentWorkspace_UpdateConfigurableRoutingInputsArgs = {
|
|
170604
|
+
input: AgentWorkspaceUpdateConfigurableRoutingInputsInput;
|
|
170605
|
+
};
|
|
170606
|
+
export type MutationAgentWorkspace_UpdateConfigurableRoutingTriggersArgs = {
|
|
170607
|
+
input: AgentWorkspaceUpdateConfigurableRoutingTriggersInput;
|
|
170608
|
+
};
|
|
170383
170609
|
export type MutationAgentWorkspace_UpdateRoutingConfigArgs = {
|
|
170384
170610
|
input: AgentWorkspaceUpdateRoutingConfigInput;
|
|
170385
170611
|
};
|
|
@@ -178978,6 +179204,7 @@ export type Query = {
|
|
|
178978
179204
|
agentStudio_agentById?: Maybe<AgentStudioAgentResult>;
|
|
178979
179205
|
agentStudio_agentByIdForDuplicate?: Maybe<AgentStudioAgentResult>;
|
|
178980
179206
|
agentStudio_agentByIdentityAccountId?: Maybe<AgentStudioAgentResult>;
|
|
179207
|
+
agentStudio_agentValueConfig?: Maybe<AgentStudioAgentValueConfigResult>;
|
|
178981
179208
|
agentStudio_agentsByIds?: Maybe<Array<Maybe<AgentStudioAgent>>>;
|
|
178982
179209
|
agentStudio_authReadinessForAgent?: Maybe<AgentStudioAuthReadinessResult>;
|
|
178983
179210
|
agentStudio_batchEvalConversationById?: Maybe<AgentStudioConversationResult>;
|
|
@@ -179431,7 +179658,6 @@ export type Query = {
|
|
|
179431
179658
|
confluence_contentTreeChildren?: Maybe<ConfluenceContentTreeItemConnection>;
|
|
179432
179659
|
confluence_contentWatchersUnfiltered?: Maybe<PaginatedPersonList>;
|
|
179433
179660
|
confluence_contents?: Maybe<Array<Maybe<Content>>>;
|
|
179434
|
-
confluence_contextualTitleEmoji?: Maybe<Scalars['String']['output']>;
|
|
179435
179661
|
confluence_csvExportDownloadLink?: Maybe<Scalars['String']['output']>;
|
|
179436
179662
|
confluence_cutoverDate?: Maybe<ConfluenceCutoverDate>;
|
|
179437
179663
|
confluence_dataLifecycleManagementPolicy?: Maybe<ConfluenceDataLifecycleManagementPolicy>;
|
|
@@ -182986,6 +183212,10 @@ export type QueryAgentStudio_AgentByIdentityAccountIdArgs = {
|
|
|
182986
183212
|
cloudId: Scalars['String']['input'];
|
|
182987
183213
|
id: Scalars['ID']['input'];
|
|
182988
183214
|
};
|
|
183215
|
+
export type QueryAgentStudio_AgentValueConfigArgs = {
|
|
183216
|
+
cloudId: Scalars['String']['input'];
|
|
183217
|
+
id: Scalars['ID']['input'];
|
|
183218
|
+
};
|
|
182989
183219
|
export type QueryAgentStudio_AgentsByIdsArgs = {
|
|
182990
183220
|
ids: Array<Scalars['ID']['input']>;
|
|
182991
183221
|
};
|
|
@@ -185187,10 +185417,6 @@ export type QueryConfluence_ContentWatchersUnfilteredArgs = {
|
|
|
185187
185417
|
export type QueryConfluence_ContentsArgs = {
|
|
185188
185418
|
ids: Array<InputMaybe<Scalars['ID']['input']>>;
|
|
185189
185419
|
};
|
|
185190
|
-
export type QueryConfluence_ContextualTitleEmojiArgs = {
|
|
185191
|
-
pageAri: Scalars['ID']['input'];
|
|
185192
|
-
pageTitle: Scalars['String']['input'];
|
|
185193
|
-
};
|
|
185194
185420
|
export type QueryConfluence_CsvExportDownloadLinkArgs = {
|
|
185195
185421
|
cloudId: Scalars['ID']['input'];
|
|
185196
185422
|
taskId: Scalars['String']['input'];
|
|
@@ -203100,6 +203326,7 @@ export type QueryJira_IssueCreateLayoutArgs = {
|
|
|
203100
203326
|
layoutFilter?: InputMaybe<JiraIssueCreateLayoutFilter>;
|
|
203101
203327
|
project?: InputMaybe<JiraProjectInput>;
|
|
203102
203328
|
requestType?: InputMaybe<JiraRequestTypeInput>;
|
|
203329
|
+
sessionId?: InputMaybe<Scalars['String']['input']>;
|
|
203103
203330
|
};
|
|
203104
203331
|
export type QueryJira_IssueCreateLayoutWithMlArgs = {
|
|
203105
203332
|
cloudId: Scalars['ID']['input'];
|
|
@@ -203107,6 +203334,7 @@ export type QueryJira_IssueCreateLayoutWithMlArgs = {
|
|
|
203107
203334
|
layoutFilter?: InputMaybe<JiraIssueCreateLayoutFilter>;
|
|
203108
203335
|
project?: InputMaybe<JiraProjectInput>;
|
|
203109
203336
|
requestType?: InputMaybe<JiraRequestTypeInput>;
|
|
203337
|
+
sessionId?: InputMaybe<Scalars['String']['input']>;
|
|
203110
203338
|
};
|
|
203111
203339
|
export type QueryJira_IssueSearchTopLevelIssueFieldsAggregationArgs = {
|
|
203112
203340
|
aggregationConfig?: InputMaybe<JiraIssueSearchAggregationConfigInput>;
|
|
@@ -240378,6 +240606,80 @@ export declare enum TrelloAiFeatureEntityAction {
|
|
|
240378
240606
|
Create = "CREATE",
|
|
240379
240607
|
Update = "UPDATE"
|
|
240380
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
|
+
}
|
|
240381
240683
|
export type TrelloAiRule = {
|
|
240382
240684
|
__typename?: 'TrelloAiRule';
|
|
240383
240685
|
id: Scalars['ID']['output'];
|
|
@@ -243868,12 +244170,15 @@ export type TrelloMutationApi = {
|
|
|
243868
244170
|
removeWorkspaceTagFromBoard?: Maybe<TrelloRemoveWorkspaceTagFromBoardPayload>;
|
|
243869
244171
|
reopenBoard?: Maybe<TrelloReopenBoardPayload>;
|
|
243870
244172
|
reopenCard?: Maybe<TrelloReopenCardPayload>;
|
|
244173
|
+
researchCardWithAi?: Maybe<TrelloResearchCardWithAiPayload>;
|
|
243871
244174
|
resetCardCover?: Maybe<TrelloResetCardCoverPayload>;
|
|
244175
|
+
resetMemberAiImageGenerationUsage?: Maybe<TrelloResetMemberAiImageGenerationUsagePayload>;
|
|
243872
244176
|
retryAiOnBoard?: Maybe<TrelloRetryAiOnBoardPayload>;
|
|
243873
244177
|
revokeMemberOAuth2AccessGrants?: Maybe<TrelloRevokeMemberOAuth2AccessGrantsPayload>;
|
|
243874
244178
|
rotateOAuth2ClientSecret?: Maybe<TrelloRotateOAuth2ClientSecretPayload>;
|
|
243875
244179
|
sendBoardEmailKeyMessage?: Maybe<TrelloSendBoardEmailKeyMessagePayload>;
|
|
243876
244180
|
sendInboxEmailKeyMessage?: Maybe<TrelloSendBoardEmailKeyMessagePayload>;
|
|
244181
|
+
setAiPromptInterjectionOverrides?: Maybe<TrelloSetAiPromptInterjectionOverridesPayload>;
|
|
243877
244182
|
setBoardBackgroundFromImageUrl?: Maybe<TrelloSetBoardBackgroundFromImageUrlPayload>;
|
|
243878
244183
|
setPlannerBoardOverride?: Maybe<TrelloSetPlannerBoardOverridePayload>;
|
|
243879
244184
|
showCardCoversOnCardFront?: Maybe<TrelloShowCardCoversOnCardFrontPayload>;
|
|
@@ -244169,6 +244474,9 @@ export type TrelloMutationApiReopenBoardArgs = {
|
|
|
244169
244474
|
export type TrelloMutationApiReopenCardArgs = {
|
|
244170
244475
|
input: TrelloReopenCardInput;
|
|
244171
244476
|
};
|
|
244477
|
+
export type TrelloMutationApiResearchCardWithAiArgs = {
|
|
244478
|
+
input: TrelloResearchCardWithAiInput;
|
|
244479
|
+
};
|
|
244172
244480
|
export type TrelloMutationApiResetCardCoverArgs = {
|
|
244173
244481
|
input: TrelloResetCardCoverInput;
|
|
244174
244482
|
};
|
|
@@ -244184,6 +244492,9 @@ export type TrelloMutationApiRotateOAuth2ClientSecretArgs = {
|
|
|
244184
244492
|
export type TrelloMutationApiSendBoardEmailKeyMessageArgs = {
|
|
244185
244493
|
input?: InputMaybe<TrelloSendBoardEmailKeyInput>;
|
|
244186
244494
|
};
|
|
244495
|
+
export type TrelloMutationApiSetAiPromptInterjectionOverridesArgs = {
|
|
244496
|
+
input: TrelloSetAiPromptInterjectionOverridesInput;
|
|
244497
|
+
};
|
|
244187
244498
|
export type TrelloMutationApiSetBoardBackgroundFromImageUrlArgs = {
|
|
244188
244499
|
input: TrelloSetBoardBackgroundFromImageUrlInput;
|
|
244189
244500
|
};
|
|
@@ -245287,6 +245598,8 @@ export type TrelloProviderCalendarInterface = {
|
|
|
245287
245598
|
};
|
|
245288
245599
|
export type TrelloQueryApi = {
|
|
245289
245600
|
__typename?: 'TrelloQueryApi';
|
|
245601
|
+
aiPromptInterjectionContract?: Maybe<TrelloAiPromptInterjectionContract>;
|
|
245602
|
+
aiPromptInterjectionOverrides?: Maybe<Array<TrelloAiPromptInterjectionOverride>>;
|
|
245290
245603
|
application?: Maybe<TrelloApplication>;
|
|
245291
245604
|
archivedCards?: Maybe<TrelloArchivedCardConnection>;
|
|
245292
245605
|
attachmentsById?: Maybe<Array<Maybe<TrelloAttachment>>>;
|
|
@@ -245677,6 +245990,26 @@ export type TrelloReopenCardPayload = Payload & {
|
|
|
245677
245990
|
errors?: Maybe<Array<MutationError>>;
|
|
245678
245991
|
success: Scalars['Boolean']['output'];
|
|
245679
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
|
+
};
|
|
245680
246013
|
export type TrelloResetCardCoverInput = {
|
|
245681
246014
|
cardId: Scalars['ID']['input'];
|
|
245682
246015
|
};
|
|
@@ -245686,6 +246019,12 @@ export type TrelloResetCardCoverPayload = Payload & {
|
|
|
245686
246019
|
errors?: Maybe<Array<MutationError>>;
|
|
245687
246020
|
success: Scalars['Boolean']['output'];
|
|
245688
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
|
+
};
|
|
245689
246028
|
export type TrelloRetryAiOnBoardInput = {
|
|
245690
246029
|
boardId: Scalars['ID']['input'];
|
|
245691
246030
|
userInput: TrelloAiBoardUserInput;
|
|
@@ -245758,6 +246097,14 @@ export type TrelloSendBoardEmailKeyMessagePayload = Payload & {
|
|
|
245758
246097
|
errors?: Maybe<Array<MutationError>>;
|
|
245759
246098
|
success: Scalars['Boolean']['output'];
|
|
245760
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
|
+
};
|
|
245761
246108
|
export type TrelloSetBoardBackgroundFromImageUrlInput = {
|
|
245762
246109
|
boardId: Scalars['ID']['input'];
|
|
245763
246110
|
url: Scalars['String']['input'];
|
|
@@ -246669,6 +247016,7 @@ export type TrelloUserUnrestrictedAccessSummary = {
|
|
|
246669
247016
|
};
|
|
246670
247017
|
export type TrelloVoiceCaptureCardUpdated = {
|
|
246671
247018
|
__typename?: 'TrelloVoiceCaptureCardUpdated';
|
|
247019
|
+
description?: Maybe<Scalars['String']['output']>;
|
|
246672
247020
|
due?: Maybe<Scalars['DateTime']['output']>;
|
|
246673
247021
|
name?: Maybe<Scalars['String']['output']>;
|
|
246674
247022
|
objectId: Scalars['ID']['output'];
|