@spotify/backstage-plugin-pulse-common 0.11.4 → 0.11.6
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 +15 -0
- package/README.md +0 -2
- package/dist/config.esm.js +2 -0
- package/dist/graphql/schema-types.generated.esm.js +2 -0
- package/dist/index.cjs.js +19 -19
- package/dist/index.d.ts +1 -1
- package/dist/index.esm.js +1 -22
- package/dist/permissions.esm.js +2 -0
- package/dist/polyfills.esm.js +2 -0
- package/dist/templates/convertTemplateToNode.esm.js +2 -0
- package/dist/templates/evaluation.esm.js +2 -0
- package/dist/templates/index.esm.js +2 -0
- package/dist/templates/interpolation.esm.js +2 -0
- package/dist/templates/locators.esm.js +2 -0
- package/dist/templates/logic.esm.js +2 -0
- package/dist/templates/schema/logic_parser.esm.js +23 -0
- package/dist/templates/schema/survey-template-schema.json.esm.js +2 -0
- package/dist/templates/validateResponse.esm.js +2 -0
- package/dist/templates/validateTemplate.esm.js +2 -0
- package/dist/transformCase.esm.js +2 -0
- package/package.json +4 -4
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,20 @@
|
|
|
1
1
|
# @spotify/backstage-plugin-pulse-common
|
|
2
2
|
|
|
3
|
+
## 0.11.6
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- Updated dependency `json-schema-to-typescript` to `^14.0.0`.
|
|
8
|
+
- Updated dependency `ajv-formats` to `^3.0.0`.
|
|
9
|
+
|
|
10
|
+
## 0.11.5
|
|
11
|
+
|
|
12
|
+
### Patch Changes
|
|
13
|
+
|
|
14
|
+
- Updated README
|
|
15
|
+
- Minor bugfixes and improvements.
|
|
16
|
+
- Updated backstage dependencies to `v1.26.0`
|
|
17
|
+
|
|
3
18
|
## 0.11.4
|
|
4
19
|
|
|
5
20
|
### Patch Changes
|
package/README.md
CHANGED
|
@@ -1,5 +1,3 @@
|
|
|
1
1
|
# Spotify Plugins for Backstage: Pulse - Common
|
|
2
2
|
|
|
3
3
|
This plugin is part of [Spotify Plugins for Backstage](https://backstage.spotify.com/marketplace/spotify/bundle/spotify-plugins-bundle/).
|
|
4
|
-
|
|
5
|
-
If you are already a customer, you can find detailed documentation about the Pulse Plugins [here](https://backstage.spotify.com/docs/pulse).
|
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
const i="pulse.experimentalFlags",a=(t,e)=>{const n=t.getOptionalStringArray(i);return n==null?void 0:n.includes(e)},p=(t,e)=>{var n;const l=t.getOptionalStringArray(i),r=`${e}=`;return(n=l==null?void 0:l.find(o=>o.startsWith(r)))==null?void 0:n.replace(r,"")};export{a as getExperimentalOptionalBoolean,p as getExperimentalOptionalString};
|
|
2
|
+
//# sourceMappingURL=config.esm.js.map
|
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
var I=(e=>(e.DuplicateResponse="DUPLICATE_RESPONSE",e.InternalError="INTERNAL_ERROR",e.InvalidDates="INVALID_DATES",e.InvalidId="INVALID_ID",e.InvalidParticipants="INVALID_PARTICIPANTS",e.InvalidResponse="INVALID_RESPONSE",e.MissingTitle="MISSING_TITLE",e.OverlappingSurveys="OVERLAPPING_SURVEYS",e.ParticipantsFrozen="PARTICIPANTS_FROZEN",e.SurveyIsClosed="SURVEY_IS_CLOSED",e.Unauthorized="UNAUTHORIZED",e))(I||{}),i=(e=>(e.Horizontal="HORIZONTAL",e.Vertical="VERTICAL",e))(i||{}),t=(e=>(e.Optional="OPTIONAL",e.Request="REQUEST",e.Required="REQUIRED",e))(t||{}),T=(e=>(e.Description="DESCRIPTION",e.MatrixMulti="MATRIX_MULTI",e.MatrixSingle="MATRIX_SINGLE",e.McMulti="MC_MULTI",e.McSingle="MC_SINGLE",e.TextMulti="TEXT_MULTI",e.TextSingle="TEXT_SINGLE",e))(T||{}),E=(e=>(e.All="ALL",e.Constrained="CONSTRAINED",e.Subset="SUBSET",e))(E||{}),S=(e=>(e.Finalized="FINALIZED",e.Partial="PARTIAL",e))(S||{}),a=(e=>(e.Active="ACTIVE",e.Published="PUBLISHED",e))(a||{}),R=(e=>(e.Q1="Q1",e.Q2="Q2",e.Q3="Q3",e.Q4="Q4",e))(R||{});export{I as MutationResponseErrorCode,i as QuestionLayout,t as QuestionRequirement,T as QuestionType,E as RandomizationType,S as SurveyResponseStatus,a as SurveyStatus,R as TargetQuarter};
|
|
2
|
+
//# sourceMappingURL=schema-types.generated.esm.js.map
|