@rebasepro/plugin-ai 0.10.0 → 0.10.1-canary.0a881d4

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,6 +1,7 @@
1
1
  import React, { PropsWithChildren } from "react";
2
2
  import { DataEnhancementController } from "../types/data_enhancement_controller";
3
- import { CollectionConfig, PluginFormActionProps } from "@rebasepro/types";
3
+ import { CollectionConfig } from "@rebasepro/types";
4
+ import { PluginFormActionProps } from "@rebasepro/admin-types";
4
5
  type DataEnhancementControllerProviderProps = {
5
6
  apiKey: string;
6
7
  getConfigForPath?: (props: {
@@ -1,3 +1,3 @@
1
1
  import React from "react";
2
- import { PluginFormActionProps } from "@rebasepro/types";
2
+ import { PluginFormActionProps } from "@rebasepro/admin-types";
3
3
  export declare function FormEnhanceAction({ entityId, path, status, collection, formContext, openEntityMode }: PluginFormActionProps): React.JSX.Element | null;
package/dist/index.es.js CHANGED
@@ -164,7 +164,7 @@ function getSimpleProperty(property) {
164
164
  type: property.type,
165
165
  fieldConfigId: fieldId,
166
166
  enum: "enum" in property && property.enum ? getSimpleEnumValues(property.enum) : void 0,
167
- disabled: Boolean(property.ui?.disabled || property.ui?.readOnly)
167
+ disabled: Boolean(property.admin?.disabled || property.admin?.readOnly)
168
168
  };
169
169
  }
170
170
  function getSimplifiedProperty(property, path, value) {
@@ -176,7 +176,7 @@ function getSimplifiedProperty(property, path, value) {
176
176
  description: property.description,
177
177
  type: property.type,
178
178
  fieldConfigId: "repeat",
179
- disabled: Boolean(property.ui?.disabled || property.ui?.readOnly),
179
+ disabled: Boolean(property.admin?.disabled || property.admin?.readOnly),
180
180
  of: getSimpleProperty(property.of)
181
181
  };
182
182
  return { [path]: arrayParentProperty };
@@ -186,7 +186,7 @@ function getSimplifiedProperty(property, path, value) {
186
186
  description: property.description,
187
187
  type: property.type,
188
188
  fieldConfigId: "block",
189
- disabled: Boolean(property.ui?.disabled || property.ui?.readOnly),
189
+ disabled: Boolean(property.admin?.disabled || property.admin?.readOnly),
190
190
  oneOf: {
191
191
  typeField: property.oneOf.typeField,
192
192
  valueField: property.oneOf.valueField,
@@ -232,7 +232,7 @@ function getSimplifiedProperty(property, path, value) {
232
232
  description: property.description,
233
233
  type: property.type,
234
234
  fieldConfigId: "group",
235
- disabled: Boolean(property.ui?.disabled || property.ui?.readOnly)
235
+ disabled: Boolean(property.admin?.disabled || property.admin?.readOnly)
236
236
  };
237
237
  return {
238
238
  [path]: mapParentProperty,
@@ -674,7 +674,7 @@ function FormEnhanceAction({ entityId, path, status, collection, formContext, op
674
674
  function getPromptsForExistingEntities(properties) {
675
675
  const multilineProperties = Object.values(properties).filter((p) => {
676
676
  if (isPropertyBuilder(p)) return false;
677
- return p.type === "string" && (p.ui?.markdown || p.ui?.multiline);
677
+ return p.type === "string" && (p.admin?.markdown || p.admin?.multiline);
678
678
  });
679
679
  const multilinePrompt = multilineProperties.length > 0 ? multilineProperties[Math.floor(Math.random() * multilineProperties.length)] : void 0;
680
680
  const prompts = ["Fill the missing fields", "Translate the missing content"];
@@ -1 +1 @@
1
- {"version":3,"file":"index.es.js","names":[],"sources":["../src/utils/values.ts","../src/api.ts","../src/utils/suggestions.ts","../src/utils/properties.ts","../src/editor/useEditorAIController.tsx","../src/components/DataEnhancementControllerProvider.tsx","../src/components/FormEnhanceAction.tsx","../src/useDataEnhancementPlugin.tsx"],"sourcesContent":["export function flatMapEntityValues<M extends object>(values: M, path = \"\"): object {\n if (!values) return {};\n return Object.entries(values).flatMap(([key, value]) => {\n const currentPath = path ? `${path}.${key}` : key;\n if (typeof value === \"object\") {\n return flatMapEntityValues(value, currentPath);\n } else {\n return { [currentPath]: value };\n }\n }).reduce((acc, curr) => ({ ...acc,\n...curr }), {})\n}\n","import {\n DataEnhancementRequest,\n EnhancedDataResult,\n InputEntity,\n InputProperty,\n SamplePromptsResult\n} from \"./types/data_enhancement_controller\";\nimport { EntityValues } from \"@rebasepro/types\";\nimport { flatMapEntityValues } from \"./utils/values\";\n\n// const DEFAULT_SERVER = \"http://localhost:5001/rebase-dev-2da42/europe-west3/api\"; // Local\n\nconst DEFAULT_SERVER = \"https://api.rebase.pro\";\n\nexport async function enhanceDataAPIStream<M extends Record<string, unknown>>(props: {\n apiKey: string,\n entityId?: string | number,\n entityName: string,\n entityDescription?: string,\n propertyKey?: string,\n propertyInstructions?: string;\n values: EntityValues<M>,\n path: string,\n properties: Record<string, InputProperty>,\n\n instructions?: string,\n firebaseToken: string,\n onUpdate: (suggestions: Record<string, string | number>) => void;\n onUpdateDelta: (propertyKey: string, partialValue: string) => void;\n onError: (error: Error) => void;\n onEnd: (result: EnhancedDataResult) => void;\n host?: string;\n}) {\n\n const flatValues = flatMapEntityValues(props.values);\n\n const properties = props.properties;\n\n const inputEntity: InputEntity = {\n entityId: props.entityId,\n values: flatValues\n }\n\n const request: DataEnhancementRequest = {\n inputEntity,\n properties,\n entityName: props.entityName,\n entityDescription: props.entityDescription,\n propertyKey: props.propertyKey,\n propertyInstructions: props.propertyInstructions,\n instructions: props.instructions\n };\n\n console.debug(\"enhanceDataAPIStream\", request);\n\n return fetch((props.host ?? DEFAULT_SERVER) + \"/data/enhance_stream/\",\n {\n // mode: \"no-cors\",\n method: \"POST\",\n headers: {\n \"Content-Type\": \"application/json\",\n Authorization: `Basic ${props.firebaseToken}`,\n \"x-de-api-key\": `Basic ${props.apiKey}`\n // \"x-de-version\": version\n },\n body: JSON.stringify(request)\n })\n .then(async (res) => {\n if (!res.ok) {\n console.error(\"enhanceDataAPIStream error\", res)\n throw await res.json();\n }\n const reader = res.body?.getReader();\n if (!reader) {\n throw new Error(\"No reader\");\n }\n\n for await (const chunk of readChunks(reader)) {\n const str = new TextDecoder().decode(chunk);\n try {\n str.split(\"&$# \").forEach((s) => {\n if (s && s.length > 0) {\n const data = JSON.parse(s.trim());\n if (data.type === \"suggestion_delta\")\n props.onUpdateDelta(data.data.propertyKey, data.data.partialValue);\n else if (data.type === \"suggestion\")\n props.onUpdate(data.data);\n else if (data.type === \"result\")\n props.onEnd(data.data);\n }\n });\n } catch (e: unknown) {\n console.error(\"str\", str);\n console.error(\"Error parsing stream\", e);\n props.onError(e instanceof Error ? e : new Error(String(e)));\n }\n }\n\n });\n\n}\n\nfunction readChunks(reader: ReadableStreamDefaultReader) {\n return {\n async *[Symbol.asyncIterator]() {\n let readResult = await reader.read();\n while (!readResult.done) {\n yield readResult.value;\n readResult = await reader.read();\n }\n }\n };\n}\n\nexport async function fetchEntityPromptSuggestion<M extends object>(props: {\n input?: string,\n entityName: string,\n firebaseToken: string,\n apiKey: string,\n host?: string\n}): Promise<SamplePromptsResult> {\n\n return fetch((props.host ?? DEFAULT_SERVER) + \"/data/prompt_autocomplete/\",\n {\n // mode: \"no-cors\",\n method: \"POST\",\n headers: {\n \"Content-Type\": \"application/json\",\n Authorization: `Basic ${props.firebaseToken}`,\n \"x-de-api-key\": `Basic ${props.apiKey}`\n },\n body: JSON.stringify({\n entityName: props.entityName,\n input: props.input ?? null\n })\n })\n .then(async (res) => {\n const data = await res.json();\n if (!res.ok) {\n console.error(\"fetchEntityPromptSuggestion\", data);\n throw Error(data.message);\n }\n return {\n prompts: data.data.prompts.map((e: string) => ({\n prompt: e,\n type: \"sample\"\n }))\n };\n });\n\n}\n\nexport async function autocompleteStream(props: {\n firebaseToken: string,\n textBefore?: string,\n textAfter: string,\n host?: string;\n onUpdate: (delta: string) => void;\n}) {\n\n let result = \"\";\n return fetch((props.host ?? DEFAULT_SERVER) + \"/data/autocomplete/\",\n {\n // mode: \"no-cors\",\n method: \"POST\",\n headers: {\n \"Content-Type\": \"application/json\",\n Authorization: `Basic ${props.firebaseToken}`\n // \"x-de-version\": version\n },\n body: JSON.stringify({\n textBefore: props.textBefore,\n textAfter: props.textAfter\n })\n })\n .then(async (res) => {\n if (!res.ok) {\n console.error(\"enhanceDataAPIStream error\", res)\n throw await res.json();\n }\n const reader = res.body?.getReader();\n if (!reader) {\n throw new Error(\"No reader\");\n }\n\n for await (const chunk of readChunks(reader)) {\n const str = new TextDecoder().decode(chunk);\n result += str;\n console.debug(\"Autocomplete update:\", str);\n props.onUpdate(str);\n }\n\n }).then(() => {\n console.debug(\"Autocomplete result:\", result);\n return result;\n });\n\n}\n","export function getAppendableSuggestion(suggestion: string | number | undefined, value: unknown): string | undefined {\n const suggestionIncludesValue = typeof suggestion === \"string\" && typeof value === \"string\" && suggestion.toLowerCase().trim().startsWith(value.toLowerCase().trim());\n return (typeof value === \"string\" && suggestionIncludesValue)\n ? suggestion.substring(suggestion.toLowerCase().trim().indexOf(value.toLowerCase().trim()) + value.trim().length)\n : undefined;\n}\n","import { getFieldId } from \"@rebasepro/admin\";\nimport { EnumValues, Properties, Property } from \"@rebasepro/types\";\nimport { isPropertyBuilder } from \"@rebasepro/common\";\nimport { InputProperty } from \"../types/data_enhancement_controller\";\nimport { getValueInPath } from \"@rebasepro/utils\";\n\nexport function getSimplifiedProperties<M extends Record<string, any>>(properties: Properties, values: M, path = \"\"): Record<string, InputProperty> {\n if (!properties) return {};\n return Object.entries(properties)\n .map(([key, property]) => {\n if (isPropertyBuilder(property)) return {};\n const fullKey = path ? `${path}.${key}` : key;\n const valueInPath = getValueInPath(values, fullKey);\n return getSimplifiedProperty(property, fullKey, valueInPath)\n })\n .reduce((a, b) => ({ ...a,\n...b }), {});\n}\n\nfunction getSimpleProperty(property: Property): InputProperty {\n const fieldId = getFieldId(property);\n if (!fieldId) {\n console.error(\"No fieldId found for property\", property);\n throw new Error(\"Field id not found\");\n }\n return {\n name: property.name,\n description: property.description,\n type: property.type,\n fieldConfigId: fieldId,\n enum: \"enum\" in property && property.enum\n ? getSimpleEnumValues(property.enum)\n : undefined,\n disabled: Boolean(property.ui?.disabled || property.ui?.readOnly)\n };\n}\n\nfunction getSimplifiedProperty(property: Property, path: string, value?: unknown): Record<string, InputProperty> {\n if (isPropertyBuilder(property)) return {};\n if (property.type === \"array\") {\n\n if (property.of && !Array.isArray(property.of) && !isPropertyBuilder(property.of)) {\n const arrayParentProperty: InputProperty = {\n name: property.name,\n description: property.description,\n type: property.type,\n fieldConfigId: \"repeat\",\n disabled: Boolean(property.ui?.disabled || property.ui?.readOnly),\n of: getSimpleProperty(property.of as Property)\n };\n\n const result = { [path]: arrayParentProperty };\n // if (Array.isArray(value)) {\n // result = {\n // ...result,\n // ...value\n // .map((v, i) => getSimplifiedProperty(property.of, `${path}.${i}`, v))\n // .reduce((a, b) => ({ ...a, ...b }), {})\n // };\n // }\n //\n // const existingValuesCount = Array.isArray(value) ? value.length : 0;\n //\n // const newValuesCount = property.of && !isPropertyBuilder<any, any>(property.of) && (property.of as Property).type === \"map\" ? 1 : 3;\n // result = {\n // ...result,\n // // ...Array.from(Array(newValuesCount))\n // // .map((v, i) => getSimplifiedProperty(property.of, `${path}.${i + existingValuesCount}`, v))\n // // .reduce((a, b) => ({ ...a, ...b }), {})\n // }\n\n return result;\n } else if (property.oneOf) {\n\n const arrayParentProperty: InputProperty = {\n name: property.name,\n description: property.description,\n type: property.type,\n fieldConfigId: \"block\",\n disabled: Boolean(property.ui?.disabled || property.ui?.readOnly),\n oneOf: {\n typeField: property.oneOf.typeField,\n valueField: property.oneOf.valueField,\n properties: Object.entries(property.oneOf.properties)\n .map(([key, prop]) => ({ [key]: getSimpleProperty(prop) }))\n .reduce((a, b) => ({ ...a,\n...b }), {})\n }\n };\n\n if (!Array.isArray(value)) {\n return { [path]: arrayParentProperty };\n }\n\n return value.map((v, i) => {\n if (v == null) return {};\n const typeKey = property.oneOf!.typeField ?? \"type\";\n const oneOfType = v[typeKey];\n const valueKey = property.oneOf!.valueField ?? \"value\";\n const oneOfValue = v[valueKey];\n const childProperty = property.oneOf!.properties[oneOfType];\n if (childProperty === undefined) {\n console.error(`No property found for type ${oneOfType}`, property.oneOf!.properties);\n return {};\n }\n const simplifiedProperty = getSimplifiedProperty(childProperty, `${path}.${i}.${valueKey}`, oneOfValue);\n return {\n [`${path}.${i}.${typeKey}`]: oneOfType,\n ...simplifiedProperty\n };\n }).reduce((a, b) => ({ ...a,\n...b }), { [path]: arrayParentProperty });\n }\n } else if (property.type === \"map\") {\n if (property.properties) {\n const mapProperties: Record<string, InputProperty> = Object.entries(property.properties)\n .map(([key, childProperty]) => {\n const childValue = value && typeof value === \"object\" ? (value as Record<string, unknown>)[key] : undefined;\n return getSimplifiedProperty(childProperty, key, childValue);\n })\n .map(o => attachPathToKeys(o, path))\n .reduce((a, b) => ({ ...a,\n...b }), {});\n\n if (Object.keys(mapProperties).length === 0) return {};\n const mapParentProperty: InputProperty = {\n name: property.name,\n description: property.description,\n type: property.type,\n fieldConfigId: \"group\",\n disabled: Boolean(property.ui?.disabled || property.ui?.readOnly)\n };\n return {\n [path]: mapParentProperty,\n ...mapProperties\n } as Record<string, InputProperty>;\n }\n } else {\n const fieldId = getFieldId(property);\n if (!fieldId) {\n console.warn(`No fieldId found for property ${path} with type ${property.type}`);\n return {};\n }\n return {\n [path]: getSimpleProperty(property)\n };\n }\n return {};\n}\n\n// attach a path to every key in an object\nfunction attachPathToKeys(obj: Record<string, InputProperty>, path = \"\"): Record<string, InputProperty> {\n return Object.entries(obj)\n .map(([key, value]) => {\n const fullKey = path ? `${path}.${key}` : key;\n return { [fullKey]: value };\n })\n .reduce((a, b) => ({ ...a,\n...b }), {});\n}\n\nfunction getSimpleEnumValues(enumValues: EnumValues): string[] {\n if (Array.isArray(enumValues))\n return enumValues.map(v => String(v.id));\n if (typeof enumValues === \"object\")\n return Object.keys(enumValues);\n throw Error(\"getSimpleEnumValues: Invalid enumValues\");\n}\n","import { autocompleteStream } from \"../api\";\nimport { EditorAIController } from \"@rebasepro/admin\";\n\nexport function useEditorAIController({ getAuthToken }: { getAuthToken?: () => Promise<string> }): EditorAIController {\n const autocomplete = async (textBefore: string, textAfter: string, onUpdate: (delta: string) => void) => {\n if (!getAuthToken) {\n throw new Error(\"Firebase token is required\");\n }\n const firebaseToken = await getAuthToken();\n return autocompleteStream({\n firebaseToken,\n textBefore,\n textAfter,\n onUpdate\n });\n }\n\n return {\n autocomplete\n };\n}\n\n// async function * generateLoremIpsum(): AsyncGenerator<string> {\n// const loremIpsum = \"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.\\n# Heading\\n\\nLorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.\";\n//\n// const words = loremIpsum.split(\" \");\n//\n// for (const word of words) {\n// yield word;\n// await new Promise(resolve => setTimeout(resolve, 100));\n// }\n// }\n//\n// const generator = generateLoremIpsum();\n// for await (const word of generator) {\n//\n// }\n","import React, { PropsWithChildren, useCallback, useContext, useEffect, useMemo, useRef, useState } from \"react\";\n\nimport {\n DataEnhancementController,\n EnhancedDataResult,\n EnhanceParams,\n InputProperty\n} from \"../types/data_enhancement_controller\";\nimport {\n useAuthController,\n useCustomizationController,\n useSnackbarController\n} from \"@rebasepro/app\";\nimport { useUrlController } from \"@rebasepro/admin\";\nimport { DataDriver, Entity, CollectionConfig, PluginFormActionProps } from \"@rebasepro/types\";\nimport { enhanceDataAPIStream, fetchEntityPromptSuggestion } from \"../api\";\nimport { getAppendableSuggestion } from \"../utils/suggestions\";\nimport { getSimplifiedProperties } from \"../utils/properties\";\nimport { useEditorAIController } from \"../editor/useEditorAIController\";\nimport { getValueInPath } from \"@rebasepro/utils\";\n\nconst DataEnhancementControllerContext = React.createContext<DataEnhancementController>(null! as DataEnhancementController);\n\ntype DataEnhancementControllerProviderProps = {\n\n apiKey: string;\n\n getConfigForPath?: (props: {\n path: string,\n collection: CollectionConfig\n }) => boolean;\n\n host?: string;\n}\n\nexport const useDataEnhancementController = (): DataEnhancementController => useContext(DataEnhancementControllerContext);\n\nfunction getPropertyFromKey(properties: Record<string, InputProperty>, propertyKey: string) {\n if (propertyKey in properties) {\n return properties[propertyKey];\n } else {\n //split the property key\n const split = propertyKey.split(\".\");\n if (split.length === 1) {\n return undefined;\n }\n const parentKey = split.slice(0, split.length - 1).join(\".\");\n return getPropertyFromKey(properties, parentKey);\n\n }\n}\n\nexport function DataEnhancementControllerProvider({\n apiKey,\n getConfigForPath,\n children,\n host,\n path,\n collection,\n formContext\n}: PropsWithChildren<DataEnhancementControllerProviderProps & PluginFormActionProps>) {\n\n const [enabled, setEnabled] = useState(false);\n const [suggestions, setSuggestions] = useState<Record<string, string | number>>({});\n const [loadingSuggestions, setLoadingSuggestions] = useState<string[]>([]);\n\n const enhancingInProgress = useRef(false);\n\n const authController = useAuthController();\n const snackbarController = useSnackbarController();\n\n\n const properties = useMemo(() => getSimplifiedProperties(collection.properties, formContext?.values ?? {}), [formContext?.values]);\n // const preEnhanceValuesRef = React.useRef(formContext?.values ?? {});\n const valuesRef = React.useRef(formContext?.values ?? {});\n useEffect(() => {\n if (!enhancingInProgress.current)\n valuesRef.current = formContext?.values ?? {};\n }, [formContext?.values]);\n\n const allowReferenceDataSelection = false;\n\n const updateConfig = useCallback(async () => {\n if (!getConfigForPath) return;\n const config = getConfigForPath({\n path,\n collection\n });\n if (config) {\n setEnabled(true);\n }\n }, [collection, getConfigForPath, path]);\n\n useEffect(() => {\n if (!getConfigForPath) {\n setEnabled(true);\n } else {\n updateConfig();\n }\n\n }, [getConfigForPath, updateConfig]);\n\n\n const urlController = useUrlController();\n\n const clearSuggestion = useCallback((propertyKey: string) => {\n setSuggestions((prev) => {\n //remove propertyKey from prev\n const {\n [propertyKey]: _,\n ...rest\n } = prev;\n return rest;\n });\n }, []);\n\n const appendValueDelta = useCallback((propertyKey: string, delta: string) => {\n\n const property = getPropertyFromKey(properties, propertyKey);\n if (delta === null || property?.disabled) {\n return;\n }\n\n // clearSuggestion(propertyKey);\n const value = getValueInPath(valuesRef.current, propertyKey);\n\n const currentValue = value ? (value as string) + \"\" : \"\";\n const updatedValue = currentValue + delta;\n // if (currentValue.length === 0) updatedValue = updatedValue.trimStart();\n valuesRef.current = {\n ...valuesRef.current,\n [propertyKey]: updatedValue\n };\n formContext?.setFieldValue(propertyKey, updatedValue, false);\n setSuggestions(prev => ({\n ...prev,\n [propertyKey]: (prev[propertyKey] ?? \"\") + delta\n }));\n }, [properties, formContext]);\n\n const updateSuggestedValues = useCallback((currentValues: object, updatedValues: Record<string, string | number>, replaceValues: boolean) => {\n\n setLoadingSuggestions((prev) => {\n return prev.filter(p => !Object.keys(updatedValues).includes(p));\n });\n\n Object.entries(updatedValues).forEach(([propertyKey, suggestion]) => {\n\n const value = getValueInPath(currentValues, propertyKey);\n const property = getPropertyFromKey(properties, propertyKey);\n\n if (!property || suggestion === null || property?.disabled) {\n return;\n }\n\n if (typeof suggestion === \"number\") {\n formContext?.setFieldValue(propertyKey, suggestion);\n return;\n }\n\n if (replaceValues) {\n formContext?.setFieldValue(propertyKey, suggestion);\n return;\n }\n\n const appendableValue = getAppendableSuggestion(suggestion, value);\n\n const currentValue = value ? (value as string) + \"\" : \"\";\n if (appendableValue) {\n formContext?.setFieldValue(propertyKey, suggestion);\n } else {\n const multiline = property?.fieldConfigId === \"multiline\" || property?.fieldConfigId === \"markdown\";\n const trimmedValue = currentValue.trimEnd();\n if (multiline && (trimmedValue.endsWith(\".\") || trimmedValue.endsWith(\"?\") || trimmedValue.endsWith(\"!\") || trimmedValue.endsWith(\":\"))) {\n formContext?.setFieldValue(propertyKey, trimmedValue + \"\\n\\n\" + (suggestion as string).trimStart());\n } else {\n formContext?.setFieldValue(propertyKey, trimmedValue + (trimmedValue.length > 0 ? \" \" : \"\") + (suggestion as string));\n }\n }\n });\n\n setSuggestions(prev => ({\n ...prev,\n ...Object.keys(updatedValues)\n .reduce((acc, key) => {\n const value = getValueInPath(formContext?.values, key);\n const suggestion = updatedValues[key];\n return {\n ...acc,\n [key]: getAppendableSuggestion(suggestion, value) ?? suggestion\n };\n }, {})\n }));\n }, [properties, formContext]);\n\n const displayNeededSubscriptionSnackbar = useCallback((projectId: unknown) => {\n snackbarController.open({\n type: \"warning\",\n message: \"A valid subscription is needed in order to use this function.\",\n autoHideDuration: 4000\n });\n }, [snackbarController]);\n\n const editorAIController = useEditorAIController({ getAuthToken: authController.getAuthToken });\n\n const clearAllSuggestions = useCallback(() => {\n setSuggestions({});\n }, []);\n\n const enhance = useCallback(async (props: EnhanceParams<Record<string, unknown>>): Promise<EnhancedDataResult | null> => {\n\n if (!authController.user) {\n snackbarController.open({\n type: \"warning\",\n message: \"You need to be logged in to enhance data\"\n });\n return Promise.reject(new Error(\"Not logged in\"));\n }\n\n const resolvedPath = urlController.resolveDatabasePathsFrom(path);\n const firebaseToken = await authController.getAuthToken();\n\n if (props.propertyKey) {\n clearSuggestion(props.propertyKey)\n } else {\n clearAllSuggestions();\n }\n\n setLoadingSuggestions((prev) => [...prev, ...(props.propertyKey ? [props.propertyKey] : Object.keys(properties))]);\n enhancingInProgress.current = true;\n\n const currentValues = valuesRef.current ?? {};\n\n return new Promise((resolve, reject) => {\n function onError(e: unknown) {\n setLoadingSuggestions([]);\n const err = e instanceof Error ? e : typeof e === \"object\" && e !== null ? e : new Error(String(e));\n const errorObj = err as Record<string, unknown>;\n if (errorObj.code === \"payment-required\") {\n const data = errorObj.data as Record<string, unknown> | undefined;\n const projectId = data?.projectId;\n displayNeededSubscriptionSnackbar(projectId);\n } else {\n console.error(\"Enhance error\", e);\n }\n reject(e);\n enhancingInProgress.current = false;\n }\n\n try {\n enhanceDataAPIStream({\n ...props,\n host,\n apiKey,\n properties,\n path: resolvedPath,\n entityName: collection.singularName ?? collection.name,\n entityDescription: collection.description,\n\n firebaseToken,\n onUpdate: (suggestions) => {\n console.debug(\"de onUpdate\", suggestions);\n updateSuggestedValues(currentValues, suggestions, props.replaceValues ?? false);\n },\n onUpdateDelta: (propertyKey: string, partialValue: string) => {\n // console.debug(\"de delta\", propertyKey, partialValue);\n appendValueDelta(propertyKey, partialValue);\n },\n onError,\n onEnd: (result) => {\n console.debug(\"de onEnd\", result);\n if (result.errors) {\n result.errors.forEach((error) => {\n snackbarController.open({\n type: \"warning\",\n message: error\n })\n });\n }\n if (Object.keys(result.suggestions).length === 0) {\n snackbarController.open({\n type: \"info\",\n autoHideDuration: 1800,\n message: \"No fields were updated\"\n })\n }\n setLoadingSuggestions([]);\n resolve(result);\n enhancingInProgress.current = false;\n }\n }).catch(onError);\n } catch (e: unknown) {\n onError(e);\n }\n });\n }, [\n authController, urlController, path, clearSuggestion, clearAllSuggestions,\n properties, host, apiKey, collection, updateSuggestedValues, appendValueDelta, displayNeededSubscriptionSnackbar, snackbarController\n ]);\n\n const getSamplePrompts = useCallback(async (entityName: string, input?: string) => {\n const firebaseToken = await authController.getAuthToken()\n return fetchEntityPromptSuggestion({\n host,\n entityName,\n firebaseToken,\n apiKey,\n input\n });\n }, [apiKey, authController.getAuthToken, host]);\n\n const dataEnhancementController: DataEnhancementController = useMemo(() => ({\n enabled,\n suggestions,\n clearSuggestion,\n enhance,\n allowReferenceDataSelection,\n clearAllSuggestions,\n getSamplePrompts,\n loadingSuggestions,\n editorAIController\n }), [\n enabled,\n suggestions,\n clearSuggestion,\n enhance,\n allowReferenceDataSelection,\n clearAllSuggestions,\n getSamplePrompts,\n loadingSuggestions,\n editorAIController\n ]);\n\n return (\n <DataEnhancementControllerContext.Provider\n value={dataEnhancementController}>\n {children}\n </DataEnhancementControllerContext.Provider>\n );\n}\n\n\n","\nimport React, { useCallback, useDeferredValue, useEffect, useRef } from \"react\";\n\nimport {\n Button,\n CircularProgress,\n cls,\n focusedDisabled,\n IconButton,\n iconSize,\n Menu,\n MenuItem,\n SendIcon,\n Separator,\n TextareaAutosize,\n XIcon\n} from \"@rebasepro/ui\";\nimport {\n AIIcon,\n useLargeLayout\n} from \"@rebasepro/app\";\nimport { EntityStatus, PluginFormActionProps, Properties, Property } from \"@rebasepro/types\";\nimport { isPropertyBuilder, stripCollectionPath } from \"@rebasepro/common\";\nimport { useDataEnhancementController } from \"./DataEnhancementControllerProvider\";\nimport { SamplePrompt } from \"../types/data_enhancement_controller\";\n\nexport function FormEnhanceAction({\n entityId,\n path,\n status,\n collection,\n formContext,\n openEntityMode\n}: PluginFormActionProps) {\n\n const largeLayout = useLargeLayout();\n\n const storageKey = createLocalStorageKey(path, status);\n\n const [loading, setLoading] = React.useState(false);\n const dataEnhancementController = useDataEnhancementController();\n\n const [samplePrompts, setSamplePrompts] = React.useState<SamplePrompt[] | undefined>(undefined);\n const [instructions, setInstructions] = React.useState<string>(\"\");\n\n const getSamplePrompts = dataEnhancementController?.getSamplePrompts;\n\n const loadingPrompts = useRef(false);\n const updateSuggestedPrompts = useCallback(async function updateSuggestedPrompts(instructions?: string) {\n if (!getSamplePrompts) return;\n if (loadingPrompts.current) return;\n loadingPrompts.current = true;\n const prompts = status === \"new\"\n ? (await getSamplePrompts(collection.singularName ?? collection.name, instructions)).prompts\n : getPromptsForExistingEntities(collection.properties);\n\n const recentPromptsFromStorage = getRecentPromptsFromStorage(storageKey);\n const recentPrompts = recentPromptsFromStorage.map(prompt => prompt.prompt);\n setSamplePrompts([...recentPromptsFromStorage, ...prompts.filter(p => !recentPrompts.includes(p.prompt))].slice(0, 5));\n loadingPrompts.current = false;\n },\n [collection.name, collection.singularName, getSamplePrompts, status]);\n\n const deferredValues = useDeferredValue(formContext?.values);\n // const enoughData = countStringCharacters(deferredValues, collection.properties) > 20;\n\n useEffect(() => {\n if (!dataEnhancementController) return;\n if (!samplePrompts) {\n setSamplePrompts(getRecentPromptsFromStorage(storageKey));\n updateSuggestedPrompts().then();\n }\n }, [dataEnhancementController, samplePrompts, storageKey, updateSuggestedPrompts, instructions, status]);\n\n useEffect(() => {\n if (!dataEnhancementController) return;\n updateSuggestedPrompts().then();\n }, [dataEnhancementController, status]);\n\n const enhance = (prompt?: string) => {\n if (!dataEnhancementController || !formContext?.values) return;\n setLoading(true);\n if (prompt) {\n addRecentPrompt(storageKey, prompt);\n setSamplePrompts([{\n prompt,\n type: \"recent\"\n }, ...(samplePrompts ?? []).slice(0, 5)]);\n }\n return dataEnhancementController.enhance({\n entityId,\n values: formContext!.values,\n instructions: prompt,\n replaceValues: true\n }).finally(() => {\n setLoading(false);\n });\n };\n\n if (!dataEnhancementController?.enabled)\n return null;\n\n const suggestions = dataEnhancementController.suggestions;\n const hasSuggestions = Object.values(suggestions).filter(Boolean).length > 0;\n\n const disabledSuggestionActions = !hasSuggestions;\n const promptSuggestionsEnabled = (samplePrompts ?? []).length > 0 && instructions.length === 0;\n\n // const noIdSet = !formContext?.entityId;\n\n function submit() {\n enhance(instructions);\n }\n\n return (\n <Menu\n align={\"end\"}\n sideOffset={8}\n className={\"max-w-[100vw]\"}\n trigger={<Button variant={\"filled\"}\n color={\"neutral\"}\n fullWidth={largeLayout && openEntityMode === \"full_screen\"}\n size={\"small\"}\n disabled={loading}>\n {!loading && <AIIcon size={\"small\"}/>}\n {loading && <CircularProgress size={\"small\"}/>}\n Autofill\n </Button>}>\n\n <MenuItem className={\"py-4\"}\n onClick={() => {\n enhance();\n }}>\n <AIIcon size={\"small\"}/>\n Autofill based on the current content\n </MenuItem>\n\n <Separator orientation={\"horizontal\"} className={\"mt-2\"}/>\n\n {samplePrompts?.map((samplePrompt, index) => {\n return <MenuItem\n key={index + \"_\" + samplePrompt.prompt}\n onClick={() => {\n setInstructions(samplePrompt.prompt);\n enhance(samplePrompt.prompt);\n }}\n >\n <div className={\"pl-9 grow text-text-secondary dark:text-text-secondary-dark\"}>\n {samplePrompt.prompt}\n </div>\n\n {samplePrompt.type === \"recent\" && <IconButton\n onClick={(e) => {\n e.preventDefault();\n e.stopPropagation();\n removeRecentPrompt(storageKey, samplePrompt.prompt);\n setSamplePrompts((samplePrompts ?? []).filter(p => p.prompt !== samplePrompt.prompt));\n }}\n size={\"smallest\"}\n >\n <XIcon size={iconSize.smallest}/>\n </IconButton>\n }\n </MenuItem>;\n })}\n\n <Separator orientation={\"horizontal\"}/>\n\n <div\n className={cls(\n \"my-2 w-[500px] max-w-full flex items-start text-surface-700 dark:text-surface-200\"\n )}>\n\n <TextareaAutosize\n className={cls(\"p-4 rounded-lg resize-none bg-surface-100 dark:bg-surface-950 mx-2 w-full grow outline-hidden max-h-[300px] overflow-auto\", focusedDisabled)}\n value={instructions}\n autoFocus={status === \"new\"}\n disabled={loading}\n onFocus={(event) => {\n event.stopPropagation();\n }}\n placeholder={\"...or provide instructions\"}\n onKeyDown={(e) => {\n e.stopPropagation();\n if (e.key === \"Enter\" && !e.shiftKey) {\n e.preventDefault();\n submit();\n }\n\n }}\n onChange={(e) => {\n setInstructions(e.target.value);\n }}\n />\n\n <IconButton\n size={\"small\"}\n onClick={() => {\n setInstructions(\"\");\n }}\n color={!instructions ? \"primary\" : undefined}\n disabled={loading || !instructions}>\n <XIcon size={iconSize.small}/>\n </IconButton>\n\n <IconButton\n onClick={() => enhance(instructions)}\n size={\"small\"}\n color={!instructions ? \"primary\" : undefined}\n disabled={loading || !instructions}>\n {loading &&\n <CircularProgress size={\"smallest\"}/>}\n {!loading &&\n <SendIcon color={\"primary\"}/>}\n </IconButton>\n\n </div>\n\n </Menu>\n );\n}\n\nfunction getPromptsForExistingEntities(properties: Properties): SamplePrompt[] {\n\n const multilineProperties = Object.values(properties).filter((p: Property) => {\n if (isPropertyBuilder(p)) {\n return false;\n }\n return p.type === \"string\" && (p.ui?.markdown || p.ui?.multiline);\n });\n\n const multilinePrompt: Property | undefined = multilineProperties.length > 0\n ? multilineProperties[Math.floor(Math.random() * multilineProperties.length)] as Property\n : undefined;\n\n const prompts = [\n \"Fill the missing fields\",\n \"Translate the missing content\"\n ];\n if (multilinePrompt) {\n prompts.push(`Add 2 paragraphs to '${multilinePrompt.name}'`);\n }\n return prompts.map(p => ({\n prompt: p,\n type: \"sample\"\n }));\n}\n\nconst createLocalStorageKey = (path: string, status: EntityStatus) => {\n const statusString = status === \"new\" ? \"new\" : \"existing\";\n return `data_enhancement::${statusString}::${stripCollectionPath(path)}`;\n};\n\nconst getRecentPromptsFromStorage = (storageKey: string): SamplePrompt[] => {\n const item = localStorage.getItem(storageKey);\n return item ? JSON.parse(item).map((e: string) => ({\n prompt: e,\n type: \"recent\"\n })) : [];\n};\n\nconst addRecentPrompt = (storageKey: string, prompt: string) => {\n if (!prompt || prompt.trim().length === 0) {\n return;\n }\n const recentPrompts = getRecentPromptsFromStorage(storageKey);\n localStorage.setItem(storageKey, JSON.stringify([prompt, ...recentPrompts\n .map(e => e.prompt)\n .filter(e => e !== prompt)\n .slice(0, 5)]));\n};\n\nconst removeRecentPrompt = (storageKey: string, prompt: string) => {\n localStorage.setItem(storageKey, JSON.stringify(getRecentPromptsFromStorage(storageKey)\n .map(e => e.prompt)\n .filter(e => e !== prompt)));\n};\n","import React from \"react\";\n\nimport { CollectionConfig, RebasePlugin, User } from \"@rebasepro/types\";\nimport { DataEnhancementControllerProvider } from \"./components/DataEnhancementControllerProvider\";\nimport { FormEnhanceAction } from \"./components/FormEnhanceAction\";\n\nconst DEFAULT_API_KEY = \"fcms-U9jdDii0xXWSDC34asfrf54lbkFJBfKfRWcEDEwdc4V5wDWEDF\";\n\nexport interface DataEnhancementPluginProps {\n\n apiKey?: string;\n\n /**\n * Use this function to determine if the data enhancement plugin should be enabled for a given path.\n * If this function is not provided, the plugin will be enabled for all paths.\n * If the function returns false, the plugin will be disabled for the given path.\n * You can also return a configuration object to override the default configuration.\n *\n * @param path\n * @param collection\n */\n getConfigForPath?: (props: {\n path: string,\n collection: CollectionConfig,\n user: User | null\n }) => boolean;\n\n /**\n * Host to use for the data enhancement API.\n * This prop is only use in development mode.\n */\n host?: string;\n}\n\n/**\n * Use this hook to initialise the data enhancement plugin.\n * This is likely the only hook you will need to use.\n * @param props\n */\nexport function useDataEnhancementPlugin(props?: DataEnhancementPluginProps): RebasePlugin {\n\n const apiKey = props?.apiKey ?? DEFAULT_API_KEY;\n const getConfigForPath = props?.getConfigForPath;\n\n return React.useMemo(() => ({\n key: \"data_enhancement\",\n slots: [\n {\n slot: \"form.actions\",\n Component: FormEnhanceAction,\n order: 40\n }\n ],\n providers: [\n {\n scope: \"form\" as const,\n Component: DataEnhancementControllerProvider as React.ComponentType<any>,\n props: {\n apiKey,\n getConfigForPath,\n host: props?.host\n }\n }\n ]\n }), [apiKey, getConfigForPath, props?.host]);\n}\n"],"mappings":";;;;;;;;AAAA,SAAgB,oBAAsC,QAAW,OAAO,IAAY;CAChF,IAAI,CAAC,QAAQ,OAAO,CAAC;CACrB,OAAO,OAAO,QAAQ,MAAM,EAAE,SAAS,CAAC,KAAK,WAAW;EACpD,MAAM,cAAc,OAAO,GAAG,KAAK,GAAG,QAAQ;EAC9C,IAAI,OAAO,UAAU,UACjB,OAAO,oBAAoB,OAAO,WAAW;OAE7C,OAAO,GAAG,cAAc,MAAM;CAEtC,CAAC,EAAE,QAAQ,KAAK,UAAU;EAAE,GAAG;EACnC,GAAG;CAAK,IAAI,CAAC,CAAC;AACd;;;ACCA,IAAM,iBAAiB;AAEvB,eAAsB,qBAAwD,OAkB3E;CAEC,MAAM,aAAa,oBAAoB,MAAM,MAAM;CAEnD,MAAM,aAAa,MAAM;CAOzB,MAAM,UAAkC;EACpC,aAAA;GALA,UAAU,MAAM;GAChB,QAAQ;EAIR;EACA;EACA,YAAY,MAAM;EAClB,mBAAmB,MAAM;EACzB,aAAa,MAAM;EACnB,sBAAsB,MAAM;EAC5B,cAAc,MAAM;CACxB;CAEA,QAAQ,MAAM,wBAAwB,OAAO;CAE7C,OAAO,OAAO,MAAM,QAAQ,kBAAkB,yBAC1C;EAEI,QAAQ;EACR,SAAS;GACL,gBAAgB;GAChB,eAAe,SAAS,MAAM;GAC9B,gBAAgB,SAAS,MAAM;EAEnC;EACA,MAAM,KAAK,UAAU,OAAO;CAChC,CAAC,EACA,KAAK,OAAO,QAAQ;EACjB,IAAI,CAAC,IAAI,IAAI;GACT,QAAQ,MAAM,8BAA8B,GAAG;GAC/C,MAAM,MAAM,IAAI,KAAK;EACzB;EACA,MAAM,SAAS,IAAI,MAAM,UAAU;EACnC,IAAI,CAAC,QACD,MAAM,IAAI,MAAM,WAAW;EAG/B,WAAW,MAAM,SAAS,WAAW,MAAM,GAAG;GAC1C,MAAM,MAAM,IAAI,YAAY,EAAE,OAAO,KAAK;GAC1C,IAAI;IACA,IAAI,MAAM,MAAM,EAAE,SAAS,MAAM;KAC7B,IAAI,KAAK,EAAE,SAAS,GAAG;MACnB,MAAM,OAAO,KAAK,MAAM,EAAE,KAAK,CAAC;MAChC,IAAI,KAAK,SAAS,oBACd,MAAM,cAAc,KAAK,KAAK,aAAa,KAAK,KAAK,YAAY;WAChE,IAAI,KAAK,SAAS,cACnB,MAAM,SAAS,KAAK,IAAI;WACvB,IAAI,KAAK,SAAS,UACnB,MAAM,MAAM,KAAK,IAAI;KAC7B;IACJ,CAAC;GACL,SAAS,GAAY;IACjB,QAAQ,MAAM,OAAO,GAAG;IACxB,QAAQ,MAAM,wBAAwB,CAAC;IACvC,MAAM,QAAQ,aAAa,QAAQ,IAAI,IAAI,MAAM,OAAO,CAAC,CAAC,CAAC;GAC/D;EACJ;CAEJ,CAAC;AAET;AAEA,SAAS,WAAW,QAAqC;CACrD,OAAO,EACH,QAAQ,OAAO,iBAAiB;EAC5B,IAAI,aAAa,MAAM,OAAO,KAAK;EACnC,OAAO,CAAC,WAAW,MAAM;GACrB,MAAM,WAAW;GACjB,aAAa,MAAM,OAAO,KAAK;EACnC;CACJ,EACJ;AACJ;AAEA,eAAsB,4BAA8C,OAMnC;CAE7B,OAAO,OAAO,MAAM,QAAQ,kBAAkB,8BAC1C;EAEI,QAAQ;EACR,SAAS;GACL,gBAAgB;GAChB,eAAe,SAAS,MAAM;GAC9B,gBAAgB,SAAS,MAAM;EACnC;EACA,MAAM,KAAK,UAAU;GACjB,YAAY,MAAM;GAClB,OAAO,MAAM,SAAS;EAC1B,CAAC;CACL,CAAC,EACA,KAAK,OAAO,QAAQ;EACjB,MAAM,OAAO,MAAM,IAAI,KAAK;EAC5B,IAAI,CAAC,IAAI,IAAI;GACT,QAAQ,MAAM,+BAA+B,IAAI;GACjD,MAAM,MAAM,KAAK,OAAO;EAC5B;EACA,OAAO,EACH,SAAS,KAAK,KAAK,QAAQ,KAAK,OAAe;GAC3C,QAAQ;GACR,MAAM;EACV,EAAE,EACN;CACJ,CAAC;AAET;AAEA,eAAsB,mBAAmB,OAMtC;CAEC,IAAI,SAAS;CACb,OAAO,OAAO,MAAM,QAAQ,kBAAkB,uBAC1C;EAEI,QAAQ;EACR,SAAS;GACL,gBAAgB;GAChB,eAAe,SAAS,MAAM;EAElC;EACA,MAAM,KAAK,UAAU;GACjB,YAAY,MAAM;GAClB,WAAW,MAAM;EACrB,CAAC;CACL,CAAC,EACA,KAAK,OAAO,QAAQ;EACjB,IAAI,CAAC,IAAI,IAAI;GACT,QAAQ,MAAM,8BAA8B,GAAG;GAC/C,MAAM,MAAM,IAAI,KAAK;EACzB;EACA,MAAM,SAAS,IAAI,MAAM,UAAU;EACnC,IAAI,CAAC,QACD,MAAM,IAAI,MAAM,WAAW;EAG/B,WAAW,MAAM,SAAS,WAAW,MAAM,GAAG;GAC1C,MAAM,MAAM,IAAI,YAAY,EAAE,OAAO,KAAK;GAC1C,UAAU;GACV,QAAQ,MAAM,wBAAwB,GAAG;GACzC,MAAM,SAAS,GAAG;EACtB;CAEJ,CAAC,EAAE,WAAW;EACV,QAAQ,MAAM,wBAAwB,MAAM;EAC5C,OAAO;CACX,CAAC;AAET;;;ACrMA,SAAgB,wBAAwB,YAAyC,OAAoC;CACjH,MAAM,0BAA0B,OAAO,eAAe,YAAY,OAAO,UAAU,YAAY,WAAW,YAAY,EAAE,KAAK,EAAE,WAAW,MAAM,YAAY,EAAE,KAAK,CAAC;CACpK,OAAQ,OAAO,UAAU,YAAY,0BAC/B,WAAW,UAAU,WAAW,YAAY,EAAE,KAAK,EAAE,QAAQ,MAAM,YAAY,EAAE,KAAK,CAAC,IAAI,MAAM,KAAK,EAAE,MAAM,IAC9G,KAAA;AACV;;;ACCA,SAAgB,wBAAuD,YAAwB,QAAW,OAAO,IAAmC;CAChJ,IAAI,CAAC,YAAY,OAAO,CAAC;CACzB,OAAO,OAAO,QAAQ,UAAU,EAC3B,KAAK,CAAC,KAAK,cAAc;EACtB,IAAI,kBAAkB,QAAQ,GAAG,OAAO,CAAC;EACzC,MAAM,UAAU,OAAO,GAAG,KAAK,GAAG,QAAQ;EAE1C,OAAO,sBAAsB,UAAU,SADnB,eAAe,QAAQ,OACK,CAAW;CAC/D,CAAC,EACA,QAAQ,GAAG,OAAO;EAAE,GAAG;EAChC,GAAG;CAAE,IAAI,CAAC,CAAC;AACX;AAEA,SAAS,kBAAkB,UAAmC;CAC1D,MAAM,UAAU,WAAW,QAAQ;CACnC,IAAI,CAAC,SAAS;EACV,QAAQ,MAAM,iCAAiC,QAAQ;EACvD,MAAM,IAAI,MAAM,oBAAoB;CACxC;CACA,OAAO;EACH,MAAM,SAAS;EACf,aAAa,SAAS;EACtB,MAAM,SAAS;EACf,eAAe;EACf,MAAM,UAAU,YAAY,SAAS,OAC/B,oBAAoB,SAAS,IAAI,IACjC,KAAA;EACN,UAAU,QAAQ,SAAS,IAAI,YAAY,SAAS,IAAI,QAAQ;CACpE;AACJ;AAEA,SAAS,sBAAsB,UAAoB,MAAc,OAAgD;CAC7G,IAAI,kBAAkB,QAAQ,GAAG,OAAO,CAAC;CACzC,IAAI,SAAS,SAAS;MAEd,SAAS,MAAM,CAAC,MAAM,QAAQ,SAAS,EAAE,KAAK,CAAC,kBAAkB,SAAS,EAAE,GAAG;GAC/E,MAAM,sBAAqC;IACvC,MAAM,SAAS;IACf,aAAa,SAAS;IACtB,MAAM,SAAS;IACf,eAAe;IACf,UAAU,QAAQ,SAAS,IAAI,YAAY,SAAS,IAAI,QAAQ;IAChE,IAAI,kBAAkB,SAAS,EAAc;GACjD;GAsBA,OAAO,GApBW,OAAO,oBAoBlB;EACX,OAAO,IAAI,SAAS,OAAO;GAEvB,MAAM,sBAAqC;IACvC,MAAM,SAAS;IACf,aAAa,SAAS;IACtB,MAAM,SAAS;IACf,eAAe;IACf,UAAU,QAAQ,SAAS,IAAI,YAAY,SAAS,IAAI,QAAQ;IAChE,OAAO;KACH,WAAW,SAAS,MAAM;KAC1B,YAAY,SAAS,MAAM;KAC3B,YAAY,OAAO,QAAQ,SAAS,MAAM,UAAU,EAC/C,KAAK,CAAC,KAAK,WAAW,GAAG,MAAM,kBAAkB,IAAI,EAAE,EAAE,EACzD,QAAQ,GAAG,OAAO;MAAE,GAAG;MAChD,GAAG;KAAE,IAAI,CAAC,CAAC;IACK;GACJ;GAEA,IAAI,CAAC,MAAM,QAAQ,KAAK,GACpB,OAAO,GAAG,OAAO,oBAAoB;GAGzC,OAAO,MAAM,KAAK,GAAG,MAAM;IACvB,IAAI,KAAK,MAAM,OAAO,CAAC;IACvB,MAAM,UAAU,SAAS,MAAO,aAAa;IAC7C,MAAM,YAAY,EAAE;IACpB,MAAM,WAAW,SAAS,MAAO,cAAc;IAC/C,MAAM,aAAa,EAAE;IACrB,MAAM,gBAAgB,SAAS,MAAO,WAAW;IACjD,IAAI,kBAAkB,KAAA,GAAW;KAC7B,QAAQ,MAAM,8BAA8B,aAAa,SAAS,MAAO,UAAU;KACnF,OAAO,CAAC;IACZ;IACA,MAAM,qBAAqB,sBAAsB,eAAe,GAAG,KAAK,GAAG,EAAE,GAAG,YAAY,UAAU;IACtG,OAAO;MACF,GAAG,KAAK,GAAG,EAAE,GAAG,YAAY;KAC7B,GAAG;IACP;GACJ,CAAC,EAAE,QAAQ,GAAG,OAAO;IAAE,GAAG;IACtC,GAAG;GAAE,IAAI,GAAG,OAAO,oBAAoB,CAAC;EAChC;QACG,IAAI,SAAS,SAAS;MACrB,SAAS,YAAY;GACrB,MAAM,gBAA+C,OAAO,QAAQ,SAAS,UAAU,EAClF,KAAK,CAAC,KAAK,mBAAmB;IAE3B,OAAO,sBAAsB,eAAe,KADzB,SAAS,OAAO,UAAU,WAAY,MAAkC,OAAO,KAAA,CACvC;GAC/D,CAAC,EACA,KAAI,MAAK,iBAAiB,GAAG,IAAI,CAAC,EAClC,QAAQ,GAAG,OAAO;IAAE,GAAG;IACxC,GAAG;GAAE,IAAI,CAAC,CAAC;GAEC,IAAI,OAAO,KAAK,aAAa,EAAE,WAAW,GAAG,OAAO,CAAC;GACrD,MAAM,oBAAmC;IACrC,MAAM,SAAS;IACf,aAAa,SAAS;IACtB,MAAM,SAAS;IACf,eAAe;IACf,UAAU,QAAQ,SAAS,IAAI,YAAY,SAAS,IAAI,QAAQ;GACpE;GACA,OAAO;KACF,OAAO;IACR,GAAG;GACP;EACJ;QACG;EAEH,IAAI,CADY,WAAW,QACtB,GAAS;GACV,QAAQ,KAAK,iCAAiC,KAAK,aAAa,SAAS,MAAM;GAC/E,OAAO,CAAC;EACZ;EACA,OAAO,GACF,OAAO,kBAAkB,QAAQ,EACtC;CACJ;CACA,OAAO,CAAC;AACZ;AAGA,SAAS,iBAAiB,KAAoC,OAAO,IAAmC;CACpG,OAAO,OAAO,QAAQ,GAAG,EACpB,KAAK,CAAC,KAAK,WAAW;EAEnB,OAAO,GADS,OAAO,GAAG,KAAK,GAAG,QAAQ,MACtB,MAAM;CAC9B,CAAC,EACA,QAAQ,GAAG,OAAO;EAAE,GAAG;EAChC,GAAG;CAAE,IAAI,CAAC,CAAC;AACX;AAEA,SAAS,oBAAoB,YAAkC;CAC3D,IAAI,MAAM,QAAQ,UAAU,GACxB,OAAO,WAAW,KAAI,MAAK,OAAO,EAAE,EAAE,CAAC;CAC3C,IAAI,OAAO,eAAe,UACtB,OAAO,OAAO,KAAK,UAAU;CACjC,MAAM,MAAM,yCAAyC;AACzD;;;ACpKA,SAAgB,sBAAsB,EAAE,gBAA8E;CAClH,MAAM,eAAe,OAAO,YAAoB,WAAmB,aAAsC;EACrG,IAAI,CAAC,cACD,MAAM,IAAI,MAAM,4BAA4B;EAGhD,OAAO,mBAAmB;GACtB,eAAA,MAFwB,aAAa;GAGrC;GACA;GACA;EACJ,CAAC;CACL;CAEA,OAAO,EACH,aACJ;AACJ;;;ACCA,IAAM,mCAAmC,MAAM,cAAyC,IAAkC;AAc1H,IAAa,qCAAgE,WAAW,gCAAgC;AAExH,SAAS,mBAAmB,YAA2C,aAAqB;CACxF,IAAI,eAAe,YACf,OAAO,WAAW;MACf;EAEH,MAAM,QAAQ,YAAY,MAAM,GAAG;EACnC,IAAI,MAAM,WAAW,GACjB;EAGJ,OAAO,mBAAmB,YADR,MAAM,MAAM,GAAG,MAAM,SAAS,CAAC,EAAE,KAAK,GAClB,CAAS;CAEnD;AACJ;AAEA,SAAgB,kCAAkC,EAC9C,QACA,kBACA,UACA,MACA,MACA,YACA,eACkF;CAElF,MAAM,CAAC,SAAS,cAAc,SAAS,KAAK;CAC5C,MAAM,CAAC,aAAa,kBAAkB,SAA0C,CAAC,CAAC;CAClF,MAAM,CAAC,oBAAoB,yBAAyB,SAAmB,CAAC,CAAC;CAEzE,MAAM,sBAAsB,OAAO,KAAK;CAExC,MAAM,iBAAiB,kBAAkB;CACzC,MAAM,qBAAqB,sBAAsB;CAGjD,MAAM,aAAa,cAAc,wBAAwB,WAAW,YAAY,aAAa,UAAU,CAAC,CAAC,GAAG,CAAC,aAAa,MAAM,CAAC;CAEjI,MAAM,YAAY,MAAM,OAAO,aAAa,UAAU,CAAC,CAAC;CACxD,gBAAgB;EACZ,IAAI,CAAC,oBAAoB,SACrB,UAAU,UAAU,aAAa,UAAU,CAAC;CACpD,GAAG,CAAC,aAAa,MAAM,CAAC;CAExB,MAAM,8BAA8B;CAEpC,MAAM,eAAe,YAAY,YAAY;EACzC,IAAI,CAAC,kBAAkB;EAKvB,IAJe,iBAAiB;GAC5B;GACA;EACJ,CACI,GACA,WAAW,IAAI;CAEvB,GAAG;EAAC;EAAY;EAAkB;CAAI,CAAC;CAEvC,gBAAgB;EACZ,IAAI,CAAC,kBACD,WAAW,IAAI;OAEf,aAAa;CAGrB,GAAG,CAAC,kBAAkB,YAAY,CAAC;CAGnC,MAAM,gBAAgB,iBAAiB;CAEvC,MAAM,kBAAkB,aAAa,gBAAwB;EACzD,gBAAgB,SAAS;GAErB,MAAM,GACD,cAAc,GACf,GAAG,SACH;GACJ,OAAO;EACX,CAAC;CACL,GAAG,CAAC,CAAC;CAEL,MAAM,mBAAmB,aAAa,aAAqB,UAAkB;EAEzE,MAAM,WAAW,mBAAmB,YAAY,WAAW;EAC3D,IAAI,UAAU,QAAQ,UAAU,UAC5B;EAIJ,MAAM,QAAQ,eAAe,UAAU,SAAS,WAAW;EAG3D,MAAM,gBADe,QAAS,QAAmB,KAAK,MAClB;EAEpC,UAAU,UAAU;GAChB,GAAG,UAAU;IACZ,cAAc;EACnB;EACA,aAAa,cAAc,aAAa,cAAc,KAAK;EAC3D,gBAAe,UAAS;GACpB,GAAG;IACF,eAAe,KAAK,gBAAgB,MAAM;EAC/C,EAAE;CACN,GAAG,CAAC,YAAY,WAAW,CAAC;CAE5B,MAAM,wBAAwB,aAAa,eAAuB,eAAgD,kBAA2B;EAEzI,uBAAuB,SAAS;GAC5B,OAAO,KAAK,QAAO,MAAK,CAAC,OAAO,KAAK,aAAa,EAAE,SAAS,CAAC,CAAC;EACnE,CAAC;EAED,OAAO,QAAQ,aAAa,EAAE,SAAS,CAAC,aAAa,gBAAgB;GAEjE,MAAM,QAAQ,eAAe,eAAe,WAAW;GACvD,MAAM,WAAW,mBAAmB,YAAY,WAAW;GAE3D,IAAI,CAAC,YAAY,eAAe,QAAQ,UAAU,UAC9C;GAGJ,IAAI,OAAO,eAAe,UAAU;IAChC,aAAa,cAAc,aAAa,UAAU;IAClD;GACJ;GAEA,IAAI,eAAe;IACf,aAAa,cAAc,aAAa,UAAU;IAClD;GACJ;GAEA,MAAM,kBAAkB,wBAAwB,YAAY,KAAK;GAEjE,MAAM,eAAe,QAAS,QAAmB,KAAK;GACtD,IAAI,iBACA,aAAa,cAAc,aAAa,UAAU;QAC/C;IACH,MAAM,YAAY,UAAU,kBAAkB,eAAe,UAAU,kBAAkB;IACzF,MAAM,eAAe,aAAa,QAAQ;IAC1C,IAAI,cAAc,aAAa,SAAS,GAAG,KAAK,aAAa,SAAS,GAAG,KAAK,aAAa,SAAS,GAAG,KAAK,aAAa,SAAS,GAAG,IACjI,aAAa,cAAc,aAAa,eAAe,SAAU,WAAsB,UAAU,CAAC;SAElG,aAAa,cAAc,aAAa,gBAAgB,aAAa,SAAS,IAAI,MAAM,MAAO,UAAqB;GAE5H;EACJ,CAAC;EAED,gBAAe,UAAS;GACpB,GAAG;GACH,GAAG,OAAO,KAAK,aAAa,EACvB,QAAQ,KAAK,QAAQ;IAClB,MAAM,QAAQ,eAAe,aAAa,QAAQ,GAAG;IACrD,MAAM,aAAa,cAAc;IACjC,OAAO;KACH,GAAG;MACF,MAAM,wBAAwB,YAAY,KAAK,KAAK;IACzD;GACJ,GAAG,CAAC,CAAC;EACb,EAAE;CACN,GAAG,CAAC,YAAY,WAAW,CAAC;CAE5B,MAAM,oCAAoC,aAAa,cAAuB;EAC1E,mBAAmB,KAAK;GACpB,MAAM;GACN,SAAS;GACT,kBAAkB;EACtB,CAAC;CACL,GAAG,CAAC,kBAAkB,CAAC;CAEvB,MAAM,qBAAqB,sBAAsB,EAAE,cAAc,eAAe,aAAa,CAAC;CAE9F,MAAM,sBAAsB,kBAAkB;EAC1C,eAAe,CAAC,CAAC;CACrB,GAAG,CAAC,CAAC;CAEL,MAAM,UAAU,YAAY,OAAO,UAAsF;EAErH,IAAI,CAAC,eAAe,MAAM;GACtB,mBAAmB,KAAK;IACpB,MAAM;IACN,SAAS;GACb,CAAC;GACD,OAAO,QAAQ,uBAAO,IAAI,MAAM,eAAe,CAAC;EACpD;EAEA,MAAM,eAAe,cAAc,yBAAyB,IAAI;EAChE,MAAM,gBAAgB,MAAM,eAAe,aAAa;EAExD,IAAI,MAAM,aACN,gBAAgB,MAAM,WAAW;OAEjC,oBAAoB;EAGxB,uBAAuB,SAAS,CAAC,GAAG,MAAM,GAAI,MAAM,cAAc,CAAC,MAAM,WAAW,IAAI,OAAO,KAAK,UAAU,CAAE,CAAC;EACjH,oBAAoB,UAAU;EAE9B,MAAM,gBAAgB,UAAU,WAAW,CAAC;EAE5C,OAAO,IAAI,SAAS,SAAS,WAAW;GACpC,SAAS,QAAQ,GAAY;IACzB,sBAAsB,CAAC,CAAC;IAExB,MAAM,WADM,aAAa,QAAQ,IAAI,OAAO,MAAM,YAAY,MAAM,OAAO,IAAI,IAAI,MAAM,OAAO,CAAC,CAAC;IAElG,IAAI,SAAS,SAAS,oBAAoB;KAEtC,MAAM,YADO,SAAS,MACE;KACxB,kCAAkC,SAAS;IAC/C,OACI,QAAQ,MAAM,iBAAiB,CAAC;IAEpC,OAAO,CAAC;IACR,oBAAoB,UAAU;GAClC;GAEA,IAAI;IACA,qBAAqB;KACjB,GAAG;KACH;KACA;KACA;KACA,MAAM;KACN,YAAY,WAAW,gBAAgB,WAAW;KAClD,mBAAmB,WAAW;KAE9B;KACA,WAAW,gBAAgB;MACvB,QAAQ,MAAM,eAAe,WAAW;MACxC,sBAAsB,eAAe,aAAa,MAAM,iBAAiB,KAAK;KAClF;KACA,gBAAgB,aAAqB,iBAAyB;MAE1D,iBAAiB,aAAa,YAAY;KAC9C;KACA;KACA,QAAQ,WAAW;MACf,QAAQ,MAAM,YAAY,MAAM;MAChC,IAAI,OAAO,QACP,OAAO,OAAO,SAAS,UAAU;OAC7B,mBAAmB,KAAK;QACpB,MAAM;QACN,SAAS;OACb,CAAC;MACL,CAAC;MAEL,IAAI,OAAO,KAAK,OAAO,WAAW,EAAE,WAAW,GAC3C,mBAAmB,KAAK;OACpB,MAAM;OACN,kBAAkB;OAClB,SAAS;MACb,CAAC;MAEL,sBAAsB,CAAC,CAAC;MACxB,QAAQ,MAAM;MACd,oBAAoB,UAAU;KAClC;IACJ,CAAC,EAAE,MAAM,OAAO;GACpB,SAAS,GAAY;IACjB,QAAQ,CAAC;GACb;EACJ,CAAC;CACL,GAAG;EACC;EAAgB;EAAe;EAAM;EAAiB;EACtD;EAAY;EAAM;EAAQ;EAAY;EAAuB;EAAkB;EAAmC;CACtH,CAAC;CAED,MAAM,mBAAmB,YAAY,OAAO,YAAoB,UAAmB;EAE/E,OAAO,4BAA4B;GAC/B;GACA;GACA,eAAA,MAJwB,eAAe,aAAa;GAKpD;GACA;EACJ,CAAC;CACL,GAAG;EAAC;EAAQ,eAAe;EAAc;CAAI,CAAC;CAE9C,MAAM,4BAAuD,eAAe;EACxE;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;CACJ,IAAI;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;CACJ,CAAC;CAED,OACI,oBAAC,iCAAiC,UAAlC;EACI,OAAO;EACN;CACsC,CAAA;AAEnD;;;ACzTA,SAAgB,kBAAkB,EAC9B,UACA,MACA,QACA,YACA,aACA,kBACsB;CAEtB,MAAM,cAAc,eAAe;CAEnC,MAAM,aAAa,sBAAsB,MAAM,MAAM;CAErD,MAAM,CAAC,SAAS,cAAc,MAAM,SAAS,KAAK;CAClD,MAAM,4BAA4B,6BAA6B;CAE/D,MAAM,CAAC,eAAe,oBAAoB,MAAM,SAAqC,KAAA,CAAS;CAC9F,MAAM,CAAC,cAAc,mBAAmB,MAAM,SAAiB,EAAE;CAEjE,MAAM,mBAAmB,2BAA2B;CAEpD,MAAM,iBAAiB,OAAO,KAAK;CACnC,MAAM,yBAAyB,YAAY,eAAe,uBAAuB,cAAuB;EACpG,IAAI,CAAC,kBAAkB;EACvB,IAAI,eAAe,SAAS;EAC5B,eAAe,UAAU;EACzB,MAAM,UAAU,WAAW,SACpB,MAAM,iBAAiB,WAAW,gBAAgB,WAAW,MAAM,YAAY,GAAG,UACnF,8BAA8B,WAAW,UAAU;EAEzD,MAAM,2BAA2B,4BAA4B,UAAU;EACvE,MAAM,gBAAgB,yBAAyB,KAAI,WAAU,OAAO,MAAM;EAC1E,iBAAiB,CAAC,GAAG,0BAA0B,GAAG,QAAQ,QAAO,MAAK,CAAC,cAAc,SAAS,EAAE,MAAM,CAAC,CAAC,EAAE,MAAM,GAAG,CAAC,CAAC;EACrH,eAAe,UAAU;CAC7B,GACI;EAAC,WAAW;EAAM,WAAW;EAAc;EAAkB;CAAM,CAAC;CAEjD,iBAAiB,aAAa,MAAM;CAG3D,gBAAgB;EACZ,IAAI,CAAC,2BAA2B;EAChC,IAAI,CAAC,eAAe;GAChB,iBAAiB,4BAA4B,UAAU,CAAC;GACxD,uBAAuB,EAAE,KAAK;EAClC;CACJ,GAAG;EAAC;EAA2B;EAAe;EAAY;EAAwB;EAAc;CAAM,CAAC;CAEvG,gBAAgB;EACZ,IAAI,CAAC,2BAA2B;EAChC,uBAAuB,EAAE,KAAK;CAClC,GAAG,CAAC,2BAA2B,MAAM,CAAC;CAEtC,MAAM,WAAW,WAAoB;EACjC,IAAI,CAAC,6BAA6B,CAAC,aAAa,QAAQ;EACxD,WAAW,IAAI;EACf,IAAI,QAAQ;GACR,gBAAgB,YAAY,MAAM;GAClC,iBAAiB,CAAC;IACd;IACA,MAAM;GACV,GAAG,IAAI,iBAAiB,CAAC,GAAG,MAAM,GAAG,CAAC,CAAC,CAAC;EAC5C;EACA,OAAO,0BAA0B,QAAQ;GACrC;GACA,QAAQ,YAAa;GACrB,cAAc;GACd,eAAe;EACnB,CAAC,EAAE,cAAc;GACb,WAAW,KAAK;EACpB,CAAC;CACL;CAEA,IAAI,CAAC,2BAA2B,SAC5B,OAAO;CAEX,MAAM,cAAc,0BAA0B;CACvB,OAAO,OAAO,WAAW,EAAE,OAAO,OAAO,EAAE;CAG5D,CAA4B,iBAAiB,CAAC,GAAG,SAAS,KAAK,aAAa;CAIlF,SAAS,SAAS;EACd,QAAQ,YAAY;CACxB;CAEA,OACI,qBAAC,MAAD;EACI,OAAO;EACP,YAAY;EACZ,WAAW;EACX,SAAS,qBAAC,QAAD;GAAQ,SAAS;GACtB,OAAO;GACP,WAAW,eAAe,mBAAmB;GAC7C,MAAM;GACN,UAAU;aAJL;IAKJ,CAAC,WAAW,oBAAC,QAAD,EAAQ,MAAM,QAAS,CAAA;IACnC,WAAW,oBAAC,kBAAD,EAAkB,MAAM,QAAS,CAAA;IAAE;GAE3C;;YAZZ;GAcI,qBAAC,UAAD;IAAU,WAAW;IACjB,eAAe;KACX,QAAQ;IACZ;cAHJ,CAII,oBAAC,QAAD,EAAQ,MAAM,QAAS,CAAA,GAAC,uCAElB;;GAEV,oBAAC,WAAD;IAAW,aAAa;IAAc,WAAW;GAAQ,CAAA;GAExD,eAAe,KAAK,cAAc,UAAU;IACzC,OAAO,qBAAC,UAAD;KAEH,eAAe;MACX,gBAAgB,aAAa,MAAM;MACnC,QAAQ,aAAa,MAAM;KAC/B;eALG,CAOH,oBAAC,OAAD;MAAK,WAAW;gBACX,aAAa;KACb,CAAA,GAEJ,aAAa,SAAS,YAAY,oBAAC,YAAD;MAC/B,UAAU,MAAM;OACZ,EAAE,eAAe;OACjB,EAAE,gBAAgB;OAClB,mBAAmB,YAAY,aAAa,MAAM;OAClD,kBAAkB,iBAAiB,CAAC,GAAG,QAAO,MAAK,EAAE,WAAW,aAAa,MAAM,CAAC;MACxF;MACA,MAAM;gBAEN,oBAAC,OAAD,EAAO,MAAM,SAAS,SAAU,CAAA;KACxB,CAAA,CAEN;OAtBD,QAAQ,MAAM,aAAa,MAsB1B;GACd,CAAC;GAED,oBAAC,WAAD,EAAW,aAAa,aAAc,CAAA;GAEtC,qBAAC,OAAD;IACI,WAAW,IACP,mFACJ;cAHJ;KAKI,oBAAC,kBAAD;MACI,WAAW,IAAI,6HAA6H,eAAe;MAC3J,OAAO;MACP,WAAW,WAAW;MACtB,UAAU;MACV,UAAU,UAAU;OAChB,MAAM,gBAAgB;MAC1B;MACA,aAAa;MACb,YAAY,MAAM;OACd,EAAE,gBAAgB;OAClB,IAAI,EAAE,QAAQ,WAAW,CAAC,EAAE,UAAU;QAClC,EAAE,eAAe;QACjB,OAAO;OACX;MAEJ;MACA,WAAW,MAAM;OACb,gBAAgB,EAAE,OAAO,KAAK;MAClC;KACH,CAAA;KAED,oBAAC,YAAD;MACI,MAAM;MACN,eAAe;OACX,gBAAgB,EAAE;MACtB;MACA,OAAO,CAAC,eAAe,YAAY,KAAA;MACnC,UAAU,WAAW,CAAC;gBACtB,oBAAC,OAAD,EAAO,MAAM,SAAS,MAAO,CAAA;KACrB,CAAA;KAEZ,qBAAC,YAAD;MACI,eAAe,QAAQ,YAAY;MACnC,MAAM;MACN,OAAO,CAAC,eAAe,YAAY,KAAA;MACnC,UAAU,WAAW,CAAC;gBAJ1B,CAKK,WACG,oBAAC,kBAAD,EAAkB,MAAM,WAAY,CAAA,GACvC,CAAC,WACE,oBAAC,UAAD,EAAU,OAAO,UAAW,CAAA,CACxB;;IAEX;;EAEH;;AAEd;AAEA,SAAS,8BAA8B,YAAwC;CAE3E,MAAM,sBAAsB,OAAO,OAAO,UAAU,EAAE,QAAQ,MAAgB;EAC1E,IAAI,kBAAkB,CAAC,GACnB,OAAO;EAEX,OAAO,EAAE,SAAS,aAAa,EAAE,IAAI,YAAY,EAAE,IAAI;CAC3D,CAAC;CAED,MAAM,kBAAwC,oBAAoB,SAAS,IACrE,oBAAoB,KAAK,MAAM,KAAK,OAAO,IAAI,oBAAoB,MAAM,KACzE,KAAA;CAEN,MAAM,UAAU,CACZ,2BACA,+BACJ;CACA,IAAI,iBACA,QAAQ,KAAK,wBAAwB,gBAAgB,KAAK,EAAE;CAEhE,OAAO,QAAQ,KAAI,OAAM;EACrB,QAAQ;EACR,MAAM;CACV,EAAE;AACN;AAEA,IAAM,yBAAyB,MAAc,WAAyB;CAElE,OAAO,qBADc,WAAW,QAAQ,QAAQ,WACP,IAAI,oBAAoB,IAAI;AACzE;AAEA,IAAM,+BAA+B,eAAuC;CACxE,MAAM,OAAO,aAAa,QAAQ,UAAU;CAC5C,OAAO,OAAO,KAAK,MAAM,IAAI,EAAE,KAAK,OAAe;EAC/C,QAAQ;EACR,MAAM;CACV,EAAE,IAAI,CAAC;AACX;AAEA,IAAM,mBAAmB,YAAoB,WAAmB;CAC5D,IAAI,CAAC,UAAU,OAAO,KAAK,EAAE,WAAW,GACpC;CAEJ,MAAM,gBAAgB,4BAA4B,UAAU;CAC5D,aAAa,QAAQ,YAAY,KAAK,UAAU,CAAC,QAAQ,GAAG,cACvD,KAAI,MAAK,EAAE,MAAM,EACjB,QAAO,MAAK,MAAM,MAAM,EACxB,MAAM,GAAG,CAAC,CAAC,CAAC,CAAC;AACtB;AAEA,IAAM,sBAAsB,YAAoB,WAAmB;CAC/D,aAAa,QAAQ,YAAY,KAAK,UAAU,4BAA4B,UAAU,EACjF,KAAI,MAAK,EAAE,MAAM,EACjB,QAAO,MAAK,MAAM,MAAM,CAAC,CAAC;AACnC;;;AC9QA,IAAM,kBAAkB;;;;;;AAiCxB,SAAgB,yBAAyB,OAAkD;CAEvF,MAAM,SAAS,OAAO,UAAU;CAChC,MAAM,mBAAmB,OAAO;CAEhC,OAAO,MAAM,eAAe;EACxB,KAAK;EACL,OAAO,CACH;GACI,MAAM;GACN,WAAW;GACX,OAAO;EACX,CACJ;EACA,WAAW,CACP;GACI,OAAO;GACP,WAAW;GACX,OAAO;IACH;IACA;IACA,MAAM,OAAO;GACjB;EACJ,CACJ;CACJ,IAAI;EAAC;EAAQ;EAAkB,OAAO;CAAI,CAAC;AAC/C"}
1
+ {"version":3,"file":"index.es.js","names":[],"sources":["../src/utils/values.ts","../src/api.ts","../src/utils/suggestions.ts","../src/utils/properties.ts","../src/editor/useEditorAIController.tsx","../src/components/DataEnhancementControllerProvider.tsx","../src/components/FormEnhanceAction.tsx","../src/useDataEnhancementPlugin.tsx"],"sourcesContent":["export function flatMapEntityValues<M extends object>(values: M, path = \"\"): object {\n if (!values) return {};\n return Object.entries(values).flatMap(([key, value]) => {\n const currentPath = path ? `${path}.${key}` : key;\n if (typeof value === \"object\") {\n return flatMapEntityValues(value, currentPath);\n } else {\n return { [currentPath]: value };\n }\n }).reduce((acc, curr) => ({ ...acc,\n...curr }), {})\n}\n","import {\n DataEnhancementRequest,\n EnhancedDataResult,\n InputEntity,\n InputProperty,\n SamplePromptsResult\n} from \"./types/data_enhancement_controller\";\nimport { EntityValues } from \"@rebasepro/types\";\nimport { flatMapEntityValues } from \"./utils/values\";\n\n// const DEFAULT_SERVER = \"http://localhost:5001/rebase-dev-2da42/europe-west3/api\"; // Local\n\nconst DEFAULT_SERVER = \"https://api.rebase.pro\";\n\nexport async function enhanceDataAPIStream<M extends Record<string, unknown>>(props: {\n apiKey: string,\n entityId?: string | number,\n entityName: string,\n entityDescription?: string,\n propertyKey?: string,\n propertyInstructions?: string;\n values: EntityValues<M>,\n path: string,\n properties: Record<string, InputProperty>,\n\n instructions?: string,\n firebaseToken: string,\n onUpdate: (suggestions: Record<string, string | number>) => void;\n onUpdateDelta: (propertyKey: string, partialValue: string) => void;\n onError: (error: Error) => void;\n onEnd: (result: EnhancedDataResult) => void;\n host?: string;\n}) {\n\n const flatValues = flatMapEntityValues(props.values);\n\n const properties = props.properties;\n\n const inputEntity: InputEntity = {\n entityId: props.entityId,\n values: flatValues\n }\n\n const request: DataEnhancementRequest = {\n inputEntity,\n properties,\n entityName: props.entityName,\n entityDescription: props.entityDescription,\n propertyKey: props.propertyKey,\n propertyInstructions: props.propertyInstructions,\n instructions: props.instructions\n };\n\n console.debug(\"enhanceDataAPIStream\", request);\n\n return fetch((props.host ?? DEFAULT_SERVER) + \"/data/enhance_stream/\",\n {\n // mode: \"no-cors\",\n method: \"POST\",\n headers: {\n \"Content-Type\": \"application/json\",\n Authorization: `Basic ${props.firebaseToken}`,\n \"x-de-api-key\": `Basic ${props.apiKey}`\n // \"x-de-version\": version\n },\n body: JSON.stringify(request)\n })\n .then(async (res) => {\n if (!res.ok) {\n console.error(\"enhanceDataAPIStream error\", res)\n throw await res.json();\n }\n const reader = res.body?.getReader();\n if (!reader) {\n throw new Error(\"No reader\");\n }\n\n for await (const chunk of readChunks(reader)) {\n const str = new TextDecoder().decode(chunk);\n try {\n str.split(\"&$# \").forEach((s) => {\n if (s && s.length > 0) {\n const data = JSON.parse(s.trim());\n if (data.type === \"suggestion_delta\")\n props.onUpdateDelta(data.data.propertyKey, data.data.partialValue);\n else if (data.type === \"suggestion\")\n props.onUpdate(data.data);\n else if (data.type === \"result\")\n props.onEnd(data.data);\n }\n });\n } catch (e: unknown) {\n console.error(\"str\", str);\n console.error(\"Error parsing stream\", e);\n props.onError(e instanceof Error ? e : new Error(String(e)));\n }\n }\n\n });\n\n}\n\nfunction readChunks(reader: ReadableStreamDefaultReader) {\n return {\n async *[Symbol.asyncIterator]() {\n let readResult = await reader.read();\n while (!readResult.done) {\n yield readResult.value;\n readResult = await reader.read();\n }\n }\n };\n}\n\nexport async function fetchEntityPromptSuggestion<M extends object>(props: {\n input?: string,\n entityName: string,\n firebaseToken: string,\n apiKey: string,\n host?: string\n}): Promise<SamplePromptsResult> {\n\n return fetch((props.host ?? DEFAULT_SERVER) + \"/data/prompt_autocomplete/\",\n {\n // mode: \"no-cors\",\n method: \"POST\",\n headers: {\n \"Content-Type\": \"application/json\",\n Authorization: `Basic ${props.firebaseToken}`,\n \"x-de-api-key\": `Basic ${props.apiKey}`\n },\n body: JSON.stringify({\n entityName: props.entityName,\n input: props.input ?? null\n })\n })\n .then(async (res) => {\n const data = await res.json();\n if (!res.ok) {\n console.error(\"fetchEntityPromptSuggestion\", data);\n throw Error(data.message);\n }\n return {\n prompts: data.data.prompts.map((e: string) => ({\n prompt: e,\n type: \"sample\"\n }))\n };\n });\n\n}\n\nexport async function autocompleteStream(props: {\n firebaseToken: string,\n textBefore?: string,\n textAfter: string,\n host?: string;\n onUpdate: (delta: string) => void;\n}) {\n\n let result = \"\";\n return fetch((props.host ?? DEFAULT_SERVER) + \"/data/autocomplete/\",\n {\n // mode: \"no-cors\",\n method: \"POST\",\n headers: {\n \"Content-Type\": \"application/json\",\n Authorization: `Basic ${props.firebaseToken}`\n // \"x-de-version\": version\n },\n body: JSON.stringify({\n textBefore: props.textBefore,\n textAfter: props.textAfter\n })\n })\n .then(async (res) => {\n if (!res.ok) {\n console.error(\"enhanceDataAPIStream error\", res)\n throw await res.json();\n }\n const reader = res.body?.getReader();\n if (!reader) {\n throw new Error(\"No reader\");\n }\n\n for await (const chunk of readChunks(reader)) {\n const str = new TextDecoder().decode(chunk);\n result += str;\n console.debug(\"Autocomplete update:\", str);\n props.onUpdate(str);\n }\n\n }).then(() => {\n console.debug(\"Autocomplete result:\", result);\n return result;\n });\n\n}\n","export function getAppendableSuggestion(suggestion: string | number | undefined, value: unknown): string | undefined {\n const suggestionIncludesValue = typeof suggestion === \"string\" && typeof value === \"string\" && suggestion.toLowerCase().trim().startsWith(value.toLowerCase().trim());\n return (typeof value === \"string\" && suggestionIncludesValue)\n ? suggestion.substring(suggestion.toLowerCase().trim().indexOf(value.toLowerCase().trim()) + value.trim().length)\n : undefined;\n}\n","import { getFieldId } from \"@rebasepro/admin\";\nimport { EnumValues, Properties, Property } from \"@rebasepro/types\";\nimport { isPropertyBuilder } from \"@rebasepro/common\";\nimport { InputProperty } from \"../types/data_enhancement_controller\";\nimport { getValueInPath } from \"@rebasepro/utils\";\n\nexport function getSimplifiedProperties<M extends Record<string, any>>(properties: Properties, values: M, path = \"\"): Record<string, InputProperty> {\n if (!properties) return {};\n return Object.entries(properties)\n .map(([key, property]) => {\n if (isPropertyBuilder(property)) return {};\n const fullKey = path ? `${path}.${key}` : key;\n const valueInPath = getValueInPath(values, fullKey);\n return getSimplifiedProperty(property, fullKey, valueInPath)\n })\n .reduce((a, b) => ({ ...a,\n...b }), {});\n}\n\nfunction getSimpleProperty(property: Property): InputProperty {\n const fieldId = getFieldId(property);\n if (!fieldId) {\n console.error(\"No fieldId found for property\", property);\n throw new Error(\"Field id not found\");\n }\n return {\n name: property.name,\n description: property.description,\n type: property.type,\n fieldConfigId: fieldId,\n enum: \"enum\" in property && property.enum\n ? getSimpleEnumValues(property.enum)\n : undefined,\n disabled: Boolean(property.admin?.disabled || property.admin?.readOnly)\n };\n}\n\nfunction getSimplifiedProperty(property: Property, path: string, value?: unknown): Record<string, InputProperty> {\n if (isPropertyBuilder(property)) return {};\n if (property.type === \"array\") {\n\n if (property.of && !Array.isArray(property.of) && !isPropertyBuilder(property.of)) {\n const arrayParentProperty: InputProperty = {\n name: property.name,\n description: property.description,\n type: property.type,\n fieldConfigId: \"repeat\",\n disabled: Boolean(property.admin?.disabled || property.admin?.readOnly),\n of: getSimpleProperty(property.of as Property)\n };\n\n const result = { [path]: arrayParentProperty };\n // if (Array.isArray(value)) {\n // result = {\n // ...result,\n // ...value\n // .map((v, i) => getSimplifiedProperty(property.of, `${path}.${i}`, v))\n // .reduce((a, b) => ({ ...a, ...b }), {})\n // };\n // }\n //\n // const existingValuesCount = Array.isArray(value) ? value.length : 0;\n //\n // const newValuesCount = property.of && !isPropertyBuilder<any, any>(property.of) && (property.of as Property).type === \"map\" ? 1 : 3;\n // result = {\n // ...result,\n // // ...Array.from(Array(newValuesCount))\n // // .map((v, i) => getSimplifiedProperty(property.of, `${path}.${i + existingValuesCount}`, v))\n // // .reduce((a, b) => ({ ...a, ...b }), {})\n // }\n\n return result;\n } else if (property.oneOf) {\n\n const arrayParentProperty: InputProperty = {\n name: property.name,\n description: property.description,\n type: property.type,\n fieldConfigId: \"block\",\n disabled: Boolean(property.admin?.disabled || property.admin?.readOnly),\n oneOf: {\n typeField: property.oneOf.typeField,\n valueField: property.oneOf.valueField,\n properties: Object.entries(property.oneOf.properties)\n .map(([key, prop]) => ({ [key]: getSimpleProperty(prop) }))\n .reduce((a, b) => ({ ...a,\n...b }), {})\n }\n };\n\n if (!Array.isArray(value)) {\n return { [path]: arrayParentProperty };\n }\n\n return value.map((v, i) => {\n if (v == null) return {};\n const typeKey = property.oneOf!.typeField ?? \"type\";\n const oneOfType = v[typeKey];\n const valueKey = property.oneOf!.valueField ?? \"value\";\n const oneOfValue = v[valueKey];\n const childProperty = property.oneOf!.properties[oneOfType];\n if (childProperty === undefined) {\n console.error(`No property found for type ${oneOfType}`, property.oneOf!.properties);\n return {};\n }\n const simplifiedProperty = getSimplifiedProperty(childProperty, `${path}.${i}.${valueKey}`, oneOfValue);\n return {\n [`${path}.${i}.${typeKey}`]: oneOfType,\n ...simplifiedProperty\n };\n }).reduce((a, b) => ({ ...a,\n...b }), { [path]: arrayParentProperty });\n }\n } else if (property.type === \"map\") {\n if (property.properties) {\n const mapProperties: Record<string, InputProperty> = Object.entries(property.properties)\n .map(([key, childProperty]) => {\n const childValue = value && typeof value === \"object\" ? (value as Record<string, unknown>)[key] : undefined;\n return getSimplifiedProperty(childProperty, key, childValue);\n })\n .map(o => attachPathToKeys(o, path))\n .reduce((a, b) => ({ ...a,\n...b }), {});\n\n if (Object.keys(mapProperties).length === 0) return {};\n const mapParentProperty: InputProperty = {\n name: property.name,\n description: property.description,\n type: property.type,\n fieldConfigId: \"group\",\n disabled: Boolean(property.admin?.disabled || property.admin?.readOnly)\n };\n return {\n [path]: mapParentProperty,\n ...mapProperties\n } as Record<string, InputProperty>;\n }\n } else {\n const fieldId = getFieldId(property);\n if (!fieldId) {\n console.warn(`No fieldId found for property ${path} with type ${property.type}`);\n return {};\n }\n return {\n [path]: getSimpleProperty(property)\n };\n }\n return {};\n}\n\n// attach a path to every key in an object\nfunction attachPathToKeys(obj: Record<string, InputProperty>, path = \"\"): Record<string, InputProperty> {\n return Object.entries(obj)\n .map(([key, value]) => {\n const fullKey = path ? `${path}.${key}` : key;\n return { [fullKey]: value };\n })\n .reduce((a, b) => ({ ...a,\n...b }), {});\n}\n\nfunction getSimpleEnumValues(enumValues: EnumValues): string[] {\n if (Array.isArray(enumValues))\n return enumValues.map(v => String(v.id));\n if (typeof enumValues === \"object\")\n return Object.keys(enumValues);\n throw Error(\"getSimpleEnumValues: Invalid enumValues\");\n}\n","import { autocompleteStream } from \"../api\";\nimport { EditorAIController } from \"@rebasepro/admin\";\n\nexport function useEditorAIController({ getAuthToken }: { getAuthToken?: () => Promise<string> }): EditorAIController {\n const autocomplete = async (textBefore: string, textAfter: string, onUpdate: (delta: string) => void) => {\n if (!getAuthToken) {\n throw new Error(\"Firebase token is required\");\n }\n const firebaseToken = await getAuthToken();\n return autocompleteStream({\n firebaseToken,\n textBefore,\n textAfter,\n onUpdate\n });\n }\n\n return {\n autocomplete\n };\n}\n\n// async function * generateLoremIpsum(): AsyncGenerator<string> {\n// const loremIpsum = \"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.\\n# Heading\\n\\nLorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.\";\n//\n// const words = loremIpsum.split(\" \");\n//\n// for (const word of words) {\n// yield word;\n// await new Promise(resolve => setTimeout(resolve, 100));\n// }\n// }\n//\n// const generator = generateLoremIpsum();\n// for await (const word of generator) {\n//\n// }\n","import React, { PropsWithChildren, useCallback, useContext, useEffect, useMemo, useRef, useState } from \"react\";\n\nimport {\n DataEnhancementController,\n EnhancedDataResult,\n EnhanceParams,\n InputProperty\n} from \"../types/data_enhancement_controller\";\nimport {\n useAuthController,\n useCustomizationController,\n useSnackbarController\n} from \"@rebasepro/app\";\nimport { useUrlController } from \"@rebasepro/admin\";\nimport { DataDriver, Entity, CollectionConfig } from \"@rebasepro/types\";\nimport { PluginFormActionProps } from \"@rebasepro/admin-types\";\nimport { enhanceDataAPIStream, fetchEntityPromptSuggestion } from \"../api\";\nimport { getAppendableSuggestion } from \"../utils/suggestions\";\nimport { getSimplifiedProperties } from \"../utils/properties\";\nimport { useEditorAIController } from \"../editor/useEditorAIController\";\nimport { getValueInPath } from \"@rebasepro/utils\";\n\nconst DataEnhancementControllerContext = React.createContext<DataEnhancementController>(null! as DataEnhancementController);\n\ntype DataEnhancementControllerProviderProps = {\n\n apiKey: string;\n\n getConfigForPath?: (props: {\n path: string,\n collection: CollectionConfig\n }) => boolean;\n\n host?: string;\n}\n\nexport const useDataEnhancementController = (): DataEnhancementController => useContext(DataEnhancementControllerContext);\n\nfunction getPropertyFromKey(properties: Record<string, InputProperty>, propertyKey: string) {\n if (propertyKey in properties) {\n return properties[propertyKey];\n } else {\n //split the property key\n const split = propertyKey.split(\".\");\n if (split.length === 1) {\n return undefined;\n }\n const parentKey = split.slice(0, split.length - 1).join(\".\");\n return getPropertyFromKey(properties, parentKey);\n\n }\n}\n\nexport function DataEnhancementControllerProvider({\n apiKey,\n getConfigForPath,\n children,\n host,\n path,\n collection,\n formContext\n}: PropsWithChildren<DataEnhancementControllerProviderProps & PluginFormActionProps>) {\n\n const [enabled, setEnabled] = useState(false);\n const [suggestions, setSuggestions] = useState<Record<string, string | number>>({});\n const [loadingSuggestions, setLoadingSuggestions] = useState<string[]>([]);\n\n const enhancingInProgress = useRef(false);\n\n const authController = useAuthController();\n const snackbarController = useSnackbarController();\n\n\n const properties = useMemo(() => getSimplifiedProperties(collection.properties, formContext?.values ?? {}), [formContext?.values]);\n // const preEnhanceValuesRef = React.useRef(formContext?.values ?? {});\n const valuesRef = React.useRef(formContext?.values ?? {});\n useEffect(() => {\n if (!enhancingInProgress.current)\n valuesRef.current = formContext?.values ?? {};\n }, [formContext?.values]);\n\n const allowReferenceDataSelection = false;\n\n const updateConfig = useCallback(async () => {\n if (!getConfigForPath) return;\n const config = getConfigForPath({\n path,\n collection\n });\n if (config) {\n setEnabled(true);\n }\n }, [collection, getConfigForPath, path]);\n\n useEffect(() => {\n if (!getConfigForPath) {\n setEnabled(true);\n } else {\n updateConfig();\n }\n\n }, [getConfigForPath, updateConfig]);\n\n\n const urlController = useUrlController();\n\n const clearSuggestion = useCallback((propertyKey: string) => {\n setSuggestions((prev) => {\n //remove propertyKey from prev\n const {\n [propertyKey]: _,\n ...rest\n } = prev;\n return rest;\n });\n }, []);\n\n const appendValueDelta = useCallback((propertyKey: string, delta: string) => {\n\n const property = getPropertyFromKey(properties, propertyKey);\n if (delta === null || property?.disabled) {\n return;\n }\n\n // clearSuggestion(propertyKey);\n const value = getValueInPath(valuesRef.current, propertyKey);\n\n const currentValue = value ? (value as string) + \"\" : \"\";\n const updatedValue = currentValue + delta;\n // if (currentValue.length === 0) updatedValue = updatedValue.trimStart();\n valuesRef.current = {\n ...valuesRef.current,\n [propertyKey]: updatedValue\n };\n formContext?.setFieldValue(propertyKey, updatedValue, false);\n setSuggestions(prev => ({\n ...prev,\n [propertyKey]: (prev[propertyKey] ?? \"\") + delta\n }));\n }, [properties, formContext]);\n\n const updateSuggestedValues = useCallback((currentValues: object, updatedValues: Record<string, string | number>, replaceValues: boolean) => {\n\n setLoadingSuggestions((prev) => {\n return prev.filter(p => !Object.keys(updatedValues).includes(p));\n });\n\n Object.entries(updatedValues).forEach(([propertyKey, suggestion]) => {\n\n const value = getValueInPath(currentValues, propertyKey);\n const property = getPropertyFromKey(properties, propertyKey);\n\n if (!property || suggestion === null || property?.disabled) {\n return;\n }\n\n if (typeof suggestion === \"number\") {\n formContext?.setFieldValue(propertyKey, suggestion);\n return;\n }\n\n if (replaceValues) {\n formContext?.setFieldValue(propertyKey, suggestion);\n return;\n }\n\n const appendableValue = getAppendableSuggestion(suggestion, value);\n\n const currentValue = value ? (value as string) + \"\" : \"\";\n if (appendableValue) {\n formContext?.setFieldValue(propertyKey, suggestion);\n } else {\n const multiline = property?.fieldConfigId === \"multiline\" || property?.fieldConfigId === \"markdown\";\n const trimmedValue = currentValue.trimEnd();\n if (multiline && (trimmedValue.endsWith(\".\") || trimmedValue.endsWith(\"?\") || trimmedValue.endsWith(\"!\") || trimmedValue.endsWith(\":\"))) {\n formContext?.setFieldValue(propertyKey, trimmedValue + \"\\n\\n\" + (suggestion as string).trimStart());\n } else {\n formContext?.setFieldValue(propertyKey, trimmedValue + (trimmedValue.length > 0 ? \" \" : \"\") + (suggestion as string));\n }\n }\n });\n\n setSuggestions(prev => ({\n ...prev,\n ...Object.keys(updatedValues)\n .reduce((acc, key) => {\n const value = getValueInPath(formContext?.values, key);\n const suggestion = updatedValues[key];\n return {\n ...acc,\n [key]: getAppendableSuggestion(suggestion, value) ?? suggestion\n };\n }, {})\n }));\n }, [properties, formContext]);\n\n const displayNeededSubscriptionSnackbar = useCallback((projectId: unknown) => {\n snackbarController.open({\n type: \"warning\",\n message: \"A valid subscription is needed in order to use this function.\",\n autoHideDuration: 4000\n });\n }, [snackbarController]);\n\n const editorAIController = useEditorAIController({ getAuthToken: authController.getAuthToken });\n\n const clearAllSuggestions = useCallback(() => {\n setSuggestions({});\n }, []);\n\n const enhance = useCallback(async (props: EnhanceParams<Record<string, unknown>>): Promise<EnhancedDataResult | null> => {\n\n if (!authController.user) {\n snackbarController.open({\n type: \"warning\",\n message: \"You need to be logged in to enhance data\"\n });\n return Promise.reject(new Error(\"Not logged in\"));\n }\n\n const resolvedPath = urlController.resolveDatabasePathsFrom(path);\n const firebaseToken = await authController.getAuthToken();\n\n if (props.propertyKey) {\n clearSuggestion(props.propertyKey)\n } else {\n clearAllSuggestions();\n }\n\n setLoadingSuggestions((prev) => [...prev, ...(props.propertyKey ? [props.propertyKey] : Object.keys(properties))]);\n enhancingInProgress.current = true;\n\n const currentValues = valuesRef.current ?? {};\n\n return new Promise((resolve, reject) => {\n function onError(e: unknown) {\n setLoadingSuggestions([]);\n const err = e instanceof Error ? e : typeof e === \"object\" && e !== null ? e : new Error(String(e));\n const errorObj = err as Record<string, unknown>;\n if (errorObj.code === \"payment-required\") {\n const data = errorObj.data as Record<string, unknown> | undefined;\n const projectId = data?.projectId;\n displayNeededSubscriptionSnackbar(projectId);\n } else {\n console.error(\"Enhance error\", e);\n }\n reject(e);\n enhancingInProgress.current = false;\n }\n\n try {\n enhanceDataAPIStream({\n ...props,\n host,\n apiKey,\n properties,\n path: resolvedPath,\n entityName: collection.singularName ?? collection.name,\n entityDescription: collection.description,\n\n firebaseToken,\n onUpdate: (suggestions) => {\n console.debug(\"de onUpdate\", suggestions);\n updateSuggestedValues(currentValues, suggestions, props.replaceValues ?? false);\n },\n onUpdateDelta: (propertyKey: string, partialValue: string) => {\n // console.debug(\"de delta\", propertyKey, partialValue);\n appendValueDelta(propertyKey, partialValue);\n },\n onError,\n onEnd: (result) => {\n console.debug(\"de onEnd\", result);\n if (result.errors) {\n result.errors.forEach((error) => {\n snackbarController.open({\n type: \"warning\",\n message: error\n })\n });\n }\n if (Object.keys(result.suggestions).length === 0) {\n snackbarController.open({\n type: \"info\",\n autoHideDuration: 1800,\n message: \"No fields were updated\"\n })\n }\n setLoadingSuggestions([]);\n resolve(result);\n enhancingInProgress.current = false;\n }\n }).catch(onError);\n } catch (e: unknown) {\n onError(e);\n }\n });\n }, [\n authController, urlController, path, clearSuggestion, clearAllSuggestions,\n properties, host, apiKey, collection, updateSuggestedValues, appendValueDelta, displayNeededSubscriptionSnackbar, snackbarController\n ]);\n\n const getSamplePrompts = useCallback(async (entityName: string, input?: string) => {\n const firebaseToken = await authController.getAuthToken()\n return fetchEntityPromptSuggestion({\n host,\n entityName,\n firebaseToken,\n apiKey,\n input\n });\n }, [apiKey, authController.getAuthToken, host]);\n\n const dataEnhancementController: DataEnhancementController = useMemo(() => ({\n enabled,\n suggestions,\n clearSuggestion,\n enhance,\n allowReferenceDataSelection,\n clearAllSuggestions,\n getSamplePrompts,\n loadingSuggestions,\n editorAIController\n }), [\n enabled,\n suggestions,\n clearSuggestion,\n enhance,\n allowReferenceDataSelection,\n clearAllSuggestions,\n getSamplePrompts,\n loadingSuggestions,\n editorAIController\n ]);\n\n return (\n <DataEnhancementControllerContext.Provider\n value={dataEnhancementController}>\n {children}\n </DataEnhancementControllerContext.Provider>\n );\n}\n\n\n","\nimport React, { useCallback, useDeferredValue, useEffect, useRef } from \"react\";\n\nimport {\n Button,\n CircularProgress,\n cls,\n focusedDisabled,\n IconButton,\n iconSize,\n Menu,\n MenuItem,\n SendIcon,\n Separator,\n TextareaAutosize,\n XIcon\n} from \"@rebasepro/ui\";\nimport {\n AIIcon,\n useLargeLayout\n} from \"@rebasepro/app\";\nimport { EntityStatus, Properties, Property } from \"@rebasepro/types\";\nimport { PluginFormActionProps } from \"@rebasepro/admin-types\";\nimport { isPropertyBuilder, stripCollectionPath } from \"@rebasepro/common\";\nimport { useDataEnhancementController } from \"./DataEnhancementControllerProvider\";\nimport { SamplePrompt } from \"../types/data_enhancement_controller\";\n\nexport function FormEnhanceAction({\n entityId,\n path,\n status,\n collection,\n formContext,\n openEntityMode\n}: PluginFormActionProps) {\n\n const largeLayout = useLargeLayout();\n\n const storageKey = createLocalStorageKey(path, status);\n\n const [loading, setLoading] = React.useState(false);\n const dataEnhancementController = useDataEnhancementController();\n\n const [samplePrompts, setSamplePrompts] = React.useState<SamplePrompt[] | undefined>(undefined);\n const [instructions, setInstructions] = React.useState<string>(\"\");\n\n const getSamplePrompts = dataEnhancementController?.getSamplePrompts;\n\n const loadingPrompts = useRef(false);\n const updateSuggestedPrompts = useCallback(async function updateSuggestedPrompts(instructions?: string) {\n if (!getSamplePrompts) return;\n if (loadingPrompts.current) return;\n loadingPrompts.current = true;\n const prompts = status === \"new\"\n ? (await getSamplePrompts(collection.singularName ?? collection.name, instructions)).prompts\n : getPromptsForExistingEntities(collection.properties);\n\n const recentPromptsFromStorage = getRecentPromptsFromStorage(storageKey);\n const recentPrompts = recentPromptsFromStorage.map(prompt => prompt.prompt);\n setSamplePrompts([...recentPromptsFromStorage, ...prompts.filter(p => !recentPrompts.includes(p.prompt))].slice(0, 5));\n loadingPrompts.current = false;\n },\n [collection.name, collection.singularName, getSamplePrompts, status]);\n\n const deferredValues = useDeferredValue(formContext?.values);\n // const enoughData = countStringCharacters(deferredValues, collection.properties) > 20;\n\n useEffect(() => {\n if (!dataEnhancementController) return;\n if (!samplePrompts) {\n setSamplePrompts(getRecentPromptsFromStorage(storageKey));\n updateSuggestedPrompts().then();\n }\n }, [dataEnhancementController, samplePrompts, storageKey, updateSuggestedPrompts, instructions, status]);\n\n useEffect(() => {\n if (!dataEnhancementController) return;\n updateSuggestedPrompts().then();\n }, [dataEnhancementController, status]);\n\n const enhance = (prompt?: string) => {\n if (!dataEnhancementController || !formContext?.values) return;\n setLoading(true);\n if (prompt) {\n addRecentPrompt(storageKey, prompt);\n setSamplePrompts([{\n prompt,\n type: \"recent\"\n }, ...(samplePrompts ?? []).slice(0, 5)]);\n }\n return dataEnhancementController.enhance({\n entityId,\n values: formContext!.values,\n instructions: prompt,\n replaceValues: true\n }).finally(() => {\n setLoading(false);\n });\n };\n\n if (!dataEnhancementController?.enabled)\n return null;\n\n const suggestions = dataEnhancementController.suggestions;\n const hasSuggestions = Object.values(suggestions).filter(Boolean).length > 0;\n\n const disabledSuggestionActions = !hasSuggestions;\n const promptSuggestionsEnabled = (samplePrompts ?? []).length > 0 && instructions.length === 0;\n\n // const noIdSet = !formContext?.entityId;\n\n function submit() {\n enhance(instructions);\n }\n\n return (\n <Menu\n align={\"end\"}\n sideOffset={8}\n className={\"max-w-[100vw]\"}\n trigger={<Button variant={\"filled\"}\n color={\"neutral\"}\n fullWidth={largeLayout && openEntityMode === \"full_screen\"}\n size={\"small\"}\n disabled={loading}>\n {!loading && <AIIcon size={\"small\"}/>}\n {loading && <CircularProgress size={\"small\"}/>}\n Autofill\n </Button>}>\n\n <MenuItem className={\"py-4\"}\n onClick={() => {\n enhance();\n }}>\n <AIIcon size={\"small\"}/>\n Autofill based on the current content\n </MenuItem>\n\n <Separator orientation={\"horizontal\"} className={\"mt-2\"}/>\n\n {samplePrompts?.map((samplePrompt, index) => {\n return <MenuItem\n key={index + \"_\" + samplePrompt.prompt}\n onClick={() => {\n setInstructions(samplePrompt.prompt);\n enhance(samplePrompt.prompt);\n }}\n >\n <div className={\"pl-9 grow text-text-secondary dark:text-text-secondary-dark\"}>\n {samplePrompt.prompt}\n </div>\n\n {samplePrompt.type === \"recent\" && <IconButton\n onClick={(e) => {\n e.preventDefault();\n e.stopPropagation();\n removeRecentPrompt(storageKey, samplePrompt.prompt);\n setSamplePrompts((samplePrompts ?? []).filter(p => p.prompt !== samplePrompt.prompt));\n }}\n size={\"smallest\"}\n >\n <XIcon size={iconSize.smallest}/>\n </IconButton>\n }\n </MenuItem>;\n })}\n\n <Separator orientation={\"horizontal\"}/>\n\n <div\n className={cls(\n \"my-2 w-[500px] max-w-full flex items-start text-surface-700 dark:text-surface-200\"\n )}>\n\n <TextareaAutosize\n className={cls(\"p-4 rounded-lg resize-none bg-surface-100 dark:bg-surface-950 mx-2 w-full grow outline-hidden max-h-[300px] overflow-auto\", focusedDisabled)}\n value={instructions}\n autoFocus={status === \"new\"}\n disabled={loading}\n onFocus={(event) => {\n event.stopPropagation();\n }}\n placeholder={\"...or provide instructions\"}\n onKeyDown={(e) => {\n e.stopPropagation();\n if (e.key === \"Enter\" && !e.shiftKey) {\n e.preventDefault();\n submit();\n }\n\n }}\n onChange={(e) => {\n setInstructions(e.target.value);\n }}\n />\n\n <IconButton\n size={\"small\"}\n onClick={() => {\n setInstructions(\"\");\n }}\n color={!instructions ? \"primary\" : undefined}\n disabled={loading || !instructions}>\n <XIcon size={iconSize.small}/>\n </IconButton>\n\n <IconButton\n onClick={() => enhance(instructions)}\n size={\"small\"}\n color={!instructions ? \"primary\" : undefined}\n disabled={loading || !instructions}>\n {loading &&\n <CircularProgress size={\"smallest\"}/>}\n {!loading &&\n <SendIcon color={\"primary\"}/>}\n </IconButton>\n\n </div>\n\n </Menu>\n );\n}\n\nfunction getPromptsForExistingEntities(properties: Properties): SamplePrompt[] {\n\n const multilineProperties = Object.values(properties).filter((p: Property) => {\n if (isPropertyBuilder(p)) {\n return false;\n }\n return p.type === \"string\" && (p.admin?.markdown || p.admin?.multiline);\n });\n\n const multilinePrompt: Property | undefined = multilineProperties.length > 0\n ? multilineProperties[Math.floor(Math.random() * multilineProperties.length)] as Property\n : undefined;\n\n const prompts = [\n \"Fill the missing fields\",\n \"Translate the missing content\"\n ];\n if (multilinePrompt) {\n prompts.push(`Add 2 paragraphs to '${multilinePrompt.name}'`);\n }\n return prompts.map(p => ({\n prompt: p,\n type: \"sample\"\n }));\n}\n\nconst createLocalStorageKey = (path: string, status: EntityStatus) => {\n const statusString = status === \"new\" ? \"new\" : \"existing\";\n return `data_enhancement::${statusString}::${stripCollectionPath(path)}`;\n};\n\nconst getRecentPromptsFromStorage = (storageKey: string): SamplePrompt[] => {\n const item = localStorage.getItem(storageKey);\n return item ? JSON.parse(item).map((e: string) => ({\n prompt: e,\n type: \"recent\"\n })) : [];\n};\n\nconst addRecentPrompt = (storageKey: string, prompt: string) => {\n if (!prompt || prompt.trim().length === 0) {\n return;\n }\n const recentPrompts = getRecentPromptsFromStorage(storageKey);\n localStorage.setItem(storageKey, JSON.stringify([prompt, ...recentPrompts\n .map(e => e.prompt)\n .filter(e => e !== prompt)\n .slice(0, 5)]));\n};\n\nconst removeRecentPrompt = (storageKey: string, prompt: string) => {\n localStorage.setItem(storageKey, JSON.stringify(getRecentPromptsFromStorage(storageKey)\n .map(e => e.prompt)\n .filter(e => e !== prompt)));\n};\n","import React from \"react\";\n\nimport { CollectionConfig, User } from \"@rebasepro/types\";\nimport { RebasePlugin } from \"@rebasepro/admin-types\";\nimport { DataEnhancementControllerProvider } from \"./components/DataEnhancementControllerProvider\";\nimport { FormEnhanceAction } from \"./components/FormEnhanceAction\";\n\nconst DEFAULT_API_KEY = \"fcms-U9jdDii0xXWSDC34asfrf54lbkFJBfKfRWcEDEwdc4V5wDWEDF\";\n\nexport interface DataEnhancementPluginProps {\n\n apiKey?: string;\n\n /**\n * Use this function to determine if the data enhancement plugin should be enabled for a given path.\n * If this function is not provided, the plugin will be enabled for all paths.\n * If the function returns false, the plugin will be disabled for the given path.\n * You can also return a configuration object to override the default configuration.\n *\n * @param path\n * @param collection\n */\n getConfigForPath?: (props: {\n path: string,\n collection: CollectionConfig,\n user: User | null\n }) => boolean;\n\n /**\n * Host to use for the data enhancement API.\n * This prop is only use in development mode.\n */\n host?: string;\n}\n\n/**\n * Use this hook to initialise the data enhancement plugin.\n * This is likely the only hook you will need to use.\n * @param props\n */\nexport function useDataEnhancementPlugin(props?: DataEnhancementPluginProps): RebasePlugin {\n\n const apiKey = props?.apiKey ?? DEFAULT_API_KEY;\n const getConfigForPath = props?.getConfigForPath;\n\n return React.useMemo(() => ({\n key: \"data_enhancement\",\n slots: [\n {\n slot: \"form.actions\",\n Component: FormEnhanceAction,\n order: 40\n }\n ],\n providers: [\n {\n scope: \"form\" as const,\n Component: DataEnhancementControllerProvider as React.ComponentType<any>,\n props: {\n apiKey,\n getConfigForPath,\n host: props?.host\n }\n }\n ]\n }), [apiKey, getConfigForPath, props?.host]);\n}\n"],"mappings":";;;;;;;;AAAA,SAAgB,oBAAsC,QAAW,OAAO,IAAY;CAChF,IAAI,CAAC,QAAQ,OAAO,CAAC;CACrB,OAAO,OAAO,QAAQ,MAAM,EAAE,SAAS,CAAC,KAAK,WAAW;EACpD,MAAM,cAAc,OAAO,GAAG,KAAK,GAAG,QAAQ;EAC9C,IAAI,OAAO,UAAU,UACjB,OAAO,oBAAoB,OAAO,WAAW;OAE7C,OAAO,GAAG,cAAc,MAAM;CAEtC,CAAC,EAAE,QAAQ,KAAK,UAAU;EAAE,GAAG;EACnC,GAAG;CAAK,IAAI,CAAC,CAAC;AACd;;;ACCA,IAAM,iBAAiB;AAEvB,eAAsB,qBAAwD,OAkB3E;CAEC,MAAM,aAAa,oBAAoB,MAAM,MAAM;CAEnD,MAAM,aAAa,MAAM;CAOzB,MAAM,UAAkC;EACpC,aAAA;GALA,UAAU,MAAM;GAChB,QAAQ;EAIR;EACA;EACA,YAAY,MAAM;EAClB,mBAAmB,MAAM;EACzB,aAAa,MAAM;EACnB,sBAAsB,MAAM;EAC5B,cAAc,MAAM;CACxB;CAEA,QAAQ,MAAM,wBAAwB,OAAO;CAE7C,OAAO,OAAO,MAAM,QAAQ,kBAAkB,yBAC1C;EAEI,QAAQ;EACR,SAAS;GACL,gBAAgB;GAChB,eAAe,SAAS,MAAM;GAC9B,gBAAgB,SAAS,MAAM;EAEnC;EACA,MAAM,KAAK,UAAU,OAAO;CAChC,CAAC,EACA,KAAK,OAAO,QAAQ;EACjB,IAAI,CAAC,IAAI,IAAI;GACT,QAAQ,MAAM,8BAA8B,GAAG;GAC/C,MAAM,MAAM,IAAI,KAAK;EACzB;EACA,MAAM,SAAS,IAAI,MAAM,UAAU;EACnC,IAAI,CAAC,QACD,MAAM,IAAI,MAAM,WAAW;EAG/B,WAAW,MAAM,SAAS,WAAW,MAAM,GAAG;GAC1C,MAAM,MAAM,IAAI,YAAY,EAAE,OAAO,KAAK;GAC1C,IAAI;IACA,IAAI,MAAM,MAAM,EAAE,SAAS,MAAM;KAC7B,IAAI,KAAK,EAAE,SAAS,GAAG;MACnB,MAAM,OAAO,KAAK,MAAM,EAAE,KAAK,CAAC;MAChC,IAAI,KAAK,SAAS,oBACd,MAAM,cAAc,KAAK,KAAK,aAAa,KAAK,KAAK,YAAY;WAChE,IAAI,KAAK,SAAS,cACnB,MAAM,SAAS,KAAK,IAAI;WACvB,IAAI,KAAK,SAAS,UACnB,MAAM,MAAM,KAAK,IAAI;KAC7B;IACJ,CAAC;GACL,SAAS,GAAY;IACjB,QAAQ,MAAM,OAAO,GAAG;IACxB,QAAQ,MAAM,wBAAwB,CAAC;IACvC,MAAM,QAAQ,aAAa,QAAQ,IAAI,IAAI,MAAM,OAAO,CAAC,CAAC,CAAC;GAC/D;EACJ;CAEJ,CAAC;AAET;AAEA,SAAS,WAAW,QAAqC;CACrD,OAAO,EACH,QAAQ,OAAO,iBAAiB;EAC5B,IAAI,aAAa,MAAM,OAAO,KAAK;EACnC,OAAO,CAAC,WAAW,MAAM;GACrB,MAAM,WAAW;GACjB,aAAa,MAAM,OAAO,KAAK;EACnC;CACJ,EACJ;AACJ;AAEA,eAAsB,4BAA8C,OAMnC;CAE7B,OAAO,OAAO,MAAM,QAAQ,kBAAkB,8BAC1C;EAEI,QAAQ;EACR,SAAS;GACL,gBAAgB;GAChB,eAAe,SAAS,MAAM;GAC9B,gBAAgB,SAAS,MAAM;EACnC;EACA,MAAM,KAAK,UAAU;GACjB,YAAY,MAAM;GAClB,OAAO,MAAM,SAAS;EAC1B,CAAC;CACL,CAAC,EACA,KAAK,OAAO,QAAQ;EACjB,MAAM,OAAO,MAAM,IAAI,KAAK;EAC5B,IAAI,CAAC,IAAI,IAAI;GACT,QAAQ,MAAM,+BAA+B,IAAI;GACjD,MAAM,MAAM,KAAK,OAAO;EAC5B;EACA,OAAO,EACH,SAAS,KAAK,KAAK,QAAQ,KAAK,OAAe;GAC3C,QAAQ;GACR,MAAM;EACV,EAAE,EACN;CACJ,CAAC;AAET;AAEA,eAAsB,mBAAmB,OAMtC;CAEC,IAAI,SAAS;CACb,OAAO,OAAO,MAAM,QAAQ,kBAAkB,uBAC1C;EAEI,QAAQ;EACR,SAAS;GACL,gBAAgB;GAChB,eAAe,SAAS,MAAM;EAElC;EACA,MAAM,KAAK,UAAU;GACjB,YAAY,MAAM;GAClB,WAAW,MAAM;EACrB,CAAC;CACL,CAAC,EACA,KAAK,OAAO,QAAQ;EACjB,IAAI,CAAC,IAAI,IAAI;GACT,QAAQ,MAAM,8BAA8B,GAAG;GAC/C,MAAM,MAAM,IAAI,KAAK;EACzB;EACA,MAAM,SAAS,IAAI,MAAM,UAAU;EACnC,IAAI,CAAC,QACD,MAAM,IAAI,MAAM,WAAW;EAG/B,WAAW,MAAM,SAAS,WAAW,MAAM,GAAG;GAC1C,MAAM,MAAM,IAAI,YAAY,EAAE,OAAO,KAAK;GAC1C,UAAU;GACV,QAAQ,MAAM,wBAAwB,GAAG;GACzC,MAAM,SAAS,GAAG;EACtB;CAEJ,CAAC,EAAE,WAAW;EACV,QAAQ,MAAM,wBAAwB,MAAM;EAC5C,OAAO;CACX,CAAC;AAET;;;ACrMA,SAAgB,wBAAwB,YAAyC,OAAoC;CACjH,MAAM,0BAA0B,OAAO,eAAe,YAAY,OAAO,UAAU,YAAY,WAAW,YAAY,EAAE,KAAK,EAAE,WAAW,MAAM,YAAY,EAAE,KAAK,CAAC;CACpK,OAAQ,OAAO,UAAU,YAAY,0BAC/B,WAAW,UAAU,WAAW,YAAY,EAAE,KAAK,EAAE,QAAQ,MAAM,YAAY,EAAE,KAAK,CAAC,IAAI,MAAM,KAAK,EAAE,MAAM,IAC9G,KAAA;AACV;;;ACCA,SAAgB,wBAAuD,YAAwB,QAAW,OAAO,IAAmC;CAChJ,IAAI,CAAC,YAAY,OAAO,CAAC;CACzB,OAAO,OAAO,QAAQ,UAAU,EAC3B,KAAK,CAAC,KAAK,cAAc;EACtB,IAAI,kBAAkB,QAAQ,GAAG,OAAO,CAAC;EACzC,MAAM,UAAU,OAAO,GAAG,KAAK,GAAG,QAAQ;EAE1C,OAAO,sBAAsB,UAAU,SADnB,eAAe,QAAQ,OACK,CAAW;CAC/D,CAAC,EACA,QAAQ,GAAG,OAAO;EAAE,GAAG;EAChC,GAAG;CAAE,IAAI,CAAC,CAAC;AACX;AAEA,SAAS,kBAAkB,UAAmC;CAC1D,MAAM,UAAU,WAAW,QAAQ;CACnC,IAAI,CAAC,SAAS;EACV,QAAQ,MAAM,iCAAiC,QAAQ;EACvD,MAAM,IAAI,MAAM,oBAAoB;CACxC;CACA,OAAO;EACH,MAAM,SAAS;EACf,aAAa,SAAS;EACtB,MAAM,SAAS;EACf,eAAe;EACf,MAAM,UAAU,YAAY,SAAS,OAC/B,oBAAoB,SAAS,IAAI,IACjC,KAAA;EACN,UAAU,QAAQ,SAAS,OAAO,YAAY,SAAS,OAAO,QAAQ;CAC1E;AACJ;AAEA,SAAS,sBAAsB,UAAoB,MAAc,OAAgD;CAC7G,IAAI,kBAAkB,QAAQ,GAAG,OAAO,CAAC;CACzC,IAAI,SAAS,SAAS;MAEd,SAAS,MAAM,CAAC,MAAM,QAAQ,SAAS,EAAE,KAAK,CAAC,kBAAkB,SAAS,EAAE,GAAG;GAC/E,MAAM,sBAAqC;IACvC,MAAM,SAAS;IACf,aAAa,SAAS;IACtB,MAAM,SAAS;IACf,eAAe;IACf,UAAU,QAAQ,SAAS,OAAO,YAAY,SAAS,OAAO,QAAQ;IACtE,IAAI,kBAAkB,SAAS,EAAc;GACjD;GAsBA,OAAO,GApBW,OAAO,oBAoBlB;EACX,OAAO,IAAI,SAAS,OAAO;GAEvB,MAAM,sBAAqC;IACvC,MAAM,SAAS;IACf,aAAa,SAAS;IACtB,MAAM,SAAS;IACf,eAAe;IACf,UAAU,QAAQ,SAAS,OAAO,YAAY,SAAS,OAAO,QAAQ;IACtE,OAAO;KACH,WAAW,SAAS,MAAM;KAC1B,YAAY,SAAS,MAAM;KAC3B,YAAY,OAAO,QAAQ,SAAS,MAAM,UAAU,EAC/C,KAAK,CAAC,KAAK,WAAW,GAAG,MAAM,kBAAkB,IAAI,EAAE,EAAE,EACzD,QAAQ,GAAG,OAAO;MAAE,GAAG;MAChD,GAAG;KAAE,IAAI,CAAC,CAAC;IACK;GACJ;GAEA,IAAI,CAAC,MAAM,QAAQ,KAAK,GACpB,OAAO,GAAG,OAAO,oBAAoB;GAGzC,OAAO,MAAM,KAAK,GAAG,MAAM;IACvB,IAAI,KAAK,MAAM,OAAO,CAAC;IACvB,MAAM,UAAU,SAAS,MAAO,aAAa;IAC7C,MAAM,YAAY,EAAE;IACpB,MAAM,WAAW,SAAS,MAAO,cAAc;IAC/C,MAAM,aAAa,EAAE;IACrB,MAAM,gBAAgB,SAAS,MAAO,WAAW;IACjD,IAAI,kBAAkB,KAAA,GAAW;KAC7B,QAAQ,MAAM,8BAA8B,aAAa,SAAS,MAAO,UAAU;KACnF,OAAO,CAAC;IACZ;IACA,MAAM,qBAAqB,sBAAsB,eAAe,GAAG,KAAK,GAAG,EAAE,GAAG,YAAY,UAAU;IACtG,OAAO;MACF,GAAG,KAAK,GAAG,EAAE,GAAG,YAAY;KAC7B,GAAG;IACP;GACJ,CAAC,EAAE,QAAQ,GAAG,OAAO;IAAE,GAAG;IACtC,GAAG;GAAE,IAAI,GAAG,OAAO,oBAAoB,CAAC;EAChC;QACG,IAAI,SAAS,SAAS;MACrB,SAAS,YAAY;GACrB,MAAM,gBAA+C,OAAO,QAAQ,SAAS,UAAU,EAClF,KAAK,CAAC,KAAK,mBAAmB;IAE3B,OAAO,sBAAsB,eAAe,KADzB,SAAS,OAAO,UAAU,WAAY,MAAkC,OAAO,KAAA,CACvC;GAC/D,CAAC,EACA,KAAI,MAAK,iBAAiB,GAAG,IAAI,CAAC,EAClC,QAAQ,GAAG,OAAO;IAAE,GAAG;IACxC,GAAG;GAAE,IAAI,CAAC,CAAC;GAEC,IAAI,OAAO,KAAK,aAAa,EAAE,WAAW,GAAG,OAAO,CAAC;GACrD,MAAM,oBAAmC;IACrC,MAAM,SAAS;IACf,aAAa,SAAS;IACtB,MAAM,SAAS;IACf,eAAe;IACf,UAAU,QAAQ,SAAS,OAAO,YAAY,SAAS,OAAO,QAAQ;GAC1E;GACA,OAAO;KACF,OAAO;IACR,GAAG;GACP;EACJ;QACG;EAEH,IAAI,CADY,WAAW,QACtB,GAAS;GACV,QAAQ,KAAK,iCAAiC,KAAK,aAAa,SAAS,MAAM;GAC/E,OAAO,CAAC;EACZ;EACA,OAAO,GACF,OAAO,kBAAkB,QAAQ,EACtC;CACJ;CACA,OAAO,CAAC;AACZ;AAGA,SAAS,iBAAiB,KAAoC,OAAO,IAAmC;CACpG,OAAO,OAAO,QAAQ,GAAG,EACpB,KAAK,CAAC,KAAK,WAAW;EAEnB,OAAO,GADS,OAAO,GAAG,KAAK,GAAG,QAAQ,MACtB,MAAM;CAC9B,CAAC,EACA,QAAQ,GAAG,OAAO;EAAE,GAAG;EAChC,GAAG;CAAE,IAAI,CAAC,CAAC;AACX;AAEA,SAAS,oBAAoB,YAAkC;CAC3D,IAAI,MAAM,QAAQ,UAAU,GACxB,OAAO,WAAW,KAAI,MAAK,OAAO,EAAE,EAAE,CAAC;CAC3C,IAAI,OAAO,eAAe,UACtB,OAAO,OAAO,KAAK,UAAU;CACjC,MAAM,MAAM,yCAAyC;AACzD;;;ACpKA,SAAgB,sBAAsB,EAAE,gBAA8E;CAClH,MAAM,eAAe,OAAO,YAAoB,WAAmB,aAAsC;EACrG,IAAI,CAAC,cACD,MAAM,IAAI,MAAM,4BAA4B;EAGhD,OAAO,mBAAmB;GACtB,eAAA,MAFwB,aAAa;GAGrC;GACA;GACA;EACJ,CAAC;CACL;CAEA,OAAO,EACH,aACJ;AACJ;;;ACEA,IAAM,mCAAmC,MAAM,cAAyC,IAAkC;AAc1H,IAAa,qCAAgE,WAAW,gCAAgC;AAExH,SAAS,mBAAmB,YAA2C,aAAqB;CACxF,IAAI,eAAe,YACf,OAAO,WAAW;MACf;EAEH,MAAM,QAAQ,YAAY,MAAM,GAAG;EACnC,IAAI,MAAM,WAAW,GACjB;EAGJ,OAAO,mBAAmB,YADR,MAAM,MAAM,GAAG,MAAM,SAAS,CAAC,EAAE,KAAK,GAClB,CAAS;CAEnD;AACJ;AAEA,SAAgB,kCAAkC,EAC9C,QACA,kBACA,UACA,MACA,MACA,YACA,eACkF;CAElF,MAAM,CAAC,SAAS,cAAc,SAAS,KAAK;CAC5C,MAAM,CAAC,aAAa,kBAAkB,SAA0C,CAAC,CAAC;CAClF,MAAM,CAAC,oBAAoB,yBAAyB,SAAmB,CAAC,CAAC;CAEzE,MAAM,sBAAsB,OAAO,KAAK;CAExC,MAAM,iBAAiB,kBAAkB;CACzC,MAAM,qBAAqB,sBAAsB;CAGjD,MAAM,aAAa,cAAc,wBAAwB,WAAW,YAAY,aAAa,UAAU,CAAC,CAAC,GAAG,CAAC,aAAa,MAAM,CAAC;CAEjI,MAAM,YAAY,MAAM,OAAO,aAAa,UAAU,CAAC,CAAC;CACxD,gBAAgB;EACZ,IAAI,CAAC,oBAAoB,SACrB,UAAU,UAAU,aAAa,UAAU,CAAC;CACpD,GAAG,CAAC,aAAa,MAAM,CAAC;CAExB,MAAM,8BAA8B;CAEpC,MAAM,eAAe,YAAY,YAAY;EACzC,IAAI,CAAC,kBAAkB;EAKvB,IAJe,iBAAiB;GAC5B;GACA;EACJ,CACI,GACA,WAAW,IAAI;CAEvB,GAAG;EAAC;EAAY;EAAkB;CAAI,CAAC;CAEvC,gBAAgB;EACZ,IAAI,CAAC,kBACD,WAAW,IAAI;OAEf,aAAa;CAGrB,GAAG,CAAC,kBAAkB,YAAY,CAAC;CAGnC,MAAM,gBAAgB,iBAAiB;CAEvC,MAAM,kBAAkB,aAAa,gBAAwB;EACzD,gBAAgB,SAAS;GAErB,MAAM,GACD,cAAc,GACf,GAAG,SACH;GACJ,OAAO;EACX,CAAC;CACL,GAAG,CAAC,CAAC;CAEL,MAAM,mBAAmB,aAAa,aAAqB,UAAkB;EAEzE,MAAM,WAAW,mBAAmB,YAAY,WAAW;EAC3D,IAAI,UAAU,QAAQ,UAAU,UAC5B;EAIJ,MAAM,QAAQ,eAAe,UAAU,SAAS,WAAW;EAG3D,MAAM,gBADe,QAAS,QAAmB,KAAK,MAClB;EAEpC,UAAU,UAAU;GAChB,GAAG,UAAU;IACZ,cAAc;EACnB;EACA,aAAa,cAAc,aAAa,cAAc,KAAK;EAC3D,gBAAe,UAAS;GACpB,GAAG;IACF,eAAe,KAAK,gBAAgB,MAAM;EAC/C,EAAE;CACN,GAAG,CAAC,YAAY,WAAW,CAAC;CAE5B,MAAM,wBAAwB,aAAa,eAAuB,eAAgD,kBAA2B;EAEzI,uBAAuB,SAAS;GAC5B,OAAO,KAAK,QAAO,MAAK,CAAC,OAAO,KAAK,aAAa,EAAE,SAAS,CAAC,CAAC;EACnE,CAAC;EAED,OAAO,QAAQ,aAAa,EAAE,SAAS,CAAC,aAAa,gBAAgB;GAEjE,MAAM,QAAQ,eAAe,eAAe,WAAW;GACvD,MAAM,WAAW,mBAAmB,YAAY,WAAW;GAE3D,IAAI,CAAC,YAAY,eAAe,QAAQ,UAAU,UAC9C;GAGJ,IAAI,OAAO,eAAe,UAAU;IAChC,aAAa,cAAc,aAAa,UAAU;IAClD;GACJ;GAEA,IAAI,eAAe;IACf,aAAa,cAAc,aAAa,UAAU;IAClD;GACJ;GAEA,MAAM,kBAAkB,wBAAwB,YAAY,KAAK;GAEjE,MAAM,eAAe,QAAS,QAAmB,KAAK;GACtD,IAAI,iBACA,aAAa,cAAc,aAAa,UAAU;QAC/C;IACH,MAAM,YAAY,UAAU,kBAAkB,eAAe,UAAU,kBAAkB;IACzF,MAAM,eAAe,aAAa,QAAQ;IAC1C,IAAI,cAAc,aAAa,SAAS,GAAG,KAAK,aAAa,SAAS,GAAG,KAAK,aAAa,SAAS,GAAG,KAAK,aAAa,SAAS,GAAG,IACjI,aAAa,cAAc,aAAa,eAAe,SAAU,WAAsB,UAAU,CAAC;SAElG,aAAa,cAAc,aAAa,gBAAgB,aAAa,SAAS,IAAI,MAAM,MAAO,UAAqB;GAE5H;EACJ,CAAC;EAED,gBAAe,UAAS;GACpB,GAAG;GACH,GAAG,OAAO,KAAK,aAAa,EACvB,QAAQ,KAAK,QAAQ;IAClB,MAAM,QAAQ,eAAe,aAAa,QAAQ,GAAG;IACrD,MAAM,aAAa,cAAc;IACjC,OAAO;KACH,GAAG;MACF,MAAM,wBAAwB,YAAY,KAAK,KAAK;IACzD;GACJ,GAAG,CAAC,CAAC;EACb,EAAE;CACN,GAAG,CAAC,YAAY,WAAW,CAAC;CAE5B,MAAM,oCAAoC,aAAa,cAAuB;EAC1E,mBAAmB,KAAK;GACpB,MAAM;GACN,SAAS;GACT,kBAAkB;EACtB,CAAC;CACL,GAAG,CAAC,kBAAkB,CAAC;CAEvB,MAAM,qBAAqB,sBAAsB,EAAE,cAAc,eAAe,aAAa,CAAC;CAE9F,MAAM,sBAAsB,kBAAkB;EAC1C,eAAe,CAAC,CAAC;CACrB,GAAG,CAAC,CAAC;CAEL,MAAM,UAAU,YAAY,OAAO,UAAsF;EAErH,IAAI,CAAC,eAAe,MAAM;GACtB,mBAAmB,KAAK;IACpB,MAAM;IACN,SAAS;GACb,CAAC;GACD,OAAO,QAAQ,uBAAO,IAAI,MAAM,eAAe,CAAC;EACpD;EAEA,MAAM,eAAe,cAAc,yBAAyB,IAAI;EAChE,MAAM,gBAAgB,MAAM,eAAe,aAAa;EAExD,IAAI,MAAM,aACN,gBAAgB,MAAM,WAAW;OAEjC,oBAAoB;EAGxB,uBAAuB,SAAS,CAAC,GAAG,MAAM,GAAI,MAAM,cAAc,CAAC,MAAM,WAAW,IAAI,OAAO,KAAK,UAAU,CAAE,CAAC;EACjH,oBAAoB,UAAU;EAE9B,MAAM,gBAAgB,UAAU,WAAW,CAAC;EAE5C,OAAO,IAAI,SAAS,SAAS,WAAW;GACpC,SAAS,QAAQ,GAAY;IACzB,sBAAsB,CAAC,CAAC;IAExB,MAAM,WADM,aAAa,QAAQ,IAAI,OAAO,MAAM,YAAY,MAAM,OAAO,IAAI,IAAI,MAAM,OAAO,CAAC,CAAC;IAElG,IAAI,SAAS,SAAS,oBAAoB;KAEtC,MAAM,YADO,SAAS,MACE;KACxB,kCAAkC,SAAS;IAC/C,OACI,QAAQ,MAAM,iBAAiB,CAAC;IAEpC,OAAO,CAAC;IACR,oBAAoB,UAAU;GAClC;GAEA,IAAI;IACA,qBAAqB;KACjB,GAAG;KACH;KACA;KACA;KACA,MAAM;KACN,YAAY,WAAW,gBAAgB,WAAW;KAClD,mBAAmB,WAAW;KAE9B;KACA,WAAW,gBAAgB;MACvB,QAAQ,MAAM,eAAe,WAAW;MACxC,sBAAsB,eAAe,aAAa,MAAM,iBAAiB,KAAK;KAClF;KACA,gBAAgB,aAAqB,iBAAyB;MAE1D,iBAAiB,aAAa,YAAY;KAC9C;KACA;KACA,QAAQ,WAAW;MACf,QAAQ,MAAM,YAAY,MAAM;MAChC,IAAI,OAAO,QACP,OAAO,OAAO,SAAS,UAAU;OAC7B,mBAAmB,KAAK;QACpB,MAAM;QACN,SAAS;OACb,CAAC;MACL,CAAC;MAEL,IAAI,OAAO,KAAK,OAAO,WAAW,EAAE,WAAW,GAC3C,mBAAmB,KAAK;OACpB,MAAM;OACN,kBAAkB;OAClB,SAAS;MACb,CAAC;MAEL,sBAAsB,CAAC,CAAC;MACxB,QAAQ,MAAM;MACd,oBAAoB,UAAU;KAClC;IACJ,CAAC,EAAE,MAAM,OAAO;GACpB,SAAS,GAAY;IACjB,QAAQ,CAAC;GACb;EACJ,CAAC;CACL,GAAG;EACC;EAAgB;EAAe;EAAM;EAAiB;EACtD;EAAY;EAAM;EAAQ;EAAY;EAAuB;EAAkB;EAAmC;CACtH,CAAC;CAED,MAAM,mBAAmB,YAAY,OAAO,YAAoB,UAAmB;EAE/E,OAAO,4BAA4B;GAC/B;GACA;GACA,eAAA,MAJwB,eAAe,aAAa;GAKpD;GACA;EACJ,CAAC;CACL,GAAG;EAAC;EAAQ,eAAe;EAAc;CAAI,CAAC;CAE9C,MAAM,4BAAuD,eAAe;EACxE;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;CACJ,IAAI;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;CACJ,CAAC;CAED,OACI,oBAAC,iCAAiC,UAAlC;EACI,OAAO;EACN;CACsC,CAAA;AAEnD;;;ACzTA,SAAgB,kBAAkB,EAC9B,UACA,MACA,QACA,YACA,aACA,kBACsB;CAEtB,MAAM,cAAc,eAAe;CAEnC,MAAM,aAAa,sBAAsB,MAAM,MAAM;CAErD,MAAM,CAAC,SAAS,cAAc,MAAM,SAAS,KAAK;CAClD,MAAM,4BAA4B,6BAA6B;CAE/D,MAAM,CAAC,eAAe,oBAAoB,MAAM,SAAqC,KAAA,CAAS;CAC9F,MAAM,CAAC,cAAc,mBAAmB,MAAM,SAAiB,EAAE;CAEjE,MAAM,mBAAmB,2BAA2B;CAEpD,MAAM,iBAAiB,OAAO,KAAK;CACnC,MAAM,yBAAyB,YAAY,eAAe,uBAAuB,cAAuB;EACpG,IAAI,CAAC,kBAAkB;EACvB,IAAI,eAAe,SAAS;EAC5B,eAAe,UAAU;EACzB,MAAM,UAAU,WAAW,SACpB,MAAM,iBAAiB,WAAW,gBAAgB,WAAW,MAAM,YAAY,GAAG,UACnF,8BAA8B,WAAW,UAAU;EAEzD,MAAM,2BAA2B,4BAA4B,UAAU;EACvE,MAAM,gBAAgB,yBAAyB,KAAI,WAAU,OAAO,MAAM;EAC1E,iBAAiB,CAAC,GAAG,0BAA0B,GAAG,QAAQ,QAAO,MAAK,CAAC,cAAc,SAAS,EAAE,MAAM,CAAC,CAAC,EAAE,MAAM,GAAG,CAAC,CAAC;EACrH,eAAe,UAAU;CAC7B,GACI;EAAC,WAAW;EAAM,WAAW;EAAc;EAAkB;CAAM,CAAC;CAEjD,iBAAiB,aAAa,MAAM;CAG3D,gBAAgB;EACZ,IAAI,CAAC,2BAA2B;EAChC,IAAI,CAAC,eAAe;GAChB,iBAAiB,4BAA4B,UAAU,CAAC;GACxD,uBAAuB,EAAE,KAAK;EAClC;CACJ,GAAG;EAAC;EAA2B;EAAe;EAAY;EAAwB;EAAc;CAAM,CAAC;CAEvG,gBAAgB;EACZ,IAAI,CAAC,2BAA2B;EAChC,uBAAuB,EAAE,KAAK;CAClC,GAAG,CAAC,2BAA2B,MAAM,CAAC;CAEtC,MAAM,WAAW,WAAoB;EACjC,IAAI,CAAC,6BAA6B,CAAC,aAAa,QAAQ;EACxD,WAAW,IAAI;EACf,IAAI,QAAQ;GACR,gBAAgB,YAAY,MAAM;GAClC,iBAAiB,CAAC;IACd;IACA,MAAM;GACV,GAAG,IAAI,iBAAiB,CAAC,GAAG,MAAM,GAAG,CAAC,CAAC,CAAC;EAC5C;EACA,OAAO,0BAA0B,QAAQ;GACrC;GACA,QAAQ,YAAa;GACrB,cAAc;GACd,eAAe;EACnB,CAAC,EAAE,cAAc;GACb,WAAW,KAAK;EACpB,CAAC;CACL;CAEA,IAAI,CAAC,2BAA2B,SAC5B,OAAO;CAEX,MAAM,cAAc,0BAA0B;CACvB,OAAO,OAAO,WAAW,EAAE,OAAO,OAAO,EAAE;CAG5D,CAA4B,iBAAiB,CAAC,GAAG,SAAS,KAAK,aAAa;CAIlF,SAAS,SAAS;EACd,QAAQ,YAAY;CACxB;CAEA,OACI,qBAAC,MAAD;EACI,OAAO;EACP,YAAY;EACZ,WAAW;EACX,SAAS,qBAAC,QAAD;GAAQ,SAAS;GACtB,OAAO;GACP,WAAW,eAAe,mBAAmB;GAC7C,MAAM;GACN,UAAU;aAJL;IAKJ,CAAC,WAAW,oBAAC,QAAD,EAAQ,MAAM,QAAS,CAAA;IACnC,WAAW,oBAAC,kBAAD,EAAkB,MAAM,QAAS,CAAA;IAAE;GAE3C;;YAZZ;GAcI,qBAAC,UAAD;IAAU,WAAW;IACjB,eAAe;KACX,QAAQ;IACZ;cAHJ,CAII,oBAAC,QAAD,EAAQ,MAAM,QAAS,CAAA,GAAC,uCAElB;;GAEV,oBAAC,WAAD;IAAW,aAAa;IAAc,WAAW;GAAQ,CAAA;GAExD,eAAe,KAAK,cAAc,UAAU;IACzC,OAAO,qBAAC,UAAD;KAEH,eAAe;MACX,gBAAgB,aAAa,MAAM;MACnC,QAAQ,aAAa,MAAM;KAC/B;eALG,CAOH,oBAAC,OAAD;MAAK,WAAW;gBACX,aAAa;KACb,CAAA,GAEJ,aAAa,SAAS,YAAY,oBAAC,YAAD;MAC/B,UAAU,MAAM;OACZ,EAAE,eAAe;OACjB,EAAE,gBAAgB;OAClB,mBAAmB,YAAY,aAAa,MAAM;OAClD,kBAAkB,iBAAiB,CAAC,GAAG,QAAO,MAAK,EAAE,WAAW,aAAa,MAAM,CAAC;MACxF;MACA,MAAM;gBAEN,oBAAC,OAAD,EAAO,MAAM,SAAS,SAAU,CAAA;KACxB,CAAA,CAEN;OAtBD,QAAQ,MAAM,aAAa,MAsB1B;GACd,CAAC;GAED,oBAAC,WAAD,EAAW,aAAa,aAAc,CAAA;GAEtC,qBAAC,OAAD;IACI,WAAW,IACP,mFACJ;cAHJ;KAKI,oBAAC,kBAAD;MACI,WAAW,IAAI,6HAA6H,eAAe;MAC3J,OAAO;MACP,WAAW,WAAW;MACtB,UAAU;MACV,UAAU,UAAU;OAChB,MAAM,gBAAgB;MAC1B;MACA,aAAa;MACb,YAAY,MAAM;OACd,EAAE,gBAAgB;OAClB,IAAI,EAAE,QAAQ,WAAW,CAAC,EAAE,UAAU;QAClC,EAAE,eAAe;QACjB,OAAO;OACX;MAEJ;MACA,WAAW,MAAM;OACb,gBAAgB,EAAE,OAAO,KAAK;MAClC;KACH,CAAA;KAED,oBAAC,YAAD;MACI,MAAM;MACN,eAAe;OACX,gBAAgB,EAAE;MACtB;MACA,OAAO,CAAC,eAAe,YAAY,KAAA;MACnC,UAAU,WAAW,CAAC;gBACtB,oBAAC,OAAD,EAAO,MAAM,SAAS,MAAO,CAAA;KACrB,CAAA;KAEZ,qBAAC,YAAD;MACI,eAAe,QAAQ,YAAY;MACnC,MAAM;MACN,OAAO,CAAC,eAAe,YAAY,KAAA;MACnC,UAAU,WAAW,CAAC;gBAJ1B,CAKK,WACG,oBAAC,kBAAD,EAAkB,MAAM,WAAY,CAAA,GACvC,CAAC,WACE,oBAAC,UAAD,EAAU,OAAO,UAAW,CAAA,CACxB;;IAEX;;EAEH;;AAEd;AAEA,SAAS,8BAA8B,YAAwC;CAE3E,MAAM,sBAAsB,OAAO,OAAO,UAAU,EAAE,QAAQ,MAAgB;EAC1E,IAAI,kBAAkB,CAAC,GACnB,OAAO;EAEX,OAAO,EAAE,SAAS,aAAa,EAAE,OAAO,YAAY,EAAE,OAAO;CACjE,CAAC;CAED,MAAM,kBAAwC,oBAAoB,SAAS,IACrE,oBAAoB,KAAK,MAAM,KAAK,OAAO,IAAI,oBAAoB,MAAM,KACzE,KAAA;CAEN,MAAM,UAAU,CACZ,2BACA,+BACJ;CACA,IAAI,iBACA,QAAQ,KAAK,wBAAwB,gBAAgB,KAAK,EAAE;CAEhE,OAAO,QAAQ,KAAI,OAAM;EACrB,QAAQ;EACR,MAAM;CACV,EAAE;AACN;AAEA,IAAM,yBAAyB,MAAc,WAAyB;CAElE,OAAO,qBADc,WAAW,QAAQ,QAAQ,WACP,IAAI,oBAAoB,IAAI;AACzE;AAEA,IAAM,+BAA+B,eAAuC;CACxE,MAAM,OAAO,aAAa,QAAQ,UAAU;CAC5C,OAAO,OAAO,KAAK,MAAM,IAAI,EAAE,KAAK,OAAe;EAC/C,QAAQ;EACR,MAAM;CACV,EAAE,IAAI,CAAC;AACX;AAEA,IAAM,mBAAmB,YAAoB,WAAmB;CAC5D,IAAI,CAAC,UAAU,OAAO,KAAK,EAAE,WAAW,GACpC;CAEJ,MAAM,gBAAgB,4BAA4B,UAAU;CAC5D,aAAa,QAAQ,YAAY,KAAK,UAAU,CAAC,QAAQ,GAAG,cACvD,KAAI,MAAK,EAAE,MAAM,EACjB,QAAO,MAAK,MAAM,MAAM,EACxB,MAAM,GAAG,CAAC,CAAC,CAAC,CAAC;AACtB;AAEA,IAAM,sBAAsB,YAAoB,WAAmB;CAC/D,aAAa,QAAQ,YAAY,KAAK,UAAU,4BAA4B,UAAU,EACjF,KAAI,MAAK,EAAE,MAAM,EACjB,QAAO,MAAK,MAAM,MAAM,CAAC,CAAC;AACnC;;;AC9QA,IAAM,kBAAkB;;;;;;AAiCxB,SAAgB,yBAAyB,OAAkD;CAEvF,MAAM,SAAS,OAAO,UAAU;CAChC,MAAM,mBAAmB,OAAO;CAEhC,OAAO,MAAM,eAAe;EACxB,KAAK;EACL,OAAO,CACH;GACI,MAAM;GACN,WAAW;GACX,OAAO;EACX,CACJ;EACA,WAAW,CACP;GACI,OAAO;GACP,WAAW;GACX,OAAO;IACH;IACA;IACA,MAAM,OAAO;GACjB;EACJ,CACJ;CACJ,IAAI;EAAC;EAAQ;EAAkB,OAAO;CAAI,CAAC;AAC/C"}
@@ -1,4 +1,5 @@
1
- import { CollectionConfig, RebasePlugin, User } from "@rebasepro/types";
1
+ import { CollectionConfig, User } from "@rebasepro/types";
2
+ import { RebasePlugin } from "@rebasepro/admin-types";
2
3
  export interface DataEnhancementPluginProps {
3
4
  apiKey?: string;
4
5
  /**
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@rebasepro/plugin-ai",
3
3
  "type": "module",
4
- "version": "0.10.0",
4
+ "version": "0.10.1-canary.0a881d4",
5
5
  "main": "./dist/index.es.js",
6
6
  "module": "./dist/index.es.js",
7
7
  "types": "./dist/index.d.ts",
@@ -15,12 +15,13 @@
15
15
  "./package.json": "./package.json"
16
16
  },
17
17
  "dependencies": {
18
- "@rebasepro/admin": "0.10.0",
19
- "@rebasepro/app": "0.10.0",
20
- "@rebasepro/common": "0.10.0",
21
- "@rebasepro/types": "0.10.0",
22
- "@rebasepro/ui": "0.10.0",
23
- "@rebasepro/utils": "0.10.0"
18
+ "@rebasepro/admin": "0.10.1-canary.0a881d4",
19
+ "@rebasepro/app": "0.10.1-canary.0a881d4",
20
+ "@rebasepro/admin-types": "0.10.1-canary.0a881d4",
21
+ "@rebasepro/common": "0.10.1-canary.0a881d4",
22
+ "@rebasepro/types": "0.10.1-canary.0a881d4",
23
+ "@rebasepro/ui": "0.10.1-canary.0a881d4",
24
+ "@rebasepro/utils": "0.10.1-canary.0a881d4"
24
25
  },
25
26
  "peerDependencies": {
26
27
  "react": ">=19.0.0",
@@ -70,11 +71,12 @@
70
71
  "node"
71
72
  ],
72
73
  "moduleNameMapper": {
74
+ "^@rebasepro/admin$": "<rootDir>/../admin/src/index.ts",
75
+ "^@rebasepro/admin-types$": "<rootDir>/../admin-types/src/index.ts",
73
76
  "^@rebasepro/app$": "<rootDir>/../app/src/index.ts",
74
77
  "^@rebasepro/common$": "<rootDir>/../common/src/index.ts",
75
78
  "^@rebasepro/types$": "<rootDir>/../types/src/index.ts",
76
79
  "^@rebasepro/ui$": "<rootDir>/../ui/src/index.ts",
77
- "^@rebasepro/admin$": "<rootDir>/../admin/src/index.ts",
78
80
  "^@rebasepro/utils$": "<rootDir>/../utils/src/index.ts"
79
81
  }
80
82
  },
@@ -12,7 +12,8 @@ import {
12
12
  useSnackbarController
13
13
  } from "@rebasepro/app";
14
14
  import { useUrlController } from "@rebasepro/admin";
15
- import { DataDriver, Entity, CollectionConfig, PluginFormActionProps } from "@rebasepro/types";
15
+ import { DataDriver, Entity, CollectionConfig } from "@rebasepro/types";
16
+ import { PluginFormActionProps } from "@rebasepro/admin-types";
16
17
  import { enhanceDataAPIStream, fetchEntityPromptSuggestion } from "../api";
17
18
  import { getAppendableSuggestion } from "../utils/suggestions";
18
19
  import { getSimplifiedProperties } from "../utils/properties";
@@ -19,7 +19,8 @@ import {
19
19
  AIIcon,
20
20
  useLargeLayout
21
21
  } from "@rebasepro/app";
22
- import { EntityStatus, PluginFormActionProps, Properties, Property } from "@rebasepro/types";
22
+ import { EntityStatus, Properties, Property } from "@rebasepro/types";
23
+ import { PluginFormActionProps } from "@rebasepro/admin-types";
23
24
  import { isPropertyBuilder, stripCollectionPath } from "@rebasepro/common";
24
25
  import { useDataEnhancementController } from "./DataEnhancementControllerProvider";
25
26
  import { SamplePrompt } from "../types/data_enhancement_controller";
@@ -226,7 +227,7 @@ function getPromptsForExistingEntities(properties: Properties): SamplePrompt[] {
226
227
  if (isPropertyBuilder(p)) {
227
228
  return false;
228
229
  }
229
- return p.type === "string" && (p.ui?.markdown || p.ui?.multiline);
230
+ return p.type === "string" && (p.admin?.markdown || p.admin?.multiline);
230
231
  });
231
232
 
232
233
  const multilinePrompt: Property | undefined = multilineProperties.length > 0
@@ -28,7 +28,7 @@ hidden: "Secret" };
28
28
  type: "string" },
29
29
  hidden: { name: "hidden",
30
30
  type: "string",
31
- ui: { disabled: true } }
31
+ admin: { disabled: true } }
32
32
  };
33
33
  expect(countStringCharacters(values, properties)).toBe(5);
34
34
  });
@@ -1,6 +1,7 @@
1
1
  import React from "react";
2
2
 
3
- import { CollectionConfig, RebasePlugin, User } from "@rebasepro/types";
3
+ import { CollectionConfig, User } from "@rebasepro/types";
4
+ import { RebasePlugin } from "@rebasepro/admin-types";
4
5
  import { DataEnhancementControllerProvider } from "./components/DataEnhancementControllerProvider";
5
6
  import { FormEnhanceAction } from "./components/FormEnhanceAction";
6
7
 
@@ -31,7 +31,7 @@ function getSimpleProperty(property: Property): InputProperty {
31
31
  enum: "enum" in property && property.enum
32
32
  ? getSimpleEnumValues(property.enum)
33
33
  : undefined,
34
- disabled: Boolean(property.ui?.disabled || property.ui?.readOnly)
34
+ disabled: Boolean(property.admin?.disabled || property.admin?.readOnly)
35
35
  };
36
36
  }
37
37
 
@@ -45,7 +45,7 @@ function getSimplifiedProperty(property: Property, path: string, value?: unknown
45
45
  description: property.description,
46
46
  type: property.type,
47
47
  fieldConfigId: "repeat",
48
- disabled: Boolean(property.ui?.disabled || property.ui?.readOnly),
48
+ disabled: Boolean(property.admin?.disabled || property.admin?.readOnly),
49
49
  of: getSimpleProperty(property.of as Property)
50
50
  };
51
51
 
@@ -77,7 +77,7 @@ function getSimplifiedProperty(property: Property, path: string, value?: unknown
77
77
  description: property.description,
78
78
  type: property.type,
79
79
  fieldConfigId: "block",
80
- disabled: Boolean(property.ui?.disabled || property.ui?.readOnly),
80
+ disabled: Boolean(property.admin?.disabled || property.admin?.readOnly),
81
81
  oneOf: {
82
82
  typeField: property.oneOf.typeField,
83
83
  valueField: property.oneOf.valueField,
@@ -128,7 +128,7 @@ function getSimplifiedProperty(property: Property, path: string, value?: unknown
128
128
  description: property.description,
129
129
  type: property.type,
130
130
  fieldConfigId: "group",
131
- disabled: Boolean(property.ui?.disabled || property.ui?.readOnly)
131
+ disabled: Boolean(property.admin?.disabled || property.admin?.readOnly)
132
132
  };
133
133
  return {
134
134
  [path]: mapParentProperty,
@@ -7,7 +7,7 @@ export function countStringCharacters(values: EntityValues<any>, properties: Pro
7
7
  const value = values[key];
8
8
  const property: Property = properties[key];
9
9
 
10
- if (property && !property.ui?.disabled) {
10
+ if (property && !property.admin?.disabled) {
11
11
  if (property.type === "string" || property.type === "number") {
12
12
  count += String(value).length;
13
13
  } else if (property.type === "array" && Array.isArray(value) && property.of && !Array.isArray(property.of) && property.of.type === "string") {