@remotion/lambda 4.0.0-alpha4 → 4.0.0-alpha5

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 (63) hide show
  1. package/dist/admin/bundle-lambda.js +17 -23
  2. package/dist/admin/make-layer-public.js +59 -87
  3. package/dist/api/clean-items.js +1 -1
  4. package/dist/api/create-function.d.ts +1 -3
  5. package/dist/api/create-function.js +6 -6
  6. package/dist/api/deploy-function.d.ts +0 -3
  7. package/dist/api/deploy-function.js +1 -7
  8. package/dist/api/deploy-site.js +3 -8
  9. package/dist/api/download-media.d.ts +0 -4
  10. package/dist/api/download-media.js +1 -5
  11. package/dist/api/estimate-price.d.ts +1 -3
  12. package/dist/api/estimate-price.js +3 -9
  13. package/dist/api/get-compositions-on-lambda.d.ts +2 -2
  14. package/dist/api/get-or-create-bucket.d.ts +0 -1
  15. package/dist/api/get-or-create-bucket.js +0 -3
  16. package/dist/api/iam-validation/simulate.js +4 -2
  17. package/dist/api/render-media-on-lambda.d.ts +10 -6
  18. package/dist/api/render-media-on-lambda.js +6 -3
  19. package/dist/api/render-still-on-lambda.d.ts +7 -3
  20. package/dist/api/render-still-on-lambda.js +6 -3
  21. package/dist/cli/args.d.ts +0 -2
  22. package/dist/cli/commands/functions/deploy.js +7 -9
  23. package/dist/cli/commands/functions/ls.js +4 -1
  24. package/dist/cli/commands/functions/rm.js +8 -2
  25. package/dist/cli/commands/functions/rmall.js +8 -2
  26. package/dist/cli/commands/render/render.js +22 -12
  27. package/dist/cli/commands/sites/create.js +7 -8
  28. package/dist/cli/commands/still.js +7 -5
  29. package/dist/cli/helpers/progress-bar.d.ts +1 -2
  30. package/dist/cli/helpers/progress-bar.js +3 -7
  31. package/dist/cli/log.d.ts +12 -0
  32. package/dist/functions/chunk-optimization/plan-frame-ranges.d.ts +4 -1
  33. package/dist/functions/compositions.d.ts +1 -1
  34. package/dist/functions/compositions.js +0 -2
  35. package/dist/functions/helpers/calculate-price-from-bucket.d.ts +1 -3
  36. package/dist/functions/helpers/calculate-price-from-bucket.js +1 -2
  37. package/dist/functions/helpers/concat-videos.d.ts +2 -4
  38. package/dist/functions/helpers/concat-videos.js +2 -5
  39. package/dist/functions/helpers/create-post-render-data.js +0 -2
  40. package/dist/functions/helpers/get-chromium-executable-path.js +6 -1
  41. package/dist/functions/helpers/get-progress.js +0 -2
  42. package/dist/functions/helpers/is-enosp-err.js +1 -1
  43. package/dist/functions/helpers/validate-composition.d.ts +3 -5
  44. package/dist/functions/helpers/validate-composition.js +1 -3
  45. package/dist/functions/index.d.ts +15 -4
  46. package/dist/functions/index.js +1 -1
  47. package/dist/functions/launch.js +2 -6
  48. package/dist/functions/renderer.js +9 -9
  49. package/dist/functions/start.js +1 -1
  50. package/dist/functions/still.js +1 -5
  51. package/dist/index.d.ts +5 -6
  52. package/dist/index.js +1 -2
  53. package/dist/shared/constants.d.ts +20 -17
  54. package/dist/shared/constants.js +1 -2
  55. package/dist/shared/function-zip-path.d.ts +0 -1
  56. package/dist/shared/function-zip-path.js +1 -2
  57. package/dist/shared/hosted-layers.d.ts +2 -91
  58. package/dist/shared/hosted-layers.js +64 -363
  59. package/dist/shared/invoke-webhook.d.ts +0 -2
  60. package/package.json +9 -10
  61. package/remotionlambda-arm64.zip +0 -0
  62. package/remotionlambda-x64.zip +0 -0
  63. package/remotionlambda.zip +0 -0
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@remotion/lambda",
3
- "version": "4.0.0-alpha4",
3
+ "version": "4.0.0-alpha5",
4
4
  "description": "Distributed renderer for Remotion based on AWS Lambda",
5
5
  "main": "dist/index.js",
6
6
  "sideEffects": false,
@@ -23,21 +23,20 @@
23
23
  "@aws-sdk/credential-providers": "3.272.0",
24
24
  "@aws-sdk/lib-storage": "3.272.0",
25
25
  "@aws-sdk/s3-request-presigner": "3.272.0",
26
- "@remotion/bundler": "4.0.0-alpha4",
27
- "@remotion/cli": "4.0.0-alpha4",
28
- "@remotion/renderer": "4.0.0-alpha4",
26
+ "@remotion/bundler": "4.0.0-alpha5",
27
+ "@remotion/cli": "4.0.0-alpha5",
28
+ "@remotion/renderer": "4.0.0-alpha5",
29
29
  "aws-policies": "^1.0.1",
30
30
  "mime-types": "2.1.34",
31
- "remotion": "4.0.0-alpha4"
31
+ "remotion": "4.0.0-alpha5"
32
32
  },
33
33
  "devDependencies": {
34
34
  "@jonny/eslint-config": "3.0.266",
35
- "@remotion/bundler": "4.0.0-alpha4",
36
- "@remotion/compositor-linux-arm64-musl": "4.0.0-alpha4",
37
- "@remotion/compositor-linux-x64-musl": "4.0.0-alpha4",
35
+ "@remotion/bundler": "4.0.0-alpha5",
36
+ "@remotion/compositor-linux-arm64-gnu": "4.0.0-alpha5",
38
37
  "@types/mime-types": "2.1.1",
39
38
  "@types/minimist": "1.2.2",
40
- "@types/node": "^14.14.14",
39
+ "@types/node": "^18.16.0",
41
40
  "@types/prompt": "^1.1.0",
42
41
  "eslint": "8.25.0",
43
42
  "prettier": "^2.4.1",
@@ -48,7 +47,7 @@
48
47
  "zip-lib": "^0.7.2"
49
48
  },
50
49
  "peerDependencies": {
51
- "@remotion/bundler": "4.0.0-alpha4"
50
+ "@remotion/bundler": "4.0.0-alpha5"
52
51
  },
53
52
  "publishConfig": {
54
53
  "access": "public"
Binary file
Binary file
Binary file