@phonghq/go-chat 1.0.4 → 1.0.5
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/assets/icons/IconArrowLeft.vue.d.ts +2 -0
- package/dist/assets/icons/IconPhone.vue.d.ts +2 -0
- package/dist/assets/icons/IconPlan.vue.d.ts +2 -0
- package/dist/assets/icons/IconPlus.vue.d.ts +2 -0
- package/dist/assets/icons/IconSearch.vue.d.ts +32 -0
- package/dist/assets/icons/call/IconMic.vue.d.ts +14 -0
- package/dist/assets/icons/call/IconPhone.vue.d.ts +2 -0
- package/dist/assets/icons/call/IconPhoneCancel.vue.d.ts +2 -0
- package/dist/assets/icons/call/IconSpeaker.vue.d.ts +14 -0
- package/dist/assets/icons/customer-appointment/IconFilter.vue.d.ts +2 -0
- package/dist/assets/icons/customer-detail/IconArrow.vue.d.ts +2 -0
- package/dist/assets/icons/customer-detail/IconCheck.vue.d.ts +2 -0
- package/dist/assets/icons/customer-detail/IconDate.vue.d.ts +2 -0
- package/dist/assets/icons/customer-detail/IconGroup.vue.d.ts +2 -0
- package/dist/assets/icons/customer-detail/IconMessage.vue.d.ts +2 -0
- package/dist/assets/icons/customer-detail/IconNote.vue.d.ts +2 -0
- package/dist/assets/icons/customer-detail/IconPhone.vue.d.ts +2 -0
- package/dist/assets/icons/customer-detail/IconPin.vue.d.ts +2 -0
- package/dist/assets/icons/customer-detail/IconSearch.vue.d.ts +2 -0
- package/dist/chat/App.vue.d.ts +5 -0
- package/dist/chat/main.d.ts +6 -0
- package/dist/chat/page/customer-appointment/CustomerAppointment.vue.d.ts +2 -0
- package/dist/chat/page/customer-check-in/CollapseCheckIn.vue.d.ts +12 -0
- package/dist/chat/page/customer-check-in/CustomerCheckIn.vue.d.ts +2 -0
- package/dist/chat/page/customer-detail/CustomerDetail.vue.d.ts +7 -0
- package/dist/chat/page/customer-detail/SubInformation.vue.d.ts +16 -0
- package/dist/chat/page/error/Error.vue.d.ts +2 -0
- package/dist/chat/page/home/ChatList.vue.d.ts +20 -0
- package/dist/chat/page/home/ChatMessage.vue.d.ts +17 -0
- package/dist/chat/page/home/Home.vue.d.ts +14 -0
- package/dist/chat/page/home/HomeHeader.vue.d.ts +10 -0
- package/dist/chat/page/home/InputChat.vue.d.ts +19 -0
- package/dist/chat/page/home/NewCustomer.vue.d.ts +6 -0
- package/dist/components/ListenEvent.vue.d.ts +2 -0
- package/dist/components/chat/ScrollEvent/ScrollEvent.vue.d.ts +22 -0
- package/dist/components/chat/call/Calling.vue.d.ts +7 -0
- package/dist/components/chat/card/CardCustomerDetail.vue.d.ts +13 -0
- package/dist/components/chat/common/collapse/CollapseBase.vue.d.ts +20 -0
- package/dist/components/chat/common/input/InputSearch.vue.d.ts +16 -0
- package/dist/components/chat/common/popover/PopoverBase.vue.d.ts +35 -0
- package/dist/components/chat/common/spin/BaseSpin.vue.d.ts +2 -0
- package/dist/components/chat/customer/Avatar.vue.d.ts +12 -0
- package/dist/components/chat/layout/mobile/Footer.vue.d.ts +2 -0
- package/dist/components/common/CustomLoading.vue.d.ts +2 -0
- package/dist/components/common/Notification/NotificationDescription.vue.d.ts +7 -0
- package/dist/components/common/button/ButtonBase.vue.d.ts +22 -0
- package/dist/components/common/button/ButtonToggle.vue.d.ts +20 -0
- package/dist/components/common/checkbox/CCheckboxNumber.vue.d.ts +16 -0
- package/dist/components/common/collapse/BaseCollapse.vue.d.ts +12 -0
- package/dist/components/common/collapse/BaseCollapseItem.vue.d.ts +4 -0
- package/dist/components/common/drawer/DrawerBase.vue.d.ts +39 -0
- package/dist/components/common/dropdown/DropdownBase.vue.d.ts +21 -0
- package/dist/components/common/input/CInputSearch.vue.d.ts +14 -0
- package/dist/components/common/modal/ModalBase.vue.d.ts +35 -0
- package/dist/components/common/popover/PopoverBase.vue.d.ts +3 -0
- package/dist/components/common/slider/BaseSlider.vue.d.ts +11 -0
- package/dist/components/common/spin/CSpin.vue.d.ts +9 -0
- package/dist/components/common/tooltip/TooltipBase.vue.d.ts +2 -0
- package/dist/components/layout/Blank.vue.d.ts +9 -0
- package/dist/components/layout/Default.vue.d.ts +9 -0
- package/dist/components/modal/Confirm.vue.d.ts +2 -0
- package/dist/components/ui/button/CButton.vue.d.ts +19 -0
- package/dist/components/ui/button/c-button.d.ts +7 -0
- package/dist/components/ui/checkbox/Checkbox.vue.d.ts +18 -0
- package/dist/components/ui/checkbox/index.d.ts +1 -0
- package/dist/components/ui/collapsible/Collapsible.vue.d.ts +16 -0
- package/dist/components/ui/collapsible/CollapsibleContent.vue.d.ts +10 -0
- package/dist/components/ui/collapsible/CollapsibleTrigger.vue.d.ts +10 -0
- package/dist/components/ui/collapsible/index.d.ts +3 -0
- package/dist/components/ui/dialog/Dialog.vue.d.ts +14 -0
- package/dist/components/ui/dialog/DialogClose.vue.d.ts +10 -0
- package/dist/components/ui/dialog/DialogContent.vue.d.ts +29 -0
- package/dist/components/ui/dialog/DialogDescription.vue.d.ts +14 -0
- package/dist/components/ui/dialog/DialogFooter.vue.d.ts +13 -0
- package/dist/components/ui/dialog/DialogHeader.vue.d.ts +13 -0
- package/dist/components/ui/dialog/DialogScrollContent.vue.d.ts +30 -0
- package/dist/components/ui/dialog/DialogTitle.vue.d.ts +14 -0
- package/dist/components/ui/dialog/DialogTrigger.vue.d.ts +10 -0
- package/dist/components/ui/dialog/index.d.ts +9 -0
- package/dist/components/ui/drawer/Drawer.vue.d.ts +26 -0
- package/dist/components/ui/drawer/DrawerContent.vue.d.ts +33 -0
- package/dist/components/ui/drawer/DrawerDescription.vue.d.ts +14 -0
- package/dist/components/ui/drawer/DrawerFooter.vue.d.ts +13 -0
- package/dist/components/ui/drawer/DrawerHeader.vue.d.ts +13 -0
- package/dist/components/ui/drawer/DrawerOverlay.vue.d.ts +7 -0
- package/dist/components/ui/drawer/DrawerTitle.vue.d.ts +14 -0
- package/dist/components/ui/drawer/index.d.ts +8 -0
- package/dist/components/ui/dropdown-menu/DropdownMenu.vue.d.ts +14 -0
- package/dist/components/ui/dropdown-menu/DropdownMenuCheckboxItem.vue.d.ts +20 -0
- package/dist/components/ui/dropdown-menu/DropdownMenuContent.vue.d.ts +28 -0
- package/dist/components/ui/dropdown-menu/DropdownMenuGroup.vue.d.ts +10 -0
- package/dist/components/ui/dropdown-menu/DropdownMenuItem.vue.d.ts +15 -0
- package/dist/components/ui/dropdown-menu/DropdownMenuLabel.vue.d.ts +15 -0
- package/dist/components/ui/dropdown-menu/DropdownMenuRadioGroup.vue.d.ts +14 -0
- package/dist/components/ui/dropdown-menu/DropdownMenuRadioItem.vue.d.ts +18 -0
- package/dist/components/ui/dropdown-menu/DropdownMenuSeparator.vue.d.ts +7 -0
- package/dist/components/ui/dropdown-menu/DropdownMenuShortcut.vue.d.ts +13 -0
- package/dist/components/ui/dropdown-menu/DropdownMenuSub.vue.d.ts +14 -0
- package/dist/components/ui/dropdown-menu/DropdownMenuSubContent.vue.d.ts +30 -0
- package/dist/components/ui/dropdown-menu/DropdownMenuSubTrigger.vue.d.ts +14 -0
- package/dist/components/ui/dropdown-menu/DropdownMenuTrigger.vue.d.ts +10 -0
- package/dist/components/ui/dropdown-menu/index.d.ts +15 -0
- package/dist/components/ui/popover/Popover.vue.d.ts +14 -0
- package/dist/components/ui/popover/PopoverContent.vue.d.ts +28 -0
- package/dist/components/ui/popover/PopoverTrigger.vue.d.ts +10 -0
- package/dist/components/ui/popover/index.d.ts +3 -0
- package/dist/components/ui/radio-group/RadioGroup.vue.d.ts +18 -0
- package/dist/components/ui/radio-group/RadioGroupItem.vue.d.ts +7 -0
- package/dist/components/ui/radio-group/index.d.ts +2 -0
- package/dist/components/ui/slider/Slider.vue.d.ts +13 -0
- package/dist/components/ui/slider/index.d.ts +1 -0
- package/dist/components/ui/switch/Switch.vue.d.ts +18 -0
- package/dist/components/ui/switch/index.d.ts +1 -0
- package/dist/composable/useCallHelper.d.ts +23 -0
- package/dist/composable/useDigibot.d.ts +7 -0
- package/dist/composable/useInitData.d.ts +11 -0
- package/dist/composable/useModalConfirm.d.ts +5 -0
- package/dist/constant/color.d.ts +22 -0
- package/dist/constant/datetime.d.ts +5 -0
- package/dist/constant/general.d.ts +8 -0
- package/dist/constant/message.d.ts +8 -0
- package/dist/constant/mqtt.d.ts +4 -0
- package/dist/constant/user.d.ts +8 -0
- package/dist/lib/utils.d.ts +2 -0
- package/dist/plugins/axios-gci.d.ts +3 -0
- package/dist/plugins/axios.d.ts +3 -0
- package/dist/plugins/mqtt.d.ts +10 -0
- package/dist/plugins/sdk.d.ts +19 -0
- package/dist/plugins/websocket.d.ts +4 -0
- package/dist/style.css +1 -1
- package/dist/test/assets/icons/IconArrowLeft.vue.js +29 -0
- package/dist/test/assets/icons/IconPhone.vue.js +19 -0
- package/dist/test/assets/icons/IconPlan.vue.js +19 -0
- package/dist/test/assets/icons/IconPlus.vue.js +22 -0
- package/dist/test/assets/icons/IconSearch.vue.js +68 -0
- package/dist/test/assets/icons/call/IconMic.vue.js +123 -0
- package/dist/test/assets/icons/call/IconPhone.vue.js +35 -0
- package/dist/test/assets/icons/call/IconPhoneCancel.vue.js +35 -0
- package/dist/test/assets/icons/call/IconSpeaker.vue.js +62 -0
- package/dist/test/assets/icons/customer-appointment/IconFilter.vue.js +53 -0
- package/dist/test/assets/icons/customer-detail/IconArrow.vue.js +22 -0
- package/dist/test/assets/icons/customer-detail/IconCheck.vue.js +27 -0
- package/dist/test/assets/icons/customer-detail/IconDate.vue.js +43 -0
- package/dist/test/assets/icons/customer-detail/IconGroup.vue.js +48 -0
- package/dist/test/assets/icons/customer-detail/IconMessage.vue.js +28 -0
- package/dist/test/assets/icons/customer-detail/IconNote.vue.js +29 -0
- package/dist/test/assets/icons/customer-detail/IconPhone.vue.js +21 -0
- package/dist/test/assets/icons/customer-detail/IconPin.vue.js +29 -0
- package/dist/test/assets/icons/customer-detail/IconSearch.vue.js +29 -0
- package/dist/test/chat/App.vue.js +502 -0
- package/dist/test/chat/main.js +6 -0
- package/dist/test/chat/page/customer-appointment/CustomerAppointment.vue.js +207 -0
- package/dist/test/chat/page/customer-check-in/CollapseCheckIn.vue.js +80 -0
- package/dist/test/chat/page/customer-check-in/CustomerCheckIn.vue.js +136 -0
- package/dist/test/chat/page/customer-detail/CustomerDetail.vue.js +235 -0
- package/dist/test/chat/page/customer-detail/SubInformation.vue.js +102 -0
- package/dist/test/chat/page/error/Error.vue.js +64 -0
- package/dist/test/chat/page/home/ChatList.vue.js +387 -0
- package/dist/test/chat/page/home/ChatMessage.vue.js +295 -0
- package/dist/test/chat/page/home/Home.vue.js +332 -0
- package/dist/test/chat/page/home/HomeHeader.vue.js +127 -0
- package/dist/test/chat/page/home/InputChat.vue.js +255 -0
- package/dist/test/chat/page/home/NewCustomer.vue.js +84 -0
- package/dist/test/components/ListenEvent.vue.js +45 -0
- package/dist/test/components/chat/ScrollEvent/ScrollEvent.vue.js +197 -0
- package/dist/test/components/chat/call/Calling.vue.js +291 -0
- package/dist/test/components/chat/card/CardCustomerDetail.vue.js +28 -0
- package/dist/test/components/chat/common/collapse/CollapseBase.vue.js +59 -0
- package/dist/test/components/chat/common/input/InputSearch.vue.js +71 -0
- package/dist/test/components/chat/common/popover/PopoverBase.vue.js +148 -0
- package/dist/test/components/chat/common/spin/BaseSpin.vue.js +12 -0
- package/dist/test/components/chat/customer/Avatar.vue.js +101 -0
- package/dist/test/components/chat/layout/mobile/Footer.vue.js +109 -0
- package/dist/test/components/common/CustomLoading.vue.js +19 -0
- package/dist/test/components/common/Notification/NotificationDescription.vue.js +38 -0
- package/dist/test/components/common/button/ButtonBase.vue.js +78 -0
- package/dist/test/components/common/button/ButtonToggle.vue.js +70 -0
- package/dist/test/components/common/checkbox/CCheckboxNumber.vue.js +48 -0
- package/dist/test/components/common/collapse/BaseCollapse.vue.js +36 -0
- package/dist/test/components/common/collapse/BaseCollapseItem.vue.js +22 -0
- package/dist/test/components/common/drawer/DrawerBase.vue.js +126 -0
- package/dist/test/components/common/dropdown/DropdownBase.vue.js +91 -0
- package/dist/test/components/common/input/CInputSearch.vue.js +62 -0
- package/dist/test/components/common/modal/ModalBase.vue.js +164 -0
- package/dist/test/components/common/popover/PopoverBase.vue.js +36 -0
- package/dist/test/components/common/slider/BaseSlider.vue.js +70 -0
- package/dist/test/components/common/spin/CSpin.vue.js +41 -0
- package/dist/test/components/common/tooltip/TooltipBase.vue.js +8 -0
- package/dist/test/components/layout/Blank.vue.js +19 -0
- package/dist/test/components/layout/Default.vue.js +21 -0
- package/dist/test/components/modal/Confirm.vue.js +164 -0
- package/dist/test/components/ui/button/CButton.vue.js +49 -0
- package/dist/test/components/ui/button/c-button.js +26 -0
- package/dist/test/components/ui/checkbox/Checkbox.vue.js +79 -0
- package/dist/test/components/ui/checkbox/index.js +1 -0
- package/dist/test/components/ui/collapsible/Collapsible.vue.js +47 -0
- package/dist/test/components/ui/collapsible/CollapsibleContent.vue.js +41 -0
- package/dist/test/components/ui/collapsible/CollapsibleTrigger.vue.js +35 -0
- package/dist/test/components/ui/collapsible/index.js +3 -0
- package/dist/test/components/ui/dialog/Dialog.vue.js +42 -0
- package/dist/test/components/ui/dialog/DialogClose.vue.js +35 -0
- package/dist/test/components/ui/dialog/DialogContent.vue.js +84 -0
- package/dist/test/components/ui/dialog/DialogDescription.vue.js +43 -0
- package/dist/test/components/ui/dialog/DialogFooter.vue.js +26 -0
- package/dist/test/components/ui/dialog/DialogHeader.vue.js +26 -0
- package/dist/test/components/ui/dialog/DialogScrollContent.vue.js +99 -0
- package/dist/test/components/ui/dialog/DialogTitle.vue.js +43 -0
- package/dist/test/components/ui/dialog/DialogTrigger.vue.js +35 -0
- package/dist/test/components/ui/dialog/index.js +9 -0
- package/dist/test/components/ui/drawer/Drawer.vue.js +48 -0
- package/dist/test/components/ui/drawer/DrawerContent.vue.js +81 -0
- package/dist/test/components/ui/drawer/DrawerDescription.vue.js +42 -0
- package/dist/test/components/ui/drawer/DrawerFooter.vue.js +26 -0
- package/dist/test/components/ui/drawer/DrawerHeader.vue.js +26 -0
- package/dist/test/components/ui/drawer/DrawerOverlay.vue.js +37 -0
- package/dist/test/components/ui/drawer/DrawerTitle.vue.js +42 -0
- package/dist/test/components/ui/drawer/index.js +8 -0
- package/dist/test/components/ui/dropdown-menu/DropdownMenu.vue.js +41 -0
- package/dist/test/components/ui/dropdown-menu/DropdownMenuCheckboxItem.vue.js +79 -0
- package/dist/test/components/ui/dropdown-menu/DropdownMenuContent.vue.js +61 -0
- package/dist/test/components/ui/dropdown-menu/DropdownMenuGroup.vue.js +35 -0
- package/dist/test/components/ui/dropdown-menu/DropdownMenuItem.vue.js +43 -0
- package/dist/test/components/ui/dropdown-menu/DropdownMenuLabel.vue.js +43 -0
- package/dist/test/components/ui/dropdown-menu/DropdownMenuRadioGroup.vue.js +41 -0
- package/dist/test/components/ui/dropdown-menu/DropdownMenuRadioItem.vue.js +80 -0
- package/dist/test/components/ui/dropdown-menu/DropdownMenuSeparator.vue.js +37 -0
- package/dist/test/components/ui/dropdown-menu/DropdownMenuShortcut.vue.js +26 -0
- package/dist/test/components/ui/dropdown-menu/DropdownMenuSub.vue.js +41 -0
- package/dist/test/components/ui/dropdown-menu/DropdownMenuSubContent.vue.js +46 -0
- package/dist/test/components/ui/dropdown-menu/DropdownMenuSubTrigger.vue.js +58 -0
- package/dist/test/components/ui/dropdown-menu/DropdownMenuTrigger.vue.js +41 -0
- package/dist/test/components/ui/dropdown-menu/index.js +15 -0
- package/dist/test/components/ui/popover/Popover.vue.js +41 -0
- package/dist/test/components/ui/popover/PopoverContent.vue.js +60 -0
- package/dist/test/components/ui/popover/PopoverTrigger.vue.js +35 -0
- package/dist/test/components/ui/popover/index.js +3 -0
- package/dist/test/components/ui/radio-group/RadioGroup.vue.js +46 -0
- package/dist/test/components/ui/radio-group/RadioGroupItem.vue.js +71 -0
- package/dist/test/components/ui/radio-group/index.js +2 -0
- package/dist/test/components/ui/slider/Slider.vue.js +155 -0
- package/dist/test/components/ui/slider/index.js +1 -0
- package/dist/test/components/ui/switch/Switch.vue.js +61 -0
- package/dist/test/components/ui/switch/index.js +1 -0
- package/dist/test/composable/useCallHelper.js +170 -0
- package/dist/test/composable/useDigibot.js +22 -0
- package/dist/test/composable/useInitData.js +84 -0
- package/dist/test/composable/useModalConfirm.js +39 -0
- package/dist/test/constant/color.js +43 -0
- package/dist/test/constant/datetime.js +5 -0
- package/dist/test/constant/general.js +9 -0
- package/dist/test/constant/message.js +8 -0
- package/dist/test/constant/mqtt.js +11 -0
- package/dist/test/constant/user.js +9 -0
- package/dist/test/lib/utils.js +5 -0
- package/dist/test/plugins/axios-gci.js +25 -0
- package/dist/test/plugins/axios.js +85 -0
- package/dist/test/plugins/mqtt.js +128 -0
- package/dist/test/plugins/sdk.js +83 -0
- package/dist/test/plugins/websocket.js +65 -0
- package/dist/test/types/call.js +1 -0
- package/dist/test/types/chat/auth.js +1 -0
- package/dist/test/types/chat/global.js +1 -0
- package/dist/test/types/chat/promise.js +1 -0
- package/dist/test/types/chat/user.js +1 -0
- package/dist/test/types/conversation.js +1 -0
- package/dist/test/types/global.js +15 -0
- package/dist/test/types/message.js +1 -0
- package/dist/test/utils/chat/auth.js +51 -0
- package/dist/test/utils/chat/call.js +61 -0
- package/dist/test/utils/chat/chat-router.js +8 -0
- package/dist/test/utils/chat/conversation.js +7 -0
- package/dist/test/utils/chat/message.js +42 -0
- package/dist/test/utils/chat/user.js +33 -0
- package/dist/test/utils/debounce.js +9 -0
- package/dist/test/utils/json.js +18 -0
- package/dist/test/utils/logger.js +5 -0
- package/dist/test/utils/string-helper.js +27 -0
- package/dist/types/call.d.ts +4 -0
- package/dist/types/chat/auth.d.ts +37 -0
- package/dist/types/chat/global.d.ts +7 -0
- package/dist/types/chat/promise.d.ts +17 -0
- package/dist/types/chat/user.d.ts +88 -0
- package/dist/types/conversation.d.ts +18 -0
- package/dist/types/global.d.ts +11 -0
- package/dist/types/message.d.ts +43 -0
- package/dist/utils/chat/auth.d.ts +45 -0
- package/dist/utils/chat/call.d.ts +5 -0
- package/dist/utils/chat/chat-router.d.ts +3 -0
- package/dist/utils/chat/conversation.d.ts +3 -0
- package/dist/utils/chat/message.d.ts +17 -0
- package/dist/utils/chat/user.d.ts +193 -0
- package/dist/utils/debounce.d.ts +1 -0
- package/dist/utils/json.d.ts +2 -0
- package/dist/utils/logger.d.ts +3 -0
- package/dist/utils/string-helper.d.ts +1 -0
- package/package.json +1 -1
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
import type { DropdownMenuLabelProps } from "reka-ui";
|
|
2
|
+
import type { HTMLAttributes } from "vue";
|
|
3
|
+
type __VLS_Props = DropdownMenuLabelProps & {
|
|
4
|
+
class?: HTMLAttributes["class"];
|
|
5
|
+
inset?: boolean;
|
|
6
|
+
};
|
|
7
|
+
declare const _default: __VLS_WithSlots<import("vue").DefineComponent<__VLS_Props, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<__VLS_Props> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>, {
|
|
8
|
+
default?: ((props: {}) => any) | undefined;
|
|
9
|
+
}>;
|
|
10
|
+
export default _default;
|
|
11
|
+
type __VLS_WithSlots<T, S> = T & {
|
|
12
|
+
new (): {
|
|
13
|
+
$slots: S;
|
|
14
|
+
};
|
|
15
|
+
};
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
import type { DropdownMenuRadioGroupProps } from "reka-ui";
|
|
2
|
+
declare const _default: __VLS_WithSlots<import("vue").DefineComponent<DropdownMenuRadioGroupProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
3
|
+
"update:modelValue": (payload: string) => any;
|
|
4
|
+
}, string, import("vue").PublicProps, Readonly<DropdownMenuRadioGroupProps> & Readonly<{
|
|
5
|
+
"onUpdate:modelValue"?: ((payload: string) => any) | undefined;
|
|
6
|
+
}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>, {
|
|
7
|
+
default?: ((props: {}) => any) | undefined;
|
|
8
|
+
}>;
|
|
9
|
+
export default _default;
|
|
10
|
+
type __VLS_WithSlots<T, S> = T & {
|
|
11
|
+
new (): {
|
|
12
|
+
$slots: S;
|
|
13
|
+
};
|
|
14
|
+
};
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
import type { DropdownMenuRadioItemProps } from "reka-ui";
|
|
2
|
+
import type { HTMLAttributes } from "vue";
|
|
3
|
+
type __VLS_Props = DropdownMenuRadioItemProps & {
|
|
4
|
+
class?: HTMLAttributes["class"];
|
|
5
|
+
};
|
|
6
|
+
declare const _default: __VLS_WithSlots<import("vue").DefineComponent<__VLS_Props, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
7
|
+
select: (event: Event) => any;
|
|
8
|
+
}, string, import("vue").PublicProps, Readonly<__VLS_Props> & Readonly<{
|
|
9
|
+
onSelect?: ((event: Event) => any) | undefined;
|
|
10
|
+
}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>, {
|
|
11
|
+
default?: ((props: {}) => any) | undefined;
|
|
12
|
+
}>;
|
|
13
|
+
export default _default;
|
|
14
|
+
type __VLS_WithSlots<T, S> = T & {
|
|
15
|
+
new (): {
|
|
16
|
+
$slots: S;
|
|
17
|
+
};
|
|
18
|
+
};
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import type { DropdownMenuSeparatorProps } from "reka-ui";
|
|
2
|
+
import type { HTMLAttributes } from "vue";
|
|
3
|
+
type __VLS_Props = DropdownMenuSeparatorProps & {
|
|
4
|
+
class?: HTMLAttributes["class"];
|
|
5
|
+
};
|
|
6
|
+
declare const _default: import("vue").DefineComponent<__VLS_Props, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<__VLS_Props> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
|
7
|
+
export default _default;
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
import type { HTMLAttributes } from "vue";
|
|
2
|
+
type __VLS_Props = {
|
|
3
|
+
class?: HTMLAttributes["class"];
|
|
4
|
+
};
|
|
5
|
+
declare const _default: __VLS_WithSlots<import("vue").DefineComponent<__VLS_Props, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<__VLS_Props> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>, {
|
|
6
|
+
default?: ((props: {}) => any) | undefined;
|
|
7
|
+
}>;
|
|
8
|
+
export default _default;
|
|
9
|
+
type __VLS_WithSlots<T, S> = T & {
|
|
10
|
+
new (): {
|
|
11
|
+
$slots: S;
|
|
12
|
+
};
|
|
13
|
+
};
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
import type { DropdownMenuSubProps } from "reka-ui";
|
|
2
|
+
declare const _default: __VLS_WithSlots<import("vue").DefineComponent<DropdownMenuSubProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
3
|
+
"update:open": (payload: boolean) => any;
|
|
4
|
+
}, string, import("vue").PublicProps, Readonly<DropdownMenuSubProps> & Readonly<{
|
|
5
|
+
"onUpdate:open"?: ((payload: boolean) => any) | undefined;
|
|
6
|
+
}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>, {
|
|
7
|
+
default?: ((props: {}) => any) | undefined;
|
|
8
|
+
}>;
|
|
9
|
+
export default _default;
|
|
10
|
+
type __VLS_WithSlots<T, S> = T & {
|
|
11
|
+
new (): {
|
|
12
|
+
$slots: S;
|
|
13
|
+
};
|
|
14
|
+
};
|
|
@@ -0,0 +1,30 @@
|
|
|
1
|
+
import type { DropdownMenuSubContentProps } from "reka-ui";
|
|
2
|
+
import type { HTMLAttributes } from "vue";
|
|
3
|
+
type __VLS_Props = DropdownMenuSubContentProps & {
|
|
4
|
+
class?: HTMLAttributes["class"];
|
|
5
|
+
};
|
|
6
|
+
declare const _default: __VLS_WithSlots<import("vue").DefineComponent<__VLS_Props, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
7
|
+
escapeKeyDown: (event: KeyboardEvent) => any;
|
|
8
|
+
pointerDownOutside: (event: import("reka-ui").PointerDownOutsideEvent) => any;
|
|
9
|
+
focusOutside: (event: import("reka-ui").FocusOutsideEvent) => any;
|
|
10
|
+
interactOutside: (event: import("reka-ui").PointerDownOutsideEvent | import("reka-ui").FocusOutsideEvent) => any;
|
|
11
|
+
openAutoFocus: (event: Event) => any;
|
|
12
|
+
closeAutoFocus: (event: Event) => any;
|
|
13
|
+
entryFocus: (event: Event) => any;
|
|
14
|
+
}, string, import("vue").PublicProps, Readonly<__VLS_Props> & Readonly<{
|
|
15
|
+
onEscapeKeyDown?: ((event: KeyboardEvent) => any) | undefined;
|
|
16
|
+
onPointerDownOutside?: ((event: import("reka-ui").PointerDownOutsideEvent) => any) | undefined;
|
|
17
|
+
onFocusOutside?: ((event: import("reka-ui").FocusOutsideEvent) => any) | undefined;
|
|
18
|
+
onInteractOutside?: ((event: import("reka-ui").PointerDownOutsideEvent | import("reka-ui").FocusOutsideEvent) => any) | undefined;
|
|
19
|
+
onOpenAutoFocus?: ((event: Event) => any) | undefined;
|
|
20
|
+
onCloseAutoFocus?: ((event: Event) => any) | undefined;
|
|
21
|
+
onEntryFocus?: ((event: Event) => any) | undefined;
|
|
22
|
+
}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>, {
|
|
23
|
+
default?: ((props: {}) => any) | undefined;
|
|
24
|
+
}>;
|
|
25
|
+
export default _default;
|
|
26
|
+
type __VLS_WithSlots<T, S> = T & {
|
|
27
|
+
new (): {
|
|
28
|
+
$slots: S;
|
|
29
|
+
};
|
|
30
|
+
};
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
import type { DropdownMenuSubTriggerProps } from "reka-ui";
|
|
2
|
+
import type { HTMLAttributes } from "vue";
|
|
3
|
+
type __VLS_Props = DropdownMenuSubTriggerProps & {
|
|
4
|
+
class?: HTMLAttributes["class"];
|
|
5
|
+
};
|
|
6
|
+
declare const _default: __VLS_WithSlots<import("vue").DefineComponent<__VLS_Props, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<__VLS_Props> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>, {
|
|
7
|
+
default?: ((props: {}) => any) | undefined;
|
|
8
|
+
}>;
|
|
9
|
+
export default _default;
|
|
10
|
+
type __VLS_WithSlots<T, S> = T & {
|
|
11
|
+
new (): {
|
|
12
|
+
$slots: S;
|
|
13
|
+
};
|
|
14
|
+
};
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
import type { DropdownMenuTriggerProps } from "reka-ui";
|
|
2
|
+
declare const _default: __VLS_WithSlots<import("vue").DefineComponent<DropdownMenuTriggerProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<DropdownMenuTriggerProps> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>, {
|
|
3
|
+
default?: ((props: {}) => any) | undefined;
|
|
4
|
+
}>;
|
|
5
|
+
export default _default;
|
|
6
|
+
type __VLS_WithSlots<T, S> = T & {
|
|
7
|
+
new (): {
|
|
8
|
+
$slots: S;
|
|
9
|
+
};
|
|
10
|
+
};
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
export { default as DropdownMenu } from "./DropdownMenu.vue";
|
|
2
|
+
export { default as DropdownMenuCheckboxItem } from "./DropdownMenuCheckboxItem.vue";
|
|
3
|
+
export { default as DropdownMenuContent } from "./DropdownMenuContent.vue";
|
|
4
|
+
export { default as DropdownMenuGroup } from "./DropdownMenuGroup.vue";
|
|
5
|
+
export { default as DropdownMenuItem } from "./DropdownMenuItem.vue";
|
|
6
|
+
export { default as DropdownMenuLabel } from "./DropdownMenuLabel.vue";
|
|
7
|
+
export { default as DropdownMenuRadioGroup } from "./DropdownMenuRadioGroup.vue";
|
|
8
|
+
export { default as DropdownMenuRadioItem } from "./DropdownMenuRadioItem.vue";
|
|
9
|
+
export { default as DropdownMenuSeparator } from "./DropdownMenuSeparator.vue";
|
|
10
|
+
export { default as DropdownMenuShortcut } from "./DropdownMenuShortcut.vue";
|
|
11
|
+
export { default as DropdownMenuSub } from "./DropdownMenuSub.vue";
|
|
12
|
+
export { default as DropdownMenuSubContent } from "./DropdownMenuSubContent.vue";
|
|
13
|
+
export { default as DropdownMenuSubTrigger } from "./DropdownMenuSubTrigger.vue";
|
|
14
|
+
export { default as DropdownMenuTrigger } from "./DropdownMenuTrigger.vue";
|
|
15
|
+
export { DropdownMenuPortal } from "reka-ui";
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
import type { PopoverRootProps } from "reka-ui";
|
|
2
|
+
declare const _default: __VLS_WithSlots<import("vue").DefineComponent<PopoverRootProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
3
|
+
"update:open": (value: boolean) => any;
|
|
4
|
+
}, string, import("vue").PublicProps, Readonly<PopoverRootProps> & Readonly<{
|
|
5
|
+
"onUpdate:open"?: ((value: boolean) => any) | undefined;
|
|
6
|
+
}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>, {
|
|
7
|
+
default?: ((props: {}) => any) | undefined;
|
|
8
|
+
}>;
|
|
9
|
+
export default _default;
|
|
10
|
+
type __VLS_WithSlots<T, S> = T & {
|
|
11
|
+
new (): {
|
|
12
|
+
$slots: S;
|
|
13
|
+
};
|
|
14
|
+
};
|
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
import type { PopoverContentProps } from "reka-ui";
|
|
2
|
+
import type { HTMLAttributes } from "vue";
|
|
3
|
+
type __VLS_Props = PopoverContentProps & {
|
|
4
|
+
class?: HTMLAttributes["class"];
|
|
5
|
+
};
|
|
6
|
+
declare const _default: __VLS_WithSlots<import("vue").DefineComponent<__VLS_Props, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
7
|
+
escapeKeyDown: (event: KeyboardEvent) => any;
|
|
8
|
+
pointerDownOutside: (event: import("reka-ui").PointerDownOutsideEvent) => any;
|
|
9
|
+
focusOutside: (event: import("reka-ui").FocusOutsideEvent) => any;
|
|
10
|
+
interactOutside: (event: import("reka-ui").PointerDownOutsideEvent | import("reka-ui").FocusOutsideEvent) => any;
|
|
11
|
+
openAutoFocus: (event: Event) => any;
|
|
12
|
+
closeAutoFocus: (event: Event) => any;
|
|
13
|
+
}, string, import("vue").PublicProps, Readonly<__VLS_Props> & Readonly<{
|
|
14
|
+
onEscapeKeyDown?: ((event: KeyboardEvent) => any) | undefined;
|
|
15
|
+
onPointerDownOutside?: ((event: import("reka-ui").PointerDownOutsideEvent) => any) | undefined;
|
|
16
|
+
onFocusOutside?: ((event: import("reka-ui").FocusOutsideEvent) => any) | undefined;
|
|
17
|
+
onInteractOutside?: ((event: import("reka-ui").PointerDownOutsideEvent | import("reka-ui").FocusOutsideEvent) => any) | undefined;
|
|
18
|
+
onOpenAutoFocus?: ((event: Event) => any) | undefined;
|
|
19
|
+
onCloseAutoFocus?: ((event: Event) => any) | undefined;
|
|
20
|
+
}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>, {
|
|
21
|
+
default?: ((props: {}) => any) | undefined;
|
|
22
|
+
}>;
|
|
23
|
+
export default _default;
|
|
24
|
+
type __VLS_WithSlots<T, S> = T & {
|
|
25
|
+
new (): {
|
|
26
|
+
$slots: S;
|
|
27
|
+
};
|
|
28
|
+
};
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
import type { PopoverTriggerProps } from "reka-ui";
|
|
2
|
+
declare const _default: __VLS_WithSlots<import("vue").DefineComponent<PopoverTriggerProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<PopoverTriggerProps> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>, {
|
|
3
|
+
default?: ((props: {}) => any) | undefined;
|
|
4
|
+
}>;
|
|
5
|
+
export default _default;
|
|
6
|
+
type __VLS_WithSlots<T, S> = T & {
|
|
7
|
+
new (): {
|
|
8
|
+
$slots: S;
|
|
9
|
+
};
|
|
10
|
+
};
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
import type { RadioGroupRootProps } from "reka-ui";
|
|
2
|
+
import type { HTMLAttributes } from "vue";
|
|
3
|
+
type __VLS_Props = RadioGroupRootProps & {
|
|
4
|
+
class?: HTMLAttributes["class"];
|
|
5
|
+
};
|
|
6
|
+
declare const _default: __VLS_WithSlots<import("vue").DefineComponent<__VLS_Props, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
7
|
+
"update:modelValue": (payload: string) => any;
|
|
8
|
+
}, string, import("vue").PublicProps, Readonly<__VLS_Props> & Readonly<{
|
|
9
|
+
"onUpdate:modelValue"?: ((payload: string) => any) | undefined;
|
|
10
|
+
}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>, {
|
|
11
|
+
default?: ((props: {}) => any) | undefined;
|
|
12
|
+
}>;
|
|
13
|
+
export default _default;
|
|
14
|
+
type __VLS_WithSlots<T, S> = T & {
|
|
15
|
+
new (): {
|
|
16
|
+
$slots: S;
|
|
17
|
+
};
|
|
18
|
+
};
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import type { RadioGroupItemProps } from "reka-ui";
|
|
2
|
+
import type { HTMLAttributes } from "vue";
|
|
3
|
+
type __VLS_Props = RadioGroupItemProps & {
|
|
4
|
+
class?: HTMLAttributes["class"];
|
|
5
|
+
};
|
|
6
|
+
declare const _default: import("vue").DefineComponent<__VLS_Props, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<__VLS_Props> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
|
7
|
+
export default _default;
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
import type { SliderRootProps } from 'reka-ui';
|
|
2
|
+
import type { HTMLAttributes } from 'vue';
|
|
3
|
+
type __VLS_Props = SliderRootProps & {
|
|
4
|
+
class?: HTMLAttributes['class'];
|
|
5
|
+
};
|
|
6
|
+
declare const _default: import("vue").DefineComponent<__VLS_Props, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
7
|
+
"update:modelValue": (payload: number[] | undefined) => any;
|
|
8
|
+
valueCommit: (payload: number[]) => any;
|
|
9
|
+
}, string, import("vue").PublicProps, Readonly<__VLS_Props> & Readonly<{
|
|
10
|
+
"onUpdate:modelValue"?: ((payload: number[] | undefined) => any) | undefined;
|
|
11
|
+
onValueCommit?: ((payload: number[]) => any) | undefined;
|
|
12
|
+
}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
|
13
|
+
export default _default;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export { default as CSlider } from "./Slider.vue";
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
import type { SwitchRootProps } from 'reka-ui';
|
|
2
|
+
import type { HTMLAttributes } from 'vue';
|
|
3
|
+
type __VLS_Props = SwitchRootProps & {
|
|
4
|
+
class?: HTMLAttributes['class'];
|
|
5
|
+
};
|
|
6
|
+
declare const _default: __VLS_WithSlots<import("vue").DefineComponent<__VLS_Props, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
7
|
+
"update:modelValue": (payload: boolean) => any;
|
|
8
|
+
}, string, import("vue").PublicProps, Readonly<__VLS_Props> & Readonly<{
|
|
9
|
+
"onUpdate:modelValue"?: ((payload: boolean) => any) | undefined;
|
|
10
|
+
}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>, {
|
|
11
|
+
thumb?: ((props: {}) => any) | undefined;
|
|
12
|
+
}>;
|
|
13
|
+
export default _default;
|
|
14
|
+
type __VLS_WithSlots<T, S> = T & {
|
|
15
|
+
new (): {
|
|
16
|
+
$slots: S;
|
|
17
|
+
};
|
|
18
|
+
};
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export { default as CSwitch } from "./Switch.vue";
|
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
import type { IResUser } from '../types/message';
|
|
2
|
+
type Offer = {
|
|
3
|
+
link: string;
|
|
4
|
+
offer: any;
|
|
5
|
+
user: any;
|
|
6
|
+
server: any;
|
|
7
|
+
};
|
|
8
|
+
export declare function useCallHelper(): {
|
|
9
|
+
call: (user: IResUser) => Promise<void>;
|
|
10
|
+
end: (link: any) => void;
|
|
11
|
+
endPc: (link: any) => void;
|
|
12
|
+
handleOfferResponse: (data: {
|
|
13
|
+
link: string;
|
|
14
|
+
answer: any;
|
|
15
|
+
}) => Promise<void>;
|
|
16
|
+
handleOffer: (data: Offer) => Promise<boolean>;
|
|
17
|
+
addIceCandidate: (data: {
|
|
18
|
+
link: string;
|
|
19
|
+
candidate: any;
|
|
20
|
+
}) => Promise<void>;
|
|
21
|
+
sendOfferOk: () => Promise<boolean | undefined>;
|
|
22
|
+
};
|
|
23
|
+
export {};
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import type { PAGE_RESPONSE } from '../types/chat/global';
|
|
2
|
+
export declare const isRouterReady: import("vue").Ref<boolean, boolean>;
|
|
3
|
+
export declare function useInitData(): {
|
|
4
|
+
NOTIFY_ID_APPOINTMENT_NAME: string;
|
|
5
|
+
initPage: (data: {
|
|
6
|
+
id?: string;
|
|
7
|
+
token?: string;
|
|
8
|
+
domain?: string;
|
|
9
|
+
response: PAGE_RESPONSE;
|
|
10
|
+
}) => Promise<void>;
|
|
11
|
+
};
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
export declare const enum Status_Color {
|
|
2
|
+
Orange = "#F2994A",
|
|
3
|
+
Blue_Teal = "#F2994A"
|
|
4
|
+
}
|
|
5
|
+
declare const enum Color {
|
|
6
|
+
Primary = "#0051E6",
|
|
7
|
+
Primary_Hover = "#699FF5",
|
|
8
|
+
Primary_RGB = "41, 121, 255",
|
|
9
|
+
Error = "#ff3b3b",
|
|
10
|
+
Error_Hover = "#FF8A75",
|
|
11
|
+
Success = "#1DA91D",
|
|
12
|
+
Success_Hover = "#5FD9A0",
|
|
13
|
+
Success_Bg = "#E9FFE4",
|
|
14
|
+
Warning = "#f3a22c",
|
|
15
|
+
Text = "#333333",
|
|
16
|
+
Link = "#1890ff",
|
|
17
|
+
Default_Appointment = "#rgb(244, 185, 124)",
|
|
18
|
+
Done_Appointment = "#00d652",
|
|
19
|
+
Cancel_Appointment = "#ff0000"
|
|
20
|
+
}
|
|
21
|
+
export default Color;
|
|
22
|
+
export declare function defineRootColor(): void;
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
/// <reference path="../../env.d.ts" />
|
|
2
|
+
import mqtt from 'mqtt/dist/mqtt.min';
|
|
3
|
+
export declare const connectMqtt: () => Promise<void>;
|
|
4
|
+
export declare const disconnectMqtt: () => void;
|
|
5
|
+
export declare const subscribeToTopic: (topic: string) => void;
|
|
6
|
+
export declare const unsubscribeFromTopic: (topic: string) => void;
|
|
7
|
+
export declare const publishMessage: (topic: string, payload: any) => void;
|
|
8
|
+
export declare const addHandleMqttMessage: (key: string, topic: string, callBack: any) => void;
|
|
9
|
+
export declare const removeHandleMqttMessage: (key: string) => void;
|
|
10
|
+
export declare const getMqttInstance: () => mqtt.MqttClient | null;
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
import { GapMiniAppSdk } from 'gap-miniapp-sdk';
|
|
2
|
+
declare const baseSdk: import("gap-nodejs-sdk/dist/api/base_api").default;
|
|
3
|
+
declare const gapMiniAppSdk: {
|
|
4
|
+
getInstance: () => GapMiniAppSdk;
|
|
5
|
+
getAccessToken: () => Promise<{
|
|
6
|
+
domain: string;
|
|
7
|
+
gClient: string;
|
|
8
|
+
token: string;
|
|
9
|
+
}>;
|
|
10
|
+
};
|
|
11
|
+
declare const sdkInit: (data: {
|
|
12
|
+
id?: string;
|
|
13
|
+
token?: string;
|
|
14
|
+
domain?: string;
|
|
15
|
+
}) => Promise<{
|
|
16
|
+
status: boolean;
|
|
17
|
+
tenant_error?: boolean;
|
|
18
|
+
}>;
|
|
19
|
+
export { sdkInit, gapMiniAppSdk, baseSdk };
|