@nest-boot/validator 6.0.0-beta.3 → 6.10.1
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/LICENSE +21 -0
- package/dist/decorators/common/array-length.decorator.js +3 -4
- package/dist/decorators/common/array-length.decorator.js.map +1 -1
- package/dist/decorators/number/is-greater-than-or-equal.decorator.js +1 -2
- package/dist/decorators/number/is-greater-than-or-equal.decorator.js.map +1 -1
- package/dist/decorators/number/is-greater-than.decorator.js +1 -2
- package/dist/decorators/number/is-greater-than.decorator.js.map +1 -1
- package/dist/decorators/number/is-less-than-or-equal.decorator.js +1 -2
- package/dist/decorators/number/is-less-than-or-equal.decorator.js.map +1 -1
- package/dist/decorators/number/is-less-than.decorator.js +1 -2
- package/dist/decorators/number/is-less-than.decorator.js.map +1 -1
- package/dist/decorators/number/max.decorator.js +1 -2
- package/dist/decorators/number/max.decorator.js.map +1 -1
- package/dist/decorators/number/min.decorator.js +1 -2
- package/dist/decorators/number/min.decorator.js.map +1 -1
- package/dist/decorators/number/validate-compare-number.decorator.js +2 -2
- package/dist/decorators/number/validate-compare-number.decorator.js.map +1 -1
- package/dist/decorators/string/is-domain.decorator.js +1 -2
- package/dist/decorators/string/is-domain.decorator.js.map +1 -1
- package/dist/decorators/string/is-email.decorator.js +3 -3
- package/dist/decorators/string/is-email.decorator.js.map +1 -1
- package/dist/decorators/string/is-number-string.decorator.js +3 -3
- package/dist/decorators/string/is-number-string.decorator.js.map +1 -1
- package/dist/decorators/string/is-timezone.decorator.js +1 -2
- package/dist/decorators/string/is-timezone.decorator.js.map +1 -1
- package/dist/decorators/string/is-url.decorator.js +3 -3
- package/dist/decorators/string/is-url.decorator.js.map +1 -1
- package/dist/decorators/string/length.decorator.js +3 -3
- package/dist/decorators/string/length.decorator.js.map +1 -1
- package/dist/decorators/type-check/is-date.decorator.js +3 -3
- package/dist/decorators/type-check/is-date.decorator.js.map +1 -1
- package/dist/tsconfig.build.tsbuildinfo +1 -1
- package/dist/utils/build-i18n-message.js +2 -3
- package/dist/utils/build-i18n-message.js.map +1 -1
- package/package.json +23 -23
package/LICENSE
ADDED
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
MIT License
|
|
2
|
+
|
|
3
|
+
Copyright (c) 2024 nest-boot
|
|
4
|
+
|
|
5
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
6
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
7
|
+
in the Software without restriction, including without limitation the rights
|
|
8
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
9
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
10
|
+
furnished to do so, subject to the following conditions:
|
|
11
|
+
|
|
12
|
+
The above copyright notice and this permission notice shall be included in all
|
|
13
|
+
copies or substantial portions of the Software.
|
|
14
|
+
|
|
15
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
16
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
17
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
18
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
19
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
20
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
21
|
+
SOFTWARE.
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.ArrayLength =
|
|
3
|
+
exports.ArrayLength = ArrayLength;
|
|
4
4
|
const i18n_1 = require("@nest-boot/i18n");
|
|
5
5
|
const class_validator_1 = require("class-validator");
|
|
6
6
|
function arrayLengthMessage(value, property, min, max) {
|
|
@@ -16,14 +16,14 @@ function arrayLengthMessage(value, property, min, max) {
|
|
|
16
16
|
if (typeof min !== "undefined" && value.length < min) {
|
|
17
17
|
return (0, i18n_1.t)("validation:arrayLength.gte", {
|
|
18
18
|
property: (0, i18n_1.t)(`property:${property}`),
|
|
19
|
-
compareProperty:
|
|
19
|
+
compareProperty: String(min),
|
|
20
20
|
});
|
|
21
21
|
}
|
|
22
22
|
// 长度大于要求
|
|
23
23
|
if (typeof max !== "undefined" && value.length > max) {
|
|
24
24
|
return (0, i18n_1.t)("validation:arrayLength.lte", {
|
|
25
25
|
property: (0, i18n_1.t)(`property:${property}`),
|
|
26
|
-
compareProperty:
|
|
26
|
+
compareProperty: String(max),
|
|
27
27
|
});
|
|
28
28
|
}
|
|
29
29
|
}
|
|
@@ -64,5 +64,4 @@ function ArrayLength(validationOptions) {
|
|
|
64
64
|
}
|
|
65
65
|
};
|
|
66
66
|
}
|
|
67
|
-
exports.ArrayLength = ArrayLength;
|
|
68
67
|
//# sourceMappingURL=array-length.decorator.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"array-length.decorator.js","sourceRoot":"","sources":["../../../src/decorators/common/array-length.decorator.ts"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"array-length.decorator.js","sourceRoot":"","sources":["../../../src/decorators/common/array-length.decorator.ts"],"names":[],"mappings":";;AA8CA,kCAsCC;AApFD,0CAAoC;AACpC,qDAA4E;AAO5E,SAAS,kBAAkB,CACzB,KAAc,EACd,QAAgB,EAChB,GAAY,EACZ,GAAY;IAEZ,IAAI,KAAK,CAAC,OAAO,CAAC,KAAK,CAAC,EAAE,CAAC;QACzB,IAAI,OAAO,GAAG,KAAK,WAAW,IAAI,OAAO,GAAG,KAAK,WAAW,EAAE,CAAC;YAC7D,OAAO,IAAA,QAAC,EAAC,gCAAgC,EAAE;gBACzC,QAAQ,EAAE,IAAA,QAAC,EAAC,YAAY,QAAQ,EAAE,CAAC;gBACnC,GAAG;gBACH,GAAG;aACJ,CAAC,CAAC;QACL,CAAC;QAED,SAAS;QACT,IAAI,OAAO,GAAG,KAAK,WAAW,IAAI,KAAK,CAAC,MAAM,GAAG,GAAG,EAAE,CAAC;YACrD,OAAO,IAAA,QAAC,EAAC,4BAA4B,EAAE;gBACrC,QAAQ,EAAE,IAAA,QAAC,EAAC,YAAY,QAAQ,EAAE,CAAC;gBACnC,eAAe,EAAE,MAAM,CAAC,GAAG,CAAC;aAC7B,CAAC,CAAC;QACL,CAAC;QAED,SAAS;QACT,IAAI,OAAO,GAAG,KAAK,WAAW,IAAI,KAAK,CAAC,MAAM,GAAG,GAAG,EAAE,CAAC;YACrD,OAAO,IAAA,QAAC,EAAC,4BAA4B,EAAE;gBACrC,QAAQ,EAAE,IAAA,QAAC,EAAC,YAAY,QAAQ,EAAE,CAAC;gBACnC,eAAe,EAAE,MAAM,CAAC,GAAG,CAAC;aAC7B,CAAC,CAAC;QACL,CAAC;IACH,CAAC;IAED,OAAO;IACP,OAAO,IAAA,QAAC,EAAC,qBAAqB,EAAE;QAC9B,QAAQ,EAAE,IAAA,QAAC,EAAC,YAAY,QAAQ,EAAE,CAAC;KACpC,CAAC,CAAC;AACL,CAAC;AAED,SAAgB,WAAW,CACzB,iBAAqC;IAErC,OAAO,CAAC,MAAc,EAAE,YAA6B,EAAE,EAAE;QACvD,IAAI,OAAO,YAAY,KAAK,QAAQ,EAAE,CAAC;YACrC,IAAA,mCAAiB,EAAC;gBAChB,IAAI,EAAE,aAAa;gBACnB,MAAM,EAAE,MAAM,CAAC,WAAW;gBAC1B,YAAY;gBACZ,OAAO,EAAE,iBAAiB;gBAC1B,SAAS,EAAE;oBACT,QAAQ,CAAC,KAAc;wBACrB,IAAI,KAAK,CAAC,OAAO,CAAC,KAAK,CAAC,EAAE,CAAC;4BACzB,MAAM,EAAE,GAAG,EAAE,GAAG,EAAE,GAAG,iBAAiB,CAAC;4BAEvC,IACE,CAAC,OAAO,GAAG,KAAK,WAAW,IAAI,KAAK,CAAC,MAAM,GAAG,GAAG,CAAC;gCAClD,CAAC,OAAO,GAAG,KAAK,WAAW,IAAI,KAAK,CAAC,MAAM,GAAG,GAAG,CAAC,EAClD,CAAC;gCACD,OAAO,KAAK,CAAC;4BACf,CAAC;4BAED,OAAO,IAAI,CAAC;wBACd,CAAC;wBAED,OAAO;wBACP,OAAO,KAAK,CAAC;oBACf,CAAC;oBACD,cAAc,CAAC,IAAI;wBACjB,oEAAoE;wBACpE,MAAM,EAAE,KAAK,EAAE,QAAQ,EAAE,GAAG,IAAK,CAAC;wBAClC,MAAM,EAAE,GAAG,EAAE,GAAG,EAAE,GAAG,iBAAiB,CAAC;wBACvC,OAAO,kBAAkB,CAAC,KAAK,EAAE,QAAQ,EAAE,GAAG,EAAE,GAAG,CAAC,CAAC;oBACvD,CAAC;iBACF;aACF,CAAC,CAAC;QACL,CAAC;IACH,CAAC,CAAC;AACJ,CAAC"}
|
|
@@ -1,9 +1,8 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.IsGreaterThanOrEqual =
|
|
3
|
+
exports.IsGreaterThanOrEqual = IsGreaterThanOrEqual;
|
|
4
4
|
const validate_compare_number_decorator_1 = require("./validate-compare-number.decorator");
|
|
5
5
|
function IsGreaterThanOrEqual(field, validationOptions) {
|
|
6
6
|
return (0, validate_compare_number_decorator_1.ValidateCompareNumber)(validate_compare_number_decorator_1.Comparator.GTE, field, validationOptions);
|
|
7
7
|
}
|
|
8
|
-
exports.IsGreaterThanOrEqual = IsGreaterThanOrEqual;
|
|
9
8
|
//# sourceMappingURL=is-greater-than-or-equal.decorator.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"is-greater-than-or-equal.decorator.js","sourceRoot":"","sources":["../../../src/decorators/number/is-greater-than-or-equal.decorator.ts"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"is-greater-than-or-equal.decorator.js","sourceRoot":"","sources":["../../../src/decorators/number/is-greater-than-or-equal.decorator.ts"],"names":[],"mappings":";;AAOA,oDAKC;AAVD,2FAG6C;AAE7C,SAAgB,oBAAoB,CAClC,KAAa,EACb,iBAAqC;IAErC,OAAO,IAAA,yDAAqB,EAAC,8CAAU,CAAC,GAAG,EAAE,KAAK,EAAE,iBAAiB,CAAC,CAAC;AACzE,CAAC"}
|
|
@@ -1,9 +1,8 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.IsGreaterThan =
|
|
3
|
+
exports.IsGreaterThan = IsGreaterThan;
|
|
4
4
|
const validate_compare_number_decorator_1 = require("./validate-compare-number.decorator");
|
|
5
5
|
function IsGreaterThan(field, validationOptions) {
|
|
6
6
|
return (0, validate_compare_number_decorator_1.ValidateCompareNumber)(validate_compare_number_decorator_1.Comparator.GT, field, validationOptions);
|
|
7
7
|
}
|
|
8
|
-
exports.IsGreaterThan = IsGreaterThan;
|
|
9
8
|
//# sourceMappingURL=is-greater-than.decorator.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"is-greater-than.decorator.js","sourceRoot":"","sources":["../../../src/decorators/number/is-greater-than.decorator.ts"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"is-greater-than.decorator.js","sourceRoot":"","sources":["../../../src/decorators/number/is-greater-than.decorator.ts"],"names":[],"mappings":";;AAOA,sCAKC;AAVD,2FAG6C;AAE7C,SAAgB,aAAa,CAC3B,KAAa,EACb,iBAAqC;IAErC,OAAO,IAAA,yDAAqB,EAAC,8CAAU,CAAC,EAAE,EAAE,KAAK,EAAE,iBAAiB,CAAC,CAAC;AACxE,CAAC"}
|
|
@@ -1,9 +1,8 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.IsLessThanOrEqual =
|
|
3
|
+
exports.IsLessThanOrEqual = IsLessThanOrEqual;
|
|
4
4
|
const validate_compare_number_decorator_1 = require("./validate-compare-number.decorator");
|
|
5
5
|
function IsLessThanOrEqual(field, validationOptions) {
|
|
6
6
|
return (0, validate_compare_number_decorator_1.ValidateCompareNumber)(validate_compare_number_decorator_1.Comparator.LTE, field, validationOptions);
|
|
7
7
|
}
|
|
8
|
-
exports.IsLessThanOrEqual = IsLessThanOrEqual;
|
|
9
8
|
//# sourceMappingURL=is-less-than-or-equal.decorator.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"is-less-than-or-equal.decorator.js","sourceRoot":"","sources":["../../../src/decorators/number/is-less-than-or-equal.decorator.ts"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"is-less-than-or-equal.decorator.js","sourceRoot":"","sources":["../../../src/decorators/number/is-less-than-or-equal.decorator.ts"],"names":[],"mappings":";;AAOA,8CAKC;AAVD,2FAG6C;AAE7C,SAAgB,iBAAiB,CAC/B,KAAa,EACb,iBAAqC;IAErC,OAAO,IAAA,yDAAqB,EAAC,8CAAU,CAAC,GAAG,EAAE,KAAK,EAAE,iBAAiB,CAAC,CAAC;AACzE,CAAC"}
|
|
@@ -1,9 +1,8 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.IsLessThan =
|
|
3
|
+
exports.IsLessThan = IsLessThan;
|
|
4
4
|
const validate_compare_number_decorator_1 = require("./validate-compare-number.decorator");
|
|
5
5
|
function IsLessThan(field, validationOptions) {
|
|
6
6
|
return (0, validate_compare_number_decorator_1.ValidateCompareNumber)(validate_compare_number_decorator_1.Comparator.LT, field, validationOptions);
|
|
7
7
|
}
|
|
8
|
-
exports.IsLessThan = IsLessThan;
|
|
9
8
|
//# sourceMappingURL=is-less-than.decorator.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"is-less-than.decorator.js","sourceRoot":"","sources":["../../../src/decorators/number/is-less-than.decorator.ts"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"is-less-than.decorator.js","sourceRoot":"","sources":["../../../src/decorators/number/is-less-than.decorator.ts"],"names":[],"mappings":";;AAOA,gCAKC;AAVD,2FAG6C;AAE7C,SAAgB,UAAU,CACxB,KAAa,EACb,iBAAqC;IAErC,OAAO,IAAA,yDAAqB,EAAC,8CAAU,CAAC,EAAE,EAAE,KAAK,EAAE,iBAAiB,CAAC,CAAC;AACxE,CAAC"}
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.Max =
|
|
3
|
+
exports.Max = Max;
|
|
4
4
|
const class_validator_1 = require("class-validator");
|
|
5
5
|
const utils_1 = require("../../utils");
|
|
6
6
|
function Max(maxValue, validationOptions) {
|
|
@@ -14,5 +14,4 @@ function Max(maxValue, validationOptions) {
|
|
|
14
14
|
},
|
|
15
15
|
}, validationOptions);
|
|
16
16
|
}
|
|
17
|
-
exports.Max = Max;
|
|
18
17
|
//# sourceMappingURL=max.decorator.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"max.decorator.js","sourceRoot":"","sources":["../../../src/decorators/number/max.decorator.ts"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"max.decorator.js","sourceRoot":"","sources":["../../../src/decorators/number/max.decorator.ts"],"names":[],"mappings":";;AAIA,kBAiBC;AArBD,qDAAqE;AAErE,uCAA+C;AAE/C,SAAgB,GAAG,CACjB,QAAgB,EAChB,iBAAqC;IAErC,OAAO,IAAA,4BAAU,EACf;QACE,IAAI,EAAE,KAAK;QACX,WAAW,EAAE,CAAC,QAAQ,CAAC;QACvB,SAAS,EAAE;YACT,QAAQ,EAAE,CAAC,KAAK,EAAE,IAAI,EAAW,EAAE,CACjC,OAAO,IAAI,KAAK,WAAW;gBAC3B,MAAM,CAAC,KAAK,CAAC,IAAI,MAAM,CAAC,IAAI,CAAC,WAAW,CAAC,CAAC,CAAC,CAAC;YAC9C,cAAc,EAAE,IAAA,wBAAgB,EAAC,GAAG,EAAE,CAAC,KAAK,CAAC;SAC9C;KACF,EACD,iBAAiB,CAClB,CAAC;AACJ,CAAC"}
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.Min =
|
|
3
|
+
exports.Min = Min;
|
|
4
4
|
const class_validator_1 = require("class-validator");
|
|
5
5
|
const utils_1 = require("../../utils");
|
|
6
6
|
function Min(minValue, validationOptions) {
|
|
@@ -14,5 +14,4 @@ function Min(minValue, validationOptions) {
|
|
|
14
14
|
},
|
|
15
15
|
}, validationOptions);
|
|
16
16
|
}
|
|
17
|
-
exports.Min = Min;
|
|
18
17
|
//# sourceMappingURL=min.decorator.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"min.decorator.js","sourceRoot":"","sources":["../../../src/decorators/number/min.decorator.ts"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"min.decorator.js","sourceRoot":"","sources":["../../../src/decorators/number/min.decorator.ts"],"names":[],"mappings":";;AAIA,kBAiBC;AArBD,qDAAqE;AAErE,uCAA+C;AAE/C,SAAgB,GAAG,CACjB,QAAgB,EAChB,iBAAqC;IAErC,OAAO,IAAA,4BAAU,EACf;QACE,IAAI,EAAE,KAAK;QACX,WAAW,EAAE,CAAC,QAAQ,CAAC;QACvB,SAAS,EAAE;YACT,QAAQ,EAAE,CAAC,KAAK,EAAE,IAAI,EAAW,EAAE,CACjC,OAAO,IAAI,KAAK,WAAW;gBAC3B,MAAM,CAAC,KAAK,CAAC,IAAI,MAAM,CAAC,IAAI,CAAC,WAAW,CAAC,CAAC,CAAC,CAAC;YAC9C,cAAc,EAAE,IAAA,wBAAgB,EAAC,GAAG,EAAE,CAAC,KAAK,CAAC;SAC9C;KACF,EACD,iBAAiB,CAClB,CAAC;AACJ,CAAC"}
|
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.
|
|
3
|
+
exports.Comparator = void 0;
|
|
4
|
+
exports.ValidateCompareNumber = ValidateCompareNumber;
|
|
4
5
|
const i18n_1 = require("@nest-boot/i18n");
|
|
5
6
|
const class_validator_1 = require("class-validator");
|
|
6
7
|
var Comparator;
|
|
@@ -60,5 +61,4 @@ function ValidateCompareNumber(comparator, compareProperty, validationOptions) {
|
|
|
60
61
|
}
|
|
61
62
|
};
|
|
62
63
|
}
|
|
63
|
-
exports.ValidateCompareNumber = ValidateCompareNumber;
|
|
64
64
|
//# sourceMappingURL=validate-compare-number.decorator.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"validate-compare-number.decorator.js","sourceRoot":"","sources":["../../../src/decorators/number/validate-compare-number.decorator.ts"],"names":[],"mappings":";;;
|
|
1
|
+
{"version":3,"file":"validate-compare-number.decorator.js","sourceRoot":"","sources":["../../../src/decorators/number/validate-compare-number.decorator.ts"],"names":[],"mappings":";;;AAeA,sDA6DC;AA5ED,0CAAoC;AACpC,qDAIyB;AAEzB,IAAY,UAMX;AAND,WAAY,UAAU;IACpB,uBAAS,CAAA;IACT,uBAAS,CAAA;IACT,yBAAW,CAAA;IACX,uBAAS,CAAA;IACT,yBAAW,CAAA;AACb,CAAC,EANW,UAAU,0BAAV,UAAU,QAMrB;AAED,SAAgB,qBAAqB,CACnC,UAAsB,EACtB,eAAuB,EACvB,iBAAqC;IAErC,OAAO,CAAC,MAAc,EAAE,YAA6B,EAAE,EAAE;QACvD,IAAI,OAAO,YAAY,KAAK,QAAQ,EAAE,CAAC;YACrC,IAAA,mCAAiB,EAAC;gBAChB,IAAI,EAAE,sBAAsB;gBAC5B,MAAM,EAAE,MAAM,CAAC,WAAW;gBAC1B,YAAY;gBACZ,WAAW,EAAE,CAAC,UAAU,EAAE,eAAe,CAAC;gBAC1C,OAAO,EAAE,iBAAiB;gBAC1B,SAAS,EAAE;oBACT,QAAQ,CAAC,KAAc,EAAE,IAAyB;wBAChD,IAAI,OAAO,IAAI,KAAK,WAAW,EAAE,CAAC;4BAChC,OAAO,KAAK,CAAC;wBACf,CAAC;wBAED,MAAM,CAAC,eAAe,EAAE,oBAAoB,CAAC,GAC3C,IAAI,CAAC,WAAmC,CAAC;wBAE3C,MAAM,YAAY,GAAI,IAAI,CAAC,MAAc,CAAC,oBAAoB,CAAC,CAAC;wBAEhE,IAAI,YAAY,KAAK,SAAS,IAAI,YAAY,KAAK,IAAI,EAAE,CAAC;4BACxD,OAAO,IAAI,CAAC;wBACd,CAAC;wBAED,QAAQ,eAAe,EAAE,CAAC;4BACxB,KAAK,UAAU,CAAC,EAAE;gCAChB,OAAO,MAAM,CAAC,KAAK,CAAC,KAAK,MAAM,CAAC,YAAY,CAAC,CAAC;4BAChD,KAAK,UAAU,CAAC,EAAE;gCAChB,OAAO,MAAM,CAAC,KAAK,CAAC,GAAG,MAAM,CAAC,YAAY,CAAC,CAAC;4BAC9C,KAAK,UAAU,CAAC,GAAG;gCACjB,OAAO,MAAM,CAAC,KAAK,CAAC,IAAI,MAAM,CAAC,YAAY,CAAC,CAAC;4BAC/C,KAAK,UAAU,CAAC,EAAE;gCAChB,OAAO,MAAM,CAAC,KAAK,CAAC,GAAG,MAAM,CAAC,YAAY,CAAC,CAAC;4BAC9C,KAAK,UAAU,CAAC,GAAG;gCACjB,OAAO,MAAM,CAAC,KAAK,CAAC,IAAI,MAAM,CAAC,YAAY,CAAC,CAAC;4BAC/C;gCACE,OAAO,KAAK,CAAC;wBACjB,CAAC;oBACH,CAAC;oBACD,cAAc,CAAC,IAAI;wBACjB,oEAAoE;wBACpE,MAAM,EAAE,QAAQ,EAAE,WAAW,EAAE,GAAG,IAAK,CAAC;wBACxC,MAAM,CAAC,eAAe,EAAE,oBAAoB,CAAC,GAAG,WAG/C,CAAC;wBAEF,OAAO,IAAA,QAAC,EAAC,iBAAiB,eAAe,CAAC,WAAW,EAAE,EAAE,EAAE;4BACzD,GAAG,IAAI;4BACP,QAAQ,EAAE,IAAA,QAAC,EAAC,YAAY,QAAQ,EAAE,CAAC;4BACnC,eAAe,EAAE,IAAA,QAAC,EAAC,YAAY,oBAAoB,EAAE,CAAC;yBACvD,CAAC,CAAC;oBACL,CAAC;iBACF;aACF,CAAC,CAAC;QACL,CAAC;IACH,CAAC,CAAC;AACJ,CAAC"}
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.IsDomain =
|
|
3
|
+
exports.IsDomain = IsDomain;
|
|
4
4
|
const class_validator_1 = require("class-validator");
|
|
5
5
|
const utils_1 = require("../../utils");
|
|
6
6
|
function IsDomain(validationOptions) {
|
|
@@ -13,5 +13,4 @@ function IsDomain(validationOptions) {
|
|
|
13
13
|
},
|
|
14
14
|
}, validationOptions);
|
|
15
15
|
}
|
|
16
|
-
exports.IsDomain = IsDomain;
|
|
17
16
|
//# sourceMappingURL=is-domain.decorator.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"is-domain.decorator.js","sourceRoot":"","sources":["../../../src/decorators/string/is-domain.decorator.ts"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"is-domain.decorator.js","sourceRoot":"","sources":["../../../src/decorators/string/is-domain.decorator.ts"],"names":[],"mappings":";;AAIA,4BAiBC;AArBD,qDAAqE;AAErE,uCAA+C;AAE/C,SAAgB,QAAQ,CACtB,iBAAqC;IAErC,OAAO,IAAA,4BAAU,EACf;QACE,IAAI,EAAE,UAAU;QAChB,SAAS,EAAE;YACT,QAAQ,EAAE,CAAC,KAAK,EAAW,EAAE,CAC3B,OAAO,KAAK,KAAK,QAAQ;gBACzB,iFAAiF,CAAC,IAAI,CACpF,KAAK,CACN;YACH,cAAc,EAAE,IAAA,wBAAgB,EAAC,GAAG,EAAE,CAAC,WAAW,CAAC;SACpD;KACF,EACD,iBAAiB,CAClB,CAAC;AACJ,CAAC"}
|
|
@@ -3,7 +3,9 @@ var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
|
3
3
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
4
4
|
};
|
|
5
5
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
6
|
-
exports.
|
|
6
|
+
exports.IS_EMAIL = void 0;
|
|
7
|
+
exports.isEmail = isEmail;
|
|
8
|
+
exports.IsEmail = IsEmail;
|
|
7
9
|
const class_validator_1 = require("class-validator");
|
|
8
10
|
const isEmail_1 = __importDefault(require("validator/lib/isEmail"));
|
|
9
11
|
const utils_1 = require("../../utils");
|
|
@@ -15,7 +17,6 @@ exports.IS_EMAIL = "isEmail";
|
|
|
15
17
|
function isEmail(value, options) {
|
|
16
18
|
return typeof value === "string" && (0, isEmail_1.default)(value, options);
|
|
17
19
|
}
|
|
18
|
-
exports.isEmail = isEmail;
|
|
19
20
|
/**
|
|
20
21
|
* Checks if the string is an email.
|
|
21
22
|
* If given value is not a string, then it returns false.
|
|
@@ -30,5 +31,4 @@ function IsEmail(options, validationOptions) {
|
|
|
30
31
|
},
|
|
31
32
|
}, validationOptions);
|
|
32
33
|
}
|
|
33
|
-
exports.IsEmail = IsEmail;
|
|
34
34
|
//# sourceMappingURL=is-email.decorator.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"is-email.decorator.js","sourceRoot":"","sources":["../../../src/decorators/string/is-email.decorator.ts"],"names":[],"mappings":";;;;;;
|
|
1
|
+
{"version":3,"file":"is-email.decorator.js","sourceRoot":"","sources":["../../../src/decorators/string/is-email.decorator.ts"],"names":[],"mappings":";;;;;;AAYA,0BAEC;AAMD,0BAgBC;AApCD,qDAAqE;AAErE,oEAAqD;AAErD,uCAA+C;AAElC,QAAA,QAAQ,GAAG,SAAS,CAAC;AAElC;;;GAGG;AACH,SAAgB,OAAO,CAAC,KAAc,EAAE,OAAwB;IAC9D,OAAO,OAAO,KAAK,KAAK,QAAQ,IAAI,IAAA,iBAAgB,EAAC,KAAK,EAAE,OAAO,CAAC,CAAC;AACvE,CAAC;AAED;;;GAGG;AACH,SAAgB,OAAO,CACrB,OAAwB,EACxB,iBAAqC;IAErC,OAAO,IAAA,4BAAU,EACf;QACE,IAAI,EAAE,gBAAQ;QACd,WAAW,EAAE,CAAC,OAAO,CAAC;QACtB,SAAS,EAAE;YACT,QAAQ,EAAE,CAAC,KAAK,EAAE,IAAI,EAAW,EAAE,CACjC,OAAO,IAAI,KAAK,WAAW,IAAI,OAAO,CAAC,KAAK,EAAE,IAAI,CAAC,WAAW,CAAC,CAAC,CAAC,CAAC;YACpE,cAAc,EAAE,IAAA,wBAAgB,EAAC,GAAG,EAAE,CAAC,UAAU,CAAC;SACnD;KACF,EACD,iBAAiB,CAClB,CAAC;AACJ,CAAC"}
|
|
@@ -3,7 +3,9 @@ var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
|
3
3
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
4
4
|
};
|
|
5
5
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
6
|
-
exports.
|
|
6
|
+
exports.IS_NUMBER_STRING = void 0;
|
|
7
|
+
exports.isNumberString = isNumberString;
|
|
8
|
+
exports.IsNumberString = IsNumberString;
|
|
7
9
|
const class_validator_1 = require("class-validator");
|
|
8
10
|
const isNumeric_1 = __importDefault(require("validator/lib/isNumeric"));
|
|
9
11
|
const utils_1 = require("../../utils");
|
|
@@ -15,7 +17,6 @@ exports.IS_NUMBER_STRING = "isNumberString";
|
|
|
15
17
|
function isNumberString(value, options) {
|
|
16
18
|
return typeof value === "string" && (0, isNumeric_1.default)(value, options);
|
|
17
19
|
}
|
|
18
|
-
exports.isNumberString = isNumberString;
|
|
19
20
|
/**
|
|
20
21
|
* Checks if the string is numeric.
|
|
21
22
|
* If given value is not a string, then it returns false.
|
|
@@ -31,5 +32,4 @@ function IsNumberString(options, validationOptions) {
|
|
|
31
32
|
},
|
|
32
33
|
}, validationOptions);
|
|
33
34
|
}
|
|
34
|
-
exports.IsNumberString = IsNumberString;
|
|
35
35
|
//# sourceMappingURL=is-number-string.decorator.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"is-number-string.decorator.js","sourceRoot":"","sources":["../../../src/decorators/string/is-number-string.decorator.ts"],"names":[],"mappings":";;;;;;
|
|
1
|
+
{"version":3,"file":"is-number-string.decorator.js","sourceRoot":"","sources":["../../../src/decorators/string/is-number-string.decorator.ts"],"names":[],"mappings":";;;;;;AAYA,wCAKC;AAMD,wCAiBC;AAxCD,qDAAqE;AAErE,wEAAyD;AAEzD,uCAA+C;AAElC,QAAA,gBAAgB,GAAG,gBAAgB,CAAC;AAEjD;;;GAGG;AACH,SAAgB,cAAc,CAC5B,KAAc,EACd,OAA0B;IAE1B,OAAO,OAAO,KAAK,KAAK,QAAQ,IAAI,IAAA,mBAAkB,EAAC,KAAK,EAAE,OAAO,CAAC,CAAC;AACzE,CAAC;AAED;;;GAGG;AACH,SAAgB,cAAc,CAC5B,OAA0B,EAC1B,iBAAqC;IAErC,OAAO,IAAA,4BAAU,EACf;QACE,IAAI,EAAE,wBAAgB;QACtB,WAAW,EAAE,CAAC,OAAO,CAAC;QACtB,SAAS,EAAE;YACT,QAAQ,EAAE,CAAC,KAAK,EAAE,IAAI,EAAW,EAAE,CACjC,OAAO,IAAI,KAAK,WAAW;gBAC3B,cAAc,CAAC,KAAK,EAAE,IAAI,CAAC,WAAW,CAAC,CAAC,CAAC,CAAC;YAC5C,cAAc,EAAE,IAAA,wBAAgB,EAAC,GAAG,EAAE,CAAC,kBAAkB,CAAC;SAC3D;KACF,EACD,iBAAiB,CAClB,CAAC;AACJ,CAAC"}
|
|
@@ -3,7 +3,7 @@ var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
|
3
3
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
4
4
|
};
|
|
5
5
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
6
|
-
exports.IsTimezone =
|
|
6
|
+
exports.IsTimezone = IsTimezone;
|
|
7
7
|
const class_validator_1 = require("class-validator");
|
|
8
8
|
const moment_timezone_1 = __importDefault(require("moment-timezone"));
|
|
9
9
|
const utils_1 = require("../../utils");
|
|
@@ -16,5 +16,4 @@ function IsTimezone(validationOptions) {
|
|
|
16
16
|
},
|
|
17
17
|
}, validationOptions);
|
|
18
18
|
}
|
|
19
|
-
exports.IsTimezone = IsTimezone;
|
|
20
19
|
//# sourceMappingURL=is-timezone.decorator.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"is-timezone.decorator.js","sourceRoot":"","sources":["../../../src/decorators/string/is-timezone.decorator.ts"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"is-timezone.decorator.js","sourceRoot":"","sources":["../../../src/decorators/string/is-timezone.decorator.ts"],"names":[],"mappings":";;;;;AAKA,gCAcC;AAnBD,qDAAqE;AACrE,sEAAqC;AAErC,uCAA+C;AAE/C,SAAgB,UAAU,CACxB,iBAAqC;IAErC,OAAO,IAAA,4BAAU,EACf;QACE,IAAI,EAAE,YAAY;QAClB,SAAS,EAAE;YACT,QAAQ,EAAE,CAAC,KAAK,EAAW,EAAE,CAC3B,OAAO,KAAK,KAAK,QAAQ,IAAI,CAAC,CAAC,yBAAM,CAAC,EAAE,CAAC,IAAI,CAAC,KAAK,CAAC,IAAI,IAAI,CAAC;YAC/D,cAAc,EAAE,IAAA,wBAAgB,EAAC,GAAG,EAAE,CAAC,aAAa,CAAC;SACtD;KACF,EACD,iBAAiB,CAClB,CAAC;AACJ,CAAC"}
|
|
@@ -3,7 +3,9 @@ var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
|
3
3
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
4
4
|
};
|
|
5
5
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
6
|
-
exports.
|
|
6
|
+
exports.IS_URL = void 0;
|
|
7
|
+
exports.isURL = isURL;
|
|
8
|
+
exports.IsUrl = IsUrl;
|
|
7
9
|
const class_validator_1 = require("class-validator");
|
|
8
10
|
const isURL_1 = __importDefault(require("validator/lib/isURL"));
|
|
9
11
|
const utils_1 = require("../../utils");
|
|
@@ -15,7 +17,6 @@ exports.IS_URL = "isUrl";
|
|
|
15
17
|
function isURL(value, options) {
|
|
16
18
|
return typeof value === "string" && (0, isURL_1.default)(value, options);
|
|
17
19
|
}
|
|
18
|
-
exports.isURL = isURL;
|
|
19
20
|
/**
|
|
20
21
|
* Checks if the string is an url.
|
|
21
22
|
* If given value is not a string, then it returns false.
|
|
@@ -30,5 +31,4 @@ function IsUrl(options, validationOptions) {
|
|
|
30
31
|
},
|
|
31
32
|
}, validationOptions);
|
|
32
33
|
}
|
|
33
|
-
exports.IsUrl = IsUrl;
|
|
34
34
|
//# sourceMappingURL=is-url.decorator.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"is-url.decorator.js","sourceRoot":"","sources":["../../../src/decorators/string/is-url.decorator.ts"],"names":[],"mappings":";;;;;;
|
|
1
|
+
{"version":3,"file":"is-url.decorator.js","sourceRoot":"","sources":["../../../src/decorators/string/is-url.decorator.ts"],"names":[],"mappings":";;;;;;AAYA,sBAEC;AAMD,sBAgBC;AApCD,qDAAqE;AAErE,gEAAiD;AAEjD,uCAA+C;AAElC,QAAA,MAAM,GAAG,OAAO,CAAC;AAE9B;;;GAGG;AACH,SAAgB,KAAK,CAAC,KAAa,EAAE,OAAsB;IACzD,OAAO,OAAO,KAAK,KAAK,QAAQ,IAAI,IAAA,eAAc,EAAC,KAAK,EAAE,OAAO,CAAC,CAAC;AACrE,CAAC;AAED;;;GAGG;AACH,SAAgB,KAAK,CACnB,OAAsB,EACtB,iBAAqC;IAErC,OAAO,IAAA,4BAAU,EACf;QACE,IAAI,EAAE,cAAM;QACZ,WAAW,EAAE,CAAC,OAAO,CAAC;QACtB,SAAS,EAAE;YACT,QAAQ,EAAE,CAAC,KAAK,EAAE,IAAI,EAAW,EAAE,CACjC,OAAO,IAAI,KAAK,WAAW,IAAI,KAAK,CAAC,KAAK,EAAE,IAAI,CAAC,WAAW,CAAC,CAAC,CAAC,CAAC;YAClE,cAAc,EAAE,IAAA,wBAAgB,EAAC,GAAG,EAAE,CAAC,QAAQ,CAAC;SACjD;KACF,EACD,iBAAiB,CAClB,CAAC;AACJ,CAAC"}
|
|
@@ -3,7 +3,9 @@ var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
|
3
3
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
4
4
|
};
|
|
5
5
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
6
|
-
exports.
|
|
6
|
+
exports.IS_LENGTH = void 0;
|
|
7
|
+
exports.length = length;
|
|
8
|
+
exports.Length = Length;
|
|
7
9
|
const class_validator_1 = require("class-validator");
|
|
8
10
|
const isLength_1 = __importDefault(require("validator/lib/isLength"));
|
|
9
11
|
const build_i18n_message_1 = require("../../utils/build-i18n-message");
|
|
@@ -15,7 +17,6 @@ exports.IS_LENGTH = "isLength";
|
|
|
15
17
|
function length(value, min, max) {
|
|
16
18
|
return typeof value === "string" && (0, isLength_1.default)(value, { min, max });
|
|
17
19
|
}
|
|
18
|
-
exports.length = length;
|
|
19
20
|
/**
|
|
20
21
|
* Checks if the string's length falls in a range. Note: this function takes into account surrogate pairs.
|
|
21
22
|
* If given value is not a string, then it returns false.
|
|
@@ -42,5 +43,4 @@ function Length(min, max, validationOptions) {
|
|
|
42
43
|
},
|
|
43
44
|
}, validationOptions);
|
|
44
45
|
}
|
|
45
|
-
exports.Length = Length;
|
|
46
46
|
//# sourceMappingURL=length.decorator.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"length.decorator.js","sourceRoot":"","sources":["../../../src/decorators/string/length.decorator.ts"],"names":[],"mappings":";;;;;;
|
|
1
|
+
{"version":3,"file":"length.decorator.js","sourceRoot":"","sources":["../../../src/decorators/string/length.decorator.ts"],"names":[],"mappings":";;;;;;AAWA,wBAEC;AAMD,wBAmCC;AAtDD,qDAAqE;AACrE,sEAAuD;AAEvD,uEAAkE;AAErD,QAAA,SAAS,GAAG,UAAU,CAAC;AAEpC;;;GAGG;AACH,SAAgB,MAAM,CAAC,KAAc,EAAE,GAAW,EAAE,GAAY;IAC9D,OAAO,OAAO,KAAK,KAAK,QAAQ,IAAI,IAAA,kBAAiB,EAAC,KAAK,EAAE,EAAE,GAAG,EAAE,GAAG,EAAE,CAAC,CAAC;AAC7E,CAAC;AAED;;;GAGG;AACH,SAAgB,MAAM,CACpB,GAAW,EACX,GAAY,EACZ,iBAAqC;IAErC,OAAO,IAAA,4BAAU,EACf;QACE,IAAI,EAAE,iBAAS;QACf,WAAW,EAAE,CAAC,GAAG,EAAE,GAAG,CAAC;QACvB,SAAS,EAAE;YACT,QAAQ,EAAE,CAAC,KAAK,EAAE,IAAI,EAAW,EAAE,CACjC,OAAO,IAAI,KAAK,WAAW;gBAC3B,MAAM,CAAC,KAAK,EAAE,IAAI,CAAC,WAAW,CAAC,CAAC,CAAC,EAAE,IAAI,CAAC,WAAW,CAAC,CAAC,CAAC,CAAC;YACzD,cAAc,EAAE,IAAA,qCAAgB,EAAC,CAAC,IAAI,EAAE,EAAE;gBACxC,IAAI,OAAO,IAAI,KAAK,WAAW,EAAE,CAAC;oBAChC,MAAM,WAAW,GACf,IAAI,CAAC,WAAW,CAAC,CAAC,CAAC,KAAK,IAAI,IAAI,IAAI,CAAC,WAAW,CAAC,CAAC,CAAC,KAAK,SAAS,CAAC;oBACpE,MAAM,WAAW,GACf,IAAI,CAAC,WAAW,CAAC,CAAC,CAAC,KAAK,IAAI,IAAI,IAAI,CAAC,WAAW,CAAC,CAAC,CAAC,KAAK,SAAS,CAAC;oBAEpE,IACE,WAAW;wBACX,CAAC,WAAW;wBACZ,IAAI,CAAC,KAAK,CAAC,MAAM,GAAG,IAAI,CAAC,WAAW,CAAC,CAAC,CAAC,EACvC,CAAC;wBACD,OAAO,YAAY,CAAC;oBACtB,CAAC;gBACH,CAAC;gBAED,OAAO,gBAAgB,CAAC;YAC1B,CAAC,CAAC;SACH;KACF,EACD,iBAAiB,CAClB,CAAC;AACJ,CAAC"}
|
|
@@ -1,6 +1,8 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.
|
|
3
|
+
exports.IS_DATE = void 0;
|
|
4
|
+
exports.isDate = isDate;
|
|
5
|
+
exports.IsDate = IsDate;
|
|
4
6
|
const class_validator_1 = require("class-validator");
|
|
5
7
|
const utils_1 = require("../../utils");
|
|
6
8
|
exports.IS_DATE = "isDate";
|
|
@@ -10,7 +12,6 @@ exports.IS_DATE = "isDate";
|
|
|
10
12
|
function isDate(value) {
|
|
11
13
|
return value instanceof Date && !Number.isNaN(value.getTime());
|
|
12
14
|
}
|
|
13
|
-
exports.isDate = isDate;
|
|
14
15
|
/**
|
|
15
16
|
* Checks if a value is a date.
|
|
16
17
|
*/
|
|
@@ -23,5 +24,4 @@ function IsDate(validationOptions) {
|
|
|
23
24
|
},
|
|
24
25
|
}, validationOptions);
|
|
25
26
|
}
|
|
26
|
-
exports.IsDate = IsDate;
|
|
27
27
|
//# sourceMappingURL=is-date.decorator.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"is-date.decorator.js","sourceRoot":"","sources":["../../../src/decorators/type-check/is-date.decorator.ts"],"names":[],"mappings":";;;
|
|
1
|
+
{"version":3,"file":"is-date.decorator.js","sourceRoot":"","sources":["../../../src/decorators/type-check/is-date.decorator.ts"],"names":[],"mappings":";;;AASA,wBAEC;AAKD,wBAaC;AA7BD,qDAAqE;AAErE,uCAA+C;AAElC,QAAA,OAAO,GAAG,QAAQ,CAAC;AAEhC;;GAEG;AACH,SAAgB,MAAM,CAAC,KAAc;IACnC,OAAO,KAAK,YAAY,IAAI,IAAI,CAAC,MAAM,CAAC,KAAK,CAAC,KAAK,CAAC,OAAO,EAAE,CAAC,CAAC;AACjE,CAAC;AAED;;GAEG;AACH,SAAgB,MAAM,CACpB,iBAAqC;IAErC,OAAO,IAAA,4BAAU,EACf;QACE,IAAI,EAAE,eAAO;QACb,SAAS,EAAE;YACT,QAAQ,EAAE,CAAC,KAAK,EAAW,EAAE,CAAC,MAAM,CAAC,KAAK,CAAC;YAC3C,cAAc,EAAE,IAAA,wBAAgB,EAAC,GAAG,EAAE,CAAC,SAAS,CAAC;SAClD;KACF,EACD,iBAAiB,CAClB,CAAC;AACJ,CAAC"}
|