@simitgroup/simpleapp-generator 2.0.3-j-alpha → 2.0.3-k-alpha

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/ReleaseNote.md CHANGED
@@ -1,3 +1,6 @@
1
+ [2.0.3k-alpha]
2
+ 1. Update sharelibs imports to @simtrain/shared package
3
+
1
4
  [2.0.3j-alpha]
2
5
  1. Replace CustomFieldFormField with SimpleAppJsonForms in MiniAppSettingPage
3
6
  2. Remove redundant custom field form templates
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@simitgroup/simpleapp-generator",
3
- "version": "2.0.3j-alpha",
3
+ "version": "2.0.3k-alpha",
4
4
  "description": "frontend nuxtjs and backend nests code generator using jsonschema.",
5
5
  "main": "dist/index.js",
6
6
  "scripts": {
@@ -8,7 +8,7 @@
8
8
 
9
9
 
10
10
  import { UserContext } from 'src/simple-app/_core/features/user-context/user.context'
11
- import * as sharelibs from 'src/simple-app/_core/share-libs'
11
+ import * as sharelibs from '@simtrain/shared'
12
12
  import { Injectable,Inject,forwardRef } from '@nestjs/common';
13
13
  import { InjectModel } from '@nestjs/mongoose';
14
14
  import jsonpath from 'jsonpath'
@@ -7,7 +7,7 @@
7
7
  */
8
8
  import _ from 'lodash'
9
9
  import {SchemaType,NotificationStatus} from '~/types'
10
- import * as sharelibs from '../sharelibs'
10
+ import * as sharelibs from '@simtrain/shared'
11
11
  import jsonpath from 'jsonpath'
12
12
  import { SimpleAppClient } from "./SimpleAppClient";
13
13
  import {
@@ -9,7 +9,7 @@ import { DateTime } from "luxon";
9
9
  import {
10
10
  dayjsDateFormatToPrimeVue,
11
11
  getDefaultDateFormatForCountryCode,
12
- } from "~/simpleapp/generate/share-libs";
12
+ } from "@simtrain/shared";
13
13
  import { DurationType } from "~/types";
14
14
 
15
15
  const convertToDate = (date: Date | string) => {