appwrite 24.0.0 → 24.1.0

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.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 6fc94e994ef7c1ad6ee73ec5cfd0962b9f6ad5e020d1d63b4929576b2f537107
4
- data.tar.gz: c7afebc270a37bd03556da60bac53461ac6e926789255e4f75c9edf5b8aa4832
3
+ metadata.gz: 117e69f27971b35ba99f0ccc63cfb9a3494955eef4e214048b38aa4ba57e1b80
4
+ data.tar.gz: d0e41de1a5f8550c33b3db61262a9e4f7b4facfafdfccc63f1e2a9d9947b045e
5
5
  SHA512:
6
- metadata.gz: 8d39cf12337cbbb2cbf85cba6a877491cabd89203a9eee4c242f2c8e43dd7171eb013d61387364193fe6abaa08ccff39ddb3ddaacf8588a6bd35bd2ea817360c
7
- data.tar.gz: ab5902fb36a74a473afb600177acfc17960501184bb7c4981eee94734a672d870f25a8cbf37472d106414fe58995acb8e34c0d3b8b3312da1708bcf2d78a655e
6
+ metadata.gz: 5ef18be9f1d2867aac51d1bd83955e5da5e9cf6f92d6d42759d1e7f45c1e95f4e66606e70e1e965e7092f3274923dd04f9cf041a51eaf9a6b7b0df085bfa31d7
7
+ data.tar.gz: 7afc04eac74397f0381624d0a3ddce3da33ff80468414856b6ec9e35028437ccee66bfc71f88af12c7f8242def21f63e783053112029271b4e90248a014b74b1
@@ -15,7 +15,7 @@ module Appwrite
15
15
  'x-sdk-name'=> 'Ruby',
16
16
  'x-sdk-platform'=> 'server',
17
17
  'x-sdk-language'=> 'ruby',
18
- 'x-sdk-version'=> '24.0.0',
18
+ 'x-sdk-version'=> '24.1.0',
19
19
  'X-Appwrite-Response-Format' => '1.9.5'
20
20
  }
21
21
  @endpoint = 'https://cloud.appwrite.io/v1'
@@ -32,6 +32,9 @@ module Appwrite
32
32
  PYTHON_ML_3_11 = 'python-ml-3.11'
33
33
  PYTHON_ML_3_12 = 'python-ml-3.12'
34
34
  PYTHON_ML_3_13 = 'python-ml-3.13'
35
+ DENO_1_21 = 'deno-1.21'
36
+ DENO_1_24 = 'deno-1.24'
37
+ DENO_1_35 = 'deno-1.35'
35
38
  DENO_1_40 = 'deno-1.40'
36
39
  DENO_1_46 = 'deno-1.46'
37
40
  DENO_2_0 = 'deno-2.0'
@@ -32,6 +32,9 @@ module Appwrite
32
32
  PYTHON_ML_3_11 = 'python-ml-3.11'
33
33
  PYTHON_ML_3_12 = 'python-ml-3.12'
34
34
  PYTHON_ML_3_13 = 'python-ml-3.13'
35
+ DENO_1_21 = 'deno-1.21'
36
+ DENO_1_24 = 'deno-1.24'
37
+ DENO_1_35 = 'deno-1.35'
35
38
  DENO_1_40 = 'deno-1.40'
36
39
  DENO_1_46 = 'deno-1.46'
37
40
  DENO_2_0 = 'deno-2.0'
@@ -13,14 +13,14 @@ module Appwrite
13
13
  attr_reader :budget_limit
14
14
 
15
15
  def initialize(
16
- bandwidth:,
17
- storage:,
18
- users:,
19
- executions:,
20
- gb_hours:,
21
- image_transformations:,
22
- auth_phone:,
23
- budget_limit:
16
+ bandwidth: ,
17
+ storage: ,
18
+ users: ,
19
+ executions: ,
20
+ gb_hours: ,
21
+ image_transformations: ,
22
+ auth_phone: ,
23
+ budget_limit:
24
24
  )
25
25
  @bandwidth = bandwidth
26
26
  @storage = storage
@@ -12,6 +12,7 @@ module Appwrite
12
12
  attr_reader :signature
13
13
  attr_reader :mime_type
14
14
  attr_reader :size_original
15
+ attr_reader :size_actual
15
16
  attr_reader :chunks_total
16
17
  attr_reader :chunks_uploaded
17
18
  attr_reader :encryption
@@ -27,6 +28,7 @@ module Appwrite
27
28
  signature:,
28
29
  mime_type:,
29
30
  size_original:,
31
+ size_actual:,
30
32
  chunks_total:,
31
33
  chunks_uploaded:,
32
34
  encryption:,
@@ -41,6 +43,7 @@ module Appwrite
41
43
  @signature = signature
42
44
  @mime_type = mime_type
43
45
  @size_original = size_original
46
+ @size_actual = size_actual
44
47
  @chunks_total = chunks_total
45
48
  @chunks_uploaded = chunks_uploaded
46
49
  @encryption = encryption
@@ -58,6 +61,7 @@ module Appwrite
58
61
  signature: map["signature"],
59
62
  mime_type: map["mimeType"],
60
63
  size_original: map["sizeOriginal"],
64
+ size_actual: map["sizeActual"],
61
65
  chunks_total: map["chunksTotal"],
62
66
  chunks_uploaded: map["chunksUploaded"],
63
67
  encryption: map["encryption"],
@@ -76,6 +80,7 @@ module Appwrite
76
80
  "signature": @signature,
77
81
  "mimeType": @mime_type,
78
82
  "sizeOriginal": @size_original,
83
+ "sizeActual": @size_actual,
79
84
  "chunksTotal": @chunks_total,
80
85
  "chunksUploaded": @chunks_uploaded,
81
86
  "encryption": @encryption,
@@ -56,7 +56,7 @@ module Appwrite
56
56
  services:,
57
57
  protocols:,
58
58
  region:,
59
- billing_limits:,
59
+ billing_limits: ,
60
60
  blocks:,
61
61
  console_accessed_at:
62
62
  )
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: appwrite
3
3
  version: !ruby/object:Gem::Version
4
- version: 24.0.0
4
+ version: 24.1.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Appwrite Team
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2026-05-19 00:00:00.000000000 Z
11
+ date: 2026-05-20 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: mime-types