@automate.ax/integration-contracts 0.119.5 → 0.119.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.
@@ -335,7 +335,7 @@ export function normalizeAclRule(value) {
335
335
  role: normalizeAclRole(value.role),
336
336
  scope: {
337
337
  type: normalizeAclScope(value.scope.type),
338
- value: value.scope.value ?? undefined,
338
+ value: value.scope.value || undefined,
339
339
  },
340
340
  };
341
341
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@automate.ax/integration-contracts",
3
- "version": "0.119.5",
3
+ "version": "0.119.6",
4
4
  "description": "Shared integration payload contracts and provider primitives for Automate.ax.",
5
5
  "license": "MIT",
6
6
  "repository": {
@@ -53,7 +53,7 @@
53
53
  }
54
54
  },
55
55
  "dependencies": {
56
- "@automate.ax/codec": "0.119.5",
56
+ "@automate.ax/codec": "0.119.6",
57
57
  "@cfworker/json-schema": "^4.1.1",
58
58
  "@googleapis/calendar": "^15.0.0",
59
59
  "@googleapis/forms": "^6.0.1",
@@ -418,7 +418,7 @@ export function normalizeAclRule(
418
418
  role: normalizeAclRole(value.role),
419
419
  scope: {
420
420
  type: normalizeAclScope(value.scope.type),
421
- value: value.scope.value ?? undefined,
421
+ value: value.scope.value || undefined,
422
422
  },
423
423
  }
424
424
  }