@futdevpro/fsm-dynamo 1.14.13 → 1.14.14

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.
@@ -103,7 +103,7 @@ jobs:
103
103
  timeout-minutes: 20
104
104
  steps:
105
105
  - name: Checkout code
106
- uses: actions/checkout@v2
106
+ uses: actions/checkout@v4
107
107
 
108
108
  - name: Install Node.js
109
109
  uses: actions/setup-node@v2
@@ -143,7 +143,7 @@ jobs:
143
143
  timeout-minutes: 20
144
144
  steps:
145
145
  - name: Checkout code
146
- uses: actions/checkout@v2
146
+ uses: actions/checkout@v4
147
147
 
148
148
  - name: Set NPM RC
149
149
  run: |
@@ -184,7 +184,7 @@ jobs:
184
184
  version_published: ${{ steps.version_check_results.outputs.version_published }}
185
185
  steps:
186
186
  - name: Checkout code
187
- uses: actions/checkout@v2
187
+ uses: actions/checkout@v4
188
188
 
189
189
  - name: Set Package Name
190
190
  run: |
@@ -233,7 +233,7 @@ jobs:
233
233
  if: ${{ needs.check_version.outputs.version_published != 'true' }}
234
234
  steps:
235
235
  - name: Checkout code
236
- uses: actions/checkout@v2
236
+ uses: actions/checkout@v4
237
237
 
238
238
  - name: Set RC
239
239
  run: |
@@ -276,7 +276,7 @@ jobs:
276
276
 
277
277
  # NEW IMPLEMENTATION using futdevpro/fdp-github-actions/send-build-report@master:
278
278
  - name: Checkout code
279
- uses: actions/checkout@v2
279
+ uses: actions/checkout@v4
280
280
 
281
281
  - name: Send Build Report
282
282
  uses: futdevpro/fdp-github-actions/send-build-report@master
@@ -1 +1 @@
1
- {"version":3,"file":"uuid.util.d.ts","sourceRoot":"","sources":["../../../src/_collections/utils/uuid.util.ts"],"names":[],"mappings":"AAIA,qBAAa,SAAS;IAGpB;;;;;;;;;;OAUG;IACH,MAAM,CAAC,QAAQ,CAAC,QAAQ,CAAC,EAAE,MAAM,EAAE,GAAG,MAAM;CAuB7C"}
1
+ {"version":3,"file":"uuid.util.d.ts","sourceRoot":"","sources":["../../../src/_collections/utils/uuid.util.ts"],"names":[],"mappings":"AAYA,qBAAa,SAAS;IAGpB;;;;;;;;;;OAUG;IACH,MAAM,CAAC,QAAQ,CAAC,QAAQ,CAAC,EAAE,MAAM,EAAE,GAAG,MAAM;CAuB7C"}
@@ -1,4 +1,13 @@
1
1
  "use strict";
2
+ /* let UUID: any;
3
+
4
+ try {
5
+ UUID = import('uuid');
6
+ } catch {
7
+ console.log(
8
+ '❌ uuid package not found, please install it with: pnpm add uuid'
9
+ );
10
+ } */
2
11
  Object.defineProperty(exports, "__esModule", { value: true });
3
12
  exports.DyFM_UUID = void 0;
4
13
  const tslib_1 = require("tslib");
@@ -1 +1 @@
1
- {"version":3,"file":"uuid.util.js","sourceRoot":"","sources":["../../../src/_collections/utils/uuid.util.ts"],"names":[],"mappings":";;;;AAEA,mDAA6B;AAE7B,MAAa,SAAS;IACpB,wCAAwC;IAExC;;;;;;;;;;OAUG;IACH,MAAM,CAAC,QAAQ,CAAC,QAAmB;QACjC,IAAI,IAAI,GAAG,IAAI,CAAC,EAAE,EAAE,CAAC;QAErB,IAAI,QAAQ,EAAE,CAAC;YACb,OAAO,QAAQ,CAAC,QAAQ,CAAC,IAAI,CAAC,EAAE,CAAC;gBAC/B,IAAI,GAAG,IAAI,CAAC,EAAE,EAAE,CAAC;YACnB,CAAC;QACH,CAAC;QAED,OAAO,IAAI,CAAC;IACd,CAAC;CAaF;AArCD,8BAqCC"}
1
+ {"version":3,"file":"uuid.util.js","sourceRoot":"","sources":["../../../src/_collections/utils/uuid.util.ts"],"names":[],"mappings":";AAAA;;;;;;;;IAQI;;;;AAEJ,mDAA6B;AAE7B,MAAa,SAAS;IACpB,wCAAwC;IAExC;;;;;;;;;;OAUG;IACH,MAAM,CAAC,QAAQ,CAAC,QAAmB;QACjC,IAAI,IAAI,GAAG,IAAI,CAAC,EAAE,EAAE,CAAC;QAErB,IAAI,QAAQ,EAAE,CAAC;YACb,OAAO,QAAQ,CAAC,QAAQ,CAAC,IAAI,CAAC,EAAE,CAAC;gBAC/B,IAAI,GAAG,IAAI,CAAC,EAAE,EAAE,CAAC;YACnB,CAAC;QACH,CAAC;QAED,OAAO,IAAI,CAAC;IACd,CAAC;CAaF;AArCD,8BAqCC"}
@@ -1,13 +1,14 @@
1
1
  "use strict";
2
+ /* try {
3
+ //require.resolve('openai');
4
+ import('openai');
5
+ } catch {
6
+ console.log(
7
+ '❌ OpenAI package not found, please install it with: pnpm add openai'
8
+ );
9
+ } */
2
10
  Object.defineProperty(exports, "__esModule", { value: true });
3
11
  const tslib_1 = require("tslib");
4
- try {
5
- /* require.resolve('open-ai'); */
6
- Promise.resolve(`${'open-ai'}`).then(s => tslib_1.__importStar(require(s)));
7
- }
8
- catch {
9
- console.log('❌ OpenAI package not found, please install it with: pnpm add open-ai');
10
- }
11
12
  // COLLECTIONS
12
13
  tslib_1.__exportStar(require("./_collections/oai-embedding-model-dimensions.const"), exports);
13
14
  // ENUMS
@@ -1 +1 @@
1
- {"version":3,"file":"index.js","sourceRoot":"","sources":["../../../../../src/_modules/ai/_modules/open-ai/index.ts"],"names":[],"mappings":";;;AAGA,IAAI,CAAC;IACH,iCAAiC;IACjC,mBAAO,SAAgB,gDAAE;AAC3B,CAAC;AAAC,MAAM,CAAC;IACP,OAAO,CAAC,GAAG,CACT,sEAAsE,CACvE,CAAC;AACJ,CAAC;AAED,cAAc;AACd,8FAAoE;AAEpE,QAAQ;AACR,kEAAwC;AAExC,SAAS;AACT,oFAA0D;AAC1D,iFAAuD;AACvD,iFAAuD;AACvD,+EAAqD"}
1
+ {"version":3,"file":"index.js","sourceRoot":"","sources":["../../../../../src/_modules/ai/_modules/open-ai/index.ts"],"names":[],"mappings":";AAGA;;;;;;;IAOI;;;AAEJ,cAAc;AACd,8FAAoE;AAEpE,QAAQ;AACR,kEAAwC;AAExC,SAAS;AACT,oFAA0D;AAC1D,iFAAuD;AACvD,iFAAuD;AACvD,+EAAqD"}
@@ -1,12 +1,13 @@
1
1
  "use strict";
2
+ /* try {
3
+ //require.resolve('crypto-js');
4
+ import('crypto-js');
5
+ } catch {
6
+ console.log(
7
+ '❌ crypto-js package not found, please install it with: pnpm add crypto-js'
8
+ );
9
+ } */
2
10
  Object.defineProperty(exports, "__esModule", { value: true });
3
11
  const tslib_1 = require("tslib");
4
- try {
5
- /* require.resolve('crypto-js'); */
6
- Promise.resolve().then(() => tslib_1.__importStar(require('crypto-js')));
7
- }
8
- catch {
9
- console.log('❌ crypto-js package not found, please install it with: pnpm add crypto-js');
10
- }
11
12
  tslib_1.__exportStar(require("./_collections/crypto.util"), exports);
12
13
  //# sourceMappingURL=index.js.map
@@ -1 +1 @@
1
- {"version":3,"file":"index.js","sourceRoot":"","sources":["../../../src/_modules/crypto/index.ts"],"names":[],"mappings":";;;AAGA,IAAI,CAAC;IACH,mCAAmC;IACnC,0DAAO,WAAW,IAAE;AACtB,CAAC;AAAC,MAAM,CAAC;IACP,OAAO,CAAC,GAAG,CACT,2EAA2E,CAC5E,CAAC;AACJ,CAAC;AAGD,qEAA2C"}
1
+ {"version":3,"file":"index.js","sourceRoot":"","sources":["../../../src/_modules/crypto/index.ts"],"names":[],"mappings":";AAGA;;;;;;;IAOI;;;AAGJ,qEAA2C"}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@futdevpro/fsm-dynamo",
3
- "version": "01.14.13",
3
+ "version": "01.14.14",
4
4
  "description": "Full Stack Model Collection for Dynamic (NodeJS-Typescript) Framework called Dynamo, by Future Development Ltd.",
5
5
  "DyBu_settings": {
6
6
  "packageType": "full-stack-package",
@@ -197,7 +197,7 @@
197
197
  "uuid": "12.0.0"
198
198
  },
199
199
  "devDependencies": {
200
- "@futdevpro/dynamo-eslint": "1.14.9",
200
+ "@futdevpro/dynamo-eslint": "1.14.11",
201
201
  "@types/jasmine": "~4.3.5",
202
202
  "@typescript-eslint/eslint-plugin": "^8.41.0",
203
203
  "@typescript-eslint/parser": "^8.41.0",
@@ -211,6 +211,6 @@
211
211
  "jasmine-spec-reporter": "^7.0.0",
212
212
  "prettier": "^3.3.0",
213
213
  "crypto-js": "~4.2.0",
214
- "openai": "^4.93.0"
214
+ "openai": "~5.23.2"
215
215
  }
216
216
  }
@@ -1,4 +1,12 @@
1
-
1
+ /* let UUID: any;
2
+
3
+ try {
4
+ UUID = import('uuid');
5
+ } catch {
6
+ console.log(
7
+ '❌ uuid package not found, please install it with: pnpm add uuid'
8
+ );
9
+ } */
2
10
 
3
11
  import * as UUID from 'uuid';
4
12
 
@@ -1,14 +1,14 @@
1
1
 
2
2
 
3
3
 
4
- try {
5
- /* require.resolve('open-ai'); */
6
- import('open-ai' as any);
4
+ /* try {
5
+ //require.resolve('openai');
6
+ import('openai');
7
7
  } catch {
8
8
  console.log(
9
- '❌ OpenAI package not found, please install it with: pnpm add open-ai'
9
+ '❌ OpenAI package not found, please install it with: pnpm add openai'
10
10
  );
11
- }
11
+ } */
12
12
 
13
13
  // COLLECTIONS
14
14
  export * from './_collections/oai-embedding-model-dimensions.const';
@@ -1,14 +1,14 @@
1
1
 
2
2
 
3
3
 
4
- try {
5
- /* require.resolve('crypto-js'); */
4
+ /* try {
5
+ //require.resolve('crypto-js');
6
6
  import('crypto-js');
7
7
  } catch {
8
8
  console.log(
9
9
  '❌ crypto-js package not found, please install it with: pnpm add crypto-js'
10
10
  );
11
- }
11
+ } */
12
12
 
13
13
 
14
14
  export * from './_collections/crypto.util';
Binary file