@forge/cli-shared 3.4.0 → 3.4.1-next.1
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 +13 -0
- package/out/apps/create-app-graphql-client.js +5 -1
- package/out/config/config-file.d.ts +2 -1
- package/out/config/config-file.d.ts.map +1 -1
- package/out/config/config-file.js +1 -1
- package/out/graphql/app-environment-graphql-client.d.ts +3 -2
- package/out/graphql/app-environment-graphql-client.d.ts.map +1 -1
- package/out/graphql/app-environment-graphql-client.js +3 -2
- package/out/graphql/graphql-types.d.ts +303 -89
- package/out/graphql/graphql-types.d.ts.map +1 -1
- package/out/graphql/graphql-types.js +40 -12
- package/out/graphql/minimal-graphql-runner.d.ts +3 -1
- package/out/graphql/minimal-graphql-runner.d.ts.map +1 -1
- package/out/graphql/minimal-graphql-runner.js +6 -2
- package/out/graphql/mutation-aware-graphql-client.d.ts +8 -1
- package/out/graphql/mutation-aware-graphql-client.d.ts.map +1 -1
- package/out/graphql/mutation-aware-graphql-client.js +8 -1
- package/out/ui/command-line-ui.d.ts +1 -0
- package/out/ui/command-line-ui.d.ts.map +1 -1
- package/out/ui/command-line-ui.js +8 -7
- package/package.json +4 -4
|
@@ -1852,8 +1852,6 @@ export declare type CompassCatalogMutationApi = {
|
|
|
1852
1852
|
createCompassEvent?: Maybe<CompassCreateEventsPayload>;
|
|
1853
1853
|
attachEventSource?: Maybe<AttachEventSourcePayload>;
|
|
1854
1854
|
detachEventSource?: Maybe<DetachEventSourcePayload>;
|
|
1855
|
-
createStarredComponent?: Maybe<CreateCompassStarredComponentPayload>;
|
|
1856
|
-
deleteStarredComponent?: Maybe<DeleteCompassStarredComponentPayload>;
|
|
1857
1855
|
createTeamCheckin?: Maybe<CompassCreateTeamCheckinPayload>;
|
|
1858
1856
|
updateTeamCheckin?: Maybe<CompassUpdateTeamCheckinPayload>;
|
|
1859
1857
|
deleteTeamCheckin?: Maybe<CompassDeleteTeamCheckinPayload>;
|
|
@@ -1987,14 +1985,6 @@ export declare type CompassCatalogMutationApiAttachEventSourceArgs = {
|
|
|
1987
1985
|
export declare type CompassCatalogMutationApiDetachEventSourceArgs = {
|
|
1988
1986
|
input: DetachEventSourceInput;
|
|
1989
1987
|
};
|
|
1990
|
-
export declare type CompassCatalogMutationApiCreateStarredComponentArgs = {
|
|
1991
|
-
cloudId: Scalars['ID'];
|
|
1992
|
-
input: CreateCompassStarredComponentInput;
|
|
1993
|
-
};
|
|
1994
|
-
export declare type CompassCatalogMutationApiDeleteStarredComponentArgs = {
|
|
1995
|
-
cloudId: Scalars['ID'];
|
|
1996
|
-
input: DeleteCompassStarredComponentInput;
|
|
1997
|
-
};
|
|
1998
1988
|
export declare type CompassCatalogMutationApiCreateTeamCheckinArgs = {
|
|
1999
1989
|
input: CompassCreateTeamCheckinInput;
|
|
2000
1990
|
};
|
|
@@ -2054,7 +2044,6 @@ export declare type CompassCatalogQueryApi = {
|
|
|
2054
2044
|
searchComponentLabels?: Maybe<CompassComponentLabelsQueryResult>;
|
|
2055
2045
|
scorecard?: Maybe<CompassScorecardResult>;
|
|
2056
2046
|
scorecards?: Maybe<CompassScorecardsQueryResult>;
|
|
2057
|
-
starredComponents?: Maybe<CompassStarredComponentQueryResult>;
|
|
2058
2047
|
teamCheckins?: Maybe<Array<CompassTeamCheckin>>;
|
|
2059
2048
|
teamData?: Maybe<CompassTeamDataResult>;
|
|
2060
2049
|
searchTeams?: Maybe<CompassSearchTeamsConnectionResult>;
|
|
@@ -2100,10 +2089,6 @@ export declare type CompassCatalogQueryApiScorecardsArgs = {
|
|
|
2100
2089
|
cloudId: Scalars['ID'];
|
|
2101
2090
|
query?: Maybe<CompassScorecardsQuery>;
|
|
2102
2091
|
};
|
|
2103
|
-
export declare type CompassCatalogQueryApiStarredComponentsArgs = {
|
|
2104
|
-
cloudId: Scalars['ID'];
|
|
2105
|
-
query?: Maybe<CompassStarredComponentQuery>;
|
|
2106
|
-
};
|
|
2107
2092
|
export declare type CompassCatalogQueryApiTeamCheckinsArgs = {
|
|
2108
2093
|
input: CompassTeamCheckinsInput;
|
|
2109
2094
|
};
|
|
@@ -3382,22 +3367,6 @@ export declare type CompassSloMetricSourceConfigurationInput = {
|
|
|
3382
3367
|
goodQuery: Scalars['String'];
|
|
3383
3368
|
badQuery: Scalars['String'];
|
|
3384
3369
|
};
|
|
3385
|
-
export declare type CompassStarredComponentConnection = {
|
|
3386
|
-
__typename?: 'CompassStarredComponentConnection';
|
|
3387
|
-
nodes?: Maybe<Array<CompassComponent>>;
|
|
3388
|
-
edges?: Maybe<Array<CompassStarredComponentEdge>>;
|
|
3389
|
-
pageInfo: PageInfo;
|
|
3390
|
-
};
|
|
3391
|
-
export declare type CompassStarredComponentEdge = {
|
|
3392
|
-
__typename?: 'CompassStarredComponentEdge';
|
|
3393
|
-
cursor: Scalars['String'];
|
|
3394
|
-
node?: Maybe<CompassComponent>;
|
|
3395
|
-
};
|
|
3396
|
-
export declare type CompassStarredComponentQuery = {
|
|
3397
|
-
first?: Maybe<Scalars['Int']>;
|
|
3398
|
-
after?: Maybe<Scalars['String']>;
|
|
3399
|
-
};
|
|
3400
|
-
export declare type CompassStarredComponentQueryResult = CompassStarredComponentConnection | QueryError;
|
|
3401
3370
|
export declare type CompassSynchronizeLinkAssociationsInput = {
|
|
3402
3371
|
cloudId: Scalars['ID'];
|
|
3403
3372
|
forgeAppId: Scalars['ID'];
|
|
@@ -5007,15 +4976,6 @@ export declare type CreateCompassScorecardPayload = Payload & {
|
|
|
5007
4976
|
errors?: Maybe<Array<MutationError>>;
|
|
5008
4977
|
scorecardDetails?: Maybe<CompassScorecard>;
|
|
5009
4978
|
};
|
|
5010
|
-
export declare type CreateCompassStarredComponentInput = {
|
|
5011
|
-
id: Scalars['ID'];
|
|
5012
|
-
};
|
|
5013
|
-
export declare type CreateCompassStarredComponentPayload = Payload & {
|
|
5014
|
-
__typename?: 'CreateCompassStarredComponentPayload';
|
|
5015
|
-
components?: Maybe<CompassStarredComponentConnection>;
|
|
5016
|
-
success: Scalars['Boolean'];
|
|
5017
|
-
errors?: Maybe<Array<MutationError>>;
|
|
5018
|
-
};
|
|
5019
4979
|
export declare type CreateCustomFilterInput = {
|
|
5020
4980
|
boardId: Scalars['ID'];
|
|
5021
4981
|
name: Scalars['String'];
|
|
@@ -5488,15 +5448,6 @@ export declare type DeleteCompassScorecardPayload = Payload & {
|
|
|
5488
5448
|
errors?: Maybe<Array<MutationError>>;
|
|
5489
5449
|
scorecardId: Scalars['ID'];
|
|
5490
5450
|
};
|
|
5491
|
-
export declare type DeleteCompassStarredComponentInput = {
|
|
5492
|
-
id: Scalars['ID'];
|
|
5493
|
-
};
|
|
5494
|
-
export declare type DeleteCompassStarredComponentPayload = Payload & {
|
|
5495
|
-
__typename?: 'DeleteCompassStarredComponentPayload';
|
|
5496
|
-
components?: Maybe<CompassStarredComponentConnection>;
|
|
5497
|
-
success: Scalars['Boolean'];
|
|
5498
|
-
errors?: Maybe<Array<MutationError>>;
|
|
5499
|
-
};
|
|
5500
5451
|
export declare type DeleteCustomFilterInput = {
|
|
5501
5452
|
boardId: Scalars['ID'];
|
|
5502
5453
|
customFilterId: Scalars['String'];
|
|
@@ -5716,7 +5667,8 @@ export declare type DevOps = {
|
|
|
5716
5667
|
entitiesByAssociations?: Maybe<DevOpsEntities>;
|
|
5717
5668
|
summarisedDeployments?: Maybe<Array<Maybe<DevOpsSummarisedDeployments>>>;
|
|
5718
5669
|
summarisedEntities?: Maybe<Array<Maybe<DevOpsSummarisedEntities>>>;
|
|
5719
|
-
|
|
5670
|
+
providers?: Maybe<DevOpsProviders>;
|
|
5671
|
+
providersByIds?: Maybe<Array<Maybe<DevOpsDataProvider>>>;
|
|
5720
5672
|
ariGraph?: Maybe<AriGraph>;
|
|
5721
5673
|
toolchain?: Maybe<Toolchain>;
|
|
5722
5674
|
};
|
|
@@ -5729,9 +5681,14 @@ export declare type DevOpsSummarisedDeploymentsArgs = {
|
|
|
5729
5681
|
export declare type DevOpsSummarisedEntitiesArgs = {
|
|
5730
5682
|
ids: Array<Scalars['ID']>;
|
|
5731
5683
|
};
|
|
5732
|
-
export declare type
|
|
5684
|
+
export declare type DevOpsProvidersArgs = {
|
|
5733
5685
|
id: Scalars['ID'];
|
|
5734
|
-
providerTypes?: Maybe<Array<
|
|
5686
|
+
providerTypes?: Maybe<Array<DevOpsProviderType>>;
|
|
5687
|
+
};
|
|
5688
|
+
export declare type DevOpsProvidersByIdsArgs = {
|
|
5689
|
+
id: Scalars['ID'];
|
|
5690
|
+
providerIds?: Maybe<Array<Scalars['String']>>;
|
|
5691
|
+
providerTypes?: Maybe<Array<DevOpsProviderType>>;
|
|
5735
5692
|
};
|
|
5736
5693
|
export declare type DevOpsAvatar = {
|
|
5737
5694
|
__typename?: 'DevOpsAvatar';
|
|
@@ -5743,11 +5700,20 @@ export declare type DevOpsBranchInfo = {
|
|
|
5743
5700
|
name?: Maybe<Scalars['String']>;
|
|
5744
5701
|
url?: Maybe<Scalars['String']>;
|
|
5745
5702
|
};
|
|
5703
|
+
export declare type DevOpsBuildProvider = DevOpsDataProvider & {
|
|
5704
|
+
__typename?: 'DevOpsBuildProvider';
|
|
5705
|
+
id: Scalars['ID'];
|
|
5706
|
+
name?: Maybe<Scalars['String']>;
|
|
5707
|
+
homeUrl?: Maybe<Scalars['URL']>;
|
|
5708
|
+
logoUrl?: Maybe<Scalars['URL']>;
|
|
5709
|
+
documentationUrl?: Maybe<Scalars['URL']>;
|
|
5710
|
+
appInstallationId?: Maybe<Scalars['ID']>;
|
|
5711
|
+
};
|
|
5746
5712
|
export declare type DevOpsContainerRelationshipEntityPropertyInput = {
|
|
5747
5713
|
key: Scalars['String'];
|
|
5748
5714
|
value: Scalars['JSON'];
|
|
5749
5715
|
};
|
|
5750
|
-
export declare type
|
|
5716
|
+
export declare type DevOpsDataProvider = {
|
|
5751
5717
|
id: Scalars['ID'];
|
|
5752
5718
|
name?: Maybe<Scalars['String']>;
|
|
5753
5719
|
homeUrl?: Maybe<Scalars['URL']>;
|
|
@@ -5755,32 +5721,23 @@ export declare type DevOpsDataDepotProvider = {
|
|
|
5755
5721
|
documentationUrl?: Maybe<Scalars['URL']>;
|
|
5756
5722
|
appInstallationId?: Maybe<Scalars['ID']>;
|
|
5757
5723
|
};
|
|
5758
|
-
export declare
|
|
5759
|
-
|
|
5760
|
-
Build = "BUILD",
|
|
5761
|
-
Deployment = "DEPLOYMENT",
|
|
5762
|
-
FeatureFlag = "FEATURE_FLAG",
|
|
5763
|
-
RemoteLinks = "REMOTE_LINKS",
|
|
5764
|
-
Security = "SECURITY"
|
|
5765
|
-
}
|
|
5766
|
-
export declare type DevOpsDataDepotProviders = {
|
|
5767
|
-
__typename?: 'DevOpsDataDepotProviders';
|
|
5768
|
-
securityProviders?: Maybe<Array<DevOpsDataDepotSecurityProvider>>;
|
|
5769
|
-
};
|
|
5770
|
-
export declare type DevOpsDataDepotSecurityProvider = DevOpsDataDepotProvider & {
|
|
5771
|
-
__typename?: 'DevOpsDataDepotSecurityProvider';
|
|
5724
|
+
export declare type DevOpsDeploymentProvider = DevOpsDataProvider & {
|
|
5725
|
+
__typename?: 'DevOpsDeploymentProvider';
|
|
5772
5726
|
id: Scalars['ID'];
|
|
5773
5727
|
name?: Maybe<Scalars['String']>;
|
|
5774
5728
|
homeUrl?: Maybe<Scalars['URL']>;
|
|
5775
5729
|
logoUrl?: Maybe<Scalars['URL']>;
|
|
5776
5730
|
documentationUrl?: Maybe<Scalars['URL']>;
|
|
5777
5731
|
appInstallationId?: Maybe<Scalars['ID']>;
|
|
5778
|
-
linkedSecurityWorkspaces?: Maybe<AriGraphRelationshipConnection>;
|
|
5779
5732
|
};
|
|
5780
|
-
export declare type
|
|
5781
|
-
|
|
5782
|
-
|
|
5783
|
-
|
|
5733
|
+
export declare type DevOpsDevInfoProvider = DevOpsDataProvider & {
|
|
5734
|
+
__typename?: 'DevOpsDevInfoProvider';
|
|
5735
|
+
id: Scalars['ID'];
|
|
5736
|
+
name?: Maybe<Scalars['String']>;
|
|
5737
|
+
homeUrl?: Maybe<Scalars['URL']>;
|
|
5738
|
+
logoUrl?: Maybe<Scalars['URL']>;
|
|
5739
|
+
documentationUrl?: Maybe<Scalars['URL']>;
|
|
5740
|
+
appInstallationId?: Maybe<Scalars['ID']>;
|
|
5784
5741
|
};
|
|
5785
5742
|
export declare type DevOpsEntities = {
|
|
5786
5743
|
__typename?: 'DevOpsEntities';
|
|
@@ -5850,13 +5807,14 @@ export declare type DevOpsFeatureFlagEdge = {
|
|
|
5850
5807
|
cursor?: Maybe<Scalars['String']>;
|
|
5851
5808
|
node?: Maybe<DevOpsFeatureFlag>;
|
|
5852
5809
|
};
|
|
5853
|
-
export declare type DevOpsFeatureFlagProvider = {
|
|
5810
|
+
export declare type DevOpsFeatureFlagProvider = DevOpsDataProvider & {
|
|
5854
5811
|
__typename?: 'DevOpsFeatureFlagProvider';
|
|
5855
5812
|
id: Scalars['ID'];
|
|
5856
5813
|
name?: Maybe<Scalars['String']>;
|
|
5857
5814
|
homeUrl?: Maybe<Scalars['URL']>;
|
|
5858
5815
|
logoUrl?: Maybe<Scalars['URL']>;
|
|
5859
5816
|
documentationUrl?: Maybe<Scalars['URL']>;
|
|
5817
|
+
appInstallationId?: Maybe<Scalars['ID']>;
|
|
5860
5818
|
createFeatureFlagTemplateUrl?: Maybe<Scalars['String']>;
|
|
5861
5819
|
connectFeatureFlagTemplateUrl?: Maybe<Scalars['String']>;
|
|
5862
5820
|
};
|
|
@@ -6065,9 +6023,22 @@ export declare type DevOpsProviderLinks = {
|
|
|
6065
6023
|
home?: Maybe<Scalars['URL']>;
|
|
6066
6024
|
listDeploymentsTemplate?: Maybe<Scalars['URL']>;
|
|
6067
6025
|
};
|
|
6026
|
+
export declare enum DevOpsProviderType {
|
|
6027
|
+
DevInfo = "DEV_INFO",
|
|
6028
|
+
Build = "BUILD",
|
|
6029
|
+
Deployment = "DEPLOYMENT",
|
|
6030
|
+
FeatureFlag = "FEATURE_FLAG",
|
|
6031
|
+
RemoteLinks = "REMOTE_LINKS",
|
|
6032
|
+
Security = "SECURITY"
|
|
6033
|
+
}
|
|
6068
6034
|
export declare type DevOpsProviders = {
|
|
6069
6035
|
__typename?: 'DevOpsProviders';
|
|
6036
|
+
buildProviders?: Maybe<Array<Maybe<DevOpsBuildProvider>>>;
|
|
6037
|
+
deploymentProviders?: Maybe<Array<Maybe<DevOpsDeploymentProvider>>>;
|
|
6038
|
+
devInfoProviders?: Maybe<Array<Maybe<DevOpsDevInfoProvider>>>;
|
|
6070
6039
|
featureFlagProviders?: Maybe<Array<Maybe<DevOpsFeatureFlagProvider>>>;
|
|
6040
|
+
remoteLinksProviders?: Maybe<Array<Maybe<DevOpsRemoteLinksProvider>>>;
|
|
6041
|
+
securityProviders?: Maybe<Array<Maybe<DevOpsSecurityProvider>>>;
|
|
6071
6042
|
};
|
|
6072
6043
|
export declare enum DevOpsPullRequestApprovalStatus {
|
|
6073
6044
|
Approved = "APPROVED",
|
|
@@ -6108,6 +6079,15 @@ export declare enum DevOpsRelationshipCertaintyFilter {
|
|
|
6108
6079
|
Implicit = "IMPLICIT",
|
|
6109
6080
|
All = "ALL"
|
|
6110
6081
|
}
|
|
6082
|
+
export declare type DevOpsRemoteLinksProvider = DevOpsDataProvider & {
|
|
6083
|
+
__typename?: 'DevOpsRemoteLinksProvider';
|
|
6084
|
+
id: Scalars['ID'];
|
|
6085
|
+
name?: Maybe<Scalars['String']>;
|
|
6086
|
+
homeUrl?: Maybe<Scalars['URL']>;
|
|
6087
|
+
logoUrl?: Maybe<Scalars['URL']>;
|
|
6088
|
+
documentationUrl?: Maybe<Scalars['URL']>;
|
|
6089
|
+
appInstallationId?: Maybe<Scalars['ID']>;
|
|
6090
|
+
};
|
|
6111
6091
|
export declare enum DevOpsRepositoryHostingProviderFilter {
|
|
6112
6092
|
BitbucketCloud = "BITBUCKET_CLOUD",
|
|
6113
6093
|
ThirdParty = "THIRD_PARTY",
|
|
@@ -6120,6 +6100,28 @@ export declare type DevOpsReviewer = {
|
|
|
6120
6100
|
userId?: Maybe<Scalars['ID']>;
|
|
6121
6101
|
user?: Maybe<User>;
|
|
6122
6102
|
};
|
|
6103
|
+
export declare type DevOpsSecurityProvider = DevOpsDataProvider & {
|
|
6104
|
+
__typename?: 'DevOpsSecurityProvider';
|
|
6105
|
+
id: Scalars['ID'];
|
|
6106
|
+
name?: Maybe<Scalars['String']>;
|
|
6107
|
+
homeUrl?: Maybe<Scalars['URL']>;
|
|
6108
|
+
logoUrl?: Maybe<Scalars['URL']>;
|
|
6109
|
+
documentationUrl?: Maybe<Scalars['URL']>;
|
|
6110
|
+
appInstallationId?: Maybe<Scalars['ID']>;
|
|
6111
|
+
linkedWorkspaces?: Maybe<AriGraphRelationshipConnection>;
|
|
6112
|
+
linkedContainers?: Maybe<AriGraphRelationshipConnection>;
|
|
6113
|
+
};
|
|
6114
|
+
export declare type DevOpsSecurityProviderLinkedWorkspacesArgs = {
|
|
6115
|
+
first?: Maybe<Scalars['Int']>;
|
|
6116
|
+
after?: Maybe<Scalars['String']>;
|
|
6117
|
+
type?: Maybe<Scalars['String']>;
|
|
6118
|
+
};
|
|
6119
|
+
export declare type DevOpsSecurityProviderLinkedContainersArgs = {
|
|
6120
|
+
first?: Maybe<Scalars['Int']>;
|
|
6121
|
+
after?: Maybe<Scalars['String']>;
|
|
6122
|
+
type?: Maybe<Scalars['String']>;
|
|
6123
|
+
jiraProjectId: Scalars['ID'];
|
|
6124
|
+
};
|
|
6123
6125
|
export declare type DevOpsSecurityVulnerabilityAdditionalInfo = {
|
|
6124
6126
|
__typename?: 'DevOpsSecurityVulnerabilityAdditionalInfo';
|
|
6125
6127
|
content?: Maybe<Scalars['String']>;
|
|
@@ -6135,8 +6137,7 @@ export declare type DevOpsSecurityVulnerabilityDetails = {
|
|
|
6135
6137
|
status?: Maybe<DevOpsSecurityVulnerabilityStatus>;
|
|
6136
6138
|
identifiers: Array<DevOpsSecurityVulnerabilityIdentifier>;
|
|
6137
6139
|
introducedDate?: Maybe<Scalars['DateTime']>;
|
|
6138
|
-
|
|
6139
|
-
securityContainer?: Maybe<ThirdPartyEntity>;
|
|
6140
|
+
securityContainer?: Maybe<ThirdPartySecurityContainer>;
|
|
6140
6141
|
additionalInfo?: Maybe<DevOpsSecurityVulnerabilityAdditionalInfo>;
|
|
6141
6142
|
linkedJiraIssues?: Maybe<AriGraphRelationshipConnection>;
|
|
6142
6143
|
};
|
|
@@ -6147,7 +6148,7 @@ export declare type DevOpsSecurityVulnerabilityDetailsLinkedJiraIssuesArgs = {
|
|
|
6147
6148
|
};
|
|
6148
6149
|
export declare type DevOpsSecurityVulnerabilityIdentifier = {
|
|
6149
6150
|
__typename?: 'DevOpsSecurityVulnerabilityIdentifier';
|
|
6150
|
-
|
|
6151
|
+
displayName: Scalars['String'];
|
|
6151
6152
|
url?: Maybe<Scalars['String']>;
|
|
6152
6153
|
};
|
|
6153
6154
|
export declare enum DevOpsSecurityVulnerabilitySeverity {
|
|
@@ -6447,9 +6448,11 @@ export declare type DevOpsTool = Node & {
|
|
|
6447
6448
|
containerRelationshipType?: Maybe<Scalars['ID']>;
|
|
6448
6449
|
recommended: Scalars['Boolean'];
|
|
6449
6450
|
integration?: Maybe<DevOpsToolIntegration>;
|
|
6451
|
+
installed?: Maybe<Scalars['Boolean']>;
|
|
6450
6452
|
namespaces?: Maybe<DevOpsToolNamespaceConnection>;
|
|
6451
6453
|
auth?: Maybe<DevOpsToolAuth>;
|
|
6452
6454
|
containerRelationships?: Maybe<AriGraphRelationshipConnection>;
|
|
6455
|
+
provider?: Maybe<DevOpsDataProvider>;
|
|
6453
6456
|
jiraProjectRelationships?: Maybe<JiraProjectAndDevOpsToolRelationshipConnection>;
|
|
6454
6457
|
};
|
|
6455
6458
|
export declare type DevOpsToolNamespacesArgs = {
|
|
@@ -6464,6 +6467,10 @@ export declare type DevOpsToolContainerRelationshipsArgs = {
|
|
|
6464
6467
|
after?: Maybe<Scalars['String']>;
|
|
6465
6468
|
sort?: Maybe<AriGraphRelationshipsSort>;
|
|
6466
6469
|
};
|
|
6470
|
+
export declare type DevOpsToolProviderArgs = {
|
|
6471
|
+
id: Scalars['ID'];
|
|
6472
|
+
providerTypes?: Maybe<Array<DevOpsProviderType>>;
|
|
6473
|
+
};
|
|
6467
6474
|
export declare type DevOpsToolJiraProjectRelationshipsArgs = {
|
|
6468
6475
|
jiraProjectId?: Maybe<Scalars['ID']>;
|
|
6469
6476
|
first?: Maybe<Scalars['Int']>;
|
|
@@ -6721,6 +6728,7 @@ export declare type DevOpsTools = {
|
|
|
6721
6728
|
tools?: Maybe<DevOpsToolConnection>;
|
|
6722
6729
|
tool?: Maybe<DevOpsTool>;
|
|
6723
6730
|
integration?: Maybe<DevOpsToolIntegration>;
|
|
6731
|
+
isInstalled?: Maybe<Scalars['Boolean']>;
|
|
6724
6732
|
namespace?: Maybe<DevOpsToolNamespace>;
|
|
6725
6733
|
container?: Maybe<DevOpsToolContainer>;
|
|
6726
6734
|
navbarConnectionState?: Maybe<DevOpsToolNavbarConnectionState>;
|
|
@@ -6745,6 +6753,9 @@ export declare type DevOpsToolsToolArgs = {
|
|
|
6745
6753
|
export declare type DevOpsToolsIntegrationArgs = {
|
|
6746
6754
|
id: Scalars['ID'];
|
|
6747
6755
|
};
|
|
6756
|
+
export declare type DevOpsToolsIsInstalledArgs = {
|
|
6757
|
+
id: Scalars['ID'];
|
|
6758
|
+
};
|
|
6748
6759
|
export declare type DevOpsToolsNamespaceArgs = {
|
|
6749
6760
|
id: Scalars['ID'];
|
|
6750
6761
|
};
|
|
@@ -8481,6 +8492,7 @@ export declare type JiraChildIssuesWithinLimitIssuesArgs = {
|
|
|
8481
8492
|
after?: Maybe<Scalars['String']>;
|
|
8482
8493
|
last?: Maybe<Scalars['Int']>;
|
|
8483
8494
|
before?: Maybe<Scalars['String']>;
|
|
8495
|
+
activeProjectsOnly?: Maybe<Scalars['Boolean']>;
|
|
8484
8496
|
};
|
|
8485
8497
|
export declare type JiraClassicConnectDevOpsProvider = JiraDevOpsProvider & {
|
|
8486
8498
|
__typename?: 'JiraClassicConnectDevOpsProvider';
|
|
@@ -10992,6 +11004,7 @@ export declare type JiraMutation = {
|
|
|
10992
11004
|
updateVersionDescription?: Maybe<JiraUpdateVersionPayload>;
|
|
10993
11005
|
updateVersionStartDate?: Maybe<JiraUpdateVersionPayload>;
|
|
10994
11006
|
updateVersionReleaseDate?: Maybe<JiraUpdateVersionPayload>;
|
|
11007
|
+
saveVersionIssueTableColumnHiddenState?: Maybe<JiraVersionIssueTableColumnHiddenStatePayload>;
|
|
10995
11008
|
replaceIssueSearchViewFieldSets?: Maybe<JiraIssueSearchViewPayload>;
|
|
10996
11009
|
devOps?: Maybe<JiraDevOpsMutation>;
|
|
10997
11010
|
createProjectShortcut?: Maybe<JiraProjectShortcutPayload>;
|
|
@@ -11078,6 +11091,9 @@ export declare type JiraMutationUpdateVersionStartDateArgs = {
|
|
|
11078
11091
|
export declare type JiraMutationUpdateVersionReleaseDateArgs = {
|
|
11079
11092
|
input: JiraUpdateVersionReleaseDateInput;
|
|
11080
11093
|
};
|
|
11094
|
+
export declare type JiraMutationSaveVersionIssueTableColumnHiddenStateArgs = {
|
|
11095
|
+
input: JiraVersionIssueTableColumnHiddenStateInput;
|
|
11096
|
+
};
|
|
11081
11097
|
export declare type JiraMutationReplaceIssueSearchViewFieldSetsArgs = {
|
|
11082
11098
|
id: Scalars['ID'];
|
|
11083
11099
|
input: JiraReplaceIssueSearchViewFieldSetsInput;
|
|
@@ -11619,6 +11635,7 @@ export declare type JiraProject = Node & {
|
|
|
11619
11635
|
action?: Maybe<JiraProjectAction>;
|
|
11620
11636
|
virtualAgentConfiguration?: Maybe<VirtualAgentConfigurationResult>;
|
|
11621
11637
|
isFavourite?: Maybe<Scalars['Boolean']>;
|
|
11638
|
+
lead?: Maybe<User>;
|
|
11622
11639
|
devOpsToolRelationships?: Maybe<JiraProjectAndDevOpsToolRelationshipConnection>;
|
|
11623
11640
|
devOpsEntityRelationships?: Maybe<AriGraphRelationshipConnection>;
|
|
11624
11641
|
linkedSecurityContainers?: Maybe<AriGraphRelationshipConnection>;
|
|
@@ -13807,6 +13824,7 @@ export declare type JiraVersion = Node & {
|
|
|
13807
13824
|
nativeReleaseNotesOptionsIssueFields?: Maybe<JiraIssueFieldConnection>;
|
|
13808
13825
|
releaseNotes?: Maybe<JiraAdf>;
|
|
13809
13826
|
devOpsSummarisedEntities?: Maybe<DevOpsSummarisedEntities>;
|
|
13827
|
+
versionIssueTableHiddenColumns?: Maybe<Array<Maybe<JiraVersionIssueTableColumn>>>;
|
|
13810
13828
|
canViewVersionDetailsPage?: Maybe<Scalars['Boolean']>;
|
|
13811
13829
|
releaseNotesConfiguration?: Maybe<JiraReleaseNotesConfiguration>;
|
|
13812
13830
|
availableSites?: Maybe<JiraReleaseNotesInConfluenceAvailableSitesConnection>;
|
|
@@ -13905,6 +13923,25 @@ export declare type JiraVersionEdge = {
|
|
|
13905
13923
|
node?: Maybe<JiraVersion>;
|
|
13906
13924
|
cursor: Scalars['String'];
|
|
13907
13925
|
};
|
|
13926
|
+
export declare enum JiraVersionIssueTableColumn {
|
|
13927
|
+
IssueAssignee = "ISSUE_ASSIGNEE",
|
|
13928
|
+
IssueStatus = "ISSUE_STATUS",
|
|
13929
|
+
DevelopmentStatus = "DEVELOPMENT_STATUS",
|
|
13930
|
+
BuildStatus = "BUILD_STATUS",
|
|
13931
|
+
DeploymentStatus = "DEPLOYMENT_STATUS",
|
|
13932
|
+
FeatureFlagStatus = "FEATURE_FLAG_STATUS",
|
|
13933
|
+
MoreAction = "MORE_ACTION"
|
|
13934
|
+
}
|
|
13935
|
+
export declare type JiraVersionIssueTableColumnHiddenStateInput = {
|
|
13936
|
+
hiddenColumns: Array<JiraVersionIssueTableColumn>;
|
|
13937
|
+
versionId: Scalars['ID'];
|
|
13938
|
+
};
|
|
13939
|
+
export declare type JiraVersionIssueTableColumnHiddenStatePayload = Payload & {
|
|
13940
|
+
__typename?: 'JiraVersionIssueTableColumnHiddenStatePayload';
|
|
13941
|
+
success: Scalars['Boolean'];
|
|
13942
|
+
errors?: Maybe<Array<MutationError>>;
|
|
13943
|
+
version?: Maybe<JiraVersion>;
|
|
13944
|
+
};
|
|
13908
13945
|
export declare enum JiraVersionIssuesFilter {
|
|
13909
13946
|
All = "ALL",
|
|
13910
13947
|
Todo = "TODO",
|
|
@@ -14109,6 +14146,7 @@ export declare type JiraWorkManagementNavigation = {
|
|
|
14109
14146
|
__typename?: 'JiraWorkManagementNavigation';
|
|
14110
14147
|
recentProjects?: Maybe<JiraProjectConnection>;
|
|
14111
14148
|
favoriteProjects?: Maybe<JiraProjectConnection>;
|
|
14149
|
+
overviews?: Maybe<JiraWorkManagementOverviewConnection>;
|
|
14112
14150
|
};
|
|
14113
14151
|
export declare type JiraWorkManagementNavigationRecentProjectsArgs = {
|
|
14114
14152
|
first?: Maybe<Scalars['Int']>;
|
|
@@ -14122,6 +14160,13 @@ export declare type JiraWorkManagementNavigationFavoriteProjectsArgs = {
|
|
|
14122
14160
|
last?: Maybe<Scalars['Int']>;
|
|
14123
14161
|
before?: Maybe<Scalars['String']>;
|
|
14124
14162
|
};
|
|
14163
|
+
export declare type JiraWorkManagementNavigationOverviewsArgs = {
|
|
14164
|
+
cloudId: Scalars['ID'];
|
|
14165
|
+
first?: Maybe<Scalars['Int']>;
|
|
14166
|
+
after?: Maybe<Scalars['String']>;
|
|
14167
|
+
last?: Maybe<Scalars['Int']>;
|
|
14168
|
+
before?: Maybe<Scalars['String']>;
|
|
14169
|
+
};
|
|
14125
14170
|
export declare type JiraWorkManagementOverview = Node & {
|
|
14126
14171
|
__typename?: 'JiraWorkManagementOverview';
|
|
14127
14172
|
id: Scalars['ID'];
|
|
@@ -14697,12 +14742,21 @@ export declare type MercuryDeleteOrgLevelInput = {
|
|
|
14697
14742
|
export declare type MercuryDeleteStrategyInput = {
|
|
14698
14743
|
strategyId: Scalars['ID'];
|
|
14699
14744
|
};
|
|
14745
|
+
export declare type MercuryDeleteTeamAllocationEntriesInput = {
|
|
14746
|
+
id: Scalars['ID'];
|
|
14747
|
+
teamAllocationEntries: Array<MercuryTeamAllocationDeleteEntryInput>;
|
|
14748
|
+
};
|
|
14700
14749
|
export declare type MercuryDeleteTeamAllocationInput = {
|
|
14701
14750
|
id: Scalars['ID'];
|
|
14702
14751
|
};
|
|
14703
14752
|
export declare type MercuryDeleteTeamInput = {
|
|
14704
14753
|
teamId: Scalars['ID'];
|
|
14705
14754
|
};
|
|
14755
|
+
export declare type MercuryDepartment = {
|
|
14756
|
+
__typename?: 'MercuryDepartment';
|
|
14757
|
+
id: Scalars['ID'];
|
|
14758
|
+
name?: Maybe<Scalars['String']>;
|
|
14759
|
+
};
|
|
14706
14760
|
export declare type MercuryInitiative = {
|
|
14707
14761
|
__typename?: 'MercuryInitiative';
|
|
14708
14762
|
name?: Maybe<Scalars['String']>;
|
|
@@ -14820,6 +14874,7 @@ export declare type MercuryMutationApi = {
|
|
|
14820
14874
|
updateOrgLevelOnTeam?: Maybe<MercuryTeamMutationPayload>;
|
|
14821
14875
|
createTeamAllocation?: Maybe<MercuryTeamAllocationMutationPayload>;
|
|
14822
14876
|
deleteTeamAllocation?: Maybe<MercuryTeamAllocationDeletePayload>;
|
|
14877
|
+
deleteTeamAllocationEntries?: Maybe<MercuryTeamAllocationMutationPayload>;
|
|
14823
14878
|
allocateTeamCapacity?: Maybe<MercuryTeamAllocationMutationPayload>;
|
|
14824
14879
|
transitionTeamAllocationStatus?: Maybe<MercuryTeamAllocationStatusTransitionMutationPayload>;
|
|
14825
14880
|
createInterval?: Maybe<MercuryIntervalMutationPayload>;
|
|
@@ -14871,6 +14926,9 @@ export declare type MercuryMutationApiCreateTeamAllocationArgs = {
|
|
|
14871
14926
|
export declare type MercuryMutationApiDeleteTeamAllocationArgs = {
|
|
14872
14927
|
input: MercuryDeleteTeamAllocationInput;
|
|
14873
14928
|
};
|
|
14929
|
+
export declare type MercuryMutationApiDeleteTeamAllocationEntriesArgs = {
|
|
14930
|
+
input: MercuryDeleteTeamAllocationEntriesInput;
|
|
14931
|
+
};
|
|
14874
14932
|
export declare type MercuryMutationApiAllocateTeamCapacityArgs = {
|
|
14875
14933
|
input: MercuryAllocateTeamCapacityInput;
|
|
14876
14934
|
};
|
|
@@ -14929,6 +14987,11 @@ export declare type MercuryOrgLevelMutationPayload = Payload & {
|
|
|
14929
14987
|
statusCode: Scalars['Int'];
|
|
14930
14988
|
message: Scalars['String'];
|
|
14931
14989
|
};
|
|
14990
|
+
export declare type MercuryPillar = {
|
|
14991
|
+
__typename?: 'MercuryPillar';
|
|
14992
|
+
id: Scalars['ID'];
|
|
14993
|
+
name?: Maybe<Scalars['String']>;
|
|
14994
|
+
};
|
|
14932
14995
|
export declare type MercuryQueryApi = {
|
|
14933
14996
|
__typename?: 'MercuryQueryApi';
|
|
14934
14997
|
strategies?: Maybe<MercuryStrategyConnection>;
|
|
@@ -14942,10 +15005,12 @@ export declare type MercuryQueryApi = {
|
|
|
14942
15005
|
initiative?: Maybe<MercuryInitiative>;
|
|
14943
15006
|
initiatives?: Maybe<MercuryInitiativeConnection>;
|
|
14944
15007
|
teamAllocation?: Maybe<MercuryTeamAllocation>;
|
|
15008
|
+
teamAllocationForActiveInterval?: Maybe<MercuryTeamAllocation>;
|
|
14945
15009
|
teamAllocationsByOrgLevel?: Maybe<MercuryTeamAllocationConnection>;
|
|
14946
15010
|
teamAllocationsByOrgLevelForActiveInterval?: Maybe<MercuryTeamAllocationConnection>;
|
|
14947
15011
|
intervals?: Maybe<MercuryIntervalConnection>;
|
|
14948
15012
|
interval?: Maybe<MercuryInterval>;
|
|
15013
|
+
activeInterval?: Maybe<MercuryInterval>;
|
|
14949
15014
|
orgLevel?: Maybe<MercuryOrgLevel>;
|
|
14950
15015
|
orgLevels?: Maybe<MercuryOrgLevelConnection>;
|
|
14951
15016
|
};
|
|
@@ -14984,7 +15049,10 @@ export declare type MercuryQueryApiInitiativesArgs = {
|
|
|
14984
15049
|
};
|
|
14985
15050
|
export declare type MercuryQueryApiTeamAllocationArgs = {
|
|
14986
15051
|
teamId: Scalars['ID'];
|
|
14987
|
-
intervalId
|
|
15052
|
+
intervalId: Scalars['ID'];
|
|
15053
|
+
};
|
|
15054
|
+
export declare type MercuryQueryApiTeamAllocationForActiveIntervalArgs = {
|
|
15055
|
+
teamId: Scalars['ID'];
|
|
14988
15056
|
};
|
|
14989
15057
|
export declare type MercuryQueryApiTeamAllocationsByOrgLevelArgs = {
|
|
14990
15058
|
orgLevelId: Scalars['ID'];
|
|
@@ -15008,6 +15076,7 @@ export declare type MercuryQueryApiOrgLevelArgs = {
|
|
|
15008
15076
|
id: Scalars['ID'];
|
|
15009
15077
|
};
|
|
15010
15078
|
export declare type MercuryQueryApiOrgLevelsArgs = {
|
|
15079
|
+
levelType?: Maybe<MercuryLevelType>;
|
|
15011
15080
|
first?: Maybe<Scalars['Int']>;
|
|
15012
15081
|
after?: Maybe<Scalars['String']>;
|
|
15013
15082
|
};
|
|
@@ -15058,15 +15127,18 @@ export declare type MercuryTeam = Node & {
|
|
|
15058
15127
|
name: Scalars['String'];
|
|
15059
15128
|
active?: Maybe<Scalars['Boolean']>;
|
|
15060
15129
|
orgLevelId?: Maybe<Scalars['ID']>;
|
|
15130
|
+
allocationStatusForActiveInterval?: Maybe<MercuryTeamAllocationStatus>;
|
|
15131
|
+
pillar?: Maybe<MercuryPillar>;
|
|
15132
|
+
department?: Maybe<MercuryDepartment>;
|
|
15061
15133
|
};
|
|
15062
15134
|
export declare type MercuryTeamAllocation = {
|
|
15063
15135
|
__typename?: 'MercuryTeamAllocation';
|
|
15064
15136
|
id: Scalars['ID'];
|
|
15065
|
-
intervalId
|
|
15137
|
+
intervalId: Scalars['ID'];
|
|
15066
15138
|
teamId: Scalars['ID'];
|
|
15067
15139
|
teamAllocationEntries: Array<MercuryTeamAllocationEntry>;
|
|
15068
15140
|
status: MercuryTeamAllocationStatus;
|
|
15069
|
-
|
|
15141
|
+
transitions: Array<MercuryTeamAllocationTransition>;
|
|
15070
15142
|
};
|
|
15071
15143
|
export declare type MercuryTeamAllocationConnection = {
|
|
15072
15144
|
__typename?: 'MercuryTeamAllocationConnection';
|
|
@@ -15074,6 +15146,10 @@ export declare type MercuryTeamAllocationConnection = {
|
|
|
15074
15146
|
nodes?: Maybe<Array<Maybe<MercuryTeamAllocation>>>;
|
|
15075
15147
|
pageInfo: PageInfo;
|
|
15076
15148
|
};
|
|
15149
|
+
export declare type MercuryTeamAllocationDeleteEntryInput = {
|
|
15150
|
+
initiativeId: Scalars['String'];
|
|
15151
|
+
craftTypeId: Scalars['ID'];
|
|
15152
|
+
};
|
|
15077
15153
|
export declare type MercuryTeamAllocationDeletePayload = Payload & {
|
|
15078
15154
|
__typename?: 'MercuryTeamAllocationDeletePayload';
|
|
15079
15155
|
deletedTeamAllocationId?: Maybe<Scalars['ID']>;
|
|
@@ -15119,6 +15195,10 @@ export declare type MercuryTeamAllocationStatusTransitionMutationPayload = Paylo
|
|
|
15119
15195
|
statusCode: Scalars['Int'];
|
|
15120
15196
|
message: Scalars['String'];
|
|
15121
15197
|
};
|
|
15198
|
+
export declare type MercuryTeamAllocationTransition = {
|
|
15199
|
+
__typename?: 'MercuryTeamAllocationTransition';
|
|
15200
|
+
to: MercuryTeamAllocationStatus;
|
|
15201
|
+
};
|
|
15122
15202
|
export declare type MercuryTeamConnection = {
|
|
15123
15203
|
__typename?: 'MercuryTeamConnection';
|
|
15124
15204
|
edges?: Maybe<Array<Maybe<MercuryTeamEdge>>>;
|
|
@@ -15432,6 +15512,7 @@ export declare type MutationUpdateReleaseNoteArgs = {
|
|
|
15432
15512
|
relatedContexts?: Maybe<Array<Scalars['String']>>;
|
|
15433
15513
|
relatedContextIds?: Maybe<Array<Scalars['String']>>;
|
|
15434
15514
|
featureRolloutEndDate?: Maybe<Scalars['DateTime']>;
|
|
15515
|
+
description?: Maybe<Scalars['JSON']>;
|
|
15435
15516
|
};
|
|
15436
15517
|
export declare type MutationCreateDevOpsServiceAndOpsgenieTeamRelationshipArgs = {
|
|
15437
15518
|
input: CreateDevOpsServiceAndOpsgenieTeamRelationshipInput;
|
|
@@ -16838,6 +16919,7 @@ export declare type PolarisMatrixAxis = {
|
|
|
16838
16919
|
dimension: Scalars['String'];
|
|
16839
16920
|
field: PolarisIdeaField;
|
|
16840
16921
|
fieldOptions?: Maybe<Array<PolarisGroupValue>>;
|
|
16922
|
+
reversed?: Maybe<Scalars['Boolean']>;
|
|
16841
16923
|
};
|
|
16842
16924
|
export declare type PolarisMatrixConfig = {
|
|
16843
16925
|
__typename?: 'PolarisMatrixConfig';
|
|
@@ -17129,6 +17211,7 @@ export declare type PolarisView = {
|
|
|
17129
17211
|
projectId: Scalars['Int'];
|
|
17130
17212
|
viewSetId: Scalars['ID'];
|
|
17131
17213
|
tableColumnSizes?: Maybe<Array<PolarisViewTableColumnSize>>;
|
|
17214
|
+
fieldRollups?: Maybe<Array<PolarisViewFieldRollup>>;
|
|
17132
17215
|
fields: Array<PolarisIdeaField>;
|
|
17133
17216
|
jql?: Maybe<Scalars['String']>;
|
|
17134
17217
|
immutable?: Maybe<Scalars['Boolean']>;
|
|
@@ -17152,6 +17235,7 @@ export declare type PolarisView = {
|
|
|
17152
17235
|
sortMode: PolarisViewSortMode;
|
|
17153
17236
|
hideEmptyGroups?: Maybe<Scalars['Boolean']>;
|
|
17154
17237
|
enabledAutoSave?: Maybe<Scalars['Boolean']>;
|
|
17238
|
+
layoutType?: Maybe<PolarisViewLayoutType>;
|
|
17155
17239
|
};
|
|
17156
17240
|
export declare type PolarisViewJqlArgs = {
|
|
17157
17241
|
filter?: Maybe<PolarisFilterInput>;
|
|
@@ -17159,6 +17243,26 @@ export declare type PolarisViewJqlArgs = {
|
|
|
17159
17243
|
export declare type PolarisViewCommentsArgs = {
|
|
17160
17244
|
limit?: Maybe<Scalars['Int']>;
|
|
17161
17245
|
};
|
|
17246
|
+
export declare type PolarisViewFieldRollup = {
|
|
17247
|
+
__typename?: 'PolarisViewFieldRollup';
|
|
17248
|
+
field: PolarisIdeaField;
|
|
17249
|
+
rollup: PolarisViewFieldRollupType;
|
|
17250
|
+
};
|
|
17251
|
+
export declare type PolarisViewFieldRollupInput = {
|
|
17252
|
+
field: Scalars['ID'];
|
|
17253
|
+
rollup: PolarisViewFieldRollupType;
|
|
17254
|
+
};
|
|
17255
|
+
export declare enum PolarisViewFieldRollupType {
|
|
17256
|
+
Avg = "AVG",
|
|
17257
|
+
Count = "COUNT",
|
|
17258
|
+
Empty = "EMPTY",
|
|
17259
|
+
Filled = "FILLED",
|
|
17260
|
+
Max = "MAX",
|
|
17261
|
+
Median = "MEDIAN",
|
|
17262
|
+
Min = "MIN",
|
|
17263
|
+
Range = "RANGE",
|
|
17264
|
+
Sum = "SUM"
|
|
17265
|
+
}
|
|
17162
17266
|
export declare type PolarisViewFilter = {
|
|
17163
17267
|
__typename?: 'PolarisViewFilter';
|
|
17164
17268
|
kind: PolarisViewFilterKind;
|
|
@@ -17205,6 +17309,10 @@ export declare type PolarisViewLastViewed = {
|
|
|
17205
17309
|
aaid: Scalars['String'];
|
|
17206
17310
|
account?: Maybe<User>;
|
|
17207
17311
|
};
|
|
17312
|
+
export declare enum PolarisViewLayoutType {
|
|
17313
|
+
Detailed = "DETAILED",
|
|
17314
|
+
Compact = "COMPACT"
|
|
17315
|
+
}
|
|
17208
17316
|
export declare type PolarisViewSet = {
|
|
17209
17317
|
__typename?: 'PolarisViewSet';
|
|
17210
17318
|
id: Scalars['ID'];
|
|
@@ -18014,6 +18122,7 @@ export declare type RoadmapItem = {
|
|
|
18014
18122
|
componentIds?: Maybe<Array<Scalars['ID']>>;
|
|
18015
18123
|
inferredDueDate?: Maybe<Scalars['Date']>;
|
|
18016
18124
|
inferredStartDate?: Maybe<Scalars['Date']>;
|
|
18125
|
+
resolved?: Maybe<Scalars['Boolean']>;
|
|
18017
18126
|
};
|
|
18018
18127
|
export declare type RoadmapItemConnection = {
|
|
18019
18128
|
__typename?: 'RoadmapItemConnection';
|
|
@@ -19066,6 +19175,18 @@ export declare type ShepherdAlertEdge = {
|
|
|
19066
19175
|
cursor?: Maybe<Scalars['String']>;
|
|
19067
19176
|
node?: Maybe<ShepherdAlert>;
|
|
19068
19177
|
};
|
|
19178
|
+
export declare type ShepherdAlertQueries = {
|
|
19179
|
+
__typename?: 'ShepherdAlertQueries';
|
|
19180
|
+
byAri?: Maybe<ShepherdAlertResult>;
|
|
19181
|
+
byWorkspace?: Maybe<ShepherdAlertsResult>;
|
|
19182
|
+
};
|
|
19183
|
+
export declare type ShepherdAlertQueriesByAriArgs = {
|
|
19184
|
+
id: Scalars['ID'];
|
|
19185
|
+
};
|
|
19186
|
+
export declare type ShepherdAlertQueriesByWorkspaceArgs = {
|
|
19187
|
+
aaid?: Maybe<Scalars['ID']>;
|
|
19188
|
+
workspaceId: Scalars['ID'];
|
|
19189
|
+
};
|
|
19069
19190
|
export declare type ShepherdAlertResult = QueryError | ShepherdAlert;
|
|
19070
19191
|
export declare enum ShepherdAlertSeverity {
|
|
19071
19192
|
Critical = "CRITICAL",
|
|
@@ -19104,6 +19225,7 @@ export declare enum ShepherdAlertTemplateType {
|
|
|
19104
19225
|
InitiatedGsyncConnection = "INITIATED_GSYNC_CONNECTION",
|
|
19105
19226
|
JiraIssueCrawling = "JIRA_ISSUE_CRAWLING",
|
|
19106
19227
|
OrgLoggedInAsUser = "ORG_LOGGED_IN_AS_USER",
|
|
19228
|
+
PasswordResetCompletedUser = "PASSWORD_RESET_COMPLETED_USER",
|
|
19107
19229
|
RotateScimDirectoryToken = "ROTATE_SCIM_DIRECTORY_TOKEN",
|
|
19108
19230
|
TokenCreated = "TOKEN_CREATED",
|
|
19109
19231
|
UpdatedAuthPolicy = "UPDATED_AUTH_POLICY",
|
|
@@ -19210,7 +19332,6 @@ export declare type ShepherdEmailEdge = ShepherdSubscriptionEdge & {
|
|
|
19210
19332
|
};
|
|
19211
19333
|
export declare type ShepherdEmailSubscription = Node & ShepherdSubscription & {
|
|
19212
19334
|
__typename?: 'ShepherdEmailSubscription';
|
|
19213
|
-
ari: Scalars['ID'];
|
|
19214
19335
|
createdBy: Scalars['String'];
|
|
19215
19336
|
createdOn: Scalars['DateTime'];
|
|
19216
19337
|
email: Scalars['String'];
|
|
@@ -19250,6 +19371,7 @@ export declare type ShepherdMutation = {
|
|
|
19250
19371
|
updateAlert?: Maybe<ShepherdUpdateAlertPayload>;
|
|
19251
19372
|
updateOrganization?: Maybe<ShepherdUpdateOrganizationPayload>;
|
|
19252
19373
|
updateSubscription?: Maybe<ShepherdUpdateSubscriptionPayload>;
|
|
19374
|
+
workspace?: Maybe<ShepherdWorkspaceMutations>;
|
|
19253
19375
|
};
|
|
19254
19376
|
export declare type ShepherdMutationCreateAlertArgs = {
|
|
19255
19377
|
input: ShepherdCreateAlertInput;
|
|
@@ -19295,6 +19417,7 @@ export declare type ShepherdOrganization = {
|
|
|
19295
19417
|
export declare type ShepherdOrganizationResult = QueryError | ShepherdOrganization;
|
|
19296
19418
|
export declare type ShepherdQuery = {
|
|
19297
19419
|
__typename?: 'ShepherdQuery';
|
|
19420
|
+
alert?: Maybe<ShepherdAlertQueries>;
|
|
19298
19421
|
shepherdActivity?: Maybe<ShepherdActivityResult>;
|
|
19299
19422
|
shepherdAlert?: Maybe<ShepherdAlertResult>;
|
|
19300
19423
|
shepherdAlerts?: Maybe<ShepherdAlertsResult>;
|
|
@@ -19304,6 +19427,7 @@ export declare type ShepherdQuery = {
|
|
|
19304
19427
|
shepherdSubscriptions?: Maybe<ShepherdSubscriptionsResult>;
|
|
19305
19428
|
shepherdUser?: Maybe<ShepherdUser>;
|
|
19306
19429
|
subscriptions?: Maybe<ShepherdSubscriptionsResult>;
|
|
19430
|
+
workspace?: Maybe<ShepherdWorkspaceResult>;
|
|
19307
19431
|
};
|
|
19308
19432
|
export declare type ShepherdQueryShepherdActivityArgs = {
|
|
19309
19433
|
actions?: Maybe<Array<Maybe<ShepherdActionType>>>;
|
|
@@ -19331,7 +19455,13 @@ export declare type ShepherdQueryShepherdUserArgs = {
|
|
|
19331
19455
|
id?: Maybe<Scalars['ID']>;
|
|
19332
19456
|
};
|
|
19333
19457
|
export declare type ShepherdQuerySubscriptionsArgs = {
|
|
19334
|
-
|
|
19458
|
+
workspaceId: Scalars['ID'];
|
|
19459
|
+
};
|
|
19460
|
+
export declare type ShepherdQueryWorkspaceArgs = {
|
|
19461
|
+
cloudId?: Maybe<Scalars['ID']>;
|
|
19462
|
+
hostname?: Maybe<Scalars['String']>;
|
|
19463
|
+
id?: Maybe<Scalars['ID']>;
|
|
19464
|
+
orgId?: Maybe<Scalars['ID']>;
|
|
19335
19465
|
};
|
|
19336
19466
|
export declare enum ShepherdQueryErrorType {
|
|
19337
19467
|
NoProductAccess = "NO_PRODUCT_ACCESS",
|
|
@@ -19353,7 +19483,6 @@ export declare type ShepherdSlackEdge = ShepherdSubscriptionEdge & {
|
|
|
19353
19483
|
};
|
|
19354
19484
|
export declare type ShepherdSlackSubscription = Node & ShepherdSubscription & {
|
|
19355
19485
|
__typename?: 'ShepherdSlackSubscription';
|
|
19356
|
-
ari: Scalars['ID'];
|
|
19357
19486
|
callbackURL: Scalars['String'];
|
|
19358
19487
|
channelId: Scalars['String'];
|
|
19359
19488
|
createdBy: Scalars['String'];
|
|
@@ -19376,7 +19505,6 @@ export declare type ShepherdSubjectInput = {
|
|
|
19376
19505
|
containerAri: Scalars['String'];
|
|
19377
19506
|
};
|
|
19378
19507
|
export declare type ShepherdSubscription = {
|
|
19379
|
-
ari: Scalars['ID'];
|
|
19380
19508
|
createdBy: Scalars['String'];
|
|
19381
19509
|
createdOn: Scalars['DateTime'];
|
|
19382
19510
|
id: Scalars['ID'];
|
|
@@ -19414,18 +19542,18 @@ export declare type ShepherdSubscriptionMutations = {
|
|
|
19414
19542
|
};
|
|
19415
19543
|
export declare type ShepherdSubscriptionMutationsCreateArgs = {
|
|
19416
19544
|
input: ShepherdSubscriptionCreateInput;
|
|
19417
|
-
|
|
19545
|
+
workspaceId: Scalars['ID'];
|
|
19418
19546
|
};
|
|
19419
19547
|
export declare type ShepherdSubscriptionMutationsDeleteArgs = {
|
|
19548
|
+
id: Scalars['ID'];
|
|
19420
19549
|
input?: Maybe<ShepherdSubscriptionDeleteInput>;
|
|
19421
|
-
subscriptionAri: Scalars['ID'];
|
|
19422
19550
|
};
|
|
19423
19551
|
export declare type ShepherdSubscriptionMutationsTestArgs = {
|
|
19424
|
-
|
|
19552
|
+
id: Scalars['ID'];
|
|
19425
19553
|
};
|
|
19426
19554
|
export declare type ShepherdSubscriptionMutationsUpdateArgs = {
|
|
19555
|
+
id: Scalars['ID'];
|
|
19427
19556
|
input: ShepherdSubscriptionUpdateInput;
|
|
19428
|
-
subscriptionAri: Scalars['ID'];
|
|
19429
19557
|
};
|
|
19430
19558
|
export declare enum ShepherdSubscriptionStatus {
|
|
19431
19559
|
Active = "ACTIVE",
|
|
@@ -19520,7 +19648,6 @@ export declare type ShepherdWebhookEdge = ShepherdSubscriptionEdge & {
|
|
|
19520
19648
|
};
|
|
19521
19649
|
export declare type ShepherdWebhookSubscription = Node & ShepherdSubscription & {
|
|
19522
19650
|
__typename?: 'ShepherdWebhookSubscription';
|
|
19523
|
-
ari: Scalars['ID'];
|
|
19524
19651
|
authToken: Scalars['String'];
|
|
19525
19652
|
callbackURL: Scalars['String'];
|
|
19526
19653
|
createdBy: Scalars['String'];
|
|
@@ -19537,6 +19664,39 @@ export declare enum ShepherdWebhookType {
|
|
|
19537
19664
|
MicrosoftTeams = "MICROSOFT_TEAMS",
|
|
19538
19665
|
Slack = "SLACK"
|
|
19539
19666
|
}
|
|
19667
|
+
export declare type ShepherdWorkspace = {
|
|
19668
|
+
__typename?: 'ShepherdWorkspace';
|
|
19669
|
+
cloudId: Scalars['ID'];
|
|
19670
|
+
id: Scalars['ID'];
|
|
19671
|
+
orgId: Scalars['ID'];
|
|
19672
|
+
shouldOnboard?: Maybe<Scalars['Boolean']>;
|
|
19673
|
+
};
|
|
19674
|
+
export declare type ShepherdWorkspaceConnection = {
|
|
19675
|
+
__typename?: 'ShepherdWorkspaceConnection';
|
|
19676
|
+
edges?: Maybe<Array<Maybe<ShepherdWorkspaceEdge>>>;
|
|
19677
|
+
};
|
|
19678
|
+
export declare type ShepherdWorkspaceEdge = {
|
|
19679
|
+
__typename?: 'ShepherdWorkspaceEdge';
|
|
19680
|
+
node?: Maybe<ShepherdWorkspace>;
|
|
19681
|
+
};
|
|
19682
|
+
export declare type ShepherdWorkspaceMutationPayload = Payload & {
|
|
19683
|
+
__typename?: 'ShepherdWorkspaceMutationPayload';
|
|
19684
|
+
errors?: Maybe<Array<MutationError>>;
|
|
19685
|
+
node?: Maybe<ShepherdWorkspace>;
|
|
19686
|
+
success: Scalars['Boolean'];
|
|
19687
|
+
};
|
|
19688
|
+
export declare type ShepherdWorkspaceMutations = {
|
|
19689
|
+
__typename?: 'ShepherdWorkspaceMutations';
|
|
19690
|
+
update?: Maybe<ShepherdWorkspaceMutationPayload>;
|
|
19691
|
+
};
|
|
19692
|
+
export declare type ShepherdWorkspaceMutationsUpdateArgs = {
|
|
19693
|
+
id: Scalars['ID'];
|
|
19694
|
+
input: ShepherdWorkspaceUpdateInput;
|
|
19695
|
+
};
|
|
19696
|
+
export declare type ShepherdWorkspaceResult = QueryError | ShepherdWorkspaceConnection;
|
|
19697
|
+
export declare type ShepherdWorkspaceUpdateInput = {
|
|
19698
|
+
shouldOnboard: Scalars['Boolean'];
|
|
19699
|
+
};
|
|
19540
19700
|
export declare type SmartsContext = {
|
|
19541
19701
|
userId: Scalars['String'];
|
|
19542
19702
|
tenantId: Scalars['String'];
|
|
@@ -19639,6 +19799,7 @@ export declare type SoftwareCard = {
|
|
|
19639
19799
|
priority?: Maybe<CardPriority>;
|
|
19640
19800
|
dueDate?: Maybe<Scalars['String']>;
|
|
19641
19801
|
fixVersionsIds: Array<Scalars['ID']>;
|
|
19802
|
+
canSplitIssue: Scalars['Boolean'];
|
|
19642
19803
|
};
|
|
19643
19804
|
export declare type SoftwareCardChildrenInfo = {
|
|
19644
19805
|
__typename?: 'SoftwareCardChildrenInfo';
|
|
@@ -20369,7 +20530,6 @@ export declare type TestingPerformance = {
|
|
|
20369
20530
|
__typename?: 'TestingPerformance';
|
|
20370
20531
|
myActivities: TestingMyActivity;
|
|
20371
20532
|
};
|
|
20372
|
-
export declare type ThirdPartyEntity = ThirdPartySecurityWorkspace | ThirdPartySecurityContainer;
|
|
20373
20533
|
export declare type ThirdPartyRepositoryInput = {
|
|
20374
20534
|
id: Scalars['ID'];
|
|
20375
20535
|
webUrl?: Maybe<Scalars['String']>;
|
|
@@ -20729,6 +20889,7 @@ export declare type TrelloBoard = {
|
|
|
20729
20889
|
id: Scalars['ID'];
|
|
20730
20890
|
lastActivityAt?: Maybe<Scalars['DateTime']>;
|
|
20731
20891
|
name: Scalars['String'];
|
|
20892
|
+
objectId: Scalars['String'];
|
|
20732
20893
|
prefs: TrelloBoardPrefs;
|
|
20733
20894
|
shortLink: Scalars['TrelloShortLink'];
|
|
20734
20895
|
viewer?: Maybe<TrelloBoardViewer>;
|
|
@@ -21204,6 +21365,7 @@ export declare type UpdatePolarisMatrixAxis = {
|
|
|
21204
21365
|
dimension: Scalars['String'];
|
|
21205
21366
|
field: Scalars['ID'];
|
|
21206
21367
|
fieldOptions?: Maybe<Array<PolarisGroupValueInput>>;
|
|
21368
|
+
reversed?: Maybe<Scalars['Boolean']>;
|
|
21207
21369
|
};
|
|
21208
21370
|
export declare type UpdatePolarisMatrixConfig = {
|
|
21209
21371
|
axes?: Maybe<Array<UpdatePolarisMatrixAxis>>;
|
|
@@ -21269,6 +21431,7 @@ export declare type UpdatePolarisViewInput = {
|
|
|
21269
21431
|
jql?: Maybe<Scalars['String']>;
|
|
21270
21432
|
userJql?: Maybe<Scalars['String']>;
|
|
21271
21433
|
tableColumnSizes?: Maybe<Array<PolarisViewTableColumnSizeInput>>;
|
|
21434
|
+
fieldRollups?: Maybe<Array<PolarisViewFieldRollupInput>>;
|
|
21272
21435
|
fields?: Maybe<Array<Scalars['ID']>>;
|
|
21273
21436
|
groupBy?: Maybe<Scalars['ID']>;
|
|
21274
21437
|
groupValues?: Maybe<Array<PolarisGroupValueInput>>;
|
|
@@ -21284,6 +21447,7 @@ export declare type UpdatePolarisViewInput = {
|
|
|
21284
21447
|
sortMode?: Maybe<PolarisViewSortMode>;
|
|
21285
21448
|
hideEmptyGroups?: Maybe<Scalars['Boolean']>;
|
|
21286
21449
|
enabledAutoSave?: Maybe<Scalars['Boolean']>;
|
|
21450
|
+
layoutType?: Maybe<PolarisViewLayoutType>;
|
|
21287
21451
|
};
|
|
21288
21452
|
export declare type UpdatePolarisViewPayload = Payload & {
|
|
21289
21453
|
__typename?: 'UpdatePolarisViewPayload';
|
|
@@ -21428,6 +21592,12 @@ export declare type VirtualAgentCreateIntentRuleProjectionPayload = Payload & {
|
|
|
21428
21592
|
errors?: Maybe<Array<MutationError>>;
|
|
21429
21593
|
intentRuleProjection?: Maybe<VirtualAgentIntentRuleProjection>;
|
|
21430
21594
|
};
|
|
21595
|
+
export declare type VirtualAgentDeleteIntentRuleProjectionPayload = Payload & {
|
|
21596
|
+
__typename?: 'VirtualAgentDeleteIntentRuleProjectionPayload';
|
|
21597
|
+
id: Scalars['ID'];
|
|
21598
|
+
success: Scalars['Boolean'];
|
|
21599
|
+
errors?: Maybe<Array<MutationError>>;
|
|
21600
|
+
};
|
|
21431
21601
|
export declare type VirtualAgentIntentProjection = Node & {
|
|
21432
21602
|
__typename?: 'VirtualAgentIntentProjection';
|
|
21433
21603
|
id: Scalars['ID'];
|
|
@@ -21482,6 +21652,9 @@ export declare type VirtualAgentMutationApi = {
|
|
|
21482
21652
|
__typename?: 'VirtualAgentMutationApi';
|
|
21483
21653
|
updateVirtualAgentConfiguration?: Maybe<VirtualAgentUpdateConfigurationPayload>;
|
|
21484
21654
|
createIntentRuleProjection?: Maybe<VirtualAgentCreateIntentRuleProjectionPayload>;
|
|
21655
|
+
updateIntentRuleProjection?: Maybe<VirtualAgentUpdateIntentRuleProjectionPayload>;
|
|
21656
|
+
updateIntentRuleProjectionQuestions?: Maybe<VirtualAgentUpdateIntentRuleProjectionQuestionsPayload>;
|
|
21657
|
+
deleteIntentRuleProjection?: Maybe<VirtualAgentDeleteIntentRuleProjectionPayload>;
|
|
21485
21658
|
};
|
|
21486
21659
|
export declare type VirtualAgentMutationApiUpdateVirtualAgentConfigurationArgs = {
|
|
21487
21660
|
input: VirtualAgentUpdateConfigurationInput;
|
|
@@ -21490,6 +21663,17 @@ export declare type VirtualAgentMutationApiCreateIntentRuleProjectionArgs = {
|
|
|
21490
21663
|
virtualAgentConfigurationId: Scalars['ID'];
|
|
21491
21664
|
input: VirtualAgentCreateIntentRuleProjectionInput;
|
|
21492
21665
|
};
|
|
21666
|
+
export declare type VirtualAgentMutationApiUpdateIntentRuleProjectionArgs = {
|
|
21667
|
+
virtualAgentIntentRuleProjectionId: Scalars['ID'];
|
|
21668
|
+
input: VirtualAgentUpdateIntentRuleProjectionInput;
|
|
21669
|
+
};
|
|
21670
|
+
export declare type VirtualAgentMutationApiUpdateIntentRuleProjectionQuestionsArgs = {
|
|
21671
|
+
virtualAgentIntentRuleProjectionId: Scalars['ID'];
|
|
21672
|
+
input: VirtualAgentUpdateIntentRuleProjectionQuestionsInput;
|
|
21673
|
+
};
|
|
21674
|
+
export declare type VirtualAgentMutationApiDeleteIntentRuleProjectionArgs = {
|
|
21675
|
+
virtualAgentIntentRuleProjectionId: Scalars['ID'];
|
|
21676
|
+
};
|
|
21493
21677
|
export declare type VirtualAgentQueryApi = {
|
|
21494
21678
|
__typename?: 'VirtualAgentQueryApi';
|
|
21495
21679
|
virtualAgentConfigurationByProjectId?: Maybe<VirtualAgentConfigurationResult>;
|
|
@@ -21519,6 +21703,36 @@ export declare type VirtualAgentUpdateConfigurationPayload = Payload & {
|
|
|
21519
21703
|
errors?: Maybe<Array<MutationError>>;
|
|
21520
21704
|
virtualAgentConfiguration?: Maybe<VirtualAgentConfiguration>;
|
|
21521
21705
|
};
|
|
21706
|
+
export declare type VirtualAgentUpdateIntentRuleProjectionInput = {
|
|
21707
|
+
isEnabled?: Maybe<Scalars['Boolean']>;
|
|
21708
|
+
name?: Maybe<Scalars['String']>;
|
|
21709
|
+
description?: Maybe<Scalars['String']>;
|
|
21710
|
+
};
|
|
21711
|
+
export declare type VirtualAgentUpdateIntentRuleProjectionPayload = Payload & {
|
|
21712
|
+
__typename?: 'VirtualAgentUpdateIntentRuleProjectionPayload';
|
|
21713
|
+
success: Scalars['Boolean'];
|
|
21714
|
+
errors?: Maybe<Array<MutationError>>;
|
|
21715
|
+
intentRuleProjection?: Maybe<VirtualAgentIntentRuleProjection>;
|
|
21716
|
+
};
|
|
21717
|
+
export declare type VirtualAgentUpdateIntentRuleProjectionQuestionsInput = {
|
|
21718
|
+
name?: Maybe<Scalars['String']>;
|
|
21719
|
+
description?: Maybe<Scalars['String']>;
|
|
21720
|
+
addedQuestions?: Maybe<Array<Scalars['String']>>;
|
|
21721
|
+
updatedQuestions?: Maybe<Array<VirtualAgentUpdatedQuestionInput>>;
|
|
21722
|
+
deletedQuestions?: Maybe<Array<Scalars['ID']>>;
|
|
21723
|
+
};
|
|
21724
|
+
export declare type VirtualAgentUpdateIntentRuleProjectionQuestionsPayload = Payload & {
|
|
21725
|
+
__typename?: 'VirtualAgentUpdateIntentRuleProjectionQuestionsPayload';
|
|
21726
|
+
success: Scalars['Boolean'];
|
|
21727
|
+
errors?: Maybe<Array<MutationError>>;
|
|
21728
|
+
intentRuleProjection?: Maybe<VirtualAgentIntentRuleProjection>;
|
|
21729
|
+
createdAndUpdatedQuestions?: Maybe<Array<VirtualAgentIntentQuestionProjection>>;
|
|
21730
|
+
deletedQuestions?: Maybe<Array<Scalars['ID']>>;
|
|
21731
|
+
};
|
|
21732
|
+
export declare type VirtualAgentUpdatedQuestionInput = {
|
|
21733
|
+
id: Scalars['ID'];
|
|
21734
|
+
question: Scalars['String'];
|
|
21735
|
+
};
|
|
21522
21736
|
export declare type WatchMarketplaceAppPayload = Payload & {
|
|
21523
21737
|
__typename?: 'WatchMarketplaceAppPayload';
|
|
21524
21738
|
success: Scalars['Boolean'];
|