@vercel/python-analysis 0.1.1

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.
Files changed (54) hide show
  1. package/LICENSE +202 -0
  2. package/dist/index.d.ts +22 -0
  3. package/dist/index.js +107 -0
  4. package/dist/manifest/package.d.ts +166 -0
  5. package/dist/manifest/package.js +422 -0
  6. package/dist/manifest/pep440.d.ts +6 -0
  7. package/dist/manifest/pep440.js +63 -0
  8. package/dist/manifest/pep508.d.ts +64 -0
  9. package/dist/manifest/pep508.js +70 -0
  10. package/dist/manifest/pipfile/schema.d.ts +40 -0
  11. package/dist/manifest/pipfile/schema.js +44 -0
  12. package/dist/manifest/pipfile/schema.zod.d.ts +606 -0
  13. package/dist/manifest/pipfile/schema.zod.js +97 -0
  14. package/dist/manifest/pipfile/types.d.ts +77 -0
  15. package/dist/manifest/pipfile/types.js +16 -0
  16. package/dist/manifest/pipfile-parser.d.ts +35 -0
  17. package/dist/manifest/pipfile-parser.js +262 -0
  18. package/dist/manifest/pyproject/schema.d.ts +50 -0
  19. package/dist/manifest/pyproject/schema.js +56 -0
  20. package/dist/manifest/pyproject/schema.zod.d.ts +767 -0
  21. package/dist/manifest/pyproject/schema.zod.js +94 -0
  22. package/dist/manifest/pyproject/types.d.ts +93 -0
  23. package/dist/manifest/pyproject/types.js +16 -0
  24. package/dist/manifest/python-selector.d.ts +123 -0
  25. package/dist/manifest/python-selector.js +185 -0
  26. package/dist/manifest/python-specifiers.d.ts +76 -0
  27. package/dist/manifest/python-specifiers.js +156 -0
  28. package/dist/manifest/requirement/schema.d.ts +28 -0
  29. package/dist/manifest/requirement/schema.js +35 -0
  30. package/dist/manifest/requirement/schema.zod.d.ts +76 -0
  31. package/dist/manifest/requirement/schema.zod.js +49 -0
  32. package/dist/manifest/requirement/types.d.ts +50 -0
  33. package/dist/manifest/requirement/types.js +16 -0
  34. package/dist/manifest/requirements-txt-parser.d.ts +55 -0
  35. package/dist/manifest/requirements-txt-parser.js +400 -0
  36. package/dist/manifest/uv-config/schema.d.ts +22 -0
  37. package/dist/manifest/uv-config/schema.js +35 -0
  38. package/dist/manifest/uv-config/schema.zod.d.ts +140 -0
  39. package/dist/manifest/uv-config/schema.zod.js +48 -0
  40. package/dist/manifest/uv-config/types.d.ts +48 -0
  41. package/dist/manifest/uv-config/types.js +16 -0
  42. package/dist/manifest/uv-python-version-parser.d.ts +28 -0
  43. package/dist/manifest/uv-python-version-parser.js +268 -0
  44. package/dist/types.d.ts +17 -0
  45. package/dist/types.js +16 -0
  46. package/dist/util/config.d.ts +20 -0
  47. package/dist/util/config.js +100 -0
  48. package/dist/util/error.d.ts +39 -0
  49. package/dist/util/error.js +54 -0
  50. package/dist/util/fs.d.ts +25 -0
  51. package/dist/util/fs.js +75 -0
  52. package/dist/util/type.d.ts +7 -0
  53. package/dist/util/type.js +30 -0
  54. package/package.json +43 -0
@@ -0,0 +1,44 @@
1
+ "use strict";
2
+ var __defProp = Object.defineProperty;
3
+ var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
4
+ var __getOwnPropNames = Object.getOwnPropertyNames;
5
+ var __hasOwnProp = Object.prototype.hasOwnProperty;
6
+ var __export = (target, all) => {
7
+ for (var name in all)
8
+ __defProp(target, name, { get: all[name], enumerable: true });
9
+ };
10
+ var __copyProps = (to, from, except, desc) => {
11
+ if (from && typeof from === "object" || typeof from === "function") {
12
+ for (let key of __getOwnPropNames(from))
13
+ if (!__hasOwnProp.call(to, key) && key !== except)
14
+ __defProp(to, key, { get: () => from[key], enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable });
15
+ }
16
+ return to;
17
+ };
18
+ var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: true }), mod);
19
+ var schema_exports = {};
20
+ __export(schema_exports, {
21
+ PipfileDependencyDetailSchema: () => PipfileDependencyDetailSchema,
22
+ PipfileDependencySchema: () => PipfileDependencySchema,
23
+ PipfileLikeSchema: () => PipfileLikeSchema,
24
+ PipfileLockLikeSchema: () => PipfileLockLikeSchema,
25
+ PipfileLockMetaSchema: () => PipfileLockMetaSchema,
26
+ PipfileSourceSchema: () => PipfileSourceSchema
27
+ });
28
+ module.exports = __toCommonJS(schema_exports);
29
+ var import_schema = require("./schema.zod");
30
+ const PipfileDependencyDetailSchema = import_schema.pipfileDependencyDetailSchema.passthrough();
31
+ const PipfileDependencySchema = import_schema.pipfileDependencySchema;
32
+ const PipfileSourceSchema = import_schema.pipfileSourceSchema.passthrough();
33
+ const PipfileLikeSchema = import_schema.pipfileLikeSchema;
34
+ const PipfileLockMetaSchema = import_schema.pipfileLockMetaSchema.passthrough();
35
+ const PipfileLockLikeSchema = import_schema.pipfileLockLikeSchema;
36
+ // Annotate the CommonJS export names for ESM import in node:
37
+ 0 && (module.exports = {
38
+ PipfileDependencyDetailSchema,
39
+ PipfileDependencySchema,
40
+ PipfileLikeSchema,
41
+ PipfileLockLikeSchema,
42
+ PipfileLockMetaSchema,
43
+ PipfileSourceSchema
44
+ });
@@ -0,0 +1,606 @@
1
+ import { z } from 'zod';
2
+ export declare const pipfileDependencyDetailSchema: z.ZodObject<{
3
+ version: z.ZodOptional<z.ZodString>;
4
+ hashes: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
5
+ extras: z.ZodOptional<z.ZodUnion<[z.ZodArray<z.ZodString, "many">, z.ZodString]>>;
6
+ markers: z.ZodOptional<z.ZodString>;
7
+ index: z.ZodOptional<z.ZodString>;
8
+ git: z.ZodOptional<z.ZodString>;
9
+ ref: z.ZodOptional<z.ZodString>;
10
+ editable: z.ZodOptional<z.ZodBoolean>;
11
+ path: z.ZodOptional<z.ZodString>;
12
+ }, "strip", z.ZodTypeAny, {
13
+ version?: string | undefined;
14
+ hashes?: string[] | undefined;
15
+ extras?: string | string[] | undefined;
16
+ markers?: string | undefined;
17
+ index?: string | undefined;
18
+ git?: string | undefined;
19
+ ref?: string | undefined;
20
+ editable?: boolean | undefined;
21
+ path?: string | undefined;
22
+ }, {
23
+ version?: string | undefined;
24
+ hashes?: string[] | undefined;
25
+ extras?: string | string[] | undefined;
26
+ markers?: string | undefined;
27
+ index?: string | undefined;
28
+ git?: string | undefined;
29
+ ref?: string | undefined;
30
+ editable?: boolean | undefined;
31
+ path?: string | undefined;
32
+ }>;
33
+ export declare const pipfileDependencySchema: z.ZodUnion<[z.ZodString, z.ZodObject<{
34
+ version: z.ZodOptional<z.ZodString>;
35
+ hashes: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
36
+ extras: z.ZodOptional<z.ZodUnion<[z.ZodArray<z.ZodString, "many">, z.ZodString]>>;
37
+ markers: z.ZodOptional<z.ZodString>;
38
+ index: z.ZodOptional<z.ZodString>;
39
+ git: z.ZodOptional<z.ZodString>;
40
+ ref: z.ZodOptional<z.ZodString>;
41
+ editable: z.ZodOptional<z.ZodBoolean>;
42
+ path: z.ZodOptional<z.ZodString>;
43
+ }, "strip", z.ZodTypeAny, {
44
+ version?: string | undefined;
45
+ hashes?: string[] | undefined;
46
+ extras?: string | string[] | undefined;
47
+ markers?: string | undefined;
48
+ index?: string | undefined;
49
+ git?: string | undefined;
50
+ ref?: string | undefined;
51
+ editable?: boolean | undefined;
52
+ path?: string | undefined;
53
+ }, {
54
+ version?: string | undefined;
55
+ hashes?: string[] | undefined;
56
+ extras?: string | string[] | undefined;
57
+ markers?: string | undefined;
58
+ index?: string | undefined;
59
+ git?: string | undefined;
60
+ ref?: string | undefined;
61
+ editable?: boolean | undefined;
62
+ path?: string | undefined;
63
+ }>]>;
64
+ export declare const pipfileSourceSchema: z.ZodObject<{
65
+ name: z.ZodString;
66
+ url: z.ZodString;
67
+ verify_ssl: z.ZodOptional<z.ZodBoolean>;
68
+ }, "strip", z.ZodTypeAny, {
69
+ name: string;
70
+ url: string;
71
+ verify_ssl?: boolean | undefined;
72
+ }, {
73
+ name: string;
74
+ url: string;
75
+ verify_ssl?: boolean | undefined;
76
+ }>;
77
+ export declare const pipfileLikeSchema: z.ZodIntersection<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodObject<{
78
+ version: z.ZodOptional<z.ZodString>;
79
+ hashes: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
80
+ extras: z.ZodOptional<z.ZodUnion<[z.ZodArray<z.ZodString, "many">, z.ZodString]>>;
81
+ markers: z.ZodOptional<z.ZodString>;
82
+ index: z.ZodOptional<z.ZodString>;
83
+ git: z.ZodOptional<z.ZodString>;
84
+ ref: z.ZodOptional<z.ZodString>;
85
+ editable: z.ZodOptional<z.ZodBoolean>;
86
+ path: z.ZodOptional<z.ZodString>;
87
+ }, "strip", z.ZodTypeAny, {
88
+ version?: string | undefined;
89
+ hashes?: string[] | undefined;
90
+ extras?: string | string[] | undefined;
91
+ markers?: string | undefined;
92
+ index?: string | undefined;
93
+ git?: string | undefined;
94
+ ref?: string | undefined;
95
+ editable?: boolean | undefined;
96
+ path?: string | undefined;
97
+ }, {
98
+ version?: string | undefined;
99
+ hashes?: string[] | undefined;
100
+ extras?: string | string[] | undefined;
101
+ markers?: string | undefined;
102
+ index?: string | undefined;
103
+ git?: string | undefined;
104
+ ref?: string | undefined;
105
+ editable?: boolean | undefined;
106
+ path?: string | undefined;
107
+ }>]>>, z.ZodArray<z.ZodObject<{
108
+ name: z.ZodString;
109
+ url: z.ZodString;
110
+ verify_ssl: z.ZodOptional<z.ZodBoolean>;
111
+ }, "strip", z.ZodTypeAny, {
112
+ name: string;
113
+ url: string;
114
+ verify_ssl?: boolean | undefined;
115
+ }, {
116
+ name: string;
117
+ url: string;
118
+ verify_ssl?: boolean | undefined;
119
+ }>, "many">, z.ZodRecord<z.ZodString, z.ZodString>, z.ZodUndefined]>>, z.ZodObject<{
120
+ packages: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodObject<{
121
+ version: z.ZodOptional<z.ZodString>;
122
+ hashes: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
123
+ extras: z.ZodOptional<z.ZodUnion<[z.ZodArray<z.ZodString, "many">, z.ZodString]>>;
124
+ markers: z.ZodOptional<z.ZodString>;
125
+ index: z.ZodOptional<z.ZodString>;
126
+ git: z.ZodOptional<z.ZodString>;
127
+ ref: z.ZodOptional<z.ZodString>;
128
+ editable: z.ZodOptional<z.ZodBoolean>;
129
+ path: z.ZodOptional<z.ZodString>;
130
+ }, "strip", z.ZodTypeAny, {
131
+ version?: string | undefined;
132
+ hashes?: string[] | undefined;
133
+ extras?: string | string[] | undefined;
134
+ markers?: string | undefined;
135
+ index?: string | undefined;
136
+ git?: string | undefined;
137
+ ref?: string | undefined;
138
+ editable?: boolean | undefined;
139
+ path?: string | undefined;
140
+ }, {
141
+ version?: string | undefined;
142
+ hashes?: string[] | undefined;
143
+ extras?: string | string[] | undefined;
144
+ markers?: string | undefined;
145
+ index?: string | undefined;
146
+ git?: string | undefined;
147
+ ref?: string | undefined;
148
+ editable?: boolean | undefined;
149
+ path?: string | undefined;
150
+ }>]>>>;
151
+ 'dev-packages': z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodObject<{
152
+ version: z.ZodOptional<z.ZodString>;
153
+ hashes: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
154
+ extras: z.ZodOptional<z.ZodUnion<[z.ZodArray<z.ZodString, "many">, z.ZodString]>>;
155
+ markers: z.ZodOptional<z.ZodString>;
156
+ index: z.ZodOptional<z.ZodString>;
157
+ git: z.ZodOptional<z.ZodString>;
158
+ ref: z.ZodOptional<z.ZodString>;
159
+ editable: z.ZodOptional<z.ZodBoolean>;
160
+ path: z.ZodOptional<z.ZodString>;
161
+ }, "strip", z.ZodTypeAny, {
162
+ version?: string | undefined;
163
+ hashes?: string[] | undefined;
164
+ extras?: string | string[] | undefined;
165
+ markers?: string | undefined;
166
+ index?: string | undefined;
167
+ git?: string | undefined;
168
+ ref?: string | undefined;
169
+ editable?: boolean | undefined;
170
+ path?: string | undefined;
171
+ }, {
172
+ version?: string | undefined;
173
+ hashes?: string[] | undefined;
174
+ extras?: string | string[] | undefined;
175
+ markers?: string | undefined;
176
+ index?: string | undefined;
177
+ git?: string | undefined;
178
+ ref?: string | undefined;
179
+ editable?: boolean | undefined;
180
+ path?: string | undefined;
181
+ }>]>>>;
182
+ source: z.ZodOptional<z.ZodArray<z.ZodObject<{
183
+ name: z.ZodString;
184
+ url: z.ZodString;
185
+ verify_ssl: z.ZodOptional<z.ZodBoolean>;
186
+ }, "strip", z.ZodTypeAny, {
187
+ name: string;
188
+ url: string;
189
+ verify_ssl?: boolean | undefined;
190
+ }, {
191
+ name: string;
192
+ url: string;
193
+ verify_ssl?: boolean | undefined;
194
+ }>, "many">>;
195
+ scripts: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
196
+ }, "strip", z.ZodTypeAny, {
197
+ packages?: Record<string, string | {
198
+ version?: string | undefined;
199
+ hashes?: string[] | undefined;
200
+ extras?: string | string[] | undefined;
201
+ markers?: string | undefined;
202
+ index?: string | undefined;
203
+ git?: string | undefined;
204
+ ref?: string | undefined;
205
+ editable?: boolean | undefined;
206
+ path?: string | undefined;
207
+ }> | undefined;
208
+ 'dev-packages'?: Record<string, string | {
209
+ version?: string | undefined;
210
+ hashes?: string[] | undefined;
211
+ extras?: string | string[] | undefined;
212
+ markers?: string | undefined;
213
+ index?: string | undefined;
214
+ git?: string | undefined;
215
+ ref?: string | undefined;
216
+ editable?: boolean | undefined;
217
+ path?: string | undefined;
218
+ }> | undefined;
219
+ source?: {
220
+ name: string;
221
+ url: string;
222
+ verify_ssl?: boolean | undefined;
223
+ }[] | undefined;
224
+ scripts?: Record<string, string> | undefined;
225
+ }, {
226
+ packages?: Record<string, string | {
227
+ version?: string | undefined;
228
+ hashes?: string[] | undefined;
229
+ extras?: string | string[] | undefined;
230
+ markers?: string | undefined;
231
+ index?: string | undefined;
232
+ git?: string | undefined;
233
+ ref?: string | undefined;
234
+ editable?: boolean | undefined;
235
+ path?: string | undefined;
236
+ }> | undefined;
237
+ 'dev-packages'?: Record<string, string | {
238
+ version?: string | undefined;
239
+ hashes?: string[] | undefined;
240
+ extras?: string | string[] | undefined;
241
+ markers?: string | undefined;
242
+ index?: string | undefined;
243
+ git?: string | undefined;
244
+ ref?: string | undefined;
245
+ editable?: boolean | undefined;
246
+ path?: string | undefined;
247
+ }> | undefined;
248
+ source?: {
249
+ name: string;
250
+ url: string;
251
+ verify_ssl?: boolean | undefined;
252
+ }[] | undefined;
253
+ scripts?: Record<string, string> | undefined;
254
+ }>>;
255
+ export declare const pipfileLockMetaSchema: z.ZodObject<{
256
+ hash: z.ZodOptional<z.ZodObject<{
257
+ sha256: z.ZodOptional<z.ZodString>;
258
+ }, "strip", z.ZodTypeAny, {
259
+ sha256?: string | undefined;
260
+ }, {
261
+ sha256?: string | undefined;
262
+ }>>;
263
+ 'pipfile-spec': z.ZodOptional<z.ZodNumber>;
264
+ requires: z.ZodOptional<z.ZodObject<{
265
+ python_version: z.ZodOptional<z.ZodString>;
266
+ python_full_version: z.ZodOptional<z.ZodString>;
267
+ }, "strip", z.ZodTypeAny, {
268
+ python_version?: string | undefined;
269
+ python_full_version?: string | undefined;
270
+ }, {
271
+ python_version?: string | undefined;
272
+ python_full_version?: string | undefined;
273
+ }>>;
274
+ sources: z.ZodOptional<z.ZodArray<z.ZodObject<{
275
+ name: z.ZodString;
276
+ url: z.ZodString;
277
+ verify_ssl: z.ZodOptional<z.ZodBoolean>;
278
+ }, "strip", z.ZodTypeAny, {
279
+ name: string;
280
+ url: string;
281
+ verify_ssl?: boolean | undefined;
282
+ }, {
283
+ name: string;
284
+ url: string;
285
+ verify_ssl?: boolean | undefined;
286
+ }>, "many">>;
287
+ }, "strip", z.ZodTypeAny, {
288
+ hash?: {
289
+ sha256?: string | undefined;
290
+ } | undefined;
291
+ 'pipfile-spec'?: number | undefined;
292
+ requires?: {
293
+ python_version?: string | undefined;
294
+ python_full_version?: string | undefined;
295
+ } | undefined;
296
+ sources?: {
297
+ name: string;
298
+ url: string;
299
+ verify_ssl?: boolean | undefined;
300
+ }[] | undefined;
301
+ }, {
302
+ hash?: {
303
+ sha256?: string | undefined;
304
+ } | undefined;
305
+ 'pipfile-spec'?: number | undefined;
306
+ requires?: {
307
+ python_version?: string | undefined;
308
+ python_full_version?: string | undefined;
309
+ } | undefined;
310
+ sources?: {
311
+ name: string;
312
+ url: string;
313
+ verify_ssl?: boolean | undefined;
314
+ }[] | undefined;
315
+ }>;
316
+ export declare const pipfileLockLikeSchema: z.ZodIntersection<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodObject<{
317
+ hash: z.ZodOptional<z.ZodObject<{
318
+ sha256: z.ZodOptional<z.ZodString>;
319
+ }, "strip", z.ZodTypeAny, {
320
+ sha256?: string | undefined;
321
+ }, {
322
+ sha256?: string | undefined;
323
+ }>>;
324
+ 'pipfile-spec': z.ZodOptional<z.ZodNumber>;
325
+ requires: z.ZodOptional<z.ZodObject<{
326
+ python_version: z.ZodOptional<z.ZodString>;
327
+ python_full_version: z.ZodOptional<z.ZodString>;
328
+ }, "strip", z.ZodTypeAny, {
329
+ python_version?: string | undefined;
330
+ python_full_version?: string | undefined;
331
+ }, {
332
+ python_version?: string | undefined;
333
+ python_full_version?: string | undefined;
334
+ }>>;
335
+ sources: z.ZodOptional<z.ZodArray<z.ZodObject<{
336
+ name: z.ZodString;
337
+ url: z.ZodString;
338
+ verify_ssl: z.ZodOptional<z.ZodBoolean>;
339
+ }, "strip", z.ZodTypeAny, {
340
+ name: string;
341
+ url: string;
342
+ verify_ssl?: boolean | undefined;
343
+ }, {
344
+ name: string;
345
+ url: string;
346
+ verify_ssl?: boolean | undefined;
347
+ }>, "many">>;
348
+ }, "strip", z.ZodTypeAny, {
349
+ hash?: {
350
+ sha256?: string | undefined;
351
+ } | undefined;
352
+ 'pipfile-spec'?: number | undefined;
353
+ requires?: {
354
+ python_version?: string | undefined;
355
+ python_full_version?: string | undefined;
356
+ } | undefined;
357
+ sources?: {
358
+ name: string;
359
+ url: string;
360
+ verify_ssl?: boolean | undefined;
361
+ }[] | undefined;
362
+ }, {
363
+ hash?: {
364
+ sha256?: string | undefined;
365
+ } | undefined;
366
+ 'pipfile-spec'?: number | undefined;
367
+ requires?: {
368
+ python_version?: string | undefined;
369
+ python_full_version?: string | undefined;
370
+ } | undefined;
371
+ sources?: {
372
+ name: string;
373
+ url: string;
374
+ verify_ssl?: boolean | undefined;
375
+ }[] | undefined;
376
+ }>, z.ZodRecord<z.ZodString, z.ZodObject<{
377
+ version: z.ZodOptional<z.ZodString>;
378
+ hashes: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
379
+ extras: z.ZodOptional<z.ZodUnion<[z.ZodArray<z.ZodString, "many">, z.ZodString]>>;
380
+ markers: z.ZodOptional<z.ZodString>;
381
+ index: z.ZodOptional<z.ZodString>;
382
+ git: z.ZodOptional<z.ZodString>;
383
+ ref: z.ZodOptional<z.ZodString>;
384
+ editable: z.ZodOptional<z.ZodBoolean>;
385
+ path: z.ZodOptional<z.ZodString>;
386
+ }, "strip", z.ZodTypeAny, {
387
+ version?: string | undefined;
388
+ hashes?: string[] | undefined;
389
+ extras?: string | string[] | undefined;
390
+ markers?: string | undefined;
391
+ index?: string | undefined;
392
+ git?: string | undefined;
393
+ ref?: string | undefined;
394
+ editable?: boolean | undefined;
395
+ path?: string | undefined;
396
+ }, {
397
+ version?: string | undefined;
398
+ hashes?: string[] | undefined;
399
+ extras?: string | string[] | undefined;
400
+ markers?: string | undefined;
401
+ index?: string | undefined;
402
+ git?: string | undefined;
403
+ ref?: string | undefined;
404
+ editable?: boolean | undefined;
405
+ path?: string | undefined;
406
+ }>>, z.ZodUndefined]>>, z.ZodObject<{
407
+ _meta: z.ZodOptional<z.ZodObject<{
408
+ hash: z.ZodOptional<z.ZodObject<{
409
+ sha256: z.ZodOptional<z.ZodString>;
410
+ }, "strip", z.ZodTypeAny, {
411
+ sha256?: string | undefined;
412
+ }, {
413
+ sha256?: string | undefined;
414
+ }>>;
415
+ 'pipfile-spec': z.ZodOptional<z.ZodNumber>;
416
+ requires: z.ZodOptional<z.ZodObject<{
417
+ python_version: z.ZodOptional<z.ZodString>;
418
+ python_full_version: z.ZodOptional<z.ZodString>;
419
+ }, "strip", z.ZodTypeAny, {
420
+ python_version?: string | undefined;
421
+ python_full_version?: string | undefined;
422
+ }, {
423
+ python_version?: string | undefined;
424
+ python_full_version?: string | undefined;
425
+ }>>;
426
+ sources: z.ZodOptional<z.ZodArray<z.ZodObject<{
427
+ name: z.ZodString;
428
+ url: z.ZodString;
429
+ verify_ssl: z.ZodOptional<z.ZodBoolean>;
430
+ }, "strip", z.ZodTypeAny, {
431
+ name: string;
432
+ url: string;
433
+ verify_ssl?: boolean | undefined;
434
+ }, {
435
+ name: string;
436
+ url: string;
437
+ verify_ssl?: boolean | undefined;
438
+ }>, "many">>;
439
+ }, "strip", z.ZodTypeAny, {
440
+ hash?: {
441
+ sha256?: string | undefined;
442
+ } | undefined;
443
+ 'pipfile-spec'?: number | undefined;
444
+ requires?: {
445
+ python_version?: string | undefined;
446
+ python_full_version?: string | undefined;
447
+ } | undefined;
448
+ sources?: {
449
+ name: string;
450
+ url: string;
451
+ verify_ssl?: boolean | undefined;
452
+ }[] | undefined;
453
+ }, {
454
+ hash?: {
455
+ sha256?: string | undefined;
456
+ } | undefined;
457
+ 'pipfile-spec'?: number | undefined;
458
+ requires?: {
459
+ python_version?: string | undefined;
460
+ python_full_version?: string | undefined;
461
+ } | undefined;
462
+ sources?: {
463
+ name: string;
464
+ url: string;
465
+ verify_ssl?: boolean | undefined;
466
+ }[] | undefined;
467
+ }>>;
468
+ default: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
469
+ version: z.ZodOptional<z.ZodString>;
470
+ hashes: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
471
+ extras: z.ZodOptional<z.ZodUnion<[z.ZodArray<z.ZodString, "many">, z.ZodString]>>;
472
+ markers: z.ZodOptional<z.ZodString>;
473
+ index: z.ZodOptional<z.ZodString>;
474
+ git: z.ZodOptional<z.ZodString>;
475
+ ref: z.ZodOptional<z.ZodString>;
476
+ editable: z.ZodOptional<z.ZodBoolean>;
477
+ path: z.ZodOptional<z.ZodString>;
478
+ }, "strip", z.ZodTypeAny, {
479
+ version?: string | undefined;
480
+ hashes?: string[] | undefined;
481
+ extras?: string | string[] | undefined;
482
+ markers?: string | undefined;
483
+ index?: string | undefined;
484
+ git?: string | undefined;
485
+ ref?: string | undefined;
486
+ editable?: boolean | undefined;
487
+ path?: string | undefined;
488
+ }, {
489
+ version?: string | undefined;
490
+ hashes?: string[] | undefined;
491
+ extras?: string | string[] | undefined;
492
+ markers?: string | undefined;
493
+ index?: string | undefined;
494
+ git?: string | undefined;
495
+ ref?: string | undefined;
496
+ editable?: boolean | undefined;
497
+ path?: string | undefined;
498
+ }>>>;
499
+ develop: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
500
+ version: z.ZodOptional<z.ZodString>;
501
+ hashes: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
502
+ extras: z.ZodOptional<z.ZodUnion<[z.ZodArray<z.ZodString, "many">, z.ZodString]>>;
503
+ markers: z.ZodOptional<z.ZodString>;
504
+ index: z.ZodOptional<z.ZodString>;
505
+ git: z.ZodOptional<z.ZodString>;
506
+ ref: z.ZodOptional<z.ZodString>;
507
+ editable: z.ZodOptional<z.ZodBoolean>;
508
+ path: z.ZodOptional<z.ZodString>;
509
+ }, "strip", z.ZodTypeAny, {
510
+ version?: string | undefined;
511
+ hashes?: string[] | undefined;
512
+ extras?: string | string[] | undefined;
513
+ markers?: string | undefined;
514
+ index?: string | undefined;
515
+ git?: string | undefined;
516
+ ref?: string | undefined;
517
+ editable?: boolean | undefined;
518
+ path?: string | undefined;
519
+ }, {
520
+ version?: string | undefined;
521
+ hashes?: string[] | undefined;
522
+ extras?: string | string[] | undefined;
523
+ markers?: string | undefined;
524
+ index?: string | undefined;
525
+ git?: string | undefined;
526
+ ref?: string | undefined;
527
+ editable?: boolean | undefined;
528
+ path?: string | undefined;
529
+ }>>>;
530
+ }, "strip", z.ZodTypeAny, {
531
+ _meta?: {
532
+ hash?: {
533
+ sha256?: string | undefined;
534
+ } | undefined;
535
+ 'pipfile-spec'?: number | undefined;
536
+ requires?: {
537
+ python_version?: string | undefined;
538
+ python_full_version?: string | undefined;
539
+ } | undefined;
540
+ sources?: {
541
+ name: string;
542
+ url: string;
543
+ verify_ssl?: boolean | undefined;
544
+ }[] | undefined;
545
+ } | undefined;
546
+ default?: Record<string, {
547
+ version?: string | undefined;
548
+ hashes?: string[] | undefined;
549
+ extras?: string | string[] | undefined;
550
+ markers?: string | undefined;
551
+ index?: string | undefined;
552
+ git?: string | undefined;
553
+ ref?: string | undefined;
554
+ editable?: boolean | undefined;
555
+ path?: string | undefined;
556
+ }> | undefined;
557
+ develop?: Record<string, {
558
+ version?: string | undefined;
559
+ hashes?: string[] | undefined;
560
+ extras?: string | string[] | undefined;
561
+ markers?: string | undefined;
562
+ index?: string | undefined;
563
+ git?: string | undefined;
564
+ ref?: string | undefined;
565
+ editable?: boolean | undefined;
566
+ path?: string | undefined;
567
+ }> | undefined;
568
+ }, {
569
+ _meta?: {
570
+ hash?: {
571
+ sha256?: string | undefined;
572
+ } | undefined;
573
+ 'pipfile-spec'?: number | undefined;
574
+ requires?: {
575
+ python_version?: string | undefined;
576
+ python_full_version?: string | undefined;
577
+ } | undefined;
578
+ sources?: {
579
+ name: string;
580
+ url: string;
581
+ verify_ssl?: boolean | undefined;
582
+ }[] | undefined;
583
+ } | undefined;
584
+ default?: Record<string, {
585
+ version?: string | undefined;
586
+ hashes?: string[] | undefined;
587
+ extras?: string | string[] | undefined;
588
+ markers?: string | undefined;
589
+ index?: string | undefined;
590
+ git?: string | undefined;
591
+ ref?: string | undefined;
592
+ editable?: boolean | undefined;
593
+ path?: string | undefined;
594
+ }> | undefined;
595
+ develop?: Record<string, {
596
+ version?: string | undefined;
597
+ hashes?: string[] | undefined;
598
+ extras?: string | string[] | undefined;
599
+ markers?: string | undefined;
600
+ index?: string | undefined;
601
+ git?: string | undefined;
602
+ ref?: string | undefined;
603
+ editable?: boolean | undefined;
604
+ path?: string | undefined;
605
+ }> | undefined;
606
+ }>>;