@spotify/backstage-plugin-pulse-common 0.12.2 → 0.12.3
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 +6 -0
- package/dist/index.d.ts +3 -3
- package/package.json +11 -4
package/CHANGELOG.md
CHANGED
package/dist/index.d.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import * as
|
|
1
|
+
import * as _backstage_plugin_permission_common_index from '@backstage/plugin-permission-common/index';
|
|
2
2
|
|
|
3
3
|
/**
|
|
4
4
|
* Types automatically generated by `yarn json2ts`.
|
|
@@ -818,9 +818,9 @@ type SurveyQuestionResponse = {
|
|
|
818
818
|
|
|
819
819
|
/** @public */
|
|
820
820
|
declare const permissions: {
|
|
821
|
-
allPermissions:
|
|
821
|
+
allPermissions: _backstage_plugin_permission_common_index.BasicPermission[];
|
|
822
822
|
SURVEY_RESOURCE_TYPE: string;
|
|
823
|
-
surveyAdministerPermission:
|
|
823
|
+
surveyAdministerPermission: _backstage_plugin_permission_common_index.BasicPermission;
|
|
824
824
|
};
|
|
825
825
|
|
|
826
826
|
export { type Answer, type Choice, DEFAULT_TEMPLATE_ID, LOCATOR_EXPRESSION, type Locator, type Page, type Question, type Randomization, type Section, type Statement, type SurveyQuestionResponse, type SurveyTemplate, interpolateTemplate, parseLocator, permissions, templateSchema, validateLocator, validateTemplate };
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@spotify/backstage-plugin-pulse-common",
|
|
3
|
-
"version": "0.12.
|
|
3
|
+
"version": "0.12.3",
|
|
4
4
|
"license": "SEE LICENSE IN LICENSE.md",
|
|
5
5
|
"homepage": "https://backstage.spotify.com",
|
|
6
6
|
"main": "dist/index.cjs.js",
|
|
@@ -30,8 +30,8 @@
|
|
|
30
30
|
"json2ts": "./src/templates/schema/generateSchemaTypes.sh"
|
|
31
31
|
},
|
|
32
32
|
"dependencies": {
|
|
33
|
-
"@backstage/config": "^1.
|
|
34
|
-
"@backstage/plugin-permission-common": "^0.8.
|
|
33
|
+
"@backstage/config": "^1.3.0",
|
|
34
|
+
"@backstage/plugin-permission-common": "^0.8.2",
|
|
35
35
|
"@ungap/structured-clone": "^1.2.0",
|
|
36
36
|
"ajv": "^8.11.2",
|
|
37
37
|
"ajv-formats": "^3.0.0",
|
|
@@ -39,7 +39,7 @@
|
|
|
39
39
|
"lodash": "^4.17.21"
|
|
40
40
|
},
|
|
41
41
|
"devDependencies": {
|
|
42
|
-
"@backstage/cli": "^0.
|
|
42
|
+
"@backstage/cli": "^0.29.2",
|
|
43
43
|
"@types/ungap__structured-clone": "^1.0.0",
|
|
44
44
|
"js-yaml": "^4.1.0",
|
|
45
45
|
"json-schema-to-typescript": "^15.0.0",
|
|
@@ -61,5 +61,12 @@
|
|
|
61
61
|
"yaml"
|
|
62
62
|
]
|
|
63
63
|
},
|
|
64
|
+
"typesVersions": {
|
|
65
|
+
"*": {
|
|
66
|
+
"index": [
|
|
67
|
+
"dist/index.d.ts"
|
|
68
|
+
]
|
|
69
|
+
}
|
|
70
|
+
},
|
|
64
71
|
"module": "dist/index.esm.js"
|
|
65
72
|
}
|