@forge/cli-shared 2.4.1-next.6 → 2.4.2-next.0

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.0
4
+
5
+ ### Patch Changes
6
+
7
+ - Updated dependencies [9e700ef8]
8
+ - @forge/manifest@3.6.1-next.0
9
+
10
+ ## 2.4.1
11
+
12
+ ### Patch Changes
13
+
14
+ - Updated dependencies [1a8d47c]
15
+ - Updated dependencies [e314dd0]
16
+ - Updated dependencies [0137135]
17
+ - Updated dependencies [2bd062d]
18
+ - Updated dependencies [9047581]
19
+ - Updated dependencies [5c9419f]
20
+ - Updated dependencies [e8a6926]
21
+ - Updated dependencies [cb28bc0]
22
+ - Updated dependencies [0920759]
23
+ - @forge/manifest@3.6.0
24
+
25
+ ## 2.4.1-next.7
26
+
27
+ ### Patch Changes
28
+
29
+ - Updated dependencies [0920759f]
30
+ - @forge/manifest@3.6.0-next.7
31
+
3
32
  ## 2.4.1-next.6
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';
@@ -5802,12 +5821,18 @@ export declare type ForgeMetricsIntervalInput = {
5802
5821
  start: Scalars['DateTime'];
5803
5822
  end: Scalars['DateTime'];
5804
5823
  };
5824
+ export declare type ForgeMetricsIntervalRange = {
5825
+ __typename?: 'ForgeMetricsIntervalRange';
5826
+ start: Scalars['DateTime'];
5827
+ end: Scalars['DateTime'];
5828
+ };
5805
5829
  export declare type ForgeMetricsInvocationData = ForgeMetricsData & {
5806
5830
  __typename?: 'ForgeMetricsInvocationData';
5807
5831
  name: Scalars['String'];
5808
5832
  type: ForgeMetricsDataType;
5809
5833
  series: Array<ForgeMetricsInvocationSeries>;
5810
5834
  resolution: ForgeMetricsResolution;
5835
+ interval: ForgeMetricsIntervalRange;
5811
5836
  };
5812
5837
  export declare type ForgeMetricsInvocationDataPoint = {
5813
5838
  __typename?: 'ForgeMetricsInvocationDataPoint';
@@ -5893,6 +5918,7 @@ export declare type ForgeMetricsSuccessRateData = ForgeMetricsData & {
5893
5918
  type: ForgeMetricsDataType;
5894
5919
  series: Array<ForgeMetricsSuccessRateSeries>;
5895
5920
  resolution: ForgeMetricsResolution;
5921
+ interval: ForgeMetricsIntervalRange;
5896
5922
  };
5897
5923
  export declare type ForgeMetricsSuccessRateDataPoint = {
5898
5924
  __typename?: 'ForgeMetricsSuccessRateDataPoint';
@@ -6037,7 +6063,7 @@ export declare type HelpCenterDeleteUpdateCollectionPayload = Payload & {
6037
6063
  errors?: Maybe<Array<MutationError>>;
6038
6064
  collectionIds: Array<Maybe<HelpCenterSuccessfullyDeletedUpdatedCollectionIds>>;
6039
6065
  };
6040
- export declare type HelpCenterHelpObject = HelpObjectStoreRequestForm | HelpObjectStoreArticle | QueryError;
6066
+ export declare type HelpCenterHelpObject = HelpObjectStoreRequestForm | HelpObjectStoreArticle | HelpObjectStoreQueryError;
6041
6067
  export declare type HelpCenterMutationApi = {
6042
6068
  __typename?: 'HelpCenterMutationApi';
6043
6069
  createCollection?: Maybe<HelpCenterCreateCollectionPayload>;
@@ -6104,14 +6130,14 @@ export declare type HelpCenterUpdateCollectionsOrderPayload = Payload & {
6104
6130
  export declare type HelpObjectStoreArticle = HelpObjectStoreHelpObject & Node & {
6105
6131
  __typename?: 'HelpObjectStoreArticle';
6106
6132
  id: Scalars['ID'];
6107
- title: Scalars['String'];
6108
- description: Scalars['String'];
6133
+ title?: Maybe<Scalars['String']>;
6134
+ description?: Maybe<Scalars['String']>;
6109
6135
  icon?: Maybe<HelpObjectStoreIcon>;
6110
- displayLink: Scalars['URL'];
6136
+ displayLink?: Maybe<Scalars['URL']>;
6111
6137
  entityId?: Maybe<Scalars['String']>;
6112
6138
  entityProjectId?: Maybe<Scalars['String']>;
6113
6139
  };
6114
- export declare type HelpObjectStoreArticleResult = HelpObjectStoreArticle | QueryError;
6140
+ export declare type HelpObjectStoreArticleResult = HelpObjectStoreArticle | HelpObjectStoreQueryError;
6115
6141
  export declare type HelpObjectStoreBulkCreateEntityMappingInput = {
6116
6142
  helpObjectStoreCreateEntityMappingInputItems: Array<HelpObjectStoreCreateEntityMappingInput>;
6117
6143
  };
@@ -6128,10 +6154,10 @@ export declare type HelpObjectStoreCreateEntityMappingPayload = Payload & {
6128
6154
  };
6129
6155
  export declare type HelpObjectStoreHelpObject = {
6130
6156
  id: Scalars['ID'];
6131
- title: Scalars['String'];
6132
- description: Scalars['String'];
6157
+ title?: Maybe<Scalars['String']>;
6158
+ description?: Maybe<Scalars['String']>;
6133
6159
  icon?: Maybe<HelpObjectStoreIcon>;
6134
- displayLink: Scalars['URL'];
6160
+ displayLink?: Maybe<Scalars['URL']>;
6135
6161
  };
6136
6162
  export declare enum HelpObjectStoreHelpObjectType {
6137
6163
  RequestForm = "REQUEST_FORM",
@@ -6163,17 +6189,23 @@ export declare type HelpObjectStoreQueryApiRequestFormsArgs = {
6163
6189
  export declare type HelpObjectStoreQueryApiArticlesArgs = {
6164
6190
  ids: Array<Scalars['ID']>;
6165
6191
  };
6192
+ export declare type HelpObjectStoreQueryError = {
6193
+ __typename?: 'HelpObjectStoreQueryError';
6194
+ id: Scalars['ID'];
6195
+ message?: Maybe<Scalars['String']>;
6196
+ extensions?: Maybe<Array<QueryErrorExtension>>;
6197
+ };
6166
6198
  export declare type HelpObjectStoreRequestForm = HelpObjectStoreHelpObject & Node & {
6167
6199
  __typename?: 'HelpObjectStoreRequestForm';
6168
6200
  id: Scalars['ID'];
6169
- title: Scalars['String'];
6170
- description: Scalars['String'];
6201
+ title?: Maybe<Scalars['String']>;
6202
+ description?: Maybe<Scalars['String']>;
6171
6203
  icon?: Maybe<HelpObjectStoreIcon>;
6172
- displayLink: Scalars['URL'];
6204
+ displayLink?: Maybe<Scalars['URL']>;
6173
6205
  entityId?: Maybe<Scalars['String']>;
6174
6206
  entityProjectId?: Maybe<Scalars['String']>;
6175
6207
  };
6176
- export declare type HelpObjectStoreRequestFormResult = HelpObjectStoreRequestForm | QueryError;
6208
+ export declare type HelpObjectStoreRequestFormResult = HelpObjectStoreRequestForm | HelpObjectStoreQueryError;
6177
6209
  export declare type HelpObjectStoreSuccessfullyCreatedEntityMappingDetail = {
6178
6210
  __typename?: 'HelpObjectStoreSuccessfullyCreatedEntityMappingDetail';
6179
6211
  id: Scalars['ID'];
@@ -6266,10 +6298,6 @@ export declare type InvokePolarisObjectPayload = Payload & {
6266
6298
  errors?: Maybe<Array<MutationError>>;
6267
6299
  response?: Maybe<ResolvedPolarisObject>;
6268
6300
  };
6269
- export declare type IssueAndProject = {
6270
- __typename?: 'IssueAndProject';
6271
- issueId: Scalars['ID'];
6272
- };
6273
6301
  export declare type IssueDevOpsBranchDetails = {
6274
6302
  __typename?: 'IssueDevOpsBranchDetails';
6275
6303
  name: Scalars['String'];
@@ -7336,6 +7364,11 @@ export declare type JiraDefaultGrantTypeValue = Node & {
7336
7364
  id: Scalars['ID'];
7337
7365
  name: Scalars['String'];
7338
7366
  };
7367
+ export declare enum JiraDeploymentsFeaturePrecondition {
7368
+ NotAvailable = "NOT_AVAILABLE",
7369
+ DeploymentsEmptyState = "DEPLOYMENTS_EMPTY_STATE",
7370
+ AllSatisfied = "ALL_SATISFIED"
7371
+ }
7339
7372
  export declare type JiraDevOpsBranchDetails = {
7340
7373
  __typename?: 'JiraDevOpsBranchDetails';
7341
7374
  providerBranchId?: Maybe<Scalars['String']>;
@@ -7788,6 +7821,11 @@ export declare type JiraHierarchyConfigError = {
7788
7821
  code?: Maybe<Scalars['String']>;
7789
7822
  message?: Maybe<Scalars['String']>;
7790
7823
  };
7824
+ export declare enum JiraInstallDeploymentsBannerPrecondition {
7825
+ NotAvailable = "NOT_AVAILABLE",
7826
+ FeatureNotEnabled = "FEATURE_NOT_ENABLED",
7827
+ DeploymentsEmptyState = "DEPLOYMENTS_EMPTY_STATE"
7828
+ }
7791
7829
  export declare type JiraInvalidJqlError = {
7792
7830
  __typename?: 'JiraInvalidJqlError';
7793
7831
  messages?: Maybe<Array<Maybe<Scalars['String']>>>;
@@ -7875,6 +7913,10 @@ export declare type JiraIssueIssueLinksArgs = {
7875
7913
  last?: Maybe<Scalars['Int']>;
7876
7914
  before?: Maybe<Scalars['String']>;
7877
7915
  };
7916
+ export declare type JiraIssueAndProject = {
7917
+ __typename?: 'JiraIssueAndProject';
7918
+ issueId: Scalars['ID'];
7919
+ };
7878
7920
  export declare type JiraIssueBranchDevSummary = {
7879
7921
  __typename?: 'JiraIssueBranchDevSummary';
7880
7922
  count?: Maybe<Scalars['Int']>;
@@ -9915,6 +9957,8 @@ export declare type JiraQuery = {
9915
9957
  issueSearchViewByNamespaceAndViewId?: Maybe<JiraIssueSearchView>;
9916
9958
  issueSearchStable?: Maybe<JiraIssueConnection>;
9917
9959
  devOps?: Maybe<JiraDevOpsQuery>;
9960
+ deploymentsFeaturePrecondition?: Maybe<JiraDeploymentsFeaturePrecondition>;
9961
+ installDeploymentsBannerPrecondition?: Maybe<JiraInstallDeploymentsBannerPrecondition>;
9918
9962
  };
9919
9963
  export declare type JiraQueryJiraProjectArgs = {
9920
9964
  id: Scalars['ID'];
@@ -10047,6 +10091,12 @@ export declare type JiraQueryIssueSearchStableArgs = {
10047
10091
  last?: Maybe<Scalars['Int']>;
10048
10092
  before?: Maybe<Scalars['String']>;
10049
10093
  };
10094
+ export declare type JiraQueryDeploymentsFeaturePreconditionArgs = {
10095
+ projectId: Scalars['ID'];
10096
+ };
10097
+ export declare type JiraQueryInstallDeploymentsBannerPreconditionArgs = {
10098
+ projectId: Scalars['ID'];
10099
+ };
10050
10100
  export declare type JiraRadioSelectField = Node & JiraIssueField & JiraIssueFieldConfiguration & JiraUserIssueFieldConfiguration & {
10051
10101
  __typename?: 'JiraRadioSelectField';
10052
10102
  id: Scalars['ID'];
@@ -12022,6 +12072,7 @@ export declare type Mutation = {
12022
12072
  createPolarisDecoration?: Maybe<CreatePolarisDecorationPayload>;
12023
12073
  updatePolarisDecoration?: Maybe<UpdatePolarisDecorationPayload>;
12024
12074
  deletePolarisDecoration?: Maybe<DeletePolarisDecorationPayload>;
12075
+ createPolarisIdeaTemplate?: Maybe<CreatePolarisIdeaTemplatePayload>;
12025
12076
  updatePolarisIdea?: Maybe<UpdatePolarisIdeaPayload>;
12026
12077
  createPolarisInsight?: Maybe<CreatePolarisInsightPayload>;
12027
12078
  updatePolarisInsight?: Maybe<UpdatePolarisInsightPayload>;
@@ -12079,6 +12130,9 @@ export declare type MutationCreateJiraProjectAndDevOpsToolRelationshipArgs = {
12079
12130
  export declare type MutationDeleteJiraProjectAndDevOpsToolRelationshipArgs = {
12080
12131
  input: JiraProjectAndDevOpsToolRelationshipDeleteInput;
12081
12132
  };
12133
+ export declare type MutationHelpObjectStoreArgs = {
12134
+ cloudId: Scalars['ID'];
12135
+ };
12082
12136
  export declare type MutationCreateColumnArgs = {
12083
12137
  input?: Maybe<CreateColumnInput>;
12084
12138
  };
@@ -12184,6 +12238,7 @@ export declare type MutationCreateReleaseNoteArgs = {
12184
12238
  description: Scalars['JSON'];
12185
12239
  changeCategory?: Maybe<Scalars['String']>;
12186
12240
  benefitsList?: Maybe<Scalars['JSON']>;
12241
+ featureRolloutEndDate?: Maybe<Scalars['DateTime']>;
12187
12242
  };
12188
12243
  export declare type MutationPublishReleaseNoteArgs = {
12189
12244
  id: Scalars['String'];
@@ -12202,6 +12257,7 @@ export declare type MutationUpdateReleaseNoteArgs = {
12202
12257
  changeCategory?: Maybe<Scalars['String']>;
12203
12258
  relatedContexts?: Maybe<Array<Scalars['String']>>;
12204
12259
  relatedContextIds?: Maybe<Array<Scalars['String']>>;
12260
+ featureRolloutEndDate?: Maybe<Scalars['DateTime']>;
12205
12261
  };
12206
12262
  export declare type MutationUpdateNavbarConnectionStateTabSeenArgs = {
12207
12263
  input: DevOpsToolUpdateNavbarConnectionStateTabSeenInput;
@@ -12340,6 +12396,9 @@ export declare type MutationUpdatePolarisDecorationArgs = {
12340
12396
  export declare type MutationDeletePolarisDecorationArgs = {
12341
12397
  id: Scalars['ID'];
12342
12398
  };
12399
+ export declare type MutationCreatePolarisIdeaTemplateArgs = {
12400
+ input: CreatePolarisIdeaTemplateInput;
12401
+ };
12343
12402
  export declare type MutationUpdatePolarisIdeaArgs = {
12344
12403
  project: Scalars['ID'];
12345
12404
  idea: Scalars['ID'];
@@ -12578,7 +12637,7 @@ export declare type NewCardParent = {
12578
12637
  export declare type Node = {
12579
12638
  id: Scalars['ID'];
12580
12639
  };
12581
- export declare type OnJiraIssueCreatedForUserResponseType = JiraProjectConnection | IssueAndProject;
12640
+ export declare type OnJiraIssueCreatedForUserResponseType = JiraProjectConnection | JiraIssueAndProject;
12582
12641
  export declare type OpsgenieAlertCountByPriority = {
12583
12642
  __typename?: 'OpsgenieAlertCountByPriority';
12584
12643
  priority?: Maybe<Scalars['String']>;
@@ -13233,6 +13292,17 @@ export declare type PolarisIdeaStringField = PolarisIdeaField & {
13233
13292
  emoji?: Maybe<Scalars['String']>;
13234
13293
  builtin?: Maybe<BuiltinPolarisIdeaField>;
13235
13294
  };
13295
+ export declare type PolarisIdeaTemplate = {
13296
+ __typename?: 'PolarisIdeaTemplate';
13297
+ id: Scalars['ID'];
13298
+ title: Scalars['String'];
13299
+ description?: Maybe<Scalars['String']>;
13300
+ color?: Maybe<Scalars['String']>;
13301
+ emoji?: Maybe<Scalars['String']>;
13302
+ template?: Maybe<Scalars['JSON']>;
13303
+ project?: Maybe<Scalars['ID']>;
13304
+ aaid?: Maybe<Scalars['String']>;
13305
+ };
13236
13306
  export declare type PolarisIdeaType = {
13237
13307
  __typename?: 'PolarisIdeaType';
13238
13308
  id: Scalars['ID'];
@@ -13814,6 +13884,7 @@ export declare type Query = {
13814
13884
  polarisAnonymousVisitorHashByID?: Maybe<PolarisAnonymousVisitorHash>;
13815
13885
  polarisLinkedDeliveryTickets?: Maybe<Array<Maybe<Scalars['JSON']>>>;
13816
13886
  polaris?: Maybe<PolarisQueryNamespace>;
13887
+ polarisIdeaTemplates?: Maybe<Array<PolarisIdeaTemplate>>;
13817
13888
  appActiveTunnels?: Maybe<AppTunnelDefinitions>;
13818
13889
  dvcs?: Maybe<DvcsQuery>;
13819
13890
  webTriggerUrlsByAppContext?: Maybe<Array<WebTriggerUrl>>;
@@ -14077,6 +14148,9 @@ export declare type QueryPolarisLinkedDeliveryTicketsArgs = {
14077
14148
  project: Scalars['ID'];
14078
14149
  issueIds?: Maybe<Array<Scalars['Int']>>;
14079
14150
  };
14151
+ export declare type QueryPolarisIdeaTemplatesArgs = {
14152
+ project: Scalars['ID'];
14153
+ };
14080
14154
  export declare type QueryAppActiveTunnelsArgs = {
14081
14155
  appId: Scalars['ID'];
14082
14156
  environmentId: Scalars['ID'];
@@ -14378,6 +14452,7 @@ export declare type RoadmapFilterConfiguration = {
14378
14452
  };
14379
14453
  export declare type RoadmapHealthCheck = {
14380
14454
  __typename?: 'RoadmapHealthCheck';
14455
+ id?: Maybe<Scalars['ID']>;
14381
14456
  title: Scalars['String'];
14382
14457
  explanation: Scalars['String'];
14383
14458
  learnMore: RoadmapHealthCheckLink;
@@ -14823,6 +14898,10 @@ export declare type SearchAnalyticsInput = {
14823
14898
  searchSessionId?: Maybe<Scalars['String']>;
14824
14899
  searchReferrerId?: Maybe<Scalars['String']>;
14825
14900
  };
14901
+ export declare type SearchBoardFilter = {
14902
+ projectARI: Scalars['String'];
14903
+ negateProjectFilter?: Maybe<Scalars['Boolean']>;
14904
+ };
14826
14905
  export declare type SearchConfluenceFilter = {
14827
14906
  spacesFilter?: Maybe<Array<Scalars['String']>>;
14828
14907
  contributorsFilter?: Maybe<Array<Scalars['String']>>;
@@ -14837,8 +14916,8 @@ export declare type SearchConfluencePageBlogAttachment = SearchResult & {
14837
14916
  id: Scalars['ID'];
14838
14917
  title: Scalars['String'];
14839
14918
  url: Scalars['URL'];
14840
- iconUrl: Scalars['URL'];
14841
- type: Scalars['String'];
14919
+ iconUrl?: Maybe<Scalars['URL']>;
14920
+ type: SearchResultType;
14842
14921
  description: Scalars['String'];
14843
14922
  lastModifiedDate?: Maybe<Scalars['DateTime']>;
14844
14923
  space?: Maybe<SearchSpace>;
@@ -14857,8 +14936,8 @@ export declare type SearchConfluenceSpace = SearchResult & {
14857
14936
  id: Scalars['ID'];
14858
14937
  title: Scalars['String'];
14859
14938
  url: Scalars['URL'];
14860
- iconUrl: Scalars['URL'];
14861
- type: Scalars['String'];
14939
+ iconUrl?: Maybe<Scalars['URL']>;
14940
+ type: SearchResultType;
14862
14941
  description: Scalars['String'];
14863
14942
  lastModifiedDate?: Maybe<Scalars['DateTime']>;
14864
14943
  };
@@ -14871,8 +14950,8 @@ export declare type SearchDefaultResult = SearchResult & {
14871
14950
  id: Scalars['ID'];
14872
14951
  title: Scalars['String'];
14873
14952
  url: Scalars['URL'];
14874
- iconUrl: Scalars['URL'];
14875
- type: Scalars['String'];
14953
+ iconUrl?: Maybe<Scalars['URL']>;
14954
+ type: SearchResultType;
14876
14955
  description: Scalars['String'];
14877
14956
  lastModifiedDate?: Maybe<Scalars['DateTime']>;
14878
14957
  };
@@ -14880,6 +14959,7 @@ export declare type SearchFilterInput = {
14880
14959
  entities: Array<Scalars['String']>;
14881
14960
  locations: Array<Scalars['String']>;
14882
14961
  confluenceFilters?: Maybe<SearchConfluenceFilter>;
14962
+ jiraFilters?: Maybe<SearchJiraFilter>;
14883
14963
  };
14884
14964
  export declare type SearchItemConnection = {
14885
14965
  __typename?: 'SearchItemConnection';
@@ -14887,31 +14967,91 @@ export declare type SearchItemConnection = {
14887
14967
  pageInfo: PageInfo;
14888
14968
  totalCount?: Maybe<Scalars['Int']>;
14889
14969
  };
14970
+ export declare type SearchJiraFilter = {
14971
+ boardFilter?: Maybe<SearchBoardFilter>;
14972
+ };
14973
+ export declare enum SearchProjectType {
14974
+ Software = "software",
14975
+ Business = "business",
14976
+ ServiceDesk = "service_desk",
14977
+ ProductDiscovery = "product_discovery"
14978
+ }
14890
14979
  export declare type SearchQueryApi = {
14891
14980
  __typename?: 'SearchQueryAPI';
14892
14981
  search: SearchItemConnection;
14893
14982
  };
14894
14983
  export declare type SearchQueryApiSearchArgs = {
14895
14984
  query?: Maybe<Scalars['String']>;
14896
- filters?: Maybe<SearchFilterInput>;
14985
+ filters: SearchFilterInput;
14897
14986
  analytics?: Maybe<SearchAnalyticsInput>;
14898
14987
  experience: Scalars['String'];
14899
14988
  first?: Maybe<Scalars['Int']>;
14989
+ after?: Maybe<Scalars['String']>;
14990
+ before?: Maybe<Scalars['String']>;
14991
+ last?: Maybe<Scalars['Int']>;
14900
14992
  };
14901
14993
  export declare type SearchResult = {
14902
14994
  id: Scalars['ID'];
14903
14995
  title: Scalars['String'];
14904
14996
  url: Scalars['URL'];
14905
- iconUrl: Scalars['URL'];
14906
- type: Scalars['String'];
14997
+ iconUrl?: Maybe<Scalars['URL']>;
14998
+ type: SearchResultType;
14907
14999
  description: Scalars['String'];
14908
- lastModifiedDate?: Maybe<Scalars['DateTime']>;
14909
15000
  };
14910
15001
  export declare type SearchResultItemEdge = {
14911
15002
  __typename?: 'SearchResultItemEdge';
14912
15003
  node?: Maybe<SearchResult>;
14913
15004
  cursor?: Maybe<Scalars['String']>;
14914
15005
  };
15006
+ export declare type SearchResultJiraBoard = SearchResult & {
15007
+ __typename?: 'SearchResultJiraBoard';
15008
+ id: Scalars['ID'];
15009
+ title: Scalars['String'];
15010
+ url: Scalars['URL'];
15011
+ iconUrl?: Maybe<Scalars['URL']>;
15012
+ type: SearchResultType;
15013
+ description: Scalars['String'];
15014
+ favourite: Scalars['Boolean'];
15015
+ boardId: Scalars['String'];
15016
+ container?: Maybe<SearchResultJiraBoardContainer>;
15017
+ };
15018
+ export declare type SearchResultJiraBoardContainer = SearchResultJiraBoardProjectContainer | SearchResultJiraBoardUserContainer;
15019
+ export declare type SearchResultJiraBoardProjectContainer = {
15020
+ __typename?: 'SearchResultJiraBoardProjectContainer';
15021
+ projectId: Scalars['ID'];
15022
+ projectKey: Scalars['String'];
15023
+ projectName: Scalars['String'];
15024
+ projectTypeKey: SearchProjectType;
15025
+ };
15026
+ export declare type SearchResultJiraBoardUserContainer = {
15027
+ __typename?: 'SearchResultJiraBoardUserContainer';
15028
+ userId: Scalars['ID'];
15029
+ userAccountId: Scalars['String'];
15030
+ userName: Scalars['String'];
15031
+ };
15032
+ export declare type SearchResultJiraProject = SearchResult & {
15033
+ __typename?: 'SearchResultJiraProject';
15034
+ id: Scalars['ID'];
15035
+ projectType: SearchProjectType;
15036
+ projectId: Scalars['String'];
15037
+ projectKey: Scalars['String'];
15038
+ title: Scalars['String'];
15039
+ url: Scalars['URL'];
15040
+ iconUrl?: Maybe<Scalars['URL']>;
15041
+ type: SearchResultType;
15042
+ description: Scalars['String'];
15043
+ favourite: Scalars['Boolean'];
15044
+ simplified: Scalars['Boolean'];
15045
+ };
15046
+ export declare enum SearchResultType {
15047
+ Blogpost = "blogpost",
15048
+ Space = "space",
15049
+ Board = "board",
15050
+ Filter = "filter",
15051
+ Issue = "issue",
15052
+ Plan = "plan",
15053
+ Project = "project"
15054
+ }
14915
15055
  export declare type SearchSpace = {
14916
15056
  __typename?: 'SearchSpace';
14917
15057
  key: Scalars['String'];
@@ -15040,6 +15180,7 @@ export declare type ShepherdAlert = {
15040
15180
  id: Scalars['ID'];
15041
15181
  orgId: Scalars['ID'];
15042
15182
  status: ShepherdAlertStatus;
15183
+ template?: Maybe<ShepherdAlertTemplateType>;
15043
15184
  title: Scalars['String'];
15044
15185
  updatedOn?: Maybe<Scalars['DateTime']>;
15045
15186
  };
@@ -15064,6 +15205,15 @@ export declare enum ShepherdAlertStatus {
15064
15205
  Triaged = "TRIAGED",
15065
15206
  Untriaged = "UNTRIAGED"
15066
15207
  }
15208
+ export declare enum ShepherdAlertTemplateType {
15209
+ AddedOrgAdmin = "ADDED_ORG_ADMIN",
15210
+ CreatedSamlConfig = "CREATED_SAML_CONFIG",
15211
+ Default = "DEFAULT",
15212
+ EnabledGsyncSso = "ENABLED_GSYNC_SSO",
15213
+ EnableScimSync = "ENABLE_SCIM_SYNC",
15214
+ TokenCreated = "TOKEN_CREATED",
15215
+ UserGrantedRole = "USER_GRANTED_ROLE"
15216
+ }
15067
15217
  export declare type ShepherdAlertsConnection = {
15068
15218
  __typename?: 'ShepherdAlertsConnection';
15069
15219
  edges?: Maybe<Array<Maybe<ShepherdAlertEdge>>>;
@@ -15080,6 +15230,7 @@ export declare type ShepherdCreateAlertInput = {
15080
15230
  cloudId?: Maybe<Scalars['ID']>;
15081
15231
  orgId: Scalars['ID'];
15082
15232
  status?: Maybe<ShepherdAlertStatus>;
15233
+ template?: Maybe<ShepherdAlertTemplateType>;
15083
15234
  title: Scalars['String'];
15084
15235
  };
15085
15236
  export declare type ShepherdCreateAlertPayload = Payload & {
@@ -15092,6 +15243,15 @@ export declare type ShepherdCreateEmailInput = {
15092
15243
  email?: Maybe<Scalars['String']>;
15093
15244
  status?: Maybe<ShepherdSubscriptionStatus>;
15094
15245
  };
15246
+ export declare type ShepherdCreateExampleAlertInput = {
15247
+ orgId: Scalars['ID'];
15248
+ };
15249
+ export declare type ShepherdCreateExampleAlertPayload = Payload & {
15250
+ __typename?: 'ShepherdCreateExampleAlertPayload';
15251
+ errors?: Maybe<Array<MutationError>>;
15252
+ node?: Maybe<ShepherdAlert>;
15253
+ success: Scalars['Boolean'];
15254
+ };
15095
15255
  export declare type ShepherdCreateOrganizationInput = {
15096
15256
  enabled?: Maybe<Scalars['Boolean']>;
15097
15257
  id: Scalars['ID'];
@@ -15151,6 +15311,7 @@ export declare type ShepherdGenericQueryErrorExtension = QueryErrorExtension & {
15151
15311
  export declare type ShepherdMutation = {
15152
15312
  __typename?: 'ShepherdMutation';
15153
15313
  createAlert?: Maybe<ShepherdCreateAlertPayload>;
15314
+ createExampleAlert?: Maybe<ShepherdCreateExampleAlertPayload>;
15154
15315
  createOrganization?: Maybe<ShepherdCreateOrganizationPayload>;
15155
15316
  createSubscription?: Maybe<ShepherdCreateSubscriptionPayload>;
15156
15317
  updateAlert?: Maybe<ShepherdUpdateAlertPayload>;
@@ -15160,6 +15321,9 @@ export declare type ShepherdMutation = {
15160
15321
  export declare type ShepherdMutationCreateAlertArgs = {
15161
15322
  input: ShepherdCreateAlertInput;
15162
15323
  };
15324
+ export declare type ShepherdMutationCreateExampleAlertArgs = {
15325
+ input: ShepherdCreateExampleAlertInput;
15326
+ };
15163
15327
  export declare type ShepherdMutationCreateOrganizationArgs = {
15164
15328
  input: ShepherdCreateOrganizationInput;
15165
15329
  };
@@ -15560,6 +15724,7 @@ export declare type Storage = {
15560
15724
  export declare type Subscription = {
15561
15725
  __typename?: 'Subscription';
15562
15726
  onJiraIssueCreatedForUser?: Maybe<OnJiraIssueCreatedForUserResponseType>;
15727
+ onActivityItemUpdate?: Maybe<Node>;
15563
15728
  };
15564
15729
  export declare type SubscriptionOnJiraIssueCreatedForUserArgs = {
15565
15730
  cloudId: Scalars['ID'];
@@ -15567,6 +15732,9 @@ export declare type SubscriptionOnJiraIssueCreatedForUserArgs = {
15567
15732
  projectType?: JiraProjectType;
15568
15733
  filter?: JiraProjectFilterInput;
15569
15734
  };
15735
+ export declare type SubscriptionOnActivityItemUpdateArgs = {
15736
+ issueId: Scalars['ID'];
15737
+ };
15570
15738
  export declare type SupportRequest = {
15571
15739
  __typename?: 'SupportRequest';
15572
15740
  id: Scalars['ID'];