strapi-plugin-magic-sessionmanager 2.0.3 → 2.0.5
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/server/index.js
CHANGED
|
@@ -390,8 +390,7 @@ const attributes = {
|
|
|
390
390
|
user: {
|
|
391
391
|
type: "relation",
|
|
392
392
|
relation: "manyToOne",
|
|
393
|
-
target: "plugin::users-permissions.user"
|
|
394
|
-
inversedBy: "sessions"
|
|
393
|
+
target: "plugin::users-permissions.user"
|
|
395
394
|
},
|
|
396
395
|
ipAddress: {
|
|
397
396
|
type: "string",
|
|
@@ -449,7 +448,7 @@ const require$$0 = {
|
|
|
449
448
|
};
|
|
450
449
|
const session$4 = require$$0;
|
|
451
450
|
var contentTypes$1 = {
|
|
452
|
-
|
|
451
|
+
session: {
|
|
453
452
|
schema: session$4
|
|
454
453
|
}
|
|
455
454
|
};
|
package/dist/server/index.mjs
CHANGED
|
@@ -386,8 +386,7 @@ const attributes = {
|
|
|
386
386
|
user: {
|
|
387
387
|
type: "relation",
|
|
388
388
|
relation: "manyToOne",
|
|
389
|
-
target: "plugin::users-permissions.user"
|
|
390
|
-
inversedBy: "sessions"
|
|
389
|
+
target: "plugin::users-permissions.user"
|
|
391
390
|
},
|
|
392
391
|
ipAddress: {
|
|
393
392
|
type: "string",
|
|
@@ -445,7 +444,7 @@ const require$$0 = {
|
|
|
445
444
|
};
|
|
446
445
|
const session$4 = require$$0;
|
|
447
446
|
var contentTypes$1 = {
|
|
448
|
-
|
|
447
|
+
session: {
|
|
449
448
|
schema: session$4
|
|
450
449
|
}
|
|
451
450
|
};
|
package/package.json
CHANGED