@ts-type/package-dts 2.0.7 → 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.
@@ -1,4 +1,4 @@
1
- /* tslint:disable */
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 wont be marked as finished until they have completed. To mark the build as finished as soon as possible, add fast_finish: true
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 wont be marked as finished until they have completed. To mark the build as finished as soon as possible, add fast_finish: true
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?: ("osx" | "linux" | "windows") | ["osx" | "linux" | "windows", ...("osx" | "linux" | "windows")[]];
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 youd like to upload file from a specific directory, you can change your working directory
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 youd like to see more detail about what the artifacts addon is doing
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 youre trying to avoid log file size limits or even if you just dont need to include it.
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 youd like to put into $GIT_DIR/info/sparse-checkout file of format described in Git documentation.
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
  /**