@periskope/types 0.6.104 → 0.6.105

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.
@@ -346,6 +346,7 @@ export type Database = {
346
346
  duration: string | null;
347
347
  flag_metadata: Json | null;
348
348
  flag_response_time: number | null;
349
+ flag_status: boolean | null;
349
350
  forwarding_score: number | null;
350
351
  from: string | null;
351
352
  from_me: boolean | null;
@@ -397,6 +398,7 @@ export type Database = {
397
398
  duration?: string | null;
398
399
  flag_metadata?: Json | null;
399
400
  flag_response_time?: number | null;
401
+ flag_status?: boolean | null;
400
402
  forwarding_score?: number | null;
401
403
  from?: string | null;
402
404
  from_me?: boolean | null;
@@ -448,6 +450,7 @@ export type Database = {
448
450
  duration?: string | null;
449
451
  flag_metadata?: Json | null;
450
452
  flag_response_time?: number | null;
453
+ flag_status?: boolean | null;
451
454
  forwarding_score?: number | null;
452
455
  from?: string | null;
453
456
  from_me?: boolean | null;
@@ -2095,6 +2098,10 @@ export type Database = {
2095
2098
  updated_at: string;
2096
2099
  }[];
2097
2100
  };
2101
+ operation: {
2102
+ Args: Record<PropertyKey, never>;
2103
+ Returns: string;
2104
+ };
2098
2105
  search: {
2099
2106
  Args: {
2100
2107
  prefix: string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@periskope/types",
3
- "version": "0.6.104",
3
+ "version": "0.6.105",
4
4
  "private": false,
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",