agora-appbuilder-core 4.0.0-beta.25 → 4.0.0-beta.26

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 (246) hide show
  1. package/package.json +2 -2
  2. package/template/Gulpfile.js +25 -25
  3. package/template/_package-lock.json +578 -21
  4. package/template/agora-rn-uikit/src/AgoraUIKit.tsx +6 -6
  5. package/template/agora-rn-uikit/src/Contexts/ContentContext.tsx +10 -0
  6. package/template/agora-rn-uikit/src/Contexts/DispatchContext.tsx +22 -0
  7. package/template/agora-rn-uikit/src/Contexts/LocalUserContext.tsx +6 -6
  8. package/template/agora-rn-uikit/src/Contexts/PropsContext.tsx +14 -10
  9. package/template/agora-rn-uikit/src/Contexts/RtcContext.tsx +25 -16
  10. package/template/agora-rn-uikit/src/Controls/Icons.ts +18 -0
  11. package/template/agora-rn-uikit/src/Controls/Local/LocalAudioMute.tsx +4 -2
  12. package/template/agora-rn-uikit/src/Controls/Local/LocalVideoMute.tsx +4 -2
  13. package/template/agora-rn-uikit/src/Controls/Local/Recording.tsx +0 -2
  14. package/template/agora-rn-uikit/src/Controls/Local/SwitchCamera.tsx +6 -6
  15. package/template/agora-rn-uikit/src/Controls/LocalControls.tsx +5 -5
  16. package/template/agora-rn-uikit/src/Controls/Remote/RemoteAudioMute.tsx +4 -4
  17. package/template/agora-rn-uikit/src/Controls/Remote/RemoteVideoMute.tsx +4 -4
  18. package/template/agora-rn-uikit/src/Controls/RemoteControls.tsx +2 -2
  19. package/template/agora-rn-uikit/src/Reducer/ActiveSpeaker.ts +30 -0
  20. package/template/agora-rn-uikit/src/Reducer/LocalMuteAudio.ts +6 -7
  21. package/template/agora-rn-uikit/src/Reducer/LocalMuteVideo.ts +6 -7
  22. package/template/agora-rn-uikit/src/Reducer/LocalPermissionState.ts +6 -7
  23. package/template/agora-rn-uikit/src/Reducer/RemoteAudioStateChanged.ts +6 -7
  24. package/template/agora-rn-uikit/src/Reducer/RemoteVideoStateChanged.ts +7 -8
  25. package/template/agora-rn-uikit/src/Reducer/UpdateDualStreamMode.ts +7 -8
  26. package/template/agora-rn-uikit/src/Reducer/UserJoined.ts +10 -12
  27. package/template/agora-rn-uikit/src/Reducer/UserMuteRemoteAudio.ts +6 -7
  28. package/template/agora-rn-uikit/src/Reducer/UserMuteRemoteVideo.ts +6 -7
  29. package/template/agora-rn-uikit/src/Reducer/UserOffline.ts +5 -6
  30. package/template/agora-rn-uikit/src/Reducer/UserPin.ts +20 -3
  31. package/template/agora-rn-uikit/src/Reducer/UserSecondaryPin.ts +23 -0
  32. package/template/agora-rn-uikit/src/Reducer/index.ts +2 -1
  33. package/template/agora-rn-uikit/src/Rtc/Create.tsx +1 -36
  34. package/template/agora-rn-uikit/src/Rtc/Join.tsx +5 -4
  35. package/template/agora-rn-uikit/src/RtcConfigure.tsx +157 -69
  36. package/template/agora-rn-uikit/src/Views/MaxVideoView.native.tsx +2 -2
  37. package/template/agora-rn-uikit/src/Views/MaxVideoView.tsx +2 -2
  38. package/template/agora-rn-uikit/src/Views/MinVideoView.tsx +2 -2
  39. package/template/agora-rn-uikit/src/index.ts +14 -8
  40. package/template/bridge/rtc/webNg/RtcEngine.ts +6 -5
  41. package/template/customization-api/action-library.ts +4 -16
  42. package/template/customization-api/app-state.ts +15 -8
  43. package/template/customization-api/customEvents.ts +7 -2
  44. package/template/customization-api/customize.ts +1 -1
  45. package/template/customization-api/index.ts +4 -0
  46. package/template/customization-api/sub-components.ts +16 -16
  47. package/template/customization-api/temp.ts +39 -0
  48. package/template/customization-api/typeDefinition.ts +14 -40
  49. package/template/customization-api/types.ts +7 -0
  50. package/template/customization-api/utils.ts +3 -0
  51. package/template/global.d.ts +7 -0
  52. package/template/package.json +4 -1
  53. package/template/react-native-toast-message/src/components/checkbox.js +1 -1
  54. package/template/src/App.tsx +41 -13
  55. package/template/src/SDKAppWrapper.tsx +7 -7
  56. package/template/src/app-state/useLocalUserInfo.ts +3 -3
  57. package/template/src/app-state/useNoiseSupression.native.tsx +67 -0
  58. package/template/src/app-state/useNoiseSupression.tsx +100 -0
  59. package/template/src/app-state/useVideoQuality.tsx +39 -0
  60. package/template/src/assets/fonts/icomoon.ttf +0 -0
  61. package/template/src/assets/selection.json +1 -1
  62. package/template/src/atoms/ActionMenu.tsx +49 -12
  63. package/template/src/atoms/CustomIcon.tsx +6 -0
  64. package/template/src/atoms/IconButton.tsx +2 -1
  65. package/template/src/atoms/ImageIcon.tsx +12 -2
  66. package/template/src/atoms/InviteInfo.tsx +4 -4
  67. package/template/src/atoms/ParticipantsCount.tsx +6 -2
  68. package/template/src/atoms/RecordingInfo.tsx +7 -4
  69. package/template/src/atoms/Toolbar.tsx +99 -0
  70. package/template/src/atoms/ToolbarItem.tsx +85 -0
  71. package/template/src/atoms/ToolbarMenu.tsx +40 -0
  72. package/template/src/atoms/ToolbarMenuItem.tsx +104 -0
  73. package/template/src/atoms/ToolbarPreset.tsx +71 -0
  74. package/template/src/components/Chat.tsx +84 -72
  75. package/template/src/components/Controls.tsx +431 -173
  76. package/template/src/components/Controls1.native.tsx +2 -2
  77. package/template/src/components/DeviceConfigure.tsx +28 -22
  78. package/template/src/components/EventsConfigure.tsx +153 -25
  79. package/template/src/components/GridVideo.tsx +15 -8
  80. package/template/src/components/Leftbar.tsx +110 -0
  81. package/template/src/components/Navbar.tsx +282 -141
  82. package/template/src/components/NavbarMobile.tsx +119 -0
  83. package/template/src/components/NetworkQualityContext.tsx +2 -2
  84. package/template/src/components/ParticipantsView.tsx +45 -12
  85. package/template/src/components/PinnedVideo.tsx +171 -117
  86. package/template/src/components/Precall.native.tsx +3 -3
  87. package/template/src/components/Precall.tsx +95 -26
  88. package/template/src/components/RTMConfigure.tsx +71 -22
  89. package/template/src/components/Rightbar.tsx +112 -0
  90. package/template/src/components/SdkApiContext.tsx +24 -24
  91. package/template/src/components/SdkMuteToggleListener.tsx +8 -12
  92. package/template/src/components/Settings.tsx +30 -2
  93. package/template/src/components/Share.tsx +7 -7
  94. package/template/src/components/WhiteboardLayout.tsx +291 -0
  95. package/template/src/components/chat-messages/useChatMessages.tsx +69 -64
  96. package/template/src/components/chat-ui/{useChatUIControl.tsx → useChatUIControls.tsx} +29 -29
  97. package/template/src/components/contexts/LiveStreamDataContext.tsx +10 -9
  98. package/template/src/components/contexts/VideoMeetingDataContext.tsx +6 -6
  99. package/template/src/components/contexts/WaitingRoomContext.tsx +41 -0
  100. package/template/src/components/contexts/WhiteboardContext.tsx +54 -54
  101. package/template/src/components/disable-chat/useDisableChat.tsx +32 -0
  102. package/template/src/components/livestream/LiveStreamContext.tsx +23 -23
  103. package/template/src/components/livestream/views/LiveStreamControls.tsx +5 -10
  104. package/template/src/components/participants/AllAudienceParticipants.tsx +15 -15
  105. package/template/src/components/participants/AllHostParticipants.tsx +16 -14
  106. package/template/src/components/participants/Participant.tsx +36 -14
  107. package/template/src/components/participants/ParticipantSectionTitle.tsx +2 -2
  108. package/template/src/components/participants/ScreenshareParticipants.tsx +2 -2
  109. package/template/src/components/participants/UserActionMenuOptions.tsx +153 -47
  110. package/template/src/components/participants/WaitingRoomParticipants.tsx +64 -0
  111. package/template/src/components/popups/InvitePopup.tsx +1 -1
  112. package/template/src/components/precall/LocalMute.tsx +66 -31
  113. package/template/src/components/precall/PermissionHelper.tsx +4 -4
  114. package/template/src/components/precall/VideoPreview.native.tsx +4 -4
  115. package/template/src/components/precall/VideoPreview.tsx +80 -25
  116. package/template/src/components/precall/index.tsx +2 -0
  117. package/template/src/components/precall/joinCallBtn.native.tsx +2 -2
  118. package/template/src/components/precall/joinCallBtn.tsx +2 -2
  119. package/template/src/components/precall/joinWaitingRoomBtn.native.tsx +137 -0
  120. package/template/src/components/precall/joinWaitingRoomBtn.tsx +211 -0
  121. package/template/src/components/precall/meetingTitle.tsx +10 -6
  122. package/template/src/components/precall/textInput.tsx +2 -2
  123. package/template/src/components/precall/usePreCall.tsx +4 -4
  124. package/template/src/components/{meeting-info/useMeetingInfo.tsx → room-info/useRoomInfo.tsx} +20 -12
  125. package/template/src/components/{meeting-info/useSetMeetingInfo.tsx → room-info/useSetRoomInfo.tsx} +12 -12
  126. package/template/src/components/useShareLink.tsx +9 -9
  127. package/template/src/components/useUserPreference.tsx +9 -5
  128. package/template/src/components/useVideoCall.tsx +42 -13
  129. package/template/src/components/virtual-background/VBButton.tsx +34 -0
  130. package/template/src/components/virtual-background/VBPanel.tsx +378 -0
  131. package/template/src/components/virtual-background/VideoPreview.tsx +139 -0
  132. package/template/src/components/virtual-background/images/beach.jpg +0 -0
  133. package/template/src/components/virtual-background/images/bedroom.jpg +0 -0
  134. package/template/src/components/virtual-background/images/book.jpg +0 -0
  135. package/template/src/components/virtual-background/images/earth.jpg +0 -0
  136. package/template/src/components/virtual-background/images/lamp.jpg +0 -0
  137. package/template/src/components/virtual-background/images/mountains.jpg +0 -0
  138. package/template/src/components/virtual-background/images/office.jpg +0 -0
  139. package/template/src/components/virtual-background/images/office1.jpg +0 -0
  140. package/template/src/components/virtual-background/images/plants.jpg +0 -0
  141. package/template/src/components/virtual-background/images/sky.jpg +0 -0
  142. package/template/src/components/virtual-background/images/wall.jpg +0 -0
  143. package/template/src/components/virtual-background/useVB.native.tsx +120 -0
  144. package/template/src/components/virtual-background/useVB.tsx +323 -0
  145. package/template/src/components/whiteboard/WhiteboardButton.tsx +98 -0
  146. package/template/src/components/whiteboard/WhiteboardCanvas.tsx +88 -0
  147. package/template/src/components/whiteboard/WhiteboardConfigure.native.tsx +59 -0
  148. package/template/src/components/whiteboard/WhiteboardConfigure.tsx +142 -0
  149. package/template/src/components/whiteboard/WhiteboardToolBox.tsx +666 -0
  150. package/template/src/components/whiteboard/WhiteboardView.tsx +75 -0
  151. package/template/src/components/whiteboard/WhiteboardWrapper.tsx +26 -0
  152. package/template/src/language/default-labels/createScreenLabels.ts +3 -3
  153. package/template/src/language/default-labels/joinScreenLabels.ts +2 -2
  154. package/template/src/language/default-labels/precallScreenLabels.ts +5 -2
  155. package/template/src/language/default-labels/shareLinkScreenLabels.ts +5 -5
  156. package/template/src/language/default-labels/videoCallScreenLabels.ts +5 -5
  157. package/template/src/pages/Create.tsx +16 -14
  158. package/template/src/pages/Endcall.tsx +2 -2
  159. package/template/src/pages/Join.tsx +15 -15
  160. package/template/src/pages/VideoCall.tsx +121 -106
  161. package/template/src/pages/video-call/ActionSheet.native.tsx +9 -12
  162. package/template/src/pages/video-call/ActionSheet.tsx +31 -26
  163. package/template/src/pages/video-call/ActionSheetContent.tsx +255 -309
  164. package/template/src/pages/video-call/DefaultLayouts.ts +14 -8
  165. package/template/src/pages/video-call/NameWithMicIcon.tsx +27 -63
  166. package/template/src/pages/video-call/RenderComponent.tsx +13 -30
  167. package/template/src/pages/video-call/SidePanelHeader.tsx +55 -33
  168. package/template/src/pages/video-call/VideoCallMobileView.tsx +100 -52
  169. package/template/src/pages/video-call/VideoCallScreen.native.tsx +1 -24
  170. package/template/src/pages/video-call/VideoCallScreen.tsx +192 -65
  171. package/template/src/pages/video-call/VideoComponent.tsx +11 -8
  172. package/template/src/pages/video-call/VideoRenderer.tsx +124 -67
  173. package/template/src/pages/video-call/VisibilitySensor.tsx +104 -0
  174. package/template/src/pages/video-call/index.ts +42 -8
  175. package/template/src/rtm-events/constants.ts +9 -1
  176. package/template/src/rtm-events-api/Events.ts +4 -4
  177. package/template/src/rtm-events-api/LocalEvents.ts +6 -0
  178. package/template/src/rtm-events-api/types.ts +5 -5
  179. package/template/src/subComponents/ChatBubble.tsx +7 -6
  180. package/template/src/subComponents/ChatContainer.tsx +50 -36
  181. package/template/src/subComponents/ChatInput.ios.tsx +23 -85
  182. package/template/src/subComponents/ChatInput.tsx +21 -79
  183. package/template/src/subComponents/CopyJoinInfo.tsx +27 -7
  184. package/template/src/subComponents/EndcallPopup.tsx +1 -1
  185. package/template/src/subComponents/FallbackLogo.tsx +2 -2
  186. package/template/src/subComponents/LayoutIconButton.tsx +28 -12
  187. package/template/src/subComponents/LayoutIconDropdown.tsx +7 -7
  188. package/template/src/subComponents/LocalAudioMute.tsx +54 -14
  189. package/template/src/subComponents/LocalEndCall.tsx +37 -13
  190. package/template/src/subComponents/LocalSwitchCamera.tsx +34 -10
  191. package/template/src/subComponents/LocalVideoMute.tsx +51 -13
  192. package/template/src/subComponents/NetworkQualityPill.tsx +15 -15
  193. package/template/src/subComponents/Recording.tsx +26 -5
  194. package/template/src/subComponents/RemoteAudioMute.tsx +3 -3
  195. package/template/src/subComponents/RemoteVideoMute.tsx +3 -3
  196. package/template/src/subComponents/RemoveMeetingPopup.tsx +1 -1
  197. package/template/src/subComponents/SidePanelButtons.ts +0 -3
  198. package/template/src/subComponents/SidePanelEnum.tsx +1 -0
  199. package/template/src/subComponents/caption/Caption.tsx +9 -9
  200. package/template/src/subComponents/caption/CaptionContainer.tsx +6 -12
  201. package/template/src/subComponents/caption/CaptionIcon.tsx +3 -24
  202. package/template/src/subComponents/caption/Transcript.tsx +10 -20
  203. package/template/src/subComponents/caption/TranscriptIcon.tsx +1 -5
  204. package/template/src/subComponents/caption/useSTTAPI.tsx +9 -9
  205. package/template/src/subComponents/caption/useTranscriptDownload.native.ts +7 -7
  206. package/template/src/subComponents/caption/useTranscriptDownload.ts +4 -4
  207. package/template/src/subComponents/caption/utils.ts +12 -12
  208. package/template/src/subComponents/chat/ChatParticipants.tsx +10 -9
  209. package/template/src/subComponents/livestream/CurrentLiveStreamRequestsView.tsx +5 -5
  210. package/template/src/subComponents/livestream/controls/LocalRaiseHand.tsx +64 -31
  211. package/template/src/subComponents/livestream/controls/RemoteLiveStreamApprovedRequestRecall.tsx +2 -2
  212. package/template/src/subComponents/recording/useRecording.tsx +8 -8
  213. package/template/src/subComponents/screenshare/ScreenshareButton.tsx +7 -2
  214. package/template/src/subComponents/screenshare/ScreenshareConfigure.native.tsx +64 -22
  215. package/template/src/subComponents/screenshare/ScreenshareConfigure.tsx +82 -32
  216. package/template/src/subComponents/waiting-rooms/WaitingRoomControls.tsx +72 -0
  217. package/template/src/subComponents/waiting-rooms/useWaitingRoomAPI.ts +77 -0
  218. package/template/src/utils/book.jpg +0 -0
  219. package/template/src/utils/common.tsx +5 -0
  220. package/template/src/utils/useActionSheet.tsx +50 -0
  221. package/template/src/utils/{useIsActiveSpeaker.ts → useActiveSpeaker.ts} +21 -10
  222. package/template/src/utils/{useCreateMeeting.ts → useCreateRoom.ts} +19 -14
  223. package/template/src/utils/useFindActiveSpeaker.ts +43 -36
  224. package/template/src/utils/useGetMeetingPhrase.ts +10 -10
  225. package/template/src/utils/useIsAudioEnabled.ts +3 -3
  226. package/template/src/utils/useIsLocalUserSpeaking.ts +10 -8
  227. package/template/src/utils/useIsPSTN.ts +3 -3
  228. package/template/src/utils/useIsVideoEnabled.ts +3 -3
  229. package/template/src/utils/useJoinRoom.ts +194 -0
  230. package/template/src/{components/Settings.native.tsx → utils/useMenu.tsx} +16 -6
  231. package/template/src/utils/useMutePSTN.ts +2 -2
  232. package/template/src/utils/useMuteToggleLocal.ts +12 -6
  233. package/template/src/utils/useRemoteEndCall.ts +4 -4
  234. package/template/src/utils/useRemoteEndScreenshare.ts +4 -4
  235. package/template/src/utils/useRemoteMute.ts +7 -7
  236. package/template/src/utils/useRemoteRequest.ts +7 -7
  237. package/template/src/utils/useSwitchCamera.native.tsx +25 -0
  238. package/template/src/utils/useSwitchCamera.tsx +19 -0
  239. package/template/src/utils/useToolbar.tsx +59 -0
  240. package/template/static.d.ts +42 -0
  241. package/template/webpack.commons.js +21 -10
  242. package/template/agora-rn-uikit/src/Contexts/RenderContext.tsx +0 -10
  243. package/template/agora-rn-uikit/src/Reducer/ActiveSpeakerDetected.ts +0 -11
  244. package/template/src/pages/video-call/CustomUserContextHolder.tsx +0 -20
  245. package/template/src/utils/useButtonTemplate.tsx +0 -44
  246. package/template/src/utils/useJoinMeeting.ts +0 -142
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "agora-appbuilder-core",
3
- "version": "4.0.0-beta.25",
3
+ "version": "4.0.0-beta.26",
4
4
  "description": "React Native template for RTE app builder",
5
5
  "main": "index.js",
6
6
  "files": [
@@ -9,7 +9,7 @@
9
9
  ],
10
10
  "scripts": {
11
11
  "vercel-build": "npm run dev-setup && cd template && npm run web:build && cd .. && npm run copy-vercel",
12
- "uikit": "rm -rf template/agora-rn-uikit && git clone https://github.com/AgoraIO-Community/ReactNative-UIKit.git template/agora-rn-uikit && cd template/agora-rn-uikit && git checkout mb-with-react18-support",
12
+ "uikit": "rm -rf template/agora-rn-uikit && git clone https://github.com/AgoraIO-Community/ReactNative-UIKit.git template/agora-rn-uikit && cd template/agora-rn-uikit && git checkout active-speaker-layout-change",
13
13
  "deps": "cd template && npm i",
14
14
  "dev-setup": "npm run uikit && npm run deps && node devSetup.js",
15
15
  "web-build": "cd template && npm run web:build && cd .. && npm run copy-vercel",
@@ -83,7 +83,7 @@ const general = {
83
83
  cleanBuildDirectory: () => {
84
84
  return del([`${BUILD_PATH}/**/*`], {force: true});
85
85
  },
86
- addPackageInfo: async (cb) => {
86
+ addPackageInfo: async cb => {
87
87
  let {private, author, description, dependencies} = JSON.parse(
88
88
  await fs.readFile(path.join(__dirname, 'package.json')),
89
89
  );
@@ -130,7 +130,7 @@ const general = {
130
130
  // Takes externals from the webpack config and applies them
131
131
  // to react-sdk package as peer dependencies
132
132
  newPackage.peerDependencies = Object.keys(dependencies)
133
- .filter((key) => Object.keys(webpackRsdkConfig.externals).includes(key))
133
+ .filter(key => Object.keys(webpackRsdkConfig.externals).includes(key))
134
134
  .reduce((peerDependencies, key) => {
135
135
  peerDependencies[key] = `^${dependencies[key].split('.')[0]}`;
136
136
  return peerDependencies;
@@ -151,7 +151,7 @@ const general = {
151
151
  createBuildDirectory: () => {
152
152
  return fs.mkdir(BUILD_PATH, {recursive: true});
153
153
  },
154
- generateApiTypedefs: (cb) => {
154
+ generateApiTypedefs: cb => {
155
155
  const cli = debugFlag ? runCli : runCliNoOutput;
156
156
  cli(
157
157
  'npx -p typescript tsc --project tsconfig_fpeApi.json --outFile ../Builds/customization-api.d.ts',
@@ -177,41 +177,41 @@ declare module 'customization' {
177
177
  cleanTempFiles: () => {
178
178
  return del([`${path.join(BUILD_PATH, '../', '/')}*.d.ts`], {force: true});
179
179
  },
180
- genTsDefs: (cb) => {
180
+ genTsDefs: cb => {
181
181
  runCli(
182
182
  `mkdir -p ${TS_DEFS_BUILD_PATH} && cp ${BUILD_PATH}/index.d.ts ${TS_DEFS_BUILD_PATH}/index.d.ts`,
183
183
  cb,
184
184
  );
185
185
  },
186
- useTsDefs: (cb) => {
186
+ useTsDefs: cb => {
187
187
  runCli(`cp ${TS_DEFS_BUILD_PATH}/index.d.ts ${BUILD_PATH}/index.d.ts`, cb);
188
188
  },
189
- generateNpmPackage: (cb) => {
189
+ generateNpmPackage: cb => {
190
190
  runCli(`cd ${BUILD_PATH} && npm pack`, cb);
191
191
  },
192
192
  };
193
193
 
194
194
  const electron = {
195
- webpack_renderer: (cb) => {
195
+ webpack_renderer: cb => {
196
196
  runCli('webpack --config webpack.renderer.config.js', cb);
197
197
  },
198
198
 
199
- webpack_main: (cb) => {
199
+ webpack_main: cb => {
200
200
  runCli('webpack --config ./webpack.main.config.js', cb);
201
201
  },
202
202
 
203
- build: (cb) => {
203
+ build: cb => {
204
204
  runCli('electron-builder build --config ./electron-builder.js', cb);
205
205
  },
206
206
 
207
- devServer: (cb) => {
207
+ devServer: cb => {
208
208
  const config = webpack(webpackConfig);
209
209
  new WebpackDevServer(config, {
210
210
  hot: true,
211
211
  client: {
212
212
  overlay: false,
213
213
  },
214
- }).listen(webpackConfig.devServer.port, 'localhost', (err) => {
214
+ }).listen(webpackConfig.devServer.port, 'localhost', err => {
215
215
  if (err) {
216
216
  console.error(err);
217
217
  } else {
@@ -220,16 +220,16 @@ const electron = {
220
220
  });
221
221
  },
222
222
 
223
- start: (cb) => {
223
+ start: cb => {
224
224
  runCli('electron ./electron/main/index.js', cb);
225
225
  },
226
226
  };
227
227
 
228
228
  const reactSdk = {
229
- webpack: (cb) => {
229
+ webpack: cb => {
230
230
  runCli('webpack --config ./webpack.rsdk.config.js', cb);
231
231
  },
232
- esbuild: (cb) => {
232
+ esbuild: cb => {
233
233
  let outPath = '';
234
234
  if (outPathArg != -1) {
235
235
  outPath = ` --outpath ${process.argv[outPathArg + 1]}`;
@@ -247,16 +247,16 @@ const reactSdk = {
247
247
  console.log(esbuildCmd);
248
248
  runCli(esbuildCmd, cb);
249
249
  },
250
- generateSdkTypedefs: (cb) => {
250
+ generateSdkTypedefs: cb => {
251
251
  const cli = debugFlag ? runCli : runCliNoOutput;
252
252
  cli(
253
253
  //'npx -p typescript tsc index.rsdk.tsx --declaration --emitDeclarationOnly --noResolve --outFile ../Builds/temp.d.ts',
254
- 'npx -p typescript tsc --project tsconfig_rsdk_index.json --outFile ../Builds/reactSdk.d.ts',
254
+ 'npx -p typescript tsc --project tsconfig_rsdk_index.json --noResolve --outFile ../Builds/reactSdk.d.ts',
255
255
  () => cb(),
256
256
  );
257
257
  },
258
258
  bundleSdkTypedefs: () => {
259
- return src(['../Builds/customization-api.d.ts', '../Builds/reactSdk.d.ts'])
259
+ return src(['../Builds/customization-api.d.ts', './static.d.ts'])
260
260
  .pipe(concat('index.d.ts'))
261
261
  .pipe(
262
262
  replace(
@@ -272,10 +272,10 @@ const reactSdk = {
272
272
  };
273
273
 
274
274
  const webSdk = {
275
- webpack: (cb) => {
275
+ webpack: cb => {
276
276
  runCli('webpack --config ./webpack.wsdk.config.js', cb);
277
277
  },
278
- generateSdkTypedefs: (cb) => {
278
+ generateSdkTypedefs: cb => {
279
279
  const cli = debugFlag ? runCli : runCliNoOutput;
280
280
  cli(
281
281
  'npx -p typescript tsc --project tsconfig_wsdk_index.json --outFile ../Builds/webSdk.d.ts',
@@ -296,19 +296,19 @@ const webSdk = {
296
296
  .pipe(header('// @ts-nocheck\n'))
297
297
  .pipe(dest(BUILD_PATH));
298
298
  },
299
- npmPack: (cb) => {
299
+ npmPack: cb => {
300
300
  runCli('cd ../Builds/web-sdk && npm pack', cb);
301
301
  },
302
302
  };
303
303
 
304
304
  const android = {
305
- gradleBuildUnix: (cb) => {
305
+ gradleBuildUnix: cb => {
306
306
  runCli('cd android && ./gradlew assembleRelease', cb);
307
307
  },
308
- gradleBuildWin: (cb) => {
308
+ gradleBuildWin: cb => {
309
309
  runCli('cd android && gradlew.bat assembleRelease', cb);
310
310
  },
311
- copyBuild: (cb) => {
311
+ copyBuild: cb => {
312
312
  fs.copyFile(
313
313
  path.resolve(
314
314
  'android',
@@ -324,7 +324,7 @@ const android = {
324
324
  .then(() => {
325
325
  cb();
326
326
  })
327
- .catch((err) => {
327
+ .catch(err => {
328
328
  cb(new Error('Error in copying build', err));
329
329
  });
330
330
  },
@@ -358,7 +358,7 @@ module.exports.reactSdk = series(
358
358
  reactSdk.webpack,
359
359
  general.generateApiTypedefs,
360
360
  general.bundleApiTypedefs,
361
- reactSdk.generateSdkTypedefs,
361
+ // reactSdk.generateSdkTypedefs,
362
362
  reactSdk.bundleSdkTypedefs,
363
363
  general.cleanTempFiles,
364
364
  general.generateNpmPackage,