diff --git a/.gitignore b/.gitignore index 8b13ebe..eca5bc7 100644 --- a/.gitignore +++ b/.gitignore @@ -3,6 +3,7 @@ docs/ app.db docker/server server +__debug_bin # Editor directories and files .vscode/* diff --git a/Makefile b/Makefile index 45fb10e..cd14a92 100644 --- a/Makefile +++ b/Makefile @@ -12,7 +12,7 @@ CXXFLAGS ?= CXXFLAGS += -target $(TARGET_TRIPLE) GOFLAGS ?= -GOFLAGS += -x -o docker/server +GOFLAGS += -x -trimpath -o docker/server all: gen: gen-backend-thrift gen-frontend-thrift diff --git a/frontend/.babelrc b/frontend/.babelrc deleted file mode 100644 index 845cb2b..0000000 --- a/frontend/.babelrc +++ /dev/null @@ -1,7 +0,0 @@ -{ - "plugins": [ - "minify-dead-code-elimination", - "@babel/plugin-transform-classes", - "@babel/plugin-syntax-class-properties", - ] -} \ No newline at end of file diff --git a/frontend/.gitignore b/frontend/.gitignore index 402a7ff..a547bf3 100644 --- a/frontend/.gitignore +++ b/frontend/.gitignore @@ -8,8 +8,6 @@ pnpm-debug.log* lerna-debug.log* node_modules -node_modules_linux -node_modules_windows dist dist-ssr *.local diff --git a/frontend/gen/CoreService.d.ts b/frontend/gen/CoreService.d.ts index 3dbe91c..5141960 100644 --- a/frontend/gen/CoreService.d.ts +++ b/frontend/gen/CoreService.d.ts @@ -11,65 +11,135 @@ import Int64 = require('node-int64'); import structs_ttypes = require('./structs_types'); import exceptions_ttypes = require('./exceptions_types'); - import ttypes = require('./service_types'); declare class Client { - private output: thrift.TTransport; - private pClass: thrift.TProtocol; - private _seqid: number; + private output: thrift.TTransport; + private pClass: thrift.TProtocol; + private _seqid: number; - constructor(output: thrift.TTransport, pClass: { new(trans: thrift.TTransport): thrift.TProtocol }); + constructor( + output: thrift.TTransport, + pClass: { new (trans: thrift.TTransport): thrift.TProtocol }, + ); - login(request: structs_ttypes.LoginRequest): Promise; + login(request: structs_ttypes.LoginRequest): Promise; - login(request: structs_ttypes.LoginRequest, callback?: (error: exceptions_ttypes.CoreServicesException, response: structs_ttypes.LoginResponse)=>void): void; + login( + request: structs_ttypes.LoginRequest, + callback?: ( + error: exceptions_ttypes.CoreServicesException, + response: structs_ttypes.LoginResponse, + ) => void, + ): void; - getProfile(request: structs_ttypes.GetProfileRequest): Promise; + getProfile(request: structs_ttypes.GetProfileRequest): Promise; - getProfile(request: structs_ttypes.GetProfileRequest, callback?: (error: exceptions_ttypes.CoreServicesException, response: structs_ttypes.GetProfileResponse)=>void): void; + getProfile( + request: structs_ttypes.GetProfileRequest, + callback?: ( + error: exceptions_ttypes.CoreServicesException, + response: structs_ttypes.GetProfileResponse, + ) => void, + ): void; - logout(request: structs_ttypes.LogoutRequest): Promise; + logout(request: structs_ttypes.LogoutRequest): Promise; - logout(request: structs_ttypes.LogoutRequest, callback?: (error: exceptions_ttypes.CoreServicesException, response: structs_ttypes.LogoutResponse)=>void): void; + logout( + request: structs_ttypes.LogoutRequest, + callback?: ( + error: exceptions_ttypes.CoreServicesException, + response: structs_ttypes.LogoutResponse, + ) => void, + ): void; - getUserList(request: structs_ttypes.GetUserListRequest): Promise; + getUserList( + request: structs_ttypes.GetUserListRequest, + ): Promise; - getUserList(request: structs_ttypes.GetUserListRequest, callback?: (error: exceptions_ttypes.CoreServicesException, response: structs_ttypes.GetUserListResponse)=>void): void; + getUserList( + request: structs_ttypes.GetUserListRequest, + callback?: ( + error: exceptions_ttypes.CoreServicesException, + response: structs_ttypes.GetUserListResponse, + ) => void, + ): void; - createUser(request: structs_ttypes.CreateUserRequest): Promise; + createUser(request: structs_ttypes.CreateUserRequest): Promise; - createUser(request: structs_ttypes.CreateUserRequest, callback?: (error: exceptions_ttypes.CoreServicesException, response: structs_ttypes.CreateUserResponse)=>void): void; + createUser( + request: structs_ttypes.CreateUserRequest, + callback?: ( + error: exceptions_ttypes.CoreServicesException, + response: structs_ttypes.CreateUserResponse, + ) => void, + ): void; - deleteUsers(request: structs_ttypes.DeleteUsersRequest): Promise; + deleteUsers( + request: structs_ttypes.DeleteUsersRequest, + ): Promise; - deleteUsers(request: structs_ttypes.DeleteUsersRequest, callback?: (error: exceptions_ttypes.CoreServicesException, response: structs_ttypes.DeleteUsersResponse)=>void): void; + deleteUsers( + request: structs_ttypes.DeleteUsersRequest, + callback?: ( + error: exceptions_ttypes.CoreServicesException, + response: structs_ttypes.DeleteUsersResponse, + ) => void, + ): void; - getWajibPajakList(request: structs_ttypes.GetWajibPajakListRequest): Promise; + getWajibPajakList( + request: structs_ttypes.GetWajibPajakListRequest, + ): Promise; - getWajibPajakList(request: structs_ttypes.GetWajibPajakListRequest, callback?: (error: exceptions_ttypes.CoreServicesException, response: structs_ttypes.GetWajibPajakListResponse)=>void): void; + getWajibPajakList( + request: structs_ttypes.GetWajibPajakListRequest, + callback?: ( + error: exceptions_ttypes.CoreServicesException, + response: structs_ttypes.GetWajibPajakListResponse, + ) => void, + ): void; - createWajibPajak(request: structs_ttypes.CreateWajibPajakRequest): Promise; + createWajibPajak( + request: structs_ttypes.CreateWajibPajakRequest, + ): Promise; - createWajibPajak(request: structs_ttypes.CreateWajibPajakRequest, callback?: (error: exceptions_ttypes.CoreServicesException, response: structs_ttypes.CreateWajibPajakResponse)=>void): void; + createWajibPajak( + request: structs_ttypes.CreateWajibPajakRequest, + callback?: ( + error: exceptions_ttypes.CoreServicesException, + response: structs_ttypes.CreateWajibPajakResponse, + ) => void, + ): void; - deleteWajibPajakList(request: structs_ttypes.DeleteWajibpajakListRequest): Promise; + deleteWajibPajakList( + request: structs_ttypes.DeleteWajibpajakListRequest, + ): Promise; - deleteWajibPajakList(request: structs_ttypes.DeleteWajibpajakListRequest, callback?: (error: exceptions_ttypes.CoreServicesException, response: structs_ttypes.DeleteWajibpajakListResponse)=>void): void; - } + deleteWajibPajakList( + request: structs_ttypes.DeleteWajibpajakListRequest, + callback?: ( + error: exceptions_ttypes.CoreServicesException, + response: structs_ttypes.DeleteWajibpajakListResponse, + ) => void, + ): void; +} declare class Processor { private _handler: object; constructor(handler: object); process(input: thrift.TProtocol, output: thrift.TProtocol): void; - process_login(seqid: number, input: thrift.TProtocol, output: thrift.TProtocol): void; - process_getProfile(seqid: number, input: thrift.TProtocol, output: thrift.TProtocol): void; - process_logout(seqid: number, input: thrift.TProtocol, output: thrift.TProtocol): void; - process_getUserList(seqid: number, input: thrift.TProtocol, output: thrift.TProtocol): void; - process_createUser(seqid: number, input: thrift.TProtocol, output: thrift.TProtocol): void; - process_deleteUsers(seqid: number, input: thrift.TProtocol, output: thrift.TProtocol): void; - process_getWajibPajakList(seqid: number, input: thrift.TProtocol, output: thrift.TProtocol): void; - process_createWajibPajak(seqid: number, input: thrift.TProtocol, output: thrift.TProtocol): void; - process_deleteWajibPajakList(seqid: number, input: thrift.TProtocol, output: thrift.TProtocol): void; + process_login(seqid: number, input: thrift.TProtocol, output: thrift.TProtocol): void; + process_getProfile(seqid: number, input: thrift.TProtocol, output: thrift.TProtocol): void; + process_logout(seqid: number, input: thrift.TProtocol, output: thrift.TProtocol): void; + process_getUserList(seqid: number, input: thrift.TProtocol, output: thrift.TProtocol): void; + process_createUser(seqid: number, input: thrift.TProtocol, output: thrift.TProtocol): void; + process_deleteUsers(seqid: number, input: thrift.TProtocol, output: thrift.TProtocol): void; + process_getWajibPajakList(seqid: number, input: thrift.TProtocol, output: thrift.TProtocol): void; + process_createWajibPajak(seqid: number, input: thrift.TProtocol, output: thrift.TProtocol): void; + process_deleteWajibPajakList( + seqid: number, + input: thrift.TProtocol, + output: thrift.TProtocol, + ): void; } diff --git a/frontend/gen/CoreService.js b/frontend/gen/CoreService.js index d493f01..c59a133 100644 --- a/frontend/gen/CoreService.js +++ b/frontend/gen/CoreService.js @@ -3,7 +3,7 @@ // // DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING // -"use strict"; +'use strict'; const thrift = require('thrift'); const Thrift = thrift.Thrift; @@ -12,7 +12,6 @@ const Int64 = require('node-int64'); const structs_ttypes = require('./structs_types'); const exceptions_ttypes = require('./exceptions_types'); - const ttypes = require('./service_types'); //HELPER FUNCTIONS AND STRUCTURES @@ -26,7 +25,7 @@ const CoreService_login_args = class { } } - read (input) { + read(input) { input.readStructBegin(); while (true) { const ret = input.readFieldBegin(); @@ -37,13 +36,13 @@ const CoreService_login_args = class { } switch (fid) { case 1: - if (ftype == Thrift.Type.STRUCT) { - this.request = new structs_ttypes.LoginRequest(); - this.request.read(input); - } else { - input.skip(ftype); - } - break; + if (ftype == Thrift.Type.STRUCT) { + this.request = new structs_ttypes.LoginRequest(); + this.request.read(input); + } else { + input.skip(ftype); + } + break; case 0: input.skip(ftype); break; @@ -56,7 +55,7 @@ const CoreService_login_args = class { return; } - write (output) { + write(output) { output.writeStructBegin('CoreService_login_args'); if (this.request !== null && this.request !== undefined) { output.writeFieldBegin('request', Thrift.Type.STRUCT, 1); @@ -67,15 +66,14 @@ const CoreService_login_args = class { output.writeStructEnd(); return; } - }; const CoreService_login_result = class { constructor(args) { this.success = null; this.e = null; if (args instanceof exceptions_ttypes.CoreServicesException) { - this.e = args; - return; + this.e = args; + return; } if (args) { if (args.success !== undefined && args.success !== null) { @@ -87,7 +85,7 @@ const CoreService_login_result = class { } } - read (input) { + read(input) { input.readStructBegin(); while (true) { const ret = input.readFieldBegin(); @@ -98,21 +96,21 @@ const CoreService_login_result = class { } switch (fid) { case 0: - if (ftype == Thrift.Type.STRUCT) { - this.success = new structs_ttypes.LoginResponse(); - this.success.read(input); - } else { - input.skip(ftype); - } - break; + if (ftype == Thrift.Type.STRUCT) { + this.success = new structs_ttypes.LoginResponse(); + this.success.read(input); + } else { + input.skip(ftype); + } + break; case 1: - if (ftype == Thrift.Type.STRUCT) { - this.e = new exceptions_ttypes.CoreServicesException(); - this.e.read(input); - } else { - input.skip(ftype); - } - break; + if (ftype == Thrift.Type.STRUCT) { + this.e = new exceptions_ttypes.CoreServicesException(); + this.e.read(input); + } else { + input.skip(ftype); + } + break; default: input.skip(ftype); } @@ -122,7 +120,7 @@ const CoreService_login_result = class { return; } - write (output) { + write(output) { output.writeStructBegin('CoreService_login_result'); if (this.success !== null && this.success !== undefined) { output.writeFieldBegin('success', Thrift.Type.STRUCT, 0); @@ -138,7 +136,6 @@ const CoreService_login_result = class { output.writeStructEnd(); return; } - }; const CoreService_getProfile_args = class { constructor(args) { @@ -150,7 +147,7 @@ const CoreService_getProfile_args = class { } } - read (input) { + read(input) { input.readStructBegin(); while (true) { const ret = input.readFieldBegin(); @@ -161,13 +158,13 @@ const CoreService_getProfile_args = class { } switch (fid) { case 1: - if (ftype == Thrift.Type.STRUCT) { - this.request = new structs_ttypes.GetProfileRequest(); - this.request.read(input); - } else { - input.skip(ftype); - } - break; + if (ftype == Thrift.Type.STRUCT) { + this.request = new structs_ttypes.GetProfileRequest(); + this.request.read(input); + } else { + input.skip(ftype); + } + break; case 0: input.skip(ftype); break; @@ -180,7 +177,7 @@ const CoreService_getProfile_args = class { return; } - write (output) { + write(output) { output.writeStructBegin('CoreService_getProfile_args'); if (this.request !== null && this.request !== undefined) { output.writeFieldBegin('request', Thrift.Type.STRUCT, 1); @@ -191,15 +188,14 @@ const CoreService_getProfile_args = class { output.writeStructEnd(); return; } - }; const CoreService_getProfile_result = class { constructor(args) { this.success = null; this.e = null; if (args instanceof exceptions_ttypes.CoreServicesException) { - this.e = args; - return; + this.e = args; + return; } if (args) { if (args.success !== undefined && args.success !== null) { @@ -211,7 +207,7 @@ const CoreService_getProfile_result = class { } } - read (input) { + read(input) { input.readStructBegin(); while (true) { const ret = input.readFieldBegin(); @@ -222,21 +218,21 @@ const CoreService_getProfile_result = class { } switch (fid) { case 0: - if (ftype == Thrift.Type.STRUCT) { - this.success = new structs_ttypes.GetProfileResponse(); - this.success.read(input); - } else { - input.skip(ftype); - } - break; + if (ftype == Thrift.Type.STRUCT) { + this.success = new structs_ttypes.GetProfileResponse(); + this.success.read(input); + } else { + input.skip(ftype); + } + break; case 1: - if (ftype == Thrift.Type.STRUCT) { - this.e = new exceptions_ttypes.CoreServicesException(); - this.e.read(input); - } else { - input.skip(ftype); - } - break; + if (ftype == Thrift.Type.STRUCT) { + this.e = new exceptions_ttypes.CoreServicesException(); + this.e.read(input); + } else { + input.skip(ftype); + } + break; default: input.skip(ftype); } @@ -246,7 +242,7 @@ const CoreService_getProfile_result = class { return; } - write (output) { + write(output) { output.writeStructBegin('CoreService_getProfile_result'); if (this.success !== null && this.success !== undefined) { output.writeFieldBegin('success', Thrift.Type.STRUCT, 0); @@ -262,7 +258,6 @@ const CoreService_getProfile_result = class { output.writeStructEnd(); return; } - }; const CoreService_logout_args = class { constructor(args) { @@ -274,7 +269,7 @@ const CoreService_logout_args = class { } } - read (input) { + read(input) { input.readStructBegin(); while (true) { const ret = input.readFieldBegin(); @@ -285,13 +280,13 @@ const CoreService_logout_args = class { } switch (fid) { case 1: - if (ftype == Thrift.Type.STRUCT) { - this.request = new structs_ttypes.LogoutRequest(); - this.request.read(input); - } else { - input.skip(ftype); - } - break; + if (ftype == Thrift.Type.STRUCT) { + this.request = new structs_ttypes.LogoutRequest(); + this.request.read(input); + } else { + input.skip(ftype); + } + break; case 0: input.skip(ftype); break; @@ -304,7 +299,7 @@ const CoreService_logout_args = class { return; } - write (output) { + write(output) { output.writeStructBegin('CoreService_logout_args'); if (this.request !== null && this.request !== undefined) { output.writeFieldBegin('request', Thrift.Type.STRUCT, 1); @@ -315,15 +310,14 @@ const CoreService_logout_args = class { output.writeStructEnd(); return; } - }; const CoreService_logout_result = class { constructor(args) { this.success = null; this.e = null; if (args instanceof exceptions_ttypes.CoreServicesException) { - this.e = args; - return; + this.e = args; + return; } if (args) { if (args.success !== undefined && args.success !== null) { @@ -335,7 +329,7 @@ const CoreService_logout_result = class { } } - read (input) { + read(input) { input.readStructBegin(); while (true) { const ret = input.readFieldBegin(); @@ -346,21 +340,21 @@ const CoreService_logout_result = class { } switch (fid) { case 0: - if (ftype == Thrift.Type.STRUCT) { - this.success = new structs_ttypes.LogoutResponse(); - this.success.read(input); - } else { - input.skip(ftype); - } - break; + if (ftype == Thrift.Type.STRUCT) { + this.success = new structs_ttypes.LogoutResponse(); + this.success.read(input); + } else { + input.skip(ftype); + } + break; case 1: - if (ftype == Thrift.Type.STRUCT) { - this.e = new exceptions_ttypes.CoreServicesException(); - this.e.read(input); - } else { - input.skip(ftype); - } - break; + if (ftype == Thrift.Type.STRUCT) { + this.e = new exceptions_ttypes.CoreServicesException(); + this.e.read(input); + } else { + input.skip(ftype); + } + break; default: input.skip(ftype); } @@ -370,7 +364,7 @@ const CoreService_logout_result = class { return; } - write (output) { + write(output) { output.writeStructBegin('CoreService_logout_result'); if (this.success !== null && this.success !== undefined) { output.writeFieldBegin('success', Thrift.Type.STRUCT, 0); @@ -386,7 +380,6 @@ const CoreService_logout_result = class { output.writeStructEnd(); return; } - }; const CoreService_getUserList_args = class { constructor(args) { @@ -398,7 +391,7 @@ const CoreService_getUserList_args = class { } } - read (input) { + read(input) { input.readStructBegin(); while (true) { const ret = input.readFieldBegin(); @@ -409,13 +402,13 @@ const CoreService_getUserList_args = class { } switch (fid) { case 1: - if (ftype == Thrift.Type.STRUCT) { - this.request = new structs_ttypes.GetUserListRequest(); - this.request.read(input); - } else { - input.skip(ftype); - } - break; + if (ftype == Thrift.Type.STRUCT) { + this.request = new structs_ttypes.GetUserListRequest(); + this.request.read(input); + } else { + input.skip(ftype); + } + break; case 0: input.skip(ftype); break; @@ -428,7 +421,7 @@ const CoreService_getUserList_args = class { return; } - write (output) { + write(output) { output.writeStructBegin('CoreService_getUserList_args'); if (this.request !== null && this.request !== undefined) { output.writeFieldBegin('request', Thrift.Type.STRUCT, 1); @@ -439,15 +432,14 @@ const CoreService_getUserList_args = class { output.writeStructEnd(); return; } - }; const CoreService_getUserList_result = class { constructor(args) { this.success = null; this.e = null; if (args instanceof exceptions_ttypes.CoreServicesException) { - this.e = args; - return; + this.e = args; + return; } if (args) { if (args.success !== undefined && args.success !== null) { @@ -459,7 +451,7 @@ const CoreService_getUserList_result = class { } } - read (input) { + read(input) { input.readStructBegin(); while (true) { const ret = input.readFieldBegin(); @@ -470,21 +462,21 @@ const CoreService_getUserList_result = class { } switch (fid) { case 0: - if (ftype == Thrift.Type.STRUCT) { - this.success = new structs_ttypes.GetUserListResponse(); - this.success.read(input); - } else { - input.skip(ftype); - } - break; + if (ftype == Thrift.Type.STRUCT) { + this.success = new structs_ttypes.GetUserListResponse(); + this.success.read(input); + } else { + input.skip(ftype); + } + break; case 1: - if (ftype == Thrift.Type.STRUCT) { - this.e = new exceptions_ttypes.CoreServicesException(); - this.e.read(input); - } else { - input.skip(ftype); - } - break; + if (ftype == Thrift.Type.STRUCT) { + this.e = new exceptions_ttypes.CoreServicesException(); + this.e.read(input); + } else { + input.skip(ftype); + } + break; default: input.skip(ftype); } @@ -494,7 +486,7 @@ const CoreService_getUserList_result = class { return; } - write (output) { + write(output) { output.writeStructBegin('CoreService_getUserList_result'); if (this.success !== null && this.success !== undefined) { output.writeFieldBegin('success', Thrift.Type.STRUCT, 0); @@ -510,7 +502,6 @@ const CoreService_getUserList_result = class { output.writeStructEnd(); return; } - }; const CoreService_createUser_args = class { constructor(args) { @@ -522,7 +513,7 @@ const CoreService_createUser_args = class { } } - read (input) { + read(input) { input.readStructBegin(); while (true) { const ret = input.readFieldBegin(); @@ -533,13 +524,13 @@ const CoreService_createUser_args = class { } switch (fid) { case 1: - if (ftype == Thrift.Type.STRUCT) { - this.request = new structs_ttypes.CreateUserRequest(); - this.request.read(input); - } else { - input.skip(ftype); - } - break; + if (ftype == Thrift.Type.STRUCT) { + this.request = new structs_ttypes.CreateUserRequest(); + this.request.read(input); + } else { + input.skip(ftype); + } + break; case 0: input.skip(ftype); break; @@ -552,7 +543,7 @@ const CoreService_createUser_args = class { return; } - write (output) { + write(output) { output.writeStructBegin('CoreService_createUser_args'); if (this.request !== null && this.request !== undefined) { output.writeFieldBegin('request', Thrift.Type.STRUCT, 1); @@ -563,15 +554,14 @@ const CoreService_createUser_args = class { output.writeStructEnd(); return; } - }; const CoreService_createUser_result = class { constructor(args) { this.success = null; this.e = null; if (args instanceof exceptions_ttypes.CoreServicesException) { - this.e = args; - return; + this.e = args; + return; } if (args) { if (args.success !== undefined && args.success !== null) { @@ -583,7 +573,7 @@ const CoreService_createUser_result = class { } } - read (input) { + read(input) { input.readStructBegin(); while (true) { const ret = input.readFieldBegin(); @@ -594,21 +584,21 @@ const CoreService_createUser_result = class { } switch (fid) { case 0: - if (ftype == Thrift.Type.STRUCT) { - this.success = new structs_ttypes.CreateUserResponse(); - this.success.read(input); - } else { - input.skip(ftype); - } - break; + if (ftype == Thrift.Type.STRUCT) { + this.success = new structs_ttypes.CreateUserResponse(); + this.success.read(input); + } else { + input.skip(ftype); + } + break; case 1: - if (ftype == Thrift.Type.STRUCT) { - this.e = new exceptions_ttypes.CoreServicesException(); - this.e.read(input); - } else { - input.skip(ftype); - } - break; + if (ftype == Thrift.Type.STRUCT) { + this.e = new exceptions_ttypes.CoreServicesException(); + this.e.read(input); + } else { + input.skip(ftype); + } + break; default: input.skip(ftype); } @@ -618,7 +608,7 @@ const CoreService_createUser_result = class { return; } - write (output) { + write(output) { output.writeStructBegin('CoreService_createUser_result'); if (this.success !== null && this.success !== undefined) { output.writeFieldBegin('success', Thrift.Type.STRUCT, 0); @@ -634,7 +624,6 @@ const CoreService_createUser_result = class { output.writeStructEnd(); return; } - }; const CoreService_deleteUsers_args = class { constructor(args) { @@ -646,7 +635,7 @@ const CoreService_deleteUsers_args = class { } } - read (input) { + read(input) { input.readStructBegin(); while (true) { const ret = input.readFieldBegin(); @@ -657,13 +646,13 @@ const CoreService_deleteUsers_args = class { } switch (fid) { case 1: - if (ftype == Thrift.Type.STRUCT) { - this.request = new structs_ttypes.DeleteUsersRequest(); - this.request.read(input); - } else { - input.skip(ftype); - } - break; + if (ftype == Thrift.Type.STRUCT) { + this.request = new structs_ttypes.DeleteUsersRequest(); + this.request.read(input); + } else { + input.skip(ftype); + } + break; case 0: input.skip(ftype); break; @@ -676,7 +665,7 @@ const CoreService_deleteUsers_args = class { return; } - write (output) { + write(output) { output.writeStructBegin('CoreService_deleteUsers_args'); if (this.request !== null && this.request !== undefined) { output.writeFieldBegin('request', Thrift.Type.STRUCT, 1); @@ -687,15 +676,14 @@ const CoreService_deleteUsers_args = class { output.writeStructEnd(); return; } - }; const CoreService_deleteUsers_result = class { constructor(args) { this.success = null; this.e = null; if (args instanceof exceptions_ttypes.CoreServicesException) { - this.e = args; - return; + this.e = args; + return; } if (args) { if (args.success !== undefined && args.success !== null) { @@ -707,7 +695,7 @@ const CoreService_deleteUsers_result = class { } } - read (input) { + read(input) { input.readStructBegin(); while (true) { const ret = input.readFieldBegin(); @@ -718,21 +706,21 @@ const CoreService_deleteUsers_result = class { } switch (fid) { case 0: - if (ftype == Thrift.Type.STRUCT) { - this.success = new structs_ttypes.DeleteUsersResponse(); - this.success.read(input); - } else { - input.skip(ftype); - } - break; + if (ftype == Thrift.Type.STRUCT) { + this.success = new structs_ttypes.DeleteUsersResponse(); + this.success.read(input); + } else { + input.skip(ftype); + } + break; case 1: - if (ftype == Thrift.Type.STRUCT) { - this.e = new exceptions_ttypes.CoreServicesException(); - this.e.read(input); - } else { - input.skip(ftype); - } - break; + if (ftype == Thrift.Type.STRUCT) { + this.e = new exceptions_ttypes.CoreServicesException(); + this.e.read(input); + } else { + input.skip(ftype); + } + break; default: input.skip(ftype); } @@ -742,7 +730,7 @@ const CoreService_deleteUsers_result = class { return; } - write (output) { + write(output) { output.writeStructBegin('CoreService_deleteUsers_result'); if (this.success !== null && this.success !== undefined) { output.writeFieldBegin('success', Thrift.Type.STRUCT, 0); @@ -758,7 +746,6 @@ const CoreService_deleteUsers_result = class { output.writeStructEnd(); return; } - }; const CoreService_getWajibPajakList_args = class { constructor(args) { @@ -770,7 +757,7 @@ const CoreService_getWajibPajakList_args = class { } } - read (input) { + read(input) { input.readStructBegin(); while (true) { const ret = input.readFieldBegin(); @@ -781,13 +768,13 @@ const CoreService_getWajibPajakList_args = class { } switch (fid) { case 1: - if (ftype == Thrift.Type.STRUCT) { - this.request = new structs_ttypes.GetWajibPajakListRequest(); - this.request.read(input); - } else { - input.skip(ftype); - } - break; + if (ftype == Thrift.Type.STRUCT) { + this.request = new structs_ttypes.GetWajibPajakListRequest(); + this.request.read(input); + } else { + input.skip(ftype); + } + break; case 0: input.skip(ftype); break; @@ -800,7 +787,7 @@ const CoreService_getWajibPajakList_args = class { return; } - write (output) { + write(output) { output.writeStructBegin('CoreService_getWajibPajakList_args'); if (this.request !== null && this.request !== undefined) { output.writeFieldBegin('request', Thrift.Type.STRUCT, 1); @@ -811,15 +798,14 @@ const CoreService_getWajibPajakList_args = class { output.writeStructEnd(); return; } - }; const CoreService_getWajibPajakList_result = class { constructor(args) { this.success = null; this.e = null; if (args instanceof exceptions_ttypes.CoreServicesException) { - this.e = args; - return; + this.e = args; + return; } if (args) { if (args.success !== undefined && args.success !== null) { @@ -831,7 +817,7 @@ const CoreService_getWajibPajakList_result = class { } } - read (input) { + read(input) { input.readStructBegin(); while (true) { const ret = input.readFieldBegin(); @@ -842,21 +828,21 @@ const CoreService_getWajibPajakList_result = class { } switch (fid) { case 0: - if (ftype == Thrift.Type.STRUCT) { - this.success = new structs_ttypes.GetWajibPajakListResponse(); - this.success.read(input); - } else { - input.skip(ftype); - } - break; + if (ftype == Thrift.Type.STRUCT) { + this.success = new structs_ttypes.GetWajibPajakListResponse(); + this.success.read(input); + } else { + input.skip(ftype); + } + break; case 1: - if (ftype == Thrift.Type.STRUCT) { - this.e = new exceptions_ttypes.CoreServicesException(); - this.e.read(input); - } else { - input.skip(ftype); - } - break; + if (ftype == Thrift.Type.STRUCT) { + this.e = new exceptions_ttypes.CoreServicesException(); + this.e.read(input); + } else { + input.skip(ftype); + } + break; default: input.skip(ftype); } @@ -866,7 +852,7 @@ const CoreService_getWajibPajakList_result = class { return; } - write (output) { + write(output) { output.writeStructBegin('CoreService_getWajibPajakList_result'); if (this.success !== null && this.success !== undefined) { output.writeFieldBegin('success', Thrift.Type.STRUCT, 0); @@ -882,7 +868,6 @@ const CoreService_getWajibPajakList_result = class { output.writeStructEnd(); return; } - }; const CoreService_createWajibPajak_args = class { constructor(args) { @@ -894,7 +879,7 @@ const CoreService_createWajibPajak_args = class { } } - read (input) { + read(input) { input.readStructBegin(); while (true) { const ret = input.readFieldBegin(); @@ -905,13 +890,13 @@ const CoreService_createWajibPajak_args = class { } switch (fid) { case 1: - if (ftype == Thrift.Type.STRUCT) { - this.request = new structs_ttypes.CreateWajibPajakRequest(); - this.request.read(input); - } else { - input.skip(ftype); - } - break; + if (ftype == Thrift.Type.STRUCT) { + this.request = new structs_ttypes.CreateWajibPajakRequest(); + this.request.read(input); + } else { + input.skip(ftype); + } + break; case 0: input.skip(ftype); break; @@ -924,7 +909,7 @@ const CoreService_createWajibPajak_args = class { return; } - write (output) { + write(output) { output.writeStructBegin('CoreService_createWajibPajak_args'); if (this.request !== null && this.request !== undefined) { output.writeFieldBegin('request', Thrift.Type.STRUCT, 1); @@ -935,15 +920,14 @@ const CoreService_createWajibPajak_args = class { output.writeStructEnd(); return; } - }; const CoreService_createWajibPajak_result = class { constructor(args) { this.success = null; this.e = null; if (args instanceof exceptions_ttypes.CoreServicesException) { - this.e = args; - return; + this.e = args; + return; } if (args) { if (args.success !== undefined && args.success !== null) { @@ -955,7 +939,7 @@ const CoreService_createWajibPajak_result = class { } } - read (input) { + read(input) { input.readStructBegin(); while (true) { const ret = input.readFieldBegin(); @@ -966,21 +950,21 @@ const CoreService_createWajibPajak_result = class { } switch (fid) { case 0: - if (ftype == Thrift.Type.STRUCT) { - this.success = new structs_ttypes.CreateWajibPajakResponse(); - this.success.read(input); - } else { - input.skip(ftype); - } - break; + if (ftype == Thrift.Type.STRUCT) { + this.success = new structs_ttypes.CreateWajibPajakResponse(); + this.success.read(input); + } else { + input.skip(ftype); + } + break; case 1: - if (ftype == Thrift.Type.STRUCT) { - this.e = new exceptions_ttypes.CoreServicesException(); - this.e.read(input); - } else { - input.skip(ftype); - } - break; + if (ftype == Thrift.Type.STRUCT) { + this.e = new exceptions_ttypes.CoreServicesException(); + this.e.read(input); + } else { + input.skip(ftype); + } + break; default: input.skip(ftype); } @@ -990,7 +974,7 @@ const CoreService_createWajibPajak_result = class { return; } - write (output) { + write(output) { output.writeStructBegin('CoreService_createWajibPajak_result'); if (this.success !== null && this.success !== undefined) { output.writeFieldBegin('success', Thrift.Type.STRUCT, 0); @@ -1006,7 +990,6 @@ const CoreService_createWajibPajak_result = class { output.writeStructEnd(); return; } - }; const CoreService_deleteWajibPajakList_args = class { constructor(args) { @@ -1018,7 +1001,7 @@ const CoreService_deleteWajibPajakList_args = class { } } - read (input) { + read(input) { input.readStructBegin(); while (true) { const ret = input.readFieldBegin(); @@ -1029,13 +1012,13 @@ const CoreService_deleteWajibPajakList_args = class { } switch (fid) { case 1: - if (ftype == Thrift.Type.STRUCT) { - this.request = new structs_ttypes.DeleteWajibpajakListRequest(); - this.request.read(input); - } else { - input.skip(ftype); - } - break; + if (ftype == Thrift.Type.STRUCT) { + this.request = new structs_ttypes.DeleteWajibpajakListRequest(); + this.request.read(input); + } else { + input.skip(ftype); + } + break; case 0: input.skip(ftype); break; @@ -1048,7 +1031,7 @@ const CoreService_deleteWajibPajakList_args = class { return; } - write (output) { + write(output) { output.writeStructBegin('CoreService_deleteWajibPajakList_args'); if (this.request !== null && this.request !== undefined) { output.writeFieldBegin('request', Thrift.Type.STRUCT, 1); @@ -1059,15 +1042,14 @@ const CoreService_deleteWajibPajakList_args = class { output.writeStructEnd(); return; } - }; const CoreService_deleteWajibPajakList_result = class { constructor(args) { this.success = null; this.e = null; if (args instanceof exceptions_ttypes.CoreServicesException) { - this.e = args; - return; + this.e = args; + return; } if (args) { if (args.success !== undefined && args.success !== null) { @@ -1079,7 +1061,7 @@ const CoreService_deleteWajibPajakList_result = class { } } - read (input) { + read(input) { input.readStructBegin(); while (true) { const ret = input.readFieldBegin(); @@ -1090,21 +1072,21 @@ const CoreService_deleteWajibPajakList_result = class { } switch (fid) { case 0: - if (ftype == Thrift.Type.STRUCT) { - this.success = new structs_ttypes.DeleteWajibpajakListResponse(); - this.success.read(input); - } else { - input.skip(ftype); - } - break; + if (ftype == Thrift.Type.STRUCT) { + this.success = new structs_ttypes.DeleteWajibpajakListResponse(); + this.success.read(input); + } else { + input.skip(ftype); + } + break; case 1: - if (ftype == Thrift.Type.STRUCT) { - this.e = new exceptions_ttypes.CoreServicesException(); - this.e.read(input); - } else { - input.skip(ftype); - } - break; + if (ftype == Thrift.Type.STRUCT) { + this.e = new exceptions_ttypes.CoreServicesException(); + this.e.read(input); + } else { + input.skip(ftype); + } + break; default: input.skip(ftype); } @@ -1114,7 +1096,7 @@ const CoreService_deleteWajibPajakList_result = class { return; } - write (output) { + write(output) { output.writeStructBegin('CoreService_deleteWajibPajakList_result'); if (this.success !== null && this.success !== undefined) { output.writeFieldBegin('success', Thrift.Type.STRUCT, 0); @@ -1130,19 +1112,22 @@ const CoreService_deleteWajibPajakList_result = class { output.writeStructEnd(); return; } - }; -const CoreServiceClient = exports.Client = class CoreServiceClient { +const CoreServiceClient = (exports.Client = class CoreServiceClient { constructor(output, pClass) { this.output = output; this.pClass = pClass; this._seqid = 0; this._reqs = {}; } - seqid () { return this._seqid; } - new_seqid () { return this._seqid += 1; } + seqid() { + return this._seqid; + } + new_seqid() { + return (this._seqid += 1); + } - login (request) { + login(request) { this._seqid = this.new_seqid(); const self = this; return new Promise((resolve, reject) => { @@ -1153,10 +1138,10 @@ const CoreServiceClient = exports.Client = class CoreServiceClient { }); } - send_login (request) { + send_login(request) { const output = new this.pClass(this.output); const params = { - request: request + request: request, }; const args = new CoreService_login_args(params); try { @@ -1164,8 +1149,7 @@ const CoreServiceClient = exports.Client = class CoreServiceClient { args.write(output); output.writeMessageEnd(); return this.output.flush(); - } - catch (e) { + } catch (e) { delete this._reqs[this.seqid()]; if (typeof output.reset === 'function') { output.reset(); @@ -1174,8 +1158,8 @@ const CoreServiceClient = exports.Client = class CoreServiceClient { } } - recv_login (input, mtype, rseqid) { - const callback = this._reqs[rseqid] || function() {}; + recv_login(input, mtype, rseqid) { + const callback = this._reqs[rseqid] || function () {}; delete this._reqs[rseqid]; if (mtype == Thrift.MessageType.EXCEPTION) { const x = new Thrift.TApplicationException(); @@ -1196,7 +1180,7 @@ const CoreServiceClient = exports.Client = class CoreServiceClient { return callback('login failed: unknown result'); } - getProfile (request) { + getProfile(request) { this._seqid = this.new_seqid(); const self = this; return new Promise((resolve, reject) => { @@ -1207,10 +1191,10 @@ const CoreServiceClient = exports.Client = class CoreServiceClient { }); } - send_getProfile (request) { + send_getProfile(request) { const output = new this.pClass(this.output); const params = { - request: request + request: request, }; const args = new CoreService_getProfile_args(params); try { @@ -1218,8 +1202,7 @@ const CoreServiceClient = exports.Client = class CoreServiceClient { args.write(output); output.writeMessageEnd(); return this.output.flush(); - } - catch (e) { + } catch (e) { delete this._reqs[this.seqid()]; if (typeof output.reset === 'function') { output.reset(); @@ -1228,8 +1211,8 @@ const CoreServiceClient = exports.Client = class CoreServiceClient { } } - recv_getProfile (input, mtype, rseqid) { - const callback = this._reqs[rseqid] || function() {}; + recv_getProfile(input, mtype, rseqid) { + const callback = this._reqs[rseqid] || function () {}; delete this._reqs[rseqid]; if (mtype == Thrift.MessageType.EXCEPTION) { const x = new Thrift.TApplicationException(); @@ -1250,7 +1233,7 @@ const CoreServiceClient = exports.Client = class CoreServiceClient { return callback('getProfile failed: unknown result'); } - logout (request) { + logout(request) { this._seqid = this.new_seqid(); const self = this; return new Promise((resolve, reject) => { @@ -1261,10 +1244,10 @@ const CoreServiceClient = exports.Client = class CoreServiceClient { }); } - send_logout (request) { + send_logout(request) { const output = new this.pClass(this.output); const params = { - request: request + request: request, }; const args = new CoreService_logout_args(params); try { @@ -1272,8 +1255,7 @@ const CoreServiceClient = exports.Client = class CoreServiceClient { args.write(output); output.writeMessageEnd(); return this.output.flush(); - } - catch (e) { + } catch (e) { delete this._reqs[this.seqid()]; if (typeof output.reset === 'function') { output.reset(); @@ -1282,8 +1264,8 @@ const CoreServiceClient = exports.Client = class CoreServiceClient { } } - recv_logout (input, mtype, rseqid) { - const callback = this._reqs[rseqid] || function() {}; + recv_logout(input, mtype, rseqid) { + const callback = this._reqs[rseqid] || function () {}; delete this._reqs[rseqid]; if (mtype == Thrift.MessageType.EXCEPTION) { const x = new Thrift.TApplicationException(); @@ -1304,7 +1286,7 @@ const CoreServiceClient = exports.Client = class CoreServiceClient { return callback('logout failed: unknown result'); } - getUserList (request) { + getUserList(request) { this._seqid = this.new_seqid(); const self = this; return new Promise((resolve, reject) => { @@ -1315,10 +1297,10 @@ const CoreServiceClient = exports.Client = class CoreServiceClient { }); } - send_getUserList (request) { + send_getUserList(request) { const output = new this.pClass(this.output); const params = { - request: request + request: request, }; const args = new CoreService_getUserList_args(params); try { @@ -1326,8 +1308,7 @@ const CoreServiceClient = exports.Client = class CoreServiceClient { args.write(output); output.writeMessageEnd(); return this.output.flush(); - } - catch (e) { + } catch (e) { delete this._reqs[this.seqid()]; if (typeof output.reset === 'function') { output.reset(); @@ -1336,8 +1317,8 @@ const CoreServiceClient = exports.Client = class CoreServiceClient { } } - recv_getUserList (input, mtype, rseqid) { - const callback = this._reqs[rseqid] || function() {}; + recv_getUserList(input, mtype, rseqid) { + const callback = this._reqs[rseqid] || function () {}; delete this._reqs[rseqid]; if (mtype == Thrift.MessageType.EXCEPTION) { const x = new Thrift.TApplicationException(); @@ -1358,7 +1339,7 @@ const CoreServiceClient = exports.Client = class CoreServiceClient { return callback('getUserList failed: unknown result'); } - createUser (request) { + createUser(request) { this._seqid = this.new_seqid(); const self = this; return new Promise((resolve, reject) => { @@ -1369,10 +1350,10 @@ const CoreServiceClient = exports.Client = class CoreServiceClient { }); } - send_createUser (request) { + send_createUser(request) { const output = new this.pClass(this.output); const params = { - request: request + request: request, }; const args = new CoreService_createUser_args(params); try { @@ -1380,8 +1361,7 @@ const CoreServiceClient = exports.Client = class CoreServiceClient { args.write(output); output.writeMessageEnd(); return this.output.flush(); - } - catch (e) { + } catch (e) { delete this._reqs[this.seqid()]; if (typeof output.reset === 'function') { output.reset(); @@ -1390,8 +1370,8 @@ const CoreServiceClient = exports.Client = class CoreServiceClient { } } - recv_createUser (input, mtype, rseqid) { - const callback = this._reqs[rseqid] || function() {}; + recv_createUser(input, mtype, rseqid) { + const callback = this._reqs[rseqid] || function () {}; delete this._reqs[rseqid]; if (mtype == Thrift.MessageType.EXCEPTION) { const x = new Thrift.TApplicationException(); @@ -1412,7 +1392,7 @@ const CoreServiceClient = exports.Client = class CoreServiceClient { return callback('createUser failed: unknown result'); } - deleteUsers (request) { + deleteUsers(request) { this._seqid = this.new_seqid(); const self = this; return new Promise((resolve, reject) => { @@ -1423,10 +1403,10 @@ const CoreServiceClient = exports.Client = class CoreServiceClient { }); } - send_deleteUsers (request) { + send_deleteUsers(request) { const output = new this.pClass(this.output); const params = { - request: request + request: request, }; const args = new CoreService_deleteUsers_args(params); try { @@ -1434,8 +1414,7 @@ const CoreServiceClient = exports.Client = class CoreServiceClient { args.write(output); output.writeMessageEnd(); return this.output.flush(); - } - catch (e) { + } catch (e) { delete this._reqs[this.seqid()]; if (typeof output.reset === 'function') { output.reset(); @@ -1444,8 +1423,8 @@ const CoreServiceClient = exports.Client = class CoreServiceClient { } } - recv_deleteUsers (input, mtype, rseqid) { - const callback = this._reqs[rseqid] || function() {}; + recv_deleteUsers(input, mtype, rseqid) { + const callback = this._reqs[rseqid] || function () {}; delete this._reqs[rseqid]; if (mtype == Thrift.MessageType.EXCEPTION) { const x = new Thrift.TApplicationException(); @@ -1466,7 +1445,7 @@ const CoreServiceClient = exports.Client = class CoreServiceClient { return callback('deleteUsers failed: unknown result'); } - getWajibPajakList (request) { + getWajibPajakList(request) { this._seqid = this.new_seqid(); const self = this; return new Promise((resolve, reject) => { @@ -1477,10 +1456,10 @@ const CoreServiceClient = exports.Client = class CoreServiceClient { }); } - send_getWajibPajakList (request) { + send_getWajibPajakList(request) { const output = new this.pClass(this.output); const params = { - request: request + request: request, }; const args = new CoreService_getWajibPajakList_args(params); try { @@ -1488,8 +1467,7 @@ const CoreServiceClient = exports.Client = class CoreServiceClient { args.write(output); output.writeMessageEnd(); return this.output.flush(); - } - catch (e) { + } catch (e) { delete this._reqs[this.seqid()]; if (typeof output.reset === 'function') { output.reset(); @@ -1498,8 +1476,8 @@ const CoreServiceClient = exports.Client = class CoreServiceClient { } } - recv_getWajibPajakList (input, mtype, rseqid) { - const callback = this._reqs[rseqid] || function() {}; + recv_getWajibPajakList(input, mtype, rseqid) { + const callback = this._reqs[rseqid] || function () {}; delete this._reqs[rseqid]; if (mtype == Thrift.MessageType.EXCEPTION) { const x = new Thrift.TApplicationException(); @@ -1520,7 +1498,7 @@ const CoreServiceClient = exports.Client = class CoreServiceClient { return callback('getWajibPajakList failed: unknown result'); } - createWajibPajak (request) { + createWajibPajak(request) { this._seqid = this.new_seqid(); const self = this; return new Promise((resolve, reject) => { @@ -1531,10 +1509,10 @@ const CoreServiceClient = exports.Client = class CoreServiceClient { }); } - send_createWajibPajak (request) { + send_createWajibPajak(request) { const output = new this.pClass(this.output); const params = { - request: request + request: request, }; const args = new CoreService_createWajibPajak_args(params); try { @@ -1542,8 +1520,7 @@ const CoreServiceClient = exports.Client = class CoreServiceClient { args.write(output); output.writeMessageEnd(); return this.output.flush(); - } - catch (e) { + } catch (e) { delete this._reqs[this.seqid()]; if (typeof output.reset === 'function') { output.reset(); @@ -1552,8 +1529,8 @@ const CoreServiceClient = exports.Client = class CoreServiceClient { } } - recv_createWajibPajak (input, mtype, rseqid) { - const callback = this._reqs[rseqid] || function() {}; + recv_createWajibPajak(input, mtype, rseqid) { + const callback = this._reqs[rseqid] || function () {}; delete this._reqs[rseqid]; if (mtype == Thrift.MessageType.EXCEPTION) { const x = new Thrift.TApplicationException(); @@ -1574,7 +1551,7 @@ const CoreServiceClient = exports.Client = class CoreServiceClient { return callback('createWajibPajak failed: unknown result'); } - deleteWajibPajakList (request) { + deleteWajibPajakList(request) { this._seqid = this.new_seqid(); const self = this; return new Promise((resolve, reject) => { @@ -1585,10 +1562,10 @@ const CoreServiceClient = exports.Client = class CoreServiceClient { }); } - send_deleteWajibPajakList (request) { + send_deleteWajibPajakList(request) { const output = new this.pClass(this.output); const params = { - request: request + request: request, }; const args = new CoreService_deleteWajibPajakList_args(params); try { @@ -1596,8 +1573,7 @@ const CoreServiceClient = exports.Client = class CoreServiceClient { args.write(output); output.writeMessageEnd(); return this.output.flush(); - } - catch (e) { + } catch (e) { delete this._reqs[this.seqid()]; if (typeof output.reset === 'function') { output.reset(); @@ -1606,8 +1582,8 @@ const CoreServiceClient = exports.Client = class CoreServiceClient { } } - recv_deleteWajibPajakList (input, mtype, rseqid) { - const callback = this._reqs[rseqid] || function() {}; + recv_deleteWajibPajakList(input, mtype, rseqid) { + const callback = this._reqs[rseqid] || function () {}; delete this._reqs[rseqid]; if (mtype == Thrift.MessageType.EXCEPTION) { const x = new Thrift.TApplicationException(); @@ -1627,60 +1603,75 @@ const CoreServiceClient = exports.Client = class CoreServiceClient { } return callback('deleteWajibPajakList failed: unknown result'); } -}; -const CoreServiceProcessor = exports.Processor = class CoreServiceProcessor { +}); +const CoreServiceProcessor = (exports.Processor = class CoreServiceProcessor { constructor(handler) { this._handler = handler; } - process (input, output) { + process(input, output) { const r = input.readMessageBegin(); if (this['process_' + r.fname]) { return this['process_' + r.fname].call(this, r.rseqid, input, output); } else { input.skip(Thrift.Type.STRUCT); input.readMessageEnd(); - const x = new Thrift.TApplicationException(Thrift.TApplicationExceptionType.UNKNOWN_METHOD, 'Unknown function ' + r.fname); + const x = new Thrift.TApplicationException( + Thrift.TApplicationExceptionType.UNKNOWN_METHOD, + 'Unknown function ' + r.fname, + ); output.writeMessageBegin(r.fname, Thrift.MessageType.EXCEPTION, r.rseqid); x.write(output); output.writeMessageEnd(); output.flush(); } } - process_login (seqid, input, output) { + process_login(seqid, input, output) { const args = new CoreService_login_args(); args.read(input); input.readMessageEnd(); if (this._handler.login.length === 1) { - Promise.resolve(this._handler.login.bind(this._handler)( - args.request - )).then(result => { - const result_obj = new CoreService_login_result({success: result}); - output.writeMessageBegin("login", Thrift.MessageType.REPLY, seqid); - result_obj.write(output); - output.writeMessageEnd(); - output.flush(); - }).catch(err => { - let result; - if (err instanceof exceptions_ttypes.CoreServicesException) { - result = new CoreService_login_result(err); - output.writeMessageBegin("login", Thrift.MessageType.REPLY, seqid); - } else { - result = new Thrift.TApplicationException(Thrift.TApplicationExceptionType.UNKNOWN, err.message); - output.writeMessageBegin("login", Thrift.MessageType.EXCEPTION, seqid); - } - result.write(output); - output.writeMessageEnd(); - output.flush(); - }); + Promise.resolve(this._handler.login.bind(this._handler)(args.request)) + .then((result) => { + const result_obj = new CoreService_login_result({ success: result }); + output.writeMessageBegin('login', Thrift.MessageType.REPLY, seqid); + result_obj.write(output); + output.writeMessageEnd(); + output.flush(); + }) + .catch((err) => { + let result; + if (err instanceof exceptions_ttypes.CoreServicesException) { + result = new CoreService_login_result(err); + output.writeMessageBegin('login', Thrift.MessageType.REPLY, seqid); + } else { + result = new Thrift.TApplicationException( + Thrift.TApplicationExceptionType.UNKNOWN, + err.message, + ); + output.writeMessageBegin('login', Thrift.MessageType.EXCEPTION, seqid); + } + result.write(output); + output.writeMessageEnd(); + output.flush(); + }); } else { this._handler.login(args.request, (err, result) => { let result_obj; - if ((err === null || typeof err === 'undefined') || err instanceof exceptions_ttypes.CoreServicesException) { - result_obj = new CoreService_login_result((err !== null || typeof err === 'undefined') ? err : {success: result}); - output.writeMessageBegin("login", Thrift.MessageType.REPLY, seqid); + if ( + err === null || + typeof err === 'undefined' || + err instanceof exceptions_ttypes.CoreServicesException + ) { + result_obj = new CoreService_login_result( + err !== null || typeof err === 'undefined' ? err : { success: result }, + ); + output.writeMessageBegin('login', Thrift.MessageType.REPLY, seqid); } else { - result_obj = new Thrift.TApplicationException(Thrift.TApplicationExceptionType.UNKNOWN, err.message); - output.writeMessageBegin("login", Thrift.MessageType.EXCEPTION, seqid); + result_obj = new Thrift.TApplicationException( + Thrift.TApplicationExceptionType.UNKNOWN, + err.message, + ); + output.writeMessageBegin('login', Thrift.MessageType.EXCEPTION, seqid); } result_obj.write(output); output.writeMessageEnd(); @@ -1688,41 +1679,53 @@ const CoreServiceProcessor = exports.Processor = class CoreServiceProcessor { }); } } - process_getProfile (seqid, input, output) { + process_getProfile(seqid, input, output) { const args = new CoreService_getProfile_args(); args.read(input); input.readMessageEnd(); if (this._handler.getProfile.length === 1) { - Promise.resolve(this._handler.getProfile.bind(this._handler)( - args.request - )).then(result => { - const result_obj = new CoreService_getProfile_result({success: result}); - output.writeMessageBegin("getProfile", Thrift.MessageType.REPLY, seqid); - result_obj.write(output); - output.writeMessageEnd(); - output.flush(); - }).catch(err => { - let result; - if (err instanceof exceptions_ttypes.CoreServicesException) { - result = new CoreService_getProfile_result(err); - output.writeMessageBegin("getProfile", Thrift.MessageType.REPLY, seqid); - } else { - result = new Thrift.TApplicationException(Thrift.TApplicationExceptionType.UNKNOWN, err.message); - output.writeMessageBegin("getProfile", Thrift.MessageType.EXCEPTION, seqid); - } - result.write(output); - output.writeMessageEnd(); - output.flush(); - }); + Promise.resolve(this._handler.getProfile.bind(this._handler)(args.request)) + .then((result) => { + const result_obj = new CoreService_getProfile_result({ success: result }); + output.writeMessageBegin('getProfile', Thrift.MessageType.REPLY, seqid); + result_obj.write(output); + output.writeMessageEnd(); + output.flush(); + }) + .catch((err) => { + let result; + if (err instanceof exceptions_ttypes.CoreServicesException) { + result = new CoreService_getProfile_result(err); + output.writeMessageBegin('getProfile', Thrift.MessageType.REPLY, seqid); + } else { + result = new Thrift.TApplicationException( + Thrift.TApplicationExceptionType.UNKNOWN, + err.message, + ); + output.writeMessageBegin('getProfile', Thrift.MessageType.EXCEPTION, seqid); + } + result.write(output); + output.writeMessageEnd(); + output.flush(); + }); } else { this._handler.getProfile(args.request, (err, result) => { let result_obj; - if ((err === null || typeof err === 'undefined') || err instanceof exceptions_ttypes.CoreServicesException) { - result_obj = new CoreService_getProfile_result((err !== null || typeof err === 'undefined') ? err : {success: result}); - output.writeMessageBegin("getProfile", Thrift.MessageType.REPLY, seqid); + if ( + err === null || + typeof err === 'undefined' || + err instanceof exceptions_ttypes.CoreServicesException + ) { + result_obj = new CoreService_getProfile_result( + err !== null || typeof err === 'undefined' ? err : { success: result }, + ); + output.writeMessageBegin('getProfile', Thrift.MessageType.REPLY, seqid); } else { - result_obj = new Thrift.TApplicationException(Thrift.TApplicationExceptionType.UNKNOWN, err.message); - output.writeMessageBegin("getProfile", Thrift.MessageType.EXCEPTION, seqid); + result_obj = new Thrift.TApplicationException( + Thrift.TApplicationExceptionType.UNKNOWN, + err.message, + ); + output.writeMessageBegin('getProfile', Thrift.MessageType.EXCEPTION, seqid); } result_obj.write(output); output.writeMessageEnd(); @@ -1730,41 +1733,53 @@ const CoreServiceProcessor = exports.Processor = class CoreServiceProcessor { }); } } - process_logout (seqid, input, output) { + process_logout(seqid, input, output) { const args = new CoreService_logout_args(); args.read(input); input.readMessageEnd(); if (this._handler.logout.length === 1) { - Promise.resolve(this._handler.logout.bind(this._handler)( - args.request - )).then(result => { - const result_obj = new CoreService_logout_result({success: result}); - output.writeMessageBegin("logout", Thrift.MessageType.REPLY, seqid); - result_obj.write(output); - output.writeMessageEnd(); - output.flush(); - }).catch(err => { - let result; - if (err instanceof exceptions_ttypes.CoreServicesException) { - result = new CoreService_logout_result(err); - output.writeMessageBegin("logout", Thrift.MessageType.REPLY, seqid); - } else { - result = new Thrift.TApplicationException(Thrift.TApplicationExceptionType.UNKNOWN, err.message); - output.writeMessageBegin("logout", Thrift.MessageType.EXCEPTION, seqid); - } - result.write(output); - output.writeMessageEnd(); - output.flush(); - }); + Promise.resolve(this._handler.logout.bind(this._handler)(args.request)) + .then((result) => { + const result_obj = new CoreService_logout_result({ success: result }); + output.writeMessageBegin('logout', Thrift.MessageType.REPLY, seqid); + result_obj.write(output); + output.writeMessageEnd(); + output.flush(); + }) + .catch((err) => { + let result; + if (err instanceof exceptions_ttypes.CoreServicesException) { + result = new CoreService_logout_result(err); + output.writeMessageBegin('logout', Thrift.MessageType.REPLY, seqid); + } else { + result = new Thrift.TApplicationException( + Thrift.TApplicationExceptionType.UNKNOWN, + err.message, + ); + output.writeMessageBegin('logout', Thrift.MessageType.EXCEPTION, seqid); + } + result.write(output); + output.writeMessageEnd(); + output.flush(); + }); } else { this._handler.logout(args.request, (err, result) => { let result_obj; - if ((err === null || typeof err === 'undefined') || err instanceof exceptions_ttypes.CoreServicesException) { - result_obj = new CoreService_logout_result((err !== null || typeof err === 'undefined') ? err : {success: result}); - output.writeMessageBegin("logout", Thrift.MessageType.REPLY, seqid); + if ( + err === null || + typeof err === 'undefined' || + err instanceof exceptions_ttypes.CoreServicesException + ) { + result_obj = new CoreService_logout_result( + err !== null || typeof err === 'undefined' ? err : { success: result }, + ); + output.writeMessageBegin('logout', Thrift.MessageType.REPLY, seqid); } else { - result_obj = new Thrift.TApplicationException(Thrift.TApplicationExceptionType.UNKNOWN, err.message); - output.writeMessageBegin("logout", Thrift.MessageType.EXCEPTION, seqid); + result_obj = new Thrift.TApplicationException( + Thrift.TApplicationExceptionType.UNKNOWN, + err.message, + ); + output.writeMessageBegin('logout', Thrift.MessageType.EXCEPTION, seqid); } result_obj.write(output); output.writeMessageEnd(); @@ -1772,41 +1787,53 @@ const CoreServiceProcessor = exports.Processor = class CoreServiceProcessor { }); } } - process_getUserList (seqid, input, output) { + process_getUserList(seqid, input, output) { const args = new CoreService_getUserList_args(); args.read(input); input.readMessageEnd(); if (this._handler.getUserList.length === 1) { - Promise.resolve(this._handler.getUserList.bind(this._handler)( - args.request - )).then(result => { - const result_obj = new CoreService_getUserList_result({success: result}); - output.writeMessageBegin("getUserList", Thrift.MessageType.REPLY, seqid); - result_obj.write(output); - output.writeMessageEnd(); - output.flush(); - }).catch(err => { - let result; - if (err instanceof exceptions_ttypes.CoreServicesException) { - result = new CoreService_getUserList_result(err); - output.writeMessageBegin("getUserList", Thrift.MessageType.REPLY, seqid); - } else { - result = new Thrift.TApplicationException(Thrift.TApplicationExceptionType.UNKNOWN, err.message); - output.writeMessageBegin("getUserList", Thrift.MessageType.EXCEPTION, seqid); - } - result.write(output); - output.writeMessageEnd(); - output.flush(); - }); + Promise.resolve(this._handler.getUserList.bind(this._handler)(args.request)) + .then((result) => { + const result_obj = new CoreService_getUserList_result({ success: result }); + output.writeMessageBegin('getUserList', Thrift.MessageType.REPLY, seqid); + result_obj.write(output); + output.writeMessageEnd(); + output.flush(); + }) + .catch((err) => { + let result; + if (err instanceof exceptions_ttypes.CoreServicesException) { + result = new CoreService_getUserList_result(err); + output.writeMessageBegin('getUserList', Thrift.MessageType.REPLY, seqid); + } else { + result = new Thrift.TApplicationException( + Thrift.TApplicationExceptionType.UNKNOWN, + err.message, + ); + output.writeMessageBegin('getUserList', Thrift.MessageType.EXCEPTION, seqid); + } + result.write(output); + output.writeMessageEnd(); + output.flush(); + }); } else { this._handler.getUserList(args.request, (err, result) => { let result_obj; - if ((err === null || typeof err === 'undefined') || err instanceof exceptions_ttypes.CoreServicesException) { - result_obj = new CoreService_getUserList_result((err !== null || typeof err === 'undefined') ? err : {success: result}); - output.writeMessageBegin("getUserList", Thrift.MessageType.REPLY, seqid); + if ( + err === null || + typeof err === 'undefined' || + err instanceof exceptions_ttypes.CoreServicesException + ) { + result_obj = new CoreService_getUserList_result( + err !== null || typeof err === 'undefined' ? err : { success: result }, + ); + output.writeMessageBegin('getUserList', Thrift.MessageType.REPLY, seqid); } else { - result_obj = new Thrift.TApplicationException(Thrift.TApplicationExceptionType.UNKNOWN, err.message); - output.writeMessageBegin("getUserList", Thrift.MessageType.EXCEPTION, seqid); + result_obj = new Thrift.TApplicationException( + Thrift.TApplicationExceptionType.UNKNOWN, + err.message, + ); + output.writeMessageBegin('getUserList', Thrift.MessageType.EXCEPTION, seqid); } result_obj.write(output); output.writeMessageEnd(); @@ -1814,41 +1841,53 @@ const CoreServiceProcessor = exports.Processor = class CoreServiceProcessor { }); } } - process_createUser (seqid, input, output) { + process_createUser(seqid, input, output) { const args = new CoreService_createUser_args(); args.read(input); input.readMessageEnd(); if (this._handler.createUser.length === 1) { - Promise.resolve(this._handler.createUser.bind(this._handler)( - args.request - )).then(result => { - const result_obj = new CoreService_createUser_result({success: result}); - output.writeMessageBegin("createUser", Thrift.MessageType.REPLY, seqid); - result_obj.write(output); - output.writeMessageEnd(); - output.flush(); - }).catch(err => { - let result; - if (err instanceof exceptions_ttypes.CoreServicesException) { - result = new CoreService_createUser_result(err); - output.writeMessageBegin("createUser", Thrift.MessageType.REPLY, seqid); - } else { - result = new Thrift.TApplicationException(Thrift.TApplicationExceptionType.UNKNOWN, err.message); - output.writeMessageBegin("createUser", Thrift.MessageType.EXCEPTION, seqid); - } - result.write(output); - output.writeMessageEnd(); - output.flush(); - }); + Promise.resolve(this._handler.createUser.bind(this._handler)(args.request)) + .then((result) => { + const result_obj = new CoreService_createUser_result({ success: result }); + output.writeMessageBegin('createUser', Thrift.MessageType.REPLY, seqid); + result_obj.write(output); + output.writeMessageEnd(); + output.flush(); + }) + .catch((err) => { + let result; + if (err instanceof exceptions_ttypes.CoreServicesException) { + result = new CoreService_createUser_result(err); + output.writeMessageBegin('createUser', Thrift.MessageType.REPLY, seqid); + } else { + result = new Thrift.TApplicationException( + Thrift.TApplicationExceptionType.UNKNOWN, + err.message, + ); + output.writeMessageBegin('createUser', Thrift.MessageType.EXCEPTION, seqid); + } + result.write(output); + output.writeMessageEnd(); + output.flush(); + }); } else { this._handler.createUser(args.request, (err, result) => { let result_obj; - if ((err === null || typeof err === 'undefined') || err instanceof exceptions_ttypes.CoreServicesException) { - result_obj = new CoreService_createUser_result((err !== null || typeof err === 'undefined') ? err : {success: result}); - output.writeMessageBegin("createUser", Thrift.MessageType.REPLY, seqid); + if ( + err === null || + typeof err === 'undefined' || + err instanceof exceptions_ttypes.CoreServicesException + ) { + result_obj = new CoreService_createUser_result( + err !== null || typeof err === 'undefined' ? err : { success: result }, + ); + output.writeMessageBegin('createUser', Thrift.MessageType.REPLY, seqid); } else { - result_obj = new Thrift.TApplicationException(Thrift.TApplicationExceptionType.UNKNOWN, err.message); - output.writeMessageBegin("createUser", Thrift.MessageType.EXCEPTION, seqid); + result_obj = new Thrift.TApplicationException( + Thrift.TApplicationExceptionType.UNKNOWN, + err.message, + ); + output.writeMessageBegin('createUser', Thrift.MessageType.EXCEPTION, seqid); } result_obj.write(output); output.writeMessageEnd(); @@ -1856,41 +1895,53 @@ const CoreServiceProcessor = exports.Processor = class CoreServiceProcessor { }); } } - process_deleteUsers (seqid, input, output) { + process_deleteUsers(seqid, input, output) { const args = new CoreService_deleteUsers_args(); args.read(input); input.readMessageEnd(); if (this._handler.deleteUsers.length === 1) { - Promise.resolve(this._handler.deleteUsers.bind(this._handler)( - args.request - )).then(result => { - const result_obj = new CoreService_deleteUsers_result({success: result}); - output.writeMessageBegin("deleteUsers", Thrift.MessageType.REPLY, seqid); - result_obj.write(output); - output.writeMessageEnd(); - output.flush(); - }).catch(err => { - let result; - if (err instanceof exceptions_ttypes.CoreServicesException) { - result = new CoreService_deleteUsers_result(err); - output.writeMessageBegin("deleteUsers", Thrift.MessageType.REPLY, seqid); - } else { - result = new Thrift.TApplicationException(Thrift.TApplicationExceptionType.UNKNOWN, err.message); - output.writeMessageBegin("deleteUsers", Thrift.MessageType.EXCEPTION, seqid); - } - result.write(output); - output.writeMessageEnd(); - output.flush(); - }); + Promise.resolve(this._handler.deleteUsers.bind(this._handler)(args.request)) + .then((result) => { + const result_obj = new CoreService_deleteUsers_result({ success: result }); + output.writeMessageBegin('deleteUsers', Thrift.MessageType.REPLY, seqid); + result_obj.write(output); + output.writeMessageEnd(); + output.flush(); + }) + .catch((err) => { + let result; + if (err instanceof exceptions_ttypes.CoreServicesException) { + result = new CoreService_deleteUsers_result(err); + output.writeMessageBegin('deleteUsers', Thrift.MessageType.REPLY, seqid); + } else { + result = new Thrift.TApplicationException( + Thrift.TApplicationExceptionType.UNKNOWN, + err.message, + ); + output.writeMessageBegin('deleteUsers', Thrift.MessageType.EXCEPTION, seqid); + } + result.write(output); + output.writeMessageEnd(); + output.flush(); + }); } else { this._handler.deleteUsers(args.request, (err, result) => { let result_obj; - if ((err === null || typeof err === 'undefined') || err instanceof exceptions_ttypes.CoreServicesException) { - result_obj = new CoreService_deleteUsers_result((err !== null || typeof err === 'undefined') ? err : {success: result}); - output.writeMessageBegin("deleteUsers", Thrift.MessageType.REPLY, seqid); + if ( + err === null || + typeof err === 'undefined' || + err instanceof exceptions_ttypes.CoreServicesException + ) { + result_obj = new CoreService_deleteUsers_result( + err !== null || typeof err === 'undefined' ? err : { success: result }, + ); + output.writeMessageBegin('deleteUsers', Thrift.MessageType.REPLY, seqid); } else { - result_obj = new Thrift.TApplicationException(Thrift.TApplicationExceptionType.UNKNOWN, err.message); - output.writeMessageBegin("deleteUsers", Thrift.MessageType.EXCEPTION, seqid); + result_obj = new Thrift.TApplicationException( + Thrift.TApplicationExceptionType.UNKNOWN, + err.message, + ); + output.writeMessageBegin('deleteUsers', Thrift.MessageType.EXCEPTION, seqid); } result_obj.write(output); output.writeMessageEnd(); @@ -1898,41 +1949,53 @@ const CoreServiceProcessor = exports.Processor = class CoreServiceProcessor { }); } } - process_getWajibPajakList (seqid, input, output) { + process_getWajibPajakList(seqid, input, output) { const args = new CoreService_getWajibPajakList_args(); args.read(input); input.readMessageEnd(); if (this._handler.getWajibPajakList.length === 1) { - Promise.resolve(this._handler.getWajibPajakList.bind(this._handler)( - args.request - )).then(result => { - const result_obj = new CoreService_getWajibPajakList_result({success: result}); - output.writeMessageBegin("getWajibPajakList", Thrift.MessageType.REPLY, seqid); - result_obj.write(output); - output.writeMessageEnd(); - output.flush(); - }).catch(err => { - let result; - if (err instanceof exceptions_ttypes.CoreServicesException) { - result = new CoreService_getWajibPajakList_result(err); - output.writeMessageBegin("getWajibPajakList", Thrift.MessageType.REPLY, seqid); - } else { - result = new Thrift.TApplicationException(Thrift.TApplicationExceptionType.UNKNOWN, err.message); - output.writeMessageBegin("getWajibPajakList", Thrift.MessageType.EXCEPTION, seqid); - } - result.write(output); - output.writeMessageEnd(); - output.flush(); - }); + Promise.resolve(this._handler.getWajibPajakList.bind(this._handler)(args.request)) + .then((result) => { + const result_obj = new CoreService_getWajibPajakList_result({ success: result }); + output.writeMessageBegin('getWajibPajakList', Thrift.MessageType.REPLY, seqid); + result_obj.write(output); + output.writeMessageEnd(); + output.flush(); + }) + .catch((err) => { + let result; + if (err instanceof exceptions_ttypes.CoreServicesException) { + result = new CoreService_getWajibPajakList_result(err); + output.writeMessageBegin('getWajibPajakList', Thrift.MessageType.REPLY, seqid); + } else { + result = new Thrift.TApplicationException( + Thrift.TApplicationExceptionType.UNKNOWN, + err.message, + ); + output.writeMessageBegin('getWajibPajakList', Thrift.MessageType.EXCEPTION, seqid); + } + result.write(output); + output.writeMessageEnd(); + output.flush(); + }); } else { this._handler.getWajibPajakList(args.request, (err, result) => { let result_obj; - if ((err === null || typeof err === 'undefined') || err instanceof exceptions_ttypes.CoreServicesException) { - result_obj = new CoreService_getWajibPajakList_result((err !== null || typeof err === 'undefined') ? err : {success: result}); - output.writeMessageBegin("getWajibPajakList", Thrift.MessageType.REPLY, seqid); + if ( + err === null || + typeof err === 'undefined' || + err instanceof exceptions_ttypes.CoreServicesException + ) { + result_obj = new CoreService_getWajibPajakList_result( + err !== null || typeof err === 'undefined' ? err : { success: result }, + ); + output.writeMessageBegin('getWajibPajakList', Thrift.MessageType.REPLY, seqid); } else { - result_obj = new Thrift.TApplicationException(Thrift.TApplicationExceptionType.UNKNOWN, err.message); - output.writeMessageBegin("getWajibPajakList", Thrift.MessageType.EXCEPTION, seqid); + result_obj = new Thrift.TApplicationException( + Thrift.TApplicationExceptionType.UNKNOWN, + err.message, + ); + output.writeMessageBegin('getWajibPajakList', Thrift.MessageType.EXCEPTION, seqid); } result_obj.write(output); output.writeMessageEnd(); @@ -1940,41 +2003,53 @@ const CoreServiceProcessor = exports.Processor = class CoreServiceProcessor { }); } } - process_createWajibPajak (seqid, input, output) { + process_createWajibPajak(seqid, input, output) { const args = new CoreService_createWajibPajak_args(); args.read(input); input.readMessageEnd(); if (this._handler.createWajibPajak.length === 1) { - Promise.resolve(this._handler.createWajibPajak.bind(this._handler)( - args.request - )).then(result => { - const result_obj = new CoreService_createWajibPajak_result({success: result}); - output.writeMessageBegin("createWajibPajak", Thrift.MessageType.REPLY, seqid); - result_obj.write(output); - output.writeMessageEnd(); - output.flush(); - }).catch(err => { - let result; - if (err instanceof exceptions_ttypes.CoreServicesException) { - result = new CoreService_createWajibPajak_result(err); - output.writeMessageBegin("createWajibPajak", Thrift.MessageType.REPLY, seqid); - } else { - result = new Thrift.TApplicationException(Thrift.TApplicationExceptionType.UNKNOWN, err.message); - output.writeMessageBegin("createWajibPajak", Thrift.MessageType.EXCEPTION, seqid); - } - result.write(output); - output.writeMessageEnd(); - output.flush(); - }); + Promise.resolve(this._handler.createWajibPajak.bind(this._handler)(args.request)) + .then((result) => { + const result_obj = new CoreService_createWajibPajak_result({ success: result }); + output.writeMessageBegin('createWajibPajak', Thrift.MessageType.REPLY, seqid); + result_obj.write(output); + output.writeMessageEnd(); + output.flush(); + }) + .catch((err) => { + let result; + if (err instanceof exceptions_ttypes.CoreServicesException) { + result = new CoreService_createWajibPajak_result(err); + output.writeMessageBegin('createWajibPajak', Thrift.MessageType.REPLY, seqid); + } else { + result = new Thrift.TApplicationException( + Thrift.TApplicationExceptionType.UNKNOWN, + err.message, + ); + output.writeMessageBegin('createWajibPajak', Thrift.MessageType.EXCEPTION, seqid); + } + result.write(output); + output.writeMessageEnd(); + output.flush(); + }); } else { this._handler.createWajibPajak(args.request, (err, result) => { let result_obj; - if ((err === null || typeof err === 'undefined') || err instanceof exceptions_ttypes.CoreServicesException) { - result_obj = new CoreService_createWajibPajak_result((err !== null || typeof err === 'undefined') ? err : {success: result}); - output.writeMessageBegin("createWajibPajak", Thrift.MessageType.REPLY, seqid); + if ( + err === null || + typeof err === 'undefined' || + err instanceof exceptions_ttypes.CoreServicesException + ) { + result_obj = new CoreService_createWajibPajak_result( + err !== null || typeof err === 'undefined' ? err : { success: result }, + ); + output.writeMessageBegin('createWajibPajak', Thrift.MessageType.REPLY, seqid); } else { - result_obj = new Thrift.TApplicationException(Thrift.TApplicationExceptionType.UNKNOWN, err.message); - output.writeMessageBegin("createWajibPajak", Thrift.MessageType.EXCEPTION, seqid); + result_obj = new Thrift.TApplicationException( + Thrift.TApplicationExceptionType.UNKNOWN, + err.message, + ); + output.writeMessageBegin('createWajibPajak', Thrift.MessageType.EXCEPTION, seqid); } result_obj.write(output); output.writeMessageEnd(); @@ -1982,41 +2057,53 @@ const CoreServiceProcessor = exports.Processor = class CoreServiceProcessor { }); } } - process_deleteWajibPajakList (seqid, input, output) { + process_deleteWajibPajakList(seqid, input, output) { const args = new CoreService_deleteWajibPajakList_args(); args.read(input); input.readMessageEnd(); if (this._handler.deleteWajibPajakList.length === 1) { - Promise.resolve(this._handler.deleteWajibPajakList.bind(this._handler)( - args.request - )).then(result => { - const result_obj = new CoreService_deleteWajibPajakList_result({success: result}); - output.writeMessageBegin("deleteWajibPajakList", Thrift.MessageType.REPLY, seqid); - result_obj.write(output); - output.writeMessageEnd(); - output.flush(); - }).catch(err => { - let result; - if (err instanceof exceptions_ttypes.CoreServicesException) { - result = new CoreService_deleteWajibPajakList_result(err); - output.writeMessageBegin("deleteWajibPajakList", Thrift.MessageType.REPLY, seqid); - } else { - result = new Thrift.TApplicationException(Thrift.TApplicationExceptionType.UNKNOWN, err.message); - output.writeMessageBegin("deleteWajibPajakList", Thrift.MessageType.EXCEPTION, seqid); - } - result.write(output); - output.writeMessageEnd(); - output.flush(); - }); + Promise.resolve(this._handler.deleteWajibPajakList.bind(this._handler)(args.request)) + .then((result) => { + const result_obj = new CoreService_deleteWajibPajakList_result({ success: result }); + output.writeMessageBegin('deleteWajibPajakList', Thrift.MessageType.REPLY, seqid); + result_obj.write(output); + output.writeMessageEnd(); + output.flush(); + }) + .catch((err) => { + let result; + if (err instanceof exceptions_ttypes.CoreServicesException) { + result = new CoreService_deleteWajibPajakList_result(err); + output.writeMessageBegin('deleteWajibPajakList', Thrift.MessageType.REPLY, seqid); + } else { + result = new Thrift.TApplicationException( + Thrift.TApplicationExceptionType.UNKNOWN, + err.message, + ); + output.writeMessageBegin('deleteWajibPajakList', Thrift.MessageType.EXCEPTION, seqid); + } + result.write(output); + output.writeMessageEnd(); + output.flush(); + }); } else { this._handler.deleteWajibPajakList(args.request, (err, result) => { let result_obj; - if ((err === null || typeof err === 'undefined') || err instanceof exceptions_ttypes.CoreServicesException) { - result_obj = new CoreService_deleteWajibPajakList_result((err !== null || typeof err === 'undefined') ? err : {success: result}); - output.writeMessageBegin("deleteWajibPajakList", Thrift.MessageType.REPLY, seqid); + if ( + err === null || + typeof err === 'undefined' || + err instanceof exceptions_ttypes.CoreServicesException + ) { + result_obj = new CoreService_deleteWajibPajakList_result( + err !== null || typeof err === 'undefined' ? err : { success: result }, + ); + output.writeMessageBegin('deleteWajibPajakList', Thrift.MessageType.REPLY, seqid); } else { - result_obj = new Thrift.TApplicationException(Thrift.TApplicationExceptionType.UNKNOWN, err.message); - output.writeMessageBegin("deleteWajibPajakList", Thrift.MessageType.EXCEPTION, seqid); + result_obj = new Thrift.TApplicationException( + Thrift.TApplicationExceptionType.UNKNOWN, + err.message, + ); + output.writeMessageBegin('deleteWajibPajakList', Thrift.MessageType.EXCEPTION, seqid); } result_obj.write(output); output.writeMessageEnd(); @@ -2024,4 +2111,4 @@ const CoreServiceProcessor = exports.Processor = class CoreServiceProcessor { }); } } -}; +}); diff --git a/frontend/gen/exceptions_types.d.ts b/frontend/gen/exceptions_types.d.ts index 1af5efb..d12ace6 100644 --- a/frontend/gen/exceptions_types.d.ts +++ b/frontend/gen/exceptions_types.d.ts @@ -8,11 +8,10 @@ import Thrift = thrift.Thrift; import Q = thrift.Q; import Int64 = require('node-int64'); - declare class CoreServicesException extends Thrift.TException { - public code: number; - public message: string; - public parameters: { [k: string]: string; }; + public code: number; + public message: string; + public parameters: { [k: string]: string }; - constructor(args?: { code: number; message: string; parameters: { [k: string]: string; }; }); - } + constructor(args?: { code: number; message: string; parameters: { [k: string]: string } }); +} diff --git a/frontend/gen/exceptions_types.js b/frontend/gen/exceptions_types.js index fc1c98b..e22c2b8 100644 --- a/frontend/gen/exceptions_types.js +++ b/frontend/gen/exceptions_types.js @@ -3,18 +3,19 @@ // // DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING // -"use strict"; +'use strict'; const thrift = require('thrift'); const Thrift = thrift.Thrift; const Int64 = require('node-int64'); - -const ttypes = module.exports = {}; -const CoreServicesException = module.exports.CoreServicesException = class extends Thrift.TException { +const ttypes = (module.exports = {}); +const CoreServicesException = (module.exports.CoreServicesException = class extends ( + Thrift.TException +) { constructor(args) { super(args); - this.name = "CoreServicesException"; + this.name = 'CoreServicesException'; this.code = null; this.message = null; this.parameters = null; @@ -31,7 +32,7 @@ const CoreServicesException = module.exports.CoreServicesException = class exten } } - read (input) { + read(input) { input.readStructBegin(); while (true) { const ret = input.readFieldBegin(); @@ -42,36 +43,36 @@ const CoreServicesException = module.exports.CoreServicesException = class exten } switch (fid) { case 1: - if (ftype == Thrift.Type.I32) { - this.code = input.readI32(); - } else { - input.skip(ftype); - } - break; - case 2: - if (ftype == Thrift.Type.STRING) { - this.message = input.readString(); - } else { - input.skip(ftype); - } - break; - case 3: - if (ftype == Thrift.Type.MAP) { - this.parameters = {}; - const _rtmp31 = input.readMapBegin(); - const _size0 = _rtmp31.size || 0; - for (let _i2 = 0; _i2 < _size0; ++_i2) { - let key3 = null; - let val4 = null; - key3 = input.readString(); - val4 = input.readString(); - this.parameters[key3] = val4; + if (ftype == Thrift.Type.I32) { + this.code = input.readI32(); + } else { + input.skip(ftype); } - input.readMapEnd(); - } else { - input.skip(ftype); - } - break; + break; + case 2: + if (ftype == Thrift.Type.STRING) { + this.message = input.readString(); + } else { + input.skip(ftype); + } + break; + case 3: + if (ftype == Thrift.Type.MAP) { + this.parameters = {}; + const _rtmp31 = input.readMapBegin(); + const _size0 = _rtmp31.size || 0; + for (let _i2 = 0; _i2 < _size0; ++_i2) { + let key3 = null; + let val4 = null; + key3 = input.readString(); + val4 = input.readString(); + this.parameters[key3] = val4; + } + input.readMapEnd(); + } else { + input.skip(ftype); + } + break; default: input.skip(ftype); } @@ -81,7 +82,7 @@ const CoreServicesException = module.exports.CoreServicesException = class exten return; } - write (output) { + write(output) { output.writeStructBegin('CoreServicesException'); if (this.code !== null && this.code !== undefined) { output.writeFieldBegin('code', Thrift.Type.I32, 1); @@ -95,10 +96,14 @@ const CoreServicesException = module.exports.CoreServicesException = class exten } if (this.parameters !== null && this.parameters !== undefined) { output.writeFieldBegin('parameters', Thrift.Type.MAP, 3); - output.writeMapBegin(Thrift.Type.STRING, Thrift.Type.STRING, Thrift.objectLength(this.parameters)); - for (let kiter5 in this.parameters) { + output.writeMapBegin( + Thrift.Type.STRING, + Thrift.Type.STRING, + Thrift.objectLength(this.parameters), + ); + for (const kiter5 in this.parameters) { if (this.parameters.hasOwnProperty(kiter5)) { - let viter6 = this.parameters[kiter5]; + const viter6 = this.parameters[kiter5]; output.writeString(kiter5); output.writeString(viter6); } @@ -110,5 +115,4 @@ const CoreServicesException = module.exports.CoreServicesException = class exten output.writeStructEnd(); return; } - -}; +}); diff --git a/frontend/gen/exceptionsc_types.d.ts b/frontend/gen/exceptionsc_types.d.ts index f825433..bb496b8 100644 --- a/frontend/gen/exceptionsc_types.d.ts +++ b/frontend/gen/exceptionsc_types.d.ts @@ -8,11 +8,10 @@ import Thrift = thrift.Thrift; import Q = thrift.Q; import Int64 = require('node-int64'); - declare class CommonException extends Thrift.TException { - public code: number; - public message: string; - public metadata?: { [k: string]: string; }; + public code: number; + public message: string; + public metadata?: { [k: string]: string }; - constructor(args?: { code: number; message: string; metadata?: { [k: string]: string; }; }); - } + constructor(args?: { code: number; message: string; metadata?: { [k: string]: string } }); +} diff --git a/frontend/gen/exceptionsc_types.js b/frontend/gen/exceptionsc_types.js index a50126e..b3022a5 100644 --- a/frontend/gen/exceptionsc_types.js +++ b/frontend/gen/exceptionsc_types.js @@ -3,18 +3,17 @@ // // DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING // -"use strict"; +'use strict'; const thrift = require('thrift'); const Thrift = thrift.Thrift; const Int64 = require('node-int64'); - -const ttypes = module.exports = {}; -const CommonException = module.exports.CommonException = class extends Thrift.TException { +const ttypes = (module.exports = {}); +const CommonException = (module.exports.CommonException = class extends Thrift.TException { constructor(args) { super(args); - this.name = "CommonException"; + this.name = 'CommonException'; this.code = null; this.message = null; this.metadata = null; @@ -31,7 +30,7 @@ const CommonException = module.exports.CommonException = class extends Thrift.TE } } - read (input) { + read(input) { input.readStructBegin(); while (true) { const ret = input.readFieldBegin(); @@ -42,36 +41,36 @@ const CommonException = module.exports.CommonException = class extends Thrift.TE } switch (fid) { case 1: - if (ftype == Thrift.Type.I32) { - this.code = input.readI32(); - } else { - input.skip(ftype); - } - break; - case 2: - if (ftype == Thrift.Type.STRING) { - this.message = input.readString(); - } else { - input.skip(ftype); - } - break; - case 3: - if (ftype == Thrift.Type.MAP) { - this.metadata = {}; - const _rtmp31 = input.readMapBegin(); - const _size0 = _rtmp31.size || 0; - for (let _i2 = 0; _i2 < _size0; ++_i2) { - let key3 = null; - let val4 = null; - key3 = input.readString(); - val4 = input.readString(); - this.metadata[key3] = val4; + if (ftype == Thrift.Type.I32) { + this.code = input.readI32(); + } else { + input.skip(ftype); } - input.readMapEnd(); - } else { - input.skip(ftype); - } - break; + break; + case 2: + if (ftype == Thrift.Type.STRING) { + this.message = input.readString(); + } else { + input.skip(ftype); + } + break; + case 3: + if (ftype == Thrift.Type.MAP) { + this.metadata = {}; + const _rtmp31 = input.readMapBegin(); + const _size0 = _rtmp31.size || 0; + for (let _i2 = 0; _i2 < _size0; ++_i2) { + let key3 = null; + let val4 = null; + key3 = input.readString(); + val4 = input.readString(); + this.metadata[key3] = val4; + } + input.readMapEnd(); + } else { + input.skip(ftype); + } + break; default: input.skip(ftype); } @@ -81,7 +80,7 @@ const CommonException = module.exports.CommonException = class extends Thrift.TE return; } - write (output) { + write(output) { output.writeStructBegin('CommonException'); if (this.code !== null && this.code !== undefined) { output.writeFieldBegin('code', Thrift.Type.I32, 1); @@ -95,10 +94,14 @@ const CommonException = module.exports.CommonException = class extends Thrift.TE } if (this.metadata !== null && this.metadata !== undefined) { output.writeFieldBegin('metadata', Thrift.Type.MAP, 3); - output.writeMapBegin(Thrift.Type.STRING, Thrift.Type.STRING, Thrift.objectLength(this.metadata)); - for (let kiter5 in this.metadata) { + output.writeMapBegin( + Thrift.Type.STRING, + Thrift.Type.STRING, + Thrift.objectLength(this.metadata), + ); + for (const kiter5 in this.metadata) { if (this.metadata.hasOwnProperty(kiter5)) { - let viter6 = this.metadata[kiter5]; + const viter6 = this.metadata[kiter5]; output.writeString(kiter5); output.writeString(viter6); } @@ -110,5 +113,4 @@ const CommonException = module.exports.CommonException = class extends Thrift.TE output.writeStructEnd(); return; } - -}; +}); diff --git a/frontend/gen/service_types.d.ts b/frontend/gen/service_types.d.ts index 6c4fdcd..616d87f 100644 --- a/frontend/gen/service_types.d.ts +++ b/frontend/gen/service_types.d.ts @@ -9,5 +9,3 @@ import Q = thrift.Q; import Int64 = require('node-int64'); import structs_ttypes = require('./structs_types'); import exceptions_ttypes = require('./exceptions_types'); - - diff --git a/frontend/gen/service_types.js b/frontend/gen/service_types.js index e1a78a1..973eb6d 100644 --- a/frontend/gen/service_types.js +++ b/frontend/gen/service_types.js @@ -3,7 +3,7 @@ // // DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING // -"use strict"; +'use strict'; const thrift = require('thrift'); const Thrift = thrift.Thrift; @@ -12,5 +12,4 @@ const Int64 = require('node-int64'); const structs_ttypes = require('./structs_types'); const exceptions_ttypes = require('./exceptions_types'); - -const ttypes = module.exports = {}; +const ttypes = (module.exports = {}); diff --git a/frontend/gen/structs_types.d.ts b/frontend/gen/structs_types.d.ts index 94d9780..cb9ab08 100644 --- a/frontend/gen/structs_types.d.ts +++ b/frontend/gen/structs_types.d.ts @@ -8,7 +8,6 @@ import Thrift = thrift.Thrift; import Q = thrift.Q; import Int64 = require('node-int64'); - declare enum RoleType { UNKNOWN = 0, SYSTEM = 1, @@ -36,174 +35,201 @@ declare enum WajibPajakOwnership { } declare class Role { - public id: Int64; - public displayName: string; - public roleType: RoleType; - public creator?: User; - public users?: User[]; - public wajibPajakList?: WajibPajak[]; + public id: Int64; + public displayName: string; + public roleType: RoleType; + public creator?: User; + public users?: User[]; + public wajibPajakList?: WajibPajak[]; - constructor(args?: { id: Int64; displayName: string; roleType: RoleType; creator?: User; users?: User[]; wajibPajakList?: WajibPajak[]; }); - } + constructor(args?: { + id: Int64; + displayName: string; + roleType: RoleType; + creator?: User; + users?: User[]; + wajibPajakList?: WajibPajak[]; + }); +} declare class User { - public id: Int64; - public username: string; - public password: string; - public displayName: string; - public privateKey: Buffer; - public publicKey: Buffer; - public roles?: Role[]; - public ownedWajibPajakList?: WajibPajak[]; - public rolesWajibPajakList?: Role[]; + public id: Int64; + public username: string; + public password: string; + public displayName: string; + public privateKey: Buffer; + public publicKey: Buffer; + public roles?: Role[]; + public ownedWajibPajakList?: WajibPajak[]; + public rolesWajibPajakList?: Role[]; - constructor(args?: { id: Int64; username: string; password: string; displayName: string; privateKey: Buffer; publicKey: Buffer; roles?: Role[]; ownedWajibPajakList?: WajibPajak[]; rolesWajibPajakList?: Role[]; }); - } + constructor(args?: { + id: Int64; + username: string; + password: string; + displayName: string; + privateKey: Buffer; + publicKey: Buffer; + roles?: Role[]; + ownedWajibPajakList?: WajibPajak[]; + rolesWajibPajakList?: Role[]; + }); +} declare class WajibPajakProfile { - public npwp: string; - public displayName: string; - public address: string; + public npwp: string; + public displayName: string; + public address: string; - constructor(args?: { npwp: string; displayName: string; address: string; }); - } + constructor(args?: { npwp: string; displayName: string; address: string }); +} declare class WajibPajakTaxObligation { - public id: Int64; - public obligation: JenisPajak; - public isActive: boolean; + public id: Int64; + public obligation: JenisPajak; + public isActive: boolean; - constructor(args?: { id: Int64; obligation: JenisPajak; isActive: boolean; }); - } + constructor(args?: { id: Int64; obligation: JenisPajak; isActive: boolean }); +} declare class WajibPajak { - public id: Int64; - public profile: WajibPajakProfile; - public owners: User[]; - public taxObligations?: WajibPajakTaxObligation[]; - public roles?: Role[]; + public id: Int64; + public profile: WajibPajakProfile; + public owners: User[]; + public taxObligations?: WajibPajakTaxObligation[]; + public roles?: Role[]; - constructor(args?: { id: Int64; profile: WajibPajakProfile; owners: User[]; taxObligations?: WajibPajakTaxObligation[]; roles?: Role[]; }); - } + constructor(args?: { + id: Int64; + profile: WajibPajakProfile; + owners: User[]; + taxObligations?: WajibPajakTaxObligation[]; + roles?: Role[]; + }); +} declare class Pagination { - public page: Int64; - public rowsPerPage: Int64; + public page: Int64; + public rowsPerPage: Int64; - constructor(args?: { page: Int64; rowsPerPage: Int64; }); - } + constructor(args?: { page: Int64; rowsPerPage: Int64 }); +} declare class AlertInfo { - public title: string; - public description: string; + public title: string; + public description: string; - constructor(args?: { title: string; description: string; }); - } + constructor(args?: { title: string; description: string }); +} declare class LoginRequest { - public username: string; - public password: string; + public username: string; + public password: string; - constructor(args?: { username: string; password: string; }); - } + constructor(args?: { username: string; password: string }); +} declare class LoginResponse { - public trkToken: string; - public token: string; - public profile?: User; + public trkToken: string; + public token: string; + public profile?: User; - constructor(args?: { trkToken: string; token: string; profile?: User; }); - } + constructor(args?: { trkToken: string; token: string; profile?: User }); +} declare class LogoutRequest { - public token: string; + public token: string; - constructor(args?: { token: string; }); - } + constructor(args?: { token: string }); +} -declare class LogoutResponse { - } +declare class LogoutResponse {} -declare class GetProfileRequest { - } +declare class GetProfileRequest {} declare class GetProfileResponse { - public profile: User; + public profile: User; - constructor(args?: { profile: User; }); - } + constructor(args?: { profile: User }); +} declare class GetUserListRequest { - public pagination: Pagination; - public searchTerm: string; + public pagination: Pagination; + public searchTerm: string; - constructor(args?: { pagination: Pagination; searchTerm: string; }); - } + constructor(args?: { pagination: Pagination; searchTerm: string }); +} declare class GetUserListResponse { - public pagination: Pagination; - public totalUsers: Int64; - public users: User[]; + public pagination: Pagination; + public totalUsers: Int64; + public users: User[]; - constructor(args?: { pagination: Pagination; totalUsers: Int64; users: User[]; }); - } + constructor(args?: { pagination: Pagination; totalUsers: Int64; users: User[] }); +} declare class CreateUserRequest { - public user: User; + public user: User; - constructor(args?: { user: User; }); - } + constructor(args?: { user: User }); +} -declare class CreateUserResponse { - } +declare class CreateUserResponse {} declare class DeleteUsersRequest { - public userIds: Int64[]; + public userIds: Int64[]; - constructor(args?: { userIds: Int64[]; }); - } + constructor(args?: { userIds: Int64[] }); +} declare class DeleteUsersResponse { - public success: Int64[]; - public ignored: Int64[]; + public success: Int64[]; + public ignored: Int64[]; - constructor(args?: { success: Int64[]; ignored: Int64[]; }); - } + constructor(args?: { success: Int64[]; ignored: Int64[] }); +} declare class GetWajibPajakListRequest { - public pagination: Pagination; - public ownership: WajibPajakOwnership; - public searchTerm: string; + public pagination: Pagination; + public ownership: WajibPajakOwnership; + public searchTerm: string; - constructor(args?: { pagination: Pagination; ownership: WajibPajakOwnership; searchTerm: string; }); - } + constructor(args?: { + pagination: Pagination; + ownership: WajibPajakOwnership; + searchTerm: string; + }); +} declare class GetWajibPajakListResponse { - public pagination: Pagination; - public totalWajibPajak: Int64; - public wajibPajakList: WajibPajak[]; + public pagination: Pagination; + public totalWajibPajak: Int64; + public wajibPajakList: WajibPajak[]; - constructor(args?: { pagination: Pagination; totalWajibPajak: Int64; wajibPajakList: WajibPajak[]; }); - } + constructor(args?: { + pagination: Pagination; + totalWajibPajak: Int64; + wajibPajakList: WajibPajak[]; + }); +} declare class CreateWajibPajakRequest { - public wajibPajak: WajibPajak; + public wajibPajak: WajibPajak; - constructor(args?: { wajibPajak: WajibPajak; }); - } + constructor(args?: { wajibPajak: WajibPajak }); +} -declare class CreateWajibPajakResponse { - } +declare class CreateWajibPajakResponse {} declare class DeleteWajibpajakListRequest { - public wpIds: Int64[]; + public wpIds: Int64[]; - constructor(args?: { wpIds: Int64[]; }); - } + constructor(args?: { wpIds: Int64[] }); +} declare class DeleteWajibpajakListResponse { - public success: Int64[]; - public ignored: Int64[]; + public success: Int64[]; + public ignored: Int64[]; - constructor(args?: { success: Int64[]; ignored: Int64[]; }); - } + constructor(args?: { success: Int64[]; ignored: Int64[] }); +} diff --git a/frontend/gen/structs_types.js b/frontend/gen/structs_types.js index 7c602de..3b8e9f5 100644 --- a/frontend/gen/structs_types.js +++ b/frontend/gen/structs_types.js @@ -3,55 +3,54 @@ // // DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING // -"use strict"; +'use strict'; const thrift = require('thrift'); const Thrift = thrift.Thrift; const Int64 = require('node-int64'); - -const ttypes = module.exports = {}; +const ttypes = (module.exports = {}); ttypes.RoleType = { - '0' : 'UNKNOWN', - 'UNKNOWN' : 0, - '1' : 'SYSTEM', - 'SYSTEM' : 1, - '2' : 'USER', - 'USER' : 2, - '100' : 'WP_OWNER', - 'WP_OWNER' : 100, - '110' : 'WP_ADMIN', - 'WP_ADMIN' : 110 + 0: 'UNKNOWN', + UNKNOWN: 0, + 1: 'SYSTEM', + SYSTEM: 1, + 2: 'USER', + USER: 2, + 100: 'WP_OWNER', + WP_OWNER: 100, + 110: 'WP_ADMIN', + WP_ADMIN: 110, }; ttypes.JenisPajak = { - '0' : 'UNKNOWN', - 'UNKNOWN' : 0, - '1' : 'PPH_21', - 'PPH_21' : 1, - '2' : 'PPH_23', - 'PPH_23' : 2, - '3' : 'PPH_25', - 'PPH_25' : 3, - '4' : 'PPH_26', - 'PPH_26' : 4, - '5' : 'PPH_4_2', - 'PPH_4_2' : 5, - '6' : 'PPH_15', - 'PPH_15' : 6, - '7' : 'PPN', - 'PPN' : 7, - '8' : 'TAHUNAN', - 'TAHUNAN' : 8 + 0: 'UNKNOWN', + UNKNOWN: 0, + 1: 'PPH_21', + PPH_21: 1, + 2: 'PPH_23', + PPH_23: 2, + 3: 'PPH_25', + PPH_25: 3, + 4: 'PPH_26', + PPH_26: 4, + 5: 'PPH_4_2', + PPH_4_2: 5, + 6: 'PPH_15', + PPH_15: 6, + 7: 'PPN', + PPN: 7, + 8: 'TAHUNAN', + TAHUNAN: 8, }; ttypes.WajibPajakOwnership = { - '0' : 'UNKNOWN', - 'UNKNOWN' : 0, - '1' : 'OWNED', - 'OWNED' : 1, - '2' : 'ROLE', - 'ROLE' : 2 + 0: 'UNKNOWN', + UNKNOWN: 0, + 1: 'OWNED', + OWNED: 1, + 2: 'ROLE', + ROLE: 2, }; -const Role = module.exports.Role = class { +const Role = (module.exports.Role = class { constructor(args) { this.id = null; this.displayName = null; @@ -81,7 +80,7 @@ const Role = module.exports.Role = class { } } - read (input) { + read(input) { input.readStructBegin(); while (true) { const ret = input.readFieldBegin(); @@ -92,66 +91,66 @@ const Role = module.exports.Role = class { } switch (fid) { case 1: - if (ftype == Thrift.Type.I64) { - this.id = input.readI64(); - } else { - input.skip(ftype); - } - break; + if (ftype == Thrift.Type.I64) { + this.id = input.readI64(); + } else { + input.skip(ftype); + } + break; case 5: - if (ftype == Thrift.Type.STRING) { - this.displayName = input.readString(); - } else { - input.skip(ftype); - } - break; + if (ftype == Thrift.Type.STRING) { + this.displayName = input.readString(); + } else { + input.skip(ftype); + } + break; case 6: - if (ftype == Thrift.Type.I32) { - this.roleType = input.readI32(); - } else { - input.skip(ftype); - } - break; + if (ftype == Thrift.Type.I32) { + this.roleType = input.readI32(); + } else { + input.skip(ftype); + } + break; case 39: - if (ftype == Thrift.Type.STRUCT) { - this.creator = new ttypes.User(); - this.creator.read(input); - } else { - input.skip(ftype); - } - break; + if (ftype == Thrift.Type.STRUCT) { + this.creator = new ttypes.User(); + this.creator.read(input); + } else { + input.skip(ftype); + } + break; case 40: - if (ftype == Thrift.Type.LIST) { - this.users = []; - const _rtmp31 = input.readListBegin(); - const _size0 = _rtmp31.size || 0; - for (let _i2 = 0; _i2 < _size0; ++_i2) { - let elem3 = null; - elem3 = new ttypes.User(); - elem3.read(input); - this.users.push(elem3); + if (ftype == Thrift.Type.LIST) { + this.users = []; + const _rtmp31 = input.readListBegin(); + const _size0 = _rtmp31.size || 0; + for (let _i2 = 0; _i2 < _size0; ++_i2) { + let elem3 = null; + elem3 = new ttypes.User(); + elem3.read(input); + this.users.push(elem3); + } + input.readListEnd(); + } else { + input.skip(ftype); } - input.readListEnd(); - } else { - input.skip(ftype); - } - break; + break; case 41: - if (ftype == Thrift.Type.LIST) { - this.wajibPajakList = []; - const _rtmp35 = input.readListBegin(); - const _size4 = _rtmp35.size || 0; - for (let _i6 = 0; _i6 < _size4; ++_i6) { - let elem7 = null; - elem7 = new ttypes.WajibPajak(); - elem7.read(input); - this.wajibPajakList.push(elem7); + if (ftype == Thrift.Type.LIST) { + this.wajibPajakList = []; + const _rtmp35 = input.readListBegin(); + const _size4 = _rtmp35.size || 0; + for (let _i6 = 0; _i6 < _size4; ++_i6) { + let elem7 = null; + elem7 = new ttypes.WajibPajak(); + elem7.read(input); + this.wajibPajakList.push(elem7); + } + input.readListEnd(); + } else { + input.skip(ftype); } - input.readListEnd(); - } else { - input.skip(ftype); - } - break; + break; default: input.skip(ftype); } @@ -161,7 +160,7 @@ const Role = module.exports.Role = class { return; } - write (output) { + write(output) { output.writeStructBegin('Role'); if (this.id !== null && this.id !== undefined) { output.writeFieldBegin('id', Thrift.Type.I64, 1); @@ -211,9 +210,8 @@ const Role = module.exports.Role = class { output.writeStructEnd(); return; } - -}; -const User = module.exports.User = class { +}); +const User = (module.exports.User = class { constructor(args) { this.id = null; this.username = null; @@ -255,7 +253,7 @@ const User = module.exports.User = class { } } - read (input) { + read(input) { input.readStructBegin(); while (true) { const ret = input.readFieldBegin(); @@ -266,95 +264,95 @@ const User = module.exports.User = class { } switch (fid) { case 1: - if (ftype == Thrift.Type.I64) { - this.id = input.readI64(); - } else { - input.skip(ftype); - } - break; + if (ftype == Thrift.Type.I64) { + this.id = input.readI64(); + } else { + input.skip(ftype); + } + break; case 2: - if (ftype == Thrift.Type.STRING) { - this.username = input.readString(); - } else { - input.skip(ftype); - } - break; + if (ftype == Thrift.Type.STRING) { + this.username = input.readString(); + } else { + input.skip(ftype); + } + break; case 3: - if (ftype == Thrift.Type.STRING) { - this.password = input.readString(); - } else { - input.skip(ftype); - } - break; + if (ftype == Thrift.Type.STRING) { + this.password = input.readString(); + } else { + input.skip(ftype); + } + break; case 4: - if (ftype == Thrift.Type.STRING) { - this.displayName = input.readString(); - } else { - input.skip(ftype); - } - break; + if (ftype == Thrift.Type.STRING) { + this.displayName = input.readString(); + } else { + input.skip(ftype); + } + break; case 60: - if (ftype == Thrift.Type.STRING) { - this.privateKey = input.readBinary(); - } else { - input.skip(ftype); - } - break; + if (ftype == Thrift.Type.STRING) { + this.privateKey = input.readBinary(); + } else { + input.skip(ftype); + } + break; case 61: - if (ftype == Thrift.Type.STRING) { - this.publicKey = input.readBinary(); - } else { - input.skip(ftype); - } - break; + if (ftype == Thrift.Type.STRING) { + this.publicKey = input.readBinary(); + } else { + input.skip(ftype); + } + break; case 40: - if (ftype == Thrift.Type.LIST) { - this.roles = []; - const _rtmp311 = input.readListBegin(); - const _size10 = _rtmp311.size || 0; - for (let _i12 = 0; _i12 < _size10; ++_i12) { - let elem13 = null; - elem13 = new ttypes.Role(); - elem13.read(input); - this.roles.push(elem13); + if (ftype == Thrift.Type.LIST) { + this.roles = []; + const _rtmp311 = input.readListBegin(); + const _size10 = _rtmp311.size || 0; + for (let _i12 = 0; _i12 < _size10; ++_i12) { + let elem13 = null; + elem13 = new ttypes.Role(); + elem13.read(input); + this.roles.push(elem13); + } + input.readListEnd(); + } else { + input.skip(ftype); } - input.readListEnd(); - } else { - input.skip(ftype); - } - break; + break; case 45: - if (ftype == Thrift.Type.LIST) { - this.ownedWajibPajakList = []; - const _rtmp315 = input.readListBegin(); - const _size14 = _rtmp315.size || 0; - for (let _i16 = 0; _i16 < _size14; ++_i16) { - let elem17 = null; - elem17 = new ttypes.WajibPajak(); - elem17.read(input); - this.ownedWajibPajakList.push(elem17); + if (ftype == Thrift.Type.LIST) { + this.ownedWajibPajakList = []; + const _rtmp315 = input.readListBegin(); + const _size14 = _rtmp315.size || 0; + for (let _i16 = 0; _i16 < _size14; ++_i16) { + let elem17 = null; + elem17 = new ttypes.WajibPajak(); + elem17.read(input); + this.ownedWajibPajakList.push(elem17); + } + input.readListEnd(); + } else { + input.skip(ftype); } - input.readListEnd(); - } else { - input.skip(ftype); - } - break; + break; case 50: - if (ftype == Thrift.Type.LIST) { - this.rolesWajibPajakList = []; - const _rtmp319 = input.readListBegin(); - const _size18 = _rtmp319.size || 0; - for (let _i20 = 0; _i20 < _size18; ++_i20) { - let elem21 = null; - elem21 = new ttypes.Role(); - elem21.read(input); - this.rolesWajibPajakList.push(elem21); + if (ftype == Thrift.Type.LIST) { + this.rolesWajibPajakList = []; + const _rtmp319 = input.readListBegin(); + const _size18 = _rtmp319.size || 0; + for (let _i20 = 0; _i20 < _size18; ++_i20) { + let elem21 = null; + elem21 = new ttypes.Role(); + elem21.read(input); + this.rolesWajibPajakList.push(elem21); + } + input.readListEnd(); + } else { + input.skip(ftype); } - input.readListEnd(); - } else { - input.skip(ftype); - } - break; + break; default: input.skip(ftype); } @@ -364,7 +362,7 @@ const User = module.exports.User = class { return; } - write (output) { + write(output) { output.writeStructBegin('User'); if (this.id !== null && this.id !== undefined) { output.writeFieldBegin('id', Thrift.Type.I64, 1); @@ -436,9 +434,8 @@ const User = module.exports.User = class { output.writeStructEnd(); return; } - -}; -const WajibPajakProfile = module.exports.WajibPajakProfile = class { +}); +const WajibPajakProfile = (module.exports.WajibPajakProfile = class { constructor(args) { this.npwp = null; this.displayName = null; @@ -456,7 +453,7 @@ const WajibPajakProfile = module.exports.WajibPajakProfile = class { } } - read (input) { + read(input) { input.readStructBegin(); while (true) { const ret = input.readFieldBegin(); @@ -467,26 +464,26 @@ const WajibPajakProfile = module.exports.WajibPajakProfile = class { } switch (fid) { case 2: - if (ftype == Thrift.Type.STRING) { - this.npwp = input.readString(); - } else { - input.skip(ftype); - } - break; + if (ftype == Thrift.Type.STRING) { + this.npwp = input.readString(); + } else { + input.skip(ftype); + } + break; case 3: - if (ftype == Thrift.Type.STRING) { - this.displayName = input.readString(); - } else { - input.skip(ftype); - } - break; + if (ftype == Thrift.Type.STRING) { + this.displayName = input.readString(); + } else { + input.skip(ftype); + } + break; case 4: - if (ftype == Thrift.Type.STRING) { - this.address = input.readString(); - } else { - input.skip(ftype); - } - break; + if (ftype == Thrift.Type.STRING) { + this.address = input.readString(); + } else { + input.skip(ftype); + } + break; default: input.skip(ftype); } @@ -496,7 +493,7 @@ const WajibPajakProfile = module.exports.WajibPajakProfile = class { return; } - write (output) { + write(output) { output.writeStructBegin('WajibPajakProfile'); if (this.npwp !== null && this.npwp !== undefined) { output.writeFieldBegin('npwp', Thrift.Type.STRING, 2); @@ -517,9 +514,8 @@ const WajibPajakProfile = module.exports.WajibPajakProfile = class { output.writeStructEnd(); return; } - -}; -const WajibPajakTaxObligation = module.exports.WajibPajakTaxObligation = class { +}); +const WajibPajakTaxObligation = (module.exports.WajibPajakTaxObligation = class { constructor(args) { this.id = null; this.obligation = null; @@ -537,7 +533,7 @@ const WajibPajakTaxObligation = module.exports.WajibPajakTaxObligation = class { } } - read (input) { + read(input) { input.readStructBegin(); while (true) { const ret = input.readFieldBegin(); @@ -548,26 +544,26 @@ const WajibPajakTaxObligation = module.exports.WajibPajakTaxObligation = class { } switch (fid) { case 1: - if (ftype == Thrift.Type.I64) { - this.id = input.readI64(); - } else { - input.skip(ftype); - } - break; + if (ftype == Thrift.Type.I64) { + this.id = input.readI64(); + } else { + input.skip(ftype); + } + break; case 2: - if (ftype == Thrift.Type.I32) { - this.obligation = input.readI32(); - } else { - input.skip(ftype); - } - break; + if (ftype == Thrift.Type.I32) { + this.obligation = input.readI32(); + } else { + input.skip(ftype); + } + break; case 3: - if (ftype == Thrift.Type.BOOL) { - this.isActive = input.readBool(); - } else { - input.skip(ftype); - } - break; + if (ftype == Thrift.Type.BOOL) { + this.isActive = input.readBool(); + } else { + input.skip(ftype); + } + break; default: input.skip(ftype); } @@ -577,7 +573,7 @@ const WajibPajakTaxObligation = module.exports.WajibPajakTaxObligation = class { return; } - write (output) { + write(output) { output.writeStructBegin('WajibPajakTaxObligation'); if (this.id !== null && this.id !== undefined) { output.writeFieldBegin('id', Thrift.Type.I64, 1); @@ -598,9 +594,8 @@ const WajibPajakTaxObligation = module.exports.WajibPajakTaxObligation = class { output.writeStructEnd(); return; } - -}; -const WajibPajak = module.exports.WajibPajak = class { +}); +const WajibPajak = (module.exports.WajibPajak = class { constructor(args) { this.id = null; this.profile = null; @@ -618,7 +613,9 @@ const WajibPajak = module.exports.WajibPajak = class { this.owners = Thrift.copyList(args.owners, [ttypes.User]); } if (args.taxObligations !== undefined && args.taxObligations !== null) { - this.taxObligations = Thrift.copyList(args.taxObligations, [ttypes.WajibPajakTaxObligation]); + this.taxObligations = Thrift.copyList(args.taxObligations, [ + ttypes.WajibPajakTaxObligation, + ]); } if (args.roles !== undefined && args.roles !== null) { this.roles = Thrift.copyList(args.roles, [ttypes.Role]); @@ -626,7 +623,7 @@ const WajibPajak = module.exports.WajibPajak = class { } } - read (input) { + read(input) { input.readStructBegin(); while (true) { const ret = input.readFieldBegin(); @@ -637,68 +634,68 @@ const WajibPajak = module.exports.WajibPajak = class { } switch (fid) { case 1: - if (ftype == Thrift.Type.I64) { - this.id = input.readI64(); - } else { - input.skip(ftype); - } - break; + if (ftype == Thrift.Type.I64) { + this.id = input.readI64(); + } else { + input.skip(ftype); + } + break; case 2: - if (ftype == Thrift.Type.STRUCT) { - this.profile = new ttypes.WajibPajakProfile(); - this.profile.read(input); - } else { - input.skip(ftype); - } - break; + if (ftype == Thrift.Type.STRUCT) { + this.profile = new ttypes.WajibPajakProfile(); + this.profile.read(input); + } else { + input.skip(ftype); + } + break; case 30: - if (ftype == Thrift.Type.LIST) { - this.owners = []; - const _rtmp326 = input.readListBegin(); - const _size25 = _rtmp326.size || 0; - for (let _i27 = 0; _i27 < _size25; ++_i27) { - let elem28 = null; - elem28 = new ttypes.User(); - elem28.read(input); - this.owners.push(elem28); + if (ftype == Thrift.Type.LIST) { + this.owners = []; + const _rtmp326 = input.readListBegin(); + const _size25 = _rtmp326.size || 0; + for (let _i27 = 0; _i27 < _size25; ++_i27) { + let elem28 = null; + elem28 = new ttypes.User(); + elem28.read(input); + this.owners.push(elem28); + } + input.readListEnd(); + } else { + input.skip(ftype); } - input.readListEnd(); - } else { - input.skip(ftype); - } - break; + break; case 40: - if (ftype == Thrift.Type.LIST) { - this.taxObligations = []; - const _rtmp330 = input.readListBegin(); - const _size29 = _rtmp330.size || 0; - for (let _i31 = 0; _i31 < _size29; ++_i31) { - let elem32 = null; - elem32 = new ttypes.WajibPajakTaxObligation(); - elem32.read(input); - this.taxObligations.push(elem32); + if (ftype == Thrift.Type.LIST) { + this.taxObligations = []; + const _rtmp330 = input.readListBegin(); + const _size29 = _rtmp330.size || 0; + for (let _i31 = 0; _i31 < _size29; ++_i31) { + let elem32 = null; + elem32 = new ttypes.WajibPajakTaxObligation(); + elem32.read(input); + this.taxObligations.push(elem32); + } + input.readListEnd(); + } else { + input.skip(ftype); } - input.readListEnd(); - } else { - input.skip(ftype); - } - break; + break; case 45: - if (ftype == Thrift.Type.LIST) { - this.roles = []; - const _rtmp334 = input.readListBegin(); - const _size33 = _rtmp334.size || 0; - for (let _i35 = 0; _i35 < _size33; ++_i35) { - let elem36 = null; - elem36 = new ttypes.Role(); - elem36.read(input); - this.roles.push(elem36); + if (ftype == Thrift.Type.LIST) { + this.roles = []; + const _rtmp334 = input.readListBegin(); + const _size33 = _rtmp334.size || 0; + for (let _i35 = 0; _i35 < _size33; ++_i35) { + let elem36 = null; + elem36 = new ttypes.Role(); + elem36.read(input); + this.roles.push(elem36); + } + input.readListEnd(); + } else { + input.skip(ftype); } - input.readListEnd(); - } else { - input.skip(ftype); - } - break; + break; default: input.skip(ftype); } @@ -708,7 +705,7 @@ const WajibPajak = module.exports.WajibPajak = class { return; } - write (output) { + write(output) { output.writeStructBegin('WajibPajak'); if (this.id !== null && this.id !== undefined) { output.writeFieldBegin('id', Thrift.Type.I64, 1); @@ -760,9 +757,8 @@ const WajibPajak = module.exports.WajibPajak = class { output.writeStructEnd(); return; } - -}; -const Pagination = module.exports.Pagination = class { +}); +const Pagination = (module.exports.Pagination = class { constructor(args) { this.page = null; this.rowsPerPage = null; @@ -776,7 +772,7 @@ const Pagination = module.exports.Pagination = class { } } - read (input) { + read(input) { input.readStructBegin(); while (true) { const ret = input.readFieldBegin(); @@ -787,19 +783,19 @@ const Pagination = module.exports.Pagination = class { } switch (fid) { case 1: - if (ftype == Thrift.Type.I64) { - this.page = input.readI64(); - } else { - input.skip(ftype); - } - break; + if (ftype == Thrift.Type.I64) { + this.page = input.readI64(); + } else { + input.skip(ftype); + } + break; case 2: - if (ftype == Thrift.Type.I64) { - this.rowsPerPage = input.readI64(); - } else { - input.skip(ftype); - } - break; + if (ftype == Thrift.Type.I64) { + this.rowsPerPage = input.readI64(); + } else { + input.skip(ftype); + } + break; default: input.skip(ftype); } @@ -809,7 +805,7 @@ const Pagination = module.exports.Pagination = class { return; } - write (output) { + write(output) { output.writeStructBegin('Pagination'); if (this.page !== null && this.page !== undefined) { output.writeFieldBegin('page', Thrift.Type.I64, 1); @@ -825,9 +821,8 @@ const Pagination = module.exports.Pagination = class { output.writeStructEnd(); return; } - -}; -const AlertInfo = module.exports.AlertInfo = class { +}); +const AlertInfo = (module.exports.AlertInfo = class { constructor(args) { this.title = null; this.description = null; @@ -841,7 +836,7 @@ const AlertInfo = module.exports.AlertInfo = class { } } - read (input) { + read(input) { input.readStructBegin(); while (true) { const ret = input.readFieldBegin(); @@ -852,19 +847,19 @@ const AlertInfo = module.exports.AlertInfo = class { } switch (fid) { case 1: - if (ftype == Thrift.Type.STRING) { - this.title = input.readString(); - } else { - input.skip(ftype); - } - break; + if (ftype == Thrift.Type.STRING) { + this.title = input.readString(); + } else { + input.skip(ftype); + } + break; case 2: - if (ftype == Thrift.Type.STRING) { - this.description = input.readString(); - } else { - input.skip(ftype); - } - break; + if (ftype == Thrift.Type.STRING) { + this.description = input.readString(); + } else { + input.skip(ftype); + } + break; default: input.skip(ftype); } @@ -874,7 +869,7 @@ const AlertInfo = module.exports.AlertInfo = class { return; } - write (output) { + write(output) { output.writeStructBegin('AlertInfo'); if (this.title !== null && this.title !== undefined) { output.writeFieldBegin('title', Thrift.Type.STRING, 1); @@ -890,9 +885,8 @@ const AlertInfo = module.exports.AlertInfo = class { output.writeStructEnd(); return; } - -}; -const LoginRequest = module.exports.LoginRequest = class { +}); +const LoginRequest = (module.exports.LoginRequest = class { constructor(args) { this.username = null; this.password = null; @@ -906,7 +900,7 @@ const LoginRequest = module.exports.LoginRequest = class { } } - read (input) { + read(input) { input.readStructBegin(); while (true) { const ret = input.readFieldBegin(); @@ -917,19 +911,19 @@ const LoginRequest = module.exports.LoginRequest = class { } switch (fid) { case 1: - if (ftype == Thrift.Type.STRING) { - this.username = input.readString(); - } else { - input.skip(ftype); - } - break; + if (ftype == Thrift.Type.STRING) { + this.username = input.readString(); + } else { + input.skip(ftype); + } + break; case 2: - if (ftype == Thrift.Type.STRING) { - this.password = input.readString(); - } else { - input.skip(ftype); - } - break; + if (ftype == Thrift.Type.STRING) { + this.password = input.readString(); + } else { + input.skip(ftype); + } + break; default: input.skip(ftype); } @@ -939,7 +933,7 @@ const LoginRequest = module.exports.LoginRequest = class { return; } - write (output) { + write(output) { output.writeStructBegin('LoginRequest'); if (this.username !== null && this.username !== undefined) { output.writeFieldBegin('username', Thrift.Type.STRING, 1); @@ -955,9 +949,8 @@ const LoginRequest = module.exports.LoginRequest = class { output.writeStructEnd(); return; } - -}; -const LoginResponse = module.exports.LoginResponse = class { +}); +const LoginResponse = (module.exports.LoginResponse = class { constructor(args) { this.trkToken = null; this.token = null; @@ -975,7 +968,7 @@ const LoginResponse = module.exports.LoginResponse = class { } } - read (input) { + read(input) { input.readStructBegin(); while (true) { const ret = input.readFieldBegin(); @@ -986,27 +979,27 @@ const LoginResponse = module.exports.LoginResponse = class { } switch (fid) { case 1: - if (ftype == Thrift.Type.STRING) { - this.trkToken = input.readString(); - } else { - input.skip(ftype); - } - break; + if (ftype == Thrift.Type.STRING) { + this.trkToken = input.readString(); + } else { + input.skip(ftype); + } + break; case 2: - if (ftype == Thrift.Type.STRING) { - this.token = input.readString(); - } else { - input.skip(ftype); - } - break; + if (ftype == Thrift.Type.STRING) { + this.token = input.readString(); + } else { + input.skip(ftype); + } + break; case 10: - if (ftype == Thrift.Type.STRUCT) { - this.profile = new ttypes.User(); - this.profile.read(input); - } else { - input.skip(ftype); - } - break; + if (ftype == Thrift.Type.STRUCT) { + this.profile = new ttypes.User(); + this.profile.read(input); + } else { + input.skip(ftype); + } + break; default: input.skip(ftype); } @@ -1016,7 +1009,7 @@ const LoginResponse = module.exports.LoginResponse = class { return; } - write (output) { + write(output) { output.writeStructBegin('LoginResponse'); if (this.trkToken !== null && this.trkToken !== undefined) { output.writeFieldBegin('trkToken', Thrift.Type.STRING, 1); @@ -1037,9 +1030,8 @@ const LoginResponse = module.exports.LoginResponse = class { output.writeStructEnd(); return; } - -}; -const LogoutRequest = module.exports.LogoutRequest = class { +}); +const LogoutRequest = (module.exports.LogoutRequest = class { constructor(args) { this.token = null; if (args) { @@ -1049,7 +1041,7 @@ const LogoutRequest = module.exports.LogoutRequest = class { } } - read (input) { + read(input) { input.readStructBegin(); while (true) { const ret = input.readFieldBegin(); @@ -1060,12 +1052,12 @@ const LogoutRequest = module.exports.LogoutRequest = class { } switch (fid) { case 1: - if (ftype == Thrift.Type.STRING) { - this.token = input.readString(); - } else { - input.skip(ftype); - } - break; + if (ftype == Thrift.Type.STRING) { + this.token = input.readString(); + } else { + input.skip(ftype); + } + break; case 0: input.skip(ftype); break; @@ -1078,7 +1070,7 @@ const LogoutRequest = module.exports.LogoutRequest = class { return; } - write (output) { + write(output) { output.writeStructBegin('LogoutRequest'); if (this.token !== null && this.token !== undefined) { output.writeFieldBegin('token', Thrift.Type.STRING, 1); @@ -1089,13 +1081,11 @@ const LogoutRequest = module.exports.LogoutRequest = class { output.writeStructEnd(); return; } +}); +const LogoutResponse = (module.exports.LogoutResponse = class { + constructor(args) {} -}; -const LogoutResponse = module.exports.LogoutResponse = class { - constructor(args) { - } - - read (input) { + read(input) { input.readStructBegin(); while (true) { const ret = input.readFieldBegin(); @@ -1110,19 +1100,17 @@ const LogoutResponse = module.exports.LogoutResponse = class { return; } - write (output) { + write(output) { output.writeStructBegin('LogoutResponse'); output.writeFieldStop(); output.writeStructEnd(); return; } +}); +const GetProfileRequest = (module.exports.GetProfileRequest = class { + constructor(args) {} -}; -const GetProfileRequest = module.exports.GetProfileRequest = class { - constructor(args) { - } - - read (input) { + read(input) { input.readStructBegin(); while (true) { const ret = input.readFieldBegin(); @@ -1137,15 +1125,14 @@ const GetProfileRequest = module.exports.GetProfileRequest = class { return; } - write (output) { + write(output) { output.writeStructBegin('GetProfileRequest'); output.writeFieldStop(); output.writeStructEnd(); return; } - -}; -const GetProfileResponse = module.exports.GetProfileResponse = class { +}); +const GetProfileResponse = (module.exports.GetProfileResponse = class { constructor(args) { this.profile = null; if (args) { @@ -1155,7 +1142,7 @@ const GetProfileResponse = module.exports.GetProfileResponse = class { } } - read (input) { + read(input) { input.readStructBegin(); while (true) { const ret = input.readFieldBegin(); @@ -1166,13 +1153,13 @@ const GetProfileResponse = module.exports.GetProfileResponse = class { } switch (fid) { case 2: - if (ftype == Thrift.Type.STRUCT) { - this.profile = new ttypes.User(); - this.profile.read(input); - } else { - input.skip(ftype); - } - break; + if (ftype == Thrift.Type.STRUCT) { + this.profile = new ttypes.User(); + this.profile.read(input); + } else { + input.skip(ftype); + } + break; case 0: input.skip(ftype); break; @@ -1185,7 +1172,7 @@ const GetProfileResponse = module.exports.GetProfileResponse = class { return; } - write (output) { + write(output) { output.writeStructBegin('GetProfileResponse'); if (this.profile !== null && this.profile !== undefined) { output.writeFieldBegin('profile', Thrift.Type.STRUCT, 2); @@ -1196,9 +1183,8 @@ const GetProfileResponse = module.exports.GetProfileResponse = class { output.writeStructEnd(); return; } - -}; -const GetUserListRequest = module.exports.GetUserListRequest = class { +}); +const GetUserListRequest = (module.exports.GetUserListRequest = class { constructor(args) { this.pagination = null; this.searchTerm = null; @@ -1212,7 +1198,7 @@ const GetUserListRequest = module.exports.GetUserListRequest = class { } } - read (input) { + read(input) { input.readStructBegin(); while (true) { const ret = input.readFieldBegin(); @@ -1223,20 +1209,20 @@ const GetUserListRequest = module.exports.GetUserListRequest = class { } switch (fid) { case 1: - if (ftype == Thrift.Type.STRUCT) { - this.pagination = new ttypes.Pagination(); - this.pagination.read(input); - } else { - input.skip(ftype); - } - break; + if (ftype == Thrift.Type.STRUCT) { + this.pagination = new ttypes.Pagination(); + this.pagination.read(input); + } else { + input.skip(ftype); + } + break; case 3: - if (ftype == Thrift.Type.STRING) { - this.searchTerm = input.readString(); - } else { - input.skip(ftype); - } - break; + if (ftype == Thrift.Type.STRING) { + this.searchTerm = input.readString(); + } else { + input.skip(ftype); + } + break; default: input.skip(ftype); } @@ -1246,7 +1232,7 @@ const GetUserListRequest = module.exports.GetUserListRequest = class { return; } - write (output) { + write(output) { output.writeStructBegin('GetUserListRequest'); if (this.pagination !== null && this.pagination !== undefined) { output.writeFieldBegin('pagination', Thrift.Type.STRUCT, 1); @@ -1262,9 +1248,8 @@ const GetUserListRequest = module.exports.GetUserListRequest = class { output.writeStructEnd(); return; } - -}; -const GetUserListResponse = module.exports.GetUserListResponse = class { +}); +const GetUserListResponse = (module.exports.GetUserListResponse = class { constructor(args) { this.pagination = null; this.totalUsers = null; @@ -1282,7 +1267,7 @@ const GetUserListResponse = module.exports.GetUserListResponse = class { } } - read (input) { + read(input) { input.readStructBegin(); while (true) { const ret = input.readFieldBegin(); @@ -1293,36 +1278,36 @@ const GetUserListResponse = module.exports.GetUserListResponse = class { } switch (fid) { case 1: - if (ftype == Thrift.Type.STRUCT) { - this.pagination = new ttypes.Pagination(); - this.pagination.read(input); - } else { - input.skip(ftype); - } - break; - case 2: - if (ftype == Thrift.Type.I64) { - this.totalUsers = input.readI64(); - } else { - input.skip(ftype); - } - break; - case 3: - if (ftype == Thrift.Type.LIST) { - this.users = []; - const _rtmp341 = input.readListBegin(); - const _size40 = _rtmp341.size || 0; - for (let _i42 = 0; _i42 < _size40; ++_i42) { - let elem43 = null; - elem43 = new ttypes.User(); - elem43.read(input); - this.users.push(elem43); + if (ftype == Thrift.Type.STRUCT) { + this.pagination = new ttypes.Pagination(); + this.pagination.read(input); + } else { + input.skip(ftype); } - input.readListEnd(); - } else { - input.skip(ftype); - } - break; + break; + case 2: + if (ftype == Thrift.Type.I64) { + this.totalUsers = input.readI64(); + } else { + input.skip(ftype); + } + break; + case 3: + if (ftype == Thrift.Type.LIST) { + this.users = []; + const _rtmp341 = input.readListBegin(); + const _size40 = _rtmp341.size || 0; + for (let _i42 = 0; _i42 < _size40; ++_i42) { + let elem43 = null; + elem43 = new ttypes.User(); + elem43.read(input); + this.users.push(elem43); + } + input.readListEnd(); + } else { + input.skip(ftype); + } + break; default: input.skip(ftype); } @@ -1332,7 +1317,7 @@ const GetUserListResponse = module.exports.GetUserListResponse = class { return; } - write (output) { + write(output) { output.writeStructBegin('GetUserListResponse'); if (this.pagination !== null && this.pagination !== undefined) { output.writeFieldBegin('pagination', Thrift.Type.STRUCT, 1); @@ -1360,9 +1345,8 @@ const GetUserListResponse = module.exports.GetUserListResponse = class { output.writeStructEnd(); return; } - -}; -const CreateUserRequest = module.exports.CreateUserRequest = class { +}); +const CreateUserRequest = (module.exports.CreateUserRequest = class { constructor(args) { this.user = null; if (args) { @@ -1372,7 +1356,7 @@ const CreateUserRequest = module.exports.CreateUserRequest = class { } } - read (input) { + read(input) { input.readStructBegin(); while (true) { const ret = input.readFieldBegin(); @@ -1383,13 +1367,13 @@ const CreateUserRequest = module.exports.CreateUserRequest = class { } switch (fid) { case 1: - if (ftype == Thrift.Type.STRUCT) { - this.user = new ttypes.User(); - this.user.read(input); - } else { - input.skip(ftype); - } - break; + if (ftype == Thrift.Type.STRUCT) { + this.user = new ttypes.User(); + this.user.read(input); + } else { + input.skip(ftype); + } + break; case 0: input.skip(ftype); break; @@ -1402,7 +1386,7 @@ const CreateUserRequest = module.exports.CreateUserRequest = class { return; } - write (output) { + write(output) { output.writeStructBegin('CreateUserRequest'); if (this.user !== null && this.user !== undefined) { output.writeFieldBegin('user', Thrift.Type.STRUCT, 1); @@ -1413,13 +1397,11 @@ const CreateUserRequest = module.exports.CreateUserRequest = class { output.writeStructEnd(); return; } +}); +const CreateUserResponse = (module.exports.CreateUserResponse = class { + constructor(args) {} -}; -const CreateUserResponse = module.exports.CreateUserResponse = class { - constructor(args) { - } - - read (input) { + read(input) { input.readStructBegin(); while (true) { const ret = input.readFieldBegin(); @@ -1434,15 +1416,14 @@ const CreateUserResponse = module.exports.CreateUserResponse = class { return; } - write (output) { + write(output) { output.writeStructBegin('CreateUserResponse'); output.writeFieldStop(); output.writeStructEnd(); return; } - -}; -const DeleteUsersRequest = module.exports.DeleteUsersRequest = class { +}); +const DeleteUsersRequest = (module.exports.DeleteUsersRequest = class { constructor(args) { this.userIds = null; if (args) { @@ -1452,7 +1433,7 @@ const DeleteUsersRequest = module.exports.DeleteUsersRequest = class { } } - read (input) { + read(input) { input.readStructBegin(); while (true) { const ret = input.readFieldBegin(); @@ -1463,20 +1444,20 @@ const DeleteUsersRequest = module.exports.DeleteUsersRequest = class { } switch (fid) { case 1: - if (ftype == Thrift.Type.LIST) { - this.userIds = []; - const _rtmp346 = input.readListBegin(); - const _size45 = _rtmp346.size || 0; - for (let _i47 = 0; _i47 < _size45; ++_i47) { - let elem48 = null; - elem48 = input.readI64(); - this.userIds.push(elem48); + if (ftype == Thrift.Type.LIST) { + this.userIds = []; + const _rtmp346 = input.readListBegin(); + const _size45 = _rtmp346.size || 0; + for (let _i47 = 0; _i47 < _size45; ++_i47) { + let elem48 = null; + elem48 = input.readI64(); + this.userIds.push(elem48); + } + input.readListEnd(); + } else { + input.skip(ftype); } - input.readListEnd(); - } else { - input.skip(ftype); - } - break; + break; case 0: input.skip(ftype); break; @@ -1489,7 +1470,7 @@ const DeleteUsersRequest = module.exports.DeleteUsersRequest = class { return; } - write (output) { + write(output) { output.writeStructBegin('DeleteUsersRequest'); if (this.userIds !== null && this.userIds !== undefined) { output.writeFieldBegin('userIds', Thrift.Type.LIST, 1); @@ -1507,9 +1488,8 @@ const DeleteUsersRequest = module.exports.DeleteUsersRequest = class { output.writeStructEnd(); return; } - -}; -const DeleteUsersResponse = module.exports.DeleteUsersResponse = class { +}); +const DeleteUsersResponse = (module.exports.DeleteUsersResponse = class { constructor(args) { this.success = null; this.ignored = null; @@ -1523,7 +1503,7 @@ const DeleteUsersResponse = module.exports.DeleteUsersResponse = class { } } - read (input) { + read(input) { input.readStructBegin(); while (true) { const ret = input.readFieldBegin(); @@ -1534,35 +1514,35 @@ const DeleteUsersResponse = module.exports.DeleteUsersResponse = class { } switch (fid) { case 1: - if (ftype == Thrift.Type.LIST) { - this.success = []; - const _rtmp351 = input.readListBegin(); - const _size50 = _rtmp351.size || 0; - for (let _i52 = 0; _i52 < _size50; ++_i52) { - let elem53 = null; - elem53 = input.readI64(); - this.success.push(elem53); + if (ftype == Thrift.Type.LIST) { + this.success = []; + const _rtmp351 = input.readListBegin(); + const _size50 = _rtmp351.size || 0; + for (let _i52 = 0; _i52 < _size50; ++_i52) { + let elem53 = null; + elem53 = input.readI64(); + this.success.push(elem53); + } + input.readListEnd(); + } else { + input.skip(ftype); } - input.readListEnd(); - } else { - input.skip(ftype); - } - break; + break; case 2: - if (ftype == Thrift.Type.LIST) { - this.ignored = []; - const _rtmp355 = input.readListBegin(); - const _size54 = _rtmp355.size || 0; - for (let _i56 = 0; _i56 < _size54; ++_i56) { - let elem57 = null; - elem57 = input.readI64(); - this.ignored.push(elem57); + if (ftype == Thrift.Type.LIST) { + this.ignored = []; + const _rtmp355 = input.readListBegin(); + const _size54 = _rtmp355.size || 0; + for (let _i56 = 0; _i56 < _size54; ++_i56) { + let elem57 = null; + elem57 = input.readI64(); + this.ignored.push(elem57); + } + input.readListEnd(); + } else { + input.skip(ftype); } - input.readListEnd(); - } else { - input.skip(ftype); - } - break; + break; default: input.skip(ftype); } @@ -1572,7 +1552,7 @@ const DeleteUsersResponse = module.exports.DeleteUsersResponse = class { return; } - write (output) { + write(output) { output.writeStructBegin('DeleteUsersResponse'); if (this.success !== null && this.success !== undefined) { output.writeFieldBegin('success', Thrift.Type.LIST, 1); @@ -1602,9 +1582,8 @@ const DeleteUsersResponse = module.exports.DeleteUsersResponse = class { output.writeStructEnd(); return; } - -}; -const GetWajibPajakListRequest = module.exports.GetWajibPajakListRequest = class { +}); +const GetWajibPajakListRequest = (module.exports.GetWajibPajakListRequest = class { constructor(args) { this.pagination = null; this.ownership = null; @@ -1622,7 +1601,7 @@ const GetWajibPajakListRequest = module.exports.GetWajibPajakListRequest = class } } - read (input) { + read(input) { input.readStructBegin(); while (true) { const ret = input.readFieldBegin(); @@ -1633,27 +1612,27 @@ const GetWajibPajakListRequest = module.exports.GetWajibPajakListRequest = class } switch (fid) { case 1: - if (ftype == Thrift.Type.STRUCT) { - this.pagination = new ttypes.Pagination(); - this.pagination.read(input); - } else { - input.skip(ftype); - } - break; + if (ftype == Thrift.Type.STRUCT) { + this.pagination = new ttypes.Pagination(); + this.pagination.read(input); + } else { + input.skip(ftype); + } + break; case 2: - if (ftype == Thrift.Type.I32) { - this.ownership = input.readI32(); - } else { - input.skip(ftype); - } - break; + if (ftype == Thrift.Type.I32) { + this.ownership = input.readI32(); + } else { + input.skip(ftype); + } + break; case 3: - if (ftype == Thrift.Type.STRING) { - this.searchTerm = input.readString(); - } else { - input.skip(ftype); - } - break; + if (ftype == Thrift.Type.STRING) { + this.searchTerm = input.readString(); + } else { + input.skip(ftype); + } + break; default: input.skip(ftype); } @@ -1663,7 +1642,7 @@ const GetWajibPajakListRequest = module.exports.GetWajibPajakListRequest = class return; } - write (output) { + write(output) { output.writeStructBegin('GetWajibPajakListRequest'); if (this.pagination !== null && this.pagination !== undefined) { output.writeFieldBegin('pagination', Thrift.Type.STRUCT, 1); @@ -1684,9 +1663,8 @@ const GetWajibPajakListRequest = module.exports.GetWajibPajakListRequest = class output.writeStructEnd(); return; } - -}; -const GetWajibPajakListResponse = module.exports.GetWajibPajakListResponse = class { +}); +const GetWajibPajakListResponse = (module.exports.GetWajibPajakListResponse = class { constructor(args) { this.pagination = null; this.totalWajibPajak = null; @@ -1704,7 +1682,7 @@ const GetWajibPajakListResponse = module.exports.GetWajibPajakListResponse = cla } } - read (input) { + read(input) { input.readStructBegin(); while (true) { const ret = input.readFieldBegin(); @@ -1715,36 +1693,36 @@ const GetWajibPajakListResponse = module.exports.GetWajibPajakListResponse = cla } switch (fid) { case 1: - if (ftype == Thrift.Type.STRUCT) { - this.pagination = new ttypes.Pagination(); - this.pagination.read(input); - } else { - input.skip(ftype); - } - break; - case 2: - if (ftype == Thrift.Type.I64) { - this.totalWajibPajak = input.readI64(); - } else { - input.skip(ftype); - } - break; - case 3: - if (ftype == Thrift.Type.LIST) { - this.wajibPajakList = []; - const _rtmp361 = input.readListBegin(); - const _size60 = _rtmp361.size || 0; - for (let _i62 = 0; _i62 < _size60; ++_i62) { - let elem63 = null; - elem63 = new ttypes.WajibPajak(); - elem63.read(input); - this.wajibPajakList.push(elem63); + if (ftype == Thrift.Type.STRUCT) { + this.pagination = new ttypes.Pagination(); + this.pagination.read(input); + } else { + input.skip(ftype); } - input.readListEnd(); - } else { - input.skip(ftype); - } - break; + break; + case 2: + if (ftype == Thrift.Type.I64) { + this.totalWajibPajak = input.readI64(); + } else { + input.skip(ftype); + } + break; + case 3: + if (ftype == Thrift.Type.LIST) { + this.wajibPajakList = []; + const _rtmp361 = input.readListBegin(); + const _size60 = _rtmp361.size || 0; + for (let _i62 = 0; _i62 < _size60; ++_i62) { + let elem63 = null; + elem63 = new ttypes.WajibPajak(); + elem63.read(input); + this.wajibPajakList.push(elem63); + } + input.readListEnd(); + } else { + input.skip(ftype); + } + break; default: input.skip(ftype); } @@ -1754,7 +1732,7 @@ const GetWajibPajakListResponse = module.exports.GetWajibPajakListResponse = cla return; } - write (output) { + write(output) { output.writeStructBegin('GetWajibPajakListResponse'); if (this.pagination !== null && this.pagination !== undefined) { output.writeFieldBegin('pagination', Thrift.Type.STRUCT, 1); @@ -1782,9 +1760,8 @@ const GetWajibPajakListResponse = module.exports.GetWajibPajakListResponse = cla output.writeStructEnd(); return; } - -}; -const CreateWajibPajakRequest = module.exports.CreateWajibPajakRequest = class { +}); +const CreateWajibPajakRequest = (module.exports.CreateWajibPajakRequest = class { constructor(args) { this.wajibPajak = null; if (args) { @@ -1794,7 +1771,7 @@ const CreateWajibPajakRequest = module.exports.CreateWajibPajakRequest = class { } } - read (input) { + read(input) { input.readStructBegin(); while (true) { const ret = input.readFieldBegin(); @@ -1805,13 +1782,13 @@ const CreateWajibPajakRequest = module.exports.CreateWajibPajakRequest = class { } switch (fid) { case 1: - if (ftype == Thrift.Type.STRUCT) { - this.wajibPajak = new ttypes.WajibPajak(); - this.wajibPajak.read(input); - } else { - input.skip(ftype); - } - break; + if (ftype == Thrift.Type.STRUCT) { + this.wajibPajak = new ttypes.WajibPajak(); + this.wajibPajak.read(input); + } else { + input.skip(ftype); + } + break; case 0: input.skip(ftype); break; @@ -1824,7 +1801,7 @@ const CreateWajibPajakRequest = module.exports.CreateWajibPajakRequest = class { return; } - write (output) { + write(output) { output.writeStructBegin('CreateWajibPajakRequest'); if (this.wajibPajak !== null && this.wajibPajak !== undefined) { output.writeFieldBegin('wajibPajak', Thrift.Type.STRUCT, 1); @@ -1835,13 +1812,11 @@ const CreateWajibPajakRequest = module.exports.CreateWajibPajakRequest = class { output.writeStructEnd(); return; } +}); +const CreateWajibPajakResponse = (module.exports.CreateWajibPajakResponse = class { + constructor(args) {} -}; -const CreateWajibPajakResponse = module.exports.CreateWajibPajakResponse = class { - constructor(args) { - } - - read (input) { + read(input) { input.readStructBegin(); while (true) { const ret = input.readFieldBegin(); @@ -1856,15 +1831,14 @@ const CreateWajibPajakResponse = module.exports.CreateWajibPajakResponse = class return; } - write (output) { + write(output) { output.writeStructBegin('CreateWajibPajakResponse'); output.writeFieldStop(); output.writeStructEnd(); return; } - -}; -const DeleteWajibpajakListRequest = module.exports.DeleteWajibpajakListRequest = class { +}); +const DeleteWajibpajakListRequest = (module.exports.DeleteWajibpajakListRequest = class { constructor(args) { this.wpIds = null; if (args) { @@ -1874,7 +1848,7 @@ const DeleteWajibpajakListRequest = module.exports.DeleteWajibpajakListRequest = } } - read (input) { + read(input) { input.readStructBegin(); while (true) { const ret = input.readFieldBegin(); @@ -1885,20 +1859,20 @@ const DeleteWajibpajakListRequest = module.exports.DeleteWajibpajakListRequest = } switch (fid) { case 1: - if (ftype == Thrift.Type.LIST) { - this.wpIds = []; - const _rtmp366 = input.readListBegin(); - const _size65 = _rtmp366.size || 0; - for (let _i67 = 0; _i67 < _size65; ++_i67) { - let elem68 = null; - elem68 = input.readI64(); - this.wpIds.push(elem68); + if (ftype == Thrift.Type.LIST) { + this.wpIds = []; + const _rtmp366 = input.readListBegin(); + const _size65 = _rtmp366.size || 0; + for (let _i67 = 0; _i67 < _size65; ++_i67) { + let elem68 = null; + elem68 = input.readI64(); + this.wpIds.push(elem68); + } + input.readListEnd(); + } else { + input.skip(ftype); } - input.readListEnd(); - } else { - input.skip(ftype); - } - break; + break; case 0: input.skip(ftype); break; @@ -1911,7 +1885,7 @@ const DeleteWajibpajakListRequest = module.exports.DeleteWajibpajakListRequest = return; } - write (output) { + write(output) { output.writeStructBegin('DeleteWajibpajakListRequest'); if (this.wpIds !== null && this.wpIds !== undefined) { output.writeFieldBegin('wpIds', Thrift.Type.LIST, 1); @@ -1929,9 +1903,8 @@ const DeleteWajibpajakListRequest = module.exports.DeleteWajibpajakListRequest = output.writeStructEnd(); return; } - -}; -const DeleteWajibpajakListResponse = module.exports.DeleteWajibpajakListResponse = class { +}); +const DeleteWajibpajakListResponse = (module.exports.DeleteWajibpajakListResponse = class { constructor(args) { this.success = null; this.ignored = null; @@ -1945,7 +1918,7 @@ const DeleteWajibpajakListResponse = module.exports.DeleteWajibpajakListResponse } } - read (input) { + read(input) { input.readStructBegin(); while (true) { const ret = input.readFieldBegin(); @@ -1956,35 +1929,35 @@ const DeleteWajibpajakListResponse = module.exports.DeleteWajibpajakListResponse } switch (fid) { case 1: - if (ftype == Thrift.Type.LIST) { - this.success = []; - const _rtmp371 = input.readListBegin(); - const _size70 = _rtmp371.size || 0; - for (let _i72 = 0; _i72 < _size70; ++_i72) { - let elem73 = null; - elem73 = input.readI64(); - this.success.push(elem73); + if (ftype == Thrift.Type.LIST) { + this.success = []; + const _rtmp371 = input.readListBegin(); + const _size70 = _rtmp371.size || 0; + for (let _i72 = 0; _i72 < _size70; ++_i72) { + let elem73 = null; + elem73 = input.readI64(); + this.success.push(elem73); + } + input.readListEnd(); + } else { + input.skip(ftype); } - input.readListEnd(); - } else { - input.skip(ftype); - } - break; + break; case 2: - if (ftype == Thrift.Type.LIST) { - this.ignored = []; - const _rtmp375 = input.readListBegin(); - const _size74 = _rtmp375.size || 0; - for (let _i76 = 0; _i76 < _size74; ++_i76) { - let elem77 = null; - elem77 = input.readI64(); - this.ignored.push(elem77); + if (ftype == Thrift.Type.LIST) { + this.ignored = []; + const _rtmp375 = input.readListBegin(); + const _size74 = _rtmp375.size || 0; + for (let _i76 = 0; _i76 < _size74; ++_i76) { + let elem77 = null; + elem77 = input.readI64(); + this.ignored.push(elem77); + } + input.readListEnd(); + } else { + input.skip(ftype); } - input.readListEnd(); - } else { - input.skip(ftype); - } - break; + break; default: input.skip(ftype); } @@ -1994,7 +1967,7 @@ const DeleteWajibpajakListResponse = module.exports.DeleteWajibpajakListResponse return; } - write (output) { + write(output) { output.writeStructBegin('DeleteWajibpajakListResponse'); if (this.success !== null && this.success !== undefined) { output.writeFieldBegin('success', Thrift.Type.LIST, 1); @@ -2024,5 +1997,4 @@ const DeleteWajibpajakListResponse = module.exports.DeleteWajibpajakListResponse output.writeStructEnd(); return; } - -}; +}); diff --git a/frontend/index.html b/frontend/index.html index 849816f..143557b 100644 --- a/frontend/index.html +++ b/frontend/index.html @@ -4,7 +4,7 @@ - WPW-CTL + Vite + Vue + TS
diff --git a/frontend/package.json b/frontend/package.json index bccc73a..0e88a78 100644 --- a/frontend/package.json +++ b/frontend/package.json @@ -1,5 +1,5 @@ { - "name": "frontend", + "name": "frontend2", "private": true, "version": "0.0.0", "type": "module", @@ -14,82 +14,50 @@ "@algolia/client-search": "^4.14.2", "@heroicons/vue": "^2.0.13", "@vueuse/core": "^9.4.0", - "classnames": "^2.3.2", "flowbite": "1.5.0", "flowbite-vue": "^0.0.6", - "pinia": "^2.0.23", + "node-int64": "^0.4.0", + "node-stdlib-browser": "^1.2.0", + "pinia": "^2.0.27", "thrift": "^0.16.0", "vue": "^3.2.41", - "vue-router": "^4.1.6", - "vue3-easy-data-table": "^1.5.12", + "vue3-easy-data-table": "^1.5.20", "vue3-perfect-scrollbar": "^1.6.1" - }, "devDependencies": { - "node-stdlib-browser": "^1.2.0", - "@ampproject/rollup-plugin-closure-compiler": "^0.27.0", - "@babel/core": "^7.0.0", - "@babel/plugin-syntax-class-properties": "^7.12.13", - "@babel/plugin-transform-classes": "^7.19.0", - "@babel/preset-env": "^7.19.4", "@esbuild-plugins/node-globals-polyfill": "^0.1.1", "@esbuild-plugins/node-modules-polyfill": "^0.1.4", - "@lopatnov/rollup-plugin-uglify": "^2.1.5", "@originjs/vite-plugin-commonjs": "^1.0.3", - "@rollup/plugin-babel": "^6.0.2", - "@rollup/plugin-commonjs": "^22.0.2", - "@rollup/plugin-inject": "^4.0.4", - "@rollup/plugin-node-resolve": "^13.3.0", + "@rollup/plugin-commonjs": "^23.0.3", + "@rollup/plugin-node-resolve": "^15.0.1", "@rollup/plugin-terser": "^0.1.0", "@rushstack/eslint-patch": "^1.2.0", - "@types/node": "^16.18.3", "@types/thrift": "^0.10.11", - "@vitejs/plugin-legacy": "^2.3.0", "@vitejs/plugin-vue": "^3.2.0", - "@vitejs/plugin-vue-jsx": "^2.1.0", + "@vitejs/plugin-vue-jsx": "^2.1.1", "@vue/eslint-config-prettier": "^7.0.0", "@vue/eslint-config-typescript": "^11.0.2", "@vue/tsconfig": "^0.1.3", "@vuedx/typecheck": "^0.7.6", "@vuedx/typescript-plugin-vue": "^0.7.6", "autoprefixer": "^10.4.13", - "babel-plugin-minify-dead-code-elimination": "^0.5.2", - "class-names": "^1.0.0", "esbuild": "*", "eslint": "^8.5.0", "eslint-config-prettier": "^8.5.0", + "eslint-plugin-node": "^11.1.0", "eslint-plugin-prettier": "^4.2.1", "eslint-plugin-vue": "^9.7.0", - "node-int64": "^0.4.0", - "postcss": "^8.4.18", + "postcss": "^8.2.15", "prettier": "^2.7.1", "rollup": "^2.79.0", "rollup-obfuscator": "^3.0.1", - "rollup-plugin-node-globals": "^1.4.0", "rollup-plugin-node-polyfills": "^0.2.1", - "tailwindcss": "^3.2.2", - "terser": "^5.15.1", + "tailwindcss": "^3", "typescript": "^4.6.4", - "vite": "^3.2.0", - "vite-plugin-chunk-split": "^0.4.3", + "vite": "^3.2.3", + "vite-plugin-commonjs": "^0.6.0", "vite-plugin-node-stdlib-browser": "^0.1.1", + "vue-router": "^4.1.6", "vue-tsc": "^1.0.9" - }, - "eslintConfigxxx": { - "root": true, - "env": { - "browser": true, - "node": true, - "es6": true - }, - "extendsxx": [ - "plugin:vue/essential", - "plugin:prettier/recommended", - "eslint:recommended" - ], - "parserOptions": { - "parser": "babel-eslint" - }, - "rules": {} } } \ No newline at end of file diff --git a/frontend/pnpm-lock.yaml b/frontend/pnpm-lock.yaml index 1a6cd03..fbb516b 100644 --- a/frontend/pnpm-lock.yaml +++ b/frontend/pnpm-lock.yaml @@ -2,27 +2,17 @@ lockfileVersion: 5.4 specifiers: '@algolia/client-search': ^4.14.2 - '@ampproject/rollup-plugin-closure-compiler': ^0.27.0 - '@babel/core': ^7.0.0 - '@babel/plugin-syntax-class-properties': ^7.12.13 - '@babel/plugin-transform-classes': ^7.19.0 - '@babel/preset-env': ^7.19.4 '@esbuild-plugins/node-globals-polyfill': ^0.1.1 '@esbuild-plugins/node-modules-polyfill': ^0.1.4 '@heroicons/vue': ^2.0.13 - '@lopatnov/rollup-plugin-uglify': ^2.1.5 '@originjs/vite-plugin-commonjs': ^1.0.3 - '@rollup/plugin-babel': ^6.0.2 - '@rollup/plugin-commonjs': ^22.0.2 - '@rollup/plugin-inject': ^4.0.4 - '@rollup/plugin-node-resolve': ^13.3.0 + '@rollup/plugin-commonjs': ^23.0.3 + '@rollup/plugin-node-resolve': ^15.0.1 '@rollup/plugin-terser': ^0.1.0 '@rushstack/eslint-patch': ^1.2.0 - '@types/node': ^16.18.3 '@types/thrift': ^0.10.11 - '@vitejs/plugin-legacy': ^2.3.0 '@vitejs/plugin-vue': ^3.2.0 - '@vitejs/plugin-vue-jsx': ^2.1.0 + '@vitejs/plugin-vue-jsx': ^2.1.1 '@vue/eslint-config-prettier': ^7.0.0 '@vue/eslint-config-typescript': ^11.0.2 '@vue/tsconfig': ^0.1.3 @@ -30,103 +20,83 @@ specifiers: '@vuedx/typescript-plugin-vue': ^0.7.6 '@vueuse/core': ^9.4.0 autoprefixer: ^10.4.13 - babel-plugin-minify-dead-code-elimination: ^0.5.2 - class-names: ^1.0.0 - classnames: ^2.3.2 esbuild: '*' eslint: ^8.5.0 eslint-config-prettier: ^8.5.0 + eslint-plugin-node: ^11.1.0 eslint-plugin-prettier: ^4.2.1 eslint-plugin-vue: ^9.7.0 flowbite: 1.5.0 flowbite-vue: ^0.0.6 node-int64: ^0.4.0 node-stdlib-browser: ^1.2.0 - pinia: ^2.0.23 - postcss: ^8.4.18 + pinia: ^2.0.27 + postcss: ^8.2.15 prettier: ^2.7.1 - recommended: link:@vue/eslint-config-typescript/recommended rollup: ^2.79.0 rollup-obfuscator: ^3.0.1 - rollup-plugin-node-globals: ^1.4.0 rollup-plugin-node-polyfills: ^0.2.1 - tailwindcss: ^3.2.2 - terser: ^5.15.1 + tailwindcss: ^3 thrift: ^0.16.0 typescript: ^4.6.4 - vite: ^3.2.0 - vite-plugin-chunk-split: ^0.4.3 + vite: ^3.2.3 + vite-plugin-commonjs: ^0.6.0 vite-plugin-node-stdlib-browser: ^0.1.1 vue: ^3.2.41 vue-router: ^4.1.6 vue-tsc: ^1.0.9 - vue3-easy-data-table: ^1.5.12 + vue3-easy-data-table: ^1.5.20 vue3-perfect-scrollbar: ^1.6.1 dependencies: '@algolia/client-search': 4.14.2 - '@heroicons/vue': 2.0.13_vue@3.2.41 - '@vueuse/core': 9.4.0_vue@3.2.41 - classnames: 2.3.2 + '@heroicons/vue': 2.0.13_vue@3.2.45 + '@vueuse/core': 9.6.0_vue@3.2.45 flowbite: 1.5.0 - flowbite-vue: 0.0.6_vyk56yvshhckmgqssku7qaflqi + flowbite-vue: 0.0.6_6ug5zzzzqilqdgqukffqeuqwbu + node-int64: 0.4.0 node-stdlib-browser: 1.2.0 - pinia: 2.0.23_l7r24p6nevbtlimqmqcwa3ouhu + pinia: 2.0.27_mgnvym7yiazkylwwogi5r767ue thrift: 0.16.0 - vue: 3.2.41 - vue-router: 4.1.6_vue@3.2.41 - vue3-easy-data-table: 1.5.12 - vue3-perfect-scrollbar: 1.6.1_postcss@8.4.18 + vue: 3.2.45 + vue3-easy-data-table: 1.5.20 + vue3-perfect-scrollbar: 1.6.1_postcss@8.4.19 devDependencies: - '@ampproject/rollup-plugin-closure-compiler': 0.27.0_rollup@2.79.1 - '@babel/core': 7.19.6 - '@babel/plugin-syntax-class-properties': 7.12.13_@babel+core@7.19.6 - '@babel/plugin-transform-classes': 7.19.0_@babel+core@7.19.6 - '@babel/preset-env': 7.19.4_@babel+core@7.19.6 - '@esbuild-plugins/node-globals-polyfill': 0.1.1_esbuild@0.15.13 - '@esbuild-plugins/node-modules-polyfill': 0.1.4_esbuild@0.15.13 - '@lopatnov/rollup-plugin-uglify': 2.1.5_tmhs7xnjcxrp2ultwy7bfacunu + '@esbuild-plugins/node-globals-polyfill': 0.1.1_esbuild@0.15.16 + '@esbuild-plugins/node-modules-polyfill': 0.1.4_esbuild@0.15.16 '@originjs/vite-plugin-commonjs': 1.0.3 - '@rollup/plugin-babel': 6.0.2_vyv4jbhmcriklval33ak5sngky - '@rollup/plugin-commonjs': 22.0.2_rollup@2.79.1 - '@rollup/plugin-inject': 4.0.4_rollup@2.79.1 - '@rollup/plugin-node-resolve': 13.3.0_rollup@2.79.1 + '@rollup/plugin-commonjs': 23.0.3_rollup@2.79.1 + '@rollup/plugin-node-resolve': 15.0.1_rollup@2.79.1 '@rollup/plugin-terser': 0.1.0_rollup@2.79.1 '@rushstack/eslint-patch': 1.2.0 - '@types/node': 16.18.3 '@types/thrift': 0.10.11 - '@vitejs/plugin-legacy': 2.3.0_terser@5.15.1+vite@3.2.2 - '@vitejs/plugin-vue': 3.2.0_vite@3.2.2+vue@3.2.41 - '@vitejs/plugin-vue-jsx': 2.1.0_vite@3.2.2+vue@3.2.41 - '@vue/eslint-config-prettier': 7.0.0_5t6g5rrqvlktilv3n3sw5svbdi - '@vue/eslint-config-typescript': 11.0.2_a2woajwjjwk2j4x6hcq37wa7k4 - '@vue/tsconfig': 0.1.3_@types+node@16.18.3 + '@vitejs/plugin-vue': 3.2.0_vite@3.2.4+vue@3.2.45 + '@vitejs/plugin-vue-jsx': 2.1.1_vite@3.2.4+vue@3.2.45 + '@vue/eslint-config-prettier': 7.0.0_5qrnzwqb344w6up62gv3safeoi + '@vue/eslint-config-typescript': 11.0.2_5ma4o5namqj2syekqcvrgakwe4 + '@vue/tsconfig': 0.1.3 '@vuedx/typecheck': 0.7.6 '@vuedx/typescript-plugin-vue': 0.7.6 - autoprefixer: 10.4.13_postcss@8.4.18 - babel-plugin-minify-dead-code-elimination: 0.5.2 - class-names: 1.0.0 - esbuild: 0.15.13 - eslint: 8.26.0 - eslint-config-prettier: 8.5.0_eslint@8.26.0 - eslint-plugin-prettier: 4.2.1_aniwkeyvlpmwkidetuytnokvcm - eslint-plugin-vue: 9.7.0_eslint@8.26.0 - node-int64: 0.4.0 - postcss: 8.4.18 - prettier: 2.7.1 - recommended: link:@vue/eslint-config-typescript/recommended + autoprefixer: 10.4.13_postcss@8.4.19 + esbuild: 0.15.16 + eslint: 8.28.0 + eslint-config-prettier: 8.5.0_eslint@8.28.0 + eslint-plugin-node: 11.1.0_eslint@8.28.0 + eslint-plugin-prettier: 4.2.1_cwlo2dingkvfydnaculr42urve + eslint-plugin-vue: 9.8.0_eslint@8.28.0 + postcss: 8.4.19 + prettier: 2.8.0 rollup: 2.79.1 rollup-obfuscator: 3.0.1 - rollup-plugin-node-globals: 1.4.0 rollup-plugin-node-polyfills: 0.2.1 - tailwindcss: 3.2.2_postcss@8.4.18 - terser: 5.15.1 - typescript: 4.8.4 - vite: 3.2.2_terser@5.15.1 - vite-plugin-chunk-split: 0.4.3_terser@5.15.1 - vite-plugin-node-stdlib-browser: 0.1.1_2kanylj5izyyptb57x4jqclh2u - vue-tsc: 1.0.9_typescript@4.8.4 + tailwindcss: 3.2.4_postcss@8.4.19 + typescript: 4.9.3 + vite: 3.2.4 + vite-plugin-commonjs: 0.6.0 + vite-plugin-node-stdlib-browser: 0.1.1_wuavpz5e2ujfpxmqao6ix4o4hq + vue-router: 4.1.6_vue@3.2.45 + vue-tsc: 1.0.10_typescript@4.9.3 packages: @@ -241,14 +211,6 @@ packages: '@algolia/requester-common': 4.14.2 dev: false - /@ampproject/remapping/0.2.0: - resolution: {integrity: sha512-a4EztS9/GOVQjX5Ol+Iz33TFhaXvYBF7aB6D8+Qz0/SCIxOm3UNRhGZiwcCuJ8/Ifc6NCogp3S48kc5hFxRpUw==} - engines: {node: '>=6.0.0'} - dependencies: - '@jridgewell/resolve-uri': 1.0.0 - sourcemap-codec: 1.4.8 - dev: true - /@ampproject/remapping/2.2.0: resolution: {integrity: sha512-qRmjj8nj9qmLTQXXmaR1cck3UXSRMPrbsLJAasZpF+t3riI71BXed5ebIOYwQntykeZuhjsdweEc9BxH5Jc26w==} engines: {node: '>=6.0.0'} @@ -257,22 +219,6 @@ packages: '@jridgewell/trace-mapping': 0.3.17 dev: true - /@ampproject/rollup-plugin-closure-compiler/0.27.0_rollup@2.79.1: - resolution: {integrity: sha512-stpAOn2ZZEJuAV39HFw9cnKJYNhEeHtcsoa83orpLDhSxsxSbVEKwHaWlFBaQYpQRSOdapC4eJhJnCzocZxnqg==} - engines: {node: '>=10'} - peerDependencies: - rollup: '>=1.27' - dependencies: - '@ampproject/remapping': 0.2.0 - acorn: 7.3.1 - acorn-walk: 7.1.1 - estree-walker: 2.0.1 - google-closure-compiler: 20210808.0.0 - magic-string: 0.25.7 - rollup: 2.79.1 - uuid: 8.1.0 - dev: true - /@babel/code-frame/7.18.6: resolution: {integrity: sha512-TDCmlK5eOvH+eH7cdAFlNXeVJqWIQ7gW9tY1GJIpUtFb6CmjVyq2VM3u71bOyR8CRihcCgMUYoDNyLXao3+70Q==} engines: {node: '>=6.9.0'} @@ -280,25 +226,25 @@ packages: '@babel/highlight': 7.18.6 dev: true - /@babel/compat-data/7.20.1: - resolution: {integrity: sha512-EWZ4mE2diW3QALKvDMiXnbZpRvlj+nayZ112nK93SnhqOtpdsbVD4W+2tEoT3YNBAG9RBR0ISY758ZkOgsn6pQ==} + /@babel/compat-data/7.20.5: + resolution: {integrity: sha512-KZXo2t10+/jxmkhNXc7pZTqRvSOIvVv/+lJwHS+B2rErwOyjuVRh60yVpb7liQ1U5t7lLJ1bz+t8tSypUZdm0g==} engines: {node: '>=6.9.0'} dev: true - /@babel/core/7.19.6: - resolution: {integrity: sha512-D2Ue4KHpc6Ys2+AxpIx1BZ8+UegLLLE2p3KJEuJRKmokHOtl49jQ5ny1773KsGLZs8MQvBidAF6yWUJxRqtKtg==} + /@babel/core/7.20.5: + resolution: {integrity: sha512-UdOWmk4pNWTm/4DlPUl/Pt4Gz4rcEMb7CY0Y3eJl5Yz1vI8ZJGmHWaVE55LoxRjdpx0z259GE9U5STA9atUinQ==} engines: {node: '>=6.9.0'} dependencies: '@ampproject/remapping': 2.2.0 '@babel/code-frame': 7.18.6 - '@babel/generator': 7.20.1 - '@babel/helper-compilation-targets': 7.20.0_@babel+core@7.19.6 - '@babel/helper-module-transforms': 7.19.6 - '@babel/helpers': 7.20.1 - '@babel/parser': 7.20.1 + '@babel/generator': 7.20.5 + '@babel/helper-compilation-targets': 7.20.0_@babel+core@7.20.5 + '@babel/helper-module-transforms': 7.20.2 + '@babel/helpers': 7.20.6 + '@babel/parser': 7.20.5 '@babel/template': 7.18.10 - '@babel/traverse': 7.20.1 - '@babel/types': 7.20.0 + '@babel/traverse': 7.20.5 + '@babel/types': 7.20.5 convert-source-map: 1.9.0 debug: 4.3.4 gensync: 1.0.0-beta.2 @@ -308,11 +254,11 @@ packages: - supports-color dev: true - /@babel/generator/7.20.1: - resolution: {integrity: sha512-u1dMdBUmA7Z0rBB97xh8pIhviK7oItYOkjbsCxTWMknyvbQRBwX7/gn4JXurRdirWMFh+ZtYARqkA6ydogVZpg==} + /@babel/generator/7.20.5: + resolution: {integrity: sha512-jl7JY2Ykn9S0yj4DQP82sYvPU+T3g0HFcWTqDLqiuA9tGRNIj9VfbtXGAYTTkyNEnQk1jkMGOdYka8aG/lulCA==} engines: {node: '>=6.9.0'} dependencies: - '@babel/types': 7.20.0 + '@babel/types': 7.20.5 '@jridgewell/gen-mapping': 0.3.2 jsesc: 2.5.2 dev: true @@ -321,37 +267,29 @@ packages: resolution: {integrity: sha512-duORpUiYrEpzKIop6iNbjnwKLAKnJ47csTyRACyEmWj0QdUrm5aqNJGHSSEQSUAvNW0ojX0dOmK9dZduvkfeXA==} engines: {node: '>=6.9.0'} dependencies: - '@babel/types': 7.20.0 + '@babel/types': 7.20.5 dev: true - /@babel/helper-builder-binary-assignment-operator-visitor/7.18.9: - resolution: {integrity: sha512-yFQ0YCHoIqarl8BCRwBL8ulYUaZpz3bNsA7oFepAzee+8/+ImtADXNOmO5vJvsPff3qi+hvpkY/NYBTrBQgdNw==} - engines: {node: '>=6.9.0'} - dependencies: - '@babel/helper-explode-assignable-expression': 7.18.6 - '@babel/types': 7.20.0 - dev: true - - /@babel/helper-compilation-targets/7.20.0_@babel+core@7.19.6: + /@babel/helper-compilation-targets/7.20.0_@babel+core@7.20.5: resolution: {integrity: sha512-0jp//vDGp9e8hZzBc6N/KwA5ZK3Wsm/pfm4CrY7vzegkVxc65SgSn6wYOnwHe9Js9HRQ1YTCKLGPzDtaS3RoLQ==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0 dependencies: - '@babel/compat-data': 7.20.1 - '@babel/core': 7.19.6 + '@babel/compat-data': 7.20.5 + '@babel/core': 7.20.5 '@babel/helper-validator-option': 7.18.6 browserslist: 4.21.4 semver: 6.3.0 dev: true - /@babel/helper-create-class-features-plugin/7.19.0_@babel+core@7.19.6: - resolution: {integrity: sha512-NRz8DwF4jT3UfrmUoZjd0Uph9HQnP30t7Ash+weACcyNkiYTywpIjDBgReJMKgr+n86sn2nPVVmJ28Dm053Kqw==} + /@babel/helper-create-class-features-plugin/7.20.5_@babel+core@7.20.5: + resolution: {integrity: sha512-3RCdA/EmEaikrhayahwToF0fpweU/8o2p8vhc1c/1kftHOdTKuC65kik/TLc+qfbS8JKw4qqJbne4ovICDhmww==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0 dependencies: - '@babel/core': 7.19.6 + '@babel/core': 7.20.5 '@babel/helper-annotate-as-pure': 7.18.6 '@babel/helper-environment-visitor': 7.18.9 '@babel/helper-function-name': 7.19.0 @@ -363,86 +301,52 @@ packages: - supports-color dev: true - /@babel/helper-create-regexp-features-plugin/7.19.0_@babel+core@7.19.6: - resolution: {integrity: sha512-htnV+mHX32DF81amCDrwIDr8nrp1PTm+3wfBN9/v8QJOLEioOCOG7qNyq0nHeFiWbT3Eb7gsPwEmV64UCQ1jzw==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0 - dependencies: - '@babel/core': 7.19.6 - '@babel/helper-annotate-as-pure': 7.18.6 - regexpu-core: 5.2.1 - dev: true - - /@babel/helper-define-polyfill-provider/0.3.3_@babel+core@7.19.6: - resolution: {integrity: sha512-z5aQKU4IzbqCC1XH0nAqfsFLMVSo22SBKUc0BxGrLkolTdPTructy0ToNnlO2zA4j9Q/7pjMZf0DSY+DSTYzww==} - peerDependencies: - '@babel/core': ^7.4.0-0 - dependencies: - '@babel/core': 7.19.6 - '@babel/helper-compilation-targets': 7.20.0_@babel+core@7.19.6 - '@babel/helper-plugin-utils': 7.19.0 - debug: 4.3.4 - lodash.debounce: 4.0.8 - resolve: 1.22.1 - semver: 6.3.0 - transitivePeerDependencies: - - supports-color - dev: true - /@babel/helper-environment-visitor/7.18.9: resolution: {integrity: sha512-3r/aACDJ3fhQ/EVgFy0hpj8oHyHpQc+LPtJoY9SzTThAsStm4Ptegq92vqKoE3vD706ZVFWITnMnxucw+S9Ipg==} engines: {node: '>=6.9.0'} dev: true - /@babel/helper-explode-assignable-expression/7.18.6: - resolution: {integrity: sha512-eyAYAsQmB80jNfg4baAtLeWAQHfHFiR483rzFK+BhETlGZaQC9bsfrugfXDCbRHLQbIA7U5NxhhOxN7p/dWIcg==} - engines: {node: '>=6.9.0'} - dependencies: - '@babel/types': 7.20.0 - dev: true - /@babel/helper-function-name/7.19.0: resolution: {integrity: sha512-WAwHBINyrpqywkUH0nTnNgI5ina5TFn85HKS0pbPDfxFfhyR/aNQEn4hGi1P1JyT//I0t4OgXUlofzWILRvS5w==} engines: {node: '>=6.9.0'} dependencies: '@babel/template': 7.18.10 - '@babel/types': 7.20.0 + '@babel/types': 7.20.5 dev: true /@babel/helper-hoist-variables/7.18.6: resolution: {integrity: sha512-UlJQPkFqFULIcyW5sbzgbkxn2FKRgwWiRexcuaR8RNJRy8+LLveqPjwZV/bwrLZCN0eUHD/x8D0heK1ozuoo6Q==} engines: {node: '>=6.9.0'} dependencies: - '@babel/types': 7.20.0 + '@babel/types': 7.20.5 dev: true /@babel/helper-member-expression-to-functions/7.18.9: resolution: {integrity: sha512-RxifAh2ZoVU67PyKIO4AMi1wTenGfMR/O/ae0CCRqwgBAt5v7xjdtRw7UoSbsreKrQn5t7r89eruK/9JjYHuDg==} engines: {node: '>=6.9.0'} dependencies: - '@babel/types': 7.20.0 + '@babel/types': 7.20.5 dev: true /@babel/helper-module-imports/7.18.6: resolution: {integrity: sha512-0NFvs3VkuSYbFi1x2Vd6tKrywq+z/cLeYC/RJNFrIX/30Bf5aiGYbtvGXolEktzJH8o5E5KJ3tT+nkxuuZFVlA==} engines: {node: '>=6.9.0'} dependencies: - '@babel/types': 7.20.0 + '@babel/types': 7.20.5 dev: true - /@babel/helper-module-transforms/7.19.6: - resolution: {integrity: sha512-fCmcfQo/KYr/VXXDIyd3CBGZ6AFhPFy1TfSEJ+PilGVlQT6jcbqtHAM4C1EciRqMza7/TpOUZliuSH+U6HAhJw==} + /@babel/helper-module-transforms/7.20.2: + resolution: {integrity: sha512-zvBKyJXRbmK07XhMuujYoJ48B5yvvmM6+wcpv6Ivj4Yg6qO7NOZOSnvZN9CRl1zz1Z4cKf8YejmCMh8clOoOeA==} engines: {node: '>=6.9.0'} dependencies: '@babel/helper-environment-visitor': 7.18.9 '@babel/helper-module-imports': 7.18.6 - '@babel/helper-simple-access': 7.19.4 + '@babel/helper-simple-access': 7.20.2 '@babel/helper-split-export-declaration': 7.18.6 '@babel/helper-validator-identifier': 7.19.1 '@babel/template': 7.18.10 - '@babel/traverse': 7.20.1 - '@babel/types': 7.20.0 + '@babel/traverse': 7.20.5 + '@babel/types': 7.20.5 transitivePeerDependencies: - supports-color dev: true @@ -451,29 +355,14 @@ packages: resolution: {integrity: sha512-HP59oD9/fEHQkdcbgFCnbmgH5vIQTJbxh2yf+CdM89/glUNnuzr87Q8GIjGEnOktTROemO0Pe0iPAYbqZuOUiA==} engines: {node: '>=6.9.0'} dependencies: - '@babel/types': 7.20.0 + '@babel/types': 7.20.5 dev: true - /@babel/helper-plugin-utils/7.19.0: - resolution: {integrity: sha512-40Ryx7I8mT+0gaNxm8JGTZFUITNqdLAgdg0hXzeVZxVD6nFsdhQvip6v8dqkRHzsz1VFpFAaOCHNn0vKBL7Czw==} + /@babel/helper-plugin-utils/7.20.2: + resolution: {integrity: sha512-8RvlJG2mj4huQ4pZ+rU9lqKi9ZKiRmuvGuM2HlWmkmgOhbs6zEAw6IEiJ5cQqGbDzGZOhwuOQNtZMi/ENLjZoQ==} engines: {node: '>=6.9.0'} dev: true - /@babel/helper-remap-async-to-generator/7.18.9_@babel+core@7.19.6: - resolution: {integrity: sha512-dI7q50YKd8BAv3VEfgg7PS7yD3Rtbi2J1XMXaalXO0W0164hYLnh8zpjRS0mte9MfVp/tltvr/cfdXPvJr1opA==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0 - dependencies: - '@babel/core': 7.19.6 - '@babel/helper-annotate-as-pure': 7.18.6 - '@babel/helper-environment-visitor': 7.18.9 - '@babel/helper-wrap-function': 7.19.0 - '@babel/types': 7.20.0 - transitivePeerDependencies: - - supports-color - dev: true - /@babel/helper-replace-supers/7.19.1: resolution: {integrity: sha512-T7ahH7wV0Hfs46SFh5Jz3s0B6+o8g3c+7TMxu7xKfmHikg7EAZ3I2Qk9LFhjxXq8sL7UkP5JflezNwoZa8WvWw==} engines: {node: '>=6.9.0'} @@ -481,31 +370,24 @@ packages: '@babel/helper-environment-visitor': 7.18.9 '@babel/helper-member-expression-to-functions': 7.18.9 '@babel/helper-optimise-call-expression': 7.18.6 - '@babel/traverse': 7.20.1 - '@babel/types': 7.20.0 + '@babel/traverse': 7.20.5 + '@babel/types': 7.20.5 transitivePeerDependencies: - supports-color dev: true - /@babel/helper-simple-access/7.19.4: - resolution: {integrity: sha512-f9Xq6WqBFqaDfbCzn2w85hwklswz5qsKlh7f08w4Y9yhJHpnNC0QemtSkK5YyOY8kPGvyiwdzZksGUhnGdaUIg==} + /@babel/helper-simple-access/7.20.2: + resolution: {integrity: sha512-+0woI/WPq59IrqDYbVGfshjT5Dmk/nnbdpcF8SnMhhXObpTq2KNBdLFRFrkVdbDOyUmHBCxzm5FHV1rACIkIbA==} engines: {node: '>=6.9.0'} dependencies: - '@babel/types': 7.20.0 - dev: true - - /@babel/helper-skip-transparent-expression-wrappers/7.20.0: - resolution: {integrity: sha512-5y1JYeNKfvnT8sZcK9DVRtpTbGiomYIHviSP3OQWmDPU3DeH4a1ZlT/N2lyQ5P8egjcRaT/Y9aNqUxK0WsnIIg==} - engines: {node: '>=6.9.0'} - dependencies: - '@babel/types': 7.20.0 + '@babel/types': 7.20.5 dev: true /@babel/helper-split-export-declaration/7.18.6: resolution: {integrity: sha512-bde1etTx6ZyTmobl9LLMMQsaizFVZrquTEHOqKeQESMKo4PlObf+8+JA25ZsIpZhT/WEd39+vOdLXAFG/nELpA==} engines: {node: '>=6.9.0'} dependencies: - '@babel/types': 7.20.0 + '@babel/types': 7.20.5 dev: true /@babel/helper-string-parser/7.19.4: @@ -521,25 +403,13 @@ packages: engines: {node: '>=6.9.0'} dev: true - /@babel/helper-wrap-function/7.19.0: - resolution: {integrity: sha512-txX8aN8CZyYGTwcLhlk87KRqncAzhh5TpQamZUa0/u3an36NtDpUP6bQgBCBcLeBs09R/OwQu3OjK0k/HwfNDg==} - engines: {node: '>=6.9.0'} - dependencies: - '@babel/helper-function-name': 7.19.0 - '@babel/template': 7.18.10 - '@babel/traverse': 7.20.1 - '@babel/types': 7.20.0 - transitivePeerDependencies: - - supports-color - dev: true - - /@babel/helpers/7.20.1: - resolution: {integrity: sha512-J77mUVaDTUJFZ5BpP6mMn6OIl3rEWymk2ZxDBQJUG3P+PbmyMcF3bYWvz0ma69Af1oobDqT/iAsvzhB58xhQUg==} + /@babel/helpers/7.20.6: + resolution: {integrity: sha512-Pf/OjgfgFRW5bApskEz5pvidpim7tEDPlFtKcNRXWmfHGn9IEI2W2flqRQXTFb7gIPTyK++N6rVHuwKut4XK6w==} engines: {node: '>=6.9.0'} dependencies: '@babel/template': 7.18.10 - '@babel/traverse': 7.20.1 - '@babel/types': 7.20.0 + '@babel/traverse': 7.20.5 + '@babel/types': 7.20.5 transitivePeerDependencies: - supports-color dev: true @@ -558,887 +428,71 @@ packages: engines: {node: '>=6.0.0'} hasBin: true dependencies: - '@babel/types': 7.20.0 + '@babel/types': 7.20.5 dev: true - /@babel/parser/7.20.1: - resolution: {integrity: sha512-hp0AYxaZJhxULfM1zyp7Wgr+pSUKBcP3M+PHnSzWGdXOzg/kHWIgiUWARvubhUKGOEw3xqY4x+lyZ9ytBVcELw==} + /@babel/parser/7.20.5: + resolution: {integrity: sha512-r27t/cy/m9uKLXQNWWebeCUHgnAZq0CpG1OwKRxzJMP1vpSU4bSIK2hq+/cp0bQxetkXx38n09rNu8jVkcK/zA==} engines: {node: '>=6.0.0'} hasBin: true dependencies: - '@babel/types': 7.20.0 + '@babel/types': 7.20.5 - /@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression/7.18.6_@babel+core@7.19.6: - resolution: {integrity: sha512-Dgxsyg54Fx1d4Nge8UnvTrED63vrwOdPmyvPzlNN/boaliRP54pm3pGzZD1SJUwrBA+Cs/xdG8kXX6Mn/RfISQ==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0 - dependencies: - '@babel/core': 7.19.6 - '@babel/helper-plugin-utils': 7.19.0 - dev: true - - /@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining/7.18.9_@babel+core@7.19.6: - resolution: {integrity: sha512-AHrP9jadvH7qlOj6PINbgSuphjQUAK7AOT7DPjBo9EHoLhQTnnK5u45e1Hd4DbSQEO9nqPWtQ89r+XEOWFScKg==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.13.0 - dependencies: - '@babel/core': 7.19.6 - '@babel/helper-plugin-utils': 7.19.0 - '@babel/helper-skip-transparent-expression-wrappers': 7.20.0 - '@babel/plugin-proposal-optional-chaining': 7.18.9_@babel+core@7.19.6 - dev: true - - /@babel/plugin-proposal-async-generator-functions/7.20.1_@babel+core@7.19.6: - resolution: {integrity: sha512-Gh5rchzSwE4kC+o/6T8waD0WHEQIsDmjltY8WnWRXHUdH8axZhuH86Ov9M72YhJfDrZseQwuuWaaIT/TmePp3g==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.19.6 - '@babel/helper-environment-visitor': 7.18.9 - '@babel/helper-plugin-utils': 7.19.0 - '@babel/helper-remap-async-to-generator': 7.18.9_@babel+core@7.19.6 - '@babel/plugin-syntax-async-generators': 7.8.4_@babel+core@7.19.6 - transitivePeerDependencies: - - supports-color - dev: true - - /@babel/plugin-proposal-class-properties/7.18.6_@babel+core@7.19.6: - resolution: {integrity: sha512-cumfXOF0+nzZrrN8Rf0t7M+tF6sZc7vhQwYQck9q1/5w2OExlD+b4v4RpMJFaV1Z7WcDRgO6FqvxqxGlwo+RHQ==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.19.6 - '@babel/helper-create-class-features-plugin': 7.19.0_@babel+core@7.19.6 - '@babel/helper-plugin-utils': 7.19.0 - transitivePeerDependencies: - - supports-color - dev: true - - /@babel/plugin-proposal-class-static-block/7.18.6_@babel+core@7.19.6: - resolution: {integrity: sha512-+I3oIiNxrCpup3Gi8n5IGMwj0gOCAjcJUSQEcotNnCCPMEnixawOQ+KeJPlgfjzx+FKQ1QSyZOWe7wmoJp7vhw==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.12.0 - dependencies: - '@babel/core': 7.19.6 - '@babel/helper-create-class-features-plugin': 7.19.0_@babel+core@7.19.6 - '@babel/helper-plugin-utils': 7.19.0 - '@babel/plugin-syntax-class-static-block': 7.14.5_@babel+core@7.19.6 - transitivePeerDependencies: - - supports-color - dev: true - - /@babel/plugin-proposal-dynamic-import/7.18.6_@babel+core@7.19.6: - resolution: {integrity: sha512-1auuwmK+Rz13SJj36R+jqFPMJWyKEDd7lLSdOj4oJK0UTgGueSAtkrCvz9ewmgyU/P941Rv2fQwZJN8s6QruXw==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.19.6 - '@babel/helper-plugin-utils': 7.19.0 - '@babel/plugin-syntax-dynamic-import': 7.8.3_@babel+core@7.19.6 - dev: true - - /@babel/plugin-proposal-export-namespace-from/7.18.9_@babel+core@7.19.6: - resolution: {integrity: sha512-k1NtHyOMvlDDFeb9G5PhUXuGj8m/wiwojgQVEhJ/fsVsMCpLyOP4h0uGEjYJKrRI+EVPlb5Jk+Gt9P97lOGwtA==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.19.6 - '@babel/helper-plugin-utils': 7.19.0 - '@babel/plugin-syntax-export-namespace-from': 7.8.3_@babel+core@7.19.6 - dev: true - - /@babel/plugin-proposal-json-strings/7.18.6_@babel+core@7.19.6: - resolution: {integrity: sha512-lr1peyn9kOdbYc0xr0OdHTZ5FMqS6Di+H0Fz2I/JwMzGmzJETNeOFq2pBySw6X/KFL5EWDjlJuMsUGRFb8fQgQ==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.19.6 - '@babel/helper-plugin-utils': 7.19.0 - '@babel/plugin-syntax-json-strings': 7.8.3_@babel+core@7.19.6 - dev: true - - /@babel/plugin-proposal-logical-assignment-operators/7.18.9_@babel+core@7.19.6: - resolution: {integrity: sha512-128YbMpjCrP35IOExw2Fq+x55LMP42DzhOhX2aNNIdI9avSWl2PI0yuBWarr3RYpZBSPtabfadkH2yeRiMD61Q==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.19.6 - '@babel/helper-plugin-utils': 7.19.0 - '@babel/plugin-syntax-logical-assignment-operators': 7.10.4_@babel+core@7.19.6 - dev: true - - /@babel/plugin-proposal-nullish-coalescing-operator/7.18.6_@babel+core@7.19.6: - resolution: {integrity: sha512-wQxQzxYeJqHcfppzBDnm1yAY0jSRkUXR2z8RePZYrKwMKgMlE8+Z6LUno+bd6LvbGh8Gltvy74+9pIYkr+XkKA==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.19.6 - '@babel/helper-plugin-utils': 7.19.0 - '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3_@babel+core@7.19.6 - dev: true - - /@babel/plugin-proposal-numeric-separator/7.18.6_@babel+core@7.19.6: - resolution: {integrity: sha512-ozlZFogPqoLm8WBr5Z8UckIoE4YQ5KESVcNudyXOR8uqIkliTEgJ3RoketfG6pmzLdeZF0H/wjE9/cCEitBl7Q==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.19.6 - '@babel/helper-plugin-utils': 7.19.0 - '@babel/plugin-syntax-numeric-separator': 7.10.4_@babel+core@7.19.6 - dev: true - - /@babel/plugin-proposal-object-rest-spread/7.19.4_@babel+core@7.19.6: - resolution: {integrity: sha512-wHmj6LDxVDnL+3WhXteUBaoM1aVILZODAUjg11kHqG4cOlfgMQGxw6aCgvrXrmaJR3Bn14oZhImyCPZzRpC93Q==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/compat-data': 7.20.1 - '@babel/core': 7.19.6 - '@babel/helper-compilation-targets': 7.20.0_@babel+core@7.19.6 - '@babel/helper-plugin-utils': 7.19.0 - '@babel/plugin-syntax-object-rest-spread': 7.8.3_@babel+core@7.19.6 - '@babel/plugin-transform-parameters': 7.20.1_@babel+core@7.19.6 - dev: true - - /@babel/plugin-proposal-optional-catch-binding/7.18.6_@babel+core@7.19.6: - resolution: {integrity: sha512-Q40HEhs9DJQyaZfUjjn6vE8Cv4GmMHCYuMGIWUnlxH6400VGxOuwWsPt4FxXxJkC/5eOzgn0z21M9gMT4MOhbw==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.19.6 - '@babel/helper-plugin-utils': 7.19.0 - '@babel/plugin-syntax-optional-catch-binding': 7.8.3_@babel+core@7.19.6 - dev: true - - /@babel/plugin-proposal-optional-chaining/7.18.9_@babel+core@7.19.6: - resolution: {integrity: sha512-v5nwt4IqBXihxGsW2QmCWMDS3B3bzGIk/EQVZz2ei7f3NJl8NzAJVvUmpDW5q1CRNY+Beb/k58UAH1Km1N411w==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.19.6 - '@babel/helper-plugin-utils': 7.19.0 - '@babel/helper-skip-transparent-expression-wrappers': 7.20.0 - '@babel/plugin-syntax-optional-chaining': 7.8.3_@babel+core@7.19.6 - dev: true - - /@babel/plugin-proposal-private-methods/7.18.6_@babel+core@7.19.6: - resolution: {integrity: sha512-nutsvktDItsNn4rpGItSNV2sz1XwS+nfU0Rg8aCx3W3NOKVzdMjJRu0O5OkgDp3ZGICSTbgRpxZoWsxoKRvbeA==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.19.6 - '@babel/helper-create-class-features-plugin': 7.19.0_@babel+core@7.19.6 - '@babel/helper-plugin-utils': 7.19.0 - transitivePeerDependencies: - - supports-color - dev: true - - /@babel/plugin-proposal-private-property-in-object/7.18.6_@babel+core@7.19.6: - resolution: {integrity: sha512-9Rysx7FOctvT5ouj5JODjAFAkgGoudQuLPamZb0v1TGLpapdNaftzifU8NTWQm0IRjqoYypdrSmyWgkocDQ8Dw==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.19.6 - '@babel/helper-annotate-as-pure': 7.18.6 - '@babel/helper-create-class-features-plugin': 7.19.0_@babel+core@7.19.6 - '@babel/helper-plugin-utils': 7.19.0 - '@babel/plugin-syntax-private-property-in-object': 7.14.5_@babel+core@7.19.6 - transitivePeerDependencies: - - supports-color - dev: true - - /@babel/plugin-proposal-unicode-property-regex/7.18.6_@babel+core@7.19.6: - resolution: {integrity: sha512-2BShG/d5yoZyXZfVePH91urL5wTG6ASZU9M4o03lKK8u8UW1y08OMttBSOADTcJrnPMpvDXRG3G8fyLh4ovs8w==} - engines: {node: '>=4'} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.19.6 - '@babel/helper-create-regexp-features-plugin': 7.19.0_@babel+core@7.19.6 - '@babel/helper-plugin-utils': 7.19.0 - dev: true - - /@babel/plugin-syntax-async-generators/7.8.4_@babel+core@7.19.6: - resolution: {integrity: sha512-tycmZxkGfZaxhMRbXlPXuVFpdWlXpir2W4AMhSJgRKzk/eDlIXOhb2LHWoLpDF7TEHylV5zNhykX6KAgHJmTNw==} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.19.6 - '@babel/helper-plugin-utils': 7.19.0 - dev: true - - /@babel/plugin-syntax-class-properties/7.12.13_@babel+core@7.19.6: - resolution: {integrity: sha512-fm4idjKla0YahUNgFNLCB0qySdsoPiZP3iQE3rky0mBUtMZ23yDJ9SJdg6dXTSDnulOVqiF3Hgr9nbXvXTQZYA==} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.19.6 - '@babel/helper-plugin-utils': 7.19.0 - dev: true - - /@babel/plugin-syntax-class-static-block/7.14.5_@babel+core@7.19.6: - resolution: {integrity: sha512-b+YyPmr6ldyNnM6sqYeMWE+bgJcJpO6yS4QD7ymxgH34GBPNDM/THBh8iunyvKIZztiwLH4CJZ0RxTk9emgpjw==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.19.6 - '@babel/helper-plugin-utils': 7.19.0 - dev: true - - /@babel/plugin-syntax-dynamic-import/7.8.3_@babel+core@7.19.6: - resolution: {integrity: sha512-5gdGbFon+PszYzqs83S3E5mpi7/y/8M9eC90MRTZfduQOYW76ig6SOSPNe41IG5LoP3FGBn2N0RjVDSQiS94kQ==} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.19.6 - '@babel/helper-plugin-utils': 7.19.0 - dev: true - - /@babel/plugin-syntax-export-namespace-from/7.8.3_@babel+core@7.19.6: - resolution: {integrity: sha512-MXf5laXo6c1IbEbegDmzGPwGNTsHZmEy6QGznu5Sh2UCWvueywb2ee+CCE4zQiZstxU9BMoQO9i6zUFSY0Kj0Q==} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.19.6 - '@babel/helper-plugin-utils': 7.19.0 - dev: true - - /@babel/plugin-syntax-import-assertions/7.20.0_@babel+core@7.19.6: - resolution: {integrity: sha512-IUh1vakzNoWalR8ch/areW7qFopR2AEw03JlG7BbrDqmQ4X3q9uuipQwSGrUn7oGiemKjtSLDhNtQHzMHr1JdQ==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.19.6 - '@babel/helper-plugin-utils': 7.19.0 - dev: true - - /@babel/plugin-syntax-json-strings/7.8.3_@babel+core@7.19.6: - resolution: {integrity: sha512-lY6kdGpWHvjoe2vk4WrAapEuBR69EMxZl+RoGRhrFGNYVK8mOPAW8VfbT/ZgrFbXlDNiiaxQnAtgVCZ6jv30EA==} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.19.6 - '@babel/helper-plugin-utils': 7.19.0 - dev: true - - /@babel/plugin-syntax-jsx/7.18.6_@babel+core@7.19.6: + /@babel/plugin-syntax-jsx/7.18.6_@babel+core@7.20.5: resolution: {integrity: sha512-6mmljtAedFGTWu2p/8WIORGwy+61PLgOMPOdazc7YoJ9ZCWUyFy3A6CpPkRKLKD1ToAesxX8KGEViAiLo9N+7Q==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.19.6 - '@babel/helper-plugin-utils': 7.19.0 + '@babel/core': 7.20.5 + '@babel/helper-plugin-utils': 7.20.2 dev: true - /@babel/plugin-syntax-logical-assignment-operators/7.10.4_@babel+core@7.19.6: - resolution: {integrity: sha512-d8waShlpFDinQ5MtvGU9xDAOzKH47+FFoney2baFIoMr952hKOLp1HR7VszoZvOsV/4+RRszNY7D17ba0te0ig==} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.19.6 - '@babel/helper-plugin-utils': 7.19.0 - dev: true - - /@babel/plugin-syntax-nullish-coalescing-operator/7.8.3_@babel+core@7.19.6: - resolution: {integrity: sha512-aSff4zPII1u2QD7y+F8oDsz19ew4IGEJg9SVW+bqwpwtfFleiQDMdzA/R+UlWDzfnHFCxxleFT0PMIrR36XLNQ==} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.19.6 - '@babel/helper-plugin-utils': 7.19.0 - dev: true - - /@babel/plugin-syntax-numeric-separator/7.10.4_@babel+core@7.19.6: - resolution: {integrity: sha512-9H6YdfkcK/uOnY/K7/aA2xpzaAgkQn37yzWUMRK7OaPOqOpGS1+n0H5hxT9AUw9EsSjPW8SVyMJwYRtWs3X3ug==} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.19.6 - '@babel/helper-plugin-utils': 7.19.0 - dev: true - - /@babel/plugin-syntax-object-rest-spread/7.8.3_@babel+core@7.19.6: - resolution: {integrity: sha512-XoqMijGZb9y3y2XskN+P1wUGiVwWZ5JmoDRwx5+3GmEplNyVM2s2Dg8ILFQm8rWM48orGy5YpI5Bl8U1y7ydlA==} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.19.6 - '@babel/helper-plugin-utils': 7.19.0 - dev: true - - /@babel/plugin-syntax-optional-catch-binding/7.8.3_@babel+core@7.19.6: - resolution: {integrity: sha512-6VPD0Pc1lpTqw0aKoeRTMiB+kWhAoT24PA+ksWSBrFtl5SIRVpZlwN3NNPQjehA2E/91FV3RjLWoVTglWcSV3Q==} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.19.6 - '@babel/helper-plugin-utils': 7.19.0 - dev: true - - /@babel/plugin-syntax-optional-chaining/7.8.3_@babel+core@7.19.6: - resolution: {integrity: sha512-KoK9ErH1MBlCPxV0VANkXW2/dw4vlbGDrFgz8bmUsBGYkFRcbRwMh6cIJubdPrkxRwuGdtCk0v/wPTKbQgBjkg==} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.19.6 - '@babel/helper-plugin-utils': 7.19.0 - dev: true - - /@babel/plugin-syntax-private-property-in-object/7.14.5_@babel+core@7.19.6: - resolution: {integrity: sha512-0wVnp9dxJ72ZUJDV27ZfbSj6iHLoytYZmh3rFcxNnvsJF3ktkzLDZPy/mA17HGsaQT3/DQsWYX1f1QGWkCoVUg==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.19.6 - '@babel/helper-plugin-utils': 7.19.0 - dev: true - - /@babel/plugin-syntax-top-level-await/7.14.5_@babel+core@7.19.6: - resolution: {integrity: sha512-hx++upLv5U1rgYfwe1xBQUhRmU41NEvpUvrp8jkrSCdvGSnM5/qdRMtylJ6PG5OFkBaHkbTAKTnd3/YyESRHFw==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.19.6 - '@babel/helper-plugin-utils': 7.19.0 - dev: true - - /@babel/plugin-syntax-typescript/7.20.0_@babel+core@7.19.6: + /@babel/plugin-syntax-typescript/7.20.0_@babel+core@7.20.5: resolution: {integrity: sha512-rd9TkG+u1CExzS4SM1BlMEhMXwFLKVjOAFFCDx9PbX5ycJWDoWMcwdJH9RhkPu1dOgn5TrxLot/Gx6lWFuAUNQ==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.19.6 - '@babel/helper-plugin-utils': 7.19.0 + '@babel/core': 7.20.5 + '@babel/helper-plugin-utils': 7.20.2 dev: true - /@babel/plugin-transform-arrow-functions/7.18.6_@babel+core@7.19.6: - resolution: {integrity: sha512-9S9X9RUefzrsHZmKMbDXxweEH+YlE8JJEuat9FdvW9Qh1cw7W64jELCtWNkPBPX5En45uy28KGvA/AySqUh8CQ==} + /@babel/plugin-transform-typescript/7.20.2_@babel+core@7.20.5: + resolution: {integrity: sha512-jvS+ngBfrnTUBfOQq8NfGnSbF9BrqlR6hjJ2yVxMkmO5nL/cdifNbI30EfjRlN4g5wYWNnMPyj5Sa6R1pbLeag==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.19.6 - '@babel/helper-plugin-utils': 7.19.0 - dev: true - - /@babel/plugin-transform-async-to-generator/7.18.6_@babel+core@7.19.6: - resolution: {integrity: sha512-ARE5wZLKnTgPW7/1ftQmSi1CmkqqHo2DNmtztFhvgtOWSDfq0Cq9/9L+KnZNYSNrydBekhW3rwShduf59RoXag==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.19.6 - '@babel/helper-module-imports': 7.18.6 - '@babel/helper-plugin-utils': 7.19.0 - '@babel/helper-remap-async-to-generator': 7.18.9_@babel+core@7.19.6 + '@babel/core': 7.20.5 + '@babel/helper-create-class-features-plugin': 7.20.5_@babel+core@7.20.5 + '@babel/helper-plugin-utils': 7.20.2 + '@babel/plugin-syntax-typescript': 7.20.0_@babel+core@7.20.5 transitivePeerDependencies: - supports-color dev: true - /@babel/plugin-transform-block-scoped-functions/7.18.6_@babel+core@7.19.6: - resolution: {integrity: sha512-ExUcOqpPWnliRcPqves5HJcJOvHvIIWfuS4sroBUenPuMdmW+SMHDakmtS7qOo13sVppmUijqeTv7qqGsvURpQ==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.19.6 - '@babel/helper-plugin-utils': 7.19.0 - dev: true - - /@babel/plugin-transform-block-scoping/7.20.0_@babel+core@7.19.6: - resolution: {integrity: sha512-sXOohbpHZSk7GjxK9b3dKB7CfqUD5DwOH+DggKzOQ7TXYP+RCSbRykfjQmn/zq+rBjycVRtLf9pYhAaEJA786w==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.19.6 - '@babel/helper-plugin-utils': 7.19.0 - dev: true - - /@babel/plugin-transform-classes/7.19.0_@babel+core@7.19.6: - resolution: {integrity: sha512-YfeEE9kCjqTS9IitkgfJuxjcEtLUHMqa8yUJ6zdz8vR7hKuo6mOy2C05P0F1tdMmDCeuyidKnlrw/iTppHcr2A==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.19.6 - '@babel/helper-annotate-as-pure': 7.18.6 - '@babel/helper-compilation-targets': 7.20.0_@babel+core@7.19.6 - '@babel/helper-environment-visitor': 7.18.9 - '@babel/helper-function-name': 7.19.0 - '@babel/helper-optimise-call-expression': 7.18.6 - '@babel/helper-plugin-utils': 7.19.0 - '@babel/helper-replace-supers': 7.19.1 - '@babel/helper-split-export-declaration': 7.18.6 - globals: 11.12.0 - transitivePeerDependencies: - - supports-color - dev: true - - /@babel/plugin-transform-computed-properties/7.18.9_@babel+core@7.19.6: - resolution: {integrity: sha512-+i0ZU1bCDymKakLxn5srGHrsAPRELC2WIbzwjLhHW9SIE1cPYkLCL0NlnXMZaM1vhfgA2+M7hySk42VBvrkBRw==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.19.6 - '@babel/helper-plugin-utils': 7.19.0 - dev: true - - /@babel/plugin-transform-destructuring/7.20.0_@babel+core@7.19.6: - resolution: {integrity: sha512-1dIhvZfkDVx/zn2S1aFwlruspTt4189j7fEkH0Y0VyuDM6bQt7bD6kLcz3l4IlLG+e5OReaBz9ROAbttRtUHqA==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.19.6 - '@babel/helper-plugin-utils': 7.19.0 - dev: true - - /@babel/plugin-transform-dotall-regex/7.18.6_@babel+core@7.19.6: - resolution: {integrity: sha512-6S3jpun1eEbAxq7TdjLotAsl4WpQI9DxfkycRcKrjhQYzU87qpXdknpBg/e+TdcMehqGnLFi7tnFUBR02Vq6wg==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.19.6 - '@babel/helper-create-regexp-features-plugin': 7.19.0_@babel+core@7.19.6 - '@babel/helper-plugin-utils': 7.19.0 - dev: true - - /@babel/plugin-transform-duplicate-keys/7.18.9_@babel+core@7.19.6: - resolution: {integrity: sha512-d2bmXCtZXYc59/0SanQKbiWINadaJXqtvIQIzd4+hNwkWBgyCd5F/2t1kXoUdvPMrxzPvhK6EMQRROxsue+mfw==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.19.6 - '@babel/helper-plugin-utils': 7.19.0 - dev: true - - /@babel/plugin-transform-exponentiation-operator/7.18.6_@babel+core@7.19.6: - resolution: {integrity: sha512-wzEtc0+2c88FVR34aQmiz56dxEkxr2g8DQb/KfaFa1JYXOFVsbhvAonFN6PwVWj++fKmku8NP80plJ5Et4wqHw==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.19.6 - '@babel/helper-builder-binary-assignment-operator-visitor': 7.18.9 - '@babel/helper-plugin-utils': 7.19.0 - dev: true - - /@babel/plugin-transform-for-of/7.18.8_@babel+core@7.19.6: - resolution: {integrity: sha512-yEfTRnjuskWYo0k1mHUqrVWaZwrdq8AYbfrpqULOJOaucGSp4mNMVps+YtA8byoevxS/urwU75vyhQIxcCgiBQ==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.19.6 - '@babel/helper-plugin-utils': 7.19.0 - dev: true - - /@babel/plugin-transform-function-name/7.18.9_@babel+core@7.19.6: - resolution: {integrity: sha512-WvIBoRPaJQ5yVHzcnJFor7oS5Ls0PYixlTYE63lCj2RtdQEl15M68FXQlxnG6wdraJIXRdR7KI+hQ7q/9QjrCQ==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.19.6 - '@babel/helper-compilation-targets': 7.20.0_@babel+core@7.19.6 - '@babel/helper-function-name': 7.19.0 - '@babel/helper-plugin-utils': 7.19.0 - dev: true - - /@babel/plugin-transform-literals/7.18.9_@babel+core@7.19.6: - resolution: {integrity: sha512-IFQDSRoTPnrAIrI5zoZv73IFeZu2dhu6irxQjY9rNjTT53VmKg9fenjvoiOWOkJ6mm4jKVPtdMzBY98Fp4Z4cg==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.19.6 - '@babel/helper-plugin-utils': 7.19.0 - dev: true - - /@babel/plugin-transform-member-expression-literals/7.18.6_@babel+core@7.19.6: - resolution: {integrity: sha512-qSF1ihLGO3q+/g48k85tUjD033C29TNTVB2paCwZPVmOsjn9pClvYYrM2VeJpBY2bcNkuny0YUyTNRyRxJ54KA==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.19.6 - '@babel/helper-plugin-utils': 7.19.0 - dev: true - - /@babel/plugin-transform-modules-amd/7.19.6_@babel+core@7.19.6: - resolution: {integrity: sha512-uG3od2mXvAtIFQIh0xrpLH6r5fpSQN04gIVovl+ODLdUMANokxQLZnPBHcjmv3GxRjnqwLuHvppjjcelqUFZvg==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.19.6 - '@babel/helper-module-transforms': 7.19.6 - '@babel/helper-plugin-utils': 7.19.0 - transitivePeerDependencies: - - supports-color - dev: true - - /@babel/plugin-transform-modules-commonjs/7.19.6_@babel+core@7.19.6: - resolution: {integrity: sha512-8PIa1ym4XRTKuSsOUXqDG0YaOlEuTVvHMe5JCfgBMOtHvJKw/4NGovEGN33viISshG/rZNVrACiBmPQLvWN8xQ==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.19.6 - '@babel/helper-module-transforms': 7.19.6 - '@babel/helper-plugin-utils': 7.19.0 - '@babel/helper-simple-access': 7.19.4 - transitivePeerDependencies: - - supports-color - dev: true - - /@babel/plugin-transform-modules-systemjs/7.19.6_@babel+core@7.19.6: - resolution: {integrity: sha512-fqGLBepcc3kErfR9R3DnVpURmckXP7gj7bAlrTQyBxrigFqszZCkFkcoxzCp2v32XmwXLvbw+8Yq9/b+QqksjQ==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.19.6 - '@babel/helper-hoist-variables': 7.18.6 - '@babel/helper-module-transforms': 7.19.6 - '@babel/helper-plugin-utils': 7.19.0 - '@babel/helper-validator-identifier': 7.19.1 - transitivePeerDependencies: - - supports-color - dev: true - - /@babel/plugin-transform-modules-umd/7.18.6_@babel+core@7.19.6: - resolution: {integrity: sha512-dcegErExVeXcRqNtkRU/z8WlBLnvD4MRnHgNs3MytRO1Mn1sHRyhbcpYbVMGclAqOjdW+9cfkdZno9dFdfKLfQ==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.19.6 - '@babel/helper-module-transforms': 7.19.6 - '@babel/helper-plugin-utils': 7.19.0 - transitivePeerDependencies: - - supports-color - dev: true - - /@babel/plugin-transform-named-capturing-groups-regex/7.19.1_@babel+core@7.19.6: - resolution: {integrity: sha512-oWk9l9WItWBQYS4FgXD4Uyy5kq898lvkXpXQxoJEY1RnvPk4R/Dvu2ebXU9q8lP+rlMwUQTFf2Ok6d78ODa0kw==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0 - dependencies: - '@babel/core': 7.19.6 - '@babel/helper-create-regexp-features-plugin': 7.19.0_@babel+core@7.19.6 - '@babel/helper-plugin-utils': 7.19.0 - dev: true - - /@babel/plugin-transform-new-target/7.18.6_@babel+core@7.19.6: - resolution: {integrity: sha512-DjwFA/9Iu3Z+vrAn+8pBUGcjhxKguSMlsFqeCKbhb9BAV756v0krzVK04CRDi/4aqmk8BsHb4a/gFcaA5joXRw==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.19.6 - '@babel/helper-plugin-utils': 7.19.0 - dev: true - - /@babel/plugin-transform-object-super/7.18.6_@babel+core@7.19.6: - resolution: {integrity: sha512-uvGz6zk+pZoS1aTZrOvrbj6Pp/kK2mp45t2B+bTDre2UgsZZ8EZLSJtUg7m/no0zOJUWgFONpB7Zv9W2tSaFlA==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.19.6 - '@babel/helper-plugin-utils': 7.19.0 - '@babel/helper-replace-supers': 7.19.1 - transitivePeerDependencies: - - supports-color - dev: true - - /@babel/plugin-transform-parameters/7.20.1_@babel+core@7.19.6: - resolution: {integrity: sha512-nDvKLrAvl+kf6BOy1UJ3MGwzzfTMgppxwiD2Jb4LO3xjYyZq30oQzDNJbCQpMdG9+j2IXHoiMrw5Cm/L6ZoxXQ==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.19.6 - '@babel/helper-plugin-utils': 7.19.0 - dev: true - - /@babel/plugin-transform-property-literals/7.18.6_@babel+core@7.19.6: - resolution: {integrity: sha512-cYcs6qlgafTud3PAzrrRNbQtfpQ8+y/+M5tKmksS9+M1ckbH6kzY8MrexEM9mcA6JDsukE19iIRvAyYl463sMg==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.19.6 - '@babel/helper-plugin-utils': 7.19.0 - dev: true - - /@babel/plugin-transform-regenerator/7.18.6_@babel+core@7.19.6: - resolution: {integrity: sha512-poqRI2+qiSdeldcz4wTSTXBRryoq3Gc70ye7m7UD5Ww0nE29IXqMl6r7Nd15WBgRd74vloEMlShtH6CKxVzfmQ==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.19.6 - '@babel/helper-plugin-utils': 7.19.0 - regenerator-transform: 0.15.0 - dev: true - - /@babel/plugin-transform-reserved-words/7.18.6_@babel+core@7.19.6: - resolution: {integrity: sha512-oX/4MyMoypzHjFrT1CdivfKZ+XvIPMFXwwxHp/r0Ddy2Vuomt4HDFGmft1TAY2yiTKiNSsh3kjBAzcM8kSdsjA==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.19.6 - '@babel/helper-plugin-utils': 7.19.0 - dev: true - - /@babel/plugin-transform-shorthand-properties/7.18.6_@babel+core@7.19.6: - resolution: {integrity: sha512-eCLXXJqv8okzg86ywZJbRn19YJHU4XUa55oz2wbHhaQVn/MM+XhukiT7SYqp/7o00dg52Rj51Ny+Ecw4oyoygw==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.19.6 - '@babel/helper-plugin-utils': 7.19.0 - dev: true - - /@babel/plugin-transform-spread/7.19.0_@babel+core@7.19.6: - resolution: {integrity: sha512-RsuMk7j6n+r752EtzyScnWkQyuJdli6LdO5Klv8Yx0OfPVTcQkIUfS8clx5e9yHXzlnhOZF3CbQ8C2uP5j074w==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.19.6 - '@babel/helper-plugin-utils': 7.19.0 - '@babel/helper-skip-transparent-expression-wrappers': 7.20.0 - dev: true - - /@babel/plugin-transform-sticky-regex/7.18.6_@babel+core@7.19.6: - resolution: {integrity: sha512-kfiDrDQ+PBsQDO85yj1icueWMfGfJFKN1KCkndygtu/C9+XUfydLC8Iv5UYJqRwy4zk8EcplRxEOeLyjq1gm6Q==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.19.6 - '@babel/helper-plugin-utils': 7.19.0 - dev: true - - /@babel/plugin-transform-template-literals/7.18.9_@babel+core@7.19.6: - resolution: {integrity: sha512-S8cOWfT82gTezpYOiVaGHrCbhlHgKhQt8XH5ES46P2XWmX92yisoZywf5km75wv5sYcXDUCLMmMxOLCtthDgMA==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.19.6 - '@babel/helper-plugin-utils': 7.19.0 - dev: true - - /@babel/plugin-transform-typeof-symbol/7.18.9_@babel+core@7.19.6: - resolution: {integrity: sha512-SRfwTtF11G2aemAZWivL7PD+C9z52v9EvMqH9BuYbabyPuKUvSWks3oCg6041pT925L4zVFqaVBeECwsmlguEw==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.19.6 - '@babel/helper-plugin-utils': 7.19.0 - dev: true - - /@babel/plugin-transform-typescript/7.20.0_@babel+core@7.19.6: - resolution: {integrity: sha512-xOAsAFaun3t9hCwZ13Qe7gq423UgMZ6zAgmLxeGGapFqlT/X3L5qT2btjiVLlFn7gWtMaVyceS5VxGAuKbgizw==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.19.6 - '@babel/helper-create-class-features-plugin': 7.19.0_@babel+core@7.19.6 - '@babel/helper-plugin-utils': 7.19.0 - '@babel/plugin-syntax-typescript': 7.20.0_@babel+core@7.19.6 - transitivePeerDependencies: - - supports-color - dev: true - - /@babel/plugin-transform-unicode-escapes/7.18.10_@babel+core@7.19.6: - resolution: {integrity: sha512-kKAdAI+YzPgGY/ftStBFXTI1LZFju38rYThnfMykS+IXy8BVx+res7s2fxf1l8I35DV2T97ezo6+SGrXz6B3iQ==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.19.6 - '@babel/helper-plugin-utils': 7.19.0 - dev: true - - /@babel/plugin-transform-unicode-regex/7.18.6_@babel+core@7.19.6: - resolution: {integrity: sha512-gE7A6Lt7YLnNOL3Pb9BNeZvi+d8l7tcRrG4+pwJjK9hD2xX4mEvjlQW60G9EEmfXVYRPv9VRQcyegIVHCql/AA==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.19.6 - '@babel/helper-create-regexp-features-plugin': 7.19.0_@babel+core@7.19.6 - '@babel/helper-plugin-utils': 7.19.0 - dev: true - - /@babel/preset-env/7.19.4_@babel+core@7.19.6: - resolution: {integrity: sha512-5QVOTXUdqTCjQuh2GGtdd7YEhoRXBMVGROAtsBeLGIbIz3obCBIfRMT1I3ZKkMgNzwkyCkftDXSSkHxnfVf4qg==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/compat-data': 7.20.1 - '@babel/core': 7.19.6 - '@babel/helper-compilation-targets': 7.20.0_@babel+core@7.19.6 - '@babel/helper-plugin-utils': 7.19.0 - '@babel/helper-validator-option': 7.18.6 - '@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression': 7.18.6_@babel+core@7.19.6 - '@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining': 7.18.9_@babel+core@7.19.6 - '@babel/plugin-proposal-async-generator-functions': 7.20.1_@babel+core@7.19.6 - '@babel/plugin-proposal-class-properties': 7.18.6_@babel+core@7.19.6 - '@babel/plugin-proposal-class-static-block': 7.18.6_@babel+core@7.19.6 - '@babel/plugin-proposal-dynamic-import': 7.18.6_@babel+core@7.19.6 - '@babel/plugin-proposal-export-namespace-from': 7.18.9_@babel+core@7.19.6 - '@babel/plugin-proposal-json-strings': 7.18.6_@babel+core@7.19.6 - '@babel/plugin-proposal-logical-assignment-operators': 7.18.9_@babel+core@7.19.6 - '@babel/plugin-proposal-nullish-coalescing-operator': 7.18.6_@babel+core@7.19.6 - '@babel/plugin-proposal-numeric-separator': 7.18.6_@babel+core@7.19.6 - '@babel/plugin-proposal-object-rest-spread': 7.19.4_@babel+core@7.19.6 - '@babel/plugin-proposal-optional-catch-binding': 7.18.6_@babel+core@7.19.6 - '@babel/plugin-proposal-optional-chaining': 7.18.9_@babel+core@7.19.6 - '@babel/plugin-proposal-private-methods': 7.18.6_@babel+core@7.19.6 - '@babel/plugin-proposal-private-property-in-object': 7.18.6_@babel+core@7.19.6 - '@babel/plugin-proposal-unicode-property-regex': 7.18.6_@babel+core@7.19.6 - '@babel/plugin-syntax-async-generators': 7.8.4_@babel+core@7.19.6 - '@babel/plugin-syntax-class-properties': 7.12.13_@babel+core@7.19.6 - '@babel/plugin-syntax-class-static-block': 7.14.5_@babel+core@7.19.6 - '@babel/plugin-syntax-dynamic-import': 7.8.3_@babel+core@7.19.6 - '@babel/plugin-syntax-export-namespace-from': 7.8.3_@babel+core@7.19.6 - '@babel/plugin-syntax-import-assertions': 7.20.0_@babel+core@7.19.6 - '@babel/plugin-syntax-json-strings': 7.8.3_@babel+core@7.19.6 - '@babel/plugin-syntax-logical-assignment-operators': 7.10.4_@babel+core@7.19.6 - '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3_@babel+core@7.19.6 - '@babel/plugin-syntax-numeric-separator': 7.10.4_@babel+core@7.19.6 - '@babel/plugin-syntax-object-rest-spread': 7.8.3_@babel+core@7.19.6 - '@babel/plugin-syntax-optional-catch-binding': 7.8.3_@babel+core@7.19.6 - '@babel/plugin-syntax-optional-chaining': 7.8.3_@babel+core@7.19.6 - '@babel/plugin-syntax-private-property-in-object': 7.14.5_@babel+core@7.19.6 - '@babel/plugin-syntax-top-level-await': 7.14.5_@babel+core@7.19.6 - '@babel/plugin-transform-arrow-functions': 7.18.6_@babel+core@7.19.6 - '@babel/plugin-transform-async-to-generator': 7.18.6_@babel+core@7.19.6 - '@babel/plugin-transform-block-scoped-functions': 7.18.6_@babel+core@7.19.6 - '@babel/plugin-transform-block-scoping': 7.20.0_@babel+core@7.19.6 - '@babel/plugin-transform-classes': 7.19.0_@babel+core@7.19.6 - '@babel/plugin-transform-computed-properties': 7.18.9_@babel+core@7.19.6 - '@babel/plugin-transform-destructuring': 7.20.0_@babel+core@7.19.6 - '@babel/plugin-transform-dotall-regex': 7.18.6_@babel+core@7.19.6 - '@babel/plugin-transform-duplicate-keys': 7.18.9_@babel+core@7.19.6 - '@babel/plugin-transform-exponentiation-operator': 7.18.6_@babel+core@7.19.6 - '@babel/plugin-transform-for-of': 7.18.8_@babel+core@7.19.6 - '@babel/plugin-transform-function-name': 7.18.9_@babel+core@7.19.6 - '@babel/plugin-transform-literals': 7.18.9_@babel+core@7.19.6 - '@babel/plugin-transform-member-expression-literals': 7.18.6_@babel+core@7.19.6 - '@babel/plugin-transform-modules-amd': 7.19.6_@babel+core@7.19.6 - '@babel/plugin-transform-modules-commonjs': 7.19.6_@babel+core@7.19.6 - '@babel/plugin-transform-modules-systemjs': 7.19.6_@babel+core@7.19.6 - '@babel/plugin-transform-modules-umd': 7.18.6_@babel+core@7.19.6 - '@babel/plugin-transform-named-capturing-groups-regex': 7.19.1_@babel+core@7.19.6 - '@babel/plugin-transform-new-target': 7.18.6_@babel+core@7.19.6 - '@babel/plugin-transform-object-super': 7.18.6_@babel+core@7.19.6 - '@babel/plugin-transform-parameters': 7.20.1_@babel+core@7.19.6 - '@babel/plugin-transform-property-literals': 7.18.6_@babel+core@7.19.6 - '@babel/plugin-transform-regenerator': 7.18.6_@babel+core@7.19.6 - '@babel/plugin-transform-reserved-words': 7.18.6_@babel+core@7.19.6 - '@babel/plugin-transform-shorthand-properties': 7.18.6_@babel+core@7.19.6 - '@babel/plugin-transform-spread': 7.19.0_@babel+core@7.19.6 - '@babel/plugin-transform-sticky-regex': 7.18.6_@babel+core@7.19.6 - '@babel/plugin-transform-template-literals': 7.18.9_@babel+core@7.19.6 - '@babel/plugin-transform-typeof-symbol': 7.18.9_@babel+core@7.19.6 - '@babel/plugin-transform-unicode-escapes': 7.18.10_@babel+core@7.19.6 - '@babel/plugin-transform-unicode-regex': 7.18.6_@babel+core@7.19.6 - '@babel/preset-modules': 0.1.5_@babel+core@7.19.6 - '@babel/types': 7.20.0 - babel-plugin-polyfill-corejs2: 0.3.3_@babel+core@7.19.6 - babel-plugin-polyfill-corejs3: 0.6.0_@babel+core@7.19.6 - babel-plugin-polyfill-regenerator: 0.4.1_@babel+core@7.19.6 - core-js-compat: 3.26.0 - semver: 6.3.0 - transitivePeerDependencies: - - supports-color - dev: true - - /@babel/preset-modules/0.1.5_@babel+core@7.19.6: - resolution: {integrity: sha512-A57th6YRG7oR3cq/yt/Y84MvGgE0eJG2F1JLhKuyG+jFxEgrd/HAMJatiFtmOiZurz+0DkrvbheCLaV5f2JfjA==} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.19.6 - '@babel/helper-plugin-utils': 7.19.0 - '@babel/plugin-proposal-unicode-property-regex': 7.18.6_@babel+core@7.19.6 - '@babel/plugin-transform-dotall-regex': 7.18.6_@babel+core@7.19.6 - '@babel/types': 7.20.0 - esutils: 2.0.3 - dev: true - - /@babel/runtime/7.20.1: - resolution: {integrity: sha512-mrzLkl6U9YLF8qpqI7TB82PESyEGjm/0Ly91jG575eVxMMlb8fYfOXFZIJ8XfLrJZQbm7dlKry2bJmXBUEkdFg==} - engines: {node: '>=6.9.0'} - dependencies: - regenerator-runtime: 0.13.10 - dev: true - - /@babel/standalone/7.20.1: - resolution: {integrity: sha512-/gWSncVyOroPfSNASCOIsR08As7UWT7bOKlTkvmprc0Q3v4s6YFxpaYP/eyAZQWbVjSnewX8bZv2In9fwXqPHQ==} - engines: {node: '>=6.9.0'} - dev: true - /@babel/template/7.18.10: resolution: {integrity: sha512-TI+rCtooWHr3QJ27kJxfjutghu44DLnasDMwpDqCXVTal9RLp3RSYNh4NdBrRP2cQAoG9A8juOQl6P6oZG4JxA==} engines: {node: '>=6.9.0'} dependencies: '@babel/code-frame': 7.18.6 - '@babel/parser': 7.20.1 - '@babel/types': 7.20.0 + '@babel/parser': 7.20.5 + '@babel/types': 7.20.5 dev: true - /@babel/traverse/7.20.1: - resolution: {integrity: sha512-d3tN8fkVJwFLkHkBN479SOsw4DMZnz8cdbL/gvuDuzy3TS6Nfw80HuQqhw1pITbIruHyh7d1fMA47kWzmcUEGA==} + /@babel/traverse/7.20.5: + resolution: {integrity: sha512-WM5ZNN3JITQIq9tFZaw1ojLU3WgWdtkxnhM1AegMS+PvHjkM5IXjmYEGY7yukz5XS4sJyEf2VzWjI8uAavhxBQ==} engines: {node: '>=6.9.0'} dependencies: '@babel/code-frame': 7.18.6 - '@babel/generator': 7.20.1 + '@babel/generator': 7.20.5 '@babel/helper-environment-visitor': 7.18.9 '@babel/helper-function-name': 7.19.0 '@babel/helper-hoist-variables': 7.18.6 '@babel/helper-split-export-declaration': 7.18.6 - '@babel/parser': 7.20.1 - '@babel/types': 7.20.0 + '@babel/parser': 7.20.5 + '@babel/types': 7.20.5 debug: 4.3.4 globals: 11.12.0 transitivePeerDependencies: @@ -1453,8 +507,8 @@ packages: to-fast-properties: 2.0.0 dev: true - /@babel/types/7.20.0: - resolution: {integrity: sha512-Jlgt3H0TajCW164wkTOTzHkZb075tMQMULzrLUoUeKmO7eFL96GgDxf7/Axhc5CAuKE3KFyVW1p6ysKsi2oXAg==} + /@babel/types/7.20.5: + resolution: {integrity: sha512-c9fst/h2/dcF7H+MJKZ2T0KjEQ8hY/BNnDk/H3XY8C4Aw/eWQXWn/lWntHF9ooUBnGmEvbfGrTgLWc+um0YDUg==} engines: {node: '>=6.9.0'} dependencies: '@babel/helper-string-parser': 7.19.4 @@ -1469,7 +523,7 @@ packages: resolution: {integrity: sha512-oFXWRPNvPxAzBhnFJ9UCFIYZiQNc3Yrv6912nZHw/UIGxsyzKpNRZgHq8HDk1niYmOSoLKtVFcxkccpQmYGFyg==} dependencies: '@docsearch/react': 3.3.0_tbpndr44ulefs3hehwpi2mkf2y - preact: 10.11.2 + preact: 10.11.3 transitivePeerDependencies: - '@algolia/client-search' - '@types/react' @@ -1499,26 +553,26 @@ packages: - '@algolia/client-search' dev: false - /@esbuild-plugins/node-globals-polyfill/0.1.1_esbuild@0.15.13: + /@esbuild-plugins/node-globals-polyfill/0.1.1_esbuild@0.15.16: resolution: {integrity: sha512-MR0oAA+mlnJWrt1RQVQ+4VYuRJW/P2YmRTv1AsplObyvuBMnPHiizUF95HHYiSsMGLhyGtWufaq2XQg6+iurBg==} peerDependencies: esbuild: '*' dependencies: - esbuild: 0.15.13 + esbuild: 0.15.16 dev: true - /@esbuild-plugins/node-modules-polyfill/0.1.4_esbuild@0.15.13: + /@esbuild-plugins/node-modules-polyfill/0.1.4_esbuild@0.15.16: resolution: {integrity: sha512-uZbcXi0zbmKC/050p3gJnne5Qdzw8vkXIv+c2BW0Lsc1ji1SkrxbKPUy5Efr0blbTu1SL8w4eyfpnSdPg3G0Qg==} peerDependencies: esbuild: '*' dependencies: - esbuild: 0.15.13 + esbuild: 0.15.16 escape-string-regexp: 4.0.0 rollup-plugin-node-polyfills: 0.2.1 dev: true - /@esbuild/android-arm/0.15.13: - resolution: {integrity: sha512-RY2fVI8O0iFUNvZirXaQ1vMvK0xhCcl0gqRj74Z6yEiO1zAUa7hbsdwZM1kzqbxHK7LFyMizipfXT3JME+12Hw==} + /@esbuild/android-arm/0.15.16: + resolution: {integrity: sha512-nyB6CH++2mSgx3GbnrJsZSxzne5K0HMyNIWafDHqYy7IwxFc4fd/CgHVZXr8Eh+Q3KbIAcAe3vGyqIPhGblvMQ==} engines: {node: '>=12'} cpu: [arm] os: [android] @@ -1534,8 +588,8 @@ packages: dev: true optional: true - /@esbuild/linux-loong64/0.15.13: - resolution: {integrity: sha512-+BoyIm4I8uJmH/QDIH0fu7MG0AEx9OXEDXnqptXCwKOlOqZiS4iraH1Nr7/ObLMokW3sOCeBNyD68ATcV9b9Ag==} + /@esbuild/linux-loong64/0.15.16: + resolution: {integrity: sha512-SDLfP1uoB0HZ14CdVYgagllgrG7Mdxhkt4jDJOKl/MldKrkQ6vDJMZKl2+5XsEY/Lzz37fjgLQoJBGuAw/x8kQ==} engines: {node: '>=12'} cpu: [loong64] os: [linux] @@ -1548,9 +602,9 @@ packages: dependencies: ajv: 6.12.6 debug: 4.3.4 - espree: 9.4.0 - globals: 13.17.0 - ignore: 5.2.0 + espree: 9.4.1 + globals: 13.18.0 + ignore: 5.2.1 import-fresh: 3.3.0 js-yaml: 4.1.0 minimatch: 3.1.2 @@ -1559,12 +613,12 @@ packages: - supports-color dev: true - /@heroicons/vue/2.0.13_vue@3.2.41: + /@heroicons/vue/2.0.13_vue@3.2.45: resolution: {integrity: sha512-vVCVF02+rNKXEmanVNnmktJlxCbOn0qVFP1gfZPn4bcBIwPX3h9AVHGCkwly+IWDEME8w5oooG0KRd2hhSe/HQ==} peerDependencies: vue: '>= 3' dependencies: - vue: 3.2.41 + vue: 3.2.45 dev: false /@humanwhocodes/config-array/0.11.7: @@ -1619,45 +673,34 @@ packages: '@jridgewell/set-array': 1.1.2 '@jridgewell/sourcemap-codec': 1.4.14 '@jridgewell/trace-mapping': 0.3.17 - - /@jridgewell/resolve-uri/1.0.0: - resolution: {integrity: sha512-9oLAnygRMi8Q5QkYEU4XWK04B+nuoXoxjRvRxgjuChkLZFBja0YPSgdZ7dZtwhncLBcQe/I/E+fLuk5qxcYVJA==} - engines: {node: '>=6.0.0'} dev: true /@jridgewell/resolve-uri/3.1.0: resolution: {integrity: sha512-F2msla3tad+Mfht5cJq7LSXcdudKTWCVYUgw6pLFOOHSTtZlj6SWNYAp+AhuqLmWdBO2X5hPrLcu8cVP8fy28w==} engines: {node: '>=6.0.0'} + dev: true /@jridgewell/set-array/1.1.2: resolution: {integrity: sha512-xnkseuNADM0gt2bs+BvhO0p78Mk762YnZdsuzFV018NoG1Sj1SCQvpSqa7XUaTam5vAGasABV9qXASMKnFMwMw==} engines: {node: '>=6.0.0'} + dev: true /@jridgewell/source-map/0.3.2: resolution: {integrity: sha512-m7O9o2uR8k2ObDysZYzdfhb08VuEml5oWGiosa1VdaPZ/A6QyPkAJuwN0Q1lhULOf6B7MtQmHENS743hWtCrgw==} dependencies: '@jridgewell/gen-mapping': 0.3.2 '@jridgewell/trace-mapping': 0.3.17 + dev: true /@jridgewell/sourcemap-codec/1.4.14: resolution: {integrity: sha512-XPSJHWmi394fuUuzDnGz1wiKqWfo1yXecHQMRf2l6hztTO+nPru658AyDngaBe7isIxEkRsPR3FZh+s7iVa4Uw==} + dev: true /@jridgewell/trace-mapping/0.3.17: resolution: {integrity: sha512-MCNzAp77qzKca9+W/+I0+sEpaUnZoeasnghNeVc41VZCEKaCH73Vq3BZZ/SzWIgrqE4H4ceI+p+b6C0mHf9T4g==} dependencies: '@jridgewell/resolve-uri': 3.1.0 '@jridgewell/sourcemap-codec': 1.4.14 - - /@lopatnov/rollup-plugin-uglify/2.1.5_tmhs7xnjcxrp2ultwy7bfacunu: - resolution: {integrity: sha512-Uw94Or2NKlnHJB0W6su1dwoA6uHaXCLJbnkgkYtjNUbroStygf8Y6JwoT4FKH4unnkp978a9fpmq6xFKHIjtyw==} - peerDependencies: - rollup: '>=1.0.0' - terser: '>=4.0.0' - dependencies: - '@rollup/pluginutils': 4.2.1 - core-js: 3.26.0 - rollup: 2.79.1 - terser: 5.15.1 dev: true /@nodelib/fs.scandir/2.1.5: @@ -1688,38 +731,21 @@ packages: resolution: {integrity: sha512-50/17A98tWUfQ176raKiOGXuYpLyyVMkxxG6oylzL3BPOlA6ADGdK7EYunSa4I064xerltq9TGXs8HmOk5E+vw==} dev: false - /@rollup/plugin-babel/6.0.2_vyv4jbhmcriklval33ak5sngky: - resolution: {integrity: sha512-Vnt8XIWYwCf3MD7qhBWYlP9pjSZvcE++nlPXhQYw6YNehl5742AzFbrV6h4BHb20VAOVUlIksVLymQCTwVCGDg==} + /@rollup/plugin-commonjs/23.0.3_rollup@2.79.1: + resolution: {integrity: sha512-31HxrT5emGfTyIfAs1lDQHj6EfYxTXcwtX5pIIhq+B/xZBNIqQ179d/CkYxlpYmFCxT78AeU4M8aL8Iv/IBxFA==} engines: {node: '>=14.0.0'} peerDependencies: - '@babel/core': ^7.0.0 - '@types/babel__core': ^7.1.9 - rollup: ^1.20.0||^2.0.0||^3.0.0 + rollup: ^2.68.0||^3.0.0 peerDependenciesMeta: - '@types/babel__core': - optional: true rollup: optional: true dependencies: - '@babel/core': 7.19.6 - '@babel/helper-module-imports': 7.18.6 '@rollup/pluginutils': 5.0.2_rollup@2.79.1 - rollup: 2.79.1 - dev: true - - /@rollup/plugin-commonjs/22.0.2_rollup@2.79.1: - resolution: {integrity: sha512-//NdP6iIwPbMTcazYsiBMbJW7gfmpHom33u1beiIoHDEM0Q9clvtQB1T0efvMqHeKsGohiHo97BCPCkBXdscwg==} - engines: {node: '>= 12.0.0'} - peerDependencies: - rollup: ^2.68.0 - dependencies: - '@rollup/pluginutils': 3.1.0_rollup@2.79.1 commondir: 1.0.1 estree-walker: 2.0.2 - glob: 7.2.3 + glob: 8.0.3 is-reference: 1.2.1 - magic-string: 0.25.9 - resolve: 1.22.1 + magic-string: 0.26.7 rollup: 2.79.1 dev: true @@ -1734,14 +760,17 @@ packages: rollup: 2.79.1 dev: true - /@rollup/plugin-node-resolve/13.3.0_rollup@2.79.1: - resolution: {integrity: sha512-Lus8rbUo1eEcnS4yTFKLZrVumLPY+YayBdWXgFSHYhTT2iJbMhoaaBL3xl5NCdeRytErGr8tZ0L71BMRmnlwSw==} - engines: {node: '>= 10.0.0'} + /@rollup/plugin-node-resolve/15.0.1_rollup@2.79.1: + resolution: {integrity: sha512-ReY88T7JhJjeRVbfCyNj+NXAG3IIsVMsX9b5/9jC98dRP8/yxlZdz7mHZbHk5zHr24wZZICS5AcXsFZAXYUQEg==} + engines: {node: '>=14.0.0'} peerDependencies: - rollup: ^2.42.0 + rollup: ^2.78.0||^3.0.0 + peerDependenciesMeta: + rollup: + optional: true dependencies: - '@rollup/pluginutils': 3.1.0_rollup@2.79.1 - '@types/resolve': 1.17.1 + '@rollup/pluginutils': 5.0.2_rollup@2.79.1 + '@types/resolve': 1.20.2 deepmerge: 4.2.2 is-builtin-module: 3.2.0 is-module: 1.0.0 @@ -1759,7 +788,7 @@ packages: optional: true dependencies: rollup: 2.79.1 - terser: 5.15.1 + terser: 5.16.1 dev: true /@rollup/pluginutils/3.1.0_rollup@2.79.1: @@ -1895,21 +924,19 @@ packages: /@types/node-int64/0.4.29: resolution: {integrity: sha512-rHXvenLTj/CcsmNAebaBOhxQ2MqEGl3yXZZcZ21XYR+gzGTTcpOy2N4IxpvTCz48loyQNatHvfn6GhIbbZ1R3Q==} dependencies: - '@types/node': 16.18.3 + '@types/node': 18.11.10 dev: true - /@types/node/16.18.3: - resolution: {integrity: sha512-jh6m0QUhIRcZpNv7Z/rpN+ZWXOicUUQbSoWks7Htkbb9IjFQj4kzcX/xFCkjstCj5flMsN8FiSvt+q+Tcs4Llg==} + /@types/node/18.11.10: + resolution: {integrity: sha512-juG3RWMBOqcOuXC643OAdSA525V44cVgGV6dUDuiFtss+8Fk5x1hI93Rsld43VeJVIeqlP9I7Fn9/qaVqoEAuQ==} dev: true /@types/q/1.5.5: resolution: {integrity: sha512-L28j2FcJfSZOnL1WBjDYp2vUHCeIFlyYI/53EwD/rKUBQ7MtUUfbQWiyKJGpcnv4/WgrhWsFKrcPstcAt/J0tQ==} dev: true - /@types/resolve/1.17.1: - resolution: {integrity: sha512-yy7HuzQhj0dhGpD8RLXSZWEkLsV9ibvxvi6EiJ3bkqLAO1RGo0WbkWQiwpRlSFymTJRz0d3k5LM3kkx8ArDbLw==} - dependencies: - '@types/node': 16.18.3 + /@types/resolve/1.20.2: + resolution: {integrity: sha512-60BCwRFOZCQhDncwQdxxeOEEkbc5dIMccYLwbxsS4TUNeVECQ/pBJ0j09mrHOl/JJvpRPGwO9SvE4nR2Nb/a4Q==} dev: true /@types/semver/7.3.13: @@ -1919,7 +946,7 @@ packages: /@types/thrift/0.10.11: resolution: {integrity: sha512-skAJTzEcz0RSKX/oooCz4nrLW+lgAq3Wy0imNRqwVpw2ODYKaQHg6iRA5Ig5tzvbFAWPUb9BcQWCf0Ul+IYyCw==} dependencies: - '@types/node': 16.18.3 + '@types/node': 18.11.10 '@types/node-int64': 0.4.29 '@types/q': 1.5.5 dev: true @@ -1932,8 +959,8 @@ packages: resolution: {integrity: sha512-oh8q2Zc32S6gd/j50GowEjKLoOVOwHP/bWVjKJInBwQqdOYMdPrf1oVlelTlyfFK3CKxL1uahMDAr+vy8T7yMQ==} dev: false - /@typescript-eslint/eslint-plugin/5.42.0_6xw5wg2354iw4zujk2f3vyfrzu: - resolution: {integrity: sha512-5TJh2AgL6+wpL8H/GTSjNb4WrjKoR2rqvFxR/DDTqYNk6uXn8BJMEcncLSpMbf/XV1aS0jAjYwn98uvVCiAywQ==} + /@typescript-eslint/eslint-plugin/5.45.0_czs5uoqkd3podpy6vgtsxfc7au: + resolution: {integrity: sha512-CXXHNlf0oL+Yg021cxgOdMHNTXD17rHkq7iW6RFHoybdFgQBjU3yIXhhcPpGwr1CjZlo6ET8C6tzX5juQoXeGA==} engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} peerDependencies: '@typescript-eslint/parser': ^5.0.0 @@ -1943,24 +970,24 @@ packages: typescript: optional: true dependencies: - '@typescript-eslint/parser': 5.42.0_wyqvi574yv7oiwfeinomdzmc3m - '@typescript-eslint/scope-manager': 5.42.0 - '@typescript-eslint/type-utils': 5.42.0_wyqvi574yv7oiwfeinomdzmc3m - '@typescript-eslint/utils': 5.42.0_wyqvi574yv7oiwfeinomdzmc3m + '@typescript-eslint/parser': 5.45.0_hsf322ms6xhhd4b5ne6lb74y4a + '@typescript-eslint/scope-manager': 5.45.0 + '@typescript-eslint/type-utils': 5.45.0_hsf322ms6xhhd4b5ne6lb74y4a + '@typescript-eslint/utils': 5.45.0_hsf322ms6xhhd4b5ne6lb74y4a debug: 4.3.4 - eslint: 8.26.0 - ignore: 5.2.0 + eslint: 8.28.0 + ignore: 5.2.1 natural-compare-lite: 1.4.0 regexpp: 3.2.0 semver: 7.3.8 - tsutils: 3.21.0_typescript@4.8.4 - typescript: 4.8.4 + tsutils: 3.21.0_typescript@4.9.3 + typescript: 4.9.3 transitivePeerDependencies: - supports-color dev: true - /@typescript-eslint/parser/5.42.0_wyqvi574yv7oiwfeinomdzmc3m: - resolution: {integrity: sha512-Ixh9qrOTDRctFg3yIwrLkgf33AHyEIn6lhyf5cCfwwiGtkWhNpVKlEZApi3inGQR/barWnY7qY8FbGKBO7p3JA==} + /@typescript-eslint/parser/5.45.0_hsf322ms6xhhd4b5ne6lb74y4a: + resolution: {integrity: sha512-brvs/WSM4fKUmF5Ot/gEve6qYiCMjm6w4HkHPfS6ZNmxTS0m0iNN4yOChImaCkqc1hRwFGqUyanMXuGal6oyyQ==} engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} peerDependencies: eslint: ^6.0.0 || ^7.0.0 || ^8.0.0 @@ -1969,26 +996,26 @@ packages: typescript: optional: true dependencies: - '@typescript-eslint/scope-manager': 5.42.0 - '@typescript-eslint/types': 5.42.0 - '@typescript-eslint/typescript-estree': 5.42.0_typescript@4.8.4 + '@typescript-eslint/scope-manager': 5.45.0 + '@typescript-eslint/types': 5.45.0 + '@typescript-eslint/typescript-estree': 5.45.0_typescript@4.9.3 debug: 4.3.4 - eslint: 8.26.0 - typescript: 4.8.4 + eslint: 8.28.0 + typescript: 4.9.3 transitivePeerDependencies: - supports-color dev: true - /@typescript-eslint/scope-manager/5.42.0: - resolution: {integrity: sha512-l5/3IBHLH0Bv04y+H+zlcLiEMEMjWGaCX6WyHE5Uk2YkSGAMlgdUPsT/ywTSKgu9D1dmmKMYgYZijObfA39Wow==} + /@typescript-eslint/scope-manager/5.45.0: + resolution: {integrity: sha512-noDMjr87Arp/PuVrtvN3dXiJstQR1+XlQ4R1EvzG+NMgXi8CuMCXpb8JqNtFHKceVSQ985BZhfRdowJzbv4yKw==} engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} dependencies: - '@typescript-eslint/types': 5.42.0 - '@typescript-eslint/visitor-keys': 5.42.0 + '@typescript-eslint/types': 5.45.0 + '@typescript-eslint/visitor-keys': 5.45.0 dev: true - /@typescript-eslint/type-utils/5.42.0_wyqvi574yv7oiwfeinomdzmc3m: - resolution: {integrity: sha512-HW14TXC45dFVZxnVW8rnUGnvYyRC0E/vxXShFCthcC9VhVTmjqOmtqj6H5rm9Zxv+ORxKA/1aLGD7vmlLsdlOg==} + /@typescript-eslint/type-utils/5.45.0_hsf322ms6xhhd4b5ne6lb74y4a: + resolution: {integrity: sha512-DY7BXVFSIGRGFZ574hTEyLPRiQIvI/9oGcN8t1A7f6zIs6ftbrU0nhyV26ZW//6f85avkwrLag424n+fkuoJ1Q==} engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} peerDependencies: eslint: '*' @@ -1997,23 +1024,23 @@ packages: typescript: optional: true dependencies: - '@typescript-eslint/typescript-estree': 5.42.0_typescript@4.8.4 - '@typescript-eslint/utils': 5.42.0_wyqvi574yv7oiwfeinomdzmc3m + '@typescript-eslint/typescript-estree': 5.45.0_typescript@4.9.3 + '@typescript-eslint/utils': 5.45.0_hsf322ms6xhhd4b5ne6lb74y4a debug: 4.3.4 - eslint: 8.26.0 - tsutils: 3.21.0_typescript@4.8.4 - typescript: 4.8.4 + eslint: 8.28.0 + tsutils: 3.21.0_typescript@4.9.3 + typescript: 4.9.3 transitivePeerDependencies: - supports-color dev: true - /@typescript-eslint/types/5.42.0: - resolution: {integrity: sha512-t4lzO9ZOAUcHY6bXQYRuu+3SSYdD9TS8ooApZft4WARt4/f2Cj/YpvbTe8A4GuhT4bNW72goDMOy7SW71mZwGw==} + /@typescript-eslint/types/5.45.0: + resolution: {integrity: sha512-QQij+u/vgskA66azc9dCmx+rev79PzX8uDHpsqSjEFtfF2gBUTRCpvYMh2gw2ghkJabNkPlSUCimsyBEQZd1DA==} engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} dev: true - /@typescript-eslint/typescript-estree/5.42.0_typescript@4.8.4: - resolution: {integrity: sha512-2O3vSq794x3kZGtV7i4SCWZWCwjEtkWfVqX4m5fbUBomOsEOyd6OAD1qU2lbvV5S8tgy/luJnOYluNyYVeOTTg==} + /@typescript-eslint/typescript-estree/5.45.0_typescript@4.9.3: + resolution: {integrity: sha512-maRhLGSzqUpFcZgXxg1qc/+H0bT36lHK4APhp0AEUVrpSwXiRAomm/JGjSG+kNUio5kAa3uekCYu/47cnGn5EQ==} engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} peerDependencies: typescript: '*' @@ -2021,140 +1048,124 @@ packages: typescript: optional: true dependencies: - '@typescript-eslint/types': 5.42.0 - '@typescript-eslint/visitor-keys': 5.42.0 + '@typescript-eslint/types': 5.45.0 + '@typescript-eslint/visitor-keys': 5.45.0 debug: 4.3.4 globby: 11.1.0 is-glob: 4.0.3 semver: 7.3.8 - tsutils: 3.21.0_typescript@4.8.4 - typescript: 4.8.4 + tsutils: 3.21.0_typescript@4.9.3 + typescript: 4.9.3 transitivePeerDependencies: - supports-color dev: true - /@typescript-eslint/utils/5.42.0_wyqvi574yv7oiwfeinomdzmc3m: - resolution: {integrity: sha512-JZ++3+h1vbeG1NUECXQZE3hg0kias9kOtcQr3+JVQ3whnjvKuMyktJAAIj6743OeNPnGBmjj7KEmiDL7qsdnCQ==} + /@typescript-eslint/utils/5.45.0_hsf322ms6xhhd4b5ne6lb74y4a: + resolution: {integrity: sha512-OUg2JvsVI1oIee/SwiejTot2OxwU8a7UfTFMOdlhD2y+Hl6memUSL4s98bpUTo8EpVEr0lmwlU7JSu/p2QpSvA==} engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} peerDependencies: eslint: ^6.0.0 || ^7.0.0 || ^8.0.0 dependencies: '@types/json-schema': 7.0.11 '@types/semver': 7.3.13 - '@typescript-eslint/scope-manager': 5.42.0 - '@typescript-eslint/types': 5.42.0 - '@typescript-eslint/typescript-estree': 5.42.0_typescript@4.8.4 - eslint: 8.26.0 + '@typescript-eslint/scope-manager': 5.45.0 + '@typescript-eslint/types': 5.45.0 + '@typescript-eslint/typescript-estree': 5.45.0_typescript@4.9.3 + eslint: 8.28.0 eslint-scope: 5.1.1 - eslint-utils: 3.0.0_eslint@8.26.0 + eslint-utils: 3.0.0_eslint@8.28.0 semver: 7.3.8 transitivePeerDependencies: - supports-color - typescript dev: true - /@typescript-eslint/visitor-keys/5.42.0: - resolution: {integrity: sha512-QHbu5Hf/2lOEOwy+IUw0GoSCuAzByTAWWrOTKzTzsotiUnWFpuKnXcAhC9YztAf2EElQ0VvIK+pHJUPkM0q7jg==} + /@typescript-eslint/visitor-keys/5.45.0: + resolution: {integrity: sha512-jc6Eccbn2RtQPr1s7th6jJWQHBHI6GBVQkCHoJFQ5UreaKm59Vxw+ynQUPPY2u2Amquc+7tmEoC2G52ApsGNNg==} engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} dependencies: - '@typescript-eslint/types': 5.42.0 + '@typescript-eslint/types': 5.45.0 eslint-visitor-keys: 3.3.0 dev: true - /@vitejs/plugin-legacy/2.3.0_terser@5.15.1+vite@3.2.2: - resolution: {integrity: sha512-Bh62i0gzQvvT8AeAAb78nOnqSYXypkRmQmOTImdPZ39meHR9e2une3AIFmVo4s1SDmcmJ6qj18Sa/lRc/14KaA==} - engines: {node: ^14.18.0 || >=16.0.0} - peerDependencies: - terser: ^5.4.0 - vite: ^3.0.0 - dependencies: - '@babel/standalone': 7.20.1 - core-js: 3.26.0 - magic-string: 0.26.7 - regenerator-runtime: 0.13.10 - systemjs: 6.13.0 - terser: 5.15.1 - vite: 3.2.2_terser@5.15.1 - dev: true - - /@vitejs/plugin-vue-jsx/2.1.0_vite@3.2.2+vue@3.2.41: - resolution: {integrity: sha512-vvL8MHKN0hUf5LE+/rCk1rduwzW6NihD6xEfM4s1gGCSWQFYd5zLdxBs++z3S7AV/ynr7Yig5Xp1Bm0wlB4IAA==} + /@vitejs/plugin-vue-jsx/2.1.1_vite@3.2.4+vue@3.2.45: + resolution: {integrity: sha512-JgDhxstQlwnHBvZ1BSnU5mbmyQ14/t5JhREc6YH5kWyu2QdAAOsLF6xgHoIWarj8tddaiwFrNzLbWJPudpXKYA==} engines: {node: ^14.18.0 || >=16.0.0} peerDependencies: vite: ^3.0.0 vue: ^3.0.0 dependencies: - '@babel/core': 7.19.6 - '@babel/plugin-transform-typescript': 7.20.0_@babel+core@7.19.6 - '@vue/babel-plugin-jsx': 1.1.1_@babel+core@7.19.6 - vite: 3.2.2_terser@5.15.1 - vue: 3.2.41 + '@babel/core': 7.20.5 + '@babel/plugin-transform-typescript': 7.20.2_@babel+core@7.20.5 + '@vue/babel-plugin-jsx': 1.1.1_@babel+core@7.20.5 + vite: 3.2.4 + vue: 3.2.45 transitivePeerDependencies: - supports-color dev: true - /@vitejs/plugin-vue/3.2.0_vite@3.2.2+vue@3.2.41: + /@vitejs/plugin-vue/3.2.0_vite@3.2.4+vue@3.2.45: resolution: {integrity: sha512-E0tnaL4fr+qkdCNxJ+Xd0yM31UwMkQje76fsDVBBUCoGOUPexu2VDUYHL8P4CwV+zMvWw6nlRw19OnRKmYAJpw==} engines: {node: ^14.18.0 || >=16.0.0} peerDependencies: vite: ^3.0.0 vue: ^3.2.25 dependencies: - vite: 3.2.2_terser@5.15.1 - vue: 3.2.41 + vite: 3.2.4 + vue: 3.2.45 - /@volar/language-core/1.0.9: - resolution: {integrity: sha512-5Fty3slLet6svXiJw2YxhYeo6c7wFdtILrql5bZymYLM+HbiZtJbryW1YnUEKAP7MO9Mbeh+TNH4Z0HFxHgIqw==} + /@volar/language-core/1.0.10: + resolution: {integrity: sha512-7WNzjvdUXjggEZvYu9EInABl4mvXtyiiaJDOJM+plHJT7xW5voLja0BrYYji6TUn8Q4HakLvTPpQddPLq134mg==} dependencies: - '@volar/source-map': 1.0.9 - '@vue/reactivity': 3.2.41 + '@volar/source-map': 1.0.10 + '@vue/reactivity': 3.2.45 muggle-string: 0.1.0 dev: true - /@volar/source-map/1.0.9: - resolution: {integrity: sha512-fazB/vy5ZEJ3yKx4fabJyGNI3CBkdLkfEIRVu6+1P3VixK0Mn+eqyUIkLBrzGYaeFM3GybhCLCvsVdNz0Fu/CQ==} + /@volar/source-map/1.0.10: + resolution: {integrity: sha512-jSZW1tfsvAOHlpoRy14zH9sdCYR4g8QcnCXRli8juFC2UHoVzVRKB6VdnXcx5wRAlIRXoiBpsU+pKminryKEBw==} dependencies: muggle-string: 0.1.0 dev: true - /@volar/typescript/1.0.9: - resolution: {integrity: sha512-dVziu+ShQUWuMukM6bvK2v2O446/gG6l1XkTh2vfkccw1IzjfbiP1TWQoNo1ipTfZOtu5YJGYAx+o5HNrGXWfQ==} + /@volar/typescript/1.0.10: + resolution: {integrity: sha512-Nd+u2Z2P1V+KiNBMLLK6wV4sswOOYBsjEHmgK29eENXtos1+gF2GWB908vvwmT75dmCtlYZ8No14lvCqXUAVdg==} dependencies: - '@volar/language-core': 1.0.9 + '@volar/language-core': 1.0.10 dev: true - /@volar/vue-language-core/1.0.9: - resolution: {integrity: sha512-tofNoR8ShPFenHT1YVMuvoXtXWwoQE+fiXVqSmW0dSKZqEDjWQ3YeXSd0a6aqyKaIbvR7kWWGp34WbpQlwf9Ww==} + /@volar/vue-language-core/1.0.10: + resolution: {integrity: sha512-m7pYXGwkpF9Bmuud73kGlAX31QUTwifYbgCenaqm3hGNh+SJebSkxzk4NJvabiGbA6ON3b5ayQZ/rbOEtdoghw==} dependencies: - '@volar/language-core': 1.0.9 - '@volar/source-map': 1.0.9 - '@vue/compiler-dom': 3.2.41 - '@vue/compiler-sfc': 3.2.41 - '@vue/reactivity': 3.2.41 - '@vue/shared': 3.2.41 - minimatch: 5.1.0 - vue-template-compiler: 2.7.13 + '@volar/language-core': 1.0.10 + '@volar/source-map': 1.0.10 + '@vue/compiler-dom': 3.2.45 + '@vue/compiler-sfc': 3.2.45 + '@vue/reactivity': 3.2.45 + '@vue/shared': 3.2.45 + minimatch: 5.1.1 + vue-template-compiler: 2.7.14 dev: true - /@volar/vue-typescript/1.0.9: - resolution: {integrity: sha512-ZLe4y9YNbviACa7uAMCilzxA76gbbSlKfjspXBzk6fCobd8QCIig+VyDYcjANIlm2HhgSCX8jYTzhCKlegh4mw==} + /@volar/vue-typescript/1.0.10: + resolution: {integrity: sha512-GjQ+mfIUljXGfkTmNrfNT8YYQY48mcOE5SJ190o6ENArzH9cqjmvPLo1nrdurbZOFwztwEDNye5N1/5aL9sZ1g==} dependencies: - '@volar/typescript': 1.0.9 - '@volar/vue-language-core': 1.0.9 + '@volar/typescript': 1.0.10 + '@volar/vue-language-core': 1.0.10 dev: true /@vue/babel-helper-vue-transform-on/1.0.2: resolution: {integrity: sha512-hz4R8tS5jMn8lDq6iD+yWL6XNB699pGIVLk7WSJnn1dbpjaazsjZQkieJoRX6gW5zpYSCFqQ7jUquPNY65tQYA==} dev: true - /@vue/babel-plugin-jsx/1.1.1_@babel+core@7.19.6: + /@vue/babel-plugin-jsx/1.1.1_@babel+core@7.20.5: resolution: {integrity: sha512-j2uVfZjnB5+zkcbc/zsOc0fSNGCMMjaEXP52wdwdIfn0qjFfEYpYZBFKFg+HHnQeJCVrjOeO0YxgaL7DMrym9w==} dependencies: '@babel/helper-module-imports': 7.18.6 - '@babel/plugin-syntax-jsx': 7.18.6_@babel+core@7.19.6 + '@babel/plugin-syntax-jsx': 7.18.6_@babel+core@7.20.5 '@babel/template': 7.18.10 - '@babel/traverse': 7.20.1 - '@babel/types': 7.20.0 + '@babel/traverse': 7.20.5 + '@babel/types': 7.20.5 '@vue/babel-helper-vue-transform-on': 1.0.2 camelcase: 6.3.0 html-tags: 3.2.0 @@ -2164,57 +1175,56 @@ packages: - supports-color dev: true - /@vue/compiler-core/3.2.41: - resolution: {integrity: sha512-oA4mH6SA78DT+96/nsi4p9DX97PHcNROxs51lYk7gb9Z4BPKQ3Mh+BLn6CQZBw857Iuhu28BfMSRHAlPvD4vlw==} + /@vue/compiler-core/3.2.45: + resolution: {integrity: sha512-rcMj7H+PYe5wBV3iYeUgbCglC+pbpN8hBLTJvRiK2eKQiWqu+fG9F+8sW99JdL4LQi7Re178UOxn09puSXvn4A==} dependencies: - '@babel/parser': 7.20.1 - '@vue/shared': 3.2.41 + '@babel/parser': 7.20.5 + '@vue/shared': 3.2.45 estree-walker: 2.0.2 source-map: 0.6.1 - /@vue/compiler-dom/3.2.41: - resolution: {integrity: sha512-xe5TbbIsonjENxJsYRbDJvthzqxLNk+tb3d/c47zgREDa/PCp6/Y4gC/skM4H6PIuX5DAxm7fFJdbjjUH2QTMw==} + /@vue/compiler-dom/3.2.45: + resolution: {integrity: sha512-tyYeUEuKqqZO137WrZkpwfPCdiiIeXYCcJ8L4gWz9vqaxzIQRccTSwSWZ/Axx5YR2z+LvpUbmPNXxuBU45lyRw==} dependencies: - '@vue/compiler-core': 3.2.41 - '@vue/shared': 3.2.41 + '@vue/compiler-core': 3.2.45 + '@vue/shared': 3.2.45 - /@vue/compiler-sfc/3.2.41: - resolution: {integrity: sha512-+1P2m5kxOeaxVmJNXnBskAn3BenbTmbxBxWOtBq3mQTCokIreuMULFantBUclP0+KnzNCMOvcnKinqQZmiOF8w==} + /@vue/compiler-sfc/3.2.45: + resolution: {integrity: sha512-1jXDuWah1ggsnSAOGsec8cFjT/K6TMZ0sPL3o3d84Ft2AYZi2jWJgRMjw4iaK0rBfA89L5gw427H4n1RZQBu6Q==} dependencies: - '@babel/parser': 7.20.1 - '@vue/compiler-core': 3.2.41 - '@vue/compiler-dom': 3.2.41 - '@vue/compiler-ssr': 3.2.41 - '@vue/reactivity-transform': 3.2.41 - '@vue/shared': 3.2.41 + '@babel/parser': 7.20.5 + '@vue/compiler-core': 3.2.45 + '@vue/compiler-dom': 3.2.45 + '@vue/compiler-ssr': 3.2.45 + '@vue/reactivity-transform': 3.2.45 + '@vue/shared': 3.2.45 estree-walker: 2.0.2 magic-string: 0.25.9 - postcss: 8.4.18 + postcss: 8.4.19 source-map: 0.6.1 - /@vue/compiler-ssr/3.2.41: - resolution: {integrity: sha512-Y5wPiNIiaMz/sps8+DmhaKfDm1xgj6GrH99z4gq2LQenfVQcYXmHIOBcs5qPwl7jaW3SUQWjkAPKMfQemEQZwQ==} + /@vue/compiler-ssr/3.2.45: + resolution: {integrity: sha512-6BRaggEGqhWht3lt24CrIbQSRD5O07MTmd+LjAn5fJj568+R9eUD2F7wMQJjX859seSlrYog7sUtrZSd7feqrQ==} dependencies: - '@vue/compiler-dom': 3.2.41 - '@vue/shared': 3.2.41 + '@vue/compiler-dom': 3.2.45 + '@vue/shared': 3.2.45 /@vue/devtools-api/6.4.5: resolution: {integrity: sha512-JD5fcdIuFxU4fQyXUu3w2KpAJHzTVdN+p4iOX2lMWSHMOoQdMAcpFLZzm9Z/2nmsoZ1a96QEhZ26e50xLBsgOQ==} - dev: false - /@vue/eslint-config-prettier/7.0.0_5t6g5rrqvlktilv3n3sw5svbdi: + /@vue/eslint-config-prettier/7.0.0_5qrnzwqb344w6up62gv3safeoi: resolution: {integrity: sha512-/CTc6ML3Wta1tCe1gUeO0EYnVXfo3nJXsIhZ8WJr3sov+cGASr6yuiibJTL6lmIBm7GobopToOuB3B6AWyV0Iw==} peerDependencies: eslint: '>= 7.28.0' prettier: '>= 2.0.0' dependencies: - eslint: 8.26.0 - eslint-config-prettier: 8.5.0_eslint@8.26.0 - eslint-plugin-prettier: 4.2.1_aniwkeyvlpmwkidetuytnokvcm - prettier: 2.7.1 + eslint: 8.28.0 + eslint-config-prettier: 8.5.0_eslint@8.28.0 + eslint-plugin-prettier: 4.2.1_cwlo2dingkvfydnaculr42urve + prettier: 2.8.0 dev: true - /@vue/eslint-config-typescript/11.0.2_a2woajwjjwk2j4x6hcq37wa7k4: + /@vue/eslint-config-typescript/11.0.2_5ma4o5namqj2syekqcvrgakwe4: resolution: {integrity: sha512-EiKud1NqlWmSapBFkeSrE994qpKx7/27uCGnhdqzllYDpQZroyX/O6bwjEpeuyKamvLbsGdO6PMR2faIf+zFnw==} engines: {node: ^14.17.0 || >=16.0.0} peerDependencies: @@ -2225,70 +1235,68 @@ packages: typescript: optional: true dependencies: - '@typescript-eslint/eslint-plugin': 5.42.0_6xw5wg2354iw4zujk2f3vyfrzu - '@typescript-eslint/parser': 5.42.0_wyqvi574yv7oiwfeinomdzmc3m - eslint: 8.26.0 - eslint-plugin-vue: 9.7.0_eslint@8.26.0 - typescript: 4.8.4 - vue-eslint-parser: 9.1.0_eslint@8.26.0 + '@typescript-eslint/eslint-plugin': 5.45.0_czs5uoqkd3podpy6vgtsxfc7au + '@typescript-eslint/parser': 5.45.0_hsf322ms6xhhd4b5ne6lb74y4a + eslint: 8.28.0 + eslint-plugin-vue: 9.8.0_eslint@8.28.0 + typescript: 4.9.3 + vue-eslint-parser: 9.1.0_eslint@8.28.0 transitivePeerDependencies: - supports-color dev: true - /@vue/reactivity-transform/3.2.41: - resolution: {integrity: sha512-mK5+BNMsL4hHi+IR3Ft/ho6Za+L3FA5j8WvreJ7XzHrqkPq8jtF/SMo7tuc9gHjLDwKZX1nP1JQOKo9IEAn54A==} + /@vue/reactivity-transform/3.2.45: + resolution: {integrity: sha512-BHVmzYAvM7vcU5WmuYqXpwaBHjsS8T63jlKGWVtHxAHIoMIlmaMyurUSEs1Zcg46M4AYT5MtB1U274/2aNzjJQ==} dependencies: - '@babel/parser': 7.20.1 - '@vue/compiler-core': 3.2.41 - '@vue/shared': 3.2.41 + '@babel/parser': 7.20.5 + '@vue/compiler-core': 3.2.45 + '@vue/shared': 3.2.45 estree-walker: 2.0.2 magic-string: 0.25.9 - /@vue/reactivity/3.2.41: - resolution: {integrity: sha512-9JvCnlj8uc5xRiQGZ28MKGjuCoPhhTwcoAdv3o31+cfGgonwdPNuvqAXLhlzu4zwqavFEG5tvaoINQEfxz+l6g==} + /@vue/reactivity/3.2.45: + resolution: {integrity: sha512-PRvhCcQcyEVohW0P8iQ7HDcIOXRjZfAsOds3N99X/Dzewy8TVhTCT4uXpAHfoKjVTJRA0O0K+6QNkDIZAxNi3A==} dependencies: - '@vue/shared': 3.2.41 + '@vue/shared': 3.2.45 - /@vue/runtime-core/3.2.41: - resolution: {integrity: sha512-0LBBRwqnI0p4FgIkO9q2aJBBTKDSjzhnxrxHYengkAF6dMOjeAIZFDADAlcf2h3GDALWnblbeprYYpItiulSVQ==} + /@vue/runtime-core/3.2.45: + resolution: {integrity: sha512-gzJiTA3f74cgARptqzYswmoQx0fIA+gGYBfokYVhF8YSXjWTUA2SngRzZRku2HbGbjzB6LBYSbKGIaK8IW+s0A==} dependencies: - '@vue/reactivity': 3.2.41 - '@vue/shared': 3.2.41 + '@vue/reactivity': 3.2.45 + '@vue/shared': 3.2.45 - /@vue/runtime-dom/3.2.41: - resolution: {integrity: sha512-U7zYuR1NVIP8BL6jmOqmapRAHovEFp7CSw4pR2FacqewXNGqZaRfHoNLQsqQvVQ8yuZNZtxSZy0FFyC70YXPpA==} + /@vue/runtime-dom/3.2.45: + resolution: {integrity: sha512-cy88YpfP5Ue2bDBbj75Cb4bIEZUMM/mAkDMfqDTpUYVgTf/kuQ2VQ8LebuZ8k6EudgH8pYhsGWHlY0lcxlvTwA==} dependencies: - '@vue/runtime-core': 3.2.41 - '@vue/shared': 3.2.41 + '@vue/runtime-core': 3.2.45 + '@vue/shared': 3.2.45 csstype: 2.6.21 - /@vue/server-renderer/3.2.41_vue@3.2.41: - resolution: {integrity: sha512-7YHLkfJdTlsZTV0ae5sPwl9Gn/EGr2hrlbcS/8naXm2CDpnKUwC68i1wGlrYAfIgYWL7vUZwk2GkYLQH5CvFig==} + /@vue/server-renderer/3.2.45_vue@3.2.45: + resolution: {integrity: sha512-ebiMq7q24WBU1D6uhPK//2OTR1iRIyxjF5iVq/1a5I1SDMDyDu4Ts6fJaMnjrvD3MqnaiFkKQj+LKAgz5WIK3g==} peerDependencies: - vue: 3.2.41 + vue: 3.2.45 dependencies: - '@vue/compiler-ssr': 3.2.41 - '@vue/shared': 3.2.41 - vue: 3.2.41 + '@vue/compiler-ssr': 3.2.45 + '@vue/shared': 3.2.45 + vue: 3.2.45 - /@vue/shared/3.2.41: - resolution: {integrity: sha512-W9mfWLHmJhkfAmV+7gDjcHeAWALQtgGT3JErxULl0oz6R6+3ug91I7IErs93eCFhPCZPHBs4QJS7YWEV7A3sxw==} + /@vue/shared/3.2.45: + resolution: {integrity: sha512-Ewzq5Yhimg7pSztDV+RH1UDKBzmtqieXQlpTVm2AwraoRL/Rks96mvd8Vgi7Lj+h+TH8dv7mXD3FRZR3TUvbSg==} - /@vue/tsconfig/0.1.3_@types+node@16.18.3: + /@vue/tsconfig/0.1.3: resolution: {integrity: sha512-kQVsh8yyWPvHpb8gIc9l/HIDiiVUy1amynLNpCy8p+FoCiZXCo6fQos5/097MmnNZc9AtseDsCrfkhqCrJ8Olg==} peerDependencies: '@types/node': '*' peerDependenciesMeta: '@types/node': optional: true - dependencies: - '@types/node': 16.18.3 dev: true /@vuedx/compiler-sfc/0.7.2: resolution: {integrity: sha512-20u9gN1OjAWPuJcBqvF0AOvjI76Zl/s+Q50e1oQhpjIxSsHM7+wprtLV2kiyOR3b49ABszTYWeGAkPoEHAtTyw==} dependencies: - '@vue/compiler-core': 3.2.41 + '@vue/compiler-core': 3.2.45 '@vuedx/shared': 0.7.5 '@vuedx/template-ast-types': 0.7.4 lru-cache: 6.0.0 @@ -2302,7 +1310,7 @@ packages: dependencies: '@babel/parser': 7.12.3 '@babel/types': 7.12.1 - '@vue/compiler-core': 3.2.41 + '@vue/compiler-core': 3.2.45 '@vuedx/compiler-sfc': 0.7.2 '@vuedx/shared': 0.7.5 '@vuedx/template-ast-types': 0.7.4 @@ -2335,7 +1343,7 @@ packages: /@vuedx/template-ast-types/0.7.4: resolution: {integrity: sha512-Vd+0Kj7H75S/2bph3WLjsEGrNX7N9pIv7IniW5noUIouc8Y5J9cpdUXG4gFh6aySkc2n0L2DadY33V8ydNA+rg==} dependencies: - '@vue/compiler-core': 3.2.41 + '@vue/compiler-core': 3.2.45 dev: true /@vuedx/transforms/0.7.6: @@ -2357,7 +1365,7 @@ packages: fast-glob: 3.2.12 minimist: 1.2.7 resolve-from: 5.0.0 - typescript: 4.8.4 + typescript: 4.9.3 transitivePeerDependencies: - supports-color dev: true @@ -2392,7 +1400,7 @@ packages: - supports-color dev: true - /@vueuse/core/8.9.4_vue@3.2.41: + /@vueuse/core/8.9.4_vue@3.2.45: resolution: {integrity: sha512-B/Mdj9TK1peFyWaPof+Zf/mP9XuGAngaJZBwPaXBvU3aCTZlx3ltlrFFFyMV4iGBwsjSCeUCgZrtkEj9dS2Y3Q==} peerDependencies: '@vue/composition-api': ^1.1.0 @@ -2405,18 +1413,18 @@ packages: dependencies: '@types/web-bluetooth': 0.0.14 '@vueuse/metadata': 8.9.4 - '@vueuse/shared': 8.9.4_vue@3.2.41 - vue: 3.2.41 - vue-demi: 0.13.11_vue@3.2.41 + '@vueuse/shared': 8.9.4_vue@3.2.45 + vue: 3.2.45 + vue-demi: 0.13.11_vue@3.2.45 dev: false - /@vueuse/core/9.4.0_vue@3.2.41: - resolution: {integrity: sha512-JzgenGj1ZF2BHOen5rsFiAyyI9sXAv7aKhNLlm9b7SwYQeKTcxTWdhudonURCSP3Egl9NQaRBzes2lv/1JUt/Q==} + /@vueuse/core/9.6.0_vue@3.2.45: + resolution: {integrity: sha512-qGUcjKQXHgN+jqXEgpeZGoxdCbIDCdVPz3QiF1uyecVGbMuM63o96I1GjYx5zskKgRI0FKSNsVWM7rwrRMTf6A==} dependencies: '@types/web-bluetooth': 0.0.16 - '@vueuse/metadata': 9.4.0 - '@vueuse/shared': 9.4.0_vue@3.2.41 - vue-demi: 0.13.11_vue@3.2.41 + '@vueuse/metadata': 9.6.0 + '@vueuse/shared': 9.6.0_vue@3.2.45 + vue-demi: 0.13.11_vue@3.2.45 transitivePeerDependencies: - '@vue/composition-api' - vue @@ -2426,11 +1434,11 @@ packages: resolution: {integrity: sha512-IwSfzH80bnJMzqhaapqJl9JRIiyQU0zsRGEgnxN6jhq7992cPUJIRfV+JHRIZXjYqbwt07E1gTEp0R0zPJ1aqw==} dev: false - /@vueuse/metadata/9.4.0: - resolution: {integrity: sha512-7GKMdGAsJyQJl35MYOz/RDpP0FxuiZBRDSN79QIPbdqYx4Sd0sVTnIC68KJ6Oln0t0SouvSUMvRHuno216Ud2Q==} + /@vueuse/metadata/9.6.0: + resolution: {integrity: sha512-sIC8R+kWkIdpi5X2z2Gk8TRYzmczDwHRhEFfCu2P+XW2JdPoXrziqsGpDDsN7ykBx4ilwieS7JUIweVGhvZ93w==} dev: false - /@vueuse/shared/8.9.4_vue@3.2.41: + /@vueuse/shared/8.9.4_vue@3.2.45: resolution: {integrity: sha512-wt+T30c4K6dGRMVqPddexEVLa28YwxW5OFIPmzUHICjphfAuBFTTdDoyqREZNDOFJZ44ARH1WWQNCUK8koJ+Ag==} peerDependencies: '@vue/composition-api': ^1.1.0 @@ -2441,14 +1449,14 @@ packages: vue: optional: true dependencies: - vue: 3.2.41 - vue-demi: 0.13.11_vue@3.2.41 + vue: 3.2.45 + vue-demi: 0.13.11_vue@3.2.45 dev: false - /@vueuse/shared/9.4.0_vue@3.2.41: - resolution: {integrity: sha512-fTuem51KwMCnqUKkI8B57qAIMcFovtGgsCtAeqxIzH3i6nE9VYge+gVfneNHAAy7lj8twbkNfqQSygOPJTm4tQ==} + /@vueuse/shared/9.6.0_vue@3.2.45: + resolution: {integrity: sha512-/eDchxYYhkHnFyrb00t90UfjCx94kRHxc7J1GtBCqCG4HyPMX+krV9XJgVtWIsAMaxKVU4fC8NSUviG1JkwhUQ==} dependencies: - vue-demi: 0.13.11_vue@3.2.41 + vue-demi: 0.13.11_vue@3.2.45 transitivePeerDependencies: - '@vue/composition-api' - vue @@ -2465,22 +1473,16 @@ packages: /acorn-node/1.8.2: resolution: {integrity: sha512-8mt+fslDufLYntIoPAaIMUe/lrbrehIiwmR3t2k9LljIzoigEPF27eLk2hy8zSGzmR/ogr7zbRKINMo1u0yh5A==} dependencies: - acorn: 7.3.1 - acorn-walk: 7.1.1 + acorn: 7.4.1 + acorn-walk: 7.2.0 xtend: 4.0.2 - /acorn-walk/7.1.1: - resolution: {integrity: sha512-wdlPY2tm/9XBr7QkKlq0WQVgiuGTX6YWPyRyBviSoScBuLfTVQhvwg6wJ369GJ/1nPfTLMfnrFIfjqVg6d+jQQ==} + /acorn-walk/7.2.0: + resolution: {integrity: sha512-OPdCF6GsMIP+Az+aWfAAOEt2/+iVDKE7oy6lJ098aoe59oAmK76qV6Gw60SbZ8jHuG2wH058GF4pLFbYamYrVA==} engines: {node: '>=0.4.0'} - /acorn/5.7.4: - resolution: {integrity: sha512-1D++VG7BhrtvQpNbBzovKNc1FLGGEE/oGe7b9xJm/RFHMBeUaUGpluV9RLjZa47YFdPcDAenEYuq9pQPcMdLJg==} - engines: {node: '>=0.4.0'} - hasBin: true - dev: true - - /acorn/7.3.1: - resolution: {integrity: sha512-tLc0wSnatxAQHVHUapaHdz72pi9KUyHjq5KyHjGg9Y8Ifdc79pTh2XvI6I1/chZbnM7QtNKzh66ooDogPZSleA==} + /acorn/7.4.1: + resolution: {integrity: sha512-nQyp0o1/mNdbTO1PO6kHkwSrmgZ0MT/jCCpNiwbUjGoRN4dlBhqJtoQuCnEOKzgTVwg0ZWiCoQy6SxMebQVh8A==} engines: {node: '>=0.4.0'} hasBin: true @@ -2494,6 +1496,7 @@ packages: resolution: {integrity: sha512-7zFpHzhnqYKrkYdUjF1HI1bzd0VygEGX8lFk4k5zVMqHEoES+P+7TKI+EvLO9WVMJ8eekdO0aDEK044xTXwPPA==} engines: {node: '>=0.4.0'} hasBin: true + dev: true /agent-base/6.0.2: resolution: {integrity: sha512-RZNwNclF7+MS/8bDg70amg32dyeZGZxiDuQmZxKLAlQjr3jGyLx+4Kkk58UO7D2QdgFIQCovuSuZESne6RG6XQ==} @@ -2551,8 +1554,8 @@ packages: color-convert: 2.0.1 dev: true - /anymatch/3.1.2: - resolution: {integrity: sha512-P43ePfOAIupkguHUycrc4qJ9kz8ZiuOUijaETwX7THt0Y/GNK7v0aa8rY816xWjZ7rJdA5XdMcpVFTKMq+RvWg==} + /anymatch/3.1.3: + resolution: {integrity: sha512-KMReFUr0B4t+D+OBkjR3KYqvocp2XaSzO55UcB6mgQMd3KbcE+mWTyvVV7D/zsdEbNnV6acZUutkiHQXvTr1Rw==} engines: {node: '>= 8'} dependencies: normalize-path: 3.0.0 @@ -2600,7 +1603,7 @@ packages: resolution: {integrity: sha512-csOlWGAcRFJaI6m+F2WKdnMKr4HhdhFVBk0H/QbJFMCr+uO2kwohwXQPxw/9OCxp05r5ghVBFSyioixx3gfkNQ==} dev: false - /autoprefixer/10.4.13_postcss@8.4.18: + /autoprefixer/10.4.13_postcss@8.4.19: resolution: {integrity: sha512-49vKpMqcZYsJjwotvt4+h/BCjJVnhGwcLpDt5xkcaOG3eLrG/HUYLagrihYsQ+qrIBgIzX1Rw7a6L8I/ZA1Atg==} engines: {node: ^10 || ^12 || >=14} hasBin: true @@ -2608,11 +1611,11 @@ packages: postcss: ^8.1.0 dependencies: browserslist: 4.21.4 - caniuse-lite: 1.0.30001429 + caniuse-lite: 1.0.30001435 fraction.js: 4.2.0 normalize-range: 0.1.2 picocolors: 1.0.0 - postcss: 8.4.18 + postcss: 8.4.19 postcss-value-parser: 4.2.0 dev: true @@ -2620,63 +1623,6 @@ packages: resolution: {integrity: sha512-DMD0KiN46eipeziST1LPP/STfDU0sufISXmjSgvVsoU2tqxctQeASejWcfNtxYKqETM1UxQ8sp2OrSBWpHY6sw==} engines: {node: '>= 0.4'} - /babel-helper-evaluate-path/0.5.0: - resolution: {integrity: sha512-mUh0UhS607bGh5wUMAQfOpt2JX2ThXMtppHRdRU1kL7ZLRWIXxoV2UIV1r2cAeeNeU1M5SB5/RSUgUxrK8yOkA==} - dev: true - - /babel-helper-mark-eval-scopes/0.4.3: - resolution: {integrity: sha512-+d/mXPP33bhgHkdVOiPkmYoeXJ+rXRWi7OdhwpyseIqOS8CmzHQXHUp/+/Qr8baXsT0kjGpMHHofHs6C3cskdA==} - dev: true - - /babel-helper-remove-or-void/0.4.3: - resolution: {integrity: sha512-eYNceYtcGKpifHDir62gHJadVXdg9fAhuZEXiRQnJJ4Yi4oUTpqpNY//1pM4nVyjjDMPYaC2xSf0I+9IqVzwdA==} - dev: true - - /babel-plugin-minify-dead-code-elimination/0.5.2: - resolution: {integrity: sha512-krq9Lwi0QIzyAlcNBXTL4usqUvevB4BzktdEsb8srcXC1AaYqRJiAQw6vdKdJSaXbz6snBvziGr6ch/aoRCfpA==} - dependencies: - babel-helper-evaluate-path: 0.5.0 - babel-helper-mark-eval-scopes: 0.4.3 - babel-helper-remove-or-void: 0.4.3 - lodash: 4.17.21 - dev: true - - /babel-plugin-polyfill-corejs2/0.3.3_@babel+core@7.19.6: - resolution: {integrity: sha512-8hOdmFYFSZhqg2C/JgLUQ+t52o5nirNwaWM2B9LWteozwIvM14VSwdsCAUET10qT+kmySAlseadmfeeSWFCy+Q==} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/compat-data': 7.20.1 - '@babel/core': 7.19.6 - '@babel/helper-define-polyfill-provider': 0.3.3_@babel+core@7.19.6 - semver: 6.3.0 - transitivePeerDependencies: - - supports-color - dev: true - - /babel-plugin-polyfill-corejs3/0.6.0_@babel+core@7.19.6: - resolution: {integrity: sha512-+eHqR6OPcBhJOGgsIar7xoAB1GcSwVUA3XjAd7HJNzOXT4wv6/H7KIdA/Nc60cvUlDbKApmqNvD1B1bzOt4nyA==} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.19.6 - '@babel/helper-define-polyfill-provider': 0.3.3_@babel+core@7.19.6 - core-js-compat: 3.26.0 - transitivePeerDependencies: - - supports-color - dev: true - - /babel-plugin-polyfill-regenerator/0.4.1_@babel+core@7.19.6: - resolution: {integrity: sha512-NtQGmyQDXjQqQ+IzRkBVwEOz9lQ4zxAQZgoAYEtU9dJjnl1Oc98qnN7jcp+bE7O7aYzVpavXE3/VKXNzUbh7aw==} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.19.6 - '@babel/helper-define-polyfill-provider': 0.3.3_@babel+core@7.19.6 - transitivePeerDependencies: - - supports-color - dev: true - /balanced-match/1.0.2: resolution: {integrity: sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==} dev: true @@ -2740,7 +1686,7 @@ packages: create-hash: 1.2.0 evp_bytestokey: 1.0.3 inherits: 2.0.4 - safe-buffer: 5.1.2 + safe-buffer: 5.2.1 /browserify-cipher/1.0.1: resolution: {integrity: sha512-sPhkz0ARKbf4rRQt2hTpAHqn47X3llLkUGn+xEJzLjwY8LRs2p0v7ljvI5EyoRO/mexrNunNECisZs+gw2zz1w==} @@ -2755,7 +1701,7 @@ packages: cipher-base: 1.0.4 des.js: 1.0.1 inherits: 2.0.4 - safe-buffer: 5.1.2 + safe-buffer: 5.2.1 /browserify-rsa/4.1.0: resolution: {integrity: sha512-AdEER0Hkspgno2aR97SAf6vi0y0k8NuOpGnVH3O99rcA5Q6sh8QxcngtHuJ6uXwnfAXNM4Gn1Gb7/MV1+Ymbog==} @@ -2786,17 +1732,14 @@ packages: engines: {node: ^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7} hasBin: true dependencies: - caniuse-lite: 1.0.30001429 + caniuse-lite: 1.0.30001435 electron-to-chromium: 1.4.284 node-releases: 2.0.6 update-browserslist-db: 1.0.10_browserslist@4.21.4 - /buffer-es6/4.9.3: - resolution: {integrity: sha512-Ibt+oXxhmeYJSsCkODPqNpPmyegefiD8rfutH1NYGhMZQhSp95Rz7haemgnJ6dxa6LT+JLLbtgOMORRluwKktw==} - dev: true - /buffer-from/1.1.2: resolution: {integrity: sha512-E+XQCRwSbaaiChtv6k6Dwgc+bx+Bs6vuKJHHl5kox/BaKbhiXzqQOwK4cO22yElGp2OCmjwVhT3HmxgyPGnJfQ==} + dev: true /buffer-xor/1.0.3: resolution: {integrity: sha512-571s0T7nZWK6vB67HI5dyUF7wXiNcfaPPPTl6zYCNApANjIvYJTg7hlud/+cJpdAhS7dVzqMLmfhfHR3rAcOjQ==} @@ -2839,13 +1782,13 @@ packages: resolution: {integrity: sha512-bsTwuIg/BZZK/vreVTYYbSWoe2F+71P7K5QGEX+pT250DZbfU1MQ5prOKpPR+LL6uWKK3KMwMCAS74QB3Um1uw==} dependencies: browserslist: 4.21.4 - caniuse-lite: 1.0.30001429 + caniuse-lite: 1.0.30001435 lodash.memoize: 4.1.2 lodash.uniq: 4.5.0 dev: false - /caniuse-lite/1.0.30001429: - resolution: {integrity: sha512-511ThLu1hF+5RRRt0zYCf2U2yRr9GPF6m5y90SBCWsvSoYoW7yAGlv/elyPaNfvGCkp6kj/KFZWU0BMA69Prsg==} + /caniuse-lite/1.0.30001435: + resolution: {integrity: sha512-kdCkUTjR+v4YAJelyiDTqiu82BDr4W4CP5sgTA0ZBmqn30XfS2ZghPLMowik9TPhS+psWJiUNxsqLyurDbmutA==} /chalk/2.4.2: resolution: {integrity: sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==} @@ -2881,7 +1824,7 @@ packages: resolution: {integrity: sha512-Dr3sfKRP6oTcjf2JmUmFJfeVMvXBdegxB0iVQ5eb2V10uFJUCAS8OByZdVAyVb8xXNz3GjjTgj9kLWsZTqE6kw==} engines: {node: '>= 8.10.0'} dependencies: - anymatch: 3.1.2 + anymatch: 3.1.3 braces: 3.0.2 glob-parent: 5.1.2 is-binary-path: 2.1.0 @@ -2897,12 +1840,6 @@ packages: inherits: 2.0.4 safe-buffer: 5.2.1 - /class-names/1.0.0: - resolution: {integrity: sha512-AQL0OLcu6D5hTwPcY78UgQ0JMS5cR1eYFV60C6V9WNMKVgyXi+CSGYuuWUAVo/6+Z2JRk6VBTn1XO5U94SqBww==} - dependencies: - classnames: 2.3.2 - dev: true - /class-validator/0.13.2: resolution: {integrity: sha512-yBUcQy07FPlGzUjoLuUfIOXzgynnQPPruyK1Ge2B74k9ROwnle1E+NxLWnUv5OLU8hA/qL5leAE9XnXq3byaBw==} dependencies: @@ -2910,9 +1847,6 @@ packages: validator: 13.7.0 dev: true - /classnames/2.3.2: - resolution: {integrity: sha512-CSbhY4cFEJRe6/GQzIk5qXZ4Jeg5pcsP7b5peFSDpffpe1cqjASH/n9UTjBwOp6XpMSTwQ8Za2K5V02ueA7Tmw==} - /cliui/7.0.4: resolution: {integrity: sha512-OcRE68cOsVMXp1Yvonl/fzkQOyjLSu/8bhPDfQt0e0/Eb283TKP20Fs2MqoPsr9SwA595rRCA+QMzYc9nBP+JQ==} dependencies: @@ -2921,28 +1855,6 @@ packages: wrap-ansi: 7.0.0 dev: true - /clone-buffer/1.0.0: - resolution: {integrity: sha512-KLLTJWrvwIP+OPfMn0x2PheDEP20RPUcGXj/ERegTgdmPEZylALQldygiqrPPu8P45uNuPs7ckmReLY6v/iA5g==} - engines: {node: '>= 0.10'} - dev: true - - /clone-stats/1.0.0: - resolution: {integrity: sha512-au6ydSpg6nsrigcZ4m8Bc9hxjeW+GJ8xh5G3BJCMt4WXe1H10UNaVOamqQTmrx1kjVuxAHIQSNU6hY4Nsn9/ag==} - dev: true - - /clone/2.1.2: - resolution: {integrity: sha512-3Pe/CF1Nn94hyhIYpjtiLhdCoEoz0DqQ+988E9gmeEdQZlojxnOb74wctFyuwWQHzqyf9X7C7MG8juUpqBJT8w==} - engines: {node: '>=0.8'} - dev: true - - /cloneable-readable/1.1.3: - resolution: {integrity: sha512-2EF8zTQOxYq70Y4XKtorQupqF0m49MBz2/yf5Bj+MHjvpG3Hy7sImifnqD6UA+TKYxeSV+u6qqQPawN5UvnpKQ==} - dependencies: - inherits: 2.0.4 - process-nextick-args: 2.0.1 - readable-stream: 2.3.7 - dev: true - /color-convert/1.9.3: resolution: {integrity: sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg==} dependencies: @@ -2969,6 +1881,7 @@ packages: /commander/2.20.3: resolution: {integrity: sha512-GpVkmM8vF2vQUkj2LvZmD35JxeJOLCwJ9cUkugyk2nuhbv3+mJvpLYYt+0+USMxE+oj+ey/lJEnhZw75x/OMcQ==} + dev: true /commander/7.2.0: resolution: {integrity: sha512-QrWXB+ZQSVPmIWIhtEO9H+gwHaMGYiF5ChvoJ+K9ZGHG/sVsa6yiesAD1GC/x46sET00Xlwo1u49RVVVzvcSkw==} @@ -3016,17 +1929,6 @@ packages: yargs: 16.2.0 dev: true - /core-js-compat/3.26.0: - resolution: {integrity: sha512-piOX9Go+Z4f9ZiBFLnZ5VrOpBl0h7IGCkiFUN11QTe6LjAvOT3ifL/5TdoizMh99hcGy5SoLyWbapIY/PIb/3A==} - dependencies: - browserslist: 4.21.4 - dev: true - - /core-js/3.26.0: - resolution: {integrity: sha512-+DkDrhoR4Y0PxDz6rurahuB+I45OsEUv8E1maPTB6OuHRohMMcznBq9TMpdpDMm/hUPob/mJJS3PqgbHpMTQgw==} - requiresBuild: true - dev: true - /core-util-is/1.0.3: resolution: {integrity: sha512-ZQBvi1DcpJ4GDqanjucZ2Hj3wEO5pZDS89BWbkcrvdxksJorwUDDZamX9ldFkp9aw2lmBDLgkObEA4DWNJ9FYQ==} dev: true @@ -3053,7 +1955,7 @@ packages: create-hash: 1.2.0 inherits: 2.0.4 ripemd160: 2.0.2 - safe-buffer: 5.1.2 + safe-buffer: 5.2.1 sha.js: 2.4.11 /create-require/1.1.1: @@ -3087,13 +1989,13 @@ packages: randombytes: 2.1.0 randomfill: 1.0.4 - /css-declaration-sorter/6.3.1_postcss@8.4.18: + /css-declaration-sorter/6.3.1_postcss@8.4.19: resolution: {integrity: sha512-fBffmak0bPAnyqc/HO8C3n2sHrp9wcqQz6ES9koRF2/mLOVAx9zIQ3Y7R29sYCteTPqMCwns4WYQoCX91Xl3+w==} engines: {node: ^10 || ^12 || >=14} peerDependencies: postcss: ^8.0.9 dependencies: - postcss: 8.4.18 + postcss: 8.4.19 dev: false /css-select/4.3.0: @@ -3124,62 +2026,62 @@ packages: engines: {node: '>=4'} hasBin: true - /cssnano-preset-default/5.2.13_postcss@8.4.18: + /cssnano-preset-default/5.2.13_postcss@8.4.19: resolution: {integrity: sha512-PX7sQ4Pb+UtOWuz8A1d+Rbi+WimBIxJTRyBdgGp1J75VU0r/HFQeLnMYgHiCAp6AR4rqrc7Y4R+1Rjk3KJz6DQ==} engines: {node: ^10 || ^12 || >=14.0} peerDependencies: postcss: ^8.2.15 dependencies: - css-declaration-sorter: 6.3.1_postcss@8.4.18 - cssnano-utils: 3.1.0_postcss@8.4.18 - postcss: 8.4.18 - postcss-calc: 8.2.4_postcss@8.4.18 - postcss-colormin: 5.3.0_postcss@8.4.18 - postcss-convert-values: 5.1.3_postcss@8.4.18 - postcss-discard-comments: 5.1.2_postcss@8.4.18 - postcss-discard-duplicates: 5.1.0_postcss@8.4.18 - postcss-discard-empty: 5.1.1_postcss@8.4.18 - postcss-discard-overridden: 5.1.0_postcss@8.4.18 - postcss-merge-longhand: 5.1.7_postcss@8.4.18 - postcss-merge-rules: 5.1.3_postcss@8.4.18 - postcss-minify-font-values: 5.1.0_postcss@8.4.18 - postcss-minify-gradients: 5.1.1_postcss@8.4.18 - postcss-minify-params: 5.1.4_postcss@8.4.18 - postcss-minify-selectors: 5.2.1_postcss@8.4.18 - postcss-normalize-charset: 5.1.0_postcss@8.4.18 - postcss-normalize-display-values: 5.1.0_postcss@8.4.18 - postcss-normalize-positions: 5.1.1_postcss@8.4.18 - postcss-normalize-repeat-style: 5.1.1_postcss@8.4.18 - postcss-normalize-string: 5.1.0_postcss@8.4.18 - postcss-normalize-timing-functions: 5.1.0_postcss@8.4.18 - postcss-normalize-unicode: 5.1.1_postcss@8.4.18 - postcss-normalize-url: 5.1.0_postcss@8.4.18 - postcss-normalize-whitespace: 5.1.1_postcss@8.4.18 - postcss-ordered-values: 5.1.3_postcss@8.4.18 - postcss-reduce-initial: 5.1.1_postcss@8.4.18 - postcss-reduce-transforms: 5.1.0_postcss@8.4.18 - postcss-svgo: 5.1.0_postcss@8.4.18 - postcss-unique-selectors: 5.1.1_postcss@8.4.18 + css-declaration-sorter: 6.3.1_postcss@8.4.19 + cssnano-utils: 3.1.0_postcss@8.4.19 + postcss: 8.4.19 + postcss-calc: 8.2.4_postcss@8.4.19 + postcss-colormin: 5.3.0_postcss@8.4.19 + postcss-convert-values: 5.1.3_postcss@8.4.19 + postcss-discard-comments: 5.1.2_postcss@8.4.19 + postcss-discard-duplicates: 5.1.0_postcss@8.4.19 + postcss-discard-empty: 5.1.1_postcss@8.4.19 + postcss-discard-overridden: 5.1.0_postcss@8.4.19 + postcss-merge-longhand: 5.1.7_postcss@8.4.19 + postcss-merge-rules: 5.1.3_postcss@8.4.19 + postcss-minify-font-values: 5.1.0_postcss@8.4.19 + postcss-minify-gradients: 5.1.1_postcss@8.4.19 + postcss-minify-params: 5.1.4_postcss@8.4.19 + postcss-minify-selectors: 5.2.1_postcss@8.4.19 + postcss-normalize-charset: 5.1.0_postcss@8.4.19 + postcss-normalize-display-values: 5.1.0_postcss@8.4.19 + postcss-normalize-positions: 5.1.1_postcss@8.4.19 + postcss-normalize-repeat-style: 5.1.1_postcss@8.4.19 + postcss-normalize-string: 5.1.0_postcss@8.4.19 + postcss-normalize-timing-functions: 5.1.0_postcss@8.4.19 + postcss-normalize-unicode: 5.1.1_postcss@8.4.19 + postcss-normalize-url: 5.1.0_postcss@8.4.19 + postcss-normalize-whitespace: 5.1.1_postcss@8.4.19 + postcss-ordered-values: 5.1.3_postcss@8.4.19 + postcss-reduce-initial: 5.1.1_postcss@8.4.19 + postcss-reduce-transforms: 5.1.0_postcss@8.4.19 + postcss-svgo: 5.1.0_postcss@8.4.19 + postcss-unique-selectors: 5.1.1_postcss@8.4.19 dev: false - /cssnano-utils/3.1.0_postcss@8.4.18: + /cssnano-utils/3.1.0_postcss@8.4.19: resolution: {integrity: sha512-JQNR19/YZhz4psLX/rQ9M83e3z2Wf/HdJbryzte4a3NSuafyp9w/I4U+hx5C2S9g41qlstH7DEWnZaaj83OuEA==} engines: {node: ^10 || ^12 || >=14.0} peerDependencies: postcss: ^8.2.15 dependencies: - postcss: 8.4.18 + postcss: 8.4.19 dev: false - /cssnano/5.1.14_postcss@8.4.18: + /cssnano/5.1.14_postcss@8.4.19: resolution: {integrity: sha512-Oou7ihiTocbKqi0J1bB+TRJIQX5RMR3JghA8hcWSw9mjBLQ5Y3RWqEDoYG3sRNlAbCIXpqMoZGbq5KDR3vdzgw==} engines: {node: ^10 || ^12 || >=14.0} peerDependencies: postcss: ^8.2.15 dependencies: - cssnano-preset-default: 5.2.13_postcss@8.4.18 + cssnano-preset-default: 5.2.13_postcss@8.4.19 lilconfig: 2.0.6 - postcss: 8.4.18 + postcss: 8.4.19 yaml: 1.10.2 dev: false @@ -3328,10 +2230,6 @@ packages: resolution: {integrity: sha512-p92if5Nz619I0w+akJrLZH0MX0Pb5DX39XOwQTtXSdQQOaYH03S1uIQp4mhOZtAXrxq4ViO67YTiLBo2638o9A==} dev: false - /es-module-lexer/1.1.0: - resolution: {integrity: sha512-fJg+1tiyEeS8figV+fPcPpm8WqJEflG3yPU0NOm5xMvrNkuiy7HzX/Ljng4Y0hAoiw4/3hQTCFYw+ub8+a2pRA==} - dev: true - /es6-object-assign/1.1.0: resolution: {integrity: sha512-MEl9uirslVwqQU369iHNWZXsI8yaZYGg/D65aOgZkeyFJwHYSxilf7rQzXKI7DdDuBPrBXbfk3sl9hJhmd5AUw==} @@ -3344,8 +2242,8 @@ packages: dev: true optional: true - /esbuild-android-64/0.15.13: - resolution: {integrity: sha512-yRorukXBlokwTip+Sy4MYskLhJsO0Kn0/Fj43s1krVblfwP+hMD37a4Wmg139GEsMLl+vh8WXp2mq/cTA9J97g==} + /esbuild-android-64/0.15.16: + resolution: {integrity: sha512-Vwkv/sT0zMSgPSVO3Jlt1pUbnZuOgtOQJkJkyyJFAlLe7BiT8e9ESzo0zQSx4c3wW4T6kGChmKDPMbWTgtliQA==} engines: {node: '>=12'} cpu: [x64] os: [android] @@ -3361,8 +2259,8 @@ packages: dev: true optional: true - /esbuild-android-arm64/0.15.13: - resolution: {integrity: sha512-TKzyymLD6PiVeyYa4c5wdPw87BeAiTXNtK6amWUcXZxkV51gOk5u5qzmDaYSwiWeecSNHamFsaFjLoi32QR5/w==} + /esbuild-android-arm64/0.15.16: + resolution: {integrity: sha512-lqfKuofMExL5niNV3gnhMUYacSXfsvzTa/58sDlBET/hCOG99Zmeh+lz6kvdgvGOsImeo6J9SW21rFCogNPLxg==} engines: {node: '>=12'} cpu: [arm64] os: [android] @@ -3378,8 +2276,8 @@ packages: dev: true optional: true - /esbuild-darwin-64/0.15.13: - resolution: {integrity: sha512-WAx7c2DaOS6CrRcoYCgXgkXDliLnFv3pQLV6GeW1YcGEZq2Gnl8s9Pg7ahValZkpOa0iE/ojRVQ87sbUhF1Cbg==} + /esbuild-darwin-64/0.15.16: + resolution: {integrity: sha512-wo2VWk/n/9V2TmqUZ/KpzRjCEcr00n7yahEdmtzlrfQ3lfMCf3Wa+0sqHAbjk3C6CKkR3WKK/whkMq5Gj4Da9g==} engines: {node: '>=12'} cpu: [x64] os: [darwin] @@ -3395,8 +2293,8 @@ packages: dev: true optional: true - /esbuild-darwin-arm64/0.15.13: - resolution: {integrity: sha512-U6jFsPfSSxC3V1CLiQqwvDuj3GGrtQNB3P3nNC3+q99EKf94UGpsG9l4CQ83zBs1NHrk1rtCSYT0+KfK5LsD8A==} + /esbuild-darwin-arm64/0.15.16: + resolution: {integrity: sha512-fMXaUr5ou0M4WnewBKsspMtX++C1yIa3nJ5R2LSbLCfJT3uFdcRoU/NZjoM4kOMKyOD9Sa/2vlgN8G07K3SJnw==} engines: {node: '>=12'} cpu: [arm64] os: [darwin] @@ -3412,8 +2310,8 @@ packages: dev: true optional: true - /esbuild-freebsd-64/0.15.13: - resolution: {integrity: sha512-whItJgDiOXaDG/idy75qqevIpZjnReZkMGCgQaBWZuKHoElDJC1rh7MpoUgupMcdfOd+PgdEwNQW9DAE6i8wyA==} + /esbuild-freebsd-64/0.15.16: + resolution: {integrity: sha512-UzIc0xlRx5x9kRuMr+E3+hlSOxa/aRqfuMfiYBXu2jJ8Mzej4lGL7+o6F5hzhLqWfWm1GWHNakIdlqg1ayaTNQ==} engines: {node: '>=12'} cpu: [x64] os: [freebsd] @@ -3429,8 +2327,8 @@ packages: dev: true optional: true - /esbuild-freebsd-arm64/0.15.13: - resolution: {integrity: sha512-6pCSWt8mLUbPtygv7cufV0sZLeylaMwS5Fznj6Rsx9G2AJJsAjQ9ifA+0rQEIg7DwJmi9it+WjzNTEAzzdoM3Q==} + /esbuild-freebsd-arm64/0.15.16: + resolution: {integrity: sha512-8xyiYuGc0DLZphFQIiYaLHlfoP+hAN9RHbE+Ibh8EUcDNHAqbQgUrQg7pE7Bo00rXmQ5Ap6KFgcR0b4ALZls1g==} engines: {node: '>=12'} cpu: [arm64] os: [freebsd] @@ -3446,8 +2344,8 @@ packages: dev: true optional: true - /esbuild-linux-32/0.15.13: - resolution: {integrity: sha512-VbZdWOEdrJiYApm2kkxoTOgsoCO1krBZ3quHdYk3g3ivWaMwNIVPIfEE0f0XQQ0u5pJtBsnk2/7OPiCFIPOe/w==} + /esbuild-linux-32/0.15.16: + resolution: {integrity: sha512-iGijUTV+0kIMyUVoynK0v+32Oi8yyp0xwMzX69GX+5+AniNy/C/AL1MjFTsozRp/3xQPl7jVux/PLe2ds10/2w==} engines: {node: '>=12'} cpu: [ia32] os: [linux] @@ -3463,8 +2361,8 @@ packages: dev: true optional: true - /esbuild-linux-64/0.15.13: - resolution: {integrity: sha512-rXmnArVNio6yANSqDQlIO4WiP+Cv7+9EuAHNnag7rByAqFVuRusLbGi2697A5dFPNXoO//IiogVwi3AdcfPC6A==} + /esbuild-linux-64/0.15.16: + resolution: {integrity: sha512-tuSOjXdLw7VzaUj89fIdAaQT7zFGbKBcz4YxbWrOiXkwscYgE7HtTxUavreBbnRkGxKwr9iT/gmeJWNm4djy/g==} engines: {node: '>=12'} cpu: [x64] os: [linux] @@ -3480,8 +2378,8 @@ packages: dev: true optional: true - /esbuild-linux-arm/0.15.13: - resolution: {integrity: sha512-Ac6LpfmJO8WhCMQmO253xX2IU2B3wPDbl4IvR0hnqcPrdfCaUa2j/lLMGTjmQ4W5JsJIdHEdW12dG8lFS0MbxQ==} + /esbuild-linux-arm/0.15.16: + resolution: {integrity: sha512-XKcrxCEXDTOuoRj5l12tJnkvuxXBMKwEC5j0JISw3ziLf0j4zIwXbKbTmUrKFWbo6ZgvNpa7Y5dnbsjVvH39bQ==} engines: {node: '>=12'} cpu: [arm] os: [linux] @@ -3497,8 +2395,8 @@ packages: dev: true optional: true - /esbuild-linux-arm64/0.15.13: - resolution: {integrity: sha512-alEMGU4Z+d17U7KQQw2IV8tQycO6T+rOrgW8OS22Ua25x6kHxoG6Ngry6Aq6uranC+pNWNMB6aHFPh7aTQdORQ==} + /esbuild-linux-arm64/0.15.16: + resolution: {integrity: sha512-mPYksnfHnemNrvjrDhZyixL/AfbJN0Xn9S34ZOHYdh6/jJcNd8iTsv3JwJoEvTJqjMggjMhGUPJAdjnFBHoH8A==} engines: {node: '>=12'} cpu: [arm64] os: [linux] @@ -3514,8 +2412,8 @@ packages: dev: true optional: true - /esbuild-linux-mips64le/0.15.13: - resolution: {integrity: sha512-47PgmyYEu+yN5rD/MbwS6DxP2FSGPo4Uxg5LwIdxTiyGC2XKwHhHyW7YYEDlSuXLQXEdTO7mYe8zQ74czP7W8A==} + /esbuild-linux-mips64le/0.15.16: + resolution: {integrity: sha512-kSJO2PXaxfm0pWY39+YX+QtpFqyyrcp0ZeI8QPTrcFVQoWEPiPVtOfTZeS3ZKedfH+Ga38c4DSzmKMQJocQv6A==} engines: {node: '>=12'} cpu: [mips64el] os: [linux] @@ -3531,8 +2429,8 @@ packages: dev: true optional: true - /esbuild-linux-ppc64le/0.15.13: - resolution: {integrity: sha512-z6n28h2+PC1Ayle9DjKoBRcx/4cxHoOa2e689e2aDJSaKug3jXcQw7mM+GLg+9ydYoNzj8QxNL8ihOv/OnezhA==} + /esbuild-linux-ppc64le/0.15.16: + resolution: {integrity: sha512-NimPikwkBY0yGABw6SlhKrtT35sU4O23xkhlrTT/O6lSxv3Pm5iSc6OYaqVAHWkLdVf31bF4UDVFO+D990WpAA==} engines: {node: '>=12'} cpu: [ppc64] os: [linux] @@ -3548,8 +2446,8 @@ packages: dev: true optional: true - /esbuild-linux-riscv64/0.15.13: - resolution: {integrity: sha512-+Lu4zuuXuQhgLUGyZloWCqTslcCAjMZH1k3Xc9MSEJEpEFdpsSU0sRDXAnk18FKOfEjhu4YMGaykx9xjtpA6ow==} + /esbuild-linux-riscv64/0.15.16: + resolution: {integrity: sha512-ty2YUHZlwFOwp7pR+J87M4CVrXJIf5ZZtU/umpxgVJBXvWjhziSLEQxvl30SYfUPq0nzeWKBGw5i/DieiHeKfw==} engines: {node: '>=12'} cpu: [riscv64] os: [linux] @@ -3565,8 +2463,8 @@ packages: dev: true optional: true - /esbuild-linux-s390x/0.15.13: - resolution: {integrity: sha512-BMeXRljruf7J0TMxD5CIXS65y7puiZkAh+s4XFV9qy16SxOuMhxhVIXYLnbdfLrsYGFzx7U9mcdpFWkkvy/Uag==} + /esbuild-linux-s390x/0.15.16: + resolution: {integrity: sha512-VkZaGssvPDQtx4fvVdZ9czezmyWyzpQhEbSNsHZZN0BHvxRLOYAQ7sjay8nMQwYswP6O2KlZluRMNPYefFRs+w==} engines: {node: '>=12'} cpu: [s390x] os: [linux] @@ -3582,8 +2480,8 @@ packages: dev: true optional: true - /esbuild-netbsd-64/0.15.13: - resolution: {integrity: sha512-EHj9QZOTel581JPj7UO3xYbltFTYnHy+SIqJVq6yd3KkCrsHRbapiPb0Lx3EOOtybBEE9EyqbmfW1NlSDsSzvQ==} + /esbuild-netbsd-64/0.15.16: + resolution: {integrity: sha512-ElQ9rhdY51et6MJTWrCPbqOd/YuPowD7Cxx3ee8wlmXQQVW7UvQI6nSprJ9uVFQISqSF5e5EWpwWqXZsECLvXg==} engines: {node: '>=12'} cpu: [x64] os: [netbsd] @@ -3599,8 +2497,8 @@ packages: dev: true optional: true - /esbuild-openbsd-64/0.15.13: - resolution: {integrity: sha512-nkuDlIjF/sfUhfx8SKq0+U+Fgx5K9JcPq1mUodnxI0x4kBdCv46rOGWbuJ6eof2n3wdoCLccOoJAbg9ba/bT2w==} + /esbuild-openbsd-64/0.15.16: + resolution: {integrity: sha512-KgxMHyxMCT+NdLQE1zVJEsLSt2QQBAvJfmUGDmgEq8Fvjrf6vSKB00dVHUEDKcJwMID6CdgCpvYNt999tIYhqA==} engines: {node: '>=12'} cpu: [x64] os: [openbsd] @@ -3616,8 +2514,8 @@ packages: dev: true optional: true - /esbuild-sunos-64/0.15.13: - resolution: {integrity: sha512-jVeu2GfxZQ++6lRdY43CS0Tm/r4WuQQ0Pdsrxbw+aOrHQPHV0+LNOLnvbN28M7BSUGnJnHkHm2HozGgNGyeIRw==} + /esbuild-sunos-64/0.15.16: + resolution: {integrity: sha512-exSAx8Phj7QylXHlMfIyEfNrmqnLxFqLxdQF6MBHPdHAjT7fsKaX6XIJn+aQEFiOcE4X8e7VvdMCJ+WDZxjSRQ==} engines: {node: '>=12'} cpu: [x64] os: [sunos] @@ -3633,8 +2531,8 @@ packages: dev: true optional: true - /esbuild-windows-32/0.15.13: - resolution: {integrity: sha512-XoF2iBf0wnqo16SDq+aDGi/+QbaLFpkiRarPVssMh9KYbFNCqPLlGAWwDvxEVz+ywX6Si37J2AKm+AXq1kC0JA==} + /esbuild-windows-32/0.15.16: + resolution: {integrity: sha512-zQgWpY5pUCSTOwqKQ6/vOCJfRssTvxFuEkpB4f2VUGPBpdddZfdj8hbZuFRdZRPIVHvN7juGcpgCA/XCF37mAQ==} engines: {node: '>=12'} cpu: [ia32] os: [win32] @@ -3650,8 +2548,8 @@ packages: dev: true optional: true - /esbuild-windows-64/0.15.13: - resolution: {integrity: sha512-Et6htEfGycjDrtqb2ng6nT+baesZPYQIW+HUEHK4D1ncggNrDNk3yoboYQ5KtiVrw/JaDMNttz8rrPubV/fvPQ==} + /esbuild-windows-64/0.15.16: + resolution: {integrity: sha512-HjW1hHRLSncnM3MBCP7iquatHVJq9l0S2xxsHHj4yzf4nm9TU4Z7k4NkeMlD/dHQ4jPlQQhwcMvwbJiOefSuZw==} engines: {node: '>=12'} cpu: [x64] os: [win32] @@ -3667,8 +2565,8 @@ packages: dev: true optional: true - /esbuild-windows-arm64/0.15.13: - resolution: {integrity: sha512-3bv7tqntThQC9SWLRouMDmZnlOukBhOCTlkzNqzGCmrkCJI7io5LLjwJBOVY6kOUlIvdxbooNZwjtBvj+7uuVg==} + /esbuild-windows-arm64/0.15.16: + resolution: {integrity: sha512-oCcUKrJaMn04Vxy9Ekd8x23O8LoU01+4NOkQ2iBToKgnGj5eo1vU9i27NQZ9qC8NFZgnQQZg5oZWAejmbsppNA==} engines: {node: '>=12'} cpu: [arm64] os: [win32] @@ -3704,34 +2602,34 @@ packages: esbuild-windows-arm64: 0.14.54 dev: true - /esbuild/0.15.13: - resolution: {integrity: sha512-Cu3SC84oyzzhrK/YyN4iEVy2jZu5t2fz66HEOShHURcjSkOSAVL8C/gfUT+lDJxkVHpg8GZ10DD0rMHRPqMFaQ==} + /esbuild/0.15.16: + resolution: {integrity: sha512-o6iS9zxdHrrojjlj6pNGC2NAg86ECZqIETswTM5KmJitq+R1YmahhWtMumeQp9lHqJaROGnsBi2RLawGnfo5ZQ==} engines: {node: '>=12'} hasBin: true requiresBuild: true optionalDependencies: - '@esbuild/android-arm': 0.15.13 - '@esbuild/linux-loong64': 0.15.13 - esbuild-android-64: 0.15.13 - esbuild-android-arm64: 0.15.13 - esbuild-darwin-64: 0.15.13 - esbuild-darwin-arm64: 0.15.13 - esbuild-freebsd-64: 0.15.13 - esbuild-freebsd-arm64: 0.15.13 - esbuild-linux-32: 0.15.13 - esbuild-linux-64: 0.15.13 - esbuild-linux-arm: 0.15.13 - esbuild-linux-arm64: 0.15.13 - esbuild-linux-mips64le: 0.15.13 - esbuild-linux-ppc64le: 0.15.13 - esbuild-linux-riscv64: 0.15.13 - esbuild-linux-s390x: 0.15.13 - esbuild-netbsd-64: 0.15.13 - esbuild-openbsd-64: 0.15.13 - esbuild-sunos-64: 0.15.13 - esbuild-windows-32: 0.15.13 - esbuild-windows-64: 0.15.13 - esbuild-windows-arm64: 0.15.13 + '@esbuild/android-arm': 0.15.16 + '@esbuild/linux-loong64': 0.15.16 + esbuild-android-64: 0.15.16 + esbuild-android-arm64: 0.15.16 + esbuild-darwin-64: 0.15.16 + esbuild-darwin-arm64: 0.15.16 + esbuild-freebsd-64: 0.15.16 + esbuild-freebsd-arm64: 0.15.16 + esbuild-linux-32: 0.15.16 + esbuild-linux-64: 0.15.16 + esbuild-linux-arm: 0.15.16 + esbuild-linux-arm64: 0.15.16 + esbuild-linux-mips64le: 0.15.16 + esbuild-linux-ppc64le: 0.15.16 + esbuild-linux-riscv64: 0.15.16 + esbuild-linux-s390x: 0.15.16 + esbuild-netbsd-64: 0.15.16 + esbuild-openbsd-64: 0.15.16 + esbuild-sunos-64: 0.15.16 + esbuild-windows-32: 0.15.16 + esbuild-windows-64: 0.15.16 + esbuild-windows-arm64: 0.15.16 /escalade/3.1.1: resolution: {integrity: sha512-k0er2gUkLf8O0zKJiAhmkTnJlTvINGv7ygDNPbeIsX/TJjGJZHuh9B2UxbsaEkmlEo9MfhrSzmhIlhRlI2GXnw==} @@ -3747,16 +2645,42 @@ packages: engines: {node: '>=10'} dev: true - /eslint-config-prettier/8.5.0_eslint@8.26.0: + /eslint-config-prettier/8.5.0_eslint@8.28.0: resolution: {integrity: sha512-obmWKLUNCnhtQRKc+tmnYuQl0pFU1ibYJQ5BGhTVB08bHe9wC8qUeG7c08dj9XX+AuPj1YSGSQIHl1pnDHZR0Q==} hasBin: true peerDependencies: eslint: '>=7.0.0' dependencies: - eslint: 8.26.0 + eslint: 8.28.0 dev: true - /eslint-plugin-prettier/4.2.1_aniwkeyvlpmwkidetuytnokvcm: + /eslint-plugin-es/3.0.1_eslint@8.28.0: + resolution: {integrity: sha512-GUmAsJaN4Fc7Gbtl8uOBlayo2DqhwWvEzykMHSCZHU3XdJ+NSzzZcVhXh3VxX5icqQ+oQdIEawXX8xkR3mIFmQ==} + engines: {node: '>=8.10.0'} + peerDependencies: + eslint: '>=4.19.1' + dependencies: + eslint: 8.28.0 + eslint-utils: 2.1.0 + regexpp: 3.2.0 + dev: true + + /eslint-plugin-node/11.1.0_eslint@8.28.0: + resolution: {integrity: sha512-oUwtPJ1W0SKD0Tr+wqu92c5xuCeQqB3hSCHasn/ZgjFdA9iDGNkNf2Zi9ztY7X+hNuMib23LNGRm6+uN+KLE3g==} + engines: {node: '>=8.10.0'} + peerDependencies: + eslint: '>=5.16.0' + dependencies: + eslint: 8.28.0 + eslint-plugin-es: 3.0.1_eslint@8.28.0 + eslint-utils: 2.1.0 + ignore: 5.2.1 + minimatch: 3.1.2 + resolve: 1.22.1 + semver: 6.3.0 + dev: true + + /eslint-plugin-prettier/4.2.1_cwlo2dingkvfydnaculr42urve: resolution: {integrity: sha512-f/0rXLXUt0oFYs8ra4w49wYZBG5GKZpAYsJSm6rnYL5uVDjd+zowwMwVZHnAjf4edNrKpCDYfXDgmRE/Ak7QyQ==} engines: {node: '>=12.0.0'} peerDependencies: @@ -3767,25 +2691,25 @@ packages: eslint-config-prettier: optional: true dependencies: - eslint: 8.26.0 - eslint-config-prettier: 8.5.0_eslint@8.26.0 - prettier: 2.7.1 + eslint: 8.28.0 + eslint-config-prettier: 8.5.0_eslint@8.28.0 + prettier: 2.8.0 prettier-linter-helpers: 1.0.0 dev: true - /eslint-plugin-vue/9.7.0_eslint@8.26.0: - resolution: {integrity: sha512-DrOO3WZCZEwcLsnd3ohFwqCoipGRSTKTBTnLwdhqAbYZtzWl0o7D+D8ZhlmiZvABKTEl8AFsqH1GHGdybyoQmw==} + /eslint-plugin-vue/9.8.0_eslint@8.28.0: + resolution: {integrity: sha512-E/AXwcTzunyzM83C2QqDHxepMzvI2y6x+mmeYHbVDQlKFqmKYvRrhaVixEeeG27uI44p9oKDFiyCRw4XxgtfHA==} engines: {node: ^14.17.0 || >=16.0.0} peerDependencies: eslint: ^6.2.0 || ^7.0.0 || ^8.0.0 dependencies: - eslint: 8.26.0 - eslint-utils: 3.0.0_eslint@8.26.0 + eslint: 8.28.0 + eslint-utils: 3.0.0_eslint@8.28.0 natural-compare: 1.4.0 nth-check: 2.1.1 - postcss-selector-parser: 6.0.10 + postcss-selector-parser: 6.0.11 semver: 7.3.8 - vue-eslint-parser: 9.1.0_eslint@8.26.0 + vue-eslint-parser: 9.1.0_eslint@8.28.0 xml-name-validator: 4.0.0 transitivePeerDependencies: - supports-color @@ -3815,16 +2739,28 @@ packages: estraverse: 5.3.0 dev: true - /eslint-utils/3.0.0_eslint@8.26.0: + /eslint-utils/2.1.0: + resolution: {integrity: sha512-w94dQYoauyvlDc43XnGB8lU3Zt713vNChgt4EWwhXAP2XkBvndfxF0AgIqKOOasjPIPzj9JqgwkwbCYD0/V3Zg==} + engines: {node: '>=6'} + dependencies: + eslint-visitor-keys: 1.3.0 + dev: true + + /eslint-utils/3.0.0_eslint@8.28.0: resolution: {integrity: sha512-uuQC43IGctw68pJA1RgbQS8/NP7rch6Cwd4j3ZBtgo4/8Flj4eGE7ZYSZRN3iq5pVUv6GPdW5Z1RFleo84uLDA==} engines: {node: ^10.0.0 || ^12.0.0 || >= 14.0.0} peerDependencies: eslint: '>=5' dependencies: - eslint: 8.26.0 + eslint: 8.28.0 eslint-visitor-keys: 2.1.0 dev: true + /eslint-visitor-keys/1.3.0: + resolution: {integrity: sha512-6J72N8UNa462wa/KFODt/PJ3IU60SDpC3QXC1Hjc1BXXpfL2C9R5+AU7jhe0F6GREqVMh4Juu+NY7xn+6dipUQ==} + engines: {node: '>=4'} + dev: true + /eslint-visitor-keys/2.1.0: resolution: {integrity: sha512-0rSmRBzXgDzIsD6mGdJgevzgezI534Cer5L/vyMX0kHzT/jiB43jRhd9YUlMGYLQy2zprNmoT8qasCGtY+QaKw==} engines: {node: '>=10'} @@ -3840,8 +2776,8 @@ packages: engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} dev: true - /eslint/8.26.0: - resolution: {integrity: sha512-kzJkpaw1Bfwheq4VXUezFriD1GxszX6dUekM7Z3aC2o4hju+tsR/XyTC3RcoSD7jmy9VkPU3+N6YjVU2e96Oyg==} + /eslint/8.28.0: + resolution: {integrity: sha512-S27Di+EVyMxcHiwDrFzk8dJYAaD+/5SoWKxL1ri/71CRHsnJnRDPNt2Kzj24+MT9FDupf4aqqyqPrvI8MvQ4VQ==} engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} hasBin: true dependencies: @@ -3856,23 +2792,23 @@ packages: doctrine: 3.0.0 escape-string-regexp: 4.0.0 eslint-scope: 7.1.1 - eslint-utils: 3.0.0_eslint@8.26.0 + eslint-utils: 3.0.0_eslint@8.28.0 eslint-visitor-keys: 3.3.0 - espree: 9.4.0 + espree: 9.4.1 esquery: 1.4.0 esutils: 2.0.3 fast-deep-equal: 3.1.3 file-entry-cache: 6.0.1 find-up: 5.0.0 glob-parent: 6.0.2 - globals: 13.17.0 + globals: 13.18.0 grapheme-splitter: 1.0.4 - ignore: 5.2.0 + ignore: 5.2.1 import-fresh: 3.3.0 imurmurhash: 0.1.4 is-glob: 4.0.3 is-path-inside: 3.0.3 - js-sdsl: 4.1.5 + js-sdsl: 4.2.0 js-yaml: 4.1.0 json-stable-stringify-without-jsonify: 1.0.1 levn: 0.4.1 @@ -3888,8 +2824,8 @@ packages: - supports-color dev: true - /espree/9.4.0: - resolution: {integrity: sha512-DQmnRpLj7f6TgN/NYb0MTzJXL+vJF9h3pHy4JhCIs3zwcgez8xmGg3sXHcEO97BrmO2OSvCwMdfdlyl+E9KjOw==} + /espree/9.4.1: + resolution: {integrity: sha512-XwctdmTO6SIvCzd9810yyNzIrOrqNYV9Koizx4C/mRhf9uq0o4yHoCEU/670pOxOL/MSraektvSAji79kX90Vg==} engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} dependencies: acorn: 8.8.1 @@ -3927,10 +2863,6 @@ packages: engines: {node: '>=4.0'} dev: true - /estree-walker/0.5.2: - resolution: {integrity: sha512-XpCnW/AE10ws/kDAs37cngSkvgIR8aN3G0MS85m7dUpuK2EREo9VJ00uvw6Dg/hXEpfsE1I1TvJOJr+Z+TL+ig==} - dev: true - /estree-walker/0.6.1: resolution: {integrity: sha512-SqmZANLWS0mnatqbSfRP5g8OXZC12Fgg1IwNtLsyHDzJizORW4khDfjPqJZsemPWBB2uqykUah5YpQ6epsqC/w==} dev: true @@ -3939,10 +2871,6 @@ packages: resolution: {integrity: sha512-1fMXF3YP4pZZVozF8j/ZLfvnR8NSIljt56UhbZ5PeeDmmGHpgpdwQt7ITlGvYaQukCvuBRMLEiKiYC+oeIg4cg==} dev: true - /estree-walker/2.0.1: - resolution: {integrity: sha512-tF0hv+Yi2Ot1cwj9eYHtxC0jB9bmjacjQs6ZBTj82H8JwUywFuc+7E83NWfNMwHXZc11mjfFcVXPe9gEP4B8dg==} - dev: true - /estree-walker/2.0.2: resolution: {integrity: sha512-Rfkk/Mp/DL7JVje3u18FxFujQlTNR2q6QfMSMB7AvCBx91NGj/ba3kCfza0f6dVDbw7YlRf/nDrn7pQrCCyQ/w==} @@ -3967,7 +2895,7 @@ packages: resolution: {integrity: sha512-/f2Go4TognH/KvCISP7OUsHn85hT9nUkxxA9BEWxFn+Oj9o8ZNLm/40hdlgSLyuOimsrTKLUMEorQexp/aPQeA==} dependencies: md5.js: 1.3.5 - safe-buffer: 5.1.2 + safe-buffer: 5.2.1 /fast-deep-equal/3.1.3: resolution: {integrity: sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q==} @@ -4032,18 +2960,19 @@ packages: resolution: {integrity: sha512-5nqDSxl8nn5BSNxyR3n4I6eDmbolI6WT+QqR547RwxQapgjQBmtktdP+HTBb/a/zLsbzERTONyUB5pefh5TtjQ==} dev: true - /flowbite-vue/0.0.6_vyk56yvshhckmgqssku7qaflqi: + /flowbite-vue/0.0.6_6ug5zzzzqilqdgqukffqeuqwbu: resolution: {integrity: sha512-E9EcTyJnvxF991JMjBFjE0FEOTyQTR6gwGemV5ixuT+bgiMASBG2sv2Jfk5IS2C96VpxA6K0SHIdiKGOICSsAw==} peerDependencies: tailwindcss: ^3 vue: ^3 dependencies: - '@vueuse/core': 8.9.4_vue@3.2.41 - tailwindcss: 3.2.2_postcss@8.4.18 - vitepress: 1.0.0-alpha.27_7bzztktfx4ksi72cjsd4rjugn4 - vue: 3.2.41 + '@vueuse/core': 8.9.4_vue@3.2.45 + tailwindcss: 3.2.4_postcss@8.4.19 + vitepress: 1.0.0-alpha.29_tbpndr44ulefs3hehwpi2mkf2y + vue: 3.2.45 transitivePeerDependencies: - '@algolia/client-search' + - '@types/node' - '@types/react' - '@vue/composition-api' - less @@ -4125,13 +3054,24 @@ packages: path-is-absolute: 1.0.1 dev: true + /glob/8.0.3: + resolution: {integrity: sha512-ull455NHSHI/Y1FqGaaYFaLGkNMMJbavMrEGFXG/PGrg6y7sutWHUHrz6gy6WEBH6akM1M414dWKCNs+IhKdiQ==} + engines: {node: '>=12'} + dependencies: + fs.realpath: 1.0.0 + inflight: 1.0.6 + inherits: 2.0.4 + minimatch: 5.1.1 + once: 1.4.0 + dev: true + /globals/11.12.0: resolution: {integrity: sha512-WOBp/EEGUiIsJSp7wcv/y6MO+lV9UoncWqxuFfm8eBwzWNgyfBd6Gz+IeKQ9jCmyhoH99g15M3T+QaVHFjizVA==} engines: {node: '>=4'} dev: true - /globals/13.17.0: - resolution: {integrity: sha512-1C+6nQRb1GwGMKm2dH/E7enFAMxGTmGI7/dEdhy/DNelv85w9B72t3uc5frtMNXIbzrarJJ/lTCjcaZwbLJmyw==} + /globals/13.18.0: + resolution: {integrity: sha512-/mR4KI8Ps2spmoc0Ulu9L7agOF0du1CZNQ3dke8yItYlyKNmGrkONemBbd6V8UTc1Wgcqn21t3WYB7dbRmh6/A==} engines: {node: '>=8'} dependencies: type-fest: 0.20.2 @@ -4144,55 +3084,11 @@ packages: array-union: 2.1.0 dir-glob: 3.0.1 fast-glob: 3.2.12 - ignore: 5.2.0 + ignore: 5.2.1 merge2: 1.4.1 slash: 3.0.0 dev: true - /google-closure-compiler-java/20210808.0.0: - resolution: {integrity: sha512-7dEQfBzOdwdjwa/Pq8VAypNBKyWRrOcKjnNYOO9gEg2hjh8XVMeQzTqw4uANfVvvANGdE/JjD+HF6zHVgLRwjg==} - dev: true - - /google-closure-compiler-linux/20210808.0.0: - resolution: {integrity: sha512-byKi5ITUiWRvEIcQo76i1siVnOwrTmG+GNcBG4cJ7x8IE6+4ki9rG5pUe4+DOYHkfk52XU6XHt9aAAgCcFDKpg==} - cpu: [x64, x86] - os: [linux] - requiresBuild: true - dev: true - optional: true - - /google-closure-compiler-osx/20210808.0.0: - resolution: {integrity: sha512-iwyAY6dGj1FrrBdmfwKXkjtTGJnqe8F+9WZbfXxiBjkWLtIsJt2dD1+q7g/sw3w8mdHrGQAdxtDZP/usMwj/Rg==} - cpu: [x64, x86, arm64] - os: [darwin] - requiresBuild: true - dev: true - optional: true - - /google-closure-compiler-windows/20210808.0.0: - resolution: {integrity: sha512-VI+UUYwtGWDYwpiixrWRD8EklHgl6PMbiEaHxQSrQbH8PDXytwaOKqmsaH2lWYd5Y/BOZie2MzjY7F5JI69q1w==} - cpu: [x64] - os: [win32] - requiresBuild: true - dev: true - optional: true - - /google-closure-compiler/20210808.0.0: - resolution: {integrity: sha512-+R2+P1tT1lEnDDGk8b+WXfyVZgWjcCK9n1mmZe8pMEzPaPWxqK7GMetLVWnqfTDJ5Q+LRspOiFBv3Is+0yuhCA==} - engines: {node: '>=10'} - hasBin: true - dependencies: - chalk: 2.4.2 - google-closure-compiler-java: 20210808.0.0 - minimist: 1.2.7 - vinyl: 2.2.1 - vinyl-sourcemaps-apply: 0.2.1 - optionalDependencies: - google-closure-compiler-linux: 20210808.0.0 - google-closure-compiler-osx: 20210808.0.0 - google-closure-compiler-windows: 20210808.0.0 - dev: true - /gopd/1.0.1: resolution: {integrity: sha512-d65bNlIadxvpb/A2abVdlqKqV563juRnZ1Wtk6s1sIR8uNsXR70xqIzVqxVf1eTqDunwT2MkczEeaezCKTZhwA==} dependencies: @@ -4280,8 +3176,8 @@ packages: /ieee754/1.2.1: resolution: {integrity: sha512-dcyqhDvX1C46lXZcVqCpK+FtMRQVdIMN6/Df5js2zouUsqG7I6sFxitIC+7KYK29KdXOLHdu9zL4sFnoVQnqaA==} - /ignore/5.2.0: - resolution: {integrity: sha512-CmxgYGiEPCLhfLnpPp1MoRmifwEIOgjcHXxOBjv7mY96c+eWScsOP9c112ZyLdWHi0FxHjI+4uVhKYp/gcdRmQ==} + /ignore/5.2.1: + resolution: {integrity: sha512-d2qQLzTJ9WxQftPAuEQpSPmKqzxePjzVbpAVv62AQ64NTL+wR4JkrVqR/LqFsFEUsHDAiId52mJteHDFuDkElA==} engines: {node: '>= 4'} dev: true @@ -4393,7 +3289,7 @@ packages: /is-reference/1.2.1: resolution: {integrity: sha512-U82MsXXiFIrjCK4otLT+o2NA2Cd2g5MLoOVXUZjIOhLurrRxpEXzI8O0KZHr3IjLvlAH1kTPYSuqer5T9ZVBKQ==} dependencies: - '@types/estree': 1.0.0 + '@types/estree': 0.0.39 dev: true /is-typed-array/1.1.10: @@ -4473,8 +3369,8 @@ packages: easy-stack: 1.0.1 dev: true - /js-sdsl/4.1.5: - resolution: {integrity: sha512-08bOAKweV2NUC1wqTtf3qZlnpOX/R2DU9ikpjOHs0H+ibQv3zpncVQg6um4uYtRtrwIX8M4Nh3ytK4HGlYAq7Q==} + /js-sdsl/4.2.0: + resolution: {integrity: sha512-dyBIzQBDkCqCu+0upx25Y2jGdbTGxE9fshMsCdK0ViOongpV+n5tXRcZY9v7CaVQ79AGS9KA1KHtojxiM7aXSQ==} dev: true /js-string-escape/1.0.1: @@ -4493,11 +3389,6 @@ packages: argparse: 2.0.1 dev: true - /jsesc/0.5.0: - resolution: {integrity: sha512-uZz5UnB7u4T9LvwmFqXii7pZSouaRPorGs5who1Ip7VO0wxanFvBL7GkM6dTHlgX+jhBApRetaWpnDabOeTcnA==} - hasBin: true - dev: true - /jsesc/2.5.2: resolution: {integrity: sha512-OYu7XEzjkCQ3C5Ps3QIZsQfNpqoJyZZA99wd9aWd05NCtC5pWOkShK2mkL6HXQR6/Cy2lbNdPlZBpuQHXE63gA==} engines: {node: '>=4'} @@ -4552,10 +3443,6 @@ packages: dependencies: p-locate: 5.0.0 - /lodash.debounce/4.0.8: - resolution: {integrity: sha512-FT1yDzDYEoYWhnSGnpE/4Kj1fLZkDFyqRb7fNt6FdYOSxlUWAtp42Eh6Wb0rGIv/m9Bgo7x4GhQbm5Ys4SG5ow==} - dev: true - /lodash.memoize/4.1.2: resolution: {integrity: sha512-t7j+NzmgnQzTAYXcsHYLgimltOV1MXHtlOWf6GjL9Kj8GK5FInw5JotxvbOs+IvV1/Dzo04/fCGfLVs7aXb4Ag==} dev: false @@ -4583,18 +3470,6 @@ packages: resolution: {integrity: sha512-Pn9cox5CsMYngeDbmChANltQl+5pi6XmTrraMSzhPmMBbmgcxmqWry0U3PGapCU1yB4/LqCcom7qhHZiF/jGfQ==} dev: true - /magic-string/0.22.5: - resolution: {integrity: sha512-oreip9rJZkzvA8Qzk9HFs8fZGF/u7H/gtrE8EN6RjKJ9kh2HlC+yQ2QezifqTZfGyiuAV0dRv5a+y/8gBb1m9w==} - dependencies: - vlq: 0.2.3 - dev: true - - /magic-string/0.25.7: - resolution: {integrity: sha512-4CrMT5DOHTDk4HYDlzmwu4FVCcIYI8gauveasrdCu2IKIFOJ3f0v/8MDGJCDL9oD2ppz/Av1b0Nj345H9M+XIA==} - dependencies: - sourcemap-codec: 1.4.8 - dev: true - /magic-string/0.25.9: resolution: {integrity: sha512-RmF0AsMzgt25qzqqLc1+MbHmhdx0ojF2Fvs4XnOqz2ZOBXzzkEwc/dJQZCYHAn7v1jbVOjAZfK8msRn4BxO4VQ==} dependencies: @@ -4661,8 +3536,8 @@ packages: brace-expansion: 1.1.11 dev: true - /minimatch/5.1.0: - resolution: {integrity: sha512-9TPBGGak4nHfGZsPBohm9AWg6NoT7QTCehS3BIJABslyZbzxfV78QM2Y6+i741OPZIafFAaiiEMh5OyIrJPgtg==} + /minimatch/5.1.1: + resolution: {integrity: sha512-362NP+zlprccbEt/SkxKfRMHnNY85V74mVnpUpNyr3F35covl09Kec7/sEFLt3RA4oXmewtoaanoIf67SE5Y5g==} engines: {node: '>=10'} dependencies: brace-expansion: 2.0.1 @@ -4711,6 +3586,7 @@ packages: /node-int64/0.4.0: resolution: {integrity: sha512-O5lz91xSOeoXP6DulyHfllpq+Eg00MWitZIbtPfoSEvqIHdl5gfcY6hYzDWnj0qD5tz52PI08u9qUvSVeUBeHw==} + dev: false /node-ipc/10.1.0: resolution: {integrity: sha512-JBHRlMU8xAoo1kPtcvlBAa/6OBi/FUZoO/NbZf63q5Fe8q2aDhVJFryBFSq5T3E7EM13NnAUyEYk1b0IF6QV3Q==} @@ -4750,7 +3626,7 @@ packages: readable-stream: 3.6.0 stream-browserify: 3.0.0 stream-http: 3.2.0 - string_decoder: 1.1.1 + string_decoder: 1.3.0 timers-browserify: 2.0.12 tty-browserify: 0.0.1 url: 0.11.0 @@ -4899,7 +3775,7 @@ packages: create-hash: 1.2.0 create-hmac: 1.1.7 ripemd160: 2.0.2 - safe-buffer: 5.1.2 + safe-buffer: 5.2.1 sha.js: 2.4.11 /perfect-scrollbar/1.5.5: @@ -4921,8 +3797,8 @@ packages: resolution: {integrity: sha512-udgsAY+fTnvv7kI7aaxbqwWNb0AHiB0qBO89PZKPkoTmGOgdbrHDKD+0B2X4uTfJ/FT1R09r9gTsjUjNJotuog==} engines: {node: '>=0.10.0'} - /pinia/2.0.23_l7r24p6nevbtlimqmqcwa3ouhu: - resolution: {integrity: sha512-N15hFf4o5STrxpNrib1IEb1GOArvPYf1zPvQVRGOO1G1d74Ak0J0lVyalX/SmrzdT4Q0nlEFjbURsmBmIGUR5Q==} + /pinia/2.0.27_mgnvym7yiazkylwwogi5r767ue: + resolution: {integrity: sha512-nOnXP0OFeL8R4WjAHsterU+11vptda643gH02xKNtSCDPiRzVfRYodOLihLDoa0gL1KKuQKV+KOzEgdt3YvqEw==} peerDependencies: '@vue/composition-api': ^1.4.0 typescript: '>=4.4.4' @@ -4934,9 +3810,9 @@ packages: optional: true dependencies: '@vue/devtools-api': 6.4.5 - typescript: 4.8.4 - vue: 3.2.41 - vue-demi: 0.13.11_vue@3.2.41 + typescript: 4.9.3 + vue: 3.2.45 + vue-demi: 0.13.11_vue@3.2.45 dev: false /pkg-dir/5.0.0: @@ -4945,17 +3821,17 @@ packages: dependencies: find-up: 5.0.0 - /postcss-calc/8.2.4_postcss@8.4.18: + /postcss-calc/8.2.4_postcss@8.4.19: resolution: {integrity: sha512-SmWMSJmB8MRnnULldx0lQIyhSNvuDl9HfrZkaqqE/WHAhToYsAvDq+yAsA/kIyINDszOp3Rh0GFoNuH5Ypsm3Q==} peerDependencies: postcss: ^8.2.2 dependencies: - postcss: 8.4.18 - postcss-selector-parser: 6.0.10 + postcss: 8.4.19 + postcss-selector-parser: 6.0.11 postcss-value-parser: 4.2.0 dev: false - /postcss-colormin/5.3.0_postcss@8.4.18: + /postcss-colormin/5.3.0_postcss@8.4.19: resolution: {integrity: sha512-WdDO4gOFG2Z8n4P8TWBpshnL3JpmNmJwdnfP2gbk2qBA8PWwOYcmjmI/t3CmMeL72a7Hkd+x/Mg9O2/0rD54Pg==} engines: {node: ^10 || ^12 || >=14.0} peerDependencies: @@ -4964,55 +3840,55 @@ packages: browserslist: 4.21.4 caniuse-api: 3.0.0 colord: 2.9.3 - postcss: 8.4.18 + postcss: 8.4.19 postcss-value-parser: 4.2.0 dev: false - /postcss-convert-values/5.1.3_postcss@8.4.18: + /postcss-convert-values/5.1.3_postcss@8.4.19: resolution: {integrity: sha512-82pC1xkJZtcJEfiLw6UXnXVXScgtBrjlO5CBmuDQc+dlb88ZYheFsjTn40+zBVi3DkfF7iezO0nJUPLcJK3pvA==} engines: {node: ^10 || ^12 || >=14.0} peerDependencies: postcss: ^8.2.15 dependencies: browserslist: 4.21.4 - postcss: 8.4.18 + postcss: 8.4.19 postcss-value-parser: 4.2.0 dev: false - /postcss-discard-comments/5.1.2_postcss@8.4.18: + /postcss-discard-comments/5.1.2_postcss@8.4.19: resolution: {integrity: sha512-+L8208OVbHVF2UQf1iDmRcbdjJkuBF6IS29yBDSiWUIzpYaAhtNl6JYnYm12FnkeCwQqF5LeklOu6rAqgfBZqQ==} engines: {node: ^10 || ^12 || >=14.0} peerDependencies: postcss: ^8.2.15 dependencies: - postcss: 8.4.18 + postcss: 8.4.19 dev: false - /postcss-discard-duplicates/5.1.0_postcss@8.4.18: + /postcss-discard-duplicates/5.1.0_postcss@8.4.19: resolution: {integrity: sha512-zmX3IoSI2aoenxHV6C7plngHWWhUOV3sP1T8y2ifzxzbtnuhk1EdPwm0S1bIUNaJ2eNbWeGLEwzw8huPD67aQw==} engines: {node: ^10 || ^12 || >=14.0} peerDependencies: postcss: ^8.2.15 dependencies: - postcss: 8.4.18 + postcss: 8.4.19 dev: false - /postcss-discard-empty/5.1.1_postcss@8.4.18: + /postcss-discard-empty/5.1.1_postcss@8.4.19: resolution: {integrity: sha512-zPz4WljiSuLWsI0ir4Mcnr4qQQ5e1Ukc3i7UfE2XcrwKK2LIPIqE5jxMRxO6GbI3cv//ztXDsXwEWT3BHOGh3A==} engines: {node: ^10 || ^12 || >=14.0} peerDependencies: postcss: ^8.2.15 dependencies: - postcss: 8.4.18 + postcss: 8.4.19 dev: false - /postcss-discard-overridden/5.1.0_postcss@8.4.18: + /postcss-discard-overridden/5.1.0_postcss@8.4.19: resolution: {integrity: sha512-21nOL7RqWR1kasIVdKs8HNqQJhFxLsyRfAnUDm4Fe4t4mCWL9OJiHvlHPjcd8zc5Myu89b/7wZDnOSjFgeWRtw==} engines: {node: ^10 || ^12 || >=14.0} peerDependencies: postcss: ^8.2.15 dependencies: - postcss: 8.4.18 + postcss: 8.4.19 dev: false /postcss-import/12.0.1: @@ -5025,27 +3901,27 @@ packages: resolve: 1.22.1 dev: false - /postcss-import/14.1.0_postcss@8.4.18: + /postcss-import/14.1.0_postcss@8.4.19: resolution: {integrity: sha512-flwI+Vgm4SElObFVPpTIT7SU7R3qk2L7PyduMcokiaVKuWv9d/U+Gm/QAd8NDLuykTWTkcrjOeD2Pp1rMeBTGw==} engines: {node: '>=10.0.0'} peerDependencies: postcss: ^8.0.0 dependencies: - postcss: 8.4.18 + postcss: 8.4.19 postcss-value-parser: 4.2.0 read-cache: 1.0.0 resolve: 1.22.1 - /postcss-js/4.0.0_postcss@8.4.18: + /postcss-js/4.0.0_postcss@8.4.19: resolution: {integrity: sha512-77QESFBwgX4irogGVPgQ5s07vLvFqWr228qZY+w6lW599cRlK/HmnlivnnVUxkjHnCu4J16PDMHcH+e+2HbvTQ==} engines: {node: ^12 || ^14 || >= 16} peerDependencies: postcss: ^8.3.3 dependencies: camelcase-css: 2.0.1 - postcss: 8.4.18 + postcss: 8.4.19 - /postcss-load-config/3.1.4_postcss@8.4.18: + /postcss-load-config/3.1.4_postcss@8.4.19: resolution: {integrity: sha512-6DiM4E7v4coTE4uzA8U//WhtPwyhiim3eyjEMFCnUpzbrkK9wJHgKDT2mR+HbtSrd/NubVaYTOpSpjUl8NQeRg==} engines: {node: '>= 10'} peerDependencies: @@ -5058,21 +3934,21 @@ packages: optional: true dependencies: lilconfig: 2.0.6 - postcss: 8.4.18 + postcss: 8.4.19 yaml: 1.10.2 - /postcss-merge-longhand/5.1.7_postcss@8.4.18: + /postcss-merge-longhand/5.1.7_postcss@8.4.19: resolution: {integrity: sha512-YCI9gZB+PLNskrK0BB3/2OzPnGhPkBEwmwhfYk1ilBHYVAZB7/tkTHFBAnCrvBBOmeYyMYw3DMjT55SyxMBzjQ==} engines: {node: ^10 || ^12 || >=14.0} peerDependencies: postcss: ^8.2.15 dependencies: - postcss: 8.4.18 + postcss: 8.4.19 postcss-value-parser: 4.2.0 - stylehacks: 5.1.1_postcss@8.4.18 + stylehacks: 5.1.1_postcss@8.4.19 dev: false - /postcss-merge-rules/5.1.3_postcss@8.4.18: + /postcss-merge-rules/5.1.3_postcss@8.4.19: resolution: {integrity: sha512-LbLd7uFC00vpOuMvyZop8+vvhnfRGpp2S+IMQKeuOZZapPRY4SMq5ErjQeHbHsjCUgJkRNrlU+LmxsKIqPKQlA==} engines: {node: ^10 || ^12 || >=14.0} peerDependencies: @@ -5080,167 +3956,167 @@ packages: dependencies: browserslist: 4.21.4 caniuse-api: 3.0.0 - cssnano-utils: 3.1.0_postcss@8.4.18 - postcss: 8.4.18 - postcss-selector-parser: 6.0.10 + cssnano-utils: 3.1.0_postcss@8.4.19 + postcss: 8.4.19 + postcss-selector-parser: 6.0.11 dev: false - /postcss-minify-font-values/5.1.0_postcss@8.4.18: + /postcss-minify-font-values/5.1.0_postcss@8.4.19: resolution: {integrity: sha512-el3mYTgx13ZAPPirSVsHqFzl+BBBDrXvbySvPGFnQcTI4iNslrPaFq4muTkLZmKlGk4gyFAYUBMH30+HurREyA==} engines: {node: ^10 || ^12 || >=14.0} peerDependencies: postcss: ^8.2.15 dependencies: - postcss: 8.4.18 + postcss: 8.4.19 postcss-value-parser: 4.2.0 dev: false - /postcss-minify-gradients/5.1.1_postcss@8.4.18: + /postcss-minify-gradients/5.1.1_postcss@8.4.19: resolution: {integrity: sha512-VGvXMTpCEo4qHTNSa9A0a3D+dxGFZCYwR6Jokk+/3oB6flu2/PnPXAh2x7x52EkY5xlIHLm+Le8tJxe/7TNhzw==} engines: {node: ^10 || ^12 || >=14.0} peerDependencies: postcss: ^8.2.15 dependencies: colord: 2.9.3 - cssnano-utils: 3.1.0_postcss@8.4.18 - postcss: 8.4.18 + cssnano-utils: 3.1.0_postcss@8.4.19 + postcss: 8.4.19 postcss-value-parser: 4.2.0 dev: false - /postcss-minify-params/5.1.4_postcss@8.4.18: + /postcss-minify-params/5.1.4_postcss@8.4.19: resolution: {integrity: sha512-+mePA3MgdmVmv6g+30rn57USjOGSAyuxUmkfiWpzalZ8aiBkdPYjXWtHuwJGm1v5Ojy0Z0LaSYhHaLJQB0P8Jw==} engines: {node: ^10 || ^12 || >=14.0} peerDependencies: postcss: ^8.2.15 dependencies: browserslist: 4.21.4 - cssnano-utils: 3.1.0_postcss@8.4.18 - postcss: 8.4.18 + cssnano-utils: 3.1.0_postcss@8.4.19 + postcss: 8.4.19 postcss-value-parser: 4.2.0 dev: false - /postcss-minify-selectors/5.2.1_postcss@8.4.18: + /postcss-minify-selectors/5.2.1_postcss@8.4.19: resolution: {integrity: sha512-nPJu7OjZJTsVUmPdm2TcaiohIwxP+v8ha9NehQ2ye9szv4orirRU3SDdtUmKH+10nzn0bAyOXZ0UEr7OpvLehg==} engines: {node: ^10 || ^12 || >=14.0} peerDependencies: postcss: ^8.2.15 dependencies: - postcss: 8.4.18 - postcss-selector-parser: 6.0.10 + postcss: 8.4.19 + postcss-selector-parser: 6.0.11 dev: false - /postcss-nested/6.0.0_postcss@8.4.18: + /postcss-nested/6.0.0_postcss@8.4.19: resolution: {integrity: sha512-0DkamqrPcmkBDsLn+vQDIrtkSbNkv5AD/M322ySo9kqFkCIYklym2xEmWkwo+Y3/qZo34tzEPNUw4y7yMCdv5w==} engines: {node: '>=12.0'} peerDependencies: postcss: ^8.2.14 dependencies: - postcss: 8.4.18 - postcss-selector-parser: 6.0.10 + postcss: 8.4.19 + postcss-selector-parser: 6.0.11 - /postcss-normalize-charset/5.1.0_postcss@8.4.18: + /postcss-normalize-charset/5.1.0_postcss@8.4.19: resolution: {integrity: sha512-mSgUJ+pd/ldRGVx26p2wz9dNZ7ji6Pn8VWBajMXFf8jk7vUoSrZ2lt/wZR7DtlZYKesmZI680qjr2CeFF2fbUg==} engines: {node: ^10 || ^12 || >=14.0} peerDependencies: postcss: ^8.2.15 dependencies: - postcss: 8.4.18 + postcss: 8.4.19 dev: false - /postcss-normalize-display-values/5.1.0_postcss@8.4.18: + /postcss-normalize-display-values/5.1.0_postcss@8.4.19: resolution: {integrity: sha512-WP4KIM4o2dazQXWmFaqMmcvsKmhdINFblgSeRgn8BJ6vxaMyaJkwAzpPpuvSIoG/rmX3M+IrRZEz2H0glrQNEA==} engines: {node: ^10 || ^12 || >=14.0} peerDependencies: postcss: ^8.2.15 dependencies: - postcss: 8.4.18 + postcss: 8.4.19 postcss-value-parser: 4.2.0 dev: false - /postcss-normalize-positions/5.1.1_postcss@8.4.18: + /postcss-normalize-positions/5.1.1_postcss@8.4.19: resolution: {integrity: sha512-6UpCb0G4eofTCQLFVuI3EVNZzBNPiIKcA1AKVka+31fTVySphr3VUgAIULBhxZkKgwLImhzMR2Bw1ORK+37INg==} engines: {node: ^10 || ^12 || >=14.0} peerDependencies: postcss: ^8.2.15 dependencies: - postcss: 8.4.18 + postcss: 8.4.19 postcss-value-parser: 4.2.0 dev: false - /postcss-normalize-repeat-style/5.1.1_postcss@8.4.18: + /postcss-normalize-repeat-style/5.1.1_postcss@8.4.19: resolution: {integrity: sha512-mFpLspGWkQtBcWIRFLmewo8aC3ImN2i/J3v8YCFUwDnPu3Xz4rLohDO26lGjwNsQxB3YF0KKRwspGzE2JEuS0g==} engines: {node: ^10 || ^12 || >=14.0} peerDependencies: postcss: ^8.2.15 dependencies: - postcss: 8.4.18 + postcss: 8.4.19 postcss-value-parser: 4.2.0 dev: false - /postcss-normalize-string/5.1.0_postcss@8.4.18: + /postcss-normalize-string/5.1.0_postcss@8.4.19: resolution: {integrity: sha512-oYiIJOf4T9T1N4i+abeIc7Vgm/xPCGih4bZz5Nm0/ARVJ7K6xrDlLwvwqOydvyL3RHNf8qZk6vo3aatiw/go3w==} engines: {node: ^10 || ^12 || >=14.0} peerDependencies: postcss: ^8.2.15 dependencies: - postcss: 8.4.18 + postcss: 8.4.19 postcss-value-parser: 4.2.0 dev: false - /postcss-normalize-timing-functions/5.1.0_postcss@8.4.18: + /postcss-normalize-timing-functions/5.1.0_postcss@8.4.19: resolution: {integrity: sha512-DOEkzJ4SAXv5xkHl0Wa9cZLF3WCBhF3o1SKVxKQAa+0pYKlueTpCgvkFAHfk+Y64ezX9+nITGrDZeVGgITJXjg==} engines: {node: ^10 || ^12 || >=14.0} peerDependencies: postcss: ^8.2.15 dependencies: - postcss: 8.4.18 + postcss: 8.4.19 postcss-value-parser: 4.2.0 dev: false - /postcss-normalize-unicode/5.1.1_postcss@8.4.18: + /postcss-normalize-unicode/5.1.1_postcss@8.4.19: resolution: {integrity: sha512-qnCL5jzkNUmKVhZoENp1mJiGNPcsJCs1aaRmURmeJGES23Z/ajaln+EPTD+rBeNkSryI+2WTdW+lwcVdOikrpA==} engines: {node: ^10 || ^12 || >=14.0} peerDependencies: postcss: ^8.2.15 dependencies: browserslist: 4.21.4 - postcss: 8.4.18 + postcss: 8.4.19 postcss-value-parser: 4.2.0 dev: false - /postcss-normalize-url/5.1.0_postcss@8.4.18: + /postcss-normalize-url/5.1.0_postcss@8.4.19: resolution: {integrity: sha512-5upGeDO+PVthOxSmds43ZeMeZfKH+/DKgGRD7TElkkyS46JXAUhMzIKiCa7BabPeIy3AQcTkXwVVN7DbqsiCew==} engines: {node: ^10 || ^12 || >=14.0} peerDependencies: postcss: ^8.2.15 dependencies: normalize-url: 6.1.0 - postcss: 8.4.18 + postcss: 8.4.19 postcss-value-parser: 4.2.0 dev: false - /postcss-normalize-whitespace/5.1.1_postcss@8.4.18: + /postcss-normalize-whitespace/5.1.1_postcss@8.4.19: resolution: {integrity: sha512-83ZJ4t3NUDETIHTa3uEg6asWjSBYL5EdkVB0sDncx9ERzOKBVJIUeDO9RyA9Zwtig8El1d79HBp0JEi8wvGQnA==} engines: {node: ^10 || ^12 || >=14.0} peerDependencies: postcss: ^8.2.15 dependencies: - postcss: 8.4.18 + postcss: 8.4.19 postcss-value-parser: 4.2.0 dev: false - /postcss-ordered-values/5.1.3_postcss@8.4.18: + /postcss-ordered-values/5.1.3_postcss@8.4.19: resolution: {integrity: sha512-9UO79VUhPwEkzbb3RNpqqghc6lcYej1aveQteWY+4POIwlqkYE21HKWaLDF6lWNuqCobEAyTovVhtI32Rbv2RQ==} engines: {node: ^10 || ^12 || >=14.0} peerDependencies: postcss: ^8.2.15 dependencies: - cssnano-utils: 3.1.0_postcss@8.4.18 - postcss: 8.4.18 + cssnano-utils: 3.1.0_postcss@8.4.19 + postcss: 8.4.19 postcss-value-parser: 4.2.0 dev: false - /postcss-reduce-initial/5.1.1_postcss@8.4.18: + /postcss-reduce-initial/5.1.1_postcss@8.4.19: resolution: {integrity: sha512-//jeDqWcHPuXGZLoolFrUXBDyuEGbr9S2rMo19bkTIjBQ4PqkaO+oI8wua5BOUxpfi97i3PCoInsiFIEBfkm9w==} engines: {node: ^10 || ^12 || >=14.0} peerDependencies: @@ -5248,45 +4124,45 @@ packages: dependencies: browserslist: 4.21.4 caniuse-api: 3.0.0 - postcss: 8.4.18 + postcss: 8.4.19 dev: false - /postcss-reduce-transforms/5.1.0_postcss@8.4.18: + /postcss-reduce-transforms/5.1.0_postcss@8.4.19: resolution: {integrity: sha512-2fbdbmgir5AvpW9RLtdONx1QoYG2/EtqpNQbFASDlixBbAYuTcJ0dECwlqNqH7VbaUnEnh8SrxOe2sRIn24XyQ==} engines: {node: ^10 || ^12 || >=14.0} peerDependencies: postcss: ^8.2.15 dependencies: - postcss: 8.4.18 + postcss: 8.4.19 postcss-value-parser: 4.2.0 dev: false - /postcss-selector-parser/6.0.10: - resolution: {integrity: sha512-IQ7TZdoaqbT+LCpShg46jnZVlhWD2w6iQYAcYXfHARZ7X1t/UGhhceQDs5X0cGqKvYlHNOuv7Oa1xmb0oQuA3w==} + /postcss-selector-parser/6.0.11: + resolution: {integrity: sha512-zbARubNdogI9j7WY4nQJBiNqQf3sLS3wCP4WfOidu+p28LofJqDH1tcXypGrcmMHhDk2t9wGhCsYe/+szLTy1g==} engines: {node: '>=4'} dependencies: cssesc: 3.0.0 util-deprecate: 1.0.2 - /postcss-svgo/5.1.0_postcss@8.4.18: + /postcss-svgo/5.1.0_postcss@8.4.19: resolution: {integrity: sha512-D75KsH1zm5ZrHyxPakAxJWtkyXew5qwS70v56exwvw542d9CRtTo78K0WeFxZB4G7JXKKMbEZtZayTGdIky/eA==} engines: {node: ^10 || ^12 || >=14.0} peerDependencies: postcss: ^8.2.15 dependencies: - postcss: 8.4.18 + postcss: 8.4.19 postcss-value-parser: 4.2.0 svgo: 2.8.0 dev: false - /postcss-unique-selectors/5.1.1_postcss@8.4.18: + /postcss-unique-selectors/5.1.1_postcss@8.4.19: resolution: {integrity: sha512-5JiODlELrz8L2HwxfPnhOWZYWDxVHWL83ufOv84NrcgipI7TaeRsatAhK4Tr2/ZiYldpK/wBvw5BD3qfaK96GA==} engines: {node: ^10 || ^12 || >=14.0} peerDependencies: postcss: ^8.2.15 dependencies: - postcss: 8.4.18 - postcss-selector-parser: 6.0.10 + postcss: 8.4.19 + postcss-selector-parser: 6.0.11 dev: false /postcss-value-parser/3.3.1: @@ -5304,16 +4180,16 @@ packages: source-map: 0.6.1 dev: false - /postcss/8.4.18: - resolution: {integrity: sha512-Wi8mWhncLJm11GATDaQKobXSNEYGUHeQLiQqDFG1qQ5UTDPTEvKw0Xt5NsTpktGTwLps3ByrWsBrG0rB8YQ9oA==} + /postcss/8.4.19: + resolution: {integrity: sha512-h+pbPsyhlYj6N2ozBmHhHrs9DzGmbaarbLvWipMRO7RLS+v4onj26MPFXA5OBYFxyqYhUJK456SwDcY9H2/zsA==} engines: {node: ^10 || ^12 || >=14} dependencies: nanoid: 3.3.4 picocolors: 1.0.0 source-map-js: 1.0.2 - /preact/10.11.2: - resolution: {integrity: sha512-skAwGDFmgxhq1DCBHke/9e12ewkhc7WYwjuhHB8HHS8zkdtITXLRmUMTeol2ldxvLwYtwbFeifZ9uDDWuyL4Iw==} + /preact/10.11.3: + resolution: {integrity: sha512-eY93IVpod/zG3uMF22Unl8h9KkrcKIRs2EGar8hwLZZDU1lkjph303V9HZBwufh2s736U6VXuhD109LYqPoffg==} dev: false /prelude-ls/1.1.2: @@ -5333,16 +4209,12 @@ packages: fast-diff: 1.2.0 dev: true - /prettier/2.7.1: - resolution: {integrity: sha512-ujppO+MkdPqoVINuDFDRLClm7D78qbDt0/NR+wp5FqEZOoTNAjPHWj17QRhu7geIHJfcNhRk1XVQmF8Bp3ye+g==} + /prettier/2.8.0: + resolution: {integrity: sha512-9Lmg8hTFZKG0Asr/kW9Bp8tJjRVluO8EJQVfY2T7FMw9T5jy4I/Uvx0Rca/XWf50QQ1/SS48+6IJWnrb+2yemA==} engines: {node: '>=10.13.0'} hasBin: true dev: true - /process-es6/0.11.6: - resolution: {integrity: sha512-GYBRQtL4v3wgigq10Pv58jmTbFXlIiTbSfgnNqZLY0ldUPqy1rRxDI5fCjoCpnM6TqmHQI8ydzTBXW86OYc0gA==} - dev: true - /process-nextick-args/2.0.1: resolution: {integrity: sha512-3ouUOpQhtgrbOa17J7+uxOTpITYWaGP7/AhoR3+A+/1e9skrzelGi/dXzEYyvbxubEF6Wn2ypscTKiKJFFn1ag==} dev: true @@ -5359,7 +4231,7 @@ packages: create-hash: 1.2.0 parse-asn1: 5.1.6 randombytes: 2.1.0 - safe-buffer: 5.1.2 + safe-buffer: 5.2.1 /punycode/1.3.2: resolution: {integrity: sha512-RofWgt/7fL5wP1Y7fxE7/EmTLzQVnB0ycyibJ0OOHIlJqTNzglYFxVwETOcIoJqJmpDXJ9xImDv+Fq34F/d4Dw==} @@ -5396,13 +4268,13 @@ packages: /randombytes/2.1.0: resolution: {integrity: sha512-vYl3iOX+4CKUWuxGi9Ukhie6fsqXqS9FE2Zaic4tNFD2N2QQaXOMFbuKK4QmDHC0JO6B1Zp41J0LpT0oR68amQ==} dependencies: - safe-buffer: 5.1.2 + safe-buffer: 5.2.1 /randomfill/1.0.4: resolution: {integrity: sha512-87lcbR8+MhcWcUiQ+9e+Rwx8MyR2P7qnt15ynUlbm3TU/fjbgz4GsvfSUDTemtCCtVCqb4ZcEFlyPNTh9bBTLw==} dependencies: randombytes: 2.1.0 - safe-buffer: 5.1.2 + safe-buffer: 5.2.1 /read-cache/1.0.0: resolution: {integrity: sha512-Owdv/Ft7IjOgm/i0xvNDZ1LrRANRfew4b2prF3OWMQLxLfu3bS8FVhCsrSCMK4lR56Y9ya+AThoTpDCTxCmpRA==} @@ -5435,7 +4307,7 @@ packages: engines: {node: '>= 6'} dependencies: inherits: 2.0.4 - string_decoder: 1.1.1 + string_decoder: 1.3.0 util-deprecate: 1.0.2 /readdirp/3.6.0: @@ -5448,64 +4320,11 @@ packages: resolution: {integrity: sha512-Ts1Y/anZELhSsjMcU605fU9RE4Oi3p5ORujwbIKXfWa+0Zxs510Qrmrce5/Jowq3cHSZSJqBjypxmHarc+vEWg==} dev: true - /regenerate-unicode-properties/10.1.0: - resolution: {integrity: sha512-d1VudCLoIGitcU/hEg2QqvyGZQmdC0Lf8BqdOMXGFSvJP4bNV1+XqbPQeHHLD51Jh4QJJ225dlIFvY4Ly6MXmQ==} - engines: {node: '>=4'} - dependencies: - regenerate: 1.4.2 - dev: true - - /regenerate/1.4.2: - resolution: {integrity: sha512-zrceR/XhGYU/d/opr2EKO7aRHUeiBI8qjtfHqADTwZd6Szfy16la6kqD0MIUs5z5hx6AaKa+PixpPrR289+I0A==} - dev: true - - /regenerator-runtime/0.13.10: - resolution: {integrity: sha512-KepLsg4dU12hryUO7bp/axHAKvwGOCV0sGloQtpagJ12ai+ojVDqkeGSiRX1zlq+kjIMZ1t7gpze+26QqtdGqw==} - dev: true - - /regenerator-transform/0.15.0: - resolution: {integrity: sha512-LsrGtPmbYg19bcPHwdtmXwbW+TqNvtY4riE3P83foeHRroMbH6/2ddFBfab3t7kbzc7v7p4wbkIecHImqt0QNg==} - dependencies: - '@babel/runtime': 7.20.1 - dev: true - /regexpp/3.2.0: resolution: {integrity: sha512-pq2bWo9mVD43nbts2wGv17XLiNLya+GklZ8kaDLV2Z08gDCsGpnKn9BFMepvWuHCbyVvY7J5o5+BVvoQbmlJLg==} engines: {node: '>=8'} dev: true - /regexpu-core/5.2.1: - resolution: {integrity: sha512-HrnlNtpvqP1Xkb28tMhBUO2EbyUHdQlsnlAhzWcwHy8WJR53UWr7/MAvqrsQKMbV4qdpv03oTMG8iIhfsPFktQ==} - engines: {node: '>=4'} - dependencies: - regenerate: 1.4.2 - regenerate-unicode-properties: 10.1.0 - regjsgen: 0.7.1 - regjsparser: 0.9.1 - unicode-match-property-ecmascript: 2.0.0 - unicode-match-property-value-ecmascript: 2.0.0 - dev: true - - /regjsgen/0.7.1: - resolution: {integrity: sha512-RAt+8H2ZEzHeYWxZ3H2z6tF18zyyOnlcdaafLrm21Bguj7uZy6ULibiAFdXEtKQY4Sy7wDTwDiOazasMLc4KPA==} - dev: true - - /regjsparser/0.9.1: - resolution: {integrity: sha512-dQUtn90WanSNl+7mQKcXAgZxvUe7Z0SqXlgzv0za4LwiUhyzBC58yQO3liFoUgu8GiJVInAhJjkj1N0EtQ5nkQ==} - hasBin: true - dependencies: - jsesc: 0.5.0 - dev: true - - /remove-trailing-separator/1.1.0: - resolution: {integrity: sha512-/hS+Y0u3aOfIETiaiirUFwDBDzmXPvO+jAfKTitUngIPzdKc6Z0LoFjM/CK5PL4C+eKwHohlHAb6H0VFfmmUsw==} - dev: true - - /replace-ext/1.0.1: - resolution: {integrity: sha512-yD5BHCe7quCgBph4rMQ+0KkIRKwWCrHDOX1p1Gp6HwjPM5kVoCdKGNhN7ydqqsX6lJEnQDKZ/tFMiEdQ1dvPEw==} - engines: {node: '>= 0.10'} - dev: true - /require-directory/2.1.1: resolution: {integrity: sha512-fGxEI7+wsG9xrvdjsrlmL22OMTTiHRwAMroiEeMgq8gzoLC/PQr7RsRDSTLUg/bZAZtF+TVIkHc6/4RIKrui+Q==} engines: {node: '>=0.10.0'} @@ -5562,17 +4381,6 @@ packages: rollup-pluginutils: 2.8.2 dev: true - /rollup-plugin-node-globals/1.4.0: - resolution: {integrity: sha512-xRkB+W/m1KLIzPUmG0ofvR+CPNcvuCuNdjVBVS7ALKSxr3EDhnzNceGkGi1m8MToSli13AzKFYH4ie9w3I5L3g==} - dependencies: - acorn: 5.7.4 - buffer-es6: 4.9.3 - estree-walker: 0.5.2 - magic-string: 0.22.5 - process-es6: 0.11.6 - rollup-pluginutils: 2.8.2 - dev: true - /rollup-plugin-node-polyfills/0.2.1: resolution: {integrity: sha512-4kCrKPTJ6sK4/gLL/U5QzVT8cxJcofO0OU74tnB19F40cmuAKSzH5/siithxlofFEjwvw1YAhPmbvGNA6jEroA==} dependencies: @@ -5585,14 +4393,6 @@ packages: estree-walker: 0.6.1 dev: true - /rollup/2.78.1: - resolution: {integrity: sha512-VeeCgtGi4P+o9hIg+xz4qQpRl6R401LWEXBmxYKOV4zlF82lyhgh2hTZnheFUbANE8l2A41F458iwj2vEYaXJg==} - engines: {node: '>=10.0.0'} - hasBin: true - optionalDependencies: - fsevents: 2.3.2 - dev: true - /rollup/2.79.1: resolution: {integrity: sha512-uKxbd0IhMZOhjAiD5oAFp7BqvkA4Dv47qpOCtaNvng4HBwdbWtdOh8f5nZNuk2rp51PMGk3bzfWu5oayNEuYnw==} engines: {node: '>=10.0.0'} @@ -5607,6 +4407,7 @@ packages: /safe-buffer/5.1.2: resolution: {integrity: sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g==} + dev: true /safe-buffer/5.2.1: resolution: {integrity: sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ==} @@ -5653,7 +4454,7 @@ packages: resolution: {integrity: sha512-EugY9VASFuDqOexOgXR18ZV+TbFrQHeCpEYaXamO+SZlsnT/2LxuLBX25GGtIrwaEVFXUAbUQ601SWE2rMwWHA==} dependencies: jsonc-parser: 3.2.0 - vscode-oniguruma: 1.6.2 + vscode-oniguruma: 1.7.0 vscode-textmate: 6.0.0 dev: false @@ -5671,10 +4472,6 @@ packages: dependencies: buffer-from: 1.1.2 source-map: 0.6.1 - - /source-map/0.5.7: - resolution: {integrity: sha512-LbrmJOMUSdEVxIKvdcJzQC+nQhe8FUZQTXQy6+I75skNgn3OoQ0DZA8YnFa7gp8tqtL3KPf1kmo0R5DoApeSGQ==} - engines: {node: '>=0.10.0'} dev: true /source-map/0.6.1: @@ -5724,6 +4521,12 @@ packages: resolution: {integrity: sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg==} dependencies: safe-buffer: 5.1.2 + dev: true + + /string_decoder/1.3.0: + resolution: {integrity: sha512-hkRX8U1WjJFd8LsDJ2yQ/wWWxaopEsABU1XfkM8A+j0+85JAGppt16cr1Whg6KIbb4okU6Mql6BOj+uup/wKeA==} + dependencies: + safe-buffer: 5.2.1 /stringz/2.1.0: resolution: {integrity: sha512-KlywLT+MZ+v0IRepfMxRtnSvDCMc3nR1qqCs3m/qIbSOWkNZYT8XHQA31rS3TnKp0c5xjZu3M4GY/2aRKSi/6A==} @@ -5753,15 +4556,15 @@ packages: engines: {node: '>=12.21.0'} dev: true - /stylehacks/5.1.1_postcss@8.4.18: + /stylehacks/5.1.1_postcss@8.4.19: resolution: {integrity: sha512-sBpcd5Hx7G6seo7b1LkpttvTz7ikD0LlH5RmdcBNb6fFR0Fl7LQwHDFr300q4cwUqi+IYrFGmsIHieMBfnN/Bw==} engines: {node: ^10 || ^12 || >=14.0} peerDependencies: postcss: ^8.2.15 dependencies: browserslist: 4.21.4 - postcss: 8.4.18 - postcss-selector-parser: 6.0.10 + postcss: 8.4.19 + postcss-selector-parser: 6.0.11 dev: false /supports-color/5.5.0: @@ -5800,12 +4603,8 @@ packages: stable: 0.1.8 dev: false - /systemjs/6.13.0: - resolution: {integrity: sha512-P3cgh2bpaPvAO2NE3uRp/n6hmk4xPX4DQf+UzTlCAycssKdqhp6hjw+ENWe+aUS7TogKRFtptMosTSFeC6R55g==} - dev: true - - /tailwindcss/3.2.2_postcss@8.4.18: - resolution: {integrity: sha512-c2GtSdqg+harR4QeoTmex0Ngfg8IIHNeLQH5yr2B9uZbZR1Xt1rYbjWOWTcj3YLTZhrmZnPowoQDbSRFyZHQ5Q==} + /tailwindcss/3.2.4_postcss@8.4.19: + resolution: {integrity: sha512-AhwtHCKMtR71JgeYDaswmZXhPcW9iuI9Sp2LvZPo9upDZ7231ZJ7eA9RaURbhpXGVlrjX4cFNlB4ieTetEb7hQ==} engines: {node: '>=12.13.0'} hasBin: true peerDependencies: @@ -5825,20 +4624,20 @@ packages: normalize-path: 3.0.0 object-hash: 3.0.0 picocolors: 1.0.0 - postcss: 8.4.18 - postcss-import: 14.1.0_postcss@8.4.18 - postcss-js: 4.0.0_postcss@8.4.18 - postcss-load-config: 3.1.4_postcss@8.4.18 - postcss-nested: 6.0.0_postcss@8.4.18 - postcss-selector-parser: 6.0.10 + postcss: 8.4.19 + postcss-import: 14.1.0_postcss@8.4.19 + postcss-js: 4.0.0_postcss@8.4.19 + postcss-load-config: 3.1.4_postcss@8.4.19 + postcss-nested: 6.0.0_postcss@8.4.19 + postcss-selector-parser: 6.0.11 postcss-value-parser: 4.2.0 quick-lru: 5.1.1 resolve: 1.22.1 transitivePeerDependencies: - ts-node - /terser/5.15.1: - resolution: {integrity: sha512-K1faMUvpm/FBxjBXud0LWVAGxmvoPbZbfTCYbSgaaYQaIXI3/TdI7a7ZGA73Zrou6Q8Zmz3oeUTsp/dj+ag2Xw==} + /terser/5.16.1: + resolution: {integrity: sha512-xvQfyfA1ayT0qdK47zskQgRZeWLoOQ8JQ6mIgRGVNwZKdQMU+5FkCBjmv4QjcrTzyZquRw2FVtlJSRUmMKQslw==} engines: {node: '>=10'} hasBin: true dependencies: @@ -5846,6 +4645,7 @@ packages: acorn: 8.8.1 commander: 2.20.3 source-map-support: 0.5.21 + dev: true /text-table/0.2.0: resolution: {integrity: sha512-N+8UisAXDGk8PFXP4HAzVR9nbfmVJ3zYLAWiTIoqC5v5isinhr+r5uaO8+7r3BMfuNIufIsA7RdpVgacC2cSpw==} @@ -5896,14 +4696,14 @@ packages: resolution: {integrity: sha512-77EbyPPpMz+FRFRuAFlWMtmgUWGe9UOG2Z25NqCwiIjRhOf5iKGuzSe5P2w1laq+FkRy4p+PCuVkJSGkzTEKVw==} dev: true - /tsutils/3.21.0_typescript@4.8.4: + /tsutils/3.21.0_typescript@4.9.3: resolution: {integrity: sha512-mHKK3iUXL+3UF6xL5k0PEhKRUBKPBCv/+RkEOpjRWxxx27KKRBmmA60A9pgOUvMi8GKhRMPEmjBRPzs2W7O1OA==} engines: {node: '>= 6'} peerDependencies: typescript: '>=2.8.0 || >= 3.2.0-dev || >= 3.3.0-dev || >= 3.4.0-dev || >= 3.5.0-dev || >= 3.6.0-dev || >= 3.6.0-beta || >= 3.7.0-dev || >= 3.7.0-beta' dependencies: tslib: 1.14.1 - typescript: 4.8.4 + typescript: 4.9.3 dev: true /tty-browserify/0.0.1: @@ -5928,34 +4728,11 @@ packages: engines: {node: '>=10'} dev: true - /typescript/4.8.4: - resolution: {integrity: sha512-QCh+85mCy+h0IGff8r5XWzOVSbBO+KfeYrMQh7NJ58QujwcE22u+NUSmUxqF+un70P9GXKxa2HCNiTTMJknyjQ==} + /typescript/4.9.3: + resolution: {integrity: sha512-CIfGzTelbKNEnLpLdGFgdyKhG23CKdKgQPOBc+OUNrkJ2vr+KSzsSV5kq5iWhEQbok+quxgGzrAtGWCyU7tHnA==} engines: {node: '>=4.2.0'} hasBin: true - /unicode-canonical-property-names-ecmascript/2.0.0: - resolution: {integrity: sha512-yY5PpDlfVIU5+y/BSCxAJRBIS1Zc2dDG3Ujq+sR0U+JjUevW2JhocOF+soROYDSaAezOzOKuyyixhD6mBknSmQ==} - engines: {node: '>=4'} - dev: true - - /unicode-match-property-ecmascript/2.0.0: - resolution: {integrity: sha512-5kaZCrbp5mmbz5ulBkDkbY0SsPOjKqVS35VpL9ulMPfSl0J0Xsm+9Evphv9CoIZFwre7aJoa94AY6seMKGVN5Q==} - engines: {node: '>=4'} - dependencies: - unicode-canonical-property-names-ecmascript: 2.0.0 - unicode-property-aliases-ecmascript: 2.1.0 - dev: true - - /unicode-match-property-value-ecmascript/2.0.0: - resolution: {integrity: sha512-7Yhkc0Ye+t4PNYzOGKedDhXbYIBe1XEQYQxOPyhcXNMJ0WCABqqj6ckydd6pWRZTHV4GuCPKdBAUiMc60tsKVw==} - engines: {node: '>=4'} - dev: true - - /unicode-property-aliases-ecmascript/2.1.0: - resolution: {integrity: sha512-6t3foTQI9qne+OZoVQB/8x8rk2k1eVy1gRXhV3oFQ5T6R1dqQ1xtin3XqSlx3+ATBkliTaR/hHyJBm+LVPNM8w==} - engines: {node: '>=4'} - dev: true - /untildify/4.0.0: resolution: {integrity: sha512-KK8xQ1mkzZeg9inewmFVDNkg3l5LUhoq9kN6iWYB/CC9YMG8HA+c1Q8HwDe6dEX7kErrEVNVBO3fWsVq5iDgtw==} engines: {node: '>=8'} @@ -5995,48 +4772,18 @@ packages: is-typed-array: 1.1.10 which-typed-array: 1.1.9 - /uuid/8.1.0: - resolution: {integrity: sha512-CI18flHDznR0lq54xBycOVmphdCYnQLKn8abKn7PXUiKUGdEd+/l9LWNJmugXel4hXq7S+RMNl34ecyC9TntWg==} - hasBin: true - dev: true - /validator/13.7.0: resolution: {integrity: sha512-nYXQLCBkpJ8X6ltALua9dRrZDHVYxjJ1wgskNt1lH9fzGjs3tgojGSCBjmEPwkWS1y29+DrizMTW19Pr9uB2nw==} engines: {node: '>= 0.10'} dev: true - /vinyl-sourcemaps-apply/0.2.1: - resolution: {integrity: sha512-+oDh3KYZBoZC8hfocrbrxbLUeaYtQK7J5WU5Br9VqWqmCll3tFJqKp97GC9GmMsVIL0qnx2DgEDVxdo5EZ5sSw==} + /vite-plugin-commonjs/0.6.0: + resolution: {integrity: sha512-pIzT2wOsx9bUAstgujH/I+a7GSvLWuxrt2udN3b/OALgGgkHDcu4qOLXhwgLkVeZ00FnpyM0LnqkmfUcWkEcvw==} dependencies: - source-map: 0.5.7 + fast-glob: 3.2.12 dev: true - /vinyl/2.2.1: - resolution: {integrity: sha512-LII3bXRFBZLlezoG5FfZVcXflZgWP/4dCwKtxd5ky9+LOtM4CS3bIRQsmR1KMnMW07jpE8fqR2lcxPZ+8sJIcw==} - engines: {node: '>= 0.10'} - dependencies: - clone: 2.1.2 - clone-buffer: 1.0.0 - clone-stats: 1.0.0 - cloneable-readable: 1.1.3 - remove-trailing-separator: 1.1.0 - replace-ext: 1.0.1 - dev: true - - /vite-plugin-chunk-split/0.4.3_terser@5.15.1: - resolution: {integrity: sha512-PW22WxPRXL+ZlOQ98Ma34g0aNjBQDbA3V7b1s8dVANfKKeBznhxcLOQH7/nv2zmXtKellNiB0ABt37odmBuxwg==} - dependencies: - es-module-lexer: 1.1.0 - magic-string: 0.26.7 - vite: 3.1.0_terser@5.15.1 - transitivePeerDependencies: - - less - - sass - - stylus - - terser - dev: true - - /vite-plugin-node-stdlib-browser/0.1.1_2kanylj5izyyptb57x4jqclh2u: + /vite-plugin-node-stdlib-browser/0.1.1_wuavpz5e2ujfpxmqao6ix4o4hq: resolution: {integrity: sha512-KsvUWxiVBJwb8DDOl5XP6E7qq2VMSWtLe8HOu7wuVhSejGAeSqDq+64WLcPvfpuW/ExEDIEMt17JDrEaofr0fQ==} peerDependencies: node-stdlib-browser: ^1.2.0 @@ -6044,50 +4791,25 @@ packages: dependencies: '@rollup/plugin-inject': 4.0.4_rollup@2.79.1 node-stdlib-browser: 1.2.0 - vite: 3.2.2_terser@5.15.1 + vite: 3.2.4 transitivePeerDependencies: - rollup dev: true - /vite/3.1.0_terser@5.15.1: - resolution: {integrity: sha512-YBg3dUicDpDWFCGttmvMbVyS9ydjntwEjwXRj2KBFwSB8SxmGcudo1yb8FW5+M/G86aS8x828ujnzUVdsLjs9g==} - engines: {node: ^14.18.0 || >=16.0.0} - hasBin: true - peerDependencies: - less: '*' - sass: '*' - stylus: '*' - terser: ^5.4.0 - peerDependenciesMeta: - less: - optional: true - sass: - optional: true - stylus: - optional: true - terser: - optional: true - dependencies: - esbuild: 0.15.13 - postcss: 8.4.18 - resolve: 1.22.1 - rollup: 2.78.1 - terser: 5.15.1 - optionalDependencies: - fsevents: 2.3.2 - dev: true - - /vite/3.2.2_terser@5.15.1: - resolution: {integrity: sha512-pLrhatFFOWO9kS19bQ658CnRYzv0WLbsPih6R+iFeEEhDOuYgYCX2rztUViMz/uy/V8cLCJvLFeiOK7RJEzHcw==} + /vite/3.2.4: + resolution: {integrity: sha512-Z2X6SRAffOUYTa+sLy3NQ7nlHFU100xwanq1WDwqaiFiCe+25zdxP1TfCS5ojPV2oDDcXudHIoPnI1Z/66B7Yw==} engines: {node: ^14.18.0 || >=16.0.0} hasBin: true peerDependencies: + '@types/node': '>= 14' less: '*' sass: '*' stylus: '*' sugarss: '*' terser: ^5.4.0 peerDependenciesMeta: + '@types/node': + optional: true less: optional: true sass: @@ -6099,29 +4821,29 @@ packages: terser: optional: true dependencies: - esbuild: 0.15.13 - postcss: 8.4.18 + esbuild: 0.15.16 + postcss: 8.4.19 resolve: 1.22.1 rollup: 2.79.1 - terser: 5.15.1 optionalDependencies: fsevents: 2.3.2 - /vitepress/1.0.0-alpha.27_7bzztktfx4ksi72cjsd4rjugn4: - resolution: {integrity: sha512-7/PwlIRZANvB2uyi8oi4oMXuH84g2/pAaoymb+ObBCs60m0oVxKMPO28w7R/svqSnnE+bNDOuLzTCXt7gn513g==} + /vitepress/1.0.0-alpha.29_tbpndr44ulefs3hehwpi2mkf2y: + resolution: {integrity: sha512-oaRaeMLcN9M3Bxz97fFVF6Gzm3Aqtb0CijTt5TOW0XPzNPuKA0YpFnsmS97gdKmA+VztM6itRJ8K7JJuU0VS3g==} hasBin: true dependencies: '@docsearch/css': 3.3.0 '@docsearch/js': 3.3.0_tbpndr44ulefs3hehwpi2mkf2y - '@vitejs/plugin-vue': 3.2.0_vite@3.2.2+vue@3.2.41 + '@vitejs/plugin-vue': 3.2.0_vite@3.2.4+vue@3.2.45 '@vue/devtools-api': 6.4.5 - '@vueuse/core': 9.4.0_vue@3.2.41 + '@vueuse/core': 9.6.0_vue@3.2.45 body-scroll-lock: 4.0.0-beta.0 shiki: 0.11.1 - vite: 3.2.2_terser@5.15.1 - vue: 3.2.41 + vite: 3.2.4 + vue: 3.2.45 transitivePeerDependencies: - '@algolia/client-search' + - '@types/node' - '@types/react' - '@vue/composition-api' - less @@ -6133,10 +4855,6 @@ packages: - terser dev: false - /vlq/0.2.3: - resolution: {integrity: sha512-DRibZL6DsNhIgYQ+wNdWDL2SL3bKPlVrRiBqV5yuMm++op8W4kGFtaQfCs4KEJn0wBZcHVHJ3eoywX8983k1ow==} - dev: true - /vm-browserify/1.1.2: resolution: {integrity: sha512-2ham8XPWTONajOR0ohOKOHXkm3+gaBmGut3SRuu75xLd/RRaY6vqgh8NBYYk7+RW3u5AtzPQZG8F10LHkl0lAQ==} @@ -6144,8 +4862,8 @@ packages: resolution: {integrity: sha512-bFJH7UQxlXT8kKeyiyu41r22jCZXG8kuuVVA33OEJn1diWOZK5n8zBSPZFHVBOu8kXZ6h0LIRhf5UnCo61J4Hg==} dev: true - /vscode-oniguruma/1.6.2: - resolution: {integrity: sha512-KH8+KKov5eS/9WhofZR8M8dMHWN2gTxjMsG4jd04YhpbPR91fUj7rYQ2/XjeHCJWbg7X++ApRIU9NUwM2vTvLA==} + /vscode-oniguruma/1.7.0: + resolution: {integrity: sha512-L9WMGRfrjOhgHSdOYgCt/yRMsXzLDJSL7BPrOZt73gU0iWO4mpqzqQzOz5srxqTvMBaR0XZTSrVWo4j55Rc6cA==} dev: false /vscode-textmate/6.0.0: @@ -6156,7 +4874,7 @@ packages: resolution: {integrity: sha512-8TEXQxlldWAuIODdukIb+TR5s+9Ds40eSJrw+1iDDA9IFORPjMELarNQE3myz5XIkWWpdprmJjm1/SxMlWOC8A==} dev: true - /vue-demi/0.13.11_vue@3.2.41: + /vue-demi/0.13.11_vue@3.2.45: resolution: {integrity: sha512-IR8HoEEGM65YY3ZJYAjMlKygDQn25D5ajNFNoKh9RSDMQtlzCxtfQjdQgv9jjK+m3377SsJXY8ysq8kLCZL25A==} engines: {node: '>=12'} hasBin: true @@ -6168,20 +4886,20 @@ packages: '@vue/composition-api': optional: true dependencies: - vue: 3.2.41 + vue: 3.2.45 dev: false - /vue-eslint-parser/9.1.0_eslint@8.26.0: + /vue-eslint-parser/9.1.0_eslint@8.28.0: resolution: {integrity: sha512-NGn/iQy8/Wb7RrRa4aRkokyCZfOUWk19OP5HP6JEozQFX5AoS/t+Z0ZN7FY4LlmWc4FNI922V7cvX28zctN8dQ==} engines: {node: ^14.17.0 || >=16.0.0} peerDependencies: eslint: '>=6.0.0' dependencies: debug: 4.3.4 - eslint: 8.26.0 + eslint: 8.28.0 eslint-scope: 7.1.1 eslint-visitor-keys: 3.3.0 - espree: 9.4.0 + espree: 9.4.1 esquery: 1.4.0 lodash: 4.17.21 semver: 7.3.8 @@ -6189,52 +4907,52 @@ packages: - supports-color dev: true - /vue-router/4.1.6_vue@3.2.41: + /vue-router/4.1.6_vue@3.2.45: resolution: {integrity: sha512-DYWYwsG6xNPmLq/FmZn8Ip+qrhFEzA14EI12MsMgVxvHFDYvlr4NXpVF5hrRH1wVcDP8fGi5F4rxuJSl8/r+EQ==} peerDependencies: vue: ^3.2.0 dependencies: '@vue/devtools-api': 6.4.5 - vue: 3.2.41 - dev: false + vue: 3.2.45 + dev: true - /vue-template-compiler/2.7.13: - resolution: {integrity: sha512-jYM6TClwDS9YqP48gYrtAtaOhRKkbYmbzE+Q51gX5YDr777n7tNI/IZk4QV4l/PjQPNh/FVa/E92sh/RqKMrog==} + /vue-template-compiler/2.7.14: + resolution: {integrity: sha512-zyA5Y3ArvVG0NacJDkkzJuPQDF8RFeRlzV2vLeSnhSpieO6LK2OVbdLPi5MPPs09Ii+gMO8nY4S3iKQxBxDmWQ==} dependencies: de-indent: 1.0.2 he: 1.2.0 dev: true - /vue-tsc/1.0.9_typescript@4.8.4: - resolution: {integrity: sha512-vRmHD1K6DmBymNhoHjQy/aYKTRQNLGOu2/ESasChG9Vy113K6CdP0NlhR0bzgFJfv2eFB9Ez/9L5kIciUajBxQ==} + /vue-tsc/1.0.10_typescript@4.9.3: + resolution: {integrity: sha512-o6ek6ZSDwpVWn7/ZXlIILfCZ18o7ypEYKMDynsyPj9m10/ALXkCLKIj9yVfx00QAX5Z/hKrdhYcA2ZaQ0+U7Kg==} hasBin: true peerDependencies: typescript: '*' dependencies: - '@volar/vue-language-core': 1.0.9 - '@volar/vue-typescript': 1.0.9 - typescript: 4.8.4 + '@volar/vue-language-core': 1.0.10 + '@volar/vue-typescript': 1.0.10 + typescript: 4.9.3 dev: true - /vue/3.2.41: - resolution: {integrity: sha512-uuuvnrDXEeZ9VUPljgHkqB5IaVO8SxhPpqF2eWOukVrBnRBx2THPSGQBnVRt0GrIG1gvCmFXMGbd7FqcT1ixNQ==} + /vue/3.2.45: + resolution: {integrity: sha512-9Nx/Mg2b2xWlXykmCwiTUCWHbWIj53bnkizBxKai1g61f2Xit700A1ljowpTIM11e3uipOeiPcSqnmBg6gyiaA==} dependencies: - '@vue/compiler-dom': 3.2.41 - '@vue/compiler-sfc': 3.2.41 - '@vue/runtime-dom': 3.2.41 - '@vue/server-renderer': 3.2.41_vue@3.2.41 - '@vue/shared': 3.2.41 + '@vue/compiler-dom': 3.2.45 + '@vue/compiler-sfc': 3.2.45 + '@vue/runtime-dom': 3.2.45 + '@vue/server-renderer': 3.2.45_vue@3.2.45 + '@vue/shared': 3.2.45 - /vue3-easy-data-table/1.5.12: - resolution: {integrity: sha512-XMHXIqQSV5Yh9N1qfXtIQ+QLp1+yABFU7L/3AL1RLD/qmm33E6EY47Dc9aoDCC8AOUE1vx+dEncYlTGOcaLNLQ==} + /vue3-easy-data-table/1.5.20: + resolution: {integrity: sha512-Vdac+nJD/WR62Gutd8hSsPGWq5+mxhKqHQf9tJcqATJttWLGQRBkEZA9v1ALh+PQDW93t2+UJhdenIuTCO0HIA==} dependencies: - vue: 3.2.41 + vue: 3.2.45 dev: false - /vue3-perfect-scrollbar/1.6.1_postcss@8.4.18: + /vue3-perfect-scrollbar/1.6.1_postcss@8.4.19: resolution: {integrity: sha512-r9wfxlFwVyHXMPKG0PnR7fDfJPQ20KEVzKQfSU5by2WKYz2PwV0bTfyfejmEyZXsXL0O8VtSWtgxfPuFR2AGOg==} dependencies: - cssnano: 5.1.14_postcss@8.4.18 + cssnano: 5.1.14_postcss@8.4.19 perfect-scrollbar: 1.5.5 postcss-import: 12.0.1 transitivePeerDependencies: diff --git a/frontend/src/App.vue b/frontend/src/App.vue index 0254150..83cd61e 100644 --- a/frontend/src/App.vue +++ b/frontend/src/App.vue @@ -4,8 +4,8 @@ import NavigationBar from './components/NavigationBar.vue'; import { useHub } from './hub'; import { useTheme } from './stores/theme'; -import /* * as */structs from '@thriftgen/structs_types'; -import /* * as */exceptions from '@thriftgen/exceptions_types'; +import /* * as */ structs from '@thriftgen/structs_types'; +import /* * as */ exceptions from '@thriftgen/exceptions_types'; import { RouteMeta, useRouter } from 'vue-router'; import { AlertType, useAlert } from './stores/alert'; import { useAuth } from './stores/auth'; diff --git a/frontend/src/components/NavigationBar.vue b/frontend/src/components/NavigationBar.vue index d3c30a3..8800efc 100644 --- a/frontend/src/components/NavigationBar.vue +++ b/frontend/src/components/NavigationBar.vue @@ -4,7 +4,7 @@ import { useAlert } from '@/stores/alert'; import { useAuth } from '@/stores/auth'; import { computed, ref, watch } from 'vue'; import { RouteLocationRaw, RouterLink, useRouter } from 'vue-router'; -import /* * as */structs from '@thriftgen/structs_types'; +import /* * as */ structs from '@thriftgen/structs_types'; import SpinnerIcon from './SpinnerIcon.vue'; import { NavbarLinkMeta } from '@/router'; const auth = useAuth(); diff --git a/frontend/src/hub/hub.ts b/frontend/src/hub/hub.ts index e56b544..0ba4e74 100644 --- a/frontend/src/hub/hub.ts +++ b/frontend/src/hub/hub.ts @@ -1,5 +1,5 @@ import { ThriftClient } from './xhr_client'; -import /* * as */Core from '@thriftgen/CoreService'; +import /* * as */ Core from '@thriftgen/CoreService'; import { ServiceType } from './service_type'; import { ClientOptions } from '.'; import { defaultClientOptions } from './defaults'; diff --git a/frontend/src/hub/xhr_client.ts b/frontend/src/hub/xhr_client.ts index 7f5cbd2..dc4d44f 100644 --- a/frontend/src/hub/xhr_client.ts +++ b/frontend/src/hub/xhr_client.ts @@ -8,7 +8,12 @@ import { } from 'thrift'; import { computed } from 'vue'; import { ClientOptions } from '.'; -import { CookieKeyAuthToken, CookieKeyTrackToken, HeaderKeyAuthToken, HeaderKeyTrackToken } from './hub'; +import { + CookieKeyAuthToken, + CookieKeyTrackToken, + HeaderKeyAuthToken, + HeaderKeyTrackToken, +} from './hub'; export function initXHRClient( clientCtor: TClientConstructor, diff --git a/frontend/src/stores/auth.ts b/frontend/src/stores/auth.ts index dbee8ae..a8fc4c8 100644 --- a/frontend/src/stores/auth.ts +++ b/frontend/src/stores/auth.ts @@ -1,6 +1,6 @@ import { defineStore } from 'pinia'; -import /* * as */structs from '@thriftgen/structs_types'; +import /* * as */ structs from '@thriftgen/structs_types'; import { deleteCookie, getCookie, setCookie } from '@/utils/cookie'; import { CookieKeyAuthToken, CookieKeyTrackToken } from '@/hub/hub'; import { RemovableRef, useLocalStorage } from '@vueuse/core'; diff --git a/frontend/src/stores/theme.ts b/frontend/src/stores/theme.ts index 2c4ec4e..6ddcfd7 100644 --- a/frontend/src/stores/theme.ts +++ b/frontend/src/stores/theme.ts @@ -11,7 +11,7 @@ export const useTheme = defineStore({ return state._darkTheme; }, navigationBarVisibility(state): boolean { - return state._navigationBarVisibility + return state._navigationBarVisibility; }, }, actions: { diff --git a/frontend/src/views/core/AdminUserListView.vue b/frontend/src/views/core/AdminUserListView.vue index 714268b..dda6ece 100644 --- a/frontend/src/views/core/AdminUserListView.vue +++ b/frontend/src/views/core/AdminUserListView.vue @@ -1,6 +1,6 @@ + diff --git a/public/manifest.json b/public/manifest.json index c6ac507..6f6e2b1 100644 --- a/public/manifest.json +++ b/public/manifest.json @@ -1,6 +1,6 @@ { "index.html": { - "file": "assets/index.241d8ed5.js", + "file": "assets/index.d28a354c.js", "src": "index.html", "isEntry": true, "css": [