@movable/rollup-plugin-manifest-validator 3.3.2-3.4.0-canary.1.0 → 3.4.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.
@@ -354,6 +354,15 @@ var _default = {
354
354
  maxLength: 18
355
355
  }
356
356
  },
357
+ configurable_element_ids: {
358
+ type: 'array',
359
+ items: {
360
+ type: 'string',
361
+ pattern: '^[a-zA-Z0-9]+$',
362
+ minLength: 15,
363
+ maxLength: 18
364
+ }
365
+ },
357
366
  studio_options: {
358
367
  type: 'object',
359
368
  additionalProperties: false,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@movable/rollup-plugin-manifest-validator",
3
- "version": "3.3.2-3.4.0-canary.1.0",
3
+ "version": "3.4.0",
4
4
  "description": "Validates app-manifest and package-manifest.yml",
5
5
  "main": "dist",
6
6
  "keywords": [],
@@ -38,5 +38,5 @@
38
38
  "volta": {
39
39
  "extends": "../../package.json"
40
40
  },
41
- "gitHead": "2fc08b78b3a67c5ce1531206c5cb186140b4cbf3"
41
+ "gitHead": "df40f5145661c286d01d3c99949c96c6550eb38b"
42
42
  }
@@ -191,6 +191,15 @@ export default {
191
191
  maxLength: 18
192
192
  }
193
193
  },
194
+ configurable_element_ids: {
195
+ type: 'array',
196
+ items: {
197
+ type: 'string',
198
+ pattern: '^[a-zA-Z0-9]+$',
199
+ minLength: 15,
200
+ maxLength: 18
201
+ }
202
+ },
194
203
  studio_options: {
195
204
  type: 'object',
196
205
  additionalProperties: false,
@@ -4,6 +4,9 @@ authors:
4
4
  integration_ids:
5
5
  - abcde0123456789
6
6
  - fghij0123456789
7
+ configurable_element_ids:
8
+ - abcde0123456789
9
+ - fghij0123456789
7
10
  javascript_file: dist/index.js
8
11
  html_file: app/index.html
9
12
  css_file: app/styles/style.css
@@ -81,8 +81,6 @@ describe('appManifestValidator utility', async () => {
81
81
  return acc;
82
82
  }, {});
83
83
 
84
- expect(1).to.equal(1);
85
-
86
84
  expect(typeLookup).to.deep.eq(
87
85
  {
88
86
  name: 'string',