@axis-backstage/plugin-statuspage-common 0.2.0 → 0.3.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.
@@ -0,0 +1,4 @@
1
+ const STATUSPAGE_ANNOTATION = "statuspage.io/components";
2
+
3
+ export { STATUSPAGE_ANNOTATION };
4
+ //# sourceMappingURL=annotations.esm.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"annotations.esm.js","sources":["../src/annotations.ts"],"sourcesContent":["/**\n * Annotation used by Entities that will embed statuspage.io components and\n * component groups.\n *\n * @public\n */\nexport const STATUSPAGE_ANNOTATION = 'statuspage.io/components';\n"],"names":[],"mappings":"AAMO,MAAM,qBAAwB,GAAA;;;;"}
package/dist/index.cjs.js CHANGED
@@ -1,7 +1,5 @@
1
1
  'use strict';
2
2
 
3
- Object.defineProperty(exports, '__esModule', { value: true });
4
-
5
3
  const STATUSPAGE_ANNOTATION = "statuspage.io/components";
6
4
 
7
5
  exports.STATUSPAGE_ANNOTATION = STATUSPAGE_ANNOTATION;
@@ -1 +1 @@
1
- {"version":3,"file":"index.cjs.js","sources":["../src/annotations.ts"],"sourcesContent":["/**\n * Annotation used by Entities that will embed statuspage.io components and\n * component groups.\n *\n * @public\n */\nexport const STATUSPAGE_ANNOTATION = 'statuspage.io/components';\n"],"names":[],"mappings":";;;;AAMO,MAAM,qBAAwB,GAAA;;;;"}
1
+ {"version":3,"file":"index.cjs.js","sources":["../src/annotations.ts"],"sourcesContent":["/**\n * Annotation used by Entities that will embed statuspage.io components and\n * component groups.\n *\n * @public\n */\nexport const STATUSPAGE_ANNOTATION = 'statuspage.io/components';\n"],"names":[],"mappings":";;AAMO,MAAM,qBAAwB,GAAA;;;;"}
package/dist/index.d.ts CHANGED
@@ -126,4 +126,4 @@ type ComponentGroup = {
126
126
  */
127
127
  declare const STATUSPAGE_ANNOTATION = "statuspage.io/components";
128
128
 
129
- export { AffectedComponent, Component, ComponentGroup, ComponentStatus, Incident, IncidentStatus, IncidentUpdate, STATUSPAGE_ANNOTATION };
129
+ export { type AffectedComponent, type Component, type ComponentGroup, type ComponentStatus, type Incident, type IncidentStatus, type IncidentUpdate, STATUSPAGE_ANNOTATION };
package/dist/index.esm.js CHANGED
@@ -1,4 +1,2 @@
1
- const STATUSPAGE_ANNOTATION = "statuspage.io/components";
2
-
3
- export { STATUSPAGE_ANNOTATION };
1
+ export { STATUSPAGE_ANNOTATION } from './annotations.esm.js';
4
2
  //# sourceMappingURL=index.esm.js.map
@@ -1 +1 @@
1
- {"version":3,"file":"index.esm.js","sources":["../src/annotations.ts"],"sourcesContent":["/**\n * Annotation used by Entities that will embed statuspage.io components and\n * component groups.\n *\n * @public\n */\nexport const STATUSPAGE_ANNOTATION = 'statuspage.io/components';\n"],"names":[],"mappings":"AAMO,MAAM,qBAAwB,GAAA;;;;"}
1
+ {"version":3,"file":"index.esm.js","sources":[],"sourcesContent":[],"names":[],"mappings":""}
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@axis-backstage/plugin-statuspage-common",
3
3
  "description": "Common functionalities for the statuspage plugin",
4
- "version": "0.2.0",
4
+ "version": "0.3.0",
5
5
  "main": "dist/index.cjs.js",
6
6
  "types": "dist/index.d.ts",
7
7
  "license": "Apache-2.0",
@@ -9,7 +9,8 @@
9
9
  "access": "public",
10
10
  "main": "dist/index.cjs.js",
11
11
  "module": "dist/index.esm.js",
12
- "types": "dist/index.d.ts"
12
+ "types": "dist/index.d.ts",
13
+ "directory": "_release/package"
13
14
  },
14
15
  "backstage": {
15
16
  "role": "common-library"
@@ -24,10 +25,11 @@
24
25
  "postpack": "backstage-cli package postpack"
25
26
  },
26
27
  "devDependencies": {
27
- "@backstage/cli": "^0.25.1"
28
+ "@backstage/cli": "^0.26.6"
28
29
  },
29
30
  "files": [
30
31
  "dist"
31
32
  ],
32
- "module": "dist/index.esm.js"
33
- }
33
+ "module": "dist/index.esm.js",
34
+ "directory": "_release/package"
35
+ }
package/CHANGELOG.md DELETED
@@ -1,7 +0,0 @@
1
- # @axis-backstage/plugin-statuspage-common
2
-
3
- ## 0.2.0
4
-
5
- ### Minor Changes
6
-
7
- - b445aaa: Initial Release of the Statuspage Plugin