@convertrilo/sdk 0.0.1 → 0.0.2
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.
- package/openapi.yaml +8 -2
- package/package.json +3 -3
package/openapi.yaml
CHANGED
|
@@ -5,11 +5,17 @@ info:
|
|
|
5
5
|
description: |
|
|
6
6
|
JWT-protected API for creating and managing encode jobs. Supports browser-upload, direct URL ingest, or S3 source.
|
|
7
7
|
Public endpoints are limited and rate-limited.
|
|
8
|
+
|
|
9
|
+
Official TypeScript SDK: https://www.npmjs.com/package/@convertrilo/sdk
|
|
10
|
+
SDK source and examples: https://github.com/serkandrgn/convertrilo-js
|
|
11
|
+
externalDocs:
|
|
12
|
+
description: Convertrilo TypeScript SDK
|
|
13
|
+
url: https://github.com/serkandrgn/convertrilo-js
|
|
8
14
|
servers:
|
|
9
15
|
- url: http://localhost:3001
|
|
10
16
|
description: Local backend
|
|
11
|
-
- url: https://api.
|
|
12
|
-
description: Production
|
|
17
|
+
- url: https://api.convertrilo.com
|
|
18
|
+
description: Production
|
|
13
19
|
components:
|
|
14
20
|
securitySchemes:
|
|
15
21
|
BearerAuth:
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@convertrilo/sdk",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.2",
|
|
4
4
|
"description": "TypeScript client for the Convertrilo video encoding API",
|
|
5
5
|
"private": false,
|
|
6
6
|
"license": "MIT",
|
|
@@ -8,10 +8,10 @@
|
|
|
8
8
|
"homepage": "https://convertrilo.com",
|
|
9
9
|
"repository": {
|
|
10
10
|
"type": "git",
|
|
11
|
-
"url": "git+https://github.com/
|
|
11
|
+
"url": "git+https://github.com/serkandrgn/convertrilo-js.git"
|
|
12
12
|
},
|
|
13
13
|
"bugs": {
|
|
14
|
-
"url": "https://github.com/
|
|
14
|
+
"url": "https://github.com/serkandrgn/convertrilo-js/issues"
|
|
15
15
|
},
|
|
16
16
|
"keywords": [
|
|
17
17
|
"convertrilo",
|