pulp_npm_client 0.1.0a5.dev1673407042 → 0.1.0a5.dev1673579657
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.
Potentially problematic release.
This version of pulp_npm_client might be problematic. Click here for more details.
- checksums.yaml +4 -4
- data/README.md +4 -4
- data/docs/DistributionsNpmApi.md +4 -0
- data/lib/pulp_npm_client/api/distributions_npm_api.rb +6 -0
- data/lib/pulp_npm_client/version.rb +1 -1
- data/spec/api/distributions_npm_api_spec.rb +2 -0
- metadata +21 -21
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 354040c572fb39242e0fece871458e9f8346875cddd3d8ba17284bbcd07d141f
|
4
|
+
data.tar.gz: 6e3135b67d1cbd71807889aa08bf414d46df910eaae4ba53cb65a63e7c301501
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: b5fd8e7982badf7cdf5f6a5516a166c5bd96ed9beb815dbe2899701735bcc27833944a6a0d8d8826a81ad4a21ecfe99b59735fca736080ddb1a1a4047b1f0dc5
|
7
|
+
data.tar.gz: 90e26d9532c445da716e21d6df8d04787609bdd4a15dfdbef147c20e262fb6b5ab820461a80f51f83801b53367c22d143474ac9bf5cfd693c0e0b10882ec03a6
|
data/README.md
CHANGED
@@ -7,7 +7,7 @@ Fetch, Upload, Organize, and Distribute Software Packages
|
|
7
7
|
This SDK is automatically generated by the [OpenAPI Generator](https://openapi-generator.tech) project:
|
8
8
|
|
9
9
|
- API version: v3
|
10
|
-
- Package version: 0.1.0a5.
|
10
|
+
- Package version: 0.1.0a5.dev1673579657
|
11
11
|
- Build package: org.openapitools.codegen.languages.RubyClientCodegen
|
12
12
|
For more information, please visit [https://pulpproject.org](https://pulpproject.org)
|
13
13
|
|
@@ -24,16 +24,16 @@ gem build pulp_npm_client.gemspec
|
|
24
24
|
Then either install the gem locally:
|
25
25
|
|
26
26
|
```shell
|
27
|
-
gem install ./pulp_npm_client-0.1.0a5.
|
27
|
+
gem install ./pulp_npm_client-0.1.0a5.dev1673579657.gem
|
28
28
|
```
|
29
29
|
|
30
|
-
(for development, run `gem install --dev ./pulp_npm_client-0.1.0a5.
|
30
|
+
(for development, run `gem install --dev ./pulp_npm_client-0.1.0a5.dev1673579657.gem` to install the development dependencies)
|
31
31
|
|
32
32
|
or publish the gem to a gem hosting service, e.g. [RubyGems](https://rubygems.org/).
|
33
33
|
|
34
34
|
Finally add this to the Gemfile:
|
35
35
|
|
36
|
-
gem 'pulp_npm_client', '~> 0.1.0a5.
|
36
|
+
gem 'pulp_npm_client', '~> 0.1.0a5.dev1673579657'
|
37
37
|
|
38
38
|
### Install from Git
|
39
39
|
|
data/docs/DistributionsNpmApi.md
CHANGED
@@ -154,6 +154,8 @@ opts = {
|
|
154
154
|
offset: 56, # Integer | The initial index from which to return the results.
|
155
155
|
ordering: ['ordering_example'], # Array<String> | Ordering
|
156
156
|
pulp_label_select: 'pulp_label_select_example', # String | Filter labels by search string
|
157
|
+
repository: 'repository_example', # String | Filter results where repository matches value
|
158
|
+
repository__in: ['repository__in_example'], # Array<String> | Filter results where repository is in a comma-separated list of values
|
157
159
|
with_content: 'with_content_example', # String | Filter distributions based on the content served by them
|
158
160
|
fields: ['fields_example'], # Array<String> | A list of fields to include in the response.
|
159
161
|
exclude_fields: ['exclude_fields_example'] # Array<String> | A list of fields to exclude from the response.
|
@@ -186,6 +188,8 @@ Name | Type | Description | Notes
|
|
186
188
|
**offset** | **Integer**| The initial index from which to return the results. | [optional]
|
187
189
|
**ordering** | [**Array<String>**](String.md)| Ordering | [optional]
|
188
190
|
**pulp_label_select** | **String**| Filter labels by search string | [optional]
|
191
|
+
**repository** | **String**| Filter results where repository matches value | [optional]
|
192
|
+
**repository__in** | [**Array<String>**](String.md)| Filter results where repository is in a comma-separated list of values | [optional]
|
189
193
|
**with_content** | **String**| Filter distributions based on the content served by them | [optional]
|
190
194
|
**fields** | [**Array<String>**](String.md)| A list of fields to include in the response. | [optional]
|
191
195
|
**exclude_fields** | [**Array<String>**](String.md)| A list of fields to exclude from the response. | [optional]
|
@@ -161,6 +161,8 @@ module PulpNpmClient
|
|
161
161
|
# @option opts [Integer] :offset The initial index from which to return the results.
|
162
162
|
# @option opts [Array<String>] :ordering Ordering
|
163
163
|
# @option opts [String] :pulp_label_select Filter labels by search string
|
164
|
+
# @option opts [String] :repository Filter results where repository matches value
|
165
|
+
# @option opts [Array<String>] :repository__in Filter results where repository is in a comma-separated list of values
|
164
166
|
# @option opts [String] :with_content Filter distributions based on the content served by them
|
165
167
|
# @option opts [Array<String>] :fields A list of fields to include in the response.
|
166
168
|
# @option opts [Array<String>] :exclude_fields A list of fields to exclude from the response.
|
@@ -186,6 +188,8 @@ module PulpNpmClient
|
|
186
188
|
# @option opts [Integer] :offset The initial index from which to return the results.
|
187
189
|
# @option opts [Array<String>] :ordering Ordering
|
188
190
|
# @option opts [String] :pulp_label_select Filter labels by search string
|
191
|
+
# @option opts [String] :repository Filter results where repository matches value
|
192
|
+
# @option opts [Array<String>] :repository__in Filter results where repository is in a comma-separated list of values
|
189
193
|
# @option opts [String] :with_content Filter distributions based on the content served by them
|
190
194
|
# @option opts [Array<String>] :fields A list of fields to include in the response.
|
191
195
|
# @option opts [Array<String>] :exclude_fields A list of fields to exclude from the response.
|
@@ -216,6 +220,8 @@ module PulpNpmClient
|
|
216
220
|
query_params[:'offset'] = opts[:'offset'] if !opts[:'offset'].nil?
|
217
221
|
query_params[:'ordering'] = @api_client.build_collection_param(opts[:'ordering'], :csv) if !opts[:'ordering'].nil?
|
218
222
|
query_params[:'pulp_label_select'] = opts[:'pulp_label_select'] if !opts[:'pulp_label_select'].nil?
|
223
|
+
query_params[:'repository'] = opts[:'repository'] if !opts[:'repository'].nil?
|
224
|
+
query_params[:'repository__in'] = @api_client.build_collection_param(opts[:'repository__in'], :csv) if !opts[:'repository__in'].nil?
|
219
225
|
query_params[:'with_content'] = opts[:'with_content'] if !opts[:'with_content'].nil?
|
220
226
|
query_params[:'fields'] = @api_client.build_collection_param(opts[:'fields'], :multi) if !opts[:'fields'].nil?
|
221
227
|
query_params[:'exclude_fields'] = @api_client.build_collection_param(opts[:'exclude_fields'], :multi) if !opts[:'exclude_fields'].nil?
|
@@ -73,6 +73,8 @@ describe 'DistributionsNpmApi' do
|
|
73
73
|
# @option opts [Integer] :offset The initial index from which to return the results.
|
74
74
|
# @option opts [Array<String>] :ordering Ordering
|
75
75
|
# @option opts [String] :pulp_label_select Filter labels by search string
|
76
|
+
# @option opts [String] :repository Filter results where repository matches value
|
77
|
+
# @option opts [Array<String>] :repository__in Filter results where repository is in a comma-separated list of values
|
76
78
|
# @option opts [String] :with_content Filter distributions based on the content served by them
|
77
79
|
# @option opts [Array<String>] :fields A list of fields to include in the response.
|
78
80
|
# @option opts [Array<String>] :exclude_fields A list of fields to exclude from the response.
|
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.0a5.
|
4
|
+
version: 0.1.0a5.dev1673579657
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- OpenAPI-Generator
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2023-01-
|
11
|
+
date: 2023-01-13 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: faraday
|
@@ -203,36 +203,36 @@ signing_key:
|
|
203
203
|
specification_version: 4
|
204
204
|
summary: Pulp 3 API Ruby Gem
|
205
205
|
test_files:
|
206
|
+
- spec/api/repositories_npm_versions_api_spec.rb
|
206
207
|
- spec/api/pulp_npm_packages_api_spec.rb
|
207
208
|
- spec/api/remotes_npm_api_spec.rb
|
208
|
-
- spec/api/distributions_npm_api_spec.rb
|
209
209
|
- spec/api/content_packages_api_spec.rb
|
210
|
-
- spec/api/
|
210
|
+
- spec/api/distributions_npm_api_spec.rb
|
211
211
|
- spec/api/repositories_npm_api_spec.rb
|
212
212
|
- spec/api_client_spec.rb
|
213
213
|
- spec/configuration_spec.rb
|
214
|
-
- spec/models/repository_sync_url_spec.rb
|
215
214
|
- spec/models/paginatednpm_npm_repository_response_list_spec.rb
|
216
|
-
- spec/models/
|
215
|
+
- spec/models/paginatednpm_package_response_list_spec.rb
|
216
|
+
- spec/models/content_summary_response_spec.rb
|
217
|
+
- spec/models/paginatednpm_npm_distribution_response_list_spec.rb
|
218
|
+
- spec/models/npm_npm_remote_spec.rb
|
217
219
|
- spec/models/npm_package_response_spec.rb
|
218
|
-
- spec/models/
|
219
|
-
- spec/models/
|
220
|
+
- spec/models/paginated_repository_version_response_list_spec.rb
|
221
|
+
- spec/models/patchednpm_npm_distribution_spec.rb
|
220
222
|
- spec/models/repair_spec.rb
|
221
|
-
- spec/models/
|
222
|
-
- spec/models/
|
223
|
+
- spec/models/npm_npm_distribution_response_spec.rb
|
224
|
+
- spec/models/repository_sync_url_spec.rb
|
223
225
|
- spec/models/paginatednpm_npm_remote_response_list_spec.rb
|
224
|
-
- spec/models/repository_add_remove_content_spec.rb
|
225
226
|
- spec/models/npm_npm_repository_spec.rb
|
226
|
-
- spec/models/patchednpm_npm_repository_spec.rb
|
227
|
-
- spec/models/npm_npm_remote_spec.rb
|
228
|
-
- spec/models/paginatednpm_package_response_list_spec.rb
|
229
|
-
- spec/models/npm_npm_distribution_response_spec.rb
|
230
|
-
- spec/models/paginatednpm_npm_distribution_response_list_spec.rb
|
231
|
-
- spec/models/npm_npm_remote_response_hidden_fields_spec.rb
|
232
|
-
- spec/models/paginated_repository_version_response_list_spec.rb
|
233
|
-
- spec/models/npm_npm_repository_response_spec.rb
|
234
|
-
- spec/models/content_summary_response_spec.rb
|
235
227
|
- spec/models/npm_npm_remote_response_spec.rb
|
228
|
+
- spec/models/repository_version_response_spec.rb
|
229
|
+
- spec/models/repository_add_remove_content_spec.rb
|
230
|
+
- spec/models/policy_enum_spec.rb
|
231
|
+
- spec/models/patchednpm_npm_remote_spec.rb
|
232
|
+
- spec/models/npm_npm_repository_response_spec.rb
|
233
|
+
- spec/models/npm_npm_remote_response_hidden_fields_spec.rb
|
234
|
+
- spec/models/npm_package_spec.rb
|
235
|
+
- spec/models/async_operation_response_spec.rb
|
236
236
|
- spec/models/npm_npm_distribution_spec.rb
|
237
|
-
- spec/models/
|
237
|
+
- spec/models/patchednpm_npm_repository_spec.rb
|
238
238
|
- spec/spec_helper.rb
|