@cristian-israel/giganet_lib_conecta 1.0.90 → 1.0.91
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.d.mts +4 -0
- package/dist/index.d.ts +4 -0
- package/dist/index.js +5 -0
- package/dist/index.mjs +5 -0
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -37474,6 +37474,7 @@ declare const schemas$4: {
|
|
|
37474
37474
|
id_ixc_soft: number;
|
|
37475
37475
|
is_admin: boolean;
|
|
37476
37476
|
permissions: string[];
|
|
37477
|
+
permissions_socket: string[];
|
|
37477
37478
|
permissions_front: string[];
|
|
37478
37479
|
} & mongoose.DefaultTimestampProps, mongoose.Document<unknown, {}, {
|
|
37479
37480
|
email: string;
|
|
@@ -37483,6 +37484,7 @@ declare const schemas$4: {
|
|
|
37483
37484
|
id_ixc_soft: number;
|
|
37484
37485
|
is_admin: boolean;
|
|
37485
37486
|
permissions: string[];
|
|
37487
|
+
permissions_socket: string[];
|
|
37486
37488
|
permissions_front: string[];
|
|
37487
37489
|
} & mongoose.DefaultTimestampProps, {
|
|
37488
37490
|
id: string;
|
|
@@ -37496,6 +37498,7 @@ declare const schemas$4: {
|
|
|
37496
37498
|
id_ixc_soft: number;
|
|
37497
37499
|
is_admin: boolean;
|
|
37498
37500
|
permissions: string[];
|
|
37501
|
+
permissions_socket: string[];
|
|
37499
37502
|
permissions_front: string[];
|
|
37500
37503
|
} & mongoose.DefaultTimestampProps & {
|
|
37501
37504
|
_id: mongoose.Types.ObjectId;
|
|
@@ -37511,6 +37514,7 @@ declare const schemas$4: {
|
|
|
37511
37514
|
id_ixc_soft: number;
|
|
37512
37515
|
is_admin: boolean;
|
|
37513
37516
|
permissions: string[];
|
|
37517
|
+
permissions_socket: string[];
|
|
37514
37518
|
permissions_front: string[];
|
|
37515
37519
|
createdAt: NativeDate;
|
|
37516
37520
|
updatedAt: NativeDate;
|
package/dist/index.d.ts
CHANGED
|
@@ -37474,6 +37474,7 @@ declare const schemas$4: {
|
|
|
37474
37474
|
id_ixc_soft: number;
|
|
37475
37475
|
is_admin: boolean;
|
|
37476
37476
|
permissions: string[];
|
|
37477
|
+
permissions_socket: string[];
|
|
37477
37478
|
permissions_front: string[];
|
|
37478
37479
|
} & mongoose.DefaultTimestampProps, mongoose.Document<unknown, {}, {
|
|
37479
37480
|
email: string;
|
|
@@ -37483,6 +37484,7 @@ declare const schemas$4: {
|
|
|
37483
37484
|
id_ixc_soft: number;
|
|
37484
37485
|
is_admin: boolean;
|
|
37485
37486
|
permissions: string[];
|
|
37487
|
+
permissions_socket: string[];
|
|
37486
37488
|
permissions_front: string[];
|
|
37487
37489
|
} & mongoose.DefaultTimestampProps, {
|
|
37488
37490
|
id: string;
|
|
@@ -37496,6 +37498,7 @@ declare const schemas$4: {
|
|
|
37496
37498
|
id_ixc_soft: number;
|
|
37497
37499
|
is_admin: boolean;
|
|
37498
37500
|
permissions: string[];
|
|
37501
|
+
permissions_socket: string[];
|
|
37499
37502
|
permissions_front: string[];
|
|
37500
37503
|
} & mongoose.DefaultTimestampProps & {
|
|
37501
37504
|
_id: mongoose.Types.ObjectId;
|
|
@@ -37511,6 +37514,7 @@ declare const schemas$4: {
|
|
|
37511
37514
|
id_ixc_soft: number;
|
|
37512
37515
|
is_admin: boolean;
|
|
37513
37516
|
permissions: string[];
|
|
37517
|
+
permissions_socket: string[];
|
|
37514
37518
|
permissions_front: string[];
|
|
37515
37519
|
createdAt: NativeDate;
|
|
37516
37520
|
updatedAt: NativeDate;
|
package/dist/index.js
CHANGED
|
@@ -92157,6 +92157,11 @@ var ToolsUserSchema = new import_mongoose7.Schema(
|
|
|
92157
92157
|
required: true,
|
|
92158
92158
|
default: []
|
|
92159
92159
|
},
|
|
92160
|
+
permissions_socket: {
|
|
92161
|
+
type: [String],
|
|
92162
|
+
required: true,
|
|
92163
|
+
default: []
|
|
92164
|
+
},
|
|
92160
92165
|
permissions_front: {
|
|
92161
92166
|
type: [String],
|
|
92162
92167
|
required: true,
|
package/dist/index.mjs
CHANGED
|
@@ -92109,6 +92109,11 @@ var ToolsUserSchema = new Schema6(
|
|
|
92109
92109
|
required: true,
|
|
92110
92110
|
default: []
|
|
92111
92111
|
},
|
|
92112
|
+
permissions_socket: {
|
|
92113
|
+
type: [String],
|
|
92114
|
+
required: true,
|
|
92115
|
+
default: []
|
|
92116
|
+
},
|
|
92112
92117
|
permissions_front: {
|
|
92113
92118
|
type: [String],
|
|
92114
92119
|
required: true,
|