@forge/cli-shared 3.4.1-next.0 → 3.4.1-next.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +12 -0
- package/out/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 +289 -41
- package/out/graphql/graphql-types.d.ts.map +1 -1
- package/out/graphql/graphql-types.js +53 -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/out/ui/text.d.ts +1 -2
- package/out/ui/text.d.ts.map +1 -1
- package/out/ui/text.js +1 -2
- package/package.json +3 -3
|
@@ -5667,7 +5667,8 @@ export declare type DevOps = {
|
|
|
5667
5667
|
entitiesByAssociations?: Maybe<DevOpsEntities>;
|
|
5668
5668
|
summarisedDeployments?: Maybe<Array<Maybe<DevOpsSummarisedDeployments>>>;
|
|
5669
5669
|
summarisedEntities?: Maybe<Array<Maybe<DevOpsSummarisedEntities>>>;
|
|
5670
|
-
|
|
5670
|
+
providers?: Maybe<DevOpsProviders>;
|
|
5671
|
+
providersByIds?: Maybe<Array<Maybe<DevOpsDataProvider>>>;
|
|
5671
5672
|
ariGraph?: Maybe<AriGraph>;
|
|
5672
5673
|
toolchain?: Maybe<Toolchain>;
|
|
5673
5674
|
};
|
|
@@ -5680,9 +5681,14 @@ export declare type DevOpsSummarisedDeploymentsArgs = {
|
|
|
5680
5681
|
export declare type DevOpsSummarisedEntitiesArgs = {
|
|
5681
5682
|
ids: Array<Scalars['ID']>;
|
|
5682
5683
|
};
|
|
5683
|
-
export declare type
|
|
5684
|
+
export declare type DevOpsProvidersArgs = {
|
|
5685
|
+
id: Scalars['ID'];
|
|
5686
|
+
providerTypes?: Maybe<Array<DevOpsProviderType>>;
|
|
5687
|
+
};
|
|
5688
|
+
export declare type DevOpsProvidersByIdsArgs = {
|
|
5684
5689
|
id: Scalars['ID'];
|
|
5685
|
-
|
|
5690
|
+
providerIds?: Maybe<Array<Scalars['String']>>;
|
|
5691
|
+
providerTypes?: Maybe<Array<DevOpsProviderType>>;
|
|
5686
5692
|
};
|
|
5687
5693
|
export declare type DevOpsAvatar = {
|
|
5688
5694
|
__typename?: 'DevOpsAvatar';
|
|
@@ -5694,11 +5700,20 @@ export declare type DevOpsBranchInfo = {
|
|
|
5694
5700
|
name?: Maybe<Scalars['String']>;
|
|
5695
5701
|
url?: Maybe<Scalars['String']>;
|
|
5696
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
|
+
};
|
|
5697
5712
|
export declare type DevOpsContainerRelationshipEntityPropertyInput = {
|
|
5698
5713
|
key: Scalars['String'];
|
|
5699
5714
|
value: Scalars['JSON'];
|
|
5700
5715
|
};
|
|
5701
|
-
export declare type
|
|
5716
|
+
export declare type DevOpsDataProvider = {
|
|
5702
5717
|
id: Scalars['ID'];
|
|
5703
5718
|
name?: Maybe<Scalars['String']>;
|
|
5704
5719
|
homeUrl?: Maybe<Scalars['URL']>;
|
|
@@ -5706,32 +5721,23 @@ export declare type DevOpsDataDepotProvider = {
|
|
|
5706
5721
|
documentationUrl?: Maybe<Scalars['URL']>;
|
|
5707
5722
|
appInstallationId?: Maybe<Scalars['ID']>;
|
|
5708
5723
|
};
|
|
5709
|
-
export declare
|
|
5710
|
-
|
|
5711
|
-
Build = "BUILD",
|
|
5712
|
-
Deployment = "DEPLOYMENT",
|
|
5713
|
-
FeatureFlag = "FEATURE_FLAG",
|
|
5714
|
-
RemoteLinks = "REMOTE_LINKS",
|
|
5715
|
-
Security = "SECURITY"
|
|
5716
|
-
}
|
|
5717
|
-
export declare type DevOpsDataDepotProviders = {
|
|
5718
|
-
__typename?: 'DevOpsDataDepotProviders';
|
|
5719
|
-
securityProviders?: Maybe<Array<DevOpsDataDepotSecurityProvider>>;
|
|
5720
|
-
};
|
|
5721
|
-
export declare type DevOpsDataDepotSecurityProvider = DevOpsDataDepotProvider & {
|
|
5722
|
-
__typename?: 'DevOpsDataDepotSecurityProvider';
|
|
5724
|
+
export declare type DevOpsDeploymentProvider = DevOpsDataProvider & {
|
|
5725
|
+
__typename?: 'DevOpsDeploymentProvider';
|
|
5723
5726
|
id: Scalars['ID'];
|
|
5724
5727
|
name?: Maybe<Scalars['String']>;
|
|
5725
5728
|
homeUrl?: Maybe<Scalars['URL']>;
|
|
5726
5729
|
logoUrl?: Maybe<Scalars['URL']>;
|
|
5727
5730
|
documentationUrl?: Maybe<Scalars['URL']>;
|
|
5728
5731
|
appInstallationId?: Maybe<Scalars['ID']>;
|
|
5729
|
-
linkedSecurityWorkspaces?: Maybe<AriGraphRelationshipConnection>;
|
|
5730
5732
|
};
|
|
5731
|
-
export declare type
|
|
5732
|
-
|
|
5733
|
-
|
|
5734
|
-
|
|
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']>;
|
|
5735
5741
|
};
|
|
5736
5742
|
export declare type DevOpsEntities = {
|
|
5737
5743
|
__typename?: 'DevOpsEntities';
|
|
@@ -5801,13 +5807,14 @@ export declare type DevOpsFeatureFlagEdge = {
|
|
|
5801
5807
|
cursor?: Maybe<Scalars['String']>;
|
|
5802
5808
|
node?: Maybe<DevOpsFeatureFlag>;
|
|
5803
5809
|
};
|
|
5804
|
-
export declare type DevOpsFeatureFlagProvider = {
|
|
5810
|
+
export declare type DevOpsFeatureFlagProvider = DevOpsDataProvider & {
|
|
5805
5811
|
__typename?: 'DevOpsFeatureFlagProvider';
|
|
5806
5812
|
id: Scalars['ID'];
|
|
5807
5813
|
name?: Maybe<Scalars['String']>;
|
|
5808
5814
|
homeUrl?: Maybe<Scalars['URL']>;
|
|
5809
5815
|
logoUrl?: Maybe<Scalars['URL']>;
|
|
5810
5816
|
documentationUrl?: Maybe<Scalars['URL']>;
|
|
5817
|
+
appInstallationId?: Maybe<Scalars['ID']>;
|
|
5811
5818
|
createFeatureFlagTemplateUrl?: Maybe<Scalars['String']>;
|
|
5812
5819
|
connectFeatureFlagTemplateUrl?: Maybe<Scalars['String']>;
|
|
5813
5820
|
};
|
|
@@ -6016,9 +6023,22 @@ export declare type DevOpsProviderLinks = {
|
|
|
6016
6023
|
home?: Maybe<Scalars['URL']>;
|
|
6017
6024
|
listDeploymentsTemplate?: Maybe<Scalars['URL']>;
|
|
6018
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
|
+
}
|
|
6019
6034
|
export declare type DevOpsProviders = {
|
|
6020
6035
|
__typename?: 'DevOpsProviders';
|
|
6036
|
+
buildProviders?: Maybe<Array<Maybe<DevOpsBuildProvider>>>;
|
|
6037
|
+
deploymentProviders?: Maybe<Array<Maybe<DevOpsDeploymentProvider>>>;
|
|
6038
|
+
devInfoProviders?: Maybe<Array<Maybe<DevOpsDevInfoProvider>>>;
|
|
6021
6039
|
featureFlagProviders?: Maybe<Array<Maybe<DevOpsFeatureFlagProvider>>>;
|
|
6040
|
+
remoteLinksProviders?: Maybe<Array<Maybe<DevOpsRemoteLinksProvider>>>;
|
|
6041
|
+
securityProviders?: Maybe<Array<Maybe<DevOpsSecurityProvider>>>;
|
|
6022
6042
|
};
|
|
6023
6043
|
export declare enum DevOpsPullRequestApprovalStatus {
|
|
6024
6044
|
Approved = "APPROVED",
|
|
@@ -6059,6 +6079,15 @@ export declare enum DevOpsRelationshipCertaintyFilter {
|
|
|
6059
6079
|
Implicit = "IMPLICIT",
|
|
6060
6080
|
All = "ALL"
|
|
6061
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
|
+
};
|
|
6062
6091
|
export declare enum DevOpsRepositoryHostingProviderFilter {
|
|
6063
6092
|
BitbucketCloud = "BITBUCKET_CLOUD",
|
|
6064
6093
|
ThirdParty = "THIRD_PARTY",
|
|
@@ -6071,6 +6100,28 @@ export declare type DevOpsReviewer = {
|
|
|
6071
6100
|
userId?: Maybe<Scalars['ID']>;
|
|
6072
6101
|
user?: Maybe<User>;
|
|
6073
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
|
+
};
|
|
6074
6125
|
export declare type DevOpsSecurityVulnerabilityAdditionalInfo = {
|
|
6075
6126
|
__typename?: 'DevOpsSecurityVulnerabilityAdditionalInfo';
|
|
6076
6127
|
content?: Maybe<Scalars['String']>;
|
|
@@ -6086,8 +6137,7 @@ export declare type DevOpsSecurityVulnerabilityDetails = {
|
|
|
6086
6137
|
status?: Maybe<DevOpsSecurityVulnerabilityStatus>;
|
|
6087
6138
|
identifiers: Array<DevOpsSecurityVulnerabilityIdentifier>;
|
|
6088
6139
|
introducedDate?: Maybe<Scalars['DateTime']>;
|
|
6089
|
-
|
|
6090
|
-
securityContainer?: Maybe<ThirdPartyEntity>;
|
|
6140
|
+
securityContainer?: Maybe<ThirdPartySecurityContainer>;
|
|
6091
6141
|
additionalInfo?: Maybe<DevOpsSecurityVulnerabilityAdditionalInfo>;
|
|
6092
6142
|
linkedJiraIssues?: Maybe<AriGraphRelationshipConnection>;
|
|
6093
6143
|
};
|
|
@@ -6398,9 +6448,11 @@ export declare type DevOpsTool = Node & {
|
|
|
6398
6448
|
containerRelationshipType?: Maybe<Scalars['ID']>;
|
|
6399
6449
|
recommended: Scalars['Boolean'];
|
|
6400
6450
|
integration?: Maybe<DevOpsToolIntegration>;
|
|
6451
|
+
installed?: Maybe<Scalars['Boolean']>;
|
|
6401
6452
|
namespaces?: Maybe<DevOpsToolNamespaceConnection>;
|
|
6402
6453
|
auth?: Maybe<DevOpsToolAuth>;
|
|
6403
6454
|
containerRelationships?: Maybe<AriGraphRelationshipConnection>;
|
|
6455
|
+
provider?: Maybe<DevOpsDataProvider>;
|
|
6404
6456
|
jiraProjectRelationships?: Maybe<JiraProjectAndDevOpsToolRelationshipConnection>;
|
|
6405
6457
|
};
|
|
6406
6458
|
export declare type DevOpsToolNamespacesArgs = {
|
|
@@ -6415,6 +6467,10 @@ export declare type DevOpsToolContainerRelationshipsArgs = {
|
|
|
6415
6467
|
after?: Maybe<Scalars['String']>;
|
|
6416
6468
|
sort?: Maybe<AriGraphRelationshipsSort>;
|
|
6417
6469
|
};
|
|
6470
|
+
export declare type DevOpsToolProviderArgs = {
|
|
6471
|
+
id: Scalars['ID'];
|
|
6472
|
+
providerTypes?: Maybe<Array<DevOpsProviderType>>;
|
|
6473
|
+
};
|
|
6418
6474
|
export declare type DevOpsToolJiraProjectRelationshipsArgs = {
|
|
6419
6475
|
jiraProjectId?: Maybe<Scalars['ID']>;
|
|
6420
6476
|
first?: Maybe<Scalars['Int']>;
|
|
@@ -6672,6 +6728,7 @@ export declare type DevOpsTools = {
|
|
|
6672
6728
|
tools?: Maybe<DevOpsToolConnection>;
|
|
6673
6729
|
tool?: Maybe<DevOpsTool>;
|
|
6674
6730
|
integration?: Maybe<DevOpsToolIntegration>;
|
|
6731
|
+
isInstalled?: Maybe<Scalars['Boolean']>;
|
|
6675
6732
|
namespace?: Maybe<DevOpsToolNamespace>;
|
|
6676
6733
|
container?: Maybe<DevOpsToolContainer>;
|
|
6677
6734
|
navbarConnectionState?: Maybe<DevOpsToolNavbarConnectionState>;
|
|
@@ -6696,6 +6753,9 @@ export declare type DevOpsToolsToolArgs = {
|
|
|
6696
6753
|
export declare type DevOpsToolsIntegrationArgs = {
|
|
6697
6754
|
id: Scalars['ID'];
|
|
6698
6755
|
};
|
|
6756
|
+
export declare type DevOpsToolsIsInstalledArgs = {
|
|
6757
|
+
id: Scalars['ID'];
|
|
6758
|
+
};
|
|
6699
6759
|
export declare type DevOpsToolsNamespaceArgs = {
|
|
6700
6760
|
id: Scalars['ID'];
|
|
6701
6761
|
};
|
|
@@ -10944,6 +11004,7 @@ export declare type JiraMutation = {
|
|
|
10944
11004
|
updateVersionDescription?: Maybe<JiraUpdateVersionPayload>;
|
|
10945
11005
|
updateVersionStartDate?: Maybe<JiraUpdateVersionPayload>;
|
|
10946
11006
|
updateVersionReleaseDate?: Maybe<JiraUpdateVersionPayload>;
|
|
11007
|
+
saveVersionIssueTableColumnHiddenState?: Maybe<JiraVersionIssueTableColumnHiddenStatePayload>;
|
|
10947
11008
|
replaceIssueSearchViewFieldSets?: Maybe<JiraIssueSearchViewPayload>;
|
|
10948
11009
|
devOps?: Maybe<JiraDevOpsMutation>;
|
|
10949
11010
|
createProjectShortcut?: Maybe<JiraProjectShortcutPayload>;
|
|
@@ -11030,6 +11091,9 @@ export declare type JiraMutationUpdateVersionStartDateArgs = {
|
|
|
11030
11091
|
export declare type JiraMutationUpdateVersionReleaseDateArgs = {
|
|
11031
11092
|
input: JiraUpdateVersionReleaseDateInput;
|
|
11032
11093
|
};
|
|
11094
|
+
export declare type JiraMutationSaveVersionIssueTableColumnHiddenStateArgs = {
|
|
11095
|
+
input: JiraVersionIssueTableColumnHiddenStateInput;
|
|
11096
|
+
};
|
|
11033
11097
|
export declare type JiraMutationReplaceIssueSearchViewFieldSetsArgs = {
|
|
11034
11098
|
id: Scalars['ID'];
|
|
11035
11099
|
input: JiraReplaceIssueSearchViewFieldSetsInput;
|
|
@@ -11571,6 +11635,7 @@ export declare type JiraProject = Node & {
|
|
|
11571
11635
|
action?: Maybe<JiraProjectAction>;
|
|
11572
11636
|
virtualAgentConfiguration?: Maybe<VirtualAgentConfigurationResult>;
|
|
11573
11637
|
isFavourite?: Maybe<Scalars['Boolean']>;
|
|
11638
|
+
lead?: Maybe<User>;
|
|
11574
11639
|
devOpsToolRelationships?: Maybe<JiraProjectAndDevOpsToolRelationshipConnection>;
|
|
11575
11640
|
devOpsEntityRelationships?: Maybe<AriGraphRelationshipConnection>;
|
|
11576
11641
|
linkedSecurityContainers?: Maybe<AriGraphRelationshipConnection>;
|
|
@@ -13759,6 +13824,7 @@ export declare type JiraVersion = Node & {
|
|
|
13759
13824
|
nativeReleaseNotesOptionsIssueFields?: Maybe<JiraIssueFieldConnection>;
|
|
13760
13825
|
releaseNotes?: Maybe<JiraAdf>;
|
|
13761
13826
|
devOpsSummarisedEntities?: Maybe<DevOpsSummarisedEntities>;
|
|
13827
|
+
versionIssueTableHiddenColumns?: Maybe<Array<Maybe<JiraVersionIssueTableColumn>>>;
|
|
13762
13828
|
canViewVersionDetailsPage?: Maybe<Scalars['Boolean']>;
|
|
13763
13829
|
releaseNotesConfiguration?: Maybe<JiraReleaseNotesConfiguration>;
|
|
13764
13830
|
availableSites?: Maybe<JiraReleaseNotesInConfluenceAvailableSitesConnection>;
|
|
@@ -13857,6 +13923,27 @@ export declare type JiraVersionEdge = {
|
|
|
13857
13923
|
node?: Maybe<JiraVersion>;
|
|
13858
13924
|
cursor: Scalars['String'];
|
|
13859
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
|
+
Warnings = "WARNINGS",
|
|
13935
|
+
IssuePriority = "ISSUE_PRIORITY"
|
|
13936
|
+
}
|
|
13937
|
+
export declare type JiraVersionIssueTableColumnHiddenStateInput = {
|
|
13938
|
+
hiddenColumns: Array<JiraVersionIssueTableColumn>;
|
|
13939
|
+
versionId: Scalars['ID'];
|
|
13940
|
+
};
|
|
13941
|
+
export declare type JiraVersionIssueTableColumnHiddenStatePayload = Payload & {
|
|
13942
|
+
__typename?: 'JiraVersionIssueTableColumnHiddenStatePayload';
|
|
13943
|
+
success: Scalars['Boolean'];
|
|
13944
|
+
errors?: Maybe<Array<MutationError>>;
|
|
13945
|
+
version?: Maybe<JiraVersion>;
|
|
13946
|
+
};
|
|
13860
13947
|
export declare enum JiraVersionIssuesFilter {
|
|
13861
13948
|
All = "ALL",
|
|
13862
13949
|
Todo = "TODO",
|
|
@@ -14657,12 +14744,21 @@ export declare type MercuryDeleteOrgLevelInput = {
|
|
|
14657
14744
|
export declare type MercuryDeleteStrategyInput = {
|
|
14658
14745
|
strategyId: Scalars['ID'];
|
|
14659
14746
|
};
|
|
14747
|
+
export declare type MercuryDeleteTeamAllocationEntriesInput = {
|
|
14748
|
+
id: Scalars['ID'];
|
|
14749
|
+
teamAllocationEntries: Array<MercuryTeamAllocationDeleteEntryInput>;
|
|
14750
|
+
};
|
|
14660
14751
|
export declare type MercuryDeleteTeamAllocationInput = {
|
|
14661
14752
|
id: Scalars['ID'];
|
|
14662
14753
|
};
|
|
14663
14754
|
export declare type MercuryDeleteTeamInput = {
|
|
14664
14755
|
teamId: Scalars['ID'];
|
|
14665
14756
|
};
|
|
14757
|
+
export declare type MercuryDepartment = {
|
|
14758
|
+
__typename?: 'MercuryDepartment';
|
|
14759
|
+
id: Scalars['ID'];
|
|
14760
|
+
name?: Maybe<Scalars['String']>;
|
|
14761
|
+
};
|
|
14666
14762
|
export declare type MercuryInitiative = {
|
|
14667
14763
|
__typename?: 'MercuryInitiative';
|
|
14668
14764
|
name?: Maybe<Scalars['String']>;
|
|
@@ -14780,6 +14876,7 @@ export declare type MercuryMutationApi = {
|
|
|
14780
14876
|
updateOrgLevelOnTeam?: Maybe<MercuryTeamMutationPayload>;
|
|
14781
14877
|
createTeamAllocation?: Maybe<MercuryTeamAllocationMutationPayload>;
|
|
14782
14878
|
deleteTeamAllocation?: Maybe<MercuryTeamAllocationDeletePayload>;
|
|
14879
|
+
deleteTeamAllocationEntries?: Maybe<MercuryTeamAllocationMutationPayload>;
|
|
14783
14880
|
allocateTeamCapacity?: Maybe<MercuryTeamAllocationMutationPayload>;
|
|
14784
14881
|
transitionTeamAllocationStatus?: Maybe<MercuryTeamAllocationStatusTransitionMutationPayload>;
|
|
14785
14882
|
createInterval?: Maybe<MercuryIntervalMutationPayload>;
|
|
@@ -14831,6 +14928,9 @@ export declare type MercuryMutationApiCreateTeamAllocationArgs = {
|
|
|
14831
14928
|
export declare type MercuryMutationApiDeleteTeamAllocationArgs = {
|
|
14832
14929
|
input: MercuryDeleteTeamAllocationInput;
|
|
14833
14930
|
};
|
|
14931
|
+
export declare type MercuryMutationApiDeleteTeamAllocationEntriesArgs = {
|
|
14932
|
+
input: MercuryDeleteTeamAllocationEntriesInput;
|
|
14933
|
+
};
|
|
14834
14934
|
export declare type MercuryMutationApiAllocateTeamCapacityArgs = {
|
|
14835
14935
|
input: MercuryAllocateTeamCapacityInput;
|
|
14836
14936
|
};
|
|
@@ -14889,6 +14989,11 @@ export declare type MercuryOrgLevelMutationPayload = Payload & {
|
|
|
14889
14989
|
statusCode: Scalars['Int'];
|
|
14890
14990
|
message: Scalars['String'];
|
|
14891
14991
|
};
|
|
14992
|
+
export declare type MercuryPillar = {
|
|
14993
|
+
__typename?: 'MercuryPillar';
|
|
14994
|
+
id: Scalars['ID'];
|
|
14995
|
+
name?: Maybe<Scalars['String']>;
|
|
14996
|
+
};
|
|
14892
14997
|
export declare type MercuryQueryApi = {
|
|
14893
14998
|
__typename?: 'MercuryQueryApi';
|
|
14894
14999
|
strategies?: Maybe<MercuryStrategyConnection>;
|
|
@@ -14907,6 +15012,7 @@ export declare type MercuryQueryApi = {
|
|
|
14907
15012
|
teamAllocationsByOrgLevelForActiveInterval?: Maybe<MercuryTeamAllocationConnection>;
|
|
14908
15013
|
intervals?: Maybe<MercuryIntervalConnection>;
|
|
14909
15014
|
interval?: Maybe<MercuryInterval>;
|
|
15015
|
+
activeInterval?: Maybe<MercuryInterval>;
|
|
14910
15016
|
orgLevel?: Maybe<MercuryOrgLevel>;
|
|
14911
15017
|
orgLevels?: Maybe<MercuryOrgLevelConnection>;
|
|
14912
15018
|
};
|
|
@@ -14972,6 +15078,7 @@ export declare type MercuryQueryApiOrgLevelArgs = {
|
|
|
14972
15078
|
id: Scalars['ID'];
|
|
14973
15079
|
};
|
|
14974
15080
|
export declare type MercuryQueryApiOrgLevelsArgs = {
|
|
15081
|
+
levelType?: Maybe<MercuryLevelType>;
|
|
14975
15082
|
first?: Maybe<Scalars['Int']>;
|
|
14976
15083
|
after?: Maybe<Scalars['String']>;
|
|
14977
15084
|
};
|
|
@@ -15022,6 +15129,9 @@ export declare type MercuryTeam = Node & {
|
|
|
15022
15129
|
name: Scalars['String'];
|
|
15023
15130
|
active?: Maybe<Scalars['Boolean']>;
|
|
15024
15131
|
orgLevelId?: Maybe<Scalars['ID']>;
|
|
15132
|
+
allocationStatusForActiveInterval?: Maybe<MercuryTeamAllocationStatus>;
|
|
15133
|
+
pillar?: Maybe<MercuryPillar>;
|
|
15134
|
+
department?: Maybe<MercuryDepartment>;
|
|
15025
15135
|
};
|
|
15026
15136
|
export declare type MercuryTeamAllocation = {
|
|
15027
15137
|
__typename?: 'MercuryTeamAllocation';
|
|
@@ -15030,7 +15140,7 @@ export declare type MercuryTeamAllocation = {
|
|
|
15030
15140
|
teamId: Scalars['ID'];
|
|
15031
15141
|
teamAllocationEntries: Array<MercuryTeamAllocationEntry>;
|
|
15032
15142
|
status: MercuryTeamAllocationStatus;
|
|
15033
|
-
|
|
15143
|
+
transitions: Array<MercuryTeamAllocationTransition>;
|
|
15034
15144
|
};
|
|
15035
15145
|
export declare type MercuryTeamAllocationConnection = {
|
|
15036
15146
|
__typename?: 'MercuryTeamAllocationConnection';
|
|
@@ -15038,6 +15148,10 @@ export declare type MercuryTeamAllocationConnection = {
|
|
|
15038
15148
|
nodes?: Maybe<Array<Maybe<MercuryTeamAllocation>>>;
|
|
15039
15149
|
pageInfo: PageInfo;
|
|
15040
15150
|
};
|
|
15151
|
+
export declare type MercuryTeamAllocationDeleteEntryInput = {
|
|
15152
|
+
initiativeId: Scalars['String'];
|
|
15153
|
+
craftTypeId: Scalars['ID'];
|
|
15154
|
+
};
|
|
15041
15155
|
export declare type MercuryTeamAllocationDeletePayload = Payload & {
|
|
15042
15156
|
__typename?: 'MercuryTeamAllocationDeletePayload';
|
|
15043
15157
|
deletedTeamAllocationId?: Maybe<Scalars['ID']>;
|
|
@@ -15083,6 +15197,10 @@ export declare type MercuryTeamAllocationStatusTransitionMutationPayload = Paylo
|
|
|
15083
15197
|
statusCode: Scalars['Int'];
|
|
15084
15198
|
message: Scalars['String'];
|
|
15085
15199
|
};
|
|
15200
|
+
export declare type MercuryTeamAllocationTransition = {
|
|
15201
|
+
__typename?: 'MercuryTeamAllocationTransition';
|
|
15202
|
+
to: MercuryTeamAllocationStatus;
|
|
15203
|
+
};
|
|
15086
15204
|
export declare type MercuryTeamConnection = {
|
|
15087
15205
|
__typename?: 'MercuryTeamConnection';
|
|
15088
15206
|
edges?: Maybe<Array<Maybe<MercuryTeamEdge>>>;
|
|
@@ -15396,6 +15514,7 @@ export declare type MutationUpdateReleaseNoteArgs = {
|
|
|
15396
15514
|
relatedContexts?: Maybe<Array<Scalars['String']>>;
|
|
15397
15515
|
relatedContextIds?: Maybe<Array<Scalars['String']>>;
|
|
15398
15516
|
featureRolloutEndDate?: Maybe<Scalars['DateTime']>;
|
|
15517
|
+
description?: Maybe<Scalars['JSON']>;
|
|
15399
15518
|
};
|
|
15400
15519
|
export declare type MutationCreateDevOpsServiceAndOpsgenieTeamRelationshipArgs = {
|
|
15401
15520
|
input: CreateDevOpsServiceAndOpsgenieTeamRelationshipInput;
|
|
@@ -17094,6 +17213,7 @@ export declare type PolarisView = {
|
|
|
17094
17213
|
projectId: Scalars['Int'];
|
|
17095
17214
|
viewSetId: Scalars['ID'];
|
|
17096
17215
|
tableColumnSizes?: Maybe<Array<PolarisViewTableColumnSize>>;
|
|
17216
|
+
fieldRollups?: Maybe<Array<PolarisViewFieldRollup>>;
|
|
17097
17217
|
fields: Array<PolarisIdeaField>;
|
|
17098
17218
|
jql?: Maybe<Scalars['String']>;
|
|
17099
17219
|
immutable?: Maybe<Scalars['Boolean']>;
|
|
@@ -17117,6 +17237,7 @@ export declare type PolarisView = {
|
|
|
17117
17237
|
sortMode: PolarisViewSortMode;
|
|
17118
17238
|
hideEmptyGroups?: Maybe<Scalars['Boolean']>;
|
|
17119
17239
|
enabledAutoSave?: Maybe<Scalars['Boolean']>;
|
|
17240
|
+
layoutType?: Maybe<PolarisViewLayoutType>;
|
|
17120
17241
|
};
|
|
17121
17242
|
export declare type PolarisViewJqlArgs = {
|
|
17122
17243
|
filter?: Maybe<PolarisFilterInput>;
|
|
@@ -17124,6 +17245,26 @@ export declare type PolarisViewJqlArgs = {
|
|
|
17124
17245
|
export declare type PolarisViewCommentsArgs = {
|
|
17125
17246
|
limit?: Maybe<Scalars['Int']>;
|
|
17126
17247
|
};
|
|
17248
|
+
export declare type PolarisViewFieldRollup = {
|
|
17249
|
+
__typename?: 'PolarisViewFieldRollup';
|
|
17250
|
+
field: PolarisIdeaField;
|
|
17251
|
+
rollup: PolarisViewFieldRollupType;
|
|
17252
|
+
};
|
|
17253
|
+
export declare type PolarisViewFieldRollupInput = {
|
|
17254
|
+
field: Scalars['ID'];
|
|
17255
|
+
rollup: PolarisViewFieldRollupType;
|
|
17256
|
+
};
|
|
17257
|
+
export declare enum PolarisViewFieldRollupType {
|
|
17258
|
+
Avg = "AVG",
|
|
17259
|
+
Count = "COUNT",
|
|
17260
|
+
Empty = "EMPTY",
|
|
17261
|
+
Filled = "FILLED",
|
|
17262
|
+
Max = "MAX",
|
|
17263
|
+
Median = "MEDIAN",
|
|
17264
|
+
Min = "MIN",
|
|
17265
|
+
Range = "RANGE",
|
|
17266
|
+
Sum = "SUM"
|
|
17267
|
+
}
|
|
17127
17268
|
export declare type PolarisViewFilter = {
|
|
17128
17269
|
__typename?: 'PolarisViewFilter';
|
|
17129
17270
|
kind: PolarisViewFilterKind;
|
|
@@ -17170,6 +17311,10 @@ export declare type PolarisViewLastViewed = {
|
|
|
17170
17311
|
aaid: Scalars['String'];
|
|
17171
17312
|
account?: Maybe<User>;
|
|
17172
17313
|
};
|
|
17314
|
+
export declare enum PolarisViewLayoutType {
|
|
17315
|
+
Detailed = "DETAILED",
|
|
17316
|
+
Compact = "COMPACT"
|
|
17317
|
+
}
|
|
17173
17318
|
export declare type PolarisViewSet = {
|
|
17174
17319
|
__typename?: 'PolarisViewSet';
|
|
17175
17320
|
id: Scalars['ID'];
|
|
@@ -18658,6 +18803,12 @@ export declare type ScopeSprintIssue = {
|
|
|
18658
18803
|
issueSummary: Scalars['String'];
|
|
18659
18804
|
estimate: Scalars['Float'];
|
|
18660
18805
|
};
|
|
18806
|
+
export declare type SearchAbTest = {
|
|
18807
|
+
__typename?: 'SearchAbTest';
|
|
18808
|
+
abTestId?: Maybe<Scalars['String']>;
|
|
18809
|
+
experimentId?: Maybe<Scalars['String']>;
|
|
18810
|
+
controlId?: Maybe<Scalars['String']>;
|
|
18811
|
+
};
|
|
18661
18812
|
export declare type SearchAnalyticsInput = {
|
|
18662
18813
|
queryVersion?: Maybe<Scalars['Int']>;
|
|
18663
18814
|
searchSessionId?: Maybe<Scalars['String']>;
|
|
@@ -18672,6 +18823,11 @@ export declare enum SearchBoardProductType {
|
|
|
18672
18823
|
Software = "SOFTWARE",
|
|
18673
18824
|
Business = "BUSINESS"
|
|
18674
18825
|
}
|
|
18826
|
+
export declare enum SearchConfluenceDocumentStatus {
|
|
18827
|
+
Current = "CURRENT",
|
|
18828
|
+
Archived = "ARCHIVED",
|
|
18829
|
+
Draft = "DRAFT"
|
|
18830
|
+
}
|
|
18675
18831
|
export declare type SearchConfluenceFilter = {
|
|
18676
18832
|
spacesFilter?: Maybe<Array<Scalars['String']>>;
|
|
18677
18833
|
contributorsFilter?: Maybe<Array<Scalars['String']>>;
|
|
@@ -18680,6 +18836,9 @@ export declare type SearchConfluenceFilter = {
|
|
|
18680
18836
|
ancestorIdsFilter?: Maybe<Array<Scalars['String']>>;
|
|
18681
18837
|
range?: Maybe<Array<Maybe<SearchConfluenceRangeFilter>>>;
|
|
18682
18838
|
containerStatus?: Maybe<Array<Maybe<SearchContainerStatus>>>;
|
|
18839
|
+
types?: Maybe<Array<Scalars['String']>>;
|
|
18840
|
+
contentStatuses?: Maybe<Array<SearchConfluenceDocumentStatus>>;
|
|
18841
|
+
titleMatchOnly?: Maybe<Scalars['Boolean']>;
|
|
18683
18842
|
};
|
|
18684
18843
|
export declare type SearchConfluencePageBlogAttachment = SearchResult & {
|
|
18685
18844
|
__typename?: 'SearchConfluencePageBlogAttachment';
|
|
@@ -18689,7 +18848,9 @@ export declare type SearchConfluencePageBlogAttachment = SearchResult & {
|
|
|
18689
18848
|
iconUrl?: Maybe<Scalars['URL']>;
|
|
18690
18849
|
type: SearchResultType;
|
|
18691
18850
|
description: Scalars['String'];
|
|
18692
|
-
|
|
18851
|
+
lastModified?: Maybe<Scalars['DateTime']>;
|
|
18852
|
+
excerpt?: Maybe<Scalars['String']>;
|
|
18853
|
+
iconCssClass?: Maybe<Scalars['String']>;
|
|
18693
18854
|
space?: Maybe<SearchSpace>;
|
|
18694
18855
|
pageEntity?: Maybe<ConfluencePage>;
|
|
18695
18856
|
};
|
|
@@ -18710,7 +18871,7 @@ export declare type SearchConfluenceSpace = SearchResult & {
|
|
|
18710
18871
|
iconUrl?: Maybe<Scalars['URL']>;
|
|
18711
18872
|
type: SearchResultType;
|
|
18712
18873
|
description: Scalars['String'];
|
|
18713
|
-
|
|
18874
|
+
lastModified?: Maybe<Scalars['DateTime']>;
|
|
18714
18875
|
spaceEntity?: Maybe<ConfluenceSpace>;
|
|
18715
18876
|
};
|
|
18716
18877
|
export declare enum SearchContainerStatus {
|
|
@@ -18738,6 +18899,7 @@ export declare type SearchItemConnection = {
|
|
|
18738
18899
|
edges: Array<SearchResultItemEdge>;
|
|
18739
18900
|
pageInfo: PageInfo;
|
|
18740
18901
|
totalCount?: Maybe<Scalars['Int']>;
|
|
18902
|
+
abTest?: Maybe<SearchAbTest>;
|
|
18741
18903
|
};
|
|
18742
18904
|
export declare type SearchJiraFilter = {
|
|
18743
18905
|
boardFilter?: Maybe<SearchBoardFilter>;
|
|
@@ -18835,13 +18997,17 @@ export declare type SearchResultJiraProject = SearchResult & {
|
|
|
18835
18997
|
project?: Maybe<JiraProject>;
|
|
18836
18998
|
};
|
|
18837
18999
|
export declare enum SearchResultType {
|
|
19000
|
+
Page = "page",
|
|
18838
19001
|
Blogpost = "blogpost",
|
|
18839
19002
|
Space = "space",
|
|
19003
|
+
Attachment = "attachment",
|
|
19004
|
+
Comment = "comment",
|
|
18840
19005
|
Board = "board",
|
|
18841
19006
|
Filter = "filter",
|
|
18842
19007
|
Issue = "issue",
|
|
18843
19008
|
Plan = "plan",
|
|
18844
|
-
Project = "project"
|
|
19009
|
+
Project = "project",
|
|
19010
|
+
Unrecognised = "unrecognised"
|
|
18845
19011
|
}
|
|
18846
19012
|
export declare type SearchSpace = {
|
|
18847
19013
|
__typename?: 'SearchSpace';
|
|
@@ -19032,6 +19198,18 @@ export declare type ShepherdAlertEdge = {
|
|
|
19032
19198
|
cursor?: Maybe<Scalars['String']>;
|
|
19033
19199
|
node?: Maybe<ShepherdAlert>;
|
|
19034
19200
|
};
|
|
19201
|
+
export declare type ShepherdAlertQueries = {
|
|
19202
|
+
__typename?: 'ShepherdAlertQueries';
|
|
19203
|
+
byAri?: Maybe<ShepherdAlertResult>;
|
|
19204
|
+
byWorkspace?: Maybe<ShepherdAlertsResult>;
|
|
19205
|
+
};
|
|
19206
|
+
export declare type ShepherdAlertQueriesByAriArgs = {
|
|
19207
|
+
id: Scalars['ID'];
|
|
19208
|
+
};
|
|
19209
|
+
export declare type ShepherdAlertQueriesByWorkspaceArgs = {
|
|
19210
|
+
aaid?: Maybe<Scalars['ID']>;
|
|
19211
|
+
workspaceId: Scalars['ID'];
|
|
19212
|
+
};
|
|
19035
19213
|
export declare type ShepherdAlertResult = QueryError | ShepherdAlert;
|
|
19036
19214
|
export declare enum ShepherdAlertSeverity {
|
|
19037
19215
|
Critical = "CRITICAL",
|
|
@@ -19070,6 +19248,7 @@ export declare enum ShepherdAlertTemplateType {
|
|
|
19070
19248
|
InitiatedGsyncConnection = "INITIATED_GSYNC_CONNECTION",
|
|
19071
19249
|
JiraIssueCrawling = "JIRA_ISSUE_CRAWLING",
|
|
19072
19250
|
OrgLoggedInAsUser = "ORG_LOGGED_IN_AS_USER",
|
|
19251
|
+
PasswordResetCompletedUser = "PASSWORD_RESET_COMPLETED_USER",
|
|
19073
19252
|
RotateScimDirectoryToken = "ROTATE_SCIM_DIRECTORY_TOKEN",
|
|
19074
19253
|
TokenCreated = "TOKEN_CREATED",
|
|
19075
19254
|
UpdatedAuthPolicy = "UPDATED_AUTH_POLICY",
|
|
@@ -19176,7 +19355,6 @@ export declare type ShepherdEmailEdge = ShepherdSubscriptionEdge & {
|
|
|
19176
19355
|
};
|
|
19177
19356
|
export declare type ShepherdEmailSubscription = Node & ShepherdSubscription & {
|
|
19178
19357
|
__typename?: 'ShepherdEmailSubscription';
|
|
19179
|
-
ari: Scalars['ID'];
|
|
19180
19358
|
createdBy: Scalars['String'];
|
|
19181
19359
|
createdOn: Scalars['DateTime'];
|
|
19182
19360
|
email: Scalars['String'];
|
|
@@ -19216,6 +19394,7 @@ export declare type ShepherdMutation = {
|
|
|
19216
19394
|
updateAlert?: Maybe<ShepherdUpdateAlertPayload>;
|
|
19217
19395
|
updateOrganization?: Maybe<ShepherdUpdateOrganizationPayload>;
|
|
19218
19396
|
updateSubscription?: Maybe<ShepherdUpdateSubscriptionPayload>;
|
|
19397
|
+
workspace?: Maybe<ShepherdWorkspaceMutations>;
|
|
19219
19398
|
};
|
|
19220
19399
|
export declare type ShepherdMutationCreateAlertArgs = {
|
|
19221
19400
|
input: ShepherdCreateAlertInput;
|
|
@@ -19261,6 +19440,7 @@ export declare type ShepherdOrganization = {
|
|
|
19261
19440
|
export declare type ShepherdOrganizationResult = QueryError | ShepherdOrganization;
|
|
19262
19441
|
export declare type ShepherdQuery = {
|
|
19263
19442
|
__typename?: 'ShepherdQuery';
|
|
19443
|
+
alert?: Maybe<ShepherdAlertQueries>;
|
|
19264
19444
|
shepherdActivity?: Maybe<ShepherdActivityResult>;
|
|
19265
19445
|
shepherdAlert?: Maybe<ShepherdAlertResult>;
|
|
19266
19446
|
shepherdAlerts?: Maybe<ShepherdAlertsResult>;
|
|
@@ -19298,7 +19478,7 @@ export declare type ShepherdQueryShepherdUserArgs = {
|
|
|
19298
19478
|
id?: Maybe<Scalars['ID']>;
|
|
19299
19479
|
};
|
|
19300
19480
|
export declare type ShepherdQuerySubscriptionsArgs = {
|
|
19301
|
-
|
|
19481
|
+
workspaceId: Scalars['ID'];
|
|
19302
19482
|
};
|
|
19303
19483
|
export declare type ShepherdQueryWorkspaceArgs = {
|
|
19304
19484
|
cloudId?: Maybe<Scalars['ID']>;
|
|
@@ -19326,7 +19506,6 @@ export declare type ShepherdSlackEdge = ShepherdSubscriptionEdge & {
|
|
|
19326
19506
|
};
|
|
19327
19507
|
export declare type ShepherdSlackSubscription = Node & ShepherdSubscription & {
|
|
19328
19508
|
__typename?: 'ShepherdSlackSubscription';
|
|
19329
|
-
ari: Scalars['ID'];
|
|
19330
19509
|
callbackURL: Scalars['String'];
|
|
19331
19510
|
channelId: Scalars['String'];
|
|
19332
19511
|
createdBy: Scalars['String'];
|
|
@@ -19349,7 +19528,6 @@ export declare type ShepherdSubjectInput = {
|
|
|
19349
19528
|
containerAri: Scalars['String'];
|
|
19350
19529
|
};
|
|
19351
19530
|
export declare type ShepherdSubscription = {
|
|
19352
|
-
ari: Scalars['ID'];
|
|
19353
19531
|
createdBy: Scalars['String'];
|
|
19354
19532
|
createdOn: Scalars['DateTime'];
|
|
19355
19533
|
id: Scalars['ID'];
|
|
@@ -19387,18 +19565,18 @@ export declare type ShepherdSubscriptionMutations = {
|
|
|
19387
19565
|
};
|
|
19388
19566
|
export declare type ShepherdSubscriptionMutationsCreateArgs = {
|
|
19389
19567
|
input: ShepherdSubscriptionCreateInput;
|
|
19390
|
-
|
|
19568
|
+
workspaceId: Scalars['ID'];
|
|
19391
19569
|
};
|
|
19392
19570
|
export declare type ShepherdSubscriptionMutationsDeleteArgs = {
|
|
19571
|
+
id: Scalars['ID'];
|
|
19393
19572
|
input?: Maybe<ShepherdSubscriptionDeleteInput>;
|
|
19394
|
-
subscriptionAri: Scalars['ID'];
|
|
19395
19573
|
};
|
|
19396
19574
|
export declare type ShepherdSubscriptionMutationsTestArgs = {
|
|
19397
|
-
|
|
19575
|
+
id: Scalars['ID'];
|
|
19398
19576
|
};
|
|
19399
19577
|
export declare type ShepherdSubscriptionMutationsUpdateArgs = {
|
|
19578
|
+
id: Scalars['ID'];
|
|
19400
19579
|
input: ShepherdSubscriptionUpdateInput;
|
|
19401
|
-
subscriptionAri: Scalars['ID'];
|
|
19402
19580
|
};
|
|
19403
19581
|
export declare enum ShepherdSubscriptionStatus {
|
|
19404
19582
|
Active = "ACTIVE",
|
|
@@ -19493,7 +19671,6 @@ export declare type ShepherdWebhookEdge = ShepherdSubscriptionEdge & {
|
|
|
19493
19671
|
};
|
|
19494
19672
|
export declare type ShepherdWebhookSubscription = Node & ShepherdSubscription & {
|
|
19495
19673
|
__typename?: 'ShepherdWebhookSubscription';
|
|
19496
|
-
ari: Scalars['ID'];
|
|
19497
19674
|
authToken: Scalars['String'];
|
|
19498
19675
|
callbackURL: Scalars['String'];
|
|
19499
19676
|
createdBy: Scalars['String'];
|
|
@@ -19512,9 +19689,10 @@ export declare enum ShepherdWebhookType {
|
|
|
19512
19689
|
}
|
|
19513
19690
|
export declare type ShepherdWorkspace = {
|
|
19514
19691
|
__typename?: 'ShepherdWorkspace';
|
|
19515
|
-
ari: Scalars['ID'];
|
|
19516
19692
|
cloudId: Scalars['ID'];
|
|
19693
|
+
id: Scalars['ID'];
|
|
19517
19694
|
orgId: Scalars['ID'];
|
|
19695
|
+
shouldOnboard?: Maybe<Scalars['Boolean']>;
|
|
19518
19696
|
};
|
|
19519
19697
|
export declare type ShepherdWorkspaceConnection = {
|
|
19520
19698
|
__typename?: 'ShepherdWorkspaceConnection';
|
|
@@ -19524,7 +19702,24 @@ export declare type ShepherdWorkspaceEdge = {
|
|
|
19524
19702
|
__typename?: 'ShepherdWorkspaceEdge';
|
|
19525
19703
|
node?: Maybe<ShepherdWorkspace>;
|
|
19526
19704
|
};
|
|
19705
|
+
export declare type ShepherdWorkspaceMutationPayload = Payload & {
|
|
19706
|
+
__typename?: 'ShepherdWorkspaceMutationPayload';
|
|
19707
|
+
errors?: Maybe<Array<MutationError>>;
|
|
19708
|
+
node?: Maybe<ShepherdWorkspace>;
|
|
19709
|
+
success: Scalars['Boolean'];
|
|
19710
|
+
};
|
|
19711
|
+
export declare type ShepherdWorkspaceMutations = {
|
|
19712
|
+
__typename?: 'ShepherdWorkspaceMutations';
|
|
19713
|
+
update?: Maybe<ShepherdWorkspaceMutationPayload>;
|
|
19714
|
+
};
|
|
19715
|
+
export declare type ShepherdWorkspaceMutationsUpdateArgs = {
|
|
19716
|
+
id: Scalars['ID'];
|
|
19717
|
+
input: ShepherdWorkspaceUpdateInput;
|
|
19718
|
+
};
|
|
19527
19719
|
export declare type ShepherdWorkspaceResult = QueryError | ShepherdWorkspaceConnection;
|
|
19720
|
+
export declare type ShepherdWorkspaceUpdateInput = {
|
|
19721
|
+
shouldOnboard: Scalars['Boolean'];
|
|
19722
|
+
};
|
|
19528
19723
|
export declare type SmartsContext = {
|
|
19529
19724
|
userId: Scalars['String'];
|
|
19530
19725
|
tenantId: Scalars['String'];
|
|
@@ -19627,6 +19822,7 @@ export declare type SoftwareCard = {
|
|
|
19627
19822
|
priority?: Maybe<CardPriority>;
|
|
19628
19823
|
dueDate?: Maybe<Scalars['String']>;
|
|
19629
19824
|
fixVersionsIds: Array<Scalars['ID']>;
|
|
19825
|
+
canSplitIssue: Scalars['Boolean'];
|
|
19630
19826
|
};
|
|
19631
19827
|
export declare type SoftwareCardChildrenInfo = {
|
|
19632
19828
|
__typename?: 'SoftwareCardChildrenInfo';
|
|
@@ -20357,7 +20553,6 @@ export declare type TestingPerformance = {
|
|
|
20357
20553
|
__typename?: 'TestingPerformance';
|
|
20358
20554
|
myActivities: TestingMyActivity;
|
|
20359
20555
|
};
|
|
20360
|
-
export declare type ThirdPartyEntity = ThirdPartySecurityWorkspace | ThirdPartySecurityContainer;
|
|
20361
20556
|
export declare type ThirdPartyRepositoryInput = {
|
|
20362
20557
|
id: Scalars['ID'];
|
|
20363
20558
|
webUrl?: Maybe<Scalars['String']>;
|
|
@@ -20717,6 +20912,7 @@ export declare type TrelloBoard = {
|
|
|
20717
20912
|
id: Scalars['ID'];
|
|
20718
20913
|
lastActivityAt?: Maybe<Scalars['DateTime']>;
|
|
20719
20914
|
name: Scalars['String'];
|
|
20915
|
+
objectId: Scalars['String'];
|
|
20720
20916
|
prefs: TrelloBoardPrefs;
|
|
20721
20917
|
shortLink: Scalars['TrelloShortLink'];
|
|
20722
20918
|
viewer?: Maybe<TrelloBoardViewer>;
|
|
@@ -21258,6 +21454,7 @@ export declare type UpdatePolarisViewInput = {
|
|
|
21258
21454
|
jql?: Maybe<Scalars['String']>;
|
|
21259
21455
|
userJql?: Maybe<Scalars['String']>;
|
|
21260
21456
|
tableColumnSizes?: Maybe<Array<PolarisViewTableColumnSizeInput>>;
|
|
21457
|
+
fieldRollups?: Maybe<Array<PolarisViewFieldRollupInput>>;
|
|
21261
21458
|
fields?: Maybe<Array<Scalars['ID']>>;
|
|
21262
21459
|
groupBy?: Maybe<Scalars['ID']>;
|
|
21263
21460
|
groupValues?: Maybe<Array<PolarisGroupValueInput>>;
|
|
@@ -21273,6 +21470,7 @@ export declare type UpdatePolarisViewInput = {
|
|
|
21273
21470
|
sortMode?: Maybe<PolarisViewSortMode>;
|
|
21274
21471
|
hideEmptyGroups?: Maybe<Scalars['Boolean']>;
|
|
21275
21472
|
enabledAutoSave?: Maybe<Scalars['Boolean']>;
|
|
21473
|
+
layoutType?: Maybe<PolarisViewLayoutType>;
|
|
21276
21474
|
};
|
|
21277
21475
|
export declare type UpdatePolarisViewPayload = Payload & {
|
|
21278
21476
|
__typename?: 'UpdatePolarisViewPayload';
|
|
@@ -21417,6 +21615,12 @@ export declare type VirtualAgentCreateIntentRuleProjectionPayload = Payload & {
|
|
|
21417
21615
|
errors?: Maybe<Array<MutationError>>;
|
|
21418
21616
|
intentRuleProjection?: Maybe<VirtualAgentIntentRuleProjection>;
|
|
21419
21617
|
};
|
|
21618
|
+
export declare type VirtualAgentDeleteIntentRuleProjectionPayload = Payload & {
|
|
21619
|
+
__typename?: 'VirtualAgentDeleteIntentRuleProjectionPayload';
|
|
21620
|
+
id: Scalars['ID'];
|
|
21621
|
+
success: Scalars['Boolean'];
|
|
21622
|
+
errors?: Maybe<Array<MutationError>>;
|
|
21623
|
+
};
|
|
21420
21624
|
export declare type VirtualAgentIntentProjection = Node & {
|
|
21421
21625
|
__typename?: 'VirtualAgentIntentProjection';
|
|
21422
21626
|
id: Scalars['ID'];
|
|
@@ -21471,6 +21675,9 @@ export declare type VirtualAgentMutationApi = {
|
|
|
21471
21675
|
__typename?: 'VirtualAgentMutationApi';
|
|
21472
21676
|
updateVirtualAgentConfiguration?: Maybe<VirtualAgentUpdateConfigurationPayload>;
|
|
21473
21677
|
createIntentRuleProjection?: Maybe<VirtualAgentCreateIntentRuleProjectionPayload>;
|
|
21678
|
+
updateIntentRuleProjection?: Maybe<VirtualAgentUpdateIntentRuleProjectionPayload>;
|
|
21679
|
+
updateIntentRuleProjectionQuestions?: Maybe<VirtualAgentUpdateIntentRuleProjectionQuestionsPayload>;
|
|
21680
|
+
deleteIntentRuleProjection?: Maybe<VirtualAgentDeleteIntentRuleProjectionPayload>;
|
|
21474
21681
|
};
|
|
21475
21682
|
export declare type VirtualAgentMutationApiUpdateVirtualAgentConfigurationArgs = {
|
|
21476
21683
|
input: VirtualAgentUpdateConfigurationInput;
|
|
@@ -21479,6 +21686,17 @@ export declare type VirtualAgentMutationApiCreateIntentRuleProjectionArgs = {
|
|
|
21479
21686
|
virtualAgentConfigurationId: Scalars['ID'];
|
|
21480
21687
|
input: VirtualAgentCreateIntentRuleProjectionInput;
|
|
21481
21688
|
};
|
|
21689
|
+
export declare type VirtualAgentMutationApiUpdateIntentRuleProjectionArgs = {
|
|
21690
|
+
virtualAgentIntentRuleProjectionId: Scalars['ID'];
|
|
21691
|
+
input: VirtualAgentUpdateIntentRuleProjectionInput;
|
|
21692
|
+
};
|
|
21693
|
+
export declare type VirtualAgentMutationApiUpdateIntentRuleProjectionQuestionsArgs = {
|
|
21694
|
+
virtualAgentIntentRuleProjectionId: Scalars['ID'];
|
|
21695
|
+
input: VirtualAgentUpdateIntentRuleProjectionQuestionsInput;
|
|
21696
|
+
};
|
|
21697
|
+
export declare type VirtualAgentMutationApiDeleteIntentRuleProjectionArgs = {
|
|
21698
|
+
virtualAgentIntentRuleProjectionId: Scalars['ID'];
|
|
21699
|
+
};
|
|
21482
21700
|
export declare type VirtualAgentQueryApi = {
|
|
21483
21701
|
__typename?: 'VirtualAgentQueryApi';
|
|
21484
21702
|
virtualAgentConfigurationByProjectId?: Maybe<VirtualAgentConfigurationResult>;
|
|
@@ -21508,6 +21726,36 @@ export declare type VirtualAgentUpdateConfigurationPayload = Payload & {
|
|
|
21508
21726
|
errors?: Maybe<Array<MutationError>>;
|
|
21509
21727
|
virtualAgentConfiguration?: Maybe<VirtualAgentConfiguration>;
|
|
21510
21728
|
};
|
|
21729
|
+
export declare type VirtualAgentUpdateIntentRuleProjectionInput = {
|
|
21730
|
+
isEnabled?: Maybe<Scalars['Boolean']>;
|
|
21731
|
+
name?: Maybe<Scalars['String']>;
|
|
21732
|
+
description?: Maybe<Scalars['String']>;
|
|
21733
|
+
};
|
|
21734
|
+
export declare type VirtualAgentUpdateIntentRuleProjectionPayload = Payload & {
|
|
21735
|
+
__typename?: 'VirtualAgentUpdateIntentRuleProjectionPayload';
|
|
21736
|
+
success: Scalars['Boolean'];
|
|
21737
|
+
errors?: Maybe<Array<MutationError>>;
|
|
21738
|
+
intentRuleProjection?: Maybe<VirtualAgentIntentRuleProjection>;
|
|
21739
|
+
};
|
|
21740
|
+
export declare type VirtualAgentUpdateIntentRuleProjectionQuestionsInput = {
|
|
21741
|
+
name?: Maybe<Scalars['String']>;
|
|
21742
|
+
description?: Maybe<Scalars['String']>;
|
|
21743
|
+
addedQuestions?: Maybe<Array<Scalars['String']>>;
|
|
21744
|
+
updatedQuestions?: Maybe<Array<VirtualAgentUpdatedQuestionInput>>;
|
|
21745
|
+
deletedQuestions?: Maybe<Array<Scalars['ID']>>;
|
|
21746
|
+
};
|
|
21747
|
+
export declare type VirtualAgentUpdateIntentRuleProjectionQuestionsPayload = Payload & {
|
|
21748
|
+
__typename?: 'VirtualAgentUpdateIntentRuleProjectionQuestionsPayload';
|
|
21749
|
+
success: Scalars['Boolean'];
|
|
21750
|
+
errors?: Maybe<Array<MutationError>>;
|
|
21751
|
+
intentRuleProjection?: Maybe<VirtualAgentIntentRuleProjection>;
|
|
21752
|
+
createdAndUpdatedQuestions?: Maybe<Array<VirtualAgentIntentQuestionProjection>>;
|
|
21753
|
+
deletedQuestions?: Maybe<Array<Scalars['ID']>>;
|
|
21754
|
+
};
|
|
21755
|
+
export declare type VirtualAgentUpdatedQuestionInput = {
|
|
21756
|
+
id: Scalars['ID'];
|
|
21757
|
+
question: Scalars['String'];
|
|
21758
|
+
};
|
|
21511
21759
|
export declare type WatchMarketplaceAppPayload = Payload & {
|
|
21512
21760
|
__typename?: 'WatchMarketplaceAppPayload';
|
|
21513
21761
|
success: Scalars['Boolean'];
|