@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 +12 -0
- package/manifest.json +80 -57
- package/package.json +1 -1
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
|
-
"
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
"
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
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
|
-
"
|
|
35
|
-
"
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
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
|
-
"
|
|
42
|
-
"
|
|
43
|
-
{
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
"
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
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
|
}
|