@forge/cli-shared 6.8.0-next.16 → 6.8.0-next.18
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/graphql/graphql-types.d.ts +429 -9
- package/out/graphql/graphql-types.d.ts.map +1 -1
- package/out/graphql/graphql-types.js +52 -23
- package/out/tunnel/tunnel-options.d.ts +1 -0
- package/out/tunnel/tunnel-options.d.ts.map +1 -1
- package/out/ui/text.d.ts.map +1 -1
- package/out/ui/text.js +1 -1
- package/package.json +1 -1
|
@@ -5151,6 +5151,7 @@ export declare type CompassCatalogQueryApi = {
|
|
|
5151
5151
|
metricDefinition?: Maybe<CompassMetricDefinitionResult>;
|
|
5152
5152
|
metricDefinitions?: Maybe<CompassMetricDefinitionsQueryResult>;
|
|
5153
5153
|
metricValuesTimeSeries?: Maybe<CompassMetricValuesTimeseriesResult>;
|
|
5154
|
+
package?: Maybe<CompassPackage>;
|
|
5154
5155
|
scorecard?: Maybe<CompassScorecardResult>;
|
|
5155
5156
|
scorecards?: Maybe<CompassScorecardsQueryResult>;
|
|
5156
5157
|
searchComponentLabels?: Maybe<CompassComponentLabelsQueryResult>;
|
|
@@ -5285,6 +5286,9 @@ export declare type CompassCatalogQueryApiMetricValuesTimeSeriesArgs = {
|
|
|
5285
5286
|
cloudId: Scalars['ID']['input'];
|
|
5286
5287
|
metricSourceId: Scalars['ID']['input'];
|
|
5287
5288
|
};
|
|
5289
|
+
export declare type CompassCatalogQueryApiPackageArgs = {
|
|
5290
|
+
id: Scalars['ID']['input'];
|
|
5291
|
+
};
|
|
5288
5292
|
export declare type CompassCatalogQueryApiScorecardArgs = {
|
|
5289
5293
|
id: Scalars['ID']['input'];
|
|
5290
5294
|
};
|
|
@@ -7638,9 +7642,41 @@ export declare type CompassMetricValuesTimeseries = {
|
|
|
7638
7642
|
export declare type CompassMetricValuesTimeseriesResult = CompassMetricValuesTimeseries | QueryError;
|
|
7639
7643
|
export declare type CompassPackage = {
|
|
7640
7644
|
__typename?: 'CompassPackage';
|
|
7645
|
+
dependentComponents?: Maybe<CompassPackageDependentComponentsConnection>;
|
|
7641
7646
|
id: Scalars['ID']['output'];
|
|
7642
7647
|
packageName: Scalars['String']['output'];
|
|
7643
7648
|
};
|
|
7649
|
+
export declare type CompassPackageDependentComponentsArgs = {
|
|
7650
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
7651
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
7652
|
+
};
|
|
7653
|
+
export declare type CompassPackageDependentComponentVersionsBySourceConnection = {
|
|
7654
|
+
__typename?: 'CompassPackageDependentComponentVersionsBySourceConnection';
|
|
7655
|
+
edges?: Maybe<Array<CompassPackageDependentComponentVersionsBySourceEdge>>;
|
|
7656
|
+
nodes?: Maybe<Array<CompassComponentPackageVersionsBySource>>;
|
|
7657
|
+
pageInfo?: Maybe<PageInfo>;
|
|
7658
|
+
};
|
|
7659
|
+
export declare type CompassPackageDependentComponentVersionsBySourceEdge = {
|
|
7660
|
+
__typename?: 'CompassPackageDependentComponentVersionsBySourceEdge';
|
|
7661
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
7662
|
+
node?: Maybe<CompassComponentPackageVersionsBySource>;
|
|
7663
|
+
};
|
|
7664
|
+
export declare type CompassPackageDependentComponentsConnection = {
|
|
7665
|
+
__typename?: 'CompassPackageDependentComponentsConnection';
|
|
7666
|
+
edges?: Maybe<Array<CompassPackageDependentComponentsEdge>>;
|
|
7667
|
+
nodes?: Maybe<Array<CompassComponent>>;
|
|
7668
|
+
pageInfo?: Maybe<PageInfo>;
|
|
7669
|
+
};
|
|
7670
|
+
export declare type CompassPackageDependentComponentsEdge = {
|
|
7671
|
+
__typename?: 'CompassPackageDependentComponentsEdge';
|
|
7672
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
7673
|
+
node?: Maybe<CompassComponent>;
|
|
7674
|
+
versionsDependedOnBySource?: Maybe<CompassPackageDependentComponentVersionsBySourceConnection>;
|
|
7675
|
+
};
|
|
7676
|
+
export declare type CompassPackageDependentComponentsEdgeVersionsDependedOnBySourceArgs = {
|
|
7677
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
7678
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
7679
|
+
};
|
|
7644
7680
|
export declare type CompassPermissionResult = {
|
|
7645
7681
|
__typename?: 'CompassPermissionResult';
|
|
7646
7682
|
allowed: Scalars['Boolean']['output'];
|
|
@@ -7794,8 +7830,9 @@ export declare type CompassRelationship = {
|
|
|
7794
7830
|
__typename?: 'CompassRelationship';
|
|
7795
7831
|
changeMetadata?: Maybe<CompassChangeMetadata>;
|
|
7796
7832
|
endNode?: Maybe<CompassComponent>;
|
|
7833
|
+
relationshipType: Scalars['String']['output'];
|
|
7797
7834
|
startNode?: Maybe<CompassComponent>;
|
|
7798
|
-
type
|
|
7835
|
+
type?: Maybe<CompassRelationshipType>;
|
|
7799
7836
|
};
|
|
7800
7837
|
export declare type CompassRelationshipConnection = {
|
|
7801
7838
|
__typename?: 'CompassRelationshipConnection';
|
|
@@ -7816,8 +7853,8 @@ export declare type CompassRelationshipEdge = {
|
|
|
7816
7853
|
export declare type CompassRelationshipQuery = {
|
|
7817
7854
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
7818
7855
|
direction?: CompassRelationshipDirection;
|
|
7819
|
-
filters?: InputMaybe<CompassRelationshipQueryFilters>;
|
|
7820
7856
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
7857
|
+
relationshipType?: CompassRelationshipTypeInput;
|
|
7821
7858
|
};
|
|
7822
7859
|
export declare type CompassRelationshipQueryFilters = {
|
|
7823
7860
|
types?: InputMaybe<Array<CompassRelationshipType>>;
|
|
@@ -7825,6 +7862,10 @@ export declare type CompassRelationshipQueryFilters = {
|
|
|
7825
7862
|
export declare enum CompassRelationshipType {
|
|
7826
7863
|
DependsOn = "DEPENDS_ON"
|
|
7827
7864
|
}
|
|
7865
|
+
export declare enum CompassRelationshipTypeInput {
|
|
7866
|
+
ChildOf = "CHILD_OF",
|
|
7867
|
+
DependsOn = "DEPENDS_ON"
|
|
7868
|
+
}
|
|
7828
7869
|
export declare type CompassRemoveTeamLabelsInput = {
|
|
7829
7870
|
cloudId: Scalars['ID']['input'];
|
|
7830
7871
|
labels: Array<Scalars['String']['input']>;
|
|
@@ -19453,8 +19494,8 @@ export declare type CreateCompassLinkInput = {
|
|
|
19453
19494
|
};
|
|
19454
19495
|
export declare type CreateCompassRelationshipInput = {
|
|
19455
19496
|
endNodeId: Scalars['ID']['input'];
|
|
19497
|
+
relationshipType?: CompassRelationshipTypeInput;
|
|
19456
19498
|
startNodeId: Scalars['ID']['input'];
|
|
19457
|
-
type: CompassRelationshipType;
|
|
19458
19499
|
};
|
|
19459
19500
|
export declare type CreateCompassRelationshipPayload = Payload & {
|
|
19460
19501
|
__typename?: 'CreateCompassRelationshipPayload';
|
|
@@ -19918,6 +19959,43 @@ export declare enum CriterionExemptionType {
|
|
|
19918
19959
|
Exemption = "EXEMPTION",
|
|
19919
19960
|
Global = "GLOBAL"
|
|
19920
19961
|
}
|
|
19962
|
+
export declare type CsmAiAction = {
|
|
19963
|
+
__typename?: 'CsmAiAction';
|
|
19964
|
+
actionType?: Maybe<CsmAiActionType>;
|
|
19965
|
+
apiOperation?: Maybe<CsmAiApiOperation>;
|
|
19966
|
+
authentication?: Maybe<CsmAiAuthentication>;
|
|
19967
|
+
description?: Maybe<Scalars['String']['output']>;
|
|
19968
|
+
id: Scalars['ID']['output'];
|
|
19969
|
+
isConfirmationRequired?: Maybe<Scalars['Boolean']['output']>;
|
|
19970
|
+
name?: Maybe<Scalars['String']['output']>;
|
|
19971
|
+
variables?: Maybe<Array<Maybe<CsmAiActionVariable>>>;
|
|
19972
|
+
};
|
|
19973
|
+
export declare type CsmAiActionResult = CsmAiAction | QueryError;
|
|
19974
|
+
export declare enum CsmAiActionType {
|
|
19975
|
+
Mutator = "MUTATOR",
|
|
19976
|
+
Retriever = "RETRIEVER"
|
|
19977
|
+
}
|
|
19978
|
+
export declare type CsmAiActionVariable = {
|
|
19979
|
+
__typename?: 'CsmAiActionVariable';
|
|
19980
|
+
dataType?: Maybe<CsmAiActionVariableDataType>;
|
|
19981
|
+
defaultValue?: Maybe<Scalars['String']['output']>;
|
|
19982
|
+
description?: Maybe<Scalars['String']['output']>;
|
|
19983
|
+
isRequired?: Maybe<Scalars['Boolean']['output']>;
|
|
19984
|
+
name?: Maybe<Scalars['String']['output']>;
|
|
19985
|
+
};
|
|
19986
|
+
export declare enum CsmAiActionVariableDataType {
|
|
19987
|
+
Boolean = "BOOLEAN",
|
|
19988
|
+
Integer = "INTEGER",
|
|
19989
|
+
Number = "NUMBER",
|
|
19990
|
+
String = "STRING"
|
|
19991
|
+
}
|
|
19992
|
+
export declare type CsmAiActionVariableInput = {
|
|
19993
|
+
dataType: CsmAiActionVariableDataType;
|
|
19994
|
+
defaultValue?: InputMaybe<Scalars['String']['input']>;
|
|
19995
|
+
description?: InputMaybe<Scalars['String']['input']>;
|
|
19996
|
+
isRequired: Scalars['Boolean']['input'];
|
|
19997
|
+
name: Scalars['String']['input'];
|
|
19998
|
+
};
|
|
19921
19999
|
export declare type CsmAiAgent = {
|
|
19922
20000
|
__typename?: 'CsmAiAgent';
|
|
19923
20001
|
conversationStarters?: Maybe<Array<CsmAiAgentConversationStarter>>;
|
|
@@ -19941,12 +20019,91 @@ export declare type CsmAiAgentToneInput = {
|
|
|
19941
20019
|
description?: InputMaybe<Scalars['String']['input']>;
|
|
19942
20020
|
type: Scalars['String']['input'];
|
|
19943
20021
|
};
|
|
20022
|
+
export declare type CsmAiApiOperation = {
|
|
20023
|
+
__typename?: 'CsmAiApiOperation';
|
|
20024
|
+
headers?: Maybe<Array<Maybe<CsmAiKeyValuePair>>>;
|
|
20025
|
+
method?: Maybe<CsmAiHttpMethod>;
|
|
20026
|
+
queryParameters?: Maybe<Array<Maybe<CsmAiKeyValuePair>>>;
|
|
20027
|
+
requestBody?: Maybe<Scalars['String']['output']>;
|
|
20028
|
+
requestUrl?: Maybe<Scalars['String']['output']>;
|
|
20029
|
+
server?: Maybe<Scalars['String']['output']>;
|
|
20030
|
+
};
|
|
20031
|
+
export declare type CsmAiApiOperationInput = {
|
|
20032
|
+
headers?: InputMaybe<Array<InputMaybe<CsmAiKeyValueInput>>>;
|
|
20033
|
+
method: CsmAiHttpMethod;
|
|
20034
|
+
queryParameters?: InputMaybe<Array<InputMaybe<CsmAiKeyValueInput>>>;
|
|
20035
|
+
requestBody?: InputMaybe<Scalars['String']['input']>;
|
|
20036
|
+
requestUrl: Scalars['String']['input'];
|
|
20037
|
+
server: Scalars['String']['input'];
|
|
20038
|
+
};
|
|
20039
|
+
export declare type CsmAiAuthentication = {
|
|
20040
|
+
__typename?: 'CsmAiAuthentication';
|
|
20041
|
+
type?: Maybe<CsmAiAuthenticationType>;
|
|
20042
|
+
};
|
|
20043
|
+
export declare type CsmAiAuthenticationInput = {
|
|
20044
|
+
type: CsmAiAuthenticationType;
|
|
20045
|
+
};
|
|
20046
|
+
export declare enum CsmAiAuthenticationType {
|
|
20047
|
+
NoAuth = "NO_AUTH"
|
|
20048
|
+
}
|
|
20049
|
+
export declare type CsmAiCreateActionInput = {
|
|
20050
|
+
actionType: CsmAiActionType;
|
|
20051
|
+
apiOperation: CsmAiApiOperationInput;
|
|
20052
|
+
authentication: CsmAiAuthenticationInput;
|
|
20053
|
+
description: Scalars['String']['input'];
|
|
20054
|
+
isConfirmationRequired: Scalars['Boolean']['input'];
|
|
20055
|
+
name: Scalars['String']['input'];
|
|
20056
|
+
variables?: InputMaybe<Array<CsmAiActionVariableInput>>;
|
|
20057
|
+
};
|
|
20058
|
+
export declare type CsmAiCreateActionPayload = Payload & {
|
|
20059
|
+
__typename?: 'CsmAiCreateActionPayload';
|
|
20060
|
+
action?: Maybe<CsmAiAction>;
|
|
20061
|
+
errors?: Maybe<Array<MutationError>>;
|
|
20062
|
+
success: Scalars['Boolean']['output'];
|
|
20063
|
+
};
|
|
20064
|
+
export declare type CsmAiDeleteActionPayload = Payload & {
|
|
20065
|
+
__typename?: 'CsmAiDeleteActionPayload';
|
|
20066
|
+
errors?: Maybe<Array<MutationError>>;
|
|
20067
|
+
success: Scalars['Boolean']['output'];
|
|
20068
|
+
};
|
|
20069
|
+
export declare enum CsmAiHttpMethod {
|
|
20070
|
+
Delete = "DELETE",
|
|
20071
|
+
Get = "GET",
|
|
20072
|
+
Patch = "PATCH",
|
|
20073
|
+
Post = "POST",
|
|
20074
|
+
Put = "PUT"
|
|
20075
|
+
}
|
|
19944
20076
|
export declare type CsmAiHub = {
|
|
19945
20077
|
__typename?: 'CsmAiHub';
|
|
20078
|
+
actions?: Maybe<Array<Maybe<CsmAiActionResult>>>;
|
|
19946
20079
|
agent?: Maybe<CsmAiAgentResult>;
|
|
19947
20080
|
id: Scalars['ID']['output'];
|
|
19948
20081
|
};
|
|
19949
20082
|
export declare type CsmAiHubResult = CsmAiHub | QueryError;
|
|
20083
|
+
export declare type CsmAiKeyValueInput = {
|
|
20084
|
+
key: Scalars['String']['input'];
|
|
20085
|
+
value: Scalars['String']['input'];
|
|
20086
|
+
};
|
|
20087
|
+
export declare type CsmAiKeyValuePair = {
|
|
20088
|
+
__typename?: 'CsmAiKeyValuePair';
|
|
20089
|
+
key?: Maybe<Scalars['String']['output']>;
|
|
20090
|
+
value?: Maybe<Scalars['String']['output']>;
|
|
20091
|
+
};
|
|
20092
|
+
export declare type CsmAiUpdateActionInput = {
|
|
20093
|
+
actionType?: InputMaybe<CsmAiActionType>;
|
|
20094
|
+
apiOperation?: InputMaybe<CsmAiApiOperationInput>;
|
|
20095
|
+
authentication?: InputMaybe<CsmAiAuthenticationInput>;
|
|
20096
|
+
description?: InputMaybe<Scalars['String']['input']>;
|
|
20097
|
+
isConfirmationRequired?: InputMaybe<Scalars['Boolean']['input']>;
|
|
20098
|
+
name?: InputMaybe<Scalars['String']['input']>;
|
|
20099
|
+
variables?: InputMaybe<Array<InputMaybe<CsmAiActionVariableInput>>>;
|
|
20100
|
+
};
|
|
20101
|
+
export declare type CsmAiUpdateActionPayload = Payload & {
|
|
20102
|
+
__typename?: 'CsmAiUpdateActionPayload';
|
|
20103
|
+
action?: Maybe<CsmAiAction>;
|
|
20104
|
+
errors?: Maybe<Array<MutationError>>;
|
|
20105
|
+
success: Scalars['Boolean']['output'];
|
|
20106
|
+
};
|
|
19950
20107
|
export declare type CsmAiUpdateAgentConversationStarterInput = {
|
|
19951
20108
|
id: Scalars['ID']['input'];
|
|
19952
20109
|
message?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -21310,8 +21467,8 @@ export declare type DeleteCompassComponentTypePayload = Payload & {
|
|
|
21310
21467
|
};
|
|
21311
21468
|
export declare type DeleteCompassRelationshipInput = {
|
|
21312
21469
|
endNodeId: Scalars['ID']['input'];
|
|
21470
|
+
relationshipType?: CompassRelationshipTypeInput;
|
|
21313
21471
|
startNodeId: Scalars['ID']['input'];
|
|
21314
|
-
type: CompassRelationshipType;
|
|
21315
21472
|
};
|
|
21316
21473
|
export declare type DeleteCompassRelationshipPayload = Payload & {
|
|
21317
21474
|
__typename?: 'DeleteCompassRelationshipPayload';
|
|
@@ -21927,6 +22084,7 @@ export declare type DevAiFlowSession = {
|
|
|
21927
22084
|
createdBy?: Maybe<Scalars['String']['output']>;
|
|
21928
22085
|
id: Scalars['ID']['output'];
|
|
21929
22086
|
issueARI?: Maybe<Scalars['ID']['output']>;
|
|
22087
|
+
issueJSON?: Maybe<Scalars['String']['output']>;
|
|
21930
22088
|
jiraHost?: Maybe<Scalars['String']['output']>;
|
|
21931
22089
|
pipelines?: Maybe<Array<Maybe<DevAiFlowPipeline>>>;
|
|
21932
22090
|
repoUrl?: Maybe<Scalars['String']['output']>;
|
|
@@ -31087,6 +31245,8 @@ export declare type GraphStore = {
|
|
|
31087
31245
|
parentMessageHasChildMessageInverse?: Maybe<GraphStoreSimplifiedParentMessageHasChildMessageInverseConnection>;
|
|
31088
31246
|
positionAllocatedToFocusArea?: Maybe<GraphStoreSimplifiedPositionAllocatedToFocusAreaConnection>;
|
|
31089
31247
|
positionAllocatedToFocusAreaInverse?: Maybe<GraphStoreSimplifiedPositionAllocatedToFocusAreaInverseConnection>;
|
|
31248
|
+
prInProviderRepo?: Maybe<GraphStoreSimplifiedPrInProviderRepoConnection>;
|
|
31249
|
+
prInProviderRepoInverse?: Maybe<GraphStoreSimplifiedPrInProviderRepoInverseConnection>;
|
|
31090
31250
|
prInRepo?: Maybe<GraphStoreSimplifiedPrInRepoConnection>;
|
|
31091
31251
|
prInRepoInverse?: Maybe<GraphStoreSimplifiedPrInRepoInverseConnection>;
|
|
31092
31252
|
prInRepoInverseRelationship?: Maybe<GraphStoreFullPrInRepoConnection>;
|
|
@@ -31137,6 +31297,7 @@ export declare type GraphStore = {
|
|
|
31137
31297
|
projectAssociatedToOperationsContainerInverse?: Maybe<GraphStoreSimplifiedProjectAssociatedToOperationsContainerInverseConnection>;
|
|
31138
31298
|
projectAssociatedToOperationsContainerInverseRelationship?: Maybe<GraphStoreFullProjectAssociatedToOperationsContainerConnection>;
|
|
31139
31299
|
projectAssociatedToOperationsContainerRelationship?: Maybe<GraphStoreFullProjectAssociatedToOperationsContainerConnection>;
|
|
31300
|
+
projectAssociatedToSecurityContainer?: Maybe<GraphStoreSimplifiedProjectAssociatedToSecurityContainerConnection>;
|
|
31140
31301
|
projectAssociatedToSecurityContainerInverse?: Maybe<GraphStoreSimplifiedProjectAssociatedToSecurityContainerInverseConnection>;
|
|
31141
31302
|
projectAssociatedToSecurityContainerInverseRelationship?: Maybe<GraphStoreFullProjectAssociatedToSecurityContainerConnection>;
|
|
31142
31303
|
projectAssociatedToSecurityContainerRelationship?: Maybe<GraphStoreFullProjectAssociatedToSecurityContainerConnection>;
|
|
@@ -31184,13 +31345,18 @@ export declare type GraphStore = {
|
|
|
31184
31345
|
pullRequestLinksToServiceInverse?: Maybe<GraphStoreSimplifiedPullRequestLinksToServiceInverseConnection>;
|
|
31185
31346
|
securityContainerAssociatedToVulnerability?: Maybe<GraphStoreSimplifiedSecurityContainerAssociatedToVulnerabilityConnection>;
|
|
31186
31347
|
securityContainerAssociatedToVulnerabilityBatch?: Maybe<GraphStoreBatchSecurityContainerAssociatedToVulnerabilityConnection>;
|
|
31348
|
+
securityContainerAssociatedToVulnerabilityInverse?: Maybe<GraphStoreSimplifiedSecurityContainerAssociatedToVulnerabilityInverseConnection>;
|
|
31187
31349
|
securityContainerAssociatedToVulnerabilityInverseBatch?: Maybe<GraphStoreBatchSecurityContainerAssociatedToVulnerabilityConnection>;
|
|
31188
31350
|
securityContainerAssociatedToVulnerabilityInverseRelationship?: Maybe<GraphStoreFullSecurityContainerAssociatedToVulnerabilityConnection>;
|
|
31189
31351
|
securityContainerAssociatedToVulnerabilityRelationship?: Maybe<GraphStoreFullSecurityContainerAssociatedToVulnerabilityConnection>;
|
|
31190
31352
|
serviceAssociatedBranch?: Maybe<GraphStoreSimplifiedServiceAssociatedBranchConnection>;
|
|
31191
31353
|
serviceAssociatedBranchInverse?: Maybe<GraphStoreSimplifiedServiceAssociatedBranchInverseConnection>;
|
|
31354
|
+
serviceAssociatedBuild?: Maybe<GraphStoreSimplifiedServiceAssociatedBuildConnection>;
|
|
31355
|
+
serviceAssociatedBuildInverse?: Maybe<GraphStoreSimplifiedServiceAssociatedBuildInverseConnection>;
|
|
31192
31356
|
serviceAssociatedDeployment?: Maybe<GraphStoreSimplifiedServiceAssociatedDeploymentConnection>;
|
|
31193
31357
|
serviceAssociatedDeploymentInverse?: Maybe<GraphStoreSimplifiedServiceAssociatedDeploymentInverseConnection>;
|
|
31358
|
+
serviceAssociatedFeatureFlag?: Maybe<GraphStoreSimplifiedServiceAssociatedFeatureFlagConnection>;
|
|
31359
|
+
serviceAssociatedFeatureFlagInverse?: Maybe<GraphStoreSimplifiedServiceAssociatedFeatureFlagInverseConnection>;
|
|
31194
31360
|
serviceAssociatedRemoteLink?: Maybe<GraphStoreSimplifiedServiceAssociatedRemoteLinkConnection>;
|
|
31195
31361
|
serviceAssociatedRemoteLinkInverse?: Maybe<GraphStoreSimplifiedServiceAssociatedRemoteLinkInverseConnection>;
|
|
31196
31362
|
serviceAssociatedTeam?: Maybe<GraphStoreSimplifiedServiceAssociatedTeamConnection>;
|
|
@@ -33333,6 +33499,20 @@ export declare type GraphStorePositionAllocatedToFocusAreaInverseArgs = {
|
|
|
33333
33499
|
id: Scalars['ID']['input'];
|
|
33334
33500
|
sort?: InputMaybe<GraphStorePositionAllocatedToFocusAreaSortInput>;
|
|
33335
33501
|
};
|
|
33502
|
+
export declare type GraphStorePrInProviderRepoArgs = {
|
|
33503
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
33504
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
33505
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
33506
|
+
id: Scalars['ID']['input'];
|
|
33507
|
+
sort?: InputMaybe<GraphStorePrInProviderRepoSortInput>;
|
|
33508
|
+
};
|
|
33509
|
+
export declare type GraphStorePrInProviderRepoInverseArgs = {
|
|
33510
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
33511
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
33512
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
33513
|
+
id: Scalars['ID']['input'];
|
|
33514
|
+
sort?: InputMaybe<GraphStorePrInProviderRepoSortInput>;
|
|
33515
|
+
};
|
|
33336
33516
|
export declare type GraphStorePrInRepoArgs = {
|
|
33337
33517
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
33338
33518
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -33669,6 +33849,13 @@ export declare type GraphStoreProjectAssociatedToOperationsContainerRelationship
|
|
|
33669
33849
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
33670
33850
|
id: Scalars['ID']['input'];
|
|
33671
33851
|
};
|
|
33852
|
+
export declare type GraphStoreProjectAssociatedToSecurityContainerArgs = {
|
|
33853
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
33854
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
33855
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
33856
|
+
id: Scalars['ID']['input'];
|
|
33857
|
+
sort?: InputMaybe<GraphStoreProjectAssociatedToSecurityContainerSortInput>;
|
|
33858
|
+
};
|
|
33672
33859
|
export declare type GraphStoreProjectAssociatedToSecurityContainerInverseArgs = {
|
|
33673
33860
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
33674
33861
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -33969,6 +34156,13 @@ export declare type GraphStoreSecurityContainerAssociatedToVulnerabilityBatchArg
|
|
|
33969
34156
|
ids: Array<Scalars['ID']['input']>;
|
|
33970
34157
|
sort?: InputMaybe<GraphStoreSecurityContainerAssociatedToVulnerabilitySortInput>;
|
|
33971
34158
|
};
|
|
34159
|
+
export declare type GraphStoreSecurityContainerAssociatedToVulnerabilityInverseArgs = {
|
|
34160
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
34161
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
34162
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
34163
|
+
id: Scalars['ID']['input'];
|
|
34164
|
+
sort?: InputMaybe<GraphStoreSecurityContainerAssociatedToVulnerabilitySortInput>;
|
|
34165
|
+
};
|
|
33972
34166
|
export declare type GraphStoreSecurityContainerAssociatedToVulnerabilityInverseBatchArgs = {
|
|
33973
34167
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
33974
34168
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
@@ -33999,6 +34193,20 @@ export declare type GraphStoreServiceAssociatedBranchInverseArgs = {
|
|
|
33999
34193
|
id: Scalars['ID']['input'];
|
|
34000
34194
|
sort?: InputMaybe<GraphStoreServiceAssociatedBranchSortInput>;
|
|
34001
34195
|
};
|
|
34196
|
+
export declare type GraphStoreServiceAssociatedBuildArgs = {
|
|
34197
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
34198
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
34199
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
34200
|
+
id: Scalars['ID']['input'];
|
|
34201
|
+
sort?: InputMaybe<GraphStoreServiceAssociatedBuildSortInput>;
|
|
34202
|
+
};
|
|
34203
|
+
export declare type GraphStoreServiceAssociatedBuildInverseArgs = {
|
|
34204
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
34205
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
34206
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
34207
|
+
id: Scalars['ID']['input'];
|
|
34208
|
+
sort?: InputMaybe<GraphStoreServiceAssociatedBuildSortInput>;
|
|
34209
|
+
};
|
|
34002
34210
|
export declare type GraphStoreServiceAssociatedDeploymentArgs = {
|
|
34003
34211
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
34004
34212
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -34013,6 +34221,20 @@ export declare type GraphStoreServiceAssociatedDeploymentInverseArgs = {
|
|
|
34013
34221
|
id: Scalars['ID']['input'];
|
|
34014
34222
|
sort?: InputMaybe<GraphStoreServiceAssociatedDeploymentSortInput>;
|
|
34015
34223
|
};
|
|
34224
|
+
export declare type GraphStoreServiceAssociatedFeatureFlagArgs = {
|
|
34225
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
34226
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
34227
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
34228
|
+
id: Scalars['ID']['input'];
|
|
34229
|
+
sort?: InputMaybe<GraphStoreServiceAssociatedFeatureFlagSortInput>;
|
|
34230
|
+
};
|
|
34231
|
+
export declare type GraphStoreServiceAssociatedFeatureFlagInverseArgs = {
|
|
34232
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
34233
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
34234
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
34235
|
+
id: Scalars['ID']['input'];
|
|
34236
|
+
sort?: InputMaybe<GraphStoreServiceAssociatedFeatureFlagSortInput>;
|
|
34237
|
+
};
|
|
34016
34238
|
export declare type GraphStoreServiceAssociatedRemoteLinkArgs = {
|
|
34017
34239
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
34018
34240
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -36787,8 +37009,10 @@ export declare type GraphStoreBatchSecurityContainerAssociatedToVulnerabilityNod
|
|
|
36787
37009
|
};
|
|
36788
37010
|
export declare type GraphStoreBatchSecurityContainerAssociatedToVulnerabilityStartNode = {
|
|
36789
37011
|
__typename?: 'GraphStoreBatchSecurityContainerAssociatedToVulnerabilityStartNode';
|
|
37012
|
+
data?: Maybe<GraphStoreBatchSecurityContainerAssociatedToVulnerabilityStartUnion>;
|
|
36790
37013
|
id: Scalars['ID']['output'];
|
|
36791
37014
|
};
|
|
37015
|
+
export declare type GraphStoreBatchSecurityContainerAssociatedToVulnerabilityStartUnion = ThirdPartySecurityContainer;
|
|
36792
37016
|
export declare type GraphStoreBatchTestPerfhammerRelationshipConnection = HasPageInfo & {
|
|
36793
37017
|
__typename?: 'GraphStoreBatchTestPerfhammerRelationshipConnection';
|
|
36794
37018
|
edges: Array<Maybe<GraphStoreBatchTestPerfhammerRelationshipEdge>>;
|
|
@@ -37357,7 +37581,7 @@ export declare type GraphStoreCypherQueryFromNode = {
|
|
|
37357
37581
|
data?: Maybe<GraphStoreCypherQueryFromNodeUnion>;
|
|
37358
37582
|
id: Scalars['ID']['output'];
|
|
37359
37583
|
};
|
|
37360
|
-
export declare type GraphStoreCypherQueryFromNodeUnion = AppUser | AtlassianAccountUser | CompassComponent | ConfluenceBlogPost | ConfluenceDatabase | ConfluenceFolder | ConfluenceFooterComment | ConfluenceInlineComment | ConfluencePage | ConfluenceSpace | ConfluenceWhiteboard | CustomerUser | DeploymentSummary | DevOpsDesign | DevOpsDocument | DevOpsFeatureFlag | DevOpsOperationsComponentDetails | DevOpsOperationsIncidentDetails | DevOpsOperationsPostIncidentReviewDetails | DevOpsProjectDetails | DevOpsPullRequestDetails | DevOpsRepository | DevOpsSecurityVulnerabilityDetails | DevOpsService | ExternalBranch | ExternalBuildInfo | ExternalCalendarEvent | ExternalCommit | ExternalConversation | ExternalDeployment | ExternalDesign | ExternalDocument | ExternalFeatureFlag | ExternalMessage | ExternalOrganisation | ExternalPosition | ExternalPullRequest | ExternalRemoteLink | ExternalRepository | ExternalVideo | ExternalVulnerability | ExternalWorker | JiraAlignAggProject | JiraAutodevJob | JiraBoard | JiraConfluenceRemoteIssueLink | JiraCustomRemoteIssueLink | JiraIssue | JiraIssueRemoteIssueLink | JiraPlatformComment | JiraPostIncidentReviewLink | JiraPriority | JiraProject | JiraServiceManagementComment | JiraVersion | JiraWebRemoteIssueLink | JiraWorklog | LoomComment | LoomVideo | MercuryFocusArea | OpsgenieTeam | RadarPosition | TeamV2 | ThirdPartyUser | TownsquareGoal | TownsquareGoalUpdate | TownsquareProject | TownsquareProjectUpdate;
|
|
37584
|
+
export declare type GraphStoreCypherQueryFromNodeUnion = AppUser | AtlassianAccountUser | BitbucketRepository | CompassComponent | ConfluenceBlogPost | ConfluenceDatabase | ConfluenceFolder | ConfluenceFooterComment | ConfluenceInlineComment | ConfluencePage | ConfluenceSpace | ConfluenceWhiteboard | CustomerUser | DeploymentSummary | DevOpsDesign | DevOpsDocument | DevOpsFeatureFlag | DevOpsOperationsComponentDetails | DevOpsOperationsIncidentDetails | DevOpsOperationsPostIncidentReviewDetails | DevOpsProjectDetails | DevOpsPullRequestDetails | DevOpsRepository | DevOpsSecurityVulnerabilityDetails | DevOpsService | ExternalBranch | ExternalBuildInfo | ExternalCalendarEvent | ExternalCommit | ExternalConversation | ExternalDeployment | ExternalDesign | ExternalDocument | ExternalFeatureFlag | ExternalMessage | ExternalOrganisation | ExternalPosition | ExternalPullRequest | ExternalRemoteLink | ExternalRepository | ExternalVideo | ExternalVulnerability | ExternalWorker | JiraAlignAggProject | JiraAutodevJob | JiraBoard | JiraConfluenceRemoteIssueLink | JiraCustomRemoteIssueLink | JiraIssue | JiraIssueRemoteIssueLink | JiraPlatformComment | JiraPostIncidentReviewLink | JiraPriority | JiraProject | JiraServiceManagementComment | JiraVersion | JiraWebRemoteIssueLink | JiraWorklog | LoomComment | LoomVideo | MercuryFocusArea | OpsgenieTeam | RadarPosition | TeamV2 | ThirdPartySecurityContainer | ThirdPartyUser | TownsquareGoal | TownsquareGoalUpdate | TownsquareProject | TownsquareProjectUpdate;
|
|
37361
37585
|
export declare type GraphStoreCypherQueryIntObject = {
|
|
37362
37586
|
__typename?: 'GraphStoreCypherQueryIntObject';
|
|
37363
37587
|
value: Scalars['Int']['output'];
|
|
@@ -37392,7 +37616,7 @@ export declare type GraphStoreCypherQueryRowItemNode = {
|
|
|
37392
37616
|
data?: Maybe<GraphStoreCypherQueryRowItemNodeNodeUnion>;
|
|
37393
37617
|
id: Scalars['ID']['output'];
|
|
37394
37618
|
};
|
|
37395
|
-
export declare type GraphStoreCypherQueryRowItemNodeNodeUnion = AppUser | AtlassianAccountUser | CompassComponent | ConfluenceBlogPost | ConfluenceDatabase | ConfluenceFolder | ConfluenceFooterComment | ConfluenceInlineComment | ConfluencePage | ConfluenceSpace | ConfluenceWhiteboard | CustomerUser | DeploymentSummary | DevOpsDesign | DevOpsDocument | DevOpsFeatureFlag | DevOpsOperationsComponentDetails | DevOpsOperationsIncidentDetails | DevOpsOperationsPostIncidentReviewDetails | DevOpsProjectDetails | DevOpsPullRequestDetails | DevOpsRepository | DevOpsSecurityVulnerabilityDetails | DevOpsService | ExternalBranch | ExternalBuildInfo | ExternalCalendarEvent | ExternalCommit | ExternalConversation | ExternalDeployment | ExternalDesign | ExternalDocument | ExternalFeatureFlag | ExternalMessage | ExternalOrganisation | ExternalPosition | ExternalPullRequest | ExternalRemoteLink | ExternalRepository | ExternalVideo | ExternalVulnerability | ExternalWorker | JiraAlignAggProject | JiraAutodevJob | JiraBoard | JiraConfluenceRemoteIssueLink | JiraCustomRemoteIssueLink | JiraIssue | JiraIssueRemoteIssueLink | JiraPlatformComment | JiraPostIncidentReviewLink | JiraPriority | JiraProject | JiraServiceManagementComment | JiraVersion | JiraWebRemoteIssueLink | JiraWorklog | LoomComment | LoomVideo | MercuryFocusArea | OpsgenieTeam | RadarPosition | TeamV2 | ThirdPartyUser | TownsquareGoal | TownsquareGoalUpdate | TownsquareProject | TownsquareProjectUpdate;
|
|
37619
|
+
export declare type GraphStoreCypherQueryRowItemNodeNodeUnion = AppUser | AtlassianAccountUser | BitbucketRepository | CompassComponent | ConfluenceBlogPost | ConfluenceDatabase | ConfluenceFolder | ConfluenceFooterComment | ConfluenceInlineComment | ConfluencePage | ConfluenceSpace | ConfluenceWhiteboard | CustomerUser | DeploymentSummary | DevOpsDesign | DevOpsDocument | DevOpsFeatureFlag | DevOpsOperationsComponentDetails | DevOpsOperationsIncidentDetails | DevOpsOperationsPostIncidentReviewDetails | DevOpsProjectDetails | DevOpsPullRequestDetails | DevOpsRepository | DevOpsSecurityVulnerabilityDetails | DevOpsService | ExternalBranch | ExternalBuildInfo | ExternalCalendarEvent | ExternalCommit | ExternalConversation | ExternalDeployment | ExternalDesign | ExternalDocument | ExternalFeatureFlag | ExternalMessage | ExternalOrganisation | ExternalPosition | ExternalPullRequest | ExternalRemoteLink | ExternalRepository | ExternalVideo | ExternalVulnerability | ExternalWorker | JiraAlignAggProject | JiraAutodevJob | JiraBoard | JiraConfluenceRemoteIssueLink | JiraCustomRemoteIssueLink | JiraIssue | JiraIssueRemoteIssueLink | JiraPlatformComment | JiraPostIncidentReviewLink | JiraPriority | JiraProject | JiraServiceManagementComment | JiraVersion | JiraWebRemoteIssueLink | JiraWorklog | LoomComment | LoomVideo | MercuryFocusArea | OpsgenieTeam | RadarPosition | TeamV2 | ThirdPartySecurityContainer | ThirdPartyUser | TownsquareGoal | TownsquareGoalUpdate | TownsquareProject | TownsquareProjectUpdate;
|
|
37396
37620
|
export declare type GraphStoreCypherQueryStringObject = {
|
|
37397
37621
|
__typename?: 'GraphStoreCypherQueryStringObject';
|
|
37398
37622
|
value: Scalars['String']['output'];
|
|
@@ -37402,8 +37626,8 @@ export declare type GraphStoreCypherQueryToNode = {
|
|
|
37402
37626
|
data?: Maybe<GraphStoreCypherQueryToNodeUnion>;
|
|
37403
37627
|
id: Scalars['ID']['output'];
|
|
37404
37628
|
};
|
|
37405
|
-
export declare type GraphStoreCypherQueryToNodeUnion = AppUser | AtlassianAccountUser | CompassComponent | ConfluenceBlogPost | ConfluenceDatabase | ConfluenceFolder | ConfluenceFooterComment | ConfluenceInlineComment | ConfluencePage | ConfluenceSpace | ConfluenceWhiteboard | CustomerUser | DeploymentSummary | DevOpsDesign | DevOpsDocument | DevOpsFeatureFlag | DevOpsOperationsComponentDetails | DevOpsOperationsIncidentDetails | DevOpsOperationsPostIncidentReviewDetails | DevOpsProjectDetails | DevOpsPullRequestDetails | DevOpsRepository | DevOpsSecurityVulnerabilityDetails | DevOpsService | ExternalBranch | ExternalBuildInfo | ExternalCalendarEvent | ExternalCommit | ExternalConversation | ExternalDeployment | ExternalDesign | ExternalDocument | ExternalFeatureFlag | ExternalMessage | ExternalOrganisation | ExternalPosition | ExternalPullRequest | ExternalRemoteLink | ExternalRepository | ExternalVideo | ExternalVulnerability | ExternalWorker | JiraAlignAggProject | JiraAutodevJob | JiraBoard | JiraConfluenceRemoteIssueLink | JiraCustomRemoteIssueLink | JiraIssue | JiraIssueRemoteIssueLink | JiraPlatformComment | JiraPostIncidentReviewLink | JiraPriority | JiraProject | JiraServiceManagementComment | JiraVersion | JiraWebRemoteIssueLink | JiraWorklog | LoomComment | LoomVideo | MercuryFocusArea | OpsgenieTeam | RadarPosition | TeamV2 | ThirdPartyUser | TownsquareGoal | TownsquareGoalUpdate | TownsquareProject | TownsquareProjectUpdate;
|
|
37406
|
-
export declare type GraphStoreCypherQueryValueItemUnion = AppUser | AtlassianAccountUser | CompassComponent | ConfluenceBlogPost | ConfluenceDatabase | ConfluenceFolder | ConfluenceFooterComment | ConfluenceInlineComment | ConfluencePage | ConfluenceSpace | ConfluenceWhiteboard | CustomerUser | DeploymentSummary | DevOpsDesign | DevOpsDocument | DevOpsFeatureFlag | DevOpsOperationsComponentDetails | DevOpsOperationsIncidentDetails | DevOpsOperationsPostIncidentReviewDetails | DevOpsProjectDetails | DevOpsPullRequestDetails | DevOpsRepository | DevOpsSecurityVulnerabilityDetails | DevOpsService | ExternalBranch | ExternalBuildInfo | ExternalCalendarEvent | ExternalCommit | ExternalConversation | ExternalDeployment | ExternalDesign | ExternalDocument | ExternalFeatureFlag | ExternalMessage | ExternalOrganisation | ExternalPosition | ExternalPullRequest | ExternalRemoteLink | ExternalRepository | ExternalVideo | ExternalVulnerability | ExternalWorker | JiraAlignAggProject | JiraAutodevJob | JiraBoard | JiraConfluenceRemoteIssueLink | JiraCustomRemoteIssueLink | JiraIssue | JiraIssueRemoteIssueLink | JiraPlatformComment | JiraPostIncidentReviewLink | JiraPriority | JiraProject | JiraServiceManagementComment | JiraVersion | JiraWebRemoteIssueLink | JiraWorklog | LoomComment | LoomVideo | MercuryFocusArea | OpsgenieTeam | RadarPosition | TeamV2 | ThirdPartyUser | TownsquareGoal | TownsquareGoalUpdate | TownsquareProject | TownsquareProjectUpdate;
|
|
37629
|
+
export declare type GraphStoreCypherQueryToNodeUnion = AppUser | AtlassianAccountUser | BitbucketRepository | CompassComponent | ConfluenceBlogPost | ConfluenceDatabase | ConfluenceFolder | ConfluenceFooterComment | ConfluenceInlineComment | ConfluencePage | ConfluenceSpace | ConfluenceWhiteboard | CustomerUser | DeploymentSummary | DevOpsDesign | DevOpsDocument | DevOpsFeatureFlag | DevOpsOperationsComponentDetails | DevOpsOperationsIncidentDetails | DevOpsOperationsPostIncidentReviewDetails | DevOpsProjectDetails | DevOpsPullRequestDetails | DevOpsRepository | DevOpsSecurityVulnerabilityDetails | DevOpsService | ExternalBranch | ExternalBuildInfo | ExternalCalendarEvent | ExternalCommit | ExternalConversation | ExternalDeployment | ExternalDesign | ExternalDocument | ExternalFeatureFlag | ExternalMessage | ExternalOrganisation | ExternalPosition | ExternalPullRequest | ExternalRemoteLink | ExternalRepository | ExternalVideo | ExternalVulnerability | ExternalWorker | JiraAlignAggProject | JiraAutodevJob | JiraBoard | JiraConfluenceRemoteIssueLink | JiraCustomRemoteIssueLink | JiraIssue | JiraIssueRemoteIssueLink | JiraPlatformComment | JiraPostIncidentReviewLink | JiraPriority | JiraProject | JiraServiceManagementComment | JiraVersion | JiraWebRemoteIssueLink | JiraWorklog | LoomComment | LoomVideo | MercuryFocusArea | OpsgenieTeam | RadarPosition | TeamV2 | ThirdPartySecurityContainer | ThirdPartyUser | TownsquareGoal | TownsquareGoalUpdate | TownsquareProject | TownsquareProjectUpdate;
|
|
37630
|
+
export declare type GraphStoreCypherQueryValueItemUnion = AppUser | AtlassianAccountUser | BitbucketRepository | CompassComponent | ConfluenceBlogPost | ConfluenceDatabase | ConfluenceFolder | ConfluenceFooterComment | ConfluenceInlineComment | ConfluencePage | ConfluenceSpace | ConfluenceWhiteboard | CustomerUser | DeploymentSummary | DevOpsDesign | DevOpsDocument | DevOpsFeatureFlag | DevOpsOperationsComponentDetails | DevOpsOperationsIncidentDetails | DevOpsOperationsPostIncidentReviewDetails | DevOpsProjectDetails | DevOpsPullRequestDetails | DevOpsRepository | DevOpsSecurityVulnerabilityDetails | DevOpsService | ExternalBranch | ExternalBuildInfo | ExternalCalendarEvent | ExternalCommit | ExternalConversation | ExternalDeployment | ExternalDesign | ExternalDocument | ExternalFeatureFlag | ExternalMessage | ExternalOrganisation | ExternalPosition | ExternalPullRequest | ExternalRemoteLink | ExternalRepository | ExternalVideo | ExternalVulnerability | ExternalWorker | JiraAlignAggProject | JiraAutodevJob | JiraBoard | JiraConfluenceRemoteIssueLink | JiraCustomRemoteIssueLink | JiraIssue | JiraIssueRemoteIssueLink | JiraPlatformComment | JiraPostIncidentReviewLink | JiraPriority | JiraProject | JiraServiceManagementComment | JiraVersion | JiraWebRemoteIssueLink | JiraWorklog | LoomComment | LoomVideo | MercuryFocusArea | OpsgenieTeam | RadarPosition | TeamV2 | ThirdPartySecurityContainer | ThirdPartyUser | TownsquareGoal | TownsquareGoalUpdate | TownsquareProject | TownsquareProjectUpdate;
|
|
37407
37631
|
export declare type GraphStoreCypherQueryValueNode = {
|
|
37408
37632
|
__typename?: 'GraphStoreCypherQueryValueNode';
|
|
37409
37633
|
data?: Maybe<GraphStoreCypherQueryValueItemUnion>;
|
|
@@ -39729,8 +39953,10 @@ export declare type GraphStoreFullProjectAssociatedToSecurityContainerEdge = {
|
|
|
39729
39953
|
};
|
|
39730
39954
|
export declare type GraphStoreFullProjectAssociatedToSecurityContainerEndNode = {
|
|
39731
39955
|
__typename?: 'GraphStoreFullProjectAssociatedToSecurityContainerEndNode';
|
|
39956
|
+
data?: Maybe<GraphStoreFullProjectAssociatedToSecurityContainerEndUnion>;
|
|
39732
39957
|
id: Scalars['ID']['output'];
|
|
39733
39958
|
};
|
|
39959
|
+
export declare type GraphStoreFullProjectAssociatedToSecurityContainerEndUnion = ThirdPartySecurityContainer;
|
|
39734
39960
|
export declare type GraphStoreFullProjectAssociatedToSecurityContainerNode = Node & {
|
|
39735
39961
|
__typename?: 'GraphStoreFullProjectAssociatedToSecurityContainerNode';
|
|
39736
39962
|
createdAt: Scalars['DateTime']['output'];
|
|
@@ -40137,8 +40363,10 @@ export declare type GraphStoreFullSecurityContainerAssociatedToVulnerabilityRela
|
|
|
40137
40363
|
};
|
|
40138
40364
|
export declare type GraphStoreFullSecurityContainerAssociatedToVulnerabilityStartNode = {
|
|
40139
40365
|
__typename?: 'GraphStoreFullSecurityContainerAssociatedToVulnerabilityStartNode';
|
|
40366
|
+
data?: Maybe<GraphStoreFullSecurityContainerAssociatedToVulnerabilityStartUnion>;
|
|
40140
40367
|
id: Scalars['ID']['output'];
|
|
40141
40368
|
};
|
|
40369
|
+
export declare type GraphStoreFullSecurityContainerAssociatedToVulnerabilityStartUnion = ThirdPartySecurityContainer;
|
|
40142
40370
|
export declare enum GraphStoreFullSecurityContainerAssociatedToVulnerabilityVulnerabilitySeverityOutput {
|
|
40143
40371
|
Critical = "CRITICAL",
|
|
40144
40372
|
High = "HIGH",
|
|
@@ -41829,6 +42057,12 @@ export declare type GraphStoreParentMessageHasChildMessageSortInput = {
|
|
|
41829
42057
|
export declare type GraphStorePositionAllocatedToFocusAreaSortInput = {
|
|
41830
42058
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
41831
42059
|
};
|
|
42060
|
+
export declare type GraphStorePrInProviderRepoSortInput = {
|
|
42061
|
+
createdAt?: InputMaybe<GraphStoreSortInput>;
|
|
42062
|
+
fromAti?: InputMaybe<GraphStoreSortInput>;
|
|
42063
|
+
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
42064
|
+
toAti?: InputMaybe<GraphStoreSortInput>;
|
|
42065
|
+
};
|
|
41832
42066
|
export declare type GraphStorePrInRepoSortInput = {
|
|
41833
42067
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
41834
42068
|
};
|
|
@@ -42334,9 +42568,15 @@ export declare type GraphStoreSecurityContainerAssociatedToVulnerabilitySortInpu
|
|
|
42334
42568
|
export declare type GraphStoreServiceAssociatedBranchSortInput = {
|
|
42335
42569
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
42336
42570
|
};
|
|
42571
|
+
export declare type GraphStoreServiceAssociatedBuildSortInput = {
|
|
42572
|
+
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
42573
|
+
};
|
|
42337
42574
|
export declare type GraphStoreServiceAssociatedDeploymentSortInput = {
|
|
42338
42575
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
42339
42576
|
};
|
|
42577
|
+
export declare type GraphStoreServiceAssociatedFeatureFlagSortInput = {
|
|
42578
|
+
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
42579
|
+
};
|
|
42340
42580
|
export declare type GraphStoreServiceAssociatedRemoteLinkSortInput = {
|
|
42341
42581
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
42342
42582
|
};
|
|
@@ -45096,6 +45336,38 @@ export declare type GraphStoreSimplifiedPositionAllocatedToFocusAreaInverseEdge
|
|
|
45096
45336
|
};
|
|
45097
45337
|
export declare type GraphStoreSimplifiedPositionAllocatedToFocusAreaInverseUnion = RadarPosition;
|
|
45098
45338
|
export declare type GraphStoreSimplifiedPositionAllocatedToFocusAreaUnion = MercuryFocusArea;
|
|
45339
|
+
export declare type GraphStoreSimplifiedPrInProviderRepoConnection = HasPageInfo & HasTotal & {
|
|
45340
|
+
__typename?: 'GraphStoreSimplifiedPrInProviderRepoConnection';
|
|
45341
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedPrInProviderRepoEdge>>>;
|
|
45342
|
+
isExactCount?: Maybe<Scalars['Boolean']['output']>;
|
|
45343
|
+
pageInfo: PageInfo;
|
|
45344
|
+
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
45345
|
+
};
|
|
45346
|
+
export declare type GraphStoreSimplifiedPrInProviderRepoEdge = {
|
|
45347
|
+
__typename?: 'GraphStoreSimplifiedPrInProviderRepoEdge';
|
|
45348
|
+
createdAt: Scalars['DateTime']['output'];
|
|
45349
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
45350
|
+
id: Scalars['ID']['output'];
|
|
45351
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
45352
|
+
node?: Maybe<GraphStoreSimplifiedPrInProviderRepoUnion>;
|
|
45353
|
+
};
|
|
45354
|
+
export declare type GraphStoreSimplifiedPrInProviderRepoInverseConnection = HasPageInfo & HasTotal & {
|
|
45355
|
+
__typename?: 'GraphStoreSimplifiedPrInProviderRepoInverseConnection';
|
|
45356
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedPrInProviderRepoInverseEdge>>>;
|
|
45357
|
+
isExactCount?: Maybe<Scalars['Boolean']['output']>;
|
|
45358
|
+
pageInfo: PageInfo;
|
|
45359
|
+
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
45360
|
+
};
|
|
45361
|
+
export declare type GraphStoreSimplifiedPrInProviderRepoInverseEdge = {
|
|
45362
|
+
__typename?: 'GraphStoreSimplifiedPrInProviderRepoInverseEdge';
|
|
45363
|
+
createdAt: Scalars['DateTime']['output'];
|
|
45364
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
45365
|
+
id: Scalars['ID']['output'];
|
|
45366
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
45367
|
+
node?: Maybe<GraphStoreSimplifiedPrInProviderRepoInverseUnion>;
|
|
45368
|
+
};
|
|
45369
|
+
export declare type GraphStoreSimplifiedPrInProviderRepoInverseUnion = DevOpsPullRequestDetails | ExternalPullRequest;
|
|
45370
|
+
export declare type GraphStoreSimplifiedPrInProviderRepoUnion = BitbucketRepository;
|
|
45099
45371
|
export declare type GraphStoreSimplifiedPrInRepoConnection = HasPageInfo & {
|
|
45100
45372
|
__typename?: 'GraphStoreSimplifiedPrInRepoConnection';
|
|
45101
45373
|
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedPrInRepoEdge>>>;
|
|
@@ -45508,6 +45780,21 @@ export declare type GraphStoreSimplifiedProjectAssociatedToOperationsContainerIn
|
|
|
45508
45780
|
};
|
|
45509
45781
|
export declare type GraphStoreSimplifiedProjectAssociatedToOperationsContainerInverseUnion = JiraProject;
|
|
45510
45782
|
export declare type GraphStoreSimplifiedProjectAssociatedToOperationsContainerUnion = DevOpsService;
|
|
45783
|
+
export declare type GraphStoreSimplifiedProjectAssociatedToSecurityContainerConnection = HasPageInfo & HasTotal & {
|
|
45784
|
+
__typename?: 'GraphStoreSimplifiedProjectAssociatedToSecurityContainerConnection';
|
|
45785
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedProjectAssociatedToSecurityContainerEdge>>>;
|
|
45786
|
+
isExactCount?: Maybe<Scalars['Boolean']['output']>;
|
|
45787
|
+
pageInfo: PageInfo;
|
|
45788
|
+
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
45789
|
+
};
|
|
45790
|
+
export declare type GraphStoreSimplifiedProjectAssociatedToSecurityContainerEdge = {
|
|
45791
|
+
__typename?: 'GraphStoreSimplifiedProjectAssociatedToSecurityContainerEdge';
|
|
45792
|
+
createdAt: Scalars['DateTime']['output'];
|
|
45793
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
45794
|
+
id: Scalars['ID']['output'];
|
|
45795
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
45796
|
+
node?: Maybe<GraphStoreSimplifiedProjectAssociatedToSecurityContainerUnion>;
|
|
45797
|
+
};
|
|
45511
45798
|
export declare type GraphStoreSimplifiedProjectAssociatedToSecurityContainerInverseConnection = HasPageInfo & HasTotal & {
|
|
45512
45799
|
__typename?: 'GraphStoreSimplifiedProjectAssociatedToSecurityContainerInverseConnection';
|
|
45513
45800
|
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedProjectAssociatedToSecurityContainerInverseEdge>>>;
|
|
@@ -45524,6 +45811,7 @@ export declare type GraphStoreSimplifiedProjectAssociatedToSecurityContainerInve
|
|
|
45524
45811
|
node?: Maybe<GraphStoreSimplifiedProjectAssociatedToSecurityContainerInverseUnion>;
|
|
45525
45812
|
};
|
|
45526
45813
|
export declare type GraphStoreSimplifiedProjectAssociatedToSecurityContainerInverseUnion = JiraProject;
|
|
45814
|
+
export declare type GraphStoreSimplifiedProjectAssociatedToSecurityContainerUnion = ThirdPartySecurityContainer;
|
|
45527
45815
|
export declare type GraphStoreSimplifiedProjectAssociatedVulnerabilityConnection = HasPageInfo & HasTotal & {
|
|
45528
45816
|
__typename?: 'GraphStoreSimplifiedProjectAssociatedVulnerabilityConnection';
|
|
45529
45817
|
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedProjectAssociatedVulnerabilityEdge>>>;
|
|
@@ -45917,6 +46205,20 @@ export declare type GraphStoreSimplifiedSecurityContainerAssociatedToVulnerabili
|
|
|
45917
46205
|
lastUpdated: Scalars['DateTime']['output'];
|
|
45918
46206
|
node?: Maybe<GraphStoreSimplifiedSecurityContainerAssociatedToVulnerabilityUnion>;
|
|
45919
46207
|
};
|
|
46208
|
+
export declare type GraphStoreSimplifiedSecurityContainerAssociatedToVulnerabilityInverseConnection = HasPageInfo & {
|
|
46209
|
+
__typename?: 'GraphStoreSimplifiedSecurityContainerAssociatedToVulnerabilityInverseConnection';
|
|
46210
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedSecurityContainerAssociatedToVulnerabilityInverseEdge>>>;
|
|
46211
|
+
pageInfo: PageInfo;
|
|
46212
|
+
};
|
|
46213
|
+
export declare type GraphStoreSimplifiedSecurityContainerAssociatedToVulnerabilityInverseEdge = {
|
|
46214
|
+
__typename?: 'GraphStoreSimplifiedSecurityContainerAssociatedToVulnerabilityInverseEdge';
|
|
46215
|
+
createdAt: Scalars['DateTime']['output'];
|
|
46216
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
46217
|
+
id: Scalars['ID']['output'];
|
|
46218
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
46219
|
+
node?: Maybe<GraphStoreSimplifiedSecurityContainerAssociatedToVulnerabilityInverseUnion>;
|
|
46220
|
+
};
|
|
46221
|
+
export declare type GraphStoreSimplifiedSecurityContainerAssociatedToVulnerabilityInverseUnion = ThirdPartySecurityContainer;
|
|
45920
46222
|
export declare type GraphStoreSimplifiedSecurityContainerAssociatedToVulnerabilityUnion = DevOpsSecurityVulnerabilityDetails | ExternalVulnerability;
|
|
45921
46223
|
export declare type GraphStoreSimplifiedServiceAssociatedBranchConnection = HasPageInfo & {
|
|
45922
46224
|
__typename?: 'GraphStoreSimplifiedServiceAssociatedBranchConnection';
|
|
@@ -45946,6 +46248,34 @@ export declare type GraphStoreSimplifiedServiceAssociatedBranchInverseEdge = {
|
|
|
45946
46248
|
};
|
|
45947
46249
|
export declare type GraphStoreSimplifiedServiceAssociatedBranchInverseUnion = DevOpsService;
|
|
45948
46250
|
export declare type GraphStoreSimplifiedServiceAssociatedBranchUnion = ExternalBranch;
|
|
46251
|
+
export declare type GraphStoreSimplifiedServiceAssociatedBuildConnection = HasPageInfo & {
|
|
46252
|
+
__typename?: 'GraphStoreSimplifiedServiceAssociatedBuildConnection';
|
|
46253
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedServiceAssociatedBuildEdge>>>;
|
|
46254
|
+
pageInfo: PageInfo;
|
|
46255
|
+
};
|
|
46256
|
+
export declare type GraphStoreSimplifiedServiceAssociatedBuildEdge = {
|
|
46257
|
+
__typename?: 'GraphStoreSimplifiedServiceAssociatedBuildEdge';
|
|
46258
|
+
createdAt: Scalars['DateTime']['output'];
|
|
46259
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
46260
|
+
id: Scalars['ID']['output'];
|
|
46261
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
46262
|
+
node?: Maybe<GraphStoreSimplifiedServiceAssociatedBuildUnion>;
|
|
46263
|
+
};
|
|
46264
|
+
export declare type GraphStoreSimplifiedServiceAssociatedBuildInverseConnection = HasPageInfo & {
|
|
46265
|
+
__typename?: 'GraphStoreSimplifiedServiceAssociatedBuildInverseConnection';
|
|
46266
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedServiceAssociatedBuildInverseEdge>>>;
|
|
46267
|
+
pageInfo: PageInfo;
|
|
46268
|
+
};
|
|
46269
|
+
export declare type GraphStoreSimplifiedServiceAssociatedBuildInverseEdge = {
|
|
46270
|
+
__typename?: 'GraphStoreSimplifiedServiceAssociatedBuildInverseEdge';
|
|
46271
|
+
createdAt: Scalars['DateTime']['output'];
|
|
46272
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
46273
|
+
id: Scalars['ID']['output'];
|
|
46274
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
46275
|
+
node?: Maybe<GraphStoreSimplifiedServiceAssociatedBuildInverseUnion>;
|
|
46276
|
+
};
|
|
46277
|
+
export declare type GraphStoreSimplifiedServiceAssociatedBuildInverseUnion = DevOpsService;
|
|
46278
|
+
export declare type GraphStoreSimplifiedServiceAssociatedBuildUnion = ExternalBuildInfo;
|
|
45949
46279
|
export declare type GraphStoreSimplifiedServiceAssociatedDeploymentConnection = HasPageInfo & {
|
|
45950
46280
|
__typename?: 'GraphStoreSimplifiedServiceAssociatedDeploymentConnection';
|
|
45951
46281
|
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedServiceAssociatedDeploymentEdge>>>;
|
|
@@ -45974,6 +46304,34 @@ export declare type GraphStoreSimplifiedServiceAssociatedDeploymentInverseEdge =
|
|
|
45974
46304
|
};
|
|
45975
46305
|
export declare type GraphStoreSimplifiedServiceAssociatedDeploymentInverseUnion = DevOpsService;
|
|
45976
46306
|
export declare type GraphStoreSimplifiedServiceAssociatedDeploymentUnion = DeploymentSummary | ExternalDeployment;
|
|
46307
|
+
export declare type GraphStoreSimplifiedServiceAssociatedFeatureFlagConnection = HasPageInfo & {
|
|
46308
|
+
__typename?: 'GraphStoreSimplifiedServiceAssociatedFeatureFlagConnection';
|
|
46309
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedServiceAssociatedFeatureFlagEdge>>>;
|
|
46310
|
+
pageInfo: PageInfo;
|
|
46311
|
+
};
|
|
46312
|
+
export declare type GraphStoreSimplifiedServiceAssociatedFeatureFlagEdge = {
|
|
46313
|
+
__typename?: 'GraphStoreSimplifiedServiceAssociatedFeatureFlagEdge';
|
|
46314
|
+
createdAt: Scalars['DateTime']['output'];
|
|
46315
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
46316
|
+
id: Scalars['ID']['output'];
|
|
46317
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
46318
|
+
node?: Maybe<GraphStoreSimplifiedServiceAssociatedFeatureFlagUnion>;
|
|
46319
|
+
};
|
|
46320
|
+
export declare type GraphStoreSimplifiedServiceAssociatedFeatureFlagInverseConnection = HasPageInfo & {
|
|
46321
|
+
__typename?: 'GraphStoreSimplifiedServiceAssociatedFeatureFlagInverseConnection';
|
|
46322
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedServiceAssociatedFeatureFlagInverseEdge>>>;
|
|
46323
|
+
pageInfo: PageInfo;
|
|
46324
|
+
};
|
|
46325
|
+
export declare type GraphStoreSimplifiedServiceAssociatedFeatureFlagInverseEdge = {
|
|
46326
|
+
__typename?: 'GraphStoreSimplifiedServiceAssociatedFeatureFlagInverseEdge';
|
|
46327
|
+
createdAt: Scalars['DateTime']['output'];
|
|
46328
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
46329
|
+
id: Scalars['ID']['output'];
|
|
46330
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
46331
|
+
node?: Maybe<GraphStoreSimplifiedServiceAssociatedFeatureFlagInverseUnion>;
|
|
46332
|
+
};
|
|
46333
|
+
export declare type GraphStoreSimplifiedServiceAssociatedFeatureFlagInverseUnion = DevOpsService;
|
|
46334
|
+
export declare type GraphStoreSimplifiedServiceAssociatedFeatureFlagUnion = DevOpsFeatureFlag | ExternalFeatureFlag;
|
|
45977
46335
|
export declare type GraphStoreSimplifiedServiceAssociatedRemoteLinkConnection = HasPageInfo & {
|
|
45978
46336
|
__typename?: 'GraphStoreSimplifiedServiceAssociatedRemoteLinkConnection';
|
|
45979
46337
|
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedServiceAssociatedRemoteLinkEdge>>>;
|
|
@@ -52010,6 +52368,7 @@ export declare type HelpObjectStoreArticleSearchResult = {
|
|
|
52010
52368
|
export declare type HelpObjectStoreArticleSearchResults = {
|
|
52011
52369
|
__typename?: 'HelpObjectStoreArticleSearchResults';
|
|
52012
52370
|
results: Array<HelpObjectStoreArticleSearchResult>;
|
|
52371
|
+
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
52013
52372
|
};
|
|
52014
52373
|
export declare enum HelpObjectStoreArticleSearchStrategy {
|
|
52015
52374
|
ContentSearch = "CONTENT_SEARCH",
|
|
@@ -70426,6 +70785,12 @@ export declare type JsmChatAppendixActionItem = {
|
|
|
70426
70785
|
__typename?: 'JsmChatAppendixActionItem';
|
|
70427
70786
|
id: Scalars['String']['output'];
|
|
70428
70787
|
label: Scalars['String']['output'];
|
|
70788
|
+
redirectAction?: Maybe<JsmChatAppendixRedirectAction>;
|
|
70789
|
+
};
|
|
70790
|
+
export declare type JsmChatAppendixRedirectAction = {
|
|
70791
|
+
__typename?: 'JsmChatAppendixRedirectAction';
|
|
70792
|
+
baseUrl: Scalars['String']['output'];
|
|
70793
|
+
query: Scalars['String']['output'];
|
|
70429
70794
|
};
|
|
70430
70795
|
export declare type JsmChatAssistConfig = {
|
|
70431
70796
|
__typename?: 'JsmChatAssistConfig';
|
|
@@ -74753,6 +75118,15 @@ export declare type MercuryAggregatedPortfolioStatusCount = {
|
|
|
74753
75118
|
__typename?: 'MercuryAggregatedPortfolioStatusCount';
|
|
74754
75119
|
children: MercuryFocusAreaStatusCount;
|
|
74755
75120
|
};
|
|
75121
|
+
export declare type MercuryArchiveFocusAreaInput = {
|
|
75122
|
+
cloudId: Scalars['ID']['input'];
|
|
75123
|
+
id: Scalars['ID']['input'];
|
|
75124
|
+
};
|
|
75125
|
+
export declare type MercuryArchiveFocusAreaPayload = Payload & {
|
|
75126
|
+
__typename?: 'MercuryArchiveFocusAreaPayload';
|
|
75127
|
+
errors?: Maybe<Array<MutationError>>;
|
|
75128
|
+
success: Scalars['Boolean']['output'];
|
|
75129
|
+
};
|
|
74756
75130
|
export declare type MercuryBudgetAggregation = {
|
|
74757
75131
|
__typename?: 'MercuryBudgetAggregation';
|
|
74758
75132
|
aggregatedBudget?: Maybe<Scalars['BigDecimal']['output']>;
|
|
@@ -75122,6 +75496,7 @@ export declare type MercuryFocusArea = Node & {
|
|
|
75122
75496
|
aboutContent: MercuryFocusAreaAbout;
|
|
75123
75497
|
aggregatedFocusAreaStatusCount?: Maybe<MercuryAggregatedFocusAreaStatusCount>;
|
|
75124
75498
|
allocations?: Maybe<MercuryFocusAreaAllocations>;
|
|
75499
|
+
archived: Scalars['Boolean']['output'];
|
|
75125
75500
|
ari: Scalars['String']['output'];
|
|
75126
75501
|
createdDate: Scalars['String']['output'];
|
|
75127
75502
|
externalId?: Maybe<Scalars['String']['output']>;
|
|
@@ -75521,6 +75896,7 @@ export declare type MercuryMediaToken = {
|
|
|
75521
75896
|
export declare type MercuryMutationApi = {
|
|
75522
75897
|
__typename?: 'MercuryMutationApi';
|
|
75523
75898
|
addWatcherToFocusArea?: Maybe<MercuryAddWatcherToFocusAreaPayload>;
|
|
75899
|
+
archiveFocusArea?: Maybe<MercuryArchiveFocusAreaPayload>;
|
|
75524
75900
|
createComment?: Maybe<MercuryCreateCommentPayload>;
|
|
75525
75901
|
createFocusArea?: Maybe<MercuryCreateFocusAreaPayload>;
|
|
75526
75902
|
createFocusAreaStatusUpdate?: Maybe<MercuryCreateFocusAreaStatusUpdatePayload>;
|
|
@@ -75542,6 +75918,7 @@ export declare type MercuryMutationApi = {
|
|
|
75542
75918
|
removeWatcherFromFocusArea?: Maybe<MercuryRemoveWatcherFromFocusAreaPayload>;
|
|
75543
75919
|
setPreference?: Maybe<MercurySetPreferencePayload>;
|
|
75544
75920
|
transitionFocusAreaStatus?: Maybe<MercuryUpdateFocusAreaPayload>;
|
|
75921
|
+
unarchiveFocusArea?: Maybe<MercuryUnarchiveFocusAreaPayload>;
|
|
75545
75922
|
updateComment?: Maybe<MercuryUpdateCommentPayload>;
|
|
75546
75923
|
updateFocusAreaAboutContent?: Maybe<MercuryUpdateFocusAreaPayload>;
|
|
75547
75924
|
updateFocusAreaName?: Maybe<MercuryUpdateFocusAreaPayload>;
|
|
@@ -75553,6 +75930,9 @@ export declare type MercuryMutationApi = {
|
|
|
75553
75930
|
export declare type MercuryMutationApiAddWatcherToFocusAreaArgs = {
|
|
75554
75931
|
input: MercuryAddWatcherToFocusAreaInput;
|
|
75555
75932
|
};
|
|
75933
|
+
export declare type MercuryMutationApiArchiveFocusAreaArgs = {
|
|
75934
|
+
input: MercuryArchiveFocusAreaInput;
|
|
75935
|
+
};
|
|
75556
75936
|
export declare type MercuryMutationApiCreateCommentArgs = {
|
|
75557
75937
|
input: MercuryCreateCommentInput;
|
|
75558
75938
|
};
|
|
@@ -75616,6 +75996,9 @@ export declare type MercuryMutationApiSetPreferenceArgs = {
|
|
|
75616
75996
|
export declare type MercuryMutationApiTransitionFocusAreaStatusArgs = {
|
|
75617
75997
|
input: MercuryTransitionFocusAreaStatusInput;
|
|
75618
75998
|
};
|
|
75999
|
+
export declare type MercuryMutationApiUnarchiveFocusAreaArgs = {
|
|
76000
|
+
input: MercuryUnarchiveFocusAreaInput;
|
|
76001
|
+
};
|
|
75619
76002
|
export declare type MercuryMutationApiUpdateCommentArgs = {
|
|
75620
76003
|
input: MercuryUpdateCommentInput;
|
|
75621
76004
|
};
|
|
@@ -76389,6 +76772,15 @@ export declare type MercuryTransitionStrategicEventStatusInput = {
|
|
|
76389
76772
|
id: Scalars['ID']['input'];
|
|
76390
76773
|
statusTransitionId: Scalars['ID']['input'];
|
|
76391
76774
|
};
|
|
76775
|
+
export declare type MercuryUnarchiveFocusAreaInput = {
|
|
76776
|
+
cloudId: Scalars['ID']['input'];
|
|
76777
|
+
id: Scalars['ID']['input'];
|
|
76778
|
+
};
|
|
76779
|
+
export declare type MercuryUnarchiveFocusAreaPayload = Payload & {
|
|
76780
|
+
__typename?: 'MercuryUnarchiveFocusAreaPayload';
|
|
76781
|
+
errors?: Maybe<Array<MutationError>>;
|
|
76782
|
+
success: Scalars['Boolean']['output'];
|
|
76783
|
+
};
|
|
76392
76784
|
export declare type MercuryUpdateChangeProposalDescriptionInput = {
|
|
76393
76785
|
cloudId?: InputMaybe<Scalars['ID']['input']>;
|
|
76394
76786
|
description: Scalars['String']['input'];
|
|
@@ -77022,6 +77414,9 @@ export declare type Mutation = {
|
|
|
77022
77414
|
createSystemSpace?: Maybe<Space>;
|
|
77023
77415
|
createTemplate?: Maybe<ContentTemplate>;
|
|
77024
77416
|
createWebTriggerUrl?: Maybe<CreateWebTriggerUrlResponse>;
|
|
77417
|
+
csmAi_createAction?: Maybe<CsmAiCreateActionPayload>;
|
|
77418
|
+
csmAi_deleteAction?: Maybe<CsmAiDeleteActionPayload>;
|
|
77419
|
+
csmAi_updateAction?: Maybe<CsmAiUpdateActionPayload>;
|
|
77025
77420
|
csmAi_updateAgent?: Maybe<CsmAiUpdateAgentPayload>;
|
|
77026
77421
|
customerService?: Maybe<CustomerServiceMutationApi>;
|
|
77027
77422
|
customerSupport?: Maybe<SupportRequestCatalogMutationApi>;
|
|
@@ -78180,6 +78575,22 @@ export declare type MutationCreateWebTriggerUrlArgs = {
|
|
|
78180
78575
|
forceCreate?: InputMaybe<Scalars['Boolean']['input']>;
|
|
78181
78576
|
input: WebTriggerUrlInput;
|
|
78182
78577
|
};
|
|
78578
|
+
export declare type MutationCsmAi_CreateActionArgs = {
|
|
78579
|
+
csmAiHubId: Scalars['ID']['input'];
|
|
78580
|
+
helpCenterAri: Scalars['ID']['input'];
|
|
78581
|
+
input: CsmAiCreateActionInput;
|
|
78582
|
+
};
|
|
78583
|
+
export declare type MutationCsmAi_DeleteActionArgs = {
|
|
78584
|
+
csmAiActionId: Scalars['ID']['input'];
|
|
78585
|
+
csmAiHubId: Scalars['ID']['input'];
|
|
78586
|
+
helpCenterAri: Scalars['ID']['input'];
|
|
78587
|
+
};
|
|
78588
|
+
export declare type MutationCsmAi_UpdateActionArgs = {
|
|
78589
|
+
csmAiActionId: Scalars['ID']['input'];
|
|
78590
|
+
csmAiHubId: Scalars['ID']['input'];
|
|
78591
|
+
helpCenterAri: Scalars['ID']['input'];
|
|
78592
|
+
input: CsmAiUpdateActionInput;
|
|
78593
|
+
};
|
|
78183
78594
|
export declare type MutationCsmAi_UpdateAgentArgs = {
|
|
78184
78595
|
csmAgentId: Scalars['ID']['input'];
|
|
78185
78596
|
helpCenterAri: Scalars['ID']['input'];
|
|
@@ -78318,6 +78729,7 @@ export declare type MutationDevai_FlowCreateArgs = {
|
|
|
78318
78729
|
createdBy: Scalars['String']['input'];
|
|
78319
78730
|
issueARI?: InputMaybe<Scalars['ID']['input']>;
|
|
78320
78731
|
jiraHost: Scalars['String']['input'];
|
|
78732
|
+
jiraIssueJSON?: InputMaybe<Scalars['String']['input']>;
|
|
78321
78733
|
repoUrl: Scalars['URL']['input'];
|
|
78322
78734
|
};
|
|
78323
78735
|
export declare type MutationDevai_FlowSessionCompleteArgs = {
|
|
@@ -87549,7 +87961,9 @@ export declare type SearchResultGoogleSpreadsheet = SearchL2FeatureProvider & Se
|
|
|
87549
87961
|
};
|
|
87550
87962
|
export declare type SearchResultGraphDocument = SearchL2FeatureProvider & SearchResult & {
|
|
87551
87963
|
__typename?: 'SearchResultGraphDocument';
|
|
87964
|
+
allContributors?: Maybe<Array<ThirdPartyUser>>;
|
|
87552
87965
|
bodyText?: Maybe<Scalars['String']['output']>;
|
|
87966
|
+
containerName?: Maybe<Scalars['String']['output']>;
|
|
87553
87967
|
description: Scalars['String']['output'];
|
|
87554
87968
|
entity?: Maybe<SearchResultEntity>;
|
|
87555
87969
|
excerpt?: Maybe<Scalars['String']['output']>;
|
|
@@ -88944,13 +89358,18 @@ export declare type ShepherdDetectionSettingSetValueInput = {
|
|
|
88944
89358
|
stringValues?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
88945
89359
|
thresholdValue?: InputMaybe<ShepherdRateThresholdValue>;
|
|
88946
89360
|
};
|
|
88947
|
-
export declare type ShepherdDetectionSettingValueType = ShepherdDetectionConfluenceEnabledSetting | ShepherdDetectionExclusionsSetting | ShepherdDetectionJiraEnabledSetting | ShepherdRateThresholdSetting;
|
|
89361
|
+
export declare type ShepherdDetectionSettingValueType = ShepherdDetectionConfluenceEnabledSetting | ShepherdDetectionExclusionsSetting | ShepherdDetectionJiraEnabledSetting | ShepherdDetectionUserActivityEnabledSetting | ShepherdRateThresholdSetting;
|
|
88948
89362
|
export declare type ShepherdDetectionUpdateSettingValuePayload = Payload & {
|
|
88949
89363
|
__typename?: 'ShepherdDetectionUpdateSettingValuePayload';
|
|
88950
89364
|
errors?: Maybe<Array<MutationError>>;
|
|
88951
89365
|
node?: Maybe<ShepherdDetectionSetting>;
|
|
88952
89366
|
success: Scalars['Boolean']['output'];
|
|
88953
89367
|
};
|
|
89368
|
+
export declare type ShepherdDetectionUserActivityEnabledSetting = {
|
|
89369
|
+
__typename?: 'ShepherdDetectionUserActivityEnabledSetting';
|
|
89370
|
+
booleanDefault: Scalars['Boolean']['output'];
|
|
89371
|
+
booleanValue?: Maybe<Scalars['Boolean']['output']>;
|
|
89372
|
+
};
|
|
88954
89373
|
export declare type ShepherdDspListMetadata = {
|
|
88955
89374
|
__typename?: 'ShepherdDspListMetadata';
|
|
88956
89375
|
isSwitched?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -89603,6 +90022,7 @@ export declare type ShepherdWorkspaceSettingValueInput = {
|
|
|
89603
90022
|
confluenceEnabledValue?: InputMaybe<Scalars['Boolean']['input']>;
|
|
89604
90023
|
jiraEnabledValue?: InputMaybe<Scalars['Boolean']['input']>;
|
|
89605
90024
|
thresholdValue?: InputMaybe<ShepherdRateThresholdValue>;
|
|
90025
|
+
userActivityEnabledValue?: InputMaybe<Scalars['Boolean']['input']>;
|
|
89606
90026
|
};
|
|
89607
90027
|
export declare type ShepherdWorkspaceUpdateCustomDetectionInput = {
|
|
89608
90028
|
description?: InputMaybe<Scalars['String']['input']>;
|