@glissandoo/lib 1.130.1 → 1.130.2

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.130.1",
3
+ "version": "1.130.2",
4
4
  "description": "Glissandoo library js",
5
5
  "main": "./index.js",
6
6
  "types": "./index.d.ts",
@@ -238,6 +238,7 @@ export type Database = {
238
238
  notifyAt: string;
239
239
  online: boolean;
240
240
  owner: string | null;
241
+ payout: Json | null;
241
242
  playerIds: string[];
242
243
  players: Json;
243
244
  promoter: string | null;
@@ -286,6 +287,7 @@ export type Database = {
286
287
  notifyAt: string;
287
288
  online: boolean;
288
289
  owner?: string | null;
290
+ payout?: Json | null;
289
291
  playerIds: string[];
290
292
  players: Json;
291
293
  promoter?: string | null;
@@ -334,6 +336,7 @@ export type Database = {
334
336
  notifyAt?: string;
335
337
  online?: boolean;
336
338
  owner?: string | null;
339
+ payout?: Json | null;
337
340
  playerIds?: string[];
338
341
  players?: Json;
339
342
  promoter?: string | null;
@@ -1871,6 +1874,17 @@ export type Database = {
1871
1874
  };
1872
1875
  Returns: string;
1873
1876
  };
1877
+ listIncompleteEventPlayerMirrors: {
1878
+ Args: {
1879
+ p_after?: string;
1880
+ p_limit?: number;
1881
+ };
1882
+ Returns: {
1883
+ eventId: string;
1884
+ expectedCount: number;
1885
+ mirroredCount: number;
1886
+ }[];
1887
+ };
1874
1888
  listPublicApiRepertoire: {
1875
1889
  Args: {
1876
1890
  p_can_manage: boolean;
@@ -239,6 +239,7 @@ export type Database = {
239
239
  notifyAt: string;
240
240
  online: boolean;
241
241
  owner: string | null;
242
+ payout: Json | null;
242
243
  playerIds: string[];
243
244
  players: Json;
244
245
  promoter: string | null;
@@ -287,6 +288,7 @@ export type Database = {
287
288
  notifyAt: string;
288
289
  online: boolean;
289
290
  owner?: string | null;
291
+ payout?: Json | null;
290
292
  playerIds: string[];
291
293
  players: Json;
292
294
  promoter?: string | null;
@@ -335,6 +337,7 @@ export type Database = {
335
337
  notifyAt?: string;
336
338
  online?: boolean;
337
339
  owner?: string | null;
340
+ payout?: Json | null;
338
341
  playerIds?: string[];
339
342
  players?: Json;
340
343
  promoter?: string | null;
@@ -1872,6 +1875,14 @@ export type Database = {
1872
1875
  }[];
1873
1876
  };
1874
1877
  immutable_unaccent: { Args: { '': string }; Returns: string };
1878
+ listIncompleteEventPlayerMirrors: {
1879
+ Args: { p_after?: string; p_limit?: number };
1880
+ Returns: {
1881
+ eventId: string;
1882
+ expectedCount: number;
1883
+ mirroredCount: number;
1884
+ }[];
1885
+ };
1875
1886
  listPublicApiRepertoire: {
1876
1887
  Args: {
1877
1888
  p_can_manage: boolean;