@glissandoo/lib 1.108.0 → 1.108.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.
package/lang/ca.json CHANGED
@@ -121,7 +121,7 @@
121
121
  "instruments.marchingToms": "Toms de marxa",
122
122
  "instruments.melodica": "Melódica",
123
123
  "instruments.mezzosoproano": "Mezzosoprano",
124
- "instruments.musicConductor": "Direccció Musical",
124
+ "instruments.musicConductor": "Direcció Musical",
125
125
  "instruments.oboe": "Oboè",
126
126
  "instruments.peak-flute": "Flauta de bec",
127
127
  "instruments.percussion": "Percussió",
@@ -33,7 +33,9 @@ export declare enum GroupCustomFieldType {
33
33
  DATE = "date",
34
34
  SELECT = "select",
35
35
  EMAIL = "email",
36
- PHONE = "phone"
36
+ PHONE = "phone",
37
+ LINK = "link",
38
+ PARAGRAPH = "paragraph"
37
39
  }
38
40
  export interface GroupCustomFieldOption {
39
41
  id: string;
@@ -32,6 +32,8 @@ var GroupCustomFieldType;
32
32
  GroupCustomFieldType["SELECT"] = "select";
33
33
  GroupCustomFieldType["EMAIL"] = "email";
34
34
  GroupCustomFieldType["PHONE"] = "phone";
35
+ GroupCustomFieldType["LINK"] = "link";
36
+ GroupCustomFieldType["PARAGRAPH"] = "paragraph";
35
37
  })(GroupCustomFieldType = exports.GroupCustomFieldType || (exports.GroupCustomFieldType = {}));
36
38
  var AdminPermissions;
37
39
  (function (AdminPermissions) {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@glissandoo/lib",
3
- "version": "1.108.0",
3
+ "version": "1.108.1",
4
4
  "description": "Glissandoo library js",
5
5
  "main": "./index.js",
6
6
  "types": "./index.d.ts",
@@ -28,6 +28,7 @@
28
28
  "supabase:dev": "export $(grep -v '^#' supabase/.dev.env | xargs) && LINKED_REF=$(supabase projects list | grep '●' | awk -F '|' '{print $3}' | xargs) && [ \"$LINKED_REF\" != \"$SUPABASE_PROJECT_REF\" ] && npm run supabase:dev:link; supabase",
29
29
  "supabase:prod": "export $(grep -v '^#' supabase/.prod.env | xargs) && LINKED_REF=$(supabase projects list | grep '●' | awk -F '|' '{print $3}' | xargs) && [ \"$LINKED_REF\" != \"$SUPABASE_PROJECT_REF\" ] && npm run supabase:prod:link; supabase",
30
30
  "supabase:local:types": "supabase gen types typescript --local > src/types/supabase/generated.ts; prettier --write src/types/supabase/generated.ts",
31
+ "supabase:prod:types": "supabase gen types typescript --project-id fqqdedotyiuyetimcflq > src/types/supabase/generated.ts; prettier --write src/types/supabase/generated.ts",
31
32
  "test": "echo \"Error: no test specified\" && exit 1",
32
33
  "translation:download": "localazy download",
33
34
  "translation:upload": "localazy upload",