@jtl-software/cloud-app-template-frontend-react 0.0.5 → 0.0.7

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.7
4
+
5
+ ### Patch Changes
6
+
7
+ - [#18](https://github.com/jtl-software/cloud-apps-cli/pull/18) [`191eb59`](https://github.com/jtl-software/cloud-apps-cli/commit/191eb59e8a92d190ab77ed13b89e08b67d9b6bdb) Thanks [@Mr-Malomz](https://github.com/Mr-Malomz)! - docs: clarify placeholder app naming in README and add API proxy configuration to Vite settings
8
+
9
+ ## 0.0.6
10
+
11
+ ### Patch Changes
12
+
13
+ - [`437fa5f`](https://github.com/jtl-software/cloud-apps-cli/commit/437fa5f270d401dda5647acd415c0df6a3c04728) Thanks [@tobilen](https://github.com/tobilen)! - Add missing manifest fields
14
+
3
15
  ## 0.0.5
4
16
 
5
17
  ### Patch Changes
package/manifest.json CHANGED
@@ -18,13 +18,24 @@
18
18
  "light": "https://hub.jtl-cloud.com/assets/image-placeholder.png",
19
19
  "dark": "https://hub.jtl-cloud.com/assets/image-placeholder.png"
20
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
+ },
21
31
  "lifecycle": {
22
32
  "setupUrl": "http://localhost:3004/setup"
23
33
  },
24
34
  "capabilities": {
25
35
  "hub": {
26
36
  "appLauncher": {
27
- "redirectUrl": "http://localhost:3004/hub"
37
+ "redirectUrl": "http://localhost:3004/hub",
38
+ "closedPreviewUrl": "http://localhost:3004/hub"
28
39
  }
29
40
  },
30
41
  "erp": {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@jtl-software/cloud-app-template-frontend-react",
3
- "version": "0.0.5",
3
+ "version": "0.0.7",
4
4
  "type": "module",
5
5
  "publishConfig": {
6
6
  "access": "public"
package/vite.config.ts CHANGED
@@ -10,6 +10,12 @@ const require = createRequire(import.meta.url);
10
10
  export default defineConfig({
11
11
  server: {
12
12
  port: 3004,
13
+ proxy: {
14
+ '/api': {
15
+ target: 'http://localhost:3005',
16
+ changeOrigin: true,
17
+ },
18
+ },
13
19
  },
14
20
  plugins: [tailwindcss(), react()],
15
21
  resolve: {