@duque.edits/sdk 1.1.2 → 1.1.3

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (65) hide show
  1. package/dist/index.js +2 -2
  2. package/dist/index.mjs +2 -2
  3. package/dist/managers/automaticmessage/AutomaticMessageManager.js +2 -2
  4. package/dist/managers/automaticmessage/AutomaticMessageManager.mjs +2 -2
  5. package/dist/managers/bet/GuildBetManager.js +2 -2
  6. package/dist/managers/bet/GuildBetManager.mjs +2 -2
  7. package/dist/managers/betuser/GuildBetUserManager.js +2 -2
  8. package/dist/managers/betuser/GuildBetUserManager.mjs +2 -2
  9. package/dist/managers/buffer/BufferManager.js +2 -2
  10. package/dist/managers/buffer/BufferManager.mjs +2 -2
  11. package/dist/managers/guild/GuildManager.js +2 -2
  12. package/dist/managers/guild/GuildManager.mjs +2 -2
  13. package/dist/managers/index.js +2 -2
  14. package/dist/managers/index.mjs +2 -2
  15. package/dist/managers/logs/LogManager.js +2 -2
  16. package/dist/managers/logs/LogManager.mjs +2 -2
  17. package/dist/managers/match/GuildMatchManager.js +2 -2
  18. package/dist/managers/match/GuildMatchManager.mjs +2 -2
  19. package/dist/managers/mediator/GuildMediatorManager.js +2 -2
  20. package/dist/managers/mediator/GuildMediatorManager.mjs +2 -2
  21. package/dist/managers/minesgame/MinesGameManager.js +2 -2
  22. package/dist/managers/minesgame/MinesGameManager.mjs +2 -2
  23. package/dist/managers/permission/GuildPermissionManager.js +2 -2
  24. package/dist/managers/permission/GuildPermissionManager.mjs +2 -2
  25. package/dist/managers/ticket/TicketManager.js +2 -2
  26. package/dist/managers/ticket/TicketManager.mjs +2 -2
  27. package/dist/managers/tournament/TournamentManager.js +2 -2
  28. package/dist/managers/tournament/TournamentManager.mjs +2 -2
  29. package/dist/managers/user/GuildUserManager.js +2 -2
  30. package/dist/managers/user/GuildUserManager.mjs +2 -2
  31. package/dist/managers/vipmember/VipMemberManager.js +2 -2
  32. package/dist/managers/vipmember/VipMemberManager.mjs +2 -2
  33. package/dist/rest/REST.js +2 -2
  34. package/dist/rest/REST.mjs +2 -2
  35. package/dist/rest/Routes.js +2 -2
  36. package/dist/rest/Routes.mjs +2 -2
  37. package/dist/rest/index.js +2 -2
  38. package/dist/rest/index.mjs +2 -2
  39. package/dist/structures/automaticmessage/AutomaticMessage.js +2 -2
  40. package/dist/structures/automaticmessage/AutomaticMessage.mjs +2 -2
  41. package/dist/structures/bet/GuildBet.js +2 -2
  42. package/dist/structures/bet/GuildBet.mjs +2 -2
  43. package/dist/structures/betuser/GuildBetUser.js +2 -2
  44. package/dist/structures/betuser/GuildBetUser.mjs +2 -2
  45. package/dist/structures/guild/Guild.js +2 -2
  46. package/dist/structures/guild/Guild.mjs +2 -2
  47. package/dist/structures/index.js +2 -2
  48. package/dist/structures/index.mjs +2 -2
  49. package/dist/structures/logentry/LogEntry.js +2 -2
  50. package/dist/structures/logentry/LogEntry.mjs +2 -2
  51. package/dist/structures/match/GuildMatch.js +2 -2
  52. package/dist/structures/match/GuildMatch.mjs +2 -2
  53. package/dist/structures/mediator/GuildMediator.js +2 -2
  54. package/dist/structures/mediator/GuildMediator.mjs +2 -2
  55. package/dist/structures/minesgame/MinesGame.js +2 -2
  56. package/dist/structures/minesgame/MinesGame.mjs +2 -2
  57. package/dist/structures/ticket/Ticket.js +2 -2
  58. package/dist/structures/ticket/Ticket.mjs +2 -2
  59. package/dist/structures/tournament/Tournament.js +2 -2
  60. package/dist/structures/tournament/Tournament.mjs +2 -2
  61. package/dist/structures/user/GuildUser.js +2 -2
  62. package/dist/structures/user/GuildUser.mjs +2 -2
  63. package/dist/structures/vipmember/VipMember.js +2 -2
  64. package/dist/structures/vipmember/VipMember.mjs +2 -2
  65. package/package.json +1 -1
package/dist/index.js CHANGED
@@ -628,8 +628,8 @@ var APIEndpoints = {
628
628
 
629
629
  // src/rest/Routes.ts
630
630
  var Routes = {
631
- base: "http://localhost:80/api/v1",
632
- //base: "https://duqueapi.shardweb.app/api/v1",
631
+ //base: "http://localhost:80/api/v1",
632
+ base: "https://duqueapi.shardweb.app/api/v1",
633
633
  field: (field) => `/${field}`,
634
634
  fields: (...fields) => `${fields.join("/")}`,
635
635
  guilds: {
package/dist/index.mjs CHANGED
@@ -581,8 +581,8 @@ var APIEndpoints = {
581
581
 
582
582
  // src/rest/Routes.ts
583
583
  var Routes = {
584
- base: "http://localhost:80/api/v1",
585
- //base: "https://duqueapi.shardweb.app/api/v1",
584
+ //base: "http://localhost:80/api/v1",
585
+ base: "https://duqueapi.shardweb.app/api/v1",
586
586
  field: (field) => `/${field}`,
587
587
  fields: (...fields) => `${fields.join("/")}`,
588
588
  guilds: {
@@ -507,8 +507,8 @@ var BaseManager = class {
507
507
 
508
508
  // src/rest/Routes.ts
509
509
  var Routes = {
510
- base: "http://localhost:80/api/v1",
511
- //base: "https://duqueapi.shardweb.app/api/v1",
510
+ //base: "http://localhost:80/api/v1",
511
+ base: "https://duqueapi.shardweb.app/api/v1",
512
512
  field: (field) => `/${field}`,
513
513
  fields: (...fields) => `${fields.join("/")}`,
514
514
  guilds: {
@@ -500,8 +500,8 @@ var BaseManager = class {
500
500
 
501
501
  // src/rest/Routes.ts
502
502
  var Routes = {
503
- base: "http://localhost:80/api/v1",
504
- //base: "https://duqueapi.shardweb.app/api/v1",
503
+ //base: "http://localhost:80/api/v1",
504
+ base: "https://duqueapi.shardweb.app/api/v1",
505
505
  field: (field) => `/${field}`,
506
506
  fields: (...fields) => `${fields.join("/")}`,
507
507
  guilds: {
@@ -406,8 +406,8 @@ module.exports = __toCommonJS(GuildBetManager_exports);
406
406
 
407
407
  // src/rest/Routes.ts
408
408
  var Routes = {
409
- base: "http://localhost:80/api/v1",
410
- //base: "https://duqueapi.shardweb.app/api/v1",
409
+ //base: "http://localhost:80/api/v1",
410
+ base: "https://duqueapi.shardweb.app/api/v1",
411
411
  field: (field) => `/${field}`,
412
412
  fields: (...fields) => `${fields.join("/")}`,
413
413
  guilds: {
@@ -399,8 +399,8 @@ var require_main = __commonJS({
399
399
 
400
400
  // src/rest/Routes.ts
401
401
  var Routes = {
402
- base: "http://localhost:80/api/v1",
403
- //base: "https://duqueapi.shardweb.app/api/v1",
402
+ //base: "http://localhost:80/api/v1",
403
+ base: "https://duqueapi.shardweb.app/api/v1",
404
404
  field: (field) => `/${field}`,
405
405
  fields: (...fields) => `${fields.join("/")}`,
406
406
  guilds: {
@@ -34,8 +34,8 @@ module.exports = __toCommonJS(GuildBetUserManager_exports);
34
34
 
35
35
  // src/rest/Routes.ts
36
36
  var Routes = {
37
- base: "http://localhost:80/api/v1",
38
- //base: "https://duqueapi.shardweb.app/api/v1",
37
+ //base: "http://localhost:80/api/v1",
38
+ base: "https://duqueapi.shardweb.app/api/v1",
39
39
  field: (field) => `/${field}`,
40
40
  fields: (...fields) => `${fields.join("/")}`,
41
41
  guilds: {
@@ -10,8 +10,8 @@ var __privateMethod = (obj, member, method) => (__accessCheck(obj, member, "acce
10
10
 
11
11
  // src/rest/Routes.ts
12
12
  var Routes = {
13
- base: "http://localhost:80/api/v1",
14
- //base: "https://duqueapi.shardweb.app/api/v1",
13
+ //base: "http://localhost:80/api/v1",
14
+ base: "https://duqueapi.shardweb.app/api/v1",
15
15
  field: (field) => `/${field}`,
16
16
  fields: (...fields) => `${fields.join("/")}`,
17
17
  guilds: {
@@ -28,8 +28,8 @@ module.exports = __toCommonJS(BufferManager_exports);
28
28
 
29
29
  // src/rest/Routes.ts
30
30
  var Routes = {
31
- base: "http://localhost:80/api/v1",
32
- //base: "https://duqueapi.shardweb.app/api/v1",
31
+ //base: "http://localhost:80/api/v1",
32
+ base: "https://duqueapi.shardweb.app/api/v1",
33
33
  field: (field) => `/${field}`,
34
34
  fields: (...fields) => `${fields.join("/")}`,
35
35
  guilds: {
@@ -4,8 +4,8 @@ var __publicField = (obj, key, value) => __defNormalProp(obj, typeof key !== "sy
4
4
 
5
5
  // src/rest/Routes.ts
6
6
  var Routes = {
7
- base: "http://localhost:80/api/v1",
8
- //base: "https://duqueapi.shardweb.app/api/v1",
7
+ //base: "http://localhost:80/api/v1",
8
+ base: "https://duqueapi.shardweb.app/api/v1",
9
9
  field: (field) => `/${field}`,
10
10
  fields: (...fields) => `${fields.join("/")}`,
11
11
  guilds: {
@@ -406,8 +406,8 @@ module.exports = __toCommonJS(GuildManager_exports);
406
406
 
407
407
  // src/rest/Routes.ts
408
408
  var Routes = {
409
- base: "http://localhost:80/api/v1",
410
- //base: "https://duqueapi.shardweb.app/api/v1",
409
+ //base: "http://localhost:80/api/v1",
410
+ base: "https://duqueapi.shardweb.app/api/v1",
411
411
  field: (field) => `/${field}`,
412
412
  fields: (...fields) => `${fields.join("/")}`,
413
413
  guilds: {
@@ -399,8 +399,8 @@ var require_main = __commonJS({
399
399
 
400
400
  // src/rest/Routes.ts
401
401
  var Routes = {
402
- base: "http://localhost:80/api/v1",
403
- //base: "https://duqueapi.shardweb.app/api/v1",
402
+ //base: "http://localhost:80/api/v1",
403
+ base: "https://duqueapi.shardweb.app/api/v1",
404
404
  field: (field) => `/${field}`,
405
405
  fields: (...fields) => `${fields.join("/")}`,
406
406
  guilds: {
@@ -589,8 +589,8 @@ var PlayerManager = class extends Collection {
589
589
 
590
590
  // src/rest/Routes.ts
591
591
  var Routes = {
592
- base: "http://localhost:80/api/v1",
593
- //base: "https://duqueapi.shardweb.app/api/v1",
592
+ //base: "http://localhost:80/api/v1",
593
+ base: "https://duqueapi.shardweb.app/api/v1",
594
594
  field: (field) => `/${field}`,
595
595
  fields: (...fields) => `${fields.join("/")}`,
596
596
  guilds: {
@@ -568,8 +568,8 @@ var PlayerManager = class extends Collection {
568
568
 
569
569
  // src/rest/Routes.ts
570
570
  var Routes = {
571
- base: "http://localhost:80/api/v1",
572
- //base: "https://duqueapi.shardweb.app/api/v1",
571
+ //base: "http://localhost:80/api/v1",
572
+ base: "https://duqueapi.shardweb.app/api/v1",
573
573
  field: (field) => `/${field}`,
574
574
  fields: (...fields) => `${fields.join("/")}`,
575
575
  guilds: {
@@ -406,8 +406,8 @@ module.exports = __toCommonJS(LogManager_exports);
406
406
 
407
407
  // src/rest/Routes.ts
408
408
  var Routes = {
409
- base: "http://localhost:80/api/v1",
410
- //base: "https://duqueapi.shardweb.app/api/v1",
409
+ //base: "http://localhost:80/api/v1",
410
+ base: "https://duqueapi.shardweb.app/api/v1",
411
411
  field: (field) => `/${field}`,
412
412
  fields: (...fields) => `${fields.join("/")}`,
413
413
  guilds: {
@@ -399,8 +399,8 @@ var require_main = __commonJS({
399
399
 
400
400
  // src/rest/Routes.ts
401
401
  var Routes = {
402
- base: "http://localhost:80/api/v1",
403
- //base: "https://duqueapi.shardweb.app/api/v1",
402
+ //base: "http://localhost:80/api/v1",
403
+ base: "https://duqueapi.shardweb.app/api/v1",
404
404
  field: (field) => `/${field}`,
405
405
  fields: (...fields) => `${fields.join("/")}`,
406
406
  guilds: {
@@ -406,8 +406,8 @@ module.exports = __toCommonJS(GuildMatchManager_exports);
406
406
 
407
407
  // src/rest/Routes.ts
408
408
  var Routes = {
409
- base: "http://localhost:80/api/v1",
410
- //base: "https://duqueapi.shardweb.app/api/v1",
409
+ //base: "http://localhost:80/api/v1",
410
+ base: "https://duqueapi.shardweb.app/api/v1",
411
411
  field: (field) => `/${field}`,
412
412
  fields: (...fields) => `${fields.join("/")}`,
413
413
  guilds: {
@@ -399,8 +399,8 @@ var require_main = __commonJS({
399
399
 
400
400
  // src/rest/Routes.ts
401
401
  var Routes = {
402
- base: "http://localhost:80/api/v1",
403
- //base: "https://duqueapi.shardweb.app/api/v1",
402
+ //base: "http://localhost:80/api/v1",
403
+ base: "https://duqueapi.shardweb.app/api/v1",
404
404
  field: (field) => `/${field}`,
405
405
  fields: (...fields) => `${fields.join("/")}`,
406
406
  guilds: {
@@ -34,8 +34,8 @@ module.exports = __toCommonJS(GuildMediatorManager_exports);
34
34
 
35
35
  // src/rest/Routes.ts
36
36
  var Routes = {
37
- base: "http://localhost:80/api/v1",
38
- //base: "https://duqueapi.shardweb.app/api/v1",
37
+ //base: "http://localhost:80/api/v1",
38
+ base: "https://duqueapi.shardweb.app/api/v1",
39
39
  field: (field) => `/${field}`,
40
40
  fields: (...fields) => `${fields.join("/")}`,
41
41
  guilds: {
@@ -10,8 +10,8 @@ var __privateMethod = (obj, member, method) => (__accessCheck(obj, member, "acce
10
10
 
11
11
  // src/rest/Routes.ts
12
12
  var Routes = {
13
- base: "http://localhost:80/api/v1",
14
- //base: "https://duqueapi.shardweb.app/api/v1",
13
+ //base: "http://localhost:80/api/v1",
14
+ base: "https://duqueapi.shardweb.app/api/v1",
15
15
  field: (field) => `/${field}`,
16
16
  fields: (...fields) => `${fields.join("/")}`,
17
17
  guilds: {
@@ -487,8 +487,8 @@ var Collection = class _Collection extends Map {
487
487
 
488
488
  // src/rest/Routes.ts
489
489
  var Routes = {
490
- base: "http://localhost:80/api/v1",
491
- //base: "https://duqueapi.shardweb.app/api/v1",
490
+ //base: "http://localhost:80/api/v1",
491
+ base: "https://duqueapi.shardweb.app/api/v1",
492
492
  field: (field) => `/${field}`,
493
493
  fields: (...fields) => `${fields.join("/")}`,
494
494
  guilds: {
@@ -480,8 +480,8 @@ var Collection = class _Collection extends Map {
480
480
 
481
481
  // src/rest/Routes.ts
482
482
  var Routes = {
483
- base: "http://localhost:80/api/v1",
484
- //base: "https://duqueapi.shardweb.app/api/v1",
483
+ //base: "http://localhost:80/api/v1",
484
+ base: "https://duqueapi.shardweb.app/api/v1",
485
485
  field: (field) => `/${field}`,
486
486
  fields: (...fields) => `${fields.join("/")}`,
487
487
  guilds: {
@@ -28,8 +28,8 @@ module.exports = __toCommonJS(GuildPermissionManager_exports);
28
28
 
29
29
  // src/rest/Routes.ts
30
30
  var Routes = {
31
- base: "http://localhost:80/api/v1",
32
- //base: "https://duqueapi.shardweb.app/api/v1",
31
+ //base: "http://localhost:80/api/v1",
32
+ base: "https://duqueapi.shardweb.app/api/v1",
33
33
  field: (field) => `/${field}`,
34
34
  fields: (...fields) => `${fields.join("/")}`,
35
35
  guilds: {
@@ -4,8 +4,8 @@ var __publicField = (obj, key, value) => __defNormalProp(obj, typeof key !== "sy
4
4
 
5
5
  // src/rest/Routes.ts
6
6
  var Routes = {
7
- base: "http://localhost:80/api/v1",
8
- //base: "https://duqueapi.shardweb.app/api/v1",
7
+ //base: "http://localhost:80/api/v1",
8
+ base: "https://duqueapi.shardweb.app/api/v1",
9
9
  field: (field) => `/${field}`,
10
10
  fields: (...fields) => `${fields.join("/")}`,
11
11
  guilds: {
@@ -406,8 +406,8 @@ module.exports = __toCommonJS(TicketManager_exports);
406
406
 
407
407
  // src/rest/Routes.ts
408
408
  var Routes = {
409
- base: "http://localhost:80/api/v1",
410
- //base: "https://duqueapi.shardweb.app/api/v1",
409
+ //base: "http://localhost:80/api/v1",
410
+ base: "https://duqueapi.shardweb.app/api/v1",
411
411
  field: (field) => `/${field}`,
412
412
  fields: (...fields) => `${fields.join("/")}`,
413
413
  guilds: {
@@ -399,8 +399,8 @@ var require_main = __commonJS({
399
399
 
400
400
  // src/rest/Routes.ts
401
401
  var Routes = {
402
- base: "http://localhost:80/api/v1",
403
- //base: "https://duqueapi.shardweb.app/api/v1",
402
+ //base: "http://localhost:80/api/v1",
403
+ base: "https://duqueapi.shardweb.app/api/v1",
404
404
  field: (field) => `/${field}`,
405
405
  fields: (...fields) => `${fields.join("/")}`,
406
406
  guilds: {
@@ -406,8 +406,8 @@ module.exports = __toCommonJS(TournamentManager_exports);
406
406
 
407
407
  // src/rest/Routes.ts
408
408
  var Routes = {
409
- base: "http://localhost:80/api/v1",
410
- //base: "https://duqueapi.shardweb.app/api/v1",
409
+ //base: "http://localhost:80/api/v1",
410
+ base: "https://duqueapi.shardweb.app/api/v1",
411
411
  field: (field) => `/${field}`,
412
412
  fields: (...fields) => `${fields.join("/")}`,
413
413
  guilds: {
@@ -399,8 +399,8 @@ var require_main = __commonJS({
399
399
 
400
400
  // src/rest/Routes.ts
401
401
  var Routes = {
402
- base: "http://localhost:80/api/v1",
403
- //base: "https://duqueapi.shardweb.app/api/v1",
402
+ //base: "http://localhost:80/api/v1",
403
+ base: "https://duqueapi.shardweb.app/api/v1",
404
404
  field: (field) => `/${field}`,
405
405
  fields: (...fields) => `${fields.join("/")}`,
406
406
  guilds: {
@@ -34,8 +34,8 @@ module.exports = __toCommonJS(GuildUserManager_exports);
34
34
 
35
35
  // src/rest/Routes.ts
36
36
  var Routes = {
37
- base: "http://localhost:80/api/v1",
38
- //base: "https://duqueapi.shardweb.app/api/v1",
37
+ //base: "http://localhost:80/api/v1",
38
+ base: "https://duqueapi.shardweb.app/api/v1",
39
39
  field: (field) => `/${field}`,
40
40
  fields: (...fields) => `${fields.join("/")}`,
41
41
  guilds: {
@@ -10,8 +10,8 @@ var __privateMethod = (obj, member, method) => (__accessCheck(obj, member, "acce
10
10
 
11
11
  // src/rest/Routes.ts
12
12
  var Routes = {
13
- base: "http://localhost:80/api/v1",
14
- //base: "https://duqueapi.shardweb.app/api/v1",
13
+ //base: "http://localhost:80/api/v1",
14
+ base: "https://duqueapi.shardweb.app/api/v1",
15
15
  field: (field) => `/${field}`,
16
16
  fields: (...fields) => `${fields.join("/")}`,
17
17
  guilds: {
@@ -34,8 +34,8 @@ module.exports = __toCommonJS(VipMemberManager_exports);
34
34
 
35
35
  // src/rest/Routes.ts
36
36
  var Routes = {
37
- base: "http://localhost:80/api/v1",
38
- //base: "https://duqueapi.shardweb.app/api/v1",
37
+ //base: "http://localhost:80/api/v1",
38
+ base: "https://duqueapi.shardweb.app/api/v1",
39
39
  field: (field) => `/${field}`,
40
40
  fields: (...fields) => `${fields.join("/")}`,
41
41
  guilds: {
@@ -10,8 +10,8 @@ var __privateMethod = (obj, member, method) => (__accessCheck(obj, member, "acce
10
10
 
11
11
  // src/rest/Routes.ts
12
12
  var Routes = {
13
- base: "http://localhost:80/api/v1",
14
- //base: "https://duqueapi.shardweb.app/api/v1",
13
+ //base: "http://localhost:80/api/v1",
14
+ base: "https://duqueapi.shardweb.app/api/v1",
15
15
  field: (field) => `/${field}`,
16
16
  fields: (...fields) => `${fields.join("/")}`,
17
17
  guilds: {
package/dist/rest/REST.js CHANGED
@@ -461,8 +461,8 @@ var import_undici = require("undici");
461
461
 
462
462
  // src/rest/Routes.ts
463
463
  var Routes = {
464
- base: "http://localhost:80/api/v1",
465
- //base: "https://duqueapi.shardweb.app/api/v1",
464
+ //base: "http://localhost:80/api/v1",
465
+ base: "https://duqueapi.shardweb.app/api/v1",
466
466
  field: (field) => `/${field}`,
467
467
  fields: (...fields) => `${fields.join("/")}`,
468
468
  guilds: {
@@ -456,8 +456,8 @@ import { request, Headers } from "undici";
456
456
 
457
457
  // src/rest/Routes.ts
458
458
  var Routes = {
459
- base: "http://localhost:80/api/v1",
460
- //base: "https://duqueapi.shardweb.app/api/v1",
459
+ //base: "http://localhost:80/api/v1",
460
+ base: "https://duqueapi.shardweb.app/api/v1",
461
461
  field: (field) => `/${field}`,
462
462
  fields: (...fields) => `${fields.join("/")}`,
463
463
  guilds: {
@@ -24,8 +24,8 @@ __export(Routes_exports, {
24
24
  });
25
25
  module.exports = __toCommonJS(Routes_exports);
26
26
  var Routes = {
27
- base: "http://localhost:80/api/v1",
28
- //base: "https://duqueapi.shardweb.app/api/v1",
27
+ //base: "http://localhost:80/api/v1",
28
+ base: "https://duqueapi.shardweb.app/api/v1",
29
29
  field: (field) => `/${field}`,
30
30
  fields: (...fields) => `${fields.join("/")}`,
31
31
  guilds: {
@@ -1,7 +1,7 @@
1
1
  // src/rest/Routes.ts
2
2
  var Routes = {
3
- base: "http://localhost:80/api/v1",
4
- //base: "https://duqueapi.shardweb.app/api/v1",
3
+ //base: "http://localhost:80/api/v1",
4
+ base: "https://duqueapi.shardweb.app/api/v1",
5
5
  field: (field) => `/${field}`,
6
6
  fields: (...fields) => `${fields.join("/")}`,
7
7
  guilds: {
@@ -421,8 +421,8 @@ var APIEndpoints = {
421
421
 
422
422
  // src/rest/Routes.ts
423
423
  var Routes = {
424
- base: "http://localhost:80/api/v1",
425
- //base: "https://duqueapi.shardweb.app/api/v1",
424
+ //base: "http://localhost:80/api/v1",
425
+ base: "https://duqueapi.shardweb.app/api/v1",
426
426
  field: (field) => `/${field}`,
427
427
  fields: (...fields) => `${fields.join("/")}`,
428
428
  guilds: {
@@ -412,8 +412,8 @@ var APIEndpoints = {
412
412
 
413
413
  // src/rest/Routes.ts
414
414
  var Routes = {
415
- base: "http://localhost:80/api/v1",
416
- //base: "https://duqueapi.shardweb.app/api/v1",
415
+ //base: "http://localhost:80/api/v1",
416
+ base: "https://duqueapi.shardweb.app/api/v1",
417
417
  field: (field) => `/${field}`,
418
418
  fields: (...fields) => `${fields.join("/")}`,
419
419
  guilds: {
@@ -406,8 +406,8 @@ module.exports = __toCommonJS(AutomaticMessage_exports);
406
406
 
407
407
  // src/rest/Routes.ts
408
408
  var Routes = {
409
- base: "http://localhost:80/api/v1",
410
- //base: "https://duqueapi.shardweb.app/api/v1",
409
+ //base: "http://localhost:80/api/v1",
410
+ base: "https://duqueapi.shardweb.app/api/v1",
411
411
  field: (field) => `/${field}`,
412
412
  fields: (...fields) => `${fields.join("/")}`,
413
413
  guilds: {
@@ -399,8 +399,8 @@ var require_main = __commonJS({
399
399
 
400
400
  // src/rest/Routes.ts
401
401
  var Routes = {
402
- base: "http://localhost:80/api/v1",
403
- //base: "https://duqueapi.shardweb.app/api/v1",
402
+ //base: "http://localhost:80/api/v1",
403
+ base: "https://duqueapi.shardweb.app/api/v1",
404
404
  field: (field) => `/${field}`,
405
405
  fields: (...fields) => `${fields.join("/")}`,
406
406
  guilds: {
@@ -487,8 +487,8 @@ var Collection = class _Collection extends Map {
487
487
 
488
488
  // src/rest/Routes.ts
489
489
  var Routes = {
490
- base: "http://localhost:80/api/v1",
491
- //base: "https://duqueapi.shardweb.app/api/v1",
490
+ //base: "http://localhost:80/api/v1",
491
+ base: "https://duqueapi.shardweb.app/api/v1",
492
492
  field: (field) => `/${field}`,
493
493
  fields: (...fields) => `${fields.join("/")}`,
494
494
  guilds: {
@@ -480,8 +480,8 @@ var Collection = class _Collection extends Map {
480
480
 
481
481
  // src/rest/Routes.ts
482
482
  var Routes = {
483
- base: "http://localhost:80/api/v1",
484
- //base: "https://duqueapi.shardweb.app/api/v1",
483
+ //base: "http://localhost:80/api/v1",
484
+ base: "https://duqueapi.shardweb.app/api/v1",
485
485
  field: (field) => `/${field}`,
486
486
  fields: (...fields) => `${fields.join("/")}`,
487
487
  guilds: {
@@ -34,8 +34,8 @@ module.exports = __toCommonJS(GuildBetUser_exports);
34
34
 
35
35
  // src/rest/Routes.ts
36
36
  var Routes = {
37
- base: "http://localhost:80/api/v1",
38
- //base: "https://duqueapi.shardweb.app/api/v1",
37
+ //base: "http://localhost:80/api/v1",
38
+ base: "https://duqueapi.shardweb.app/api/v1",
39
39
  field: (field) => `/${field}`,
40
40
  fields: (...fields) => `${fields.join("/")}`,
41
41
  guilds: {
@@ -10,8 +10,8 @@ var __privateMethod = (obj, member, method) => (__accessCheck(obj, member, "acce
10
10
 
11
11
  // src/rest/Routes.ts
12
12
  var Routes = {
13
- base: "http://localhost:80/api/v1",
14
- //base: "https://duqueapi.shardweb.app/api/v1",
13
+ //base: "http://localhost:80/api/v1",
14
+ base: "https://duqueapi.shardweb.app/api/v1",
15
15
  field: (field) => `/${field}`,
16
16
  fields: (...fields) => `${fields.join("/")}`,
17
17
  guilds: {
@@ -575,8 +575,8 @@ var PlayerManager = class extends Collection {
575
575
 
576
576
  // src/rest/Routes.ts
577
577
  var Routes = {
578
- base: "http://localhost:80/api/v1",
579
- //base: "https://duqueapi.shardweb.app/api/v1",
578
+ //base: "http://localhost:80/api/v1",
579
+ base: "https://duqueapi.shardweb.app/api/v1",
580
580
  field: (field) => `/${field}`,
581
581
  fields: (...fields) => `${fields.join("/")}`,
582
582
  guilds: {
@@ -568,8 +568,8 @@ var PlayerManager = class extends Collection {
568
568
 
569
569
  // src/rest/Routes.ts
570
570
  var Routes = {
571
- base: "http://localhost:80/api/v1",
572
- //base: "https://duqueapi.shardweb.app/api/v1",
571
+ //base: "http://localhost:80/api/v1",
572
+ base: "https://duqueapi.shardweb.app/api/v1",
573
573
  field: (field) => `/${field}`,
574
574
  fields: (...fields) => `${fields.join("/")}`,
575
575
  guilds: {
@@ -517,8 +517,8 @@ var BaseManager = class {
517
517
 
518
518
  // src/rest/Routes.ts
519
519
  var Routes = {
520
- base: "http://localhost:80/api/v1",
521
- //base: "https://duqueapi.shardweb.app/api/v1",
520
+ //base: "http://localhost:80/api/v1",
521
+ base: "https://duqueapi.shardweb.app/api/v1",
522
522
  field: (field) => `/${field}`,
523
523
  fields: (...fields) => `${fields.join("/")}`,
524
524
  guilds: {
@@ -500,8 +500,8 @@ var BaseManager = class {
500
500
 
501
501
  // src/rest/Routes.ts
502
502
  var Routes = {
503
- base: "http://localhost:80/api/v1",
504
- //base: "https://duqueapi.shardweb.app/api/v1",
503
+ //base: "http://localhost:80/api/v1",
504
+ base: "https://duqueapi.shardweb.app/api/v1",
505
505
  field: (field) => `/${field}`,
506
506
  fields: (...fields) => `${fields.join("/")}`,
507
507
  guilds: {
@@ -406,8 +406,8 @@ module.exports = __toCommonJS(LogEntry_exports);
406
406
 
407
407
  // src/rest/Routes.ts
408
408
  var Routes = {
409
- base: "http://localhost:80/api/v1",
410
- //base: "https://duqueapi.shardweb.app/api/v1",
409
+ //base: "http://localhost:80/api/v1",
410
+ base: "https://duqueapi.shardweb.app/api/v1",
411
411
  field: (field) => `/${field}`,
412
412
  fields: (...fields) => `${fields.join("/")}`,
413
413
  guilds: {
@@ -399,8 +399,8 @@ var require_main = __commonJS({
399
399
 
400
400
  // src/rest/Routes.ts
401
401
  var Routes = {
402
- base: "http://localhost:80/api/v1",
403
- //base: "https://duqueapi.shardweb.app/api/v1",
402
+ //base: "http://localhost:80/api/v1",
403
+ base: "https://duqueapi.shardweb.app/api/v1",
404
404
  field: (field) => `/${field}`,
405
405
  fields: (...fields) => `${fields.join("/")}`,
406
406
  guilds: {
@@ -406,8 +406,8 @@ module.exports = __toCommonJS(GuildMatch_exports);
406
406
 
407
407
  // src/rest/Routes.ts
408
408
  var Routes = {
409
- base: "http://localhost:80/api/v1",
410
- //base: "https://duqueapi.shardweb.app/api/v1",
409
+ //base: "http://localhost:80/api/v1",
410
+ base: "https://duqueapi.shardweb.app/api/v1",
411
411
  field: (field) => `/${field}`,
412
412
  fields: (...fields) => `${fields.join("/")}`,
413
413
  guilds: {
@@ -399,8 +399,8 @@ var require_main = __commonJS({
399
399
 
400
400
  // src/rest/Routes.ts
401
401
  var Routes = {
402
- base: "http://localhost:80/api/v1",
403
- //base: "https://duqueapi.shardweb.app/api/v1",
402
+ //base: "http://localhost:80/api/v1",
403
+ base: "https://duqueapi.shardweb.app/api/v1",
404
404
  field: (field) => `/${field}`,
405
405
  fields: (...fields) => `${fields.join("/")}`,
406
406
  guilds: {
@@ -34,8 +34,8 @@ module.exports = __toCommonJS(GuildMediator_exports);
34
34
 
35
35
  // src/rest/Routes.ts
36
36
  var Routes = {
37
- base: "http://localhost:80/api/v1",
38
- //base: "https://duqueapi.shardweb.app/api/v1",
37
+ //base: "http://localhost:80/api/v1",
38
+ base: "https://duqueapi.shardweb.app/api/v1",
39
39
  field: (field) => `/${field}`,
40
40
  fields: (...fields) => `${fields.join("/")}`,
41
41
  guilds: {
@@ -10,8 +10,8 @@ var __privateMethod = (obj, member, method) => (__accessCheck(obj, member, "acce
10
10
 
11
11
  // src/rest/Routes.ts
12
12
  var Routes = {
13
- base: "http://localhost:80/api/v1",
14
- //base: "https://duqueapi.shardweb.app/api/v1",
13
+ //base: "http://localhost:80/api/v1",
14
+ base: "https://duqueapi.shardweb.app/api/v1",
15
15
  field: (field) => `/${field}`,
16
16
  fields: (...fields) => `${fields.join("/")}`,
17
17
  guilds: {
@@ -406,8 +406,8 @@ module.exports = __toCommonJS(MinesGame_exports);
406
406
 
407
407
  // src/rest/Routes.ts
408
408
  var Routes = {
409
- base: "http://localhost:80/api/v1",
410
- //base: "https://duqueapi.shardweb.app/api/v1",
409
+ //base: "http://localhost:80/api/v1",
410
+ base: "https://duqueapi.shardweb.app/api/v1",
411
411
  field: (field) => `/${field}`,
412
412
  fields: (...fields) => `${fields.join("/")}`,
413
413
  guilds: {
@@ -399,8 +399,8 @@ var require_main = __commonJS({
399
399
 
400
400
  // src/rest/Routes.ts
401
401
  var Routes = {
402
- base: "http://localhost:80/api/v1",
403
- //base: "https://duqueapi.shardweb.app/api/v1",
402
+ //base: "http://localhost:80/api/v1",
403
+ base: "https://duqueapi.shardweb.app/api/v1",
404
404
  field: (field) => `/${field}`,
405
405
  fields: (...fields) => `${fields.join("/")}`,
406
406
  guilds: {
@@ -406,8 +406,8 @@ module.exports = __toCommonJS(Ticket_exports);
406
406
 
407
407
  // src/rest/Routes.ts
408
408
  var Routes = {
409
- base: "http://localhost:80/api/v1",
410
- //base: "https://duqueapi.shardweb.app/api/v1",
409
+ //base: "http://localhost:80/api/v1",
410
+ base: "https://duqueapi.shardweb.app/api/v1",
411
411
  field: (field) => `/${field}`,
412
412
  fields: (...fields) => `${fields.join("/")}`,
413
413
  guilds: {
@@ -399,8 +399,8 @@ var require_main = __commonJS({
399
399
 
400
400
  // src/rest/Routes.ts
401
401
  var Routes = {
402
- base: "http://localhost:80/api/v1",
403
- //base: "https://duqueapi.shardweb.app/api/v1",
402
+ //base: "http://localhost:80/api/v1",
403
+ base: "https://duqueapi.shardweb.app/api/v1",
404
404
  field: (field) => `/${field}`,
405
405
  fields: (...fields) => `${fields.join("/")}`,
406
406
  guilds: {
@@ -406,8 +406,8 @@ module.exports = __toCommonJS(Tournament_exports);
406
406
 
407
407
  // src/rest/Routes.ts
408
408
  var Routes = {
409
- base: "http://localhost:80/api/v1",
410
- //base: "https://duqueapi.shardweb.app/api/v1",
409
+ //base: "http://localhost:80/api/v1",
410
+ base: "https://duqueapi.shardweb.app/api/v1",
411
411
  field: (field) => `/${field}`,
412
412
  fields: (...fields) => `${fields.join("/")}`,
413
413
  guilds: {
@@ -399,8 +399,8 @@ var require_main = __commonJS({
399
399
 
400
400
  // src/rest/Routes.ts
401
401
  var Routes = {
402
- base: "http://localhost:80/api/v1",
403
- //base: "https://duqueapi.shardweb.app/api/v1",
402
+ //base: "http://localhost:80/api/v1",
403
+ base: "https://duqueapi.shardweb.app/api/v1",
404
404
  field: (field) => `/${field}`,
405
405
  fields: (...fields) => `${fields.join("/")}`,
406
406
  guilds: {
@@ -34,8 +34,8 @@ module.exports = __toCommonJS(GuildUser_exports);
34
34
 
35
35
  // src/rest/Routes.ts
36
36
  var Routes = {
37
- base: "http://localhost:80/api/v1",
38
- //base: "https://duqueapi.shardweb.app/api/v1",
37
+ //base: "http://localhost:80/api/v1",
38
+ base: "https://duqueapi.shardweb.app/api/v1",
39
39
  field: (field) => `/${field}`,
40
40
  fields: (...fields) => `${fields.join("/")}`,
41
41
  guilds: {
@@ -10,8 +10,8 @@ var __privateMethod = (obj, member, method) => (__accessCheck(obj, member, "acce
10
10
 
11
11
  // src/rest/Routes.ts
12
12
  var Routes = {
13
- base: "http://localhost:80/api/v1",
14
- //base: "https://duqueapi.shardweb.app/api/v1",
13
+ //base: "http://localhost:80/api/v1",
14
+ base: "https://duqueapi.shardweb.app/api/v1",
15
15
  field: (field) => `/${field}`,
16
16
  fields: (...fields) => `${fields.join("/")}`,
17
17
  guilds: {
@@ -34,8 +34,8 @@ module.exports = __toCommonJS(VipMember_exports);
34
34
 
35
35
  // src/rest/Routes.ts
36
36
  var Routes = {
37
- base: "http://localhost:80/api/v1",
38
- //base: "https://duqueapi.shardweb.app/api/v1",
37
+ //base: "http://localhost:80/api/v1",
38
+ base: "https://duqueapi.shardweb.app/api/v1",
39
39
  field: (field) => `/${field}`,
40
40
  fields: (...fields) => `${fields.join("/")}`,
41
41
  guilds: {
@@ -10,8 +10,8 @@ var __privateMethod = (obj, member, method) => (__accessCheck(obj, member, "acce
10
10
 
11
11
  // src/rest/Routes.ts
12
12
  var Routes = {
13
- base: "http://localhost:80/api/v1",
14
- //base: "https://duqueapi.shardweb.app/api/v1",
13
+ //base: "http://localhost:80/api/v1",
14
+ base: "https://duqueapi.shardweb.app/api/v1",
15
15
  field: (field) => `/${field}`,
16
16
  fields: (...fields) => `${fields.join("/")}`,
17
17
  guilds: {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@duque.edits/sdk",
3
- "version": "1.1.2",
3
+ "version": "1.1.3",
4
4
 
5
5
  "main": "./dist/index.js",
6
6
  "module": "./dist/index.mjs",