@forge/cli-shared 2.4.1-next.7 → 2.4.2-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
CHANGED
|
@@ -1,5 +1,34 @@
|
|
|
1
1
|
# @forge/cli-shared
|
|
2
2
|
|
|
3
|
+
## 2.4.2-next.1
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- Updated dependencies [34d085a6]
|
|
8
|
+
- @forge/manifest@3.6.1-next.1
|
|
9
|
+
|
|
10
|
+
## 2.4.2-next.0
|
|
11
|
+
|
|
12
|
+
### Patch Changes
|
|
13
|
+
|
|
14
|
+
- Updated dependencies [9e700ef8]
|
|
15
|
+
- @forge/manifest@3.6.1-next.0
|
|
16
|
+
|
|
17
|
+
## 2.4.1
|
|
18
|
+
|
|
19
|
+
### Patch Changes
|
|
20
|
+
|
|
21
|
+
- Updated dependencies [1a8d47c]
|
|
22
|
+
- Updated dependencies [e314dd0]
|
|
23
|
+
- Updated dependencies [0137135]
|
|
24
|
+
- Updated dependencies [2bd062d]
|
|
25
|
+
- Updated dependencies [9047581]
|
|
26
|
+
- Updated dependencies [5c9419f]
|
|
27
|
+
- Updated dependencies [e8a6926]
|
|
28
|
+
- Updated dependencies [cb28bc0]
|
|
29
|
+
- Updated dependencies [0920759]
|
|
30
|
+
- @forge/manifest@3.6.0
|
|
31
|
+
|
|
3
32
|
## 2.4.1-next.7
|
|
4
33
|
|
|
5
34
|
### Patch Changes
|
|
@@ -1128,6 +1128,7 @@ export declare type BasicBoardFeatureView = Node & {
|
|
|
1128
1128
|
learnMoreArticleId?: Maybe<Scalars['String']>;
|
|
1129
1129
|
imageUri?: Maybe<Scalars['String']>;
|
|
1130
1130
|
dependents?: Maybe<Array<Maybe<BoardFeatureView>>>;
|
|
1131
|
+
prerequisites?: Maybe<Array<Maybe<BoardFeatureView>>>;
|
|
1131
1132
|
};
|
|
1132
1133
|
export declare enum BitbucketPermission {
|
|
1133
1134
|
Admin = "ADMIN"
|
|
@@ -3845,6 +3846,7 @@ export declare type ContentPlatformReleaseNote = {
|
|
|
3845
3846
|
supportingVisuals?: Maybe<Array<ContentPlatformImageComponent>>;
|
|
3846
3847
|
relatedContentLinks?: Maybe<Array<Scalars['String']>>;
|
|
3847
3848
|
featureRolloutDate?: Maybe<Scalars['String']>;
|
|
3849
|
+
featureRolloutEndDate?: Maybe<Scalars['String']>;
|
|
3848
3850
|
changeCategory?: Maybe<ContentPlatformTaxonomyChangeCategory>;
|
|
3849
3851
|
releaseNoteFlag?: Maybe<Scalars['String']>;
|
|
3850
3852
|
releaseNoteFlagOffValue?: Maybe<Scalars['String']>;
|
|
@@ -4280,6 +4282,20 @@ export declare type CreatePolarisDecorationPayload = Payload & {
|
|
|
4280
4282
|
errors?: Maybe<Array<MutationError>>;
|
|
4281
4283
|
node?: Maybe<PolarisDecoration>;
|
|
4282
4284
|
};
|
|
4285
|
+
export declare type CreatePolarisIdeaTemplateInput = {
|
|
4286
|
+
project: Scalars['ID'];
|
|
4287
|
+
title: Scalars['String'];
|
|
4288
|
+
description?: Maybe<Scalars['String']>;
|
|
4289
|
+
color?: Maybe<Scalars['String']>;
|
|
4290
|
+
emoji?: Maybe<Scalars['String']>;
|
|
4291
|
+
template?: Maybe<Scalars['JSON']>;
|
|
4292
|
+
};
|
|
4293
|
+
export declare type CreatePolarisIdeaTemplatePayload = {
|
|
4294
|
+
__typename?: 'CreatePolarisIdeaTemplatePayload';
|
|
4295
|
+
success: Scalars['Boolean'];
|
|
4296
|
+
errors?: Maybe<Array<MutationError>>;
|
|
4297
|
+
node?: Maybe<PolarisIdeaTemplate>;
|
|
4298
|
+
};
|
|
4283
4299
|
export declare type CreatePolarisInsightFromPlayContributionInput = {
|
|
4284
4300
|
contribution: Scalars['ID'];
|
|
4285
4301
|
subject?: Maybe<Scalars['ID']>;
|
|
@@ -5532,6 +5548,7 @@ export declare type DevOpsToolsToolsArgs = {
|
|
|
5532
5548
|
recommended?: Maybe<Scalars['Boolean']>;
|
|
5533
5549
|
groupId?: Maybe<Scalars['String']>;
|
|
5534
5550
|
categoryId?: Maybe<Scalars['String']>;
|
|
5551
|
+
installed?: Maybe<Scalars['Boolean']>;
|
|
5535
5552
|
supportsContainers?: Maybe<Scalars['Boolean']>;
|
|
5536
5553
|
integrationType?: Maybe<DevOpsToolIntegrationType>;
|
|
5537
5554
|
};
|
|
@@ -5568,7 +5585,8 @@ export declare enum DevStatusActivity {
|
|
|
5568
5585
|
PrMerged = "PR_MERGED",
|
|
5569
5586
|
PrDeclined = "PR_DECLINED",
|
|
5570
5587
|
BranchOpen = "BRANCH_OPEN",
|
|
5571
|
-
Commit = "COMMIT"
|
|
5588
|
+
Commit = "COMMIT",
|
|
5589
|
+
Deployment = "DEPLOYMENT"
|
|
5572
5590
|
}
|
|
5573
5591
|
export declare type DeveloperLogAccessResult = {
|
|
5574
5592
|
__typename?: 'DeveloperLogAccessResult';
|
|
@@ -5776,6 +5794,7 @@ export declare type ForgeMetricsErrorsData = ForgeMetricsData & {
|
|
|
5776
5794
|
type: ForgeMetricsDataType;
|
|
5777
5795
|
series: Array<ForgeMetricsErrorsSeries>;
|
|
5778
5796
|
resolution: ForgeMetricsResolution;
|
|
5797
|
+
interval: ForgeMetricsIntervalRange;
|
|
5779
5798
|
};
|
|
5780
5799
|
export declare type ForgeMetricsErrorsDataPoint = {
|
|
5781
5800
|
__typename?: 'ForgeMetricsErrorsDataPoint';
|
|
@@ -5791,7 +5810,8 @@ export declare type ForgeMetricsErrorsSeries = ForgeMetricsSeries & {
|
|
|
5791
5810
|
export declare enum ForgeMetricsGroupByDimensions {
|
|
5792
5811
|
UserTier = "USER_TIER",
|
|
5793
5812
|
EnvironmentId = "ENVIRONMENT_ID",
|
|
5794
|
-
ErrorType = "ERROR_TYPE"
|
|
5813
|
+
ErrorType = "ERROR_TYPE",
|
|
5814
|
+
Version = "VERSION"
|
|
5795
5815
|
}
|
|
5796
5816
|
export declare type ForgeMetricsInstallationContext = {
|
|
5797
5817
|
__typename?: 'ForgeMetricsInstallationContext';
|
|
@@ -5802,12 +5822,18 @@ export declare type ForgeMetricsIntervalInput = {
|
|
|
5802
5822
|
start: Scalars['DateTime'];
|
|
5803
5823
|
end: Scalars['DateTime'];
|
|
5804
5824
|
};
|
|
5825
|
+
export declare type ForgeMetricsIntervalRange = {
|
|
5826
|
+
__typename?: 'ForgeMetricsIntervalRange';
|
|
5827
|
+
start: Scalars['DateTime'];
|
|
5828
|
+
end: Scalars['DateTime'];
|
|
5829
|
+
};
|
|
5805
5830
|
export declare type ForgeMetricsInvocationData = ForgeMetricsData & {
|
|
5806
5831
|
__typename?: 'ForgeMetricsInvocationData';
|
|
5807
5832
|
name: Scalars['String'];
|
|
5808
5833
|
type: ForgeMetricsDataType;
|
|
5809
5834
|
series: Array<ForgeMetricsInvocationSeries>;
|
|
5810
5835
|
resolution: ForgeMetricsResolution;
|
|
5836
|
+
interval: ForgeMetricsIntervalRange;
|
|
5811
5837
|
};
|
|
5812
5838
|
export declare type ForgeMetricsInvocationDataPoint = {
|
|
5813
5839
|
__typename?: 'ForgeMetricsInvocationDataPoint';
|
|
@@ -5893,6 +5919,7 @@ export declare type ForgeMetricsSuccessRateData = ForgeMetricsData & {
|
|
|
5893
5919
|
type: ForgeMetricsDataType;
|
|
5894
5920
|
series: Array<ForgeMetricsSuccessRateSeries>;
|
|
5895
5921
|
resolution: ForgeMetricsResolution;
|
|
5922
|
+
interval: ForgeMetricsIntervalRange;
|
|
5896
5923
|
};
|
|
5897
5924
|
export declare type ForgeMetricsSuccessRateDataPoint = {
|
|
5898
5925
|
__typename?: 'ForgeMetricsSuccessRateDataPoint';
|
|
@@ -6017,7 +6044,7 @@ export declare type HelpCenterCollectionItemEdge = {
|
|
|
6017
6044
|
export declare type HelpCenterCollectionItemInput = {
|
|
6018
6045
|
ari: Scalars['ID'];
|
|
6019
6046
|
};
|
|
6020
|
-
export declare type HelpCenterCollectionResult = HelpCenterCollection |
|
|
6047
|
+
export declare type HelpCenterCollectionResult = HelpCenterCollection | QueryError;
|
|
6021
6048
|
export declare type HelpCenterCreateCollectionInput = {
|
|
6022
6049
|
helpCenterId: Scalars['ID'];
|
|
6023
6050
|
items: Array<HelpCenterCollectionItemInput>;
|
|
@@ -6037,7 +6064,7 @@ export declare type HelpCenterDeleteUpdateCollectionPayload = Payload & {
|
|
|
6037
6064
|
errors?: Maybe<Array<MutationError>>;
|
|
6038
6065
|
collectionIds: Array<Maybe<HelpCenterSuccessfullyDeletedUpdatedCollectionIds>>;
|
|
6039
6066
|
};
|
|
6040
|
-
export declare type HelpCenterHelpObject = HelpObjectStoreRequestForm | HelpObjectStoreArticle |
|
|
6067
|
+
export declare type HelpCenterHelpObject = HelpObjectStoreRequestForm | HelpObjectStoreArticle | HelpObjectStoreQueryError;
|
|
6041
6068
|
export declare type HelpCenterMutationApi = {
|
|
6042
6069
|
__typename?: 'HelpCenterMutationApi';
|
|
6043
6070
|
createCollection?: Maybe<HelpCenterCreateCollectionPayload>;
|
|
@@ -6069,11 +6096,7 @@ export declare type HelpCenterQueryApiHelpCenterCollectionArgs = {
|
|
|
6069
6096
|
helpCenterId: Scalars['ID'];
|
|
6070
6097
|
collectionId: Scalars['ID'];
|
|
6071
6098
|
};
|
|
6072
|
-
export declare type
|
|
6073
|
-
__typename?: 'HelpCenterQueryErrors';
|
|
6074
|
-
errors?: Maybe<Array<QueryError>>;
|
|
6075
|
-
};
|
|
6076
|
-
export declare type HelpCenterQueryResult = HelpCenter | HelpCenterQueryErrors;
|
|
6099
|
+
export declare type HelpCenterQueryResult = HelpCenter | QueryError;
|
|
6077
6100
|
export declare type HelpCenterSuccessfullyCreatedCollectionIds = {
|
|
6078
6101
|
__typename?: 'HelpCenterSuccessfullyCreatedCollectionIds';
|
|
6079
6102
|
helpCenterId: Scalars['ID'];
|
|
@@ -6104,14 +6127,14 @@ export declare type HelpCenterUpdateCollectionsOrderPayload = Payload & {
|
|
|
6104
6127
|
export declare type HelpObjectStoreArticle = HelpObjectStoreHelpObject & Node & {
|
|
6105
6128
|
__typename?: 'HelpObjectStoreArticle';
|
|
6106
6129
|
id: Scalars['ID'];
|
|
6107
|
-
title
|
|
6108
|
-
description
|
|
6130
|
+
title?: Maybe<Scalars['String']>;
|
|
6131
|
+
description?: Maybe<Scalars['String']>;
|
|
6109
6132
|
icon?: Maybe<HelpObjectStoreIcon>;
|
|
6110
|
-
displayLink
|
|
6133
|
+
displayLink?: Maybe<Scalars['URL']>;
|
|
6111
6134
|
entityId?: Maybe<Scalars['String']>;
|
|
6112
6135
|
entityProjectId?: Maybe<Scalars['String']>;
|
|
6113
6136
|
};
|
|
6114
|
-
export declare type HelpObjectStoreArticleResult = HelpObjectStoreArticle |
|
|
6137
|
+
export declare type HelpObjectStoreArticleResult = HelpObjectStoreArticle | HelpObjectStoreQueryError;
|
|
6115
6138
|
export declare type HelpObjectStoreBulkCreateEntityMappingInput = {
|
|
6116
6139
|
helpObjectStoreCreateEntityMappingInputItems: Array<HelpObjectStoreCreateEntityMappingInput>;
|
|
6117
6140
|
};
|
|
@@ -6128,10 +6151,10 @@ export declare type HelpObjectStoreCreateEntityMappingPayload = Payload & {
|
|
|
6128
6151
|
};
|
|
6129
6152
|
export declare type HelpObjectStoreHelpObject = {
|
|
6130
6153
|
id: Scalars['ID'];
|
|
6131
|
-
title
|
|
6132
|
-
description
|
|
6154
|
+
title?: Maybe<Scalars['String']>;
|
|
6155
|
+
description?: Maybe<Scalars['String']>;
|
|
6133
6156
|
icon?: Maybe<HelpObjectStoreIcon>;
|
|
6134
|
-
displayLink
|
|
6157
|
+
displayLink?: Maybe<Scalars['URL']>;
|
|
6135
6158
|
};
|
|
6136
6159
|
export declare enum HelpObjectStoreHelpObjectType {
|
|
6137
6160
|
RequestForm = "REQUEST_FORM",
|
|
@@ -6163,17 +6186,23 @@ export declare type HelpObjectStoreQueryApiRequestFormsArgs = {
|
|
|
6163
6186
|
export declare type HelpObjectStoreQueryApiArticlesArgs = {
|
|
6164
6187
|
ids: Array<Scalars['ID']>;
|
|
6165
6188
|
};
|
|
6189
|
+
export declare type HelpObjectStoreQueryError = {
|
|
6190
|
+
__typename?: 'HelpObjectStoreQueryError';
|
|
6191
|
+
id: Scalars['ID'];
|
|
6192
|
+
message?: Maybe<Scalars['String']>;
|
|
6193
|
+
extensions?: Maybe<Array<QueryErrorExtension>>;
|
|
6194
|
+
};
|
|
6166
6195
|
export declare type HelpObjectStoreRequestForm = HelpObjectStoreHelpObject & Node & {
|
|
6167
6196
|
__typename?: 'HelpObjectStoreRequestForm';
|
|
6168
6197
|
id: Scalars['ID'];
|
|
6169
|
-
title
|
|
6170
|
-
description
|
|
6198
|
+
title?: Maybe<Scalars['String']>;
|
|
6199
|
+
description?: Maybe<Scalars['String']>;
|
|
6171
6200
|
icon?: Maybe<HelpObjectStoreIcon>;
|
|
6172
|
-
displayLink
|
|
6201
|
+
displayLink?: Maybe<Scalars['URL']>;
|
|
6173
6202
|
entityId?: Maybe<Scalars['String']>;
|
|
6174
6203
|
entityProjectId?: Maybe<Scalars['String']>;
|
|
6175
6204
|
};
|
|
6176
|
-
export declare type HelpObjectStoreRequestFormResult = HelpObjectStoreRequestForm |
|
|
6205
|
+
export declare type HelpObjectStoreRequestFormResult = HelpObjectStoreRequestForm | HelpObjectStoreQueryError;
|
|
6177
6206
|
export declare type HelpObjectStoreSuccessfullyCreatedEntityMappingDetail = {
|
|
6178
6207
|
__typename?: 'HelpObjectStoreSuccessfullyCreatedEntityMappingDetail';
|
|
6179
6208
|
id: Scalars['ID'];
|
|
@@ -6266,10 +6295,6 @@ export declare type InvokePolarisObjectPayload = Payload & {
|
|
|
6266
6295
|
errors?: Maybe<Array<MutationError>>;
|
|
6267
6296
|
response?: Maybe<ResolvedPolarisObject>;
|
|
6268
6297
|
};
|
|
6269
|
-
export declare type IssueAndProject = {
|
|
6270
|
-
__typename?: 'IssueAndProject';
|
|
6271
|
-
issueId: Scalars['ID'];
|
|
6272
|
-
};
|
|
6273
6298
|
export declare type IssueDevOpsBranchDetails = {
|
|
6274
6299
|
__typename?: 'IssueDevOpsBranchDetails';
|
|
6275
6300
|
name: Scalars['String'];
|
|
@@ -7336,6 +7361,11 @@ export declare type JiraDefaultGrantTypeValue = Node & {
|
|
|
7336
7361
|
id: Scalars['ID'];
|
|
7337
7362
|
name: Scalars['String'];
|
|
7338
7363
|
};
|
|
7364
|
+
export declare enum JiraDeploymentsFeaturePrecondition {
|
|
7365
|
+
NotAvailable = "NOT_AVAILABLE",
|
|
7366
|
+
DeploymentsEmptyState = "DEPLOYMENTS_EMPTY_STATE",
|
|
7367
|
+
AllSatisfied = "ALL_SATISFIED"
|
|
7368
|
+
}
|
|
7339
7369
|
export declare type JiraDevOpsBranchDetails = {
|
|
7340
7370
|
__typename?: 'JiraDevOpsBranchDetails';
|
|
7341
7371
|
providerBranchId?: Maybe<Scalars['String']>;
|
|
@@ -7788,6 +7818,11 @@ export declare type JiraHierarchyConfigError = {
|
|
|
7788
7818
|
code?: Maybe<Scalars['String']>;
|
|
7789
7819
|
message?: Maybe<Scalars['String']>;
|
|
7790
7820
|
};
|
|
7821
|
+
export declare enum JiraInstallDeploymentsBannerPrecondition {
|
|
7822
|
+
NotAvailable = "NOT_AVAILABLE",
|
|
7823
|
+
FeatureNotEnabled = "FEATURE_NOT_ENABLED",
|
|
7824
|
+
DeploymentsEmptyState = "DEPLOYMENTS_EMPTY_STATE"
|
|
7825
|
+
}
|
|
7791
7826
|
export declare type JiraInvalidJqlError = {
|
|
7792
7827
|
__typename?: 'JiraInvalidJqlError';
|
|
7793
7828
|
messages?: Maybe<Array<Maybe<Scalars['String']>>>;
|
|
@@ -7875,6 +7910,10 @@ export declare type JiraIssueIssueLinksArgs = {
|
|
|
7875
7910
|
last?: Maybe<Scalars['Int']>;
|
|
7876
7911
|
before?: Maybe<Scalars['String']>;
|
|
7877
7912
|
};
|
|
7913
|
+
export declare type JiraIssueAndProject = {
|
|
7914
|
+
__typename?: 'JiraIssueAndProject';
|
|
7915
|
+
issueId: Scalars['ID'];
|
|
7916
|
+
};
|
|
7878
7917
|
export declare type JiraIssueBranchDevSummary = {
|
|
7879
7918
|
__typename?: 'JiraIssueBranchDevSummary';
|
|
7880
7919
|
count?: Maybe<Scalars['Int']>;
|
|
@@ -9602,6 +9641,7 @@ export declare type JiraProject = Node & {
|
|
|
9602
9641
|
projectType?: Maybe<JiraProjectType>;
|
|
9603
9642
|
status?: Maybe<JiraProjectStatus>;
|
|
9604
9643
|
similarIssues?: Maybe<JiraSimilarIssues>;
|
|
9644
|
+
devOpsToolRelationships?: Maybe<JiraProjectAndDevOpsToolRelationshipConnection>;
|
|
9605
9645
|
softwareBoards?: Maybe<BoardScopeConnection>;
|
|
9606
9646
|
repositoryRelationships?: Maybe<JiraProjectAndRepositoryRelationshipConnection>;
|
|
9607
9647
|
devOpsServiceRelationships?: Maybe<DevOpsServiceAndJiraProjectRelationshipConnection>;
|
|
@@ -9610,6 +9650,11 @@ export declare type JiraProject = Node & {
|
|
|
9610
9650
|
opsgenieTeamsAvailableToLinkWith?: Maybe<OpsgenieTeamConnection>;
|
|
9611
9651
|
confluenceSpaceRelationships?: Maybe<JiraProjectAndConfluenceSpaceRelationshipConnection>;
|
|
9612
9652
|
};
|
|
9653
|
+
export declare type JiraProjectDevOpsToolRelationshipsArgs = {
|
|
9654
|
+
limit?: Maybe<Scalars['Int']>;
|
|
9655
|
+
after?: Maybe<Scalars['String']>;
|
|
9656
|
+
filter?: Maybe<JiraProjectAndDevOpsToolRelationshipFilter>;
|
|
9657
|
+
};
|
|
9613
9658
|
export declare type JiraProjectRepositoryRelationshipsArgs = {
|
|
9614
9659
|
first?: Maybe<Scalars['Int']>;
|
|
9615
9660
|
after?: Maybe<Scalars['String']>;
|
|
@@ -9678,6 +9723,12 @@ export declare type JiraProjectAndDevOpsToolRelationship = Node & {
|
|
|
9678
9723
|
export declare type JiraProjectAndDevOpsToolRelationshipPropertiesArgs = {
|
|
9679
9724
|
keys: Array<Scalars['String']>;
|
|
9680
9725
|
};
|
|
9726
|
+
export declare type JiraProjectAndDevOpsToolRelationshipConnection = {
|
|
9727
|
+
__typename?: 'JiraProjectAndDevOpsToolRelationshipConnection';
|
|
9728
|
+
edges?: Maybe<Array<Maybe<JiraProjectAndDevOpsToolRelationshipEdge>>>;
|
|
9729
|
+
nodes?: Maybe<Array<Maybe<JiraProjectAndDevOpsToolRelationship>>>;
|
|
9730
|
+
pageInfo: PageInfo;
|
|
9731
|
+
};
|
|
9681
9732
|
export declare type JiraProjectAndDevOpsToolRelationshipCreateInput = {
|
|
9682
9733
|
jiraProjectId: Scalars['ID'];
|
|
9683
9734
|
devOpsToolId: Scalars['ID'];
|
|
@@ -9698,6 +9749,14 @@ export declare type JiraProjectAndDevOpsToolRelationshipDeletePayload = {
|
|
|
9698
9749
|
success: Scalars['Boolean'];
|
|
9699
9750
|
errors?: Maybe<Array<MutationError>>;
|
|
9700
9751
|
};
|
|
9752
|
+
export declare type JiraProjectAndDevOpsToolRelationshipEdge = {
|
|
9753
|
+
__typename?: 'JiraProjectAndDevOpsToolRelationshipEdge';
|
|
9754
|
+
node?: Maybe<JiraProjectAndDevOpsToolRelationship>;
|
|
9755
|
+
cursor?: Maybe<Scalars['String']>;
|
|
9756
|
+
};
|
|
9757
|
+
export declare type JiraProjectAndDevOpsToolRelationshipFilter = {
|
|
9758
|
+
withPropertyEqualTo?: Maybe<DevOpsContainerRelationshipEntityPropertyInput>;
|
|
9759
|
+
};
|
|
9701
9760
|
export declare type JiraProjectAndOpsgenieTeamRelationship = Node & {
|
|
9702
9761
|
__typename?: 'JiraProjectAndOpsgenieTeamRelationship';
|
|
9703
9762
|
id: Scalars['ID'];
|
|
@@ -9915,6 +9974,8 @@ export declare type JiraQuery = {
|
|
|
9915
9974
|
issueSearchViewByNamespaceAndViewId?: Maybe<JiraIssueSearchView>;
|
|
9916
9975
|
issueSearchStable?: Maybe<JiraIssueConnection>;
|
|
9917
9976
|
devOps?: Maybe<JiraDevOpsQuery>;
|
|
9977
|
+
deploymentsFeaturePrecondition?: Maybe<JiraDeploymentsFeaturePrecondition>;
|
|
9978
|
+
installDeploymentsBannerPrecondition?: Maybe<JiraInstallDeploymentsBannerPrecondition>;
|
|
9918
9979
|
};
|
|
9919
9980
|
export declare type JiraQueryJiraProjectArgs = {
|
|
9920
9981
|
id: Scalars['ID'];
|
|
@@ -10047,6 +10108,12 @@ export declare type JiraQueryIssueSearchStableArgs = {
|
|
|
10047
10108
|
last?: Maybe<Scalars['Int']>;
|
|
10048
10109
|
before?: Maybe<Scalars['String']>;
|
|
10049
10110
|
};
|
|
10111
|
+
export declare type JiraQueryDeploymentsFeaturePreconditionArgs = {
|
|
10112
|
+
projectId: Scalars['ID'];
|
|
10113
|
+
};
|
|
10114
|
+
export declare type JiraQueryInstallDeploymentsBannerPreconditionArgs = {
|
|
10115
|
+
projectId: Scalars['ID'];
|
|
10116
|
+
};
|
|
10050
10117
|
export declare type JiraRadioSelectField = Node & JiraIssueField & JiraIssueFieldConfiguration & JiraUserIssueFieldConfiguration & {
|
|
10051
10118
|
__typename?: 'JiraRadioSelectField';
|
|
10052
10119
|
id: Scalars['ID'];
|
|
@@ -12022,6 +12089,7 @@ export declare type Mutation = {
|
|
|
12022
12089
|
createPolarisDecoration?: Maybe<CreatePolarisDecorationPayload>;
|
|
12023
12090
|
updatePolarisDecoration?: Maybe<UpdatePolarisDecorationPayload>;
|
|
12024
12091
|
deletePolarisDecoration?: Maybe<DeletePolarisDecorationPayload>;
|
|
12092
|
+
createPolarisIdeaTemplate?: Maybe<CreatePolarisIdeaTemplatePayload>;
|
|
12025
12093
|
updatePolarisIdea?: Maybe<UpdatePolarisIdeaPayload>;
|
|
12026
12094
|
createPolarisInsight?: Maybe<CreatePolarisInsightPayload>;
|
|
12027
12095
|
updatePolarisInsight?: Maybe<UpdatePolarisInsightPayload>;
|
|
@@ -12079,6 +12147,9 @@ export declare type MutationCreateJiraProjectAndDevOpsToolRelationshipArgs = {
|
|
|
12079
12147
|
export declare type MutationDeleteJiraProjectAndDevOpsToolRelationshipArgs = {
|
|
12080
12148
|
input: JiraProjectAndDevOpsToolRelationshipDeleteInput;
|
|
12081
12149
|
};
|
|
12150
|
+
export declare type MutationHelpObjectStoreArgs = {
|
|
12151
|
+
cloudId: Scalars['ID'];
|
|
12152
|
+
};
|
|
12082
12153
|
export declare type MutationCreateColumnArgs = {
|
|
12083
12154
|
input?: Maybe<CreateColumnInput>;
|
|
12084
12155
|
};
|
|
@@ -12184,6 +12255,7 @@ export declare type MutationCreateReleaseNoteArgs = {
|
|
|
12184
12255
|
description: Scalars['JSON'];
|
|
12185
12256
|
changeCategory?: Maybe<Scalars['String']>;
|
|
12186
12257
|
benefitsList?: Maybe<Scalars['JSON']>;
|
|
12258
|
+
featureRolloutEndDate?: Maybe<Scalars['DateTime']>;
|
|
12187
12259
|
};
|
|
12188
12260
|
export declare type MutationPublishReleaseNoteArgs = {
|
|
12189
12261
|
id: Scalars['String'];
|
|
@@ -12202,6 +12274,7 @@ export declare type MutationUpdateReleaseNoteArgs = {
|
|
|
12202
12274
|
changeCategory?: Maybe<Scalars['String']>;
|
|
12203
12275
|
relatedContexts?: Maybe<Array<Scalars['String']>>;
|
|
12204
12276
|
relatedContextIds?: Maybe<Array<Scalars['String']>>;
|
|
12277
|
+
featureRolloutEndDate?: Maybe<Scalars['DateTime']>;
|
|
12205
12278
|
};
|
|
12206
12279
|
export declare type MutationUpdateNavbarConnectionStateTabSeenArgs = {
|
|
12207
12280
|
input: DevOpsToolUpdateNavbarConnectionStateTabSeenInput;
|
|
@@ -12340,6 +12413,9 @@ export declare type MutationUpdatePolarisDecorationArgs = {
|
|
|
12340
12413
|
export declare type MutationDeletePolarisDecorationArgs = {
|
|
12341
12414
|
id: Scalars['ID'];
|
|
12342
12415
|
};
|
|
12416
|
+
export declare type MutationCreatePolarisIdeaTemplateArgs = {
|
|
12417
|
+
input: CreatePolarisIdeaTemplateInput;
|
|
12418
|
+
};
|
|
12343
12419
|
export declare type MutationUpdatePolarisIdeaArgs = {
|
|
12344
12420
|
project: Scalars['ID'];
|
|
12345
12421
|
idea: Scalars['ID'];
|
|
@@ -12578,7 +12654,7 @@ export declare type NewCardParent = {
|
|
|
12578
12654
|
export declare type Node = {
|
|
12579
12655
|
id: Scalars['ID'];
|
|
12580
12656
|
};
|
|
12581
|
-
export declare type OnJiraIssueCreatedForUserResponseType = JiraProjectConnection |
|
|
12657
|
+
export declare type OnJiraIssueCreatedForUserResponseType = JiraProjectConnection | JiraIssueAndProject;
|
|
12582
12658
|
export declare type OpsgenieAlertCountByPriority = {
|
|
12583
12659
|
__typename?: 'OpsgenieAlertCountByPriority';
|
|
12584
12660
|
priority?: Maybe<Scalars['String']>;
|
|
@@ -13233,6 +13309,17 @@ export declare type PolarisIdeaStringField = PolarisIdeaField & {
|
|
|
13233
13309
|
emoji?: Maybe<Scalars['String']>;
|
|
13234
13310
|
builtin?: Maybe<BuiltinPolarisIdeaField>;
|
|
13235
13311
|
};
|
|
13312
|
+
export declare type PolarisIdeaTemplate = {
|
|
13313
|
+
__typename?: 'PolarisIdeaTemplate';
|
|
13314
|
+
id: Scalars['ID'];
|
|
13315
|
+
title: Scalars['String'];
|
|
13316
|
+
description?: Maybe<Scalars['String']>;
|
|
13317
|
+
color?: Maybe<Scalars['String']>;
|
|
13318
|
+
emoji?: Maybe<Scalars['String']>;
|
|
13319
|
+
template?: Maybe<Scalars['JSON']>;
|
|
13320
|
+
project?: Maybe<Scalars['ID']>;
|
|
13321
|
+
aaid?: Maybe<Scalars['String']>;
|
|
13322
|
+
};
|
|
13236
13323
|
export declare type PolarisIdeaType = {
|
|
13237
13324
|
__typename?: 'PolarisIdeaType';
|
|
13238
13325
|
id: Scalars['ID'];
|
|
@@ -13814,6 +13901,7 @@ export declare type Query = {
|
|
|
13814
13901
|
polarisAnonymousVisitorHashByID?: Maybe<PolarisAnonymousVisitorHash>;
|
|
13815
13902
|
polarisLinkedDeliveryTickets?: Maybe<Array<Maybe<Scalars['JSON']>>>;
|
|
13816
13903
|
polaris?: Maybe<PolarisQueryNamespace>;
|
|
13904
|
+
polarisIdeaTemplates?: Maybe<Array<PolarisIdeaTemplate>>;
|
|
13817
13905
|
appActiveTunnels?: Maybe<AppTunnelDefinitions>;
|
|
13818
13906
|
dvcs?: Maybe<DvcsQuery>;
|
|
13819
13907
|
webTriggerUrlsByAppContext?: Maybe<Array<WebTriggerUrl>>;
|
|
@@ -14077,6 +14165,9 @@ export declare type QueryPolarisLinkedDeliveryTicketsArgs = {
|
|
|
14077
14165
|
project: Scalars['ID'];
|
|
14078
14166
|
issueIds?: Maybe<Array<Scalars['Int']>>;
|
|
14079
14167
|
};
|
|
14168
|
+
export declare type QueryPolarisIdeaTemplatesArgs = {
|
|
14169
|
+
project: Scalars['ID'];
|
|
14170
|
+
};
|
|
14080
14171
|
export declare type QueryAppActiveTunnelsArgs = {
|
|
14081
14172
|
appId: Scalars['ID'];
|
|
14082
14173
|
environmentId: Scalars['ID'];
|
|
@@ -14378,6 +14469,7 @@ export declare type RoadmapFilterConfiguration = {
|
|
|
14378
14469
|
};
|
|
14379
14470
|
export declare type RoadmapHealthCheck = {
|
|
14380
14471
|
__typename?: 'RoadmapHealthCheck';
|
|
14472
|
+
id?: Maybe<Scalars['ID']>;
|
|
14381
14473
|
title: Scalars['String'];
|
|
14382
14474
|
explanation: Scalars['String'];
|
|
14383
14475
|
learnMore: RoadmapHealthCheckLink;
|
|
@@ -14823,6 +14915,10 @@ export declare type SearchAnalyticsInput = {
|
|
|
14823
14915
|
searchSessionId?: Maybe<Scalars['String']>;
|
|
14824
14916
|
searchReferrerId?: Maybe<Scalars['String']>;
|
|
14825
14917
|
};
|
|
14918
|
+
export declare type SearchBoardFilter = {
|
|
14919
|
+
projectARI: Scalars['String'];
|
|
14920
|
+
negateProjectFilter?: Maybe<Scalars['Boolean']>;
|
|
14921
|
+
};
|
|
14826
14922
|
export declare type SearchConfluenceFilter = {
|
|
14827
14923
|
spacesFilter?: Maybe<Array<Scalars['String']>>;
|
|
14828
14924
|
contributorsFilter?: Maybe<Array<Scalars['String']>>;
|
|
@@ -14837,8 +14933,8 @@ export declare type SearchConfluencePageBlogAttachment = SearchResult & {
|
|
|
14837
14933
|
id: Scalars['ID'];
|
|
14838
14934
|
title: Scalars['String'];
|
|
14839
14935
|
url: Scalars['URL'];
|
|
14840
|
-
iconUrl
|
|
14841
|
-
type:
|
|
14936
|
+
iconUrl?: Maybe<Scalars['URL']>;
|
|
14937
|
+
type: SearchResultType;
|
|
14842
14938
|
description: Scalars['String'];
|
|
14843
14939
|
lastModifiedDate?: Maybe<Scalars['DateTime']>;
|
|
14844
14940
|
space?: Maybe<SearchSpace>;
|
|
@@ -14857,8 +14953,8 @@ export declare type SearchConfluenceSpace = SearchResult & {
|
|
|
14857
14953
|
id: Scalars['ID'];
|
|
14858
14954
|
title: Scalars['String'];
|
|
14859
14955
|
url: Scalars['URL'];
|
|
14860
|
-
iconUrl
|
|
14861
|
-
type:
|
|
14956
|
+
iconUrl?: Maybe<Scalars['URL']>;
|
|
14957
|
+
type: SearchResultType;
|
|
14862
14958
|
description: Scalars['String'];
|
|
14863
14959
|
lastModifiedDate?: Maybe<Scalars['DateTime']>;
|
|
14864
14960
|
};
|
|
@@ -14871,8 +14967,8 @@ export declare type SearchDefaultResult = SearchResult & {
|
|
|
14871
14967
|
id: Scalars['ID'];
|
|
14872
14968
|
title: Scalars['String'];
|
|
14873
14969
|
url: Scalars['URL'];
|
|
14874
|
-
iconUrl
|
|
14875
|
-
type:
|
|
14970
|
+
iconUrl?: Maybe<Scalars['URL']>;
|
|
14971
|
+
type: SearchResultType;
|
|
14876
14972
|
description: Scalars['String'];
|
|
14877
14973
|
lastModifiedDate?: Maybe<Scalars['DateTime']>;
|
|
14878
14974
|
};
|
|
@@ -14880,6 +14976,7 @@ export declare type SearchFilterInput = {
|
|
|
14880
14976
|
entities: Array<Scalars['String']>;
|
|
14881
14977
|
locations: Array<Scalars['String']>;
|
|
14882
14978
|
confluenceFilters?: Maybe<SearchConfluenceFilter>;
|
|
14979
|
+
jiraFilters?: Maybe<SearchJiraFilter>;
|
|
14883
14980
|
};
|
|
14884
14981
|
export declare type SearchItemConnection = {
|
|
14885
14982
|
__typename?: 'SearchItemConnection';
|
|
@@ -14887,31 +14984,91 @@ export declare type SearchItemConnection = {
|
|
|
14887
14984
|
pageInfo: PageInfo;
|
|
14888
14985
|
totalCount?: Maybe<Scalars['Int']>;
|
|
14889
14986
|
};
|
|
14987
|
+
export declare type SearchJiraFilter = {
|
|
14988
|
+
boardFilter?: Maybe<SearchBoardFilter>;
|
|
14989
|
+
};
|
|
14990
|
+
export declare enum SearchProjectType {
|
|
14991
|
+
Software = "software",
|
|
14992
|
+
Business = "business",
|
|
14993
|
+
ServiceDesk = "service_desk",
|
|
14994
|
+
ProductDiscovery = "product_discovery"
|
|
14995
|
+
}
|
|
14890
14996
|
export declare type SearchQueryApi = {
|
|
14891
14997
|
__typename?: 'SearchQueryAPI';
|
|
14892
14998
|
search: SearchItemConnection;
|
|
14893
14999
|
};
|
|
14894
15000
|
export declare type SearchQueryApiSearchArgs = {
|
|
14895
15001
|
query?: Maybe<Scalars['String']>;
|
|
14896
|
-
filters
|
|
15002
|
+
filters: SearchFilterInput;
|
|
14897
15003
|
analytics?: Maybe<SearchAnalyticsInput>;
|
|
14898
15004
|
experience: Scalars['String'];
|
|
14899
15005
|
first?: Maybe<Scalars['Int']>;
|
|
15006
|
+
after?: Maybe<Scalars['String']>;
|
|
15007
|
+
before?: Maybe<Scalars['String']>;
|
|
15008
|
+
last?: Maybe<Scalars['Int']>;
|
|
14900
15009
|
};
|
|
14901
15010
|
export declare type SearchResult = {
|
|
14902
15011
|
id: Scalars['ID'];
|
|
14903
15012
|
title: Scalars['String'];
|
|
14904
15013
|
url: Scalars['URL'];
|
|
14905
|
-
iconUrl
|
|
14906
|
-
type:
|
|
15014
|
+
iconUrl?: Maybe<Scalars['URL']>;
|
|
15015
|
+
type: SearchResultType;
|
|
14907
15016
|
description: Scalars['String'];
|
|
14908
|
-
lastModifiedDate?: Maybe<Scalars['DateTime']>;
|
|
14909
15017
|
};
|
|
14910
15018
|
export declare type SearchResultItemEdge = {
|
|
14911
15019
|
__typename?: 'SearchResultItemEdge';
|
|
14912
15020
|
node?: Maybe<SearchResult>;
|
|
14913
15021
|
cursor?: Maybe<Scalars['String']>;
|
|
14914
15022
|
};
|
|
15023
|
+
export declare type SearchResultJiraBoard = SearchResult & {
|
|
15024
|
+
__typename?: 'SearchResultJiraBoard';
|
|
15025
|
+
id: Scalars['ID'];
|
|
15026
|
+
title: Scalars['String'];
|
|
15027
|
+
url: Scalars['URL'];
|
|
15028
|
+
iconUrl?: Maybe<Scalars['URL']>;
|
|
15029
|
+
type: SearchResultType;
|
|
15030
|
+
description: Scalars['String'];
|
|
15031
|
+
favourite: Scalars['Boolean'];
|
|
15032
|
+
boardId: Scalars['String'];
|
|
15033
|
+
container?: Maybe<SearchResultJiraBoardContainer>;
|
|
15034
|
+
};
|
|
15035
|
+
export declare type SearchResultJiraBoardContainer = SearchResultJiraBoardProjectContainer | SearchResultJiraBoardUserContainer;
|
|
15036
|
+
export declare type SearchResultJiraBoardProjectContainer = {
|
|
15037
|
+
__typename?: 'SearchResultJiraBoardProjectContainer';
|
|
15038
|
+
projectId: Scalars['ID'];
|
|
15039
|
+
projectKey: Scalars['String'];
|
|
15040
|
+
projectName: Scalars['String'];
|
|
15041
|
+
projectTypeKey: SearchProjectType;
|
|
15042
|
+
};
|
|
15043
|
+
export declare type SearchResultJiraBoardUserContainer = {
|
|
15044
|
+
__typename?: 'SearchResultJiraBoardUserContainer';
|
|
15045
|
+
userId: Scalars['ID'];
|
|
15046
|
+
userAccountId: Scalars['String'];
|
|
15047
|
+
userName: Scalars['String'];
|
|
15048
|
+
};
|
|
15049
|
+
export declare type SearchResultJiraProject = SearchResult & {
|
|
15050
|
+
__typename?: 'SearchResultJiraProject';
|
|
15051
|
+
id: Scalars['ID'];
|
|
15052
|
+
projectType: SearchProjectType;
|
|
15053
|
+
projectId: Scalars['String'];
|
|
15054
|
+
projectKey: Scalars['String'];
|
|
15055
|
+
title: Scalars['String'];
|
|
15056
|
+
url: Scalars['URL'];
|
|
15057
|
+
iconUrl?: Maybe<Scalars['URL']>;
|
|
15058
|
+
type: SearchResultType;
|
|
15059
|
+
description: Scalars['String'];
|
|
15060
|
+
favourite: Scalars['Boolean'];
|
|
15061
|
+
simplified: Scalars['Boolean'];
|
|
15062
|
+
};
|
|
15063
|
+
export declare enum SearchResultType {
|
|
15064
|
+
Blogpost = "blogpost",
|
|
15065
|
+
Space = "space",
|
|
15066
|
+
Board = "board",
|
|
15067
|
+
Filter = "filter",
|
|
15068
|
+
Issue = "issue",
|
|
15069
|
+
Plan = "plan",
|
|
15070
|
+
Project = "project"
|
|
15071
|
+
}
|
|
14915
15072
|
export declare type SearchSpace = {
|
|
14916
15073
|
__typename?: 'SearchSpace';
|
|
14917
15074
|
key: Scalars['String'];
|
|
@@ -15040,6 +15197,7 @@ export declare type ShepherdAlert = {
|
|
|
15040
15197
|
id: Scalars['ID'];
|
|
15041
15198
|
orgId: Scalars['ID'];
|
|
15042
15199
|
status: ShepherdAlertStatus;
|
|
15200
|
+
template?: Maybe<ShepherdAlertTemplateType>;
|
|
15043
15201
|
title: Scalars['String'];
|
|
15044
15202
|
updatedOn?: Maybe<Scalars['DateTime']>;
|
|
15045
15203
|
};
|
|
@@ -15064,6 +15222,15 @@ export declare enum ShepherdAlertStatus {
|
|
|
15064
15222
|
Triaged = "TRIAGED",
|
|
15065
15223
|
Untriaged = "UNTRIAGED"
|
|
15066
15224
|
}
|
|
15225
|
+
export declare enum ShepherdAlertTemplateType {
|
|
15226
|
+
AddedOrgAdmin = "ADDED_ORG_ADMIN",
|
|
15227
|
+
CreatedSamlConfig = "CREATED_SAML_CONFIG",
|
|
15228
|
+
Default = "DEFAULT",
|
|
15229
|
+
EnabledGsyncSso = "ENABLED_GSYNC_SSO",
|
|
15230
|
+
EnableScimSync = "ENABLE_SCIM_SYNC",
|
|
15231
|
+
TokenCreated = "TOKEN_CREATED",
|
|
15232
|
+
UserGrantedRole = "USER_GRANTED_ROLE"
|
|
15233
|
+
}
|
|
15067
15234
|
export declare type ShepherdAlertsConnection = {
|
|
15068
15235
|
__typename?: 'ShepherdAlertsConnection';
|
|
15069
15236
|
edges?: Maybe<Array<Maybe<ShepherdAlertEdge>>>;
|
|
@@ -15080,6 +15247,7 @@ export declare type ShepherdCreateAlertInput = {
|
|
|
15080
15247
|
cloudId?: Maybe<Scalars['ID']>;
|
|
15081
15248
|
orgId: Scalars['ID'];
|
|
15082
15249
|
status?: Maybe<ShepherdAlertStatus>;
|
|
15250
|
+
template?: Maybe<ShepherdAlertTemplateType>;
|
|
15083
15251
|
title: Scalars['String'];
|
|
15084
15252
|
};
|
|
15085
15253
|
export declare type ShepherdCreateAlertPayload = Payload & {
|
|
@@ -15092,6 +15260,15 @@ export declare type ShepherdCreateEmailInput = {
|
|
|
15092
15260
|
email?: Maybe<Scalars['String']>;
|
|
15093
15261
|
status?: Maybe<ShepherdSubscriptionStatus>;
|
|
15094
15262
|
};
|
|
15263
|
+
export declare type ShepherdCreateExampleAlertInput = {
|
|
15264
|
+
orgId: Scalars['ID'];
|
|
15265
|
+
};
|
|
15266
|
+
export declare type ShepherdCreateExampleAlertPayload = Payload & {
|
|
15267
|
+
__typename?: 'ShepherdCreateExampleAlertPayload';
|
|
15268
|
+
errors?: Maybe<Array<MutationError>>;
|
|
15269
|
+
node?: Maybe<ShepherdAlert>;
|
|
15270
|
+
success: Scalars['Boolean'];
|
|
15271
|
+
};
|
|
15095
15272
|
export declare type ShepherdCreateOrganizationInput = {
|
|
15096
15273
|
enabled?: Maybe<Scalars['Boolean']>;
|
|
15097
15274
|
id: Scalars['ID'];
|
|
@@ -15151,6 +15328,7 @@ export declare type ShepherdGenericQueryErrorExtension = QueryErrorExtension & {
|
|
|
15151
15328
|
export declare type ShepherdMutation = {
|
|
15152
15329
|
__typename?: 'ShepherdMutation';
|
|
15153
15330
|
createAlert?: Maybe<ShepherdCreateAlertPayload>;
|
|
15331
|
+
createExampleAlert?: Maybe<ShepherdCreateExampleAlertPayload>;
|
|
15154
15332
|
createOrganization?: Maybe<ShepherdCreateOrganizationPayload>;
|
|
15155
15333
|
createSubscription?: Maybe<ShepherdCreateSubscriptionPayload>;
|
|
15156
15334
|
updateAlert?: Maybe<ShepherdUpdateAlertPayload>;
|
|
@@ -15160,6 +15338,9 @@ export declare type ShepherdMutation = {
|
|
|
15160
15338
|
export declare type ShepherdMutationCreateAlertArgs = {
|
|
15161
15339
|
input: ShepherdCreateAlertInput;
|
|
15162
15340
|
};
|
|
15341
|
+
export declare type ShepherdMutationCreateExampleAlertArgs = {
|
|
15342
|
+
input: ShepherdCreateExampleAlertInput;
|
|
15343
|
+
};
|
|
15163
15344
|
export declare type ShepherdMutationCreateOrganizationArgs = {
|
|
15164
15345
|
input: ShepherdCreateOrganizationInput;
|
|
15165
15346
|
};
|
|
@@ -15560,6 +15741,7 @@ export declare type Storage = {
|
|
|
15560
15741
|
export declare type Subscription = {
|
|
15561
15742
|
__typename?: 'Subscription';
|
|
15562
15743
|
onJiraIssueCreatedForUser?: Maybe<OnJiraIssueCreatedForUserResponseType>;
|
|
15744
|
+
onActivityItemUpdate?: Maybe<Node>;
|
|
15563
15745
|
};
|
|
15564
15746
|
export declare type SubscriptionOnJiraIssueCreatedForUserArgs = {
|
|
15565
15747
|
cloudId: Scalars['ID'];
|
|
@@ -15567,6 +15749,9 @@ export declare type SubscriptionOnJiraIssueCreatedForUserArgs = {
|
|
|
15567
15749
|
projectType?: JiraProjectType;
|
|
15568
15750
|
filter?: JiraProjectFilterInput;
|
|
15569
15751
|
};
|
|
15752
|
+
export declare type SubscriptionOnActivityItemUpdateArgs = {
|
|
15753
|
+
issueId: Scalars['ID'];
|
|
15754
|
+
};
|
|
15570
15755
|
export declare type SupportRequest = {
|
|
15571
15756
|
__typename?: 'SupportRequest';
|
|
15572
15757
|
id: Scalars['ID'];
|