@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.
- package/dist/annotations.esm.js +4 -0
- package/dist/annotations.esm.js.map +1 -0
- package/dist/index.cjs.js +0 -2
- package/dist/index.cjs.js.map +1 -1
- package/dist/index.d.ts +1 -1
- package/dist/index.esm.js +1 -3
- package/dist/index.esm.js.map +1 -1
- package/package.json +7 -5
- package/CHANGELOG.md +0 -7
|
@@ -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
package/dist/index.cjs.js.map
CHANGED
|
@@ -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":"
|
|
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
package/dist/index.esm.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.esm.js","sources":[
|
|
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.
|
|
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.
|
|
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
|
+
}
|