Skip to content

Commit 5d77cf3

Browse files
committed
build
1 parent 50d0bb6 commit 5d77cf3

5 files changed

+5
-10
lines changed

dist/vuex-orm-graphql.cjs.js

+1-2
Original file line numberDiff line numberDiff line change
@@ -7912,8 +7912,7 @@ var Model = /** @class */ (function () {
79127912
if (!field)
79137913
return false;
79147914
var context = Context.getInstance();
7915-
return field instanceof context.components.Number ||
7916-
field instanceof context.components.Uid;
7915+
return field instanceof context.components.Number || field instanceof context.components.Uid;
79177916
};
79187917
/**
79197918
* Tells if a field is a attribute (and thus not a relation)

dist/vuex-orm-graphql.esm-bundler.js

+1-2
Original file line numberDiff line numberDiff line change
@@ -7796,8 +7796,7 @@ class Model {
77967796
if (!field)
77977797
return false;
77987798
const context = Context.getInstance();
7799-
return field instanceof context.components.Number ||
7800-
field instanceof context.components.Uid;
7799+
return field instanceof context.components.Number || field instanceof context.components.Uid;
78017800
}
78027801
/**
78037802
* Tells if a field is a attribute (and thus not a relation)

dist/vuex-orm-graphql.esm.js

+1-2
Original file line numberDiff line numberDiff line change
@@ -7796,8 +7796,7 @@ class Model {
77967796
if (!field)
77977797
return false;
77987798
const context = Context.getInstance();
7799-
return field instanceof context.components.Number ||
7800-
field instanceof context.components.Uid;
7799+
return field instanceof context.components.Number || field instanceof context.components.Uid;
78017800
}
78027801
/**
78037802
* Tells if a field is a attribute (and thus not a relation)

dist/vuex-orm-graphql.esm.prod.js

+1-2
Original file line numberDiff line numberDiff line change
@@ -7796,8 +7796,7 @@ class Model {
77967796
if (!field)
77977797
return false;
77987798
const context = Context.getInstance();
7799-
return field instanceof context.components.Number ||
7800-
field instanceof context.components.Uid;
7799+
return field instanceof context.components.Number || field instanceof context.components.Uid;
78017800
}
78027801
/**
78037802
* Tells if a field is a attribute (and thus not a relation)

dist/vuex-orm-graphql.global.js

+1-2
Original file line numberDiff line numberDiff line change
@@ -7911,8 +7911,7 @@ var VuexORMGraphQLPlugin = (function (exports) {
79117911
if (!field)
79127912
return false;
79137913
var context = Context.getInstance();
7914-
return field instanceof context.components.Number ||
7915-
field instanceof context.components.Uid;
7914+
return field instanceof context.components.Number || field instanceof context.components.Uid;
79167915
};
79177916
/**
79187917
* Tells if a field is a attribute (and thus not a relation)

0 commit comments

Comments
 (0)