mezon-js 2.7.41 → 2.7.42

Sign up to get free protection for your applications and to get access to all the features.
package/client.ts CHANGED
@@ -1156,7 +1156,8 @@ export class Client {
1156
1156
  filetype: at.filetype,
1157
1157
  id: at.id,
1158
1158
  uploader: at.uploader,
1159
- url: at.url
1159
+ url: at.url,
1160
+ create_time: at.create_time
1160
1161
  })
1161
1162
  });
1162
1163
  return Promise.resolve(result);
@@ -5267,7 +5267,8 @@ var Client = class {
5267
5267
  filetype: at.filetype,
5268
5268
  id: at.id,
5269
5269
  uploader: at.uploader,
5270
- url: at.url
5270
+ url: at.url,
5271
+ create_time: at.create_time
5271
5272
  });
5272
5273
  });
5273
5274
  return Promise.resolve(result);
@@ -5238,7 +5238,8 @@ var Client = class {
5238
5238
  filetype: at.filetype,
5239
5239
  id: at.id,
5240
5240
  uploader: at.uploader,
5241
- url: at.url
5241
+ url: at.url,
5242
+ create_time: at.create_time
5242
5243
  });
5243
5244
  });
5244
5245
  return Promise.resolve(result);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "mezon-js",
3
- "version": "2.7.41",
3
+ "version": "2.7.42",
4
4
  "scripts": {
5
5
  "build": "npx tsc && npx rollup -c --bundleConfigAsCjs && node build.mjs"
6
6
  },