@forge/cli-shared 2.4.1-next.7 → 2.4.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,20 @@
|
|
|
1
1
|
# @forge/cli-shared
|
|
2
2
|
|
|
3
|
+
## 2.4.1
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- Updated dependencies [1a8d47c]
|
|
8
|
+
- Updated dependencies [e314dd0]
|
|
9
|
+
- Updated dependencies [0137135]
|
|
10
|
+
- Updated dependencies [2bd062d]
|
|
11
|
+
- Updated dependencies [9047581]
|
|
12
|
+
- Updated dependencies [5c9419f]
|
|
13
|
+
- Updated dependencies [e8a6926]
|
|
14
|
+
- Updated dependencies [cb28bc0]
|
|
15
|
+
- Updated dependencies [0920759]
|
|
16
|
+
- @forge/manifest@3.6.0
|
|
17
|
+
|
|
3
18
|
## 2.4.1-next.7
|
|
4
19
|
|
|
5
20
|
### Patch Changes
|
|
@@ -3845,6 +3845,7 @@ export declare type ContentPlatformReleaseNote = {
|
|
|
3845
3845
|
supportingVisuals?: Maybe<Array<ContentPlatformImageComponent>>;
|
|
3846
3846
|
relatedContentLinks?: Maybe<Array<Scalars['String']>>;
|
|
3847
3847
|
featureRolloutDate?: Maybe<Scalars['String']>;
|
|
3848
|
+
featureRolloutEndDate?: Maybe<Scalars['String']>;
|
|
3848
3849
|
changeCategory?: Maybe<ContentPlatformTaxonomyChangeCategory>;
|
|
3849
3850
|
releaseNoteFlag?: Maybe<Scalars['String']>;
|
|
3850
3851
|
releaseNoteFlagOffValue?: Maybe<Scalars['String']>;
|
|
@@ -4280,6 +4281,20 @@ export declare type CreatePolarisDecorationPayload = Payload & {
|
|
|
4280
4281
|
errors?: Maybe<Array<MutationError>>;
|
|
4281
4282
|
node?: Maybe<PolarisDecoration>;
|
|
4282
4283
|
};
|
|
4284
|
+
export declare type CreatePolarisIdeaTemplateInput = {
|
|
4285
|
+
project: Scalars['ID'];
|
|
4286
|
+
title: Scalars['String'];
|
|
4287
|
+
description?: Maybe<Scalars['String']>;
|
|
4288
|
+
color?: Maybe<Scalars['String']>;
|
|
4289
|
+
emoji?: Maybe<Scalars['String']>;
|
|
4290
|
+
template?: Maybe<Scalars['JSON']>;
|
|
4291
|
+
};
|
|
4292
|
+
export declare type CreatePolarisIdeaTemplatePayload = {
|
|
4293
|
+
__typename?: 'CreatePolarisIdeaTemplatePayload';
|
|
4294
|
+
success: Scalars['Boolean'];
|
|
4295
|
+
errors?: Maybe<Array<MutationError>>;
|
|
4296
|
+
node?: Maybe<PolarisIdeaTemplate>;
|
|
4297
|
+
};
|
|
4283
4298
|
export declare type CreatePolarisInsightFromPlayContributionInput = {
|
|
4284
4299
|
contribution: Scalars['ID'];
|
|
4285
4300
|
subject?: Maybe<Scalars['ID']>;
|
|
@@ -5532,6 +5547,7 @@ export declare type DevOpsToolsToolsArgs = {
|
|
|
5532
5547
|
recommended?: Maybe<Scalars['Boolean']>;
|
|
5533
5548
|
groupId?: Maybe<Scalars['String']>;
|
|
5534
5549
|
categoryId?: Maybe<Scalars['String']>;
|
|
5550
|
+
installed?: Maybe<Scalars['Boolean']>;
|
|
5535
5551
|
supportsContainers?: Maybe<Scalars['Boolean']>;
|
|
5536
5552
|
integrationType?: Maybe<DevOpsToolIntegrationType>;
|
|
5537
5553
|
};
|
|
@@ -5776,6 +5792,7 @@ export declare type ForgeMetricsErrorsData = ForgeMetricsData & {
|
|
|
5776
5792
|
type: ForgeMetricsDataType;
|
|
5777
5793
|
series: Array<ForgeMetricsErrorsSeries>;
|
|
5778
5794
|
resolution: ForgeMetricsResolution;
|
|
5795
|
+
interval: ForgeMetricsIntervalRange;
|
|
5779
5796
|
};
|
|
5780
5797
|
export declare type ForgeMetricsErrorsDataPoint = {
|
|
5781
5798
|
__typename?: 'ForgeMetricsErrorsDataPoint';
|
|
@@ -5802,12 +5819,18 @@ export declare type ForgeMetricsIntervalInput = {
|
|
|
5802
5819
|
start: Scalars['DateTime'];
|
|
5803
5820
|
end: Scalars['DateTime'];
|
|
5804
5821
|
};
|
|
5822
|
+
export declare type ForgeMetricsIntervalRange = {
|
|
5823
|
+
__typename?: 'ForgeMetricsIntervalRange';
|
|
5824
|
+
start: Scalars['DateTime'];
|
|
5825
|
+
end: Scalars['DateTime'];
|
|
5826
|
+
};
|
|
5805
5827
|
export declare type ForgeMetricsInvocationData = ForgeMetricsData & {
|
|
5806
5828
|
__typename?: 'ForgeMetricsInvocationData';
|
|
5807
5829
|
name: Scalars['String'];
|
|
5808
5830
|
type: ForgeMetricsDataType;
|
|
5809
5831
|
series: Array<ForgeMetricsInvocationSeries>;
|
|
5810
5832
|
resolution: ForgeMetricsResolution;
|
|
5833
|
+
interval: ForgeMetricsIntervalRange;
|
|
5811
5834
|
};
|
|
5812
5835
|
export declare type ForgeMetricsInvocationDataPoint = {
|
|
5813
5836
|
__typename?: 'ForgeMetricsInvocationDataPoint';
|
|
@@ -5893,6 +5916,7 @@ export declare type ForgeMetricsSuccessRateData = ForgeMetricsData & {
|
|
|
5893
5916
|
type: ForgeMetricsDataType;
|
|
5894
5917
|
series: Array<ForgeMetricsSuccessRateSeries>;
|
|
5895
5918
|
resolution: ForgeMetricsResolution;
|
|
5919
|
+
interval: ForgeMetricsIntervalRange;
|
|
5896
5920
|
};
|
|
5897
5921
|
export declare type ForgeMetricsSuccessRateDataPoint = {
|
|
5898
5922
|
__typename?: 'ForgeMetricsSuccessRateDataPoint';
|
|
@@ -6037,7 +6061,7 @@ export declare type HelpCenterDeleteUpdateCollectionPayload = Payload & {
|
|
|
6037
6061
|
errors?: Maybe<Array<MutationError>>;
|
|
6038
6062
|
collectionIds: Array<Maybe<HelpCenterSuccessfullyDeletedUpdatedCollectionIds>>;
|
|
6039
6063
|
};
|
|
6040
|
-
export declare type HelpCenterHelpObject = HelpObjectStoreRequestForm | HelpObjectStoreArticle |
|
|
6064
|
+
export declare type HelpCenterHelpObject = HelpObjectStoreRequestForm | HelpObjectStoreArticle | HelpObjectStoreQueryError;
|
|
6041
6065
|
export declare type HelpCenterMutationApi = {
|
|
6042
6066
|
__typename?: 'HelpCenterMutationApi';
|
|
6043
6067
|
createCollection?: Maybe<HelpCenterCreateCollectionPayload>;
|
|
@@ -6104,14 +6128,14 @@ export declare type HelpCenterUpdateCollectionsOrderPayload = Payload & {
|
|
|
6104
6128
|
export declare type HelpObjectStoreArticle = HelpObjectStoreHelpObject & Node & {
|
|
6105
6129
|
__typename?: 'HelpObjectStoreArticle';
|
|
6106
6130
|
id: Scalars['ID'];
|
|
6107
|
-
title
|
|
6108
|
-
description
|
|
6131
|
+
title?: Maybe<Scalars['String']>;
|
|
6132
|
+
description?: Maybe<Scalars['String']>;
|
|
6109
6133
|
icon?: Maybe<HelpObjectStoreIcon>;
|
|
6110
|
-
displayLink
|
|
6134
|
+
displayLink?: Maybe<Scalars['URL']>;
|
|
6111
6135
|
entityId?: Maybe<Scalars['String']>;
|
|
6112
6136
|
entityProjectId?: Maybe<Scalars['String']>;
|
|
6113
6137
|
};
|
|
6114
|
-
export declare type HelpObjectStoreArticleResult = HelpObjectStoreArticle |
|
|
6138
|
+
export declare type HelpObjectStoreArticleResult = HelpObjectStoreArticle | HelpObjectStoreQueryError;
|
|
6115
6139
|
export declare type HelpObjectStoreBulkCreateEntityMappingInput = {
|
|
6116
6140
|
helpObjectStoreCreateEntityMappingInputItems: Array<HelpObjectStoreCreateEntityMappingInput>;
|
|
6117
6141
|
};
|
|
@@ -6128,10 +6152,10 @@ export declare type HelpObjectStoreCreateEntityMappingPayload = Payload & {
|
|
|
6128
6152
|
};
|
|
6129
6153
|
export declare type HelpObjectStoreHelpObject = {
|
|
6130
6154
|
id: Scalars['ID'];
|
|
6131
|
-
title
|
|
6132
|
-
description
|
|
6155
|
+
title?: Maybe<Scalars['String']>;
|
|
6156
|
+
description?: Maybe<Scalars['String']>;
|
|
6133
6157
|
icon?: Maybe<HelpObjectStoreIcon>;
|
|
6134
|
-
displayLink
|
|
6158
|
+
displayLink?: Maybe<Scalars['URL']>;
|
|
6135
6159
|
};
|
|
6136
6160
|
export declare enum HelpObjectStoreHelpObjectType {
|
|
6137
6161
|
RequestForm = "REQUEST_FORM",
|
|
@@ -6163,17 +6187,23 @@ export declare type HelpObjectStoreQueryApiRequestFormsArgs = {
|
|
|
6163
6187
|
export declare type HelpObjectStoreQueryApiArticlesArgs = {
|
|
6164
6188
|
ids: Array<Scalars['ID']>;
|
|
6165
6189
|
};
|
|
6190
|
+
export declare type HelpObjectStoreQueryError = {
|
|
6191
|
+
__typename?: 'HelpObjectStoreQueryError';
|
|
6192
|
+
id: Scalars['ID'];
|
|
6193
|
+
message?: Maybe<Scalars['String']>;
|
|
6194
|
+
extensions?: Maybe<Array<QueryErrorExtension>>;
|
|
6195
|
+
};
|
|
6166
6196
|
export declare type HelpObjectStoreRequestForm = HelpObjectStoreHelpObject & Node & {
|
|
6167
6197
|
__typename?: 'HelpObjectStoreRequestForm';
|
|
6168
6198
|
id: Scalars['ID'];
|
|
6169
|
-
title
|
|
6170
|
-
description
|
|
6199
|
+
title?: Maybe<Scalars['String']>;
|
|
6200
|
+
description?: Maybe<Scalars['String']>;
|
|
6171
6201
|
icon?: Maybe<HelpObjectStoreIcon>;
|
|
6172
|
-
displayLink
|
|
6202
|
+
displayLink?: Maybe<Scalars['URL']>;
|
|
6173
6203
|
entityId?: Maybe<Scalars['String']>;
|
|
6174
6204
|
entityProjectId?: Maybe<Scalars['String']>;
|
|
6175
6205
|
};
|
|
6176
|
-
export declare type HelpObjectStoreRequestFormResult = HelpObjectStoreRequestForm |
|
|
6206
|
+
export declare type HelpObjectStoreRequestFormResult = HelpObjectStoreRequestForm | HelpObjectStoreQueryError;
|
|
6177
6207
|
export declare type HelpObjectStoreSuccessfullyCreatedEntityMappingDetail = {
|
|
6178
6208
|
__typename?: 'HelpObjectStoreSuccessfullyCreatedEntityMappingDetail';
|
|
6179
6209
|
id: Scalars['ID'];
|
|
@@ -6266,10 +6296,6 @@ export declare type InvokePolarisObjectPayload = Payload & {
|
|
|
6266
6296
|
errors?: Maybe<Array<MutationError>>;
|
|
6267
6297
|
response?: Maybe<ResolvedPolarisObject>;
|
|
6268
6298
|
};
|
|
6269
|
-
export declare type IssueAndProject = {
|
|
6270
|
-
__typename?: 'IssueAndProject';
|
|
6271
|
-
issueId: Scalars['ID'];
|
|
6272
|
-
};
|
|
6273
6299
|
export declare type IssueDevOpsBranchDetails = {
|
|
6274
6300
|
__typename?: 'IssueDevOpsBranchDetails';
|
|
6275
6301
|
name: Scalars['String'];
|
|
@@ -7336,6 +7362,11 @@ export declare type JiraDefaultGrantTypeValue = Node & {
|
|
|
7336
7362
|
id: Scalars['ID'];
|
|
7337
7363
|
name: Scalars['String'];
|
|
7338
7364
|
};
|
|
7365
|
+
export declare enum JiraDeploymentsFeaturePrecondition {
|
|
7366
|
+
NotAvailable = "NOT_AVAILABLE",
|
|
7367
|
+
DeploymentsEmptyState = "DEPLOYMENTS_EMPTY_STATE",
|
|
7368
|
+
AllSatisfied = "ALL_SATISFIED"
|
|
7369
|
+
}
|
|
7339
7370
|
export declare type JiraDevOpsBranchDetails = {
|
|
7340
7371
|
__typename?: 'JiraDevOpsBranchDetails';
|
|
7341
7372
|
providerBranchId?: Maybe<Scalars['String']>;
|
|
@@ -7788,6 +7819,11 @@ export declare type JiraHierarchyConfigError = {
|
|
|
7788
7819
|
code?: Maybe<Scalars['String']>;
|
|
7789
7820
|
message?: Maybe<Scalars['String']>;
|
|
7790
7821
|
};
|
|
7822
|
+
export declare enum JiraInstallDeploymentsBannerPrecondition {
|
|
7823
|
+
NotAvailable = "NOT_AVAILABLE",
|
|
7824
|
+
FeatureNotEnabled = "FEATURE_NOT_ENABLED",
|
|
7825
|
+
DeploymentsEmptyState = "DEPLOYMENTS_EMPTY_STATE"
|
|
7826
|
+
}
|
|
7791
7827
|
export declare type JiraInvalidJqlError = {
|
|
7792
7828
|
__typename?: 'JiraInvalidJqlError';
|
|
7793
7829
|
messages?: Maybe<Array<Maybe<Scalars['String']>>>;
|
|
@@ -7875,6 +7911,10 @@ export declare type JiraIssueIssueLinksArgs = {
|
|
|
7875
7911
|
last?: Maybe<Scalars['Int']>;
|
|
7876
7912
|
before?: Maybe<Scalars['String']>;
|
|
7877
7913
|
};
|
|
7914
|
+
export declare type JiraIssueAndProject = {
|
|
7915
|
+
__typename?: 'JiraIssueAndProject';
|
|
7916
|
+
issueId: Scalars['ID'];
|
|
7917
|
+
};
|
|
7878
7918
|
export declare type JiraIssueBranchDevSummary = {
|
|
7879
7919
|
__typename?: 'JiraIssueBranchDevSummary';
|
|
7880
7920
|
count?: Maybe<Scalars['Int']>;
|
|
@@ -9915,6 +9955,8 @@ export declare type JiraQuery = {
|
|
|
9915
9955
|
issueSearchViewByNamespaceAndViewId?: Maybe<JiraIssueSearchView>;
|
|
9916
9956
|
issueSearchStable?: Maybe<JiraIssueConnection>;
|
|
9917
9957
|
devOps?: Maybe<JiraDevOpsQuery>;
|
|
9958
|
+
deploymentsFeaturePrecondition?: Maybe<JiraDeploymentsFeaturePrecondition>;
|
|
9959
|
+
installDeploymentsBannerPrecondition?: Maybe<JiraInstallDeploymentsBannerPrecondition>;
|
|
9918
9960
|
};
|
|
9919
9961
|
export declare type JiraQueryJiraProjectArgs = {
|
|
9920
9962
|
id: Scalars['ID'];
|
|
@@ -10047,6 +10089,12 @@ export declare type JiraQueryIssueSearchStableArgs = {
|
|
|
10047
10089
|
last?: Maybe<Scalars['Int']>;
|
|
10048
10090
|
before?: Maybe<Scalars['String']>;
|
|
10049
10091
|
};
|
|
10092
|
+
export declare type JiraQueryDeploymentsFeaturePreconditionArgs = {
|
|
10093
|
+
projectId: Scalars['ID'];
|
|
10094
|
+
};
|
|
10095
|
+
export declare type JiraQueryInstallDeploymentsBannerPreconditionArgs = {
|
|
10096
|
+
projectId: Scalars['ID'];
|
|
10097
|
+
};
|
|
10050
10098
|
export declare type JiraRadioSelectField = Node & JiraIssueField & JiraIssueFieldConfiguration & JiraUserIssueFieldConfiguration & {
|
|
10051
10099
|
__typename?: 'JiraRadioSelectField';
|
|
10052
10100
|
id: Scalars['ID'];
|
|
@@ -12022,6 +12070,7 @@ export declare type Mutation = {
|
|
|
12022
12070
|
createPolarisDecoration?: Maybe<CreatePolarisDecorationPayload>;
|
|
12023
12071
|
updatePolarisDecoration?: Maybe<UpdatePolarisDecorationPayload>;
|
|
12024
12072
|
deletePolarisDecoration?: Maybe<DeletePolarisDecorationPayload>;
|
|
12073
|
+
createPolarisIdeaTemplate?: Maybe<CreatePolarisIdeaTemplatePayload>;
|
|
12025
12074
|
updatePolarisIdea?: Maybe<UpdatePolarisIdeaPayload>;
|
|
12026
12075
|
createPolarisInsight?: Maybe<CreatePolarisInsightPayload>;
|
|
12027
12076
|
updatePolarisInsight?: Maybe<UpdatePolarisInsightPayload>;
|
|
@@ -12079,6 +12128,9 @@ export declare type MutationCreateJiraProjectAndDevOpsToolRelationshipArgs = {
|
|
|
12079
12128
|
export declare type MutationDeleteJiraProjectAndDevOpsToolRelationshipArgs = {
|
|
12080
12129
|
input: JiraProjectAndDevOpsToolRelationshipDeleteInput;
|
|
12081
12130
|
};
|
|
12131
|
+
export declare type MutationHelpObjectStoreArgs = {
|
|
12132
|
+
cloudId: Scalars['ID'];
|
|
12133
|
+
};
|
|
12082
12134
|
export declare type MutationCreateColumnArgs = {
|
|
12083
12135
|
input?: Maybe<CreateColumnInput>;
|
|
12084
12136
|
};
|
|
@@ -12184,6 +12236,7 @@ export declare type MutationCreateReleaseNoteArgs = {
|
|
|
12184
12236
|
description: Scalars['JSON'];
|
|
12185
12237
|
changeCategory?: Maybe<Scalars['String']>;
|
|
12186
12238
|
benefitsList?: Maybe<Scalars['JSON']>;
|
|
12239
|
+
featureRolloutEndDate?: Maybe<Scalars['DateTime']>;
|
|
12187
12240
|
};
|
|
12188
12241
|
export declare type MutationPublishReleaseNoteArgs = {
|
|
12189
12242
|
id: Scalars['String'];
|
|
@@ -12202,6 +12255,7 @@ export declare type MutationUpdateReleaseNoteArgs = {
|
|
|
12202
12255
|
changeCategory?: Maybe<Scalars['String']>;
|
|
12203
12256
|
relatedContexts?: Maybe<Array<Scalars['String']>>;
|
|
12204
12257
|
relatedContextIds?: Maybe<Array<Scalars['String']>>;
|
|
12258
|
+
featureRolloutEndDate?: Maybe<Scalars['DateTime']>;
|
|
12205
12259
|
};
|
|
12206
12260
|
export declare type MutationUpdateNavbarConnectionStateTabSeenArgs = {
|
|
12207
12261
|
input: DevOpsToolUpdateNavbarConnectionStateTabSeenInput;
|
|
@@ -12340,6 +12394,9 @@ export declare type MutationUpdatePolarisDecorationArgs = {
|
|
|
12340
12394
|
export declare type MutationDeletePolarisDecorationArgs = {
|
|
12341
12395
|
id: Scalars['ID'];
|
|
12342
12396
|
};
|
|
12397
|
+
export declare type MutationCreatePolarisIdeaTemplateArgs = {
|
|
12398
|
+
input: CreatePolarisIdeaTemplateInput;
|
|
12399
|
+
};
|
|
12343
12400
|
export declare type MutationUpdatePolarisIdeaArgs = {
|
|
12344
12401
|
project: Scalars['ID'];
|
|
12345
12402
|
idea: Scalars['ID'];
|
|
@@ -12578,7 +12635,7 @@ export declare type NewCardParent = {
|
|
|
12578
12635
|
export declare type Node = {
|
|
12579
12636
|
id: Scalars['ID'];
|
|
12580
12637
|
};
|
|
12581
|
-
export declare type OnJiraIssueCreatedForUserResponseType = JiraProjectConnection |
|
|
12638
|
+
export declare type OnJiraIssueCreatedForUserResponseType = JiraProjectConnection | JiraIssueAndProject;
|
|
12582
12639
|
export declare type OpsgenieAlertCountByPriority = {
|
|
12583
12640
|
__typename?: 'OpsgenieAlertCountByPriority';
|
|
12584
12641
|
priority?: Maybe<Scalars['String']>;
|
|
@@ -13233,6 +13290,17 @@ export declare type PolarisIdeaStringField = PolarisIdeaField & {
|
|
|
13233
13290
|
emoji?: Maybe<Scalars['String']>;
|
|
13234
13291
|
builtin?: Maybe<BuiltinPolarisIdeaField>;
|
|
13235
13292
|
};
|
|
13293
|
+
export declare type PolarisIdeaTemplate = {
|
|
13294
|
+
__typename?: 'PolarisIdeaTemplate';
|
|
13295
|
+
id: Scalars['ID'];
|
|
13296
|
+
title: Scalars['String'];
|
|
13297
|
+
description?: Maybe<Scalars['String']>;
|
|
13298
|
+
color?: Maybe<Scalars['String']>;
|
|
13299
|
+
emoji?: Maybe<Scalars['String']>;
|
|
13300
|
+
template?: Maybe<Scalars['JSON']>;
|
|
13301
|
+
project?: Maybe<Scalars['ID']>;
|
|
13302
|
+
aaid?: Maybe<Scalars['String']>;
|
|
13303
|
+
};
|
|
13236
13304
|
export declare type PolarisIdeaType = {
|
|
13237
13305
|
__typename?: 'PolarisIdeaType';
|
|
13238
13306
|
id: Scalars['ID'];
|
|
@@ -13814,6 +13882,7 @@ export declare type Query = {
|
|
|
13814
13882
|
polarisAnonymousVisitorHashByID?: Maybe<PolarisAnonymousVisitorHash>;
|
|
13815
13883
|
polarisLinkedDeliveryTickets?: Maybe<Array<Maybe<Scalars['JSON']>>>;
|
|
13816
13884
|
polaris?: Maybe<PolarisQueryNamespace>;
|
|
13885
|
+
polarisIdeaTemplates?: Maybe<Array<PolarisIdeaTemplate>>;
|
|
13817
13886
|
appActiveTunnels?: Maybe<AppTunnelDefinitions>;
|
|
13818
13887
|
dvcs?: Maybe<DvcsQuery>;
|
|
13819
13888
|
webTriggerUrlsByAppContext?: Maybe<Array<WebTriggerUrl>>;
|
|
@@ -13840,6 +13909,9 @@ export declare type QueryNodeArgs = {
|
|
|
13840
13909
|
export declare type QueryJiraProjectAndDevOpsToolRelationshipArgs = {
|
|
13841
13910
|
id: Scalars['ID'];
|
|
13842
13911
|
};
|
|
13912
|
+
export declare type QueryHelpObjectStoreArgs = {
|
|
13913
|
+
cloudId?: Maybe<Scalars['ID']>;
|
|
13914
|
+
};
|
|
13843
13915
|
export declare type QueryBoardScopeArgs = {
|
|
13844
13916
|
boardId: Scalars['ID'];
|
|
13845
13917
|
};
|
|
@@ -14077,6 +14149,9 @@ export declare type QueryPolarisLinkedDeliveryTicketsArgs = {
|
|
|
14077
14149
|
project: Scalars['ID'];
|
|
14078
14150
|
issueIds?: Maybe<Array<Scalars['Int']>>;
|
|
14079
14151
|
};
|
|
14152
|
+
export declare type QueryPolarisIdeaTemplatesArgs = {
|
|
14153
|
+
project: Scalars['ID'];
|
|
14154
|
+
};
|
|
14080
14155
|
export declare type QueryAppActiveTunnelsArgs = {
|
|
14081
14156
|
appId: Scalars['ID'];
|
|
14082
14157
|
environmentId: Scalars['ID'];
|
|
@@ -14378,6 +14453,7 @@ export declare type RoadmapFilterConfiguration = {
|
|
|
14378
14453
|
};
|
|
14379
14454
|
export declare type RoadmapHealthCheck = {
|
|
14380
14455
|
__typename?: 'RoadmapHealthCheck';
|
|
14456
|
+
id?: Maybe<Scalars['ID']>;
|
|
14381
14457
|
title: Scalars['String'];
|
|
14382
14458
|
explanation: Scalars['String'];
|
|
14383
14459
|
learnMore: RoadmapHealthCheckLink;
|
|
@@ -14823,6 +14899,10 @@ export declare type SearchAnalyticsInput = {
|
|
|
14823
14899
|
searchSessionId?: Maybe<Scalars['String']>;
|
|
14824
14900
|
searchReferrerId?: Maybe<Scalars['String']>;
|
|
14825
14901
|
};
|
|
14902
|
+
export declare type SearchBoardFilter = {
|
|
14903
|
+
projectARI: Scalars['String'];
|
|
14904
|
+
negateProjectFilter?: Maybe<Scalars['Boolean']>;
|
|
14905
|
+
};
|
|
14826
14906
|
export declare type SearchConfluenceFilter = {
|
|
14827
14907
|
spacesFilter?: Maybe<Array<Scalars['String']>>;
|
|
14828
14908
|
contributorsFilter?: Maybe<Array<Scalars['String']>>;
|
|
@@ -14837,8 +14917,8 @@ export declare type SearchConfluencePageBlogAttachment = SearchResult & {
|
|
|
14837
14917
|
id: Scalars['ID'];
|
|
14838
14918
|
title: Scalars['String'];
|
|
14839
14919
|
url: Scalars['URL'];
|
|
14840
|
-
iconUrl
|
|
14841
|
-
type:
|
|
14920
|
+
iconUrl?: Maybe<Scalars['URL']>;
|
|
14921
|
+
type: SearchResultType;
|
|
14842
14922
|
description: Scalars['String'];
|
|
14843
14923
|
lastModifiedDate?: Maybe<Scalars['DateTime']>;
|
|
14844
14924
|
space?: Maybe<SearchSpace>;
|
|
@@ -14857,8 +14937,8 @@ export declare type SearchConfluenceSpace = SearchResult & {
|
|
|
14857
14937
|
id: Scalars['ID'];
|
|
14858
14938
|
title: Scalars['String'];
|
|
14859
14939
|
url: Scalars['URL'];
|
|
14860
|
-
iconUrl
|
|
14861
|
-
type:
|
|
14940
|
+
iconUrl?: Maybe<Scalars['URL']>;
|
|
14941
|
+
type: SearchResultType;
|
|
14862
14942
|
description: Scalars['String'];
|
|
14863
14943
|
lastModifiedDate?: Maybe<Scalars['DateTime']>;
|
|
14864
14944
|
};
|
|
@@ -14871,8 +14951,8 @@ export declare type SearchDefaultResult = SearchResult & {
|
|
|
14871
14951
|
id: Scalars['ID'];
|
|
14872
14952
|
title: Scalars['String'];
|
|
14873
14953
|
url: Scalars['URL'];
|
|
14874
|
-
iconUrl
|
|
14875
|
-
type:
|
|
14954
|
+
iconUrl?: Maybe<Scalars['URL']>;
|
|
14955
|
+
type: SearchResultType;
|
|
14876
14956
|
description: Scalars['String'];
|
|
14877
14957
|
lastModifiedDate?: Maybe<Scalars['DateTime']>;
|
|
14878
14958
|
};
|
|
@@ -14880,6 +14960,7 @@ export declare type SearchFilterInput = {
|
|
|
14880
14960
|
entities: Array<Scalars['String']>;
|
|
14881
14961
|
locations: Array<Scalars['String']>;
|
|
14882
14962
|
confluenceFilters?: Maybe<SearchConfluenceFilter>;
|
|
14963
|
+
jiraFilters?: Maybe<SearchJiraFilter>;
|
|
14883
14964
|
};
|
|
14884
14965
|
export declare type SearchItemConnection = {
|
|
14885
14966
|
__typename?: 'SearchItemConnection';
|
|
@@ -14887,31 +14968,91 @@ export declare type SearchItemConnection = {
|
|
|
14887
14968
|
pageInfo: PageInfo;
|
|
14888
14969
|
totalCount?: Maybe<Scalars['Int']>;
|
|
14889
14970
|
};
|
|
14971
|
+
export declare type SearchJiraFilter = {
|
|
14972
|
+
boardFilter?: Maybe<SearchBoardFilter>;
|
|
14973
|
+
};
|
|
14974
|
+
export declare enum SearchProjectType {
|
|
14975
|
+
Software = "software",
|
|
14976
|
+
Business = "business",
|
|
14977
|
+
ServiceDesk = "service_desk",
|
|
14978
|
+
ProductDiscovery = "product_discovery"
|
|
14979
|
+
}
|
|
14890
14980
|
export declare type SearchQueryApi = {
|
|
14891
14981
|
__typename?: 'SearchQueryAPI';
|
|
14892
14982
|
search: SearchItemConnection;
|
|
14893
14983
|
};
|
|
14894
14984
|
export declare type SearchQueryApiSearchArgs = {
|
|
14895
14985
|
query?: Maybe<Scalars['String']>;
|
|
14896
|
-
filters
|
|
14986
|
+
filters: SearchFilterInput;
|
|
14897
14987
|
analytics?: Maybe<SearchAnalyticsInput>;
|
|
14898
14988
|
experience: Scalars['String'];
|
|
14899
14989
|
first?: Maybe<Scalars['Int']>;
|
|
14990
|
+
after?: Maybe<Scalars['String']>;
|
|
14991
|
+
before?: Maybe<Scalars['String']>;
|
|
14992
|
+
last?: Maybe<Scalars['Int']>;
|
|
14900
14993
|
};
|
|
14901
14994
|
export declare type SearchResult = {
|
|
14902
14995
|
id: Scalars['ID'];
|
|
14903
14996
|
title: Scalars['String'];
|
|
14904
14997
|
url: Scalars['URL'];
|
|
14905
|
-
iconUrl
|
|
14906
|
-
type:
|
|
14998
|
+
iconUrl?: Maybe<Scalars['URL']>;
|
|
14999
|
+
type: SearchResultType;
|
|
14907
15000
|
description: Scalars['String'];
|
|
14908
|
-
lastModifiedDate?: Maybe<Scalars['DateTime']>;
|
|
14909
15001
|
};
|
|
14910
15002
|
export declare type SearchResultItemEdge = {
|
|
14911
15003
|
__typename?: 'SearchResultItemEdge';
|
|
14912
15004
|
node?: Maybe<SearchResult>;
|
|
14913
15005
|
cursor?: Maybe<Scalars['String']>;
|
|
14914
15006
|
};
|
|
15007
|
+
export declare type SearchResultJiraBoard = SearchResult & {
|
|
15008
|
+
__typename?: 'SearchResultJiraBoard';
|
|
15009
|
+
id: Scalars['ID'];
|
|
15010
|
+
title: Scalars['String'];
|
|
15011
|
+
url: Scalars['URL'];
|
|
15012
|
+
iconUrl?: Maybe<Scalars['URL']>;
|
|
15013
|
+
type: SearchResultType;
|
|
15014
|
+
description: Scalars['String'];
|
|
15015
|
+
favourite: Scalars['Boolean'];
|
|
15016
|
+
boardId: Scalars['String'];
|
|
15017
|
+
container?: Maybe<SearchResultJiraBoardContainer>;
|
|
15018
|
+
};
|
|
15019
|
+
export declare type SearchResultJiraBoardContainer = SearchResultJiraBoardProjectContainer | SearchResultJiraBoardUserContainer;
|
|
15020
|
+
export declare type SearchResultJiraBoardProjectContainer = {
|
|
15021
|
+
__typename?: 'SearchResultJiraBoardProjectContainer';
|
|
15022
|
+
projectId: Scalars['ID'];
|
|
15023
|
+
projectKey: Scalars['String'];
|
|
15024
|
+
projectName: Scalars['String'];
|
|
15025
|
+
projectTypeKey: SearchProjectType;
|
|
15026
|
+
};
|
|
15027
|
+
export declare type SearchResultJiraBoardUserContainer = {
|
|
15028
|
+
__typename?: 'SearchResultJiraBoardUserContainer';
|
|
15029
|
+
userId: Scalars['ID'];
|
|
15030
|
+
userAccountId: Scalars['String'];
|
|
15031
|
+
userName: Scalars['String'];
|
|
15032
|
+
};
|
|
15033
|
+
export declare type SearchResultJiraProject = SearchResult & {
|
|
15034
|
+
__typename?: 'SearchResultJiraProject';
|
|
15035
|
+
id: Scalars['ID'];
|
|
15036
|
+
projectType: SearchProjectType;
|
|
15037
|
+
projectId: Scalars['String'];
|
|
15038
|
+
projectKey: Scalars['String'];
|
|
15039
|
+
title: Scalars['String'];
|
|
15040
|
+
url: Scalars['URL'];
|
|
15041
|
+
iconUrl?: Maybe<Scalars['URL']>;
|
|
15042
|
+
type: SearchResultType;
|
|
15043
|
+
description: Scalars['String'];
|
|
15044
|
+
favourite: Scalars['Boolean'];
|
|
15045
|
+
simplified: Scalars['Boolean'];
|
|
15046
|
+
};
|
|
15047
|
+
export declare enum SearchResultType {
|
|
15048
|
+
Blogpost = "blogpost",
|
|
15049
|
+
Space = "space",
|
|
15050
|
+
Board = "board",
|
|
15051
|
+
Filter = "filter",
|
|
15052
|
+
Issue = "issue",
|
|
15053
|
+
Plan = "plan",
|
|
15054
|
+
Project = "project"
|
|
15055
|
+
}
|
|
14915
15056
|
export declare type SearchSpace = {
|
|
14916
15057
|
__typename?: 'SearchSpace';
|
|
14917
15058
|
key: Scalars['String'];
|
|
@@ -15040,6 +15181,7 @@ export declare type ShepherdAlert = {
|
|
|
15040
15181
|
id: Scalars['ID'];
|
|
15041
15182
|
orgId: Scalars['ID'];
|
|
15042
15183
|
status: ShepherdAlertStatus;
|
|
15184
|
+
template?: Maybe<ShepherdAlertTemplateType>;
|
|
15043
15185
|
title: Scalars['String'];
|
|
15044
15186
|
updatedOn?: Maybe<Scalars['DateTime']>;
|
|
15045
15187
|
};
|
|
@@ -15064,6 +15206,15 @@ export declare enum ShepherdAlertStatus {
|
|
|
15064
15206
|
Triaged = "TRIAGED",
|
|
15065
15207
|
Untriaged = "UNTRIAGED"
|
|
15066
15208
|
}
|
|
15209
|
+
export declare enum ShepherdAlertTemplateType {
|
|
15210
|
+
AddedOrgAdmin = "ADDED_ORG_ADMIN",
|
|
15211
|
+
CreatedSamlConfig = "CREATED_SAML_CONFIG",
|
|
15212
|
+
Default = "DEFAULT",
|
|
15213
|
+
EnabledGsyncSso = "ENABLED_GSYNC_SSO",
|
|
15214
|
+
EnableScimSync = "ENABLE_SCIM_SYNC",
|
|
15215
|
+
TokenCreated = "TOKEN_CREATED",
|
|
15216
|
+
UserGrantedRole = "USER_GRANTED_ROLE"
|
|
15217
|
+
}
|
|
15067
15218
|
export declare type ShepherdAlertsConnection = {
|
|
15068
15219
|
__typename?: 'ShepherdAlertsConnection';
|
|
15069
15220
|
edges?: Maybe<Array<Maybe<ShepherdAlertEdge>>>;
|
|
@@ -15080,6 +15231,7 @@ export declare type ShepherdCreateAlertInput = {
|
|
|
15080
15231
|
cloudId?: Maybe<Scalars['ID']>;
|
|
15081
15232
|
orgId: Scalars['ID'];
|
|
15082
15233
|
status?: Maybe<ShepherdAlertStatus>;
|
|
15234
|
+
template?: Maybe<ShepherdAlertTemplateType>;
|
|
15083
15235
|
title: Scalars['String'];
|
|
15084
15236
|
};
|
|
15085
15237
|
export declare type ShepherdCreateAlertPayload = Payload & {
|
|
@@ -15092,6 +15244,15 @@ export declare type ShepherdCreateEmailInput = {
|
|
|
15092
15244
|
email?: Maybe<Scalars['String']>;
|
|
15093
15245
|
status?: Maybe<ShepherdSubscriptionStatus>;
|
|
15094
15246
|
};
|
|
15247
|
+
export declare type ShepherdCreateExampleAlertInput = {
|
|
15248
|
+
orgId: Scalars['ID'];
|
|
15249
|
+
};
|
|
15250
|
+
export declare type ShepherdCreateExampleAlertPayload = Payload & {
|
|
15251
|
+
__typename?: 'ShepherdCreateExampleAlertPayload';
|
|
15252
|
+
errors?: Maybe<Array<MutationError>>;
|
|
15253
|
+
node?: Maybe<ShepherdAlert>;
|
|
15254
|
+
success: Scalars['Boolean'];
|
|
15255
|
+
};
|
|
15095
15256
|
export declare type ShepherdCreateOrganizationInput = {
|
|
15096
15257
|
enabled?: Maybe<Scalars['Boolean']>;
|
|
15097
15258
|
id: Scalars['ID'];
|
|
@@ -15151,6 +15312,7 @@ export declare type ShepherdGenericQueryErrorExtension = QueryErrorExtension & {
|
|
|
15151
15312
|
export declare type ShepherdMutation = {
|
|
15152
15313
|
__typename?: 'ShepherdMutation';
|
|
15153
15314
|
createAlert?: Maybe<ShepherdCreateAlertPayload>;
|
|
15315
|
+
createExampleAlert?: Maybe<ShepherdCreateExampleAlertPayload>;
|
|
15154
15316
|
createOrganization?: Maybe<ShepherdCreateOrganizationPayload>;
|
|
15155
15317
|
createSubscription?: Maybe<ShepherdCreateSubscriptionPayload>;
|
|
15156
15318
|
updateAlert?: Maybe<ShepherdUpdateAlertPayload>;
|
|
@@ -15160,6 +15322,9 @@ export declare type ShepherdMutation = {
|
|
|
15160
15322
|
export declare type ShepherdMutationCreateAlertArgs = {
|
|
15161
15323
|
input: ShepherdCreateAlertInput;
|
|
15162
15324
|
};
|
|
15325
|
+
export declare type ShepherdMutationCreateExampleAlertArgs = {
|
|
15326
|
+
input: ShepherdCreateExampleAlertInput;
|
|
15327
|
+
};
|
|
15163
15328
|
export declare type ShepherdMutationCreateOrganizationArgs = {
|
|
15164
15329
|
input: ShepherdCreateOrganizationInput;
|
|
15165
15330
|
};
|