@databutton/firebase-types 1.119.1 → 1.121.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.
|
@@ -944,10 +944,11 @@ export type NeonDatabaseExtensionConfig = NeonDatabaseExtensionConfigV1 | NeonDa
|
|
|
944
944
|
export interface OidcAuthExtensionConfig {
|
|
945
945
|
jwksUrl: string;
|
|
946
946
|
iss: string;
|
|
947
|
-
aud
|
|
947
|
+
aud?: string;
|
|
948
|
+
requiredAttributes?: Record<string, string>;
|
|
948
949
|
}
|
|
949
950
|
export interface WorkosAuthExtensionConfig {
|
|
950
|
-
|
|
951
|
+
clientId: string;
|
|
951
952
|
}
|
|
952
953
|
export interface StackAuthExtensionConfig {
|
|
953
954
|
projectId: string;
|
|
@@ -1327,10 +1328,13 @@ export type RiffMigrationState<T> = {
|
|
|
1327
1328
|
};
|
|
1328
1329
|
/**
|
|
1329
1330
|
* SpecialProjectType allows for classification of projects that behave differently from a general Riff project.
|
|
1330
|
-
* For example the agentProject is hidden from the user, but is used to provide a account wide devx and agent environment to a user in the account context
|
|
1331
1331
|
*/
|
|
1332
1332
|
export declare enum SpecialProjectType {
|
|
1333
|
+
/** One per user in an account. Powers the workspace agent — a personal assistant that can talk with the team's knowledge base etc. */
|
|
1333
1334
|
AGENT_PROJECT = "agentProject",
|
|
1335
|
+
/** Projects where users build autonomous agents in Riff. */
|
|
1336
|
+
AGENT = "agent",
|
|
1337
|
+
/** Projects used as an API gateway integration, needs to be connected to an account app. */
|
|
1334
1338
|
API_GATEWAY = "apiGateway"
|
|
1335
1339
|
}
|
|
1336
1340
|
export interface Project {
|
|
@@ -66,11 +66,14 @@ export var ProjectExtension;
|
|
|
66
66
|
})(ProjectExtension || (ProjectExtension = {}));
|
|
67
67
|
/**
|
|
68
68
|
* SpecialProjectType allows for classification of projects that behave differently from a general Riff project.
|
|
69
|
-
* For example the agentProject is hidden from the user, but is used to provide a account wide devx and agent environment to a user in the account context
|
|
70
69
|
*/
|
|
71
70
|
export var SpecialProjectType;
|
|
72
71
|
(function (SpecialProjectType) {
|
|
72
|
+
/** One per user in an account. Powers the workspace agent — a personal assistant that can talk with the team's knowledge base etc. */
|
|
73
73
|
SpecialProjectType["AGENT_PROJECT"] = "agentProject";
|
|
74
|
+
/** Projects where users build autonomous agents in Riff. */
|
|
75
|
+
SpecialProjectType["AGENT"] = "agent";
|
|
76
|
+
/** Projects used as an API gateway integration, needs to be connected to an account app. */
|
|
74
77
|
SpecialProjectType["API_GATEWAY"] = "apiGateway";
|
|
75
78
|
})(SpecialProjectType || (SpecialProjectType = {}));
|
|
76
79
|
/**
|