@rsdoctor/types 1.3.15 → 1.3.16

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.
@@ -17,6 +17,10 @@ export interface AlertsAPIResponse {
17
17
  * get the alerts list which use to display in overlay at the client page
18
18
  */
19
19
  [API.GetOverlayAlerts]: OverlayRuleStoreData[];
20
+ /**
21
+ * get the alerts list which use to display in category bundle at the client page
22
+ */
23
+ [API.GetBundleAlerts]: OverlayRuleStoreData[];
20
24
  }
21
25
  export interface AlertsAPIRequestBody {
22
26
  [API.GetPackageRelationAlertDetails]: {
@@ -67,6 +67,7 @@ export declare enum API {
67
67
  /** Alerts API */
68
68
  GetPackageRelationAlertDetails = "/api/alerts/details/package/relation",
69
69
  GetOverlayAlerts = "/api/alerts/overlay",
70
+ GetBundleAlerts = "/api/alerts/bundle",
70
71
  /** BundleDiff API */
71
72
  BundleDiffManifest = "/api/bundle_diff/manifest.json",
72
73
  GetBundleDiffSummary = "/api/bundle_diff/summary",
@@ -70,6 +70,7 @@ var API;
70
70
  /** Alerts API */
71
71
  API["GetPackageRelationAlertDetails"] = "/api/alerts/details/package/relation";
72
72
  API["GetOverlayAlerts"] = "/api/alerts/overlay";
73
+ API["GetBundleAlerts"] = "/api/alerts/bundle";
73
74
  /** BundleDiff API */
74
75
  API["BundleDiffManifest"] = "/api/bundle_diff/manifest.json";
75
76
  API["GetBundleDiffSummary"] = "/api/bundle_diff/summary";
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@rsdoctor/types",
3
- "version": "1.3.15",
3
+ "version": "1.3.16",
4
4
  "repository": {
5
5
  "type": "git",
6
6
  "url": "https://github.com/web-infra-dev/rsdoctor",