@forge/cli-shared 9.5.1-next.3 → 9.5.1-next.4
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 +8 -0
- package/out/graphql/graphql-types.d.ts +285 -23
- package/out/graphql/graphql-types.d.ts.map +1 -1
- package/out/graphql/graphql-types.js +90 -31
- package/package.json +2 -2
|
@@ -1408,6 +1408,7 @@ export type AvpAnalyticsMetricDefinition = {
|
|
|
1408
1408
|
filters?: Maybe<Array<AvpAnalyticsMetricFilter>>;
|
|
1409
1409
|
modelId?: Maybe<Scalars['ID']['output']>;
|
|
1410
1410
|
modelVersion?: Maybe<Scalars['String']['output']>;
|
|
1411
|
+
ratio?: Maybe<AvpAnalyticsRatioMetricDefinition>;
|
|
1411
1412
|
};
|
|
1412
1413
|
export type AvpAnalyticsMetricDefinitionInput = {
|
|
1413
1414
|
aggregationType?: InputMaybe<AvpAnalyticsAggregationType>;
|
|
@@ -1415,6 +1416,7 @@ export type AvpAnalyticsMetricDefinitionInput = {
|
|
|
1415
1416
|
filters?: InputMaybe<Array<AvpAnalyticsMetricFilterInput>>;
|
|
1416
1417
|
modelId?: InputMaybe<Scalars['ID']['input']>;
|
|
1417
1418
|
modelVersion?: InputMaybe<Scalars['String']['input']>;
|
|
1419
|
+
ratio?: InputMaybe<AvpAnalyticsRatioMetricDefinitionInput>;
|
|
1418
1420
|
};
|
|
1419
1421
|
export type AvpAnalyticsMetricEdge = {
|
|
1420
1422
|
__typename?: 'AVPAnalyticsMetricEdge';
|
|
@@ -1439,6 +1441,8 @@ export declare enum AvpAnalyticsMetricErrorField {
|
|
|
1439
1441
|
MetricName = "METRIC_NAME",
|
|
1440
1442
|
MetricVisualization = "METRIC_VISUALIZATION",
|
|
1441
1443
|
Model = "MODEL",
|
|
1444
|
+
RatioDenominator = "RATIO_DENOMINATOR",
|
|
1445
|
+
RatioNumerator = "RATIO_NUMERATOR",
|
|
1442
1446
|
SegmentBy = "SEGMENT_BY",
|
|
1443
1447
|
VisualizationFilter = "VISUALIZATION_FILTER"
|
|
1444
1448
|
}
|
|
@@ -1458,6 +1462,10 @@ export declare enum AvpAnalyticsMetricErrorType {
|
|
|
1458
1462
|
MetricNameRequired = "METRIC_NAME_REQUIRED",
|
|
1459
1463
|
MetricVisualizationRequired = "METRIC_VISUALIZATION_REQUIRED",
|
|
1460
1464
|
ModelRequired = "MODEL_REQUIRED",
|
|
1465
|
+
RatioAggregationNotAllowed = "RATIO_AGGREGATION_NOT_ALLOWED",
|
|
1466
|
+
RatioColumnNotAllowed = "RATIO_COLUMN_NOT_ALLOWED",
|
|
1467
|
+
RatioComponentInvalid = "RATIO_COMPONENT_INVALID",
|
|
1468
|
+
RatioComponentRequired = "RATIO_COMPONENT_REQUIRED",
|
|
1461
1469
|
SegmentByDuplicateColumn = "SEGMENT_BY_DUPLICATE_COLUMN",
|
|
1462
1470
|
SegmentByNotSupported = "SEGMENT_BY_NOT_SUPPORTED",
|
|
1463
1471
|
SegmentByTooManyColumns = "SEGMENT_BY_TOO_MANY_COLUMNS",
|
|
@@ -1712,6 +1720,15 @@ export type AvpAnalyticsRangeValueInput = {
|
|
|
1712
1720
|
toExpression?: InputMaybe<Scalars['String']['input']>;
|
|
1713
1721
|
toValue?: InputMaybe<Scalars['String']['input']>;
|
|
1714
1722
|
};
|
|
1723
|
+
export type AvpAnalyticsRatioMetricDefinition = {
|
|
1724
|
+
__typename?: 'AVPAnalyticsRatioMetricDefinition';
|
|
1725
|
+
denominatorMetricId?: Maybe<Scalars['ID']['output']>;
|
|
1726
|
+
numeratorMetricId?: Maybe<Scalars['ID']['output']>;
|
|
1727
|
+
};
|
|
1728
|
+
export type AvpAnalyticsRatioMetricDefinitionInput = {
|
|
1729
|
+
denominatorMetricId?: InputMaybe<Scalars['ID']['input']>;
|
|
1730
|
+
numeratorMetricId?: InputMaybe<Scalars['ID']['input']>;
|
|
1731
|
+
};
|
|
1715
1732
|
export declare enum AvpAnalyticsResourcePermissionType {
|
|
1716
1733
|
Closed = "CLOSED",
|
|
1717
1734
|
Read = "READ",
|
|
@@ -4209,6 +4226,7 @@ export type AdminApplicationErrorExtension = AdminErrorExtension & MutationError
|
|
|
4209
4226
|
downstreamService?: Maybe<Scalars['String']['output']>;
|
|
4210
4227
|
errorType?: Maybe<Scalars['String']['output']>;
|
|
4211
4228
|
id?: Maybe<Scalars['String']['output']>;
|
|
4229
|
+
paymentMethodsPath?: Maybe<Scalars['String']['output']>;
|
|
4212
4230
|
status?: Maybe<Scalars['String']['output']>;
|
|
4213
4231
|
statusCode?: Maybe<Scalars['Int']['output']>;
|
|
4214
4232
|
title?: Maybe<Scalars['String']['output']>;
|
|
@@ -5251,6 +5269,8 @@ export type AdminOrgPolicyEdge = {
|
|
|
5251
5269
|
};
|
|
5252
5270
|
export type AdminOrgUnitsSettings = {
|
|
5253
5271
|
__typename?: 'AdminOrgUnitsSettings';
|
|
5272
|
+
boundaryEnforced?: Maybe<Scalars['Boolean']['output']>;
|
|
5273
|
+
endUsersLaunched?: Maybe<Scalars['Boolean']['output']>;
|
|
5254
5274
|
unitsCreateAvailable: Scalars['Boolean']['output'];
|
|
5255
5275
|
unitsEligibilityState: AdminUnitsEligibilityState;
|
|
5256
5276
|
};
|
|
@@ -6463,6 +6483,7 @@ export type AgentStudioAgentPermissions = {
|
|
|
6463
6483
|
export type AgentStudioAgentQueryInput = {
|
|
6464
6484
|
includeDraftAgents?: InputMaybe<Scalars['Boolean']['input']>;
|
|
6465
6485
|
includeJiraCodingAgent?: InputMaybe<Scalars['Boolean']['input']>;
|
|
6486
|
+
includeRovoChatAgent?: InputMaybe<Scalars['Boolean']['input']>;
|
|
6466
6487
|
name?: InputMaybe<Scalars['String']['input']>;
|
|
6467
6488
|
onlyEditableAgents?: InputMaybe<Scalars['Boolean']['input']>;
|
|
6468
6489
|
onlyFavouriteAgents?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -6669,6 +6690,7 @@ export type AgentStudioAssistantScenarioListArgs = {
|
|
|
6669
6690
|
};
|
|
6670
6691
|
export type AgentStudioAssistantTriggersArgs = {
|
|
6671
6692
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
6693
|
+
automationRuleIds?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
6672
6694
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
6673
6695
|
};
|
|
6674
6696
|
export type AgentStudioAssistantConversation = {
|
|
@@ -21776,9 +21798,11 @@ export type CloudifyProjectAri = {
|
|
|
21776
21798
|
};
|
|
21777
21799
|
export type CloudifyRawCustomizationRecommendation = {
|
|
21778
21800
|
__typename?: 'CloudifyRawCustomizationRecommendation';
|
|
21801
|
+
body: Scalars['String']['output'];
|
|
21779
21802
|
content: Scalars['String']['output'];
|
|
21780
21803
|
customizationIds: Array<Scalars['ID']['output']>;
|
|
21781
21804
|
id: Scalars['ID']['output'];
|
|
21805
|
+
title?: Maybe<Scalars['String']['output']>;
|
|
21782
21806
|
type: CloudifyRawCustomizationRecommendationType;
|
|
21783
21807
|
};
|
|
21784
21808
|
export declare enum CloudifyRawCustomizationRecommendationType {
|
|
@@ -26715,10 +26739,10 @@ export type CommerceExpUserEntitlementRoles = {
|
|
|
26715
26739
|
};
|
|
26716
26740
|
export type CommerceExpUserInfo = {
|
|
26717
26741
|
__typename?: 'CommerceExpUserInfo';
|
|
26718
|
-
accountId
|
|
26742
|
+
accountId: Scalars['ID']['output'];
|
|
26719
26743
|
email?: Maybe<Scalars['String']['output']>;
|
|
26720
|
-
id
|
|
26721
|
-
name
|
|
26744
|
+
id: Scalars['ID']['output'];
|
|
26745
|
+
name: Scalars['String']['output'];
|
|
26722
26746
|
picture?: Maybe<Scalars['String']['output']>;
|
|
26723
26747
|
};
|
|
26724
26748
|
export type CommerceExpUserPermission = {
|
|
@@ -43561,6 +43585,7 @@ export type CsmAiAgentVersion = {
|
|
|
43561
43585
|
__typename?: 'CsmAiAgentVersion';
|
|
43562
43586
|
actions?: Maybe<Array<CsmAiActionResult>>;
|
|
43563
43587
|
agentIdentityConfig?: Maybe<CsmAiAgentIdentityConfigResult>;
|
|
43588
|
+
associatedSkills?: Maybe<Array<CsmAiAssociatedSkillResult>>;
|
|
43564
43589
|
coachingContents?: Maybe<Array<CsmAiCoachingContentResult>>;
|
|
43565
43590
|
handoffConfigs?: Maybe<Array<CsmAiHandoffConfigResult>>;
|
|
43566
43591
|
knowledgeCollection?: Maybe<CsmAiKnowledgeCollectionResult>;
|
|
@@ -43603,6 +43628,16 @@ export type CsmAiApiOperationInput = {
|
|
|
43603
43628
|
requestUrl: Scalars['String']['input'];
|
|
43604
43629
|
server: Scalars['String']['input'];
|
|
43605
43630
|
};
|
|
43631
|
+
export type CsmAiAssociatedSkill = {
|
|
43632
|
+
__typename?: 'CsmAiAssociatedSkill';
|
|
43633
|
+
description?: Maybe<Scalars['String']['output']>;
|
|
43634
|
+
displayName?: Maybe<Scalars['String']['output']>;
|
|
43635
|
+
enabled: Scalars['Boolean']['output'];
|
|
43636
|
+
instructions?: Maybe<Scalars['String']['output']>;
|
|
43637
|
+
skillId: Scalars['String']['output'];
|
|
43638
|
+
tools?: Maybe<Array<Maybe<GraphIntegrationMcpToolNode>>>;
|
|
43639
|
+
};
|
|
43640
|
+
export type CsmAiAssociatedSkillResult = CsmAiAssociatedSkill | QueryError;
|
|
43606
43641
|
export type CsmAiAuthentication = {
|
|
43607
43642
|
__typename?: 'CsmAiAuthentication';
|
|
43608
43643
|
type?: Maybe<CsmAiAuthenticationType>;
|
|
@@ -50645,6 +50680,11 @@ export type DlpFalsePositivesListResponse = {
|
|
|
50645
50680
|
falsePositives: Array<DlpFalsePositive>;
|
|
50646
50681
|
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
50647
50682
|
};
|
|
50683
|
+
export type DlpFindingDimensionCount = {
|
|
50684
|
+
__typename?: 'DlpFindingDimensionCount';
|
|
50685
|
+
count: Scalars['Int']['output'];
|
|
50686
|
+
value: Scalars['String']['output'];
|
|
50687
|
+
};
|
|
50648
50688
|
export type DlpFindingOccurrence = {
|
|
50649
50689
|
__typename?: 'DlpFindingOccurrence';
|
|
50650
50690
|
bootstrapId?: Maybe<Scalars['String']['output']>;
|
|
@@ -50693,6 +50733,13 @@ export type DlpFindingsListResponse = {
|
|
|
50693
50733
|
pageSize?: Maybe<Scalars['Int']['output']>;
|
|
50694
50734
|
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
50695
50735
|
};
|
|
50736
|
+
export type DlpFindingsSummaryResponse = {
|
|
50737
|
+
__typename?: 'DlpFindingsSummaryResponse';
|
|
50738
|
+
byApp: Array<DlpFindingDimensionCount>;
|
|
50739
|
+
byCategory: Array<DlpFindingDimensionCount>;
|
|
50740
|
+
byConfidence: Array<DlpFindingDimensionCount>;
|
|
50741
|
+
totalFindings?: Maybe<Scalars['Int']['output']>;
|
|
50742
|
+
};
|
|
50696
50743
|
export declare enum DlpMappingStatus {
|
|
50697
50744
|
Draft = "DRAFT",
|
|
50698
50745
|
Published = "PUBLISHED"
|
|
@@ -51142,6 +51189,7 @@ export type EcosystemMutationCreateAppVersionRolloutArgs = {
|
|
|
51142
51189
|
export type EcosystemMutationCreateRollingReleaseArgs = {
|
|
51143
51190
|
appId: Scalars['ID']['input'];
|
|
51144
51191
|
environmentId: Scalars['ID']['input'];
|
|
51192
|
+
limit?: InputMaybe<Scalars['Int']['input']>;
|
|
51145
51193
|
targetVersionId?: InputMaybe<Scalars['ID']['input']>;
|
|
51146
51194
|
};
|
|
51147
51195
|
export type EcosystemMutationDeleteAppEnvironmentArgs = {
|
|
@@ -57044,6 +57092,7 @@ export type GraphInferenceGetSimilarJiraItemsResponse = {
|
|
|
57044
57092
|
};
|
|
57045
57093
|
export type GraphInferenceGraphclawInferOptionV3 = {
|
|
57046
57094
|
__typename?: 'GraphInferenceGraphclawInferOptionV3';
|
|
57095
|
+
compatibleSources: Array<Scalars['String']['output']>;
|
|
57047
57096
|
compatibleTargets: Array<Scalars['String']['output']>;
|
|
57048
57097
|
enabled: Scalars['Boolean']['output'];
|
|
57049
57098
|
graphAvailable: Scalars['Boolean']['output'];
|
|
@@ -80260,6 +80309,48 @@ export type GraphStoreInferredDecisionNodeProvenanceOutput = {
|
|
|
80260
80309
|
export type GraphStoreInferredDecisionSourceLineageEntitySortInput = {
|
|
80261
80310
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
80262
80311
|
};
|
|
80312
|
+
export declare enum GraphStoreInferredHighlightNodeInferredHighlightSeverityLevelOutput {
|
|
80313
|
+
Major = "MAJOR",
|
|
80314
|
+
Milestone = "MILESTONE",
|
|
80315
|
+
Minor = "MINOR",
|
|
80316
|
+
Notable = "NOTABLE",
|
|
80317
|
+
NotSet = "NOT_SET"
|
|
80318
|
+
}
|
|
80319
|
+
export declare enum GraphStoreInferredHighlightNodeInferredHighlightSubtypeOutput {
|
|
80320
|
+
Adoption = "ADOPTION",
|
|
80321
|
+
ArtifactReady = "ARTIFACT_READY",
|
|
80322
|
+
BlockerCleared = "BLOCKER_CLEARED",
|
|
80323
|
+
CustomerWin = "CUSTOMER_WIN",
|
|
80324
|
+
ExternalRecognition = "EXTERNAL_RECOGNITION",
|
|
80325
|
+
MetricHit = "METRIC_HIT",
|
|
80326
|
+
MilestoneShipped = "MILESTONE_SHIPPED",
|
|
80327
|
+
NotSet = "NOT_SET",
|
|
80328
|
+
Other = "OTHER",
|
|
80329
|
+
PhaseUnlocked = "PHASE_UNLOCKED",
|
|
80330
|
+
RolloutProgressed = "ROLLOUT_PROGRESSED",
|
|
80331
|
+
TeamWin = "TEAM_WIN"
|
|
80332
|
+
}
|
|
80333
|
+
export type GraphStoreInferredHighlightNodeMetadata = {
|
|
80334
|
+
__typename?: 'GraphStoreInferredHighlightNodeMetadata';
|
|
80335
|
+
confidenceScore?: Maybe<Scalars['Float']['output']>;
|
|
80336
|
+
createdAt?: Maybe<Scalars['Long']['output']>;
|
|
80337
|
+
dedupeKey?: Maybe<Scalars['String']['output']>;
|
|
80338
|
+
lastUpdated?: Maybe<Scalars['Long']['output']>;
|
|
80339
|
+
normalizedTitleHash?: Maybe<Scalars['String']['output']>;
|
|
80340
|
+
provenance?: Maybe<GraphStoreInferredHighlightNodeProvenanceOutput>;
|
|
80341
|
+
severityLevel?: Maybe<GraphStoreInferredHighlightNodeInferredHighlightSeverityLevelOutput>;
|
|
80342
|
+
subtype?: Maybe<GraphStoreInferredHighlightNodeInferredHighlightSubtypeOutput>;
|
|
80343
|
+
summary?: Maybe<Scalars['String']['output']>;
|
|
80344
|
+
title?: Maybe<Scalars['String']['output']>;
|
|
80345
|
+
};
|
|
80346
|
+
export type GraphStoreInferredHighlightNodeProvenanceOutput = {
|
|
80347
|
+
__typename?: 'GraphStoreInferredHighlightNodeProvenanceOutput';
|
|
80348
|
+
appId?: Maybe<Scalars['String']['output']>;
|
|
80349
|
+
appVersion?: Maybe<Scalars['String']['output']>;
|
|
80350
|
+
executionMode?: Maybe<Scalars['String']['output']>;
|
|
80351
|
+
modelProvider?: Maybe<Scalars['String']['output']>;
|
|
80352
|
+
policyVersion?: Maybe<Scalars['String']['output']>;
|
|
80353
|
+
};
|
|
80263
80354
|
export type GraphStoreInferredProjectHasRelatedEntitySortInput = {
|
|
80264
80355
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
80265
80356
|
};
|
|
@@ -80282,6 +80373,46 @@ export type GraphStoreInferredProjectNodeMetadata = {
|
|
|
80282
80373
|
summary?: Maybe<Scalars['String']['output']>;
|
|
80283
80374
|
title?: Maybe<Scalars['String']['output']>;
|
|
80284
80375
|
};
|
|
80376
|
+
export declare enum GraphStoreInferredRiskNodeInferredRiskLevelOutput {
|
|
80377
|
+
Critical = "CRITICAL",
|
|
80378
|
+
High = "HIGH",
|
|
80379
|
+
Low = "LOW",
|
|
80380
|
+
Medium = "MEDIUM",
|
|
80381
|
+
NotSet = "NOT_SET"
|
|
80382
|
+
}
|
|
80383
|
+
export declare enum GraphStoreInferredRiskNodeInferredRiskSubtypeOutput {
|
|
80384
|
+
BugPattern = "BUG_PATTERN",
|
|
80385
|
+
Capacity = "CAPACITY",
|
|
80386
|
+
DecisionStalled = "DECISION_STALLED",
|
|
80387
|
+
DeliveryBlocker = "DELIVERY_BLOCKER",
|
|
80388
|
+
DesignEngDiverging = "DESIGN_ENG_DIVERGING",
|
|
80389
|
+
ExternalDependency = "EXTERNAL_DEPENDENCY",
|
|
80390
|
+
NotSet = "NOT_SET",
|
|
80391
|
+
Other = "OTHER",
|
|
80392
|
+
ProjectStalled = "PROJECT_STALLED",
|
|
80393
|
+
Quality = "QUALITY"
|
|
80394
|
+
}
|
|
80395
|
+
export type GraphStoreInferredRiskNodeMetadata = {
|
|
80396
|
+
__typename?: 'GraphStoreInferredRiskNodeMetadata';
|
|
80397
|
+
confidenceScore?: Maybe<Scalars['Float']['output']>;
|
|
80398
|
+
createdAt?: Maybe<Scalars['Long']['output']>;
|
|
80399
|
+
dedupeKey?: Maybe<Scalars['String']['output']>;
|
|
80400
|
+
lastUpdated?: Maybe<Scalars['Long']['output']>;
|
|
80401
|
+
level?: Maybe<GraphStoreInferredRiskNodeInferredRiskLevelOutput>;
|
|
80402
|
+
normalizedTitleHash?: Maybe<Scalars['String']['output']>;
|
|
80403
|
+
provenance?: Maybe<GraphStoreInferredRiskNodeProvenanceOutput>;
|
|
80404
|
+
subtype?: Maybe<GraphStoreInferredRiskNodeInferredRiskSubtypeOutput>;
|
|
80405
|
+
summary?: Maybe<Scalars['String']['output']>;
|
|
80406
|
+
title?: Maybe<Scalars['String']['output']>;
|
|
80407
|
+
};
|
|
80408
|
+
export type GraphStoreInferredRiskNodeProvenanceOutput = {
|
|
80409
|
+
__typename?: 'GraphStoreInferredRiskNodeProvenanceOutput';
|
|
80410
|
+
appId?: Maybe<Scalars['String']['output']>;
|
|
80411
|
+
appVersion?: Maybe<Scalars['String']['output']>;
|
|
80412
|
+
executionMode?: Maybe<Scalars['String']['output']>;
|
|
80413
|
+
modelProvider?: Maybe<Scalars['String']['output']>;
|
|
80414
|
+
policyVersion?: Maybe<Scalars['String']['output']>;
|
|
80415
|
+
};
|
|
80285
80416
|
export type GraphStoreInferredTeamCollaboratesOnInferredProjectSortInput = {
|
|
80286
80417
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
80287
80418
|
};
|
|
@@ -81085,7 +81216,7 @@ export type GraphStoreMutationDeleteVersionUserAssociatedFeatureFlagArgs = {
|
|
|
81085
81216
|
export type GraphStoreMutationDeleteVulnerabilityAssociatedIssueArgs = {
|
|
81086
81217
|
input?: InputMaybe<GraphStoreDeleteVulnerabilityAssociatedIssueInput>;
|
|
81087
81218
|
};
|
|
81088
|
-
export type GraphStoreNodeMetadata = GraphStoreGraphMemoryNodeMetadata | GraphStoreInferredDecisionNodeMetadata | GraphStoreInferredProjectNodeMetadata | GraphStoreInferredTeamNodeMetadata | GraphStoreMemoryContentNodeMetadata;
|
|
81219
|
+
export type GraphStoreNodeMetadata = GraphStoreGraphMemoryNodeMetadata | GraphStoreInferredDecisionNodeMetadata | GraphStoreInferredHighlightNodeMetadata | GraphStoreInferredProjectNodeMetadata | GraphStoreInferredRiskNodeMetadata | GraphStoreInferredTeamNodeMetadata | GraphStoreMemoryContentNodeMetadata;
|
|
81089
81220
|
export type GraphStoreNodeResponse = Node & {
|
|
81090
81221
|
__typename?: 'GraphStoreNodeResponse';
|
|
81091
81222
|
id: Scalars['ID']['output'];
|
|
@@ -133268,6 +133399,7 @@ export type JiraCustomFieldUsageMetric = JiraResourceUsageMetricV2 & Node & {
|
|
|
133268
133399
|
globalScopedCustomFieldsCount?: Maybe<Scalars['Long']['output']>;
|
|
133269
133400
|
id: Scalars['ID']['output'];
|
|
133270
133401
|
key?: Maybe<Scalars['String']['output']>;
|
|
133402
|
+
projectLimitsReport?: Maybe<JiraProjectLimitsReport>;
|
|
133271
133403
|
projectScopedCustomFieldsCount?: Maybe<Scalars['Long']['output']>;
|
|
133272
133404
|
projectsOverLimit?: Maybe<Scalars['Int']['output']>;
|
|
133273
133405
|
projectsReachingLimit?: Maybe<Scalars['Int']['output']>;
|
|
@@ -136346,6 +136478,7 @@ export declare enum JiraGicFallbackReason {
|
|
|
136346
136478
|
}
|
|
136347
136479
|
export type JiraGenerateIssueAiSummaryInput = {
|
|
136348
136480
|
issueId: Scalars['ID']['input'];
|
|
136481
|
+
useCaseId?: InputMaybe<Scalars['String']['input']>;
|
|
136349
136482
|
};
|
|
136350
136483
|
export type JiraGeneratedJqlInvalidError = {
|
|
136351
136484
|
__typename?: 'JiraGeneratedJqlInvalidError';
|
|
@@ -137137,6 +137270,7 @@ export type JiraIssue = HasMercuryProjectFields & JiraListRow & JiraScenarioIssu
|
|
|
137137
137270
|
getConsolidatedResources?: Maybe<JiraResourcesResult>;
|
|
137138
137271
|
getConsolidatedResourcesTotalCount?: Maybe<Scalars['Long']['output']>;
|
|
137139
137272
|
getUnhydratedConsolidatedResources?: Maybe<JiraResourcesResult>;
|
|
137273
|
+
globalRiskAssessmentSettings?: Maybe<ChangeManagementGlobalRiskAssessmentSettingsPayload>;
|
|
137140
137274
|
groupsByFieldId?: Maybe<JiraSpreadsheetGroupConnection>;
|
|
137141
137275
|
hasChildIssues?: Maybe<Scalars['Boolean']['output']>;
|
|
137142
137276
|
hasChildren?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -139653,6 +139787,7 @@ export type JiraIssueSearchViewConfigSettings = {
|
|
|
139653
139787
|
isViewConfigModified?: Maybe<Scalars['Boolean']['output']>;
|
|
139654
139788
|
};
|
|
139655
139789
|
export type JiraIssueSearchViewContextInput = {
|
|
139790
|
+
childIssuesJql?: InputMaybe<Scalars['String']['input']>;
|
|
139656
139791
|
expandedGroups?: InputMaybe<JiraIssueExpandedGroups>;
|
|
139657
139792
|
expandedParents?: InputMaybe<Array<JiraIssueExpandedParent>>;
|
|
139658
139793
|
topLevelItemsLoaded?: InputMaybe<Scalars['Int']['input']>;
|
|
@@ -145964,6 +146099,18 @@ export type JiraProjectLevelSidebarRenamedMenuItemEdge = {
|
|
|
145964
146099
|
cursor: Scalars['String']['output'];
|
|
145965
146100
|
node?: Maybe<JiraProjectLevelSidebarRenamedMenuItem>;
|
|
145966
146101
|
};
|
|
146102
|
+
export type JiraProjectLimitsReport = {
|
|
146103
|
+
__typename?: 'JiraProjectLimitsReport';
|
|
146104
|
+
lastUpdated?: Maybe<Scalars['DateTime']['output']>;
|
|
146105
|
+
projectsOverLimit?: Maybe<Scalars['Long']['output']>;
|
|
146106
|
+
projectsReachingLimit?: Maybe<Scalars['Long']['output']>;
|
|
146107
|
+
projectsWithinLimit?: Maybe<Scalars['Long']['output']>;
|
|
146108
|
+
recommendedEntitiesPerProject?: Maybe<Scalars['Long']['output']>;
|
|
146109
|
+
schemesOverLimit?: Maybe<Scalars['Long']['output']>;
|
|
146110
|
+
schemesReachingLimit?: Maybe<Scalars['Long']['output']>;
|
|
146111
|
+
totalProjects?: Maybe<Scalars['Long']['output']>;
|
|
146112
|
+
totalSchemes?: Maybe<Scalars['Long']['output']>;
|
|
146113
|
+
};
|
|
145967
146114
|
export declare enum JiraProjectListRightPanelState {
|
|
145968
146115
|
Closed = "CLOSED",
|
|
145969
146116
|
Open = "OPEN"
|
|
@@ -157451,7 +157598,7 @@ export type JpdUpdateViewInput = {
|
|
|
157451
157598
|
description?: InputMaybe<Scalars['JSON']['input']>;
|
|
157452
157599
|
emoji?: InputMaybe<Scalars['String']['input']>;
|
|
157453
157600
|
id: Scalars['ID']['input'];
|
|
157454
|
-
name
|
|
157601
|
+
name?: InputMaybe<Scalars['String']['input']>;
|
|
157455
157602
|
viewTypeConfig?: InputMaybe<JpdViewTypeConfigInput>;
|
|
157456
157603
|
};
|
|
157457
157604
|
export type JpdView = {
|
|
@@ -161485,7 +161632,7 @@ export declare enum KitsuneFeedbackType {
|
|
|
161485
161632
|
}
|
|
161486
161633
|
export type KitsuneFeedbackValue = {
|
|
161487
161634
|
__typename?: 'KitsuneFeedbackValue';
|
|
161488
|
-
field
|
|
161635
|
+
field?: Maybe<KitsuneField>;
|
|
161489
161636
|
fieldV2?: Maybe<KitsuneField>;
|
|
161490
161637
|
values: Array<KitsuneFeedbackFieldValue>;
|
|
161491
161638
|
};
|
|
@@ -161523,6 +161670,7 @@ export type KitsuneFieldOptionUpdateInput = {
|
|
|
161523
161670
|
};
|
|
161524
161671
|
export type KitsuneFieldOptionsInput = {
|
|
161525
161672
|
create?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
161673
|
+
createV2?: InputMaybe<Array<KitsuneCreateFieldOptionInput>>;
|
|
161526
161674
|
remove?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
161527
161675
|
update?: InputMaybe<Array<KitsuneFieldOptionUpdateInput>>;
|
|
161528
161676
|
};
|
|
@@ -161559,7 +161707,7 @@ export declare enum KitsuneFieldValueType {
|
|
|
161559
161707
|
export type KitsuneFilter = {
|
|
161560
161708
|
__typename?: 'KitsuneFilter';
|
|
161561
161709
|
comparisonOperator: KitsuneComparisonOperator;
|
|
161562
|
-
field
|
|
161710
|
+
field?: Maybe<KitsuneField>;
|
|
161563
161711
|
fieldId: Scalars['ID']['output'];
|
|
161564
161712
|
fieldV2?: Maybe<KitsuneField>;
|
|
161565
161713
|
logicalOperator: KitsuneLogicalOperator;
|
|
@@ -161644,7 +161792,7 @@ export type KitsuneInsightEdge = KitsuneEdge & {
|
|
|
161644
161792
|
export type KitsuneInsightSuggestion = {
|
|
161645
161793
|
__typename?: 'KitsuneInsightSuggestion';
|
|
161646
161794
|
embeddingType: Scalars['String']['output'];
|
|
161647
|
-
insight
|
|
161795
|
+
insight?: Maybe<KitsuneInsight>;
|
|
161648
161796
|
insightId: Scalars['ID']['output'];
|
|
161649
161797
|
matchedContent: Scalars['String']['output'];
|
|
161650
161798
|
score?: Maybe<Scalars['Float']['output']>;
|
|
@@ -161842,7 +161990,7 @@ export type KitsuneRollupInput = {
|
|
|
161842
161990
|
};
|
|
161843
161991
|
export type KitsuneSearchChunk = {
|
|
161844
161992
|
__typename?: 'KitsuneSearchChunk';
|
|
161845
|
-
chunks
|
|
161993
|
+
chunks?: Maybe<Array<KitsuneChunk>>;
|
|
161846
161994
|
content?: Maybe<Scalars['String']['output']>;
|
|
161847
161995
|
feedbackId: Scalars['ID']['output'];
|
|
161848
161996
|
score?: Maybe<Scalars['Float']['output']>;
|
|
@@ -168681,6 +168829,23 @@ export declare enum MarketplaceStoreDeveloperSpaceStatus {
|
|
|
168681
168829
|
Archived = "ARCHIVED",
|
|
168682
168830
|
Inactive = "INACTIVE"
|
|
168683
168831
|
}
|
|
168832
|
+
export type MarketplaceStoreDynamicProductRecommendations = {
|
|
168833
|
+
__typename?: 'MarketplaceStoreDynamicProductRecommendations';
|
|
168834
|
+
apps: Array<MarketplaceStoreSearchHitObject>;
|
|
168835
|
+
isPersonalized: Scalars['Boolean']['output'];
|
|
168836
|
+
parentApplicationKey?: Maybe<Scalars['String']['output']>;
|
|
168837
|
+
sessionId?: Maybe<Scalars['String']['output']>;
|
|
168838
|
+
};
|
|
168839
|
+
export type MarketplaceStoreDynamicRecommendationsInput = {
|
|
168840
|
+
filter?: InputMaybe<MarketplaceStoreSearchFilterInput>;
|
|
168841
|
+
searchQuery?: InputMaybe<Scalars['String']['input']>;
|
|
168842
|
+
tenantId: Scalars['String']['input'];
|
|
168843
|
+
};
|
|
168844
|
+
export type MarketplaceStoreDynamicRecommendationsResponse = {
|
|
168845
|
+
__typename?: 'MarketplaceStoreDynamicRecommendationsResponse';
|
|
168846
|
+
productRecommendations: Array<MarketplaceStoreDynamicProductRecommendations>;
|
|
168847
|
+
resultsCount: Scalars['Int']['output'];
|
|
168848
|
+
};
|
|
168684
168849
|
export type MarketplaceStoreEdition = {
|
|
168685
168850
|
__typename?: 'MarketplaceStoreEdition';
|
|
168686
168851
|
approvalDetails?: Maybe<MarketplaceStoreApprovalDetails>;
|
|
@@ -169839,6 +170004,32 @@ export type MarketplaceStoreSearchFilter = {
|
|
|
169839
170004
|
key: Scalars['String']['output'];
|
|
169840
170005
|
value: Array<Scalars['String']['output']>;
|
|
169841
170006
|
};
|
|
170007
|
+
export type MarketplaceStoreSearchFilterGovernanceInput = {
|
|
170008
|
+
dataResidencyStatus?: InputMaybe<Scalars['String']['input']>;
|
|
170009
|
+
type: Scalars['String']['input'];
|
|
170010
|
+
};
|
|
170011
|
+
export type MarketplaceStoreSearchFilterInput = {
|
|
170012
|
+
cloudComplianceBoundaries?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
170013
|
+
compliance?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
170014
|
+
governance?: InputMaybe<Array<MarketplaceStoreSearchFilterGovernanceInput>>;
|
|
170015
|
+
hosting?: InputMaybe<Scalars['String']['input']>;
|
|
170016
|
+
paid?: InputMaybe<Scalars['Boolean']['input']>;
|
|
170017
|
+
parentApplicationKeys?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
170018
|
+
partnerSupported?: InputMaybe<Scalars['Boolean']['input']>;
|
|
170019
|
+
securityPrograms?: InputMaybe<Array<MarketplaceStoreSearchFilterSecurityProgramInput>>;
|
|
170020
|
+
tagsCategories?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
170021
|
+
trustPrograms?: InputMaybe<Array<MarketplaceStoreSearchFilterTrustProgramInput>>;
|
|
170022
|
+
vendorId?: InputMaybe<Scalars['Int']['input']>;
|
|
170023
|
+
};
|
|
170024
|
+
export type MarketplaceStoreSearchFilterSecurityProgramInput = {
|
|
170025
|
+
program: Scalars['String']['input'];
|
|
170026
|
+
status?: InputMaybe<Scalars['String']['input']>;
|
|
170027
|
+
};
|
|
170028
|
+
export type MarketplaceStoreSearchFilterTrustProgramInput = {
|
|
170029
|
+
program: Scalars['String']['input'];
|
|
170030
|
+
status?: InputMaybe<Scalars['String']['input']>;
|
|
170031
|
+
value?: InputMaybe<Scalars['String']['input']>;
|
|
170032
|
+
};
|
|
169842
170033
|
export type MarketplaceStoreSearchHitDistribution = {
|
|
169843
170034
|
__typename?: 'MarketplaceStoreSearchHitDistribution';
|
|
169844
170035
|
activeInstalls?: Maybe<Scalars['Int']['output']>;
|
|
@@ -170541,7 +170732,6 @@ export type MercuryAsk = Node & {
|
|
|
170541
170732
|
activities?: Maybe<MercuryAskActivityConnection>;
|
|
170542
170733
|
askStatus: MercuryAskStatusEnum;
|
|
170543
170734
|
askType?: Maybe<MercuryAskType>;
|
|
170544
|
-
askTypeId?: Maybe<Scalars['ID']['output']>;
|
|
170545
170735
|
comments?: Maybe<MercuryThreadedCommentConnection>;
|
|
170546
170736
|
connectedWork?: Maybe<MercuryAskConnectedWorkConnection>;
|
|
170547
170737
|
createdAt?: Maybe<Scalars['DateTime']['output']>;
|
|
@@ -178006,7 +178196,7 @@ export type MercuryRateCardAttributeType = {
|
|
|
178006
178196
|
key: Scalars['String']['output'];
|
|
178007
178197
|
order: Scalars['Int']['output'];
|
|
178008
178198
|
};
|
|
178009
|
-
export type MercuryRateCardAttributeValue = MercuryRateCardOrganizationAttributeValue;
|
|
178199
|
+
export type MercuryRateCardAttributeValue = MercuryRateCardFunctionalRoleAttributeValue | MercuryRateCardOrganizationAttributeValue;
|
|
178010
178200
|
export type MercuryRateCardAttributeValueInput = {
|
|
178011
178201
|
attributeId: Scalars['ID']['input'];
|
|
178012
178202
|
attributeValue?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -178041,6 +178231,12 @@ export type MercuryRateCardEdge = {
|
|
|
178041
178231
|
cursor: Scalars['String']['output'];
|
|
178042
178232
|
node?: Maybe<MercuryRateCard>;
|
|
178043
178233
|
};
|
|
178234
|
+
export type MercuryRateCardFunctionalRoleAttributeValue = MercuryRateCardAttributeValueInterface & {
|
|
178235
|
+
__typename?: 'MercuryRateCardFunctionalRoleAttributeValue';
|
|
178236
|
+
attribute?: Maybe<MercuryRateCardAttribute>;
|
|
178237
|
+
functionalRole?: Maybe<MercuryFunctionalRole>;
|
|
178238
|
+
id: Scalars['ID']['output'];
|
|
178239
|
+
};
|
|
178044
178240
|
export type MercuryRateCardOrganizationAttributeValue = MercuryRateCardAttributeValueInterface & {
|
|
178045
178241
|
__typename?: 'MercuryRateCardOrganizationAttributeValue';
|
|
178046
178242
|
attribute?: Maybe<MercuryRateCardAttribute>;
|
|
@@ -192696,6 +192892,10 @@ export type PsmLinkSensorKbArticlesPayload = Payload & {
|
|
|
192696
192892
|
kbArticleAris?: Maybe<Array<Scalars['String']['output']>>;
|
|
192697
192893
|
success: Scalars['Boolean']['output'];
|
|
192698
192894
|
};
|
|
192895
|
+
export type PsmMessageMetadata = {
|
|
192896
|
+
__typename?: 'PsmMessageMetadata';
|
|
192897
|
+
link: Scalars['String']['output'];
|
|
192898
|
+
};
|
|
192699
192899
|
export declare enum PsmMessageType {
|
|
192700
192900
|
Markdown = "MARKDOWN",
|
|
192701
192901
|
Ticket = "TICKET"
|
|
@@ -192778,6 +192978,15 @@ export type PsmPublishUserKeyPayload = Payload & {
|
|
|
192778
192978
|
success: Scalars['Boolean']['output'];
|
|
192779
192979
|
userKey?: Maybe<PsmUserKey>;
|
|
192780
192980
|
};
|
|
192981
|
+
export type PsmRaiseTicketConversation = {
|
|
192982
|
+
__typename?: 'PsmRaiseTicketConversation';
|
|
192983
|
+
actions: Array<PsmSensorEventAction>;
|
|
192984
|
+
conversationId: Scalars['ID']['output'];
|
|
192985
|
+
directive: PsmEventDirective;
|
|
192986
|
+
messages: Array<PsmSensorEventMessage>;
|
|
192987
|
+
readState?: Maybe<PsmConversationReadState>;
|
|
192988
|
+
remediationState?: Maybe<PsmRemediationState>;
|
|
192989
|
+
};
|
|
192781
192990
|
export type PsmRaiseTicketInput = {
|
|
192782
192991
|
accountId: Scalars['ID']['input'];
|
|
192783
192992
|
conversationId: Scalars['ID']['input'];
|
|
@@ -192785,19 +192994,18 @@ export type PsmRaiseTicketInput = {
|
|
|
192785
192994
|
};
|
|
192786
192995
|
export type PsmRaiseTicketPayload = Payload & {
|
|
192787
192996
|
__typename?: 'PsmRaiseTicketPayload';
|
|
192997
|
+
conversation?: Maybe<PsmRaiseTicketConversation>;
|
|
192788
192998
|
errors?: Maybe<Array<MutationError>>;
|
|
192789
192999
|
success: Scalars['Boolean']['output'];
|
|
192790
|
-
ticket?: Maybe<PsmRaisedTicket>;
|
|
192791
193000
|
};
|
|
192792
|
-
export type
|
|
192793
|
-
__typename?: '
|
|
192794
|
-
|
|
192795
|
-
|
|
192796
|
-
|
|
192797
|
-
|
|
192798
|
-
|
|
192799
|
-
|
|
192800
|
-
ticketKey: Scalars['String']['output'];
|
|
193001
|
+
export type PsmRecordUserActionConversation = {
|
|
193002
|
+
__typename?: 'PsmRecordUserActionConversation';
|
|
193003
|
+
actions: Array<PsmSensorEventAction>;
|
|
193004
|
+
conversationId: Scalars['ID']['output'];
|
|
193005
|
+
directive: PsmEventDirective;
|
|
193006
|
+
messages: Array<PsmSensorEventMessage>;
|
|
193007
|
+
readState?: Maybe<PsmConversationReadState>;
|
|
193008
|
+
remediationState?: Maybe<PsmRemediationState>;
|
|
192801
193009
|
};
|
|
192802
193010
|
export type PsmRecordUserActionInput = {
|
|
192803
193011
|
accountId: Scalars['ID']['input'];
|
|
@@ -192808,6 +193016,7 @@ export type PsmRecordUserActionInput = {
|
|
|
192808
193016
|
};
|
|
192809
193017
|
export type PsmRecordUserActionPayload = Payload & {
|
|
192810
193018
|
__typename?: 'PsmRecordUserActionPayload';
|
|
193019
|
+
conversation?: Maybe<PsmRecordUserActionConversation>;
|
|
192811
193020
|
errors?: Maybe<Array<MutationError>>;
|
|
192812
193021
|
success: Scalars['Boolean']['output'];
|
|
192813
193022
|
};
|
|
@@ -192858,6 +193067,7 @@ export type PsmRemediationCategoryInfo = {
|
|
|
192858
193067
|
};
|
|
192859
193068
|
export type PsmRemediationHistoryEvent = {
|
|
192860
193069
|
__typename?: 'PsmRemediationHistoryEvent';
|
|
193070
|
+
detailMessage?: Maybe<Scalars['String']['output']>;
|
|
192861
193071
|
durationMs?: Maybe<Scalars['Int']['output']>;
|
|
192862
193072
|
errorMessage?: Maybe<Scalars['String']['output']>;
|
|
192863
193073
|
executedAt: Scalars['DateTime']['output'];
|
|
@@ -192896,6 +193106,7 @@ export type PsmRemediationResultInfo = {
|
|
|
192896
193106
|
export type PsmRemediationSensor = {
|
|
192897
193107
|
__typename?: 'PsmRemediationSensor';
|
|
192898
193108
|
events?: Maybe<Array<PsmRemediationHistoryEvent>>;
|
|
193109
|
+
faultId?: Maybe<Scalars['ID']['output']>;
|
|
192899
193110
|
name?: Maybe<Scalars['String']['output']>;
|
|
192900
193111
|
providerSensorId: Scalars['ID']['output'];
|
|
192901
193112
|
sensorId?: Maybe<Scalars['ID']['output']>;
|
|
@@ -193024,6 +193235,7 @@ export type PsmSensorEventMessage = {
|
|
|
193024
193235
|
detail: Scalars['String']['output'];
|
|
193025
193236
|
lastActivityTime?: Maybe<Scalars['DateTime']['output']>;
|
|
193026
193237
|
messageType: PsmMessageType;
|
|
193238
|
+
metadata?: Maybe<PsmMessageMetadata>;
|
|
193027
193239
|
summary: Scalars['String']['output'];
|
|
193028
193240
|
title: Scalars['String']['output'];
|
|
193029
193241
|
};
|
|
@@ -193044,6 +193256,7 @@ export declare enum PsmSensorEventType {
|
|
|
193044
193256
|
ExecutionCompleted = "EXECUTION_COMPLETED",
|
|
193045
193257
|
Lagged = "LAGGED",
|
|
193046
193258
|
Shutdown = "SHUTDOWN",
|
|
193259
|
+
TicketRaised = "TICKET_RAISED",
|
|
193047
193260
|
UserResolved = "USER_RESOLVED",
|
|
193048
193261
|
WithdrawConditionCleared = "WITHDRAW_CONDITION_CLEARED",
|
|
193049
193262
|
WithdrawScheduledFull = "WITHDRAW_SCHEDULED_FULL",
|
|
@@ -194379,6 +194592,7 @@ export type Query = {
|
|
|
194379
194592
|
dlp_getFalsePositive?: Maybe<DlpFalsePositive>;
|
|
194380
194593
|
dlp_getFalsePositives?: Maybe<DlpFalsePositivesListResponse>;
|
|
194381
194594
|
dlp_getFindings?: Maybe<DlpFindingsListResponse>;
|
|
194595
|
+
dlp_getFindingsSummary?: Maybe<DlpFindingsSummaryResponse>;
|
|
194382
194596
|
dlp_getPreviewRulesImpact?: Maybe<DlpPreviewRulesImpactResponse>;
|
|
194383
194597
|
dlp_isClassificationTaskRunning?: Maybe<Scalars['Boolean']['output']>;
|
|
194384
194598
|
dvcs?: Maybe<DvcsQuery>;
|
|
@@ -196997,6 +197211,7 @@ export type Query = {
|
|
|
196997
197211
|
marketplacePricingPlan?: Maybe<MarketplacePricingPlan>;
|
|
196998
197212
|
marketplaceStore: MarketplaceStoreQueryApi;
|
|
196999
197213
|
marketplaceStore_appReviewsByAppKeyV2?: Maybe<MarketplaceStoreReviewsResponse>;
|
|
197214
|
+
marketplaceStore_dynamicRecommendations?: Maybe<MarketplaceStoreDynamicRecommendationsResponse>;
|
|
197000
197215
|
marketplaceStore_editionsByAppKeyV2?: Maybe<Array<MarketplaceStoreEdition>>;
|
|
197001
197216
|
marketplaceStore_getProductListingV2?: Maybe<MarketplaceStoreProductListingResponse>;
|
|
197002
197217
|
marketplaceStore_partnerByPartnerNameV2?: Maybe<MarketplaceStoreSearchPartnerResponse>;
|
|
@@ -201835,6 +202050,10 @@ export type QueryDlp_GetFindingsArgs = {
|
|
|
201835
202050
|
pageSize?: InputMaybe<Scalars['Int']['input']>;
|
|
201836
202051
|
scope?: InputMaybe<DlpScopeInput>;
|
|
201837
202052
|
};
|
|
202053
|
+
export type QueryDlp_GetFindingsSummaryArgs = {
|
|
202054
|
+
orgId: Scalars['String']['input'];
|
|
202055
|
+
scope?: InputMaybe<DlpScopeInput>;
|
|
202056
|
+
};
|
|
201838
202057
|
export type QueryDlp_GetPreviewRulesImpactArgs = {
|
|
201839
202058
|
orgId: Scalars['String']['input'];
|
|
201840
202059
|
taskId: Scalars['String']['input'];
|
|
@@ -201965,15 +202184,18 @@ export type QueryGetAppInstallationFacetsArgs = {
|
|
|
201965
202184
|
filterName: InstallationFacetFilter;
|
|
201966
202185
|
};
|
|
201967
202186
|
export type QueryGetAppInstallationsArgs = {
|
|
202187
|
+
analyticsEnabled?: InputMaybe<Scalars['Boolean']['input']>;
|
|
201968
202188
|
appId: Scalars['ID']['input'];
|
|
201969
202189
|
atlassianApp?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
201970
202190
|
contexts?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
201971
202191
|
cursor?: InputMaybe<Scalars['String']['input']>;
|
|
202192
|
+
customMetricsEnabled?: InputMaybe<Scalars['Boolean']['input']>;
|
|
201972
202193
|
edition?: InputMaybe<Array<InstallationEditionInput>>;
|
|
201973
202194
|
environmentId?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
201974
202195
|
installedOn?: InputMaybe<DateSearchInput>;
|
|
201975
202196
|
license?: InputMaybe<Array<LicenseValue>>;
|
|
201976
202197
|
limit?: InputMaybe<Scalars['Int']['input']>;
|
|
202198
|
+
logsEnabled?: InputMaybe<Scalars['Boolean']['input']>;
|
|
201977
202199
|
offset?: InputMaybe<Scalars['Int']['input']>;
|
|
201978
202200
|
sort?: InputMaybe<InstallationSortInput>;
|
|
201979
202201
|
status?: InputMaybe<InstallationStatus>;
|
|
@@ -219253,7 +219475,8 @@ export type QueryJsmConversation_SettingsArgs = {
|
|
|
219253
219475
|
projectAri: Scalars['String']['input'];
|
|
219254
219476
|
};
|
|
219255
219477
|
export type QueryJsmSelfServe_ConversationStartersArgs = {
|
|
219256
|
-
|
|
219478
|
+
cloudId: Scalars['ID']['input'];
|
|
219479
|
+
projectKey: Scalars['String']['input'];
|
|
219257
219480
|
};
|
|
219258
219481
|
export type QueryJsmTelemetry_AiPromptArgs = {
|
|
219259
219482
|
cloudId?: InputMaybe<Scalars['ID']['input']>;
|
|
@@ -219772,6 +219995,9 @@ export type QueryMarketplaceStore_AppReviewsByAppKeyV2Args = {
|
|
|
219772
219995
|
limit?: InputMaybe<Scalars['Int']['input']>;
|
|
219773
219996
|
offset?: InputMaybe<Scalars['Int']['input']>;
|
|
219774
219997
|
};
|
|
219998
|
+
export type QueryMarketplaceStore_DynamicRecommendationsArgs = {
|
|
219999
|
+
input: MarketplaceStoreDynamicRecommendationsInput;
|
|
220000
|
+
};
|
|
219775
220001
|
export type QueryMarketplaceStore_EditionsByAppKeyV2Args = {
|
|
219776
220002
|
countryCode?: InputMaybe<Scalars['String']['input']>;
|
|
219777
220003
|
product: MarketplaceStoreEditionsByAppKeyInput;
|
|
@@ -222261,7 +222487,9 @@ export declare enum RadarNotificationType {
|
|
|
222261
222487
|
DataIngestionFailure = "DATA_INGESTION_FAILURE",
|
|
222262
222488
|
DataIngestionSuccess = "DATA_INGESTION_SUCCESS",
|
|
222263
222489
|
DataIngestionSuccessAfterFailure = "DATA_INGESTION_SUCCESS_AFTER_FAILURE",
|
|
222264
|
-
SkillsVerificationRequest = "SKILLS_VERIFICATION_REQUEST"
|
|
222490
|
+
SkillsVerificationRequest = "SKILLS_VERIFICATION_REQUEST",
|
|
222491
|
+
TaxonomyGenerationFailure = "TAXONOMY_GENERATION_FAILURE",
|
|
222492
|
+
TaxonomyGenerationSuccess = "TAXONOMY_GENERATION_SUCCESS"
|
|
222265
222493
|
}
|
|
222266
222494
|
export declare enum RadarNumericAppearance {
|
|
222267
222495
|
Duration = "DURATION",
|
|
@@ -225159,9 +225387,15 @@ export declare enum SearchLinkedResultCategory {
|
|
|
225159
225387
|
export type SearchLinkedResultEntity = ExternalCalendarEvent;
|
|
225160
225388
|
export type SearchLoomFilters = {
|
|
225161
225389
|
folderIds?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
225390
|
+
playlistIds?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
225162
225391
|
spaceIds?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
225163
225392
|
tagNames?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
225393
|
+
videoTypes?: InputMaybe<Array<SearchLoomVideoType>>;
|
|
225164
225394
|
};
|
|
225395
|
+
export declare enum SearchLoomVideoType {
|
|
225396
|
+
AsyncVideo = "ASYNC_VIDEO",
|
|
225397
|
+
MeetingRecording = "MEETING_RECORDING"
|
|
225398
|
+
}
|
|
225165
225399
|
export type SearchMatchingLayer = {
|
|
225166
225400
|
layerName?: InputMaybe<Scalars['String']['input']>;
|
|
225167
225401
|
layerType?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -225828,6 +226062,27 @@ export type SearchResultLoomFolder = SearchResult & {
|
|
|
225828
226062
|
type: SearchResultType;
|
|
225829
226063
|
url: Scalars['String']['output'];
|
|
225830
226064
|
};
|
|
226065
|
+
export type SearchResultLoomPlaylist = SearchResult & {
|
|
226066
|
+
__typename?: 'SearchResultLoomPlaylist';
|
|
226067
|
+
createdAt?: Maybe<Scalars['String']['output']>;
|
|
226068
|
+
creatorAaid?: Maybe<Scalars['String']['output']>;
|
|
226069
|
+
description: Scalars['String']['output'];
|
|
226070
|
+
entityKey?: Maybe<Scalars['String']['output']>;
|
|
226071
|
+
iconUrl?: Maybe<Scalars['String']['output']>;
|
|
226072
|
+
id: Scalars['ID']['output'];
|
|
226073
|
+
lastModifiedDate?: Maybe<Scalars['String']['output']>;
|
|
226074
|
+
linkedResults?: Maybe<Array<SearchLinkedResult>>;
|
|
226075
|
+
loomId?: Maybe<Scalars['String']['output']>;
|
|
226076
|
+
navBoostScore?: Maybe<Scalars['Float']['output']>;
|
|
226077
|
+
permissionsSet?: Maybe<Array<Scalars['String']['output']>>;
|
|
226078
|
+
score?: Maybe<Scalars['Float']['output']>;
|
|
226079
|
+
scoreL2Ranker?: Maybe<Scalars['Float']['output']>;
|
|
226080
|
+
smartLinkAris?: Maybe<Array<Scalars['ID']['output']>>;
|
|
226081
|
+
thumbnailUrl?: Maybe<Scalars['String']['output']>;
|
|
226082
|
+
title: Scalars['String']['output'];
|
|
226083
|
+
type: SearchResultType;
|
|
226084
|
+
url: Scalars['String']['output'];
|
|
226085
|
+
};
|
|
225831
226086
|
export type SearchResultLoomSpace = SearchResult & {
|
|
225832
226087
|
__typename?: 'SearchResultLoomSpace';
|
|
225833
226088
|
description: Scalars['String']['output'];
|
|
@@ -225892,6 +226147,7 @@ export type SearchResultLoomVideo = SearchResult & {
|
|
|
225892
226147
|
title: Scalars['String']['output'];
|
|
225893
226148
|
type: SearchResultType;
|
|
225894
226149
|
url: Scalars['String']['output'];
|
|
226150
|
+
videoType: SearchLoomVideoType;
|
|
225895
226151
|
};
|
|
225896
226152
|
export type SearchResultMercuryAsk = SearchResult & {
|
|
225897
226153
|
__typename?: 'SearchResultMercuryAsk';
|
|
@@ -226135,6 +226391,7 @@ export declare enum SearchResultType {
|
|
|
226135
226391
|
OrganizationStatusUpdate = "organization_status_update",
|
|
226136
226392
|
Page = "page",
|
|
226137
226393
|
Plan = "plan",
|
|
226394
|
+
Playlist = "playlist",
|
|
226138
226395
|
Position = "position",
|
|
226139
226396
|
Presentation = "presentation",
|
|
226140
226397
|
Project = "project",
|
|
@@ -240487,6 +240744,7 @@ export type TrelloAgentMessageUpdatedConnection = {
|
|
|
240487
240744
|
};
|
|
240488
240745
|
export type TrelloAgentSession = {
|
|
240489
240746
|
__typename?: 'TrelloAgentSession';
|
|
240747
|
+
creator?: Maybe<TrelloAgentSessionCreator>;
|
|
240490
240748
|
id: Scalars['ID']['output'];
|
|
240491
240749
|
objectId: Scalars['ID']['output'];
|
|
240492
240750
|
tasks: TrelloAgentTaskConnection;
|
|
@@ -240495,6 +240753,10 @@ export type TrelloAgentSessionTasksArgs = {
|
|
|
240495
240753
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
240496
240754
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
240497
240755
|
};
|
|
240756
|
+
export type TrelloAgentSessionCreator = {
|
|
240757
|
+
__typename?: 'TrelloAgentSessionCreator';
|
|
240758
|
+
user?: Maybe<TrelloMember>;
|
|
240759
|
+
};
|
|
240498
240760
|
export type TrelloAgentSessionUpdated = TrelloStatefulSessionUpdated & {
|
|
240499
240761
|
__typename?: 'TrelloAgentSessionUpdated';
|
|
240500
240762
|
_deltas?: Maybe<Array<Scalars['String']['output']>>;
|