dyspatch_client 2.0.0 → 3.0.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 +5 -5
- data/README.md +42 -16
- data/docs/APIError.md +1 -1
- data/docs/Body.md +8 -0
- data/docs/Body1.md +8 -0
- data/docs/CreatedAt.md +7 -0
- data/docs/DraftDescription.md +7 -0
- data/docs/DraftId.md +7 -0
- data/docs/DraftMetaRead.md +14 -0
- data/docs/DraftName.md +7 -0
- data/docs/DraftRead.md +15 -0
- data/docs/DraftUrl.md +7 -0
- data/docs/DraftsApi.md +467 -0
- data/docs/DraftsRead.md +9 -0
- data/docs/LanguageId.md +7 -0
- data/docs/LocalizationId.md +7 -0
- data/docs/LocalizationKeyRead.md +9 -0
- data/docs/LocalizationMetaRead.md +1 -0
- data/docs/LocalizationName.md +7 -0
- data/docs/LocalizationUrl.md +7 -0
- data/docs/LocalizationsApi.md +8 -11
- data/docs/TemplateDescription.md +7 -0
- data/docs/TemplateId.md +7 -0
- data/docs/TemplateMetaRead.md +1 -1
- data/docs/TemplateName.md +7 -0
- data/docs/TemplateRead.md +1 -1
- data/docs/TemplateUrl.md +7 -0
- data/docs/TemplatesApi.md +9 -14
- data/docs/TemplatesRead.md +1 -1
- data/docs/UpdatedAt.md +7 -0
- data/dyspatch_client.gemspec +8 -8
- data/lib/dyspatch_client.rb +24 -3
- data/lib/dyspatch_client/api/drafts_api.rb +479 -0
- data/lib/dyspatch_client/api/localizations_api.rb +23 -22
- data/lib/dyspatch_client/api/templates_api.rb +25 -28
- data/lib/dyspatch_client/api_client.rb +11 -11
- data/lib/dyspatch_client/api_error.rb +3 -3
- data/lib/dyspatch_client/configuration.rb +4 -4
- data/lib/dyspatch_client/models/api_error.rb +11 -15
- data/lib/dyspatch_client/models/body.rb +183 -0
- data/lib/dyspatch_client/models/body_1.rb +183 -0
- data/lib/dyspatch_client/models/compiled_read.rb +14 -22
- data/lib/dyspatch_client/models/created_at.rb +175 -0
- data/lib/dyspatch_client/models/cursor.rb +8 -12
- data/lib/dyspatch_client/models/draft_description.rb +175 -0
- data/lib/dyspatch_client/models/draft_id.rb +175 -0
- data/lib/dyspatch_client/models/draft_meta_read.rb +244 -0
- data/lib/dyspatch_client/models/draft_name.rb +175 -0
- data/lib/dyspatch_client/models/draft_read.rb +255 -0
- data/lib/dyspatch_client/models/draft_url.rb +175 -0
- data/lib/dyspatch_client/models/drafts_read.rb +196 -0
- data/lib/dyspatch_client/models/language_id.rb +175 -0
- data/lib/dyspatch_client/models/localization_id.rb +175 -0
- data/lib/dyspatch_client/models/localization_key_read.rb +192 -0
- data/lib/dyspatch_client/models/localization_meta_read.rb +20 -15
- data/lib/dyspatch_client/models/localization_name.rb +175 -0
- data/lib/dyspatch_client/models/localization_read.rb +8 -13
- data/lib/dyspatch_client/models/localization_url.rb +175 -0
- data/lib/dyspatch_client/models/template_description.rb +175 -0
- data/lib/dyspatch_client/models/template_id.rb +175 -0
- data/lib/dyspatch_client/models/template_meta_read.rb +8 -13
- data/lib/dyspatch_client/models/template_name.rb +175 -0
- data/lib/dyspatch_client/models/template_read.rb +8 -13
- data/lib/dyspatch_client/models/template_url.rb +175 -0
- data/lib/dyspatch_client/models/templates_read.rb +8 -13
- data/lib/dyspatch_client/models/updated_at.rb +175 -0
- data/lib/dyspatch_client/version.rb +4 -4
- data/spec/api/drafts_api_spec.rb +138 -0
- data/spec/api/localizations_api_spec.rb +6 -7
- data/spec/api/templates_api_spec.rb +6 -8
- data/spec/api_client_spec.rb +37 -37
- data/spec/configuration_spec.rb +11 -11
- data/spec/models/api_error_spec.rb +10 -11
- data/spec/models/body_1_spec.rb +41 -0
- data/spec/models/body_spec.rb +41 -0
- data/spec/models/compiled_read_spec.rb +8 -9
- data/spec/models/created_at_spec.rb +35 -0
- data/spec/models/cursor_spec.rb +5 -6
- data/spec/models/draft_description_spec.rb +35 -0
- data/spec/models/draft_id_spec.rb +35 -0
- data/spec/models/draft_meta_read_spec.rb +77 -0
- data/spec/models/draft_name_spec.rb +35 -0
- data/spec/models/draft_read_spec.rb +83 -0
- data/spec/models/draft_url_spec.rb +35 -0
- data/spec/models/drafts_read_spec.rb +47 -0
- data/spec/models/language_id_spec.rb +35 -0
- data/spec/models/localization_id_spec.rb +35 -0
- data/spec/models/localization_key_read_spec.rb +47 -0
- data/spec/models/localization_meta_read_spec.rb +13 -8
- data/spec/models/localization_name_spec.rb +35 -0
- data/spec/models/localization_read_spec.rb +11 -12
- data/spec/models/localization_url_spec.rb +35 -0
- data/spec/models/template_description_spec.rb +35 -0
- data/spec/models/template_id_spec.rb +35 -0
- data/spec/models/template_meta_read_spec.rb +10 -11
- data/spec/models/template_name_spec.rb +35 -0
- data/spec/models/template_read_spec.rb +11 -12
- data/spec/models/template_url_spec.rb +35 -0
- data/spec/models/templates_read_spec.rb +5 -6
- data/spec/models/updated_at_spec.rb +35 -0
- data/spec/spec_helper.rb +3 -3
- metadata +106 -22
@@ -1,12 +1,12 @@
|
|
1
1
|
=begin
|
2
2
|
#Dyspatch API
|
3
3
|
|
4
|
-
## Introduction The Dyspatch API is based on the REST paradigm
|
4
|
+
## Introduction The Dyspatch API is based on the REST paradigm and features resource based URLs with standard HTTP response codes to indicate errors. We use standard HTTP authentication and request verbs and all responses are JSON formatted. See our [Implementation Guide](https://docs.dyspatch.io/development/implementing_dyspatch/) for more details on how to implement Dyspatch. ## API Client Libraries Dyspatch provides API Clients for the following languages and web frameworks: - [Java](https://github.com/getdyspatch/dyspatch-java) - [Javascript](https://github.com/getdyspatch/dyspatch-javascript) - [Python](https://github.com/getdyspatch/dyspatch-python) - [C#](https://github.com/getdyspatch/dyspatch-dotnet) - [Go](https://github.com/getdyspatch/dyspatch-golang) - [Ruby](https://github.com/getdyspatch/dyspatch-ruby)
|
5
5
|
|
6
|
-
OpenAPI spec version: 2019.
|
6
|
+
OpenAPI spec version: 2019.10
|
7
7
|
Contact: support@dyspatch.io
|
8
8
|
Generated by: https://github.com/swagger-api/swagger-codegen.git
|
9
|
-
Swagger Codegen version: 2.
|
9
|
+
Swagger Codegen version: 2.4.9
|
10
10
|
|
11
11
|
=end
|
12
12
|
|
@@ -34,51 +34,50 @@ describe 'TemplateRead' do
|
|
34
34
|
end
|
35
35
|
describe 'test attribute "id"' do
|
36
36
|
it 'should work' do
|
37
|
-
|
37
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
38
38
|
end
|
39
39
|
end
|
40
40
|
|
41
41
|
describe 'test attribute "name"' do
|
42
42
|
it 'should work' do
|
43
|
-
|
43
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
44
44
|
end
|
45
45
|
end
|
46
46
|
|
47
47
|
describe 'test attribute "description"' do
|
48
48
|
it 'should work' do
|
49
|
-
|
49
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
50
50
|
end
|
51
51
|
end
|
52
52
|
|
53
53
|
describe 'test attribute "url"' do
|
54
54
|
it 'should work' do
|
55
|
-
|
55
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
56
56
|
end
|
57
57
|
end
|
58
58
|
|
59
59
|
describe 'test attribute "compiled"' do
|
60
60
|
it 'should work' do
|
61
|
-
|
61
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
62
62
|
end
|
63
63
|
end
|
64
64
|
|
65
65
|
describe 'test attribute "created_at"' do
|
66
66
|
it 'should work' do
|
67
|
-
|
67
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
68
68
|
end
|
69
69
|
end
|
70
70
|
|
71
71
|
describe 'test attribute "updated_at"' do
|
72
72
|
it 'should work' do
|
73
|
-
|
73
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
74
74
|
end
|
75
75
|
end
|
76
76
|
|
77
77
|
describe 'test attribute "localizations"' do
|
78
78
|
it 'should work' do
|
79
|
-
|
79
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
80
80
|
end
|
81
81
|
end
|
82
82
|
|
83
83
|
end
|
84
|
-
|
@@ -0,0 +1,35 @@
|
|
1
|
+
=begin
|
2
|
+
#Dyspatch API
|
3
|
+
|
4
|
+
## Introduction The Dyspatch API is based on the REST paradigm and features resource based URLs with standard HTTP response codes to indicate errors. We use standard HTTP authentication and request verbs and all responses are JSON formatted. See our [Implementation Guide](https://docs.dyspatch.io/development/implementing_dyspatch/) for more details on how to implement Dyspatch. ## API Client Libraries Dyspatch provides API Clients for the following languages and web frameworks: - [Java](https://github.com/getdyspatch/dyspatch-java) - [Javascript](https://github.com/getdyspatch/dyspatch-javascript) - [Python](https://github.com/getdyspatch/dyspatch-python) - [C#](https://github.com/getdyspatch/dyspatch-dotnet) - [Go](https://github.com/getdyspatch/dyspatch-golang) - [Ruby](https://github.com/getdyspatch/dyspatch-ruby)
|
5
|
+
|
6
|
+
OpenAPI spec version: 2019.10
|
7
|
+
Contact: support@dyspatch.io
|
8
|
+
Generated by: https://github.com/swagger-api/swagger-codegen.git
|
9
|
+
Swagger Codegen version: 2.4.9
|
10
|
+
|
11
|
+
=end
|
12
|
+
|
13
|
+
require 'spec_helper'
|
14
|
+
require 'json'
|
15
|
+
require 'date'
|
16
|
+
|
17
|
+
# Unit tests for DyspatchClient::TemplateUrl
|
18
|
+
# Automatically generated by swagger-codegen (github.com/swagger-api/swagger-codegen)
|
19
|
+
# Please update as you see appropriate
|
20
|
+
describe 'TemplateUrl' do
|
21
|
+
before do
|
22
|
+
# run before each test
|
23
|
+
@instance = DyspatchClient::TemplateUrl.new
|
24
|
+
end
|
25
|
+
|
26
|
+
after do
|
27
|
+
# run after each test
|
28
|
+
end
|
29
|
+
|
30
|
+
describe 'test an instance of TemplateUrl' do
|
31
|
+
it 'should create an instance of TemplateUrl' do
|
32
|
+
expect(@instance).to be_instance_of(DyspatchClient::TemplateUrl)
|
33
|
+
end
|
34
|
+
end
|
35
|
+
end
|
@@ -1,12 +1,12 @@
|
|
1
1
|
=begin
|
2
2
|
#Dyspatch API
|
3
3
|
|
4
|
-
## Introduction The Dyspatch API is based on the REST paradigm
|
4
|
+
## Introduction The Dyspatch API is based on the REST paradigm and features resource based URLs with standard HTTP response codes to indicate errors. We use standard HTTP authentication and request verbs and all responses are JSON formatted. See our [Implementation Guide](https://docs.dyspatch.io/development/implementing_dyspatch/) for more details on how to implement Dyspatch. ## API Client Libraries Dyspatch provides API Clients for the following languages and web frameworks: - [Java](https://github.com/getdyspatch/dyspatch-java) - [Javascript](https://github.com/getdyspatch/dyspatch-javascript) - [Python](https://github.com/getdyspatch/dyspatch-python) - [C#](https://github.com/getdyspatch/dyspatch-dotnet) - [Go](https://github.com/getdyspatch/dyspatch-golang) - [Ruby](https://github.com/getdyspatch/dyspatch-ruby)
|
5
5
|
|
6
|
-
OpenAPI spec version: 2019.
|
6
|
+
OpenAPI spec version: 2019.10
|
7
7
|
Contact: support@dyspatch.io
|
8
8
|
Generated by: https://github.com/swagger-api/swagger-codegen.git
|
9
|
-
Swagger Codegen version: 2.
|
9
|
+
Swagger Codegen version: 2.4.9
|
10
10
|
|
11
11
|
=end
|
12
12
|
|
@@ -34,15 +34,14 @@ describe 'TemplatesRead' do
|
|
34
34
|
end
|
35
35
|
describe 'test attribute "cursor"' do
|
36
36
|
it 'should work' do
|
37
|
-
|
37
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
38
38
|
end
|
39
39
|
end
|
40
40
|
|
41
41
|
describe 'test attribute "data"' do
|
42
42
|
it 'should work' do
|
43
|
-
|
43
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
44
44
|
end
|
45
45
|
end
|
46
46
|
|
47
47
|
end
|
48
|
-
|
@@ -0,0 +1,35 @@
|
|
1
|
+
=begin
|
2
|
+
#Dyspatch API
|
3
|
+
|
4
|
+
## Introduction The Dyspatch API is based on the REST paradigm and features resource based URLs with standard HTTP response codes to indicate errors. We use standard HTTP authentication and request verbs and all responses are JSON formatted. See our [Implementation Guide](https://docs.dyspatch.io/development/implementing_dyspatch/) for more details on how to implement Dyspatch. ## API Client Libraries Dyspatch provides API Clients for the following languages and web frameworks: - [Java](https://github.com/getdyspatch/dyspatch-java) - [Javascript](https://github.com/getdyspatch/dyspatch-javascript) - [Python](https://github.com/getdyspatch/dyspatch-python) - [C#](https://github.com/getdyspatch/dyspatch-dotnet) - [Go](https://github.com/getdyspatch/dyspatch-golang) - [Ruby](https://github.com/getdyspatch/dyspatch-ruby)
|
5
|
+
|
6
|
+
OpenAPI spec version: 2019.10
|
7
|
+
Contact: support@dyspatch.io
|
8
|
+
Generated by: https://github.com/swagger-api/swagger-codegen.git
|
9
|
+
Swagger Codegen version: 2.4.9
|
10
|
+
|
11
|
+
=end
|
12
|
+
|
13
|
+
require 'spec_helper'
|
14
|
+
require 'json'
|
15
|
+
require 'date'
|
16
|
+
|
17
|
+
# Unit tests for DyspatchClient::UpdatedAt
|
18
|
+
# Automatically generated by swagger-codegen (github.com/swagger-api/swagger-codegen)
|
19
|
+
# Please update as you see appropriate
|
20
|
+
describe 'UpdatedAt' do
|
21
|
+
before do
|
22
|
+
# run before each test
|
23
|
+
@instance = DyspatchClient::UpdatedAt.new
|
24
|
+
end
|
25
|
+
|
26
|
+
after do
|
27
|
+
# run after each test
|
28
|
+
end
|
29
|
+
|
30
|
+
describe 'test an instance of UpdatedAt' do
|
31
|
+
it 'should create an instance of UpdatedAt' do
|
32
|
+
expect(@instance).to be_instance_of(DyspatchClient::UpdatedAt)
|
33
|
+
end
|
34
|
+
end
|
35
|
+
end
|
data/spec/spec_helper.rb
CHANGED
@@ -1,12 +1,12 @@
|
|
1
1
|
=begin
|
2
2
|
#Dyspatch API
|
3
3
|
|
4
|
-
## Introduction The Dyspatch API is based on the REST paradigm
|
4
|
+
## Introduction The Dyspatch API is based on the REST paradigm and features resource based URLs with standard HTTP response codes to indicate errors. We use standard HTTP authentication and request verbs and all responses are JSON formatted. See our [Implementation Guide](https://docs.dyspatch.io/development/implementing_dyspatch/) for more details on how to implement Dyspatch. ## API Client Libraries Dyspatch provides API Clients for the following languages and web frameworks: - [Java](https://github.com/getdyspatch/dyspatch-java) - [Javascript](https://github.com/getdyspatch/dyspatch-javascript) - [Python](https://github.com/getdyspatch/dyspatch-python) - [C#](https://github.com/getdyspatch/dyspatch-dotnet) - [Go](https://github.com/getdyspatch/dyspatch-golang) - [Ruby](https://github.com/getdyspatch/dyspatch-ruby)
|
5
5
|
|
6
|
-
OpenAPI spec version: 2019.
|
6
|
+
OpenAPI spec version: 2019.10
|
7
7
|
Contact: support@dyspatch.io
|
8
8
|
Generated by: https://github.com/swagger-api/swagger-codegen.git
|
9
|
-
Swagger Codegen version: 2.
|
9
|
+
Swagger Codegen version: 2.4.9
|
10
10
|
|
11
11
|
=end
|
12
12
|
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: dyspatch_client
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version:
|
4
|
+
version: 3.0.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Dyspatch
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2019-
|
11
|
+
date: 2019-11-25 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: typhoeus
|
@@ -34,42 +34,42 @@ dependencies:
|
|
34
34
|
name: json
|
35
35
|
requirement: !ruby/object:Gem::Requirement
|
36
36
|
requirements:
|
37
|
-
- - ">="
|
38
|
-
- !ruby/object:Gem::Version
|
39
|
-
version: 2.1.0
|
40
37
|
- - "~>"
|
41
38
|
- !ruby/object:Gem::Version
|
42
39
|
version: '2.1'
|
40
|
+
- - ">="
|
41
|
+
- !ruby/object:Gem::Version
|
42
|
+
version: 2.1.0
|
43
43
|
type: :runtime
|
44
44
|
prerelease: false
|
45
45
|
version_requirements: !ruby/object:Gem::Requirement
|
46
46
|
requirements:
|
47
|
-
- - ">="
|
48
|
-
- !ruby/object:Gem::Version
|
49
|
-
version: 2.1.0
|
50
47
|
- - "~>"
|
51
48
|
- !ruby/object:Gem::Version
|
52
49
|
version: '2.1'
|
50
|
+
- - ">="
|
51
|
+
- !ruby/object:Gem::Version
|
52
|
+
version: 2.1.0
|
53
53
|
- !ruby/object:Gem::Dependency
|
54
54
|
name: rspec
|
55
55
|
requirement: !ruby/object:Gem::Requirement
|
56
56
|
requirements:
|
57
|
-
- - ">="
|
58
|
-
- !ruby/object:Gem::Version
|
59
|
-
version: 3.6.0
|
60
57
|
- - "~>"
|
61
58
|
- !ruby/object:Gem::Version
|
62
59
|
version: '3.6'
|
60
|
+
- - ">="
|
61
|
+
- !ruby/object:Gem::Version
|
62
|
+
version: 3.6.0
|
63
63
|
type: :development
|
64
64
|
prerelease: false
|
65
65
|
version_requirements: !ruby/object:Gem::Requirement
|
66
66
|
requirements:
|
67
|
-
- - ">="
|
68
|
-
- !ruby/object:Gem::Version
|
69
|
-
version: 3.6.0
|
70
67
|
- - "~>"
|
71
68
|
- !ruby/object:Gem::Version
|
72
69
|
version: '3.6'
|
70
|
+
- - ">="
|
71
|
+
- !ruby/object:Gem::Version
|
72
|
+
version: 3.6.0
|
73
73
|
- !ruby/object:Gem::Dependency
|
74
74
|
name: vcr
|
75
75
|
requirement: !ruby/object:Gem::Requirement
|
@@ -190,12 +190,12 @@ dependencies:
|
|
190
190
|
- - ">="
|
191
191
|
- !ruby/object:Gem::Version
|
192
192
|
version: 0.2.12
|
193
|
-
description: "# Introduction The Dyspatch API is based on the REST paradigm
|
194
|
-
|
195
|
-
|
196
|
-
|
193
|
+
description: "# Introduction The Dyspatch API is based on the REST paradigm and features
|
194
|
+
resource based URLs with standard HTTP response codes to indicate errors. We use
|
195
|
+
standard HTTP authentication and request verbs and all responses are JSON formatted.
|
196
|
+
See our [Implementation Guide](https://docs.dyspatch.io/development/implementing_dyspatch/)
|
197
197
|
for more details on how to implement Dyspatch. ## API Client Libraries Dyspatch
|
198
|
-
provides API Clients for
|
198
|
+
provides API Clients for the following languages and web frameworks: - [Java](https://github.com/getdyspatch/dyspatch-java)
|
199
199
|
- [Javascript](https://github.com/getdyspatch/dyspatch-javascript) - [Python](https://github.com/getdyspatch/dyspatch-python)
|
200
200
|
- [C#](https://github.com/getdyspatch/dyspatch-dotnet) - [Go](https://github.com/getdyspatch/dyspatch-golang)
|
201
201
|
- [Ruby](https://github.com/getdyspatch/dyspatch-ruby) "
|
@@ -210,44 +210,107 @@ files:
|
|
210
210
|
- README.md
|
211
211
|
- Rakefile
|
212
212
|
- docs/APIError.md
|
213
|
+
- docs/Body.md
|
214
|
+
- docs/Body1.md
|
213
215
|
- docs/CompiledRead.md
|
216
|
+
- docs/CreatedAt.md
|
214
217
|
- docs/Cursor.md
|
218
|
+
- docs/DraftDescription.md
|
219
|
+
- docs/DraftId.md
|
220
|
+
- docs/DraftMetaRead.md
|
221
|
+
- docs/DraftName.md
|
222
|
+
- docs/DraftRead.md
|
223
|
+
- docs/DraftUrl.md
|
224
|
+
- docs/DraftsApi.md
|
225
|
+
- docs/DraftsRead.md
|
226
|
+
- docs/LanguageId.md
|
227
|
+
- docs/LocalizationId.md
|
228
|
+
- docs/LocalizationKeyRead.md
|
215
229
|
- docs/LocalizationMetaRead.md
|
230
|
+
- docs/LocalizationName.md
|
216
231
|
- docs/LocalizationRead.md
|
232
|
+
- docs/LocalizationUrl.md
|
217
233
|
- docs/LocalizationsApi.md
|
234
|
+
- docs/TemplateDescription.md
|
235
|
+
- docs/TemplateId.md
|
218
236
|
- docs/TemplateMetaRead.md
|
237
|
+
- docs/TemplateName.md
|
219
238
|
- docs/TemplateRead.md
|
239
|
+
- docs/TemplateUrl.md
|
220
240
|
- docs/TemplatesApi.md
|
221
241
|
- docs/TemplatesRead.md
|
242
|
+
- docs/UpdatedAt.md
|
222
243
|
- dyspatch_client.gemspec
|
223
244
|
- git_push.sh
|
224
245
|
- lib/dyspatch_client.rb
|
246
|
+
- lib/dyspatch_client/api/drafts_api.rb
|
225
247
|
- lib/dyspatch_client/api/localizations_api.rb
|
226
248
|
- lib/dyspatch_client/api/templates_api.rb
|
227
249
|
- lib/dyspatch_client/api_client.rb
|
228
250
|
- lib/dyspatch_client/api_error.rb
|
229
251
|
- lib/dyspatch_client/configuration.rb
|
230
252
|
- lib/dyspatch_client/models/api_error.rb
|
253
|
+
- lib/dyspatch_client/models/body.rb
|
254
|
+
- lib/dyspatch_client/models/body_1.rb
|
231
255
|
- lib/dyspatch_client/models/compiled_read.rb
|
256
|
+
- lib/dyspatch_client/models/created_at.rb
|
232
257
|
- lib/dyspatch_client/models/cursor.rb
|
258
|
+
- lib/dyspatch_client/models/draft_description.rb
|
259
|
+
- lib/dyspatch_client/models/draft_id.rb
|
260
|
+
- lib/dyspatch_client/models/draft_meta_read.rb
|
261
|
+
- lib/dyspatch_client/models/draft_name.rb
|
262
|
+
- lib/dyspatch_client/models/draft_read.rb
|
263
|
+
- lib/dyspatch_client/models/draft_url.rb
|
264
|
+
- lib/dyspatch_client/models/drafts_read.rb
|
265
|
+
- lib/dyspatch_client/models/language_id.rb
|
266
|
+
- lib/dyspatch_client/models/localization_id.rb
|
267
|
+
- lib/dyspatch_client/models/localization_key_read.rb
|
233
268
|
- lib/dyspatch_client/models/localization_meta_read.rb
|
269
|
+
- lib/dyspatch_client/models/localization_name.rb
|
234
270
|
- lib/dyspatch_client/models/localization_read.rb
|
271
|
+
- lib/dyspatch_client/models/localization_url.rb
|
272
|
+
- lib/dyspatch_client/models/template_description.rb
|
273
|
+
- lib/dyspatch_client/models/template_id.rb
|
235
274
|
- lib/dyspatch_client/models/template_meta_read.rb
|
275
|
+
- lib/dyspatch_client/models/template_name.rb
|
236
276
|
- lib/dyspatch_client/models/template_read.rb
|
277
|
+
- lib/dyspatch_client/models/template_url.rb
|
237
278
|
- lib/dyspatch_client/models/templates_read.rb
|
279
|
+
- lib/dyspatch_client/models/updated_at.rb
|
238
280
|
- lib/dyspatch_client/version.rb
|
281
|
+
- spec/api/drafts_api_spec.rb
|
239
282
|
- spec/api/localizations_api_spec.rb
|
240
283
|
- spec/api/templates_api_spec.rb
|
241
284
|
- spec/api_client_spec.rb
|
242
285
|
- spec/configuration_spec.rb
|
243
286
|
- spec/models/api_error_spec.rb
|
287
|
+
- spec/models/body_1_spec.rb
|
288
|
+
- spec/models/body_spec.rb
|
244
289
|
- spec/models/compiled_read_spec.rb
|
290
|
+
- spec/models/created_at_spec.rb
|
245
291
|
- spec/models/cursor_spec.rb
|
292
|
+
- spec/models/draft_description_spec.rb
|
293
|
+
- spec/models/draft_id_spec.rb
|
294
|
+
- spec/models/draft_meta_read_spec.rb
|
295
|
+
- spec/models/draft_name_spec.rb
|
296
|
+
- spec/models/draft_read_spec.rb
|
297
|
+
- spec/models/draft_url_spec.rb
|
298
|
+
- spec/models/drafts_read_spec.rb
|
299
|
+
- spec/models/language_id_spec.rb
|
300
|
+
- spec/models/localization_id_spec.rb
|
301
|
+
- spec/models/localization_key_read_spec.rb
|
246
302
|
- spec/models/localization_meta_read_spec.rb
|
303
|
+
- spec/models/localization_name_spec.rb
|
247
304
|
- spec/models/localization_read_spec.rb
|
305
|
+
- spec/models/localization_url_spec.rb
|
306
|
+
- spec/models/template_description_spec.rb
|
307
|
+
- spec/models/template_id_spec.rb
|
248
308
|
- spec/models/template_meta_read_spec.rb
|
309
|
+
- spec/models/template_name_spec.rb
|
249
310
|
- spec/models/template_read_spec.rb
|
311
|
+
- spec/models/template_url_spec.rb
|
250
312
|
- spec/models/templates_read_spec.rb
|
313
|
+
- spec/models/updated_at_spec.rb
|
251
314
|
- spec/spec_helper.rb
|
252
315
|
homepage: https://www.dyspatch.io
|
253
316
|
licenses:
|
@@ -268,23 +331,44 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
268
331
|
- !ruby/object:Gem::Version
|
269
332
|
version: '0'
|
270
333
|
requirements: []
|
271
|
-
|
334
|
+
rubyforge_project:
|
335
|
+
rubygems_version: 2.6.11
|
272
336
|
signing_key:
|
273
337
|
specification_version: 4
|
274
338
|
summary: Dyspatch is an email production platform that helps teams create and change
|
275
|
-
|
276
|
-
information.
|
339
|
+
emails faster. See https://www.dyspatch.io for more information.
|
277
340
|
test_files:
|
278
341
|
- spec/api/localizations_api_spec.rb
|
342
|
+
- spec/api/drafts_api_spec.rb
|
279
343
|
- spec/api/templates_api_spec.rb
|
280
344
|
- spec/api_client_spec.rb
|
281
345
|
- spec/configuration_spec.rb
|
346
|
+
- spec/models/draft_name_spec.rb
|
347
|
+
- spec/models/language_id_spec.rb
|
348
|
+
- spec/models/draft_id_spec.rb
|
282
349
|
- spec/models/cursor_spec.rb
|
350
|
+
- spec/models/template_description_spec.rb
|
351
|
+
- spec/models/template_name_spec.rb
|
352
|
+
- spec/models/created_at_spec.rb
|
353
|
+
- spec/models/updated_at_spec.rb
|
354
|
+
- spec/models/draft_meta_read_spec.rb
|
283
355
|
- spec/models/api_error_spec.rb
|
356
|
+
- spec/models/body_1_spec.rb
|
284
357
|
- spec/models/template_meta_read_spec.rb
|
358
|
+
- spec/models/localization_id_spec.rb
|
359
|
+
- spec/models/localization_name_spec.rb
|
360
|
+
- spec/models/template_url_spec.rb
|
361
|
+
- spec/models/draft_description_spec.rb
|
285
362
|
- spec/models/localization_meta_read_spec.rb
|
363
|
+
- spec/models/draft_read_spec.rb
|
364
|
+
- spec/models/body_spec.rb
|
365
|
+
- spec/models/drafts_read_spec.rb
|
286
366
|
- spec/models/template_read_spec.rb
|
287
367
|
- spec/models/compiled_read_spec.rb
|
288
368
|
- spec/models/templates_read_spec.rb
|
369
|
+
- spec/models/localization_url_spec.rb
|
370
|
+
- spec/models/template_id_spec.rb
|
371
|
+
- spec/models/draft_url_spec.rb
|
289
372
|
- spec/models/localization_read_spec.rb
|
373
|
+
- spec/models/localization_key_read_spec.rb
|
290
374
|
- spec/spec_helper.rb
|