@digilogiclabs/create-saas-app 2.12.0 → 2.12.1

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.
Files changed (61) hide show
  1. package/CHANGELOG.md +6 -0
  2. package/dist/.tsbuildinfo +1 -1
  3. package/dist/generators/template-generator.d.ts +0 -2
  4. package/dist/generators/template-generator.d.ts.map +1 -1
  5. package/dist/generators/template-generator.js +3 -9
  6. package/dist/generators/template-generator.js.map +1 -1
  7. package/dist/templates/mobile/base/template/App.tsx +7 -4
  8. package/dist/templates/mobile/base/template/app/checkout.tsx +5 -2
  9. package/dist/templates/mobile/ui-auth-payments/template/app/(tabs)/_layout.tsx +6 -2
  10. package/dist/templates/mobile/ui-auth-payments/template/app/(tabs)/billing.tsx +7 -3
  11. package/dist/templates/mobile/ui-auth-payments/template/app/(tabs)/index.tsx +5 -2
  12. package/dist/templates/mobile/ui-auth-payments/template/app/(tabs)/profile.tsx +7 -2
  13. package/dist/templates/mobile/ui-auth-payments/template/app/_layout.tsx +2 -4
  14. package/dist/templates/mobile/ui-auth-payments/template/app/auth/login.tsx +6 -3
  15. package/dist/templates/mobile/ui-auth-payments/template/app/auth/signup.tsx +6 -3
  16. package/dist/templates/mobile/ui-auth-payments-ai/template/app/(tabs)/_layout.tsx +6 -2
  17. package/dist/templates/mobile/ui-auth-payments-ai/template/app/(tabs)/billing.tsx +7 -3
  18. package/dist/templates/mobile/ui-auth-payments-ai/template/app/(tabs)/index.tsx +5 -2
  19. package/dist/templates/mobile/ui-auth-payments-ai/template/app/(tabs)/profile.tsx +7 -2
  20. package/dist/templates/mobile/ui-auth-payments-ai/template/app/_layout.tsx +2 -4
  21. package/dist/templates/mobile/ui-auth-payments-ai/template/app/auth/login.tsx +6 -3
  22. package/dist/templates/mobile/ui-auth-payments-ai/template/app/auth/signup.tsx +6 -3
  23. package/dist/templates/shared/config/web/next.config.mjs +0 -1
  24. package/dist/templates/web/ai-platform/template/package.json +0 -1
  25. package/dist/templates/web/ai-platform/template/src/app/chat/page.tsx +5 -2
  26. package/dist/templates/web/ai-platform/template/src/app/playground/page.tsx +5 -2
  27. package/dist/templates/web/ai-platform/template/src/components/providers/app-providers.tsx +2 -5
  28. package/dist/templates/web/iot-dashboard/template/package.json +0 -1
  29. package/dist/templates/web/iot-dashboard/template/src/components/providers/app-providers.tsx +2 -5
  30. package/dist/templates/web/marketplace/template/package.json +0 -1
  31. package/dist/templates/web/marketplace/template/src/components/providers/app-providers.tsx +2 -5
  32. package/dist/templates/web/micro-saas/template/package.json +0 -1
  33. package/dist/templates/web/micro-saas/template/src/components/providers/app-providers.tsx +2 -5
  34. package/package.json +1 -1
  35. package/src/templates/mobile/base/template/App.tsx +7 -4
  36. package/src/templates/mobile/base/template/app/checkout.tsx +5 -2
  37. package/src/templates/mobile/ui-auth-payments/template/app/(tabs)/_layout.tsx +6 -2
  38. package/src/templates/mobile/ui-auth-payments/template/app/(tabs)/billing.tsx +7 -3
  39. package/src/templates/mobile/ui-auth-payments/template/app/(tabs)/index.tsx +5 -2
  40. package/src/templates/mobile/ui-auth-payments/template/app/(tabs)/profile.tsx +7 -2
  41. package/src/templates/mobile/ui-auth-payments/template/app/_layout.tsx +2 -4
  42. package/src/templates/mobile/ui-auth-payments/template/app/auth/login.tsx +6 -3
  43. package/src/templates/mobile/ui-auth-payments/template/app/auth/signup.tsx +6 -3
  44. package/src/templates/mobile/ui-auth-payments-ai/template/app/(tabs)/_layout.tsx +6 -2
  45. package/src/templates/mobile/ui-auth-payments-ai/template/app/(tabs)/billing.tsx +7 -3
  46. package/src/templates/mobile/ui-auth-payments-ai/template/app/(tabs)/index.tsx +5 -2
  47. package/src/templates/mobile/ui-auth-payments-ai/template/app/(tabs)/profile.tsx +7 -2
  48. package/src/templates/mobile/ui-auth-payments-ai/template/app/_layout.tsx +2 -4
  49. package/src/templates/mobile/ui-auth-payments-ai/template/app/auth/login.tsx +6 -3
  50. package/src/templates/mobile/ui-auth-payments-ai/template/app/auth/signup.tsx +6 -3
  51. package/src/templates/shared/config/web/next.config.mjs +0 -1
  52. package/src/templates/web/ai-platform/template/package.json +0 -1
  53. package/src/templates/web/ai-platform/template/src/app/chat/page.tsx +5 -2
  54. package/src/templates/web/ai-platform/template/src/app/playground/page.tsx +5 -2
  55. package/src/templates/web/ai-platform/template/src/components/providers/app-providers.tsx +2 -5
  56. package/src/templates/web/iot-dashboard/template/package.json +0 -1
  57. package/src/templates/web/iot-dashboard/template/src/components/providers/app-providers.tsx +2 -5
  58. package/src/templates/web/marketplace/template/package.json +0 -1
  59. package/src/templates/web/marketplace/template/src/components/providers/app-providers.tsx +2 -5
  60. package/src/templates/web/micro-saas/template/package.json +0 -1
  61. package/src/templates/web/micro-saas/template/src/components/providers/app-providers.tsx +2 -5
package/CHANGELOG.md CHANGED
@@ -1,5 +1,11 @@
1
1
  # @digilogiclabs/create-saas-app
2
2
 
3
+ ## 2.12.1
4
+
5
+ ### Patch Changes
6
+
7
+ - a60272d: Remove app-sdk references from all web and mobile templates (28 files cleaned)
8
+
3
9
  ## 2.12.0
4
10
 
5
11
  ### Minor Changes