@manticore-labs/nest 0.0.24 → 0.0.26
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/.circleci/config.yml +47 -47
- package/.idea/manticore-labs-nest.iml +11 -11
- package/.idea/modules.xml +7 -7
- package/.idea/vcs.xml +5 -5
- package/.idea/workspace.xml +53 -205
- package/LICENSE +8 -8
- package/README.1.md +116 -116
- package/README.md +1 -1
- package/build/main/index.d.ts +10 -11
- package/build/main/index.js +13 -14
- package/build/main/lib/funciones-util/buscar-registro.d.ts +1 -1
- package/build/main/lib/funciones-util/buscar-registro.js +146 -146
- package/build/main/lib/funciones-util/buscar-un-registro-por-id.d.ts +1 -1
- package/build/main/lib/funciones-util/buscar-un-registro-por-id.js +25 -25
- package/build/main/lib/funciones-util/buscar-where-or.d.ts +1 -1
- package/build/main/lib/funciones-util/buscar-where-or.js +31 -31
- package/build/main/lib/funciones-util/contar-registros.d.ts +1 -1
- package/build/main/lib/funciones-util/contar-registros.js +41 -41
- package/build/main/lib/funciones-util/crear-un-registro.d.ts +1 -1
- package/build/main/lib/funciones-util/crear-un-registro.js +24 -24
- package/build/main/lib/funciones-util/editar-un-registro.d.ts +1 -1
- package/build/main/lib/funciones-util/editar-un-registro.js +24 -24
- package/build/main/lib/funciones-util/eliminar-uno.d.ts +1 -1
- package/build/main/lib/funciones-util/eliminar-uno.js +35 -35
- package/build/main/lib/funciones-util/typeorm/valor-esta-dentro-del-arreglo.d.ts +2 -2
- package/build/main/lib/funciones-util/typeorm/valor-esta-dentro-del-arreglo.js +21 -21
- package/build/main/lib/interfaces-util/arreglo-funciones-booleanas.d.ts +4 -4
- package/build/main/lib/interfaces-util/arreglo-funciones-booleanas.js +2 -2
- package/build/main/lib/interfaces-util/broadcast-join.gateway.d.ts +14 -14
- package/build/main/lib/interfaces-util/broadcast-join.gateway.js +2 -2
- package/build/main/lib/interfaces-util/delete-service.d.ts +12 -12
- package/build/main/lib/interfaces-util/delete-service.js +2 -2
- package/build/main/lib/interfaces-util/dto.d.ts +4 -4
- package/build/main/lib/interfaces-util/dto.js +2 -2
- package/build/main/lib/interfaces-util/find-where-relations.d.ts +8 -8
- package/build/main/lib/interfaces-util/find-where-relations.js +2 -2
- package/build/main/lib/interfaces-util/funciones-seguridad.d.ts +13 -13
- package/build/main/lib/interfaces-util/funciones-seguridad.js +2 -2
- package/build/main/lib/interfaces-util/funciones.gateway.d.ts +5 -5
- package/build/main/lib/interfaces-util/funciones.gateway.js +2 -2
- package/build/main/lib/interfaces-util/mensajes-controller.d.ts +6 -6
- package/build/main/lib/interfaces-util/mensajes-controller.js +2 -2
- package/build/main/lib/interfaces-util/politicas-de-seguridad.d.ts +17 -17
- package/build/main/lib/interfaces-util/politicas-de-seguridad.js +2 -2
- package/build/main/lib/interfaces-util/respuesta-general.gateway.d.ts +5 -5
- package/build/main/lib/interfaces-util/respuesta-general.gateway.js +2 -2
- package/build/main/lib/principal.controller.d.ts +20 -20
- package/build/main/lib/principal.controller.js +309 -309
- package/build/main/lib/principal.dto.d.ts +5 -5
- package/build/main/lib/principal.dto.js +21 -21
- package/build/main/lib/principal.entity.d.ts +7 -7
- package/build/main/lib/principal.entity.js +42 -42
- package/build/main/lib/principal.find-many-options.d.ts +14 -14
- package/build/main/lib/principal.find-many-options.js +48 -48
- package/build/main/lib/principal.find-many-where-or.d.ts +10 -10
- package/build/main/lib/principal.find-many-where-or.js +28 -28
- package/build/main/lib/principal.gateway.d.ts +35 -35
- package/build/main/lib/principal.gateway.js +399 -399
- package/build/main/lib/principal.id.d.ts +3 -3
- package/build/main/lib/principal.id.js +16 -16
- package/build/main/lib/principal.resolver.d.ts +20 -20
- package/build/main/lib/principal.resolver.js +343 -343
- package/build/main/lib/principal.service.d.ts +36 -35
- package/build/main/lib/principal.service.js +208 -204
- package/build/main/lib/seguridad/aplicar-politicas-de-seguridad.d.ts +4 -4
- package/build/main/lib/seguridad/aplicar-politicas-de-seguridad.js +16 -16
- package/build/main/lib/seguridad/funciones/convertir-arreglo-en-arreglo-de-observables.d.ts +3 -3
- package/build/main/lib/seguridad/funciones/convertir-arreglo-en-arreglo-de-observables.js +26 -26
- package/build/main/lib/seguridad/funciones/index.d.ts +6 -6
- package/build/main/lib/seguridad/funciones/index.js +12 -12
- package/build/main/lib/seguridad/funciones/obtener-reflector-seguridad.d.ts +1 -1
- package/build/main/lib/seguridad/funciones/obtener-reflector-seguridad.js +6 -6
- package/build/main/lib/seguridad/funciones/obtener-request.d.ts +1 -1
- package/build/main/lib/seguridad/funciones/obtener-request.js +6 -6
- package/build/main/lib/seguridad/funciones/obtener-response.d.ts +1 -1
- package/build/main/lib/seguridad/funciones/obtener-response.js +6 -6
- package/build/main/lib/seguridad/funciones/tiene-acceso-permitido.d.ts +2 -2
- package/build/main/lib/seguridad/funciones/tiene-acceso-permitido.js +13 -13
- package/build/main/lib/seguridad/seguridad.decorator.d.ts +1 -1
- package/build/main/lib/seguridad/seguridad.decorator.js +4 -4
- package/build/module/index.d.ts +10 -11
- package/build/module/index.js +8 -9
- package/build/module/lib/funciones-util/buscar-registro.d.ts +1 -1
- package/build/module/lib/funciones-util/buscar-registro.js +143 -143
- package/build/module/lib/funciones-util/buscar-un-registro-por-id.d.ts +1 -1
- package/build/module/lib/funciones-util/buscar-un-registro-por-id.js +22 -22
- package/build/module/lib/funciones-util/buscar-where-or.d.ts +1 -1
- package/build/module/lib/funciones-util/buscar-where-or.js +28 -28
- package/build/module/lib/funciones-util/contar-registros.d.ts +1 -1
- package/build/module/lib/funciones-util/contar-registros.js +38 -38
- package/build/module/lib/funciones-util/crear-un-registro.d.ts +1 -1
- package/build/module/lib/funciones-util/crear-un-registro.js +21 -21
- package/build/module/lib/funciones-util/editar-un-registro.d.ts +1 -1
- package/build/module/lib/funciones-util/editar-un-registro.js +21 -21
- package/build/module/lib/funciones-util/eliminar-uno.d.ts +1 -1
- package/build/module/lib/funciones-util/eliminar-uno.js +32 -32
- package/build/module/lib/funciones-util/typeorm/valor-esta-dentro-del-arreglo.d.ts +2 -2
- package/build/module/lib/funciones-util/typeorm/valor-esta-dentro-del-arreglo.js +18 -18
- package/build/module/lib/interfaces-util/arreglo-funciones-booleanas.d.ts +4 -4
- package/build/module/lib/interfaces-util/broadcast-join.gateway.d.ts +14 -14
- package/build/module/lib/interfaces-util/delete-service.d.ts +12 -12
- package/build/module/lib/interfaces-util/dto.d.ts +4 -4
- package/build/module/lib/interfaces-util/find-where-relations.d.ts +8 -8
- package/build/module/lib/interfaces-util/funciones-seguridad.d.ts +13 -13
- package/build/module/lib/interfaces-util/funciones.gateway.d.ts +5 -5
- package/build/module/lib/interfaces-util/mensajes-controller.d.ts +6 -6
- package/build/module/lib/interfaces-util/politicas-de-seguridad.d.ts +17 -17
- package/build/module/lib/interfaces-util/respuesta-general.gateway.d.ts +5 -5
- package/build/module/lib/principal.controller.d.ts +20 -20
- package/build/module/lib/principal.controller.js +306 -306
- package/build/module/lib/principal.dto.d.ts +5 -5
- package/build/module/lib/principal.dto.js +18 -18
- package/build/module/lib/principal.entity.d.ts +7 -7
- package/build/module/lib/principal.entity.js +39 -39
- package/build/module/lib/principal.find-many-options.d.ts +14 -14
- package/build/module/lib/principal.find-many-options.js +45 -45
- package/build/module/lib/principal.find-many-where-or.d.ts +10 -10
- package/build/module/lib/principal.find-many-where-or.js +25 -25
- package/build/module/lib/principal.gateway.d.ts +35 -35
- package/build/module/lib/principal.gateway.js +396 -396
- package/build/module/lib/principal.id.d.ts +3 -3
- package/build/module/lib/principal.id.js +13 -13
- package/build/module/lib/principal.resolver.d.ts +20 -20
- package/build/module/lib/principal.resolver.js +340 -340
- package/build/module/lib/principal.service.d.ts +36 -35
- package/build/module/lib/principal.service.js +205 -201
- package/build/module/lib/seguridad/aplicar-politicas-de-seguridad.d.ts +4 -4
- package/build/module/lib/seguridad/aplicar-politicas-de-seguridad.js +13 -13
- package/build/module/lib/seguridad/funciones/convertir-arreglo-en-arreglo-de-observables.d.ts +3 -3
- package/build/module/lib/seguridad/funciones/convertir-arreglo-en-arreglo-de-observables.js +23 -23
- package/build/module/lib/seguridad/funciones/index.d.ts +6 -6
- package/build/module/lib/seguridad/funciones/index.js +6 -6
- package/build/module/lib/seguridad/funciones/obtener-reflector-seguridad.d.ts +1 -1
- package/build/module/lib/seguridad/funciones/obtener-reflector-seguridad.js +3 -3
- package/build/module/lib/seguridad/funciones/obtener-request.d.ts +1 -1
- package/build/module/lib/seguridad/funciones/obtener-request.js +3 -3
- package/build/module/lib/seguridad/funciones/obtener-response.d.ts +1 -1
- package/build/module/lib/seguridad/funciones/obtener-response.js +3 -3
- package/build/module/lib/seguridad/funciones/tiene-acceso-permitido.d.ts +2 -2
- package/build/module/lib/seguridad/funciones/tiene-acceso-permitido.js +10 -10
- package/build/module/lib/seguridad/seguridad.decorator.d.ts +1 -1
- package/build/module/lib/seguridad/seguridad.decorator.js +2 -2
- package/package.json +1 -1
- package/.idea/codeStyles/Project.xml +0 -38
- package/.idea/codeStyles/codeStyleConfig.xml +0 -5
- package/.idea/misc.xml +0 -70
- package/build/main/lib/funciones-util/respuestas-servidor.d.ts +0 -4
- package/build/main/lib/funciones-util/respuestas-servidor.js +0 -12
- package/build/module/lib/funciones-util/respuestas-servidor.d.ts +0 -4
- package/build/module/lib/funciones-util/respuestas-servidor.js +0 -10
package/.circleci/config.yml
CHANGED
|
@@ -1,48 +1,48 @@
|
|
|
1
|
-
# https://circleci.com/docs/2.0/language-javascript/
|
|
2
|
-
version: 2
|
|
3
|
-
jobs:
|
|
4
|
-
"node-8":
|
|
5
|
-
docker:
|
|
6
|
-
- image: circleci/node:8
|
|
7
|
-
working_directory: ~/typescript-starter
|
|
8
|
-
steps:
|
|
9
|
-
- checkout
|
|
10
|
-
# Download and cache dependencies
|
|
11
|
-
- restore_cache:
|
|
12
|
-
keys:
|
|
13
|
-
- v1-dependencies-{{ checksum "package.json" }}
|
|
14
|
-
# fallback to using the latest cache if no exact match is found
|
|
15
|
-
- v1-dependencies-
|
|
16
|
-
- run: npm install
|
|
17
|
-
- save_cache:
|
|
18
|
-
paths:
|
|
19
|
-
- node_modules
|
|
20
|
-
key: v1-dependencies-{{ checksum "package.json" }}
|
|
21
|
-
- run: npm test
|
|
22
|
-
- run: npx nyc report --reporter=lcov | npx codecov
|
|
23
|
-
- run: npm run cov:check
|
|
24
|
-
"node-latest":
|
|
25
|
-
docker:
|
|
26
|
-
- image: circleci/node:latest
|
|
27
|
-
working_directory: ~/typescript-starter
|
|
28
|
-
steps:
|
|
29
|
-
- checkout
|
|
30
|
-
- restore_cache:
|
|
31
|
-
keys:
|
|
32
|
-
- v1-dependencies-{{ checksum "package.json" }}
|
|
33
|
-
- v1-dependencies-
|
|
34
|
-
- run: npm install
|
|
35
|
-
- save_cache:
|
|
36
|
-
paths:
|
|
37
|
-
- node_modules
|
|
38
|
-
key: v1-dependencies-{{ checksum "package.json" }}
|
|
39
|
-
- run: npm test
|
|
40
|
-
- run: npx nyc report --reporter=lcov | npx codecov
|
|
41
|
-
- run: npm run cov:check
|
|
42
|
-
|
|
43
|
-
workflows:
|
|
44
|
-
version: 2
|
|
45
|
-
build:
|
|
46
|
-
jobs:
|
|
47
|
-
- "node-8"
|
|
1
|
+
# https://circleci.com/docs/2.0/language-javascript/
|
|
2
|
+
version: 2
|
|
3
|
+
jobs:
|
|
4
|
+
"node-8":
|
|
5
|
+
docker:
|
|
6
|
+
- image: circleci/node:8
|
|
7
|
+
working_directory: ~/typescript-starter
|
|
8
|
+
steps:
|
|
9
|
+
- checkout
|
|
10
|
+
# Download and cache dependencies
|
|
11
|
+
- restore_cache:
|
|
12
|
+
keys:
|
|
13
|
+
- v1-dependencies-{{ checksum "package.json" }}
|
|
14
|
+
# fallback to using the latest cache if no exact match is found
|
|
15
|
+
- v1-dependencies-
|
|
16
|
+
- run: npm install
|
|
17
|
+
- save_cache:
|
|
18
|
+
paths:
|
|
19
|
+
- node_modules
|
|
20
|
+
key: v1-dependencies-{{ checksum "package.json" }}
|
|
21
|
+
- run: npm test
|
|
22
|
+
- run: npx nyc report --reporter=lcov | npx codecov
|
|
23
|
+
- run: npm run cov:check
|
|
24
|
+
"node-latest":
|
|
25
|
+
docker:
|
|
26
|
+
- image: circleci/node:latest
|
|
27
|
+
working_directory: ~/typescript-starter
|
|
28
|
+
steps:
|
|
29
|
+
- checkout
|
|
30
|
+
- restore_cache:
|
|
31
|
+
keys:
|
|
32
|
+
- v1-dependencies-{{ checksum "package.json" }}
|
|
33
|
+
- v1-dependencies-
|
|
34
|
+
- run: npm install
|
|
35
|
+
- save_cache:
|
|
36
|
+
paths:
|
|
37
|
+
- node_modules
|
|
38
|
+
key: v1-dependencies-{{ checksum "package.json" }}
|
|
39
|
+
- run: npm test
|
|
40
|
+
- run: npx nyc report --reporter=lcov | npx codecov
|
|
41
|
+
- run: npm run cov:check
|
|
42
|
+
|
|
43
|
+
workflows:
|
|
44
|
+
version: 2
|
|
45
|
+
build:
|
|
46
|
+
jobs:
|
|
47
|
+
- "node-8"
|
|
48
48
|
- "node-latest"
|
|
@@ -1,12 +1,12 @@
|
|
|
1
|
-
<?xml version="1.0" encoding="UTF-8"?>
|
|
2
|
-
<module type="WEB_MODULE" version="4">
|
|
3
|
-
<component name="NewModuleRootManager">
|
|
4
|
-
<content url="file://$MODULE_DIR$">
|
|
5
|
-
<excludeFolder url="file://$MODULE_DIR$/.tmp" />
|
|
6
|
-
<excludeFolder url="file://$MODULE_DIR$/temp" />
|
|
7
|
-
<excludeFolder url="file://$MODULE_DIR$/tmp" />
|
|
8
|
-
</content>
|
|
9
|
-
<orderEntry type="inheritedJdk" />
|
|
10
|
-
<orderEntry type="sourceFolder" forTests="false" />
|
|
11
|
-
</component>
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
|
2
|
+
<module type="WEB_MODULE" version="4">
|
|
3
|
+
<component name="NewModuleRootManager">
|
|
4
|
+
<content url="file://$MODULE_DIR$">
|
|
5
|
+
<excludeFolder url="file://$MODULE_DIR$/.tmp" />
|
|
6
|
+
<excludeFolder url="file://$MODULE_DIR$/temp" />
|
|
7
|
+
<excludeFolder url="file://$MODULE_DIR$/tmp" />
|
|
8
|
+
</content>
|
|
9
|
+
<orderEntry type="inheritedJdk" />
|
|
10
|
+
<orderEntry type="sourceFolder" forTests="false" />
|
|
11
|
+
</component>
|
|
12
12
|
</module>
|
package/.idea/modules.xml
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
|
-
<?xml version="1.0" encoding="UTF-8"?>
|
|
2
|
-
<project version="4">
|
|
3
|
-
<component name="ProjectModuleManager">
|
|
4
|
-
<modules>
|
|
5
|
-
<module fileurl="file://$PROJECT_DIR$/.idea/manticore-labs-nest.iml" filepath="$PROJECT_DIR$/.idea/manticore-labs-nest.iml" />
|
|
6
|
-
</modules>
|
|
7
|
-
</component>
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
|
2
|
+
<project version="4">
|
|
3
|
+
<component name="ProjectModuleManager">
|
|
4
|
+
<modules>
|
|
5
|
+
<module fileurl="file://$PROJECT_DIR$/.idea/manticore-labs-nest.iml" filepath="$PROJECT_DIR$/.idea/manticore-labs-nest.iml" />
|
|
6
|
+
</modules>
|
|
7
|
+
</component>
|
|
8
8
|
</project>
|
package/.idea/vcs.xml
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
<?xml version="1.0" encoding="UTF-8"?>
|
|
2
|
-
<project version="4">
|
|
3
|
-
<component name="VcsDirectoryMappings">
|
|
4
|
-
<mapping directory="$PROJECT_DIR$" vcs="Git" />
|
|
5
|
-
</component>
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
|
2
|
+
<project version="4">
|
|
3
|
+
<component name="VcsDirectoryMappings">
|
|
4
|
+
<mapping directory="$PROJECT_DIR$" vcs="Git" />
|
|
5
|
+
</component>
|
|
6
6
|
</project>
|
package/.idea/workspace.xml
CHANGED
|
@@ -1,114 +1,20 @@
|
|
|
1
1
|
<?xml version="1.0" encoding="UTF-8"?>
|
|
2
2
|
<project version="4">
|
|
3
3
|
<component name="ChangeListManager">
|
|
4
|
-
<list default="true" id="
|
|
5
|
-
<change afterPath="$PROJECT_DIR$/src/lib/funciones-util/respuestas-servidor.ts" afterDir="false" />
|
|
6
|
-
<change beforePath="$PROJECT_DIR$/package-lock.json" beforeDir="false" />
|
|
7
|
-
<change beforePath="$PROJECT_DIR$/package.json" beforeDir="false" afterPath="$PROJECT_DIR$/package.json" afterDir="false" />
|
|
8
|
-
<change beforePath="$PROJECT_DIR$/src/index.ts" beforeDir="false" afterPath="$PROJECT_DIR$/src/index.ts" afterDir="false" />
|
|
9
|
-
</list>
|
|
4
|
+
<list default="true" id="163a23fd-2794-48c9-9775-1c755af3d43a" name="Default" comment="" />
|
|
10
5
|
<ignored path="$PROJECT_DIR$/.tmp/" />
|
|
11
6
|
<ignored path="$PROJECT_DIR$/temp/" />
|
|
12
7
|
<ignored path="$PROJECT_DIR$/tmp/" />
|
|
13
8
|
<option name="EXCLUDED_CONVERTED_TO_IGNORED" value="true" />
|
|
9
|
+
<option name="TRACKING_ENABLED" value="true" />
|
|
14
10
|
<option name="SHOW_DIALOG" value="false" />
|
|
15
11
|
<option name="HIGHLIGHT_CONFLICTS" value="true" />
|
|
16
12
|
<option name="HIGHLIGHT_NON_ACTIVE_CHANGELIST" value="false" />
|
|
17
13
|
<option name="LAST_RESOLUTION" value="IGNORE" />
|
|
18
14
|
</component>
|
|
19
|
-
<component name="FUSProjectUsageTrigger">
|
|
20
|
-
<session id="1541305959">
|
|
21
|
-
<usages-collector id="statistics.lifecycle.project">
|
|
22
|
-
<counts>
|
|
23
|
-
<entry key="project.open.time.0" value="1" />
|
|
24
|
-
<entry key="project.opened" value="1" />
|
|
25
|
-
</counts>
|
|
26
|
-
</usages-collector>
|
|
27
|
-
<usages-collector id="statistics.file.extensions.open">
|
|
28
|
-
<counts>
|
|
29
|
-
<entry key="json" value="1" />
|
|
30
|
-
<entry key="ts" value="3" />
|
|
31
|
-
</counts>
|
|
32
|
-
</usages-collector>
|
|
33
|
-
<usages-collector id="statistics.file.types.open">
|
|
34
|
-
<counts>
|
|
35
|
-
<entry key="JSON" value="1" />
|
|
36
|
-
<entry key="TypeScript" value="3" />
|
|
37
|
-
</counts>
|
|
38
|
-
</usages-collector>
|
|
39
|
-
<usages-collector id="statistics.js.language.service.starts">
|
|
40
|
-
<counts>
|
|
41
|
-
<entry key="TypeScriptServerServiceImpl" value="1" />
|
|
42
|
-
</counts>
|
|
43
|
-
</usages-collector>
|
|
44
|
-
<usages-collector id="statistics.file.extensions.edit">
|
|
45
|
-
<counts>
|
|
46
|
-
<entry key="json" value="1" />
|
|
47
|
-
<entry key="ts" value="20" />
|
|
48
|
-
</counts>
|
|
49
|
-
</usages-collector>
|
|
50
|
-
<usages-collector id="statistics.file.types.edit">
|
|
51
|
-
<counts>
|
|
52
|
-
<entry key="JSON" value="1" />
|
|
53
|
-
<entry key="TypeScript" value="20" />
|
|
54
|
-
</counts>
|
|
55
|
-
</usages-collector>
|
|
56
|
-
</session>
|
|
57
|
-
</component>
|
|
58
|
-
<component name="FileEditorManager">
|
|
59
|
-
<leaf>
|
|
60
|
-
<file pinned="false" current-in-tab="false">
|
|
61
|
-
<entry file="file://$PROJECT_DIR$/src/lib/funciones-util/respuestas-servidor.ts">
|
|
62
|
-
<provider selected="true" editor-type-id="text-editor">
|
|
63
|
-
<state relative-caret-position="52">
|
|
64
|
-
<caret line="2" column="31" selection-start-line="2" selection-start-column="13" selection-end-line="2" selection-end-column="31" />
|
|
65
|
-
</state>
|
|
66
|
-
</provider>
|
|
67
|
-
</entry>
|
|
68
|
-
</file>
|
|
69
|
-
<file pinned="false" current-in-tab="true">
|
|
70
|
-
<entry file="file://$PROJECT_DIR$/src/index.ts">
|
|
71
|
-
<provider selected="true" editor-type-id="text-editor">
|
|
72
|
-
<state relative-caret-position="26">
|
|
73
|
-
<caret line="1" column="55" selection-start-line="1" selection-start-column="55" selection-end-line="1" selection-end-column="55" />
|
|
74
|
-
</state>
|
|
75
|
-
</provider>
|
|
76
|
-
</entry>
|
|
77
|
-
</file>
|
|
78
|
-
<file pinned="false" current-in-tab="false">
|
|
79
|
-
<entry file="file://$PROJECT_DIR$/package.json">
|
|
80
|
-
<provider selected="true" editor-type-id="text-editor">
|
|
81
|
-
<state relative-caret-position="52">
|
|
82
|
-
<caret line="2" column="20" selection-start-line="2" selection-start-column="20" selection-end-line="2" selection-end-column="20" />
|
|
83
|
-
</state>
|
|
84
|
-
</provider>
|
|
85
|
-
</entry>
|
|
86
|
-
</file>
|
|
87
|
-
<file pinned="false" current-in-tab="false">
|
|
88
|
-
<entry file="file://$PROJECT_DIR$/src/lib/funciones-util/eliminar-uno.ts">
|
|
89
|
-
<provider selected="true" editor-type-id="text-editor">
|
|
90
|
-
<state>
|
|
91
|
-
<folding>
|
|
92
|
-
<element signature="e#0#43#0" expanded="true" />
|
|
93
|
-
</folding>
|
|
94
|
-
</state>
|
|
95
|
-
</provider>
|
|
96
|
-
</entry>
|
|
97
|
-
</file>
|
|
98
|
-
</leaf>
|
|
99
|
-
</component>
|
|
100
15
|
<component name="Git.Settings">
|
|
101
16
|
<option name="RECENT_GIT_ROOT_PATH" value="$PROJECT_DIR$" />
|
|
102
17
|
</component>
|
|
103
|
-
<component name="IdeDocumentHistory">
|
|
104
|
-
<option name="CHANGED_PATHS">
|
|
105
|
-
<list>
|
|
106
|
-
<option value="$PROJECT_DIR$/src/lib/funciones-util/respuestas-servidor.ts" />
|
|
107
|
-
<option value="$PROJECT_DIR$/src/index.ts" />
|
|
108
|
-
<option value="$PROJECT_DIR$/package.json" />
|
|
109
|
-
</list>
|
|
110
|
-
</option>
|
|
111
|
-
</component>
|
|
112
18
|
<component name="JsBuildToolGruntFileManager" detection-done="true" sorting="DEFINITION_ORDER" />
|
|
113
19
|
<component name="JsBuildToolPackageJson" detection-done="true" sorting="DEFINITION_ORDER">
|
|
114
20
|
<package-json value="$PROJECT_DIR$/package.json" />
|
|
@@ -120,44 +26,26 @@
|
|
|
120
26
|
<component name="NodeModulesDirectoryManager">
|
|
121
27
|
<handled-path value="$PROJECT_DIR$/node_modules" />
|
|
122
28
|
</component>
|
|
123
|
-
<component name="
|
|
124
|
-
<
|
|
125
|
-
|
|
126
|
-
</packageJsonPaths>
|
|
127
|
-
</component>
|
|
128
|
-
<component name="ProjectFrameBounds" extendedState="6">
|
|
129
|
-
<option name="x" value="85" />
|
|
130
|
-
<option name="y" value="25" />
|
|
131
|
-
<option name="width" value="1750" />
|
|
132
|
-
<option name="height" value="970" />
|
|
133
|
-
</component>
|
|
134
|
-
<component name="ProjectInspectionProfilesVisibleTreeState">
|
|
135
|
-
<entry key="Project Default">
|
|
136
|
-
<profile-state>
|
|
137
|
-
<expanded-state>
|
|
138
|
-
<State>
|
|
139
|
-
<id />
|
|
140
|
-
</State>
|
|
141
|
-
<State>
|
|
142
|
-
<id>Data flow issuesJavaScript</id>
|
|
143
|
-
</State>
|
|
144
|
-
<State>
|
|
145
|
-
<id>JavaScript</id>
|
|
146
|
-
</State>
|
|
147
|
-
</expanded-state>
|
|
148
|
-
<selected-state>
|
|
149
|
-
<State>
|
|
150
|
-
<id>AngularJS</id>
|
|
151
|
-
</State>
|
|
152
|
-
</selected-state>
|
|
153
|
-
</profile-state>
|
|
154
|
-
</entry>
|
|
29
|
+
<component name="ProjectFrameBounds" fullScreen="true">
|
|
30
|
+
<option name="width" value="1680" />
|
|
31
|
+
<option name="height" value="1050" />
|
|
155
32
|
</component>
|
|
156
33
|
<component name="ProjectView">
|
|
157
|
-
<navigator proportions="" version="1">
|
|
34
|
+
<navigator currentView="ProjectPane" proportions="" version="1">
|
|
35
|
+
<flattenPackages />
|
|
36
|
+
<showMembers />
|
|
37
|
+
<showModules />
|
|
38
|
+
<showLibraryContents />
|
|
39
|
+
<hideEmptyPackages />
|
|
40
|
+
<abbreviatePackageNames />
|
|
41
|
+
<autoscrollToSource />
|
|
42
|
+
<autoscrollFromSource />
|
|
43
|
+
<sortByType />
|
|
44
|
+
<manualOrder />
|
|
158
45
|
<foldersAlwaysOnTop value="true" />
|
|
159
46
|
</navigator>
|
|
160
47
|
<panes>
|
|
48
|
+
<pane id="Scratches" />
|
|
161
49
|
<pane id="Scope" />
|
|
162
50
|
<pane id="ProjectPane">
|
|
163
51
|
<subPane>
|
|
@@ -166,17 +54,6 @@
|
|
|
166
54
|
<item name="manticore-labs-nest" type="b2602c69:ProjectViewProjectNode" />
|
|
167
55
|
<item name="manticore-labs-nest" type="462c0819:PsiDirectoryNode" />
|
|
168
56
|
</path>
|
|
169
|
-
<path>
|
|
170
|
-
<item name="manticore-labs-nest" type="b2602c69:ProjectViewProjectNode" />
|
|
171
|
-
<item name="manticore-labs-nest" type="462c0819:PsiDirectoryNode" />
|
|
172
|
-
<item name="src" type="462c0819:PsiDirectoryNode" />
|
|
173
|
-
</path>
|
|
174
|
-
<path>
|
|
175
|
-
<item name="manticore-labs-nest" type="b2602c69:ProjectViewProjectNode" />
|
|
176
|
-
<item name="manticore-labs-nest" type="462c0819:PsiDirectoryNode" />
|
|
177
|
-
<item name="src" type="462c0819:PsiDirectoryNode" />
|
|
178
|
-
<item name="lib" type="462c0819:PsiDirectoryNode" />
|
|
179
|
-
</path>
|
|
180
57
|
</expand>
|
|
181
58
|
<select />
|
|
182
59
|
</subPane>
|
|
@@ -184,17 +61,14 @@
|
|
|
184
61
|
</panes>
|
|
185
62
|
</component>
|
|
186
63
|
<component name="PropertiesComponent">
|
|
64
|
+
<property name="settings.editor.selected.configurable" value="project.scopes" />
|
|
65
|
+
<property name="settings.editor.splitter.proportion" value="0.2" />
|
|
66
|
+
<property name="nodejs_interpreter_path.stuck_in_default_project" value="C:/Program Files/nodejs/node" />
|
|
187
67
|
<property name="WebServerToolWindowFactoryState" value="false" />
|
|
188
68
|
<property name="last_opened_file_path" value="$PROJECT_DIR$" />
|
|
189
|
-
<property name="node.js.detected.package.tslint" value="true" />
|
|
190
69
|
<property name="node.js.path.for.package.tslint" value="project" />
|
|
191
|
-
<property name="node.js.
|
|
192
|
-
<property name="
|
|
193
|
-
<property name="nodejs_npm_path_reset_for_default_project" value="true" />
|
|
194
|
-
<property name="nodejs_package_manager_path" value="npm" />
|
|
195
|
-
<property name="prettierjs.PrettierConfiguration.Package" value="C:\Users\Cristian Lara\Desktop\manticore-labs-nest\node_modules\prettier" />
|
|
196
|
-
<property name="settings.editor.selected.configurable" value="Errors" />
|
|
197
|
-
<property name="ts.external.directory.path" value="C:\Program Files\JetBrains\WebStorm 2018.2.5\plugins\JavaScriptLanguage\jsLanguageServicesImpl\external" />
|
|
70
|
+
<property name="node.js.detected.package.tslint" value="true" />
|
|
71
|
+
<property name="node.js.selected.package.tslint" value="$PROJECT_DIR$/node_modules/tslint" />
|
|
198
72
|
</component>
|
|
199
73
|
<component name="RunDashboard">
|
|
200
74
|
<option name="ruleStates">
|
|
@@ -208,46 +82,48 @@
|
|
|
208
82
|
</list>
|
|
209
83
|
</option>
|
|
210
84
|
</component>
|
|
85
|
+
<component name="ShelveChangesManager" show_recycled="false">
|
|
86
|
+
<option name="remove_strategy" value="false" />
|
|
87
|
+
</component>
|
|
211
88
|
<component name="SvnConfiguration">
|
|
212
89
|
<configuration />
|
|
213
90
|
</component>
|
|
214
91
|
<component name="TaskManager">
|
|
215
92
|
<task active="true" id="Default" summary="Default task">
|
|
216
|
-
<changelist id="
|
|
217
|
-
<created>
|
|
93
|
+
<changelist id="163a23fd-2794-48c9-9775-1c755af3d43a" name="Default" comment="" />
|
|
94
|
+
<created>1542479731058</created>
|
|
218
95
|
<option name="number" value="Default" />
|
|
219
96
|
<option name="presentableId" value="Default" />
|
|
220
|
-
<updated>
|
|
221
|
-
<workItem from="
|
|
97
|
+
<updated>1542479731058</updated>
|
|
98
|
+
<workItem from="1542479733142" duration="229000" />
|
|
222
99
|
</task>
|
|
223
100
|
<servers />
|
|
224
101
|
</component>
|
|
225
102
|
<component name="TimeTrackingManager">
|
|
226
|
-
<option name="totallyTimeSpent" value="
|
|
103
|
+
<option name="totallyTimeSpent" value="229000" />
|
|
227
104
|
</component>
|
|
228
105
|
<component name="ToolWindowManager">
|
|
229
|
-
<frame x="
|
|
230
|
-
<editor active="true" />
|
|
106
|
+
<frame x="0" y="0" width="1680" height="1050" extended-state="0" />
|
|
231
107
|
<layout>
|
|
232
|
-
<window_info id="
|
|
233
|
-
<window_info id="
|
|
234
|
-
<window_info
|
|
235
|
-
<window_info id="
|
|
236
|
-
<window_info anchor="bottom"
|
|
237
|
-
<window_info anchor="bottom"
|
|
238
|
-
<window_info anchor="
|
|
239
|
-
<window_info active="
|
|
240
|
-
<window_info anchor="bottom"
|
|
241
|
-
<window_info anchor="
|
|
242
|
-
<window_info anchor="bottom"
|
|
243
|
-
<window_info anchor="
|
|
244
|
-
<window_info anchor="bottom"
|
|
245
|
-
<window_info anchor="
|
|
246
|
-
<window_info anchor="bottom"
|
|
247
|
-
<window_info anchor="bottom"
|
|
248
|
-
<window_info anchor="
|
|
249
|
-
<window_info anchor="right"
|
|
250
|
-
<window_info anchor="
|
|
108
|
+
<window_info id="Project" active="false" anchor="left" auto_hide="false" internal_type="DOCKED" type="DOCKED" visible="true" show_stripe_button="true" weight="0.25" sideWeight="0.5" order="0" side_tool="false" content_ui="combo" />
|
|
109
|
+
<window_info id="TODO" active="false" anchor="bottom" auto_hide="false" internal_type="DOCKED" type="DOCKED" visible="false" show_stripe_button="true" weight="0.33" sideWeight="0.5" order="6" side_tool="false" content_ui="tabs" />
|
|
110
|
+
<window_info id="Docker" active="false" anchor="bottom" auto_hide="false" internal_type="DOCKED" type="DOCKED" visible="false" show_stripe_button="false" weight="0.33" sideWeight="0.5" order="-1" side_tool="false" content_ui="tabs" />
|
|
111
|
+
<window_info id="Event Log" active="false" anchor="bottom" auto_hide="false" internal_type="DOCKED" type="DOCKED" visible="false" show_stripe_button="true" weight="0.33" sideWeight="0.5" order="-1" side_tool="true" content_ui="tabs" />
|
|
112
|
+
<window_info id="NativeScript" active="false" anchor="bottom" auto_hide="false" internal_type="DOCKED" type="DOCKED" visible="false" show_stripe_button="true" weight="0.33" sideWeight="0.5" order="-1" side_tool="false" content_ui="tabs" />
|
|
113
|
+
<window_info id="Version Control" active="false" anchor="bottom" auto_hide="false" internal_type="DOCKED" type="DOCKED" visible="false" show_stripe_button="true" weight="0.33" sideWeight="0.5" order="-1" side_tool="false" content_ui="tabs" />
|
|
114
|
+
<window_info id="npm" active="false" anchor="left" auto_hide="false" internal_type="DOCKED" type="DOCKED" visible="false" show_stripe_button="true" weight="0.33" sideWeight="0.5" order="-1" side_tool="true" content_ui="tabs" />
|
|
115
|
+
<window_info id="Structure" active="false" anchor="left" auto_hide="false" internal_type="DOCKED" type="DOCKED" visible="false" show_stripe_button="true" weight="0.25" sideWeight="0.5" order="1" side_tool="false" content_ui="tabs" />
|
|
116
|
+
<window_info id="Terminal" active="true" anchor="bottom" auto_hide="false" internal_type="DOCKED" type="DOCKED" visible="true" show_stripe_button="true" weight="0.68" sideWeight="0.5" order="-1" side_tool="false" content_ui="tabs" />
|
|
117
|
+
<window_info id="Favorites" active="false" anchor="left" auto_hide="false" internal_type="DOCKED" type="DOCKED" visible="false" show_stripe_button="true" weight="0.33" sideWeight="0.5" order="-1" side_tool="true" content_ui="tabs" />
|
|
118
|
+
<window_info id="Cvs" active="false" anchor="bottom" auto_hide="false" internal_type="DOCKED" type="DOCKED" visible="false" show_stripe_button="true" weight="0.25" sideWeight="0.5" order="4" side_tool="false" content_ui="tabs" />
|
|
119
|
+
<window_info id="Hierarchy" active="false" anchor="right" auto_hide="false" internal_type="DOCKED" type="DOCKED" visible="false" show_stripe_button="true" weight="0.25" sideWeight="0.5" order="2" side_tool="false" content_ui="combo" />
|
|
120
|
+
<window_info id="Message" active="false" anchor="bottom" auto_hide="false" internal_type="DOCKED" type="DOCKED" visible="false" show_stripe_button="true" weight="0.33" sideWeight="0.5" order="0" side_tool="false" content_ui="tabs" />
|
|
121
|
+
<window_info id="Commander" active="false" anchor="right" auto_hide="false" internal_type="DOCKED" type="DOCKED" visible="false" show_stripe_button="true" weight="0.4" sideWeight="0.5" order="0" side_tool="false" content_ui="tabs" />
|
|
122
|
+
<window_info id="Find" active="false" anchor="bottom" auto_hide="false" internal_type="DOCKED" type="DOCKED" visible="false" show_stripe_button="true" weight="0.33" sideWeight="0.5" order="1" side_tool="false" content_ui="tabs" />
|
|
123
|
+
<window_info id="Inspection" active="false" anchor="bottom" auto_hide="false" internal_type="DOCKED" type="DOCKED" visible="false" show_stripe_button="true" weight="0.4" sideWeight="0.5" order="5" side_tool="false" content_ui="tabs" />
|
|
124
|
+
<window_info id="Run" active="false" anchor="bottom" auto_hide="false" internal_type="DOCKED" type="DOCKED" visible="false" show_stripe_button="true" weight="0.33" sideWeight="0.5" order="2" side_tool="false" content_ui="tabs" />
|
|
125
|
+
<window_info id="Ant Build" active="false" anchor="right" auto_hide="false" internal_type="DOCKED" type="DOCKED" visible="false" show_stripe_button="true" weight="0.25" sideWeight="0.5" order="1" side_tool="false" content_ui="tabs" />
|
|
126
|
+
<window_info id="Debug" active="false" anchor="bottom" auto_hide="false" internal_type="DOCKED" type="DOCKED" visible="false" show_stripe_button="true" weight="0.4" sideWeight="0.5" order="3" side_tool="false" content_ui="tabs" />
|
|
251
127
|
</layout>
|
|
252
128
|
</component>
|
|
253
129
|
<component name="TypeScriptGeneratedFilesManager">
|
|
@@ -256,37 +132,9 @@
|
|
|
256
132
|
<component name="VcsContentAnnotationSettings">
|
|
257
133
|
<option name="myLimit" value="2678400000" />
|
|
258
134
|
</component>
|
|
259
|
-
<component name="
|
|
260
|
-
<
|
|
261
|
-
|
|
262
|
-
<state>
|
|
263
|
-
<folding>
|
|
264
|
-
<element signature="e#0#43#0" expanded="true" />
|
|
265
|
-
</folding>
|
|
266
|
-
</state>
|
|
267
|
-
</provider>
|
|
268
|
-
</entry>
|
|
269
|
-
<entry file="file://$PROJECT_DIR$/src/lib/funciones-util/respuestas-servidor.ts">
|
|
270
|
-
<provider selected="true" editor-type-id="text-editor">
|
|
271
|
-
<state relative-caret-position="52">
|
|
272
|
-
<caret line="2" column="31" selection-start-line="2" selection-start-column="13" selection-end-line="2" selection-end-column="31" />
|
|
273
|
-
</state>
|
|
274
|
-
</provider>
|
|
275
|
-
</entry>
|
|
276
|
-
<entry file="file://$PROJECT_DIR$/package.json">
|
|
277
|
-
<provider selected="true" editor-type-id="text-editor">
|
|
278
|
-
<state relative-caret-position="52">
|
|
279
|
-
<caret line="2" column="20" selection-start-line="2" selection-start-column="20" selection-end-line="2" selection-end-column="20" />
|
|
280
|
-
</state>
|
|
281
|
-
</provider>
|
|
282
|
-
</entry>
|
|
283
|
-
<entry file="file://$PROJECT_DIR$/src/index.ts">
|
|
284
|
-
<provider selected="true" editor-type-id="text-editor">
|
|
285
|
-
<state relative-caret-position="26">
|
|
286
|
-
<caret line="1" column="55" selection-start-line="1" selection-start-column="55" selection-end-line="1" selection-end-column="55" />
|
|
287
|
-
</state>
|
|
288
|
-
</provider>
|
|
289
|
-
</entry>
|
|
135
|
+
<component name="XDebuggerManager">
|
|
136
|
+
<breakpoint-manager />
|
|
137
|
+
<watches-manager />
|
|
290
138
|
</component>
|
|
291
139
|
<component name="masterDetails">
|
|
292
140
|
<states>
|
package/LICENSE
CHANGED
|
@@ -1,9 +1,9 @@
|
|
|
1
|
-
Copyright (c) 2018 Adrian Eguez
|
|
2
|
-
|
|
3
|
-
Manticore Labs hace referencia a Vicente Adrian Eguez Sarzosa como su unico dueño.
|
|
4
|
-
Todos los derechos de licencia estan reservados con el Autor: Vicente Adrian Eguez Sarzosa con cedula 1718137159 de Ecuador.
|
|
5
|
-
No se puede hacer uso de esta librearia parcial o totalmente sin una licencia o permiso de Vicente drian Eguez Sarzosa.
|
|
6
|
-
Cualquier fallo en cumplir con la licencia tendra las consecuencias penales y legales del pais. El codigo esta registrado en los
|
|
7
|
-
organismos encargados de propiedad intelectual pertinentes.
|
|
8
|
-
|
|
1
|
+
Copyright (c) 2018 Adrian Eguez
|
|
2
|
+
|
|
3
|
+
Manticore Labs hace referencia a Vicente Adrian Eguez Sarzosa como su unico dueño.
|
|
4
|
+
Todos los derechos de licencia estan reservados con el Autor: Vicente Adrian Eguez Sarzosa con cedula 1718137159 de Ecuador.
|
|
5
|
+
No se puede hacer uso de esta librearia parcial o totalmente sin una licencia o permiso de Vicente drian Eguez Sarzosa.
|
|
6
|
+
Cualquier fallo en cumplir con la licencia tendra las consecuencias penales y legales del pais. El codigo esta registrado en los
|
|
7
|
+
organismos encargados de propiedad intelectual pertinentes.
|
|
8
|
+
|
|
9
9
|
Manticore Labs.
|