Skip to content

Commit 35e13f6

Browse files
committed
chore: release rc
1 parent 6d0eae5 commit 35e13f6

18 files changed

+370
-30
lines changed

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# Appwrite Ruby SDK
22

33
![License](https://img.shields.io/github/license/appwrite/sdk-for-ruby.svg?style=flat-square)
4-
![Version](https://img.shields.io/badge/api%20version-1.5.7-blue.svg?style=flat-square)
4+
![Version](https://img.shields.io/badge/api%20version-1.6.0-blue.svg?style=flat-square)
55
[![Build Status](https://img.shields.io/travis/com/appwrite/sdk-generator?style=flat-square)](https://travis-ci.com/appwrite/sdk-generator)
66
[![Twitter Account](https://img.shields.io/twitter/follow/appwrite?color=00acee&label=twitter&style=flat-square)](https://twitter.com/appwrite)
77
[![Discord](https://img.shields.io/discord/564160730845151244?label=discord&style=flat-square)](https://appwrite.io/discord)

appwrite.gemspec

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
Gem::Specification.new do |spec|
22

33
spec.name = 'appwrite'
4-
spec.version = '11.0.2'
4+
spec.version = '12.0.0-rc.1'
55
spec.license = 'BSD-3-Clause'
66
spec.summary = 'Appwrite is an open-source self-hosted backend server that abstract and simplify complex and repetitive development tasks behind a very simple REST API'
77
spec.author = 'Appwrite Team'
88
spec.homepage = 'https://appwrite.io/support'
9-
spec.email = 'team@appwrite.io'
9+
spec.email = 'team@localhost.test'
1010
spec.files = Dir['lib/**/*.rb']
1111

1212
spec.add_dependency 'mime-types', '~> 3.4.1'

docs/examples/account/delete-mfa-authenticator.md

+1-2
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,5 @@ client = Client.new
1111
account = Account.new(client)
1212

1313
result = account.delete_mfa_authenticator(
14-
type: AuthenticatorType::TOTP,
15-
otp: '<OTP>'
14+
type: AuthenticatorType::TOTP
1615
)

docs/examples/functions/create.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -31,5 +31,5 @@ result = functions.create(
3131
template_repository: '<TEMPLATE_REPOSITORY>', # optional
3232
template_owner: '<TEMPLATE_OWNER>', # optional
3333
template_root_directory: '<TEMPLATE_ROOT_DIRECTORY>', # optional
34-
template_branch: '<TEMPLATE_BRANCH>' # optional
34+
template_version: '<TEMPLATE_VERSION>' # optional
3535
)

docs/examples/functions/download-deployment.md docs/examples/functions/get-deployment-download.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -5,11 +5,11 @@ include Appwrite
55
client = Client.new
66
.set_endpoint('https://cloud.appwrite.io/v1') # Your API Endpoint
77
.set_project('&lt;YOUR_PROJECT_ID&gt;') # Your project ID
8-
.set_key('&lt;YOUR_API_KEY&gt;') # Your secret API key
8+
.set_session('') # The user session to authenticate with
99

1010
functions = Functions.new(client)
1111

12-
result = functions.download_deployment(
12+
result = functions.get_deployment_download(
1313
function_id: '<FUNCTION_ID>',
1414
deployment_id: '<DEPLOYMENT_ID>'
1515
)
+13
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
require 'appwrite'
2+
3+
include Appwrite
4+
5+
client = Client.new
6+
.set_endpoint('https://cloud.appwrite.io/v1') # Your API Endpoint
7+
.set_project('&lt;YOUR_PROJECT_ID&gt;') # Your project ID
8+
9+
functions = Functions.new(client)
10+
11+
result = functions.get_template(
12+
template_id: '<TEMPLATE_ID>'
13+
)
+16
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
require 'appwrite'
2+
3+
include Appwrite
4+
5+
client = Client.new
6+
.set_endpoint('https://cloud.appwrite.io/v1') # Your API Endpoint
7+
.set_project('&lt;YOUR_PROJECT_ID&gt;') # Your project ID
8+
9+
functions = Functions.new(client)
10+
11+
result = functions.list_templates(
12+
runtimes: [], # optional
13+
use_cases: [], # optional
14+
limit: 1, # optional
15+
offset: 0 # optional
16+
)

lib/appwrite.rb

+4
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,7 @@
2525
require_relative 'appwrite/models/team_list'
2626
require_relative 'appwrite/models/membership_list'
2727
require_relative 'appwrite/models/function_list'
28+
require_relative 'appwrite/models/template_function_list'
2829
require_relative 'appwrite/models/runtime_list'
2930
require_relative 'appwrite/models/deployment_list'
3031
require_relative 'appwrite/models/execution_list'
@@ -76,6 +77,9 @@
7677
require_relative 'appwrite/models/team'
7778
require_relative 'appwrite/models/membership'
7879
require_relative 'appwrite/models/function'
80+
require_relative 'appwrite/models/template_function'
81+
require_relative 'appwrite/models/template_runtime'
82+
require_relative 'appwrite/models/template_variable'
7983
require_relative 'appwrite/models/runtime'
8084
require_relative 'appwrite/models/deployment'
8185
require_relative 'appwrite/models/execution'

lib/appwrite/client.rb

+2-2
Original file line numberDiff line numberDiff line change
@@ -15,8 +15,8 @@ def initialize
1515
'x-sdk-name'=> 'Ruby',
1616
'x-sdk-platform'=> 'server',
1717
'x-sdk-language'=> 'ruby',
18-
'x-sdk-version'=> '11.0.2',
19-
'X-Appwrite-Response-Format' => '1.5.0'
18+
'x-sdk-version'=> '12.0.0-rc.1',
19+
'X-Appwrite-Response-Format' => '1.6.0'
2020
}
2121
@endpoint = 'https://cloud.appwrite.io/v1'
2222
end

lib/appwrite/models/execution.rb

+8-3
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,7 @@ class Execution
1919
attr_reader :logs
2020
attr_reader :errors
2121
attr_reader :duration
22+
attr_reader :scheduled_at
2223

2324
def initialize(
2425
id:,
@@ -36,7 +37,8 @@ def initialize(
3637
response_headers:,
3738
logs:,
3839
errors:,
39-
duration:
40+
duration:,
41+
scheduled_at:
4042
)
4143
@id = id
4244
@created_at = created_at
@@ -54,6 +56,7 @@ def initialize(
5456
@logs = logs
5557
@errors = errors
5658
@duration = duration
59+
@scheduled_at = scheduled_at
5760
end
5861

5962
def self.from(map:)
@@ -73,7 +76,8 @@ def self.from(map:)
7376
response_headers: map["responseHeaders"].map { |it| Headers.from(map: it) },
7477
logs: map["logs"],
7578
errors: map["errors"],
76-
duration: map["duration"]
79+
duration: map["duration"],
80+
scheduled_at: map["scheduledAt"]
7781
)
7882
end
7983

@@ -94,7 +98,8 @@ def to_map
9498
"responseHeaders": @response_headers.map { |it| it.to_map },
9599
"logs": @logs,
96100
"errors": @errors,
97-
"duration": @duration
101+
"duration": @duration,
102+
"scheduledAt": @scheduled_at
98103
}
99104
end
100105
end

lib/appwrite/models/runtime.rb

+5
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@ module Appwrite
44
module Models
55
class Runtime
66
attr_reader :id
7+
attr_reader :key
78
attr_reader :name
89
attr_reader :version
910
attr_reader :base
@@ -13,6 +14,7 @@ class Runtime
1314

1415
def initialize(
1516
id:,
17+
key:,
1618
name:,
1719
version:,
1820
base:,
@@ -21,6 +23,7 @@ def initialize(
2123
supports:
2224
)
2325
@id = id
26+
@key = key
2427
@name = name
2528
@version = version
2629
@base = base
@@ -32,6 +35,7 @@ def initialize(
3235
def self.from(map:)
3336
Runtime.new(
3437
id: map["$id"],
38+
key: map["key"],
3539
name: map["name"],
3640
version: map["version"],
3741
base: map["base"],
@@ -44,6 +48,7 @@ def self.from(map:)
4448
def to_map
4549
{
4650
"$id": @id,
51+
"key": @key,
4752
"name": @name,
4853
"version": @version,
4954
"base": @base,
+107
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,107 @@
1+
#frozen_string_literal: true
2+
3+
module Appwrite
4+
module Models
5+
class TemplateFunction
6+
attr_reader :icon
7+
attr_reader :id
8+
attr_reader :name
9+
attr_reader :tagline
10+
attr_reader :permissions
11+
attr_reader :events
12+
attr_reader :cron
13+
attr_reader :timeout
14+
attr_reader :use_cases
15+
attr_reader :runtimes
16+
attr_reader :instructions
17+
attr_reader :vcs_provider
18+
attr_reader :provider_repository_id
19+
attr_reader :provider_owner
20+
attr_reader :provider_version
21+
attr_reader :variables
22+
attr_reader :scopes
23+
24+
def initialize(
25+
icon:,
26+
id:,
27+
name:,
28+
tagline:,
29+
permissions:,
30+
events:,
31+
cron:,
32+
timeout:,
33+
use_cases:,
34+
runtimes:,
35+
instructions:,
36+
vcs_provider:,
37+
provider_repository_id:,
38+
provider_owner:,
39+
provider_version:,
40+
variables:,
41+
scopes:
42+
)
43+
@icon = icon
44+
@id = id
45+
@name = name
46+
@tagline = tagline
47+
@permissions = permissions
48+
@events = events
49+
@cron = cron
50+
@timeout = timeout
51+
@use_cases = use_cases
52+
@runtimes = runtimes
53+
@instructions = instructions
54+
@vcs_provider = vcs_provider
55+
@provider_repository_id = provider_repository_id
56+
@provider_owner = provider_owner
57+
@provider_version = provider_version
58+
@variables = variables
59+
@scopes = scopes
60+
end
61+
62+
def self.from(map:)
63+
TemplateFunction.new(
64+
icon: map["icon"],
65+
id: map["id"],
66+
name: map["name"],
67+
tagline: map["tagline"],
68+
permissions: map["permissions"],
69+
events: map["events"],
70+
cron: map["cron"],
71+
timeout: map["timeout"],
72+
use_cases: map["useCases"],
73+
runtimes: map["runtimes"].map { |it| TemplateRuntime.from(map: it) },
74+
instructions: map["instructions"],
75+
vcs_provider: map["vcsProvider"],
76+
provider_repository_id: map["providerRepositoryId"],
77+
provider_owner: map["providerOwner"],
78+
provider_version: map["providerVersion"],
79+
variables: map["variables"].map { |it| TemplateVariable.from(map: it) },
80+
scopes: map["scopes"]
81+
)
82+
end
83+
84+
def to_map
85+
{
86+
"icon": @icon,
87+
"id": @id,
88+
"name": @name,
89+
"tagline": @tagline,
90+
"permissions": @permissions,
91+
"events": @events,
92+
"cron": @cron,
93+
"timeout": @timeout,
94+
"useCases": @use_cases,
95+
"runtimes": @runtimes.map { |it| it.to_map },
96+
"instructions": @instructions,
97+
"vcsProvider": @vcs_provider,
98+
"providerRepositoryId": @provider_repository_id,
99+
"providerOwner": @provider_owner,
100+
"providerVersion": @provider_version,
101+
"variables": @variables.map { |it| it.to_map },
102+
"scopes": @scopes
103+
}
104+
end
105+
end
106+
end
107+
end
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,32 @@
1+
#frozen_string_literal: true
2+
3+
module Appwrite
4+
module Models
5+
class TemplateFunctionList
6+
attr_reader :total
7+
attr_reader :templates
8+
9+
def initialize(
10+
total:,
11+
templates:
12+
)
13+
@total = total
14+
@templates = templates
15+
end
16+
17+
def self.from(map:)
18+
TemplateFunctionList.new(
19+
total: map["total"],
20+
templates: map["templates"].map { |it| TemplateFunction.from(map: it) }
21+
)
22+
end
23+
24+
def to_map
25+
{
26+
"total": @total,
27+
"templates": @templates.map { |it| it.to_map }
28+
}
29+
end
30+
end
31+
end
32+
end
+42
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,42 @@
1+
#frozen_string_literal: true
2+
3+
module Appwrite
4+
module Models
5+
class TemplateRuntime
6+
attr_reader :name
7+
attr_reader :commands
8+
attr_reader :entrypoint
9+
attr_reader :provider_root_directory
10+
11+
def initialize(
12+
name:,
13+
commands:,
14+
entrypoint:,
15+
provider_root_directory:
16+
)
17+
@name = name
18+
@commands = commands
19+
@entrypoint = entrypoint
20+
@provider_root_directory = provider_root_directory
21+
end
22+
23+
def self.from(map:)
24+
TemplateRuntime.new(
25+
name: map["name"],
26+
commands: map["commands"],
27+
entrypoint: map["entrypoint"],
28+
provider_root_directory: map["providerRootDirectory"]
29+
)
30+
end
31+
32+
def to_map
33+
{
34+
"name": @name,
35+
"commands": @commands,
36+
"entrypoint": @entrypoint,
37+
"providerRootDirectory": @provider_root_directory
38+
}
39+
end
40+
end
41+
end
42+
end

0 commit comments

Comments
 (0)