@databutton/firebase-types 1.122.0 → 1.124.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.
@@ -895,6 +895,7 @@ export type ProjectExtensionConfig<T = object> = {
895
895
  name: ProjectExtension;
896
896
  version: string;
897
897
  config?: T;
898
+ configFromAccount?: boolean;
898
899
  };
899
900
  export interface McpExtensionConfig {
900
901
  public?: boolean;
@@ -947,8 +948,13 @@ export interface OidcAuthExtensionConfig {
947
948
  aud?: string;
948
949
  requiredAttributes?: Record<string, string>;
949
950
  }
951
+ export interface OidcAuthExtensionAttributesForWorkos {
952
+ client_id: string;
953
+ org_id: string;
954
+ }
950
955
  export interface WorkosAuthExtensionConfig {
951
956
  clientId: string;
957
+ orgId: string;
952
958
  }
953
959
  export interface StackAuthExtensionConfig {
954
960
  projectId: string;
@@ -123,6 +123,7 @@ export type CreateRiffCheckoutSessionRequest = {
123
123
  priceId: string;
124
124
  successUrl?: string;
125
125
  cancelUrl?: string;
126
+ quantity?: number;
126
127
  };
127
128
  export type CreateRiffCheckoutSessionResponse = {
128
129
  sessionId: string | null;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@databutton/firebase-types",
3
- "version": "1.122.0",
3
+ "version": "1.124.0",
4
4
  "main": "lib/types/published/index.js",
5
5
  "type": "module",
6
6
  "engines": {