Skip to content

Commit 61708e2

Browse files
@jotadevelopersergiohgz
authored andcommitted
feat: package access props are not optional
1 parent 07eaf3b commit 61708e2

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

core/types/src/types.js

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -164,12 +164,12 @@ declare type verdaccio$UpLinkConf = {
164164

165165
declare type verdaccio$PackageAccess = {
166166
storage?: string;
167-
publish?: Array<string>;
168-
proxy?: Array<string>;
169-
access?: Array<string>;
170-
allow_access?: Array<string>;
171-
allow_publish?: Array<string>;
172-
proxy_access?: Array<string>;
167+
publish: Array<string>;
168+
proxy: Array<string>;
169+
access: Array<string>;
170+
allow_access: Array<string>;
171+
allow_publish: Array<string>;
172+
proxy_access: Array<string>;
173173
}
174174

175175
declare type verdaccio$PackageList = {

0 commit comments

Comments
 (0)