qcobjects-cli 2.4.66 → 2.5.104-beta

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.
Files changed (205) hide show
  1. package/.github/workflows/npmpublish-beta.yml +4 -4
  2. package/.github/workflows/npmpublish-lts.yml +4 -4
  3. package/.github/workflows/npmpublish-main.yml +4 -4
  4. package/VERSION +1 -1
  5. package/build-esbuild.js +70 -0
  6. package/eslint.config.mjs +88 -0
  7. package/package.json +118 -56
  8. package/public/browser/backend/com.qcobjects.backend.microservice.static.js +318 -0
  9. package/public/browser/backend/com.qcobjects.backend.microservice.static.js.map +7 -0
  10. package/public/browser/backend/org.qcobjects.backend.php.js +290 -0
  11. package/public/browser/backend/org.qcobjects.backend.php.js.map +7 -0
  12. package/public/browser/com.qcobjects.cli.commands.jira.client_services.js +83 -0
  13. package/public/browser/com.qcobjects.cli.commands.jira.client_services.js.map +7 -0
  14. package/public/browser/com.qcobjects.cli.commands.jira.js +162 -0
  15. package/public/browser/com.qcobjects.cli.commands.jira.js.map +7 -0
  16. package/public/browser/com.qcobjects.cli.commands.js +387 -0
  17. package/public/browser/com.qcobjects.cli.commands.js.map +7 -0
  18. package/public/browser/com.qcobjects.cli.commands.version.js +247 -0
  19. package/public/browser/com.qcobjects.cli.commands.version.js.map +7 -0
  20. package/public/browser/index.js +4126 -0
  21. package/public/browser/index.js.map +7 -0
  22. package/public/browser/org.qcobjects.common.pipelog.js +56 -0
  23. package/public/browser/org.qcobjects.common.pipelog.js.map +7 -0
  24. package/public/browser/org.qcobjects.enterprise.commands.js +160 -0
  25. package/public/browser/org.qcobjects.enterprise.commands.js.map +7 -0
  26. package/public/browser/org.quickcorp.qcobjects.api.client_services.js +81 -0
  27. package/public/browser/org.quickcorp.qcobjects.api.client_services.js.map +7 -0
  28. package/public/browser/org.quickcorp.qcobjects.cli.js +4086 -0
  29. package/public/browser/org.quickcorp.qcobjects.cli.js.map +7 -0
  30. package/public/browser/org.quickcorp.qcobjects.collab.server.js +422 -0
  31. package/public/browser/org.quickcorp.qcobjects.collab.server.js.map +7 -0
  32. package/public/browser/org.quickcorp.qcobjects.defaultsettings.js +397 -0
  33. package/public/browser/org.quickcorp.qcobjects.defaultsettings.js.map +7 -0
  34. package/public/browser/org.quickcorp.qcobjects.main.file.js +248 -0
  35. package/public/browser/org.quickcorp.qcobjects.main.file.js.map +7 -0
  36. package/public/browser/org.quickcorp.qcobjects.main.http.gae.server.js +538 -0
  37. package/public/browser/org.quickcorp.qcobjects.main.http.gae.server.js.map +7 -0
  38. package/public/browser/org.quickcorp.qcobjects.main.http.server.js +600 -0
  39. package/public/browser/org.quickcorp.qcobjects.main.http.server.js.map +7 -0
  40. package/public/browser/org.quickcorp.qcobjects.main.http2.server.js +465 -0
  41. package/public/browser/org.quickcorp.qcobjects.main.http2.server.js.map +7 -0
  42. package/public/browser/qcobjects-cli.js +4118 -0
  43. package/public/browser/qcobjects-cli.js.map +7 -0
  44. package/public/browser/qcobjects-collab.js +41 -0
  45. package/public/browser/qcobjects-collab.js.map +7 -0
  46. package/public/browser/qcobjects-createcert.js +67 -0
  47. package/public/browser/qcobjects-createcert.js.map +7 -0
  48. package/public/browser/qcobjects-gae-http-server.js +41 -0
  49. package/public/browser/qcobjects-gae-http-server.js.map +7 -0
  50. package/public/browser/qcobjects-http-server.js +41 -0
  51. package/public/browser/qcobjects-http-server.js.map +7 -0
  52. package/public/browser/qcobjects-http2-server.js +44 -0
  53. package/public/browser/qcobjects-http2-server.js.map +7 -0
  54. package/public/browser/qcobjects-shell.js +50 -0
  55. package/public/browser/qcobjects-shell.js.map +7 -0
  56. package/public/browser/types/global/index.d.js +15 -0
  57. package/public/browser/types/global/index.d.js.map +7 -0
  58. package/public/cjs/backend/com.qcobjects.backend.microservice.static.cjs +305 -0
  59. package/public/cjs/backend/com.qcobjects.backend.microservice.static.cjs.map +7 -0
  60. package/public/cjs/backend/org.qcobjects.backend.php.cjs +273 -0
  61. package/public/cjs/backend/org.qcobjects.backend.php.cjs.map +7 -0
  62. package/public/cjs/com.qcobjects.cli.commands.cjs +384 -0
  63. package/public/cjs/com.qcobjects.cli.commands.cjs.map +7 -0
  64. package/public/cjs/com.qcobjects.cli.commands.jira.cjs +158 -0
  65. package/public/cjs/com.qcobjects.cli.commands.jira.cjs.map +7 -0
  66. package/public/cjs/com.qcobjects.cli.commands.jira.client_services.cjs +79 -0
  67. package/public/cjs/com.qcobjects.cli.commands.jira.client_services.cjs.map +7 -0
  68. package/public/cjs/com.qcobjects.cli.commands.version.cjs +243 -0
  69. package/public/cjs/com.qcobjects.cli.commands.version.cjs.map +7 -0
  70. package/public/cjs/index.cjs +4118 -0
  71. package/public/cjs/index.cjs.map +7 -0
  72. package/public/cjs/org.qcobjects.common.pipelog.cjs +52 -0
  73. package/public/cjs/org.qcobjects.common.pipelog.cjs.map +7 -0
  74. package/public/cjs/org.qcobjects.enterprise.commands.cjs +156 -0
  75. package/public/cjs/org.qcobjects.enterprise.commands.cjs.map +7 -0
  76. package/public/cjs/org.quickcorp.qcobjects.api.client_services.cjs +77 -0
  77. package/public/cjs/org.quickcorp.qcobjects.api.client_services.cjs.map +7 -0
  78. package/public/cjs/org.quickcorp.qcobjects.cli.cjs +4086 -0
  79. package/public/cjs/org.quickcorp.qcobjects.cli.cjs.map +7 -0
  80. package/public/cjs/org.quickcorp.qcobjects.collab.server.cjs +405 -0
  81. package/public/cjs/org.quickcorp.qcobjects.collab.server.cjs.map +7 -0
  82. package/public/cjs/org.quickcorp.qcobjects.defaultsettings.cjs +394 -0
  83. package/public/cjs/org.quickcorp.qcobjects.defaultsettings.cjs.map +7 -0
  84. package/public/cjs/org.quickcorp.qcobjects.main.file.cjs +235 -0
  85. package/public/cjs/org.quickcorp.qcobjects.main.file.cjs.map +7 -0
  86. package/public/cjs/org.quickcorp.qcobjects.main.http.gae.server.cjs +525 -0
  87. package/public/cjs/org.quickcorp.qcobjects.main.http.gae.server.cjs.map +7 -0
  88. package/public/cjs/org.quickcorp.qcobjects.main.http.server.cjs +587 -0
  89. package/public/cjs/org.quickcorp.qcobjects.main.http.server.cjs.map +7 -0
  90. package/public/cjs/org.quickcorp.qcobjects.main.http2.server.cjs +452 -0
  91. package/public/cjs/org.quickcorp.qcobjects.main.http2.server.cjs.map +7 -0
  92. package/public/cjs/qcobjects-cli.cjs +4115 -0
  93. package/public/cjs/qcobjects-cli.cjs.map +7 -0
  94. package/public/cjs/qcobjects-collab.cjs +24 -0
  95. package/public/cjs/qcobjects-collab.cjs.map +7 -0
  96. package/public/cjs/qcobjects-createcert.cjs +50 -0
  97. package/public/cjs/qcobjects-createcert.cjs.map +7 -0
  98. package/public/cjs/qcobjects-gae-http-server.cjs +24 -0
  99. package/public/cjs/qcobjects-gae-http-server.cjs.map +7 -0
  100. package/public/cjs/qcobjects-http-server.cjs +24 -0
  101. package/public/cjs/qcobjects-http-server.cjs.map +7 -0
  102. package/public/cjs/qcobjects-http2-server.cjs +27 -0
  103. package/public/cjs/qcobjects-http2-server.cjs.map +7 -0
  104. package/public/cjs/qcobjects-shell.cjs +34 -0
  105. package/public/cjs/qcobjects-shell.cjs.map +7 -0
  106. package/public/cjs/types/global/index.d.cjs +2 -0
  107. package/public/cjs/types/global/index.d.cjs.map +7 -0
  108. package/public/esm/backend/com.qcobjects.backend.microservice.static.mjs +315 -0
  109. package/public/esm/backend/com.qcobjects.backend.microservice.static.mjs.map +7 -0
  110. package/public/esm/backend/org.qcobjects.backend.php.mjs +287 -0
  111. package/public/esm/backend/org.qcobjects.backend.php.mjs.map +7 -0
  112. package/public/esm/com.qcobjects.cli.commands.jira.client_services.mjs +62 -0
  113. package/public/esm/com.qcobjects.cli.commands.jira.client_services.mjs.map +7 -0
  114. package/public/esm/com.qcobjects.cli.commands.jira.mjs +139 -0
  115. package/public/esm/com.qcobjects.cli.commands.jira.mjs.map +7 -0
  116. package/public/esm/com.qcobjects.cli.commands.mjs +368 -0
  117. package/public/esm/com.qcobjects.cli.commands.mjs.map +7 -0
  118. package/public/esm/com.qcobjects.cli.commands.version.mjs +226 -0
  119. package/public/esm/com.qcobjects.cli.commands.version.mjs.map +7 -0
  120. package/public/esm/index.mjs +4108 -0
  121. package/public/esm/index.mjs.map +7 -0
  122. package/public/esm/org.qcobjects.common.pipelog.mjs +35 -0
  123. package/public/esm/org.qcobjects.common.pipelog.mjs.map +7 -0
  124. package/public/esm/org.qcobjects.enterprise.commands.mjs +139 -0
  125. package/public/esm/org.qcobjects.enterprise.commands.mjs.map +7 -0
  126. package/public/esm/org.quickcorp.qcobjects.api.client_services.mjs +60 -0
  127. package/public/esm/org.quickcorp.qcobjects.api.client_services.mjs.map +7 -0
  128. package/public/esm/org.quickcorp.qcobjects.cli.mjs +4068 -0
  129. package/public/esm/org.quickcorp.qcobjects.cli.mjs.map +7 -0
  130. package/public/esm/org.quickcorp.qcobjects.collab.server.mjs +419 -0
  131. package/public/esm/org.quickcorp.qcobjects.collab.server.mjs.map +7 -0
  132. package/public/esm/org.quickcorp.qcobjects.defaultsettings.mjs +376 -0
  133. package/public/esm/org.quickcorp.qcobjects.defaultsettings.mjs.map +7 -0
  134. package/public/esm/org.quickcorp.qcobjects.main.file.mjs +245 -0
  135. package/public/esm/org.quickcorp.qcobjects.main.file.mjs.map +7 -0
  136. package/public/esm/org.quickcorp.qcobjects.main.http.gae.server.mjs +535 -0
  137. package/public/esm/org.quickcorp.qcobjects.main.http.gae.server.mjs.map +7 -0
  138. package/public/esm/org.quickcorp.qcobjects.main.http.server.mjs +597 -0
  139. package/public/esm/org.quickcorp.qcobjects.main.http.server.mjs.map +7 -0
  140. package/public/esm/org.quickcorp.qcobjects.main.http2.server.mjs +462 -0
  141. package/public/esm/org.quickcorp.qcobjects.main.http2.server.mjs.map +7 -0
  142. package/public/esm/qcobjects-cli.mjs +4100 -0
  143. package/public/esm/qcobjects-cli.mjs.map +7 -0
  144. package/public/esm/qcobjects-collab.mjs +38 -0
  145. package/public/esm/qcobjects-collab.mjs.map +7 -0
  146. package/public/esm/qcobjects-createcert.mjs +64 -0
  147. package/public/esm/qcobjects-createcert.mjs.map +7 -0
  148. package/public/esm/qcobjects-gae-http-server.mjs +38 -0
  149. package/public/esm/qcobjects-gae-http-server.mjs.map +7 -0
  150. package/public/esm/qcobjects-http-server.mjs +38 -0
  151. package/public/esm/qcobjects-http-server.mjs.map +7 -0
  152. package/public/esm/qcobjects-http2-server.mjs +41 -0
  153. package/public/esm/qcobjects-http2-server.mjs.map +7 -0
  154. package/public/esm/qcobjects-shell.mjs +26 -0
  155. package/public/esm/qcobjects-shell.mjs.map +7 -0
  156. package/public/esm/types/global/index.d.mjs +12 -0
  157. package/public/esm/types/global/index.d.mjs.map +7 -0
  158. package/public/index.d.ts +165 -0
  159. package/spec/support/jasmine.json +7 -4
  160. package/src/backend/{com.qcobjects.backend.microservice.static.js → com.qcobjects.backend.microservice.static.ts} +42 -28
  161. package/src/backend/org.qcobjects.backend.php.ts +348 -0
  162. package/src/{com.qcobjects.cli.commands.jira.client_services.js → com.qcobjects.cli.commands.jira.client_services.ts} +47 -33
  163. package/src/com.qcobjects.cli.commands.jira.ts +124 -0
  164. package/src/{com.qcobjects.cli.commands.js → com.qcobjects.cli.commands.ts} +3 -9
  165. package/src/com.qcobjects.cli.commands.version.ts +285 -0
  166. package/src/{index.mjs → index.cts} +1 -1
  167. package/src/index.mts +2 -0
  168. package/src/index.ts +1 -1
  169. package/src/{org.qcobjects.common.pipelog.js → org.qcobjects.common.pipelog.ts} +21 -18
  170. package/src/org.qcobjects.enterprise.commands.ts +174 -0
  171. package/src/{org.quickcorp.qcobjects.api.client_services.js → org.quickcorp.qcobjects.api.client_services.ts} +46 -32
  172. package/src/org.quickcorp.qcobjects.cli.ts +504 -0
  173. package/src/org.quickcorp.qcobjects.collab.server.ts +420 -0
  174. package/src/org.quickcorp.qcobjects.defaultsettings.ts +424 -0
  175. package/src/org.quickcorp.qcobjects.main.file.ts +180 -0
  176. package/src/org.quickcorp.qcobjects.main.http.gae.server.ts +507 -0
  177. package/src/org.quickcorp.qcobjects.main.http.server.ts +551 -0
  178. package/src/org.quickcorp.qcobjects.main.http2.server.ts +419 -0
  179. package/src/{qcobjects-cli.js → qcobjects-cli.ts} +10 -12
  180. package/src/{qcobjects-collab.js → qcobjects-collab.ts} +4 -4
  181. package/src/{qcobjects-createcert.js → qcobjects-createcert.ts} +5 -3
  182. package/src/{qcobjects-gae-http-server.js → qcobjects-gae-http-server.ts} +4 -4
  183. package/src/{qcobjects-http-server.js → qcobjects-http-server.ts} +4 -4
  184. package/src/{qcobjects-http2-server.js → qcobjects-http2-server.ts} +6 -8
  185. package/src/{qcobjects-shell.js → qcobjects-shell.ts} +11 -14
  186. package/src/types/global/index.d.ts +2 -0
  187. package/tsconfig.d.json +45 -3
  188. package/tsconfig.jasmine.json +39 -0
  189. package/tsconfig.json +50 -7
  190. package/.eslintignore +0 -5
  191. package/.eslintrc.cjs +0 -6
  192. package/src/backend/org.qcobjects.backend.php.js +0 -334
  193. package/src/com.qcobjects.cli.commands.jira.js +0 -144
  194. package/src/com.qcobjects.cli.commands.version.js +0 -285
  195. package/src/index.cjs +0 -2
  196. package/src/index.d.ts +0 -2
  197. package/src/org.qcobjects.enterprise.commands.js +0 -194
  198. package/src/org.quickcorp.qcobjects.cli.js +0 -523
  199. package/src/org.quickcorp.qcobjects.collab.server.js +0 -415
  200. package/src/org.quickcorp.qcobjects.defaultsettings.js +0 -397
  201. package/src/org.quickcorp.qcobjects.main.file.js +0 -159
  202. package/src/org.quickcorp.qcobjects.main.http.gae.server.js +0 -495
  203. package/src/org.quickcorp.qcobjects.main.http.server.js +0 -529
  204. package/src/org.quickcorp.qcobjects.main.http2.server.js +0 -392
  205. /package/spec/{testsSpec.js → testsSpec.ts} +0 -0
@@ -0,0 +1,56 @@
1
+ "use strict";
2
+ var global = (() => {
3
+ var __defProp = Object.defineProperty;
4
+ var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
5
+ var __getOwnPropNames = Object.getOwnPropertyNames;
6
+ var __hasOwnProp = Object.prototype.hasOwnProperty;
7
+ var __name = (target, value) => __defProp(target, "name", { value, configurable: true });
8
+ var __require = /* @__PURE__ */ ((x) => typeof require !== "undefined" ? require : typeof Proxy !== "undefined" ? new Proxy(x, {
9
+ get: (a, b) => (typeof require !== "undefined" ? require : a)[b]
10
+ }) : x)(function(x) {
11
+ if (typeof require !== "undefined") return require.apply(this, arguments);
12
+ throw Error('Dynamic require of "' + x + '" is not supported');
13
+ });
14
+ var __export = (target, all) => {
15
+ for (var name in all)
16
+ __defProp(target, name, { get: all[name], enumerable: true });
17
+ };
18
+ var __copyProps = (to, from, except, desc) => {
19
+ if (from && typeof from === "object" || typeof from === "function") {
20
+ for (let key of __getOwnPropNames(from))
21
+ if (!__hasOwnProp.call(to, key) && key !== except)
22
+ __defProp(to, key, { get: () => from[key], enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable });
23
+ }
24
+ return to;
25
+ };
26
+ var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: true }), mod);
27
+
28
+ // src/org.qcobjects.common.pipelog.ts
29
+ var org_qcobjects_common_pipelog_exports = {};
30
+ __export(org_qcobjects_common_pipelog_exports, {
31
+ PipeLog: () => PipeLog
32
+ });
33
+ var { Package, InheritClass } = __require("qcobjects");
34
+ var PipeLog = class extends InheritClass {
35
+ static {
36
+ __name(this, "PipeLog");
37
+ }
38
+ pipe(o) {
39
+ var _o = [];
40
+ for (var k in o) {
41
+ if (typeof o[k] !== "undefined" && o[k] !== null && typeof o[k] !== "function") {
42
+ try {
43
+ _o.push("" + k + "=" + o[k].toString());
44
+ } catch (e) {
45
+ }
46
+ }
47
+ }
48
+ return _o.join(" ");
49
+ }
50
+ };
51
+ Package("org.qcobjects.common.pipelog", [
52
+ PipeLog
53
+ ]);
54
+ return __toCommonJS(org_qcobjects_common_pipelog_exports);
55
+ })();
56
+ //# sourceMappingURL=org.qcobjects.common.pipelog.js.map
@@ -0,0 +1,7 @@
1
+ {
2
+ "version": 3,
3
+ "sources": ["../../src/org.qcobjects.common.pipelog.ts"],
4
+ "sourcesContent": ["/**\n * QCObjects CLI 2.4.x\n * ________________\n *\n * Author: Jean Machuca <correojean@gmail.com>\n *\n * Cross Browser Javascript Framework for MVC Patterns\n * QuickCorp/QCObjects is licensed under the\n * GNU Lesser General Public License v3.0\n * [LICENSE] (https://github.com/QuickCorp/QCObjects/blob/master/LICENSE.txt)\n *\n * Permissions of this copyleft license are conditioned on making available\n * complete source code of licensed works and modifications under the same\n * license or the GNU GPLv3. Copyright and license notices must be preserved.\n * Contributors provide an express grant of patent rights. However, a larger\n * work using the licensed work through interfaces provided by the licensed\n * work may be distributed under different terms and without source code for\n * the larger work.\n *\n * Copyright (C) 2015 Jean Machuca,<correojean@gmail.com>\n *\n * Everyone is permitted to copy and distribute verbatim copies of this\n * license document, but changing it is not allowed.\n*/\n/*eslint no-unused-vars: \"off\"*/\n/*eslint no-redeclare: \"off\"*/\n/*eslint no-empty: \"off\"*/\n/*eslint strict: \"off\"*/\n/*eslint no-mixed-operators: \"off\"*/\n/*eslint no-undef: \"off\"*/\n\"use strict\";\n\nconst {Package, InheritClass} = require(\"qcobjects\");\n\nexport class PipeLog extends InheritClass {\n\n pipe(o:any) {\n var _o = [];\n for (var k in o) {\n if (typeof o[k] !== \"undefined\" &&\n o[k] !== null &&\n typeof o[k] !== \"function\") {\n try {\n _o.push(\"\" + k + \"=\" + o[k].toString());\n } catch (e) {\n // error logging, do nothing\n }\n }\n }\n return _o.join(\" \");\n }\n\n}\n\n\nPackage(\"org.qcobjects.common.pipelog\", [\n PipeLog\n]);"],
5
+ "mappings": ";;;;;;;;;;;;;;;;;;;;;;;;;;;;AAAA;AAAA;AAAA;AAAA;AAgCA,MAAM,EAAC,SAAS,aAAY,IAAI,UAAQ,WAAW;AAE5C,MAAM,UAAN,cAAsB,aAAa;AAAA,IAlC1C,OAkC0C;AAAA;AAAA;AAAA,IAEtC,KAAK,GAAO;AACR,UAAI,KAAK,CAAC;AACV,eAAS,KAAK,GAAG;AACb,YAAI,OAAO,EAAE,CAAC,MAAM,eAChB,EAAE,CAAC,MAAM,QACT,OAAO,EAAE,CAAC,MAAM,YAAY;AAC5B,cAAI;AACA,eAAG,KAAK,KAAK,IAAI,MAAM,EAAE,CAAC,EAAE,SAAS,CAAC;AAAA,UAC1C,SAAS,GAAG;AAAA,UAEZ;AAAA,QACJ;AAAA,MACJ;AACA,aAAO,GAAG,KAAK,GAAG;AAAA,IACtB;AAAA,EAEJ;AAGA,UAAQ,gCAAgC;AAAA,IACpC;AAAA,EACJ,CAAC;",
6
+ "names": []
7
+ }
@@ -0,0 +1,160 @@
1
+ "use strict";
2
+ var global = (() => {
3
+ var __defProp = Object.defineProperty;
4
+ var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
5
+ var __getOwnPropNames = Object.getOwnPropertyNames;
6
+ var __hasOwnProp = Object.prototype.hasOwnProperty;
7
+ var __name = (target, value) => __defProp(target, "name", { value, configurable: true });
8
+ var __require = /* @__PURE__ */ ((x) => typeof require !== "undefined" ? require : typeof Proxy !== "undefined" ? new Proxy(x, {
9
+ get: (a, b) => (typeof require !== "undefined" ? require : a)[b]
10
+ }) : x)(function(x) {
11
+ if (typeof require !== "undefined") return require.apply(this, arguments);
12
+ throw Error('Dynamic require of "' + x + '" is not supported');
13
+ });
14
+ var __export = (target, all) => {
15
+ for (var name in all)
16
+ __defProp(target, name, { get: all[name], enumerable: true });
17
+ };
18
+ var __copyProps = (to, from, except, desc) => {
19
+ if (from && typeof from === "object" || typeof from === "function") {
20
+ for (let key of __getOwnPropNames(from))
21
+ if (!__hasOwnProp.call(to, key) && key !== except)
22
+ __defProp(to, key, { get: () => from[key], enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable });
23
+ }
24
+ return to;
25
+ };
26
+ var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: true }), mod);
27
+
28
+ // src/org.qcobjects.enterprise.commands.ts
29
+ var org_qcobjects_enterprise_commands_exports = {};
30
+ __export(org_qcobjects_enterprise_commands_exports, {
31
+ QCObjectsEnterprise: () => QCObjectsEnterprise
32
+ });
33
+ var import_node_child_process = __require("node:child_process");
34
+ var { Package, InheritClass, CONFIG, logger } = __require("qcobjects");
35
+ var license = CONFIG.get("enterprise-license", "1234");
36
+ var email = CONFIG.get("enterprise-email", "a@b.com");
37
+ var QCObjectsEnterprise = class extends InheritClass {
38
+ static {
39
+ __name(this, "QCObjectsEnterprise");
40
+ }
41
+ install() {
42
+ const instance = this;
43
+ return instance.installEnterprise(license, email);
44
+ }
45
+ upgrade(switchCommander) {
46
+ const instance = this;
47
+ const readline = __require("readline");
48
+ const rl = readline.createInterface({
49
+ input: process.stdin,
50
+ output: process.stdout
51
+ });
52
+ var emailQuestion = /* @__PURE__ */ __name(function() {
53
+ rl.question(`
54
+ [NOTE: No information will be sent to a server until I got your consent]
55
+
56
+ Please tell me your e-Mail (\u{1F48C}):
57
+ `, (email2) => {
58
+ if (email2 !== "") {
59
+ var phoneNumberQuestion = /* @__PURE__ */ __name(function() {
60
+ rl.question("Please tell me your phone number (\u{1F919}): \n", (phonenumber) => {
61
+ if (phonenumber !== "") {
62
+ rl.question(`
63
+ Please select one of the following options (type a number):
64
+
65
+ 1.- \u{1F640} This is your first interaction \u{1F60D} with QCObjects Enterprise Edition \u{1F3E2},
66
+ you want to send your email and phone number to one of our executives to process your
67
+ inquiry, pay the license (when aplies) and receive a new fresh license number
68
+ that will free up to you the most advanced features for large companies
69
+
70
+ 2.- \u2714 Your assigned executive \u{1F9D1} has given to you a new fresh QCObjects Enterprise Edition License Number
71
+ and you want to enter it to follow up with the next steps.
72
+
73
+ 3.- \u{1F3C3} You want to quit this form, as you got here accidentally
74
+ (You should think about it. It's not a coincidence, It's destiny \u{1F600}).
75
+
76
+ Please enter the number of the option and press [enter]: `, (interaction_option) => {
77
+ logger.infoEnabled = true;
78
+ switch (interaction_option) {
79
+ case "1":
80
+ switchCommander.register(email2, phonenumber).then(function() {
81
+ logger.info(`\u{1F44F} Congrats! You have been successfully registered to the cloud! \u{1F44F}
82
+ One of our executives will be in touch with you as soon as possible to give you the next steps
83
+ to get a new License Number and start using QCObjects Entrprise Edition!
84
+
85
+ (In the meantime, you can continue using all the features of the QCObjects Community Edition)
86
+ `);
87
+ rl.close();
88
+ }).catch(() => {
89
+ rl.close();
90
+ });
91
+ break;
92
+ case "2":
93
+ rl.stdoutMuted = true;
94
+ rl._writeToOutput = /* @__PURE__ */ __name(function _writeToOutput(stringToWrite) {
95
+ if (rl.stdoutMuted)
96
+ rl.output.write("*");
97
+ else
98
+ rl.output.write(stringToWrite);
99
+ }, "_writeToOutput");
100
+ rl.question("Please tell me the number of license that your executive has given to you: \n", (license2) => {
101
+ rl.stdoutMuted = false;
102
+ instance.installEnterprise(license2, email2);
103
+ rl.close();
104
+ });
105
+ break;
106
+ default:
107
+ logger.info("\u{1F937} You can continue to use QCObjects Community Edition, see you! \u{1F64B} ");
108
+ rl.close();
109
+ break;
110
+ }
111
+ });
112
+ } else {
113
+ console.log(`You need to enter a Phone Number if you want to be contacted.
114
+ If you want to quit, press Ctrl-C.
115
+ `);
116
+ phoneNumberQuestion();
117
+ }
118
+ });
119
+ }, "phoneNumberQuestion");
120
+ phoneNumberQuestion();
121
+ } else {
122
+ console.log(`You need to enter a real e-Mail adress if you want to be contacted.
123
+ If you want to quit, press Ctrl-C.
124
+ `);
125
+ emailQuestion();
126
+ }
127
+ });
128
+ }, "emailQuestion");
129
+ emailQuestion();
130
+ }
131
+ installEnterprise(license2, email2) {
132
+ const asterisk = "*";
133
+ logger.info(`Your entered license number is ${asterisk.repeat(license2.length)} and the email that you have entered is ${email2}`);
134
+ logger.info("Now, I'm installing QCObjects Enterprise Edition in your computer...");
135
+ const cmdDownloadGit = `npm i --force -g git+https://license:${license2}@software.qcobjects.io/qcobjects-enterprise/qcobjects-enterprise.git`;
136
+ (0, import_node_child_process.execSync)(cmdDownloadGit);
137
+ const stdout = (0, import_node_child_process.execSync)("qcobjects --version");
138
+ if (stdout.lastIndexOf("Enterprise Edition") !== -1) {
139
+ logger.info("\u{1F44F} Congrats! Now you have installed QCObjects Entrprise Edition! \u{1F44F}");
140
+ logger.info(`You can test it using:
141
+ > qcobjects --version
142
+
143
+ To find more help, type the command:
144
+
145
+ > qcobjects --help
146
+
147
+ Enjoy!
148
+ `);
149
+ } else {
150
+ console.log("\u{1F926} Something went wrong \u{1F926} when trying to update your license to QCObjects Enterprise Edition");
151
+ console.log("Ask your executive to help");
152
+ }
153
+ }
154
+ };
155
+ Package("org.qcobjects.enterprise.commands", [
156
+ QCObjectsEnterprise
157
+ ]);
158
+ return __toCommonJS(org_qcobjects_enterprise_commands_exports);
159
+ })();
160
+ //# sourceMappingURL=org.qcobjects.enterprise.commands.js.map
@@ -0,0 +1,7 @@
1
+ {
2
+ "version": 3,
3
+ "sources": ["../../src/org.qcobjects.enterprise.commands.ts"],
4
+ "sourcesContent": ["/**\n * QCObjects CLI 2.4.x\n * ________________\n *\n * Author: Jean Machuca <correojean@gmail.com>\n *\n * Cross Browser Javascript Framework for MVC Patterns\n * QuickCorp/QCObjects is licensed under the\n * GNU Lesser General Public License v3.0\n * [LICENSE] (https://github.com/QuickCorp/QCObjects/blob/master/LICENSE.txt)\n *\n * Permissions of this copyleft license are conditioned on making available\n * complete source code of licensed works and modifications under the same\n * license or the GNU GPLv3. Copyright and license notices must be preserved.\n * Contributors provide an express grant of patent rights. However, a larger\n * work using the licensed work through interfaces provided by the licensed\n * work may be distributed under different terms and without source code for\n * the larger work.\n *\n * Copyright (C) 2015 Jean Machuca,<correojean@gmail.com>\n *\n * Everyone is permitted to copy and distribute verbatim copies of this\n * license document, but changing it is not allowed.\n*/\n/*eslint no-unused-vars: \"off\"*/\n/*eslint no-redeclare: \"off\"*/\n/*eslint no-empty: \"off\"*/\n/*eslint strict: \"off\"*/\n/*eslint no-mixed-operators: \"off\"*/\n/*eslint no-undef: \"off\"*/\n\"use strict\";\n\nimport { execSync } from \"node:child_process\";\n\nconst { Package, InheritClass, CONFIG, logger } = require(\"qcobjects\");\nconst license = CONFIG.get(\"enterprise-license\", \"1234\");\nconst email = CONFIG.get(\"enterprise-email\", \"a@b.com\");\n\nexport class QCObjectsEnterprise extends InheritClass {\n\n install() {\n const instance = this;\n return instance.installEnterprise(license, email);\n }\n\n upgrade(switchCommander: any) {\n const instance = this;\n const readline = require(\"readline\");\n\n const rl = readline.createInterface({\n input: process.stdin,\n output: process.stdout\n });\n\n var emailQuestion = function () {\n rl.question(`\n [NOTE: No information will be sent to a server until I got your consent]\n\n Please tell me your e-Mail (\\u{1F48C}):\n `, (email: string) => {\n if (email !== \"\") {\n var phoneNumberQuestion = function () {\n rl.question(\"Please tell me your phone number (\\u{1F919}): \\n\", (phonenumber: string) => {\n if (phonenumber !== \"\") {\n rl.question(`\n Please select one of the following options (type a number):\n\n 1.- \\u{1F640} This is your first interaction \\u{1F60D} with QCObjects Enterprise Edition \\u{1F3E2},\n you want to send your email and phone number to one of our executives to process your\n inquiry, pay the license (when aplies) and receive a new fresh license number\n that will free up to you the most advanced features for large companies\n\n 2.- \\u{2714} Your assigned executive \\u{1F9D1} has given to you a new fresh QCObjects Enterprise Edition License Number\n and you want to enter it to follow up with the next steps.\n\n 3.- \\u{1F3C3} You want to quit this form, as you got here accidentally\n (You should think about it. It's not a coincidence, It's destiny \\u{1F600}).\n\n Please enter the number of the option and press [enter]: `, (interaction_option: any) => {\n logger.infoEnabled = true;\n\n switch (interaction_option) {\n case \"1\":\n switchCommander.register(email, phonenumber).then(function () {\n logger.info(`\\u{1F44F} Congrats! You have been successfully registered to the cloud! \\u{1F44F}\n One of our executives will be in touch with you as soon as possible to give you the next steps\n to get a new License Number and start using QCObjects Entrprise Edition!\n\n (In the meantime, you can continue using all the features of the QCObjects Community Edition)\n `);\n rl.close();\n }).catch(() => {\n rl.close();\n });\n break;\n case \"2\":\n rl.stdoutMuted = true;\n rl._writeToOutput = function _writeToOutput(stringToWrite: any) {\n if (rl.stdoutMuted)\n rl.output.write(\"*\");\n else\n rl.output.write(stringToWrite);\n };\n rl.question(\"Please tell me the number of license that your executive has given to you: \\n\", (license: any) => {\n rl.stdoutMuted = false;\n instance.installEnterprise(license, email);\n\n rl.close();\n });\n\n break;\n default:\n logger.info(\"\\u{1F937} You can continue to use QCObjects Community Edition, see you! \\u{1F64B} \");\n rl.close();\n break;\n }\n\n });\n\n } else {\n console.log(`You need to enter a Phone Number if you want to be contacted.\n If you want to quit, press Ctrl-C.\n `);\n phoneNumberQuestion();\n }\n });\n };\n phoneNumberQuestion();\n\n } else {\n console.log(`You need to enter a real e-Mail adress if you want to be contacted.\n If you want to quit, press Ctrl-C.\n `);\n emailQuestion();\n }\n });\n\n };\n emailQuestion();\n\n }\n\n installEnterprise(license: string | any[], email: any) {\n const asterisk = \"*\";\n\n logger.info(`Your entered license number is ${asterisk.repeat(license.length)} and the email that you have entered is ${email}`);\n logger.info(\"Now, I'm installing QCObjects Enterprise Edition in your computer...\");\n const cmdDownloadGit = `npm i --force -g git+https://license:${license}@software.qcobjects.io/qcobjects-enterprise/qcobjects-enterprise.git`;\n execSync(cmdDownloadGit);\n const stdout = execSync(\"qcobjects --version\");\n if (stdout.lastIndexOf(\"Enterprise Edition\") !== -1) {\n logger.info(\"\\u{1F44F} Congrats! Now you have installed QCObjects Entrprise Edition! \\u{1F44F}\");\n logger.info(`You can test it using:\n> qcobjects --version\n\nTo find more help, type the command:\n\n> qcobjects --help\n\nEnjoy!\n`);\n } else {\n console.log(\"\\u{1F926} Something went wrong \\u{1F926} when trying to update your license to QCObjects Enterprise Edition\");\n console.log(\"Ask your executive to help\");\n }\n\n }\n\n}\n\nPackage(\"org.qcobjects.enterprise.commands\", [\n QCObjectsEnterprise\n]);\n\n"],
5
+ "mappings": "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",
6
+ "names": ["email", "license"]
7
+ }
@@ -0,0 +1,81 @@
1
+ "use strict";
2
+ var global = (() => {
3
+ var __defProp = Object.defineProperty;
4
+ var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
5
+ var __getOwnPropNames = Object.getOwnPropertyNames;
6
+ var __hasOwnProp = Object.prototype.hasOwnProperty;
7
+ var __name = (target, value) => __defProp(target, "name", { value, configurable: true });
8
+ var __require = /* @__PURE__ */ ((x) => typeof require !== "undefined" ? require : typeof Proxy !== "undefined" ? new Proxy(x, {
9
+ get: (a, b) => (typeof require !== "undefined" ? require : a)[b]
10
+ }) : x)(function(x) {
11
+ if (typeof require !== "undefined") return require.apply(this, arguments);
12
+ throw Error('Dynamic require of "' + x + '" is not supported');
13
+ });
14
+ var __export = (target, all) => {
15
+ for (var name in all)
16
+ __defProp(target, name, { get: all[name], enumerable: true });
17
+ };
18
+ var __copyProps = (to, from, except, desc) => {
19
+ if (from && typeof from === "object" || typeof from === "function") {
20
+ for (let key of __getOwnPropNames(from))
21
+ if (!__hasOwnProp.call(to, key) && key !== except)
22
+ __defProp(to, key, { get: () => from[key], enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable });
23
+ }
24
+ return to;
25
+ };
26
+ var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: true }), mod);
27
+
28
+ // src/org.quickcorp.qcobjects.api.client_services.ts
29
+ var org_quickcorp_qcobjects_api_client_services_exports = {};
30
+ __export(org_quickcorp_qcobjects_api_client_services_exports, {
31
+ QuickCorpCloud: () => QuickCorpCloud
32
+ });
33
+ var { Package, Service, logger } = __require("qcobjects");
34
+ var QuickCorpCloud = class extends Service {
35
+ static {
36
+ __name(this, "QuickCorpCloud");
37
+ }
38
+ constructor({
39
+ name = "quickcorp_cloud",
40
+ external = true,
41
+ useHTTP2 = true,
42
+ cached = false,
43
+ method = "post",
44
+ headers = {
45
+ "origin": "localhost",
46
+ "content-type": "application/json"
47
+ },
48
+ basePath = "https://cloud.quickcorp.org/",
49
+ url = "",
50
+ withCredentials = false
51
+ }) {
52
+ super({
53
+ name,
54
+ external,
55
+ useHTTP2,
56
+ cached,
57
+ method,
58
+ headers,
59
+ basePath,
60
+ url,
61
+ withCredentials
62
+ });
63
+ }
64
+ _new_(o) {
65
+ this.headers["authorization"] = "Basic token";
66
+ this.url = this.basePath + o.apiMethod;
67
+ this.data = o.data;
68
+ }
69
+ done(service, standardResponse) {
70
+ logger.debug(standardResponse);
71
+ }
72
+ fail(e) {
73
+ logger.debug(e);
74
+ }
75
+ };
76
+ Package("org.quickcorp.qcobjects.api.client_services", [
77
+ QuickCorpCloud
78
+ ]);
79
+ return __toCommonJS(org_quickcorp_qcobjects_api_client_services_exports);
80
+ })();
81
+ //# sourceMappingURL=org.quickcorp.qcobjects.api.client_services.js.map
@@ -0,0 +1,7 @@
1
+ {
2
+ "version": 3,
3
+ "sources": ["../../src/org.quickcorp.qcobjects.api.client_services.ts"],
4
+ "sourcesContent": ["/**\n * QCObjects CLI 2.4.x\n * ________________\n *\n * Author: Jean Machuca <correojean@gmail.com>\n *\n * Cross Browser Javascript Framework for MVC Patterns\n * QuickCorp/QCObjects is licensed under the\n * GNU Lesser General Public License v3.0\n * [LICENSE] (https://github.com/QuickCorp/QCObjects/blob/master/LICENSE.txt)\n *\n * Permissions of this copyleft license are conditioned on making available\n * complete source code of licensed works and modifications under the same\n * license or the GNU GPLv3. Copyright and license notices must be preserved.\n * Contributors provide an express grant of patent rights. However, a larger\n * work using the licensed work through interfaces provided by the licensed\n * work may be distributed under different terms and without source code for\n * the larger work.\n *\n * Copyright (C) 2015 Jean Machuca,<correojean@gmail.com>\n *\n * Everyone is permitted to copy and distribute verbatim copies of this\n * license document, but changing it is not allowed.\n*/\n/*eslint no-unused-vars: \"off\"*/\n/*eslint no-redeclare: \"off\"*/\n/*eslint no-empty: \"off\"*/\n/*eslint strict: \"off\"*/\n/*eslint no-mixed-operators: \"off\"*/\n/*eslint no-undef: \"off\"*/\n\"use strict\";\n\nconst {Package, Service, logger} = require(\"qcobjects\");\n\nexport class QuickCorpCloud extends Service {\n constructor ({\n name= \"quickcorp_cloud\",\n external= true,\n useHTTP2=true,\n cached= false,\n method= \"post\",\n headers= {\n \"origin\": \"localhost\",\n \"content-type\": \"application/json\"\n },\n basePath= \"https://cloud.quickcorp.org/\",\n url= \"\",\n withCredentials= false\n }) {\n super({\n name,\n external,\n useHTTP2,\n cached,\n method,\n headers,\n basePath,\n url,\n withCredentials\n });\n\n }\n\n _new_(o:any) {\n // service instantiated\n this.headers[\"authorization\"] = \"Basic token\";\n this.url = this.basePath + o.apiMethod;\n this.data = o.data;\n }\n \n done(service:any,standardResponse:any) {\n // service loaded\n logger.debug(standardResponse);\n }\n\n fail(e:any){\n logger.debug(e);\n }\n\n}\n\nPackage(\"org.quickcorp.qcobjects.api.client_services\", [\nQuickCorpCloud\n]);\n\n"],
5
+ "mappings": ";;;;;;;;;;;;;;;;;;;;;;;;;;;;AAAA;AAAA;AAAA;AAAA;AAgCA,MAAM,EAAC,SAAS,SAAS,OAAM,IAAI,UAAQ,WAAW;AAE/C,MAAM,iBAAN,cAA6B,QAAQ;AAAA,IAlC5C,OAkC4C;AAAA;AAAA;AAAA,IAC1C,YAAa;AAAA,MACX,OAAM;AAAA,MACN,WAAU;AAAA,MACV,WAAS;AAAA,MACT,SAAQ;AAAA,MACR,SAAQ;AAAA,MACR,UAAS;AAAA,QACP,UAAU;AAAA,QACV,gBAAgB;AAAA,MAClB;AAAA,MACA,WAAU;AAAA,MACV,MAAK;AAAA,MACL,kBAAiB;AAAA,IACnB,GAAG;AACD,YAAM;AAAA,QACJ;AAAA,QACA;AAAA,QACA;AAAA,QACA;AAAA,QACA;AAAA,QACA;AAAA,QACA;AAAA,QACA;AAAA,QACA;AAAA,MACF,CAAC;AAAA,IAEH;AAAA,IAEA,MAAM,GAAO;AAEX,WAAK,QAAQ,eAAe,IAAI;AAChC,WAAK,MAAM,KAAK,WAAW,EAAE;AAC7B,WAAK,OAAO,EAAE;AAAA,IAChB;AAAA,IAEA,KAAK,SAAY,kBAAsB;AAErC,aAAO,MAAM,gBAAgB;AAAA,IAC/B;AAAA,IAEA,KAAK,GAAM;AACP,aAAO,MAAM,CAAC;AAAA,IAClB;AAAA,EAEF;AAEA,UAAQ,+CAA+C;AAAA,IACvD;AAAA,EACA,CAAC;",
6
+ "names": []
7
+ }