@remotion/lambda 4.0.0-alpha13 → 4.0.0-alpha16

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 (69) hide show
  1. package/dist/api/delete-function.d.ts +1 -1
  2. package/dist/api/delete-render.d.ts +1 -1
  3. package/dist/api/delete-site.d.ts +2 -2
  4. package/dist/api/deploy-function.d.ts +2 -2
  5. package/dist/api/deploy-site.d.ts +2 -2
  6. package/dist/api/download-media.d.ts +2 -2
  7. package/dist/api/estimate-price.d.ts +1 -1
  8. package/dist/api/get-aws-client.d.ts +3 -3
  9. package/dist/api/get-buckets.d.ts +1 -1
  10. package/dist/api/get-compositions-on-lambda.d.ts +2 -2
  11. package/dist/api/get-function-info.d.ts +2 -2
  12. package/dist/api/get-functions.d.ts +1 -1
  13. package/dist/api/get-or-create-bucket.d.ts +2 -2
  14. package/dist/api/get-regions.d.ts +1 -1
  15. package/dist/api/get-render-progress.d.ts +1 -1
  16. package/dist/api/get-sites.d.ts +3 -3
  17. package/dist/api/iam-validation/simulate-rule.d.ts +2 -2
  18. package/dist/api/iam-validation/simulate.d.ts +2 -2
  19. package/dist/api/iam-validation/simulate.js +1 -1
  20. package/dist/api/presign-url.d.ts +1 -1
  21. package/dist/api/render-media-on-lambda.d.ts +2 -2
  22. package/dist/api/render-still-on-lambda.d.ts +2 -2
  23. package/dist/api/speculate-function-name.d.ts +1 -1
  24. package/dist/api/upload-dir.d.ts +2 -2
  25. package/dist/cli/args.d.ts +1 -1
  26. package/dist/cli/commands/render/progress.d.ts +4 -4
  27. package/dist/cli/commands/render/render.js +9 -1
  28. package/dist/cli/commands/still.js +9 -1
  29. package/dist/cli/helpers/progress-bar.d.ts +4 -4
  30. package/dist/cli/log.d.ts +1 -0
  31. package/dist/functions/chunk-optimization/types.d.ts +2 -2
  32. package/dist/functions/compositions.d.ts +1 -1
  33. package/dist/functions/compositions.js +11 -7
  34. package/dist/functions/helpers/find-output-file-in-bucket.d.ts +1 -1
  35. package/dist/functions/helpers/get-browser-instance.d.ts +1 -2
  36. package/dist/functions/helpers/get-browser-instance.js +4 -1
  37. package/dist/functions/helpers/get-files-in-folder.d.ts +1 -1
  38. package/dist/functions/helpers/get-files-to-delete.d.ts +1 -1
  39. package/dist/functions/helpers/get-lambdas-invoked-stats.d.ts +1 -1
  40. package/dist/functions/helpers/get-retry-stats.d.ts +1 -1
  41. package/dist/functions/helpers/io.d.ts +3 -3
  42. package/dist/functions/helpers/read-with-progress.d.ts +1 -1
  43. package/dist/functions/helpers/validate-composition.d.ts +5 -5
  44. package/dist/functions/helpers/validate-composition.js +5 -3
  45. package/dist/functions/helpers/write-lambda-error.d.ts +2 -2
  46. package/dist/functions/index.js +1 -1
  47. package/dist/functions/launch.d.ts +1 -1
  48. package/dist/functions/launch.js +6 -8
  49. package/dist/functions/progress.d.ts +1 -1
  50. package/dist/functions/renderer.d.ts +1 -1
  51. package/dist/functions/renderer.js +13 -12
  52. package/dist/functions/start.d.ts +1 -1
  53. package/dist/functions/still.d.ts +1 -1
  54. package/dist/functions/still.js +25 -11
  55. package/dist/pricing/aws-regions.d.ts +1 -1
  56. package/dist/shared/await.d.ts +1 -1
  57. package/dist/shared/aws-clients.d.ts +3 -3
  58. package/dist/shared/constants.d.ts +18 -18
  59. package/dist/shared/content-disposition-header.d.ts +1 -1
  60. package/dist/shared/get-most-expensive-chunks.d.ts +1 -1
  61. package/dist/shared/hosted-layers.d.ts +1 -1
  62. package/dist/shared/invoke-webhook.d.ts +2 -2
  63. package/dist/shared/parse-lambda-timings-key.d.ts +1 -1
  64. package/dist/shared/return-values.d.ts +1 -1
  65. package/dist/shared/truthy.d.ts +1 -1
  66. package/dist/shared/validate-lambda-codec.d.ts +1 -1
  67. package/dist/shared/validate-outname.js +12 -12
  68. package/package.json +11 -11
  69. package/remotionlambda-arm64.zip +0 -0
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@remotion/lambda",
3
- "version": "4.0.0-alpha13",
3
+ "version": "4.0.0-alpha16",
4
4
  "description": "Distributed renderer for Remotion based on AWS Lambda",
5
5
  "main": "dist/index.js",
6
6
  "sideEffects": false,
@@ -25,10 +25,10 @@
25
25
  "@aws-sdk/s3-request-presigner": "3.338.0",
26
26
  "aws-policies": "^1.0.1",
27
27
  "mime-types": "2.1.34",
28
- "@remotion/bundler": "4.0.0-alpha13",
29
- "@remotion/cli": "4.0.0-alpha13",
30
- "remotion": "4.0.0-alpha13",
31
- "@remotion/renderer": "4.0.0-alpha13"
28
+ "@remotion/cli": "4.0.0-alpha16",
29
+ "remotion": "4.0.0-alpha16",
30
+ "@remotion/bundler": "4.0.0-alpha16",
31
+ "@remotion/renderer": "4.0.0-alpha16"
32
32
  },
33
33
  "devDependencies": {
34
34
  "@jonny/eslint-config": "3.0.266",
@@ -36,18 +36,18 @@
36
36
  "@types/minimist": "1.2.2",
37
37
  "@types/node": "18.14.6",
38
38
  "@types/prompt": "^1.1.0",
39
- "eslint": "8.25.0",
39
+ "eslint": "8.42.0",
40
40
  "prettier": "^2.4.1",
41
41
  "prettier-plugin-organize-imports": "^2.3.4",
42
42
  "ts-node": "^10.8.0",
43
- "typescript": "^4.7.0",
44
- "vitest": "^0.24.3",
43
+ "typescript": "4.9.5",
44
+ "vitest": "0.31.1",
45
45
  "zip-lib": "^0.7.2",
46
- "@remotion/bundler": "4.0.0-alpha13",
47
- "@remotion/compositor-linux-arm64-gnu": "4.0.0-alpha13"
46
+ "@remotion/bundler": "4.0.0-alpha16",
47
+ "@remotion/compositor-linux-arm64-gnu": "4.0.0-alpha16"
48
48
  },
49
49
  "peerDependencies": {
50
- "@remotion/bundler": "4.0.0-alpha13"
50
+ "@remotion/bundler": "4.0.0-alpha16"
51
51
  },
52
52
  "publishConfig": {
53
53
  "access": "public"
Binary file