@glissandoo/lib 1.80.0 → 1.82.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.
- package/helpers/appScenes.d.ts +13 -0
- package/helpers/appScenes.js +13 -0
- package/helpers/errors.d.ts +2 -1
- package/helpers/errors.js +1 -0
- package/package.json +1 -1
package/helpers/appScenes.d.ts
CHANGED
|
@@ -56,7 +56,19 @@ export declare enum AppScenes {
|
|
|
56
56
|
Group = "group",
|
|
57
57
|
GroupPlayer = "groupPlayer",
|
|
58
58
|
GroupsNavigation = "GroupsNavigation",
|
|
59
|
+
GroupTab = "GroupTab",
|
|
59
60
|
GroupView = "GroupView",
|
|
61
|
+
GroupPlayerEditInstruments = "GroupPlayerEditInstruments",
|
|
62
|
+
GroupSettings = "GroupSettings",
|
|
63
|
+
GroupSettingsStack = "GroupSettingsStack",
|
|
64
|
+
GroupSettingsDisplayName = "GroupSettingsDisplayName",
|
|
65
|
+
GroupSettingsUsername = "GroupSettingsUsername",
|
|
66
|
+
GroupSettingsMusicStyle = "GroupSettingsMusicStyle",
|
|
67
|
+
GroupSettingsLocality = "GroupSettingsLocality",
|
|
68
|
+
GroupSettingsPhotoURL = "GroupSettingsPhotoURL",
|
|
69
|
+
GroupSettingsDelete = "GroupSettingsDelete",
|
|
70
|
+
GroupSettingsConfigShowAttendance = "GroupSettingsConfigShowAttendance",
|
|
71
|
+
GroupSettingsAddresses = "GroupSettingsAddresses",
|
|
60
72
|
Join = "Join",
|
|
61
73
|
JoinImageProfile = "AddProfileImage",
|
|
62
74
|
JoinInstrument = "SelectGroupInstrument",
|
|
@@ -75,6 +87,7 @@ export declare enum AppScenes {
|
|
|
75
87
|
ThemeView = "ThemeView",
|
|
76
88
|
VisorImage = "visorImage",
|
|
77
89
|
VisorPDF = "visorPDF",
|
|
90
|
+
VisorQR = "VisorQR",
|
|
78
91
|
NewGroup = "NewGroup",
|
|
79
92
|
NewGroupInfo = "NewGroupInfo",
|
|
80
93
|
NewGroupMusicStyle = "NewGroupMusicStyle",
|
package/helpers/appScenes.js
CHANGED
|
@@ -60,7 +60,19 @@ var AppScenes;
|
|
|
60
60
|
AppScenes["Group"] = "group";
|
|
61
61
|
AppScenes["GroupPlayer"] = "groupPlayer";
|
|
62
62
|
AppScenes["GroupsNavigation"] = "GroupsNavigation";
|
|
63
|
+
AppScenes["GroupTab"] = "GroupTab";
|
|
63
64
|
AppScenes["GroupView"] = "GroupView";
|
|
65
|
+
AppScenes["GroupPlayerEditInstruments"] = "GroupPlayerEditInstruments";
|
|
66
|
+
AppScenes["GroupSettings"] = "GroupSettings";
|
|
67
|
+
AppScenes["GroupSettingsStack"] = "GroupSettingsStack";
|
|
68
|
+
AppScenes["GroupSettingsDisplayName"] = "GroupSettingsDisplayName";
|
|
69
|
+
AppScenes["GroupSettingsUsername"] = "GroupSettingsUsername";
|
|
70
|
+
AppScenes["GroupSettingsMusicStyle"] = "GroupSettingsMusicStyle";
|
|
71
|
+
AppScenes["GroupSettingsLocality"] = "GroupSettingsLocality";
|
|
72
|
+
AppScenes["GroupSettingsPhotoURL"] = "GroupSettingsPhotoURL";
|
|
73
|
+
AppScenes["GroupSettingsDelete"] = "GroupSettingsDelete";
|
|
74
|
+
AppScenes["GroupSettingsConfigShowAttendance"] = "GroupSettingsConfigShowAttendance";
|
|
75
|
+
AppScenes["GroupSettingsAddresses"] = "GroupSettingsAddresses";
|
|
64
76
|
AppScenes["Join"] = "Join";
|
|
65
77
|
AppScenes["JoinImageProfile"] = "AddProfileImage";
|
|
66
78
|
AppScenes["JoinInstrument"] = "SelectGroupInstrument";
|
|
@@ -79,6 +91,7 @@ var AppScenes;
|
|
|
79
91
|
AppScenes["ThemeView"] = "ThemeView";
|
|
80
92
|
AppScenes["VisorImage"] = "visorImage";
|
|
81
93
|
AppScenes["VisorPDF"] = "visorPDF";
|
|
94
|
+
AppScenes["VisorQR"] = "VisorQR";
|
|
82
95
|
AppScenes["NewGroup"] = "NewGroup";
|
|
83
96
|
AppScenes["NewGroupInfo"] = "NewGroupInfo";
|
|
84
97
|
AppScenes["NewGroupMusicStyle"] = "NewGroupMusicStyle";
|
package/helpers/errors.d.ts
CHANGED
|
@@ -60,7 +60,8 @@ export declare enum HttpsErrorMessages {
|
|
|
60
60
|
CustomerGroupNoSubscriptionFound = "error.customerGroup.noSubscriptionFound",
|
|
61
61
|
PlayersWithCustomInstrumentsToBeDeleted = "error.group.playersWithCustomInstrumentsToBeDeleted",
|
|
62
62
|
ThemesWithCustomInstrumentsToBeDeleted = "error.group.themesWithCustomInstrumentsToBeDeleted",
|
|
63
|
-
CustomerHasGroups = "error.customer.hasGroups"
|
|
63
|
+
CustomerHasGroups = "error.customer.hasGroups",
|
|
64
|
+
GroupPlayerEditInstumentsNotAllowed = "error.groupPlayer.editInstrumentsNotAllowed"
|
|
64
65
|
}
|
|
65
66
|
export interface HttpsErrorDetails extends Record<HttpsErrorMessages, unknown> {
|
|
66
67
|
[HttpsErrorMessages.ThemesWithCustomInstrumentsToBeDeleted]: {
|
package/helpers/errors.js
CHANGED
|
@@ -62,4 +62,5 @@ var HttpsErrorMessages;
|
|
|
62
62
|
HttpsErrorMessages["PlayersWithCustomInstrumentsToBeDeleted"] = "error.group.playersWithCustomInstrumentsToBeDeleted";
|
|
63
63
|
HttpsErrorMessages["ThemesWithCustomInstrumentsToBeDeleted"] = "error.group.themesWithCustomInstrumentsToBeDeleted";
|
|
64
64
|
HttpsErrorMessages["CustomerHasGroups"] = "error.customer.hasGroups";
|
|
65
|
+
HttpsErrorMessages["GroupPlayerEditInstumentsNotAllowed"] = "error.groupPlayer.editInstrumentsNotAllowed";
|
|
65
66
|
})(HttpsErrorMessages = exports.HttpsErrorMessages || (exports.HttpsErrorMessages = {}));
|