@heybox/hb-sdk-protocol 0.8.1-alpha.13 → 0.8.1-alpha.14
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/package.json +1 -1
- package/src/capabilities.ts +3 -1
package/package.json
CHANGED
package/src/capabilities.ts
CHANGED
|
@@ -164,7 +164,9 @@ export const COMPANION_SHOW_NOTIFICATION_METHOD = 'companion.showNotification' a
|
|
|
164
164
|
export type MiniProgramAuthMethod = typeof AUTH_LOGIN_METHOD;
|
|
165
165
|
export type MiniProgramUserMethod = typeof USER_GET_INFO_METHOD | typeof USER_REVOKE_AUTHORIZATION_METHOD | typeof USER_GET_STEAM_GAME_LIST_METHOD;
|
|
166
166
|
export type MiniProgramShareMethod = typeof SHARE_COPY_LINK_METHOD | typeof SHARE_SHOW_SHARE_MENU_METHOD | typeof SHARE_SCREENSHOT_METHOD;
|
|
167
|
-
export type MiniProgramViewportMethod =
|
|
167
|
+
export type MiniProgramViewportMethod =
|
|
168
|
+
| typeof VIEWPORT_GET_WINDOW_INFO_METHOD
|
|
169
|
+
| typeof VIEWPORT_SET_NAVIGATION_BAR_STYLE_METHOD;
|
|
168
170
|
export type MiniProgramStorageMethod = typeof STORAGE_GET_STORAGE_METHOD | typeof STORAGE_SET_STORAGE_METHOD;
|
|
169
171
|
export type MiniProgramNetworkMethod = typeof NETWORK_REQUEST_METHOD | typeof NETWORK_DOWNLOAD_METHOD;
|
|
170
172
|
export type MiniProgramFilesMethod = typeof FILES_PICK_FILES_METHOD | typeof FILES_PICK_DIRECTORY_METHOD | typeof FILES_SAVE_FILE_METHOD;
|