@balena/pinejs 21.4.0-build-add-actions-example-00cabf6eb1629a826638b8c81dcf6d45a534872b-1 → 21.4.0-build-add-actions-example-3b1330b7c91a500b24432e0b7cd8d509a8336ad9-1

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.
@@ -1,6 +1,6 @@
1
1
  - commits:
2
2
  - subject: Add multipart upload actions
3
- hash: 00cabf6eb1629a826638b8c81dcf6d45a534872b
3
+ hash: 3b1330b7c91a500b24432e0b7cd8d509a8336ad9
4
4
  body: ""
5
5
  footer:
6
6
  Change-type: minor
@@ -8,7 +8,7 @@
8
8
  author: Otavio Jacobi
9
9
  nested: []
10
10
  - subject: Add webresource vocabulary
11
- hash: ee090f424ed4b62b969cbfa046cfc50384e658b7
11
+ hash: bf088b07a7619a264fb738881c3e273288e25e82
12
12
  body: ""
13
13
  footer:
14
14
  Change-type: minor
@@ -27,7 +27,7 @@
27
27
  nested: []
28
28
  version: 21.4.0
29
29
  title: ""
30
- date: 2025-05-03T01:13:04.267Z
30
+ date: 2025-05-04T00:13:07.921Z
31
31
  - commits:
32
32
  - subject: Add multipart upload interface for handlers
33
33
  hash: d78ee0da169cb9b252bfe8d51c4f57cd10051475
package/CHANGELOG.md CHANGED
@@ -5,7 +5,7 @@ automatically by Versionist. DO NOT EDIT THIS FILE MANUALLY!
5
5
  This project adheres to [Semantic Versioning](http://semver.org/).
6
6
 
7
7
  # v21.4.0
8
- ## (2025-05-03)
8
+ ## (2025-05-04)
9
9
 
10
10
  * Add multipart upload actions [Otavio Jacobi]
11
11
  * Add webresource vocabulary [Otavio Jacobi]
@@ -13,7 +13,7 @@ export interface MultipartUpload {
13
13
  status: 'pending' | 'completed' | 'cancelled';
14
14
  filename: Types['Short Text']['Read'];
15
15
  content_type: Types['Short Text']['Read'];
16
- size: Types['Integer']['Read'];
16
+ size: Types['Big Integer']['Read'];
17
17
  chunk_size: Types['Integer']['Read'];
18
18
  expiry_date: Types['Date Time']['Read'];
19
19
  is_created_by__actor: Types['Integer']['Read'] | null;
@@ -31,7 +31,7 @@ export interface MultipartUpload {
31
31
  status: 'pending' | 'completed' | 'cancelled';
32
32
  filename: Types['Short Text']['Write'];
33
33
  content_type: Types['Short Text']['Write'];
34
- size: Types['Integer']['Write'];
34
+ size: Types['Big Integer']['Write'];
35
35
  chunk_size: Types['Integer']['Write'];
36
36
  expiry_date: Types['Date Time']['Write'];
37
37
  is_created_by__actor: Types['Integer']['Write'] | null;
@@ -23,7 +23,7 @@ Term: filename
23
23
  Term: content type
24
24
  Concept Type: Short Text (Type)
25
25
  Term: size
26
- Concept Type: Integer (Type)
26
+ Concept Type: Big Integer (Type)
27
27
  Term: chunk size
28
28
  Concept Type: Integer (Type)
29
29
  Term: valid until date
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@balena/pinejs",
3
- "version": "21.4.0-build-add-actions-example-00cabf6eb1629a826638b8c81dcf6d45a534872b-1",
3
+ "version": "21.4.0-build-add-actions-example-3b1330b7c91a500b24432e0b7cd8d509a8336ad9-1",
4
4
  "main": "out/server-glue/module.js",
5
5
  "type": "module",
6
6
  "repository": "git@github.com:balena-io/pinejs.git",
@@ -149,6 +149,6 @@
149
149
  "recursive": true
150
150
  },
151
151
  "versionist": {
152
- "publishedAt": "2025-05-03T01:13:05.284Z"
152
+ "publishedAt": "2025-05-04T00:13:08.952Z"
153
153
  }
154
154
  }
@@ -23,7 +23,7 @@ Term: filename
23
23
  Term: content type
24
24
  Concept Type: Short Text (Type)
25
25
  Term: size
26
- Concept Type: Integer (Type)
26
+ Concept Type: Big Integer (Type)
27
27
  Term: chunk size
28
28
  Concept Type: Integer (Type)
29
29
  Term: valid until date
@@ -16,7 +16,7 @@ export interface MultipartUpload {
16
16
  status: 'pending' | 'completed' | 'cancelled';
17
17
  filename: Types['Short Text']['Read'];
18
18
  content_type: Types['Short Text']['Read'];
19
- size: Types['Integer']['Read'];
19
+ size: Types['Big Integer']['Read'];
20
20
  chunk_size: Types['Integer']['Read'];
21
21
  expiry_date: Types['Date Time']['Read'];
22
22
  is_created_by__actor: Types['Integer']['Read'] | null;
@@ -34,7 +34,7 @@ export interface MultipartUpload {
34
34
  status: 'pending' | 'completed' | 'cancelled';
35
35
  filename: Types['Short Text']['Write'];
36
36
  content_type: Types['Short Text']['Write'];
37
- size: Types['Integer']['Write'];
37
+ size: Types['Big Integer']['Write'];
38
38
  chunk_size: Types['Integer']['Write'];
39
39
  expiry_date: Types['Date Time']['Write'];
40
40
  is_created_by__actor: Types['Integer']['Write'] | null;