@glissandoo/lib 1.62.1 → 1.62.3

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.62.1",
3
+ "version": "1.62.3",
4
4
  "description": "Glissandoo library js",
5
5
  "main": "./index.js",
6
6
  "types": "./index.d.ts",
@@ -52,7 +52,7 @@ export interface Database {
52
52
  owner: string | null;
53
53
  playerIds: string[];
54
54
  players: Json;
55
- promoter: string;
55
+ promoter: string | null;
56
56
  relEvents: string[];
57
57
  repeat: Json | null;
58
58
  repertory: Json;
@@ -97,7 +97,7 @@ export interface Database {
97
97
  owner?: string | null;
98
98
  playerIds: string[];
99
99
  players: Json;
100
- promoter: string;
100
+ promoter?: string | null;
101
101
  relEvents: string[];
102
102
  repeat?: Json | null;
103
103
  repertory: Json;
@@ -142,7 +142,7 @@ export interface Database {
142
142
  owner?: string | null;
143
143
  playerIds?: string[];
144
144
  players?: Json;
145
- promoter?: string;
145
+ promoter?: string | null;
146
146
  relEvents?: string[];
147
147
  repeat?: Json | null;
148
148
  repertory?: Json;
@@ -51,7 +51,7 @@ export interface Database {
51
51
  owner: string | null;
52
52
  playerIds: string[];
53
53
  players: Json;
54
- promoter: string;
54
+ promoter: string | null;
55
55
  relEvents: string[];
56
56
  repeat: Json | null;
57
57
  repertory: Json;
@@ -96,7 +96,7 @@ export interface Database {
96
96
  owner?: string | null;
97
97
  playerIds: string[];
98
98
  players: Json;
99
- promoter: string;
99
+ promoter?: string | null;
100
100
  relEvents: string[];
101
101
  repeat?: Json | null;
102
102
  repertory: Json;
@@ -141,7 +141,7 @@ export interface Database {
141
141
  owner?: string | null;
142
142
  playerIds?: string[];
143
143
  players?: Json;
144
- promoter?: string;
144
+ promoter?: string | null;
145
145
  relEvents?: string[];
146
146
  repeat?: Json | null;
147
147
  repertory?: Json;