npm-pkgbuild 19.0.7 → 19.0.8

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.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "npm-pkgbuild",
3
- "version": "19.0.7",
3
+ "version": "19.0.8",
4
4
  "publishConfig": {
5
5
  "access": "public",
6
6
  "provenance": false
@@ -67,7 +67,7 @@
67
67
  "key-value-transformer": "^3.3.1",
68
68
  "npm-package-walker": "^8.0.11",
69
69
  "npm-packlist": "^10.0.3",
70
- "pacc": "^5.0.0",
70
+ "pacc": "^5.2.0",
71
71
  "package-directory": "^8.1.0",
72
72
  "pacote": "^21.0.4",
73
73
  "tar-stream": "^3.1.7",
@@ -0,0 +1,7 @@
1
+ export class CollectionEntryWithPermissions extends CollectionEntry {
2
+ constructor(name: any, properties: any);
3
+ set mode(value: any);
4
+ get mode(): any;
5
+ #private;
6
+ }
7
+ import { CollectionEntry } from "content-entry";
@@ -0,0 +1,7 @@
1
+ export class FileSystemEntryWithPermissions extends FileSystemEntry {
2
+ constructor(name: any, baseDir: any, properties: any);
3
+ set mode(value: any);
4
+ get mode(): any;
5
+ #private;
6
+ }
7
+ import { FileSystemEntry } from "content-entry-filesystem";
@@ -20,6 +20,7 @@ export class ARCH extends Packager {
20
20
  mandatory: boolean;
21
21
  collection: boolean;
22
22
  private?: boolean;
23
+ credential?: boolean;
23
24
  depends?: string;
24
25
  description?: string;
25
26
  default?: any;
@@ -39,6 +40,7 @@ export class ARCH extends Packager {
39
40
  mandatory: boolean;
40
41
  collection: boolean;
41
42
  private?: boolean;
43
+ credential?: boolean;
42
44
  depends?: string;
43
45
  description?: string;
44
46
  default?: any;
@@ -58,6 +60,7 @@ export class ARCH extends Packager {
58
60
  isKey: boolean;
59
61
  writable: boolean;
60
62
  private?: boolean;
63
+ credential?: boolean;
61
64
  depends?: string;
62
65
  description?: string;
63
66
  default?: any;
@@ -78,6 +81,7 @@ export class ARCH extends Packager {
78
81
  writable: boolean;
79
82
  collection: boolean;
80
83
  private?: boolean;
84
+ credential?: boolean;
81
85
  depends?: string;
82
86
  description?: string;
83
87
  default?: any;
@@ -97,6 +101,7 @@ export class ARCH extends Packager {
97
101
  writable: boolean;
98
102
  collection: boolean;
99
103
  private?: boolean;
104
+ credential?: boolean;
100
105
  depends?: string;
101
106
  description?: string;
102
107
  set?: Function;
@@ -115,6 +120,7 @@ export class ARCH extends Packager {
115
120
  mandatory: boolean;
116
121
  collection: boolean;
117
122
  private?: boolean;
123
+ credential?: boolean;
118
124
  depends?: string;
119
125
  description?: string;
120
126
  set?: Function;
@@ -133,6 +139,7 @@ export class ARCH extends Packager {
133
139
  writable: boolean;
134
140
  collection: boolean;
135
141
  private?: boolean;
142
+ credential?: boolean;
136
143
  depends?: string;
137
144
  description?: string;
138
145
  default?: any;
@@ -152,6 +159,7 @@ export class ARCH extends Packager {
152
159
  mandatory: boolean;
153
160
  collection: boolean;
154
161
  private?: boolean;
162
+ credential?: boolean;
155
163
  depends?: string;
156
164
  description?: string;
157
165
  default?: any;
@@ -170,6 +178,7 @@ export class ARCH extends Packager {
170
178
  writable: boolean;
171
179
  collection: boolean;
172
180
  private?: boolean;
181
+ credential?: boolean;
173
182
  depends?: string;
174
183
  description?: string;
175
184
  default?: any;
@@ -201,6 +210,7 @@ export class ARCH extends Packager {
201
210
  writable: boolean;
202
211
  collection: boolean;
203
212
  private?: boolean;
213
+ credential?: boolean;
204
214
  depends?: string;
205
215
  description?: string;
206
216
  set?: Function;
@@ -18,6 +18,7 @@ export class DEBIAN extends Packager {
18
18
  writable: boolean;
19
19
  collection: boolean;
20
20
  private?: boolean;
21
+ credential?: boolean;
21
22
  depends?: string;
22
23
  description?: string;
23
24
  default?: any;
@@ -37,6 +38,7 @@ export class DEBIAN extends Packager {
37
38
  writable: boolean;
38
39
  collection: boolean;
39
40
  private?: boolean;
41
+ credential?: boolean;
40
42
  depends?: string;
41
43
  description?: string;
42
44
  default?: any;
@@ -55,6 +57,7 @@ export class DEBIAN extends Packager {
55
57
  writable: boolean;
56
58
  collection: boolean;
57
59
  private?: boolean;
60
+ credential?: boolean;
58
61
  depends?: string;
59
62
  description?: string;
60
63
  default?: any;
@@ -74,6 +77,7 @@ export class DEBIAN extends Packager {
74
77
  writable: boolean;
75
78
  collection: boolean;
76
79
  private?: boolean;
80
+ credential?: boolean;
77
81
  depends?: string;
78
82
  description?: string;
79
83
  default?: any;
@@ -93,6 +97,7 @@ export class DEBIAN extends Packager {
93
97
  mandatory: boolean;
94
98
  collection: boolean;
95
99
  private?: boolean;
100
+ credential?: boolean;
96
101
  depends?: string;
97
102
  description?: string;
98
103
  default?: any;
@@ -121,6 +126,7 @@ export class DEBIAN extends Packager {
121
126
  writable: boolean;
122
127
  collection: boolean;
123
128
  private?: boolean;
129
+ credential?: boolean;
124
130
  depends?: string;
125
131
  description?: string;
126
132
  set?: Function;
@@ -139,6 +145,7 @@ export class DEBIAN extends Packager {
139
145
  mandatory: boolean;
140
146
  collection: boolean;
141
147
  private?: boolean;
148
+ credential?: boolean;
142
149
  depends?: string;
143
150
  description?: string;
144
151
  default?: any;
@@ -158,6 +165,7 @@ export class DEBIAN extends Packager {
158
165
  mandatory: boolean;
159
166
  collection: boolean;
160
167
  private?: boolean;
168
+ credential?: boolean;
161
169
  depends?: string;
162
170
  description?: string;
163
171
  default?: any;
@@ -187,6 +195,7 @@ export class DEBIAN extends Packager {
187
195
  mandatory: boolean;
188
196
  collection: boolean;
189
197
  private?: boolean;
198
+ credential?: boolean;
190
199
  depends?: string;
191
200
  description?: string;
192
201
  default?: any;
@@ -16,6 +16,7 @@ export class DOCKER extends Packager {
16
16
  writable: boolean;
17
17
  collection: boolean;
18
18
  private?: boolean;
19
+ credential?: boolean;
19
20
  depends?: string;
20
21
  description?: string;
21
22
  default?: any;
@@ -35,6 +36,7 @@ export class DOCKER extends Packager {
35
36
  writable: boolean;
36
37
  collection: boolean;
37
38
  private?: boolean;
39
+ credential?: boolean;
38
40
  depends?: string;
39
41
  description?: string;
40
42
  default?: any;
@@ -53,6 +55,7 @@ export class DOCKER extends Packager {
53
55
  writable: boolean;
54
56
  collection: boolean;
55
57
  private?: boolean;
58
+ credential?: boolean;
56
59
  depends?: string;
57
60
  description?: string;
58
61
  default?: any;
@@ -72,6 +75,7 @@ export class DOCKER extends Packager {
72
75
  mandatory: boolean;
73
76
  collection: boolean;
74
77
  private?: boolean;
78
+ credential?: boolean;
75
79
  depends?: string;
76
80
  description?: string;
77
81
  default?: any;
@@ -91,6 +95,7 @@ export class DOCKER extends Packager {
91
95
  writable: boolean;
92
96
  collection: boolean;
93
97
  private?: boolean;
98
+ credential?: boolean;
94
99
  depends?: string;
95
100
  description?: string;
96
101
  set?: Function;
@@ -83,6 +83,7 @@ export const pkgbuild_name_attribute: {
83
83
  writable: boolean;
84
84
  collection: boolean;
85
85
  private?: boolean;
86
+ credential?: boolean;
86
87
  depends?: string;
87
88
  description?: string;
88
89
  default?: any;
@@ -103,6 +104,7 @@ export const pkgbuild_version_attribute: {
103
104
  writable: boolean;
104
105
  collection: boolean;
105
106
  private?: boolean;
107
+ credential?: boolean;
106
108
  depends?: string;
107
109
  description?: string;
108
110
  default?: any;
@@ -121,6 +123,7 @@ export const pkgbuild_description_attribute: {
121
123
  writable: boolean;
122
124
  collection: boolean;
123
125
  private?: boolean;
126
+ credential?: boolean;
124
127
  depends?: string;
125
128
  description?: string;
126
129
  default?: any;
@@ -16,6 +16,7 @@ export class RPM extends Packager {
16
16
  writable: boolean;
17
17
  collection: boolean;
18
18
  private?: boolean;
19
+ credential?: boolean;
19
20
  depends?: string;
20
21
  description?: string;
21
22
  default?: any;
@@ -35,6 +36,7 @@ export class RPM extends Packager {
35
36
  writable: boolean;
36
37
  collection: boolean;
37
38
  private?: boolean;
39
+ credential?: boolean;
38
40
  depends?: string;
39
41
  description?: string;
40
42
  default?: any;
@@ -54,6 +56,7 @@ export class RPM extends Packager {
54
56
  writable: boolean;
55
57
  collection: boolean;
56
58
  private?: boolean;
59
+ credential?: boolean;
57
60
  depends?: string;
58
61
  description?: string;
59
62
  default?: any;
@@ -74,6 +77,7 @@ export class RPM extends Packager {
74
77
  writable: boolean;
75
78
  collection: boolean;
76
79
  private?: boolean;
80
+ credential?: boolean;
77
81
  depends?: string;
78
82
  description?: string;
79
83
  default?: any;
@@ -93,6 +97,7 @@ export class RPM extends Packager {
93
97
  writable: boolean;
94
98
  collection: boolean;
95
99
  private?: boolean;
100
+ credential?: boolean;
96
101
  depends?: string;
97
102
  description?: string;
98
103
  set?: Function;
@@ -111,6 +116,7 @@ export class RPM extends Packager {
111
116
  mandatory: boolean;
112
117
  collection: boolean;
113
118
  private?: boolean;
119
+ credential?: boolean;
114
120
  depends?: string;
115
121
  description?: string;
116
122
  default?: any;
@@ -130,6 +136,7 @@ export class RPM extends Packager {
130
136
  mandatory: boolean;
131
137
  collection: boolean;
132
138
  private?: boolean;
139
+ credential?: boolean;
133
140
  depends?: string;
134
141
  description?: string;
135
142
  default?: any;
@@ -149,6 +156,7 @@ export class RPM extends Packager {
149
156
  mandatory: boolean;
150
157
  collection: boolean;
151
158
  private?: boolean;
159
+ credential?: boolean;
152
160
  depends?: string;
153
161
  description?: string;
154
162
  default?: any;
@@ -168,6 +176,7 @@ export class RPM extends Packager {
168
176
  mandatory: boolean;
169
177
  collection: boolean;
170
178
  private?: boolean;
179
+ credential?: boolean;
171
180
  depends?: string;
172
181
  description?: string;
173
182
  default?: any;
@@ -188,6 +197,7 @@ export class RPM extends Packager {
188
197
  writable: boolean;
189
198
  collection: boolean;
190
199
  private?: boolean;
200
+ credential?: boolean;
191
201
  depends?: string;
192
202
  description?: string;
193
203
  set?: Function;
@@ -206,6 +216,7 @@ export class RPM extends Packager {
206
216
  mandatory: boolean;
207
217
  collection: boolean;
208
218
  private?: boolean;
219
+ credential?: boolean;
209
220
  depends?: string;
210
221
  description?: string;
211
222
  default?: any;