pulp_npm_client 0.8.0 → 0.10.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 +4 -4
- data/README.md +21 -4
- data/docs/ContentPackagesApi.md +4 -0
- data/docs/DistributionsNpmApi.md +312 -0
- data/docs/MyPermissionsResponse.md +18 -0
- data/docs/NestedRole.md +22 -0
- data/docs/NestedRoleResponse.md +22 -0
- data/docs/NpmPingApi.md +1 -7
- data/docs/ObjectRolesResponse.md +18 -0
- data/docs/RemotesNpmApi.md +312 -0
- data/docs/RepositoriesNpmApi.md +312 -0
- data/docs/RepositoryAddRemoveContent.md +3 -1
- data/lib/pulp_npm_client/api/content_packages_api.rb +6 -0
- data/lib/pulp_npm_client/api/distributions_npm_api.rb +298 -0
- data/lib/pulp_npm_client/api/npm_ping_api.rb +1 -1
- data/lib/pulp_npm_client/api/remotes_npm_api.rb +298 -0
- data/lib/pulp_npm_client/api/repositories_npm_api.rb +298 -0
- data/lib/pulp_npm_client/models/my_permissions_response.rb +223 -0
- data/lib/pulp_npm_client/models/nested_role.rb +263 -0
- data/lib/pulp_npm_client/models/nested_role_response.rb +244 -0
- data/lib/pulp_npm_client/models/object_roles_response.rb +223 -0
- data/lib/pulp_npm_client/models/repository_add_remove_content.rb +16 -4
- data/lib/pulp_npm_client/version.rb +1 -1
- data/lib/pulp_npm_client.rb +4 -0
- data/spec/api/content_packages_api_spec.rb +2 -0
- data/spec/api/distributions_npm_api_spec.rb +58 -0
- data/spec/api/remotes_npm_api_spec.rb +58 -0
- data/spec/api/repositories_npm_api_spec.rb +58 -0
- data/spec/models/my_permissions_response_spec.rb +36 -0
- data/spec/models/nested_role_response_spec.rb +48 -0
- data/spec/models/nested_role_spec.rb +48 -0
- data/spec/models/object_roles_response_spec.rb +36 -0
- data/spec/models/repository_add_remove_content_spec.rb +6 -0
- metadata +43 -27
|
@@ -32,6 +32,20 @@ describe 'RemotesNpmApi' do
|
|
|
32
32
|
end
|
|
33
33
|
end
|
|
34
34
|
|
|
35
|
+
# unit tests for add_role
|
|
36
|
+
# Add a role
|
|
37
|
+
# Add a role for this object to users/groups.
|
|
38
|
+
# @param npm_npm_remote_href
|
|
39
|
+
# @param nested_role
|
|
40
|
+
# @param [Hash] opts the optional parameters
|
|
41
|
+
# @option opts [Array<String>] :x_task_diagnostics List of profilers to use on tasks.
|
|
42
|
+
# @return [NestedRoleResponse]
|
|
43
|
+
describe 'add_role test' do
|
|
44
|
+
it 'should work' do
|
|
45
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
|
46
|
+
end
|
|
47
|
+
end
|
|
48
|
+
|
|
35
49
|
# unit tests for create
|
|
36
50
|
# Create a npm remote
|
|
37
51
|
# A ViewSet for NpmRemote. Similar to the NpmPackageViewSet above, define endpoint_name, queryset and serializer, at a minimum.
|
|
@@ -96,6 +110,36 @@ describe 'RemotesNpmApi' do
|
|
|
96
110
|
end
|
|
97
111
|
end
|
|
98
112
|
|
|
113
|
+
# unit tests for list_roles
|
|
114
|
+
# List roles
|
|
115
|
+
# List roles assigned to this object.
|
|
116
|
+
# @param npm_npm_remote_href
|
|
117
|
+
# @param [Hash] opts the optional parameters
|
|
118
|
+
# @option opts [Array<String>] :x_task_diagnostics List of profilers to use on tasks.
|
|
119
|
+
# @option opts [Array<String>] :fields A list of fields to include in the response.
|
|
120
|
+
# @option opts [Array<String>] :exclude_fields A list of fields to exclude from the response.
|
|
121
|
+
# @return [ObjectRolesResponse]
|
|
122
|
+
describe 'list_roles test' do
|
|
123
|
+
it 'should work' do
|
|
124
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
|
125
|
+
end
|
|
126
|
+
end
|
|
127
|
+
|
|
128
|
+
# unit tests for my_permissions
|
|
129
|
+
# List user permissions
|
|
130
|
+
# List permissions available to the current user on this object.
|
|
131
|
+
# @param npm_npm_remote_href
|
|
132
|
+
# @param [Hash] opts the optional parameters
|
|
133
|
+
# @option opts [Array<String>] :x_task_diagnostics List of profilers to use on tasks.
|
|
134
|
+
# @option opts [Array<String>] :fields A list of fields to include in the response.
|
|
135
|
+
# @option opts [Array<String>] :exclude_fields A list of fields to exclude from the response.
|
|
136
|
+
# @return [MyPermissionsResponse]
|
|
137
|
+
describe 'my_permissions test' do
|
|
138
|
+
it 'should work' do
|
|
139
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
|
140
|
+
end
|
|
141
|
+
end
|
|
142
|
+
|
|
99
143
|
# unit tests for partial_update
|
|
100
144
|
# Update a npm remote
|
|
101
145
|
# Update the entity partially and trigger an asynchronous task if necessary
|
|
@@ -125,6 +169,20 @@ describe 'RemotesNpmApi' do
|
|
|
125
169
|
end
|
|
126
170
|
end
|
|
127
171
|
|
|
172
|
+
# unit tests for remove_role
|
|
173
|
+
# Remove a role
|
|
174
|
+
# Remove a role for this object from users/groups.
|
|
175
|
+
# @param npm_npm_remote_href
|
|
176
|
+
# @param nested_role
|
|
177
|
+
# @param [Hash] opts the optional parameters
|
|
178
|
+
# @option opts [Array<String>] :x_task_diagnostics List of profilers to use on tasks.
|
|
179
|
+
# @return [NestedRoleResponse]
|
|
180
|
+
describe 'remove_role test' do
|
|
181
|
+
it 'should work' do
|
|
182
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
|
183
|
+
end
|
|
184
|
+
end
|
|
185
|
+
|
|
128
186
|
# unit tests for set_label
|
|
129
187
|
# Set a label
|
|
130
188
|
# Set a single pulp_label on the object to a specific value or null.
|
|
@@ -32,6 +32,20 @@ describe 'RepositoriesNpmApi' do
|
|
|
32
32
|
end
|
|
33
33
|
end
|
|
34
34
|
|
|
35
|
+
# unit tests for add_role
|
|
36
|
+
# Add a role
|
|
37
|
+
# Add a role for this object to users/groups.
|
|
38
|
+
# @param npm_npm_repository_href
|
|
39
|
+
# @param nested_role
|
|
40
|
+
# @param [Hash] opts the optional parameters
|
|
41
|
+
# @option opts [Array<String>] :x_task_diagnostics List of profilers to use on tasks.
|
|
42
|
+
# @return [NestedRoleResponse]
|
|
43
|
+
describe 'add_role test' do
|
|
44
|
+
it 'should work' do
|
|
45
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
|
46
|
+
end
|
|
47
|
+
end
|
|
48
|
+
|
|
35
49
|
# unit tests for create
|
|
36
50
|
# Create a npm repository
|
|
37
51
|
# A ViewSet for NpmRepository. Similar to the NpmPackageViewSet above, define endpoint_name, queryset and serializer, at a minimum.
|
|
@@ -108,6 +122,21 @@ describe 'RepositoriesNpmApi' do
|
|
|
108
122
|
end
|
|
109
123
|
end
|
|
110
124
|
|
|
125
|
+
# unit tests for list_roles
|
|
126
|
+
# List roles
|
|
127
|
+
# List roles assigned to this object.
|
|
128
|
+
# @param npm_npm_repository_href
|
|
129
|
+
# @param [Hash] opts the optional parameters
|
|
130
|
+
# @option opts [Array<String>] :x_task_diagnostics List of profilers to use on tasks.
|
|
131
|
+
# @option opts [Array<String>] :fields A list of fields to include in the response.
|
|
132
|
+
# @option opts [Array<String>] :exclude_fields A list of fields to exclude from the response.
|
|
133
|
+
# @return [ObjectRolesResponse]
|
|
134
|
+
describe 'list_roles test' do
|
|
135
|
+
it 'should work' do
|
|
136
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
|
137
|
+
end
|
|
138
|
+
end
|
|
139
|
+
|
|
111
140
|
# unit tests for modify
|
|
112
141
|
# Modify Repository Content
|
|
113
142
|
# Trigger an asynchronous task to create a new repository version.
|
|
@@ -122,6 +151,21 @@ describe 'RepositoriesNpmApi' do
|
|
|
122
151
|
end
|
|
123
152
|
end
|
|
124
153
|
|
|
154
|
+
# unit tests for my_permissions
|
|
155
|
+
# List user permissions
|
|
156
|
+
# List permissions available to the current user on this object.
|
|
157
|
+
# @param npm_npm_repository_href
|
|
158
|
+
# @param [Hash] opts the optional parameters
|
|
159
|
+
# @option opts [Array<String>] :x_task_diagnostics List of profilers to use on tasks.
|
|
160
|
+
# @option opts [Array<String>] :fields A list of fields to include in the response.
|
|
161
|
+
# @option opts [Array<String>] :exclude_fields A list of fields to exclude from the response.
|
|
162
|
+
# @return [MyPermissionsResponse]
|
|
163
|
+
describe 'my_permissions test' do
|
|
164
|
+
it 'should work' do
|
|
165
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
|
166
|
+
end
|
|
167
|
+
end
|
|
168
|
+
|
|
125
169
|
# unit tests for partial_update
|
|
126
170
|
# Update a npm repository
|
|
127
171
|
# Update the entity partially and trigger an asynchronous task if necessary
|
|
@@ -151,6 +195,20 @@ describe 'RepositoriesNpmApi' do
|
|
|
151
195
|
end
|
|
152
196
|
end
|
|
153
197
|
|
|
198
|
+
# unit tests for remove_role
|
|
199
|
+
# Remove a role
|
|
200
|
+
# Remove a role for this object from users/groups.
|
|
201
|
+
# @param npm_npm_repository_href
|
|
202
|
+
# @param nested_role
|
|
203
|
+
# @param [Hash] opts the optional parameters
|
|
204
|
+
# @option opts [Array<String>] :x_task_diagnostics List of profilers to use on tasks.
|
|
205
|
+
# @return [NestedRoleResponse]
|
|
206
|
+
describe 'remove_role test' do
|
|
207
|
+
it 'should work' do
|
|
208
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
|
209
|
+
end
|
|
210
|
+
end
|
|
211
|
+
|
|
154
212
|
# unit tests for set_label
|
|
155
213
|
# Set a label
|
|
156
214
|
# Set a single pulp_label on the object to a specific value or null.
|
|
@@ -0,0 +1,36 @@
|
|
|
1
|
+
=begin
|
|
2
|
+
#Pulp 3 API
|
|
3
|
+
|
|
4
|
+
#Fetch, Upload, Organize, and Distribute Software Packages
|
|
5
|
+
|
|
6
|
+
The version of the OpenAPI document: v3
|
|
7
|
+
Contact: pulp-list@redhat.com
|
|
8
|
+
Generated by: https://openapi-generator.tech
|
|
9
|
+
Generator version: 7.10.0
|
|
10
|
+
|
|
11
|
+
=end
|
|
12
|
+
|
|
13
|
+
require 'spec_helper'
|
|
14
|
+
require 'json'
|
|
15
|
+
require 'date'
|
|
16
|
+
|
|
17
|
+
# Unit tests for PulpNpmClient::MyPermissionsResponse
|
|
18
|
+
# Automatically generated by openapi-generator (https://openapi-generator.tech)
|
|
19
|
+
# Please update as you see appropriate
|
|
20
|
+
describe PulpNpmClient::MyPermissionsResponse do
|
|
21
|
+
let(:instance) { PulpNpmClient::MyPermissionsResponse.new }
|
|
22
|
+
|
|
23
|
+
describe 'test an instance of MyPermissionsResponse' do
|
|
24
|
+
it 'should create an instance of MyPermissionsResponse' do
|
|
25
|
+
# uncomment below to test the instance creation
|
|
26
|
+
#expect(instance).to be_instance_of(PulpNpmClient::MyPermissionsResponse)
|
|
27
|
+
end
|
|
28
|
+
end
|
|
29
|
+
|
|
30
|
+
describe 'test attribute "permissions"' do
|
|
31
|
+
it 'should work' do
|
|
32
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
|
33
|
+
end
|
|
34
|
+
end
|
|
35
|
+
|
|
36
|
+
end
|
|
@@ -0,0 +1,48 @@
|
|
|
1
|
+
=begin
|
|
2
|
+
#Pulp 3 API
|
|
3
|
+
|
|
4
|
+
#Fetch, Upload, Organize, and Distribute Software Packages
|
|
5
|
+
|
|
6
|
+
The version of the OpenAPI document: v3
|
|
7
|
+
Contact: pulp-list@redhat.com
|
|
8
|
+
Generated by: https://openapi-generator.tech
|
|
9
|
+
Generator version: 7.10.0
|
|
10
|
+
|
|
11
|
+
=end
|
|
12
|
+
|
|
13
|
+
require 'spec_helper'
|
|
14
|
+
require 'json'
|
|
15
|
+
require 'date'
|
|
16
|
+
|
|
17
|
+
# Unit tests for PulpNpmClient::NestedRoleResponse
|
|
18
|
+
# Automatically generated by openapi-generator (https://openapi-generator.tech)
|
|
19
|
+
# Please update as you see appropriate
|
|
20
|
+
describe PulpNpmClient::NestedRoleResponse do
|
|
21
|
+
let(:instance) { PulpNpmClient::NestedRoleResponse.new }
|
|
22
|
+
|
|
23
|
+
describe 'test an instance of NestedRoleResponse' do
|
|
24
|
+
it 'should create an instance of NestedRoleResponse' do
|
|
25
|
+
# uncomment below to test the instance creation
|
|
26
|
+
#expect(instance).to be_instance_of(PulpNpmClient::NestedRoleResponse)
|
|
27
|
+
end
|
|
28
|
+
end
|
|
29
|
+
|
|
30
|
+
describe 'test attribute "users"' do
|
|
31
|
+
it 'should work' do
|
|
32
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
|
33
|
+
end
|
|
34
|
+
end
|
|
35
|
+
|
|
36
|
+
describe 'test attribute "groups"' do
|
|
37
|
+
it 'should work' do
|
|
38
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
|
39
|
+
end
|
|
40
|
+
end
|
|
41
|
+
|
|
42
|
+
describe 'test attribute "role"' do
|
|
43
|
+
it 'should work' do
|
|
44
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
|
45
|
+
end
|
|
46
|
+
end
|
|
47
|
+
|
|
48
|
+
end
|
|
@@ -0,0 +1,48 @@
|
|
|
1
|
+
=begin
|
|
2
|
+
#Pulp 3 API
|
|
3
|
+
|
|
4
|
+
#Fetch, Upload, Organize, and Distribute Software Packages
|
|
5
|
+
|
|
6
|
+
The version of the OpenAPI document: v3
|
|
7
|
+
Contact: pulp-list@redhat.com
|
|
8
|
+
Generated by: https://openapi-generator.tech
|
|
9
|
+
Generator version: 7.10.0
|
|
10
|
+
|
|
11
|
+
=end
|
|
12
|
+
|
|
13
|
+
require 'spec_helper'
|
|
14
|
+
require 'json'
|
|
15
|
+
require 'date'
|
|
16
|
+
|
|
17
|
+
# Unit tests for PulpNpmClient::NestedRole
|
|
18
|
+
# Automatically generated by openapi-generator (https://openapi-generator.tech)
|
|
19
|
+
# Please update as you see appropriate
|
|
20
|
+
describe PulpNpmClient::NestedRole do
|
|
21
|
+
let(:instance) { PulpNpmClient::NestedRole.new }
|
|
22
|
+
|
|
23
|
+
describe 'test an instance of NestedRole' do
|
|
24
|
+
it 'should create an instance of NestedRole' do
|
|
25
|
+
# uncomment below to test the instance creation
|
|
26
|
+
#expect(instance).to be_instance_of(PulpNpmClient::NestedRole)
|
|
27
|
+
end
|
|
28
|
+
end
|
|
29
|
+
|
|
30
|
+
describe 'test attribute "users"' do
|
|
31
|
+
it 'should work' do
|
|
32
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
|
33
|
+
end
|
|
34
|
+
end
|
|
35
|
+
|
|
36
|
+
describe 'test attribute "groups"' do
|
|
37
|
+
it 'should work' do
|
|
38
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
|
39
|
+
end
|
|
40
|
+
end
|
|
41
|
+
|
|
42
|
+
describe 'test attribute "role"' do
|
|
43
|
+
it 'should work' do
|
|
44
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
|
45
|
+
end
|
|
46
|
+
end
|
|
47
|
+
|
|
48
|
+
end
|
|
@@ -0,0 +1,36 @@
|
|
|
1
|
+
=begin
|
|
2
|
+
#Pulp 3 API
|
|
3
|
+
|
|
4
|
+
#Fetch, Upload, Organize, and Distribute Software Packages
|
|
5
|
+
|
|
6
|
+
The version of the OpenAPI document: v3
|
|
7
|
+
Contact: pulp-list@redhat.com
|
|
8
|
+
Generated by: https://openapi-generator.tech
|
|
9
|
+
Generator version: 7.10.0
|
|
10
|
+
|
|
11
|
+
=end
|
|
12
|
+
|
|
13
|
+
require 'spec_helper'
|
|
14
|
+
require 'json'
|
|
15
|
+
require 'date'
|
|
16
|
+
|
|
17
|
+
# Unit tests for PulpNpmClient::ObjectRolesResponse
|
|
18
|
+
# Automatically generated by openapi-generator (https://openapi-generator.tech)
|
|
19
|
+
# Please update as you see appropriate
|
|
20
|
+
describe PulpNpmClient::ObjectRolesResponse do
|
|
21
|
+
let(:instance) { PulpNpmClient::ObjectRolesResponse.new }
|
|
22
|
+
|
|
23
|
+
describe 'test an instance of ObjectRolesResponse' do
|
|
24
|
+
it 'should create an instance of ObjectRolesResponse' do
|
|
25
|
+
# uncomment below to test the instance creation
|
|
26
|
+
#expect(instance).to be_instance_of(PulpNpmClient::ObjectRolesResponse)
|
|
27
|
+
end
|
|
28
|
+
end
|
|
29
|
+
|
|
30
|
+
describe 'test attribute "roles"' do
|
|
31
|
+
it 'should work' do
|
|
32
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
|
33
|
+
end
|
|
34
|
+
end
|
|
35
|
+
|
|
36
|
+
end
|
|
@@ -45,4 +45,10 @@ describe PulpNpmClient::RepositoryAddRemoveContent do
|
|
|
45
45
|
end
|
|
46
46
|
end
|
|
47
47
|
|
|
48
|
+
describe 'test attribute "overwrite"' do
|
|
49
|
+
it 'should work' do
|
|
50
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
|
51
|
+
end
|
|
52
|
+
end
|
|
53
|
+
|
|
48
54
|
end
|
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.
|
|
4
|
+
version: 0.10.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- OpenAPI-Generator
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2026-
|
|
11
|
+
date: 2026-08-11 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: faraday
|
|
@@ -92,6 +92,9 @@ files:
|
|
|
92
92
|
- docs/ContentPackagesApi.md
|
|
93
93
|
- docs/ContentSummaryResponse.md
|
|
94
94
|
- docs/DistributionsNpmApi.md
|
|
95
|
+
- docs/MyPermissionsResponse.md
|
|
96
|
+
- docs/NestedRole.md
|
|
97
|
+
- docs/NestedRoleResponse.md
|
|
95
98
|
- docs/NpmApi.md
|
|
96
99
|
- docs/NpmNpmDistribution.md
|
|
97
100
|
- docs/NpmNpmDistributionResponse.md
|
|
@@ -103,6 +106,7 @@ files:
|
|
|
103
106
|
- docs/NpmPackageResponse.md
|
|
104
107
|
- docs/NpmPingApi.md
|
|
105
108
|
- docs/NpmWhoamiApi.md
|
|
109
|
+
- docs/ObjectRolesResponse.md
|
|
106
110
|
- docs/PaginatedRepositoryVersionResponseList.md
|
|
107
111
|
- docs/PaginatednpmNpmDistributionResponseList.md
|
|
108
112
|
- docs/PaginatednpmNpmRemoteResponseList.md
|
|
@@ -139,6 +143,9 @@ files:
|
|
|
139
143
|
- lib/pulp_npm_client/configuration.rb
|
|
140
144
|
- lib/pulp_npm_client/models/async_operation_response.rb
|
|
141
145
|
- lib/pulp_npm_client/models/content_summary_response.rb
|
|
146
|
+
- lib/pulp_npm_client/models/my_permissions_response.rb
|
|
147
|
+
- lib/pulp_npm_client/models/nested_role.rb
|
|
148
|
+
- lib/pulp_npm_client/models/nested_role_response.rb
|
|
142
149
|
- lib/pulp_npm_client/models/npm_npm_distribution.rb
|
|
143
150
|
- lib/pulp_npm_client/models/npm_npm_distribution_response.rb
|
|
144
151
|
- lib/pulp_npm_client/models/npm_npm_remote.rb
|
|
@@ -147,6 +154,7 @@ files:
|
|
|
147
154
|
- lib/pulp_npm_client/models/npm_npm_repository.rb
|
|
148
155
|
- lib/pulp_npm_client/models/npm_npm_repository_response.rb
|
|
149
156
|
- lib/pulp_npm_client/models/npm_package_response.rb
|
|
157
|
+
- lib/pulp_npm_client/models/object_roles_response.rb
|
|
150
158
|
- lib/pulp_npm_client/models/paginated_repository_version_response_list.rb
|
|
151
159
|
- lib/pulp_npm_client/models/paginatednpm_npm_distribution_response_list.rb
|
|
152
160
|
- lib/pulp_npm_client/models/paginatednpm_npm_remote_response_list.rb
|
|
@@ -178,6 +186,9 @@ files:
|
|
|
178
186
|
- spec/api/repositories_npm_versions_api_spec.rb
|
|
179
187
|
- spec/models/async_operation_response_spec.rb
|
|
180
188
|
- spec/models/content_summary_response_spec.rb
|
|
189
|
+
- spec/models/my_permissions_response_spec.rb
|
|
190
|
+
- spec/models/nested_role_response_spec.rb
|
|
191
|
+
- spec/models/nested_role_spec.rb
|
|
181
192
|
- spec/models/npm_npm_distribution_response_spec.rb
|
|
182
193
|
- spec/models/npm_npm_distribution_spec.rb
|
|
183
194
|
- spec/models/npm_npm_remote_response_hidden_fields_inner_spec.rb
|
|
@@ -186,6 +197,7 @@ files:
|
|
|
186
197
|
- spec/models/npm_npm_repository_response_spec.rb
|
|
187
198
|
- spec/models/npm_npm_repository_spec.rb
|
|
188
199
|
- spec/models/npm_package_response_spec.rb
|
|
200
|
+
- spec/models/object_roles_response_spec.rb
|
|
189
201
|
- spec/models/paginated_repository_version_response_list_spec.rb
|
|
190
202
|
- spec/models/paginatednpm_npm_distribution_response_list_spec.rb
|
|
191
203
|
- spec/models/paginatednpm_npm_remote_response_list_spec.rb
|
|
@@ -231,40 +243,44 @@ specification_version: 4
|
|
|
231
243
|
summary: Pulp 3 API Ruby Gem
|
|
232
244
|
test_files:
|
|
233
245
|
- spec/api/repositories_npm_versions_api_spec.rb
|
|
234
|
-
- spec/api/remotes_npm_api_spec.rb
|
|
235
|
-
- spec/api/distributions_npm_api_spec.rb
|
|
236
|
-
- spec/api/npm_ping_api_spec.rb
|
|
237
|
-
- spec/api/npm_api_spec.rb
|
|
238
|
-
- spec/api/content_packages_api_spec.rb
|
|
239
246
|
- spec/api/repositories_npm_api_spec.rb
|
|
247
|
+
- spec/api/content_packages_api_spec.rb
|
|
248
|
+
- spec/api/distributions_npm_api_spec.rb
|
|
240
249
|
- spec/api/npm_whoami_api_spec.rb
|
|
241
|
-
- spec/
|
|
242
|
-
- spec/
|
|
243
|
-
- spec/
|
|
250
|
+
- spec/api/remotes_npm_api_spec.rb
|
|
251
|
+
- spec/api/npm_api_spec.rb
|
|
252
|
+
- spec/api/npm_ping_api_spec.rb
|
|
253
|
+
- spec/models/nested_role_response_spec.rb
|
|
254
|
+
- spec/models/npm_npm_remote_response_spec.rb
|
|
255
|
+
- spec/models/npm_npm_repository_response_spec.rb
|
|
244
256
|
- spec/models/paginatednpm_npm_repository_response_list_spec.rb
|
|
257
|
+
- spec/models/object_roles_response_spec.rb
|
|
245
258
|
- spec/models/repository_add_remove_content_spec.rb
|
|
246
|
-
- spec/models/
|
|
259
|
+
- spec/models/paginatednpm_package_response_list_spec.rb
|
|
247
260
|
- spec/models/async_operation_response_spec.rb
|
|
248
|
-
- spec/models/
|
|
249
|
-
- spec/models/
|
|
261
|
+
- spec/models/paginatednpm_npm_remote_response_list_spec.rb
|
|
262
|
+
- spec/models/paginated_repository_version_response_list_spec.rb
|
|
263
|
+
- spec/models/npm_npm_distribution_response_spec.rb
|
|
264
|
+
- spec/models/npm_npm_remote_spec.rb
|
|
265
|
+
- spec/models/set_label_spec.rb
|
|
250
266
|
- spec/models/remote_network_config_spec.rb
|
|
251
|
-
- spec/models/
|
|
267
|
+
- spec/models/content_summary_response_spec.rb
|
|
252
268
|
- spec/models/patchednpm_npm_remote_spec.rb
|
|
253
269
|
- spec/models/remote_network_config_response_spec.rb
|
|
254
|
-
- spec/models/
|
|
255
|
-
- spec/models/
|
|
256
|
-
- spec/models/
|
|
270
|
+
- spec/models/paginatednpm_npm_distribution_response_list_spec.rb
|
|
271
|
+
- spec/models/npm_npm_repository_spec.rb
|
|
272
|
+
- spec/models/npm_package_response_spec.rb
|
|
273
|
+
- spec/models/repository_sync_url_spec.rb
|
|
257
274
|
- spec/models/unset_label_spec.rb
|
|
258
|
-
- spec/models/
|
|
259
|
-
- spec/models/content_summary_response_spec.rb
|
|
260
|
-
- spec/models/patchednpm_npm_distribution_spec.rb
|
|
261
|
-
- spec/models/repository_version_response_spec.rb
|
|
262
|
-
- spec/models/npm_npm_remote_spec.rb
|
|
263
|
-
- spec/models/npm_npm_remote_response_spec.rb
|
|
264
|
-
- spec/models/set_label_response_spec.rb
|
|
265
|
-
- spec/models/paginated_repository_version_response_list_spec.rb
|
|
266
|
-
- spec/models/npm_npm_repository_response_spec.rb
|
|
275
|
+
- spec/models/patchednpm_npm_repository_spec.rb
|
|
267
276
|
- spec/models/npm_npm_distribution_spec.rb
|
|
277
|
+
- spec/models/set_label_response_spec.rb
|
|
278
|
+
- spec/models/nested_role_spec.rb
|
|
279
|
+
- spec/models/repository_version_response_spec.rb
|
|
280
|
+
- spec/models/my_permissions_response_spec.rb
|
|
281
|
+
- spec/models/npm_npm_remote_response_hidden_fields_inner_spec.rb
|
|
282
|
+
- spec/models/unset_label_response_spec.rb
|
|
283
|
+
- spec/models/policy_enum_spec.rb
|
|
284
|
+
- spec/models/patchednpm_npm_distribution_spec.rb
|
|
268
285
|
- spec/models/repair_spec.rb
|
|
269
|
-
- spec/models/set_label_spec.rb
|
|
270
286
|
- spec/spec_helper.rb
|