diff options
author | IRONM00N <64110067+IRONM00N@users.noreply.github.com> | 2021-08-14 21:25:48 -0400 |
---|---|---|
committer | IRONM00N <64110067+IRONM00N@users.noreply.github.com> | 2021-08-14 21:25:48 -0400 |
commit | e0c0bb2eeb470a926782588c4d082ea9a3bfd669 (patch) | |
tree | 86c4e110f17758dcb5745594ca79490747431aa2 | |
parent | 5bdf035e5c7abc3c2fba9d78a95e093151dc4673 (diff) | |
download | tanzanite-e0c0bb2eeb470a926782588c4d082ea9a3bfd669.tar.gz tanzanite-e0c0bb2eeb470a926782588c4d082ea9a3bfd669.tar.bz2 tanzanite-e0c0bb2eeb470a926782588c4d082ea9a3bfd669.zip |
fix discord.js changes
-rw-r--r-- | src/lib/extensions/discord.js/BushApplicationCommandManager.d.ts | 19 | ||||
-rw-r--r-- | src/lib/extensions/discord.js/BushChannel.d.ts | 3 | ||||
-rw-r--r-- | src/lib/extensions/discord.js/BushCommandInteraction.ts | 4 | ||||
-rw-r--r-- | src/lib/extensions/discord.js/BushGuildMemberManager.d.ts | 2 | ||||
-rw-r--r-- | yarn.lock | 148 |
5 files changed, 90 insertions, 86 deletions
diff --git a/src/lib/extensions/discord.js/BushApplicationCommandManager.d.ts b/src/lib/extensions/discord.js/BushApplicationCommandManager.d.ts index 8eec9a7..fb4f84c 100644 --- a/src/lib/extensions/discord.js/BushApplicationCommandManager.d.ts +++ b/src/lib/extensions/discord.js/BushApplicationCommandManager.d.ts @@ -1,17 +1,16 @@ import { APIApplicationCommand } from 'discord-api-types'; import { ApplicationCommandData, CachedManager, Collection, FetchApplicationCommandOptions, Snowflake } from 'discord.js'; -import { RawApplicationCommandData } from 'discord.js/typings/rawDataTypes'; import { BushApplicationCommandResolvable, BushClient } from '../discord-akairo/BushClient'; import { BushApplicationCommand } from './BushApplicationCommand'; import { BushApplicationCommandPermissionsManager } from './BushApplicationCommandPermissionsManager'; import { BushGuildResolvable } from './BushCommandInteraction'; export class BushApplicationCommandManager< - ApplicationCommandType = BushApplicationCommand<{ guild: BushGuildResolvable }>, + ApplicationCommandScope = BushApplicationCommand<{ guild: BushGuildResolvable }>, PermissionsOptionsExtras = { guild: BushGuildResolvable }, PermissionsGuildType = null -> extends CachedManager<Snowflake, ApplicationCommandType, BushApplicationCommandResolvable> { - public constructor(client: BushClient, iterable?: Iterable<RawApplicationCommandData>); +> extends CachedManager<Snowflake, ApplicationCommandScope, BushApplicationCommandResolvable> { + public constructor(client: BushClient, iterable?: Iterable<unknown>); public permissions: BushApplicationCommandPermissionsManager< { command?: BushApplicationCommandResolvable } & PermissionsOptionsExtras, { command: BushApplicationCommandResolvable } & PermissionsOptionsExtras, @@ -20,10 +19,10 @@ export class BushApplicationCommandManager< null >; private commandPath({ id, guildId }: { id?: Snowflake; guildId?: Snowflake }): unknown; - public create(command: ApplicationCommandData): Promise<ApplicationCommandType>; + public create(command: ApplicationCommandData): Promise<ApplicationCommandScope>; public create(command: ApplicationCommandData, guildId: Snowflake): Promise<BushApplicationCommand>; - public delete(command: BushApplicationCommandResolvable, guildId?: Snowflake): Promise<ApplicationCommandType | null>; - public edit(command: BushApplicationCommandResolvable, data: ApplicationCommandData): Promise<ApplicationCommandType>; + public delete(command: BushApplicationCommandResolvable, guildId?: Snowflake): Promise<ApplicationCommandScope | null>; + public edit(command: BushApplicationCommandResolvable, data: ApplicationCommandData): Promise<ApplicationCommandScope>; public edit( command: BushApplicationCommandResolvable, data: ApplicationCommandData, @@ -33,12 +32,12 @@ export class BushApplicationCommandManager< id: Snowflake, options: FetchApplicationCommandOptions & { guildId: Snowflake } ): Promise<BushApplicationCommand>; - public fetch(id: Snowflake, options?: FetchApplicationCommandOptions): Promise<ApplicationCommandType>; + public fetch(id: Snowflake, options?: FetchApplicationCommandOptions): Promise<ApplicationCommandScope>; public fetch( id?: Snowflake, options?: FetchApplicationCommandOptions - ): Promise<Collection<Snowflake, ApplicationCommandType>>; - public set(commands: ApplicationCommandData[]): Promise<Collection<Snowflake, ApplicationCommandType>>; + ): Promise<Collection<Snowflake, ApplicationCommandScope>>; + public set(commands: ApplicationCommandData[]): Promise<Collection<Snowflake, ApplicationCommandScope>>; public set(commands: ApplicationCommandData[], guildId: Snowflake): Promise<Collection<Snowflake, BushApplicationCommand>>; private static transformCommand( command: ApplicationCommandData diff --git a/src/lib/extensions/discord.js/BushChannel.d.ts b/src/lib/extensions/discord.js/BushChannel.d.ts index 333ce06..2e465a5 100644 --- a/src/lib/extensions/discord.js/BushChannel.d.ts +++ b/src/lib/extensions/discord.js/BushChannel.d.ts @@ -3,7 +3,9 @@ import { Channel, ChannelMention } from 'discord.js'; import { ChannelTypes } from 'discord.js/typings/enums'; import { RawChannelData } from 'discord.js/typings/rawDataTypes'; import { BushClient, BushTextBasedChannels } from '../discord-akairo/BushClient'; +import { BushStageChannel } from './BushStageChannel'; import { BushThreadChannel } from './BushThreadChannel'; +import { BushVoiceChannel } from './BushVoiceChannel'; export class BushChannel extends Channel { public constructor(client: BushClient, data?: RawChannelData, immediatePatch?: boolean); @@ -16,6 +18,7 @@ export class BushChannel extends Channel { public delete(): Promise<BushChannel>; public fetch(force?: boolean): Promise<BushChannel>; public isText(): this is BushTextBasedChannels; + public isVoice(): this is BushVoiceChannel | BushStageChannel; public isThread(): this is BushThreadChannel; public toString(): ChannelMention; } diff --git a/src/lib/extensions/discord.js/BushCommandInteraction.ts b/src/lib/extensions/discord.js/BushCommandInteraction.ts index 9e30f79..56cdb75 100644 --- a/src/lib/extensions/discord.js/BushCommandInteraction.ts +++ b/src/lib/extensions/discord.js/BushCommandInteraction.ts @@ -1,5 +1,5 @@ import { APIInteractionGuildMember } from 'discord-api-types/v9'; -import { ApplicationCommand, CommandInteraction, Invite, Snowflake } from 'discord.js'; +import { CommandInteraction, Invite, Snowflake } from 'discord.js'; import { RawCommandInteractionData } from 'discord.js/typings/rawDataTypes'; import { BushClient, BushTextBasedChannels } from '../discord-akairo/BushClient'; import { BushApplicationCommand } from './BushApplicationCommand'; @@ -24,7 +24,7 @@ export class BushCommandInteraction extends CommandInteraction { super(client, data); } public declare readonly client: BushClient; - public declare readonly command: BushApplicationCommand | ApplicationCommand<{ guild: BushGuildResolvable }> | null; + public declare readonly command: BushApplicationCommand | BushApplicationCommand<{ guild: BushGuildResolvable }> | null; public declare readonly channel: BushTextBasedChannels | null; public declare readonly guild: BushGuild | null; public declare member: BushGuildMember | APIInteractionGuildMember | null; diff --git a/src/lib/extensions/discord.js/BushGuildMemberManager.d.ts b/src/lib/extensions/discord.js/BushGuildMemberManager.d.ts index cd74fff..e868b10 100644 --- a/src/lib/extensions/discord.js/BushGuildMemberManager.d.ts +++ b/src/lib/extensions/discord.js/BushGuildMemberManager.d.ts @@ -5,6 +5,7 @@ import { Collection, FetchMemberOptions, FetchMembersOptions, + GuildListMembersOptions, GuildMemberEditData, GuildPruneMembersOptions, GuildSearchMembersOptions, @@ -32,6 +33,7 @@ export class BushGuildMemberManager extends CachedManager<Snowflake, BushGuildMe ): Promise<BushGuildMember>; public fetch(options?: FetchMembersOptions): Promise<Collection<Snowflake, BushGuildMember>>; public kick(user: BushUserResolvable, reason?: string): Promise<BushGuildMember | BushUser | Snowflake>; + public list(options?: GuildListMembersOptions): Promise<Collection<Snowflake, BushGuildMember>>; public prune(options: GuildPruneMembersOptions & { dry?: false; count: false }): Promise<null>; public prune(options?: GuildPruneMembersOptions): Promise<number>; public search(options: GuildSearchMembersOptions): Promise<Collection<Snowflake, BushGuildMember>>; @@ -33,11 +33,11 @@ __metadata: linkType: hard "@babel/parser@npm:^7.0.0": - version: 7.15.0 - resolution: "@babel/parser@npm:7.15.0" + version: 7.15.3 + resolution: "@babel/parser@npm:7.15.3" bin: parser: ./bin/babel-parser.js - checksum: f9739478b91d2c151246b5d61399d22ba2139897e979d7bfe62d9cafce6337f007ebf662933c950ad4f18858d1d25a44a9ad22157ce1870dbe6b356f0cdebe8f + checksum: 4b9ba7e8ffe0a3d0dd8c61dee975c79863f7744177de677cb7d12f96549eb5c8b9ffc70ca2b1b2488b06e056da99a6273e2d7d68fc31f498d01483dfac149e13 languageName: node linkType: hard @@ -51,16 +51,16 @@ __metadata: languageName: node linkType: hard -"@discordjs/builders@npm:^0.4.0": - version: 0.4.0 - resolution: "@discordjs/builders@npm:0.4.0" +"@discordjs/builders@npm:^0.5.0": + version: 0.5.0 + resolution: "@discordjs/builders@npm:0.5.0" dependencies: "@sindresorhus/is": ^4.0.1 discord-api-types: ^0.22.0 ow: ^0.27.0 ts-mixer: ^6.0.0 tslib: ^2.3.0 - checksum: 7dd5fb4864f43786eaff77faa81422a2bc8ea3925a87f89312fee35b27f1f33b3d393fbeec4e28a398e4c65bed64a2654ea15bacc295e595770df276f8e87b72 + checksum: 064bd547b63a8cc593b3f8b0e290cb1c27cf335a89addd77aeb078055a92201a6905d0a67919004da0c915d01c0104383c5c06a07df751e4a4e921d7a000f6e3 languageName: node linkType: hard @@ -332,9 +332,9 @@ __metadata: linkType: hard "@types/node@npm:*": - version: 16.4.13 - resolution: "@types/node@npm:16.4.13" - checksum: 071e86a1d196cf72928a7109e99769dffed93db481032b9ca2f52e6f3ced432e2a179849c85e587e67409202e1ed37bffd0c7a31d38adf35a385d327dfe8bd72 + version: 16.6.1 + resolution: "@types/node@npm:16.6.1" + checksum: c13aa0da0c2bf9070e521d1b537ba38f64b213dd1b8aeec66c279fc21f8c0ccaf380364f6dc2ec8f84440c4cd1460b67dfe47de2cafcb6eaf4b648817cb27dc4 languageName: node linkType: hard @@ -402,11 +402,11 @@ __metadata: linkType: hard "@typescript-eslint/eslint-plugin@npm:^4.14.1": - version: 4.29.0 - resolution: "@typescript-eslint/eslint-plugin@npm:4.29.0" + version: 4.29.1 + resolution: "@typescript-eslint/eslint-plugin@npm:4.29.1" dependencies: - "@typescript-eslint/experimental-utils": 4.29.0 - "@typescript-eslint/scope-manager": 4.29.0 + "@typescript-eslint/experimental-utils": 4.29.1 + "@typescript-eslint/scope-manager": 4.29.1 debug: ^4.3.1 functional-red-black-tree: ^1.0.1 regexpp: ^3.1.0 @@ -418,66 +418,66 @@ __metadata: peerDependenciesMeta: typescript: optional: true - checksum: eed42b03c31410126f1cccaf4e97676c2a678ca1ce4d1a5d47b909707fcfc9fd08b398b34fe7bc5919f7b922e1062815a02d7cceef6457a0dbe67c9b30a9b39f + checksum: 66d8a92a0dc6fe4353334b5fadda73231dc7dbea977bc41f867bf9907e6781dc9594401273280d8de88165223bbf131241a1646ff5f2246bb4289949f95e7a5d languageName: node linkType: hard -"@typescript-eslint/experimental-utils@npm:4.29.0": - version: 4.29.0 - resolution: "@typescript-eslint/experimental-utils@npm:4.29.0" +"@typescript-eslint/experimental-utils@npm:4.29.1": + version: 4.29.1 + resolution: "@typescript-eslint/experimental-utils@npm:4.29.1" dependencies: "@types/json-schema": ^7.0.7 - "@typescript-eslint/scope-manager": 4.29.0 - "@typescript-eslint/types": 4.29.0 - "@typescript-eslint/typescript-estree": 4.29.0 + "@typescript-eslint/scope-manager": 4.29.1 + "@typescript-eslint/types": 4.29.1 + "@typescript-eslint/typescript-estree": 4.29.1 eslint-scope: ^5.1.1 eslint-utils: ^3.0.0 peerDependencies: eslint: "*" - checksum: 1c1daddb9b0464d8df422b598cecd4e931fe40109b9f43067c00aa5fd0a046c2bfc06e82da6ba27d667cb4f12964c21521027c4fec886a97285e6b5a0b3fe943 + checksum: 4ab7827edfb42aa01a34b342656a2c6ef6ac753bff7523cffe6e2bd50de8c86c304abc8a790f11c2b02172436d1cc941ff26aa96a0b40ccaffc02f032faf6582 languageName: node linkType: hard "@typescript-eslint/parser@npm:^4.14.1": - version: 4.29.0 - resolution: "@typescript-eslint/parser@npm:4.29.0" + version: 4.29.1 + resolution: "@typescript-eslint/parser@npm:4.29.1" dependencies: - "@typescript-eslint/scope-manager": 4.29.0 - "@typescript-eslint/types": 4.29.0 - "@typescript-eslint/typescript-estree": 4.29.0 + "@typescript-eslint/scope-manager": 4.29.1 + "@typescript-eslint/types": 4.29.1 + "@typescript-eslint/typescript-estree": 4.29.1 debug: ^4.3.1 peerDependencies: eslint: ^5.0.0 || ^6.0.0 || ^7.0.0 peerDependenciesMeta: typescript: optional: true - checksum: 78d1a558dc92e6baeef3b0bb6850108d3bb792282646678e276626b940b07e601d35abd790f8f02cb4625fe1656c57c9a7ae776c731984f36ab886cb93ed3b26 + checksum: 227119d9f7e406b741662417570034396c8ea14016e07c64caf3b8cc8973d6ccc92f98e84cf53cf96cf26825ec62873e0a4dd745f6d1043ce54498d1eec7a20e languageName: node linkType: hard -"@typescript-eslint/scope-manager@npm:4.29.0": - version: 4.29.0 - resolution: "@typescript-eslint/scope-manager@npm:4.29.0" +"@typescript-eslint/scope-manager@npm:4.29.1": + version: 4.29.1 + resolution: "@typescript-eslint/scope-manager@npm:4.29.1" dependencies: - "@typescript-eslint/types": 4.29.0 - "@typescript-eslint/visitor-keys": 4.29.0 - checksum: 3f3d211ae56a0b35e21d16dca4be5d8599928eb97045d191e2ab8065b90312b92c0b15a9c37dc2022056a1be3a2aa83ff704f3ecf41155df772951e12dc341bc + "@typescript-eslint/types": 4.29.1 + "@typescript-eslint/visitor-keys": 4.29.1 + checksum: e8d34ac72f5184c93e45785f50c80bdb7602814cfeacd6c700bca4f4e482fddc3f0191a6fc36782e19ffeef15791b0792b26c940c1d3c0e549d7dc1dc1ccc983 languageName: node linkType: hard -"@typescript-eslint/types@npm:4.29.0": - version: 4.29.0 - resolution: "@typescript-eslint/types@npm:4.29.0" - checksum: ce42a50ba69f6eaa83661b752132ddd058a619025dfccf16f1cc4e21dcfda57787e2bce106b2396cc7ebf6b29473460f90ac12d277a2115c1a9000b6236fcfcb +"@typescript-eslint/types@npm:4.29.1": + version: 4.29.1 + resolution: "@typescript-eslint/types@npm:4.29.1" + checksum: feb40f23db3c20d7fe9e629a44ef54d7225e064df6435e31f8417a9a1f5c216f92782a7c03a5fc9808b313a93a2f91df324d01a2e58478c57c5bbb0eb1f519a9 languageName: node linkType: hard -"@typescript-eslint/typescript-estree@npm:4.29.0, @typescript-eslint/typescript-estree@npm:^4.8.2": - version: 4.29.0 - resolution: "@typescript-eslint/typescript-estree@npm:4.29.0" +"@typescript-eslint/typescript-estree@npm:4.29.1, @typescript-eslint/typescript-estree@npm:^4.8.2": + version: 4.29.1 + resolution: "@typescript-eslint/typescript-estree@npm:4.29.1" dependencies: - "@typescript-eslint/types": 4.29.0 - "@typescript-eslint/visitor-keys": 4.29.0 + "@typescript-eslint/types": 4.29.1 + "@typescript-eslint/visitor-keys": 4.29.1 debug: ^4.3.1 globby: ^11.0.3 is-glob: ^4.0.1 @@ -486,17 +486,17 @@ __metadata: peerDependenciesMeta: typescript: optional: true - checksum: e1f893c2dff1bb2eb800039871ba08a9d96d8d3ca976389426df8e75438031afa443b863925582fa610d19c40d4b9a787d130ed8bcf11c4aeb2cb63c78d592c3 + checksum: 2721bb06f920e6efa710e689eefc20729a882ded71de1c7e81f866fb0ceda00b2e7f4e742842bd79c94985390f98180588e3b7bfb6b50c4844fb857ae18eaef3 languageName: node linkType: hard -"@typescript-eslint/visitor-keys@npm:4.29.0": - version: 4.29.0 - resolution: "@typescript-eslint/visitor-keys@npm:4.29.0" +"@typescript-eslint/visitor-keys@npm:4.29.1": + version: 4.29.1 + resolution: "@typescript-eslint/visitor-keys@npm:4.29.1" dependencies: - "@typescript-eslint/types": 4.29.0 + "@typescript-eslint/types": 4.29.1 eslint-visitor-keys: ^2.0.0 - checksum: 3be974c6b2dd4eee3dbe01409bd6bf0e175bac5fe42df4256782ad1a4b05aded64bee711f0b6e597f732b1b506f72c25f7415370211af4b526557e872fc7f94b + checksum: a99db94f80331a0bdd2e4828d43daa7d391312d6edf77d8f80fcd37530ea9eacbf8014dc3378a26e9e22891e0d97c5637fcde2d6272ed091de74ede22bec0224 languageName: node linkType: hard @@ -1006,9 +1006,9 @@ __metadata: linkType: hard "colorette@npm:^1.2.2": - version: 1.2.2 - resolution: "colorette@npm:1.2.2" - checksum: 69fec14ddaedd0f5b00e4bae40dc4bc61f7050ebdc82983a595d6fd64e650b9dc3c033fff378775683138e992e0ddd8717ac7c7cec4d089679dcfbe3cd921b04 + version: 1.3.0 + resolution: "colorette@npm:1.3.0" + checksum: bda403dfba4d032bee4169f2a6436a83ae3da488a53bcb3be92dc44ace056518245cc614b12429d7529493d6b090a119b2523b0d55e8cd6b81ad939a3003c008 languageName: node linkType: hard @@ -1368,10 +1368,10 @@ discord-akairo@NotEnoughUpdates/discord-akairo: linkType: hard discord.js@NotEnoughUpdates/discord.js: - version: 13.1.0-dev - resolution: "discord.js@https://github.com/NotEnoughUpdates/discord.js.git#commit=895e2ed3af4e9d5de653c7fcd20011b6f38f9b25" + version: 13.2.0-dev + resolution: "discord.js@https://github.com/NotEnoughUpdates/discord.js.git#commit=ddd4772081be428d84959efc62f6cf915d2ecdbc" dependencies: - "@discordjs/builders": ^0.4.0 + "@discordjs/builders": ^0.5.0 "@discordjs/collection": ^0.2.1 "@discordjs/form-data": ^3.0.1 "@sapphire/async-queue": ^1.1.4 @@ -1379,7 +1379,7 @@ discord.js@NotEnoughUpdates/discord.js: discord-api-types: ^0.22.0 node-fetch: ^2.6.1 ws: ^7.5.1 - checksum: f4c108870a1eee2ac597c20ae49181cea86e2634df40d9e5d6575c009cf3dd2ab5f09bccf7dad6456307a666c5b2dbd5c2c161727cd343297c87f6902dd3ec4c + checksum: 345b0649f1a02ef556eeae38987be46eebdcbba2c60e5b7b4fec415e6ea986125b4ac03a5ec4426a0ad93df1105de3432c3497b15f4edaf8d31f850e5bbf84e2 languageName: node linkType: hard @@ -1474,11 +1474,11 @@ discord.js@NotEnoughUpdates/discord.js: linkType: hard "esbuild@npm:^0.12.11": - version: 0.12.18 - resolution: "esbuild@npm:0.12.18" + version: 0.12.20 + resolution: "esbuild@npm:0.12.20" bin: esbuild: bin/esbuild - checksum: 956fefaf685c953dd49b5e271c21d76c158ff7f745a2a3a90fff145464285bcaeab72ad4f23c8938e7e730f5fad8fcab00fb81e6b1ef63ee89a5d06ed38ae894 + checksum: 52a67e06a675fe632655b9edb8beba2b67e55ff1853561fc2b1d5098e5c4801e885707af2441f3b3612791085f132eb46868f7353949ef4054caa714233156db languageName: node linkType: hard @@ -1902,11 +1902,11 @@ discord.js@NotEnoughUpdates/discord.js: linkType: hard "globals@npm:^13.6.0, globals@npm:^13.9.0": - version: 13.10.0 - resolution: "globals@npm:13.10.0" + version: 13.11.0 + resolution: "globals@npm:13.11.0" dependencies: type-fest: ^0.20.2 - checksum: 64e45d96d634d2b047385eb5925de3abb5964cf4f3564eba493694f5ab1a8818b333f89d34b0f71f9b1d87391e6e25c5ca1a87094dd80a657d1d99b9321e1f4e + checksum: e9e5624154261a3e5344d2105a94886c5f2ca48028fa8258cd7b9119c5f00cf2909392817bb2d162c9a1a31b55d9b2c14e8f2271c45a22f77806f5b9322541cf languageName: node linkType: hard @@ -2777,11 +2777,11 @@ discord.js@NotEnoughUpdates/discord.js: linkType: hard "nanoid@npm:^3.1.23": - version: 3.1.23 - resolution: "nanoid@npm:3.1.23" + version: 3.1.25 + resolution: "nanoid@npm:3.1.25" bin: nanoid: bin/nanoid.cjs - checksum: 8fa8dc3283a4fa159700a36cb22f61197547c8155831cb74f1b9c51fbc29ea80c136fd91001468d147a31d3a77f884958aec6c1beabac903c89780acacca9327 + checksum: e2353828c7d8fde65265e9c981380102e2021f292038a93fd27288bad390339833286e8cbc7531abe1cb2c6b317e55f38b895dcb775151637bb487388558e0ff languageName: node linkType: hard @@ -3241,8 +3241,8 @@ discord.js@NotEnoughUpdates/discord.js: linkType: hard "prism-media@npm:^1.3.1": - version: 1.3.1 - resolution: "prism-media@npm:1.3.1" + version: 1.3.2 + resolution: "prism-media@npm:1.3.2" peerDependencies: "@discordjs/opus": ^0.5.0 ffmpeg-static: ^4.2.7 || ^3.0.0 || ^2.4.0 @@ -3257,7 +3257,7 @@ discord.js@NotEnoughUpdates/discord.js: optional: true opusscript: optional: true - checksum: 26f89b3ff923449a6a02bbefea088188fddd7fcd1d61e9bc2d3a6b02d4540f1c4ea90651b1206c3c10d9d41332969ebac6556748d6b7cb5ae0c3e08e6a12c286 + checksum: a4ff111086d98509ba4dc24340c0750a2558dddc0277fb7be718f872f16d407a8215fa3cecde7ea05578392446c03b64050e680621f8b2d053487224fbddfc39 languageName: node linkType: hard @@ -3930,8 +3930,8 @@ resolve@^1.19.0: linkType: hard "tar@npm:^6.0.2, tar@npm:^6.1.0": - version: 6.1.6 - resolution: "tar@npm:6.1.6" + version: 6.1.8 + resolution: "tar@npm:6.1.8" dependencies: chownr: ^2.0.0 fs-minipass: ^2.0.0 @@ -3939,7 +3939,7 @@ resolve@^1.19.0: minizlib: ^2.1.1 mkdirp: ^1.0.3 yallist: ^4.0.0 - checksum: 583f1165281746b4c48adee4ff7bab4895e73999eeda3c8d59779e47c29dc1dc714d832608a491fead4fd794bf9e0bd51b3d4a4fbad87f487a8b360321d70e8c + checksum: f5aa41340d3415ef6f19ed0ee620db1f7cb9ea3f5ea7bfef5ea199bdb39e978d11f31d347231193e0d9262f81de3e358aa3dda6ed0c1909f22a8ce3e3a743dad languageName: node linkType: hard @@ -4016,9 +4016,9 @@ resolve@^1.19.0: linkType: hard "tslib@npm:^2.3.0": - version: 2.3.0 - resolution: "tslib@npm:2.3.0" - checksum: 8869694c26e4a7b56d449662fd54a4f9ba872c889d991202c74462bd99f10e61d5bd63199566c4284c0f742277736292a969642cc7b590f98727a7cae9529122 + version: 2.3.1 + resolution: "tslib@npm:2.3.1" + checksum: de17a98d4614481f7fcb5cd53ffc1aaf8654313be0291e1bfaee4b4bb31a20494b7d218ff2e15017883e8ea9626599b3b0e0229c18383ba9dce89da2adf15cb9 languageName: node linkType: hard |