polyapi 0.6.2 → 0.7.0
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/build/client/src/commands/generate.d.ts.map +1 -1
- package/build/client/src/commands/generate.js +56 -12
- package/build/client/src/commands/generate.js.map +1 -1
- package/build/client/src/templates/vari/index.d.ts.hbs +1 -0
- package/build/client/src/templates/vari/index.js.hbs +104 -8
- package/build/client/src/templates/vari/{{context}}.d.ts.hbs +11 -1
- package/build/common/src/utils.d.ts +1 -0
- package/build/common/src/utils.d.ts.map +1 -1
- package/build/common/src/utils.js +3 -1
- package/build/common/src/utils.js.map +1 -1
- package/build/model/src/dto/config-variable/validator/index.d.ts +1 -1
- package/build/model/src/dto/config-variable/validator/index.d.ts.map +1 -1
- package/build/model/src/dto/config-variable/validator/index.js +16 -4
- package/build/model/src/dto/config-variable/validator/index.js.map +1 -1
- package/build/model/src/dto/config-variable/validator/{Jobs.d.ts → jobs.d.ts} +1 -1
- package/build/model/src/dto/config-variable/validator/jobs.d.ts.map +1 -0
- package/build/model/src/dto/config-variable/validator/{Jobs.js → jobs.js} +1 -1
- package/build/model/src/dto/config-variable/validator/{Jobs.js.map → jobs.js.map} +1 -1
- package/build/model/src/dto/config-variable/value-types/index.d.ts +2 -1
- package/build/model/src/dto/config-variable/value-types/index.d.ts.map +1 -1
- package/build/model/src/dto/config-variable/value-types/index.js +1 -0
- package/build/model/src/dto/config-variable/value-types/index.js.map +1 -1
- package/build/model/src/dto/function/index.d.ts +1 -0
- package/build/model/src/dto/function/index.d.ts.map +1 -1
- package/build/model/src/dto/function/index.js +1 -0
- package/build/model/src/dto/function/index.js.map +1 -1
- package/build/model/src/dto/function/server-fuction-logs.query.d.ts +7 -0
- package/build/model/src/dto/function/server-fuction-logs.query.d.ts.map +1 -0
- package/build/model/src/dto/function/server-fuction-logs.query.js +44 -0
- package/build/model/src/dto/function/server-fuction-logs.query.js.map +1 -0
- package/build/model/src/dto/variable/variable.dto.d.ts +1 -1
- package/build/model/src/dto/variable/variable.dto.d.ts.map +1 -1
- package/build/tsconfig.build.tsbuildinfo +1 -1
- package/package.json +3 -1
- package/build/model/src/dto/config-variable/validator/Jobs.d.ts.map +0 -1
|
@@ -0,0 +1,44 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
var __decorate = (this && this.__decorate) || function (decorators, target, key, desc) {
|
|
3
|
+
var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
|
|
4
|
+
if (typeof Reflect === "object" && typeof Reflect.decorate === "function") r = Reflect.decorate(decorators, target, key, desc);
|
|
5
|
+
else for (var i = decorators.length - 1; i >= 0; i--) if (d = decorators[i]) r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;
|
|
6
|
+
return c > 3 && r && Object.defineProperty(target, key, r), r;
|
|
7
|
+
};
|
|
8
|
+
var __metadata = (this && this.__metadata) || function (k, v) {
|
|
9
|
+
if (typeof Reflect === "object" && typeof Reflect.metadata === "function") return Reflect.metadata(k, v);
|
|
10
|
+
};
|
|
11
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
12
|
+
exports.ServerFunctionLogsQueryParams = void 0;
|
|
13
|
+
const class_validator_1 = require("class-validator");
|
|
14
|
+
const class_transformer_1 = require("class-transformer");
|
|
15
|
+
class ServerFunctionLogsQueryParams {
|
|
16
|
+
}
|
|
17
|
+
exports.ServerFunctionLogsQueryParams = ServerFunctionLogsQueryParams;
|
|
18
|
+
__decorate([
|
|
19
|
+
(0, class_validator_1.IsOptional)(),
|
|
20
|
+
(0, class_validator_1.IsString)(),
|
|
21
|
+
__metadata("design:type", String)
|
|
22
|
+
], ServerFunctionLogsQueryParams.prototype, "keyword", void 0);
|
|
23
|
+
__decorate([
|
|
24
|
+
(0, class_validator_1.IsOptional)(),
|
|
25
|
+
(0, class_transformer_1.Transform)(({ value }) => Number(value)),
|
|
26
|
+
(0, class_validator_1.IsNumber)(),
|
|
27
|
+
(0, class_validator_1.Min)(1),
|
|
28
|
+
__metadata("design:type", Number)
|
|
29
|
+
], ServerFunctionLogsQueryParams.prototype, "lastHours", void 0);
|
|
30
|
+
__decorate([
|
|
31
|
+
(0, class_validator_1.IsOptional)(),
|
|
32
|
+
(0, class_transformer_1.Transform)(({ value }) => Number(value)),
|
|
33
|
+
(0, class_validator_1.IsNumber)(),
|
|
34
|
+
(0, class_validator_1.Min)(1),
|
|
35
|
+
__metadata("design:type", Number)
|
|
36
|
+
], ServerFunctionLogsQueryParams.prototype, "lastDays", void 0);
|
|
37
|
+
__decorate([
|
|
38
|
+
(0, class_validator_1.IsOptional)(),
|
|
39
|
+
(0, class_transformer_1.Transform)(({ value }) => Number(value)),
|
|
40
|
+
(0, class_validator_1.IsNumber)(),
|
|
41
|
+
(0, class_validator_1.Min)(1),
|
|
42
|
+
__metadata("design:type", Number)
|
|
43
|
+
], ServerFunctionLogsQueryParams.prototype, "limit", void 0);
|
|
44
|
+
//# sourceMappingURL=server-fuction-logs.query.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"server-fuction-logs.query.js","sourceRoot":"","sources":["../../../../../../model/src/dto/function/server-fuction-logs.query.ts"],"names":[],"mappings":";;;;;;;;;;;;AAAA,qDAAsE;AACtE,yDAA8C;AAE9C,MAAa,6BAA6B;CAsBzC;AAtBD,sEAsBC;AAnBC;IAFC,IAAA,4BAAU,GAAE;IACZ,IAAA,0BAAQ,GAAE;;8DACM;AAMjB;IAJC,IAAA,4BAAU,GAAE;IACZ,IAAA,6BAAS,EAAC,CAAC,EAAE,KAAK,EAAE,EAAE,EAAE,CAAC,MAAM,CAAC,KAAK,CAAC,CAAC;IACvC,IAAA,0BAAQ,GAAE;IACV,IAAA,qBAAG,EAAC,CAAC,CAAC;;gEACY;AAMnB;IAJC,IAAA,4BAAU,GAAE;IACZ,IAAA,6BAAS,EAAC,CAAC,EAAE,KAAK,EAAE,EAAE,EAAE,CAAC,MAAM,CAAC,KAAK,CAAC,CAAC;IACvC,IAAA,0BAAQ,GAAE;IACV,IAAA,qBAAG,EAAC,CAAC,CAAC;;+DACW;AAMlB;IAJC,IAAA,4BAAU,GAAE;IACZ,IAAA,6BAAS,EAAC,CAAC,EAAE,KAAK,EAAE,EAAE,EAAE,CAAC,MAAM,CAAC,KAAK,CAAC,CAAC;IACvC,IAAA,0BAAQ,GAAE;IACV,IAAA,qBAAG,EAAC,CAAC,CAAC;;4DACQ"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"variable.dto.d.ts","sourceRoot":"","sources":["../../../../../../model/src/dto/variable/variable.dto.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,UAAU,EAAE,MAAM,aAAa,CAAC;AAEzC,MAAM,MAAM,SAAS,GAAG,MAAM,GAAG,MAAM,GAAG,OAAO,GAAG,MAAM,GAAG,IAAI,CAAC;
|
|
1
|
+
{"version":3,"file":"variable.dto.d.ts","sourceRoot":"","sources":["../../../../../../model/src/dto/variable/variable.dto.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,UAAU,EAAE,MAAM,aAAa,CAAC;AAEzC,MAAM,MAAM,SAAS,GAAG,MAAM,GAAG,MAAM,GAAG,OAAO,GAAG,MAAM,GAAG,IAAI,GAAG,GAAG,EAAE,CAAC;AAE1E,MAAM,WAAW,WAAW;IAC1B,EAAE,EAAE,MAAM,CAAC;IACX,OAAO,EAAE,MAAM,CAAC;IAChB,IAAI,EAAE,MAAM,CAAC;IACb,WAAW,EAAE,MAAM,CAAC;IACpB,UAAU,EAAE,UAAU,CAAC;IACvB,MAAM,EAAE,OAAO,CAAC;IAChB,KAAK,CAAC,EAAE,SAAS,CAAC;CACnB;AAED,MAAM,WAAW,iBAAkB,SAAQ,WAAW;IACpD,MAAM,EAAE,MAAM,CAAC;IACf,MAAM,EAAE,OAAO,CAAC;CACjB"}
|