@solidstarters/solid-core 1.2.40 → 1.2.41
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/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@solidstarters/solid-core",
|
|
3
|
-
"version": "1.2.
|
|
3
|
+
"version": "1.2.41",
|
|
4
4
|
"description": "This module is a NestJS module containing all the required core providers required by a Solid application",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"types": "dist/index.d.ts",
|
|
@@ -853,7 +853,9 @@ export class FieldMetadataService {
|
|
|
853
853
|
"encrypt",
|
|
854
854
|
"encryptionType",
|
|
855
855
|
"decryptWhen",
|
|
856
|
-
"columnName"
|
|
856
|
+
"columnName",
|
|
857
|
+
"isUserKey"
|
|
858
|
+
|
|
857
859
|
];
|
|
858
860
|
|
|
859
861
|
case SolidFieldType.selectionDynamic:
|
|
@@ -874,7 +876,9 @@ export class FieldMetadataService {
|
|
|
874
876
|
"encrypt",
|
|
875
877
|
"encryptionType",
|
|
876
878
|
"decryptWhen",
|
|
877
|
-
"columnName"
|
|
879
|
+
"columnName",
|
|
880
|
+
"isUserKey"
|
|
881
|
+
|
|
878
882
|
];
|
|
879
883
|
case SolidFieldType.computed:
|
|
880
884
|
return [
|
|
@@ -894,7 +898,8 @@ export class FieldMetadataService {
|
|
|
894
898
|
"encrypt",
|
|
895
899
|
"encryptionType",
|
|
896
900
|
"decryptWhen",
|
|
897
|
-
"columnName"
|
|
901
|
+
"columnName",
|
|
902
|
+
"isUserKey"
|
|
898
903
|
];
|
|
899
904
|
|
|
900
905
|
case SolidFieldType.uuid:
|