pinia-orm-edge 1.11.0-28877344.fed277b → 1.11.0-28995653.3e41ed5
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/casts.cjs +1 -1
- package/dist/casts.d.cts +2 -2
- package/dist/casts.d.mts +2 -2
- package/dist/casts.d.ts +2 -2
- package/dist/casts.mjs +1 -1
- package/dist/decorators.d.cts +3 -3
- package/dist/decorators.d.mts +3 -3
- package/dist/decorators.d.ts +3 -3
- package/dist/helpers.cjs +1 -1
- package/dist/helpers.d.cts +2 -2
- package/dist/helpers.d.mts +2 -2
- package/dist/helpers.d.ts +2 -2
- package/dist/helpers.mjs +1 -1
- package/dist/index.cjs +470 -623
- package/dist/index.d.cts +3 -3
- package/dist/index.d.mts +3 -3
- package/dist/index.d.ts +3 -3
- package/dist/index.mjs +470 -623
- package/dist/nanoid/async.cjs +2 -8
- package/dist/nanoid/async.d.cts +2 -2
- package/dist/nanoid/async.d.mts +2 -2
- package/dist/nanoid/async.d.ts +2 -2
- package/dist/nanoid/async.mjs +2 -8
- package/dist/nanoid/index.cjs +2 -8
- package/dist/nanoid/index.d.cts +2 -2
- package/dist/nanoid/index.d.mts +2 -2
- package/dist/nanoid/index.d.ts +2 -2
- package/dist/nanoid/index.mjs +2 -8
- package/dist/nanoid/non-secure.cjs +2 -8
- package/dist/nanoid/non-secure.d.cts +2 -2
- package/dist/nanoid/non-secure.d.mts +2 -2
- package/dist/nanoid/non-secure.d.ts +2 -2
- package/dist/nanoid/non-secure.mjs +2 -8
- package/dist/shared/{pinia-orm.cf7a7464.d.cts → pinia-orm.BcBqSZTx.d.cts} +11 -11
- package/dist/shared/{pinia-orm.cf7a7464.d.mts → pinia-orm.BcBqSZTx.d.mts} +11 -11
- package/dist/shared/{pinia-orm.cf7a7464.d.ts → pinia-orm.BcBqSZTx.d.ts} +11 -11
- package/dist/shared/{pinia-orm.4ff2e12f.mjs → pinia-orm.C7bM_uXu.mjs} +12 -18
- package/dist/shared/{pinia-orm.a661fdf8.cjs → pinia-orm.CO4kZz81.cjs} +1 -1
- package/dist/shared/{pinia-orm.7ddc00a8.mjs → pinia-orm.DGc38JnV.mjs} +1 -1
- package/dist/shared/{pinia-orm.a7e3e0f3.cjs → pinia-orm.DWjxIbAJ.cjs} +12 -18
- package/dist/uuid/v1.cjs +2 -8
- package/dist/uuid/v1.d.cts +2 -2
- package/dist/uuid/v1.d.mts +2 -2
- package/dist/uuid/v1.d.ts +2 -2
- package/dist/uuid/v1.mjs +2 -8
- package/dist/uuid/v4.cjs +2 -8
- package/dist/uuid/v4.d.cts +2 -2
- package/dist/uuid/v4.d.mts +2 -2
- package/dist/uuid/v4.d.ts +2 -2
- package/dist/uuid/v4.mjs +2 -8
- package/package.json +13 -13
package/dist/uuid/v1.d.mts
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
import { V1Options } from 'uuid';
|
2
|
-
import { a2 as CastAttribute, q as ModelFields, aq as PropertyDecorator } from '../shared/pinia-orm.
|
2
|
+
import { a2 as CastAttribute, q as ModelFields, aq as PropertyDecorator } from '../shared/pinia-orm.BcBqSZTx.mjs';
|
3
3
|
import 'pinia';
|
4
|
-
import 'vue
|
4
|
+
import 'vue';
|
5
5
|
import '@pinia-orm/normalizr';
|
6
6
|
import '@/composables';
|
7
7
|
|
package/dist/uuid/v1.d.ts
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
import { V1Options } from 'uuid';
|
2
|
-
import { a2 as CastAttribute, q as ModelFields, aq as PropertyDecorator } from '../shared/pinia-orm.
|
2
|
+
import { a2 as CastAttribute, q as ModelFields, aq as PropertyDecorator } from '../shared/pinia-orm.BcBqSZTx.js';
|
3
3
|
import 'pinia';
|
4
|
-
import 'vue
|
4
|
+
import 'vue';
|
5
5
|
import '@pinia-orm/normalizr';
|
6
6
|
import '@/composables';
|
7
7
|
|
package/dist/uuid/v1.mjs
CHANGED
@@ -1,13 +1,8 @@
|
|
1
1
|
import { v1 } from 'uuid';
|
2
|
-
import { C as CastAttribute } from '../shared/pinia-orm.
|
2
|
+
import { C as CastAttribute } from '../shared/pinia-orm.C7bM_uXu.mjs';
|
3
3
|
|
4
|
-
var __defProp = Object.defineProperty;
|
5
|
-
var __defNormalProp = (obj, key, value) => key in obj ? __defProp(obj, key, { enumerable: true, configurable: true, writable: true, value }) : obj[key] = value;
|
6
|
-
var __publicField = (obj, key, value) => {
|
7
|
-
__defNormalProp(obj, typeof key !== "symbol" ? key + "" : key, value);
|
8
|
-
return value;
|
9
|
-
};
|
10
4
|
class UidCast extends CastAttribute {
|
5
|
+
static parameters;
|
11
6
|
/**
|
12
7
|
* Create a new String attribute instance.
|
13
8
|
*/
|
@@ -25,7 +20,6 @@ class UidCast extends CastAttribute {
|
|
25
20
|
return value ?? v1(this.$parameters);
|
26
21
|
}
|
27
22
|
}
|
28
|
-
__publicField(UidCast, "parameters");
|
29
23
|
|
30
24
|
function Uid(options) {
|
31
25
|
return (target, propertyKey) => {
|
package/dist/uuid/v4.cjs
CHANGED
@@ -1,15 +1,10 @@
|
|
1
1
|
'use strict';
|
2
2
|
|
3
3
|
const uuid = require('uuid');
|
4
|
-
const CastAttribute = require('../shared/pinia-orm.
|
4
|
+
const CastAttribute = require('../shared/pinia-orm.DWjxIbAJ.cjs');
|
5
5
|
|
6
|
-
var __defProp = Object.defineProperty;
|
7
|
-
var __defNormalProp = (obj, key, value) => key in obj ? __defProp(obj, key, { enumerable: true, configurable: true, writable: true, value }) : obj[key] = value;
|
8
|
-
var __publicField = (obj, key, value) => {
|
9
|
-
__defNormalProp(obj, typeof key !== "symbol" ? key + "" : key, value);
|
10
|
-
return value;
|
11
|
-
};
|
12
6
|
class UidCast extends CastAttribute.CastAttribute {
|
7
|
+
static parameters;
|
13
8
|
/**
|
14
9
|
* Create a new String attribute instance.
|
15
10
|
*/
|
@@ -27,7 +22,6 @@ class UidCast extends CastAttribute.CastAttribute {
|
|
27
22
|
return value ?? uuid.v4(this.$parameters);
|
28
23
|
}
|
29
24
|
}
|
30
|
-
__publicField(UidCast, "parameters");
|
31
25
|
|
32
26
|
function Uid(options) {
|
33
27
|
return (target, propertyKey) => {
|
package/dist/uuid/v4.d.cts
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
import { V4Options } from 'uuid';
|
2
|
-
import { a2 as CastAttribute, q as ModelFields, aq as PropertyDecorator } from '../shared/pinia-orm.
|
2
|
+
import { a2 as CastAttribute, q as ModelFields, aq as PropertyDecorator } from '../shared/pinia-orm.BcBqSZTx.cjs';
|
3
3
|
import 'pinia';
|
4
|
-
import 'vue
|
4
|
+
import 'vue';
|
5
5
|
import '@pinia-orm/normalizr';
|
6
6
|
import '@/composables';
|
7
7
|
|
package/dist/uuid/v4.d.mts
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
import { V4Options } from 'uuid';
|
2
|
-
import { a2 as CastAttribute, q as ModelFields, aq as PropertyDecorator } from '../shared/pinia-orm.
|
2
|
+
import { a2 as CastAttribute, q as ModelFields, aq as PropertyDecorator } from '../shared/pinia-orm.BcBqSZTx.mjs';
|
3
3
|
import 'pinia';
|
4
|
-
import 'vue
|
4
|
+
import 'vue';
|
5
5
|
import '@pinia-orm/normalizr';
|
6
6
|
import '@/composables';
|
7
7
|
|
package/dist/uuid/v4.d.ts
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
import { V4Options } from 'uuid';
|
2
|
-
import { a2 as CastAttribute, q as ModelFields, aq as PropertyDecorator } from '../shared/pinia-orm.
|
2
|
+
import { a2 as CastAttribute, q as ModelFields, aq as PropertyDecorator } from '../shared/pinia-orm.BcBqSZTx.js';
|
3
3
|
import 'pinia';
|
4
|
-
import 'vue
|
4
|
+
import 'vue';
|
5
5
|
import '@pinia-orm/normalizr';
|
6
6
|
import '@/composables';
|
7
7
|
|
package/dist/uuid/v4.mjs
CHANGED
@@ -1,13 +1,8 @@
|
|
1
1
|
import { v4 } from 'uuid';
|
2
|
-
import { C as CastAttribute } from '../shared/pinia-orm.
|
2
|
+
import { C as CastAttribute } from '../shared/pinia-orm.C7bM_uXu.mjs';
|
3
3
|
|
4
|
-
var __defProp = Object.defineProperty;
|
5
|
-
var __defNormalProp = (obj, key, value) => key in obj ? __defProp(obj, key, { enumerable: true, configurable: true, writable: true, value }) : obj[key] = value;
|
6
|
-
var __publicField = (obj, key, value) => {
|
7
|
-
__defNormalProp(obj, typeof key !== "symbol" ? key + "" : key, value);
|
8
|
-
return value;
|
9
|
-
};
|
10
4
|
class UidCast extends CastAttribute {
|
5
|
+
static parameters;
|
11
6
|
/**
|
12
7
|
* Create a new String attribute instance.
|
13
8
|
*/
|
@@ -25,7 +20,6 @@ class UidCast extends CastAttribute {
|
|
25
20
|
return value ?? v4(this.$parameters);
|
26
21
|
}
|
27
22
|
}
|
28
|
-
__publicField(UidCast, "parameters");
|
29
23
|
|
30
24
|
function Uid(options) {
|
31
25
|
return (target, propertyKey) => {
|
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "pinia-orm-edge",
|
3
|
-
"version": "1.11.0-
|
3
|
+
"version": "1.11.0-28995653.3e41ed5",
|
4
4
|
"description": "The Pinia plugin to enable Object-Relational Mapping access to the Pinia Store.",
|
5
5
|
"keywords": [
|
6
6
|
"vue",
|
@@ -43,42 +43,42 @@
|
|
43
43
|
"README.md"
|
44
44
|
],
|
45
45
|
"peerDependencies": {
|
46
|
-
"pinia": "^
|
46
|
+
"pinia": "^3.0.1"
|
47
47
|
},
|
48
48
|
"dependencies": {
|
49
|
-
"@pinia-orm/normalizr": "npm:@pinia-orm/normalizr-edge@1.11.0-
|
49
|
+
"@pinia-orm/normalizr": "npm:@pinia-orm/normalizr-edge@1.11.0-28995653.3e41ed5",
|
50
|
+
"vue-demi": "^0.14.10"
|
50
51
|
},
|
51
52
|
"devDependencies": {
|
52
53
|
"@nuxt/eslint-config": "^0.3.13",
|
53
54
|
"@nuxtjs/eslint-config-typescript": "^12.1.0",
|
54
55
|
"@pinia/testing": "^0.1.3",
|
55
56
|
"@size-limit/preset-small-lib": "^11.1.4",
|
56
|
-
"@types/node": "^
|
57
|
+
"@types/node": "^22.10.5",
|
57
58
|
"@types/prettier": "^3.0.0",
|
58
59
|
"@types/uuid": "^10.0.0",
|
59
60
|
"@typescript-eslint/parser": "^8.16.0",
|
60
|
-
"@vitest/coverage-v8": "^
|
61
|
-
"@vitest/ui": "^
|
61
|
+
"@vitest/coverage-v8": "^3.0.5",
|
62
|
+
"@vitest/ui": "^3.0.5",
|
62
63
|
"@vue/composition-api": "^1.7.2",
|
63
64
|
"@vue/test-utils": "^2.4.6",
|
64
65
|
"c8": "^10.1.2",
|
65
66
|
"core-js": "^3.37.1",
|
66
67
|
"eslint": "^9.6.0",
|
67
|
-
"happy-dom": "^
|
68
|
-
"mkdist": "^1.
|
68
|
+
"happy-dom": "^16.0.1",
|
69
|
+
"mkdist": "^2.1.0",
|
69
70
|
"nanoid": "4.0.2",
|
70
|
-
"pinia": "^
|
71
|
+
"pinia": "^3.0.1",
|
71
72
|
"prettier": "^3.3.2",
|
72
73
|
"size-limit": "^11.1.4",
|
73
74
|
"std-env": "^3.7.0",
|
74
75
|
"tsup": "^8.1.0",
|
75
76
|
"typescript": "^5.7.2",
|
76
|
-
"unbuild": "^
|
77
|
+
"unbuild": "^3.1.0",
|
77
78
|
"uuid": "^10.0.0",
|
78
79
|
"vite": "^5.3.3",
|
79
|
-
"vitest": "^
|
80
|
+
"vitest": "^3.0.5",
|
80
81
|
"vue": "^3.4.31",
|
81
|
-
"vue-demi": "^0.14.8",
|
82
82
|
"vue2": "npm:vue@^2.7.3"
|
83
83
|
},
|
84
84
|
"size-limit": [
|
@@ -100,7 +100,7 @@
|
|
100
100
|
}
|
101
101
|
],
|
102
102
|
"volta": {
|
103
|
-
"node": "
|
103
|
+
"node": "22.12.0"
|
104
104
|
},
|
105
105
|
"repository": {
|
106
106
|
"type": "git",
|