You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
/* Field names that cannot be modified after INSERT (e.g. ["key", "bucket_id", "owner_id"]) */
175
175
fields: string[];
176
176
}
177
+
/** Creates a derived text field that automatically concatenates multiple source fields via BEFORE INSERT/UPDATE triggers. Used to produce a unified text representation (e.g., embedding_text) from multiple columns on a table. The trigger fires with '_000' prefix to run before Search* triggers alphabetically. */
178
+
exportinterfaceDataCompositeFieldParams{
179
+
/* Name of the derived text field to create (default: 'embedding_text') */
180
+
target?: string;
181
+
/* Array of source field names to concatenate into the target field */
/** Creates a user profiles table with standard profile fields (profile_picture, bio, first_name, last_name, tags, desired). Uses AuthzDirectOwner for edit access and AuthzAllowAll for select. */
178
187
exporttypeTableUserProfilesParams={};
179
188
/** Creates an organization settings table with standard business fields (legal_name, address fields). Uses AuthzEntityMembership for access control. */
"description": "Creates a derived text field that automatically concatenates multiple source fields via BEFORE INSERT/UPDATE triggers. Used to produce a unified text representation (e.g., embedding_text) from multiple columns on a table. The trigger fires with '_000' prefix to run before Search* triggers alphabetically.",
9
+
"parameter_schema": {
10
+
"type": "object",
11
+
"properties": {
12
+
"target": {
13
+
"type": "string",
14
+
"description": "Name of the derived text field to create (default: 'embedding_text')"
15
+
},
16
+
"source_fields": {
17
+
"type": "array",
18
+
"items": {
19
+
"type": "string"
20
+
},
21
+
"description": "Array of source field names to concatenate into the target field"
0 commit comments