@automagik/omni 2.260718.6 → 2.260719.2

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/dist/index.js CHANGED
@@ -125191,7 +125191,7 @@ import { fileURLToPath } from "url";
125191
125191
  // package.json
125192
125192
  var package_default = {
125193
125193
  name: "@automagik/omni",
125194
- version: "2.260718.6",
125194
+ version: "2.260719.2",
125195
125195
  description: "LLM-optimized CLI for Omni",
125196
125196
  type: "module",
125197
125197
  bin: {
@@ -227026,7 +227026,7 @@ var init_sentry_scrub = __esm(() => {
227026
227026
  var require_package7 = __commonJS((exports, module) => {
227027
227027
  module.exports = {
227028
227028
  name: "@omni/api",
227029
- version: "2.260718.6",
227029
+ version: "2.260719.2",
227030
227030
  type: "module",
227031
227031
  exports: {
227032
227032
  ".": {
@@ -358031,15 +358031,14 @@ function intersectAuthorities(left, right) {
358031
358031
  function deriveInstanceAuthorities(input) {
358032
358032
  if (input.instanceIds !== null && !isStringArray(input.instanceIds))
358033
358033
  return null;
358034
- if (input.instanceAllowlist !== undefined && !isStringArray(input.instanceAllowlist))
358034
+ if (!isStringArray(input.instanceAllowlist))
358035
358035
  return null;
358036
- if (input.profile !== undefined && input.profile !== null && (typeof input.profile !== "string" || !KNOWN_API_KEY_PROFILES.has(input.profile))) {
358036
+ if (input.profile !== null && (typeof input.profile !== "string" || !KNOWN_API_KEY_PROFILES.has(input.profile))) {
358037
358037
  return null;
358038
358038
  }
358039
358039
  const legacy = input.instanceIds === null ? null : normalizeInstanceIds(input.instanceIds);
358040
358040
  const legacyEmptyInactive = input.instanceIds === null || input.instanceIds.length === 0 ? null : legacy;
358041
- const instanceAllowlist = input.instanceAllowlist ?? [];
358042
- const profileAware = isLockActive(input.profile, "instanceAllowlist", instanceAllowlist) ? normalizeInstanceIds(instanceAllowlist) : null;
358041
+ const profileAware = isLockActive(input.profile, "instanceAllowlist", input.instanceAllowlist) ? normalizeInstanceIds(input.instanceAllowlist) : null;
358043
358042
  return {
358044
358043
  legacy,
358045
358044
  legacyEmptyInactive,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@automagik/omni",
3
- "version": "2.260718.6",
3
+ "version": "2.260719.2",
4
4
  "description": "LLM-optimized CLI for Omni",
5
5
  "type": "module",
6
6
  "bin": {