@adobe/acc-js-sdk 1.1.43 → 1.1.44

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.
@@ -291,6 +291,8 @@ const root = await node.linkTarget();
291
291
  <tr><td><b>belongsTo</b></td><td>For attribute and elements, indicates the schema id in which they were defined. Since version 1.1.10 of the SDK</td></tr>
292
292
  <tr><td><b>default</b></td><td>Default value if any. Can be an array for collections. Since version 1.1.24 of the SDK</td></tr>
293
293
  <tr><td><b>translatedDefault</b></td><td>Default value if any. Since version 1.1.24 of the SDK</td></tr>
294
+ <tr><td><b>ordered</b></td><td>If children are ordered</td></tr>
295
+ <tr><td><b>doesNotSupportDiff</b></td><td>If returning the whole node when comparing difference</td></tr>
294
296
  </tbody>
295
297
  </table>
296
298
 
@@ -2,6 +2,14 @@
2
2
  layout: page
3
3
  title: Change Log
4
4
  ---
5
+ <section class="changelog"><h1>Version 1.1.44</h1>
6
+ <h2>2024/01/02</h2>
7
+ <li>
8
+ Add the "ordered" and "doesNotSupportDiff" attributes to the nodes in the application object
9
+ </li>
10
+ </section>
11
+
12
+
5
13
  <section class="changelog"><h1>Version 1.1.43</h1>
6
14
  <h2>2023/12/21</h2>
7
15
  <li>
package/package-lock.json CHANGED
@@ -1,12 +1,12 @@
1
1
  {
2
2
  "name": "@adobe/acc-js-sdk",
3
- "version": "1.1.43",
3
+ "version": "1.1.44",
4
4
  "lockfileVersion": 2,
5
5
  "requires": true,
6
6
  "packages": {
7
7
  "": {
8
8
  "name": "@adobe/acc-js-sdk",
9
- "version": "1.1.43",
9
+ "version": "1.1.44",
10
10
  "license": "ISC",
11
11
  "dependencies": {
12
12
  "axios": "^1.2.1",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@adobe/acc-js-sdk",
3
- "version": "1.1.43",
3
+ "version": "1.1.44",
4
4
  "description": "ACC Javascript SDK",
5
5
  "main": "src/index.js",
6
6
  "homepage": "https://github.com/adobe/acc-js-sdk#readme",
@@ -386,6 +386,12 @@ class XtkSchemaNode {
386
386
  */
387
387
  this.unbound = EntityAccessor.getAttributeAsBoolean(xml, "unbound");
388
388
 
389
+ /**
390
+ * If children are ordered
391
+ * @type {boolean}
392
+ */
393
+ this.ordered = EntityAccessor.getAttributeAsBoolean(xml, "ordered");
394
+
389
395
  /**
390
396
  * The expression controlling the visibility of the current node
391
397
  * @type {string}
@@ -410,6 +416,12 @@ class XtkSchemaNode {
410
416
  */
411
417
  this.isAdvanced = EntityAccessor.getAttributeAsBoolean(xml, "advanced");
412
418
 
419
+ /**
420
+ * if returning the whole node when camparing difference
421
+ * @type {boolean}
422
+ */
423
+ this.doesNotSupportDiff = EntityAccessor.getAttributeAsBoolean(xml, "doesNotSupportDiff");
424
+
413
425
  /**
414
426
  * Children of the node. This is a object whose key are the names of the children nodes (without the "@"
415
427
  * character for attributes)