@strapi/types 5.9.0 → 5.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/dist/core/api.js +3 -0
- package/dist/core/api.js.map +1 -0
- package/dist/core/commands/index.js +3 -0
- package/dist/core/commands/index.js.map +1 -0
- package/dist/core/config/admin.js +3 -0
- package/dist/core/config/admin.js.map +1 -0
- package/dist/core/config/api.js +3 -0
- package/dist/core/config/api.js.map +1 -0
- package/dist/core/config/database.js +3 -0
- package/dist/core/config/database.js.map +1 -0
- package/dist/core/config/index.js +3 -0
- package/dist/core/config/index.js.map +1 -0
- package/dist/core/config/middlewares.js +3 -0
- package/dist/core/config/middlewares.js.map +1 -0
- package/dist/core/config/plugin.js +3 -0
- package/dist/core/config/plugin.js.map +1 -0
- package/dist/core/config/server.js +3 -0
- package/dist/core/config/server.js.map +1 -0
- package/dist/core/config/shared.js +3 -0
- package/dist/core/config/shared.js.map +1 -0
- package/dist/core/container.js +3 -0
- package/dist/core/container.js.map +1 -0
- package/dist/core/controller.js +4 -0
- package/dist/core/controller.js.map +1 -0
- package/dist/core/core-api/controller.js +3 -0
- package/dist/core/core-api/controller.js.map +1 -0
- package/dist/core/core-api/index.js +30 -0
- package/dist/core/core-api/index.js.map +1 -0
- package/dist/core/core-api/router.js +3 -0
- package/dist/core/core-api/router.js.map +1 -0
- package/dist/core/core-api/service.js +3 -0
- package/dist/core/core-api/service.js.map +1 -0
- package/dist/core/index.js +43 -0
- package/dist/core/index.js.map +1 -0
- package/dist/core/middleware.js +3 -0
- package/dist/core/middleware.js.map +1 -0
- package/dist/core/module.js +3 -0
- package/dist/core/module.js.map +1 -0
- package/dist/core/plugin.js +3 -0
- package/dist/core/plugin.js.map +1 -0
- package/dist/core/policy.js +3 -0
- package/dist/core/policy.js.map +1 -0
- package/dist/core/router.js +3 -0
- package/dist/core/router.js.map +1 -0
- package/dist/core/service.js +3 -0
- package/dist/core/service.js.map +1 -0
- package/dist/core/strapi.js +3 -0
- package/dist/core/strapi.js.map +1 -0
- package/dist/data/component.js +3 -0
- package/dist/data/component.js.map +1 -0
- package/dist/data/constants.js +3 -0
- package/dist/data/constants.js.map +1 -0
- package/dist/data/content-type.js +3 -0
- package/dist/data/content-type.js.map +1 -0
- package/dist/data/entity.js +3 -0
- package/dist/data/entity.js.map +1 -0
- package/dist/data/index.js +3 -0
- package/dist/data/index.js.map +1 -0
- package/dist/index.js +2 -1
- package/dist/index.js.map +1 -1
- package/dist/internal/index.js +3 -0
- package/dist/internal/index.js.map +1 -0
- package/dist/internal/namespace.js +3 -0
- package/dist/internal/namespace.js.map +1 -0
- package/dist/internal/registry.js +3 -0
- package/dist/internal/registry.js.map +1 -0
- package/dist/internal/uid.js +3 -0
- package/dist/internal/uid.js.map +1 -0
- package/dist/modules/auth.js +3 -0
- package/dist/modules/auth.js.map +1 -0
- package/dist/modules/content-api.js +3 -0
- package/dist/modules/content-api.js.map +1 -0
- package/dist/modules/core-store.js +3 -0
- package/dist/modules/core-store.js.map +1 -0
- package/dist/modules/cron.js +3 -0
- package/dist/modules/cron.js.map +1 -0
- package/dist/modules/custom-fields.js +3 -0
- package/dist/modules/custom-fields.js.map +1 -0
- package/dist/modules/documents/component-extension.js +3 -0
- package/dist/modules/documents/component-extension.js.map +1 -0
- package/dist/modules/documents/document-engine.js +2 -0
- package/dist/modules/documents/document-engine.js.map +1 -0
- package/dist/modules/documents/draft-and-publish.js +3 -0
- package/dist/modules/documents/draft-and-publish.js.map +1 -0
- package/dist/modules/documents/index.js +35 -0
- package/dist/modules/documents/index.js.map +1 -0
- package/dist/modules/documents/middleware.js +3 -0
- package/dist/modules/documents/middleware.js.map +1 -0
- package/dist/modules/documents/params/attributes/id.js +3 -0
- package/dist/modules/documents/params/attributes/id.js.map +1 -0
- package/dist/modules/documents/params/attributes/index.js +3 -0
- package/dist/modules/documents/params/attributes/index.js.map +1 -0
- package/dist/modules/documents/params/attributes/relations.js +3 -0
- package/dist/modules/documents/params/attributes/relations.js.map +1 -0
- package/dist/modules/documents/params/data.js +3 -0
- package/dist/modules/documents/params/data.js.map +1 -0
- package/dist/modules/documents/params/document-engine.js +3 -0
- package/dist/modules/documents/params/document-engine.js.map +1 -0
- package/dist/modules/documents/params/fields.js +3 -0
- package/dist/modules/documents/params/fields.js.map +1 -0
- package/dist/modules/documents/params/filters/index.js +3 -0
- package/dist/modules/documents/params/filters/index.js.map +1 -0
- package/dist/modules/documents/params/filters/operators.js +3 -0
- package/dist/modules/documents/params/filters/operators.js.map +1 -0
- package/dist/modules/documents/params/index.js +3 -0
- package/dist/modules/documents/params/index.js.map +1 -0
- package/dist/modules/documents/params/locale.js +3 -0
- package/dist/modules/documents/params/locale.js.map +1 -0
- package/dist/modules/documents/params/pagination.js +3 -0
- package/dist/modules/documents/params/pagination.js.map +1 -0
- package/dist/modules/documents/params/populate.js +3 -0
- package/dist/modules/documents/params/populate.js.map +1 -0
- package/dist/modules/documents/params/search.js +3 -0
- package/dist/modules/documents/params/search.js.map +1 -0
- package/dist/modules/documents/params/sort.js +3 -0
- package/dist/modules/documents/params/sort.js.map +1 -0
- package/dist/modules/documents/params/status.js +3 -0
- package/dist/modules/documents/params/status.js.map +1 -0
- package/dist/modules/documents/plugin.js +3 -0
- package/dist/modules/documents/plugin.js.map +1 -0
- package/dist/modules/documents/result/document-engine.js +3 -0
- package/dist/modules/documents/result/document-engine.js.map +1 -0
- package/dist/modules/documents/result/index.js +3 -0
- package/dist/modules/documents/result/index.js.map +1 -0
- package/dist/modules/documents/service-instance.js +3 -0
- package/dist/modules/documents/service-instance.js.map +1 -0
- package/dist/modules/entity-service/index.js +33 -0
- package/dist/modules/entity-service/index.js.map +1 -0
- package/dist/modules/entity-service/params/attributes/id.js +3 -0
- package/dist/modules/entity-service/params/attributes/id.js.map +1 -0
- package/dist/modules/entity-service/params/attributes/index.js +21 -0
- package/dist/modules/entity-service/params/attributes/index.js.map +1 -0
- package/dist/modules/entity-service/params/attributes/literals.js +3 -0
- package/dist/modules/entity-service/params/attributes/literals.js.map +1 -0
- package/dist/modules/entity-service/params/attributes/relation.js +3 -0
- package/dist/modules/entity-service/params/attributes/relation.js.map +1 -0
- package/dist/modules/entity-service/params/attributes/utils.js +3 -0
- package/dist/modules/entity-service/params/attributes/utils.js.map +1 -0
- package/dist/modules/entity-service/params/data.js +3 -0
- package/dist/modules/entity-service/params/data.js.map +1 -0
- package/dist/modules/entity-service/params/fields.js +3 -0
- package/dist/modules/entity-service/params/fields.js.map +1 -0
- package/dist/modules/entity-service/params/filters/index.js +3 -0
- package/dist/modules/entity-service/params/filters/index.js.map +1 -0
- package/dist/modules/entity-service/params/filters/operators.js +3 -0
- package/dist/modules/entity-service/params/filters/operators.js.map +1 -0
- package/dist/modules/entity-service/params/index.js +3 -0
- package/dist/modules/entity-service/params/index.js.map +1 -0
- package/dist/modules/entity-service/params/pagination.js +3 -0
- package/dist/modules/entity-service/params/pagination.js.map +1 -0
- package/dist/modules/entity-service/params/populate.js +3 -0
- package/dist/modules/entity-service/params/populate.js.map +1 -0
- package/dist/modules/entity-service/params/search.js +3 -0
- package/dist/modules/entity-service/params/search.js.map +1 -0
- package/dist/modules/entity-service/params/sort.js +3 -0
- package/dist/modules/entity-service/params/sort.js.map +1 -0
- package/dist/modules/entity-service/plugin.js +3 -0
- package/dist/modules/entity-service/plugin.js.map +1 -0
- package/dist/modules/entity-service/result.js +3 -0
- package/dist/modules/entity-service/result.js.map +1 -0
- package/dist/modules/entity-validator.js +3 -0
- package/dist/modules/entity-validator.js.map +1 -0
- package/dist/modules/event-hub.js +3 -0
- package/dist/modules/event-hub.js.map +1 -0
- package/dist/modules/features.d.ts +4 -1
- package/dist/modules/features.d.ts.map +1 -1
- package/dist/modules/features.js +3 -0
- package/dist/modules/features.js.map +1 -0
- package/dist/modules/fetch.js +3 -0
- package/dist/modules/fetch.js.map +1 -0
- package/dist/modules/index.js +3 -0
- package/dist/modules/index.js.map +1 -0
- package/dist/modules/metrics.js +3 -0
- package/dist/modules/metrics.js.map +1 -0
- package/dist/modules/permissions.js +3 -0
- package/dist/modules/permissions.js.map +1 -0
- package/dist/modules/request-context.js +3 -0
- package/dist/modules/request-context.js.map +1 -0
- package/dist/modules/sanitizers.js +3 -0
- package/dist/modules/sanitizers.js.map +1 -0
- package/dist/modules/server.js +3 -0
- package/dist/modules/server.js.map +1 -0
- package/dist/modules/validators.js +3 -0
- package/dist/modules/validators.js.map +1 -0
- package/dist/modules/webhook-runner.js +3 -0
- package/dist/modules/webhook-runner.js.map +1 -0
- package/dist/modules/webhook-store.js +3 -0
- package/dist/modules/webhook-store.js.map +1 -0
- package/dist/plugin/config/index.js +3 -0
- package/dist/plugin/config/index.js.map +1 -0
- package/dist/plugin/config/strapi-admin/index.js +3 -0
- package/dist/plugin/config/strapi-admin/index.js.map +1 -0
- package/dist/plugin/config/strapi-server/config.js +3 -0
- package/dist/plugin/config/strapi-server/config.js.map +1 -0
- package/dist/plugin/config/strapi-server/content-types.js +3 -0
- package/dist/plugin/config/strapi-server/content-types.js.map +1 -0
- package/dist/plugin/config/strapi-server/controllers.js +3 -0
- package/dist/plugin/config/strapi-server/controllers.js.map +1 -0
- package/dist/plugin/config/strapi-server/index.js +3 -0
- package/dist/plugin/config/strapi-server/index.js.map +1 -0
- package/dist/plugin/config/strapi-server/lifecycle.js +3 -0
- package/dist/plugin/config/strapi-server/lifecycle.js.map +1 -0
- package/dist/plugin/config/strapi-server/routes.js +3 -0
- package/dist/plugin/config/strapi-server/routes.js.map +1 -0
- package/dist/plugin/index.js +28 -0
- package/dist/plugin/index.js.map +1 -0
- package/dist/public/index.js +22 -0
- package/dist/public/index.js.map +1 -0
- package/dist/public/registries.js +3 -0
- package/dist/public/registries.js.map +1 -0
- package/dist/public/shared.js +4 -0
- package/dist/public/shared.js.map +1 -0
- package/dist/schema/attribute/base.js +3 -0
- package/dist/schema/attribute/base.js.map +1 -0
- package/dist/schema/attribute/common.js +3 -0
- package/dist/schema/attribute/common.js.map +1 -0
- package/dist/schema/attribute/constants.js +3 -0
- package/dist/schema/attribute/constants.js.map +1 -0
- package/dist/schema/attribute/definitions/biginteger.js +3 -0
- package/dist/schema/attribute/definitions/biginteger.js.map +1 -0
- package/dist/schema/attribute/definitions/blocks.js +3 -0
- package/dist/schema/attribute/definitions/blocks.js.map +1 -0
- package/dist/schema/attribute/definitions/boolean.js +3 -0
- package/dist/schema/attribute/definitions/boolean.js.map +1 -0
- package/dist/schema/attribute/definitions/component.js +3 -0
- package/dist/schema/attribute/definitions/component.js.map +1 -0
- package/dist/schema/attribute/definitions/date-time.js +3 -0
- package/dist/schema/attribute/definitions/date-time.js.map +1 -0
- package/dist/schema/attribute/definitions/date.js +3 -0
- package/dist/schema/attribute/definitions/date.js.map +1 -0
- package/dist/schema/attribute/definitions/decimal.js +3 -0
- package/dist/schema/attribute/definitions/decimal.js.map +1 -0
- package/dist/schema/attribute/definitions/dynamic-zone.js +3 -0
- package/dist/schema/attribute/definitions/dynamic-zone.js.map +1 -0
- package/dist/schema/attribute/definitions/email.js +3 -0
- package/dist/schema/attribute/definitions/email.js.map +1 -0
- package/dist/schema/attribute/definitions/enumeration.js +3 -0
- package/dist/schema/attribute/definitions/enumeration.js.map +1 -0
- package/dist/schema/attribute/definitions/float.js +3 -0
- package/dist/schema/attribute/definitions/float.js.map +1 -0
- package/dist/schema/attribute/definitions/index.js +3 -0
- package/dist/schema/attribute/definitions/index.js.map +1 -0
- package/dist/schema/attribute/definitions/integer.js +3 -0
- package/dist/schema/attribute/definitions/integer.js.map +1 -0
- package/dist/schema/attribute/definitions/json.js +3 -0
- package/dist/schema/attribute/definitions/json.js.map +1 -0
- package/dist/schema/attribute/definitions/media.js +3 -0
- package/dist/schema/attribute/definitions/media.js.map +1 -0
- package/dist/schema/attribute/definitions/password.js +3 -0
- package/dist/schema/attribute/definitions/password.js.map +1 -0
- package/dist/schema/attribute/definitions/relation.js +3 -0
- package/dist/schema/attribute/definitions/relation.js.map +1 -0
- package/dist/schema/attribute/definitions/richtext.js +3 -0
- package/dist/schema/attribute/definitions/richtext.js.map +1 -0
- package/dist/schema/attribute/definitions/string.js +3 -0
- package/dist/schema/attribute/definitions/string.js.map +1 -0
- package/dist/schema/attribute/definitions/text.js +3 -0
- package/dist/schema/attribute/definitions/text.js.map +1 -0
- package/dist/schema/attribute/definitions/time.js +3 -0
- package/dist/schema/attribute/definitions/time.js.map +1 -0
- package/dist/schema/attribute/definitions/timestamp.js +3 -0
- package/dist/schema/attribute/definitions/timestamp.js.map +1 -0
- package/dist/schema/attribute/definitions/uid.js +3 -0
- package/dist/schema/attribute/definitions/uid.js.map +1 -0
- package/dist/schema/attribute/index.js +23 -0
- package/dist/schema/attribute/index.js.map +1 -0
- package/dist/schema/attribute/options.js +9 -0
- package/dist/schema/attribute/options.js.map +1 -0
- package/dist/schema/attribute/utils.js +3 -0
- package/dist/schema/attribute/utils.js.map +1 -0
- package/dist/schema/index.js +3 -0
- package/dist/schema/index.js.map +1 -0
- package/dist/struct/index.js +3 -0
- package/dist/struct/index.js.map +1 -0
- package/dist/struct/schema-definition.js +3 -0
- package/dist/struct/schema-definition.js.map +1 -0
- package/dist/struct/schema.js +3 -0
- package/dist/struct/schema.js.map +1 -0
- package/dist/uid/index.js +3 -0
- package/dist/uid/index.js.map +1 -0
- package/dist/utils/array.js +3 -0
- package/dist/utils/array.js.map +1 -0
- package/dist/utils/constants.js +3 -0
- package/dist/utils/constants.js.map +1 -0
- package/dist/utils/expression.js +3 -0
- package/dist/utils/expression.js.map +1 -0
- package/dist/utils/function.js +3 -0
- package/dist/utils/function.js.map +1 -0
- package/dist/utils/guard.js +3 -0
- package/dist/utils/guard.js.map +1 -0
- package/dist/utils/index.js +39 -0
- package/dist/utils/index.js.map +1 -0
- package/dist/utils/json.js +3 -0
- package/dist/utils/json.js.map +1 -0
- package/dist/utils/object.js +3 -0
- package/dist/utils/object.js.map +1 -0
- package/dist/utils/string.js +3 -0
- package/dist/utils/string.js.map +1 -0
- package/dist/utils/tuple.js +3 -0
- package/dist/utils/tuple.js.map +1 -0
- package/package.json +11 -12
- package/dist/index.mjs +0 -2
- package/dist/index.mjs.map +0 -1
package/dist/core/api.js
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"api.js","sourceRoot":"","sources":["../../src/core/api.ts"],"names":[],"mappings":""}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../../src/core/commands/index.ts"],"names":[],"mappings":""}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"admin.js","sourceRoot":"","sources":["../../../src/core/config/admin.ts"],"names":[],"mappings":""}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"api.js","sourceRoot":"","sources":["../../../src/core/config/api.ts"],"names":[],"mappings":""}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"database.js","sourceRoot":"","sources":["../../../src/core/config/database.ts"],"names":[],"mappings":""}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../../src/core/config/index.ts"],"names":[],"mappings":""}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"middlewares.js","sourceRoot":"","sources":["../../../src/core/config/middlewares.ts"],"names":[],"mappings":""}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"plugin.js","sourceRoot":"","sources":["../../../src/core/config/plugin.ts"],"names":[],"mappings":""}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"server.js","sourceRoot":"","sources":["../../../src/core/config/server.ts"],"names":[],"mappings":""}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"shared.js","sourceRoot":"","sources":["../../../src/core/config/shared.ts"],"names":[],"mappings":""}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"container.js","sourceRoot":"","sources":["../../src/core/container.ts"],"names":[],"mappings":""}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"controller.js","sourceRoot":"","sources":["../../src/core/controller.ts"],"names":[],"mappings":";;AAAA,oBAAkB"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"controller.js","sourceRoot":"","sources":["../../../src/core/core-api/controller.ts"],"names":[],"mappings":""}
|
|
@@ -0,0 +1,30 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
3
|
+
if (k2 === undefined) k2 = k;
|
|
4
|
+
var desc = Object.getOwnPropertyDescriptor(m, k);
|
|
5
|
+
if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
|
|
6
|
+
desc = { enumerable: true, get: function() { return m[k]; } };
|
|
7
|
+
}
|
|
8
|
+
Object.defineProperty(o, k2, desc);
|
|
9
|
+
}) : (function(o, m, k, k2) {
|
|
10
|
+
if (k2 === undefined) k2 = k;
|
|
11
|
+
o[k2] = m[k];
|
|
12
|
+
}));
|
|
13
|
+
var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) {
|
|
14
|
+
Object.defineProperty(o, "default", { enumerable: true, value: v });
|
|
15
|
+
}) : function(o, v) {
|
|
16
|
+
o["default"] = v;
|
|
17
|
+
});
|
|
18
|
+
var __importStar = (this && this.__importStar) || function (mod) {
|
|
19
|
+
if (mod && mod.__esModule) return mod;
|
|
20
|
+
var result = {};
|
|
21
|
+
if (mod != null) for (var k in mod) if (k !== "default" && Object.prototype.hasOwnProperty.call(mod, k)) __createBinding(result, mod, k);
|
|
22
|
+
__setModuleDefault(result, mod);
|
|
23
|
+
return result;
|
|
24
|
+
};
|
|
25
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
26
|
+
exports.Router = exports.Service = exports.Controller = void 0;
|
|
27
|
+
exports.Controller = __importStar(require("./controller"));
|
|
28
|
+
exports.Service = __importStar(require("./service"));
|
|
29
|
+
exports.Router = __importStar(require("./router"));
|
|
30
|
+
//# sourceMappingURL=index.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../../src/core/core-api/index.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;AAAA,2DAA2C;AAC3C,qDAAqC;AACrC,mDAAmC"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"router.js","sourceRoot":"","sources":["../../../src/core/core-api/router.ts"],"names":[],"mappings":""}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"service.js","sourceRoot":"","sources":["../../../src/core/core-api/service.ts"],"names":[],"mappings":""}
|
|
@@ -0,0 +1,43 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
3
|
+
if (k2 === undefined) k2 = k;
|
|
4
|
+
var desc = Object.getOwnPropertyDescriptor(m, k);
|
|
5
|
+
if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
|
|
6
|
+
desc = { enumerable: true, get: function() { return m[k]; } };
|
|
7
|
+
}
|
|
8
|
+
Object.defineProperty(o, k2, desc);
|
|
9
|
+
}) : (function(o, m, k, k2) {
|
|
10
|
+
if (k2 === undefined) k2 = k;
|
|
11
|
+
o[k2] = m[k];
|
|
12
|
+
}));
|
|
13
|
+
var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) {
|
|
14
|
+
Object.defineProperty(o, "default", { enumerable: true, value: v });
|
|
15
|
+
}) : function(o, v) {
|
|
16
|
+
o["default"] = v;
|
|
17
|
+
});
|
|
18
|
+
var __importStar = (this && this.__importStar) || function (mod) {
|
|
19
|
+
if (mod && mod.__esModule) return mod;
|
|
20
|
+
var result = {};
|
|
21
|
+
if (mod != null) for (var k in mod) if (k !== "default" && Object.prototype.hasOwnProperty.call(mod, k)) __createBinding(result, mod, k);
|
|
22
|
+
__setModuleDefault(result, mod);
|
|
23
|
+
return result;
|
|
24
|
+
};
|
|
25
|
+
var __exportStar = (this && this.__exportStar) || function(m, exports) {
|
|
26
|
+
for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p);
|
|
27
|
+
};
|
|
28
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
29
|
+
exports.CoreAPI = exports.Config = void 0;
|
|
30
|
+
exports.Config = __importStar(require("./config"));
|
|
31
|
+
exports.CoreAPI = __importStar(require("./core-api"));
|
|
32
|
+
__exportStar(require("./container"), exports);
|
|
33
|
+
__exportStar(require("./controller"), exports);
|
|
34
|
+
__exportStar(require("./commands"), exports);
|
|
35
|
+
__exportStar(require("./middleware"), exports);
|
|
36
|
+
__exportStar(require("./policy"), exports);
|
|
37
|
+
__exportStar(require("./service"), exports);
|
|
38
|
+
__exportStar(require("./router"), exports);
|
|
39
|
+
__exportStar(require("./plugin"), exports);
|
|
40
|
+
__exportStar(require("./module"), exports);
|
|
41
|
+
__exportStar(require("./api"), exports);
|
|
42
|
+
__exportStar(require("./strapi"), exports);
|
|
43
|
+
//# sourceMappingURL=index.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../src/core/index.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAAA,mDAAmC;AACnC,sDAAsC;AAEtC,8CAA4B;AAC5B,+CAA6B;AAC7B,6CAA2B;AAC3B,+CAA6B;AAC7B,2CAAyB;AACzB,4CAA0B;AAC1B,2CAAyB;AACzB,2CAAyB;AACzB,2CAAyB;AACzB,wCAAsB;AACtB,2CAAyB"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"middleware.js","sourceRoot":"","sources":["../../src/core/middleware.ts"],"names":[],"mappings":""}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"module.js","sourceRoot":"","sources":["../../src/core/module.ts"],"names":[],"mappings":""}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"plugin.js","sourceRoot":"","sources":["../../src/core/plugin.ts"],"names":[],"mappings":""}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"policy.js","sourceRoot":"","sources":["../../src/core/policy.ts"],"names":[],"mappings":""}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"router.js","sourceRoot":"","sources":["../../src/core/router.ts"],"names":[],"mappings":""}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"service.js","sourceRoot":"","sources":["../../src/core/service.ts"],"names":[],"mappings":""}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"strapi.js","sourceRoot":"","sources":["../../src/core/strapi.ts"],"names":[],"mappings":""}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"component.js","sourceRoot":"","sources":["../../src/data/component.ts"],"names":[],"mappings":""}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"constants.js","sourceRoot":"","sources":["../../src/data/constants.ts"],"names":[],"mappings":""}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"content-type.js","sourceRoot":"","sources":["../../src/data/content-type.ts"],"names":[],"mappings":""}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"entity.js","sourceRoot":"","sources":["../../src/data/entity.ts"],"names":[],"mappings":""}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../src/data/index.ts"],"names":[],"mappings":""}
|
package/dist/index.js
CHANGED
package/dist/index.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":""}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../src/internal/index.ts"],"names":[],"mappings":""}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"namespace.js","sourceRoot":"","sources":["../../src/internal/namespace.ts"],"names":[],"mappings":""}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"registry.js","sourceRoot":"","sources":["../../src/internal/registry.ts"],"names":[],"mappings":""}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"uid.js","sourceRoot":"","sources":["../../src/internal/uid.ts"],"names":[],"mappings":""}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"auth.js","sourceRoot":"","sources":["../../src/modules/auth.ts"],"names":[],"mappings":""}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"content-api.js","sourceRoot":"","sources":["../../src/modules/content-api.ts"],"names":[],"mappings":""}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"core-store.js","sourceRoot":"","sources":["../../src/modules/core-store.ts"],"names":[],"mappings":""}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"cron.js","sourceRoot":"","sources":["../../src/modules/cron.ts"],"names":[],"mappings":""}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"custom-fields.js","sourceRoot":"","sources":["../../src/modules/custom-fields.ts"],"names":[],"mappings":""}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"component-extension.js","sourceRoot":"","sources":["../../../src/modules/documents/component-extension.ts"],"names":[],"mappings":""}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"document-engine.js","sourceRoot":"","sources":["../../../src/modules/documents/document-engine.ts"],"names":[],"mappings":""}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"draft-and-publish.js","sourceRoot":"","sources":["../../../src/modules/documents/draft-and-publish.ts"],"names":[],"mappings":""}
|
|
@@ -0,0 +1,35 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
3
|
+
if (k2 === undefined) k2 = k;
|
|
4
|
+
var desc = Object.getOwnPropertyDescriptor(m, k);
|
|
5
|
+
if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
|
|
6
|
+
desc = { enumerable: true, get: function() { return m[k]; } };
|
|
7
|
+
}
|
|
8
|
+
Object.defineProperty(o, k2, desc);
|
|
9
|
+
}) : (function(o, m, k, k2) {
|
|
10
|
+
if (k2 === undefined) k2 = k;
|
|
11
|
+
o[k2] = m[k];
|
|
12
|
+
}));
|
|
13
|
+
var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) {
|
|
14
|
+
Object.defineProperty(o, "default", { enumerable: true, value: v });
|
|
15
|
+
}) : function(o, v) {
|
|
16
|
+
o["default"] = v;
|
|
17
|
+
});
|
|
18
|
+
var __importStar = (this && this.__importStar) || function (mod) {
|
|
19
|
+
if (mod && mod.__esModule) return mod;
|
|
20
|
+
var result = {};
|
|
21
|
+
if (mod != null) for (var k in mod) if (k !== "default" && Object.prototype.hasOwnProperty.call(mod, k)) __createBinding(result, mod, k);
|
|
22
|
+
__setModuleDefault(result, mod);
|
|
23
|
+
return result;
|
|
24
|
+
};
|
|
25
|
+
var __exportStar = (this && this.__exportStar) || function(m, exports) {
|
|
26
|
+
for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p);
|
|
27
|
+
};
|
|
28
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
29
|
+
exports.Params = exports.Middleware = void 0;
|
|
30
|
+
exports.Middleware = __importStar(require("./middleware"));
|
|
31
|
+
exports.Params = __importStar(require("./params"));
|
|
32
|
+
__exportStar(require("./plugin"), exports);
|
|
33
|
+
__exportStar(require("./result"), exports);
|
|
34
|
+
__exportStar(require("./service-instance"), exports);
|
|
35
|
+
//# sourceMappingURL=index.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../../src/modules/documents/index.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAMA,2DAA2C;AAC3C,mDAAmC;AACnC,2CAAyB;AACzB,2CAAyB;AACzB,qDAAmC"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"middleware.js","sourceRoot":"","sources":["../../../src/modules/documents/middleware.ts"],"names":[],"mappings":""}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"id.js","sourceRoot":"","sources":["../../../../../src/modules/documents/params/attributes/id.ts"],"names":[],"mappings":""}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../../../../src/modules/documents/params/attributes/index.ts"],"names":[],"mappings":""}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"relations.js","sourceRoot":"","sources":["../../../../../src/modules/documents/params/attributes/relations.ts"],"names":[],"mappings":""}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"data.js","sourceRoot":"","sources":["../../../../src/modules/documents/params/data.ts"],"names":[],"mappings":""}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"document-engine.js","sourceRoot":"","sources":["../../../../src/modules/documents/params/document-engine.ts"],"names":[],"mappings":""}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"fields.js","sourceRoot":"","sources":["../../../../src/modules/documents/params/fields.ts"],"names":[],"mappings":""}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../../../../src/modules/documents/params/filters/index.ts"],"names":[],"mappings":""}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"operators.js","sourceRoot":"","sources":["../../../../../src/modules/documents/params/filters/operators.ts"],"names":[],"mappings":""}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../../../src/modules/documents/params/index.ts"],"names":[],"mappings":""}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"locale.js","sourceRoot":"","sources":["../../../../src/modules/documents/params/locale.ts"],"names":[],"mappings":""}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"pagination.js","sourceRoot":"","sources":["../../../../src/modules/documents/params/pagination.ts"],"names":[],"mappings":""}
|