@vbotma/sdk 3.2.4 → 3.2.6
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/dist/dts/composables/Button.d.ts +1 -1
- package/dist/dts/features/Biometry/Biometry.d.ts +1 -1
- package/dist/dts/features/ClosingBehavior/ClosingBehavior.d.ts +1 -1
- package/dist/dts/features/CloudStorage/CloudStorage.d.ts +1 -1
- package/dist/dts/features/DeviceStorage/DeviceStorage.d.ts +1 -1
- package/dist/dts/features/HapticFeedback/HapticFeedback.d.ts +1 -1
- package/dist/dts/features/Invoice/Invoice.d.ts +1 -1
- package/dist/dts/features/LocationManager/LocationManager.d.ts +1 -1
- package/dist/dts/features/MiniApp/MiniApp.d.ts +1 -1
- package/dist/dts/features/Notification/Notification.d.ts +8 -1
- package/dist/dts/features/Popup/Popup.d.ts +1 -1
- package/dist/dts/features/QrScanner/QrScanner.d.ts +1 -1
- package/dist/dts/features/SecureStorage/SecureStorage.d.ts +1 -1
- package/dist/dts/features/SwipeBehavior/SwipeBehavior.d.ts +1 -1
- package/dist/dts/features/ThemeParams/ThemeParams.d.ts +1 -1
- package/dist/dts/features/Viewport/Viewport.d.ts +1 -1
- package/dist/dts/fn-options/bottomButtonOptions.d.ts +1 -1
- package/dist/dts/fn-options/buttonOptions.d.ts +1 -1
- package/dist/dts/fn-options/sharedFeatureOptions.d.ts +1 -1
- package/dist/dts/host-features/BackButton/HostBackButton.d.ts +12 -0
- package/dist/dts/host-features/Biometry/HostBiometry.d.ts +36 -0
- package/dist/dts/host-features/Chat/HostChat.d.ts +12 -0
- package/dist/dts/host-features/Clipboard/HostClipboard.d.ts +12 -0
- package/dist/dts/host-features/ClosingBehavior/HostClosingBehavior.d.ts +8 -0
- package/dist/dts/host-features/CustomMethod/HostCustomMethod.d.ts +12 -0
- package/dist/dts/host-features/EmojiStatus/HostEmojiStatus.d.ts +24 -0
- package/dist/dts/host-features/Files/HostFiles.d.ts +12 -0
- package/dist/dts/host-features/HapticFeedback/HostHapticFeedback.d.ts +8 -0
- package/dist/dts/host-features/HomeScreen/HostHomeScreen.d.ts +24 -0
- package/dist/dts/host-features/Invoice/HostInvoice.d.ts +12 -0
- package/dist/dts/host-features/Link/HostLink.d.ts +12 -0
- package/dist/dts/host-features/LocationManager/HostLocationManager.d.ts +24 -0
- package/dist/dts/host-features/MainButton/HostMainButton.d.ts +13 -0
- package/dist/dts/host-features/MiniApp/HostMiniApp.d.ts +53 -0
- package/dist/dts/host-features/Notification/HostNotification.d.ts +2 -1
- package/dist/dts/host-features/Popup/HostPopup.d.ts +14 -0
- package/dist/dts/host-features/Privacy/HostPrivacy.d.ts +20 -0
- package/dist/dts/host-features/QrScanner/HostQrScanner.d.ts +20 -0
- package/dist/dts/host-features/SecondaryButton/HostSecondaryButton.d.ts +13 -0
- package/dist/dts/host-features/SettingsButton/HostSettingsButton.d.ts +13 -0
- package/dist/dts/host-features/Sharing/HostSharing.d.ts +20 -0
- package/dist/dts/host-features/SwipeBehavior/HostSwipeBehavior.d.ts +8 -0
- package/dist/dts/host-features/ThemeParams/HostThemeParams.d.ts +4 -12
- package/dist/dts/host-features/Viewport/HostViewport.d.ts +52 -0
- package/dist/dts/host-features/index.d.ts +23 -0
- package/dist/dts/index.d.ts +1 -1
- package/dist/dts/with-checks/withChecksFp.d.ts +1 -1
- package/dist/index.cjs +1 -1
- package/dist/index.cjs.map +1 -1
- package/dist/index.iife.js +3 -3
- package/dist/index.iife.js.map +1 -1
- package/dist/index.js +2367 -1645
- package/dist/index.js.map +1 -1
- package/package.json +4 -4
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@vbotma/sdk",
|
|
3
|
-
"version": "3.2.
|
|
3
|
+
"version": "3.2.6",
|
|
4
4
|
"description": "TypeScript Source Development Kit for VBot Mini Apps client application.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"vbot-mini-apps",
|
|
@@ -29,11 +29,11 @@
|
|
|
29
29
|
"error-kid": "^1.0.2",
|
|
30
30
|
"fp-ts": "^2.16.11",
|
|
31
31
|
"valibot": "^1.1.0",
|
|
32
|
-
"@vbotma/toolkit": "^1.0.4",
|
|
33
32
|
"@vbotma/bridge": "^2.2.7",
|
|
34
|
-
"@vbotma/signals": "^1.0.1",
|
|
35
33
|
"@vbotma/transformers": "^1.1.3",
|
|
36
|
-
"@vbotma/
|
|
34
|
+
"@vbotma/signals": "^1.0.1",
|
|
35
|
+
"@vbotma/toolkit": "^1.0.4",
|
|
36
|
+
"@vbotma/types": "^1.0.3"
|
|
37
37
|
},
|
|
38
38
|
"devDependencies": {
|
|
39
39
|
"tsconfig": "0.0.2",
|