Update checked-in dependencies

This commit is contained in:
github-actions[bot] 2023-07-13 09:09:17 +00:00
parent 4fad06f438
commit 40a500c743
4168 changed files with 298222 additions and 374905 deletions

View file

@ -8,7 +8,7 @@ This package contains type definitions for json-schema 4.0, 6.0 and (https://git
Files were exported from https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/json-schema.
### Additional Details
* Last updated: Fri, 25 Mar 2022 14:01:45 GMT
* Last updated: Thu, 25 May 2023 20:34:16 GMT
* Dependencies: none
* Global values: none

View file

@ -659,7 +659,7 @@ export interface JSONSchema7 {
maxItems?: number | undefined;
minItems?: number | undefined;
uniqueItems?: boolean | undefined;
contains?: JSONSchema7 | undefined;
contains?: JSONSchema7Definition | undefined;
/**
* @see https://tools.ietf.org/html/draft-handrews-json-schema-validation-01#section-6.5

View file

@ -1,6 +1,6 @@
{
"name": "@types/json-schema",
"version": "7.0.11",
"version": "7.0.12",
"description": "TypeScript definitions for json-schema 4.0, 6.0 and",
"homepage": "https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/json-schema",
"license": "MIT",
@ -35,6 +35,6 @@
},
"scripts": {},
"dependencies": {},
"typesPublisherContentHash": "84a402b9e31ddb097f08b5c07c08590bf087035c483db7a4071a04903775dc44",
"typeScriptVersion": "3.9"
"typesPublisherContentHash": "839fb01aad39138bdff54a832897abf7c18b3e294fd2aacb7e43442825a7f1d3",
"typeScriptVersion": "4.3"
}

View file

@ -8,7 +8,7 @@ This package contains type definitions for semver (https://github.com/npm/node-s
Files were exported from https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/semver.
### Additional Details
* Last updated: Wed, 26 Oct 2022 20:03:05 GMT
* Last updated: Mon, 08 May 2023 19:02:57 GMT
* Dependencies: none
* Global values: none

View file

@ -1,6 +1,11 @@
import SemVer = require('../classes/semver');
import semver = require('../index');
declare namespace inc {
/** Base number to be used for the prerelease identifier */
type IdentifierBase = '0' | '1';
}
/**
* Return the version incremented by the release type (major, minor, patch, or prerelease), or null if it's not valid.
*/
@ -8,8 +13,13 @@ declare function inc(
version: string | SemVer,
release: semver.ReleaseType,
optionsOrLoose?: boolean | semver.Options,
identifier?: string,
identifier?: string
): string | null;
declare function inc(
version: string | SemVer,
release: semver.ReleaseType,
identifier?: string,
identifierBase?: inc.IdentifierBase | false,
): string | null;
declare function inc(version: string | SemVer, release: semver.ReleaseType, identifier?: string): string | null;
export = inc;

View file

@ -1,4 +1,4 @@
// Type definitions for semver 7.3
// Type definitions for semver 7.5
// Project: https://github.com/npm/node-semver
// Definitions by: Bart van der Schoor <https://github.com/Bartvds>
// BendingBender <https://github.com/BendingBender>

View file

@ -1,6 +1,6 @@
{
"name": "@types/semver",
"version": "7.3.13",
"version": "7.5.0",
"description": "TypeScript definitions for semver",
"homepage": "https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/semver",
"license": "MIT",
@ -45,6 +45,6 @@
},
"scripts": {},
"dependencies": {},
"typesPublisherContentHash": "5443a0792891f230352efbc23f545699de0ce8eef9fe3e28cefd36a3fe993eb6",
"typeScriptVersion": "4.1"
"typesPublisherContentHash": "a1ae8c1d9f9371bb1030d232fd0c118ad40215d3dd62afb98c7d6f15678c60de",
"typeScriptVersion": "4.3"
}

2
node_modules/@types/uuid/README.md generated vendored
View file

@ -8,7 +8,7 @@ This package contains type definitions for uuid (https://github.com/uuidjs/uuid)
Files were exported from https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/uuid.
### Additional Details
* Last updated: Tue, 29 Nov 2022 18:32:57 GMT
* Last updated: Thu, 08 Jun 2023 20:32:59 GMT
* Dependencies: none
* Global values: none

10
node_modules/@types/uuid/index.d.ts generated vendored
View file

@ -10,21 +10,27 @@
// disable automatic export
export {};
// Uses ArrayLike to admit Unit8 and co.
// Uses ArrayLike to admit Uint8 and co.
type OutputBuffer = ArrayLike<number>;
type InputBuffer = ArrayLike<number>;
interface RandomOptions {
/** `Array` of 16 random bytes (0-255) */
random?: InputBuffer | undefined;
}
interface RngOptions {
/** Alternative to `options.random`, a `Function` that returns an `Array` of 16 random bytes (0-255) */
rng?: (() => InputBuffer) | undefined;
}
interface V1BaseOptions {
/** RFC "node" field as an `Array[6]` of byte values (per 4.1.6) */
node?: InputBuffer | undefined;
/** RFC "clock sequence" as a `Number` between 0 - 0x3fff */
clockseq?: number | undefined;
/** RFC "timestamp" field (`Number` of milliseconds, unix epoch) */
msecs?: number | Date | undefined;
/** RFC "timestamp" field (`Number` of nanoseconds to add to msecs, should be 0-10,000) */
nsecs?: number | undefined;
}
interface V1RandomOptions extends V1BaseOptions, RandomOptions {}
@ -63,7 +69,7 @@ type v5 = v5Buffer & v5String & v5Static;
type NIL = string;
type parse = (uuid: string) => OutputBuffer;
type parse = (uuid: string) => Uint8Array;
type stringify = (buffer: InputBuffer, offset?: number) => string;
type validate = (uuid: string) => boolean;
type version = (uuid: string) => number;

View file

@ -1,6 +1,6 @@
{
"name": "@types/uuid",
"version": "9.0.0",
"version": "9.0.2",
"description": "TypeScript definitions for uuid",
"homepage": "https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/uuid",
"license": "MIT",
@ -40,8 +40,8 @@
},
"scripts": {},
"dependencies": {},
"typesPublisherContentHash": "fcbbe0ed3964850f2ba3f7c63e9bf38a037f990945fb14bb976e9420e2d9d0b0",
"typeScriptVersion": "4.1",
"typesPublisherContentHash": "3213c87118af95e8668dbdfbbcf3a959d1bfc274b6aae55d03fdb2942b792b77",
"typeScriptVersion": "4.3",
"exports": {
"./package.json": "./package.json",
".": {