@databutton/firebase-types 1.170.0 → 1.172.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.
@@ -39,6 +39,7 @@ export declare enum CollectionName {
39
39
  LAUNCH_WAITLIST = "launch-waitlist",
40
40
  LIFE_STAGE_CHANGE_REQUESTS = "life-stage-change-requests",
41
41
  LOGS = "logs",
42
+ IMPROVEMENTS = "improvements",
42
43
  ACCOUNT_MEMBERS = "members",
43
44
  ACCOUNT_CONFIGS = "configs",
44
45
  PROJECT_CONFIGS = "configs",
@@ -40,6 +40,7 @@ export var CollectionName;
40
40
  CollectionName["LAUNCH_WAITLIST"] = "launch-waitlist";
41
41
  CollectionName["LIFE_STAGE_CHANGE_REQUESTS"] = "life-stage-change-requests";
42
42
  CollectionName["LOGS"] = "logs";
43
+ CollectionName["IMPROVEMENTS"] = "improvements";
43
44
  CollectionName["ACCOUNT_MEMBERS"] = "members";
44
45
  CollectionName["ACCOUNT_CONFIGS"] = "configs";
45
46
  CollectionName["PROJECT_CONFIGS"] = "configs";
@@ -1222,6 +1222,14 @@ export interface ProjectMigrationRecord {
1222
1222
  migratedAt: Timestamp;
1223
1223
  }
1224
1224
  export type ProjectVariant = "beyond-streamlit" | "riff";
1225
+ /**
1226
+ * Known agent type tags the platform gates specific behavior on (e.g. the
1227
+ * orchestrator selecting per-agent-type tool variants for
1228
+ * "order-confirmation-agent"). Not a closed set — projects may carry other
1229
+ * ad-hoc values (e.g. per-customer agents identified only via agentSpecUrl),
1230
+ * so this stays open with a string fallback rather than a strict union.
1231
+ */
1232
+ export type ProjectAgentType = "order-confirmation-agent" | "supplier-communications-agent" | (string & {});
1225
1233
  export interface IntegrationPackages {
1226
1234
  npmPackages: {
1227
1235
  dependencies: {
@@ -1611,7 +1619,7 @@ export interface Project {
1611
1619
  /** URL to the agent type spec document (e.g. riff-agent-docs/agents/supplier-communications-agent.md). */
1612
1620
  agentSpecUrl?: string;
1613
1621
  /** Agent type tag identifying which kind of agent this project implements (e.g. "supplier-communications-agent"). */
1614
- agentType?: string;
1622
+ agentType?: ProjectAgentType;
1615
1623
  isShowcase?: boolean;
1616
1624
  last_deployed?: Timestamp;
1617
1625
  schema?: "2022-12-07" | "2022-08-22" | null;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@databutton/firebase-types",
3
- "version": "1.170.0",
3
+ "version": "1.172.0",
4
4
  "main": "lib/types/published/index.js",
5
5
  "type": "module",
6
6
  "engines": {
@@ -23,13 +23,17 @@
23
23
  },
24
24
  "resolutions": {
25
25
  "//": "Pin a single @smithy/signature-v4 so the SigV4a signer registered by @aws-sdk/signature-v4a is visible to the CloudFront KVS client. Two copies (5.5.0 via signature-v4a, 5.5.x via signature-v4-multi-region) split the signer container and break KVS writes (DAT-13050).",
26
- "@smithy/signature-v4": "5.7.2",
26
+ "@smithy/signature-v4": "5.7.3",
27
27
  "//2": "Runtime-shipping transitive security bumps. yarn v1 only pins transitive deps durably via resolutions (a bare lockfile edit reverts on install). All are same-major, backward-compatible. Consolidates Renovate/Dependabot PRs #1225, #1237, #1238, #1243, #1245.",
28
28
  "websocket-driver": "0.7.5",
29
29
  "@protobufjs/utf8": "1.1.2",
30
30
  "@tootallnate/once": "2.0.1",
31
31
  "node-forge": "1.4.0",
32
- "fast-xml-parser": "5.11.0"
32
+ "fast-xml-parser": "5.11.0",
33
+ "//3": "@opentelemetry/core moderate advisory GHSA-8988-4f7v-96qf (unbounded memory allocation in W3C Baggage propagation, fixed >=2.8.0). firebase-tools>@google-cloud/pubsub pins @opentelemetry/core to the ^1.30.1 line, which never received a backport; no top-level bump resolves this. Pubsub only uses the stable W3CTraceContextPropagator class, unchanged across the 1.x/2.x split, so forcing 2.x here is safe.",
34
+ "@opentelemetry/core": "2.10.0",
35
+ "//4": "uuid moderate advisory (missing buffer bounds check, fixed >=11.1.1). firebase-tools' bundled gaxios/google-auth-library still require uuid ^9.0.1 and firebase-tools has no newer release available (latest is 15.28.2, same range). They only call the argumentless uuid.v4(), unaffected either way and stable across majors, so pinning to our own already-used 11.1.1 is safe.",
36
+ "uuid": "11.1.1"
33
37
  },
34
38
  "repository": {
35
39
  "type": "git",