@forge/cli-shared 9.5.1-next.3 → 9.5.1-next.5
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 +14 -0
- package/out/graphql/graphql-types.d.ts +307 -23
- package/out/graphql/graphql-types.d.ts.map +1 -1
- package/out/graphql/graphql-types.js +90 -31
- package/out/ui/text.d.ts +3 -0
- package/out/ui/text.d.ts.map +1 -1
- package/out/ui/text.js +3 -0
- 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
|
};
|
|
@@ -6239,6 +6259,24 @@ export type AgentAiSummary = {
|
|
|
6239
6259
|
adf?: Maybe<Scalars['String']['output']>;
|
|
6240
6260
|
text?: Maybe<Scalars['String']['output']>;
|
|
6241
6261
|
};
|
|
6262
|
+
export type AgentConversationChannel = {
|
|
6263
|
+
__typename?: 'AgentConversationChannel';
|
|
6264
|
+
createdAt?: Maybe<Scalars['Long']['output']>;
|
|
6265
|
+
id?: Maybe<Scalars['ID']['output']>;
|
|
6266
|
+
interactionChannel?: Maybe<Scalars['String']['output']>;
|
|
6267
|
+
interactionChannelAri?: Maybe<Scalars['String']['output']>;
|
|
6268
|
+
isPinned?: Maybe<Scalars['Boolean']['output']>;
|
|
6269
|
+
isPlanning?: Maybe<Scalars['Boolean']['output']>;
|
|
6270
|
+
lastAgentMessageId?: Maybe<Scalars['String']['output']>;
|
|
6271
|
+
lastAgentMessageStatus?: Maybe<Scalars['String']['output']>;
|
|
6272
|
+
lastMessage?: Maybe<Scalars['String']['output']>;
|
|
6273
|
+
lastMessageTimestamp?: Maybe<Scalars['Long']['output']>;
|
|
6274
|
+
lastMessageType?: Maybe<Array<Maybe<Scalars['String']['output']>>>;
|
|
6275
|
+
name?: Maybe<Scalars['String']['output']>;
|
|
6276
|
+
pinnedAt?: Maybe<Scalars['Long']['output']>;
|
|
6277
|
+
readStatus?: Maybe<Scalars['Boolean']['output']>;
|
|
6278
|
+
status?: Maybe<Scalars['String']['output']>;
|
|
6279
|
+
};
|
|
6242
6280
|
export type AgentSession = AgentSessionNode & {
|
|
6243
6281
|
__typename?: 'AgentSession';
|
|
6244
6282
|
_type?: Maybe<Scalars['String']['output']>;
|
|
@@ -6247,6 +6285,7 @@ export type AgentSession = AgentSessionNode & {
|
|
|
6247
6285
|
agentAri?: Maybe<Scalars['ID']['output']>;
|
|
6248
6286
|
associatedEntities?: Maybe<Array<Maybe<AgentSessionLinkedEntity>>>;
|
|
6249
6287
|
author?: Maybe<User>;
|
|
6288
|
+
conversationChannel?: Maybe<AgentConversationChannel>;
|
|
6250
6289
|
convoAiAgentId?: Maybe<Scalars['String']['output']>;
|
|
6251
6290
|
expireTime?: Maybe<Scalars['DateTime']['output']>;
|
|
6252
6291
|
id?: Maybe<Scalars['ID']['output']>;
|
|
@@ -6257,6 +6296,9 @@ export type AgentSession = AgentSessionNode & {
|
|
|
6257
6296
|
studioAgent?: Maybe<AgentStudioAgent>;
|
|
6258
6297
|
version?: Maybe<Scalars['Long']['output']>;
|
|
6259
6298
|
};
|
|
6299
|
+
export type AgentSessionConversationChannelArgs = {
|
|
6300
|
+
workspaceAri: Scalars['String']['input'];
|
|
6301
|
+
};
|
|
6260
6302
|
export type AgentSessionAssociation = AgentSessionAssociationNode & {
|
|
6261
6303
|
__typename?: 'AgentSessionAssociation';
|
|
6262
6304
|
_type?: Maybe<Scalars['String']['output']>;
|
|
@@ -6463,6 +6505,7 @@ export type AgentStudioAgentPermissions = {
|
|
|
6463
6505
|
export type AgentStudioAgentQueryInput = {
|
|
6464
6506
|
includeDraftAgents?: InputMaybe<Scalars['Boolean']['input']>;
|
|
6465
6507
|
includeJiraCodingAgent?: InputMaybe<Scalars['Boolean']['input']>;
|
|
6508
|
+
includeRovoChatAgent?: InputMaybe<Scalars['Boolean']['input']>;
|
|
6466
6509
|
name?: InputMaybe<Scalars['String']['input']>;
|
|
6467
6510
|
onlyEditableAgents?: InputMaybe<Scalars['Boolean']['input']>;
|
|
6468
6511
|
onlyFavouriteAgents?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -6669,6 +6712,7 @@ export type AgentStudioAssistantScenarioListArgs = {
|
|
|
6669
6712
|
};
|
|
6670
6713
|
export type AgentStudioAssistantTriggersArgs = {
|
|
6671
6714
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
6715
|
+
automationRuleIds?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
6672
6716
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
6673
6717
|
};
|
|
6674
6718
|
export type AgentStudioAssistantConversation = {
|
|
@@ -21776,9 +21820,11 @@ export type CloudifyProjectAri = {
|
|
|
21776
21820
|
};
|
|
21777
21821
|
export type CloudifyRawCustomizationRecommendation = {
|
|
21778
21822
|
__typename?: 'CloudifyRawCustomizationRecommendation';
|
|
21823
|
+
body: Scalars['String']['output'];
|
|
21779
21824
|
content: Scalars['String']['output'];
|
|
21780
21825
|
customizationIds: Array<Scalars['ID']['output']>;
|
|
21781
21826
|
id: Scalars['ID']['output'];
|
|
21827
|
+
title?: Maybe<Scalars['String']['output']>;
|
|
21782
21828
|
type: CloudifyRawCustomizationRecommendationType;
|
|
21783
21829
|
};
|
|
21784
21830
|
export declare enum CloudifyRawCustomizationRecommendationType {
|
|
@@ -26715,10 +26761,10 @@ export type CommerceExpUserEntitlementRoles = {
|
|
|
26715
26761
|
};
|
|
26716
26762
|
export type CommerceExpUserInfo = {
|
|
26717
26763
|
__typename?: 'CommerceExpUserInfo';
|
|
26718
|
-
accountId
|
|
26764
|
+
accountId: Scalars['ID']['output'];
|
|
26719
26765
|
email?: Maybe<Scalars['String']['output']>;
|
|
26720
|
-
id
|
|
26721
|
-
name
|
|
26766
|
+
id: Scalars['ID']['output'];
|
|
26767
|
+
name: Scalars['String']['output'];
|
|
26722
26768
|
picture?: Maybe<Scalars['String']['output']>;
|
|
26723
26769
|
};
|
|
26724
26770
|
export type CommerceExpUserPermission = {
|
|
@@ -43561,6 +43607,7 @@ export type CsmAiAgentVersion = {
|
|
|
43561
43607
|
__typename?: 'CsmAiAgentVersion';
|
|
43562
43608
|
actions?: Maybe<Array<CsmAiActionResult>>;
|
|
43563
43609
|
agentIdentityConfig?: Maybe<CsmAiAgentIdentityConfigResult>;
|
|
43610
|
+
associatedSkills?: Maybe<Array<CsmAiAssociatedSkillResult>>;
|
|
43564
43611
|
coachingContents?: Maybe<Array<CsmAiCoachingContentResult>>;
|
|
43565
43612
|
handoffConfigs?: Maybe<Array<CsmAiHandoffConfigResult>>;
|
|
43566
43613
|
knowledgeCollection?: Maybe<CsmAiKnowledgeCollectionResult>;
|
|
@@ -43603,6 +43650,16 @@ export type CsmAiApiOperationInput = {
|
|
|
43603
43650
|
requestUrl: Scalars['String']['input'];
|
|
43604
43651
|
server: Scalars['String']['input'];
|
|
43605
43652
|
};
|
|
43653
|
+
export type CsmAiAssociatedSkill = {
|
|
43654
|
+
__typename?: 'CsmAiAssociatedSkill';
|
|
43655
|
+
description?: Maybe<Scalars['String']['output']>;
|
|
43656
|
+
displayName?: Maybe<Scalars['String']['output']>;
|
|
43657
|
+
enabled: Scalars['Boolean']['output'];
|
|
43658
|
+
instructions?: Maybe<Scalars['String']['output']>;
|
|
43659
|
+
skillId: Scalars['String']['output'];
|
|
43660
|
+
tools?: Maybe<Array<Maybe<GraphIntegrationMcpToolNode>>>;
|
|
43661
|
+
};
|
|
43662
|
+
export type CsmAiAssociatedSkillResult = CsmAiAssociatedSkill | QueryError;
|
|
43606
43663
|
export type CsmAiAuthentication = {
|
|
43607
43664
|
__typename?: 'CsmAiAuthentication';
|
|
43608
43665
|
type?: Maybe<CsmAiAuthenticationType>;
|
|
@@ -50645,6 +50702,11 @@ export type DlpFalsePositivesListResponse = {
|
|
|
50645
50702
|
falsePositives: Array<DlpFalsePositive>;
|
|
50646
50703
|
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
50647
50704
|
};
|
|
50705
|
+
export type DlpFindingDimensionCount = {
|
|
50706
|
+
__typename?: 'DlpFindingDimensionCount';
|
|
50707
|
+
count: Scalars['Int']['output'];
|
|
50708
|
+
value: Scalars['String']['output'];
|
|
50709
|
+
};
|
|
50648
50710
|
export type DlpFindingOccurrence = {
|
|
50649
50711
|
__typename?: 'DlpFindingOccurrence';
|
|
50650
50712
|
bootstrapId?: Maybe<Scalars['String']['output']>;
|
|
@@ -50693,6 +50755,13 @@ export type DlpFindingsListResponse = {
|
|
|
50693
50755
|
pageSize?: Maybe<Scalars['Int']['output']>;
|
|
50694
50756
|
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
50695
50757
|
};
|
|
50758
|
+
export type DlpFindingsSummaryResponse = {
|
|
50759
|
+
__typename?: 'DlpFindingsSummaryResponse';
|
|
50760
|
+
byApp: Array<DlpFindingDimensionCount>;
|
|
50761
|
+
byCategory: Array<DlpFindingDimensionCount>;
|
|
50762
|
+
byConfidence: Array<DlpFindingDimensionCount>;
|
|
50763
|
+
totalFindings?: Maybe<Scalars['Int']['output']>;
|
|
50764
|
+
};
|
|
50696
50765
|
export declare enum DlpMappingStatus {
|
|
50697
50766
|
Draft = "DRAFT",
|
|
50698
50767
|
Published = "PUBLISHED"
|
|
@@ -51142,6 +51211,7 @@ export type EcosystemMutationCreateAppVersionRolloutArgs = {
|
|
|
51142
51211
|
export type EcosystemMutationCreateRollingReleaseArgs = {
|
|
51143
51212
|
appId: Scalars['ID']['input'];
|
|
51144
51213
|
environmentId: Scalars['ID']['input'];
|
|
51214
|
+
limit?: InputMaybe<Scalars['Int']['input']>;
|
|
51145
51215
|
targetVersionId?: InputMaybe<Scalars['ID']['input']>;
|
|
51146
51216
|
};
|
|
51147
51217
|
export type EcosystemMutationDeleteAppEnvironmentArgs = {
|
|
@@ -57044,6 +57114,7 @@ export type GraphInferenceGetSimilarJiraItemsResponse = {
|
|
|
57044
57114
|
};
|
|
57045
57115
|
export type GraphInferenceGraphclawInferOptionV3 = {
|
|
57046
57116
|
__typename?: 'GraphInferenceGraphclawInferOptionV3';
|
|
57117
|
+
compatibleSources: Array<Scalars['String']['output']>;
|
|
57047
57118
|
compatibleTargets: Array<Scalars['String']['output']>;
|
|
57048
57119
|
enabled: Scalars['Boolean']['output'];
|
|
57049
57120
|
graphAvailable: Scalars['Boolean']['output'];
|
|
@@ -80260,6 +80331,48 @@ export type GraphStoreInferredDecisionNodeProvenanceOutput = {
|
|
|
80260
80331
|
export type GraphStoreInferredDecisionSourceLineageEntitySortInput = {
|
|
80261
80332
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
80262
80333
|
};
|
|
80334
|
+
export declare enum GraphStoreInferredHighlightNodeInferredHighlightSeverityLevelOutput {
|
|
80335
|
+
Major = "MAJOR",
|
|
80336
|
+
Milestone = "MILESTONE",
|
|
80337
|
+
Minor = "MINOR",
|
|
80338
|
+
Notable = "NOTABLE",
|
|
80339
|
+
NotSet = "NOT_SET"
|
|
80340
|
+
}
|
|
80341
|
+
export declare enum GraphStoreInferredHighlightNodeInferredHighlightSubtypeOutput {
|
|
80342
|
+
Adoption = "ADOPTION",
|
|
80343
|
+
ArtifactReady = "ARTIFACT_READY",
|
|
80344
|
+
BlockerCleared = "BLOCKER_CLEARED",
|
|
80345
|
+
CustomerWin = "CUSTOMER_WIN",
|
|
80346
|
+
ExternalRecognition = "EXTERNAL_RECOGNITION",
|
|
80347
|
+
MetricHit = "METRIC_HIT",
|
|
80348
|
+
MilestoneShipped = "MILESTONE_SHIPPED",
|
|
80349
|
+
NotSet = "NOT_SET",
|
|
80350
|
+
Other = "OTHER",
|
|
80351
|
+
PhaseUnlocked = "PHASE_UNLOCKED",
|
|
80352
|
+
RolloutProgressed = "ROLLOUT_PROGRESSED",
|
|
80353
|
+
TeamWin = "TEAM_WIN"
|
|
80354
|
+
}
|
|
80355
|
+
export type GraphStoreInferredHighlightNodeMetadata = {
|
|
80356
|
+
__typename?: 'GraphStoreInferredHighlightNodeMetadata';
|
|
80357
|
+
confidenceScore?: Maybe<Scalars['Float']['output']>;
|
|
80358
|
+
createdAt?: Maybe<Scalars['Long']['output']>;
|
|
80359
|
+
dedupeKey?: Maybe<Scalars['String']['output']>;
|
|
80360
|
+
lastUpdated?: Maybe<Scalars['Long']['output']>;
|
|
80361
|
+
normalizedTitleHash?: Maybe<Scalars['String']['output']>;
|
|
80362
|
+
provenance?: Maybe<GraphStoreInferredHighlightNodeProvenanceOutput>;
|
|
80363
|
+
severityLevel?: Maybe<GraphStoreInferredHighlightNodeInferredHighlightSeverityLevelOutput>;
|
|
80364
|
+
subtype?: Maybe<GraphStoreInferredHighlightNodeInferredHighlightSubtypeOutput>;
|
|
80365
|
+
summary?: Maybe<Scalars['String']['output']>;
|
|
80366
|
+
title?: Maybe<Scalars['String']['output']>;
|
|
80367
|
+
};
|
|
80368
|
+
export type GraphStoreInferredHighlightNodeProvenanceOutput = {
|
|
80369
|
+
__typename?: 'GraphStoreInferredHighlightNodeProvenanceOutput';
|
|
80370
|
+
appId?: Maybe<Scalars['String']['output']>;
|
|
80371
|
+
appVersion?: Maybe<Scalars['String']['output']>;
|
|
80372
|
+
executionMode?: Maybe<Scalars['String']['output']>;
|
|
80373
|
+
modelProvider?: Maybe<Scalars['String']['output']>;
|
|
80374
|
+
policyVersion?: Maybe<Scalars['String']['output']>;
|
|
80375
|
+
};
|
|
80263
80376
|
export type GraphStoreInferredProjectHasRelatedEntitySortInput = {
|
|
80264
80377
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
80265
80378
|
};
|
|
@@ -80282,6 +80395,46 @@ export type GraphStoreInferredProjectNodeMetadata = {
|
|
|
80282
80395
|
summary?: Maybe<Scalars['String']['output']>;
|
|
80283
80396
|
title?: Maybe<Scalars['String']['output']>;
|
|
80284
80397
|
};
|
|
80398
|
+
export declare enum GraphStoreInferredRiskNodeInferredRiskLevelOutput {
|
|
80399
|
+
Critical = "CRITICAL",
|
|
80400
|
+
High = "HIGH",
|
|
80401
|
+
Low = "LOW",
|
|
80402
|
+
Medium = "MEDIUM",
|
|
80403
|
+
NotSet = "NOT_SET"
|
|
80404
|
+
}
|
|
80405
|
+
export declare enum GraphStoreInferredRiskNodeInferredRiskSubtypeOutput {
|
|
80406
|
+
BugPattern = "BUG_PATTERN",
|
|
80407
|
+
Capacity = "CAPACITY",
|
|
80408
|
+
DecisionStalled = "DECISION_STALLED",
|
|
80409
|
+
DeliveryBlocker = "DELIVERY_BLOCKER",
|
|
80410
|
+
DesignEngDiverging = "DESIGN_ENG_DIVERGING",
|
|
80411
|
+
ExternalDependency = "EXTERNAL_DEPENDENCY",
|
|
80412
|
+
NotSet = "NOT_SET",
|
|
80413
|
+
Other = "OTHER",
|
|
80414
|
+
ProjectStalled = "PROJECT_STALLED",
|
|
80415
|
+
Quality = "QUALITY"
|
|
80416
|
+
}
|
|
80417
|
+
export type GraphStoreInferredRiskNodeMetadata = {
|
|
80418
|
+
__typename?: 'GraphStoreInferredRiskNodeMetadata';
|
|
80419
|
+
confidenceScore?: Maybe<Scalars['Float']['output']>;
|
|
80420
|
+
createdAt?: Maybe<Scalars['Long']['output']>;
|
|
80421
|
+
dedupeKey?: Maybe<Scalars['String']['output']>;
|
|
80422
|
+
lastUpdated?: Maybe<Scalars['Long']['output']>;
|
|
80423
|
+
level?: Maybe<GraphStoreInferredRiskNodeInferredRiskLevelOutput>;
|
|
80424
|
+
normalizedTitleHash?: Maybe<Scalars['String']['output']>;
|
|
80425
|
+
provenance?: Maybe<GraphStoreInferredRiskNodeProvenanceOutput>;
|
|
80426
|
+
subtype?: Maybe<GraphStoreInferredRiskNodeInferredRiskSubtypeOutput>;
|
|
80427
|
+
summary?: Maybe<Scalars['String']['output']>;
|
|
80428
|
+
title?: Maybe<Scalars['String']['output']>;
|
|
80429
|
+
};
|
|
80430
|
+
export type GraphStoreInferredRiskNodeProvenanceOutput = {
|
|
80431
|
+
__typename?: 'GraphStoreInferredRiskNodeProvenanceOutput';
|
|
80432
|
+
appId?: Maybe<Scalars['String']['output']>;
|
|
80433
|
+
appVersion?: Maybe<Scalars['String']['output']>;
|
|
80434
|
+
executionMode?: Maybe<Scalars['String']['output']>;
|
|
80435
|
+
modelProvider?: Maybe<Scalars['String']['output']>;
|
|
80436
|
+
policyVersion?: Maybe<Scalars['String']['output']>;
|
|
80437
|
+
};
|
|
80285
80438
|
export type GraphStoreInferredTeamCollaboratesOnInferredProjectSortInput = {
|
|
80286
80439
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
80287
80440
|
};
|
|
@@ -81085,7 +81238,7 @@ export type GraphStoreMutationDeleteVersionUserAssociatedFeatureFlagArgs = {
|
|
|
81085
81238
|
export type GraphStoreMutationDeleteVulnerabilityAssociatedIssueArgs = {
|
|
81086
81239
|
input?: InputMaybe<GraphStoreDeleteVulnerabilityAssociatedIssueInput>;
|
|
81087
81240
|
};
|
|
81088
|
-
export type GraphStoreNodeMetadata = GraphStoreGraphMemoryNodeMetadata | GraphStoreInferredDecisionNodeMetadata | GraphStoreInferredProjectNodeMetadata | GraphStoreInferredTeamNodeMetadata | GraphStoreMemoryContentNodeMetadata;
|
|
81241
|
+
export type GraphStoreNodeMetadata = GraphStoreGraphMemoryNodeMetadata | GraphStoreInferredDecisionNodeMetadata | GraphStoreInferredHighlightNodeMetadata | GraphStoreInferredProjectNodeMetadata | GraphStoreInferredRiskNodeMetadata | GraphStoreInferredTeamNodeMetadata | GraphStoreMemoryContentNodeMetadata;
|
|
81089
81242
|
export type GraphStoreNodeResponse = Node & {
|
|
81090
81243
|
__typename?: 'GraphStoreNodeResponse';
|
|
81091
81244
|
id: Scalars['ID']['output'];
|
|
@@ -133268,6 +133421,7 @@ export type JiraCustomFieldUsageMetric = JiraResourceUsageMetricV2 & Node & {
|
|
|
133268
133421
|
globalScopedCustomFieldsCount?: Maybe<Scalars['Long']['output']>;
|
|
133269
133422
|
id: Scalars['ID']['output'];
|
|
133270
133423
|
key?: Maybe<Scalars['String']['output']>;
|
|
133424
|
+
projectLimitsReport?: Maybe<JiraProjectLimitsReport>;
|
|
133271
133425
|
projectScopedCustomFieldsCount?: Maybe<Scalars['Long']['output']>;
|
|
133272
133426
|
projectsOverLimit?: Maybe<Scalars['Int']['output']>;
|
|
133273
133427
|
projectsReachingLimit?: Maybe<Scalars['Int']['output']>;
|
|
@@ -136346,6 +136500,7 @@ export declare enum JiraGicFallbackReason {
|
|
|
136346
136500
|
}
|
|
136347
136501
|
export type JiraGenerateIssueAiSummaryInput = {
|
|
136348
136502
|
issueId: Scalars['ID']['input'];
|
|
136503
|
+
useCaseId?: InputMaybe<Scalars['String']['input']>;
|
|
136349
136504
|
};
|
|
136350
136505
|
export type JiraGeneratedJqlInvalidError = {
|
|
136351
136506
|
__typename?: 'JiraGeneratedJqlInvalidError';
|
|
@@ -137137,6 +137292,7 @@ export type JiraIssue = HasMercuryProjectFields & JiraListRow & JiraScenarioIssu
|
|
|
137137
137292
|
getConsolidatedResources?: Maybe<JiraResourcesResult>;
|
|
137138
137293
|
getConsolidatedResourcesTotalCount?: Maybe<Scalars['Long']['output']>;
|
|
137139
137294
|
getUnhydratedConsolidatedResources?: Maybe<JiraResourcesResult>;
|
|
137295
|
+
globalRiskAssessmentSettings?: Maybe<ChangeManagementGlobalRiskAssessmentSettingsPayload>;
|
|
137140
137296
|
groupsByFieldId?: Maybe<JiraSpreadsheetGroupConnection>;
|
|
137141
137297
|
hasChildIssues?: Maybe<Scalars['Boolean']['output']>;
|
|
137142
137298
|
hasChildren?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -139653,6 +139809,7 @@ export type JiraIssueSearchViewConfigSettings = {
|
|
|
139653
139809
|
isViewConfigModified?: Maybe<Scalars['Boolean']['output']>;
|
|
139654
139810
|
};
|
|
139655
139811
|
export type JiraIssueSearchViewContextInput = {
|
|
139812
|
+
childIssuesJql?: InputMaybe<Scalars['String']['input']>;
|
|
139656
139813
|
expandedGroups?: InputMaybe<JiraIssueExpandedGroups>;
|
|
139657
139814
|
expandedParents?: InputMaybe<Array<JiraIssueExpandedParent>>;
|
|
139658
139815
|
topLevelItemsLoaded?: InputMaybe<Scalars['Int']['input']>;
|
|
@@ -145964,6 +146121,18 @@ export type JiraProjectLevelSidebarRenamedMenuItemEdge = {
|
|
|
145964
146121
|
cursor: Scalars['String']['output'];
|
|
145965
146122
|
node?: Maybe<JiraProjectLevelSidebarRenamedMenuItem>;
|
|
145966
146123
|
};
|
|
146124
|
+
export type JiraProjectLimitsReport = {
|
|
146125
|
+
__typename?: 'JiraProjectLimitsReport';
|
|
146126
|
+
lastUpdated?: Maybe<Scalars['DateTime']['output']>;
|
|
146127
|
+
projectsOverLimit?: Maybe<Scalars['Long']['output']>;
|
|
146128
|
+
projectsReachingLimit?: Maybe<Scalars['Long']['output']>;
|
|
146129
|
+
projectsWithinLimit?: Maybe<Scalars['Long']['output']>;
|
|
146130
|
+
recommendedEntitiesPerProject?: Maybe<Scalars['Long']['output']>;
|
|
146131
|
+
schemesOverLimit?: Maybe<Scalars['Long']['output']>;
|
|
146132
|
+
schemesReachingLimit?: Maybe<Scalars['Long']['output']>;
|
|
146133
|
+
totalProjects?: Maybe<Scalars['Long']['output']>;
|
|
146134
|
+
totalSchemes?: Maybe<Scalars['Long']['output']>;
|
|
146135
|
+
};
|
|
145967
146136
|
export declare enum JiraProjectListRightPanelState {
|
|
145968
146137
|
Closed = "CLOSED",
|
|
145969
146138
|
Open = "OPEN"
|
|
@@ -157451,7 +157620,7 @@ export type JpdUpdateViewInput = {
|
|
|
157451
157620
|
description?: InputMaybe<Scalars['JSON']['input']>;
|
|
157452
157621
|
emoji?: InputMaybe<Scalars['String']['input']>;
|
|
157453
157622
|
id: Scalars['ID']['input'];
|
|
157454
|
-
name
|
|
157623
|
+
name?: InputMaybe<Scalars['String']['input']>;
|
|
157455
157624
|
viewTypeConfig?: InputMaybe<JpdViewTypeConfigInput>;
|
|
157456
157625
|
};
|
|
157457
157626
|
export type JpdView = {
|
|
@@ -161485,7 +161654,7 @@ export declare enum KitsuneFeedbackType {
|
|
|
161485
161654
|
}
|
|
161486
161655
|
export type KitsuneFeedbackValue = {
|
|
161487
161656
|
__typename?: 'KitsuneFeedbackValue';
|
|
161488
|
-
field
|
|
161657
|
+
field?: Maybe<KitsuneField>;
|
|
161489
161658
|
fieldV2?: Maybe<KitsuneField>;
|
|
161490
161659
|
values: Array<KitsuneFeedbackFieldValue>;
|
|
161491
161660
|
};
|
|
@@ -161523,6 +161692,7 @@ export type KitsuneFieldOptionUpdateInput = {
|
|
|
161523
161692
|
};
|
|
161524
161693
|
export type KitsuneFieldOptionsInput = {
|
|
161525
161694
|
create?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
161695
|
+
createV2?: InputMaybe<Array<KitsuneCreateFieldOptionInput>>;
|
|
161526
161696
|
remove?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
161527
161697
|
update?: InputMaybe<Array<KitsuneFieldOptionUpdateInput>>;
|
|
161528
161698
|
};
|
|
@@ -161559,7 +161729,7 @@ export declare enum KitsuneFieldValueType {
|
|
|
161559
161729
|
export type KitsuneFilter = {
|
|
161560
161730
|
__typename?: 'KitsuneFilter';
|
|
161561
161731
|
comparisonOperator: KitsuneComparisonOperator;
|
|
161562
|
-
field
|
|
161732
|
+
field?: Maybe<KitsuneField>;
|
|
161563
161733
|
fieldId: Scalars['ID']['output'];
|
|
161564
161734
|
fieldV2?: Maybe<KitsuneField>;
|
|
161565
161735
|
logicalOperator: KitsuneLogicalOperator;
|
|
@@ -161644,7 +161814,7 @@ export type KitsuneInsightEdge = KitsuneEdge & {
|
|
|
161644
161814
|
export type KitsuneInsightSuggestion = {
|
|
161645
161815
|
__typename?: 'KitsuneInsightSuggestion';
|
|
161646
161816
|
embeddingType: Scalars['String']['output'];
|
|
161647
|
-
insight
|
|
161817
|
+
insight?: Maybe<KitsuneInsight>;
|
|
161648
161818
|
insightId: Scalars['ID']['output'];
|
|
161649
161819
|
matchedContent: Scalars['String']['output'];
|
|
161650
161820
|
score?: Maybe<Scalars['Float']['output']>;
|
|
@@ -161842,7 +162012,7 @@ export type KitsuneRollupInput = {
|
|
|
161842
162012
|
};
|
|
161843
162013
|
export type KitsuneSearchChunk = {
|
|
161844
162014
|
__typename?: 'KitsuneSearchChunk';
|
|
161845
|
-
chunks
|
|
162015
|
+
chunks?: Maybe<Array<KitsuneChunk>>;
|
|
161846
162016
|
content?: Maybe<Scalars['String']['output']>;
|
|
161847
162017
|
feedbackId: Scalars['ID']['output'];
|
|
161848
162018
|
score?: Maybe<Scalars['Float']['output']>;
|
|
@@ -168681,6 +168851,23 @@ export declare enum MarketplaceStoreDeveloperSpaceStatus {
|
|
|
168681
168851
|
Archived = "ARCHIVED",
|
|
168682
168852
|
Inactive = "INACTIVE"
|
|
168683
168853
|
}
|
|
168854
|
+
export type MarketplaceStoreDynamicProductRecommendations = {
|
|
168855
|
+
__typename?: 'MarketplaceStoreDynamicProductRecommendations';
|
|
168856
|
+
apps: Array<MarketplaceStoreSearchHitObject>;
|
|
168857
|
+
isPersonalized: Scalars['Boolean']['output'];
|
|
168858
|
+
parentApplicationKey?: Maybe<Scalars['String']['output']>;
|
|
168859
|
+
sessionId?: Maybe<Scalars['String']['output']>;
|
|
168860
|
+
};
|
|
168861
|
+
export type MarketplaceStoreDynamicRecommendationsInput = {
|
|
168862
|
+
filter?: InputMaybe<MarketplaceStoreSearchFilterInput>;
|
|
168863
|
+
searchQuery?: InputMaybe<Scalars['String']['input']>;
|
|
168864
|
+
tenantId: Scalars['String']['input'];
|
|
168865
|
+
};
|
|
168866
|
+
export type MarketplaceStoreDynamicRecommendationsResponse = {
|
|
168867
|
+
__typename?: 'MarketplaceStoreDynamicRecommendationsResponse';
|
|
168868
|
+
productRecommendations: Array<MarketplaceStoreDynamicProductRecommendations>;
|
|
168869
|
+
resultsCount: Scalars['Int']['output'];
|
|
168870
|
+
};
|
|
168684
168871
|
export type MarketplaceStoreEdition = {
|
|
168685
168872
|
__typename?: 'MarketplaceStoreEdition';
|
|
168686
168873
|
approvalDetails?: Maybe<MarketplaceStoreApprovalDetails>;
|
|
@@ -169839,6 +170026,32 @@ export type MarketplaceStoreSearchFilter = {
|
|
|
169839
170026
|
key: Scalars['String']['output'];
|
|
169840
170027
|
value: Array<Scalars['String']['output']>;
|
|
169841
170028
|
};
|
|
170029
|
+
export type MarketplaceStoreSearchFilterGovernanceInput = {
|
|
170030
|
+
dataResidencyStatus?: InputMaybe<Scalars['String']['input']>;
|
|
170031
|
+
type: Scalars['String']['input'];
|
|
170032
|
+
};
|
|
170033
|
+
export type MarketplaceStoreSearchFilterInput = {
|
|
170034
|
+
cloudComplianceBoundaries?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
170035
|
+
compliance?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
170036
|
+
governance?: InputMaybe<Array<MarketplaceStoreSearchFilterGovernanceInput>>;
|
|
170037
|
+
hosting?: InputMaybe<Scalars['String']['input']>;
|
|
170038
|
+
paid?: InputMaybe<Scalars['Boolean']['input']>;
|
|
170039
|
+
parentApplicationKeys?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
170040
|
+
partnerSupported?: InputMaybe<Scalars['Boolean']['input']>;
|
|
170041
|
+
securityPrograms?: InputMaybe<Array<MarketplaceStoreSearchFilterSecurityProgramInput>>;
|
|
170042
|
+
tagsCategories?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
170043
|
+
trustPrograms?: InputMaybe<Array<MarketplaceStoreSearchFilterTrustProgramInput>>;
|
|
170044
|
+
vendorId?: InputMaybe<Scalars['Int']['input']>;
|
|
170045
|
+
};
|
|
170046
|
+
export type MarketplaceStoreSearchFilterSecurityProgramInput = {
|
|
170047
|
+
program: Scalars['String']['input'];
|
|
170048
|
+
status?: InputMaybe<Scalars['String']['input']>;
|
|
170049
|
+
};
|
|
170050
|
+
export type MarketplaceStoreSearchFilterTrustProgramInput = {
|
|
170051
|
+
program: Scalars['String']['input'];
|
|
170052
|
+
status?: InputMaybe<Scalars['String']['input']>;
|
|
170053
|
+
value?: InputMaybe<Scalars['String']['input']>;
|
|
170054
|
+
};
|
|
169842
170055
|
export type MarketplaceStoreSearchHitDistribution = {
|
|
169843
170056
|
__typename?: 'MarketplaceStoreSearchHitDistribution';
|
|
169844
170057
|
activeInstalls?: Maybe<Scalars['Int']['output']>;
|
|
@@ -170541,7 +170754,6 @@ export type MercuryAsk = Node & {
|
|
|
170541
170754
|
activities?: Maybe<MercuryAskActivityConnection>;
|
|
170542
170755
|
askStatus: MercuryAskStatusEnum;
|
|
170543
170756
|
askType?: Maybe<MercuryAskType>;
|
|
170544
|
-
askTypeId?: Maybe<Scalars['ID']['output']>;
|
|
170545
170757
|
comments?: Maybe<MercuryThreadedCommentConnection>;
|
|
170546
170758
|
connectedWork?: Maybe<MercuryAskConnectedWorkConnection>;
|
|
170547
170759
|
createdAt?: Maybe<Scalars['DateTime']['output']>;
|
|
@@ -178006,7 +178218,7 @@ export type MercuryRateCardAttributeType = {
|
|
|
178006
178218
|
key: Scalars['String']['output'];
|
|
178007
178219
|
order: Scalars['Int']['output'];
|
|
178008
178220
|
};
|
|
178009
|
-
export type MercuryRateCardAttributeValue = MercuryRateCardOrganizationAttributeValue;
|
|
178221
|
+
export type MercuryRateCardAttributeValue = MercuryRateCardFunctionalRoleAttributeValue | MercuryRateCardOrganizationAttributeValue;
|
|
178010
178222
|
export type MercuryRateCardAttributeValueInput = {
|
|
178011
178223
|
attributeId: Scalars['ID']['input'];
|
|
178012
178224
|
attributeValue?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -178041,6 +178253,12 @@ export type MercuryRateCardEdge = {
|
|
|
178041
178253
|
cursor: Scalars['String']['output'];
|
|
178042
178254
|
node?: Maybe<MercuryRateCard>;
|
|
178043
178255
|
};
|
|
178256
|
+
export type MercuryRateCardFunctionalRoleAttributeValue = MercuryRateCardAttributeValueInterface & {
|
|
178257
|
+
__typename?: 'MercuryRateCardFunctionalRoleAttributeValue';
|
|
178258
|
+
attribute?: Maybe<MercuryRateCardAttribute>;
|
|
178259
|
+
functionalRole?: Maybe<MercuryFunctionalRole>;
|
|
178260
|
+
id: Scalars['ID']['output'];
|
|
178261
|
+
};
|
|
178044
178262
|
export type MercuryRateCardOrganizationAttributeValue = MercuryRateCardAttributeValueInterface & {
|
|
178045
178263
|
__typename?: 'MercuryRateCardOrganizationAttributeValue';
|
|
178046
178264
|
attribute?: Maybe<MercuryRateCardAttribute>;
|
|
@@ -192696,6 +192914,10 @@ export type PsmLinkSensorKbArticlesPayload = Payload & {
|
|
|
192696
192914
|
kbArticleAris?: Maybe<Array<Scalars['String']['output']>>;
|
|
192697
192915
|
success: Scalars['Boolean']['output'];
|
|
192698
192916
|
};
|
|
192917
|
+
export type PsmMessageMetadata = {
|
|
192918
|
+
__typename?: 'PsmMessageMetadata';
|
|
192919
|
+
link: Scalars['String']['output'];
|
|
192920
|
+
};
|
|
192699
192921
|
export declare enum PsmMessageType {
|
|
192700
192922
|
Markdown = "MARKDOWN",
|
|
192701
192923
|
Ticket = "TICKET"
|
|
@@ -192778,6 +193000,15 @@ export type PsmPublishUserKeyPayload = Payload & {
|
|
|
192778
193000
|
success: Scalars['Boolean']['output'];
|
|
192779
193001
|
userKey?: Maybe<PsmUserKey>;
|
|
192780
193002
|
};
|
|
193003
|
+
export type PsmRaiseTicketConversation = {
|
|
193004
|
+
__typename?: 'PsmRaiseTicketConversation';
|
|
193005
|
+
actions: Array<PsmSensorEventAction>;
|
|
193006
|
+
conversationId: Scalars['ID']['output'];
|
|
193007
|
+
directive: PsmEventDirective;
|
|
193008
|
+
messages: Array<PsmSensorEventMessage>;
|
|
193009
|
+
readState?: Maybe<PsmConversationReadState>;
|
|
193010
|
+
remediationState?: Maybe<PsmRemediationState>;
|
|
193011
|
+
};
|
|
192781
193012
|
export type PsmRaiseTicketInput = {
|
|
192782
193013
|
accountId: Scalars['ID']['input'];
|
|
192783
193014
|
conversationId: Scalars['ID']['input'];
|
|
@@ -192785,19 +193016,18 @@ export type PsmRaiseTicketInput = {
|
|
|
192785
193016
|
};
|
|
192786
193017
|
export type PsmRaiseTicketPayload = Payload & {
|
|
192787
193018
|
__typename?: 'PsmRaiseTicketPayload';
|
|
193019
|
+
conversation?: Maybe<PsmRaiseTicketConversation>;
|
|
192788
193020
|
errors?: Maybe<Array<MutationError>>;
|
|
192789
193021
|
success: Scalars['Boolean']['output'];
|
|
192790
|
-
ticket?: Maybe<PsmRaisedTicket>;
|
|
192791
193022
|
};
|
|
192792
|
-
export type
|
|
192793
|
-
__typename?: '
|
|
192794
|
-
|
|
192795
|
-
|
|
192796
|
-
|
|
192797
|
-
|
|
192798
|
-
|
|
192799
|
-
|
|
192800
|
-
ticketKey: Scalars['String']['output'];
|
|
193023
|
+
export type PsmRecordUserActionConversation = {
|
|
193024
|
+
__typename?: 'PsmRecordUserActionConversation';
|
|
193025
|
+
actions: Array<PsmSensorEventAction>;
|
|
193026
|
+
conversationId: Scalars['ID']['output'];
|
|
193027
|
+
directive: PsmEventDirective;
|
|
193028
|
+
messages: Array<PsmSensorEventMessage>;
|
|
193029
|
+
readState?: Maybe<PsmConversationReadState>;
|
|
193030
|
+
remediationState?: Maybe<PsmRemediationState>;
|
|
192801
193031
|
};
|
|
192802
193032
|
export type PsmRecordUserActionInput = {
|
|
192803
193033
|
accountId: Scalars['ID']['input'];
|
|
@@ -192808,6 +193038,7 @@ export type PsmRecordUserActionInput = {
|
|
|
192808
193038
|
};
|
|
192809
193039
|
export type PsmRecordUserActionPayload = Payload & {
|
|
192810
193040
|
__typename?: 'PsmRecordUserActionPayload';
|
|
193041
|
+
conversation?: Maybe<PsmRecordUserActionConversation>;
|
|
192811
193042
|
errors?: Maybe<Array<MutationError>>;
|
|
192812
193043
|
success: Scalars['Boolean']['output'];
|
|
192813
193044
|
};
|
|
@@ -192858,6 +193089,7 @@ export type PsmRemediationCategoryInfo = {
|
|
|
192858
193089
|
};
|
|
192859
193090
|
export type PsmRemediationHistoryEvent = {
|
|
192860
193091
|
__typename?: 'PsmRemediationHistoryEvent';
|
|
193092
|
+
detailMessage?: Maybe<Scalars['String']['output']>;
|
|
192861
193093
|
durationMs?: Maybe<Scalars['Int']['output']>;
|
|
192862
193094
|
errorMessage?: Maybe<Scalars['String']['output']>;
|
|
192863
193095
|
executedAt: Scalars['DateTime']['output'];
|
|
@@ -192896,6 +193128,7 @@ export type PsmRemediationResultInfo = {
|
|
|
192896
193128
|
export type PsmRemediationSensor = {
|
|
192897
193129
|
__typename?: 'PsmRemediationSensor';
|
|
192898
193130
|
events?: Maybe<Array<PsmRemediationHistoryEvent>>;
|
|
193131
|
+
faultId?: Maybe<Scalars['ID']['output']>;
|
|
192899
193132
|
name?: Maybe<Scalars['String']['output']>;
|
|
192900
193133
|
providerSensorId: Scalars['ID']['output'];
|
|
192901
193134
|
sensorId?: Maybe<Scalars['ID']['output']>;
|
|
@@ -193024,6 +193257,7 @@ export type PsmSensorEventMessage = {
|
|
|
193024
193257
|
detail: Scalars['String']['output'];
|
|
193025
193258
|
lastActivityTime?: Maybe<Scalars['DateTime']['output']>;
|
|
193026
193259
|
messageType: PsmMessageType;
|
|
193260
|
+
metadata?: Maybe<PsmMessageMetadata>;
|
|
193027
193261
|
summary: Scalars['String']['output'];
|
|
193028
193262
|
title: Scalars['String']['output'];
|
|
193029
193263
|
};
|
|
@@ -193044,6 +193278,7 @@ export declare enum PsmSensorEventType {
|
|
|
193044
193278
|
ExecutionCompleted = "EXECUTION_COMPLETED",
|
|
193045
193279
|
Lagged = "LAGGED",
|
|
193046
193280
|
Shutdown = "SHUTDOWN",
|
|
193281
|
+
TicketRaised = "TICKET_RAISED",
|
|
193047
193282
|
UserResolved = "USER_RESOLVED",
|
|
193048
193283
|
WithdrawConditionCleared = "WITHDRAW_CONDITION_CLEARED",
|
|
193049
193284
|
WithdrawScheduledFull = "WITHDRAW_SCHEDULED_FULL",
|
|
@@ -194379,6 +194614,7 @@ export type Query = {
|
|
|
194379
194614
|
dlp_getFalsePositive?: Maybe<DlpFalsePositive>;
|
|
194380
194615
|
dlp_getFalsePositives?: Maybe<DlpFalsePositivesListResponse>;
|
|
194381
194616
|
dlp_getFindings?: Maybe<DlpFindingsListResponse>;
|
|
194617
|
+
dlp_getFindingsSummary?: Maybe<DlpFindingsSummaryResponse>;
|
|
194382
194618
|
dlp_getPreviewRulesImpact?: Maybe<DlpPreviewRulesImpactResponse>;
|
|
194383
194619
|
dlp_isClassificationTaskRunning?: Maybe<Scalars['Boolean']['output']>;
|
|
194384
194620
|
dvcs?: Maybe<DvcsQuery>;
|
|
@@ -196997,6 +197233,7 @@ export type Query = {
|
|
|
196997
197233
|
marketplacePricingPlan?: Maybe<MarketplacePricingPlan>;
|
|
196998
197234
|
marketplaceStore: MarketplaceStoreQueryApi;
|
|
196999
197235
|
marketplaceStore_appReviewsByAppKeyV2?: Maybe<MarketplaceStoreReviewsResponse>;
|
|
197236
|
+
marketplaceStore_dynamicRecommendations?: Maybe<MarketplaceStoreDynamicRecommendationsResponse>;
|
|
197000
197237
|
marketplaceStore_editionsByAppKeyV2?: Maybe<Array<MarketplaceStoreEdition>>;
|
|
197001
197238
|
marketplaceStore_getProductListingV2?: Maybe<MarketplaceStoreProductListingResponse>;
|
|
197002
197239
|
marketplaceStore_partnerByPartnerNameV2?: Maybe<MarketplaceStoreSearchPartnerResponse>;
|
|
@@ -201835,6 +202072,10 @@ export type QueryDlp_GetFindingsArgs = {
|
|
|
201835
202072
|
pageSize?: InputMaybe<Scalars['Int']['input']>;
|
|
201836
202073
|
scope?: InputMaybe<DlpScopeInput>;
|
|
201837
202074
|
};
|
|
202075
|
+
export type QueryDlp_GetFindingsSummaryArgs = {
|
|
202076
|
+
orgId: Scalars['String']['input'];
|
|
202077
|
+
scope?: InputMaybe<DlpScopeInput>;
|
|
202078
|
+
};
|
|
201838
202079
|
export type QueryDlp_GetPreviewRulesImpactArgs = {
|
|
201839
202080
|
orgId: Scalars['String']['input'];
|
|
201840
202081
|
taskId: Scalars['String']['input'];
|
|
@@ -201965,15 +202206,18 @@ export type QueryGetAppInstallationFacetsArgs = {
|
|
|
201965
202206
|
filterName: InstallationFacetFilter;
|
|
201966
202207
|
};
|
|
201967
202208
|
export type QueryGetAppInstallationsArgs = {
|
|
202209
|
+
analyticsEnabled?: InputMaybe<Scalars['Boolean']['input']>;
|
|
201968
202210
|
appId: Scalars['ID']['input'];
|
|
201969
202211
|
atlassianApp?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
201970
202212
|
contexts?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
201971
202213
|
cursor?: InputMaybe<Scalars['String']['input']>;
|
|
202214
|
+
customMetricsEnabled?: InputMaybe<Scalars['Boolean']['input']>;
|
|
201972
202215
|
edition?: InputMaybe<Array<InstallationEditionInput>>;
|
|
201973
202216
|
environmentId?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
201974
202217
|
installedOn?: InputMaybe<DateSearchInput>;
|
|
201975
202218
|
license?: InputMaybe<Array<LicenseValue>>;
|
|
201976
202219
|
limit?: InputMaybe<Scalars['Int']['input']>;
|
|
202220
|
+
logsEnabled?: InputMaybe<Scalars['Boolean']['input']>;
|
|
201977
202221
|
offset?: InputMaybe<Scalars['Int']['input']>;
|
|
201978
202222
|
sort?: InputMaybe<InstallationSortInput>;
|
|
201979
202223
|
status?: InputMaybe<InstallationStatus>;
|
|
@@ -219253,7 +219497,8 @@ export type QueryJsmConversation_SettingsArgs = {
|
|
|
219253
219497
|
projectAri: Scalars['String']['input'];
|
|
219254
219498
|
};
|
|
219255
219499
|
export type QueryJsmSelfServe_ConversationStartersArgs = {
|
|
219256
|
-
|
|
219500
|
+
cloudId: Scalars['ID']['input'];
|
|
219501
|
+
projectKey: Scalars['String']['input'];
|
|
219257
219502
|
};
|
|
219258
219503
|
export type QueryJsmTelemetry_AiPromptArgs = {
|
|
219259
219504
|
cloudId?: InputMaybe<Scalars['ID']['input']>;
|
|
@@ -219772,6 +220017,9 @@ export type QueryMarketplaceStore_AppReviewsByAppKeyV2Args = {
|
|
|
219772
220017
|
limit?: InputMaybe<Scalars['Int']['input']>;
|
|
219773
220018
|
offset?: InputMaybe<Scalars['Int']['input']>;
|
|
219774
220019
|
};
|
|
220020
|
+
export type QueryMarketplaceStore_DynamicRecommendationsArgs = {
|
|
220021
|
+
input: MarketplaceStoreDynamicRecommendationsInput;
|
|
220022
|
+
};
|
|
219775
220023
|
export type QueryMarketplaceStore_EditionsByAppKeyV2Args = {
|
|
219776
220024
|
countryCode?: InputMaybe<Scalars['String']['input']>;
|
|
219777
220025
|
product: MarketplaceStoreEditionsByAppKeyInput;
|
|
@@ -222261,7 +222509,9 @@ export declare enum RadarNotificationType {
|
|
|
222261
222509
|
DataIngestionFailure = "DATA_INGESTION_FAILURE",
|
|
222262
222510
|
DataIngestionSuccess = "DATA_INGESTION_SUCCESS",
|
|
222263
222511
|
DataIngestionSuccessAfterFailure = "DATA_INGESTION_SUCCESS_AFTER_FAILURE",
|
|
222264
|
-
SkillsVerificationRequest = "SKILLS_VERIFICATION_REQUEST"
|
|
222512
|
+
SkillsVerificationRequest = "SKILLS_VERIFICATION_REQUEST",
|
|
222513
|
+
TaxonomyGenerationFailure = "TAXONOMY_GENERATION_FAILURE",
|
|
222514
|
+
TaxonomyGenerationSuccess = "TAXONOMY_GENERATION_SUCCESS"
|
|
222265
222515
|
}
|
|
222266
222516
|
export declare enum RadarNumericAppearance {
|
|
222267
222517
|
Duration = "DURATION",
|
|
@@ -225159,9 +225409,15 @@ export declare enum SearchLinkedResultCategory {
|
|
|
225159
225409
|
export type SearchLinkedResultEntity = ExternalCalendarEvent;
|
|
225160
225410
|
export type SearchLoomFilters = {
|
|
225161
225411
|
folderIds?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
225412
|
+
playlistIds?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
225162
225413
|
spaceIds?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
225163
225414
|
tagNames?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
225415
|
+
videoTypes?: InputMaybe<Array<SearchLoomVideoType>>;
|
|
225164
225416
|
};
|
|
225417
|
+
export declare enum SearchLoomVideoType {
|
|
225418
|
+
AsyncVideo = "ASYNC_VIDEO",
|
|
225419
|
+
MeetingRecording = "MEETING_RECORDING"
|
|
225420
|
+
}
|
|
225165
225421
|
export type SearchMatchingLayer = {
|
|
225166
225422
|
layerName?: InputMaybe<Scalars['String']['input']>;
|
|
225167
225423
|
layerType?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -225828,6 +226084,27 @@ export type SearchResultLoomFolder = SearchResult & {
|
|
|
225828
226084
|
type: SearchResultType;
|
|
225829
226085
|
url: Scalars['String']['output'];
|
|
225830
226086
|
};
|
|
226087
|
+
export type SearchResultLoomPlaylist = SearchResult & {
|
|
226088
|
+
__typename?: 'SearchResultLoomPlaylist';
|
|
226089
|
+
createdAt?: Maybe<Scalars['String']['output']>;
|
|
226090
|
+
creatorAaid?: Maybe<Scalars['String']['output']>;
|
|
226091
|
+
description: Scalars['String']['output'];
|
|
226092
|
+
entityKey?: Maybe<Scalars['String']['output']>;
|
|
226093
|
+
iconUrl?: Maybe<Scalars['String']['output']>;
|
|
226094
|
+
id: Scalars['ID']['output'];
|
|
226095
|
+
lastModifiedDate?: Maybe<Scalars['String']['output']>;
|
|
226096
|
+
linkedResults?: Maybe<Array<SearchLinkedResult>>;
|
|
226097
|
+
loomId?: Maybe<Scalars['String']['output']>;
|
|
226098
|
+
navBoostScore?: Maybe<Scalars['Float']['output']>;
|
|
226099
|
+
permissionsSet?: Maybe<Array<Scalars['String']['output']>>;
|
|
226100
|
+
score?: Maybe<Scalars['Float']['output']>;
|
|
226101
|
+
scoreL2Ranker?: Maybe<Scalars['Float']['output']>;
|
|
226102
|
+
smartLinkAris?: Maybe<Array<Scalars['ID']['output']>>;
|
|
226103
|
+
thumbnailUrl?: Maybe<Scalars['String']['output']>;
|
|
226104
|
+
title: Scalars['String']['output'];
|
|
226105
|
+
type: SearchResultType;
|
|
226106
|
+
url: Scalars['String']['output'];
|
|
226107
|
+
};
|
|
225831
226108
|
export type SearchResultLoomSpace = SearchResult & {
|
|
225832
226109
|
__typename?: 'SearchResultLoomSpace';
|
|
225833
226110
|
description: Scalars['String']['output'];
|
|
@@ -225892,6 +226169,7 @@ export type SearchResultLoomVideo = SearchResult & {
|
|
|
225892
226169
|
title: Scalars['String']['output'];
|
|
225893
226170
|
type: SearchResultType;
|
|
225894
226171
|
url: Scalars['String']['output'];
|
|
226172
|
+
videoType: SearchLoomVideoType;
|
|
225895
226173
|
};
|
|
225896
226174
|
export type SearchResultMercuryAsk = SearchResult & {
|
|
225897
226175
|
__typename?: 'SearchResultMercuryAsk';
|
|
@@ -226135,6 +226413,7 @@ export declare enum SearchResultType {
|
|
|
226135
226413
|
OrganizationStatusUpdate = "organization_status_update",
|
|
226136
226414
|
Page = "page",
|
|
226137
226415
|
Plan = "plan",
|
|
226416
|
+
Playlist = "playlist",
|
|
226138
226417
|
Position = "position",
|
|
226139
226418
|
Presentation = "presentation",
|
|
226140
226419
|
Project = "project",
|
|
@@ -240487,6 +240766,7 @@ export type TrelloAgentMessageUpdatedConnection = {
|
|
|
240487
240766
|
};
|
|
240488
240767
|
export type TrelloAgentSession = {
|
|
240489
240768
|
__typename?: 'TrelloAgentSession';
|
|
240769
|
+
creator?: Maybe<TrelloAgentSessionCreator>;
|
|
240490
240770
|
id: Scalars['ID']['output'];
|
|
240491
240771
|
objectId: Scalars['ID']['output'];
|
|
240492
240772
|
tasks: TrelloAgentTaskConnection;
|
|
@@ -240495,6 +240775,10 @@ export type TrelloAgentSessionTasksArgs = {
|
|
|
240495
240775
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
240496
240776
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
240497
240777
|
};
|
|
240778
|
+
export type TrelloAgentSessionCreator = {
|
|
240779
|
+
__typename?: 'TrelloAgentSessionCreator';
|
|
240780
|
+
user?: Maybe<TrelloMember>;
|
|
240781
|
+
};
|
|
240498
240782
|
export type TrelloAgentSessionUpdated = TrelloStatefulSessionUpdated & {
|
|
240499
240783
|
__typename?: 'TrelloAgentSessionUpdated';
|
|
240500
240784
|
_deltas?: Maybe<Array<Scalars['String']['output']>>;
|