@periskope/types 0.6.164 → 0.6.165

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/dist/types.d.ts CHANGED
@@ -520,7 +520,7 @@ export type RuleLogsType = OverrideProperties<Tables<'tbl_rules_logs'>, {
520
520
  filter: Rule['conditions']['filters'][number];
521
521
  value: unknown;
522
522
  }>;
523
- checked_at: string;
523
+ checked_at: string | null;
524
524
  };
525
525
  }>;
526
526
  export {};
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@periskope/types",
3
- "version": "0.6.164",
3
+ "version": "0.6.165",
4
4
  "private": false,
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",
package/types.ts CHANGED
@@ -808,7 +808,7 @@ export type RuleLogsType = OverrideProperties<
808
808
  value: unknown;
809
809
  }
810
810
  >;
811
- checked_at: string;
811
+ checked_at: string | null;
812
812
  };
813
813
  }
814
814
  >;