@forge/cli-shared 3.22.0-next.7 → 3.22.1-next.0
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 +41 -0
- package/out/graphql/graphql-types.d.ts +1744 -143
- package/out/graphql/graphql-types.d.ts.map +1 -1
- package/out/graphql/graphql-types.js +203 -13
- package/package.json +3 -3
|
@@ -690,6 +690,8 @@ export declare enum ApiGroup {
|
|
|
690
690
|
SurfacePlatform = "SURFACE_PLATFORM",
|
|
691
691
|
Teams = "TEAMS",
|
|
692
692
|
VirtualAgent = "VIRTUAL_AGENT",
|
|
693
|
+
WebTriggers = "WEB_TRIGGERS",
|
|
694
|
+
XenInvocationService = "XEN_INVOCATION_SERVICE",
|
|
693
695
|
XenLogsApi = "XEN_LOGS_API"
|
|
694
696
|
}
|
|
695
697
|
export type App = {
|
|
@@ -4687,6 +4689,15 @@ export type CompassRichTextObject = {
|
|
|
4687
4689
|
__typename?: 'CompassRichTextObject';
|
|
4688
4690
|
adf?: Maybe<Scalars['String']['output']>;
|
|
4689
4691
|
};
|
|
4692
|
+
export type CompassScoreStatisticsHistoryComponentTypesFilter = {
|
|
4693
|
+
in: Array<Scalars['ID']['input']>;
|
|
4694
|
+
};
|
|
4695
|
+
export type CompassScoreStatisticsHistoryDateFilter = {
|
|
4696
|
+
startFrom: Scalars['DateTime']['input'];
|
|
4697
|
+
};
|
|
4698
|
+
export type CompassScoreStatisticsHistoryOwnersFilter = {
|
|
4699
|
+
in: Array<Scalars['ID']['input']>;
|
|
4700
|
+
};
|
|
4690
4701
|
export type CompassScorecard = Node & {
|
|
4691
4702
|
__typename?: 'CompassScorecard';
|
|
4692
4703
|
appliedToComponentStats?: Maybe<CompassScorecardComponentStatsQueryResult>;
|
|
@@ -4697,6 +4708,7 @@ export type CompassScorecard = Node & {
|
|
|
4697
4708
|
componentType: CompassComponentType;
|
|
4698
4709
|
componentTypeId: Scalars['ID']['output'];
|
|
4699
4710
|
componentTypeIds: Array<Scalars['ID']['output']>;
|
|
4711
|
+
criteriaScoreStatisticsHistories?: Maybe<CompassScorecardCriteriaScoreStatisticsHistoryConnection>;
|
|
4700
4712
|
criterias?: Maybe<Array<CompassScorecardCriteria>>;
|
|
4701
4713
|
description?: Maybe<Scalars['String']['output']>;
|
|
4702
4714
|
id: Scalars['ID']['output'];
|
|
@@ -4704,14 +4716,25 @@ export type CompassScorecard = Node & {
|
|
|
4704
4716
|
name: Scalars['String']['output'];
|
|
4705
4717
|
owner?: Maybe<User>;
|
|
4706
4718
|
scorecardScore?: Maybe<CompassScorecardScore>;
|
|
4719
|
+
scorecardScoreStatisticsHistories?: Maybe<CompassScorecardScoreStatisticsHistoryConnection>;
|
|
4707
4720
|
type: Scalars['String']['output'];
|
|
4708
4721
|
};
|
|
4709
4722
|
export type CompassScorecardAppliedToComponentsArgs = {
|
|
4710
4723
|
query?: InputMaybe<CompassScorecardAppliedToComponentsQuery>;
|
|
4711
4724
|
};
|
|
4725
|
+
export type CompassScorecardCriteriaScoreStatisticsHistoriesArgs = {
|
|
4726
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
4727
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
4728
|
+
query?: InputMaybe<CompassScorecardCriteriaScoreStatisticsHistoryQuery>;
|
|
4729
|
+
};
|
|
4712
4730
|
export type CompassScorecardScorecardScoreArgs = {
|
|
4713
4731
|
query?: InputMaybe<CompassScorecardScoreQuery>;
|
|
4714
4732
|
};
|
|
4733
|
+
export type CompassScorecardScorecardScoreStatisticsHistoriesArgs = {
|
|
4734
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
4735
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
4736
|
+
query?: InputMaybe<CompassScorecardScoreStatisticsHistoryQuery>;
|
|
4737
|
+
};
|
|
4715
4738
|
export type CompassScorecardAppliedToComponentsConnection = {
|
|
4716
4739
|
__typename?: 'CompassScorecardAppliedToComponentsConnection';
|
|
4717
4740
|
edges?: Maybe<Array<CompassScorecardAppliedToComponentsEdge>>;
|
|
@@ -4804,6 +4827,31 @@ export type CompassScorecardCriteriaScore = {
|
|
|
4804
4827
|
export type CompassScorecardCriteriaScoreQuery = {
|
|
4805
4828
|
componentId: Scalars['ID']['input'];
|
|
4806
4829
|
};
|
|
4830
|
+
export type CompassScorecardCriteriaScoreStatisticsHistory = {
|
|
4831
|
+
__typename?: 'CompassScorecardCriteriaScoreStatisticsHistory';
|
|
4832
|
+
criteriaStatistics?: Maybe<Array<CompassScorecardCriterionScoreStatistic>>;
|
|
4833
|
+
date: Scalars['DateTime']['output'];
|
|
4834
|
+
totalCount: Scalars['Int']['output'];
|
|
4835
|
+
};
|
|
4836
|
+
export type CompassScorecardCriteriaScoreStatisticsHistoryConnection = {
|
|
4837
|
+
__typename?: 'CompassScorecardCriteriaScoreStatisticsHistoryConnection';
|
|
4838
|
+
edges?: Maybe<Array<CompassScorecardCriteriaScoreStatisticsHistoryEdge>>;
|
|
4839
|
+
nodes?: Maybe<Array<CompassScorecardCriteriaScoreStatisticsHistory>>;
|
|
4840
|
+
pageInfo: PageInfo;
|
|
4841
|
+
};
|
|
4842
|
+
export type CompassScorecardCriteriaScoreStatisticsHistoryEdge = {
|
|
4843
|
+
__typename?: 'CompassScorecardCriteriaScoreStatisticsHistoryEdge';
|
|
4844
|
+
cursor: Scalars['String']['output'];
|
|
4845
|
+
node?: Maybe<CompassScorecardCriteriaScoreStatisticsHistory>;
|
|
4846
|
+
};
|
|
4847
|
+
export type CompassScorecardCriteriaScoreStatisticsHistoryQuery = {
|
|
4848
|
+
filter?: InputMaybe<CompassScorecardCriteriaScoreStatisticsHistoryQueryFilter>;
|
|
4849
|
+
};
|
|
4850
|
+
export type CompassScorecardCriteriaScoreStatisticsHistoryQueryFilter = {
|
|
4851
|
+
componentTypes?: InputMaybe<CompassScoreStatisticsHistoryComponentTypesFilter>;
|
|
4852
|
+
date?: InputMaybe<CompassScoreStatisticsHistoryDateFilter>;
|
|
4853
|
+
owners?: InputMaybe<CompassScoreStatisticsHistoryOwnersFilter>;
|
|
4854
|
+
};
|
|
4807
4855
|
export type CompassScorecardCriteriaStats = {
|
|
4808
4856
|
__typename?: 'CompassScorecardCriteriaStats';
|
|
4809
4857
|
error: Scalars['Int']['output'];
|
|
@@ -4812,6 +4860,21 @@ export type CompassScorecardCriteriaStats = {
|
|
|
4812
4860
|
scorecardCriteriaId: Scalars['ID']['output'];
|
|
4813
4861
|
weight: Scalars['Int']['output'];
|
|
4814
4862
|
};
|
|
4863
|
+
export type CompassScorecardCriterionScoreStatistic = {
|
|
4864
|
+
__typename?: 'CompassScorecardCriterionScoreStatistic';
|
|
4865
|
+
criterionId: Scalars['ID']['output'];
|
|
4866
|
+
scoreStatusStatistics?: Maybe<Array<CompassScorecardCriterionScoreStatusStatistic>>;
|
|
4867
|
+
totalCount: Scalars['Int']['output'];
|
|
4868
|
+
};
|
|
4869
|
+
export type CompassScorecardCriterionScoreStatus = {
|
|
4870
|
+
__typename?: 'CompassScorecardCriterionScoreStatus';
|
|
4871
|
+
name: Scalars['String']['output'];
|
|
4872
|
+
};
|
|
4873
|
+
export type CompassScorecardCriterionScoreStatusStatistic = {
|
|
4874
|
+
__typename?: 'CompassScorecardCriterionScoreStatusStatistic';
|
|
4875
|
+
count: Scalars['Int']['output'];
|
|
4876
|
+
scoreStatus: CompassScorecardCriterionScoreStatus;
|
|
4877
|
+
};
|
|
4815
4878
|
export type CompassScorecardEdge = {
|
|
4816
4879
|
__typename?: 'CompassScorecardEdge';
|
|
4817
4880
|
cursor: Scalars['String']['output'];
|
|
@@ -4874,6 +4937,42 @@ export type CompassScorecardScoreQuery = {
|
|
|
4874
4937
|
componentId: Scalars['ID']['input'];
|
|
4875
4938
|
};
|
|
4876
4939
|
export type CompassScorecardScoreResult = CompassScorecardScore | QueryError;
|
|
4940
|
+
export type CompassScorecardScoreStatistic = {
|
|
4941
|
+
__typename?: 'CompassScorecardScoreStatistic';
|
|
4942
|
+
count: Scalars['Int']['output'];
|
|
4943
|
+
scoreStatus: CompassScorecardScoreStatus;
|
|
4944
|
+
};
|
|
4945
|
+
export type CompassScorecardScoreStatisticsHistory = {
|
|
4946
|
+
__typename?: 'CompassScorecardScoreStatisticsHistory';
|
|
4947
|
+
date: Scalars['DateTime']['output'];
|
|
4948
|
+
statistics?: Maybe<Array<CompassScorecardScoreStatistic>>;
|
|
4949
|
+
totalCount: Scalars['Int']['output'];
|
|
4950
|
+
};
|
|
4951
|
+
export type CompassScorecardScoreStatisticsHistoryConnection = {
|
|
4952
|
+
__typename?: 'CompassScorecardScoreStatisticsHistoryConnection';
|
|
4953
|
+
edges?: Maybe<Array<CompassScorecardScoreStatisticsHistoryEdge>>;
|
|
4954
|
+
nodes?: Maybe<Array<CompassScorecardScoreStatisticsHistory>>;
|
|
4955
|
+
pageInfo: PageInfo;
|
|
4956
|
+
};
|
|
4957
|
+
export type CompassScorecardScoreStatisticsHistoryEdge = {
|
|
4958
|
+
__typename?: 'CompassScorecardScoreStatisticsHistoryEdge';
|
|
4959
|
+
cursor: Scalars['String']['output'];
|
|
4960
|
+
node?: Maybe<CompassScorecardScoreStatisticsHistory>;
|
|
4961
|
+
};
|
|
4962
|
+
export type CompassScorecardScoreStatisticsHistoryQuery = {
|
|
4963
|
+
filter?: InputMaybe<CompassScorecardScoreStatisticsHistoryQueryFilter>;
|
|
4964
|
+
};
|
|
4965
|
+
export type CompassScorecardScoreStatisticsHistoryQueryFilter = {
|
|
4966
|
+
componentTypes?: InputMaybe<CompassScoreStatisticsHistoryComponentTypesFilter>;
|
|
4967
|
+
date?: InputMaybe<CompassScoreStatisticsHistoryDateFilter>;
|
|
4968
|
+
owners?: InputMaybe<CompassScoreStatisticsHistoryOwnersFilter>;
|
|
4969
|
+
};
|
|
4970
|
+
export type CompassScorecardScoreStatus = {
|
|
4971
|
+
__typename?: 'CompassScorecardScoreStatus';
|
|
4972
|
+
lowerBound: Scalars['Int']['output'];
|
|
4973
|
+
name: Scalars['String']['output'];
|
|
4974
|
+
upperBound: Scalars['Int']['output'];
|
|
4975
|
+
};
|
|
4877
4976
|
export type CompassScorecardScoreStatusDuration = {
|
|
4878
4977
|
__typename?: 'CompassScorecardScoreStatusDuration';
|
|
4879
4978
|
since: Scalars['DateTime']['output'];
|
|
@@ -8394,7 +8493,7 @@ export type DevOpsBranchInfo = {
|
|
|
8394
8493
|
export type DevOpsBuildDetails = {
|
|
8395
8494
|
__typename?: 'DevOpsBuildDetails';
|
|
8396
8495
|
associatedAris?: Maybe<Array<Maybe<Scalars['ID']['output']>>>;
|
|
8397
|
-
buildNumber?: Maybe<Scalars['
|
|
8496
|
+
buildNumber?: Maybe<Scalars['Long']['output']>;
|
|
8398
8497
|
description?: Maybe<Scalars['String']['output']>;
|
|
8399
8498
|
displayName?: Maybe<Scalars['String']['output']>;
|
|
8400
8499
|
id: Scalars['ID']['output'];
|
|
@@ -8408,6 +8507,7 @@ export type DevOpsBuildDetails = {
|
|
|
8408
8507
|
export type DevOpsBuildProvider = DevOpsDataProvider & {
|
|
8409
8508
|
__typename?: 'DevOpsBuildProvider';
|
|
8410
8509
|
appInstallationId?: Maybe<Scalars['ID']['output']>;
|
|
8510
|
+
configState?: Maybe<JiraAppConfigState>;
|
|
8411
8511
|
documentationUrl?: Maybe<Scalars['URL']['output']>;
|
|
8412
8512
|
homeUrl?: Maybe<Scalars['URL']['output']>;
|
|
8413
8513
|
id: Scalars['ID']['output'];
|
|
@@ -8416,6 +8516,9 @@ export type DevOpsBuildProvider = DevOpsDataProvider & {
|
|
|
8416
8516
|
providerType?: Maybe<DevOpsProviderType>;
|
|
8417
8517
|
supportedActions?: Maybe<DevOpsSupportedActions>;
|
|
8418
8518
|
};
|
|
8519
|
+
export type DevOpsBuildProviderConfigStateArgs = {
|
|
8520
|
+
cloudId: Scalars['ID']['input'];
|
|
8521
|
+
};
|
|
8419
8522
|
export declare enum DevOpsBuildState {
|
|
8420
8523
|
Cancelled = "CANCELLED",
|
|
8421
8524
|
Failed = "FAILED",
|
|
@@ -8437,6 +8540,7 @@ export type DevOpsContainerRelationshipEntityPropertyInput = {
|
|
|
8437
8540
|
};
|
|
8438
8541
|
export type DevOpsDataProvider = {
|
|
8439
8542
|
appInstallationId?: Maybe<Scalars['ID']['output']>;
|
|
8543
|
+
configState?: Maybe<JiraAppConfigState>;
|
|
8440
8544
|
documentationUrl?: Maybe<Scalars['URL']['output']>;
|
|
8441
8545
|
homeUrl?: Maybe<Scalars['URL']['output']>;
|
|
8442
8546
|
id: Scalars['ID']['output'];
|
|
@@ -8445,9 +8549,13 @@ export type DevOpsDataProvider = {
|
|
|
8445
8549
|
providerType?: Maybe<DevOpsProviderType>;
|
|
8446
8550
|
supportedActions?: Maybe<DevOpsSupportedActions>;
|
|
8447
8551
|
};
|
|
8552
|
+
export type DevOpsDataProviderConfigStateArgs = {
|
|
8553
|
+
cloudId: Scalars['ID']['input'];
|
|
8554
|
+
};
|
|
8448
8555
|
export type DevOpsDeploymentProvider = DevOpsDataProvider & {
|
|
8449
8556
|
__typename?: 'DevOpsDeploymentProvider';
|
|
8450
8557
|
appInstallationId?: Maybe<Scalars['ID']['output']>;
|
|
8558
|
+
configState?: Maybe<JiraAppConfigState>;
|
|
8451
8559
|
documentationUrl?: Maybe<Scalars['URL']['output']>;
|
|
8452
8560
|
homeUrl?: Maybe<Scalars['URL']['output']>;
|
|
8453
8561
|
id: Scalars['ID']['output'];
|
|
@@ -8456,6 +8564,9 @@ export type DevOpsDeploymentProvider = DevOpsDataProvider & {
|
|
|
8456
8564
|
providerType?: Maybe<DevOpsProviderType>;
|
|
8457
8565
|
supportedActions?: Maybe<DevOpsSupportedActions>;
|
|
8458
8566
|
};
|
|
8567
|
+
export type DevOpsDeploymentProviderConfigStateArgs = {
|
|
8568
|
+
cloudId: Scalars['ID']['input'];
|
|
8569
|
+
};
|
|
8459
8570
|
export type DevOpsDesign = Node & {
|
|
8460
8571
|
__typename?: 'DevOpsDesign';
|
|
8461
8572
|
displayName?: Maybe<Scalars['String']['output']>;
|
|
@@ -8476,6 +8587,7 @@ export type DevOpsDesignProviderArgs = {
|
|
|
8476
8587
|
export type DevOpsDesignProvider = DevOpsDataProvider & {
|
|
8477
8588
|
__typename?: 'DevOpsDesignProvider';
|
|
8478
8589
|
appInstallationId?: Maybe<Scalars['ID']['output']>;
|
|
8590
|
+
configState?: Maybe<JiraAppConfigState>;
|
|
8479
8591
|
documentationUrl?: Maybe<Scalars['URL']['output']>;
|
|
8480
8592
|
grant3LOUrl?: Maybe<Scalars['String']['output']>;
|
|
8481
8593
|
handledDomainName?: Maybe<Scalars['String']['output']>;
|
|
@@ -8486,6 +8598,9 @@ export type DevOpsDesignProvider = DevOpsDataProvider & {
|
|
|
8486
8598
|
providerType?: Maybe<DevOpsProviderType>;
|
|
8487
8599
|
supportedActions?: Maybe<DevOpsSupportedActions>;
|
|
8488
8600
|
};
|
|
8601
|
+
export type DevOpsDesignProviderConfigStateArgs = {
|
|
8602
|
+
cloudId: Scalars['ID']['input'];
|
|
8603
|
+
};
|
|
8489
8604
|
export declare enum DevOpsDesignStatus {
|
|
8490
8605
|
None = "NONE",
|
|
8491
8606
|
ReadyForDevelopment = "READY_FOR_DEVELOPMENT",
|
|
@@ -8502,6 +8617,7 @@ export declare enum DevOpsDesignType {
|
|
|
8502
8617
|
export type DevOpsDevInfoProvider = DevOpsDataProvider & {
|
|
8503
8618
|
__typename?: 'DevOpsDevInfoProvider';
|
|
8504
8619
|
appInstallationId?: Maybe<Scalars['ID']['output']>;
|
|
8620
|
+
configState?: Maybe<JiraAppConfigState>;
|
|
8505
8621
|
documentationUrl?: Maybe<Scalars['URL']['output']>;
|
|
8506
8622
|
homeUrl?: Maybe<Scalars['URL']['output']>;
|
|
8507
8623
|
id: Scalars['ID']['output'];
|
|
@@ -8511,6 +8627,9 @@ export type DevOpsDevInfoProvider = DevOpsDataProvider & {
|
|
|
8511
8627
|
supportedActions?: Maybe<DevOpsSupportedActions>;
|
|
8512
8628
|
workspaces?: Maybe<ToolchainWorkspaceConnection>;
|
|
8513
8629
|
};
|
|
8630
|
+
export type DevOpsDevInfoProviderConfigStateArgs = {
|
|
8631
|
+
cloudId: Scalars['ID']['input'];
|
|
8632
|
+
};
|
|
8514
8633
|
export type DevOpsDevInfoProviderWorkspacesArgs = {
|
|
8515
8634
|
cloudId: Scalars['ID']['input'];
|
|
8516
8635
|
};
|
|
@@ -8562,6 +8681,7 @@ export type DevOpsDocumentType = {
|
|
|
8562
8681
|
export type DevOpsDocumentationProvider = DevOpsDataProvider & {
|
|
8563
8682
|
__typename?: 'DevOpsDocumentationProvider';
|
|
8564
8683
|
appInstallationId?: Maybe<Scalars['ID']['output']>;
|
|
8684
|
+
configState?: Maybe<JiraAppConfigState>;
|
|
8565
8685
|
documentationUrl?: Maybe<Scalars['URL']['output']>;
|
|
8566
8686
|
grant3LOUrl?: Maybe<Scalars['String']['output']>;
|
|
8567
8687
|
homeUrl?: Maybe<Scalars['URL']['output']>;
|
|
@@ -8572,6 +8692,9 @@ export type DevOpsDocumentationProvider = DevOpsDataProvider & {
|
|
|
8572
8692
|
providerType?: Maybe<DevOpsProviderType>;
|
|
8573
8693
|
supportedActions?: Maybe<DevOpsSupportedActions>;
|
|
8574
8694
|
};
|
|
8695
|
+
export type DevOpsDocumentationProviderConfigStateArgs = {
|
|
8696
|
+
cloudId: Scalars['ID']['input'];
|
|
8697
|
+
};
|
|
8575
8698
|
export type DevOpsDocumentationProviderLinkedContainersArgs = {
|
|
8576
8699
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
8577
8700
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
@@ -8650,6 +8773,7 @@ export type DevOpsFeatureFlagEdge = {
|
|
|
8650
8773
|
export type DevOpsFeatureFlagProvider = DevOpsDataProvider & {
|
|
8651
8774
|
__typename?: 'DevOpsFeatureFlagProvider';
|
|
8652
8775
|
appInstallationId?: Maybe<Scalars['ID']['output']>;
|
|
8776
|
+
configState?: Maybe<JiraAppConfigState>;
|
|
8653
8777
|
connectFeatureFlagTemplateUrl?: Maybe<Scalars['String']['output']>;
|
|
8654
8778
|
createFeatureFlagTemplateUrl?: Maybe<Scalars['String']['output']>;
|
|
8655
8779
|
documentationUrl?: Maybe<Scalars['URL']['output']>;
|
|
@@ -8660,6 +8784,9 @@ export type DevOpsFeatureFlagProvider = DevOpsDataProvider & {
|
|
|
8660
8784
|
providerType?: Maybe<DevOpsProviderType>;
|
|
8661
8785
|
supportedActions?: Maybe<DevOpsSupportedActions>;
|
|
8662
8786
|
};
|
|
8787
|
+
export type DevOpsFeatureFlagProviderConfigStateArgs = {
|
|
8788
|
+
cloudId: Scalars['ID']['input'];
|
|
8789
|
+
};
|
|
8663
8790
|
export type DevOpsFeatureFlagSummary = {
|
|
8664
8791
|
__typename?: 'DevOpsFeatureFlagSummary';
|
|
8665
8792
|
defaultValue?: Maybe<Scalars['String']['output']>;
|
|
@@ -8863,6 +8990,7 @@ export type DevOpsMutation_EmptyArgs = {
|
|
|
8863
8990
|
export type DevOpsOperationsProvider = DevOpsDataProvider & {
|
|
8864
8991
|
__typename?: 'DevOpsOperationsProvider';
|
|
8865
8992
|
appInstallationId?: Maybe<Scalars['ID']['output']>;
|
|
8993
|
+
configState?: Maybe<JiraAppConfigState>;
|
|
8866
8994
|
documentationUrl?: Maybe<Scalars['URL']['output']>;
|
|
8867
8995
|
homeUrl?: Maybe<Scalars['URL']['output']>;
|
|
8868
8996
|
id: Scalars['ID']['output'];
|
|
@@ -8872,6 +9000,9 @@ export type DevOpsOperationsProvider = DevOpsDataProvider & {
|
|
|
8872
9000
|
providerType?: Maybe<DevOpsProviderType>;
|
|
8873
9001
|
supportedActions?: Maybe<DevOpsSupportedActions>;
|
|
8874
9002
|
};
|
|
9003
|
+
export type DevOpsOperationsProviderConfigStateArgs = {
|
|
9004
|
+
cloudId: Scalars['ID']['input'];
|
|
9005
|
+
};
|
|
8875
9006
|
export type DevOpsOperationsProviderLinkedContainersArgs = {
|
|
8876
9007
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
8877
9008
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
@@ -8957,6 +9088,7 @@ export declare enum DevOpsRelationshipCertaintyFilter {
|
|
|
8957
9088
|
export type DevOpsRemoteLinksProvider = DevOpsDataProvider & {
|
|
8958
9089
|
__typename?: 'DevOpsRemoteLinksProvider';
|
|
8959
9090
|
appInstallationId?: Maybe<Scalars['ID']['output']>;
|
|
9091
|
+
configState?: Maybe<JiraAppConfigState>;
|
|
8960
9092
|
documentationUrl?: Maybe<Scalars['URL']['output']>;
|
|
8961
9093
|
homeUrl?: Maybe<Scalars['URL']['output']>;
|
|
8962
9094
|
id: Scalars['ID']['output'];
|
|
@@ -8965,6 +9097,9 @@ export type DevOpsRemoteLinksProvider = DevOpsDataProvider & {
|
|
|
8965
9097
|
providerType?: Maybe<DevOpsProviderType>;
|
|
8966
9098
|
supportedActions?: Maybe<DevOpsSupportedActions>;
|
|
8967
9099
|
};
|
|
9100
|
+
export type DevOpsRemoteLinksProviderConfigStateArgs = {
|
|
9101
|
+
cloudId: Scalars['ID']['input'];
|
|
9102
|
+
};
|
|
8968
9103
|
export type DevOpsRepository = {
|
|
8969
9104
|
__typename?: 'DevOpsRepository';
|
|
8970
9105
|
avatarUrl?: Maybe<Scalars['URL']['output']>;
|
|
@@ -8989,6 +9124,7 @@ export type DevOpsReviewer = {
|
|
|
8989
9124
|
export type DevOpsSecurityProvider = DevOpsDataProvider & {
|
|
8990
9125
|
__typename?: 'DevOpsSecurityProvider';
|
|
8991
9126
|
appInstallationId?: Maybe<Scalars['ID']['output']>;
|
|
9127
|
+
configState?: Maybe<JiraAppConfigState>;
|
|
8992
9128
|
documentationUrl?: Maybe<Scalars['URL']['output']>;
|
|
8993
9129
|
homeUrl?: Maybe<Scalars['URL']['output']>;
|
|
8994
9130
|
id: Scalars['ID']['output'];
|
|
@@ -9000,6 +9136,9 @@ export type DevOpsSecurityProvider = DevOpsDataProvider & {
|
|
|
9000
9136
|
supportedActions?: Maybe<DevOpsSupportedActions>;
|
|
9001
9137
|
workspaces?: Maybe<ToolchainWorkspaceConnection>;
|
|
9002
9138
|
};
|
|
9139
|
+
export type DevOpsSecurityProviderConfigStateArgs = {
|
|
9140
|
+
cloudId: Scalars['ID']['input'];
|
|
9141
|
+
};
|
|
9003
9142
|
export type DevOpsSecurityProviderLinkedContainersArgs = {
|
|
9004
9143
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
9005
9144
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
@@ -9071,6 +9210,7 @@ export type DevOpsService = Node & {
|
|
|
9071
9210
|
dependsOnDevOpsServiceRelationships?: Maybe<DevOpsServiceRelationshipConnection>;
|
|
9072
9211
|
description?: Maybe<Scalars['String']['output']>;
|
|
9073
9212
|
id: Scalars['ID']['output'];
|
|
9213
|
+
isCompassSynchronised: Scalars['Boolean']['output'];
|
|
9074
9214
|
jiraProjects?: Maybe<DevOpsServiceAndJiraProjectRelationshipConnection>;
|
|
9075
9215
|
lastUpdatedAt?: Maybe<Scalars['DateTime']['output']>;
|
|
9076
9216
|
lastUpdatedBy?: Maybe<Scalars['String']['output']>;
|
|
@@ -9760,6 +9900,7 @@ export type EcosystemAppsInstalledInContextsEdge = {
|
|
|
9760
9900
|
};
|
|
9761
9901
|
export type EcosystemAppsInstalledInContextsEdgeNodeArgs = {
|
|
9762
9902
|
contextIds: Array<Scalars['ID']['input']>;
|
|
9903
|
+
options?: InputMaybe<EcosystemAppsInstalledInContextsOptions>;
|
|
9763
9904
|
};
|
|
9764
9905
|
export type EcosystemAppsInstalledInContextsFilter = {
|
|
9765
9906
|
type: EcosystemAppsInstalledInContextsFilterType;
|
|
@@ -9769,6 +9910,9 @@ export declare enum EcosystemAppsInstalledInContextsFilterType {
|
|
|
9769
9910
|
Name = "NAME",
|
|
9770
9911
|
OnlyAppIds = "ONLY_APP_IDS"
|
|
9771
9912
|
}
|
|
9913
|
+
export type EcosystemAppsInstalledInContextsOptions = {
|
|
9914
|
+
groupByBaseApp?: InputMaybe<Scalars['Boolean']['input']>;
|
|
9915
|
+
};
|
|
9772
9916
|
export type EcosystemAppsInstalledInContextsOrderBy = {
|
|
9773
9917
|
direction: SortDirection;
|
|
9774
9918
|
sortKey: EcosystemAppsInstalledInContextsSortKey;
|
|
@@ -9928,6 +10072,7 @@ export type EcosystemQueryAppsInstalledInContextsArgs = {
|
|
|
9928
10072
|
filters?: InputMaybe<Array<EcosystemAppsInstalledInContextsFilter>>;
|
|
9929
10073
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
9930
10074
|
last?: InputMaybe<Scalars['Int']['input']>;
|
|
10075
|
+
options?: InputMaybe<EcosystemAppsInstalledInContextsOptions>;
|
|
9931
10076
|
orderBy?: InputMaybe<Array<EcosystemAppsInstalledInContextsOrderBy>>;
|
|
9932
10077
|
};
|
|
9933
10078
|
export type EcosystemQueryCheckConsentPermissionByOAuthClientIdArgs = {
|
|
@@ -10203,6 +10348,22 @@ export type FilterQuery = {
|
|
|
10203
10348
|
errors?: Maybe<Array<Maybe<Scalars['String']['output']>>>;
|
|
10204
10349
|
sanitisedJql: Scalars['String']['output'];
|
|
10205
10350
|
};
|
|
10351
|
+
export type ForgeAiDemo = {
|
|
10352
|
+
__typename?: 'ForgeAiDemo';
|
|
10353
|
+
emoji?: Maybe<Scalars['String']['output']>;
|
|
10354
|
+
endTimestamp?: Maybe<Scalars['String']['output']>;
|
|
10355
|
+
presenter?: Maybe<Scalars['String']['output']>;
|
|
10356
|
+
startTimestamp?: Maybe<Scalars['String']['output']>;
|
|
10357
|
+
summary?: Maybe<Scalars['String']['output']>;
|
|
10358
|
+
title?: Maybe<Scalars['String']['output']>;
|
|
10359
|
+
};
|
|
10360
|
+
export type ForgeAiMutation = {
|
|
10361
|
+
__typename?: 'ForgeAiMutation';
|
|
10362
|
+
ForgeAiDemoAppAiGenerateSummaries?: Maybe<Array<Maybe<ForgeAiDemo>>>;
|
|
10363
|
+
};
|
|
10364
|
+
export type ForgeAiMutationForgeAiDemoAppAiGenerateSummariesArgs = {
|
|
10365
|
+
transcript?: InputMaybe<Scalars['String']['input']>;
|
|
10366
|
+
};
|
|
10206
10367
|
export type ForgeAlertsActivitiesQueryInput = {
|
|
10207
10368
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
10208
10369
|
endTime: Scalars['String']['input'];
|
|
@@ -13739,6 +13900,7 @@ export type GraphStore = {
|
|
|
13739
13900
|
issueAssociatedCommitInverse?: Maybe<GraphStoreSimplifiedIssueAssociatedCommitInverseConnection>;
|
|
13740
13901
|
issueAssociatedCommitInverseRelationship?: Maybe<GraphStoreFullIssueAssociatedCommitConnection>;
|
|
13741
13902
|
issueAssociatedCommitRelationship?: Maybe<GraphStoreFullIssueAssociatedCommitConnection>;
|
|
13903
|
+
issueAssociatedDeployment?: Maybe<GraphStoreSimplifiedIssueAssociatedDeploymentConnection>;
|
|
13742
13904
|
issueAssociatedDeploymentInverse?: Maybe<GraphStoreSimplifiedIssueAssociatedDeploymentInverseConnection>;
|
|
13743
13905
|
issueAssociatedDeploymentInverseRelationship?: Maybe<GraphStoreFullIssueAssociatedDeploymentConnection>;
|
|
13744
13906
|
issueAssociatedDeploymentRelationship?: Maybe<GraphStoreFullIssueAssociatedDeploymentConnection>;
|
|
@@ -13769,6 +13931,8 @@ export type GraphStore = {
|
|
|
13769
13931
|
jiraEpicContributesToAtlasGoalRelationship?: Maybe<GraphStoreFullJiraEpicContributesToAtlasGoalConnection>;
|
|
13770
13932
|
jiraProjectAssociatedAtlasGoalInverseRelationship?: Maybe<GraphStoreFullJiraProjectAssociatedAtlasGoalConnection>;
|
|
13771
13933
|
jiraProjectAssociatedAtlasGoalRelationship?: Maybe<GraphStoreFullJiraProjectAssociatedAtlasGoalConnection>;
|
|
13934
|
+
jsmProjectAssociatedServiceBatch?: Maybe<GraphStoreBatchJsmProjectAssociatedServiceConnection>;
|
|
13935
|
+
jsmProjectAssociatedServiceInverseBatch?: Maybe<GraphStoreBatchJsmProjectAssociatedServiceConnection>;
|
|
13772
13936
|
jsmProjectAssociatedServiceInverseRelationship?: Maybe<GraphStoreFullJsmProjectAssociatedServiceConnection>;
|
|
13773
13937
|
jsmProjectAssociatedServiceRelationship?: Maybe<GraphStoreFullJsmProjectAssociatedServiceConnection>;
|
|
13774
13938
|
jswProjectAssociatedComponentInverseRelationship?: Maybe<GraphStoreFullJswProjectAssociatedComponentConnection>;
|
|
@@ -13795,6 +13959,7 @@ export type GraphStore = {
|
|
|
13795
13959
|
projectAssociatedBranchRelationship?: Maybe<GraphStoreFullProjectAssociatedBranchConnection>;
|
|
13796
13960
|
projectAssociatedBuildInverseRelationship?: Maybe<GraphStoreFullProjectAssociatedBuildConnection>;
|
|
13797
13961
|
projectAssociatedBuildRelationship?: Maybe<GraphStoreFullProjectAssociatedBuildConnection>;
|
|
13962
|
+
projectAssociatedDeployment?: Maybe<GraphStoreSimplifiedProjectAssociatedDeploymentConnection>;
|
|
13798
13963
|
projectAssociatedDeploymentInverseRelationship?: Maybe<GraphStoreFullProjectAssociatedDeploymentConnection>;
|
|
13799
13964
|
projectAssociatedDeploymentRelationship?: Maybe<GraphStoreFullProjectAssociatedDeploymentConnection>;
|
|
13800
13965
|
projectAssociatedFeatureFlagInverseRelationship?: Maybe<GraphStoreFullProjectAssociatedFeatureFlagConnection>;
|
|
@@ -13859,8 +14024,20 @@ export type GraphStore = {
|
|
|
13859
14024
|
sprintContainsIssueRelationship?: Maybe<GraphStoreFullSprintContainsIssueConnection>;
|
|
13860
14025
|
sprintRetrospectivePageInverseRelationship?: Maybe<GraphStoreFullSprintRetrospectivePageConnection>;
|
|
13861
14026
|
sprintRetrospectivePageRelationship?: Maybe<GraphStoreFullSprintRetrospectivePageConnection>;
|
|
14027
|
+
sprintRetrospectiveWhiteboardInverseRelationship?: Maybe<GraphStoreFullSprintRetrospectiveWhiteboardConnection>;
|
|
14028
|
+
sprintRetrospectiveWhiteboardRelationship?: Maybe<GraphStoreFullSprintRetrospectiveWhiteboardConnection>;
|
|
13862
14029
|
teamWorksOnProjectInverseRelationship?: Maybe<GraphStoreFullTeamWorksOnProjectConnection>;
|
|
13863
14030
|
teamWorksOnProjectRelationship?: Maybe<GraphStoreFullTeamWorksOnProjectConnection>;
|
|
14031
|
+
testPerfhammerMaterializationAInverseRelationship?: Maybe<GraphStoreFullTestPerfhammerMaterializationAConnection>;
|
|
14032
|
+
testPerfhammerMaterializationARelationship?: Maybe<GraphStoreFullTestPerfhammerMaterializationAConnection>;
|
|
14033
|
+
testPerfhammerMaterializationBInverseRelationship?: Maybe<GraphStoreFullTestPerfhammerMaterializationBConnection>;
|
|
14034
|
+
testPerfhammerMaterializationBRelationship?: Maybe<GraphStoreFullTestPerfhammerMaterializationBConnection>;
|
|
14035
|
+
testPerfhammerMaterializationInverseRelationship?: Maybe<GraphStoreFullTestPerfhammerMaterializationConnection>;
|
|
14036
|
+
testPerfhammerMaterializationRelationship?: Maybe<GraphStoreFullTestPerfhammerMaterializationConnection>;
|
|
14037
|
+
testPerfhammerRelationshipBatch?: Maybe<GraphStoreBatchTestPerfhammerRelationshipConnection>;
|
|
14038
|
+
testPerfhammerRelationshipInverseBatch?: Maybe<GraphStoreBatchTestPerfhammerRelationshipConnection>;
|
|
14039
|
+
testPerfhammerRelationshipInverseRelationship?: Maybe<GraphStoreFullTestPerfhammerRelationshipConnection>;
|
|
14040
|
+
testPerfhammerRelationshipRelationship?: Maybe<GraphStoreFullTestPerfhammerRelationshipConnection>;
|
|
13864
14041
|
userIsInTeamInverseRelationship?: Maybe<GraphStoreFullUserIsInTeamConnection>;
|
|
13865
14042
|
userIsInTeamRelationship?: Maybe<GraphStoreFullUserIsInTeamConnection>;
|
|
13866
14043
|
versionAssociatedBranchInverseRelationship?: Maybe<GraphStoreFullVersionAssociatedBranchConnection>;
|
|
@@ -14057,6 +14234,11 @@ export type GraphStoreIssueAssociatedCommitRelationshipArgs = {
|
|
|
14057
14234
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
14058
14235
|
id: Scalars['ID']['input'];
|
|
14059
14236
|
};
|
|
14237
|
+
export type GraphStoreIssueAssociatedDeploymentArgs = {
|
|
14238
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
14239
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
14240
|
+
id: Scalars['ID']['input'];
|
|
14241
|
+
};
|
|
14060
14242
|
export type GraphStoreIssueAssociatedDeploymentInverseArgs = {
|
|
14061
14243
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
14062
14244
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
@@ -14207,6 +14389,16 @@ export type GraphStoreJiraProjectAssociatedAtlasGoalRelationshipArgs = {
|
|
|
14207
14389
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
14208
14390
|
id: Scalars['ID']['input'];
|
|
14209
14391
|
};
|
|
14392
|
+
export type GraphStoreJsmProjectAssociatedServiceBatchArgs = {
|
|
14393
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
14394
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
14395
|
+
ids: Array<Scalars['ID']['input']>;
|
|
14396
|
+
};
|
|
14397
|
+
export type GraphStoreJsmProjectAssociatedServiceInverseBatchArgs = {
|
|
14398
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
14399
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
14400
|
+
ids: Array<Scalars['ID']['input']>;
|
|
14401
|
+
};
|
|
14210
14402
|
export type GraphStoreJsmProjectAssociatedServiceInverseRelationshipArgs = {
|
|
14211
14403
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
14212
14404
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
@@ -14329,23 +14521,38 @@ export type GraphStoreProjectAssociatedBranchRelationshipArgs = {
|
|
|
14329
14521
|
};
|
|
14330
14522
|
export type GraphStoreProjectAssociatedBuildInverseRelationshipArgs = {
|
|
14331
14523
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
14524
|
+
filter?: InputMaybe<GraphStoreProjectAssociatedBuildFilterInput>;
|
|
14332
14525
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
14333
14526
|
id: Scalars['ID']['input'];
|
|
14527
|
+
sort?: InputMaybe<GraphStoreProjectAssociatedBuildSortInput>;
|
|
14334
14528
|
};
|
|
14335
14529
|
export type GraphStoreProjectAssociatedBuildRelationshipArgs = {
|
|
14336
14530
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
14531
|
+
filter?: InputMaybe<GraphStoreProjectAssociatedBuildFilterInput>;
|
|
14532
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
14533
|
+
id: Scalars['ID']['input'];
|
|
14534
|
+
sort?: InputMaybe<GraphStoreProjectAssociatedBuildSortInput>;
|
|
14535
|
+
};
|
|
14536
|
+
export type GraphStoreProjectAssociatedDeploymentArgs = {
|
|
14537
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
14538
|
+
filter?: InputMaybe<GraphStoreProjectAssociatedDeploymentFilterInput>;
|
|
14337
14539
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
14338
14540
|
id: Scalars['ID']['input'];
|
|
14541
|
+
sort?: InputMaybe<GraphStoreProjectAssociatedDeploymentSortInput>;
|
|
14339
14542
|
};
|
|
14340
14543
|
export type GraphStoreProjectAssociatedDeploymentInverseRelationshipArgs = {
|
|
14341
14544
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
14545
|
+
filter?: InputMaybe<GraphStoreProjectAssociatedDeploymentFilterInput>;
|
|
14342
14546
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
14343
14547
|
id: Scalars['ID']['input'];
|
|
14548
|
+
sort?: InputMaybe<GraphStoreProjectAssociatedDeploymentSortInput>;
|
|
14344
14549
|
};
|
|
14345
14550
|
export type GraphStoreProjectAssociatedDeploymentRelationshipArgs = {
|
|
14346
14551
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
14552
|
+
filter?: InputMaybe<GraphStoreProjectAssociatedDeploymentFilterInput>;
|
|
14347
14553
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
14348
14554
|
id: Scalars['ID']['input'];
|
|
14555
|
+
sort?: InputMaybe<GraphStoreProjectAssociatedDeploymentSortInput>;
|
|
14349
14556
|
};
|
|
14350
14557
|
export type GraphStoreProjectAssociatedFeatureFlagInverseRelationshipArgs = {
|
|
14351
14558
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -14379,13 +14586,17 @@ export type GraphStoreProjectAssociatedOpsgenieTeamRelationshipArgs = {
|
|
|
14379
14586
|
};
|
|
14380
14587
|
export type GraphStoreProjectAssociatedPrInverseRelationshipArgs = {
|
|
14381
14588
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
14589
|
+
filter?: InputMaybe<GraphStoreProjectAssociatedPrFilterInput>;
|
|
14382
14590
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
14383
14591
|
id: Scalars['ID']['input'];
|
|
14592
|
+
sort?: InputMaybe<GraphStoreProjectAssociatedPrSortInput>;
|
|
14384
14593
|
};
|
|
14385
14594
|
export type GraphStoreProjectAssociatedPrRelationshipArgs = {
|
|
14386
14595
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
14596
|
+
filter?: InputMaybe<GraphStoreProjectAssociatedPrFilterInput>;
|
|
14387
14597
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
14388
14598
|
id: Scalars['ID']['input'];
|
|
14599
|
+
sort?: InputMaybe<GraphStoreProjectAssociatedPrSortInput>;
|
|
14389
14600
|
};
|
|
14390
14601
|
export type GraphStoreProjectAssociatedRepoInverseRelationshipArgs = {
|
|
14391
14602
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -14439,13 +14650,17 @@ export type GraphStoreProjectAssociatedToSecurityContainerRelationshipArgs = {
|
|
|
14439
14650
|
};
|
|
14440
14651
|
export type GraphStoreProjectAssociatedVulnerabilityInverseRelationshipArgs = {
|
|
14441
14652
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
14653
|
+
filter?: InputMaybe<GraphStoreProjectAssociatedVulnerabilityFilterInput>;
|
|
14442
14654
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
14443
14655
|
id: Scalars['ID']['input'];
|
|
14656
|
+
sort?: InputMaybe<GraphStoreProjectAssociatedVulnerabilitySortInput>;
|
|
14444
14657
|
};
|
|
14445
14658
|
export type GraphStoreProjectAssociatedVulnerabilityRelationshipArgs = {
|
|
14446
14659
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
14660
|
+
filter?: InputMaybe<GraphStoreProjectAssociatedVulnerabilityFilterInput>;
|
|
14447
14661
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
14448
14662
|
id: Scalars['ID']['input'];
|
|
14663
|
+
sort?: InputMaybe<GraphStoreProjectAssociatedVulnerabilitySortInput>;
|
|
14449
14664
|
};
|
|
14450
14665
|
export type GraphStoreProjectDisassociatedRepoInverseRelationshipArgs = {
|
|
14451
14666
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -14549,13 +14764,17 @@ export type GraphStoreSecurityContainerAssociatedToVulnerabilityRelationshipArgs
|
|
|
14549
14764
|
};
|
|
14550
14765
|
export type GraphStoreServiceLinkedIncidentInverseRelationshipArgs = {
|
|
14551
14766
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
14767
|
+
filter?: InputMaybe<GraphStoreServiceLinkedIncidentFilterInput>;
|
|
14552
14768
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
14553
14769
|
id: Scalars['ID']['input'];
|
|
14770
|
+
sort?: InputMaybe<GraphStoreServiceLinkedIncidentSortInput>;
|
|
14554
14771
|
};
|
|
14555
14772
|
export type GraphStoreServiceLinkedIncidentRelationshipArgs = {
|
|
14556
14773
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
14774
|
+
filter?: InputMaybe<GraphStoreServiceLinkedIncidentFilterInput>;
|
|
14557
14775
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
14558
14776
|
id: Scalars['ID']['input'];
|
|
14777
|
+
sort?: InputMaybe<GraphStoreServiceLinkedIncidentSortInput>;
|
|
14559
14778
|
};
|
|
14560
14779
|
export type GraphStoreShipit57IssueLinksToPageInverseRelationshipArgs = {
|
|
14561
14780
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -14599,23 +14818,31 @@ export type GraphStoreShipit57PullRequestLinksToPageRelationshipArgs = {
|
|
|
14599
14818
|
};
|
|
14600
14819
|
export type GraphStoreSprintAssociatedBuildInverseRelationshipArgs = {
|
|
14601
14820
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
14821
|
+
filter?: InputMaybe<GraphStoreSprintAssociatedBuildFilterInput>;
|
|
14602
14822
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
14603
14823
|
id: Scalars['ID']['input'];
|
|
14824
|
+
sort?: InputMaybe<GraphStoreSprintAssociatedBuildSortInput>;
|
|
14604
14825
|
};
|
|
14605
14826
|
export type GraphStoreSprintAssociatedBuildRelationshipArgs = {
|
|
14606
14827
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
14828
|
+
filter?: InputMaybe<GraphStoreSprintAssociatedBuildFilterInput>;
|
|
14607
14829
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
14608
14830
|
id: Scalars['ID']['input'];
|
|
14831
|
+
sort?: InputMaybe<GraphStoreSprintAssociatedBuildSortInput>;
|
|
14609
14832
|
};
|
|
14610
14833
|
export type GraphStoreSprintAssociatedDeploymentInverseRelationshipArgs = {
|
|
14611
14834
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
14835
|
+
filter?: InputMaybe<GraphStoreSprintAssociatedDeploymentFilterInput>;
|
|
14612
14836
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
14613
14837
|
id: Scalars['ID']['input'];
|
|
14838
|
+
sort?: InputMaybe<GraphStoreSprintAssociatedDeploymentSortInput>;
|
|
14614
14839
|
};
|
|
14615
14840
|
export type GraphStoreSprintAssociatedDeploymentRelationshipArgs = {
|
|
14616
14841
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
14842
|
+
filter?: InputMaybe<GraphStoreSprintAssociatedDeploymentFilterInput>;
|
|
14617
14843
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
14618
14844
|
id: Scalars['ID']['input'];
|
|
14845
|
+
sort?: InputMaybe<GraphStoreSprintAssociatedDeploymentSortInput>;
|
|
14619
14846
|
};
|
|
14620
14847
|
export type GraphStoreSprintAssociatedFeatureFlagInverseRelationshipArgs = {
|
|
14621
14848
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -14629,13 +14856,17 @@ export type GraphStoreSprintAssociatedFeatureFlagRelationshipArgs = {
|
|
|
14629
14856
|
};
|
|
14630
14857
|
export type GraphStoreSprintAssociatedPrInverseRelationshipArgs = {
|
|
14631
14858
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
14859
|
+
filter?: InputMaybe<GraphStoreSprintAssociatedPrFilterInput>;
|
|
14632
14860
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
14633
14861
|
id: Scalars['ID']['input'];
|
|
14862
|
+
sort?: InputMaybe<GraphStoreSprintAssociatedPrSortInput>;
|
|
14634
14863
|
};
|
|
14635
14864
|
export type GraphStoreSprintAssociatedPrRelationshipArgs = {
|
|
14636
14865
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
14866
|
+
filter?: InputMaybe<GraphStoreSprintAssociatedPrFilterInput>;
|
|
14637
14867
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
14638
14868
|
id: Scalars['ID']['input'];
|
|
14869
|
+
sort?: InputMaybe<GraphStoreSprintAssociatedPrSortInput>;
|
|
14639
14870
|
};
|
|
14640
14871
|
export type GraphStoreSprintContainsIssueInverseRelationshipArgs = {
|
|
14641
14872
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -14657,6 +14888,16 @@ export type GraphStoreSprintRetrospectivePageRelationshipArgs = {
|
|
|
14657
14888
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
14658
14889
|
id: Scalars['ID']['input'];
|
|
14659
14890
|
};
|
|
14891
|
+
export type GraphStoreSprintRetrospectiveWhiteboardInverseRelationshipArgs = {
|
|
14892
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
14893
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
14894
|
+
id: Scalars['ID']['input'];
|
|
14895
|
+
};
|
|
14896
|
+
export type GraphStoreSprintRetrospectiveWhiteboardRelationshipArgs = {
|
|
14897
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
14898
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
14899
|
+
id: Scalars['ID']['input'];
|
|
14900
|
+
};
|
|
14660
14901
|
export type GraphStoreTeamWorksOnProjectInverseRelationshipArgs = {
|
|
14661
14902
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
14662
14903
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
@@ -14667,6 +14908,56 @@ export type GraphStoreTeamWorksOnProjectRelationshipArgs = {
|
|
|
14667
14908
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
14668
14909
|
id: Scalars['ID']['input'];
|
|
14669
14910
|
};
|
|
14911
|
+
export type GraphStoreTestPerfhammerMaterializationAInverseRelationshipArgs = {
|
|
14912
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
14913
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
14914
|
+
id: Scalars['ID']['input'];
|
|
14915
|
+
};
|
|
14916
|
+
export type GraphStoreTestPerfhammerMaterializationARelationshipArgs = {
|
|
14917
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
14918
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
14919
|
+
id: Scalars['ID']['input'];
|
|
14920
|
+
};
|
|
14921
|
+
export type GraphStoreTestPerfhammerMaterializationBInverseRelationshipArgs = {
|
|
14922
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
14923
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
14924
|
+
id: Scalars['ID']['input'];
|
|
14925
|
+
};
|
|
14926
|
+
export type GraphStoreTestPerfhammerMaterializationBRelationshipArgs = {
|
|
14927
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
14928
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
14929
|
+
id: Scalars['ID']['input'];
|
|
14930
|
+
};
|
|
14931
|
+
export type GraphStoreTestPerfhammerMaterializationInverseRelationshipArgs = {
|
|
14932
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
14933
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
14934
|
+
id: Scalars['ID']['input'];
|
|
14935
|
+
};
|
|
14936
|
+
export type GraphStoreTestPerfhammerMaterializationRelationshipArgs = {
|
|
14937
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
14938
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
14939
|
+
id: Scalars['ID']['input'];
|
|
14940
|
+
};
|
|
14941
|
+
export type GraphStoreTestPerfhammerRelationshipBatchArgs = {
|
|
14942
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
14943
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
14944
|
+
ids: Array<Scalars['ID']['input']>;
|
|
14945
|
+
};
|
|
14946
|
+
export type GraphStoreTestPerfhammerRelationshipInverseBatchArgs = {
|
|
14947
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
14948
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
14949
|
+
ids: Array<Scalars['ID']['input']>;
|
|
14950
|
+
};
|
|
14951
|
+
export type GraphStoreTestPerfhammerRelationshipInverseRelationshipArgs = {
|
|
14952
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
14953
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
14954
|
+
id: Scalars['ID']['input'];
|
|
14955
|
+
};
|
|
14956
|
+
export type GraphStoreTestPerfhammerRelationshipRelationshipArgs = {
|
|
14957
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
14958
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
14959
|
+
id: Scalars['ID']['input'];
|
|
14960
|
+
};
|
|
14670
14961
|
export type GraphStoreUserIsInTeamInverseRelationshipArgs = {
|
|
14671
14962
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
14672
14963
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
@@ -14767,6 +15058,14 @@ export type GraphStoreVulnerabilityAssociatedIssueRelationshipArgs = {
|
|
|
14767
15058
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
14768
15059
|
id: Scalars['ID']['input'];
|
|
14769
15060
|
};
|
|
15061
|
+
export type GraphStoreAriFilterInput = {
|
|
15062
|
+
is?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
15063
|
+
isNot?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
15064
|
+
};
|
|
15065
|
+
export type GraphStoreAtiFilterInput = {
|
|
15066
|
+
is?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
15067
|
+
isNot?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
15068
|
+
};
|
|
14770
15069
|
export type GraphStoreBatchIncidentAssociatedPostIncidentReviewLinkConnection = HasPageInfo & {
|
|
14771
15070
|
__typename?: 'GraphStoreBatchIncidentAssociatedPostIncidentReviewLinkConnection';
|
|
14772
15071
|
edges: Array<Maybe<GraphStoreBatchIncidentAssociatedPostIncidentReviewLinkEdge>>;
|
|
@@ -14878,6 +15177,43 @@ export type GraphStoreBatchIncidentLinkedJswIssueStartNode = Node & {
|
|
|
14878
15177
|
__typename?: 'GraphStoreBatchIncidentLinkedJswIssueStartNode';
|
|
14879
15178
|
id: Scalars['ID']['output'];
|
|
14880
15179
|
};
|
|
15180
|
+
export type GraphStoreBatchJsmProjectAssociatedServiceConnection = HasPageInfo & {
|
|
15181
|
+
__typename?: 'GraphStoreBatchJsmProjectAssociatedServiceConnection';
|
|
15182
|
+
edges: Array<Maybe<GraphStoreBatchJsmProjectAssociatedServiceEdge>>;
|
|
15183
|
+
nodes: Array<Maybe<GraphStoreBatchJsmProjectAssociatedServiceNode>>;
|
|
15184
|
+
pageInfo: PageInfo;
|
|
15185
|
+
};
|
|
15186
|
+
export type GraphStoreBatchJsmProjectAssociatedServiceEdge = {
|
|
15187
|
+
__typename?: 'GraphStoreBatchJsmProjectAssociatedServiceEdge';
|
|
15188
|
+
node: GraphStoreBatchJsmProjectAssociatedServiceInnerConnection;
|
|
15189
|
+
};
|
|
15190
|
+
export type GraphStoreBatchJsmProjectAssociatedServiceEndNode = Node & {
|
|
15191
|
+
__typename?: 'GraphStoreBatchJsmProjectAssociatedServiceEndNode';
|
|
15192
|
+
id: Scalars['ID']['output'];
|
|
15193
|
+
};
|
|
15194
|
+
export type GraphStoreBatchJsmProjectAssociatedServiceInnerConnection = {
|
|
15195
|
+
__typename?: 'GraphStoreBatchJsmProjectAssociatedServiceInnerConnection';
|
|
15196
|
+
edges: Array<Maybe<GraphStoreBatchJsmProjectAssociatedServiceInnerEdge>>;
|
|
15197
|
+
nodes: Array<Maybe<GraphStoreBatchJsmProjectAssociatedServiceNode>>;
|
|
15198
|
+
requestedId: Scalars['ID']['output'];
|
|
15199
|
+
};
|
|
15200
|
+
export type GraphStoreBatchJsmProjectAssociatedServiceInnerEdge = {
|
|
15201
|
+
__typename?: 'GraphStoreBatchJsmProjectAssociatedServiceInnerEdge';
|
|
15202
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
15203
|
+
node: GraphStoreBatchJsmProjectAssociatedServiceNode;
|
|
15204
|
+
};
|
|
15205
|
+
export type GraphStoreBatchJsmProjectAssociatedServiceNode = Node & {
|
|
15206
|
+
__typename?: 'GraphStoreBatchJsmProjectAssociatedServiceNode';
|
|
15207
|
+
createdAt: Scalars['DateTime']['output'];
|
|
15208
|
+
from: GraphStoreBatchJsmProjectAssociatedServiceStartNode;
|
|
15209
|
+
id: Scalars['ID']['output'];
|
|
15210
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
15211
|
+
to: GraphStoreBatchJsmProjectAssociatedServiceEndNode;
|
|
15212
|
+
};
|
|
15213
|
+
export type GraphStoreBatchJsmProjectAssociatedServiceStartNode = Node & {
|
|
15214
|
+
__typename?: 'GraphStoreBatchJsmProjectAssociatedServiceStartNode';
|
|
15215
|
+
id: Scalars['ID']['output'];
|
|
15216
|
+
};
|
|
14881
15217
|
export type GraphStoreBatchSecurityContainerAssociatedToVulnerabilityConnection = HasPageInfo & {
|
|
14882
15218
|
__typename?: 'GraphStoreBatchSecurityContainerAssociatedToVulnerabilityConnection';
|
|
14883
15219
|
edges: Array<Maybe<GraphStoreBatchSecurityContainerAssociatedToVulnerabilityEdge>>;
|
|
@@ -14915,81 +15251,537 @@ export type GraphStoreBatchSecurityContainerAssociatedToVulnerabilityStartNode =
|
|
|
14915
15251
|
__typename?: 'GraphStoreBatchSecurityContainerAssociatedToVulnerabilityStartNode';
|
|
14916
15252
|
id: Scalars['ID']['output'];
|
|
14917
15253
|
};
|
|
15254
|
+
export type GraphStoreBatchTestPerfhammerRelationshipConnection = HasPageInfo & {
|
|
15255
|
+
__typename?: 'GraphStoreBatchTestPerfhammerRelationshipConnection';
|
|
15256
|
+
edges: Array<Maybe<GraphStoreBatchTestPerfhammerRelationshipEdge>>;
|
|
15257
|
+
nodes: Array<Maybe<GraphStoreBatchTestPerfhammerRelationshipNode>>;
|
|
15258
|
+
pageInfo: PageInfo;
|
|
15259
|
+
};
|
|
15260
|
+
export type GraphStoreBatchTestPerfhammerRelationshipEdge = {
|
|
15261
|
+
__typename?: 'GraphStoreBatchTestPerfhammerRelationshipEdge';
|
|
15262
|
+
node: GraphStoreBatchTestPerfhammerRelationshipInnerConnection;
|
|
15263
|
+
};
|
|
15264
|
+
export type GraphStoreBatchTestPerfhammerRelationshipEndNode = Node & {
|
|
15265
|
+
__typename?: 'GraphStoreBatchTestPerfhammerRelationshipEndNode';
|
|
15266
|
+
id: Scalars['ID']['output'];
|
|
15267
|
+
};
|
|
15268
|
+
export type GraphStoreBatchTestPerfhammerRelationshipInnerConnection = {
|
|
15269
|
+
__typename?: 'GraphStoreBatchTestPerfhammerRelationshipInnerConnection';
|
|
15270
|
+
edges: Array<Maybe<GraphStoreBatchTestPerfhammerRelationshipInnerEdge>>;
|
|
15271
|
+
nodes: Array<Maybe<GraphStoreBatchTestPerfhammerRelationshipNode>>;
|
|
15272
|
+
requestedId: Scalars['ID']['output'];
|
|
15273
|
+
};
|
|
15274
|
+
export type GraphStoreBatchTestPerfhammerRelationshipInnerEdge = {
|
|
15275
|
+
__typename?: 'GraphStoreBatchTestPerfhammerRelationshipInnerEdge';
|
|
15276
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
15277
|
+
node: GraphStoreBatchTestPerfhammerRelationshipNode;
|
|
15278
|
+
};
|
|
15279
|
+
export type GraphStoreBatchTestPerfhammerRelationshipNode = Node & {
|
|
15280
|
+
__typename?: 'GraphStoreBatchTestPerfhammerRelationshipNode';
|
|
15281
|
+
createdAt: Scalars['DateTime']['output'];
|
|
15282
|
+
from: GraphStoreBatchTestPerfhammerRelationshipStartNode;
|
|
15283
|
+
id: Scalars['ID']['output'];
|
|
15284
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
15285
|
+
to: GraphStoreBatchTestPerfhammerRelationshipEndNode;
|
|
15286
|
+
};
|
|
15287
|
+
export type GraphStoreBatchTestPerfhammerRelationshipStartNode = Node & {
|
|
15288
|
+
__typename?: 'GraphStoreBatchTestPerfhammerRelationshipStartNode';
|
|
15289
|
+
id: Scalars['ID']['output'];
|
|
15290
|
+
};
|
|
15291
|
+
export type GraphStoreBooleanFilterInput = {
|
|
15292
|
+
is?: InputMaybe<Scalars['Boolean']['input']>;
|
|
15293
|
+
};
|
|
15294
|
+
export type GraphStoreCreateIncidentAssociatedPostIncidentReviewLinkInput = {
|
|
15295
|
+
relationships: Array<GraphStoreCreateIncidentAssociatedPostIncidentReviewLinkRelationshipInput>;
|
|
15296
|
+
};
|
|
14918
15297
|
export type GraphStoreCreateIncidentAssociatedPostIncidentReviewLinkPayload = Payload & {
|
|
14919
15298
|
__typename?: 'GraphStoreCreateIncidentAssociatedPostIncidentReviewLinkPayload';
|
|
14920
15299
|
errors?: Maybe<Array<MutationError>>;
|
|
14921
15300
|
success: Scalars['Boolean']['output'];
|
|
14922
15301
|
};
|
|
15302
|
+
export type GraphStoreCreateIncidentAssociatedPostIncidentReviewLinkRelationshipInput = {
|
|
15303
|
+
from: Scalars['ID']['input'];
|
|
15304
|
+
sequenceNumber?: InputMaybe<Scalars['Long']['input']>;
|
|
15305
|
+
to: Scalars['ID']['input'];
|
|
15306
|
+
updatedAt?: InputMaybe<Scalars['DateTime']['input']>;
|
|
15307
|
+
};
|
|
15308
|
+
export type GraphStoreCreateIncidentHasActionItemInput = {
|
|
15309
|
+
relationships: Array<GraphStoreCreateIncidentHasActionItemRelationshipInput>;
|
|
15310
|
+
};
|
|
14923
15311
|
export type GraphStoreCreateIncidentHasActionItemPayload = Payload & {
|
|
14924
15312
|
__typename?: 'GraphStoreCreateIncidentHasActionItemPayload';
|
|
14925
15313
|
errors?: Maybe<Array<MutationError>>;
|
|
14926
15314
|
success: Scalars['Boolean']['output'];
|
|
14927
15315
|
};
|
|
15316
|
+
export type GraphStoreCreateIncidentHasActionItemRelationshipInput = {
|
|
15317
|
+
from: Scalars['ID']['input'];
|
|
15318
|
+
sequenceNumber?: InputMaybe<Scalars['Long']['input']>;
|
|
15319
|
+
to: Scalars['ID']['input'];
|
|
15320
|
+
updatedAt?: InputMaybe<Scalars['DateTime']['input']>;
|
|
15321
|
+
};
|
|
15322
|
+
export type GraphStoreCreateIncidentLinkedJswIssueInput = {
|
|
15323
|
+
relationships: Array<GraphStoreCreateIncidentLinkedJswIssueRelationshipInput>;
|
|
15324
|
+
};
|
|
14928
15325
|
export type GraphStoreCreateIncidentLinkedJswIssuePayload = Payload & {
|
|
14929
15326
|
__typename?: 'GraphStoreCreateIncidentLinkedJswIssuePayload';
|
|
14930
15327
|
errors?: Maybe<Array<MutationError>>;
|
|
14931
15328
|
success: Scalars['Boolean']['output'];
|
|
14932
15329
|
};
|
|
15330
|
+
export type GraphStoreCreateIncidentLinkedJswIssueRelationshipInput = {
|
|
15331
|
+
from: Scalars['ID']['input'];
|
|
15332
|
+
sequenceNumber?: InputMaybe<Scalars['Long']['input']>;
|
|
15333
|
+
to: Scalars['ID']['input'];
|
|
15334
|
+
updatedAt?: InputMaybe<Scalars['DateTime']['input']>;
|
|
15335
|
+
};
|
|
15336
|
+
export type GraphStoreCreateJswProjectAssociatedComponentInput = {
|
|
15337
|
+
relationships: Array<GraphStoreCreateJswProjectAssociatedComponentRelationshipInput>;
|
|
15338
|
+
};
|
|
14933
15339
|
export type GraphStoreCreateJswProjectAssociatedComponentPayload = Payload & {
|
|
14934
15340
|
__typename?: 'GraphStoreCreateJswProjectAssociatedComponentPayload';
|
|
14935
15341
|
errors?: Maybe<Array<MutationError>>;
|
|
14936
15342
|
success: Scalars['Boolean']['output'];
|
|
14937
15343
|
};
|
|
15344
|
+
export type GraphStoreCreateJswProjectAssociatedComponentRelationshipInput = {
|
|
15345
|
+
from: Scalars['ID']['input'];
|
|
15346
|
+
sequenceNumber?: InputMaybe<Scalars['Long']['input']>;
|
|
15347
|
+
to: Scalars['ID']['input'];
|
|
15348
|
+
updatedAt?: InputMaybe<Scalars['DateTime']['input']>;
|
|
15349
|
+
};
|
|
15350
|
+
export type GraphStoreCreateProjectAssociatedOpsgenieTeamInput = {
|
|
15351
|
+
relationships: Array<GraphStoreCreateProjectAssociatedOpsgenieTeamRelationshipInput>;
|
|
15352
|
+
};
|
|
14938
15353
|
export type GraphStoreCreateProjectAssociatedOpsgenieTeamPayload = Payload & {
|
|
14939
15354
|
__typename?: 'GraphStoreCreateProjectAssociatedOpsgenieTeamPayload';
|
|
14940
15355
|
errors?: Maybe<Array<MutationError>>;
|
|
14941
15356
|
success: Scalars['Boolean']['output'];
|
|
14942
15357
|
};
|
|
15358
|
+
export type GraphStoreCreateProjectAssociatedOpsgenieTeamRelationshipInput = {
|
|
15359
|
+
from: Scalars['ID']['input'];
|
|
15360
|
+
sequenceNumber?: InputMaybe<Scalars['Long']['input']>;
|
|
15361
|
+
to: Scalars['ID']['input'];
|
|
15362
|
+
updatedAt?: InputMaybe<Scalars['DateTime']['input']>;
|
|
15363
|
+
};
|
|
15364
|
+
export type GraphStoreCreateProjectAssociatedToSecurityContainerInput = {
|
|
15365
|
+
relationships: Array<GraphStoreCreateProjectAssociatedToSecurityContainerRelationshipInput>;
|
|
15366
|
+
};
|
|
14943
15367
|
export type GraphStoreCreateProjectAssociatedToSecurityContainerPayload = Payload & {
|
|
14944
15368
|
__typename?: 'GraphStoreCreateProjectAssociatedToSecurityContainerPayload';
|
|
14945
15369
|
errors?: Maybe<Array<MutationError>>;
|
|
14946
15370
|
success: Scalars['Boolean']['output'];
|
|
14947
15371
|
};
|
|
15372
|
+
export type GraphStoreCreateProjectAssociatedToSecurityContainerRelationshipInput = {
|
|
15373
|
+
from: Scalars['ID']['input'];
|
|
15374
|
+
sequenceNumber?: InputMaybe<Scalars['Long']['input']>;
|
|
15375
|
+
to: Scalars['ID']['input'];
|
|
15376
|
+
updatedAt?: InputMaybe<Scalars['DateTime']['input']>;
|
|
15377
|
+
};
|
|
15378
|
+
export type GraphStoreCreateProjectDisassociatedRepoInput = {
|
|
15379
|
+
relationships: Array<GraphStoreCreateProjectDisassociatedRepoRelationshipInput>;
|
|
15380
|
+
};
|
|
14948
15381
|
export type GraphStoreCreateProjectDisassociatedRepoPayload = Payload & {
|
|
14949
15382
|
__typename?: 'GraphStoreCreateProjectDisassociatedRepoPayload';
|
|
14950
15383
|
errors?: Maybe<Array<MutationError>>;
|
|
14951
15384
|
success: Scalars['Boolean']['output'];
|
|
14952
15385
|
};
|
|
15386
|
+
export type GraphStoreCreateProjectDisassociatedRepoRelationshipInput = {
|
|
15387
|
+
from: Scalars['ID']['input'];
|
|
15388
|
+
sequenceNumber?: InputMaybe<Scalars['Long']['input']>;
|
|
15389
|
+
to: Scalars['ID']['input'];
|
|
15390
|
+
updatedAt?: InputMaybe<Scalars['DateTime']['input']>;
|
|
15391
|
+
};
|
|
15392
|
+
export type GraphStoreCreateProjectDocumentationEntityInput = {
|
|
15393
|
+
relationships: Array<GraphStoreCreateProjectDocumentationEntityRelationshipInput>;
|
|
15394
|
+
};
|
|
14953
15395
|
export type GraphStoreCreateProjectDocumentationEntityPayload = Payload & {
|
|
14954
15396
|
__typename?: 'GraphStoreCreateProjectDocumentationEntityPayload';
|
|
14955
15397
|
errors?: Maybe<Array<MutationError>>;
|
|
14956
15398
|
success: Scalars['Boolean']['output'];
|
|
14957
15399
|
};
|
|
15400
|
+
export type GraphStoreCreateProjectDocumentationEntityRelationshipInput = {
|
|
15401
|
+
from: Scalars['ID']['input'];
|
|
15402
|
+
sequenceNumber?: InputMaybe<Scalars['Long']['input']>;
|
|
15403
|
+
to: Scalars['ID']['input'];
|
|
15404
|
+
updatedAt?: InputMaybe<Scalars['DateTime']['input']>;
|
|
15405
|
+
};
|
|
15406
|
+
export type GraphStoreCreateProjectDocumentationPageInput = {
|
|
15407
|
+
relationships: Array<GraphStoreCreateProjectDocumentationPageRelationshipInput>;
|
|
15408
|
+
};
|
|
14958
15409
|
export type GraphStoreCreateProjectDocumentationPagePayload = Payload & {
|
|
14959
15410
|
__typename?: 'GraphStoreCreateProjectDocumentationPagePayload';
|
|
14960
15411
|
errors?: Maybe<Array<MutationError>>;
|
|
14961
15412
|
success: Scalars['Boolean']['output'];
|
|
14962
15413
|
};
|
|
15414
|
+
export type GraphStoreCreateProjectDocumentationPageRelationshipInput = {
|
|
15415
|
+
from: Scalars['ID']['input'];
|
|
15416
|
+
sequenceNumber?: InputMaybe<Scalars['Long']['input']>;
|
|
15417
|
+
to: Scalars['ID']['input'];
|
|
15418
|
+
updatedAt?: InputMaybe<Scalars['DateTime']['input']>;
|
|
15419
|
+
};
|
|
15420
|
+
export type GraphStoreCreateProjectDocumentationSpaceInput = {
|
|
15421
|
+
relationships: Array<GraphStoreCreateProjectDocumentationSpaceRelationshipInput>;
|
|
15422
|
+
};
|
|
14963
15423
|
export type GraphStoreCreateProjectDocumentationSpacePayload = Payload & {
|
|
14964
15424
|
__typename?: 'GraphStoreCreateProjectDocumentationSpacePayload';
|
|
14965
15425
|
errors?: Maybe<Array<MutationError>>;
|
|
14966
15426
|
success: Scalars['Boolean']['output'];
|
|
14967
15427
|
};
|
|
15428
|
+
export type GraphStoreCreateProjectDocumentationSpaceRelationshipInput = {
|
|
15429
|
+
from: Scalars['ID']['input'];
|
|
15430
|
+
sequenceNumber?: InputMaybe<Scalars['Long']['input']>;
|
|
15431
|
+
to: Scalars['ID']['input'];
|
|
15432
|
+
updatedAt?: InputMaybe<Scalars['DateTime']['input']>;
|
|
15433
|
+
};
|
|
15434
|
+
export type GraphStoreCreateProjectHasSharedVersionWithInput = {
|
|
15435
|
+
relationships: Array<GraphStoreCreateProjectHasSharedVersionWithRelationshipInput>;
|
|
15436
|
+
};
|
|
14968
15437
|
export type GraphStoreCreateProjectHasSharedVersionWithPayload = Payload & {
|
|
14969
15438
|
__typename?: 'GraphStoreCreateProjectHasSharedVersionWithPayload';
|
|
14970
15439
|
errors?: Maybe<Array<MutationError>>;
|
|
14971
15440
|
success: Scalars['Boolean']['output'];
|
|
14972
15441
|
};
|
|
15442
|
+
export type GraphStoreCreateProjectHasSharedVersionWithRelationshipInput = {
|
|
15443
|
+
from: Scalars['ID']['input'];
|
|
15444
|
+
sequenceNumber?: InputMaybe<Scalars['Long']['input']>;
|
|
15445
|
+
to: Scalars['ID']['input'];
|
|
15446
|
+
updatedAt?: InputMaybe<Scalars['DateTime']['input']>;
|
|
15447
|
+
};
|
|
15448
|
+
export type GraphStoreCreateProjectHasVersionInput = {
|
|
15449
|
+
relationships: Array<GraphStoreCreateProjectHasVersionRelationshipInput>;
|
|
15450
|
+
};
|
|
14973
15451
|
export type GraphStoreCreateProjectHasVersionPayload = Payload & {
|
|
14974
15452
|
__typename?: 'GraphStoreCreateProjectHasVersionPayload';
|
|
14975
15453
|
errors?: Maybe<Array<MutationError>>;
|
|
14976
15454
|
success: Scalars['Boolean']['output'];
|
|
14977
15455
|
};
|
|
15456
|
+
export type GraphStoreCreateProjectHasVersionRelationshipInput = {
|
|
15457
|
+
from: Scalars['ID']['input'];
|
|
15458
|
+
sequenceNumber?: InputMaybe<Scalars['Long']['input']>;
|
|
15459
|
+
to: Scalars['ID']['input'];
|
|
15460
|
+
updatedAt?: InputMaybe<Scalars['DateTime']['input']>;
|
|
15461
|
+
};
|
|
15462
|
+
export type GraphStoreCreateSprintRetrospectivePageInput = {
|
|
15463
|
+
relationships: Array<GraphStoreCreateSprintRetrospectivePageRelationshipInput>;
|
|
15464
|
+
};
|
|
14978
15465
|
export type GraphStoreCreateSprintRetrospectivePagePayload = Payload & {
|
|
14979
15466
|
__typename?: 'GraphStoreCreateSprintRetrospectivePagePayload';
|
|
14980
15467
|
errors?: Maybe<Array<MutationError>>;
|
|
14981
15468
|
success: Scalars['Boolean']['output'];
|
|
14982
15469
|
};
|
|
15470
|
+
export type GraphStoreCreateSprintRetrospectivePageRelationshipInput = {
|
|
15471
|
+
from: Scalars['ID']['input'];
|
|
15472
|
+
sequenceNumber?: InputMaybe<Scalars['Long']['input']>;
|
|
15473
|
+
to: Scalars['ID']['input'];
|
|
15474
|
+
updatedAt?: InputMaybe<Scalars['DateTime']['input']>;
|
|
15475
|
+
};
|
|
15476
|
+
export type GraphStoreCreateSprintRetrospectiveWhiteboardInput = {
|
|
15477
|
+
relationships: Array<GraphStoreCreateSprintRetrospectiveWhiteboardRelationshipInput>;
|
|
15478
|
+
};
|
|
15479
|
+
export type GraphStoreCreateSprintRetrospectiveWhiteboardPayload = Payload & {
|
|
15480
|
+
__typename?: 'GraphStoreCreateSprintRetrospectiveWhiteboardPayload';
|
|
15481
|
+
errors?: Maybe<Array<MutationError>>;
|
|
15482
|
+
success: Scalars['Boolean']['output'];
|
|
15483
|
+
};
|
|
15484
|
+
export type GraphStoreCreateSprintRetrospectiveWhiteboardRelationshipInput = {
|
|
15485
|
+
from: Scalars['ID']['input'];
|
|
15486
|
+
sequenceNumber?: InputMaybe<Scalars['Long']['input']>;
|
|
15487
|
+
to: Scalars['ID']['input'];
|
|
15488
|
+
updatedAt?: InputMaybe<Scalars['DateTime']['input']>;
|
|
15489
|
+
};
|
|
15490
|
+
export type GraphStoreCreateTestPerfhammerRelationshipInput = {
|
|
15491
|
+
relationships: Array<GraphStoreCreateTestPerfhammerRelationshipRelationshipInput>;
|
|
15492
|
+
};
|
|
15493
|
+
export type GraphStoreCreateTestPerfhammerRelationshipPayload = Payload & {
|
|
15494
|
+
__typename?: 'GraphStoreCreateTestPerfhammerRelationshipPayload';
|
|
15495
|
+
errors?: Maybe<Array<MutationError>>;
|
|
15496
|
+
success: Scalars['Boolean']['output'];
|
|
15497
|
+
};
|
|
15498
|
+
export type GraphStoreCreateTestPerfhammerRelationshipRelationshipInput = {
|
|
15499
|
+
from: Scalars['ID']['input'];
|
|
15500
|
+
relationshipMetadata?: InputMaybe<GraphStoreCreateTestPerfhammerRelationshipRelationshipMetadataInput>;
|
|
15501
|
+
sequenceNumber?: InputMaybe<Scalars['Long']['input']>;
|
|
15502
|
+
to: Scalars['ID']['input'];
|
|
15503
|
+
updatedAt?: InputMaybe<Scalars['DateTime']['input']>;
|
|
15504
|
+
};
|
|
15505
|
+
export type GraphStoreCreateTestPerfhammerRelationshipRelationshipMetadataInput = {
|
|
15506
|
+
replicatedNumber?: InputMaybe<Scalars['Int']['input']>;
|
|
15507
|
+
sequentialNumber?: InputMaybe<Scalars['Int']['input']>;
|
|
15508
|
+
};
|
|
15509
|
+
export type GraphStoreCreateVersionUserAssociatedFeatureFlagInput = {
|
|
15510
|
+
relationships: Array<GraphStoreCreateVersionUserAssociatedFeatureFlagRelationshipInput>;
|
|
15511
|
+
};
|
|
14983
15512
|
export type GraphStoreCreateVersionUserAssociatedFeatureFlagPayload = Payload & {
|
|
14984
15513
|
__typename?: 'GraphStoreCreateVersionUserAssociatedFeatureFlagPayload';
|
|
14985
15514
|
errors?: Maybe<Array<MutationError>>;
|
|
14986
15515
|
success: Scalars['Boolean']['output'];
|
|
14987
15516
|
};
|
|
15517
|
+
export type GraphStoreCreateVersionUserAssociatedFeatureFlagRelationshipInput = {
|
|
15518
|
+
from: Scalars['ID']['input'];
|
|
15519
|
+
sequenceNumber?: InputMaybe<Scalars['Long']['input']>;
|
|
15520
|
+
to: Scalars['ID']['input'];
|
|
15521
|
+
updatedAt?: InputMaybe<Scalars['DateTime']['input']>;
|
|
15522
|
+
};
|
|
15523
|
+
export type GraphStoreCreateVulnerabilityAssociatedIssueContainerInput = {
|
|
15524
|
+
containerAri?: InputMaybe<Scalars['String']['input']>;
|
|
15525
|
+
};
|
|
15526
|
+
export type GraphStoreCreateVulnerabilityAssociatedIssueInput = {
|
|
15527
|
+
relationships: Array<GraphStoreCreateVulnerabilityAssociatedIssueRelationshipInput>;
|
|
15528
|
+
};
|
|
14988
15529
|
export type GraphStoreCreateVulnerabilityAssociatedIssuePayload = Payload & {
|
|
14989
15530
|
__typename?: 'GraphStoreCreateVulnerabilityAssociatedIssuePayload';
|
|
14990
15531
|
errors?: Maybe<Array<MutationError>>;
|
|
14991
15532
|
success: Scalars['Boolean']['output'];
|
|
14992
15533
|
};
|
|
15534
|
+
export type GraphStoreCreateVulnerabilityAssociatedIssueRelationshipInput = {
|
|
15535
|
+
from: Scalars['ID']['input'];
|
|
15536
|
+
sequenceNumber?: InputMaybe<Scalars['Long']['input']>;
|
|
15537
|
+
subjectMetadata?: InputMaybe<GraphStoreCreateVulnerabilityAssociatedIssueRelationshipSubjectMetadataInput>;
|
|
15538
|
+
to: Scalars['ID']['input'];
|
|
15539
|
+
updatedAt?: InputMaybe<Scalars['DateTime']['input']>;
|
|
15540
|
+
};
|
|
15541
|
+
export type GraphStoreCreateVulnerabilityAssociatedIssueRelationshipSubjectMetadataInput = {
|
|
15542
|
+
container?: InputMaybe<GraphStoreCreateVulnerabilityAssociatedIssueContainerInput>;
|
|
15543
|
+
severity?: InputMaybe<GraphStoreCreateVulnerabilityAssociatedIssueVulnerabilitySeverityInput>;
|
|
15544
|
+
status?: InputMaybe<GraphStoreCreateVulnerabilityAssociatedIssueVulnerabilityStatusInput>;
|
|
15545
|
+
type?: InputMaybe<GraphStoreCreateVulnerabilityAssociatedIssueVulnerabilityTypeInput>;
|
|
15546
|
+
};
|
|
15547
|
+
export declare enum GraphStoreCreateVulnerabilityAssociatedIssueVulnerabilitySeverityInput {
|
|
15548
|
+
Critical = "CRITICAL",
|
|
15549
|
+
High = "HIGH",
|
|
15550
|
+
Low = "LOW",
|
|
15551
|
+
Medium = "MEDIUM",
|
|
15552
|
+
NotSet = "NOT_SET",
|
|
15553
|
+
Unknown = "UNKNOWN"
|
|
15554
|
+
}
|
|
15555
|
+
export declare enum GraphStoreCreateVulnerabilityAssociatedIssueVulnerabilityStatusInput {
|
|
15556
|
+
Closed = "CLOSED",
|
|
15557
|
+
Ignored = "IGNORED",
|
|
15558
|
+
NotSet = "NOT_SET",
|
|
15559
|
+
Open = "OPEN",
|
|
15560
|
+
Unknown = "UNKNOWN"
|
|
15561
|
+
}
|
|
15562
|
+
export declare enum GraphStoreCreateVulnerabilityAssociatedIssueVulnerabilityTypeInput {
|
|
15563
|
+
Dast = "DAST",
|
|
15564
|
+
NotSet = "NOT_SET",
|
|
15565
|
+
Sast = "SAST",
|
|
15566
|
+
Sca = "SCA",
|
|
15567
|
+
Unknown = "UNKNOWN"
|
|
15568
|
+
}
|
|
15569
|
+
export type GraphStoreDateFilterInput = {
|
|
15570
|
+
after?: InputMaybe<Scalars['DateTime']['input']>;
|
|
15571
|
+
before?: InputMaybe<Scalars['DateTime']['input']>;
|
|
15572
|
+
};
|
|
15573
|
+
export type GraphStoreDeleteIncidentAssociatedPostIncidentReviewLinkInput = {
|
|
15574
|
+
relationships: Array<GraphStoreDeleteIncidentAssociatedPostIncidentReviewLinkRelationshipInput>;
|
|
15575
|
+
};
|
|
15576
|
+
export type GraphStoreDeleteIncidentAssociatedPostIncidentReviewLinkPayload = Payload & {
|
|
15577
|
+
__typename?: 'GraphStoreDeleteIncidentAssociatedPostIncidentReviewLinkPayload';
|
|
15578
|
+
errors?: Maybe<Array<MutationError>>;
|
|
15579
|
+
success: Scalars['Boolean']['output'];
|
|
15580
|
+
};
|
|
15581
|
+
export type GraphStoreDeleteIncidentAssociatedPostIncidentReviewLinkRelationshipInput = {
|
|
15582
|
+
from: Scalars['ID']['input'];
|
|
15583
|
+
to: Scalars['ID']['input'];
|
|
15584
|
+
};
|
|
15585
|
+
export type GraphStoreDeleteIncidentHasActionItemInput = {
|
|
15586
|
+
relationships: Array<GraphStoreDeleteIncidentHasActionItemRelationshipInput>;
|
|
15587
|
+
};
|
|
15588
|
+
export type GraphStoreDeleteIncidentHasActionItemPayload = Payload & {
|
|
15589
|
+
__typename?: 'GraphStoreDeleteIncidentHasActionItemPayload';
|
|
15590
|
+
errors?: Maybe<Array<MutationError>>;
|
|
15591
|
+
success: Scalars['Boolean']['output'];
|
|
15592
|
+
};
|
|
15593
|
+
export type GraphStoreDeleteIncidentHasActionItemRelationshipInput = {
|
|
15594
|
+
from: Scalars['ID']['input'];
|
|
15595
|
+
to: Scalars['ID']['input'];
|
|
15596
|
+
};
|
|
15597
|
+
export type GraphStoreDeleteIncidentLinkedJswIssueInput = {
|
|
15598
|
+
relationships: Array<GraphStoreDeleteIncidentLinkedJswIssueRelationshipInput>;
|
|
15599
|
+
};
|
|
15600
|
+
export type GraphStoreDeleteIncidentLinkedJswIssuePayload = Payload & {
|
|
15601
|
+
__typename?: 'GraphStoreDeleteIncidentLinkedJswIssuePayload';
|
|
15602
|
+
errors?: Maybe<Array<MutationError>>;
|
|
15603
|
+
success: Scalars['Boolean']['output'];
|
|
15604
|
+
};
|
|
15605
|
+
export type GraphStoreDeleteIncidentLinkedJswIssueRelationshipInput = {
|
|
15606
|
+
from: Scalars['ID']['input'];
|
|
15607
|
+
to: Scalars['ID']['input'];
|
|
15608
|
+
};
|
|
15609
|
+
export type GraphStoreDeleteJswProjectAssociatedComponentInput = {
|
|
15610
|
+
relationships: Array<GraphStoreDeleteJswProjectAssociatedComponentRelationshipInput>;
|
|
15611
|
+
};
|
|
15612
|
+
export type GraphStoreDeleteJswProjectAssociatedComponentPayload = Payload & {
|
|
15613
|
+
__typename?: 'GraphStoreDeleteJswProjectAssociatedComponentPayload';
|
|
15614
|
+
errors?: Maybe<Array<MutationError>>;
|
|
15615
|
+
success: Scalars['Boolean']['output'];
|
|
15616
|
+
};
|
|
15617
|
+
export type GraphStoreDeleteJswProjectAssociatedComponentRelationshipInput = {
|
|
15618
|
+
from: Scalars['ID']['input'];
|
|
15619
|
+
to: Scalars['ID']['input'];
|
|
15620
|
+
};
|
|
15621
|
+
export type GraphStoreDeleteProjectAssociatedOpsgenieTeamInput = {
|
|
15622
|
+
relationships: Array<GraphStoreDeleteProjectAssociatedOpsgenieTeamRelationshipInput>;
|
|
15623
|
+
};
|
|
15624
|
+
export type GraphStoreDeleteProjectAssociatedOpsgenieTeamPayload = Payload & {
|
|
15625
|
+
__typename?: 'GraphStoreDeleteProjectAssociatedOpsgenieTeamPayload';
|
|
15626
|
+
errors?: Maybe<Array<MutationError>>;
|
|
15627
|
+
success: Scalars['Boolean']['output'];
|
|
15628
|
+
};
|
|
15629
|
+
export type GraphStoreDeleteProjectAssociatedOpsgenieTeamRelationshipInput = {
|
|
15630
|
+
from: Scalars['ID']['input'];
|
|
15631
|
+
to: Scalars['ID']['input'];
|
|
15632
|
+
};
|
|
15633
|
+
export type GraphStoreDeleteProjectAssociatedToSecurityContainerInput = {
|
|
15634
|
+
relationships: Array<GraphStoreDeleteProjectAssociatedToSecurityContainerRelationshipInput>;
|
|
15635
|
+
};
|
|
15636
|
+
export type GraphStoreDeleteProjectAssociatedToSecurityContainerPayload = Payload & {
|
|
15637
|
+
__typename?: 'GraphStoreDeleteProjectAssociatedToSecurityContainerPayload';
|
|
15638
|
+
errors?: Maybe<Array<MutationError>>;
|
|
15639
|
+
success: Scalars['Boolean']['output'];
|
|
15640
|
+
};
|
|
15641
|
+
export type GraphStoreDeleteProjectAssociatedToSecurityContainerRelationshipInput = {
|
|
15642
|
+
from: Scalars['ID']['input'];
|
|
15643
|
+
to: Scalars['ID']['input'];
|
|
15644
|
+
};
|
|
15645
|
+
export type GraphStoreDeleteProjectDisassociatedRepoInput = {
|
|
15646
|
+
relationships: Array<GraphStoreDeleteProjectDisassociatedRepoRelationshipInput>;
|
|
15647
|
+
};
|
|
15648
|
+
export type GraphStoreDeleteProjectDisassociatedRepoPayload = Payload & {
|
|
15649
|
+
__typename?: 'GraphStoreDeleteProjectDisassociatedRepoPayload';
|
|
15650
|
+
errors?: Maybe<Array<MutationError>>;
|
|
15651
|
+
success: Scalars['Boolean']['output'];
|
|
15652
|
+
};
|
|
15653
|
+
export type GraphStoreDeleteProjectDisassociatedRepoRelationshipInput = {
|
|
15654
|
+
from: Scalars['ID']['input'];
|
|
15655
|
+
to: Scalars['ID']['input'];
|
|
15656
|
+
};
|
|
15657
|
+
export type GraphStoreDeleteProjectDocumentationEntityInput = {
|
|
15658
|
+
relationships: Array<GraphStoreDeleteProjectDocumentationEntityRelationshipInput>;
|
|
15659
|
+
};
|
|
15660
|
+
export type GraphStoreDeleteProjectDocumentationEntityPayload = Payload & {
|
|
15661
|
+
__typename?: 'GraphStoreDeleteProjectDocumentationEntityPayload';
|
|
15662
|
+
errors?: Maybe<Array<MutationError>>;
|
|
15663
|
+
success: Scalars['Boolean']['output'];
|
|
15664
|
+
};
|
|
15665
|
+
export type GraphStoreDeleteProjectDocumentationEntityRelationshipInput = {
|
|
15666
|
+
from: Scalars['ID']['input'];
|
|
15667
|
+
to: Scalars['ID']['input'];
|
|
15668
|
+
};
|
|
15669
|
+
export type GraphStoreDeleteProjectDocumentationPageInput = {
|
|
15670
|
+
relationships: Array<GraphStoreDeleteProjectDocumentationPageRelationshipInput>;
|
|
15671
|
+
};
|
|
15672
|
+
export type GraphStoreDeleteProjectDocumentationPagePayload = Payload & {
|
|
15673
|
+
__typename?: 'GraphStoreDeleteProjectDocumentationPagePayload';
|
|
15674
|
+
errors?: Maybe<Array<MutationError>>;
|
|
15675
|
+
success: Scalars['Boolean']['output'];
|
|
15676
|
+
};
|
|
15677
|
+
export type GraphStoreDeleteProjectDocumentationPageRelationshipInput = {
|
|
15678
|
+
from: Scalars['ID']['input'];
|
|
15679
|
+
to: Scalars['ID']['input'];
|
|
15680
|
+
};
|
|
15681
|
+
export type GraphStoreDeleteProjectDocumentationSpaceInput = {
|
|
15682
|
+
relationships: Array<GraphStoreDeleteProjectDocumentationSpaceRelationshipInput>;
|
|
15683
|
+
};
|
|
15684
|
+
export type GraphStoreDeleteProjectDocumentationSpacePayload = Payload & {
|
|
15685
|
+
__typename?: 'GraphStoreDeleteProjectDocumentationSpacePayload';
|
|
15686
|
+
errors?: Maybe<Array<MutationError>>;
|
|
15687
|
+
success: Scalars['Boolean']['output'];
|
|
15688
|
+
};
|
|
15689
|
+
export type GraphStoreDeleteProjectDocumentationSpaceRelationshipInput = {
|
|
15690
|
+
from: Scalars['ID']['input'];
|
|
15691
|
+
to: Scalars['ID']['input'];
|
|
15692
|
+
};
|
|
15693
|
+
export type GraphStoreDeleteProjectHasSharedVersionWithInput = {
|
|
15694
|
+
relationships: Array<GraphStoreDeleteProjectHasSharedVersionWithRelationshipInput>;
|
|
15695
|
+
};
|
|
15696
|
+
export type GraphStoreDeleteProjectHasSharedVersionWithPayload = Payload & {
|
|
15697
|
+
__typename?: 'GraphStoreDeleteProjectHasSharedVersionWithPayload';
|
|
15698
|
+
errors?: Maybe<Array<MutationError>>;
|
|
15699
|
+
success: Scalars['Boolean']['output'];
|
|
15700
|
+
};
|
|
15701
|
+
export type GraphStoreDeleteProjectHasSharedVersionWithRelationshipInput = {
|
|
15702
|
+
from: Scalars['ID']['input'];
|
|
15703
|
+
to: Scalars['ID']['input'];
|
|
15704
|
+
};
|
|
15705
|
+
export type GraphStoreDeleteProjectHasVersionInput = {
|
|
15706
|
+
relationships: Array<GraphStoreDeleteProjectHasVersionRelationshipInput>;
|
|
15707
|
+
};
|
|
15708
|
+
export type GraphStoreDeleteProjectHasVersionPayload = Payload & {
|
|
15709
|
+
__typename?: 'GraphStoreDeleteProjectHasVersionPayload';
|
|
15710
|
+
errors?: Maybe<Array<MutationError>>;
|
|
15711
|
+
success: Scalars['Boolean']['output'];
|
|
15712
|
+
};
|
|
15713
|
+
export type GraphStoreDeleteProjectHasVersionRelationshipInput = {
|
|
15714
|
+
from: Scalars['ID']['input'];
|
|
15715
|
+
to: Scalars['ID']['input'];
|
|
15716
|
+
};
|
|
15717
|
+
export type GraphStoreDeleteSprintRetrospectivePageInput = {
|
|
15718
|
+
relationships: Array<GraphStoreDeleteSprintRetrospectivePageRelationshipInput>;
|
|
15719
|
+
};
|
|
15720
|
+
export type GraphStoreDeleteSprintRetrospectivePagePayload = Payload & {
|
|
15721
|
+
__typename?: 'GraphStoreDeleteSprintRetrospectivePagePayload';
|
|
15722
|
+
errors?: Maybe<Array<MutationError>>;
|
|
15723
|
+
success: Scalars['Boolean']['output'];
|
|
15724
|
+
};
|
|
15725
|
+
export type GraphStoreDeleteSprintRetrospectivePageRelationshipInput = {
|
|
15726
|
+
from: Scalars['ID']['input'];
|
|
15727
|
+
to: Scalars['ID']['input'];
|
|
15728
|
+
};
|
|
15729
|
+
export type GraphStoreDeleteSprintRetrospectiveWhiteboardInput = {
|
|
15730
|
+
relationships: Array<GraphStoreDeleteSprintRetrospectiveWhiteboardRelationshipInput>;
|
|
15731
|
+
};
|
|
15732
|
+
export type GraphStoreDeleteSprintRetrospectiveWhiteboardPayload = Payload & {
|
|
15733
|
+
__typename?: 'GraphStoreDeleteSprintRetrospectiveWhiteboardPayload';
|
|
15734
|
+
errors?: Maybe<Array<MutationError>>;
|
|
15735
|
+
success: Scalars['Boolean']['output'];
|
|
15736
|
+
};
|
|
15737
|
+
export type GraphStoreDeleteSprintRetrospectiveWhiteboardRelationshipInput = {
|
|
15738
|
+
from: Scalars['ID']['input'];
|
|
15739
|
+
to: Scalars['ID']['input'];
|
|
15740
|
+
};
|
|
15741
|
+
export type GraphStoreDeleteTestPerfhammerRelationshipInput = {
|
|
15742
|
+
relationships: Array<GraphStoreDeleteTestPerfhammerRelationshipRelationshipInput>;
|
|
15743
|
+
};
|
|
15744
|
+
export type GraphStoreDeleteTestPerfhammerRelationshipPayload = Payload & {
|
|
15745
|
+
__typename?: 'GraphStoreDeleteTestPerfhammerRelationshipPayload';
|
|
15746
|
+
errors?: Maybe<Array<MutationError>>;
|
|
15747
|
+
success: Scalars['Boolean']['output'];
|
|
15748
|
+
};
|
|
15749
|
+
export type GraphStoreDeleteTestPerfhammerRelationshipRelationshipInput = {
|
|
15750
|
+
from: Scalars['ID']['input'];
|
|
15751
|
+
to: Scalars['ID']['input'];
|
|
15752
|
+
};
|
|
15753
|
+
export type GraphStoreDeleteVersionUserAssociatedFeatureFlagInput = {
|
|
15754
|
+
relationships: Array<GraphStoreDeleteVersionUserAssociatedFeatureFlagRelationshipInput>;
|
|
15755
|
+
};
|
|
15756
|
+
export type GraphStoreDeleteVersionUserAssociatedFeatureFlagPayload = Payload & {
|
|
15757
|
+
__typename?: 'GraphStoreDeleteVersionUserAssociatedFeatureFlagPayload';
|
|
15758
|
+
errors?: Maybe<Array<MutationError>>;
|
|
15759
|
+
success: Scalars['Boolean']['output'];
|
|
15760
|
+
};
|
|
15761
|
+
export type GraphStoreDeleteVersionUserAssociatedFeatureFlagRelationshipInput = {
|
|
15762
|
+
from: Scalars['ID']['input'];
|
|
15763
|
+
to: Scalars['ID']['input'];
|
|
15764
|
+
};
|
|
15765
|
+
export type GraphStoreDeleteVulnerabilityAssociatedIssueInput = {
|
|
15766
|
+
relationships: Array<GraphStoreDeleteVulnerabilityAssociatedIssueRelationshipInput>;
|
|
15767
|
+
};
|
|
15768
|
+
export type GraphStoreDeleteVulnerabilityAssociatedIssuePayload = Payload & {
|
|
15769
|
+
__typename?: 'GraphStoreDeleteVulnerabilityAssociatedIssuePayload';
|
|
15770
|
+
errors?: Maybe<Array<MutationError>>;
|
|
15771
|
+
success: Scalars['Boolean']['output'];
|
|
15772
|
+
};
|
|
15773
|
+
export type GraphStoreDeleteVulnerabilityAssociatedIssueRelationshipInput = {
|
|
15774
|
+
from: Scalars['ID']['input'];
|
|
15775
|
+
to: Scalars['ID']['input'];
|
|
15776
|
+
};
|
|
15777
|
+
export type GraphStoreFloatFilterInput = {
|
|
15778
|
+
greaterThan?: InputMaybe<Scalars['Float']['input']>;
|
|
15779
|
+
greaterThanOrEqual?: InputMaybe<Scalars['Float']['input']>;
|
|
15780
|
+
is?: InputMaybe<Array<Scalars['Float']['input']>>;
|
|
15781
|
+
isNot?: InputMaybe<Array<Scalars['Float']['input']>>;
|
|
15782
|
+
lessThan?: InputMaybe<Scalars['Float']['input']>;
|
|
15783
|
+
lessThanOrEqual?: InputMaybe<Scalars['Float']['input']>;
|
|
15784
|
+
};
|
|
14993
15785
|
export type GraphStoreFullAppInstallationAssociatedToSecurityWorkspaceConnection = HasPageInfo & {
|
|
14994
15786
|
__typename?: 'GraphStoreFullAppInstallationAssociatedToSecurityWorkspaceConnection';
|
|
14995
15787
|
edges: Array<Maybe<GraphStoreFullAppInstallationAssociatedToSecurityWorkspaceEdge>>;
|
|
@@ -15368,8 +16160,10 @@ export type GraphStoreFullIssueAssociatedDeploymentEdge = {
|
|
|
15368
16160
|
};
|
|
15369
16161
|
export type GraphStoreFullIssueAssociatedDeploymentEndNode = Node & {
|
|
15370
16162
|
__typename?: 'GraphStoreFullIssueAssociatedDeploymentEndNode';
|
|
16163
|
+
data?: Maybe<GraphStoreFullIssueAssociatedDeploymentEndUnion>;
|
|
15371
16164
|
id: Scalars['ID']['output'];
|
|
15372
16165
|
};
|
|
16166
|
+
export type GraphStoreFullIssueAssociatedDeploymentEndUnion = DeploymentSummary;
|
|
15373
16167
|
export type GraphStoreFullIssueAssociatedDeploymentNode = Node & {
|
|
15374
16168
|
__typename?: 'GraphStoreFullIssueAssociatedDeploymentNode';
|
|
15375
16169
|
createdAt: Scalars['DateTime']['output'];
|
|
@@ -16035,8 +16829,10 @@ export type GraphStoreFullProjectAssociatedDeploymentEdge = {
|
|
|
16035
16829
|
};
|
|
16036
16830
|
export type GraphStoreFullProjectAssociatedDeploymentEndNode = Node & {
|
|
16037
16831
|
__typename?: 'GraphStoreFullProjectAssociatedDeploymentEndNode';
|
|
16832
|
+
data?: Maybe<GraphStoreFullProjectAssociatedDeploymentEndUnion>;
|
|
16038
16833
|
id: Scalars['ID']['output'];
|
|
16039
16834
|
};
|
|
16835
|
+
export type GraphStoreFullProjectAssociatedDeploymentEndUnion = DeploymentSummary;
|
|
16040
16836
|
export type GraphStoreFullProjectAssociatedDeploymentNode = Node & {
|
|
16041
16837
|
__typename?: 'GraphStoreFullProjectAssociatedDeploymentNode';
|
|
16042
16838
|
createdAt: Scalars['DateTime']['output'];
|
|
@@ -16909,6 +17705,35 @@ export type GraphStoreFullSprintRetrospectivePageStartNode = Node & {
|
|
|
16909
17705
|
__typename?: 'GraphStoreFullSprintRetrospectivePageStartNode';
|
|
16910
17706
|
id: Scalars['ID']['output'];
|
|
16911
17707
|
};
|
|
17708
|
+
export type GraphStoreFullSprintRetrospectiveWhiteboardConnection = HasPageInfo & HasTotal & {
|
|
17709
|
+
__typename?: 'GraphStoreFullSprintRetrospectiveWhiteboardConnection';
|
|
17710
|
+
edges: Array<Maybe<GraphStoreFullSprintRetrospectiveWhiteboardEdge>>;
|
|
17711
|
+
isExactCount?: Maybe<Scalars['Boolean']['output']>;
|
|
17712
|
+
nodes: Array<Maybe<GraphStoreFullSprintRetrospectiveWhiteboardNode>>;
|
|
17713
|
+
pageInfo: PageInfo;
|
|
17714
|
+
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
17715
|
+
};
|
|
17716
|
+
export type GraphStoreFullSprintRetrospectiveWhiteboardEdge = {
|
|
17717
|
+
__typename?: 'GraphStoreFullSprintRetrospectiveWhiteboardEdge';
|
|
17718
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
17719
|
+
node: GraphStoreFullSprintRetrospectiveWhiteboardNode;
|
|
17720
|
+
};
|
|
17721
|
+
export type GraphStoreFullSprintRetrospectiveWhiteboardEndNode = Node & {
|
|
17722
|
+
__typename?: 'GraphStoreFullSprintRetrospectiveWhiteboardEndNode';
|
|
17723
|
+
id: Scalars['ID']['output'];
|
|
17724
|
+
};
|
|
17725
|
+
export type GraphStoreFullSprintRetrospectiveWhiteboardNode = Node & {
|
|
17726
|
+
__typename?: 'GraphStoreFullSprintRetrospectiveWhiteboardNode';
|
|
17727
|
+
createdAt: Scalars['DateTime']['output'];
|
|
17728
|
+
from: GraphStoreFullSprintRetrospectiveWhiteboardStartNode;
|
|
17729
|
+
id: Scalars['ID']['output'];
|
|
17730
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
17731
|
+
to: GraphStoreFullSprintRetrospectiveWhiteboardEndNode;
|
|
17732
|
+
};
|
|
17733
|
+
export type GraphStoreFullSprintRetrospectiveWhiteboardStartNode = Node & {
|
|
17734
|
+
__typename?: 'GraphStoreFullSprintRetrospectiveWhiteboardStartNode';
|
|
17735
|
+
id: Scalars['ID']['output'];
|
|
17736
|
+
};
|
|
16912
17737
|
export type GraphStoreFullTeamWorksOnProjectConnection = HasPageInfo & HasTotal & {
|
|
16913
17738
|
__typename?: 'GraphStoreFullTeamWorksOnProjectConnection';
|
|
16914
17739
|
edges: Array<Maybe<GraphStoreFullTeamWorksOnProjectEdge>>;
|
|
@@ -16938,6 +17763,120 @@ export type GraphStoreFullTeamWorksOnProjectStartNode = Node & {
|
|
|
16938
17763
|
__typename?: 'GraphStoreFullTeamWorksOnProjectStartNode';
|
|
16939
17764
|
id: Scalars['ID']['output'];
|
|
16940
17765
|
};
|
|
17766
|
+
export type GraphStoreFullTestPerfhammerMaterializationAConnection = HasPageInfo & HasTotal & {
|
|
17767
|
+
__typename?: 'GraphStoreFullTestPerfhammerMaterializationAConnection';
|
|
17768
|
+
edges: Array<Maybe<GraphStoreFullTestPerfhammerMaterializationAEdge>>;
|
|
17769
|
+
isExactCount?: Maybe<Scalars['Boolean']['output']>;
|
|
17770
|
+
nodes: Array<Maybe<GraphStoreFullTestPerfhammerMaterializationANode>>;
|
|
17771
|
+
pageInfo: PageInfo;
|
|
17772
|
+
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
17773
|
+
};
|
|
17774
|
+
export type GraphStoreFullTestPerfhammerMaterializationAEdge = {
|
|
17775
|
+
__typename?: 'GraphStoreFullTestPerfhammerMaterializationAEdge';
|
|
17776
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
17777
|
+
node: GraphStoreFullTestPerfhammerMaterializationANode;
|
|
17778
|
+
};
|
|
17779
|
+
export type GraphStoreFullTestPerfhammerMaterializationAEndNode = Node & {
|
|
17780
|
+
__typename?: 'GraphStoreFullTestPerfhammerMaterializationAEndNode';
|
|
17781
|
+
id: Scalars['ID']['output'];
|
|
17782
|
+
};
|
|
17783
|
+
export type GraphStoreFullTestPerfhammerMaterializationANode = Node & {
|
|
17784
|
+
__typename?: 'GraphStoreFullTestPerfhammerMaterializationANode';
|
|
17785
|
+
createdAt: Scalars['DateTime']['output'];
|
|
17786
|
+
from: GraphStoreFullTestPerfhammerMaterializationAStartNode;
|
|
17787
|
+
id: Scalars['ID']['output'];
|
|
17788
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
17789
|
+
to: GraphStoreFullTestPerfhammerMaterializationAEndNode;
|
|
17790
|
+
};
|
|
17791
|
+
export type GraphStoreFullTestPerfhammerMaterializationAStartNode = Node & {
|
|
17792
|
+
__typename?: 'GraphStoreFullTestPerfhammerMaterializationAStartNode';
|
|
17793
|
+
id: Scalars['ID']['output'];
|
|
17794
|
+
};
|
|
17795
|
+
export type GraphStoreFullTestPerfhammerMaterializationBConnection = HasPageInfo & HasTotal & {
|
|
17796
|
+
__typename?: 'GraphStoreFullTestPerfhammerMaterializationBConnection';
|
|
17797
|
+
edges: Array<Maybe<GraphStoreFullTestPerfhammerMaterializationBEdge>>;
|
|
17798
|
+
isExactCount?: Maybe<Scalars['Boolean']['output']>;
|
|
17799
|
+
nodes: Array<Maybe<GraphStoreFullTestPerfhammerMaterializationBNode>>;
|
|
17800
|
+
pageInfo: PageInfo;
|
|
17801
|
+
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
17802
|
+
};
|
|
17803
|
+
export type GraphStoreFullTestPerfhammerMaterializationBEdge = {
|
|
17804
|
+
__typename?: 'GraphStoreFullTestPerfhammerMaterializationBEdge';
|
|
17805
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
17806
|
+
node: GraphStoreFullTestPerfhammerMaterializationBNode;
|
|
17807
|
+
};
|
|
17808
|
+
export type GraphStoreFullTestPerfhammerMaterializationBEndNode = Node & {
|
|
17809
|
+
__typename?: 'GraphStoreFullTestPerfhammerMaterializationBEndNode';
|
|
17810
|
+
id: Scalars['ID']['output'];
|
|
17811
|
+
};
|
|
17812
|
+
export type GraphStoreFullTestPerfhammerMaterializationBNode = Node & {
|
|
17813
|
+
__typename?: 'GraphStoreFullTestPerfhammerMaterializationBNode';
|
|
17814
|
+
createdAt: Scalars['DateTime']['output'];
|
|
17815
|
+
from: GraphStoreFullTestPerfhammerMaterializationBStartNode;
|
|
17816
|
+
id: Scalars['ID']['output'];
|
|
17817
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
17818
|
+
to: GraphStoreFullTestPerfhammerMaterializationBEndNode;
|
|
17819
|
+
};
|
|
17820
|
+
export type GraphStoreFullTestPerfhammerMaterializationBStartNode = Node & {
|
|
17821
|
+
__typename?: 'GraphStoreFullTestPerfhammerMaterializationBStartNode';
|
|
17822
|
+
id: Scalars['ID']['output'];
|
|
17823
|
+
};
|
|
17824
|
+
export type GraphStoreFullTestPerfhammerMaterializationConnection = HasPageInfo & HasTotal & {
|
|
17825
|
+
__typename?: 'GraphStoreFullTestPerfhammerMaterializationConnection';
|
|
17826
|
+
edges: Array<Maybe<GraphStoreFullTestPerfhammerMaterializationEdge>>;
|
|
17827
|
+
isExactCount?: Maybe<Scalars['Boolean']['output']>;
|
|
17828
|
+
nodes: Array<Maybe<GraphStoreFullTestPerfhammerMaterializationNode>>;
|
|
17829
|
+
pageInfo: PageInfo;
|
|
17830
|
+
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
17831
|
+
};
|
|
17832
|
+
export type GraphStoreFullTestPerfhammerMaterializationEdge = {
|
|
17833
|
+
__typename?: 'GraphStoreFullTestPerfhammerMaterializationEdge';
|
|
17834
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
17835
|
+
node: GraphStoreFullTestPerfhammerMaterializationNode;
|
|
17836
|
+
};
|
|
17837
|
+
export type GraphStoreFullTestPerfhammerMaterializationEndNode = Node & {
|
|
17838
|
+
__typename?: 'GraphStoreFullTestPerfhammerMaterializationEndNode';
|
|
17839
|
+
id: Scalars['ID']['output'];
|
|
17840
|
+
};
|
|
17841
|
+
export type GraphStoreFullTestPerfhammerMaterializationNode = Node & {
|
|
17842
|
+
__typename?: 'GraphStoreFullTestPerfhammerMaterializationNode';
|
|
17843
|
+
createdAt: Scalars['DateTime']['output'];
|
|
17844
|
+
from: GraphStoreFullTestPerfhammerMaterializationStartNode;
|
|
17845
|
+
id: Scalars['ID']['output'];
|
|
17846
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
17847
|
+
to: GraphStoreFullTestPerfhammerMaterializationEndNode;
|
|
17848
|
+
};
|
|
17849
|
+
export type GraphStoreFullTestPerfhammerMaterializationStartNode = Node & {
|
|
17850
|
+
__typename?: 'GraphStoreFullTestPerfhammerMaterializationStartNode';
|
|
17851
|
+
id: Scalars['ID']['output'];
|
|
17852
|
+
};
|
|
17853
|
+
export type GraphStoreFullTestPerfhammerRelationshipConnection = HasPageInfo & {
|
|
17854
|
+
__typename?: 'GraphStoreFullTestPerfhammerRelationshipConnection';
|
|
17855
|
+
edges: Array<Maybe<GraphStoreFullTestPerfhammerRelationshipEdge>>;
|
|
17856
|
+
nodes: Array<Maybe<GraphStoreFullTestPerfhammerRelationshipNode>>;
|
|
17857
|
+
pageInfo: PageInfo;
|
|
17858
|
+
};
|
|
17859
|
+
export type GraphStoreFullTestPerfhammerRelationshipEdge = {
|
|
17860
|
+
__typename?: 'GraphStoreFullTestPerfhammerRelationshipEdge';
|
|
17861
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
17862
|
+
node: GraphStoreFullTestPerfhammerRelationshipNode;
|
|
17863
|
+
};
|
|
17864
|
+
export type GraphStoreFullTestPerfhammerRelationshipEndNode = Node & {
|
|
17865
|
+
__typename?: 'GraphStoreFullTestPerfhammerRelationshipEndNode';
|
|
17866
|
+
id: Scalars['ID']['output'];
|
|
17867
|
+
};
|
|
17868
|
+
export type GraphStoreFullTestPerfhammerRelationshipNode = Node & {
|
|
17869
|
+
__typename?: 'GraphStoreFullTestPerfhammerRelationshipNode';
|
|
17870
|
+
createdAt: Scalars['DateTime']['output'];
|
|
17871
|
+
from: GraphStoreFullTestPerfhammerRelationshipStartNode;
|
|
17872
|
+
id: Scalars['ID']['output'];
|
|
17873
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
17874
|
+
to: GraphStoreFullTestPerfhammerRelationshipEndNode;
|
|
17875
|
+
};
|
|
17876
|
+
export type GraphStoreFullTestPerfhammerRelationshipStartNode = Node & {
|
|
17877
|
+
__typename?: 'GraphStoreFullTestPerfhammerRelationshipStartNode';
|
|
17878
|
+
id: Scalars['ID']['output'];
|
|
17879
|
+
};
|
|
16941
17880
|
export type GraphStoreFullUserIsInTeamConnection = HasPageInfo & {
|
|
16942
17881
|
__typename?: 'GraphStoreFullUserIsInTeamConnection';
|
|
16943
17882
|
edges: Array<Maybe<GraphStoreFullUserIsInTeamEdge>>;
|
|
@@ -17222,41 +18161,21 @@ export type GraphStoreFullVulnerabilityAssociatedIssueStartNode = Node & {
|
|
|
17222
18161
|
__typename?: 'GraphStoreFullVulnerabilityAssociatedIssueStartNode';
|
|
17223
18162
|
id: Scalars['ID']['output'];
|
|
17224
18163
|
};
|
|
17225
|
-
export type
|
|
17226
|
-
|
|
18164
|
+
export type GraphStoreIntFilterInput = {
|
|
18165
|
+
greaterThan?: InputMaybe<Scalars['Int']['input']>;
|
|
18166
|
+
greaterThanOrEqual?: InputMaybe<Scalars['Int']['input']>;
|
|
18167
|
+
is?: InputMaybe<Array<Scalars['Int']['input']>>;
|
|
18168
|
+
isNot?: InputMaybe<Array<Scalars['Int']['input']>>;
|
|
18169
|
+
lessThan?: InputMaybe<Scalars['Int']['input']>;
|
|
18170
|
+
lessThanOrEqual?: InputMaybe<Scalars['Int']['input']>;
|
|
17227
18171
|
};
|
|
17228
|
-
export type
|
|
17229
|
-
|
|
17230
|
-
|
|
17231
|
-
|
|
17232
|
-
|
|
17233
|
-
|
|
17234
|
-
|
|
17235
|
-
relationships: Array<GraphStoreIncidentHasActionItemRelationship>;
|
|
17236
|
-
};
|
|
17237
|
-
export type GraphStoreIncidentHasActionItemRelationship = {
|
|
17238
|
-
from: Scalars['ID']['input'];
|
|
17239
|
-
sequenceNumber?: InputMaybe<Scalars['Long']['input']>;
|
|
17240
|
-
to: Scalars['ID']['input'];
|
|
17241
|
-
updatedAt?: InputMaybe<Scalars['DateTime']['input']>;
|
|
17242
|
-
};
|
|
17243
|
-
export type GraphStoreIncidentLinkedJswIssueInput = {
|
|
17244
|
-
relationships: Array<GraphStoreIncidentLinkedJswIssueRelationship>;
|
|
17245
|
-
};
|
|
17246
|
-
export type GraphStoreIncidentLinkedJswIssueRelationship = {
|
|
17247
|
-
from: Scalars['ID']['input'];
|
|
17248
|
-
sequenceNumber?: InputMaybe<Scalars['Long']['input']>;
|
|
17249
|
-
to: Scalars['ID']['input'];
|
|
17250
|
-
updatedAt?: InputMaybe<Scalars['DateTime']['input']>;
|
|
17251
|
-
};
|
|
17252
|
-
export type GraphStoreJswProjectAssociatedComponentInput = {
|
|
17253
|
-
relationships: Array<GraphStoreJswProjectAssociatedComponentRelationship>;
|
|
17254
|
-
};
|
|
17255
|
-
export type GraphStoreJswProjectAssociatedComponentRelationship = {
|
|
17256
|
-
from: Scalars['ID']['input'];
|
|
17257
|
-
sequenceNumber?: InputMaybe<Scalars['Long']['input']>;
|
|
17258
|
-
to: Scalars['ID']['input'];
|
|
17259
|
-
updatedAt?: InputMaybe<Scalars['DateTime']['input']>;
|
|
18172
|
+
export type GraphStoreLongFilterInput = {
|
|
18173
|
+
greaterThan?: InputMaybe<Scalars['Long']['input']>;
|
|
18174
|
+
greaterThanOrEqual?: InputMaybe<Scalars['Long']['input']>;
|
|
18175
|
+
is?: InputMaybe<Array<Scalars['Long']['input']>>;
|
|
18176
|
+
isNot?: InputMaybe<Array<Scalars['Long']['input']>>;
|
|
18177
|
+
lessThan?: InputMaybe<Scalars['Long']['input']>;
|
|
18178
|
+
lessThanOrEqual?: InputMaybe<Scalars['Long']['input']>;
|
|
17260
18179
|
};
|
|
17261
18180
|
export type GraphStoreMutation = {
|
|
17262
18181
|
__typename?: 'GraphStoreMutation';
|
|
@@ -17273,125 +18192,450 @@ export type GraphStoreMutation = {
|
|
|
17273
18192
|
createProjectHasSharedVersionWith?: Maybe<GraphStoreCreateProjectHasSharedVersionWithPayload>;
|
|
17274
18193
|
createProjectHasVersion?: Maybe<GraphStoreCreateProjectHasVersionPayload>;
|
|
17275
18194
|
createSprintRetrospectivePage?: Maybe<GraphStoreCreateSprintRetrospectivePagePayload>;
|
|
18195
|
+
createSprintRetrospectiveWhiteboard?: Maybe<GraphStoreCreateSprintRetrospectiveWhiteboardPayload>;
|
|
18196
|
+
createTestPerfhammerRelationship?: Maybe<GraphStoreCreateTestPerfhammerRelationshipPayload>;
|
|
17276
18197
|
createVersionUserAssociatedFeatureFlag?: Maybe<GraphStoreCreateVersionUserAssociatedFeatureFlagPayload>;
|
|
17277
18198
|
createVulnerabilityAssociatedIssue?: Maybe<GraphStoreCreateVulnerabilityAssociatedIssuePayload>;
|
|
18199
|
+
deleteIncidentAssociatedPostIncidentReviewLink?: Maybe<GraphStoreDeleteIncidentAssociatedPostIncidentReviewLinkPayload>;
|
|
18200
|
+
deleteIncidentHasActionItem?: Maybe<GraphStoreDeleteIncidentHasActionItemPayload>;
|
|
18201
|
+
deleteIncidentLinkedJswIssue?: Maybe<GraphStoreDeleteIncidentLinkedJswIssuePayload>;
|
|
18202
|
+
deleteJswProjectAssociatedComponent?: Maybe<GraphStoreDeleteJswProjectAssociatedComponentPayload>;
|
|
18203
|
+
deleteProjectAssociatedOpsgenieTeam?: Maybe<GraphStoreDeleteProjectAssociatedOpsgenieTeamPayload>;
|
|
18204
|
+
deleteProjectAssociatedToSecurityContainer?: Maybe<GraphStoreDeleteProjectAssociatedToSecurityContainerPayload>;
|
|
18205
|
+
deleteProjectDisassociatedRepo?: Maybe<GraphStoreDeleteProjectDisassociatedRepoPayload>;
|
|
18206
|
+
deleteProjectDocumentationEntity?: Maybe<GraphStoreDeleteProjectDocumentationEntityPayload>;
|
|
18207
|
+
deleteProjectDocumentationPage?: Maybe<GraphStoreDeleteProjectDocumentationPagePayload>;
|
|
18208
|
+
deleteProjectDocumentationSpace?: Maybe<GraphStoreDeleteProjectDocumentationSpacePayload>;
|
|
18209
|
+
deleteProjectHasSharedVersionWith?: Maybe<GraphStoreDeleteProjectHasSharedVersionWithPayload>;
|
|
18210
|
+
deleteProjectHasVersion?: Maybe<GraphStoreDeleteProjectHasVersionPayload>;
|
|
18211
|
+
deleteSprintRetrospectivePage?: Maybe<GraphStoreDeleteSprintRetrospectivePagePayload>;
|
|
18212
|
+
deleteSprintRetrospectiveWhiteboard?: Maybe<GraphStoreDeleteSprintRetrospectiveWhiteboardPayload>;
|
|
18213
|
+
deleteTestPerfhammerRelationship?: Maybe<GraphStoreDeleteTestPerfhammerRelationshipPayload>;
|
|
18214
|
+
deleteVersionUserAssociatedFeatureFlag?: Maybe<GraphStoreDeleteVersionUserAssociatedFeatureFlagPayload>;
|
|
18215
|
+
deleteVulnerabilityAssociatedIssue?: Maybe<GraphStoreDeleteVulnerabilityAssociatedIssuePayload>;
|
|
17278
18216
|
};
|
|
17279
18217
|
export type GraphStoreMutationCreateIncidentAssociatedPostIncidentReviewLinkArgs = {
|
|
17280
|
-
input?: InputMaybe<
|
|
18218
|
+
input?: InputMaybe<GraphStoreCreateIncidentAssociatedPostIncidentReviewLinkInput>;
|
|
17281
18219
|
};
|
|
17282
18220
|
export type GraphStoreMutationCreateIncidentHasActionItemArgs = {
|
|
17283
|
-
input?: InputMaybe<
|
|
18221
|
+
input?: InputMaybe<GraphStoreCreateIncidentHasActionItemInput>;
|
|
17284
18222
|
};
|
|
17285
18223
|
export type GraphStoreMutationCreateIncidentLinkedJswIssueArgs = {
|
|
17286
|
-
input?: InputMaybe<
|
|
18224
|
+
input?: InputMaybe<GraphStoreCreateIncidentLinkedJswIssueInput>;
|
|
17287
18225
|
};
|
|
17288
18226
|
export type GraphStoreMutationCreateJswProjectAssociatedComponentArgs = {
|
|
17289
|
-
input?: InputMaybe<
|
|
18227
|
+
input?: InputMaybe<GraphStoreCreateJswProjectAssociatedComponentInput>;
|
|
17290
18228
|
};
|
|
17291
18229
|
export type GraphStoreMutationCreateProjectAssociatedOpsgenieTeamArgs = {
|
|
17292
|
-
input?: InputMaybe<
|
|
18230
|
+
input?: InputMaybe<GraphStoreCreateProjectAssociatedOpsgenieTeamInput>;
|
|
17293
18231
|
};
|
|
17294
18232
|
export type GraphStoreMutationCreateProjectAssociatedToSecurityContainerArgs = {
|
|
17295
|
-
input?: InputMaybe<
|
|
18233
|
+
input?: InputMaybe<GraphStoreCreateProjectAssociatedToSecurityContainerInput>;
|
|
17296
18234
|
};
|
|
17297
18235
|
export type GraphStoreMutationCreateProjectDisassociatedRepoArgs = {
|
|
17298
|
-
input?: InputMaybe<
|
|
18236
|
+
input?: InputMaybe<GraphStoreCreateProjectDisassociatedRepoInput>;
|
|
17299
18237
|
};
|
|
17300
18238
|
export type GraphStoreMutationCreateProjectDocumentationEntityArgs = {
|
|
17301
|
-
input?: InputMaybe<
|
|
18239
|
+
input?: InputMaybe<GraphStoreCreateProjectDocumentationEntityInput>;
|
|
17302
18240
|
};
|
|
17303
18241
|
export type GraphStoreMutationCreateProjectDocumentationPageArgs = {
|
|
17304
|
-
input?: InputMaybe<
|
|
18242
|
+
input?: InputMaybe<GraphStoreCreateProjectDocumentationPageInput>;
|
|
17305
18243
|
};
|
|
17306
18244
|
export type GraphStoreMutationCreateProjectDocumentationSpaceArgs = {
|
|
17307
|
-
input?: InputMaybe<
|
|
18245
|
+
input?: InputMaybe<GraphStoreCreateProjectDocumentationSpaceInput>;
|
|
17308
18246
|
};
|
|
17309
18247
|
export type GraphStoreMutationCreateProjectHasSharedVersionWithArgs = {
|
|
17310
|
-
input?: InputMaybe<
|
|
18248
|
+
input?: InputMaybe<GraphStoreCreateProjectHasSharedVersionWithInput>;
|
|
17311
18249
|
};
|
|
17312
18250
|
export type GraphStoreMutationCreateProjectHasVersionArgs = {
|
|
17313
|
-
input?: InputMaybe<
|
|
18251
|
+
input?: InputMaybe<GraphStoreCreateProjectHasVersionInput>;
|
|
17314
18252
|
};
|
|
17315
18253
|
export type GraphStoreMutationCreateSprintRetrospectivePageArgs = {
|
|
17316
|
-
input?: InputMaybe<
|
|
18254
|
+
input?: InputMaybe<GraphStoreCreateSprintRetrospectivePageInput>;
|
|
18255
|
+
};
|
|
18256
|
+
export type GraphStoreMutationCreateSprintRetrospectiveWhiteboardArgs = {
|
|
18257
|
+
input?: InputMaybe<GraphStoreCreateSprintRetrospectiveWhiteboardInput>;
|
|
18258
|
+
};
|
|
18259
|
+
export type GraphStoreMutationCreateTestPerfhammerRelationshipArgs = {
|
|
18260
|
+
input?: InputMaybe<GraphStoreCreateTestPerfhammerRelationshipInput>;
|
|
17317
18261
|
};
|
|
17318
18262
|
export type GraphStoreMutationCreateVersionUserAssociatedFeatureFlagArgs = {
|
|
17319
|
-
input?: InputMaybe<
|
|
18263
|
+
input?: InputMaybe<GraphStoreCreateVersionUserAssociatedFeatureFlagInput>;
|
|
17320
18264
|
};
|
|
17321
18265
|
export type GraphStoreMutationCreateVulnerabilityAssociatedIssueArgs = {
|
|
17322
|
-
input?: InputMaybe<
|
|
18266
|
+
input?: InputMaybe<GraphStoreCreateVulnerabilityAssociatedIssueInput>;
|
|
17323
18267
|
};
|
|
17324
|
-
export type
|
|
17325
|
-
|
|
18268
|
+
export type GraphStoreMutationDeleteIncidentAssociatedPostIncidentReviewLinkArgs = {
|
|
18269
|
+
input?: InputMaybe<GraphStoreDeleteIncidentAssociatedPostIncidentReviewLinkInput>;
|
|
17326
18270
|
};
|
|
17327
|
-
export type
|
|
17328
|
-
|
|
17329
|
-
sequenceNumber?: InputMaybe<Scalars['Long']['input']>;
|
|
17330
|
-
to: Scalars['ID']['input'];
|
|
17331
|
-
updatedAt?: InputMaybe<Scalars['DateTime']['input']>;
|
|
18271
|
+
export type GraphStoreMutationDeleteIncidentHasActionItemArgs = {
|
|
18272
|
+
input?: InputMaybe<GraphStoreDeleteIncidentHasActionItemInput>;
|
|
17332
18273
|
};
|
|
17333
|
-
export type
|
|
17334
|
-
|
|
18274
|
+
export type GraphStoreMutationDeleteIncidentLinkedJswIssueArgs = {
|
|
18275
|
+
input?: InputMaybe<GraphStoreDeleteIncidentLinkedJswIssueInput>;
|
|
17335
18276
|
};
|
|
17336
|
-
export type
|
|
17337
|
-
|
|
17338
|
-
sequenceNumber?: InputMaybe<Scalars['Long']['input']>;
|
|
17339
|
-
to: Scalars['ID']['input'];
|
|
17340
|
-
updatedAt?: InputMaybe<Scalars['DateTime']['input']>;
|
|
18277
|
+
export type GraphStoreMutationDeleteJswProjectAssociatedComponentArgs = {
|
|
18278
|
+
input?: InputMaybe<GraphStoreDeleteJswProjectAssociatedComponentInput>;
|
|
17341
18279
|
};
|
|
17342
|
-
export type
|
|
17343
|
-
|
|
18280
|
+
export type GraphStoreMutationDeleteProjectAssociatedOpsgenieTeamArgs = {
|
|
18281
|
+
input?: InputMaybe<GraphStoreDeleteProjectAssociatedOpsgenieTeamInput>;
|
|
17344
18282
|
};
|
|
17345
|
-
export type
|
|
17346
|
-
|
|
17347
|
-
sequenceNumber?: InputMaybe<Scalars['Long']['input']>;
|
|
17348
|
-
to: Scalars['ID']['input'];
|
|
17349
|
-
updatedAt?: InputMaybe<Scalars['DateTime']['input']>;
|
|
18283
|
+
export type GraphStoreMutationDeleteProjectAssociatedToSecurityContainerArgs = {
|
|
18284
|
+
input?: InputMaybe<GraphStoreDeleteProjectAssociatedToSecurityContainerInput>;
|
|
17350
18285
|
};
|
|
17351
|
-
export type
|
|
17352
|
-
|
|
18286
|
+
export type GraphStoreMutationDeleteProjectDisassociatedRepoArgs = {
|
|
18287
|
+
input?: InputMaybe<GraphStoreDeleteProjectDisassociatedRepoInput>;
|
|
17353
18288
|
};
|
|
17354
|
-
export type
|
|
17355
|
-
|
|
17356
|
-
sequenceNumber?: InputMaybe<Scalars['Long']['input']>;
|
|
17357
|
-
to: Scalars['ID']['input'];
|
|
17358
|
-
updatedAt?: InputMaybe<Scalars['DateTime']['input']>;
|
|
18289
|
+
export type GraphStoreMutationDeleteProjectDocumentationEntityArgs = {
|
|
18290
|
+
input?: InputMaybe<GraphStoreDeleteProjectDocumentationEntityInput>;
|
|
17359
18291
|
};
|
|
17360
|
-
export type
|
|
17361
|
-
|
|
18292
|
+
export type GraphStoreMutationDeleteProjectDocumentationPageArgs = {
|
|
18293
|
+
input?: InputMaybe<GraphStoreDeleteProjectDocumentationPageInput>;
|
|
17362
18294
|
};
|
|
17363
|
-
export type
|
|
17364
|
-
|
|
17365
|
-
sequenceNumber?: InputMaybe<Scalars['Long']['input']>;
|
|
17366
|
-
to: Scalars['ID']['input'];
|
|
17367
|
-
updatedAt?: InputMaybe<Scalars['DateTime']['input']>;
|
|
18295
|
+
export type GraphStoreMutationDeleteProjectDocumentationSpaceArgs = {
|
|
18296
|
+
input?: InputMaybe<GraphStoreDeleteProjectDocumentationSpaceInput>;
|
|
17368
18297
|
};
|
|
17369
|
-
export type
|
|
17370
|
-
|
|
18298
|
+
export type GraphStoreMutationDeleteProjectHasSharedVersionWithArgs = {
|
|
18299
|
+
input?: InputMaybe<GraphStoreDeleteProjectHasSharedVersionWithInput>;
|
|
17371
18300
|
};
|
|
17372
|
-
export type
|
|
17373
|
-
|
|
17374
|
-
sequenceNumber?: InputMaybe<Scalars['Long']['input']>;
|
|
17375
|
-
to: Scalars['ID']['input'];
|
|
17376
|
-
updatedAt?: InputMaybe<Scalars['DateTime']['input']>;
|
|
18301
|
+
export type GraphStoreMutationDeleteProjectHasVersionArgs = {
|
|
18302
|
+
input?: InputMaybe<GraphStoreDeleteProjectHasVersionInput>;
|
|
17377
18303
|
};
|
|
17378
|
-
export type
|
|
17379
|
-
|
|
18304
|
+
export type GraphStoreMutationDeleteSprintRetrospectivePageArgs = {
|
|
18305
|
+
input?: InputMaybe<GraphStoreDeleteSprintRetrospectivePageInput>;
|
|
17380
18306
|
};
|
|
17381
|
-
export type
|
|
17382
|
-
|
|
17383
|
-
sequenceNumber?: InputMaybe<Scalars['Long']['input']>;
|
|
17384
|
-
to: Scalars['ID']['input'];
|
|
17385
|
-
updatedAt?: InputMaybe<Scalars['DateTime']['input']>;
|
|
18307
|
+
export type GraphStoreMutationDeleteSprintRetrospectiveWhiteboardArgs = {
|
|
18308
|
+
input?: InputMaybe<GraphStoreDeleteSprintRetrospectiveWhiteboardInput>;
|
|
17386
18309
|
};
|
|
17387
|
-
export type
|
|
17388
|
-
|
|
18310
|
+
export type GraphStoreMutationDeleteTestPerfhammerRelationshipArgs = {
|
|
18311
|
+
input?: InputMaybe<GraphStoreDeleteTestPerfhammerRelationshipInput>;
|
|
17389
18312
|
};
|
|
17390
|
-
export type
|
|
17391
|
-
|
|
17392
|
-
|
|
17393
|
-
|
|
17394
|
-
|
|
18313
|
+
export type GraphStoreMutationDeleteVersionUserAssociatedFeatureFlagArgs = {
|
|
18314
|
+
input?: InputMaybe<GraphStoreDeleteVersionUserAssociatedFeatureFlagInput>;
|
|
18315
|
+
};
|
|
18316
|
+
export type GraphStoreMutationDeleteVulnerabilityAssociatedIssueArgs = {
|
|
18317
|
+
input?: InputMaybe<GraphStoreDeleteVulnerabilityAssociatedIssueInput>;
|
|
18318
|
+
};
|
|
18319
|
+
export declare enum GraphStoreProjectAssociatedBuildBuildState {
|
|
18320
|
+
Cancelled = "CANCELLED",
|
|
18321
|
+
Failed = "FAILED",
|
|
18322
|
+
InProgress = "IN_PROGRESS",
|
|
18323
|
+
NotSet = "NOT_SET",
|
|
18324
|
+
Pending = "PENDING",
|
|
18325
|
+
Successful = "SUCCESSFUL",
|
|
18326
|
+
Unknown = "UNKNOWN"
|
|
18327
|
+
}
|
|
18328
|
+
export type GraphStoreProjectAssociatedBuildBuildStateFilterInput = {
|
|
18329
|
+
is?: InputMaybe<Array<GraphStoreProjectAssociatedBuildBuildState>>;
|
|
18330
|
+
isNot?: InputMaybe<Array<GraphStoreProjectAssociatedBuildBuildState>>;
|
|
18331
|
+
};
|
|
18332
|
+
export type GraphStoreProjectAssociatedBuildConditionalFilterInput = {
|
|
18333
|
+
createdAt?: InputMaybe<GraphStoreDateFilterInput>;
|
|
18334
|
+
fromAti?: InputMaybe<GraphStoreAtiFilterInput>;
|
|
18335
|
+
lastModified?: InputMaybe<GraphStoreDateFilterInput>;
|
|
18336
|
+
relationship_assigneeAri?: InputMaybe<GraphStoreAriFilterInput>;
|
|
18337
|
+
relationship_creatorAri?: InputMaybe<GraphStoreAriFilterInput>;
|
|
18338
|
+
relationship_issueAri?: InputMaybe<GraphStoreAriFilterInput>;
|
|
18339
|
+
relationship_issueLastUpdatedOn?: InputMaybe<GraphStoreLongFilterInput>;
|
|
18340
|
+
relationship_reporterAri?: InputMaybe<GraphStoreAriFilterInput>;
|
|
18341
|
+
relationship_statusAri?: InputMaybe<GraphStoreAriFilterInput>;
|
|
18342
|
+
toAti?: InputMaybe<GraphStoreAtiFilterInput>;
|
|
18343
|
+
to_state?: InputMaybe<GraphStoreProjectAssociatedBuildBuildStateFilterInput>;
|
|
18344
|
+
to_testInfo?: InputMaybe<GraphStoreProjectAssociatedBuildTestInfoFilterInput>;
|
|
18345
|
+
};
|
|
18346
|
+
export type GraphStoreProjectAssociatedBuildFilterInput = {
|
|
18347
|
+
and?: InputMaybe<Array<InputMaybe<GraphStoreProjectAssociatedBuildConditionalFilterInput>>>;
|
|
18348
|
+
or?: InputMaybe<Array<InputMaybe<GraphStoreProjectAssociatedBuildConditionalFilterInput>>>;
|
|
18349
|
+
};
|
|
18350
|
+
export type GraphStoreProjectAssociatedBuildSortInput = {
|
|
18351
|
+
createdAt?: InputMaybe<GraphStoreSortInput>;
|
|
18352
|
+
fromAti?: InputMaybe<GraphStoreSortInput>;
|
|
18353
|
+
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
18354
|
+
relationship_assigneeAri?: InputMaybe<GraphStoreSortInput>;
|
|
18355
|
+
relationship_creatorAri?: InputMaybe<GraphStoreSortInput>;
|
|
18356
|
+
relationship_issueAri?: InputMaybe<GraphStoreSortInput>;
|
|
18357
|
+
relationship_issueLastUpdatedOn?: InputMaybe<GraphStoreSortInput>;
|
|
18358
|
+
relationship_reporterAri?: InputMaybe<GraphStoreSortInput>;
|
|
18359
|
+
relationship_statusAri?: InputMaybe<GraphStoreSortInput>;
|
|
18360
|
+
toAti?: InputMaybe<GraphStoreSortInput>;
|
|
18361
|
+
to_state?: InputMaybe<GraphStoreSortInput>;
|
|
18362
|
+
to_testInfo?: InputMaybe<GraphStoreProjectAssociatedBuildTestInfoSortInput>;
|
|
18363
|
+
};
|
|
18364
|
+
export type GraphStoreProjectAssociatedBuildTestInfoFilterInput = {
|
|
18365
|
+
and?: InputMaybe<Array<InputMaybe<GraphStoreProjectAssociatedBuildTestInfoFilterInput>>>;
|
|
18366
|
+
numberFailed?: InputMaybe<GraphStoreLongFilterInput>;
|
|
18367
|
+
numberPassed?: InputMaybe<GraphStoreLongFilterInput>;
|
|
18368
|
+
numberSkipped?: InputMaybe<GraphStoreLongFilterInput>;
|
|
18369
|
+
or?: InputMaybe<Array<InputMaybe<GraphStoreProjectAssociatedBuildTestInfoFilterInput>>>;
|
|
18370
|
+
totalNumber?: InputMaybe<GraphStoreLongFilterInput>;
|
|
18371
|
+
};
|
|
18372
|
+
export type GraphStoreProjectAssociatedBuildTestInfoSortInput = {
|
|
18373
|
+
numberFailed?: InputMaybe<GraphStoreSortInput>;
|
|
18374
|
+
numberPassed?: InputMaybe<GraphStoreSortInput>;
|
|
18375
|
+
numberSkipped?: InputMaybe<GraphStoreSortInput>;
|
|
18376
|
+
totalNumber?: InputMaybe<GraphStoreSortInput>;
|
|
18377
|
+
};
|
|
18378
|
+
export type GraphStoreProjectAssociatedDeploymentAuthorFilterInput = {
|
|
18379
|
+
and?: InputMaybe<Array<InputMaybe<GraphStoreProjectAssociatedDeploymentAuthorFilterInput>>>;
|
|
18380
|
+
authorAri?: InputMaybe<GraphStoreAriFilterInput>;
|
|
18381
|
+
or?: InputMaybe<Array<InputMaybe<GraphStoreProjectAssociatedDeploymentAuthorFilterInput>>>;
|
|
18382
|
+
};
|
|
18383
|
+
export type GraphStoreProjectAssociatedDeploymentAuthorSortInput = {
|
|
18384
|
+
authorAri?: InputMaybe<GraphStoreSortInput>;
|
|
18385
|
+
};
|
|
18386
|
+
export type GraphStoreProjectAssociatedDeploymentConditionalFilterInput = {
|
|
18387
|
+
createdAt?: InputMaybe<GraphStoreDateFilterInput>;
|
|
18388
|
+
fromAti?: InputMaybe<GraphStoreAtiFilterInput>;
|
|
18389
|
+
lastModified?: InputMaybe<GraphStoreDateFilterInput>;
|
|
18390
|
+
relationship_assigneeAri?: InputMaybe<GraphStoreAriFilterInput>;
|
|
18391
|
+
relationship_creatorAri?: InputMaybe<GraphStoreAriFilterInput>;
|
|
18392
|
+
relationship_fixVersionIds?: InputMaybe<GraphStoreLongFilterInput>;
|
|
18393
|
+
relationship_issueAri?: InputMaybe<GraphStoreAriFilterInput>;
|
|
18394
|
+
relationship_issueLastUpdatedOn?: InputMaybe<GraphStoreLongFilterInput>;
|
|
18395
|
+
relationship_issueTypeAri?: InputMaybe<GraphStoreAriFilterInput>;
|
|
18396
|
+
relationship_reporterAri?: InputMaybe<GraphStoreAriFilterInput>;
|
|
18397
|
+
relationship_statusAri?: InputMaybe<GraphStoreAriFilterInput>;
|
|
18398
|
+
toAti?: InputMaybe<GraphStoreAtiFilterInput>;
|
|
18399
|
+
to_author?: InputMaybe<GraphStoreProjectAssociatedDeploymentAuthorFilterInput>;
|
|
18400
|
+
to_environmentType?: InputMaybe<GraphStoreProjectAssociatedDeploymentEnvironmentTypeFilterInput>;
|
|
18401
|
+
to_state?: InputMaybe<GraphStoreProjectAssociatedDeploymentDeploymentStateFilterInput>;
|
|
18402
|
+
};
|
|
18403
|
+
export declare enum GraphStoreProjectAssociatedDeploymentDeploymentState {
|
|
18404
|
+
Cancelled = "CANCELLED",
|
|
18405
|
+
Failed = "FAILED",
|
|
18406
|
+
InProgress = "IN_PROGRESS",
|
|
18407
|
+
NotSet = "NOT_SET",
|
|
18408
|
+
Pending = "PENDING",
|
|
18409
|
+
RolledBack = "ROLLED_BACK",
|
|
18410
|
+
Successful = "SUCCESSFUL",
|
|
18411
|
+
Unknown = "UNKNOWN"
|
|
18412
|
+
}
|
|
18413
|
+
export type GraphStoreProjectAssociatedDeploymentDeploymentStateFilterInput = {
|
|
18414
|
+
is?: InputMaybe<Array<GraphStoreProjectAssociatedDeploymentDeploymentState>>;
|
|
18415
|
+
isNot?: InputMaybe<Array<GraphStoreProjectAssociatedDeploymentDeploymentState>>;
|
|
18416
|
+
};
|
|
18417
|
+
export declare enum GraphStoreProjectAssociatedDeploymentEnvironmentType {
|
|
18418
|
+
Development = "DEVELOPMENT",
|
|
18419
|
+
NotSet = "NOT_SET",
|
|
18420
|
+
Production = "PRODUCTION",
|
|
18421
|
+
Staging = "STAGING",
|
|
18422
|
+
Testing = "TESTING",
|
|
18423
|
+
Unmapped = "UNMAPPED"
|
|
18424
|
+
}
|
|
18425
|
+
export type GraphStoreProjectAssociatedDeploymentEnvironmentTypeFilterInput = {
|
|
18426
|
+
is?: InputMaybe<Array<GraphStoreProjectAssociatedDeploymentEnvironmentType>>;
|
|
18427
|
+
isNot?: InputMaybe<Array<GraphStoreProjectAssociatedDeploymentEnvironmentType>>;
|
|
18428
|
+
};
|
|
18429
|
+
export type GraphStoreProjectAssociatedDeploymentFilterInput = {
|
|
18430
|
+
and?: InputMaybe<Array<InputMaybe<GraphStoreProjectAssociatedDeploymentConditionalFilterInput>>>;
|
|
18431
|
+
or?: InputMaybe<Array<InputMaybe<GraphStoreProjectAssociatedDeploymentConditionalFilterInput>>>;
|
|
18432
|
+
};
|
|
18433
|
+
export type GraphStoreProjectAssociatedDeploymentSortInput = {
|
|
18434
|
+
createdAt?: InputMaybe<GraphStoreSortInput>;
|
|
18435
|
+
fromAti?: InputMaybe<GraphStoreSortInput>;
|
|
18436
|
+
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
18437
|
+
relationship_assigneeAri?: InputMaybe<GraphStoreSortInput>;
|
|
18438
|
+
relationship_creatorAri?: InputMaybe<GraphStoreSortInput>;
|
|
18439
|
+
relationship_fixVersionIds?: InputMaybe<GraphStoreSortInput>;
|
|
18440
|
+
relationship_issueAri?: InputMaybe<GraphStoreSortInput>;
|
|
18441
|
+
relationship_issueLastUpdatedOn?: InputMaybe<GraphStoreSortInput>;
|
|
18442
|
+
relationship_issueTypeAri?: InputMaybe<GraphStoreSortInput>;
|
|
18443
|
+
relationship_reporterAri?: InputMaybe<GraphStoreSortInput>;
|
|
18444
|
+
relationship_statusAri?: InputMaybe<GraphStoreSortInput>;
|
|
18445
|
+
toAti?: InputMaybe<GraphStoreSortInput>;
|
|
18446
|
+
to_author?: InputMaybe<GraphStoreProjectAssociatedDeploymentAuthorSortInput>;
|
|
18447
|
+
to_environmentType?: InputMaybe<GraphStoreSortInput>;
|
|
18448
|
+
to_state?: InputMaybe<GraphStoreSortInput>;
|
|
18449
|
+
};
|
|
18450
|
+
export type GraphStoreProjectAssociatedPrAuthorFilterInput = {
|
|
18451
|
+
and?: InputMaybe<Array<InputMaybe<GraphStoreProjectAssociatedPrAuthorFilterInput>>>;
|
|
18452
|
+
authorAri?: InputMaybe<GraphStoreAriFilterInput>;
|
|
18453
|
+
or?: InputMaybe<Array<InputMaybe<GraphStoreProjectAssociatedPrAuthorFilterInput>>>;
|
|
18454
|
+
};
|
|
18455
|
+
export type GraphStoreProjectAssociatedPrAuthorSortInput = {
|
|
18456
|
+
authorAri?: InputMaybe<GraphStoreSortInput>;
|
|
18457
|
+
};
|
|
18458
|
+
export type GraphStoreProjectAssociatedPrConditionalFilterInput = {
|
|
18459
|
+
createdAt?: InputMaybe<GraphStoreDateFilterInput>;
|
|
18460
|
+
fromAti?: InputMaybe<GraphStoreAtiFilterInput>;
|
|
18461
|
+
lastModified?: InputMaybe<GraphStoreDateFilterInput>;
|
|
18462
|
+
relationship_assigneeAri?: InputMaybe<GraphStoreAriFilterInput>;
|
|
18463
|
+
relationship_creatorAri?: InputMaybe<GraphStoreAriFilterInput>;
|
|
18464
|
+
relationship_issueAri?: InputMaybe<GraphStoreAriFilterInput>;
|
|
18465
|
+
relationship_issueLastUpdatedOn?: InputMaybe<GraphStoreLongFilterInput>;
|
|
18466
|
+
relationship_reporterAri?: InputMaybe<GraphStoreAriFilterInput>;
|
|
18467
|
+
relationship_statusAri?: InputMaybe<GraphStoreAriFilterInput>;
|
|
18468
|
+
toAti?: InputMaybe<GraphStoreAtiFilterInput>;
|
|
18469
|
+
to_author?: InputMaybe<GraphStoreProjectAssociatedPrAuthorFilterInput>;
|
|
18470
|
+
to_reviewers?: InputMaybe<GraphStoreProjectAssociatedPrReviewerFilterInput>;
|
|
18471
|
+
to_status?: InputMaybe<GraphStoreProjectAssociatedPrPullRequestStatusFilterInput>;
|
|
18472
|
+
to_taskCount?: InputMaybe<GraphStoreFloatFilterInput>;
|
|
18473
|
+
};
|
|
18474
|
+
export type GraphStoreProjectAssociatedPrFilterInput = {
|
|
18475
|
+
and?: InputMaybe<Array<InputMaybe<GraphStoreProjectAssociatedPrConditionalFilterInput>>>;
|
|
18476
|
+
or?: InputMaybe<Array<InputMaybe<GraphStoreProjectAssociatedPrConditionalFilterInput>>>;
|
|
18477
|
+
};
|
|
18478
|
+
export declare enum GraphStoreProjectAssociatedPrPullRequestStatus {
|
|
18479
|
+
Declined = "DECLINED",
|
|
18480
|
+
Merged = "MERGED",
|
|
18481
|
+
NotSet = "NOT_SET",
|
|
18482
|
+
Open = "OPEN",
|
|
18483
|
+
Unknown = "UNKNOWN"
|
|
18484
|
+
}
|
|
18485
|
+
export type GraphStoreProjectAssociatedPrPullRequestStatusFilterInput = {
|
|
18486
|
+
is?: InputMaybe<Array<GraphStoreProjectAssociatedPrPullRequestStatus>>;
|
|
18487
|
+
isNot?: InputMaybe<Array<GraphStoreProjectAssociatedPrPullRequestStatus>>;
|
|
18488
|
+
};
|
|
18489
|
+
export type GraphStoreProjectAssociatedPrReviewerFilterInput = {
|
|
18490
|
+
and?: InputMaybe<Array<InputMaybe<GraphStoreProjectAssociatedPrReviewerFilterInput>>>;
|
|
18491
|
+
approvalStatus?: InputMaybe<GraphStoreProjectAssociatedPrReviewerReviewerStatusFilterInput>;
|
|
18492
|
+
or?: InputMaybe<Array<InputMaybe<GraphStoreProjectAssociatedPrReviewerFilterInput>>>;
|
|
18493
|
+
reviewerAri?: InputMaybe<GraphStoreAriFilterInput>;
|
|
18494
|
+
};
|
|
18495
|
+
export declare enum GraphStoreProjectAssociatedPrReviewerReviewerStatus {
|
|
18496
|
+
Approved = "APPROVED",
|
|
18497
|
+
Needswork = "NEEDSWORK",
|
|
18498
|
+
NotSet = "NOT_SET",
|
|
18499
|
+
Unapproved = "UNAPPROVED"
|
|
18500
|
+
}
|
|
18501
|
+
export type GraphStoreProjectAssociatedPrReviewerReviewerStatusFilterInput = {
|
|
18502
|
+
is?: InputMaybe<Array<GraphStoreProjectAssociatedPrReviewerReviewerStatus>>;
|
|
18503
|
+
isNot?: InputMaybe<Array<GraphStoreProjectAssociatedPrReviewerReviewerStatus>>;
|
|
18504
|
+
};
|
|
18505
|
+
export type GraphStoreProjectAssociatedPrReviewerSortInput = {
|
|
18506
|
+
approvalStatus?: InputMaybe<GraphStoreSortInput>;
|
|
18507
|
+
reviewerAri?: InputMaybe<GraphStoreSortInput>;
|
|
18508
|
+
};
|
|
18509
|
+
export type GraphStoreProjectAssociatedPrSortInput = {
|
|
18510
|
+
createdAt?: InputMaybe<GraphStoreSortInput>;
|
|
18511
|
+
fromAti?: InputMaybe<GraphStoreSortInput>;
|
|
18512
|
+
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
18513
|
+
relationship_assigneeAri?: InputMaybe<GraphStoreSortInput>;
|
|
18514
|
+
relationship_creatorAri?: InputMaybe<GraphStoreSortInput>;
|
|
18515
|
+
relationship_issueAri?: InputMaybe<GraphStoreSortInput>;
|
|
18516
|
+
relationship_issueLastUpdatedOn?: InputMaybe<GraphStoreSortInput>;
|
|
18517
|
+
relationship_reporterAri?: InputMaybe<GraphStoreSortInput>;
|
|
18518
|
+
relationship_statusAri?: InputMaybe<GraphStoreSortInput>;
|
|
18519
|
+
toAti?: InputMaybe<GraphStoreSortInput>;
|
|
18520
|
+
to_author?: InputMaybe<GraphStoreProjectAssociatedPrAuthorSortInput>;
|
|
18521
|
+
to_reviewers?: InputMaybe<GraphStoreProjectAssociatedPrReviewerSortInput>;
|
|
18522
|
+
to_status?: InputMaybe<GraphStoreSortInput>;
|
|
18523
|
+
to_taskCount?: InputMaybe<GraphStoreSortInput>;
|
|
18524
|
+
};
|
|
18525
|
+
export type GraphStoreProjectAssociatedVulnerabilityConditionalFilterInput = {
|
|
18526
|
+
createdAt?: InputMaybe<GraphStoreDateFilterInput>;
|
|
18527
|
+
fromAti?: InputMaybe<GraphStoreAtiFilterInput>;
|
|
18528
|
+
lastModified?: InputMaybe<GraphStoreDateFilterInput>;
|
|
18529
|
+
toAti?: InputMaybe<GraphStoreAtiFilterInput>;
|
|
18530
|
+
to_container?: InputMaybe<GraphStoreProjectAssociatedVulnerabilityContainerFilterInput>;
|
|
18531
|
+
to_severity?: InputMaybe<GraphStoreProjectAssociatedVulnerabilityVulnerabilitySeverityFilterInput>;
|
|
18532
|
+
to_status?: InputMaybe<GraphStoreProjectAssociatedVulnerabilityVulnerabilityStatusFilterInput>;
|
|
18533
|
+
to_type?: InputMaybe<GraphStoreProjectAssociatedVulnerabilityVulnerabilityTypeFilterInput>;
|
|
18534
|
+
};
|
|
18535
|
+
export type GraphStoreProjectAssociatedVulnerabilityContainerFilterInput = {
|
|
18536
|
+
and?: InputMaybe<Array<InputMaybe<GraphStoreProjectAssociatedVulnerabilityContainerFilterInput>>>;
|
|
18537
|
+
containerAri?: InputMaybe<GraphStoreAriFilterInput>;
|
|
18538
|
+
or?: InputMaybe<Array<InputMaybe<GraphStoreProjectAssociatedVulnerabilityContainerFilterInput>>>;
|
|
18539
|
+
};
|
|
18540
|
+
export type GraphStoreProjectAssociatedVulnerabilityContainerSortInput = {
|
|
18541
|
+
containerAri?: InputMaybe<GraphStoreSortInput>;
|
|
18542
|
+
};
|
|
18543
|
+
export type GraphStoreProjectAssociatedVulnerabilityFilterInput = {
|
|
18544
|
+
and?: InputMaybe<Array<InputMaybe<GraphStoreProjectAssociatedVulnerabilityConditionalFilterInput>>>;
|
|
18545
|
+
or?: InputMaybe<Array<InputMaybe<GraphStoreProjectAssociatedVulnerabilityConditionalFilterInput>>>;
|
|
18546
|
+
};
|
|
18547
|
+
export type GraphStoreProjectAssociatedVulnerabilitySortInput = {
|
|
18548
|
+
createdAt?: InputMaybe<GraphStoreSortInput>;
|
|
18549
|
+
fromAti?: InputMaybe<GraphStoreSortInput>;
|
|
18550
|
+
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
18551
|
+
toAti?: InputMaybe<GraphStoreSortInput>;
|
|
18552
|
+
to_container?: InputMaybe<GraphStoreProjectAssociatedVulnerabilityContainerSortInput>;
|
|
18553
|
+
to_severity?: InputMaybe<GraphStoreSortInput>;
|
|
18554
|
+
to_status?: InputMaybe<GraphStoreSortInput>;
|
|
18555
|
+
to_type?: InputMaybe<GraphStoreSortInput>;
|
|
18556
|
+
};
|
|
18557
|
+
export declare enum GraphStoreProjectAssociatedVulnerabilityVulnerabilitySeverity {
|
|
18558
|
+
Critical = "CRITICAL",
|
|
18559
|
+
High = "HIGH",
|
|
18560
|
+
Low = "LOW",
|
|
18561
|
+
Medium = "MEDIUM",
|
|
18562
|
+
NotSet = "NOT_SET",
|
|
18563
|
+
Unknown = "UNKNOWN"
|
|
18564
|
+
}
|
|
18565
|
+
export type GraphStoreProjectAssociatedVulnerabilityVulnerabilitySeverityFilterInput = {
|
|
18566
|
+
is?: InputMaybe<Array<GraphStoreProjectAssociatedVulnerabilityVulnerabilitySeverity>>;
|
|
18567
|
+
isNot?: InputMaybe<Array<GraphStoreProjectAssociatedVulnerabilityVulnerabilitySeverity>>;
|
|
18568
|
+
};
|
|
18569
|
+
export declare enum GraphStoreProjectAssociatedVulnerabilityVulnerabilityStatus {
|
|
18570
|
+
Closed = "CLOSED",
|
|
18571
|
+
Ignored = "IGNORED",
|
|
18572
|
+
NotSet = "NOT_SET",
|
|
18573
|
+
Open = "OPEN",
|
|
18574
|
+
Unknown = "UNKNOWN"
|
|
18575
|
+
}
|
|
18576
|
+
export type GraphStoreProjectAssociatedVulnerabilityVulnerabilityStatusFilterInput = {
|
|
18577
|
+
is?: InputMaybe<Array<GraphStoreProjectAssociatedVulnerabilityVulnerabilityStatus>>;
|
|
18578
|
+
isNot?: InputMaybe<Array<GraphStoreProjectAssociatedVulnerabilityVulnerabilityStatus>>;
|
|
18579
|
+
};
|
|
18580
|
+
export declare enum GraphStoreProjectAssociatedVulnerabilityVulnerabilityType {
|
|
18581
|
+
Dast = "DAST",
|
|
18582
|
+
NotSet = "NOT_SET",
|
|
18583
|
+
Sast = "SAST",
|
|
18584
|
+
Sca = "SCA",
|
|
18585
|
+
Unknown = "UNKNOWN"
|
|
18586
|
+
}
|
|
18587
|
+
export type GraphStoreProjectAssociatedVulnerabilityVulnerabilityTypeFilterInput = {
|
|
18588
|
+
is?: InputMaybe<Array<GraphStoreProjectAssociatedVulnerabilityVulnerabilityType>>;
|
|
18589
|
+
isNot?: InputMaybe<Array<GraphStoreProjectAssociatedVulnerabilityVulnerabilityType>>;
|
|
18590
|
+
};
|
|
18591
|
+
export type GraphStoreServiceLinkedIncidentConditionalFilterInput = {
|
|
18592
|
+
createdAt?: InputMaybe<GraphStoreDateFilterInput>;
|
|
18593
|
+
fromAti?: InputMaybe<GraphStoreAtiFilterInput>;
|
|
18594
|
+
lastModified?: InputMaybe<GraphStoreDateFilterInput>;
|
|
18595
|
+
toAti?: InputMaybe<GraphStoreAtiFilterInput>;
|
|
18596
|
+
to_assigneeAri?: InputMaybe<GraphStoreAriFilterInput>;
|
|
18597
|
+
to_majorIncident?: InputMaybe<GraphStoreBooleanFilterInput>;
|
|
18598
|
+
to_priority?: InputMaybe<GraphStoreServiceLinkedIncidentJiraServiceManagementIncidentPriorityFilterInput>;
|
|
18599
|
+
to_reporterAri?: InputMaybe<GraphStoreAriFilterInput>;
|
|
18600
|
+
to_status?: InputMaybe<GraphStoreServiceLinkedIncidentJiraServiceManagementIncidentStatusFilterInput>;
|
|
18601
|
+
};
|
|
18602
|
+
export type GraphStoreServiceLinkedIncidentFilterInput = {
|
|
18603
|
+
and?: InputMaybe<Array<InputMaybe<GraphStoreServiceLinkedIncidentConditionalFilterInput>>>;
|
|
18604
|
+
or?: InputMaybe<Array<InputMaybe<GraphStoreServiceLinkedIncidentConditionalFilterInput>>>;
|
|
18605
|
+
};
|
|
18606
|
+
export declare enum GraphStoreServiceLinkedIncidentJiraServiceManagementIncidentPriority {
|
|
18607
|
+
NotSet = "NOT_SET",
|
|
18608
|
+
P1 = "P1",
|
|
18609
|
+
P2 = "P2",
|
|
18610
|
+
P3 = "P3",
|
|
18611
|
+
P4 = "P4",
|
|
18612
|
+
P5 = "P5"
|
|
18613
|
+
}
|
|
18614
|
+
export type GraphStoreServiceLinkedIncidentJiraServiceManagementIncidentPriorityFilterInput = {
|
|
18615
|
+
is?: InputMaybe<Array<GraphStoreServiceLinkedIncidentJiraServiceManagementIncidentPriority>>;
|
|
18616
|
+
isNot?: InputMaybe<Array<GraphStoreServiceLinkedIncidentJiraServiceManagementIncidentPriority>>;
|
|
18617
|
+
};
|
|
18618
|
+
export declare enum GraphStoreServiceLinkedIncidentJiraServiceManagementIncidentStatus {
|
|
18619
|
+
Done = "DONE",
|
|
18620
|
+
Indeterminate = "INDETERMINATE",
|
|
18621
|
+
New = "NEW",
|
|
18622
|
+
NotSet = "NOT_SET",
|
|
18623
|
+
Undefined = "UNDEFINED"
|
|
18624
|
+
}
|
|
18625
|
+
export type GraphStoreServiceLinkedIncidentJiraServiceManagementIncidentStatusFilterInput = {
|
|
18626
|
+
is?: InputMaybe<Array<GraphStoreServiceLinkedIncidentJiraServiceManagementIncidentStatus>>;
|
|
18627
|
+
isNot?: InputMaybe<Array<GraphStoreServiceLinkedIncidentJiraServiceManagementIncidentStatus>>;
|
|
18628
|
+
};
|
|
18629
|
+
export type GraphStoreServiceLinkedIncidentSortInput = {
|
|
18630
|
+
createdAt?: InputMaybe<GraphStoreSortInput>;
|
|
18631
|
+
fromAti?: InputMaybe<GraphStoreSortInput>;
|
|
18632
|
+
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
18633
|
+
toAti?: InputMaybe<GraphStoreSortInput>;
|
|
18634
|
+
to_assigneeAri?: InputMaybe<GraphStoreSortInput>;
|
|
18635
|
+
to_majorIncident?: InputMaybe<GraphStoreSortInput>;
|
|
18636
|
+
to_priority?: InputMaybe<GraphStoreSortInput>;
|
|
18637
|
+
to_reporterAri?: InputMaybe<GraphStoreSortInput>;
|
|
18638
|
+
to_status?: InputMaybe<GraphStoreSortInput>;
|
|
17395
18639
|
};
|
|
17396
18640
|
export type GraphStoreSimplifiedIssueAssociatedBranchInverseConnection = HasPageInfo & {
|
|
17397
18641
|
__typename?: 'GraphStoreSimplifiedIssueAssociatedBranchInverseConnection';
|
|
@@ -17432,6 +18676,18 @@ export type GraphStoreSimplifiedIssueAssociatedCommitInverseEdge = {
|
|
|
17432
18676
|
node?: Maybe<GraphStoreSimplifiedIssueAssociatedCommitInverseUnion>;
|
|
17433
18677
|
};
|
|
17434
18678
|
export type GraphStoreSimplifiedIssueAssociatedCommitInverseUnion = JiraIssue;
|
|
18679
|
+
export type GraphStoreSimplifiedIssueAssociatedDeploymentConnection = HasPageInfo & {
|
|
18680
|
+
__typename?: 'GraphStoreSimplifiedIssueAssociatedDeploymentConnection';
|
|
18681
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedIssueAssociatedDeploymentEdge>>>;
|
|
18682
|
+
pageInfo: PageInfo;
|
|
18683
|
+
};
|
|
18684
|
+
export type GraphStoreSimplifiedIssueAssociatedDeploymentEdge = {
|
|
18685
|
+
__typename?: 'GraphStoreSimplifiedIssueAssociatedDeploymentEdge';
|
|
18686
|
+
createdAt: Scalars['DateTime']['output'];
|
|
18687
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
18688
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
18689
|
+
node?: Maybe<GraphStoreSimplifiedIssueAssociatedDeploymentUnion>;
|
|
18690
|
+
};
|
|
17435
18691
|
export type GraphStoreSimplifiedIssueAssociatedDeploymentInverseConnection = HasPageInfo & {
|
|
17436
18692
|
__typename?: 'GraphStoreSimplifiedIssueAssociatedDeploymentInverseConnection';
|
|
17437
18693
|
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedIssueAssociatedDeploymentInverseEdge>>>;
|
|
@@ -17445,6 +18701,7 @@ export type GraphStoreSimplifiedIssueAssociatedDeploymentInverseEdge = {
|
|
|
17445
18701
|
node?: Maybe<GraphStoreSimplifiedIssueAssociatedDeploymentInverseUnion>;
|
|
17446
18702
|
};
|
|
17447
18703
|
export type GraphStoreSimplifiedIssueAssociatedDeploymentInverseUnion = JiraIssue;
|
|
18704
|
+
export type GraphStoreSimplifiedIssueAssociatedDeploymentUnion = DeploymentSummary;
|
|
17448
18705
|
export type GraphStoreSimplifiedIssueAssociatedDesignConnection = HasPageInfo & {
|
|
17449
18706
|
__typename?: 'GraphStoreSimplifiedIssueAssociatedDesignConnection';
|
|
17450
18707
|
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedIssueAssociatedDesignEdge>>>;
|
|
@@ -17564,32 +18821,226 @@ export type GraphStoreSimplifiedParentIssueHasChildIssueInverseEdge = {
|
|
|
17564
18821
|
};
|
|
17565
18822
|
export type GraphStoreSimplifiedParentIssueHasChildIssueInverseUnion = JiraIssue;
|
|
17566
18823
|
export type GraphStoreSimplifiedParentIssueHasChildIssueUnion = JiraIssue;
|
|
17567
|
-
export type
|
|
17568
|
-
|
|
18824
|
+
export type GraphStoreSimplifiedProjectAssociatedDeploymentConnection = HasPageInfo & HasTotal & {
|
|
18825
|
+
__typename?: 'GraphStoreSimplifiedProjectAssociatedDeploymentConnection';
|
|
18826
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedProjectAssociatedDeploymentEdge>>>;
|
|
18827
|
+
isExactCount?: Maybe<Scalars['Boolean']['output']>;
|
|
18828
|
+
pageInfo: PageInfo;
|
|
18829
|
+
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
17569
18830
|
};
|
|
17570
|
-
export type
|
|
17571
|
-
|
|
17572
|
-
|
|
17573
|
-
|
|
17574
|
-
|
|
18831
|
+
export type GraphStoreSimplifiedProjectAssociatedDeploymentEdge = {
|
|
18832
|
+
__typename?: 'GraphStoreSimplifiedProjectAssociatedDeploymentEdge';
|
|
18833
|
+
createdAt: Scalars['DateTime']['output'];
|
|
18834
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
18835
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
18836
|
+
node?: Maybe<GraphStoreSimplifiedProjectAssociatedDeploymentUnion>;
|
|
17575
18837
|
};
|
|
17576
|
-
export type
|
|
17577
|
-
|
|
18838
|
+
export type GraphStoreSimplifiedProjectAssociatedDeploymentUnion = DeploymentSummary;
|
|
18839
|
+
export type GraphStoreSortInput = {
|
|
18840
|
+
direction: SortDirection;
|
|
18841
|
+
priority: Scalars['Int']['input'];
|
|
17578
18842
|
};
|
|
17579
|
-
export
|
|
17580
|
-
|
|
17581
|
-
|
|
17582
|
-
|
|
17583
|
-
|
|
18843
|
+
export declare enum GraphStoreSprintAssociatedBuildBuildState {
|
|
18844
|
+
Cancelled = "CANCELLED",
|
|
18845
|
+
Failed = "FAILED",
|
|
18846
|
+
InProgress = "IN_PROGRESS",
|
|
18847
|
+
NotSet = "NOT_SET",
|
|
18848
|
+
Pending = "PENDING",
|
|
18849
|
+
Successful = "SUCCESSFUL",
|
|
18850
|
+
Unknown = "UNKNOWN"
|
|
18851
|
+
}
|
|
18852
|
+
export type GraphStoreSprintAssociatedBuildBuildStateFilterInput = {
|
|
18853
|
+
is?: InputMaybe<Array<GraphStoreSprintAssociatedBuildBuildState>>;
|
|
18854
|
+
isNot?: InputMaybe<Array<GraphStoreSprintAssociatedBuildBuildState>>;
|
|
18855
|
+
};
|
|
18856
|
+
export type GraphStoreSprintAssociatedBuildConditionalFilterInput = {
|
|
18857
|
+
createdAt?: InputMaybe<GraphStoreDateFilterInput>;
|
|
18858
|
+
fromAti?: InputMaybe<GraphStoreAtiFilterInput>;
|
|
18859
|
+
lastModified?: InputMaybe<GraphStoreDateFilterInput>;
|
|
18860
|
+
relationship_assigneeAri?: InputMaybe<GraphStoreAriFilterInput>;
|
|
18861
|
+
relationship_creatorAri?: InputMaybe<GraphStoreAriFilterInput>;
|
|
18862
|
+
relationship_issueAri?: InputMaybe<GraphStoreAriFilterInput>;
|
|
18863
|
+
relationship_issueLastUpdatedOn?: InputMaybe<GraphStoreLongFilterInput>;
|
|
18864
|
+
relationship_reporterAri?: InputMaybe<GraphStoreAriFilterInput>;
|
|
18865
|
+
relationship_statusAri?: InputMaybe<GraphStoreAriFilterInput>;
|
|
18866
|
+
toAti?: InputMaybe<GraphStoreAtiFilterInput>;
|
|
18867
|
+
to_state?: InputMaybe<GraphStoreSprintAssociatedBuildBuildStateFilterInput>;
|
|
18868
|
+
to_testInfo?: InputMaybe<GraphStoreSprintAssociatedBuildTestInfoFilterInput>;
|
|
18869
|
+
};
|
|
18870
|
+
export type GraphStoreSprintAssociatedBuildFilterInput = {
|
|
18871
|
+
and?: InputMaybe<Array<InputMaybe<GraphStoreSprintAssociatedBuildConditionalFilterInput>>>;
|
|
18872
|
+
or?: InputMaybe<Array<InputMaybe<GraphStoreSprintAssociatedBuildConditionalFilterInput>>>;
|
|
18873
|
+
};
|
|
18874
|
+
export type GraphStoreSprintAssociatedBuildSortInput = {
|
|
18875
|
+
createdAt?: InputMaybe<GraphStoreSortInput>;
|
|
18876
|
+
fromAti?: InputMaybe<GraphStoreSortInput>;
|
|
18877
|
+
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
18878
|
+
relationship_assigneeAri?: InputMaybe<GraphStoreSortInput>;
|
|
18879
|
+
relationship_creatorAri?: InputMaybe<GraphStoreSortInput>;
|
|
18880
|
+
relationship_issueAri?: InputMaybe<GraphStoreSortInput>;
|
|
18881
|
+
relationship_issueLastUpdatedOn?: InputMaybe<GraphStoreSortInput>;
|
|
18882
|
+
relationship_reporterAri?: InputMaybe<GraphStoreSortInput>;
|
|
18883
|
+
relationship_statusAri?: InputMaybe<GraphStoreSortInput>;
|
|
18884
|
+
toAti?: InputMaybe<GraphStoreSortInput>;
|
|
18885
|
+
to_state?: InputMaybe<GraphStoreSortInput>;
|
|
18886
|
+
to_testInfo?: InputMaybe<GraphStoreSprintAssociatedBuildTestInfoSortInput>;
|
|
18887
|
+
};
|
|
18888
|
+
export type GraphStoreSprintAssociatedBuildTestInfoFilterInput = {
|
|
18889
|
+
and?: InputMaybe<Array<InputMaybe<GraphStoreSprintAssociatedBuildTestInfoFilterInput>>>;
|
|
18890
|
+
numberFailed?: InputMaybe<GraphStoreLongFilterInput>;
|
|
18891
|
+
numberPassed?: InputMaybe<GraphStoreLongFilterInput>;
|
|
18892
|
+
numberSkipped?: InputMaybe<GraphStoreLongFilterInput>;
|
|
18893
|
+
or?: InputMaybe<Array<InputMaybe<GraphStoreSprintAssociatedBuildTestInfoFilterInput>>>;
|
|
18894
|
+
totalNumber?: InputMaybe<GraphStoreLongFilterInput>;
|
|
18895
|
+
};
|
|
18896
|
+
export type GraphStoreSprintAssociatedBuildTestInfoSortInput = {
|
|
18897
|
+
numberFailed?: InputMaybe<GraphStoreSortInput>;
|
|
18898
|
+
numberPassed?: InputMaybe<GraphStoreSortInput>;
|
|
18899
|
+
numberSkipped?: InputMaybe<GraphStoreSortInput>;
|
|
18900
|
+
totalNumber?: InputMaybe<GraphStoreSortInput>;
|
|
18901
|
+
};
|
|
18902
|
+
export type GraphStoreSprintAssociatedDeploymentAuthorFilterInput = {
|
|
18903
|
+
and?: InputMaybe<Array<InputMaybe<GraphStoreSprintAssociatedDeploymentAuthorFilterInput>>>;
|
|
18904
|
+
authorAri?: InputMaybe<GraphStoreAriFilterInput>;
|
|
18905
|
+
or?: InputMaybe<Array<InputMaybe<GraphStoreSprintAssociatedDeploymentAuthorFilterInput>>>;
|
|
18906
|
+
};
|
|
18907
|
+
export type GraphStoreSprintAssociatedDeploymentAuthorSortInput = {
|
|
18908
|
+
authorAri?: InputMaybe<GraphStoreSortInput>;
|
|
18909
|
+
};
|
|
18910
|
+
export type GraphStoreSprintAssociatedDeploymentConditionalFilterInput = {
|
|
18911
|
+
createdAt?: InputMaybe<GraphStoreDateFilterInput>;
|
|
18912
|
+
fromAti?: InputMaybe<GraphStoreAtiFilterInput>;
|
|
18913
|
+
lastModified?: InputMaybe<GraphStoreDateFilterInput>;
|
|
18914
|
+
relationship_assigneeAri?: InputMaybe<GraphStoreAriFilterInput>;
|
|
18915
|
+
relationship_creatorAri?: InputMaybe<GraphStoreAriFilterInput>;
|
|
18916
|
+
relationship_issueAri?: InputMaybe<GraphStoreAriFilterInput>;
|
|
18917
|
+
relationship_issueLastUpdatedOn?: InputMaybe<GraphStoreLongFilterInput>;
|
|
18918
|
+
relationship_reporterAri?: InputMaybe<GraphStoreAriFilterInput>;
|
|
18919
|
+
relationship_statusAri?: InputMaybe<GraphStoreAriFilterInput>;
|
|
18920
|
+
toAti?: InputMaybe<GraphStoreAtiFilterInput>;
|
|
18921
|
+
to_author?: InputMaybe<GraphStoreSprintAssociatedDeploymentAuthorFilterInput>;
|
|
18922
|
+
to_environmentType?: InputMaybe<GraphStoreSprintAssociatedDeploymentEnvironmentTypeFilterInput>;
|
|
18923
|
+
to_state?: InputMaybe<GraphStoreSprintAssociatedDeploymentDeploymentStateFilterInput>;
|
|
18924
|
+
};
|
|
18925
|
+
export declare enum GraphStoreSprintAssociatedDeploymentDeploymentState {
|
|
18926
|
+
Cancelled = "CANCELLED",
|
|
18927
|
+
Failed = "FAILED",
|
|
18928
|
+
InProgress = "IN_PROGRESS",
|
|
18929
|
+
NotSet = "NOT_SET",
|
|
18930
|
+
Pending = "PENDING",
|
|
18931
|
+
RolledBack = "ROLLED_BACK",
|
|
18932
|
+
Successful = "SUCCESSFUL",
|
|
18933
|
+
Unknown = "UNKNOWN"
|
|
18934
|
+
}
|
|
18935
|
+
export type GraphStoreSprintAssociatedDeploymentDeploymentStateFilterInput = {
|
|
18936
|
+
is?: InputMaybe<Array<GraphStoreSprintAssociatedDeploymentDeploymentState>>;
|
|
18937
|
+
isNot?: InputMaybe<Array<GraphStoreSprintAssociatedDeploymentDeploymentState>>;
|
|
17584
18938
|
};
|
|
17585
|
-
export
|
|
17586
|
-
|
|
18939
|
+
export declare enum GraphStoreSprintAssociatedDeploymentEnvironmentType {
|
|
18940
|
+
Development = "DEVELOPMENT",
|
|
18941
|
+
NotSet = "NOT_SET",
|
|
18942
|
+
Production = "PRODUCTION",
|
|
18943
|
+
Staging = "STAGING",
|
|
18944
|
+
Testing = "TESTING",
|
|
18945
|
+
Unmapped = "UNMAPPED"
|
|
18946
|
+
}
|
|
18947
|
+
export type GraphStoreSprintAssociatedDeploymentEnvironmentTypeFilterInput = {
|
|
18948
|
+
is?: InputMaybe<Array<GraphStoreSprintAssociatedDeploymentEnvironmentType>>;
|
|
18949
|
+
isNot?: InputMaybe<Array<GraphStoreSprintAssociatedDeploymentEnvironmentType>>;
|
|
18950
|
+
};
|
|
18951
|
+
export type GraphStoreSprintAssociatedDeploymentFilterInput = {
|
|
18952
|
+
and?: InputMaybe<Array<InputMaybe<GraphStoreSprintAssociatedDeploymentConditionalFilterInput>>>;
|
|
18953
|
+
or?: InputMaybe<Array<InputMaybe<GraphStoreSprintAssociatedDeploymentConditionalFilterInput>>>;
|
|
18954
|
+
};
|
|
18955
|
+
export type GraphStoreSprintAssociatedDeploymentSortInput = {
|
|
18956
|
+
createdAt?: InputMaybe<GraphStoreSortInput>;
|
|
18957
|
+
fromAti?: InputMaybe<GraphStoreSortInput>;
|
|
18958
|
+
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
18959
|
+
relationship_assigneeAri?: InputMaybe<GraphStoreSortInput>;
|
|
18960
|
+
relationship_creatorAri?: InputMaybe<GraphStoreSortInput>;
|
|
18961
|
+
relationship_issueAri?: InputMaybe<GraphStoreSortInput>;
|
|
18962
|
+
relationship_issueLastUpdatedOn?: InputMaybe<GraphStoreSortInput>;
|
|
18963
|
+
relationship_reporterAri?: InputMaybe<GraphStoreSortInput>;
|
|
18964
|
+
relationship_statusAri?: InputMaybe<GraphStoreSortInput>;
|
|
18965
|
+
toAti?: InputMaybe<GraphStoreSortInput>;
|
|
18966
|
+
to_author?: InputMaybe<GraphStoreSprintAssociatedDeploymentAuthorSortInput>;
|
|
18967
|
+
to_environmentType?: InputMaybe<GraphStoreSortInput>;
|
|
18968
|
+
to_state?: InputMaybe<GraphStoreSortInput>;
|
|
18969
|
+
};
|
|
18970
|
+
export type GraphStoreSprintAssociatedPrAuthorFilterInput = {
|
|
18971
|
+
and?: InputMaybe<Array<InputMaybe<GraphStoreSprintAssociatedPrAuthorFilterInput>>>;
|
|
18972
|
+
authorAri?: InputMaybe<GraphStoreAriFilterInput>;
|
|
18973
|
+
or?: InputMaybe<Array<InputMaybe<GraphStoreSprintAssociatedPrAuthorFilterInput>>>;
|
|
18974
|
+
};
|
|
18975
|
+
export type GraphStoreSprintAssociatedPrAuthorSortInput = {
|
|
18976
|
+
authorAri?: InputMaybe<GraphStoreSortInput>;
|
|
18977
|
+
};
|
|
18978
|
+
export type GraphStoreSprintAssociatedPrConditionalFilterInput = {
|
|
18979
|
+
createdAt?: InputMaybe<GraphStoreDateFilterInput>;
|
|
18980
|
+
fromAti?: InputMaybe<GraphStoreAtiFilterInput>;
|
|
18981
|
+
lastModified?: InputMaybe<GraphStoreDateFilterInput>;
|
|
18982
|
+
relationship_assigneeAri?: InputMaybe<GraphStoreAriFilterInput>;
|
|
18983
|
+
relationship_creatorAri?: InputMaybe<GraphStoreAriFilterInput>;
|
|
18984
|
+
relationship_issueAri?: InputMaybe<GraphStoreAriFilterInput>;
|
|
18985
|
+
relationship_issueLastUpdatedOn?: InputMaybe<GraphStoreLongFilterInput>;
|
|
18986
|
+
relationship_reporterAri?: InputMaybe<GraphStoreAriFilterInput>;
|
|
18987
|
+
relationship_statusAri?: InputMaybe<GraphStoreAriFilterInput>;
|
|
18988
|
+
toAti?: InputMaybe<GraphStoreAtiFilterInput>;
|
|
18989
|
+
to_author?: InputMaybe<GraphStoreSprintAssociatedPrAuthorFilterInput>;
|
|
18990
|
+
to_reviewers?: InputMaybe<GraphStoreSprintAssociatedPrReviewerFilterInput>;
|
|
18991
|
+
to_status?: InputMaybe<GraphStoreSprintAssociatedPrPullRequestStatusFilterInput>;
|
|
18992
|
+
to_taskCount?: InputMaybe<GraphStoreFloatFilterInput>;
|
|
18993
|
+
};
|
|
18994
|
+
export type GraphStoreSprintAssociatedPrFilterInput = {
|
|
18995
|
+
and?: InputMaybe<Array<InputMaybe<GraphStoreSprintAssociatedPrConditionalFilterInput>>>;
|
|
18996
|
+
or?: InputMaybe<Array<InputMaybe<GraphStoreSprintAssociatedPrConditionalFilterInput>>>;
|
|
18997
|
+
};
|
|
18998
|
+
export declare enum GraphStoreSprintAssociatedPrPullRequestStatus {
|
|
18999
|
+
Declined = "DECLINED",
|
|
19000
|
+
Merged = "MERGED",
|
|
19001
|
+
NotSet = "NOT_SET",
|
|
19002
|
+
Open = "OPEN",
|
|
19003
|
+
Unknown = "UNKNOWN"
|
|
19004
|
+
}
|
|
19005
|
+
export type GraphStoreSprintAssociatedPrPullRequestStatusFilterInput = {
|
|
19006
|
+
is?: InputMaybe<Array<GraphStoreSprintAssociatedPrPullRequestStatus>>;
|
|
19007
|
+
isNot?: InputMaybe<Array<GraphStoreSprintAssociatedPrPullRequestStatus>>;
|
|
17587
19008
|
};
|
|
17588
|
-
export type
|
|
17589
|
-
|
|
17590
|
-
|
|
17591
|
-
|
|
17592
|
-
|
|
19009
|
+
export type GraphStoreSprintAssociatedPrReviewerFilterInput = {
|
|
19010
|
+
and?: InputMaybe<Array<InputMaybe<GraphStoreSprintAssociatedPrReviewerFilterInput>>>;
|
|
19011
|
+
approvalStatus?: InputMaybe<GraphStoreSprintAssociatedPrReviewerReviewerStatusFilterInput>;
|
|
19012
|
+
or?: InputMaybe<Array<InputMaybe<GraphStoreSprintAssociatedPrReviewerFilterInput>>>;
|
|
19013
|
+
reviewerAri?: InputMaybe<GraphStoreAriFilterInput>;
|
|
19014
|
+
};
|
|
19015
|
+
export declare enum GraphStoreSprintAssociatedPrReviewerReviewerStatus {
|
|
19016
|
+
Approved = "APPROVED",
|
|
19017
|
+
Needswork = "NEEDSWORK",
|
|
19018
|
+
NotSet = "NOT_SET",
|
|
19019
|
+
Unapproved = "UNAPPROVED"
|
|
19020
|
+
}
|
|
19021
|
+
export type GraphStoreSprintAssociatedPrReviewerReviewerStatusFilterInput = {
|
|
19022
|
+
is?: InputMaybe<Array<GraphStoreSprintAssociatedPrReviewerReviewerStatus>>;
|
|
19023
|
+
isNot?: InputMaybe<Array<GraphStoreSprintAssociatedPrReviewerReviewerStatus>>;
|
|
19024
|
+
};
|
|
19025
|
+
export type GraphStoreSprintAssociatedPrReviewerSortInput = {
|
|
19026
|
+
approvalStatus?: InputMaybe<GraphStoreSortInput>;
|
|
19027
|
+
reviewerAri?: InputMaybe<GraphStoreSortInput>;
|
|
19028
|
+
};
|
|
19029
|
+
export type GraphStoreSprintAssociatedPrSortInput = {
|
|
19030
|
+
createdAt?: InputMaybe<GraphStoreSortInput>;
|
|
19031
|
+
fromAti?: InputMaybe<GraphStoreSortInput>;
|
|
19032
|
+
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
19033
|
+
relationship_assigneeAri?: InputMaybe<GraphStoreSortInput>;
|
|
19034
|
+
relationship_creatorAri?: InputMaybe<GraphStoreSortInput>;
|
|
19035
|
+
relationship_issueAri?: InputMaybe<GraphStoreSortInput>;
|
|
19036
|
+
relationship_issueLastUpdatedOn?: InputMaybe<GraphStoreSortInput>;
|
|
19037
|
+
relationship_reporterAri?: InputMaybe<GraphStoreSortInput>;
|
|
19038
|
+
relationship_statusAri?: InputMaybe<GraphStoreSortInput>;
|
|
19039
|
+
toAti?: InputMaybe<GraphStoreSortInput>;
|
|
19040
|
+
to_author?: InputMaybe<GraphStoreSprintAssociatedPrAuthorSortInput>;
|
|
19041
|
+
to_reviewers?: InputMaybe<GraphStoreSprintAssociatedPrReviewerSortInput>;
|
|
19042
|
+
to_status?: InputMaybe<GraphStoreSortInput>;
|
|
19043
|
+
to_taskCount?: InputMaybe<GraphStoreSortInput>;
|
|
17593
19044
|
};
|
|
17594
19045
|
export type GrowthRecContext = {
|
|
17595
19046
|
containers?: InputMaybe<Scalars['JSON']['input']>;
|
|
@@ -18914,6 +20365,7 @@ export type InfluentsNotificationQueryNotificationFeedArgs = {
|
|
|
18914
20365
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
18915
20366
|
filter?: InputMaybe<InfluentsNotificationFilter>;
|
|
18916
20367
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
20368
|
+
flat?: InputMaybe<Scalars['Boolean']['input']>;
|
|
18917
20369
|
};
|
|
18918
20370
|
export type InfluentsNotificationQueryNotificationGroupArgs = {
|
|
18919
20371
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -18951,6 +20403,7 @@ export type Insights = {
|
|
|
18951
20403
|
};
|
|
18952
20404
|
export type InsightsNextBestTasksByContextAriArgs = {
|
|
18953
20405
|
contextAri: InsightsContextAri;
|
|
20406
|
+
statusId?: InputMaybe<Scalars['String']['input']>;
|
|
18954
20407
|
};
|
|
18955
20408
|
export type InsightsBuildDetails = {
|
|
18956
20409
|
__typename?: 'InsightsBuildDetails';
|
|
@@ -18991,7 +20444,7 @@ export type InsightsNextBestTask = {
|
|
|
18991
20444
|
title: Scalars['String']['output'];
|
|
18992
20445
|
url: Scalars['String']['output'];
|
|
18993
20446
|
};
|
|
18994
|
-
export type InsightsNextBestTaskDetails = InsightsBuildDetails | InsightsDeploymentDetails | InsightsPullRequestNeedsWorkDetails | InsightsPullRequestReviewDetails;
|
|
20447
|
+
export type InsightsNextBestTaskDetails = InsightsBuildDetails | InsightsDeploymentDetails | InsightsPullRequestNeedsWorkDetails | InsightsPullRequestReviewDetails | InsightsVulnDetails;
|
|
18995
20448
|
export type InsightsPullRequestNeedsWorkDetails = {
|
|
18996
20449
|
__typename?: 'InsightsPullRequestNeedsWorkDetails';
|
|
18997
20450
|
commentCount: Scalars['Int']['output'];
|
|
@@ -19008,10 +20461,26 @@ export type InsightsPullRequestReviewDetails = {
|
|
|
19008
20461
|
};
|
|
19009
20462
|
export declare enum InsightsTaskType {
|
|
19010
20463
|
BuildFailed = "BUILD_FAILED",
|
|
20464
|
+
CritVuln = "CRIT_VULN",
|
|
19011
20465
|
DeploymentFailed = "DEPLOYMENT_FAILED",
|
|
19012
20466
|
PrNeedsWork = "PR_NEEDS_WORK",
|
|
19013
20467
|
PrReview = "PR_REVIEW"
|
|
19014
20468
|
}
|
|
20469
|
+
export type InsightsVulnDetails = {
|
|
20470
|
+
__typename?: 'InsightsVulnDetails';
|
|
20471
|
+
id: Scalars['ID']['output'];
|
|
20472
|
+
introducedDate: Scalars['String']['output'];
|
|
20473
|
+
issueId: Scalars['String']['output'];
|
|
20474
|
+
issueKey: Scalars['String']['output'];
|
|
20475
|
+
securityContainerName: Scalars['String']['output'];
|
|
20476
|
+
status: InsightsVulnerabilityStatus;
|
|
20477
|
+
};
|
|
20478
|
+
export declare enum InsightsVulnerabilityStatus {
|
|
20479
|
+
Closed = "CLOSED",
|
|
20480
|
+
Ignored = "IGNORED",
|
|
20481
|
+
Open = "OPEN",
|
|
20482
|
+
Unknown = "UNKNOWN"
|
|
20483
|
+
}
|
|
19015
20484
|
export type InstallationContextWithLogAccess = {
|
|
19016
20485
|
__typename?: 'InstallationContextWithLogAccess';
|
|
19017
20486
|
installationContext: Scalars['ID']['output'];
|
|
@@ -20817,6 +22286,17 @@ export type JiraCustomFilterShareGrantsArgs = {
|
|
|
20817
22286
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
20818
22287
|
last?: InputMaybe<Scalars['Int']['input']>;
|
|
20819
22288
|
};
|
|
22289
|
+
export type JiraCustomIssueSearchError = {
|
|
22290
|
+
__typename?: 'JiraCustomIssueSearchError';
|
|
22291
|
+
errorType?: Maybe<JiraCustomIssueSearchErrorType>;
|
|
22292
|
+
messages?: Maybe<Array<Maybe<Scalars['String']['output']>>>;
|
|
22293
|
+
};
|
|
22294
|
+
export declare enum JiraCustomIssueSearchErrorType {
|
|
22295
|
+
CustomImplementationError = "CUSTOM_IMPLEMENTATION_ERROR",
|
|
22296
|
+
CustomSearchDisabled = "CUSTOM_SEARCH_DISABLED",
|
|
22297
|
+
InvalidAri = "INVALID_ARI",
|
|
22298
|
+
UnsupportedAri = "UNSUPPORTED_ARI"
|
|
22299
|
+
}
|
|
20820
22300
|
export type JiraDataClassification = {
|
|
20821
22301
|
__typename?: 'JiraDataClassification';
|
|
20822
22302
|
color?: Maybe<JiraColor>;
|
|
@@ -21045,10 +22525,8 @@ export type JiraDevOpsQueryBitbucketIntegrationArgs = {
|
|
|
21045
22525
|
cloudId: Scalars['ID']['input'];
|
|
21046
22526
|
};
|
|
21047
22527
|
export type JiraDevOpsQueryConfigStateArgs = {
|
|
21048
|
-
after?: InputMaybe<Scalars['String']['input']>;
|
|
21049
22528
|
appId: Scalars['ID']['input'];
|
|
21050
22529
|
cloudId: Scalars['ID']['input'];
|
|
21051
|
-
first?: InputMaybe<Scalars['Int']['input']>;
|
|
21052
22530
|
};
|
|
21053
22531
|
export type JiraDevOpsQueryConfigStatesArgs = {
|
|
21054
22532
|
cloudId: Scalars['ID']['input'];
|
|
@@ -22470,7 +23948,10 @@ export type JiraIssueSearchContextualContentIssuesArgs = {
|
|
|
22470
23948
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
22471
23949
|
last?: InputMaybe<Scalars['Int']['input']>;
|
|
22472
23950
|
};
|
|
22473
|
-
export type
|
|
23951
|
+
export type JiraIssueSearchCustomInput = {
|
|
23952
|
+
jiraSoftwareInput?: InputMaybe<JiraSoftwareIssueSearchCustomInput>;
|
|
23953
|
+
};
|
|
23954
|
+
export type JiraIssueSearchError = JiraCustomIssueSearchError | JiraInvalidJqlError | JiraInvalidSyntaxError | JiraServerError;
|
|
22474
23955
|
export type JiraIssueSearchFieldSet = {
|
|
22475
23956
|
__typename?: 'JiraIssueSearchFieldSet';
|
|
22476
23957
|
displayName?: Maybe<Scalars['String']['output']>;
|
|
@@ -22503,6 +23984,7 @@ export type JiraIssueSearchFieldSetsFilter = {
|
|
|
22503
23984
|
searchString?: InputMaybe<Scalars['String']['input']>;
|
|
22504
23985
|
};
|
|
22505
23986
|
export type JiraIssueSearchInput = {
|
|
23987
|
+
customInput?: InputMaybe<JiraIssueSearchCustomInput>;
|
|
22506
23988
|
filterId?: InputMaybe<Scalars['String']['input']>;
|
|
22507
23989
|
jql?: InputMaybe<Scalars['String']['input']>;
|
|
22508
23990
|
};
|
|
@@ -23518,11 +25000,13 @@ export type JiraMutation = {
|
|
|
23518
25000
|
createJiraVersion?: Maybe<JiraUpdateVersionPayload>;
|
|
23519
25001
|
createJwmFilter?: Maybe<JiraWorkManagementCreateFilterPayload>;
|
|
23520
25002
|
createJwmIssue?: Maybe<JiraWorkManagementCreateIssuePayload>;
|
|
25003
|
+
createJwmOverview?: Maybe<JiraWorkManagementGiraCreateOverviewPayload>;
|
|
23521
25004
|
createProjectShortcut?: Maybe<JiraProjectShortcutPayload>;
|
|
23522
25005
|
createReleaseNoteConfluencePage?: Maybe<JiraCreateReleaseNoteConfluencePagePayload>;
|
|
23523
25006
|
deleteGlobalPermissionGrant?: Maybe<JiraGlobalPermissionDeleteGroupGrantPayload>;
|
|
23524
25007
|
deleteIssueNavigatorJQLHistory?: Maybe<JiraIssueNavigatorJqlHistoryDeletePayload>;
|
|
23525
25008
|
deleteJiraVersionApprover?: Maybe<JiraVersionDeleteApproverPayload>;
|
|
25009
|
+
deleteJwmOverview?: Maybe<JiraWorkManagementGiraDeleteOverviewPayload>;
|
|
23526
25010
|
deleteProjectNotificationPreferences?: Maybe<JiraDeleteProjectNotificationPreferencesPayload>;
|
|
23527
25011
|
deleteProjectShortcut?: Maybe<JiraProjectShortcutPayload>;
|
|
23528
25012
|
devOps?: Maybe<JiraDevOpsMutation>;
|
|
@@ -23564,6 +25048,7 @@ export type JiraMutation = {
|
|
|
23564
25048
|
updateJiraVersionRichTextSectionContent?: Maybe<JiraUpdateVersionPayload>;
|
|
23565
25049
|
updateJiraVersionRichTextSectionTitle?: Maybe<JiraUpdateVersionPayload>;
|
|
23566
25050
|
updateJwmFilter?: Maybe<JiraWorkManagementUpdateFilterPayload>;
|
|
25051
|
+
updateJwmOverview?: Maybe<JiraWorkManagementGiraUpdateOverviewPayload>;
|
|
23567
25052
|
updateLabelsField?: Maybe<JiraLabelsFieldPayload>;
|
|
23568
25053
|
updateLegacyTeamField?: Maybe<JiraLegacyTeamFieldPayload>;
|
|
23569
25054
|
updateMultipleSelectField?: Maybe<JiraMultipleSelectFieldPayload>;
|
|
@@ -23638,6 +25123,10 @@ export type JiraMutationCreateJwmFilterArgs = {
|
|
|
23638
25123
|
export type JiraMutationCreateJwmIssueArgs = {
|
|
23639
25124
|
input: JiraWorkManagementCreateIssueInput;
|
|
23640
25125
|
};
|
|
25126
|
+
export type JiraMutationCreateJwmOverviewArgs = {
|
|
25127
|
+
cloudId: Scalars['ID']['input'];
|
|
25128
|
+
input: JiraWorkManagementCreateOverviewInput;
|
|
25129
|
+
};
|
|
23641
25130
|
export type JiraMutationCreateProjectShortcutArgs = {
|
|
23642
25131
|
input: JiraCreateShortcutInput;
|
|
23643
25132
|
};
|
|
@@ -23654,6 +25143,9 @@ export type JiraMutationDeleteIssueNavigatorJqlHistoryArgs = {
|
|
|
23654
25143
|
export type JiraMutationDeleteJiraVersionApproverArgs = {
|
|
23655
25144
|
id: Scalars['ID']['input'];
|
|
23656
25145
|
};
|
|
25146
|
+
export type JiraMutationDeleteJwmOverviewArgs = {
|
|
25147
|
+
input: JiraWorkManagementDeleteOverviewInput;
|
|
25148
|
+
};
|
|
23657
25149
|
export type JiraMutationDeleteProjectNotificationPreferencesArgs = {
|
|
23658
25150
|
cloudId: Scalars['ID']['input'];
|
|
23659
25151
|
input: JiraDeleteProjectNotificationPreferencesInput;
|
|
@@ -23781,6 +25273,9 @@ export type JiraMutationUpdateJiraVersionRichTextSectionTitleArgs = {
|
|
|
23781
25273
|
export type JiraMutationUpdateJwmFilterArgs = {
|
|
23782
25274
|
input: JiraWorkManagementUpdateFilterInput;
|
|
23783
25275
|
};
|
|
25276
|
+
export type JiraMutationUpdateJwmOverviewArgs = {
|
|
25277
|
+
input: JiraWorkManagementUpdateOverviewInput;
|
|
25278
|
+
};
|
|
23784
25279
|
export type JiraMutationUpdateLabelsFieldArgs = {
|
|
23785
25280
|
input: JiraUpdateLabelsFieldInput;
|
|
23786
25281
|
};
|
|
@@ -25050,11 +26545,14 @@ export declare enum JiraProjectPermissionCategoryEnum {
|
|
|
25050
26545
|
}
|
|
25051
26546
|
export type JiraProjectRoleActorRecommendation = Node & {
|
|
25052
26547
|
__typename?: 'JiraProjectRoleActorRecommendation';
|
|
26548
|
+
executedBy?: Maybe<User>;
|
|
26549
|
+
executedGroupId?: Maybe<Scalars['String']['output']>;
|
|
25053
26550
|
id: Scalars['ID']['output'];
|
|
25054
26551
|
project?: Maybe<JiraProject>;
|
|
25055
26552
|
projectRoleActorAction?: Maybe<JiraProjectRoleActorRecommendationAction>;
|
|
25056
26553
|
recommendationId?: Maybe<Scalars['Long']['output']>;
|
|
25057
26554
|
status?: Maybe<JiraResourceUsageRecommendationStatus>;
|
|
26555
|
+
updated?: Maybe<Scalars['DateTime']['output']>;
|
|
25058
26556
|
user?: Maybe<JiraUserMetadata>;
|
|
25059
26557
|
};
|
|
25060
26558
|
export declare enum JiraProjectRoleActorRecommendationAction {
|
|
@@ -25228,9 +26726,12 @@ export type JiraQuery = {
|
|
|
25228
26726
|
jsonUserProperty?: Maybe<JiraEntityPropertyJson>;
|
|
25229
26727
|
jwmFilters?: Maybe<JiraWorkManagementFilterConnectionResult>;
|
|
25230
26728
|
jwmForm?: Maybe<JiraWorkManagementFormConfiguration>;
|
|
26729
|
+
jwmLicensing?: Maybe<JiraWorkManagementLicensing>;
|
|
25231
26730
|
jwmNavigation?: Maybe<JiraWorkManagementNavigation>;
|
|
25232
26731
|
jwmNavigationByProjectId?: Maybe<JiraWorkManagementNavigation>;
|
|
25233
26732
|
jwmNavigationByProjectKey?: Maybe<JiraWorkManagementNavigation>;
|
|
26733
|
+
jwmOverview?: Maybe<JiraWorkManagementGiraOverviewResult>;
|
|
26734
|
+
jwmOverviews?: Maybe<JiraWorkManagementGiraOverviewConnection>;
|
|
25234
26735
|
jwmViewItems?: Maybe<JiraWorkManagementViewItemConnectionResult>;
|
|
25235
26736
|
labelsFieldOptions?: Maybe<JiraLabelConnection>;
|
|
25236
26737
|
lockedIssueTypeIds?: Maybe<Array<Scalars['ID']['output']>>;
|
|
@@ -25581,6 +27082,9 @@ export type JiraQueryJwmFormArgs = {
|
|
|
25581
27082
|
cloudId?: InputMaybe<Scalars['ID']['input']>;
|
|
25582
27083
|
formId: Scalars['ID']['input'];
|
|
25583
27084
|
};
|
|
27085
|
+
export type JiraQueryJwmLicensingArgs = {
|
|
27086
|
+
cloudId: Scalars['ID']['input'];
|
|
27087
|
+
};
|
|
25584
27088
|
export type JiraQueryJwmNavigationArgs = {
|
|
25585
27089
|
cloudId: Scalars['ID']['input'];
|
|
25586
27090
|
};
|
|
@@ -25591,6 +27095,14 @@ export type JiraQueryJwmNavigationByProjectKeyArgs = {
|
|
|
25591
27095
|
cloudId: Scalars['ID']['input'];
|
|
25592
27096
|
projectKey: Scalars['String']['input'];
|
|
25593
27097
|
};
|
|
27098
|
+
export type JiraQueryJwmOverviewArgs = {
|
|
27099
|
+
id: Scalars['ID']['input'];
|
|
27100
|
+
};
|
|
27101
|
+
export type JiraQueryJwmOverviewsArgs = {
|
|
27102
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
27103
|
+
cloudId: Scalars['ID']['input'];
|
|
27104
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
27105
|
+
};
|
|
25594
27106
|
export type JiraQueryJwmViewItemsArgs = {
|
|
25595
27107
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
25596
27108
|
before?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -26909,6 +28421,7 @@ export type JiraServiceManagementRequestTypeTemplate = {
|
|
|
26909
28421
|
previewImageUrl?: Maybe<Scalars['URL']['output']>;
|
|
26910
28422
|
requestTypeIcon?: Maybe<JiraServiceManagementRequestTypeTemplateRequestTypeIcon>;
|
|
26911
28423
|
requestTypePortalDescription?: Maybe<Scalars['String']['output']>;
|
|
28424
|
+
supportedProjectStyles?: Maybe<Array<JiraProjectStyle>>;
|
|
26912
28425
|
};
|
|
26913
28426
|
export type JiraServiceManagementRequestTypeTemplateDefaultConfigurationDependencies = {
|
|
26914
28427
|
__typename?: 'JiraServiceManagementRequestTypeTemplateDefaultConfigurationDependencies';
|
|
@@ -27343,6 +28856,16 @@ export type JiraSingleVersionPickerFieldInput = {
|
|
|
27343
28856
|
fieldId: Scalars['ID']['input'];
|
|
27344
28857
|
version: JiraVersionInput;
|
|
27345
28858
|
};
|
|
28859
|
+
export type JiraSoftwareIssueSearchCustomInput = {
|
|
28860
|
+
additionalJql?: InputMaybe<Scalars['String']['input']>;
|
|
28861
|
+
context?: InputMaybe<JiraSoftwareIssueSearchCustomInputContext>;
|
|
28862
|
+
jiraEntityId: Scalars['ID']['input'];
|
|
28863
|
+
};
|
|
28864
|
+
export declare enum JiraSoftwareIssueSearchCustomInputContext {
|
|
28865
|
+
Backlog = "BACKLOG",
|
|
28866
|
+
Board = "BOARD",
|
|
28867
|
+
None = "NONE"
|
|
28868
|
+
}
|
|
27346
28869
|
export type JiraSoftwareProjectNavigationMetadata = {
|
|
27347
28870
|
__typename?: 'JiraSoftwareProjectNavigationMetadata';
|
|
27348
28871
|
boardId: Scalars['ID']['output'];
|
|
@@ -28920,6 +30443,52 @@ export type JiraWorkManagementFormField = {
|
|
|
28920
30443
|
fieldId: Scalars['ID']['output'];
|
|
28921
30444
|
id: Scalars['ID']['output'];
|
|
28922
30445
|
};
|
|
30446
|
+
export type JiraWorkManagementGiraCreateOverviewPayload = Payload & {
|
|
30447
|
+
__typename?: 'JiraWorkManagementGiraCreateOverviewPayload';
|
|
30448
|
+
errors?: Maybe<Array<MutationError>>;
|
|
30449
|
+
jwmOverview?: Maybe<JiraWorkManagementGiraOverview>;
|
|
30450
|
+
success: Scalars['Boolean']['output'];
|
|
30451
|
+
};
|
|
30452
|
+
export type JiraWorkManagementGiraDeleteOverviewPayload = Payload & {
|
|
30453
|
+
__typename?: 'JiraWorkManagementGiraDeleteOverviewPayload';
|
|
30454
|
+
errors?: Maybe<Array<MutationError>>;
|
|
30455
|
+
success: Scalars['Boolean']['output'];
|
|
30456
|
+
};
|
|
30457
|
+
export type JiraWorkManagementGiraOverview = Node & {
|
|
30458
|
+
__typename?: 'JiraWorkManagementGiraOverview';
|
|
30459
|
+
author?: Maybe<User>;
|
|
30460
|
+
fields?: Maybe<JiraJqlFieldConnection>;
|
|
30461
|
+
id: Scalars['ID']['output'];
|
|
30462
|
+
name?: Maybe<Scalars['String']['output']>;
|
|
30463
|
+
projects?: Maybe<JiraProjectConnection>;
|
|
30464
|
+
theme?: Maybe<Scalars['String']['output']>;
|
|
30465
|
+
};
|
|
30466
|
+
export type JiraWorkManagementGiraOverviewFieldsArgs = {
|
|
30467
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
30468
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
30469
|
+
};
|
|
30470
|
+
export type JiraWorkManagementGiraOverviewProjectsArgs = {
|
|
30471
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
30472
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
30473
|
+
};
|
|
30474
|
+
export type JiraWorkManagementGiraOverviewConnection = {
|
|
30475
|
+
__typename?: 'JiraWorkManagementGiraOverviewConnection';
|
|
30476
|
+
edges?: Maybe<Array<Maybe<JiraWorkManagementGiraOverviewEdge>>>;
|
|
30477
|
+
pageInfo: PageInfo;
|
|
30478
|
+
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
30479
|
+
};
|
|
30480
|
+
export type JiraWorkManagementGiraOverviewEdge = {
|
|
30481
|
+
__typename?: 'JiraWorkManagementGiraOverviewEdge';
|
|
30482
|
+
cursor: Scalars['String']['output'];
|
|
30483
|
+
node?: Maybe<JiraWorkManagementGiraOverview>;
|
|
30484
|
+
};
|
|
30485
|
+
export type JiraWorkManagementGiraOverviewResult = JiraWorkManagementGiraOverview | QueryError;
|
|
30486
|
+
export type JiraWorkManagementGiraUpdateOverviewPayload = Payload & {
|
|
30487
|
+
__typename?: 'JiraWorkManagementGiraUpdateOverviewPayload';
|
|
30488
|
+
errors?: Maybe<Array<MutationError>>;
|
|
30489
|
+
jwmOverview?: Maybe<JiraWorkManagementGiraOverview>;
|
|
30490
|
+
success: Scalars['Boolean']['output'];
|
|
30491
|
+
};
|
|
28923
30492
|
export type JiraWorkManagementLicensing = {
|
|
28924
30493
|
__typename?: 'JiraWorkManagementLicensing';
|
|
28925
30494
|
currentUserSeatEdition?: Maybe<JiraWorkManagementUserLicenseSeatEdition>;
|
|
@@ -29533,31 +31102,40 @@ export declare enum MarketplaceProgramStatus {
|
|
|
29533
31102
|
NotAParticipant = "NOT_A_PARTICIPANT",
|
|
29534
31103
|
Rejected = "REJECTED"
|
|
29535
31104
|
}
|
|
29536
|
-
export declare enum MarketplaceStoreAppEditionType {
|
|
29537
|
-
Advanced = "ADVANCED",
|
|
29538
|
-
Free = "FREE",
|
|
29539
|
-
Sandbox = "SANDBOX",
|
|
29540
|
-
Standard = "STANDARD"
|
|
29541
|
-
}
|
|
29542
31105
|
export type MarketplaceStoreInstallAppInput = {
|
|
29543
31106
|
appKey: Scalars['String']['input'];
|
|
29544
|
-
|
|
29545
|
-
editionType?: InputMaybe<MarketplaceStoreAppEditionType>;
|
|
31107
|
+
target: MarketplaceStoreInstallAppTargetInput;
|
|
29546
31108
|
};
|
|
29547
|
-
export type
|
|
29548
|
-
__typename?: '
|
|
31109
|
+
export type MarketplaceStoreInstallAppResponse = {
|
|
31110
|
+
__typename?: 'MarketplaceStoreInstallAppResponse';
|
|
29549
31111
|
id: Scalars['ID']['output'];
|
|
31112
|
+
status: MarketplaceStoreInstallAppStatus;
|
|
31113
|
+
};
|
|
31114
|
+
export declare enum MarketplaceStoreInstallAppStatus {
|
|
31115
|
+
InProgress = "IN_PROGRESS",
|
|
31116
|
+
Pending = "PENDING",
|
|
31117
|
+
ProvisioningFailure = "PROVISIONING_FAILURE",
|
|
31118
|
+
Success = "SUCCESS",
|
|
31119
|
+
TimedOut = "TIMED_OUT"
|
|
31120
|
+
}
|
|
31121
|
+
export type MarketplaceStoreInstallAppTargetInput = {
|
|
31122
|
+
cloudId: Scalars['ID']['input'];
|
|
31123
|
+
product: MarketplaceStoreInstallationTargetProduct;
|
|
29550
31124
|
};
|
|
31125
|
+
export declare enum MarketplaceStoreInstallationTargetProduct {
|
|
31126
|
+
Confluence = "CONFLUENCE",
|
|
31127
|
+
Jira = "JIRA"
|
|
31128
|
+
}
|
|
29551
31129
|
export type MarketplaceStoreMutationApi = {
|
|
29552
31130
|
__typename?: 'MarketplaceStoreMutationApi';
|
|
29553
|
-
installApp:
|
|
31131
|
+
installApp: MarketplaceStoreInstallAppResponse;
|
|
29554
31132
|
};
|
|
29555
31133
|
export type MarketplaceStoreMutationApiInstallAppArgs = {
|
|
29556
31134
|
input: MarketplaceStoreInstallAppInput;
|
|
29557
31135
|
};
|
|
29558
31136
|
export type MarketplaceStoreQueryApi = {
|
|
29559
31137
|
__typename?: 'MarketplaceStoreQueryApi';
|
|
29560
|
-
installAppStatus:
|
|
31138
|
+
installAppStatus: MarketplaceStoreInstallAppResponse;
|
|
29561
31139
|
};
|
|
29562
31140
|
export type MarketplaceStoreQueryApiInstallAppStatusArgs = {
|
|
29563
31141
|
id: Scalars['ID']['input'];
|
|
@@ -29656,6 +31234,7 @@ export type MoveSprintUpResponse = MutationResponse & {
|
|
|
29656
31234
|
};
|
|
29657
31235
|
export type Mutation = {
|
|
29658
31236
|
__typename?: 'Mutation';
|
|
31237
|
+
ForgeAi?: Maybe<ForgeAiMutation>;
|
|
29659
31238
|
addBetaUserAsSiteCreator?: Maybe<AddBetaUserAsSiteCreatorPayload>;
|
|
29660
31239
|
admin?: Maybe<AdminMutation>;
|
|
29661
31240
|
appRecommendations?: Maybe<AppRecMutation>;
|
|
@@ -30385,6 +31964,18 @@ export type NadelHydrationFromArgument = {
|
|
|
30385
31964
|
export declare enum NadelHydrationTemplate {
|
|
30386
31965
|
NadelPlaceholder = "NADEL_PLACEHOLDER"
|
|
30387
31966
|
}
|
|
31967
|
+
export type NadelWhenCondition = {
|
|
31968
|
+
result: NadelWhenConditionResult;
|
|
31969
|
+
};
|
|
31970
|
+
export type NadelWhenConditionPredicate = {
|
|
31971
|
+
equals?: InputMaybe<Scalars['JSON']['input']>;
|
|
31972
|
+
matches?: InputMaybe<Scalars['String']['input']>;
|
|
31973
|
+
startsWith?: InputMaybe<Scalars['String']['input']>;
|
|
31974
|
+
};
|
|
31975
|
+
export type NadelWhenConditionResult = {
|
|
31976
|
+
predicate: NadelWhenConditionPredicate;
|
|
31977
|
+
sourceField: Scalars['String']['input'];
|
|
31978
|
+
};
|
|
30388
31979
|
export type NewCard = {
|
|
30389
31980
|
assigneeId?: InputMaybe<Scalars['ID']['input']>;
|
|
30390
31981
|
fixVersions?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
@@ -32778,6 +34369,7 @@ export type QueryNlpFollowUpArgs = {
|
|
|
32778
34369
|
query?: InputMaybe<Scalars['String']['input']>;
|
|
32779
34370
|
};
|
|
32780
34371
|
export type QueryNlpSearchArgs = {
|
|
34372
|
+
experience?: InputMaybe<Scalars['String']['input']>;
|
|
32781
34373
|
followups_enabled?: InputMaybe<Scalars['Boolean']['input']>;
|
|
32782
34374
|
locale?: InputMaybe<Scalars['String']['input']>;
|
|
32783
34375
|
locations: Array<Scalars['String']['input']>;
|
|
@@ -34631,6 +36223,7 @@ export type ShepherdActivityHighlight = {
|
|
|
34631
36223
|
__typename?: 'ShepherdActivityHighlight';
|
|
34632
36224
|
action?: Maybe<ShepherdActionType>;
|
|
34633
36225
|
actor?: Maybe<ShepherdActor>;
|
|
36226
|
+
eventIds?: Maybe<Array<Scalars['String']['output']>>;
|
|
34634
36227
|
histogram?: Maybe<Array<ShepherdActivityHistogramBucket>>;
|
|
34635
36228
|
subject?: Maybe<ShepherdSubject>;
|
|
34636
36229
|
time?: Maybe<ShepherdTime>;
|
|
@@ -34638,6 +36231,7 @@ export type ShepherdActivityHighlight = {
|
|
|
34638
36231
|
export type ShepherdActivityHighlightInput = {
|
|
34639
36232
|
action?: InputMaybe<ShepherdActionType>;
|
|
34640
36233
|
actor?: InputMaybe<Scalars['ID']['input']>;
|
|
36234
|
+
eventIds?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
34641
36235
|
histogram?: InputMaybe<Array<InputMaybe<ShepherdHistogramBucketInput>>>;
|
|
34642
36236
|
subject?: InputMaybe<ShepherdSubjectInput>;
|
|
34643
36237
|
time: ShepherdTimeInput;
|
|
@@ -34794,6 +36388,9 @@ export declare enum ShepherdAlertTemplateType {
|
|
|
34794
36388
|
CreatedSamlConfig = "CREATED_SAML_CONFIG",
|
|
34795
36389
|
CreatedTunnel = "CREATED_TUNNEL",
|
|
34796
36390
|
CreatedUserProvisioning = "CREATED_USER_PROVISIONING",
|
|
36391
|
+
DataSecurityPolicyActivated = "DATA_SECURITY_POLICY_ACTIVATED",
|
|
36392
|
+
DataSecurityPolicyDeactivated = "DATA_SECURITY_POLICY_DEACTIVATED",
|
|
36393
|
+
DataSecurityPolicyDeleted = "DATA_SECURITY_POLICY_DELETED",
|
|
34797
36394
|
Default = "DEFAULT",
|
|
34798
36395
|
DeletedAuthPolicy = "DELETED_AUTH_POLICY",
|
|
34799
36396
|
DeletedDomain = "DELETED_DOMAIN",
|
|
@@ -35047,6 +36644,7 @@ export type ShepherdQueryShepherdActivityArgs = {
|
|
|
35047
36644
|
actor?: InputMaybe<Scalars['ID']['input']>;
|
|
35048
36645
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
35049
36646
|
endTime?: InputMaybe<Scalars['DateTime']['input']>;
|
|
36647
|
+
eventId?: InputMaybe<Scalars['ID']['input']>;
|
|
35050
36648
|
first: Scalars['Int']['input'];
|
|
35051
36649
|
orgId?: InputMaybe<Scalars['String']['input']>;
|
|
35052
36650
|
startTime?: InputMaybe<Scalars['DateTime']['input']>;
|
|
@@ -37142,6 +38740,7 @@ export type TrelloBoardPrefs = {
|
|
|
37142
38740
|
calendarFeedEnabled?: Maybe<Scalars['Boolean']['output']>;
|
|
37143
38741
|
canInvite?: Maybe<Scalars['Boolean']['output']>;
|
|
37144
38742
|
cardAging?: Maybe<Scalars['String']['output']>;
|
|
38743
|
+
cardCounts?: Maybe<Scalars['Boolean']['output']>;
|
|
37145
38744
|
cardCovers?: Maybe<Scalars['Boolean']['output']>;
|
|
37146
38745
|
comments?: Maybe<Scalars['String']['output']>;
|
|
37147
38746
|
hiddenPowerUpBoardButtons?: Maybe<Array<TrelloPowerUp>>;
|
|
@@ -38066,6 +39665,7 @@ export type TrelloWorkspace = Node & {
|
|
|
38066
39665
|
members?: Maybe<TrelloWorkspaceMembershipsConnection>;
|
|
38067
39666
|
name: Scalars['String']['output'];
|
|
38068
39667
|
objectId: Scalars['ID']['output'];
|
|
39668
|
+
offering?: Maybe<Scalars['String']['output']>;
|
|
38069
39669
|
prefs: TrelloWorkspacePrefs;
|
|
38070
39670
|
premiumFeatures?: Maybe<Array<Scalars['String']['output']>>;
|
|
38071
39671
|
products?: Maybe<Array<Maybe<TrelloProduct>>>;
|
|
@@ -38848,6 +40448,7 @@ export type VirtualAgentCreateChatChannelPayload = Payload & {
|
|
|
38848
40448
|
success: Scalars['Boolean']['output'];
|
|
38849
40449
|
};
|
|
38850
40450
|
export type VirtualAgentCreateConfigurationInput = {
|
|
40451
|
+
defaultJiraRequestTypeId?: InputMaybe<Scalars['String']['input']>;
|
|
38851
40452
|
respondToQueries?: InputMaybe<Scalars['Boolean']['input']>;
|
|
38852
40453
|
};
|
|
38853
40454
|
export type VirtualAgentCreateConfigurationPayload = Payload & {
|