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.
Files changed (102) hide show
  1. checksums.yaml +5 -5
  2. data/README.md +42 -16
  3. data/docs/APIError.md +1 -1
  4. data/docs/Body.md +8 -0
  5. data/docs/Body1.md +8 -0
  6. data/docs/CreatedAt.md +7 -0
  7. data/docs/DraftDescription.md +7 -0
  8. data/docs/DraftId.md +7 -0
  9. data/docs/DraftMetaRead.md +14 -0
  10. data/docs/DraftName.md +7 -0
  11. data/docs/DraftRead.md +15 -0
  12. data/docs/DraftUrl.md +7 -0
  13. data/docs/DraftsApi.md +467 -0
  14. data/docs/DraftsRead.md +9 -0
  15. data/docs/LanguageId.md +7 -0
  16. data/docs/LocalizationId.md +7 -0
  17. data/docs/LocalizationKeyRead.md +9 -0
  18. data/docs/LocalizationMetaRead.md +1 -0
  19. data/docs/LocalizationName.md +7 -0
  20. data/docs/LocalizationUrl.md +7 -0
  21. data/docs/LocalizationsApi.md +8 -11
  22. data/docs/TemplateDescription.md +7 -0
  23. data/docs/TemplateId.md +7 -0
  24. data/docs/TemplateMetaRead.md +1 -1
  25. data/docs/TemplateName.md +7 -0
  26. data/docs/TemplateRead.md +1 -1
  27. data/docs/TemplateUrl.md +7 -0
  28. data/docs/TemplatesApi.md +9 -14
  29. data/docs/TemplatesRead.md +1 -1
  30. data/docs/UpdatedAt.md +7 -0
  31. data/dyspatch_client.gemspec +8 -8
  32. data/lib/dyspatch_client.rb +24 -3
  33. data/lib/dyspatch_client/api/drafts_api.rb +479 -0
  34. data/lib/dyspatch_client/api/localizations_api.rb +23 -22
  35. data/lib/dyspatch_client/api/templates_api.rb +25 -28
  36. data/lib/dyspatch_client/api_client.rb +11 -11
  37. data/lib/dyspatch_client/api_error.rb +3 -3
  38. data/lib/dyspatch_client/configuration.rb +4 -4
  39. data/lib/dyspatch_client/models/api_error.rb +11 -15
  40. data/lib/dyspatch_client/models/body.rb +183 -0
  41. data/lib/dyspatch_client/models/body_1.rb +183 -0
  42. data/lib/dyspatch_client/models/compiled_read.rb +14 -22
  43. data/lib/dyspatch_client/models/created_at.rb +175 -0
  44. data/lib/dyspatch_client/models/cursor.rb +8 -12
  45. data/lib/dyspatch_client/models/draft_description.rb +175 -0
  46. data/lib/dyspatch_client/models/draft_id.rb +175 -0
  47. data/lib/dyspatch_client/models/draft_meta_read.rb +244 -0
  48. data/lib/dyspatch_client/models/draft_name.rb +175 -0
  49. data/lib/dyspatch_client/models/draft_read.rb +255 -0
  50. data/lib/dyspatch_client/models/draft_url.rb +175 -0
  51. data/lib/dyspatch_client/models/drafts_read.rb +196 -0
  52. data/lib/dyspatch_client/models/language_id.rb +175 -0
  53. data/lib/dyspatch_client/models/localization_id.rb +175 -0
  54. data/lib/dyspatch_client/models/localization_key_read.rb +192 -0
  55. data/lib/dyspatch_client/models/localization_meta_read.rb +20 -15
  56. data/lib/dyspatch_client/models/localization_name.rb +175 -0
  57. data/lib/dyspatch_client/models/localization_read.rb +8 -13
  58. data/lib/dyspatch_client/models/localization_url.rb +175 -0
  59. data/lib/dyspatch_client/models/template_description.rb +175 -0
  60. data/lib/dyspatch_client/models/template_id.rb +175 -0
  61. data/lib/dyspatch_client/models/template_meta_read.rb +8 -13
  62. data/lib/dyspatch_client/models/template_name.rb +175 -0
  63. data/lib/dyspatch_client/models/template_read.rb +8 -13
  64. data/lib/dyspatch_client/models/template_url.rb +175 -0
  65. data/lib/dyspatch_client/models/templates_read.rb +8 -13
  66. data/lib/dyspatch_client/models/updated_at.rb +175 -0
  67. data/lib/dyspatch_client/version.rb +4 -4
  68. data/spec/api/drafts_api_spec.rb +138 -0
  69. data/spec/api/localizations_api_spec.rb +6 -7
  70. data/spec/api/templates_api_spec.rb +6 -8
  71. data/spec/api_client_spec.rb +37 -37
  72. data/spec/configuration_spec.rb +11 -11
  73. data/spec/models/api_error_spec.rb +10 -11
  74. data/spec/models/body_1_spec.rb +41 -0
  75. data/spec/models/body_spec.rb +41 -0
  76. data/spec/models/compiled_read_spec.rb +8 -9
  77. data/spec/models/created_at_spec.rb +35 -0
  78. data/spec/models/cursor_spec.rb +5 -6
  79. data/spec/models/draft_description_spec.rb +35 -0
  80. data/spec/models/draft_id_spec.rb +35 -0
  81. data/spec/models/draft_meta_read_spec.rb +77 -0
  82. data/spec/models/draft_name_spec.rb +35 -0
  83. data/spec/models/draft_read_spec.rb +83 -0
  84. data/spec/models/draft_url_spec.rb +35 -0
  85. data/spec/models/drafts_read_spec.rb +47 -0
  86. data/spec/models/language_id_spec.rb +35 -0
  87. data/spec/models/localization_id_spec.rb +35 -0
  88. data/spec/models/localization_key_read_spec.rb +47 -0
  89. data/spec/models/localization_meta_read_spec.rb +13 -8
  90. data/spec/models/localization_name_spec.rb +35 -0
  91. data/spec/models/localization_read_spec.rb +11 -12
  92. data/spec/models/localization_url_spec.rb +35 -0
  93. data/spec/models/template_description_spec.rb +35 -0
  94. data/spec/models/template_id_spec.rb +35 -0
  95. data/spec/models/template_meta_read_spec.rb +10 -11
  96. data/spec/models/template_name_spec.rb +35 -0
  97. data/spec/models/template_read_spec.rb +11 -12
  98. data/spec/models/template_url_spec.rb +35 -0
  99. data/spec/models/templates_read_spec.rb +5 -6
  100. data/spec/models/updated_at_spec.rb +35 -0
  101. data/spec/spec_helper.rb +3 -3
  102. 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, 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 popular 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)
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.03
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.3.1
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
- # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
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
- # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
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
- # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
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
- # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
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
- # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
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
- # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
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
- # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
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
- # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
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, 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 popular 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)
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.03
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.3.1
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
- # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
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
- # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
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
@@ -1,12 +1,12 @@
1
1
  =begin
2
2
  #Dyspatch API
3
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 popular 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)
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.03
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.3.1
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: 2.0.0
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-06-07 00:00:00.000000000 Z
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, and
194
- features resource based URLs with standard HTTP response codes to indicate errors.
195
- We use standard HTTP authentication and request verbs, and all responses are JSON
196
- formatted. See our [Implementation Guide](https://docs.dyspatch.io/development/implementing_dyspatch/)
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 popular languages and web frameworks. - [Java](https://github.com/getdyspatch/dyspatch-java)
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
- rubygems_version: 3.0.3
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
- transactional and triggered emails faster. See https://www.dyspatch.io for more
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