@strivacity/sdk-vue 3.0.3 → 4.0.0-beta.0

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 +14 -18
  2. package/README.md +1402 -419
  3. package/dist/composables.cjs +2 -2
  4. package/dist/composables.cjs.map +1 -1
  5. package/dist/composables.d.ts +23 -8
  6. package/dist/composables.mjs +2 -2
  7. package/dist/composables.mjs.map +1 -1
  8. package/dist/errors.cjs +1 -0
  9. package/dist/errors.d.ts +1 -0
  10. package/dist/errors.mjs +1 -0
  11. package/dist/index.cjs +1 -2
  12. package/dist/index.d.ts +9 -31
  13. package/dist/index.mjs +1 -2
  14. package/dist/plugin.cjs +2 -0
  15. package/dist/plugin.cjs.map +1 -0
  16. package/dist/plugin.d.ts +8 -0
  17. package/dist/plugin.mjs +2 -0
  18. package/dist/plugin.mjs.map +1 -0
  19. package/dist/storages.cjs +1 -0
  20. package/dist/storages.d.ts +1 -0
  21. package/dist/storages.mjs +1 -0
  22. package/dist/types.cjs +1 -2
  23. package/dist/types.d.ts +106 -118
  24. package/dist/types.mjs +1 -2
  25. package/dist/utils.cjs +1 -0
  26. package/dist/utils.d.ts +1 -0
  27. package/dist/utils.mjs +1 -0
  28. package/eslint.config.mjs +3 -0
  29. package/package.json +45 -8
  30. package/project.json +46 -0
  31. package/src/composables.ts +219 -0
  32. package/src/env.d.ts +8 -0
  33. package/src/errors.ts +1 -0
  34. package/src/index.ts +9 -0
  35. package/src/plugin.ts +89 -0
  36. package/src/storages.ts +1 -0
  37. package/src/types.ts +220 -0
  38. package/src/utils.ts +1 -0
  39. package/testing/tests/composables.spec.ts +328 -0
  40. package/testing/tests/errors.spec.ts +10 -0
  41. package/testing/tests/index.spec.ts +105 -0
  42. package/testing/tests/plugin.spec.ts +129 -0
  43. package/testing/tests/storages.spec.ts +10 -0
  44. package/testing/tests/utils.spec.ts +10 -0
  45. package/testing/utils/common.ts +53 -0
  46. package/tsconfig.app.json +4 -0
  47. package/tsconfig.json +3 -0
  48. package/vite.config.mts +53 -0
  49. package/dist/assets/login-renderer.vue_vue_type_script_setup_true_lang.cjs +0 -2
  50. package/dist/assets/login-renderer.vue_vue_type_script_setup_true_lang.cjs.map +0 -1
  51. package/dist/assets/login-renderer.vue_vue_type_script_setup_true_lang.mjs +0 -2
  52. package/dist/assets/login-renderer.vue_vue_type_script_setup_true_lang.mjs.map +0 -1
  53. package/dist/index.cjs.map +0 -1
  54. package/dist/index.mjs.map +0 -1
  55. package/dist/login-renderer.cjs +0 -2
  56. package/dist/login-renderer.cjs.map +0 -1
  57. package/dist/login-renderer.mjs +0 -2
  58. package/dist/login-renderer.mjs.map +0 -1
  59. package/dist/login-renderer.vue.d.ts +0 -37
  60. package/dist/types.cjs.map +0 -1
  61. package/dist/types.mjs.map +0 -1
package/CHANGELOG.md CHANGED
@@ -29,13 +29,13 @@
29
29
  ### 🚀 Features
30
30
 
31
31
  - custom sdk mode added ([17812c6](https://github.com/Strivacity/sdk-js/commit/17812c6))
32
- - ⚠️ EmbeddedFlow implemented ([a0e3ad8](https://github.com/Strivacity/sdk-js/commit/a0e3ad8))
33
- - ⚠️ NativeFlow entry function now returns an object instead of a string ([9a8942d](https://github.com/Strivacity/sdk-js/commit/9a8942d))
32
+ - ⚠️ EmbeddedFlow implemented ([a0e3ad8](https://github.com/Strivacity/sdk-js/commit/a0e3ad8))
33
+ - ⚠️ NativeFlow entry function now returns an object instead of a string ([9a8942d](https://github.com/Strivacity/sdk-js/commit/9a8942d))
34
34
 
35
- ### ⚠️ Breaking Changes
35
+ ### ⚠️ Breaking Changes
36
36
 
37
- - EmbeddedFlow implemented ([a0e3ad8](https://github.com/Strivacity/sdk-js/commit/a0e3ad8))
38
- - NativeFlow entry function now returns an object instead of a string ([9a8942d](https://github.com/Strivacity/sdk-js/commit/9a8942d))
37
+ - EmbeddedFlow implemented ([a0e3ad8](https://github.com/Strivacity/sdk-js/commit/a0e3ad8))
38
+ - NativeFlow entry function now returns an object instead of a string ([9a8942d](https://github.com/Strivacity/sdk-js/commit/9a8942d))
39
39
 
40
40
  ### 🧱 Updated Dependencies
41
41
 
@@ -45,13 +45,13 @@
45
45
 
46
46
  ### 🚀 Features
47
47
 
48
- - ⚠️ EmbeddedFlow implemented ([a0e3ad8](https://github.com/Strivacity/sdk-js/commit/a0e3ad8))
49
- - ⚠️ NativeFlow entry function now returns an object instead of a string ([9a8942d](https://github.com/Strivacity/sdk-js/commit/9a8942d))
48
+ - ⚠️ EmbeddedFlow implemented ([a0e3ad8](https://github.com/Strivacity/sdk-js/commit/a0e3ad8))
49
+ - ⚠️ NativeFlow entry function now returns an object instead of a string ([9a8942d](https://github.com/Strivacity/sdk-js/commit/9a8942d))
50
50
 
51
- ### ⚠️ Breaking Changes
51
+ ### ⚠️ Breaking Changes
52
52
 
53
- - EmbeddedFlow implemented ([a0e3ad8](https://github.com/Strivacity/sdk-js/commit/a0e3ad8))
54
- - NativeFlow entry function now returns an object instead of a string ([9a8942d](https://github.com/Strivacity/sdk-js/commit/9a8942d))
53
+ - EmbeddedFlow implemented ([a0e3ad8](https://github.com/Strivacity/sdk-js/commit/a0e3ad8))
54
+ - NativeFlow entry function now returns an object instead of a string ([9a8942d](https://github.com/Strivacity/sdk-js/commit/9a8942d))
55
55
 
56
56
  ### 🧱 Updated Dependencies
57
57
 
@@ -140,12 +140,12 @@
140
140
  ### 🚀 Features
141
141
 
142
142
  - ionic example app added ([494805a](https://github.com/strivacity/sdk-js/commit/494805a))
143
- - ⚠️ NativeFlow implemented ([75b353f](https://github.com/strivacity/sdk-js/commit/75b353f))
143
+ - ⚠️ NativeFlow implemented ([75b353f](https://github.com/strivacity/sdk-js/commit/75b353f))
144
144
  - @strivacity/sdk-vue package implemented ([8c526f5](https://github.com/strivacity/sdk-js/commit/8c526f5))
145
145
 
146
- ### ⚠️ Breaking Changes
146
+ ### ⚠️ Breaking Changes
147
147
 
148
- - ⚠️ NativeFlow implemented ([75b353f](https://github.com/strivacity/sdk-js/commit/75b353f))
148
+ - ⚠️ NativeFlow implemented ([75b353f](https://github.com/strivacity/sdk-js/commit/75b353f))
149
149
 
150
150
  ### 🧱 Updated Dependencies
151
151
 
@@ -154,7 +154,6 @@
154
154
 
155
155
  ## 1.0.1 (2025-02-03)
156
156
 
157
-
158
157
  ### 🩹 Fixes
159
158
 
160
159
  - publish workflow fixed
@@ -163,19 +162,16 @@
163
162
 
164
163
  - add --access=public to the publish workflow
165
164
 
166
-
167
165
  ### 🧱 Updated Dependencies
168
166
 
169
167
  - Updated sdk-core to 1.0.1
170
168
 
171
169
  # 1.0.0 (2024-09-20)
172
170
 
173
-
174
171
  ### 🚀 Features
175
172
 
176
173
  - @strivacity/sdk-vue package implemented
177
174
 
178
-
179
175
  ### 🧱 Updated Dependencies
180
176
 
181
- - Updated sdk-core to 1.0.0
177
+ - Updated sdk-core to 1.0.0