@forge/cli-shared 2.4.1-next.5 → 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,34 @@
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
+
18
+ ## 2.4.1-next.7
19
+
20
+ ### Patch Changes
21
+
22
+ - Updated dependencies [0920759f]
23
+ - @forge/manifest@3.6.0-next.7
24
+
25
+ ## 2.4.1-next.6
26
+
27
+ ### Patch Changes
28
+
29
+ - Updated dependencies [2bd062d0]
30
+ - @forge/manifest@3.6.0-next.6
31
+
3
32
  ## 2.4.1-next.5
4
33
 
5
34
  ### Patch Changes
@@ -970,6 +970,7 @@ export declare type AtlassianAccountUser = User & LocalizationContext & {
970
970
  email?: Maybe<Scalars['String']>;
971
971
  zoneinfo?: Maybe<Scalars['String']>;
972
972
  locale?: Maybe<Scalars['String']>;
973
+ nickname?: Maybe<Scalars['String']>;
973
974
  orgId?: Maybe<Scalars['ID']>;
974
975
  extendedProfile?: Maybe<AtlassianAccountUserExtendedProfile>;
975
976
  };
@@ -1281,6 +1282,7 @@ export declare type BoardScope = Node & {
1281
1282
  startSprintPrototype?: Maybe<Sprint>;
1282
1283
  customFilters?: Maybe<Array<Maybe<CustomFilter>>>;
1283
1284
  filteredCardIds?: Maybe<Array<Maybe<Scalars['ID']>>>;
1285
+ globalCardCreateAdditionalFields?: Maybe<GlobalCardCreateAdditionalFields>;
1284
1286
  name?: Maybe<Scalars['String']>;
1285
1287
  admins?: Maybe<Array<Maybe<Admin>>>;
1286
1288
  canAdministerBoard?: Maybe<Scalars['Boolean']>;
@@ -3843,6 +3845,7 @@ export declare type ContentPlatformReleaseNote = {
3843
3845
  supportingVisuals?: Maybe<Array<ContentPlatformImageComponent>>;
3844
3846
  relatedContentLinks?: Maybe<Array<Scalars['String']>>;
3845
3847
  featureRolloutDate?: Maybe<Scalars['String']>;
3848
+ featureRolloutEndDate?: Maybe<Scalars['String']>;
3846
3849
  changeCategory?: Maybe<ContentPlatformTaxonomyChangeCategory>;
3847
3850
  releaseNoteFlag?: Maybe<Scalars['String']>;
3848
3851
  releaseNoteFlagOffValue?: Maybe<Scalars['String']>;
@@ -4278,6 +4281,20 @@ export declare type CreatePolarisDecorationPayload = Payload & {
4278
4281
  errors?: Maybe<Array<MutationError>>;
4279
4282
  node?: Maybe<PolarisDecoration>;
4280
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
+ };
4281
4298
  export declare type CreatePolarisInsightFromPlayContributionInput = {
4282
4299
  contribution: Scalars['ID'];
4283
4300
  subject?: Maybe<Scalars['ID']>;
@@ -5530,6 +5547,7 @@ export declare type DevOpsToolsToolsArgs = {
5530
5547
  recommended?: Maybe<Scalars['Boolean']>;
5531
5548
  groupId?: Maybe<Scalars['String']>;
5532
5549
  categoryId?: Maybe<Scalars['String']>;
5550
+ installed?: Maybe<Scalars['Boolean']>;
5533
5551
  supportsContainers?: Maybe<Scalars['Boolean']>;
5534
5552
  integrationType?: Maybe<DevOpsToolIntegrationType>;
5535
5553
  };
@@ -5774,6 +5792,7 @@ export declare type ForgeMetricsErrorsData = ForgeMetricsData & {
5774
5792
  type: ForgeMetricsDataType;
5775
5793
  series: Array<ForgeMetricsErrorsSeries>;
5776
5794
  resolution: ForgeMetricsResolution;
5795
+ interval: ForgeMetricsIntervalRange;
5777
5796
  };
5778
5797
  export declare type ForgeMetricsErrorsDataPoint = {
5779
5798
  __typename?: 'ForgeMetricsErrorsDataPoint';
@@ -5800,12 +5819,18 @@ export declare type ForgeMetricsIntervalInput = {
5800
5819
  start: Scalars['DateTime'];
5801
5820
  end: Scalars['DateTime'];
5802
5821
  };
5822
+ export declare type ForgeMetricsIntervalRange = {
5823
+ __typename?: 'ForgeMetricsIntervalRange';
5824
+ start: Scalars['DateTime'];
5825
+ end: Scalars['DateTime'];
5826
+ };
5803
5827
  export declare type ForgeMetricsInvocationData = ForgeMetricsData & {
5804
5828
  __typename?: 'ForgeMetricsInvocationData';
5805
5829
  name: Scalars['String'];
5806
5830
  type: ForgeMetricsDataType;
5807
5831
  series: Array<ForgeMetricsInvocationSeries>;
5808
5832
  resolution: ForgeMetricsResolution;
5833
+ interval: ForgeMetricsIntervalRange;
5809
5834
  };
5810
5835
  export declare type ForgeMetricsInvocationDataPoint = {
5811
5836
  __typename?: 'ForgeMetricsInvocationDataPoint';
@@ -5891,6 +5916,7 @@ export declare type ForgeMetricsSuccessRateData = ForgeMetricsData & {
5891
5916
  type: ForgeMetricsDataType;
5892
5917
  series: Array<ForgeMetricsSuccessRateSeries>;
5893
5918
  resolution: ForgeMetricsResolution;
5919
+ interval: ForgeMetricsIntervalRange;
5894
5920
  };
5895
5921
  export declare type ForgeMetricsSuccessRateDataPoint = {
5896
5922
  __typename?: 'ForgeMetricsSuccessRateDataPoint';
@@ -5949,6 +5975,12 @@ export declare type GenericQueryErrorExtension = QueryErrorExtension & {
5949
5975
  statusCode?: Maybe<Scalars['Int']>;
5950
5976
  errorType?: Maybe<Scalars['String']>;
5951
5977
  };
5978
+ export declare type GlobalCardCreateAdditionalFields = {
5979
+ __typename?: 'GlobalCardCreateAdditionalFields';
5980
+ sprintCustomFieldId?: Maybe<Scalars['String']>;
5981
+ rankCustomFieldId?: Maybe<Scalars['String']>;
5982
+ boardIssueListKey?: Maybe<Scalars['String']>;
5983
+ };
5952
5984
  export declare enum GrantCheckProduct {
5953
5985
  Jira = "JIRA",
5954
5986
  JiraServicedesk = "JIRA_SERVICEDESK",
@@ -5975,7 +6007,7 @@ export declare type HelpCenterCollection = {
5975
6007
  __typename?: 'HelpCenterCollection';
5976
6008
  collectionId: Scalars['ID'];
5977
6009
  items?: Maybe<HelpCenterCollectionItemConnection>;
5978
- name: Scalars['String'];
6010
+ name?: Maybe<Scalars['String']>;
5979
6011
  description?: Maybe<Scalars['String']>;
5980
6012
  properties?: Maybe<Scalars['JSON']>;
5981
6013
  };
@@ -5992,6 +6024,7 @@ export declare type HelpCenterCollectionDeleteInput = {
5992
6024
  export declare type HelpCenterCollectionItem = {
5993
6025
  __typename?: 'HelpCenterCollectionItem';
5994
6026
  ari: Scalars['ID'];
6027
+ data?: Maybe<HelpCenterHelpObject>;
5995
6028
  };
5996
6029
  export declare type HelpCenterCollectionItemConnection = {
5997
6030
  __typename?: 'HelpCenterCollectionItemConnection';
@@ -6028,12 +6061,13 @@ export declare type HelpCenterDeleteUpdateCollectionPayload = Payload & {
6028
6061
  errors?: Maybe<Array<MutationError>>;
6029
6062
  collectionIds: Array<Maybe<HelpCenterSuccessfullyDeletedUpdatedCollectionIds>>;
6030
6063
  };
6064
+ export declare type HelpCenterHelpObject = HelpObjectStoreRequestForm | HelpObjectStoreArticle | HelpObjectStoreQueryError;
6031
6065
  export declare type HelpCenterMutationApi = {
6032
6066
  __typename?: 'HelpCenterMutationApi';
6033
- createCollection: HelpCenterCreateCollectionPayload;
6034
- updateCollection: HelpCenterDeleteUpdateCollectionPayload;
6035
- updateCollectionsOrder: HelpCenterUpdateCollectionsOrderPayload;
6036
- deleteCollection: HelpCenterDeleteUpdateCollectionPayload;
6067
+ createCollection?: Maybe<HelpCenterCreateCollectionPayload>;
6068
+ updateCollection?: Maybe<HelpCenterDeleteUpdateCollectionPayload>;
6069
+ updateCollectionsOrder?: Maybe<HelpCenterUpdateCollectionsOrderPayload>;
6070
+ deleteCollection?: Maybe<HelpCenterDeleteUpdateCollectionPayload>;
6037
6071
  };
6038
6072
  export declare type HelpCenterMutationApiCreateCollectionArgs = {
6039
6073
  input: HelpCenterBulkCreateCollectionsInput;
@@ -6049,8 +6083,8 @@ export declare type HelpCenterMutationApiDeleteCollectionArgs = {
6049
6083
  };
6050
6084
  export declare type HelpCenterQueryApi = {
6051
6085
  __typename?: 'HelpCenterQueryApi';
6052
- helpCenter: HelpCenterQueryResult;
6053
- helpCenterCollection: HelpCenterCollectionResult;
6086
+ helpCenter?: Maybe<HelpCenterQueryResult>;
6087
+ helpCenterCollection?: Maybe<HelpCenterCollectionResult>;
6054
6088
  };
6055
6089
  export declare type HelpCenterQueryApiHelpCenterArgs = {
6056
6090
  helpCenterId: Scalars['ID'];
@@ -6094,14 +6128,14 @@ export declare type HelpCenterUpdateCollectionsOrderPayload = Payload & {
6094
6128
  export declare type HelpObjectStoreArticle = HelpObjectStoreHelpObject & Node & {
6095
6129
  __typename?: 'HelpObjectStoreArticle';
6096
6130
  id: Scalars['ID'];
6097
- title: Scalars['String'];
6098
- description: Scalars['String'];
6131
+ title?: Maybe<Scalars['String']>;
6132
+ description?: Maybe<Scalars['String']>;
6099
6133
  icon?: Maybe<HelpObjectStoreIcon>;
6100
- displayLink: Scalars['URL'];
6134
+ displayLink?: Maybe<Scalars['URL']>;
6101
6135
  entityId?: Maybe<Scalars['String']>;
6102
6136
  entityProjectId?: Maybe<Scalars['String']>;
6103
6137
  };
6104
- export declare type HelpObjectStoreArticleResult = HelpObjectStoreArticle | QueryError;
6138
+ export declare type HelpObjectStoreArticleResult = HelpObjectStoreArticle | HelpObjectStoreQueryError;
6105
6139
  export declare type HelpObjectStoreBulkCreateEntityMappingInput = {
6106
6140
  helpObjectStoreCreateEntityMappingInputItems: Array<HelpObjectStoreCreateEntityMappingInput>;
6107
6141
  };
@@ -6118,10 +6152,10 @@ export declare type HelpObjectStoreCreateEntityMappingPayload = Payload & {
6118
6152
  };
6119
6153
  export declare type HelpObjectStoreHelpObject = {
6120
6154
  id: Scalars['ID'];
6121
- title: Scalars['String'];
6122
- description: Scalars['String'];
6155
+ title?: Maybe<Scalars['String']>;
6156
+ description?: Maybe<Scalars['String']>;
6123
6157
  icon?: Maybe<HelpObjectStoreIcon>;
6124
- displayLink: Scalars['URL'];
6158
+ displayLink?: Maybe<Scalars['URL']>;
6125
6159
  };
6126
6160
  export declare enum HelpObjectStoreHelpObjectType {
6127
6161
  RequestForm = "REQUEST_FORM",
@@ -6153,17 +6187,23 @@ export declare type HelpObjectStoreQueryApiRequestFormsArgs = {
6153
6187
  export declare type HelpObjectStoreQueryApiArticlesArgs = {
6154
6188
  ids: Array<Scalars['ID']>;
6155
6189
  };
6190
+ export declare type HelpObjectStoreQueryError = {
6191
+ __typename?: 'HelpObjectStoreQueryError';
6192
+ id: Scalars['ID'];
6193
+ message?: Maybe<Scalars['String']>;
6194
+ extensions?: Maybe<Array<QueryErrorExtension>>;
6195
+ };
6156
6196
  export declare type HelpObjectStoreRequestForm = HelpObjectStoreHelpObject & Node & {
6157
6197
  __typename?: 'HelpObjectStoreRequestForm';
6158
6198
  id: Scalars['ID'];
6159
- title: Scalars['String'];
6160
- description: Scalars['String'];
6199
+ title?: Maybe<Scalars['String']>;
6200
+ description?: Maybe<Scalars['String']>;
6161
6201
  icon?: Maybe<HelpObjectStoreIcon>;
6162
- displayLink: Scalars['URL'];
6202
+ displayLink?: Maybe<Scalars['URL']>;
6163
6203
  entityId?: Maybe<Scalars['String']>;
6164
6204
  entityProjectId?: Maybe<Scalars['String']>;
6165
6205
  };
6166
- export declare type HelpObjectStoreRequestFormResult = HelpObjectStoreRequestForm | QueryError;
6206
+ export declare type HelpObjectStoreRequestFormResult = HelpObjectStoreRequestForm | HelpObjectStoreQueryError;
6167
6207
  export declare type HelpObjectStoreSuccessfullyCreatedEntityMappingDetail = {
6168
6208
  __typename?: 'HelpObjectStoreSuccessfullyCreatedEntityMappingDetail';
6169
6209
  id: Scalars['ID'];
@@ -6256,10 +6296,6 @@ export declare type InvokePolarisObjectPayload = Payload & {
6256
6296
  errors?: Maybe<Array<MutationError>>;
6257
6297
  response?: Maybe<ResolvedPolarisObject>;
6258
6298
  };
6259
- export declare type IssueAndProject = {
6260
- __typename?: 'IssueAndProject';
6261
- issueId: Scalars['ID'];
6262
- };
6263
6299
  export declare type IssueDevOpsBranchDetails = {
6264
6300
  __typename?: 'IssueDevOpsBranchDetails';
6265
6301
  name: Scalars['String'];
@@ -7111,10 +7147,6 @@ export declare type JiraComment = {
7111
7147
  updated?: Maybe<Scalars['DateTime']>;
7112
7148
  permissionLevel?: Maybe<JiraPermissionLevel>;
7113
7149
  };
7114
- export declare type JiraCommentByIdInput = {
7115
- issueId: Scalars['ID'];
7116
- id: Scalars['ID'];
7117
- };
7118
7150
  export declare type JiraCommentConnection = {
7119
7151
  __typename?: 'JiraCommentConnection';
7120
7152
  indicativeCount?: Maybe<Scalars['Int']>;
@@ -7330,6 +7362,11 @@ export declare type JiraDefaultGrantTypeValue = Node & {
7330
7362
  id: Scalars['ID'];
7331
7363
  name: Scalars['String'];
7332
7364
  };
7365
+ export declare enum JiraDeploymentsFeaturePrecondition {
7366
+ NotAvailable = "NOT_AVAILABLE",
7367
+ DeploymentsEmptyState = "DEPLOYMENTS_EMPTY_STATE",
7368
+ AllSatisfied = "ALL_SATISFIED"
7369
+ }
7333
7370
  export declare type JiraDevOpsBranchDetails = {
7334
7371
  __typename?: 'JiraDevOpsBranchDetails';
7335
7372
  providerBranchId?: Maybe<Scalars['String']>;
@@ -7782,6 +7819,11 @@ export declare type JiraHierarchyConfigError = {
7782
7819
  code?: Maybe<Scalars['String']>;
7783
7820
  message?: Maybe<Scalars['String']>;
7784
7821
  };
7822
+ export declare enum JiraInstallDeploymentsBannerPrecondition {
7823
+ NotAvailable = "NOT_AVAILABLE",
7824
+ FeatureNotEnabled = "FEATURE_NOT_ENABLED",
7825
+ DeploymentsEmptyState = "DEPLOYMENTS_EMPTY_STATE"
7826
+ }
7785
7827
  export declare type JiraInvalidJqlError = {
7786
7828
  __typename?: 'JiraInvalidJqlError';
7787
7829
  messages?: Maybe<Array<Maybe<Scalars['String']>>>;
@@ -7869,6 +7911,10 @@ export declare type JiraIssueIssueLinksArgs = {
7869
7911
  last?: Maybe<Scalars['Int']>;
7870
7912
  before?: Maybe<Scalars['String']>;
7871
7913
  };
7914
+ export declare type JiraIssueAndProject = {
7915
+ __typename?: 'JiraIssueAndProject';
7916
+ issueId: Scalars['ID'];
7917
+ };
7872
7918
  export declare type JiraIssueBranchDevSummary = {
7873
7919
  __typename?: 'JiraIssueBranchDevSummary';
7874
7920
  count?: Maybe<Scalars['Int']>;
@@ -9893,8 +9939,6 @@ export declare type JiraQuery = {
9893
9939
  issueByKey?: Maybe<JiraIssue>;
9894
9940
  issueById?: Maybe<JiraIssue>;
9895
9941
  issue?: Maybe<JiraIssue>;
9896
- issuesById?: Maybe<Array<Maybe<JiraIssue>>>;
9897
- commentsById?: Maybe<Array<Maybe<JiraComment>>>;
9898
9942
  allGrantTypeKeys: Array<JiraGrantTypeKey>;
9899
9943
  grantTypeValues?: Maybe<JiraGrantTypeValueConnection>;
9900
9944
  viewPermissionScheme?: Maybe<JiraPermissionSchemeViewResult>;
@@ -9911,6 +9955,8 @@ export declare type JiraQuery = {
9911
9955
  issueSearchViewByNamespaceAndViewId?: Maybe<JiraIssueSearchView>;
9912
9956
  issueSearchStable?: Maybe<JiraIssueConnection>;
9913
9957
  devOps?: Maybe<JiraDevOpsQuery>;
9958
+ deploymentsFeaturePrecondition?: Maybe<JiraDeploymentsFeaturePrecondition>;
9959
+ installDeploymentsBannerPrecondition?: Maybe<JiraInstallDeploymentsBannerPrecondition>;
9914
9960
  };
9915
9961
  export declare type JiraQueryJiraProjectArgs = {
9916
9962
  id: Scalars['ID'];
@@ -9968,12 +10014,6 @@ export declare type JiraQueryIssueByIdArgs = {
9968
10014
  export declare type JiraQueryIssueArgs = {
9969
10015
  id?: Maybe<Scalars['ID']>;
9970
10016
  };
9971
- export declare type JiraQueryIssuesByIdArgs = {
9972
- ids: Array<Scalars['ID']>;
9973
- };
9974
- export declare type JiraQueryCommentsByIdArgs = {
9975
- input: Array<JiraCommentByIdInput>;
9976
- };
9977
10017
  export declare type JiraQueryAllGrantTypeKeysArgs = {
9978
10018
  cloudId: Scalars['ID'];
9979
10019
  };
@@ -10049,6 +10089,12 @@ export declare type JiraQueryIssueSearchStableArgs = {
10049
10089
  last?: Maybe<Scalars['Int']>;
10050
10090
  before?: Maybe<Scalars['String']>;
10051
10091
  };
10092
+ export declare type JiraQueryDeploymentsFeaturePreconditionArgs = {
10093
+ projectId: Scalars['ID'];
10094
+ };
10095
+ export declare type JiraQueryInstallDeploymentsBannerPreconditionArgs = {
10096
+ projectId: Scalars['ID'];
10097
+ };
10052
10098
  export declare type JiraRadioSelectField = Node & JiraIssueField & JiraIssueFieldConfiguration & JiraUserIssueFieldConfiguration & {
10053
10099
  __typename?: 'JiraRadioSelectField';
10054
10100
  id: Scalars['ID'];
@@ -12024,6 +12070,7 @@ export declare type Mutation = {
12024
12070
  createPolarisDecoration?: Maybe<CreatePolarisDecorationPayload>;
12025
12071
  updatePolarisDecoration?: Maybe<UpdatePolarisDecorationPayload>;
12026
12072
  deletePolarisDecoration?: Maybe<DeletePolarisDecorationPayload>;
12073
+ createPolarisIdeaTemplate?: Maybe<CreatePolarisIdeaTemplatePayload>;
12027
12074
  updatePolarisIdea?: Maybe<UpdatePolarisIdeaPayload>;
12028
12075
  createPolarisInsight?: Maybe<CreatePolarisInsightPayload>;
12029
12076
  updatePolarisInsight?: Maybe<UpdatePolarisInsightPayload>;
@@ -12081,6 +12128,9 @@ export declare type MutationCreateJiraProjectAndDevOpsToolRelationshipArgs = {
12081
12128
  export declare type MutationDeleteJiraProjectAndDevOpsToolRelationshipArgs = {
12082
12129
  input: JiraProjectAndDevOpsToolRelationshipDeleteInput;
12083
12130
  };
12131
+ export declare type MutationHelpObjectStoreArgs = {
12132
+ cloudId: Scalars['ID'];
12133
+ };
12084
12134
  export declare type MutationCreateColumnArgs = {
12085
12135
  input?: Maybe<CreateColumnInput>;
12086
12136
  };
@@ -12186,6 +12236,7 @@ export declare type MutationCreateReleaseNoteArgs = {
12186
12236
  description: Scalars['JSON'];
12187
12237
  changeCategory?: Maybe<Scalars['String']>;
12188
12238
  benefitsList?: Maybe<Scalars['JSON']>;
12239
+ featureRolloutEndDate?: Maybe<Scalars['DateTime']>;
12189
12240
  };
12190
12241
  export declare type MutationPublishReleaseNoteArgs = {
12191
12242
  id: Scalars['String'];
@@ -12204,6 +12255,7 @@ export declare type MutationUpdateReleaseNoteArgs = {
12204
12255
  changeCategory?: Maybe<Scalars['String']>;
12205
12256
  relatedContexts?: Maybe<Array<Scalars['String']>>;
12206
12257
  relatedContextIds?: Maybe<Array<Scalars['String']>>;
12258
+ featureRolloutEndDate?: Maybe<Scalars['DateTime']>;
12207
12259
  };
12208
12260
  export declare type MutationUpdateNavbarConnectionStateTabSeenArgs = {
12209
12261
  input: DevOpsToolUpdateNavbarConnectionStateTabSeenInput;
@@ -12342,6 +12394,9 @@ export declare type MutationUpdatePolarisDecorationArgs = {
12342
12394
  export declare type MutationDeletePolarisDecorationArgs = {
12343
12395
  id: Scalars['ID'];
12344
12396
  };
12397
+ export declare type MutationCreatePolarisIdeaTemplateArgs = {
12398
+ input: CreatePolarisIdeaTemplateInput;
12399
+ };
12345
12400
  export declare type MutationUpdatePolarisIdeaArgs = {
12346
12401
  project: Scalars['ID'];
12347
12402
  idea: Scalars['ID'];
@@ -12580,7 +12635,7 @@ export declare type NewCardParent = {
12580
12635
  export declare type Node = {
12581
12636
  id: Scalars['ID'];
12582
12637
  };
12583
- export declare type OnJiraIssueCreatedForUserResponseType = JiraProjectConnection | IssueAndProject;
12638
+ export declare type OnJiraIssueCreatedForUserResponseType = JiraProjectConnection | JiraIssueAndProject;
12584
12639
  export declare type OpsgenieAlertCountByPriority = {
12585
12640
  __typename?: 'OpsgenieAlertCountByPriority';
12586
12641
  priority?: Maybe<Scalars['String']>;
@@ -13235,6 +13290,17 @@ export declare type PolarisIdeaStringField = PolarisIdeaField & {
13235
13290
  emoji?: Maybe<Scalars['String']>;
13236
13291
  builtin?: Maybe<BuiltinPolarisIdeaField>;
13237
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
+ };
13238
13304
  export declare type PolarisIdeaType = {
13239
13305
  __typename?: 'PolarisIdeaType';
13240
13306
  id: Scalars['ID'];
@@ -13816,6 +13882,7 @@ export declare type Query = {
13816
13882
  polarisAnonymousVisitorHashByID?: Maybe<PolarisAnonymousVisitorHash>;
13817
13883
  polarisLinkedDeliveryTickets?: Maybe<Array<Maybe<Scalars['JSON']>>>;
13818
13884
  polaris?: Maybe<PolarisQueryNamespace>;
13885
+ polarisIdeaTemplates?: Maybe<Array<PolarisIdeaTemplate>>;
13819
13886
  appActiveTunnels?: Maybe<AppTunnelDefinitions>;
13820
13887
  dvcs?: Maybe<DvcsQuery>;
13821
13888
  webTriggerUrlsByAppContext?: Maybe<Array<WebTriggerUrl>>;
@@ -13842,6 +13909,9 @@ export declare type QueryNodeArgs = {
13842
13909
  export declare type QueryJiraProjectAndDevOpsToolRelationshipArgs = {
13843
13910
  id: Scalars['ID'];
13844
13911
  };
13912
+ export declare type QueryHelpObjectStoreArgs = {
13913
+ cloudId?: Maybe<Scalars['ID']>;
13914
+ };
13845
13915
  export declare type QueryBoardScopeArgs = {
13846
13916
  boardId: Scalars['ID'];
13847
13917
  };
@@ -14079,6 +14149,9 @@ export declare type QueryPolarisLinkedDeliveryTicketsArgs = {
14079
14149
  project: Scalars['ID'];
14080
14150
  issueIds?: Maybe<Array<Scalars['Int']>>;
14081
14151
  };
14152
+ export declare type QueryPolarisIdeaTemplatesArgs = {
14153
+ project: Scalars['ID'];
14154
+ };
14082
14155
  export declare type QueryAppActiveTunnelsArgs = {
14083
14156
  appId: Scalars['ID'];
14084
14157
  environmentId: Scalars['ID'];
@@ -14380,6 +14453,7 @@ export declare type RoadmapFilterConfiguration = {
14380
14453
  };
14381
14454
  export declare type RoadmapHealthCheck = {
14382
14455
  __typename?: 'RoadmapHealthCheck';
14456
+ id?: Maybe<Scalars['ID']>;
14383
14457
  title: Scalars['String'];
14384
14458
  explanation: Scalars['String'];
14385
14459
  learnMore: RoadmapHealthCheckLink;
@@ -14643,6 +14717,8 @@ export declare type RoadmapUserConfiguration = {
14643
14717
  listWidth: Scalars['Long'];
14644
14718
  timelineMode: RoadmapTimelineMode;
14645
14719
  levelOneViewSettings: RoadmapViewSettings;
14720
+ isReleasesVisible: Scalars['Boolean'];
14721
+ highlightedVersions: Array<Scalars['ID']>;
14646
14722
  };
14647
14723
  export declare type RoadmapVersion = {
14648
14724
  __typename?: 'RoadmapVersion';
@@ -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: Scalars['URL'];
14841
- type: Scalars['String'];
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: Scalars['URL'];
14861
- type: Scalars['String'];
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: Scalars['URL'];
14875
- type: Scalars['String'];
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?: Maybe<SearchFilterInput>;
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: Scalars['URL'];
14906
- type: Scalars['String'];
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
  };