@databutton/firebase-types 1.166.1 → 1.167.0

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.
@@ -1,3 +1,4 @@
1
+ // Public entry point for the @databutton/firebase-types npm package.
1
2
  export * from "./enums.js";
2
3
  export * from "./persisted.js";
3
4
  export * from "./requests.js";
@@ -2846,6 +2846,7 @@ export declare const isEmailChannel: (channel: Channel) => channel is EmailChann
2846
2846
  export declare const isTeamsChannel: (channel: Channel) => channel is TeamsChannel;
2847
2847
  export type ToolApprovalPolicy = "prompt" | "allow" | "deny" | "custom-or-prompt" | "custom-or-allow" | "custom-or-deny";
2848
2848
  export type ToolKind = "platform" | "user";
2849
+ export type ToolEditWidget = "email";
2849
2850
  export type ToolPrimitive = string | number | boolean;
2850
2851
  export interface InputAllowlistRule {
2851
2852
  equals?: ToolPrimitive;
@@ -2860,6 +2861,7 @@ export interface ProjectToolEntry {
2860
2861
  approval?: ToolApprovalPolicy;
2861
2862
  denyReason?: string;
2862
2863
  allowInputEdit?: boolean;
2864
+ editWidget?: ToolEditWidget;
2863
2865
  inputAllowlists?: Record<string, InputAllowlistRule>;
2864
2866
  }
2865
2867
  export interface ProjectToolConfig {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@databutton/firebase-types",
3
- "version": "1.166.1",
3
+ "version": "1.167.0",
4
4
  "main": "lib/types/published/index.js",
5
5
  "type": "module",
6
6
  "engines": {