@glissandoo/lib 1.54.3 → 1.55.1
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.
|
@@ -23,6 +23,12 @@ export declare namespace GroupRepertoryFbFunctionsTypes {
|
|
|
23
23
|
groupId: string;
|
|
24
24
|
}
|
|
25
25
|
export type RemoveResult = void;
|
|
26
|
+
export interface CloneBetweenGroupsParams {
|
|
27
|
+
themeId: string;
|
|
28
|
+
groupId: string;
|
|
29
|
+
targetGroupId: string;
|
|
30
|
+
}
|
|
31
|
+
export type CloneBetweenGroupsResult = void;
|
|
26
32
|
export interface ClaimMusicSheetParams {
|
|
27
33
|
themeId: string;
|
|
28
34
|
groupId: string;
|
package/functions/index.d.ts
CHANGED
|
@@ -79,6 +79,7 @@ export declare enum FbFunctionName {
|
|
|
79
79
|
GroupRepertoryDownloadThemeFiles = "groupRepertory-downloadThemeFiles",
|
|
80
80
|
GroupRepertoryDownloadFilesBySection = "groupRepertory-downloadFilesBySection",
|
|
81
81
|
GroupRepertoryEdit = "groupRepertory-edit",
|
|
82
|
+
GroupRepertoryCloneBetweenGroups = "groupRepertory-cloneBetweenGroups",
|
|
82
83
|
GroupRepertoryIdentifyInstruments = "groupRepertory-identifyInstruments",
|
|
83
84
|
GroupRepertoryIdentifyInstrumentsFromFileNames = "groupRepertory-identifyInstrumentsFromFileNames",
|
|
84
85
|
GroupRepertoryOnCreate = "groupRepertory-onCreate",
|
package/functions/index.js
CHANGED
|
@@ -83,6 +83,7 @@ var FbFunctionName;
|
|
|
83
83
|
FbFunctionName["GroupRepertoryDownloadThemeFiles"] = "groupRepertory-downloadThemeFiles";
|
|
84
84
|
FbFunctionName["GroupRepertoryDownloadFilesBySection"] = "groupRepertory-downloadFilesBySection";
|
|
85
85
|
FbFunctionName["GroupRepertoryEdit"] = "groupRepertory-edit";
|
|
86
|
+
FbFunctionName["GroupRepertoryCloneBetweenGroups"] = "groupRepertory-cloneBetweenGroups";
|
|
86
87
|
FbFunctionName["GroupRepertoryIdentifyInstruments"] = "groupRepertory-identifyInstruments";
|
|
87
88
|
FbFunctionName["GroupRepertoryIdentifyInstrumentsFromFileNames"] = "groupRepertory-identifyInstrumentsFromFileNames";
|
|
88
89
|
FbFunctionName["GroupRepertoryOnCreate"] = "groupRepertory-onCreate";
|
package/functions/regions.js
CHANGED
|
@@ -52,6 +52,7 @@ const regionByFunctions = {
|
|
|
52
52
|
[index_1.FbFunctionName.GroupPlayerEventOnUpdate]: GCloudRegions.UsCentral1,
|
|
53
53
|
[index_1.FbFunctionName.GroupRepertoryPublish]: GCloudRegions.UsCentral1,
|
|
54
54
|
[index_1.FbFunctionName.GroupRepertoryEdit]: GCloudRegions.UsCentral1,
|
|
55
|
+
[index_1.FbFunctionName.GroupRepertoryCloneBetweenGroups]: GCloudRegions.EuropeWest6,
|
|
55
56
|
[index_1.FbFunctionName.GroupRepertoryRemove]: GCloudRegions.UsCentral1,
|
|
56
57
|
[index_1.FbFunctionName.GroupRepertoryRate]: GCloudRegions.EuropeWest6,
|
|
57
58
|
[index_1.FbFunctionName.GroupRepertoryDownloadThemeFiles]: GCloudRegions.UsCentral1,
|