@jtl-software/cloud-app-template-frontend-react 0.0.10 → 0.0.12

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/CHANGELOG.md CHANGED
@@ -1,5 +1,17 @@
1
1
  # @jtl/cloud-app-template-frontend-react
2
2
 
3
+ ## 0.0.12
4
+
5
+ ### Patch Changes
6
+
7
+ - [#36](https://github.com/jtl-software/cloud-apps-cli/pull/36) [`adca670`](https://github.com/jtl-software/cloud-apps-cli/commit/adca670a52296d01b2c153b722cc3b51993125d5) Thanks [@tobilen](https://github.com/tobilen)! - Fix .env file detection & deprecated manifest fields
8
+
9
+ ## 0.0.11
10
+
11
+ ### Patch Changes
12
+
13
+ - [#34](https://github.com/jtl-software/cloud-apps-cli/pull/34) [`1c507dc`](https://github.com/jtl-software/cloud-apps-cli/commit/1c507dc1ff40e84a6a4869012e6849c15156de29) Thanks [@tobilen](https://github.com/tobilen)! - Update to manifest 2.0
14
+
3
15
  ## 0.0.10
4
16
 
5
17
  ### Patch Changes
package/manifest.json CHANGED
@@ -1,64 +1,87 @@
1
1
  {
2
- "manifestVersion": "1.0.0",
3
- "version": "1.0.0",
4
- "name": {
5
- "short": "{{APP_NAME}}",
6
- "full": "{{APP_NAME}}"
7
- },
8
- "description": {
9
- "short": "{{APP_DESCRIPTION}}",
10
- "full": "{{APP_DESCRIPTION}}"
11
- },
12
- "defaultLocale": "de-DE",
13
- "locales": {
14
- "de-DE": {},
15
- "en": {}
16
- },
17
- "icon": {
18
- "light": "https://hub.jtl-cloud.com/assets/image-placeholder.png",
19
- "dark": "https://hub.jtl-cloud.com/assets/image-placeholder.png"
20
- },
21
- "communication": {
22
- "supportUrl": "https://example.com/support-for-app-xy",
23
- "guideUrl": "https://example.com/guide-for-app-xy"
24
- },
25
- "legal": {
26
- "gdprRequestUrl": "https://example.com/gdpr/request",
27
- "gdprDeleteUrl": "https://example.com/gdpr/delete",
28
- "privacyUrl": "https://example.com/privacy",
29
- "termsOfUseUrl": "https://example.com/terms-of-use"
30
- },
31
- "lifecycle": {
32
- "setupUrl": "http://localhost:3004/setup"
2
+ "manifest": {
3
+ "technicalName": "{{APP_TECHNICAL_NAME}}",
4
+ "version": "1.0.0",
5
+ "lifecycle": {
6
+ "configurationUrl": "http://localhost:3004/setup"
7
+ },
8
+ "capabilities": {
9
+ "hub": {
10
+ "appLauncher": {
11
+ "redirectUrl": "http://localhost:3004/hub"
12
+ }
13
+ },
14
+ "erp": {
15
+ "menuItems": [
16
+ {
17
+ "id": "{{APP_NAME}}-menu",
18
+ "name": "{{APP_NAME}}",
19
+ "url": "http://localhost:3004/erp"
20
+ },
21
+ {
22
+ "id": "{{APP_NAME}}-graphql-demo",
23
+ "name": "GraphQL Demo",
24
+ "url": "http://localhost:3004/graphql-demo"
25
+ }
26
+ ],
27
+ "api": {
28
+ "scopes": []
29
+ },
30
+ "pane": [
31
+ {
32
+ "id": "{{APP_NAME}}-customer-pane",
33
+ "context": "customers",
34
+ "matchChildContext": true,
35
+ "title": "{{APP_NAME}}",
36
+ "url": "http://localhost:3004/pane",
37
+ "requiredScopes": []
38
+ }
39
+ ]
40
+ }
41
+ }
33
42
  },
34
- "capabilities": {
35
- "hub": {
36
- "appLauncher": {
37
- "redirectUrl": "http://localhost:3004/hub",
38
- "closedPreviewUrl": "http://localhost:3004/hub"
43
+ "listing": {
44
+ "version": "1.0.0",
45
+ "defaultLocale": "de-DE",
46
+ "name": {
47
+ "de-DE": {
48
+ "short": "{{APP_NAME}}",
49
+ "full": "{{APP_NAME}}"
39
50
  }
40
51
  },
41
- "erp": {
42
- "menuItems": [
43
- {
44
- "id": "{{APP_NAME}}-menu",
45
- "name": "{{APP_NAME}}",
46
- "url": "http://localhost:3004/erp"
47
- },
48
- {
49
- "id": "{{APP_NAME}}-graphql-demo",
50
- "name": "GraphQL Demo",
51
- "url": "http://localhost:3004/graphql-demo"
52
- }
53
- ],
54
- "pane": [
55
- {
56
- "url": "http://localhost:3004/pane",
57
- "title": "{{APP_NAME}}",
58
- "context": "customers",
59
- "matchChildContext": true
60
- }
61
- ]
52
+ "description": {
53
+ "de-DE": {
54
+ "short": "{{APP_DESCRIPTION_SHORT}}",
55
+ "full": "{{APP_DESCRIPTION}}"
56
+ }
57
+ },
58
+ "media": {
59
+ "icons": {
60
+ "light": "https://hub.jtl-cloud.com/assets/image-placeholder.png",
61
+ "dark": "https://hub.jtl-cloud.com/assets/image-placeholder.png"
62
+ }
63
+ },
64
+ "pricing": {
65
+ "freePlan": true
66
+ },
67
+ "support": {
68
+ "url": {
69
+ "de-DE": "https://example.com/support-for-app-xy"
70
+ },
71
+ "documentation": {
72
+ "de-DE": "https://example.com/guide-for-app-xy"
73
+ }
74
+ },
75
+ "legal": {
76
+ "privacyPolicy": "https://example.com/privacy",
77
+ "termsOfUse": "https://example.com/terms-of-use",
78
+ "gdpr": {
79
+ "request": "https://example.com/gdpr/request",
80
+ "delete": "https://example.com/gdpr/delete"
81
+ }
82
+ },
83
+ "editorial": {
84
+ "status": false
62
85
  }
63
86
  }
64
87
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@jtl-software/cloud-app-template-frontend-react",
3
- "version": "0.0.10",
3
+ "version": "0.0.12",
4
4
  "type": "module",
5
5
  "publishConfig": {
6
6
  "access": "public"