@sonolus/core 7.9.2 → 7.10.0

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.
@@ -6,6 +6,7 @@ import { EngineDataNode } from '../node';
6
6
  import { EnginePlayDataArchetype } from './archetype';
7
7
  export type EnginePlayData = {
8
8
  skin: {
9
+ renderMode?: 'default' | 'standard' | 'lightweight';
9
10
  sprites: {
10
11
  name: SkinSpriteName | (string & {});
11
12
  id: number;
@@ -3,6 +3,7 @@ import { EngineDataNode } from '../node';
3
3
  import { EnginePreviewDataArchetype } from './archetype';
4
4
  export type EnginePreviewData = {
5
5
  skin: {
6
+ renderMode?: 'default' | 'standard' | 'lightweight';
6
7
  sprites: {
7
8
  name: SkinSpriteName | (string & {});
8
9
  id: number;
@@ -6,6 +6,7 @@ import { Text } from '../../text';
6
6
  import { EngineDataNode } from '../node';
7
7
  export type EngineTutorialData = {
8
8
  skin: {
9
+ renderMode?: 'default' | 'standard' | 'lightweight';
9
10
  sprites: {
10
11
  name: SkinSpriteName | (string & {});
11
12
  id: number;
@@ -6,6 +6,7 @@ import { EngineDataNode } from '../node';
6
6
  import { EngineWatchDataArchetype } from './archetype';
7
7
  export type EngineWatchData = {
8
8
  skin: {
9
+ renderMode?: 'default' | 'standard' | 'lightweight';
9
10
  sprites: {
10
11
  name: SkinSpriteName | (string & {});
11
12
  id: number;
@@ -22,6 +22,7 @@ export declare const Icon: {
22
22
  readonly Clock: "clock";
23
23
  readonly Comment: "comment";
24
24
  readonly Crown: "crown";
25
+ readonly CustomServer: "customServer";
25
26
  readonly Delete: "delete";
26
27
  readonly Edit: "edit";
27
28
  readonly Effect: "effect";
@@ -25,6 +25,7 @@ exports.Icon = {
25
25
  Clock: 'clock',
26
26
  Comment: 'comment',
27
27
  Crown: 'crown',
28
+ CustomServer: 'customServer',
28
29
  Delete: 'delete',
29
30
  Edit: 'edit',
30
31
  Effect: 'effect',
@@ -1,5 +1,6 @@
1
1
  import { ServerItemCommunityComment } from './comment';
2
2
  export type ServerItemCommunityCommentList = {
3
3
  pageCount: number;
4
+ cursor?: string;
4
5
  comments: ServerItemCommunityComment[];
5
6
  };
@@ -1,5 +1,6 @@
1
1
  import { ServerItemLeaderboardRecord } from './record';
2
2
  export type ServerItemLeaderboardRecordList = {
3
3
  pageCount: number;
4
+ cursor?: string;
4
5
  records: ServerItemLeaderboardRecord[];
5
6
  };
@@ -1,6 +1,7 @@
1
1
  import { ServerForm } from '../form';
2
2
  export type ServerItemList<T> = {
3
3
  pageCount: number;
4
+ cursor?: string;
4
5
  items: T[];
5
6
  searches?: ServerForm[];
6
7
  };
@@ -50,8 +50,11 @@ export type ServerSelectOption = {
50
50
  description?: string;
51
51
  required: boolean;
52
52
  type: 'select';
53
- def: number;
54
- values: (Text | (string & {}))[];
53
+ def: string;
54
+ values: {
55
+ name: string;
56
+ title: Text | (string & {});
57
+ }[];
55
58
  };
56
59
  export type ServerMultiOption = {
57
60
  query: string;
@@ -60,7 +63,10 @@ export type ServerMultiOption = {
60
63
  required: boolean;
61
64
  type: 'multi';
62
65
  def: boolean[];
63
- values: (Text | (string & {}))[];
66
+ values: {
67
+ name: string;
68
+ title: Text | (string & {});
69
+ }[];
64
70
  };
65
71
  export type ServerServerItemOption = {
66
72
  query: string;
@@ -97,4 +103,5 @@ export type ServerFileOption = {
97
103
  description?: string;
98
104
  required: boolean;
99
105
  type: 'file';
106
+ def: string;
100
107
  };
@@ -1,4 +1,22 @@
1
1
  export declare const Text: {
2
+ /** en: Custom Server */
3
+ readonly CustomServer: "#CUSTOM_SERVER";
4
+ /** en: Collection */
5
+ readonly Collection: "#COLLECTION";
6
+ /** en: Server */
7
+ readonly Server: "#SERVER";
8
+ /** en: Address */
9
+ readonly Address: "#ADDRESS";
10
+ /** en: Expiration */
11
+ readonly Expiration: "#EXPIRATION";
12
+ /** en: Storage */
13
+ readonly Storage: "#STORAGE";
14
+ /** en: Log */
15
+ readonly Log: "#LOG";
16
+ /** en: Inquiry */
17
+ readonly Inquiry: "#INQUIRY";
18
+ /** en: Banner */
19
+ readonly Banner: "#BANNER";
2
20
  /** en: Post */
3
21
  readonly Post: "#POST";
4
22
  /** en: Playlist */
@@ -55,6 +73,8 @@ export declare const Text: {
55
73
  readonly Time: "#TIME";
56
74
  /** en: Author */
57
75
  readonly Author: "#AUTHOR";
76
+ /** en: Description */
77
+ readonly Description: "#DESCRIPTION";
58
78
  /** en: Genre */
59
79
  readonly Genre: "#GENRE";
60
80
  /** en: Type */
@@ -83,10 +103,6 @@ export declare const Text: {
83
103
  readonly Content: "#CONTENT";
84
104
  /** en: Comment */
85
105
  readonly Comment: "#COMMENT";
86
- /** en: Review */
87
- readonly Review: "#REVIEW";
88
- /** en: Reply */
89
- readonly Reply: "#REPLY";
90
106
  /** en: Message */
91
107
  readonly Message: "#MESSAGE";
92
108
  /** en: Role */
@@ -425,6 +441,8 @@ export declare const Text: {
425
441
  readonly TimePlaceholder: "#TIME_PLACEHOLDER";
426
442
  /** en: Enter author... */
427
443
  readonly AuthorPlaceholder: "#AUTHOR_PLACEHOLDER";
444
+ /** en: Enter description... */
445
+ readonly DescriptionPlaceholder: "#DESCRIPTION_PLACEHOLDER";
428
446
  /** en: Enter genre... */
429
447
  readonly GenrePlaceholder: "#GENRE_PLACEHOLDER";
430
448
  /** en: Enter type... */
@@ -513,8 +531,6 @@ export declare const Text: {
513
531
  readonly Holiday: "#HOLIDAY";
514
532
  /** en: Limited */
515
533
  readonly Limited: "#LIMITED";
516
- /** en: Following */
517
- readonly Following: "#FOLLOWING";
518
534
  /** en: Announcement */
519
535
  readonly Announcement: "#ANNOUNCEMENT";
520
536
  /** en: Information */
@@ -563,22 +579,10 @@ export declare const Text: {
563
579
  readonly OtherVersions: "#OTHER_VERSIONS";
564
580
  /** en: Draft */
565
581
  readonly Draft: "#DRAFT";
566
- /** en: Reviewing */
567
- readonly Reviewing: "#REVIEWING";
568
- /** en: Published */
569
- readonly Published: "#PUBLISHED";
570
- /** en: Verifying */
571
- readonly Verifying: "#VERIFYING";
572
- /** en: Verified */
573
- readonly Verified: "#VERIFIED";
574
- /** en: Removed */
575
- readonly Removed: "#REMOVED";
576
582
  /** en: Public */
577
583
  readonly Public: "#PUBLIC";
578
584
  /** en: Private */
579
585
  readonly Private: "#PRIVATE";
580
- /** en: Locked */
581
- readonly Locked: "#LOCKED";
582
586
  /** en: Pop */
583
587
  readonly Pop: "#POP";
584
588
  /** en: Rock */
@@ -667,6 +671,16 @@ export declare const Text: {
667
671
  readonly Ranking: "#RANKING";
668
672
  /** en: Score */
669
673
  readonly Score: "#SCORE";
674
+ /** en: Owner */
675
+ readonly Owner: "#OWNER";
676
+ /** en: Admin */
677
+ readonly Admin: "#ADMIN";
678
+ /** en: Moderator */
679
+ readonly Moderator: "#MODERATOR";
680
+ /** en: Reviewer */
681
+ readonly Reviewer: "#REVIEWER";
682
+ /** en: Banned */
683
+ readonly Banned: "#BANNED";
670
684
  /** en: Player */
671
685
  readonly Player: "#PLAYER";
672
686
  /** en: Spectator */
@@ -719,12 +733,40 @@ export declare const Text: {
719
733
  readonly TeamWhite: "#TEAM_WHITE";
720
734
  /** en: Team Black */
721
735
  readonly TeamBlack: "#TEAM_BLACK";
736
+ /** en: Reply */
737
+ readonly Reply: "#REPLY";
738
+ /** en: Replied */
739
+ readonly Replied: "#REPLIED";
740
+ /** en: Review */
741
+ readonly Review: "#REVIEW";
742
+ /** en: Reviewing */
743
+ readonly Reviewing: "#REVIEWING";
744
+ /** en: Reviewed */
745
+ readonly Reviewed: "#REVIEWED";
746
+ /** en: Verify */
747
+ readonly Verify: "#VERIFY";
748
+ /** en: Verifying */
749
+ readonly Verifying: "#VERIFYING";
750
+ /** en: Verified */
751
+ readonly Verified: "#VERIFIED";
722
752
  /** en: Upload */
723
753
  readonly Upload: "#UPLOAD";
754
+ /** en: Uploading */
755
+ readonly Uploading: "#UPLOADING";
756
+ /** en: Uploaded */
757
+ readonly Uploaded: "#UPLOADED";
724
758
  /** en: Submit */
725
759
  readonly Submit: "#SUBMIT";
760
+ /** en: Submitting */
761
+ readonly Submitting: "#SUBMITTING";
762
+ /** en: Submitted */
763
+ readonly Submitted: "#SUBMITTED";
726
764
  /** en: Edit */
727
765
  readonly Edit: "#EDIT";
766
+ /** en: Editing */
767
+ readonly Editing: "#EDITING";
768
+ /** en: Edited */
769
+ readonly Edited: "#EDITED";
728
770
  /** en: Like */
729
771
  readonly Like: "#LIKE";
730
772
  /** en: Liked */
@@ -739,12 +781,30 @@ export declare const Text: {
739
781
  readonly Bookmarked: "#BOOKMARKED";
740
782
  /** en: Delete */
741
783
  readonly Delete: "#DELETE";
784
+ /** en: Deleting */
785
+ readonly Deleting: "#DELETING";
786
+ /** en: Deleted */
787
+ readonly Deleted: "#DELETED";
788
+ /** en: Remove */
789
+ readonly Remove: "#REMOVE";
790
+ /** en: Removing */
791
+ readonly Removing: "#REMOVING";
792
+ /** en: Removed */
793
+ readonly Removed: "#REMOVED";
742
794
  /** en: Restore */
743
795
  readonly Restore: "#RESTORE";
796
+ /** en: Restoring */
797
+ readonly Restoring: "#RESTORING";
798
+ /** en: Restored */
799
+ readonly Restored: "#RESTORED";
744
800
  /** en: Confirm */
745
801
  readonly Confirm: "#CONFIRM";
802
+ /** en: Confirmed */
803
+ readonly Confirmed: "#CONFIRMED";
746
804
  /** en: Cancel */
747
805
  readonly Cancel: "#CANCEL";
806
+ /** en: Canceled */
807
+ readonly Canceled: "#CANCELED";
748
808
  /** en: Increase */
749
809
  readonly Increase: "#INCREASE";
750
810
  /** en: Decrease */
@@ -767,22 +827,42 @@ export declare const Text: {
767
827
  readonly Disagreed: "#DISAGREED";
768
828
  /** en: Lock */
769
829
  readonly Lock: "#LOCK";
830
+ /** en: Locked */
831
+ readonly Locked: "#LOCKED";
770
832
  /** en: Unlock */
771
833
  readonly Unlock: "#UNLOCK";
834
+ /** en: Unlocked */
835
+ readonly Unlocked: "#UNLOCKED";
772
836
  /** en: Pin */
773
837
  readonly Pin: "#PIN";
838
+ /** en: Pinned */
839
+ readonly Pinned: "#PINNED";
774
840
  /** en: Unpin */
775
841
  readonly Unpin: "#UNPIN";
842
+ /** en: Unpinned */
843
+ readonly Unpinned: "#UNPINNED";
776
844
  /** en: Follow */
777
845
  readonly Follow: "#FOLLOW";
846
+ /** en: Following */
847
+ readonly Following: "#FOLLOWING";
848
+ /** en: Followed */
849
+ readonly Followed: "#FOLLOWED";
778
850
  /** en: Unfollow */
779
851
  readonly Unfollow: "#UNFOLLOW";
780
852
  /** en: Subscribe */
781
853
  readonly Subscribe: "#SUBSCRIBE";
854
+ /** en: Subscribing */
855
+ readonly Subscribing: "#SUBSCRIBING";
856
+ /** en: Subscribed */
857
+ readonly Subscribed: "#SUBSCRIBED";
782
858
  /** en: Unsubscribe */
783
859
  readonly Unsubscribe: "#UNSUBSCRIBE";
784
860
  /** en: Publish */
785
861
  readonly Publish: "#PUBLISH";
862
+ /** en: Publishing */
863
+ readonly Publishing: "#PUBLISHING";
864
+ /** en: Published */
865
+ readonly Published: "#PUBLISHED";
786
866
  /** en: Unpublish */
787
867
  readonly Unpublish: "#UNPUBLISH";
788
868
  /** en: Show */
@@ -791,16 +871,28 @@ export declare const Text: {
791
871
  readonly Hide: "#HIDE";
792
872
  /** en: Allow */
793
873
  readonly Allow: "#ALLOW";
874
+ /** en: Allowed */
875
+ readonly Allowed: "#ALLOWED";
794
876
  /** en: Disallow */
795
877
  readonly Disallow: "#DISALLOW";
878
+ /** en: Disallowed */
879
+ readonly Disallowed: "#DISALLOWED";
796
880
  /** en: Approve */
797
881
  readonly Approve: "#APPROVE";
882
+ /** en: Approved */
883
+ readonly Approved: "#APPROVED";
798
884
  /** en: Deny */
799
885
  readonly Deny: "#DENY";
886
+ /** en: Denied */
887
+ readonly Denied: "#DENIED";
800
888
  /** en: Accept */
801
889
  readonly Accept: "#ACCEPT";
890
+ /** en: Accepted */
891
+ readonly Accepted: "#ACCEPTED";
802
892
  /** en: Reject */
803
893
  readonly Reject: "#REJECT";
894
+ /** en: Rejected */
895
+ readonly Rejected: "#REJECTED";
804
896
  /** en: Star */
805
897
  readonly Star: "#STAR";
806
898
  /** en: Starred */
@@ -2,6 +2,24 @@
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
3
  exports.Text = void 0;
4
4
  exports.Text = {
5
+ /** en: Custom Server */
6
+ CustomServer: '#CUSTOM_SERVER',
7
+ /** en: Collection */
8
+ Collection: '#COLLECTION',
9
+ /** en: Server */
10
+ Server: '#SERVER',
11
+ /** en: Address */
12
+ Address: '#ADDRESS',
13
+ /** en: Expiration */
14
+ Expiration: '#EXPIRATION',
15
+ /** en: Storage */
16
+ Storage: '#STORAGE',
17
+ /** en: Log */
18
+ Log: '#LOG',
19
+ /** en: Inquiry */
20
+ Inquiry: '#INQUIRY',
21
+ /** en: Banner */
22
+ Banner: '#BANNER',
5
23
  /** en: Post */
6
24
  Post: '#POST',
7
25
  /** en: Playlist */
@@ -58,6 +76,8 @@ exports.Text = {
58
76
  Time: '#TIME',
59
77
  /** en: Author */
60
78
  Author: '#AUTHOR',
79
+ /** en: Description */
80
+ Description: '#DESCRIPTION',
61
81
  /** en: Genre */
62
82
  Genre: '#GENRE',
63
83
  /** en: Type */
@@ -86,10 +106,6 @@ exports.Text = {
86
106
  Content: '#CONTENT',
87
107
  /** en: Comment */
88
108
  Comment: '#COMMENT',
89
- /** en: Review */
90
- Review: '#REVIEW',
91
- /** en: Reply */
92
- Reply: '#REPLY',
93
109
  /** en: Message */
94
110
  Message: '#MESSAGE',
95
111
  /** en: Role */
@@ -428,6 +444,8 @@ exports.Text = {
428
444
  TimePlaceholder: '#TIME_PLACEHOLDER',
429
445
  /** en: Enter author... */
430
446
  AuthorPlaceholder: '#AUTHOR_PLACEHOLDER',
447
+ /** en: Enter description... */
448
+ DescriptionPlaceholder: '#DESCRIPTION_PLACEHOLDER',
431
449
  /** en: Enter genre... */
432
450
  GenrePlaceholder: '#GENRE_PLACEHOLDER',
433
451
  /** en: Enter type... */
@@ -516,8 +534,6 @@ exports.Text = {
516
534
  Holiday: '#HOLIDAY',
517
535
  /** en: Limited */
518
536
  Limited: '#LIMITED',
519
- /** en: Following */
520
- Following: '#FOLLOWING',
521
537
  /** en: Announcement */
522
538
  Announcement: '#ANNOUNCEMENT',
523
539
  /** en: Information */
@@ -566,22 +582,10 @@ exports.Text = {
566
582
  OtherVersions: '#OTHER_VERSIONS',
567
583
  /** en: Draft */
568
584
  Draft: '#DRAFT',
569
- /** en: Reviewing */
570
- Reviewing: '#REVIEWING',
571
- /** en: Published */
572
- Published: '#PUBLISHED',
573
- /** en: Verifying */
574
- Verifying: '#VERIFYING',
575
- /** en: Verified */
576
- Verified: '#VERIFIED',
577
- /** en: Removed */
578
- Removed: '#REMOVED',
579
585
  /** en: Public */
580
586
  Public: '#PUBLIC',
581
587
  /** en: Private */
582
588
  Private: '#PRIVATE',
583
- /** en: Locked */
584
- Locked: '#LOCKED',
585
589
  /** en: Pop */
586
590
  Pop: '#POP',
587
591
  /** en: Rock */
@@ -670,6 +674,16 @@ exports.Text = {
670
674
  Ranking: '#RANKING',
671
675
  /** en: Score */
672
676
  Score: '#SCORE',
677
+ /** en: Owner */
678
+ Owner: '#OWNER',
679
+ /** en: Admin */
680
+ Admin: '#ADMIN',
681
+ /** en: Moderator */
682
+ Moderator: '#MODERATOR',
683
+ /** en: Reviewer */
684
+ Reviewer: '#REVIEWER',
685
+ /** en: Banned */
686
+ Banned: '#BANNED',
673
687
  /** en: Player */
674
688
  Player: '#PLAYER',
675
689
  /** en: Spectator */
@@ -722,12 +736,40 @@ exports.Text = {
722
736
  TeamWhite: '#TEAM_WHITE',
723
737
  /** en: Team Black */
724
738
  TeamBlack: '#TEAM_BLACK',
739
+ /** en: Reply */
740
+ Reply: '#REPLY',
741
+ /** en: Replied */
742
+ Replied: '#REPLIED',
743
+ /** en: Review */
744
+ Review: '#REVIEW',
745
+ /** en: Reviewing */
746
+ Reviewing: '#REVIEWING',
747
+ /** en: Reviewed */
748
+ Reviewed: '#REVIEWED',
749
+ /** en: Verify */
750
+ Verify: '#VERIFY',
751
+ /** en: Verifying */
752
+ Verifying: '#VERIFYING',
753
+ /** en: Verified */
754
+ Verified: '#VERIFIED',
725
755
  /** en: Upload */
726
756
  Upload: '#UPLOAD',
757
+ /** en: Uploading */
758
+ Uploading: '#UPLOADING',
759
+ /** en: Uploaded */
760
+ Uploaded: '#UPLOADED',
727
761
  /** en: Submit */
728
762
  Submit: '#SUBMIT',
763
+ /** en: Submitting */
764
+ Submitting: '#SUBMITTING',
765
+ /** en: Submitted */
766
+ Submitted: '#SUBMITTED',
729
767
  /** en: Edit */
730
768
  Edit: '#EDIT',
769
+ /** en: Editing */
770
+ Editing: '#EDITING',
771
+ /** en: Edited */
772
+ Edited: '#EDITED',
731
773
  /** en: Like */
732
774
  Like: '#LIKE',
733
775
  /** en: Liked */
@@ -742,12 +784,30 @@ exports.Text = {
742
784
  Bookmarked: '#BOOKMARKED',
743
785
  /** en: Delete */
744
786
  Delete: '#DELETE',
787
+ /** en: Deleting */
788
+ Deleting: '#DELETING',
789
+ /** en: Deleted */
790
+ Deleted: '#DELETED',
791
+ /** en: Remove */
792
+ Remove: '#REMOVE',
793
+ /** en: Removing */
794
+ Removing: '#REMOVING',
795
+ /** en: Removed */
796
+ Removed: '#REMOVED',
745
797
  /** en: Restore */
746
798
  Restore: '#RESTORE',
799
+ /** en: Restoring */
800
+ Restoring: '#RESTORING',
801
+ /** en: Restored */
802
+ Restored: '#RESTORED',
747
803
  /** en: Confirm */
748
804
  Confirm: '#CONFIRM',
805
+ /** en: Confirmed */
806
+ Confirmed: '#CONFIRMED',
749
807
  /** en: Cancel */
750
808
  Cancel: '#CANCEL',
809
+ /** en: Canceled */
810
+ Canceled: '#CANCELED',
751
811
  /** en: Increase */
752
812
  Increase: '#INCREASE',
753
813
  /** en: Decrease */
@@ -770,22 +830,42 @@ exports.Text = {
770
830
  Disagreed: '#DISAGREED',
771
831
  /** en: Lock */
772
832
  Lock: '#LOCK',
833
+ /** en: Locked */
834
+ Locked: '#LOCKED',
773
835
  /** en: Unlock */
774
836
  Unlock: '#UNLOCK',
837
+ /** en: Unlocked */
838
+ Unlocked: '#UNLOCKED',
775
839
  /** en: Pin */
776
840
  Pin: '#PIN',
841
+ /** en: Pinned */
842
+ Pinned: '#PINNED',
777
843
  /** en: Unpin */
778
844
  Unpin: '#UNPIN',
845
+ /** en: Unpinned */
846
+ Unpinned: '#UNPINNED',
779
847
  /** en: Follow */
780
848
  Follow: '#FOLLOW',
849
+ /** en: Following */
850
+ Following: '#FOLLOWING',
851
+ /** en: Followed */
852
+ Followed: '#FOLLOWED',
781
853
  /** en: Unfollow */
782
854
  Unfollow: '#UNFOLLOW',
783
855
  /** en: Subscribe */
784
856
  Subscribe: '#SUBSCRIBE',
857
+ /** en: Subscribing */
858
+ Subscribing: '#SUBSCRIBING',
859
+ /** en: Subscribed */
860
+ Subscribed: '#SUBSCRIBED',
785
861
  /** en: Unsubscribe */
786
862
  Unsubscribe: '#UNSUBSCRIBE',
787
863
  /** en: Publish */
788
864
  Publish: '#PUBLISH',
865
+ /** en: Publishing */
866
+ Publishing: '#PUBLISHING',
867
+ /** en: Published */
868
+ Published: '#PUBLISHED',
789
869
  /** en: Unpublish */
790
870
  Unpublish: '#UNPUBLISH',
791
871
  /** en: Show */
@@ -794,16 +874,28 @@ exports.Text = {
794
874
  Hide: '#HIDE',
795
875
  /** en: Allow */
796
876
  Allow: '#ALLOW',
877
+ /** en: Allowed */
878
+ Allowed: '#ALLOWED',
797
879
  /** en: Disallow */
798
880
  Disallow: '#DISALLOW',
881
+ /** en: Disallowed */
882
+ Disallowed: '#DISALLOWED',
799
883
  /** en: Approve */
800
884
  Approve: '#APPROVE',
885
+ /** en: Approved */
886
+ Approved: '#APPROVED',
801
887
  /** en: Deny */
802
888
  Deny: '#DENY',
889
+ /** en: Denied */
890
+ Denied: '#DENIED',
803
891
  /** en: Accept */
804
892
  Accept: '#ACCEPT',
893
+ /** en: Accepted */
894
+ Accepted: '#ACCEPTED',
805
895
  /** en: Reject */
806
896
  Reject: '#REJECT',
897
+ /** en: Rejected */
898
+ Rejected: '#REJECTED',
807
899
  /** en: Star */
808
900
  Star: '#STAR',
809
901
  /** en: Starred */
@@ -2,6 +2,6 @@
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
3
  exports.version = void 0;
4
4
  exports.version = {
5
- package: '7.9.2',
6
- sonolus: '0.8.7',
5
+ package: '7.10.0',
6
+ sonolus: '0.8.9',
7
7
  };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@sonolus/core",
3
- "version": "7.9.2",
3
+ "version": "7.10.0",
4
4
  "description": "Core library for Sonolus",
5
5
  "author": "NonSpicyBurrito",
6
6
  "repository": "github:Sonolus/sonolus-core",
@@ -14,18 +14,20 @@
14
14
  "dist"
15
15
  ],
16
16
  "scripts": {
17
- "prebuild": "tsc -p . --noEmit && eslint . && prettier . --check",
17
+ "check-type": "tsc -p . --noEmit",
18
+ "check-lint": "eslint .",
19
+ "check-format": "prettier . --check",
18
20
  "build": "tsc -p ."
19
21
  },
20
22
  "devDependencies": {
21
- "@eslint/js": "^9.9.0",
23
+ "@eslint/js": "^9.17.0",
22
24
  "@types/eslint__js": "^8.42.3",
23
- "@types/node": "^20.15.0",
24
- "eslint": "^9.9.0",
25
+ "@types/node": "^20.17.10",
26
+ "eslint": "^9.17.0",
25
27
  "eslint-config-prettier": "^9.1.0",
26
- "prettier": "^3.3.3",
27
- "prettier-plugin-organize-imports": "^4.0.0",
28
- "typescript": "~5.5.4",
29
- "typescript-eslint": "^8.1.0"
28
+ "prettier": "^3.4.2",
29
+ "prettier-plugin-organize-imports": "^4.1.0",
30
+ "typescript": "~5.7.2",
31
+ "typescript-eslint": "^8.18.2"
30
32
  }
31
33
  }