Fix build with typescript 3.8
authorChocobozzz <me@florianbigard.com>
Fri, 28 Feb 2020 15:51:25 +0000 (16:51 +0100)
committerChocobozzz <me@florianbigard.com>
Fri, 28 Feb 2020 15:51:25 +0000 (16:51 +0100)
server/initializers/migrations/0135-video-channel-actor.ts
server/lib/activitypub/share.ts
server/lib/activitypub/video-comments.ts
server/lib/activitypub/video-rates.ts
server/lib/plugins/plugin-index.ts
server/lib/schedulers/auto-follow-index-instances.ts

index c0c343384b61b384d1af6b902cbe51b487a7e514..3f620dfa3b462c376573241df6f953dace1d4c76 100644 (file)
@@ -240,7 +240,7 @@ async function up (utils: {
   {
     const query = 'SELECT * FROM "actor" WHERE "serverId" IS NULL AND "publicKey" IS NULL'
     const options = { type: Sequelize.QueryTypes.SELECT as Sequelize.QueryTypes.SELECT }
-    const [ res ] = await utils.sequelize.query(query, options)
+    const [ res ] = await utils.sequelize.query<any>(query, options)
 
     for (const actor of res) {
       const { privateKey, publicKey } = await createPrivateAndPublicKeys()
index e847c4b7d265c35ced580c13ea7e0eb33cd9f7c0..a7c6450627a26a8fbdbef22dfd0dcb8983e9b476 100644 (file)
@@ -36,7 +36,7 @@ async function addVideoShares (shareUrls: string[], video: MVideoId) {
   await Bluebird.map(shareUrls, async shareUrl => {
     try {
       // Fetch url
-      const { body } = await doRequest({
+      const { body } = await doRequest<any>({
         uri: shareUrl,
         json: true,
         activityPub: true
index 8642d2432df8083afe5e6fce977a8e9d71e701ef..3aee6799e2c48cea82dc7179913ea7837ece3af9 100644 (file)
@@ -120,7 +120,7 @@ async function resolveParentComment (params: ResolveThreadParams) {
     throw new Error('Recursion limit reached when resolving a thread')
   }
 
-  const { body } = await doRequest({
+  const { body } = await doRequest<any>({
     uri: url,
     json: true,
     activityPub: true
index 79ccfbc7edbba0e8b8c9d27496dec066e7659791..202368c8f0b80afa2499b6bea6c74cad6a40b655 100644 (file)
@@ -18,7 +18,7 @@ async function createRates (ratesUrl: string[], video: MVideo, rate: VideoRateTy
   await Bluebird.map(ratesUrl, async rateUrl => {
     try {
       // Fetch url
-      const { body } = await doRequest({
+      const { body } = await doRequest<any>({
         uri: rateUrl,
         json: true,
         activityPub: true
index dcdfba28c53092a077d10a59a575c73f27eca5ae..170f0c7e208729a64c69dba8ea100b0af3e954f1 100644 (file)
@@ -27,7 +27,7 @@ async function listAvailablePluginsFromIndex (options: PeertubePluginIndexList)
   const uri = CONFIG.PLUGINS.INDEX.URL + '/api/v1/plugins'
 
   try {
-    const { body } = await doRequest({ uri, qs, json: true })
+    const { body } = await doRequest<any>({ uri, qs, json: true })
 
     logger.debug('Got result from PeerTube index.', { body })
 
@@ -57,7 +57,7 @@ async function getLatestPluginsVersion (npmNames: string[]): Promise<PeertubePlu
 
   const uri = CONFIG.PLUGINS.INDEX.URL + '/api/v1/plugins/latest-version'
 
-  const { body } = await doRequest({ uri, body: bodyRequest, json: true, method: 'POST' })
+  const { body } = await doRequest<any>({ uri, body: bodyRequest, json: true, method: 'POST' })
 
   return body
 }
index d700a99f0b82257d630c3a1db7232f8aea7fb9ef..a1f5e4a916800d5cf34e065705e53dbc7f133793 100644 (file)
@@ -41,7 +41,7 @@ export class AutoFollowIndexInstances extends AbstractScheduler {
 
       this.lastCheck = new Date()
 
-      const { body } = await doRequest({ uri, qs, json: true })
+      const { body } = await doRequest<any>({ uri, qs, json: true })
 
       const hosts: string[] = body.data.map(o => o.host)
       const chunks = chunk(hosts, 20)