pulp_npm_client 0.1.0a2 → 0.1.0a3

Sign up to get free protection for your applications and to get access to all the features.
Files changed (50) hide show
  1. checksums.yaml +4 -4
  2. data/README.md +4 -4
  3. data/docs/ContentPackagesApi.md +10 -10
  4. data/docs/ContentSummary.md +3 -3
  5. data/docs/ContentSummaryResponse.md +3 -3
  6. data/docs/DistributionsNpmApi.md +20 -12
  7. data/docs/NpmNpmDistribution.md +2 -0
  8. data/docs/NpmNpmDistributionResponse.md +2 -0
  9. data/docs/NpmNpmRemote.md +20 -2
  10. data/docs/NpmNpmRemoteResponse.md +16 -8
  11. data/docs/NpmNpmRepository.md +3 -1
  12. data/docs/NpmNpmRepositoryResponse.md +2 -0
  13. data/docs/PatchednpmNpmDistribution.md +2 -0
  14. data/docs/PatchednpmNpmRemote.md +20 -2
  15. data/docs/PatchednpmNpmRepository.md +3 -1
  16. data/docs/RemotesNpmApi.md +24 -16
  17. data/docs/RepositoriesNpmApi.md +12 -4
  18. data/docs/RepositoriesNpmVersionsApi.md +30 -30
  19. data/lib/pulp_npm_client/api/content_packages_api.rb +11 -11
  20. data/lib/pulp_npm_client/api/distributions_npm_api.rb +26 -14
  21. data/lib/pulp_npm_client/api/remotes_npm_api.rb +30 -18
  22. data/lib/pulp_npm_client/api/repositories_npm_api.rb +17 -5
  23. data/lib/pulp_npm_client/api/repositories_npm_versions_api.rb +34 -34
  24. data/lib/pulp_npm_client/models/content_summary.rb +12 -6
  25. data/lib/pulp_npm_client/models/content_summary_response.rb +12 -6
  26. data/lib/pulp_npm_client/models/npm_npm_distribution.rb +10 -1
  27. data/lib/pulp_npm_client/models/npm_npm_distribution_response.rb +10 -1
  28. data/lib/pulp_npm_client/models/npm_npm_remote.rb +163 -5
  29. data/lib/pulp_npm_client/models/npm_npm_remote_response.rb +138 -35
  30. data/lib/pulp_npm_client/models/npm_npm_repository.rb +10 -1
  31. data/lib/pulp_npm_client/models/npm_npm_repository_response.rb +10 -1
  32. data/lib/pulp_npm_client/models/patchednpm_npm_distribution.rb +10 -1
  33. data/lib/pulp_npm_client/models/patchednpm_npm_remote.rb +163 -5
  34. data/lib/pulp_npm_client/models/patchednpm_npm_repository.rb +10 -1
  35. data/lib/pulp_npm_client/version.rb +1 -1
  36. data/spec/api/content_packages_api_spec.rb +5 -5
  37. data/spec/api/distributions_npm_api_spec.rb +10 -6
  38. data/spec/api/remotes_npm_api_spec.rb +12 -8
  39. data/spec/api/repositories_npm_api_spec.rb +6 -2
  40. data/spec/api/repositories_npm_versions_api_spec.rb +16 -16
  41. data/spec/models/npm_npm_distribution_response_spec.rb +6 -0
  42. data/spec/models/npm_npm_distribution_spec.rb +6 -0
  43. data/spec/models/npm_npm_remote_response_spec.rb +32 -8
  44. data/spec/models/npm_npm_remote_spec.rb +54 -0
  45. data/spec/models/npm_npm_repository_response_spec.rb +6 -0
  46. data/spec/models/npm_npm_repository_spec.rb +6 -0
  47. data/spec/models/patchednpm_npm_distribution_spec.rb +6 -0
  48. data/spec/models/patchednpm_npm_remote_spec.rb +54 -0
  49. data/spec/models/patchednpm_npm_repository_spec.rb +6 -0
  50. metadata +23 -23
@@ -74,6 +74,18 @@ describe 'NpmNpmRemote' do
74
74
  end
75
75
  end
76
76
 
77
+ describe 'test attribute "proxy_username"' do
78
+ it 'should work' do
79
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
80
+ end
81
+ end
82
+
83
+ describe 'test attribute "proxy_password"' do
84
+ it 'should work' do
85
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
86
+ end
87
+ end
88
+
77
89
  describe 'test attribute "username"' do
78
90
  it 'should work' do
79
91
  # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
@@ -86,6 +98,12 @@ describe 'NpmNpmRemote' do
86
98
  end
87
99
  end
88
100
 
101
+ describe 'test attribute "pulp_labels"' do
102
+ it 'should work' do
103
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
104
+ end
105
+ end
106
+
89
107
  describe 'test attribute "download_concurrency"' do
90
108
  it 'should work' do
91
109
  # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
@@ -98,4 +116,40 @@ describe 'NpmNpmRemote' do
98
116
  end
99
117
  end
100
118
 
119
+ describe 'test attribute "total_timeout"' do
120
+ it 'should work' do
121
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
122
+ end
123
+ end
124
+
125
+ describe 'test attribute "connect_timeout"' do
126
+ it 'should work' do
127
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
128
+ end
129
+ end
130
+
131
+ describe 'test attribute "sock_connect_timeout"' do
132
+ it 'should work' do
133
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
134
+ end
135
+ end
136
+
137
+ describe 'test attribute "sock_read_timeout"' do
138
+ it 'should work' do
139
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
140
+ end
141
+ end
142
+
143
+ describe 'test attribute "headers"' do
144
+ it 'should work' do
145
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
146
+ end
147
+ end
148
+
149
+ describe 'test attribute "rate_limit"' do
150
+ it 'should work' do
151
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
152
+ end
153
+ end
154
+
101
155
  end
@@ -50,6 +50,12 @@ describe 'NpmNpmRepositoryResponse' do
50
50
  end
51
51
  end
52
52
 
53
+ describe 'test attribute "pulp_labels"' do
54
+ it 'should work' do
55
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
56
+ end
57
+ end
58
+
53
59
  describe 'test attribute "latest_version_href"' do
54
60
  it 'should work' do
55
61
  # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
@@ -32,6 +32,12 @@ describe 'NpmNpmRepository' do
32
32
  expect(@instance).to be_instance_of(PulpNpmClient::NpmNpmRepository)
33
33
  end
34
34
  end
35
+ describe 'test attribute "pulp_labels"' do
36
+ it 'should work' do
37
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
38
+ end
39
+ end
40
+
35
41
  describe 'test attribute "name"' do
36
42
  it 'should work' do
37
43
  # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
@@ -44,6 +44,12 @@ describe 'PatchednpmNpmDistribution' do
44
44
  end
45
45
  end
46
46
 
47
+ describe 'test attribute "pulp_labels"' do
48
+ it 'should work' do
49
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
50
+ end
51
+ end
52
+
47
53
  describe 'test attribute "name"' do
48
54
  it 'should work' do
49
55
  # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
@@ -74,6 +74,18 @@ describe 'PatchednpmNpmRemote' do
74
74
  end
75
75
  end
76
76
 
77
+ describe 'test attribute "proxy_username"' do
78
+ it 'should work' do
79
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
80
+ end
81
+ end
82
+
83
+ describe 'test attribute "proxy_password"' do
84
+ it 'should work' do
85
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
86
+ end
87
+ end
88
+
77
89
  describe 'test attribute "username"' do
78
90
  it 'should work' do
79
91
  # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
@@ -86,6 +98,12 @@ describe 'PatchednpmNpmRemote' do
86
98
  end
87
99
  end
88
100
 
101
+ describe 'test attribute "pulp_labels"' do
102
+ it 'should work' do
103
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
104
+ end
105
+ end
106
+
89
107
  describe 'test attribute "download_concurrency"' do
90
108
  it 'should work' do
91
109
  # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
@@ -98,4 +116,40 @@ describe 'PatchednpmNpmRemote' do
98
116
  end
99
117
  end
100
118
 
119
+ describe 'test attribute "total_timeout"' do
120
+ it 'should work' do
121
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
122
+ end
123
+ end
124
+
125
+ describe 'test attribute "connect_timeout"' do
126
+ it 'should work' do
127
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
128
+ end
129
+ end
130
+
131
+ describe 'test attribute "sock_connect_timeout"' do
132
+ it 'should work' do
133
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
134
+ end
135
+ end
136
+
137
+ describe 'test attribute "sock_read_timeout"' do
138
+ it 'should work' do
139
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
140
+ end
141
+ end
142
+
143
+ describe 'test attribute "headers"' do
144
+ it 'should work' do
145
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
146
+ end
147
+ end
148
+
149
+ describe 'test attribute "rate_limit"' do
150
+ it 'should work' do
151
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
152
+ end
153
+ end
154
+
101
155
  end
@@ -32,6 +32,12 @@ describe 'PatchednpmNpmRepository' do
32
32
  expect(@instance).to be_instance_of(PulpNpmClient::PatchednpmNpmRepository)
33
33
  end
34
34
  end
35
+ describe 'test attribute "pulp_labels"' do
36
+ it 'should work' do
37
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
38
+ end
39
+ end
40
+
35
41
  describe 'test attribute "name"' do
36
42
  it 'should work' do
37
43
  # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: pulp_npm_client
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.0a2
4
+ version: 0.1.0a3
5
5
  platform: ruby
6
6
  authors:
7
7
  - OpenAPI-Generator
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2020-11-26 00:00:00.000000000 Z
11
+ date: 2021-03-17 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: faraday
@@ -198,36 +198,36 @@ signing_key:
198
198
  specification_version: 4
199
199
  summary: Pulp 3 API Ruby Gem
200
200
  test_files:
201
- - spec/api/pulp_npm_packages_api_spec.rb
202
- - spec/api/remotes_npm_api_spec.rb
203
- - spec/api/repositories_npm_api_spec.rb
204
- - spec/api/content_packages_api_spec.rb
205
201
  - spec/api/distributions_npm_api_spec.rb
206
202
  - spec/api/repositories_npm_versions_api_spec.rb
203
+ - spec/api/repositories_npm_api_spec.rb
204
+ - spec/api/content_packages_api_spec.rb
205
+ - spec/api/remotes_npm_api_spec.rb
206
+ - spec/api/pulp_npm_packages_api_spec.rb
207
207
  - spec/api_client_spec.rb
208
208
  - spec/configuration_spec.rb
209
- - spec/models/paginatednpm_npm_repository_response_list_spec.rb
210
- - spec/models/patchednpm_npm_remote_spec.rb
211
209
  - spec/models/content_summary_spec.rb
212
- - spec/models/repository_add_remove_content_spec.rb
213
- - spec/models/paginated_repository_version_response_list_spec.rb
214
- - spec/models/content_summary_response_spec.rb
215
- - spec/models/npm_npm_distribution_response_spec.rb
216
- - spec/models/repository_version_response_spec.rb
217
- - spec/models/npm_npm_distribution_spec.rb
218
- - spec/models/paginatednpm_npm_remote_response_list_spec.rb
219
- - spec/models/npm_npm_remote_spec.rb
210
+ - spec/models/async_operation_response_spec.rb
220
211
  - spec/models/npm_npm_remote_response_spec.rb
212
+ - spec/models/paginatednpm_npm_remote_response_list_spec.rb
213
+ - spec/models/npm_npm_distribution_response_spec.rb
214
+ - spec/models/npm_package_response_spec.rb
215
+ - spec/models/npm_package_spec.rb
216
+ - spec/models/paginatednpm_package_response_list_spec.rb
217
+ - spec/models/policy_enum_spec.rb
221
218
  - spec/models/paginatednpm_npm_distribution_response_list_spec.rb
219
+ - spec/models/content_summary_response_spec.rb
220
+ - spec/models/patchednpm_npm_remote_spec.rb
221
+ - spec/models/patchednpm_npm_repository_spec.rb
222
222
  - spec/models/repository_version_spec.rb
223
- - spec/models/policy_enum_spec.rb
223
+ - spec/models/paginated_repository_version_response_list_spec.rb
224
+ - spec/models/repository_add_remove_content_spec.rb
225
+ - spec/models/npm_npm_distribution_spec.rb
226
+ - spec/models/npm_npm_remote_spec.rb
227
+ - spec/models/repository_version_response_spec.rb
224
228
  - spec/models/npm_npm_repository_spec.rb
225
- - spec/models/async_operation_response_spec.rb
226
- - spec/models/patchednpm_npm_repository_spec.rb
227
- - spec/models/npm_package_spec.rb
229
+ - spec/models/repository_sync_url_spec.rb
228
230
  - spec/models/npm_npm_repository_response_spec.rb
229
- - spec/models/paginatednpm_package_response_list_spec.rb
231
+ - spec/models/paginatednpm_npm_repository_response_list_spec.rb
230
232
  - spec/models/patchednpm_npm_distribution_spec.rb
231
- - spec/models/repository_sync_url_spec.rb
232
- - spec/models/npm_package_response_spec.rb
233
233
  - spec/spec_helper.rb