@katlux/providers 0.1.0-beta.64 → 0.1.0-beta.65

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.cjs CHANGED
@@ -1,12 +1,11 @@
1
1
  'use strict';
2
2
 
3
3
  const vue = require('vue');
4
- const nuxtAppCompat = require('./nuxtAppCompat.cjs');
4
+ const nuxtAppCompat = require('@katlux/providers/nuxtAppCompat');
5
5
  const providers = require('@katlux/providers');
6
6
  const h3 = require('h3');
7
7
  const ofetch = require('ofetch');
8
8
 
9
-
10
9
  var EDataFilterOperator = /* @__PURE__ */ ((EDataFilterOperator2) => {
11
10
  EDataFilterOperator2["Equal"] = "==";
12
11
  EDataFilterOperator2["NotEqual"] = "!=";
package/dist/index.mjs CHANGED
@@ -1,10 +1,9 @@
1
1
  import { ref, watch, computed } from 'vue';
2
- import { getNuxtApp, getRoute, getRouter, getNuxtData, getAsyncData, clearNuxtDataKey, onNuxtReadyCallback } from './nuxtAppCompat.mjs';
2
+ import { getNuxtApp, getRoute, getRouter, getNuxtData, getAsyncData, clearNuxtDataKey, onNuxtReadyCallback } from '@katlux/providers/nuxtAppCompat';
3
3
  import { EDataFilterOperator as EDataFilterOperator$1 } from '@katlux/providers';
4
4
  import { parseCookies, getCookie, setCookie, deleteCookie } from 'h3';
5
5
  import { $fetch } from 'ofetch';
6
6
 
7
-
8
7
  var EDataFilterOperator = /* @__PURE__ */ ((EDataFilterOperator2) => {
9
8
  EDataFilterOperator2["Equal"] = "==";
10
9
  EDataFilterOperator2["NotEqual"] = "!=";
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@katlux/providers",
3
- "version": "0.1.0-beta.64",
3
+ "version": "0.1.0-beta.65",
4
4
  "description": "Core data calculation and caching providers for the Katlux ecosystem",
5
5
  "author": "Katlux",
6
6
  "license": "MIT",
@@ -19,6 +19,17 @@
19
19
  "types": "./dist/index.d.ts",
20
20
  "import": "./dist/index.mjs",
21
21
  "require": "./dist/index.cjs"
22
+ },
23
+ "./nuxtAppCompat": {
24
+ "types": "./dist/nuxtAppCompat.d.ts",
25
+ "node": {
26
+ "import": "./dist/nuxtAppCompat.server.mjs",
27
+ "require": "./dist/nuxtAppCompat.server.cjs"
28
+ },
29
+ "default": {
30
+ "import": "./dist/nuxtAppCompat.mjs",
31
+ "require": "./dist/nuxtAppCompat.cjs"
32
+ }
22
33
  }
23
34
  },
24
35
  "dependencies": {},