@glissandoo/lib 1.104.29 → 1.104.30

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@glissandoo/lib",
3
- "version": "1.104.29",
3
+ "version": "1.104.30",
4
4
  "description": "Glissandoo library js",
5
5
  "main": "./index.js",
6
6
  "types": "./index.d.ts",
@@ -7,6 +7,100 @@ export type Database = {
7
7
  };
8
8
  public: {
9
9
  Tables: {
10
+ repertoire: {
11
+ Row: {
12
+ id: string;
13
+ group_id: string;
14
+ title: string;
15
+ compositor: string;
16
+ tags: string[];
17
+ events: string[];
18
+ owner_id: string;
19
+ created_at: string;
20
+ visibility: string;
21
+ last_event_datetime: string | null;
22
+ };
23
+ Insert: {
24
+ id: string;
25
+ group_id: string;
26
+ title: string;
27
+ compositor: string;
28
+ tags: string[];
29
+ events: string[];
30
+ owner_id: string;
31
+ created_at: string;
32
+ visibility: string;
33
+ last_event_datetime?: string | null;
34
+ };
35
+ Update: {
36
+ id?: string;
37
+ group_id?: string;
38
+ title?: string;
39
+ compositor?: string;
40
+ tags?: string[];
41
+ events?: string[];
42
+ owner_id?: string;
43
+ created_at?: string;
44
+ visibility?: string;
45
+ last_event_datetime?: string | null;
46
+ };
47
+ };
48
+ comm: {
49
+ Row: {
50
+ id: string;
51
+ group_id: string;
52
+ owner_id: string;
53
+ title: string;
54
+ type: string;
55
+ comments_count: number;
56
+ block_answers: boolean;
57
+ template_id: string | null;
58
+ server_template: string | null;
59
+ server: boolean;
60
+ recipients: string[];
61
+ deleted_at: string | null;
62
+ deleted_by: string | null;
63
+ edited_at: string | null;
64
+ edited_by: string | null;
65
+ created_at: string;
66
+ };
67
+ Insert: {
68
+ id: string;
69
+ group_id: string;
70
+ owner_id: string;
71
+ title: string;
72
+ type: string;
73
+ comments_count: number;
74
+ block_answers: boolean;
75
+ template_id?: string | null;
76
+ server_template?: string | null;
77
+ server: boolean;
78
+ recipients: string[];
79
+ deleted_at?: string | null;
80
+ deleted_by?: string | null;
81
+ edited_at?: string | null;
82
+ edited_by?: string | null;
83
+ created_at: string;
84
+ };
85
+ Update: {
86
+ id?: string;
87
+ group_id?: string;
88
+ owner_id?: string;
89
+ title?: string;
90
+ type?: string;
91
+ comments_count?: number;
92
+ block_answers?: boolean;
93
+ template_id?: string | null;
94
+ server_template?: string | null;
95
+ server?: boolean;
96
+ recipients?: string[];
97
+ deleted_at?: string | null;
98
+ deleted_by?: string | null;
99
+ edited_at?: string | null;
100
+ edited_by?: string | null;
101
+ created_at?: string;
102
+ };
103
+ };
10
104
  event: {
11
105
  Row: {
12
106
  activeInvitationLink: boolean;
@@ -8,6 +8,100 @@ export type Database = {
8
8
  };
9
9
  public: {
10
10
  Tables: {
11
+ repertoire: {
12
+ Row: {
13
+ id: string;
14
+ group_id: string;
15
+ title: string;
16
+ compositor: string;
17
+ tags: string[];
18
+ events: string[];
19
+ owner_id: string;
20
+ created_at: string;
21
+ visibility: string;
22
+ last_event_datetime: string | null;
23
+ };
24
+ Insert: {
25
+ id: string;
26
+ group_id: string;
27
+ title: string;
28
+ compositor: string;
29
+ tags: string[];
30
+ events: string[];
31
+ owner_id: string;
32
+ created_at: string;
33
+ visibility: string;
34
+ last_event_datetime?: string | null;
35
+ };
36
+ Update: {
37
+ id?: string;
38
+ group_id?: string;
39
+ title?: string;
40
+ compositor?: string;
41
+ tags?: string[];
42
+ events?: string[];
43
+ owner_id?: string;
44
+ created_at?: string;
45
+ visibility?: string;
46
+ last_event_datetime?: string | null;
47
+ };
48
+ };
49
+ comm: {
50
+ Row: {
51
+ id: string;
52
+ group_id: string;
53
+ owner_id: string;
54
+ title: string;
55
+ type: string;
56
+ comments_count: number;
57
+ block_answers: boolean;
58
+ template_id: string | null;
59
+ server_template: string | null;
60
+ server: boolean;
61
+ recipients: string[];
62
+ deleted_at: string | null;
63
+ deleted_by: string | null;
64
+ edited_at: string | null;
65
+ edited_by: string | null;
66
+ created_at: string;
67
+ };
68
+ Insert: {
69
+ id: string;
70
+ group_id: string;
71
+ owner_id: string;
72
+ title: string;
73
+ type: string;
74
+ comments_count: number;
75
+ block_answers: boolean;
76
+ template_id?: string | null;
77
+ server_template?: string | null;
78
+ server: boolean;
79
+ recipients: string[];
80
+ deleted_at?: string | null;
81
+ deleted_by?: string | null;
82
+ edited_at?: string | null;
83
+ edited_by?: string | null;
84
+ created_at: string;
85
+ };
86
+ Update: {
87
+ id?: string;
88
+ group_id?: string;
89
+ owner_id?: string;
90
+ title?: string;
91
+ type?: string;
92
+ comments_count?: number;
93
+ block_answers?: boolean;
94
+ template_id?: string | null;
95
+ server_template?: string | null;
96
+ server?: boolean;
97
+ recipients?: string[];
98
+ deleted_at?: string | null;
99
+ deleted_by?: string | null;
100
+ edited_at?: string | null;
101
+ edited_by?: string | null;
102
+ created_at?: string;
103
+ };
104
+ };
11
105
  event: {
12
106
  Row: {
13
107
  activeInvitationLink: boolean;
@@ -1,6 +1,7 @@
1
1
  import { MergeDeep } from 'type-fest';
2
2
  import { Database as DatabaseGenerated } from './generated';
3
3
  import { Overwrite } from './overwrites';
4
+ import { CommOverwrite } from './overwrites/comm';
4
5
  import { CommHistory } from './overwrites/comm_history';
5
6
  import { EventOverwrite } from './overwrites/event';
6
7
  import { EventHistory } from './overwrites/event_history';
@@ -8,6 +9,7 @@ import { GroupOverwrite } from './overwrites/group';
8
9
  import { GroupHistory } from './overwrites/group_history';
9
10
  import { OfferOverwrite } from './overwrites/offer';
10
11
  import { OfferHistory } from './overwrites/offer_history';
12
+ import { RepertoireOverwrite } from './overwrites/repertoire';
11
13
  import { RepertoireHistory } from './overwrites/repertoire_history';
12
14
  export type Database = MergeDeep<DatabaseGenerated, {
13
15
  public: {
@@ -15,6 +17,8 @@ export type Database = MergeDeep<DatabaseGenerated, {
15
17
  group: Overwrite<GroupOverwrite, 'configSites' | 'socialNetworks'>;
16
18
  event: Overwrite<EventOverwrite, 'repeat' | 'stage'>;
17
19
  offer: Overwrite<OfferOverwrite>;
20
+ repertoire: Overwrite<RepertoireOverwrite>;
21
+ comm: Overwrite<CommOverwrite>;
18
22
  event_history: Overwrite<Omit<EventHistory, 'id'>, 'prev_value' | 'value'>;
19
23
  repertoire_history: Overwrite<Omit<RepertoireHistory, 'id'>, 'prev_value' | 'value'>;
20
24
  group_history: Overwrite<Omit<GroupHistory, 'id'>, 'prev_value' | 'value'>;
@@ -1,6 +1,7 @@
1
1
  import { MergeDeep } from 'type-fest';
2
2
  import { Database as DatabaseGenerated } from './generated';
3
3
  import { Overwrite } from './overwrites';
4
+ import { CommOverwrite } from './overwrites/comm';
4
5
  import { CommHistory } from './overwrites/comm_history';
5
6
  import { EventOverwrite } from './overwrites/event';
6
7
  import { EventHistory } from './overwrites/event_history';
@@ -8,6 +9,7 @@ import { GroupOverwrite } from './overwrites/group';
8
9
  import { GroupHistory } from './overwrites/group_history';
9
10
  import { OfferOverwrite } from './overwrites/offer';
10
11
  import { OfferHistory } from './overwrites/offer_history';
12
+ import { RepertoireOverwrite } from './overwrites/repertoire';
11
13
  import { RepertoireHistory } from './overwrites/repertoire_history';
12
14
 
13
15
  export type Database = MergeDeep<
@@ -18,6 +20,8 @@ export type Database = MergeDeep<
18
20
  group: Overwrite<GroupOverwrite, 'configSites' | 'socialNetworks'>;
19
21
  event: Overwrite<EventOverwrite, 'repeat' | 'stage'>;
20
22
  offer: Overwrite<OfferOverwrite>;
23
+ repertoire: Overwrite<RepertoireOverwrite>;
24
+ comm: Overwrite<CommOverwrite>;
21
25
  event_history: Overwrite<Omit<EventHistory, 'id'>, 'prev_value' | 'value'>;
22
26
  repertoire_history: Overwrite<
23
27
  Omit<RepertoireHistory, 'id'>,
@@ -0,0 +1,18 @@
1
+ export interface CommOverwrite {
2
+ id: string;
3
+ group_id: string;
4
+ owner_id: string;
5
+ title: string;
6
+ type: string;
7
+ comments_count: number;
8
+ block_answers: boolean;
9
+ template_id: string | null;
10
+ server_template: string | null;
11
+ server: boolean;
12
+ recipients: string[];
13
+ deleted_at: string | null;
14
+ deleted_by: string | null;
15
+ edited_at: string | null;
16
+ edited_by: string | null;
17
+ created_at: string;
18
+ }
@@ -0,0 +1,2 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
@@ -0,0 +1,18 @@
1
+ export interface CommOverwrite {
2
+ id: string;
3
+ group_id: string;
4
+ owner_id: string;
5
+ title: string;
6
+ type: string;
7
+ comments_count: number;
8
+ block_answers: boolean;
9
+ template_id: string | null;
10
+ server_template: string | null;
11
+ server: boolean;
12
+ recipients: string[];
13
+ deleted_at: string | null;
14
+ deleted_by: string | null;
15
+ edited_at: string | null;
16
+ edited_by: string | null;
17
+ created_at: string;
18
+ }
@@ -0,0 +1,12 @@
1
+ export interface RepertoireOverwrite {
2
+ id: string;
3
+ group_id: string;
4
+ title: string;
5
+ compositor: string;
6
+ tags: string[];
7
+ events: string[];
8
+ owner_id: string;
9
+ created_at: string;
10
+ visibility: string;
11
+ last_event_datetime: string | null;
12
+ }
@@ -0,0 +1,2 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
@@ -0,0 +1,12 @@
1
+ export interface RepertoireOverwrite {
2
+ id: string;
3
+ group_id: string;
4
+ title: string;
5
+ compositor: string;
6
+ tags: string[];
7
+ events: string[];
8
+ owner_id: string;
9
+ created_at: string;
10
+ visibility: string;
11
+ last_event_datetime: string | null;
12
+ }