@ts-type/package-dts 2.0.8 → 3.0.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.
- package/CHANGELOG.md +27 -0
- package/README.md +39 -14
- package/eslintrc-json.js +1 -1
- package/eslintrc-json.js.map +1 -1
- package/index.d.ts +17 -1
- package/index.js +18 -3
- package/index.js.map +1 -1
- package/lerna-json.js +2 -15
- package/lerna-json.js.map +1 -1
- package/lib/package-json/exports.js.map +1 -1
- package/lib/package-json/publishConfig.js +1 -1
- package/lib/package-json/publishConfig.js.map +1 -1
- package/lib/package-json/types.d.ts +28 -0
- package/lib/package-json/types.js +14 -2
- package/lib/package-json/types.js.map +1 -1
- package/package-json.d.ts +1 -1
- package/package-json.js +2 -15
- package/package-json.js.map +1 -1
- package/package.json +10 -4
- package/schema/eslintrc.json +29 -17
- package/schema/lerna.json +1 -1
- package/schema/package.json +530 -28
- package/schema/travis.json +17 -10
- package/script/index.js +2 -4
- package/script/index.js.map +1 -1
- package/script/util.js +7 -10
- package/script/util.js.map +1 -1
- package/types/eslintrc.json.d.ts +7496 -9
- package/types/lerna.json.d.ts +1 -1
- package/types/package.json.d.ts +27813 -7682
- package/types/travis.json.d.ts +15 -10
- package/types/tsconfig.json.d.ts +1298 -326
package/types/travis.json.d.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
/*
|
|
1
|
+
/* eslint-disable */
|
|
2
2
|
/**
|
|
3
3
|
* This file was automatically generated by json-schema-to-typescript.
|
|
4
4
|
* DO NOT MODIFY IT BY HAND. Instead, modify the source JSONSchema file,
|
|
@@ -29,7 +29,7 @@ export type JSONSchemaForTravisCIConfigurationFiles = Job & {
|
|
|
29
29
|
include?: Job[];
|
|
30
30
|
allow_failures?: Job[];
|
|
31
31
|
/**
|
|
32
|
-
* If some rows in the build matrix are allowed to fail, the build won
|
|
32
|
+
* If some rows in the build matrix are allowed to fail, the build won't be marked as finished until they have completed. To mark the build as finished as soon as possible, add fast_finish: true
|
|
33
33
|
*/
|
|
34
34
|
fast_finish?: boolean;
|
|
35
35
|
};
|
|
@@ -50,7 +50,7 @@ export type JSONSchemaForTravisCIConfigurationFiles = Job & {
|
|
|
50
50
|
})[];
|
|
51
51
|
allow_failures?: Job[];
|
|
52
52
|
/**
|
|
53
|
-
* If some rows in the build matrix are allowed to fail, the build won
|
|
53
|
+
* If some rows in the build matrix are allowed to fail, the build won't be marked as finished until they have completed. To mark the build as finished as soon as possible, add fast_finish: true
|
|
54
54
|
*/
|
|
55
55
|
fast_finish?: boolean;
|
|
56
56
|
};
|
|
@@ -120,7 +120,10 @@ export type XcodeVersions =
|
|
|
120
120
|
| "xcode13.1"
|
|
121
121
|
| "xcode13.2"
|
|
122
122
|
| "xcode13.3"
|
|
123
|
-
| "xcode13.4"
|
|
123
|
+
| "xcode13.4"
|
|
124
|
+
| "xcode14"
|
|
125
|
+
| "xcode14.1"
|
|
126
|
+
| "xcode14.2";
|
|
124
127
|
export type PossiblySecretString =
|
|
125
128
|
| string
|
|
126
129
|
| {
|
|
@@ -421,12 +424,14 @@ export interface Job {
|
|
|
421
424
|
/**
|
|
422
425
|
* The operating system to run the job on
|
|
423
426
|
*/
|
|
424
|
-
os?:
|
|
427
|
+
os?:
|
|
428
|
+
| ("osx" | "linux" | "linux-ppc64le" | "windows")
|
|
429
|
+
| ["osx" | "linux" | "linux-ppc64le" | "windows", ...("osx" | "linux" | "linux-ppc64le" | "windows")[]];
|
|
425
430
|
osx_image?: XcodeVersions | [XcodeVersions, ...XcodeVersions[]];
|
|
426
431
|
/**
|
|
427
432
|
* The Ubuntu distribution to use
|
|
428
433
|
*/
|
|
429
|
-
dist?: "precise" | "trusty" | "xenial" | "bionic" | "focal" | "jammy";
|
|
434
|
+
dist?: "precise" | "trusty" | "xenial" | "bionic" | "focal" | "jammy" | "noble";
|
|
430
435
|
/**
|
|
431
436
|
* sudo is deprecated
|
|
432
437
|
*/
|
|
@@ -472,11 +477,11 @@ export interface Job {
|
|
|
472
477
|
s3_region?: string;
|
|
473
478
|
paths?: string[];
|
|
474
479
|
/**
|
|
475
|
-
* If you
|
|
480
|
+
* If you'd like to upload file from a specific directory, you can change your working directory
|
|
476
481
|
*/
|
|
477
482
|
working_dir?: string;
|
|
478
483
|
/**
|
|
479
|
-
* If you
|
|
484
|
+
* If you'd like to see more detail about what the artifacts addon is doing
|
|
480
485
|
*/
|
|
481
486
|
debug?: boolean;
|
|
482
487
|
[k: string]: unknown;
|
|
@@ -646,7 +651,7 @@ export interface Job {
|
|
|
646
651
|
git?: {
|
|
647
652
|
depth?: number | false;
|
|
648
653
|
/**
|
|
649
|
-
* Travis CI clones repositories without the quiet flag (-q) by default. Enabling the quiet flag can be useful if you
|
|
654
|
+
* Travis CI clones repositories without the quiet flag (-q) by default. Enabling the quiet flag can be useful if you're trying to avoid log file size limits or even if you just don't need to include it.
|
|
650
655
|
*/
|
|
651
656
|
quiet?: boolean;
|
|
652
657
|
/**
|
|
@@ -662,7 +667,7 @@ export interface Job {
|
|
|
662
667
|
*/
|
|
663
668
|
clone?: boolean;
|
|
664
669
|
/**
|
|
665
|
-
* Is a path to the existing file in the current repository with data you
|
|
670
|
+
* Is a path to the existing file in the current repository with data you'd like to put into $GIT_DIR/info/sparse-checkout file of format described in Git documentation.
|
|
666
671
|
*/
|
|
667
672
|
sparse_checkout?: string;
|
|
668
673
|
/**
|