diff --git a/loan-advisor-chatgpt-app/node_modules/@modelcontextprotocol/sdk/LICENSE b/loan-advisor-chatgpt-app/node_modules/@modelcontextprotocol/sdk/LICENSE new file mode 100644 index 0000000000000000000000000000000000000000..3d48435454b105021b4f777c11b6b07d8d2ffea3 --- /dev/null +++ b/loan-advisor-chatgpt-app/node_modules/@modelcontextprotocol/sdk/LICENSE @@ -0,0 +1,21 @@ +MIT License + +Copyright (c) 2024 Anthropic, PBC + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. diff --git a/loan-advisor-chatgpt-app/node_modules/@modelcontextprotocol/sdk/README.md b/loan-advisor-chatgpt-app/node_modules/@modelcontextprotocol/sdk/README.md new file mode 100644 index 0000000000000000000000000000000000000000..2d2f19ae376bee6081437c4d6f8e251bf3fd3ce5 --- /dev/null +++ b/loan-advisor-chatgpt-app/node_modules/@modelcontextprotocol/sdk/README.md @@ -0,0 +1,172 @@ +# MCP TypeScript SDK [![NPM Version](https://img.shields.io/npm/v/%40modelcontextprotocol%2Fsdk)](https://www.npmjs.com/package/@modelcontextprotocol/sdk) [![MIT licensed](https://img.shields.io/npm/l/%40modelcontextprotocol%2Fsdk)](https://github.com/modelcontextprotocol/typescript-sdk/blob/main/LICENSE) + +
+Table of Contents + +- [Overview](#overview) +- [Installation](#installation) +- [Quick Start](#quick-start) +- [Core Concepts](#core-concepts) +- [Examples](#examples) +- [Documentation](#documentation) +- [Contributing](#contributing) +- [License](#license) + +
+ +## Overview + +The Model Context Protocol allows applications to provide context for LLMs in a standardized way, separating the concerns of providing context from the actual LLM interaction. This TypeScript SDK implements +[the full MCP specification](https://modelcontextprotocol.io/specification/draft), making it easy to: + +- Create MCP servers that expose resources, prompts and tools +- Build MCP clients that can connect to any MCP server +- Use standard transports like stdio and Streamable HTTP + +## Installation + +```bash +npm install @modelcontextprotocol/sdk zod +``` + +This SDK has a **required peer dependency** on `zod` for schema validation. The SDK internally imports from `zod/v4`, but maintains backwards compatibility with projects using Zod v3.25 or later. You can use either API in your code by importing from `zod/v3` or `zod/v4`: + +## Quick Start + +To see the SDK in action end-to-end, start from the runnable examples in `src/examples`: + +1. **Install dependencies** (from the SDK repo root): + + ```bash + npm install + ``` + +2. **Run the example Streamable HTTP server**: + + ```bash + npx tsx src/examples/server/simpleStreamableHttp.ts + ``` + +3. **Run the interactive client in another terminal**: + + ```bash + npx tsx src/examples/client/simpleStreamableHttp.ts + ``` + +This pair of examples demonstrates tools, resources, prompts, sampling, elicitation, tasks and logging. For a guided walkthrough and variations (stateless servers, JSON-only responses, SSE compatibility, OAuth, etc.), see [docs/server.md](docs/server.md) and +[docs/client.md](docs/client.md). + +## Core Concepts + +### Servers and transports + +An MCP server is typically created with `McpServer` and connected to a transport such as Streamable HTTP or stdio. The SDK supports: + +- **Streamable HTTP** for remote servers (recommended). +- **HTTP + SSE** for backwards compatibility only. +- **stdio** for local, process-spawned integrations. + +Runnable server examples live under `src/examples/server` and are documented in [docs/server.md](docs/server.md). + +### Tools, resources, prompts + +- **Tools** let LLMs ask your server to take actions (computation, side effects, network calls). +- **Resources** expose read-only data that clients can surface to users or models. +- **Prompts** are reusable templates that help users talk to models in a consistent way. + +The detailed APIs, including `ResourceTemplate`, completions, and display-name metadata, are covered in [docs/server.md](docs/server.md#tools-resources-and-prompts), with runnable implementations in [`simpleStreamableHttp.ts`](src/examples/server/simpleStreamableHttp.ts). + +### Capabilities: sampling, elicitation, and tasks + +The SDK includes higher-level capabilities for richer workflows: + +- **Sampling**: server-side tools can ask connected clients to run LLM completions. +- **Form elicitation**: tools can request non-sensitive input via structured forms. +- **URL elicitation**: servers can ask users to complete secure flows in a browser (e.g., API key entry, payments, OAuth). +- **Tasks (experimental)**: long-running tool calls can be turned into tasks that you poll or resume later. + +Conceptual overviews and links to runnable examples are in: + +- [docs/capabilities.md](docs/capabilities.md) + +Key example servers include: + +- [`toolWithSampleServer.ts`](src/examples/server/toolWithSampleServer.ts) +- [`elicitationFormExample.ts`](src/examples/server/elicitationFormExample.ts) +- [`elicitationUrlExample.ts`](src/examples/server/elicitationUrlExample.ts) + +### Clients + +The high-level `Client` class connects to MCP servers over different transports and exposes helpers like `listTools`, `callTool`, `listResources`, `readResource`, `listPrompts`, and `getPrompt`. + +Runnable clients live under `src/examples/client` and are described in [docs/client.md](docs/client.md), including: + +- Interactive Streamable HTTP client ([`simpleStreamableHttp.ts`](src/examples/client/simpleStreamableHttp.ts)) +- Streamable HTTP client with SSE fallback ([`streamableHttpWithSseFallbackClient.ts`](src/examples/client/streamableHttpWithSseFallbackClient.ts)) +- OAuth-enabled clients and polling/parallel examples + +### Node.js Web Crypto (globalThis.crypto) compatibility + +Some parts of the SDK (for example, JWT-based client authentication in `auth-extensions.ts` via `jose`) rely on the Web Crypto API exposed as `globalThis.crypto`. + +See [docs/faq.md](docs/faq.md) for details on supported Node.js versions and how to polyfill `globalThis.crypto` when running on older Node.js runtimes. + +## Examples + +The SDK ships runnable examples under `src/examples`. Use these tables to find the scenario you care about and jump straight to the corresponding code and docs. + +### Server examples + +| Scenario | Description | Example file(s) | Related docs | +| --------------------------------------------------- | ------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------ | +| Streamable HTTP server (stateful) | Feature-rich server with tools, resources, prompts, logging, tasks, sampling, and optional OAuth. | [`simpleStreamableHttp.ts`](src/examples/server/simpleStreamableHttp.ts) | [`server.md`](docs/server.md), [`capabilities.md`](docs/capabilities.md) | +| Streamable HTTP server (stateless) | No session tracking; good for simple API-style servers. | [`simpleStatelessStreamableHttp.ts`](src/examples/server/simpleStatelessStreamableHttp.ts) | [`server.md`](docs/server.md) | +| JSON response mode (no SSE) | Streamable HTTP with JSON responses only and limited notifications. | [`jsonResponseStreamableHttp.ts`](src/examples/server/jsonResponseStreamableHttp.ts) | [`server.md`](docs/server.md) | +| Server notifications over Streamable HTTP | Demonstrates server-initiated notifications using SSE with Streamable HTTP. | [`standaloneSseWithGetStreamableHttp.ts`](src/examples/server/standaloneSseWithGetStreamableHttp.ts) | [`server.md`](docs/server.md) | +| Deprecated HTTP+SSE server | Legacy HTTP+SSE transport for backwards-compatibility testing. | [`simpleSseServer.ts`](src/examples/server/simpleSseServer.ts) | [`server.md`](docs/server.md) | +| Backwards-compatible server (Streamable HTTP + SSE) | Single server that supports both Streamable HTTP and legacy SSE clients. | [`sseAndStreamableHttpCompatibleServer.ts`](src/examples/server/sseAndStreamableHttpCompatibleServer.ts) | [`server.md`](docs/server.md) | +| Form elicitation server | Uses form elicitation to collect non-sensitive user input. | [`elicitationFormExample.ts`](src/examples/server/elicitationFormExample.ts) | [`capabilities.md`](docs/capabilities.md#elicitation) | +| URL elicitation server | Demonstrates URL-mode elicitation in an OAuth-protected server. | [`elicitationUrlExample.ts`](src/examples/server/elicitationUrlExample.ts) | [`capabilities.md`](docs/capabilities.md#elicitation) | +| Sampling and tasks server | Combines tools, logging, sampling, and experimental task-based execution. | [`toolWithSampleServer.ts`](src/examples/server/toolWithSampleServer.ts) | [`capabilities.md`](docs/capabilities.md) | +| OAuth demo authorization server | In-memory OAuth provider used with the example servers. | [`demoInMemoryOAuthProvider.ts`](src/examples/server/demoInMemoryOAuthProvider.ts) | [`server.md`](docs/server.md) | + +### Client examples + +| Scenario | Description | Example file(s) | Related docs | +| --------------------------------------------------- | ---------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------ | +| Interactive Streamable HTTP client | CLI client that exercises tools, resources, prompts, elicitation, and tasks. | [`simpleStreamableHttp.ts`](src/examples/client/simpleStreamableHttp.ts) | [`client.md`](docs/client.md) | +| Backwards-compatible client (Streamable HTTP → SSE) | Tries Streamable HTTP first, then falls back to SSE on 4xx responses. | [`streamableHttpWithSseFallbackClient.ts`](src/examples/client/streamableHttpWithSseFallbackClient.ts) | [`client.md`](docs/client.md), [`server.md`](docs/server.md) | +| SSE polling client | Polls a legacy SSE server and demonstrates notification handling. | [`ssePollingClient.ts`](src/examples/client/ssePollingClient.ts) | [`client.md`](docs/client.md) | +| Parallel tool calls client | Shows how to run multiple tool calls in parallel. | [`parallelToolCallsClient.ts`](src/examples/client/parallelToolCallsClient.ts) | [`client.md`](docs/client.md) | +| Multiple clients in parallel | Demonstrates connecting multiple clients concurrently to the same server. | [`multipleClientsParallel.ts`](src/examples/client/multipleClientsParallel.ts) | [`client.md`](docs/client.md) | +| OAuth clients | Examples of client_credentials (basic and private_key_jwt) and reusable providers. | [`simpleOAuthClient.ts`](src/examples/client/simpleOAuthClient.ts), [`simpleOAuthClientProvider.ts`](src/examples/client/simpleOAuthClientProvider.ts), [`simpleClientCredentials.ts`](src/examples/client/simpleClientCredentials.ts) | [`client.md`](docs/client.md) | +| URL elicitation client | Works with the URL elicitation server to drive secure browser flows. | [`elicitationUrlExample.ts`](src/examples/client/elicitationUrlExample.ts) | [`capabilities.md`](docs/capabilities.md#elicitation) | + +Shared utilities: + +- In-memory event store for resumability: [`inMemoryEventStore.ts`](src/examples/shared/inMemoryEventStore.ts) (see [`server.md`](docs/server.md)). + +For more details on how to run these examples (including recommended commands and deployment diagrams), see `src/examples/README.md`. + +## Documentation + +- Local SDK docs: + - [docs/server.md](docs/server.md) – building and running MCP servers, transports, tools/resources/prompts, CORS, DNS rebinding, and multi-node deployment. + - [docs/client.md](docs/client.md) – using the high-level client, transports, backwards compatibility, and OAuth helpers. + - [docs/capabilities.md](docs/capabilities.md) – sampling, elicitation (form and URL), and experimental task-based execution. + - [docs/protocol.md](docs/protocol.md) – protocol features: ping, progress, cancellation, pagination, capability negotiation, and JSON Schema. + - [docs/faq.md](docs/faq.md) – environment and troubleshooting FAQs (including Node.js Web Crypto support). +- External references: + - [V1 API reference](https://modelcontextprotocol.github.io/typescript-sdk/) + - [V2 API reference](https://modelcontextprotocol.github.io/typescript-sdk/v2/) + - [Model Context Protocol documentation](https://modelcontextprotocol.io) + - [MCP Specification](https://spec.modelcontextprotocol.io) + - [Example Servers](https://github.com/modelcontextprotocol/servers) + +## Contributing + +Issues and pull requests are welcome on GitHub at . + +## License + +This project is licensed under the MIT License—see the [LICENSE](LICENSE) file for details. diff --git a/loan-advisor-chatgpt-app/node_modules/@modelcontextprotocol/sdk/dist/esm/shared/uriTemplate.js b/loan-advisor-chatgpt-app/node_modules/@modelcontextprotocol/sdk/dist/esm/shared/uriTemplate.js new file mode 100644 index 0000000000000000000000000000000000000000..8247f631e51fe9c40ef3c662d3e0f9e099aec0c3 --- /dev/null +++ b/loan-advisor-chatgpt-app/node_modules/@modelcontextprotocol/sdk/dist/esm/shared/uriTemplate.js @@ -0,0 +1,239 @@ +// Claude-authored implementation of RFC 6570 URI Templates +const MAX_TEMPLATE_LENGTH = 1000000; // 1MB +const MAX_VARIABLE_LENGTH = 1000000; // 1MB +const MAX_TEMPLATE_EXPRESSIONS = 10000; +const MAX_REGEX_LENGTH = 1000000; // 1MB +export class UriTemplate { + /** + * Returns true if the given string contains any URI template expressions. + * A template expression is a sequence of characters enclosed in curly braces, + * like {foo} or {?bar}. + */ + static isTemplate(str) { + // Look for any sequence of characters between curly braces + // that isn't just whitespace + return /\{[^}\s]+\}/.test(str); + } + static validateLength(str, max, context) { + if (str.length > max) { + throw new Error(`${context} exceeds maximum length of ${max} characters (got ${str.length})`); + } + } + get variableNames() { + return this.parts.flatMap(part => (typeof part === 'string' ? [] : part.names)); + } + constructor(template) { + UriTemplate.validateLength(template, MAX_TEMPLATE_LENGTH, 'Template'); + this.template = template; + this.parts = this.parse(template); + } + toString() { + return this.template; + } + parse(template) { + const parts = []; + let currentText = ''; + let i = 0; + let expressionCount = 0; + while (i < template.length) { + if (template[i] === '{') { + if (currentText) { + parts.push(currentText); + currentText = ''; + } + const end = template.indexOf('}', i); + if (end === -1) + throw new Error('Unclosed template expression'); + expressionCount++; + if (expressionCount > MAX_TEMPLATE_EXPRESSIONS) { + throw new Error(`Template contains too many expressions (max ${MAX_TEMPLATE_EXPRESSIONS})`); + } + const expr = template.slice(i + 1, end); + const operator = this.getOperator(expr); + const exploded = expr.includes('*'); + const names = this.getNames(expr); + const name = names[0]; + // Validate variable name length + for (const name of names) { + UriTemplate.validateLength(name, MAX_VARIABLE_LENGTH, 'Variable name'); + } + parts.push({ name, operator, names, exploded }); + i = end + 1; + } + else { + currentText += template[i]; + i++; + } + } + if (currentText) { + parts.push(currentText); + } + return parts; + } + getOperator(expr) { + const operators = ['+', '#', '.', '/', '?', '&']; + return operators.find(op => expr.startsWith(op)) || ''; + } + getNames(expr) { + const operator = this.getOperator(expr); + return expr + .slice(operator.length) + .split(',') + .map(name => name.replace('*', '').trim()) + .filter(name => name.length > 0); + } + encodeValue(value, operator) { + UriTemplate.validateLength(value, MAX_VARIABLE_LENGTH, 'Variable value'); + if (operator === '+' || operator === '#') { + return encodeURI(value); + } + return encodeURIComponent(value); + } + expandPart(part, variables) { + if (part.operator === '?' || part.operator === '&') { + const pairs = part.names + .map(name => { + const value = variables[name]; + if (value === undefined) + return ''; + const encoded = Array.isArray(value) + ? value.map(v => this.encodeValue(v, part.operator)).join(',') + : this.encodeValue(value.toString(), part.operator); + return `${name}=${encoded}`; + }) + .filter(pair => pair.length > 0); + if (pairs.length === 0) + return ''; + const separator = part.operator === '?' ? '?' : '&'; + return separator + pairs.join('&'); + } + if (part.names.length > 1) { + const values = part.names.map(name => variables[name]).filter(v => v !== undefined); + if (values.length === 0) + return ''; + return values.map(v => (Array.isArray(v) ? v[0] : v)).join(','); + } + const value = variables[part.name]; + if (value === undefined) + return ''; + const values = Array.isArray(value) ? value : [value]; + const encoded = values.map(v => this.encodeValue(v, part.operator)); + switch (part.operator) { + case '': + return encoded.join(','); + case '+': + return encoded.join(','); + case '#': + return '#' + encoded.join(','); + case '.': + return '.' + encoded.join('.'); + case '/': + return '/' + encoded.join('/'); + default: + return encoded.join(','); + } + } + expand(variables) { + let result = ''; + let hasQueryParam = false; + for (const part of this.parts) { + if (typeof part === 'string') { + result += part; + continue; + } + const expanded = this.expandPart(part, variables); + if (!expanded) + continue; + // Convert ? to & if we already have a query parameter + if ((part.operator === '?' || part.operator === '&') && hasQueryParam) { + result += expanded.replace('?', '&'); + } + else { + result += expanded; + } + if (part.operator === '?' || part.operator === '&') { + hasQueryParam = true; + } + } + return result; + } + escapeRegExp(str) { + return str.replace(/[.*+?^${}()|[\]\\]/g, '\\$&'); + } + partToRegExp(part) { + const patterns = []; + // Validate variable name length for matching + for (const name of part.names) { + UriTemplate.validateLength(name, MAX_VARIABLE_LENGTH, 'Variable name'); + } + if (part.operator === '?' || part.operator === '&') { + for (let i = 0; i < part.names.length; i++) { + const name = part.names[i]; + const prefix = i === 0 ? '\\' + part.operator : '&'; + patterns.push({ + pattern: prefix + this.escapeRegExp(name) + '=([^&]+)', + name + }); + } + return patterns; + } + let pattern; + const name = part.name; + switch (part.operator) { + case '': + pattern = part.exploded ? '([^/,]+(?:,[^/,]+)*)' : '([^/,]+)'; + break; + case '+': + case '#': + pattern = '(.+)'; + break; + case '.': + pattern = '\\.([^/,]+)'; + break; + case '/': + pattern = '/' + (part.exploded ? '([^/,]+(?:,[^/,]+)*)' : '([^/,]+)'); + break; + default: + pattern = '([^/]+)'; + } + patterns.push({ pattern, name }); + return patterns; + } + match(uri) { + UriTemplate.validateLength(uri, MAX_TEMPLATE_LENGTH, 'URI'); + let pattern = '^'; + const names = []; + for (const part of this.parts) { + if (typeof part === 'string') { + pattern += this.escapeRegExp(part); + } + else { + const patterns = this.partToRegExp(part); + for (const { pattern: partPattern, name } of patterns) { + pattern += partPattern; + names.push({ name, exploded: part.exploded }); + } + } + } + pattern += '$'; + UriTemplate.validateLength(pattern, MAX_REGEX_LENGTH, 'Generated regex pattern'); + const regex = new RegExp(pattern); + const match = uri.match(regex); + if (!match) + return null; + const result = {}; + for (let i = 0; i < names.length; i++) { + const { name, exploded } = names[i]; + const value = match[i + 1]; + const cleanName = name.replace('*', ''); + if (exploded && value.includes(',')) { + result[cleanName] = value.split(','); + } + else { + result[cleanName] = value; + } + } + return result; + } +} +//# sourceMappingURL=uriTemplate.js.map \ No newline at end of file diff --git a/loan-advisor-chatgpt-app/node_modules/@modelcontextprotocol/sdk/dist/esm/shared/uriTemplate.js.map b/loan-advisor-chatgpt-app/node_modules/@modelcontextprotocol/sdk/dist/esm/shared/uriTemplate.js.map new file mode 100644 index 0000000000000000000000000000000000000000..d47e01ba8d2c544e6ed95e858ec792f96b5dd677 --- /dev/null +++ b/loan-advisor-chatgpt-app/node_modules/@modelcontextprotocol/sdk/dist/esm/shared/uriTemplate.js.map @@ -0,0 +1 @@ +{"version":3,"file":"uriTemplate.js","sourceRoot":"","sources":["../../../src/shared/uriTemplate.ts"],"names":[],"mappings":"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"} \ No newline at end of file diff --git a/loan-advisor-chatgpt-app/node_modules/@modelcontextprotocol/sdk/dist/esm/spec.types.d.ts b/loan-advisor-chatgpt-app/node_modules/@modelcontextprotocol/sdk/dist/esm/spec.types.d.ts new file mode 100644 index 0000000000000000000000000000000000000000..486a755682e67f5f67fd993125f4b44a4d1a0d21 --- /dev/null +++ b/loan-advisor-chatgpt-app/node_modules/@modelcontextprotocol/sdk/dist/esm/spec.types.d.ts @@ -0,0 +1,2311 @@ +/** + * This file is automatically generated from the Model Context Protocol specification. + * + * Source: https://github.com/modelcontextprotocol/modelcontextprotocol + * Pulled from: https://raw.githubusercontent.com/modelcontextprotocol/modelcontextprotocol/main/schema/draft/schema.ts + * Last updated from commit: 35fa160caf287a9c48696e3ae452c0645c713669 + * + * DO NOT EDIT THIS FILE MANUALLY. Changes will be overwritten by automated updates. + * To update this file, run: npm run fetch:spec-types + */ +/** + * Refers to any valid JSON-RPC object that can be decoded off the wire, or encoded to be sent. + * + * @category JSON-RPC + */ +export type JSONRPCMessage = JSONRPCRequest | JSONRPCNotification | JSONRPCResponse; +/** @internal */ +export declare const LATEST_PROTOCOL_VERSION = "DRAFT-2026-v1"; +/** @internal */ +export declare const JSONRPC_VERSION = "2.0"; +/** + * A progress token, used to associate progress notifications with the original request. + * + * @category Common Types + */ +export type ProgressToken = string | number; +/** + * An opaque token used to represent a cursor for pagination. + * + * @category Common Types + */ +export type Cursor = string; +/** + * Common params for any task-augmented request. + * + * @internal + */ +export interface TaskAugmentedRequestParams extends RequestParams { + /** + * If specified, the caller is requesting task-augmented execution for this request. + * The request will return a CreateTaskResult immediately, and the actual result can be + * retrieved later via tasks/result. + * + * Task augmentation is subject to capability negotiation - receivers MUST declare support + * for task augmentation of specific request types in their capabilities. + */ + task?: TaskMetadata; +} +/** + * Common params for any request. + * + * @internal + */ +export interface RequestParams { + /** + * See [General fields: `_meta`](/specification/draft/basic/index#meta) for notes on `_meta` usage. + */ + _meta?: { + /** + * If specified, the caller is requesting out-of-band progress notifications for this request (as represented by notifications/progress). The value of this parameter is an opaque token that will be attached to any subsequent notifications. The receiver is not obligated to provide these notifications. + */ + progressToken?: ProgressToken; + [key: string]: unknown; + }; +} +/** @internal */ +export interface Request { + method: string; + params?: { + [key: string]: any; + }; +} +/** @internal */ +export interface NotificationParams { + /** + * See [General fields: `_meta`](/specification/draft/basic/index#meta) for notes on `_meta` usage. + */ + _meta?: { + [key: string]: unknown; + }; +} +/** @internal */ +export interface Notification { + method: string; + params?: { + [key: string]: any; + }; +} +/** + * @category Common Types + */ +export interface Result { + /** + * See [General fields: `_meta`](/specification/draft/basic/index#meta) for notes on `_meta` usage. + */ + _meta?: { + [key: string]: unknown; + }; + [key: string]: unknown; +} +/** + * @category Common Types + */ +export interface Error { + /** + * The error type that occurred. + */ + code: number; + /** + * A short description of the error. The message SHOULD be limited to a concise single sentence. + */ + message: string; + /** + * Additional information about the error. The value of this member is defined by the sender (e.g. detailed error information, nested errors etc.). + */ + data?: unknown; +} +/** + * A uniquely identifying ID for a request in JSON-RPC. + * + * @category Common Types + */ +export type RequestId = string | number; +/** + * A request that expects a response. + * + * @category JSON-RPC + */ +export interface JSONRPCRequest extends Request { + jsonrpc: typeof JSONRPC_VERSION; + id: RequestId; +} +/** + * A notification which does not expect a response. + * + * @category JSON-RPC + */ +export interface JSONRPCNotification extends Notification { + jsonrpc: typeof JSONRPC_VERSION; +} +/** + * A successful (non-error) response to a request. + * + * @category JSON-RPC + */ +export interface JSONRPCResultResponse { + jsonrpc: typeof JSONRPC_VERSION; + id: RequestId; + result: Result; +} +/** + * A response to a request that indicates an error occurred. + * + * @category JSON-RPC + */ +export interface JSONRPCErrorResponse { + jsonrpc: typeof JSONRPC_VERSION; + id?: RequestId; + error: Error; +} +/** + * A response to a request, containing either the result or error. + */ +export type JSONRPCResponse = JSONRPCResultResponse | JSONRPCErrorResponse; +export declare const PARSE_ERROR = -32700; +export declare const INVALID_REQUEST = -32600; +export declare const METHOD_NOT_FOUND = -32601; +export declare const INVALID_PARAMS = -32602; +export declare const INTERNAL_ERROR = -32603; +/** @internal */ +export declare const URL_ELICITATION_REQUIRED = -32042; +/** + * An error response that indicates that the server requires the client to provide additional information via an elicitation request. + * + * @internal + */ +export interface URLElicitationRequiredError extends Omit { + error: Error & { + code: typeof URL_ELICITATION_REQUIRED; + data: { + elicitations: ElicitRequestURLParams[]; + [key: string]: unknown; + }; + }; +} +/** + * A response that indicates success but carries no data. + * + * @category Common Types + */ +export type EmptyResult = Result; +/** + * Parameters for a `notifications/cancelled` notification. + * + * @category `notifications/cancelled` + */ +export interface CancelledNotificationParams extends NotificationParams { + /** + * The ID of the request to cancel. + * + * This MUST correspond to the ID of a request previously issued in the same direction. + * This MUST be provided for cancelling non-task requests. + * This MUST NOT be used for cancelling tasks (use the `tasks/cancel` request instead). + */ + requestId?: RequestId; + /** + * An optional string describing the reason for the cancellation. This MAY be logged or presented to the user. + */ + reason?: string; +} +/** + * This notification can be sent by either side to indicate that it is cancelling a previously-issued request. + * + * The request SHOULD still be in-flight, but due to communication latency, it is always possible that this notification MAY arrive after the request has already finished. + * + * This notification indicates that the result will be unused, so any associated processing SHOULD cease. + * + * A client MUST NOT attempt to cancel its `initialize` request. + * + * For task cancellation, use the `tasks/cancel` request instead of this notification. + * + * @category `notifications/cancelled` + */ +export interface CancelledNotification extends JSONRPCNotification { + method: "notifications/cancelled"; + params: CancelledNotificationParams; +} +/** + * Parameters for an `initialize` request. + * + * @category `initialize` + */ +export interface InitializeRequestParams extends RequestParams { + /** + * The latest version of the Model Context Protocol that the client supports. The client MAY decide to support older versions as well. + */ + protocolVersion: string; + capabilities: ClientCapabilities; + clientInfo: Implementation; +} +/** + * This request is sent from the client to the server when it first connects, asking it to begin initialization. + * + * @category `initialize` + */ +export interface InitializeRequest extends JSONRPCRequest { + method: "initialize"; + params: InitializeRequestParams; +} +/** + * After receiving an initialize request from the client, the server sends this response. + * + * @category `initialize` + */ +export interface InitializeResult extends Result { + /** + * The version of the Model Context Protocol that the server wants to use. This may not match the version that the client requested. If the client cannot support this version, it MUST disconnect. + */ + protocolVersion: string; + capabilities: ServerCapabilities; + serverInfo: Implementation; + /** + * Instructions describing how to use the server and its features. + * + * This can be used by clients to improve the LLM's understanding of available tools, resources, etc. It can be thought of like a "hint" to the model. For example, this information MAY be added to the system prompt. + */ + instructions?: string; +} +/** + * This notification is sent from the client to the server after initialization has finished. + * + * @category `notifications/initialized` + */ +export interface InitializedNotification extends JSONRPCNotification { + method: "notifications/initialized"; + params?: NotificationParams; +} +/** + * Capabilities a client may support. Known capabilities are defined here, in this schema, but this is not a closed set: any client can define its own, additional capabilities. + * + * @category `initialize` + */ +export interface ClientCapabilities { + /** + * Experimental, non-standard capabilities that the client supports. + */ + experimental?: { + [key: string]: object; + }; + /** + * Present if the client supports listing roots. + */ + roots?: { + /** + * Whether the client supports notifications for changes to the roots list. + */ + listChanged?: boolean; + }; + /** + * Present if the client supports sampling from an LLM. + */ + sampling?: { + /** + * Whether the client supports context inclusion via includeContext parameter. + * If not declared, servers SHOULD only use `includeContext: "none"` (or omit it). + */ + context?: object; + /** + * Whether the client supports tool use via tools and toolChoice parameters. + */ + tools?: object; + }; + /** + * Present if the client supports elicitation from the server. + */ + elicitation?: { + form?: object; + url?: object; + }; + /** + * Present if the client supports task-augmented requests. + */ + tasks?: { + /** + * Whether this client supports tasks/list. + */ + list?: object; + /** + * Whether this client supports tasks/cancel. + */ + cancel?: object; + /** + * Specifies which request types can be augmented with tasks. + */ + requests?: { + /** + * Task support for sampling-related requests. + */ + sampling?: { + /** + * Whether the client supports task-augmented sampling/createMessage requests. + */ + createMessage?: object; + }; + /** + * Task support for elicitation-related requests. + */ + elicitation?: { + /** + * Whether the client supports task-augmented elicitation/create requests. + */ + create?: object; + }; + }; + }; + /** + * Extensions that the client supports. Keys are extension identifiers (vendor-prefix/extension-name). + */ + extensions?: { + [key: string]: object; + }; +} +/** + * Capabilities that a server may support. Known capabilities are defined here, in this schema, but this is not a closed set: any server can define its own, additional capabilities. + * + * @category `initialize` + */ +export interface ServerCapabilities { + /** + * Experimental, non-standard capabilities that the server supports. + */ + experimental?: { + [key: string]: object; + }; + /** + * Present if the server supports sending log messages to the client. + */ + logging?: object; + /** + * Present if the server supports argument autocompletion suggestions. + */ + completions?: object; + /** + * Present if the server offers any prompt templates. + */ + prompts?: { + /** + * Whether this server supports notifications for changes to the prompt list. + */ + listChanged?: boolean; + }; + /** + * Present if the server offers any resources to read. + */ + resources?: { + /** + * Whether this server supports subscribing to resource updates. + */ + subscribe?: boolean; + /** + * Whether this server supports notifications for changes to the resource list. + */ + listChanged?: boolean; + }; + /** + * Present if the server offers any tools to call. + */ + tools?: { + /** + * Whether this server supports notifications for changes to the tool list. + */ + listChanged?: boolean; + }; + /** + * Present if the server supports task-augmented requests. + */ + tasks?: { + /** + * Whether this server supports tasks/list. + */ + list?: object; + /** + * Whether this server supports tasks/cancel. + */ + cancel?: object; + /** + * Specifies which request types can be augmented with tasks. + */ + requests?: { + /** + * Task support for tool-related requests. + */ + tools?: { + /** + * Whether the server supports task-augmented tools/call requests. + */ + call?: object; + }; + }; + }; + /** + * Extensions that the server supports. Keys are extension identifiers (vendor-prefix/extension-name). + */ + extensions?: { + [key: string]: object; + }; +} +/** + * An optionally-sized icon that can be displayed in a user interface. + * + * @category Common Types + */ +export interface Icon { + /** + * A standard URI pointing to an icon resource. May be an HTTP/HTTPS URL or a + * `data:` URI with Base64-encoded image data. + * + * Consumers SHOULD takes steps to ensure URLs serving icons are from the + * same domain as the client/server or a trusted domain. + * + * Consumers SHOULD take appropriate precautions when consuming SVGs as they can contain + * executable JavaScript. + * + * @format uri + */ + src: string; + /** + * Optional MIME type override if the source MIME type is missing or generic. + * For example: `"image/png"`, `"image/jpeg"`, or `"image/svg+xml"`. + */ + mimeType?: string; + /** + * Optional array of strings that specify sizes at which the icon can be used. + * Each string should be in WxH format (e.g., `"48x48"`, `"96x96"`) or `"any"` for scalable formats like SVG. + * + * If not provided, the client should assume that the icon can be used at any size. + */ + sizes?: string[]; + /** + * Optional specifier for the theme this icon is designed for. `light` indicates + * the icon is designed to be used with a light background, and `dark` indicates + * the icon is designed to be used with a dark background. + * + * If not provided, the client should assume the icon can be used with any theme. + */ + theme?: "light" | "dark"; +} +/** + * Base interface to add `icons` property. + * + * @internal + */ +export interface Icons { + /** + * Optional set of sized icons that the client can display in a user interface. + * + * Clients that support rendering icons MUST support at least the following MIME types: + * - `image/png` - PNG images (safe, universal compatibility) + * - `image/jpeg` (and `image/jpg`) - JPEG images (safe, universal compatibility) + * + * Clients that support rendering icons SHOULD also support: + * - `image/svg+xml` - SVG images (scalable but requires security precautions) + * - `image/webp` - WebP images (modern, efficient format) + */ + icons?: Icon[]; +} +/** + * Base interface for metadata with name (identifier) and title (display name) properties. + * + * @internal + */ +export interface BaseMetadata { + /** + * Intended for programmatic or logical use, but used as a display name in past specs or fallback (if title isn't present). + */ + name: string; + /** + * Intended for UI and end-user contexts — optimized to be human-readable and easily understood, + * even by those unfamiliar with domain-specific terminology. + * + * If not provided, the name should be used for display (except for Tool, + * where `annotations.title` should be given precedence over using `name`, + * if present). + */ + title?: string; +} +/** + * Describes the MCP implementation. + * + * @category `initialize` + */ +export interface Implementation extends BaseMetadata, Icons { + version: string; + /** + * An optional human-readable description of what this implementation does. + * + * This can be used by clients or servers to provide context about their purpose + * and capabilities. For example, a server might describe the types of resources + * or tools it provides, while a client might describe its intended use case. + */ + description?: string; + /** + * An optional URL of the website for this implementation. + * + * @format uri + */ + websiteUrl?: string; +} +/** + * A ping, issued by either the server or the client, to check that the other party is still alive. The receiver must promptly respond, or else may be disconnected. + * + * @category `ping` + */ +export interface PingRequest extends JSONRPCRequest { + method: "ping"; + params?: RequestParams; +} +/** + * Parameters for a `notifications/progress` notification. + * + * @category `notifications/progress` + */ +export interface ProgressNotificationParams extends NotificationParams { + /** + * The progress token which was given in the initial request, used to associate this notification with the request that is proceeding. + */ + progressToken: ProgressToken; + /** + * The progress thus far. This should increase every time progress is made, even if the total is unknown. + * + * @TJS-type number + */ + progress: number; + /** + * Total number of items to process (or total progress required), if known. + * + * @TJS-type number + */ + total?: number; + /** + * An optional message describing the current progress. + */ + message?: string; +} +/** + * An out-of-band notification used to inform the receiver of a progress update for a long-running request. + * + * @category `notifications/progress` + */ +export interface ProgressNotification extends JSONRPCNotification { + method: "notifications/progress"; + params: ProgressNotificationParams; +} +/** + * Common parameters for paginated requests. + * + * @internal + */ +export interface PaginatedRequestParams extends RequestParams { + /** + * An opaque token representing the current pagination position. + * If provided, the server should return results starting after this cursor. + */ + cursor?: Cursor; +} +/** @internal */ +export interface PaginatedRequest extends JSONRPCRequest { + params?: PaginatedRequestParams; +} +/** @internal */ +export interface PaginatedResult extends Result { + /** + * An opaque token representing the pagination position after the last returned result. + * If present, there may be more results available. + */ + nextCursor?: Cursor; +} +/** + * Sent from the client to request a list of resources the server has. + * + * @category `resources/list` + */ +export interface ListResourcesRequest extends PaginatedRequest { + method: "resources/list"; +} +/** + * The server's response to a resources/list request from the client. + * + * @category `resources/list` + */ +export interface ListResourcesResult extends PaginatedResult { + resources: Resource[]; +} +/** + * Sent from the client to request a list of resource templates the server has. + * + * @category `resources/templates/list` + */ +export interface ListResourceTemplatesRequest extends PaginatedRequest { + method: "resources/templates/list"; +} +/** + * The server's response to a resources/templates/list request from the client. + * + * @category `resources/templates/list` + */ +export interface ListResourceTemplatesResult extends PaginatedResult { + resourceTemplates: ResourceTemplate[]; +} +/** + * Common parameters when working with resources. + * + * @internal + */ +export interface ResourceRequestParams extends RequestParams { + /** + * The URI of the resource. The URI can use any protocol; it is up to the server how to interpret it. + * + * @format uri + */ + uri: string; +} +/** + * Parameters for a `resources/read` request. + * + * @category `resources/read` + */ +export interface ReadResourceRequestParams extends ResourceRequestParams { +} +/** + * Sent from the client to the server, to read a specific resource URI. + * + * @category `resources/read` + */ +export interface ReadResourceRequest extends JSONRPCRequest { + method: "resources/read"; + params: ReadResourceRequestParams; +} +/** + * The server's response to a resources/read request from the client. + * + * @category `resources/read` + */ +export interface ReadResourceResult extends Result { + contents: (TextResourceContents | BlobResourceContents)[]; +} +/** + * An optional notification from the server to the client, informing it that the list of resources it can read from has changed. This may be issued by servers without any previous subscription from the client. + * + * @category `notifications/resources/list_changed` + */ +export interface ResourceListChangedNotification extends JSONRPCNotification { + method: "notifications/resources/list_changed"; + params?: NotificationParams; +} +/** + * Parameters for a `resources/subscribe` request. + * + * @category `resources/subscribe` + */ +export interface SubscribeRequestParams extends ResourceRequestParams { +} +/** + * Sent from the client to request resources/updated notifications from the server whenever a particular resource changes. + * + * @category `resources/subscribe` + */ +export interface SubscribeRequest extends JSONRPCRequest { + method: "resources/subscribe"; + params: SubscribeRequestParams; +} +/** + * Parameters for a `resources/unsubscribe` request. + * + * @category `resources/unsubscribe` + */ +export interface UnsubscribeRequestParams extends ResourceRequestParams { +} +/** + * Sent from the client to request cancellation of resources/updated notifications from the server. This should follow a previous resources/subscribe request. + * + * @category `resources/unsubscribe` + */ +export interface UnsubscribeRequest extends JSONRPCRequest { + method: "resources/unsubscribe"; + params: UnsubscribeRequestParams; +} +/** + * Parameters for a `notifications/resources/updated` notification. + * + * @category `notifications/resources/updated` + */ +export interface ResourceUpdatedNotificationParams extends NotificationParams { + /** + * The URI of the resource that has been updated. This might be a sub-resource of the one that the client actually subscribed to. + * + * @format uri + */ + uri: string; +} +/** + * A notification from the server to the client, informing it that a resource has changed and may need to be read again. This should only be sent if the client previously sent a resources/subscribe request. + * + * @category `notifications/resources/updated` + */ +export interface ResourceUpdatedNotification extends JSONRPCNotification { + method: "notifications/resources/updated"; + params: ResourceUpdatedNotificationParams; +} +/** + * A known resource that the server is capable of reading. + * + * @category `resources/list` + */ +export interface Resource extends BaseMetadata, Icons { + /** + * The URI of this resource. + * + * @format uri + */ + uri: string; + /** + * A description of what this resource represents. + * + * This can be used by clients to improve the LLM's understanding of available resources. It can be thought of like a "hint" to the model. + */ + description?: string; + /** + * The MIME type of this resource, if known. + */ + mimeType?: string; + /** + * Optional annotations for the client. + */ + annotations?: Annotations; + /** + * The size of the raw resource content, in bytes (i.e., before base64 encoding or any tokenization), if known. + * + * This can be used by Hosts to display file sizes and estimate context window usage. + */ + size?: number; + /** + * See [General fields: `_meta`](/specification/draft/basic/index#meta) for notes on `_meta` usage. + */ + _meta?: { + [key: string]: unknown; + }; +} +/** + * A template description for resources available on the server. + * + * @category `resources/templates/list` + */ +export interface ResourceTemplate extends BaseMetadata, Icons { + /** + * A URI template (according to RFC 6570) that can be used to construct resource URIs. + * + * @format uri-template + */ + uriTemplate: string; + /** + * A description of what this template is for. + * + * This can be used by clients to improve the LLM's understanding of available resources. It can be thought of like a "hint" to the model. + */ + description?: string; + /** + * The MIME type for all resources that match this template. This should only be included if all resources matching this template have the same type. + */ + mimeType?: string; + /** + * Optional annotations for the client. + */ + annotations?: Annotations; + /** + * See [General fields: `_meta`](/specification/draft/basic/index#meta) for notes on `_meta` usage. + */ + _meta?: { + [key: string]: unknown; + }; +} +/** + * The contents of a specific resource or sub-resource. + * + * @internal + */ +export interface ResourceContents { + /** + * The URI of this resource. + * + * @format uri + */ + uri: string; + /** + * The MIME type of this resource, if known. + */ + mimeType?: string; + /** + * See [General fields: `_meta`](/specification/draft/basic/index#meta) for notes on `_meta` usage. + */ + _meta?: { + [key: string]: unknown; + }; +} +/** + * @category Content + */ +export interface TextResourceContents extends ResourceContents { + /** + * The text of the item. This must only be set if the item can actually be represented as text (not binary data). + */ + text: string; +} +/** + * @category Content + */ +export interface BlobResourceContents extends ResourceContents { + /** + * A base64-encoded string representing the binary data of the item. + * + * @format byte + */ + blob: string; +} +/** + * Sent from the client to request a list of prompts and prompt templates the server has. + * + * @category `prompts/list` + */ +export interface ListPromptsRequest extends PaginatedRequest { + method: "prompts/list"; +} +/** + * The server's response to a prompts/list request from the client. + * + * @category `prompts/list` + */ +export interface ListPromptsResult extends PaginatedResult { + prompts: Prompt[]; +} +/** + * Parameters for a `prompts/get` request. + * + * @category `prompts/get` + */ +export interface GetPromptRequestParams extends RequestParams { + /** + * The name of the prompt or prompt template. + */ + name: string; + /** + * Arguments to use for templating the prompt. + */ + arguments?: { + [key: string]: string; + }; +} +/** + * Used by the client to get a prompt provided by the server. + * + * @category `prompts/get` + */ +export interface GetPromptRequest extends JSONRPCRequest { + method: "prompts/get"; + params: GetPromptRequestParams; +} +/** + * The server's response to a prompts/get request from the client. + * + * @category `prompts/get` + */ +export interface GetPromptResult extends Result { + /** + * An optional description for the prompt. + */ + description?: string; + messages: PromptMessage[]; +} +/** + * A prompt or prompt template that the server offers. + * + * @category `prompts/list` + */ +export interface Prompt extends BaseMetadata, Icons { + /** + * An optional description of what this prompt provides + */ + description?: string; + /** + * A list of arguments to use for templating the prompt. + */ + arguments?: PromptArgument[]; + /** + * See [General fields: `_meta`](/specification/draft/basic/index#meta) for notes on `_meta` usage. + */ + _meta?: { + [key: string]: unknown; + }; +} +/** + * Describes an argument that a prompt can accept. + * + * @category `prompts/list` + */ +export interface PromptArgument extends BaseMetadata { + /** + * A human-readable description of the argument. + */ + description?: string; + /** + * Whether this argument must be provided. + */ + required?: boolean; +} +/** + * The sender or recipient of messages and data in a conversation. + * + * @category Common Types + */ +export type Role = "user" | "assistant"; +/** + * Describes a message returned as part of a prompt. + * + * This is similar to `SamplingMessage`, but also supports the embedding of + * resources from the MCP server. + * + * @category `prompts/get` + */ +export interface PromptMessage { + role: Role; + content: ContentBlock; +} +/** + * A resource that the server is capable of reading, included in a prompt or tool call result. + * + * Note: resource links returned by tools are not guaranteed to appear in the results of `resources/list` requests. + * + * @category Content + */ +export interface ResourceLink extends Resource { + type: "resource_link"; +} +/** + * The contents of a resource, embedded into a prompt or tool call result. + * + * It is up to the client how best to render embedded resources for the benefit + * of the LLM and/or the user. + * + * @category Content + */ +export interface EmbeddedResource { + type: "resource"; + resource: TextResourceContents | BlobResourceContents; + /** + * Optional annotations for the client. + */ + annotations?: Annotations; + /** + * See [General fields: `_meta`](/specification/draft/basic/index#meta) for notes on `_meta` usage. + */ + _meta?: { + [key: string]: unknown; + }; +} +/** + * An optional notification from the server to the client, informing it that the list of prompts it offers has changed. This may be issued by servers without any previous subscription from the client. + * + * @category `notifications/prompts/list_changed` + */ +export interface PromptListChangedNotification extends JSONRPCNotification { + method: "notifications/prompts/list_changed"; + params?: NotificationParams; +} +/** + * Sent from the client to request a list of tools the server has. + * + * @category `tools/list` + */ +export interface ListToolsRequest extends PaginatedRequest { + method: "tools/list"; +} +/** + * The server's response to a tools/list request from the client. + * + * @category `tools/list` + */ +export interface ListToolsResult extends PaginatedResult { + tools: Tool[]; +} +/** + * The server's response to a tool call. + * + * @category `tools/call` + */ +export interface CallToolResult extends Result { + /** + * A list of content objects that represent the unstructured result of the tool call. + */ + content: ContentBlock[]; + /** + * An optional JSON object that represents the structured result of the tool call. + */ + structuredContent?: { + [key: string]: unknown; + }; + /** + * Whether the tool call ended in an error. + * + * If not set, this is assumed to be false (the call was successful). + * + * Any errors that originate from the tool SHOULD be reported inside the result + * object, with `isError` set to true, _not_ as an MCP protocol-level error + * response. Otherwise, the LLM would not be able to see that an error occurred + * and self-correct. + * + * However, any errors in _finding_ the tool, an error indicating that the + * server does not support tool calls, or any other exceptional conditions, + * should be reported as an MCP error response. + */ + isError?: boolean; +} +/** + * Parameters for a `tools/call` request. + * + * @category `tools/call` + */ +export interface CallToolRequestParams extends TaskAugmentedRequestParams { + /** + * The name of the tool. + */ + name: string; + /** + * Arguments to use for the tool call. + */ + arguments?: { + [key: string]: unknown; + }; +} +/** + * Used by the client to invoke a tool provided by the server. + * + * @category `tools/call` + */ +export interface CallToolRequest extends JSONRPCRequest { + method: "tools/call"; + params: CallToolRequestParams; +} +/** + * An optional notification from the server to the client, informing it that the list of tools it offers has changed. This may be issued by servers without any previous subscription from the client. + * + * @category `notifications/tools/list_changed` + */ +export interface ToolListChangedNotification extends JSONRPCNotification { + method: "notifications/tools/list_changed"; + params?: NotificationParams; +} +/** + * Additional properties describing a Tool to clients. + * + * NOTE: all properties in ToolAnnotations are **hints**. + * They are not guaranteed to provide a faithful description of + * tool behavior (including descriptive properties like `title`). + * + * Clients should never make tool use decisions based on ToolAnnotations + * received from untrusted servers. + * + * @category `tools/list` + */ +export interface ToolAnnotations { + /** + * A human-readable title for the tool. + */ + title?: string; + /** + * If true, the tool does not modify its environment. + * + * Default: false + */ + readOnlyHint?: boolean; + /** + * If true, the tool may perform destructive updates to its environment. + * If false, the tool performs only additive updates. + * + * (This property is meaningful only when `readOnlyHint == false`) + * + * Default: true + */ + destructiveHint?: boolean; + /** + * If true, calling the tool repeatedly with the same arguments + * will have no additional effect on its environment. + * + * (This property is meaningful only when `readOnlyHint == false`) + * + * Default: false + */ + idempotentHint?: boolean; + /** + * If true, this tool may interact with an "open world" of external + * entities. If false, the tool's domain of interaction is closed. + * For example, the world of a web search tool is open, whereas that + * of a memory tool is not. + * + * Default: true + */ + openWorldHint?: boolean; +} +/** + * Execution-related properties for a tool. + * + * @category `tools/list` + */ +export interface ToolExecution { + /** + * Indicates whether this tool supports task-augmented execution. + * This allows clients to handle long-running operations through polling + * the task system. + * + * - "forbidden": Tool does not support task-augmented execution (default when absent) + * - "optional": Tool may support task-augmented execution + * - "required": Tool requires task-augmented execution + * + * Default: "forbidden" + */ + taskSupport?: "forbidden" | "optional" | "required"; +} +/** + * Definition for a tool the client can call. + * + * @category `tools/list` + */ +export interface Tool extends BaseMetadata, Icons { + /** + * A human-readable description of the tool. + * + * This can be used by clients to improve the LLM's understanding of available tools. It can be thought of like a "hint" to the model. + */ + description?: string; + /** + * A JSON Schema object defining the expected parameters for the tool. + */ + inputSchema: { + $schema?: string; + type: "object"; + properties?: { + [key: string]: object; + }; + required?: string[]; + }; + /** + * Execution-related properties for this tool. + */ + execution?: ToolExecution; + /** + * An optional JSON Schema object defining the structure of the tool's output returned in + * the structuredContent field of a CallToolResult. + * + * Defaults to JSON Schema 2020-12 when no explicit $schema is provided. + * Currently restricted to type: "object" at the root level. + */ + outputSchema?: { + $schema?: string; + type: "object"; + properties?: { + [key: string]: object; + }; + required?: string[]; + }; + /** + * Optional additional tool information. + * + * Display name precedence order is: title, annotations.title, then name. + */ + annotations?: ToolAnnotations; + /** + * See [General fields: `_meta`](/specification/draft/basic/index#meta) for notes on `_meta` usage. + */ + _meta?: { + [key: string]: unknown; + }; +} +/** + * The status of a task. + * + * @category `tasks` + */ +export type TaskStatus = "working" | "input_required" | "completed" | "failed" | "cancelled"; +/** + * Metadata for augmenting a request with task execution. + * Include this in the `task` field of the request parameters. + * + * @category `tasks` + */ +export interface TaskMetadata { + /** + * Requested duration in milliseconds to retain task from creation. + */ + ttl?: number; +} +/** + * Metadata for associating messages with a task. + * Include this in the `_meta` field under the key `io.modelcontextprotocol/related-task`. + * + * @category `tasks` + */ +export interface RelatedTaskMetadata { + /** + * The task identifier this message is associated with. + */ + taskId: string; +} +/** + * Data associated with a task. + * + * @category `tasks` + */ +export interface Task { + /** + * The task identifier. + */ + taskId: string; + /** + * Current task state. + */ + status: TaskStatus; + /** + * Optional human-readable message describing the current task state. + * This can provide context for any status, including: + * - Reasons for "cancelled" status + * - Summaries for "completed" status + * - Diagnostic information for "failed" status (e.g., error details, what went wrong) + */ + statusMessage?: string; + /** + * ISO 8601 timestamp when the task was created. + */ + createdAt: string; + /** + * ISO 8601 timestamp when the task was last updated. + */ + lastUpdatedAt: string; + /** + * Actual retention duration from creation in milliseconds, null for unlimited. + */ + ttl: number | null; + /** + * Suggested polling interval in milliseconds. + */ + pollInterval?: number; +} +/** + * A response to a task-augmented request. + * + * @category `tasks` + */ +export interface CreateTaskResult extends Result { + task: Task; +} +/** + * A request to retrieve the state of a task. + * + * @category `tasks/get` + */ +export interface GetTaskRequest extends JSONRPCRequest { + method: "tasks/get"; + params: { + /** + * The task identifier to query. + */ + taskId: string; + }; +} +/** + * The response to a tasks/get request. + * + * @category `tasks/get` + */ +export type GetTaskResult = Result & Task; +/** + * A request to retrieve the result of a completed task. + * + * @category `tasks/result` + */ +export interface GetTaskPayloadRequest extends JSONRPCRequest { + method: "tasks/result"; + params: { + /** + * The task identifier to retrieve results for. + */ + taskId: string; + }; +} +/** + * The response to a tasks/result request. + * The structure matches the result type of the original request. + * For example, a tools/call task would return the CallToolResult structure. + * + * @category `tasks/result` + */ +export interface GetTaskPayloadResult extends Result { + [key: string]: unknown; +} +/** + * A request to cancel a task. + * + * @category `tasks/cancel` + */ +export interface CancelTaskRequest extends JSONRPCRequest { + method: "tasks/cancel"; + params: { + /** + * The task identifier to cancel. + */ + taskId: string; + }; +} +/** + * The response to a tasks/cancel request. + * + * @category `tasks/cancel` + */ +export type CancelTaskResult = Result & Task; +/** + * A request to retrieve a list of tasks. + * + * @category `tasks/list` + */ +export interface ListTasksRequest extends PaginatedRequest { + method: "tasks/list"; +} +/** + * The response to a tasks/list request. + * + * @category `tasks/list` + */ +export interface ListTasksResult extends PaginatedResult { + tasks: Task[]; +} +/** + * Parameters for a `notifications/tasks/status` notification. + * + * @category `notifications/tasks/status` + */ +export type TaskStatusNotificationParams = NotificationParams & Task; +/** + * An optional notification from the receiver to the requestor, informing them that a task's status has changed. Receivers are not required to send these notifications. + * + * @category `notifications/tasks/status` + */ +export interface TaskStatusNotification extends JSONRPCNotification { + method: "notifications/tasks/status"; + params: TaskStatusNotificationParams; +} +/** + * Parameters for a `logging/setLevel` request. + * + * @category `logging/setLevel` + */ +export interface SetLevelRequestParams extends RequestParams { + /** + * The level of logging that the client wants to receive from the server. The server should send all logs at this level and higher (i.e., more severe) to the client as notifications/message. + */ + level: LoggingLevel; +} +/** + * A request from the client to the server, to enable or adjust logging. + * + * @category `logging/setLevel` + */ +export interface SetLevelRequest extends JSONRPCRequest { + method: "logging/setLevel"; + params: SetLevelRequestParams; +} +/** + * Parameters for a `notifications/message` notification. + * + * @category `notifications/message` + */ +export interface LoggingMessageNotificationParams extends NotificationParams { + /** + * The severity of this log message. + */ + level: LoggingLevel; + /** + * An optional name of the logger issuing this message. + */ + logger?: string; + /** + * The data to be logged, such as a string message or an object. Any JSON serializable type is allowed here. + */ + data: unknown; +} +/** + * JSONRPCNotification of a log message passed from server to client. If no logging/setLevel request has been sent from the client, the server MAY decide which messages to send automatically. + * + * @category `notifications/message` + */ +export interface LoggingMessageNotification extends JSONRPCNotification { + method: "notifications/message"; + params: LoggingMessageNotificationParams; +} +/** + * The severity of a log message. + * + * These map to syslog message severities, as specified in RFC-5424: + * https://datatracker.ietf.org/doc/html/rfc5424#section-6.2.1 + * + * @category Common Types + */ +export type LoggingLevel = "debug" | "info" | "notice" | "warning" | "error" | "critical" | "alert" | "emergency"; +/** + * Parameters for a `sampling/createMessage` request. + * + * @category `sampling/createMessage` + */ +export interface CreateMessageRequestParams extends TaskAugmentedRequestParams { + messages: SamplingMessage[]; + /** + * The server's preferences for which model to select. The client MAY ignore these preferences. + */ + modelPreferences?: ModelPreferences; + /** + * An optional system prompt the server wants to use for sampling. The client MAY modify or omit this prompt. + */ + systemPrompt?: string; + /** + * A request to include context from one or more MCP servers (including the caller), to be attached to the prompt. + * The client MAY ignore this request. + * + * Default is "none". Values "thisServer" and "allServers" are soft-deprecated. Servers SHOULD only use these values if the client + * declares ClientCapabilities.sampling.context. These values may be removed in future spec releases. + */ + includeContext?: "none" | "thisServer" | "allServers"; + /** + * @TJS-type number + */ + temperature?: number; + /** + * The requested maximum number of tokens to sample (to prevent runaway completions). + * + * The client MAY choose to sample fewer tokens than the requested maximum. + */ + maxTokens: number; + stopSequences?: string[]; + /** + * Optional metadata to pass through to the LLM provider. The format of this metadata is provider-specific. + */ + metadata?: object; + /** + * Tools that the model may use during generation. + * The client MUST return an error if this field is provided but ClientCapabilities.sampling.tools is not declared. + */ + tools?: Tool[]; + /** + * Controls how the model uses tools. + * The client MUST return an error if this field is provided but ClientCapabilities.sampling.tools is not declared. + * Default is `{ mode: "auto" }`. + */ + toolChoice?: ToolChoice; +} +/** + * Controls tool selection behavior for sampling requests. + * + * @category `sampling/createMessage` + */ +export interface ToolChoice { + /** + * Controls the tool use ability of the model: + * - "auto": Model decides whether to use tools (default) + * - "required": Model MUST use at least one tool before completing + * - "none": Model MUST NOT use any tools + */ + mode?: "auto" | "required" | "none"; +} +/** + * A request from the server to sample an LLM via the client. The client has full discretion over which model to select. The client should also inform the user before beginning sampling, to allow them to inspect the request (human in the loop) and decide whether to approve it. + * + * @category `sampling/createMessage` + */ +export interface CreateMessageRequest extends JSONRPCRequest { + method: "sampling/createMessage"; + params: CreateMessageRequestParams; +} +/** + * The client's response to a sampling/createMessage request from the server. + * The client should inform the user before returning the sampled message, to allow them + * to inspect the response (human in the loop) and decide whether to allow the server to see it. + * + * @category `sampling/createMessage` + */ +export interface CreateMessageResult extends Result, SamplingMessage { + /** + * The name of the model that generated the message. + */ + model: string; + /** + * The reason why sampling stopped, if known. + * + * Standard values: + * - "endTurn": Natural end of the assistant's turn + * - "stopSequence": A stop sequence was encountered + * - "maxTokens": Maximum token limit was reached + * - "toolUse": The model wants to use one or more tools + * + * This field is an open string to allow for provider-specific stop reasons. + */ + stopReason?: "endTurn" | "stopSequence" | "maxTokens" | "toolUse" | string; +} +/** + * Describes a message issued to or received from an LLM API. + * + * @category `sampling/createMessage` + */ +export interface SamplingMessage { + role: Role; + content: SamplingMessageContentBlock | SamplingMessageContentBlock[]; + /** + * See [General fields: `_meta`](/specification/draft/basic/index#meta) for notes on `_meta` usage. + */ + _meta?: { + [key: string]: unknown; + }; +} +export type SamplingMessageContentBlock = TextContent | ImageContent | AudioContent | ToolUseContent | ToolResultContent; +/** + * Optional annotations for the client. The client can use annotations to inform how objects are used or displayed + * + * @category Common Types + */ +export interface Annotations { + /** + * Describes who the intended audience of this object or data is. + * + * It can include multiple entries to indicate content useful for multiple audiences (e.g., `["user", "assistant"]`). + */ + audience?: Role[]; + /** + * Describes how important this data is for operating the server. + * + * A value of 1 means "most important," and indicates that the data is + * effectively required, while 0 means "least important," and indicates that + * the data is entirely optional. + * + * @TJS-type number + * @minimum 0 + * @maximum 1 + */ + priority?: number; + /** + * The moment the resource was last modified, as an ISO 8601 formatted string. + * + * Should be an ISO 8601 formatted string (e.g., "2025-01-12T15:00:58Z"). + * + * Examples: last activity timestamp in an open file, timestamp when the resource + * was attached, etc. + */ + lastModified?: string; +} +/** + * @category Content + */ +export type ContentBlock = TextContent | ImageContent | AudioContent | ResourceLink | EmbeddedResource; +/** + * Text provided to or from an LLM. + * + * @category Content + */ +export interface TextContent { + type: "text"; + /** + * The text content of the message. + */ + text: string; + /** + * Optional annotations for the client. + */ + annotations?: Annotations; + /** + * See [General fields: `_meta`](/specification/draft/basic/index#meta) for notes on `_meta` usage. + */ + _meta?: { + [key: string]: unknown; + }; +} +/** + * An image provided to or from an LLM. + * + * @category Content + */ +export interface ImageContent { + type: "image"; + /** + * The base64-encoded image data. + * + * @format byte + */ + data: string; + /** + * The MIME type of the image. Different providers may support different image types. + */ + mimeType: string; + /** + * Optional annotations for the client. + */ + annotations?: Annotations; + /** + * See [General fields: `_meta`](/specification/draft/basic/index#meta) for notes on `_meta` usage. + */ + _meta?: { + [key: string]: unknown; + }; +} +/** + * Audio provided to or from an LLM. + * + * @category Content + */ +export interface AudioContent { + type: "audio"; + /** + * The base64-encoded audio data. + * + * @format byte + */ + data: string; + /** + * The MIME type of the audio. Different providers may support different audio types. + */ + mimeType: string; + /** + * Optional annotations for the client. + */ + annotations?: Annotations; + /** + * See [General fields: `_meta`](/specification/draft/basic/index#meta) for notes on `_meta` usage. + */ + _meta?: { + [key: string]: unknown; + }; +} +/** + * A request from the assistant to call a tool. + * + * @category `sampling/createMessage` + */ +export interface ToolUseContent { + type: "tool_use"; + /** + * A unique identifier for this tool use. + * + * This ID is used to match tool results to their corresponding tool uses. + */ + id: string; + /** + * The name of the tool to call. + */ + name: string; + /** + * The arguments to pass to the tool, conforming to the tool's input schema. + */ + input: { + [key: string]: unknown; + }; + /** + * Optional metadata about the tool use. Clients SHOULD preserve this field when + * including tool uses in subsequent sampling requests to enable caching optimizations. + * + * See [General fields: `_meta`](/specification/draft/basic/index#meta) for notes on `_meta` usage. + */ + _meta?: { + [key: string]: unknown; + }; +} +/** + * The result of a tool use, provided by the user back to the assistant. + * + * @category `sampling/createMessage` + */ +export interface ToolResultContent { + type: "tool_result"; + /** + * The ID of the tool use this result corresponds to. + * + * This MUST match the ID from a previous ToolUseContent. + */ + toolUseId: string; + /** + * The unstructured result content of the tool use. + * + * This has the same format as CallToolResult.content and can include text, images, + * audio, resource links, and embedded resources. + */ + content: ContentBlock[]; + /** + * An optional structured result object. + * + * If the tool defined an outputSchema, this SHOULD conform to that schema. + */ + structuredContent?: { + [key: string]: unknown; + }; + /** + * Whether the tool use resulted in an error. + * + * If true, the content typically describes the error that occurred. + * Default: false + */ + isError?: boolean; + /** + * Optional metadata about the tool result. Clients SHOULD preserve this field when + * including tool results in subsequent sampling requests to enable caching optimizations. + * + * See [General fields: `_meta`](/specification/draft/basic/index#meta) for notes on `_meta` usage. + */ + _meta?: { + [key: string]: unknown; + }; +} +/** + * The server's preferences for model selection, requested of the client during sampling. + * + * Because LLMs can vary along multiple dimensions, choosing the "best" model is + * rarely straightforward. Different models excel in different areas—some are + * faster but less capable, others are more capable but more expensive, and so + * on. This interface allows servers to express their priorities across multiple + * dimensions to help clients make an appropriate selection for their use case. + * + * These preferences are always advisory. The client MAY ignore them. It is also + * up to the client to decide how to interpret these preferences and how to + * balance them against other considerations. + * + * @category `sampling/createMessage` + */ +export interface ModelPreferences { + /** + * Optional hints to use for model selection. + * + * If multiple hints are specified, the client MUST evaluate them in order + * (such that the first match is taken). + * + * The client SHOULD prioritize these hints over the numeric priorities, but + * MAY still use the priorities to select from ambiguous matches. + */ + hints?: ModelHint[]; + /** + * How much to prioritize cost when selecting a model. A value of 0 means cost + * is not important, while a value of 1 means cost is the most important + * factor. + * + * @TJS-type number + * @minimum 0 + * @maximum 1 + */ + costPriority?: number; + /** + * How much to prioritize sampling speed (latency) when selecting a model. A + * value of 0 means speed is not important, while a value of 1 means speed is + * the most important factor. + * + * @TJS-type number + * @minimum 0 + * @maximum 1 + */ + speedPriority?: number; + /** + * How much to prioritize intelligence and capabilities when selecting a + * model. A value of 0 means intelligence is not important, while a value of 1 + * means intelligence is the most important factor. + * + * @TJS-type number + * @minimum 0 + * @maximum 1 + */ + intelligencePriority?: number; +} +/** + * Hints to use for model selection. + * + * Keys not declared here are currently left unspecified by the spec and are up + * to the client to interpret. + * + * @category `sampling/createMessage` + */ +export interface ModelHint { + /** + * A hint for a model name. + * + * The client SHOULD treat this as a substring of a model name; for example: + * - `claude-3-5-sonnet` should match `claude-3-5-sonnet-20241022` + * - `sonnet` should match `claude-3-5-sonnet-20241022`, `claude-3-sonnet-20240229`, etc. + * - `claude` should match any Claude model + * + * The client MAY also map the string to a different provider's model name or a different model family, as long as it fills a similar niche; for example: + * - `gemini-1.5-flash` could match `claude-3-haiku-20240307` + */ + name?: string; +} +/** + * Parameters for a `completion/complete` request. + * + * @category `completion/complete` + */ +export interface CompleteRequestParams extends RequestParams { + ref: PromptReference | ResourceTemplateReference; + /** + * The argument's information + */ + argument: { + /** + * The name of the argument + */ + name: string; + /** + * The value of the argument to use for completion matching. + */ + value: string; + }; + /** + * Additional, optional context for completions + */ + context?: { + /** + * Previously-resolved variables in a URI template or prompt. + */ + arguments?: { + [key: string]: string; + }; + }; +} +/** + * A request from the client to the server, to ask for completion options. + * + * @category `completion/complete` + */ +export interface CompleteRequest extends JSONRPCRequest { + method: "completion/complete"; + params: CompleteRequestParams; +} +/** + * The server's response to a completion/complete request + * + * @category `completion/complete` + */ +export interface CompleteResult extends Result { + completion: { + /** + * An array of completion values. Must not exceed 100 items. + */ + values: string[]; + /** + * The total number of completion options available. This can exceed the number of values actually sent in the response. + */ + total?: number; + /** + * Indicates whether there are additional completion options beyond those provided in the current response, even if the exact total is unknown. + */ + hasMore?: boolean; + }; +} +/** + * A reference to a resource or resource template definition. + * + * @category `completion/complete` + */ +export interface ResourceTemplateReference { + type: "ref/resource"; + /** + * The URI or URI template of the resource. + * + * @format uri-template + */ + uri: string; +} +/** + * Identifies a prompt. + * + * @category `completion/complete` + */ +export interface PromptReference extends BaseMetadata { + type: "ref/prompt"; +} +/** + * Sent from the server to request a list of root URIs from the client. Roots allow + * servers to ask for specific directories or files to operate on. A common example + * for roots is providing a set of repositories or directories a server should operate + * on. + * + * This request is typically used when the server needs to understand the file system + * structure or access specific locations that the client has permission to read from. + * + * @category `roots/list` + */ +export interface ListRootsRequest extends JSONRPCRequest { + method: "roots/list"; + params?: RequestParams; +} +/** + * The client's response to a roots/list request from the server. + * This result contains an array of Root objects, each representing a root directory + * or file that the server can operate on. + * + * @category `roots/list` + */ +export interface ListRootsResult extends Result { + roots: Root[]; +} +/** + * Represents a root directory or file that the server can operate on. + * + * @category `roots/list` + */ +export interface Root { + /** + * The URI identifying the root. This *must* start with file:// for now. + * This restriction may be relaxed in future versions of the protocol to allow + * other URI schemes. + * + * @format uri + */ + uri: string; + /** + * An optional name for the root. This can be used to provide a human-readable + * identifier for the root, which may be useful for display purposes or for + * referencing the root in other parts of the application. + */ + name?: string; + /** + * See [General fields: `_meta`](/specification/draft/basic/index#meta) for notes on `_meta` usage. + */ + _meta?: { + [key: string]: unknown; + }; +} +/** + * A notification from the client to the server, informing it that the list of roots has changed. + * This notification should be sent whenever the client adds, removes, or modifies any root. + * The server should then request an updated list of roots using the ListRootsRequest. + * + * @category `notifications/roots/list_changed` + */ +export interface RootsListChangedNotification extends JSONRPCNotification { + method: "notifications/roots/list_changed"; + params?: NotificationParams; +} +/** + * The parameters for a request to elicit non-sensitive information from the user via a form in the client. + * + * @category `elicitation/create` + */ +export interface ElicitRequestFormParams extends TaskAugmentedRequestParams { + /** + * The elicitation mode. + */ + mode?: "form"; + /** + * The message to present to the user describing what information is being requested. + */ + message: string; + /** + * A restricted subset of JSON Schema. + * Only top-level properties are allowed, without nesting. + */ + requestedSchema: { + $schema?: string; + type: "object"; + properties: { + [key: string]: PrimitiveSchemaDefinition; + }; + required?: string[]; + }; +} +/** + * The parameters for a request to elicit information from the user via a URL in the client. + * + * @category `elicitation/create` + */ +export interface ElicitRequestURLParams extends TaskAugmentedRequestParams { + /** + * The elicitation mode. + */ + mode: "url"; + /** + * The message to present to the user explaining why the interaction is needed. + */ + message: string; + /** + * The ID of the elicitation, which must be unique within the context of the server. + * The client MUST treat this ID as an opaque value. + */ + elicitationId: string; + /** + * The URL that the user should navigate to. + * + * @format uri + */ + url: string; +} +/** + * The parameters for a request to elicit additional information from the user via the client. + * + * @category `elicitation/create` + */ +export type ElicitRequestParams = ElicitRequestFormParams | ElicitRequestURLParams; +/** + * A request from the server to elicit additional information from the user via the client. + * + * @category `elicitation/create` + */ +export interface ElicitRequest extends JSONRPCRequest { + method: "elicitation/create"; + params: ElicitRequestParams; +} +/** + * Restricted schema definitions that only allow primitive types + * without nested objects or arrays. + * + * @category `elicitation/create` + */ +export type PrimitiveSchemaDefinition = StringSchema | NumberSchema | BooleanSchema | EnumSchema; +/** + * @category `elicitation/create` + */ +export interface StringSchema { + type: "string"; + title?: string; + description?: string; + minLength?: number; + maxLength?: number; + format?: "email" | "uri" | "date" | "date-time"; + default?: string; +} +/** + * @category `elicitation/create` + */ +export interface NumberSchema { + type: "number" | "integer"; + title?: string; + description?: string; + minimum?: number; + maximum?: number; + default?: number; +} +/** + * @category `elicitation/create` + */ +export interface BooleanSchema { + type: "boolean"; + title?: string; + description?: string; + default?: boolean; +} +/** + * Schema for single-selection enumeration without display titles for options. + * + * @category `elicitation/create` + */ +export interface UntitledSingleSelectEnumSchema { + type: "string"; + /** + * Optional title for the enum field. + */ + title?: string; + /** + * Optional description for the enum field. + */ + description?: string; + /** + * Array of enum values to choose from. + */ + enum: string[]; + /** + * Optional default value. + */ + default?: string; +} +/** + * Schema for single-selection enumeration with display titles for each option. + * + * @category `elicitation/create` + */ +export interface TitledSingleSelectEnumSchema { + type: "string"; + /** + * Optional title for the enum field. + */ + title?: string; + /** + * Optional description for the enum field. + */ + description?: string; + /** + * Array of enum options with values and display labels. + */ + oneOf: Array<{ + /** + * The enum value. + */ + const: string; + /** + * Display label for this option. + */ + title: string; + }>; + /** + * Optional default value. + */ + default?: string; +} +/** + * @category `elicitation/create` + */ +export type SingleSelectEnumSchema = UntitledSingleSelectEnumSchema | TitledSingleSelectEnumSchema; +/** + * Schema for multiple-selection enumeration without display titles for options. + * + * @category `elicitation/create` + */ +export interface UntitledMultiSelectEnumSchema { + type: "array"; + /** + * Optional title for the enum field. + */ + title?: string; + /** + * Optional description for the enum field. + */ + description?: string; + /** + * Minimum number of items to select. + */ + minItems?: number; + /** + * Maximum number of items to select. + */ + maxItems?: number; + /** + * Schema for the array items. + */ + items: { + type: "string"; + /** + * Array of enum values to choose from. + */ + enum: string[]; + }; + /** + * Optional default value. + */ + default?: string[]; +} +/** + * Schema for multiple-selection enumeration with display titles for each option. + * + * @category `elicitation/create` + */ +export interface TitledMultiSelectEnumSchema { + type: "array"; + /** + * Optional title for the enum field. + */ + title?: string; + /** + * Optional description for the enum field. + */ + description?: string; + /** + * Minimum number of items to select. + */ + minItems?: number; + /** + * Maximum number of items to select. + */ + maxItems?: number; + /** + * Schema for array items with enum options and display labels. + */ + items: { + /** + * Array of enum options with values and display labels. + */ + anyOf: Array<{ + /** + * The constant enum value. + */ + const: string; + /** + * Display title for this option. + */ + title: string; + }>; + }; + /** + * Optional default value. + */ + default?: string[]; +} +/** + * @category `elicitation/create` + */ +export type MultiSelectEnumSchema = UntitledMultiSelectEnumSchema | TitledMultiSelectEnumSchema; +/** + * Use TitledSingleSelectEnumSchema instead. + * This interface will be removed in a future version. + * + * @category `elicitation/create` + */ +export interface LegacyTitledEnumSchema { + type: "string"; + title?: string; + description?: string; + enum: string[]; + /** + * (Legacy) Display names for enum values. + * Non-standard according to JSON schema 2020-12. + */ + enumNames?: string[]; + default?: string; +} +/** + * @category `elicitation/create` + */ +export type EnumSchema = SingleSelectEnumSchema | MultiSelectEnumSchema | LegacyTitledEnumSchema; +/** + * The client's response to an elicitation request. + * + * @category `elicitation/create` + */ +export interface ElicitResult extends Result { + /** + * The user action in response to the elicitation. + * - "accept": User submitted the form/confirmed the action + * - "decline": User explicitly decline the action + * - "cancel": User dismissed without making an explicit choice + */ + action: "accept" | "decline" | "cancel"; + /** + * The submitted form data, only present when action is "accept" and mode was "form". + * Contains values matching the requested schema. + * Omitted for out-of-band mode responses. + */ + content?: { + [key: string]: string | number | boolean | string[]; + }; +} +/** + * An optional notification from the server to the client, informing it of a completion of a out-of-band elicitation request. + * + * @category `notifications/elicitation/complete` + */ +export interface ElicitationCompleteNotification extends JSONRPCNotification { + method: "notifications/elicitation/complete"; + params: { + /** + * The ID of the elicitation that completed. + */ + elicitationId: string; + }; +} +/** @internal */ +export type ClientRequest = PingRequest | InitializeRequest | CompleteRequest | SetLevelRequest | GetPromptRequest | ListPromptsRequest | ListResourcesRequest | ListResourceTemplatesRequest | ReadResourceRequest | SubscribeRequest | UnsubscribeRequest | CallToolRequest | ListToolsRequest | GetTaskRequest | GetTaskPayloadRequest | ListTasksRequest | CancelTaskRequest; +/** @internal */ +export type ClientNotification = CancelledNotification | ProgressNotification | InitializedNotification | RootsListChangedNotification | TaskStatusNotification; +/** @internal */ +export type ClientResult = EmptyResult | CreateMessageResult | ListRootsResult | ElicitResult | GetTaskResult | GetTaskPayloadResult | ListTasksResult | CancelTaskResult; +/** @internal */ +export type ServerRequest = PingRequest | CreateMessageRequest | ListRootsRequest | ElicitRequest | GetTaskRequest | GetTaskPayloadRequest | ListTasksRequest | CancelTaskRequest; +/** @internal */ +export type ServerNotification = CancelledNotification | ProgressNotification | LoggingMessageNotification | ResourceUpdatedNotification | ResourceListChangedNotification | ToolListChangedNotification | PromptListChangedNotification | ElicitationCompleteNotification | TaskStatusNotification; +/** @internal */ +export type ServerResult = EmptyResult | InitializeResult | CompleteResult | GetPromptResult | ListPromptsResult | ListResourceTemplatesResult | ListResourcesResult | ReadResourceResult | CallToolResult | ListToolsResult | GetTaskResult | GetTaskPayloadResult | ListTasksResult | CancelTaskResult; +//# sourceMappingURL=spec.types.d.ts.map \ No newline at end of file diff --git a/loan-advisor-chatgpt-app/node_modules/@modelcontextprotocol/sdk/dist/esm/spec.types.d.ts.map b/loan-advisor-chatgpt-app/node_modules/@modelcontextprotocol/sdk/dist/esm/spec.types.d.ts.map new file mode 100644 index 0000000000000000000000000000000000000000..e962a522d358207f7726e9f70064ca8798083d79 --- /dev/null +++ b/loan-advisor-chatgpt-app/node_modules/@modelcontextprotocol/sdk/dist/esm/spec.types.d.ts.map @@ -0,0 +1 @@ +{"version":3,"file":"spec.types.d.ts","sourceRoot":"","sources":["../../src/spec.types.ts"],"names":[],"mappings":"AAAA;;;;;;;;;GASG;AAEH;;;;GAIG;AACH,MAAM,MAAM,cAAc,GACtB,cAAc,GACd,mBAAmB,GACnB,eAAe,CAAC;AAEpB,gBAAgB;AAChB,eAAO,MAAM,uBAAuB,kBAAkB,CAAC;AACvD,gBAAgB;AAChB,eAAO,MAAM,eAAe,QAAQ,CAAC;AAErC;;;;GAIG;AACH,MAAM,MAAM,aAAa,GAAG,MAAM,GAAG,MAAM,CAAC;AAE5C;;;;GAIG;AACH,MAAM,MAAM,MAAM,GAAG,MAAM,CAAC;AAE5B;;;;GAIG;AACH,MAAM,WAAW,0BAA2B,SAAQ,aAAa;IAC/D;;;;;;;OAOG;IACH,IAAI,CAAC,EAAE,YAAY,CAAC;CACrB;AACD;;;;GAIG;AACH,MAAM,WAAW,aAAa;IAC5B;;OAEG;IACH,KAAK,CAAC,EAAE;QACN;;WAEG;QACH,aAAa,CAAC,EAAE,aAAa,CAAC;QAC9B,CAAC,GAAG,EAAE,MAAM,GAAG,OAAO,CAAC;KACxB,CAAC;CACH;AAED,gBAAgB;AAChB,MAAM,WAAW,OAAO;IACtB,MAAM,EAAE,MAAM,CAAC;IAGf,MAAM,CAAC,EAAE;QAAE,CAAC,GAAG,EAAE,MAAM,GAAG,GAAG,CAAA;KAAE,CAAC;CACjC;AAED,gBAAgB;AAChB,MAAM,WAAW,kBAAkB;IACjC;;OAEG;IACH,KAAK,CAAC,EAAE;QAAE,CAAC,GAAG,EAAE,MAAM,GAAG,OAAO,CAAA;KAAE,CAAC;CACpC;AAED,gBAAgB;AAChB,MAAM,WAAW,YAAY;IAC3B,MAAM,EAAE,MAAM,CAAC;IAGf,MAAM,CAAC,EAAE;QAAE,CAAC,GAAG,EAAE,MAAM,GAAG,GAAG,CAAA;KAAE,CAAC;CACjC;AAED;;GAEG;AACH,MAAM,WAAW,MAAM;IACrB;;OAEG;IACH,KAAK,CAAC,EAAE;QAAE,CAAC,GAAG,EAAE,MAAM,GAAG,OAAO,CAAA;KAAE,CAAC;IACnC,CAAC,GAAG,EAAE,MAAM,GAAG,OAAO,CAAC;CACxB;AAED;;GAEG;AACH,MAAM,WAAW,KAAK;IACpB;;OAEG;IACH,IAAI,EAAE,MAAM,CAAC;IACb;;OAEG;IACH,OAAO,EAAE,MAAM,CAAC;IAChB;;OAEG;IACH,IAAI,CAAC,EAAE,OAAO,CAAC;CAChB;AAED;;;;GAIG;AACH,MAAM,MAAM,SAAS,GAAG,MAAM,GAAG,MAAM,CAAC;AAExC;;;;GAIG;AACH,MAAM,WAAW,cAAe,SAAQ,OAAO;IAC7C,OAAO,EAAE,OAAO,eAAe,CAAC;IAChC,EAAE,EAAE,SAAS,CAAC;CACf;AAED;;;;GAIG;AACH,MAAM,WAAW,mBAAoB,SAAQ,YAAY;IACvD,OAAO,EAAE,OAAO,eAAe,CAAC;CACjC;AAED;;;;GAIG;AACH,MAAM,WAAW,qBAAqB;IACpC,OAAO,EAAE,OAAO,eAAe,CAAC;IAChC,EAAE,EAAE,SAAS,CAAC;IACd,MAAM,EAAE,MAAM,CAAC;CAChB;AAED;;;;GAIG;AACH,MAAM,WAAW,oBAAoB;IACnC,OAAO,EAAE,OAAO,eAAe,CAAC;IAChC,EAAE,CAAC,EAAE,SAAS,CAAC;IACf,KAAK,EAAE,KAAK,CAAC;CACd;AAED;;GAEG;AACH,MAAM,MAAM,eAAe,GAAG,qBAAqB,GAAG,oBAAoB,CAAC;AAG3E,eAAO,MAAM,WAAW,SAAS,CAAC;AAClC,eAAO,MAAM,eAAe,SAAS,CAAC;AACtC,eAAO,MAAM,gBAAgB,SAAS,CAAC;AACvC,eAAO,MAAM,cAAc,SAAS,CAAC;AACrC,eAAO,MAAM,cAAc,SAAS,CAAC;AAGrC,gBAAgB;AAChB,eAAO,MAAM,wBAAwB,SAAS,CAAC;AAE/C;;;;GAIG;AACH,MAAM,WAAW,2BACf,SAAQ,IAAI,CAAC,oBAAoB,EAAE,OAAO,CAAC;IAC3C,KAAK,EAAE,KAAK,GAAG;QACb,IAAI,EAAE,OAAO,wBAAwB,CAAC;QACtC,IAAI,EAAE;YACJ,YAAY,EAAE,sBAAsB,EAAE,CAAC;YACvC,CAAC,GAAG,EAAE,MAAM,GAAG,OAAO,CAAC;SACxB,CAAC;KACH,CAAC;CACH;AAGD;;;;GAIG;AACH,MAAM,MAAM,WAAW,GAAG,MAAM,CAAC;AAGjC;;;;GAIG;AACH,MAAM,WAAW,2BAA4B,SAAQ,kBAAkB;IACrE;;;;;;OAMG;IACH,SAAS,CAAC,EAAE,SAAS,CAAC;IAEtB;;OAEG;IACH,MAAM,CAAC,EAAE,MAAM,CAAC;CACjB;AAED;;;;;;;;;;;;GAYG;AACH,MAAM,WAAW,qBAAsB,SAAQ,mBAAmB;IAChE,MAAM,EAAE,yBAAyB,CAAC;IAClC,MAAM,EAAE,2BAA2B,CAAC;CACrC;AAGD;;;;GAIG;AACH,MAAM,WAAW,uBAAwB,SAAQ,aAAa;IAC5D;;OAEG;IACH,eAAe,EAAE,MAAM,CAAC;IACxB,YAAY,EAAE,kBAAkB,CAAC;IACjC,UAAU,EAAE,cAAc,CAAC;CAC5B;AAED;;;;GAIG;AACH,MAAM,WAAW,iBAAkB,SAAQ,cAAc;IACvD,MAAM,EAAE,YAAY,CAAC;IACrB,MAAM,EAAE,uBAAuB,CAAC;CACjC;AAED;;;;GAIG;AACH,MAAM,WAAW,gBAAiB,SAAQ,MAAM;IAC9C;;OAEG;IACH,eAAe,EAAE,MAAM,CAAC;IACxB,YAAY,EAAE,kBAAkB,CAAC;IACjC,UAAU,EAAE,cAAc,CAAC;IAE3B;;;;OAIG;IACH,YAAY,CAAC,EAAE,MAAM,CAAC;CACvB;AAED;;;;GAIG;AACH,MAAM,WAAW,uBAAwB,SAAQ,mBAAmB;IAClE,MAAM,EAAE,2BAA2B,CAAC;IACpC,MAAM,CAAC,EAAE,kBAAkB,CAAC;CAC7B;AAED;;;;GAIG;AACH,MAAM,WAAW,kBAAkB;IACjC;;OAEG;IACH,YAAY,CAAC,EAAE;QAAE,CAAC,GAAG,EAAE,MAAM,GAAG,MAAM,CAAA;KAAE,CAAC;IACzC;;OAEG;IACH,KAAK,CAAC,EAAE;QACN;;WAEG;QACH,WAAW,CAAC,EAAE,OAAO,CAAC;KACvB,CAAC;IACF;;OAEG;IACH,QAAQ,CAAC,EAAE;QACT;;;WAGG;QACH,OAAO,CAAC,EAAE,MAAM,CAAC;QACjB;;WAEG;QACH,KAAK,CAAC,EAAE,MAAM,CAAC;KAChB,CAAC;IACF;;OAEG;IACH,WAAW,CAAC,EAAE;QAAE,IAAI,CAAC,EAAE,MAAM,CAAC;QAAC,GAAG,CAAC,EAAE,MAAM,CAAA;KAAE,CAAC;IAE9C;;OAEG;IACH,KAAK,CAAC,EAAE;QACN;;WAEG;QACH,IAAI,CAAC,EAAE,MAAM,CAAC;QACd;;WAEG;QACH,MAAM,CAAC,EAAE,MAAM,CAAC;QAChB;;WAEG;QACH,QAAQ,CAAC,EAAE;YACT;;eAEG;YACH,QAAQ,CAAC,EAAE;gBACT;;mBAEG;gBACH,aAAa,CAAC,EAAE,MAAM,CAAC;aACxB,CAAC;YACF;;eAEG;YACH,WAAW,CAAC,EAAE;gBACZ;;mBAEG;gBACH,MAAM,CAAC,EAAE,MAAM,CAAC;aACjB,CAAC;SACH,CAAC;KACH,CAAC;IACF;;OAEG;IACH,UAAU,CAAC,EAAE;QAAE,CAAC,GAAG,EAAE,MAAM,GAAG,MAAM,CAAA;KAAE,CAAC;CACxC;AAED;;;;GAIG;AACH,MAAM,WAAW,kBAAkB;IACjC;;OAEG;IACH,YAAY,CAAC,EAAE;QAAE,CAAC,GAAG,EAAE,MAAM,GAAG,MAAM,CAAA;KAAE,CAAC;IACzC;;OAEG;IACH,OAAO,CAAC,EAAE,MAAM,CAAC;IACjB;;OAEG;IACH,WAAW,CAAC,EAAE,MAAM,CAAC;IACrB;;OAEG;IACH,OAAO,CAAC,EAAE;QACR;;WAEG;QACH,WAAW,CAAC,EAAE,OAAO,CAAC;KACvB,CAAC;IACF;;OAEG;IACH,SAAS,CAAC,EAAE;QACV;;WAEG;QACH,SAAS,CAAC,EAAE,OAAO,CAAC;QACpB;;WAEG;QACH,WAAW,CAAC,EAAE,OAAO,CAAC;KACvB,CAAC;IACF;;OAEG;IACH,KAAK,CAAC,EAAE;QACN;;WAEG;QACH,WAAW,CAAC,EAAE,OAAO,CAAC;KACvB,CAAC;IACF;;OAEG;IACH,KAAK,CAAC,EAAE;QACN;;WAEG;QACH,IAAI,CAAC,EAAE,MAAM,CAAC;QACd;;WAEG;QACH,MAAM,CAAC,EAAE,MAAM,CAAC;QAChB;;WAEG;QACH,QAAQ,CAAC,EAAE;YACT;;eAEG;YACH,KAAK,CAAC,EAAE;gBACN;;mBAEG;gBACH,IAAI,CAAC,EAAE,MAAM,CAAC;aACf,CAAC;SACH,CAAC;KACH,CAAC;IACF;;OAEG;IACH,UAAU,CAAC,EAAE;QAAE,CAAC,GAAG,EAAE,MAAM,GAAG,MAAM,CAAA;KAAE,CAAC;CACxC;AAED;;;;GAIG;AACH,MAAM,WAAW,IAAI;IACnB;;;;;;;;;;;OAWG;IACH,GAAG,EAAE,MAAM,CAAC;IAEZ;;;OAGG;IACH,QAAQ,CAAC,EAAE,MAAM,CAAC;IAElB;;;;;OAKG;IACH,KAAK,CAAC,EAAE,MAAM,EAAE,CAAC;IAEjB;;;;;;OAMG;IACH,KAAK,CAAC,EAAE,OAAO,GAAG,MAAM,CAAC;CAC1B;AAED;;;;GAIG;AACH,MAAM,WAAW,KAAK;IACpB;;;;;;;;;;OAUG;IACH,KAAK,CAAC,EAAE,IAAI,EAAE,CAAC;CAChB;AAED;;;;GAIG;AACH,MAAM,WAAW,YAAY;IAC3B;;OAEG;IACH,IAAI,EAAE,MAAM,CAAC;IAEb;;;;;;;OAOG;IACH,KAAK,CAAC,EAAE,MAAM,CAAC;CAChB;AAED;;;;GAIG;AACH,MAAM,WAAW,cAAe,SAAQ,YAAY,EAAE,KAAK;IACzD,OAAO,EAAE,MAAM,CAAC;IAEhB;;;;;;OAMG;IACH,WAAW,CAAC,EAAE,MAAM,CAAC;IAErB;;;;OAIG;IACH,UAAU,CAAC,EAAE,MAAM,CAAC;CACrB;AAGD;;;;GAIG;AACH,MAAM,WAAW,WAAY,SAAQ,cAAc;IACjD,MAAM,EAAE,MAAM,CAAC;IACf,MAAM,CAAC,EAAE,aAAa,CAAC;CACxB;AAID;;;;GAIG;AACH,MAAM,WAAW,0BAA2B,SAAQ,kBAAkB;IACpE;;OAEG;IACH,aAAa,EAAE,aAAa,CAAC;IAC7B;;;;OAIG;IACH,QAAQ,EAAE,MAAM,CAAC;IACjB;;;;OAIG;IACH,KAAK,CAAC,EAAE,MAAM,CAAC;IACf;;OAEG;IACH,OAAO,CAAC,EAAE,MAAM,CAAC;CAClB;AAED;;;;GAIG;AACH,MAAM,WAAW,oBAAqB,SAAQ,mBAAmB;IAC/D,MAAM,EAAE,wBAAwB,CAAC;IACjC,MAAM,EAAE,0BAA0B,CAAC;CACpC;AAGD;;;;GAIG;AACH,MAAM,WAAW,sBAAuB,SAAQ,aAAa;IAC3D;;;OAGG;IACH,MAAM,CAAC,EAAE,MAAM,CAAC;CACjB;AAED,gBAAgB;AAChB,MAAM,WAAW,gBAAiB,SAAQ,cAAc;IACtD,MAAM,CAAC,EAAE,sBAAsB,CAAC;CACjC;AAED,gBAAgB;AAChB,MAAM,WAAW,eAAgB,SAAQ,MAAM;IAC7C;;;OAGG;IACH,UAAU,CAAC,EAAE,MAAM,CAAC;CACrB;AAGD;;;;GAIG;AACH,MAAM,WAAW,oBAAqB,SAAQ,gBAAgB;IAC5D,MAAM,EAAE,gBAAgB,CAAC;CAC1B;AAED;;;;GAIG;AACH,MAAM,WAAW,mBAAoB,SAAQ,eAAe;IAC1D,SAAS,EAAE,QAAQ,EAAE,CAAC;CACvB;AAED;;;;GAIG;AACH,MAAM,WAAW,4BAA6B,SAAQ,gBAAgB;IACpE,MAAM,EAAE,0BAA0B,CAAC;CACpC;AAED;;;;GAIG;AACH,MAAM,WAAW,2BAA4B,SAAQ,eAAe;IAClE,iBAAiB,EAAE,gBAAgB,EAAE,CAAC;CACvC;AAED;;;;GAIG;AACH,MAAM,WAAW,qBAAsB,SAAQ,aAAa;IAC1D;;;;OAIG;IACH,GAAG,EAAE,MAAM,CAAC;CACb;AAED;;;;GAIG;AAEH,MAAM,WAAW,yBAA0B,SAAQ,qBAAqB;CAAG;AAE3E;;;;GAIG;AACH,MAAM,WAAW,mBAAoB,SAAQ,cAAc;IACzD,MAAM,EAAE,gBAAgB,CAAC;IACzB,MAAM,EAAE,yBAAyB,CAAC;CACnC;AAED;;;;GAIG;AACH,MAAM,WAAW,kBAAmB,SAAQ,MAAM;IAChD,QAAQ,EAAE,CAAC,oBAAoB,GAAG,oBAAoB,CAAC,EAAE,CAAC;CAC3D;AAED;;;;GAIG;AACH,MAAM,WAAW,+BAAgC,SAAQ,mBAAmB;IAC1E,MAAM,EAAE,sCAAsC,CAAC;IAC/C,MAAM,CAAC,EAAE,kBAAkB,CAAC;CAC7B;AAED;;;;GAIG;AAEH,MAAM,WAAW,sBAAuB,SAAQ,qBAAqB;CAAG;AAExE;;;;GAIG;AACH,MAAM,WAAW,gBAAiB,SAAQ,cAAc;IACtD,MAAM,EAAE,qBAAqB,CAAC;IAC9B,MAAM,EAAE,sBAAsB,CAAC;CAChC;AAED;;;;GAIG;AAEH,MAAM,WAAW,wBAAyB,SAAQ,qBAAqB;CAAG;AAE1E;;;;GAIG;AACH,MAAM,WAAW,kBAAmB,SAAQ,cAAc;IACxD,MAAM,EAAE,uBAAuB,CAAC;IAChC,MAAM,EAAE,wBAAwB,CAAC;CAClC;AAED;;;;GAIG;AACH,MAAM,WAAW,iCAAkC,SAAQ,kBAAkB;IAC3E;;;;OAIG;IACH,GAAG,EAAE,MAAM,CAAC;CACb;AAED;;;;GAIG;AACH,MAAM,WAAW,2BAA4B,SAAQ,mBAAmB;IACtE,MAAM,EAAE,iCAAiC,CAAC;IAC1C,MAAM,EAAE,iCAAiC,CAAC;CAC3C;AAED;;;;GAIG;AACH,MAAM,WAAW,QAAS,SAAQ,YAAY,EAAE,KAAK;IACnD;;;;OAIG;IACH,GAAG,EAAE,MAAM,CAAC;IAEZ;;;;OAIG;IACH,WAAW,CAAC,EAAE,MAAM,CAAC;IAErB;;OAEG;IACH,QAAQ,CAAC,EAAE,MAAM,CAAC;IAElB;;OAEG;IACH,WAAW,CAAC,EAAE,WAAW,CAAC;IAE1B;;;;OAIG;IACH,IAAI,CAAC,EAAE,MAAM,CAAC;IAEd;;OAEG;IACH,KAAK,CAAC,EAAE;QAAE,CAAC,GAAG,EAAE,MAAM,GAAG,OAAO,CAAA;KAAE,CAAC;CACpC;AAED;;;;GAIG;AACH,MAAM,WAAW,gBAAiB,SAAQ,YAAY,EAAE,KAAK;IAC3D;;;;OAIG;IACH,WAAW,EAAE,MAAM,CAAC;IAEpB;;;;OAIG;IACH,WAAW,CAAC,EAAE,MAAM,CAAC;IAErB;;OAEG;IACH,QAAQ,CAAC,EAAE,MAAM,CAAC;IAElB;;OAEG;IACH,WAAW,CAAC,EAAE,WAAW,CAAC;IAE1B;;OAEG;IACH,KAAK,CAAC,EAAE;QAAE,CAAC,GAAG,EAAE,MAAM,GAAG,OAAO,CAAA;KAAE,CAAC;CACpC;AAED;;;;GAIG;AACH,MAAM,WAAW,gBAAgB;IAC/B;;;;OAIG;IACH,GAAG,EAAE,MAAM,CAAC;IACZ;;OAEG;IACH,QAAQ,CAAC,EAAE,MAAM,CAAC;IAElB;;OAEG;IACH,KAAK,CAAC,EAAE;QAAE,CAAC,GAAG,EAAE,MAAM,GAAG,OAAO,CAAA;KAAE,CAAC;CACpC;AAED;;GAEG;AACH,MAAM,WAAW,oBAAqB,SAAQ,gBAAgB;IAC5D;;OAEG;IACH,IAAI,EAAE,MAAM,CAAC;CACd;AAED;;GAEG;AACH,MAAM,WAAW,oBAAqB,SAAQ,gBAAgB;IAC5D;;;;OAIG;IACH,IAAI,EAAE,MAAM,CAAC;CACd;AAGD;;;;GAIG;AACH,MAAM,WAAW,kBAAmB,SAAQ,gBAAgB;IAC1D,MAAM,EAAE,cAAc,CAAC;CACxB;AAED;;;;GAIG;AACH,MAAM,WAAW,iBAAkB,SAAQ,eAAe;IACxD,OAAO,EAAE,MAAM,EAAE,CAAC;CACnB;AAED;;;;GAIG;AACH,MAAM,WAAW,sBAAuB,SAAQ,aAAa;IAC3D;;OAEG;IACH,IAAI,EAAE,MAAM,CAAC;IACb;;OAEG;IACH,SAAS,CAAC,EAAE;QAAE,CAAC,GAAG,EAAE,MAAM,GAAG,MAAM,CAAA;KAAE,CAAC;CACvC;AAED;;;;GAIG;AACH,MAAM,WAAW,gBAAiB,SAAQ,cAAc;IACtD,MAAM,EAAE,aAAa,CAAC;IACtB,MAAM,EAAE,sBAAsB,CAAC;CAChC;AAED;;;;GAIG;AACH,MAAM,WAAW,eAAgB,SAAQ,MAAM;IAC7C;;OAEG;IACH,WAAW,CAAC,EAAE,MAAM,CAAC;IACrB,QAAQ,EAAE,aAAa,EAAE,CAAC;CAC3B;AAED;;;;GAIG;AACH,MAAM,WAAW,MAAO,SAAQ,YAAY,EAAE,KAAK;IACjD;;OAEG;IACH,WAAW,CAAC,EAAE,MAAM,CAAC;IAErB;;OAEG;IACH,SAAS,CAAC,EAAE,cAAc,EAAE,CAAC;IAE7B;;OAEG;IACH,KAAK,CAAC,EAAE;QAAE,CAAC,GAAG,EAAE,MAAM,GAAG,OAAO,CAAA;KAAE,CAAC;CACpC;AAED;;;;GAIG;AACH,MAAM,WAAW,cAAe,SAAQ,YAAY;IAClD;;OAEG;IACH,WAAW,CAAC,EAAE,MAAM,CAAC;IACrB;;OAEG;IACH,QAAQ,CAAC,EAAE,OAAO,CAAC;CACpB;AAED;;;;GAIG;AACH,MAAM,MAAM,IAAI,GAAG,MAAM,GAAG,WAAW,CAAC;AAExC;;;;;;;GAOG;AACH,MAAM,WAAW,aAAa;IAC5B,IAAI,EAAE,IAAI,CAAC;IACX,OAAO,EAAE,YAAY,CAAC;CACvB;AAED;;;;;;GAMG;AACH,MAAM,WAAW,YAAa,SAAQ,QAAQ;IAC5C,IAAI,EAAE,eAAe,CAAC;CACvB;AAED;;;;;;;GAOG;AACH,MAAM,WAAW,gBAAgB;IAC/B,IAAI,EAAE,UAAU,CAAC;IACjB,QAAQ,EAAE,oBAAoB,GAAG,oBAAoB,CAAC;IAEtD;;OAEG;IACH,WAAW,CAAC,EAAE,WAAW,CAAC;IAE1B;;OAEG;IACH,KAAK,CAAC,EAAE;QAAE,CAAC,GAAG,EAAE,MAAM,GAAG,OAAO,CAAA;KAAE,CAAC;CACpC;AACD;;;;GAIG;AACH,MAAM,WAAW,6BAA8B,SAAQ,mBAAmB;IACxE,MAAM,EAAE,oCAAoC,CAAC;IAC7C,MAAM,CAAC,EAAE,kBAAkB,CAAC;CAC7B;AAGD;;;;GAIG;AACH,MAAM,WAAW,gBAAiB,SAAQ,gBAAgB;IACxD,MAAM,EAAE,YAAY,CAAC;CACtB;AAED;;;;GAIG;AACH,MAAM,WAAW,eAAgB,SAAQ,eAAe;IACtD,KAAK,EAAE,IAAI,EAAE,CAAC;CACf;AAED;;;;GAIG;AACH,MAAM,WAAW,cAAe,SAAQ,MAAM;IAC5C;;OAEG;IACH,OAAO,EAAE,YAAY,EAAE,CAAC;IAExB;;OAEG;IACH,iBAAiB,CAAC,EAAE;QAAE,CAAC,GAAG,EAAE,MAAM,GAAG,OAAO,CAAA;KAAE,CAAC;IAE/C;;;;;;;;;;;;;OAaG;IACH,OAAO,CAAC,EAAE,OAAO,CAAC;CACnB;AAED;;;;GAIG;AACH,MAAM,WAAW,qBAAsB,SAAQ,0BAA0B;IACvE;;OAEG;IACH,IAAI,EAAE,MAAM,CAAC;IACb;;OAEG;IACH,SAAS,CAAC,EAAE;QAAE,CAAC,GAAG,EAAE,MAAM,GAAG,OAAO,CAAA;KAAE,CAAC;CACxC;AAED;;;;GAIG;AACH,MAAM,WAAW,eAAgB,SAAQ,cAAc;IACrD,MAAM,EAAE,YAAY,CAAC;IACrB,MAAM,EAAE,qBAAqB,CAAC;CAC/B;AAED;;;;GAIG;AACH,MAAM,WAAW,2BAA4B,SAAQ,mBAAmB;IACtE,MAAM,EAAE,kCAAkC,CAAC;IAC3C,MAAM,CAAC,EAAE,kBAAkB,CAAC;CAC7B;AAED;;;;;;;;;;;GAWG;AACH,MAAM,WAAW,eAAe;IAC9B;;OAEG;IACH,KAAK,CAAC,EAAE,MAAM,CAAC;IAEf;;;;OAIG;IACH,YAAY,CAAC,EAAE,OAAO,CAAC;IAEvB;;;;;;;OAOG;IACH,eAAe,CAAC,EAAE,OAAO,CAAC;IAE1B;;;;;;;OAOG;IACH,cAAc,CAAC,EAAE,OAAO,CAAC;IAEzB;;;;;;;OAOG;IACH,aAAa,CAAC,EAAE,OAAO,CAAC;CACzB;AAED;;;;GAIG;AACH,MAAM,WAAW,aAAa;IAC5B;;;;;;;;;;OAUG;IACH,WAAW,CAAC,EAAE,WAAW,GAAG,UAAU,GAAG,UAAU,CAAC;CACrD;AAED;;;;GAIG;AACH,MAAM,WAAW,IAAK,SAAQ,YAAY,EAAE,KAAK;IAC/C;;;;OAIG;IACH,WAAW,CAAC,EAAE,MAAM,CAAC;IAErB;;OAEG;IACH,WAAW,EAAE;QACX,OAAO,CAAC,EAAE,MAAM,CAAC;QACjB,IAAI,EAAE,QAAQ,CAAC;QACf,UAAU,CAAC,EAAE;YAAE,CAAC,GAAG,EAAE,MAAM,GAAG,MAAM,CAAA;SAAE,CAAC;QACvC,QAAQ,CAAC,EAAE,MAAM,EAAE,CAAC;KACrB,CAAC;IAEF;;OAEG;IACH,SAAS,CAAC,EAAE,aAAa,CAAC;IAE1B;;;;;;OAMG;IACH,YAAY,CAAC,EAAE;QACb,OAAO,CAAC,EAAE,MAAM,CAAC;QACjB,IAAI,EAAE,QAAQ,CAAC;QACf,UAAU,CAAC,EAAE;YAAE,CAAC,GAAG,EAAE,MAAM,GAAG,MAAM,CAAA;SAAE,CAAC;QACvC,QAAQ,CAAC,EAAE,MAAM,EAAE,CAAC;KACrB,CAAC;IAEF;;;;OAIG;IACH,WAAW,CAAC,EAAE,eAAe,CAAC;IAE9B;;OAEG;IACH,KAAK,CAAC,EAAE;QAAE,CAAC,GAAG,EAAE,MAAM,GAAG,OAAO,CAAA;KAAE,CAAC;CACpC;AAID;;;;GAIG;AACH,MAAM,MAAM,UAAU,GAClB,SAAS,GACT,gBAAgB,GAChB,WAAW,GACX,QAAQ,GACR,WAAW,CAAC;AAEhB;;;;;GAKG;AACH,MAAM,WAAW,YAAY;IAC3B;;OAEG;IACH,GAAG,CAAC,EAAE,MAAM,CAAC;CACd;AAED;;;;;GAKG;AACH,MAAM,WAAW,mBAAmB;IAClC;;OAEG;IACH,MAAM,EAAE,MAAM,CAAC;CAChB;AAED;;;;GAIG;AACH,MAAM,WAAW,IAAI;IACnB;;OAEG;IACH,MAAM,EAAE,MAAM,CAAC;IAEf;;OAEG;IACH,MAAM,EAAE,UAAU,CAAC;IAEnB;;;;;;OAMG;IACH,aAAa,CAAC,EAAE,MAAM,CAAC;IAEvB;;OAEG;IACH,SAAS,EAAE,MAAM,CAAC;IAElB;;OAEG;IACH,aAAa,EAAE,MAAM,CAAC;IAEtB;;OAEG;IACH,GAAG,EAAE,MAAM,GAAG,IAAI,CAAC;IAEnB;;OAEG;IACH,YAAY,CAAC,EAAE,MAAM,CAAC;CACvB;AAED;;;;GAIG;AACH,MAAM,WAAW,gBAAiB,SAAQ,MAAM;IAC9C,IAAI,EAAE,IAAI,CAAC;CACZ;AAED;;;;GAIG;AACH,MAAM,WAAW,cAAe,SAAQ,cAAc;IACpD,MAAM,EAAE,WAAW,CAAC;IACpB,MAAM,EAAE;QACN;;WAEG;QACH,MAAM,EAAE,MAAM,CAAC;KAChB,CAAC;CACH;AAED;;;;GAIG;AACH,MAAM,MAAM,aAAa,GAAG,MAAM,GAAG,IAAI,CAAC;AAE1C;;;;GAIG;AACH,MAAM,WAAW,qBAAsB,SAAQ,cAAc;IAC3D,MAAM,EAAE,cAAc,CAAC;IACvB,MAAM,EAAE;QACN;;WAEG;QACH,MAAM,EAAE,MAAM,CAAC;KAChB,CAAC;CACH;AAED;;;;;;GAMG;AACH,MAAM,WAAW,oBAAqB,SAAQ,MAAM;IAClD,CAAC,GAAG,EAAE,MAAM,GAAG,OAAO,CAAC;CACxB;AAED;;;;GAIG;AACH,MAAM,WAAW,iBAAkB,SAAQ,cAAc;IACvD,MAAM,EAAE,cAAc,CAAC;IACvB,MAAM,EAAE;QACN;;WAEG;QACH,MAAM,EAAE,MAAM,CAAC;KAChB,CAAC;CACH;AAED;;;;GAIG;AACH,MAAM,MAAM,gBAAgB,GAAG,MAAM,GAAG,IAAI,CAAC;AAE7C;;;;GAIG;AACH,MAAM,WAAW,gBAAiB,SAAQ,gBAAgB;IACxD,MAAM,EAAE,YAAY,CAAC;CACtB;AAED;;;;GAIG;AACH,MAAM,WAAW,eAAgB,SAAQ,eAAe;IACtD,KAAK,EAAE,IAAI,EAAE,CAAC;CACf;AAED;;;;GAIG;AACH,MAAM,MAAM,4BAA4B,GAAG,kBAAkB,GAAG,IAAI,CAAC;AAErE;;;;GAIG;AACH,MAAM,WAAW,sBAAuB,SAAQ,mBAAmB;IACjE,MAAM,EAAE,4BAA4B,CAAC;IACrC,MAAM,EAAE,4BAA4B,CAAC;CACtC;AAID;;;;GAIG;AACH,MAAM,WAAW,qBAAsB,SAAQ,aAAa;IAC1D;;OAEG;IACH,KAAK,EAAE,YAAY,CAAC;CACrB;AAED;;;;GAIG;AACH,MAAM,WAAW,eAAgB,SAAQ,cAAc;IACrD,MAAM,EAAE,kBAAkB,CAAC;IAC3B,MAAM,EAAE,qBAAqB,CAAC;CAC/B;AAED;;;;GAIG;AACH,MAAM,WAAW,gCAAiC,SAAQ,kBAAkB;IAC1E;;OAEG;IACH,KAAK,EAAE,YAAY,CAAC;IACpB;;OAEG;IACH,MAAM,CAAC,EAAE,MAAM,CAAC;IAChB;;OAEG;IACH,IAAI,EAAE,OAAO,CAAC;CACf;AAED;;;;GAIG;AACH,MAAM,WAAW,0BAA2B,SAAQ,mBAAmB;IACrE,MAAM,EAAE,uBAAuB,CAAC;IAChC,MAAM,EAAE,gCAAgC,CAAC;CAC1C;AAED;;;;;;;GAOG;AACH,MAAM,MAAM,YAAY,GACpB,OAAO,GACP,MAAM,GACN,QAAQ,GACR,SAAS,GACT,OAAO,GACP,UAAU,GACV,OAAO,GACP,WAAW,CAAC;AAGhB;;;;GAIG;AACH,MAAM,WAAW,0BAA2B,SAAQ,0BAA0B;IAC5E,QAAQ,EAAE,eAAe,EAAE,CAAC;IAC5B;;OAEG;IACH,gBAAgB,CAAC,EAAE,gBAAgB,CAAC;IACpC;;OAEG;IACH,YAAY,CAAC,EAAE,MAAM,CAAC;IACtB;;;;;;OAMG;IACH,cAAc,CAAC,EAAE,MAAM,GAAG,YAAY,GAAG,YAAY,CAAC;IACtD;;OAEG;IACH,WAAW,CAAC,EAAE,MAAM,CAAC;IACrB;;;;OAIG;IACH,SAAS,EAAE,MAAM,CAAC;IAClB,aAAa,CAAC,EAAE,MAAM,EAAE,CAAC;IACzB;;OAEG;IACH,QAAQ,CAAC,EAAE,MAAM,CAAC;IAClB;;;OAGG;IACH,KAAK,CAAC,EAAE,IAAI,EAAE,CAAC;IACf;;;;OAIG;IACH,UAAU,CAAC,EAAE,UAAU,CAAC;CACzB;AAED;;;;GAIG;AACH,MAAM,WAAW,UAAU;IACzB;;;;;OAKG;IACH,IAAI,CAAC,EAAE,MAAM,GAAG,UAAU,GAAG,MAAM,CAAC;CACrC;AAED;;;;GAIG;AACH,MAAM,WAAW,oBAAqB,SAAQ,cAAc;IAC1D,MAAM,EAAE,wBAAwB,CAAC;IACjC,MAAM,EAAE,0BAA0B,CAAC;CACpC;AAED;;;;;;GAMG;AACH,MAAM,WAAW,mBAAoB,SAAQ,MAAM,EAAE,eAAe;IAClE;;OAEG;IACH,KAAK,EAAE,MAAM,CAAC;IAEd;;;;;;;;;;OAUG;IACH,UAAU,CAAC,EAAE,SAAS,GAAG,cAAc,GAAG,WAAW,GAAG,SAAS,GAAG,MAAM,CAAC;CAC5E;AAED;;;;GAIG;AACH,MAAM,WAAW,eAAe;IAC9B,IAAI,EAAE,IAAI,CAAC;IACX,OAAO,EAAE,2BAA2B,GAAG,2BAA2B,EAAE,CAAC;IACrE;;OAEG;IACH,KAAK,CAAC,EAAE;QAAE,CAAC,GAAG,EAAE,MAAM,GAAG,OAAO,CAAA;KAAE,CAAC;CACpC;AACD,MAAM,MAAM,2BAA2B,GACnC,WAAW,GACX,YAAY,GACZ,YAAY,GACZ,cAAc,GACd,iBAAiB,CAAC;AAEtB;;;;GAIG;AACH,MAAM,WAAW,WAAW;IAC1B;;;;OAIG;IACH,QAAQ,CAAC,EAAE,IAAI,EAAE,CAAC;IAElB;;;;;;;;;;OAUG;IACH,QAAQ,CAAC,EAAE,MAAM,CAAC;IAElB;;;;;;;OAOG;IACH,YAAY,CAAC,EAAE,MAAM,CAAC;CACvB;AAED;;GAEG;AACH,MAAM,MAAM,YAAY,GACpB,WAAW,GACX,YAAY,GACZ,YAAY,GACZ,YAAY,GACZ,gBAAgB,CAAC;AAErB;;;;GAIG;AACH,MAAM,WAAW,WAAW;IAC1B,IAAI,EAAE,MAAM,CAAC;IAEb;;OAEG;IACH,IAAI,EAAE,MAAM,CAAC;IAEb;;OAEG;IACH,WAAW,CAAC,EAAE,WAAW,CAAC;IAE1B;;OAEG;IACH,KAAK,CAAC,EAAE;QAAE,CAAC,GAAG,EAAE,MAAM,GAAG,OAAO,CAAA;KAAE,CAAC;CACpC;AAED;;;;GAIG;AACH,MAAM,WAAW,YAAY;IAC3B,IAAI,EAAE,OAAO,CAAC;IAEd;;;;OAIG;IACH,IAAI,EAAE,MAAM,CAAC;IAEb;;OAEG;IACH,QAAQ,EAAE,MAAM,CAAC;IAEjB;;OAEG;IACH,WAAW,CAAC,EAAE,WAAW,CAAC;IAE1B;;OAEG;IACH,KAAK,CAAC,EAAE;QAAE,CAAC,GAAG,EAAE,MAAM,GAAG,OAAO,CAAA;KAAE,CAAC;CACpC;AAED;;;;GAIG;AACH,MAAM,WAAW,YAAY;IAC3B,IAAI,EAAE,OAAO,CAAC;IAEd;;;;OAIG;IACH,IAAI,EAAE,MAAM,CAAC;IAEb;;OAEG;IACH,QAAQ,EAAE,MAAM,CAAC;IAEjB;;OAEG;IACH,WAAW,CAAC,EAAE,WAAW,CAAC;IAE1B;;OAEG;IACH,KAAK,CAAC,EAAE;QAAE,CAAC,GAAG,EAAE,MAAM,GAAG,OAAO,CAAA;KAAE,CAAC;CACpC;AAED;;;;GAIG;AACH,MAAM,WAAW,cAAc;IAC7B,IAAI,EAAE,UAAU,CAAC;IAEjB;;;;OAIG;IACH,EAAE,EAAE,MAAM,CAAC;IAEX;;OAEG;IACH,IAAI,EAAE,MAAM,CAAC;IAEb;;OAEG;IACH,KAAK,EAAE;QAAE,CAAC,GAAG,EAAE,MAAM,GAAG,OAAO,CAAA;KAAE,CAAC;IAElC;;;;;OAKG;IACH,KAAK,CAAC,EAAE;QAAE,CAAC,GAAG,EAAE,MAAM,GAAG,OAAO,CAAA;KAAE,CAAC;CACpC;AAED;;;;GAIG;AACH,MAAM,WAAW,iBAAiB;IAChC,IAAI,EAAE,aAAa,CAAC;IAEpB;;;;OAIG;IACH,SAAS,EAAE,MAAM,CAAC;IAElB;;;;;OAKG;IACH,OAAO,EAAE,YAAY,EAAE,CAAC;IAExB;;;;OAIG;IACH,iBAAiB,CAAC,EAAE;QAAE,CAAC,GAAG,EAAE,MAAM,GAAG,OAAO,CAAA;KAAE,CAAC;IAE/C;;;;;OAKG;IACH,OAAO,CAAC,EAAE,OAAO,CAAC;IAElB;;;;;OAKG;IACH,KAAK,CAAC,EAAE;QAAE,CAAC,GAAG,EAAE,MAAM,GAAG,OAAO,CAAA;KAAE,CAAC;CACpC;AAED;;;;;;;;;;;;;;GAcG;AACH,MAAM,WAAW,gBAAgB;IAC/B;;;;;;;;OAQG;IACH,KAAK,CAAC,EAAE,SAAS,EAAE,CAAC;IAEpB;;;;;;;;OAQG;IACH,YAAY,CAAC,EAAE,MAAM,CAAC;IAEtB;;;;;;;;OAQG;IACH,aAAa,CAAC,EAAE,MAAM,CAAC;IAEvB;;;;;;;;OAQG;IACH,oBAAoB,CAAC,EAAE,MAAM,CAAC;CAC/B;AAED;;;;;;;GAOG;AACH,MAAM,WAAW,SAAS;IACxB;;;;;;;;;;OAUG;IACH,IAAI,CAAC,EAAE,MAAM,CAAC;CACf;AAGD;;;;GAIG;AACH,MAAM,WAAW,qBAAsB,SAAQ,aAAa;IAC1D,GAAG,EAAE,eAAe,GAAG,yBAAyB,CAAC;IACjD;;OAEG;IACH,QAAQ,EAAE;QACR;;WAEG;QACH,IAAI,EAAE,MAAM,CAAC;QACb;;WAEG;QACH,KAAK,EAAE,MAAM,CAAC;KACf,CAAC;IAEF;;OAEG;IACH,OAAO,CAAC,EAAE;QACR;;WAEG;QACH,SAAS,CAAC,EAAE;YAAE,CAAC,GAAG,EAAE,MAAM,GAAG,MAAM,CAAA;SAAE,CAAC;KACvC,CAAC;CACH;AAED;;;;GAIG;AACH,MAAM,WAAW,eAAgB,SAAQ,cAAc;IACrD,MAAM,EAAE,qBAAqB,CAAC;IAC9B,MAAM,EAAE,qBAAqB,CAAC;CAC/B;AAED;;;;GAIG;AACH,MAAM,WAAW,cAAe,SAAQ,MAAM;IAC5C,UAAU,EAAE;QACV;;WAEG;QACH,MAAM,EAAE,MAAM,EAAE,CAAC;QACjB;;WAEG;QACH,KAAK,CAAC,EAAE,MAAM,CAAC;QACf;;WAEG;QACH,OAAO,CAAC,EAAE,OAAO,CAAC;KACnB,CAAC;CACH;AAED;;;;GAIG;AACH,MAAM,WAAW,yBAAyB;IACxC,IAAI,EAAE,cAAc,CAAC;IACrB;;;;OAIG;IACH,GAAG,EAAE,MAAM,CAAC;CACb;AAED;;;;GAIG;AACH,MAAM,WAAW,eAAgB,SAAQ,YAAY;IACnD,IAAI,EAAE,YAAY,CAAC;CACpB;AAGD;;;;;;;;;;GAUG;AACH,MAAM,WAAW,gBAAiB,SAAQ,cAAc;IACtD,MAAM,EAAE,YAAY,CAAC;IACrB,MAAM,CAAC,EAAE,aAAa,CAAC;CACxB;AAED;;;;;;GAMG;AACH,MAAM,WAAW,eAAgB,SAAQ,MAAM;IAC7C,KAAK,EAAE,IAAI,EAAE,CAAC;CACf;AAED;;;;GAIG;AACH,MAAM,WAAW,IAAI;IACnB;;;;;;OAMG;IACH,GAAG,EAAE,MAAM,CAAC;IACZ;;;;OAIG;IACH,IAAI,CAAC,EAAE,MAAM,CAAC;IAEd;;OAEG;IACH,KAAK,CAAC,EAAE;QAAE,CAAC,GAAG,EAAE,MAAM,GAAG,OAAO,CAAA;KAAE,CAAC;CACpC;AAED;;;;;;GAMG;AACH,MAAM,WAAW,4BAA6B,SAAQ,mBAAmB;IACvE,MAAM,EAAE,kCAAkC,CAAC;IAC3C,MAAM,CAAC,EAAE,kBAAkB,CAAC;CAC7B;AAED;;;;GAIG;AACH,MAAM,WAAW,uBAAwB,SAAQ,0BAA0B;IACzE;;OAEG;IACH,IAAI,CAAC,EAAE,MAAM,CAAC;IAEd;;OAEG;IACH,OAAO,EAAE,MAAM,CAAC;IAEhB;;;OAGG;IACH,eAAe,EAAE;QACf,OAAO,CAAC,EAAE,MAAM,CAAC;QACjB,IAAI,EAAE,QAAQ,CAAC;QACf,UAAU,EAAE;YACV,CAAC,GAAG,EAAE,MAAM,GAAG,yBAAyB,CAAC;SAC1C,CAAC;QACF,QAAQ,CAAC,EAAE,MAAM,EAAE,CAAC;KACrB,CAAC;CACH;AAED;;;;GAIG;AACH,MAAM,WAAW,sBAAuB,SAAQ,0BAA0B;IACxE;;OAEG;IACH,IAAI,EAAE,KAAK,CAAC;IAEZ;;OAEG;IACH,OAAO,EAAE,MAAM,CAAC;IAEhB;;;OAGG;IACH,aAAa,EAAE,MAAM,CAAC;IAEtB;;;;OAIG;IACH,GAAG,EAAE,MAAM,CAAC;CACb;AAED;;;;GAIG;AACH,MAAM,MAAM,mBAAmB,GAC3B,uBAAuB,GACvB,sBAAsB,CAAC;AAE3B;;;;GAIG;AACH,MAAM,WAAW,aAAc,SAAQ,cAAc;IACnD,MAAM,EAAE,oBAAoB,CAAC;IAC7B,MAAM,EAAE,mBAAmB,CAAC;CAC7B;AAED;;;;;GAKG;AACH,MAAM,MAAM,yBAAyB,GACjC,YAAY,GACZ,YAAY,GACZ,aAAa,GACb,UAAU,CAAC;AAEf;;GAEG;AACH,MAAM,WAAW,YAAY;IAC3B,IAAI,EAAE,QAAQ,CAAC;IACf,KAAK,CAAC,EAAE,MAAM,CAAC;IACf,WAAW,CAAC,EAAE,MAAM,CAAC;IACrB,SAAS,CAAC,EAAE,MAAM,CAAC;IACnB,SAAS,CAAC,EAAE,MAAM,CAAC;IACnB,MAAM,CAAC,EAAE,OAAO,GAAG,KAAK,GAAG,MAAM,GAAG,WAAW,CAAC;IAChD,OAAO,CAAC,EAAE,MAAM,CAAC;CAClB;AAED;;GAEG;AACH,MAAM,WAAW,YAAY;IAC3B,IAAI,EAAE,QAAQ,GAAG,SAAS,CAAC;IAC3B,KAAK,CAAC,EAAE,MAAM,CAAC;IACf,WAAW,CAAC,EAAE,MAAM,CAAC;IACrB,OAAO,CAAC,EAAE,MAAM,CAAC;IACjB,OAAO,CAAC,EAAE,MAAM,CAAC;IACjB,OAAO,CAAC,EAAE,MAAM,CAAC;CAClB;AAED;;GAEG;AACH,MAAM,WAAW,aAAa;IAC5B,IAAI,EAAE,SAAS,CAAC;IAChB,KAAK,CAAC,EAAE,MAAM,CAAC;IACf,WAAW,CAAC,EAAE,MAAM,CAAC;IACrB,OAAO,CAAC,EAAE,OAAO,CAAC;CACnB;AAED;;;;GAIG;AACH,MAAM,WAAW,8BAA8B;IAC7C,IAAI,EAAE,QAAQ,CAAC;IACf;;OAEG;IACH,KAAK,CAAC,EAAE,MAAM,CAAC;IACf;;OAEG;IACH,WAAW,CAAC,EAAE,MAAM,CAAC;IACrB;;OAEG;IACH,IAAI,EAAE,MAAM,EAAE,CAAC;IACf;;OAEG;IACH,OAAO,CAAC,EAAE,MAAM,CAAC;CAClB;AAED;;;;GAIG;AACH,MAAM,WAAW,4BAA4B;IAC3C,IAAI,EAAE,QAAQ,CAAC;IACf;;OAEG;IACH,KAAK,CAAC,EAAE,MAAM,CAAC;IACf;;OAEG;IACH,WAAW,CAAC,EAAE,MAAM,CAAC;IACrB;;OAEG;IACH,KAAK,EAAE,KAAK,CAAC;QACX;;WAEG;QACH,KAAK,EAAE,MAAM,CAAC;QACd;;WAEG;QACH,KAAK,EAAE,MAAM,CAAC;KACf,CAAC,CAAC;IACH;;OAEG;IACH,OAAO,CAAC,EAAE,MAAM,CAAC;CAClB;AAED;;GAEG;AAEH,MAAM,MAAM,sBAAsB,GAC9B,8BAA8B,GAC9B,4BAA4B,CAAC;AAEjC;;;;GAIG;AACH,MAAM,WAAW,6BAA6B;IAC5C,IAAI,EAAE,OAAO,CAAC;IACd;;OAEG;IACH,KAAK,CAAC,EAAE,MAAM,CAAC;IACf;;OAEG;IACH,WAAW,CAAC,EAAE,MAAM,CAAC;IACrB;;OAEG;IACH,QAAQ,CAAC,EAAE,MAAM,CAAC;IAClB;;OAEG;IACH,QAAQ,CAAC,EAAE,MAAM,CAAC;IAClB;;OAEG;IACH,KAAK,EAAE;QACL,IAAI,EAAE,QAAQ,CAAC;QACf;;WAEG;QACH,IAAI,EAAE,MAAM,EAAE,CAAC;KAChB,CAAC;IACF;;OAEG;IACH,OAAO,CAAC,EAAE,MAAM,EAAE,CAAC;CACpB;AAED;;;;GAIG;AACH,MAAM,WAAW,2BAA2B;IAC1C,IAAI,EAAE,OAAO,CAAC;IACd;;OAEG;IACH,KAAK,CAAC,EAAE,MAAM,CAAC;IACf;;OAEG;IACH,WAAW,CAAC,EAAE,MAAM,CAAC;IACrB;;OAEG;IACH,QAAQ,CAAC,EAAE,MAAM,CAAC;IAClB;;OAEG;IACH,QAAQ,CAAC,EAAE,MAAM,CAAC;IAClB;;OAEG;IACH,KAAK,EAAE;QACL;;WAEG;QACH,KAAK,EAAE,KAAK,CAAC;YACX;;eAEG;YACH,KAAK,EAAE,MAAM,CAAC;YACd;;eAEG;YACH,KAAK,EAAE,MAAM,CAAC;SACf,CAAC,CAAC;KACJ,CAAC;IACF;;OAEG;IACH,OAAO,CAAC,EAAE,MAAM,EAAE,CAAC;CACpB;AAED;;GAEG;AAEH,MAAM,MAAM,qBAAqB,GAC7B,6BAA6B,GAC7B,2BAA2B,CAAC;AAEhC;;;;;GAKG;AACH,MAAM,WAAW,sBAAsB;IACrC,IAAI,EAAE,QAAQ,CAAC;IACf,KAAK,CAAC,EAAE,MAAM,CAAC;IACf,WAAW,CAAC,EAAE,MAAM,CAAC;IACrB,IAAI,EAAE,MAAM,EAAE,CAAC;IACf;;;OAGG;IACH,SAAS,CAAC,EAAE,MAAM,EAAE,CAAC;IACrB,OAAO,CAAC,EAAE,MAAM,CAAC;CAClB;AAED;;GAEG;AAEH,MAAM,MAAM,UAAU,GAClB,sBAAsB,GACtB,qBAAqB,GACrB,sBAAsB,CAAC;AAE3B;;;;GAIG;AACH,MAAM,WAAW,YAAa,SAAQ,MAAM;IAC1C;;;;;OAKG;IACH,MAAM,EAAE,QAAQ,GAAG,SAAS,GAAG,QAAQ,CAAC;IAExC;;;;OAIG;IACH,OAAO,CAAC,EAAE;QAAE,CAAC,GAAG,EAAE,MAAM,GAAG,MAAM,GAAG,MAAM,GAAG,OAAO,GAAG,MAAM,EAAE,CAAA;KAAE,CAAC;CACnE;AAED;;;;GAIG;AACH,MAAM,WAAW,+BAAgC,SAAQ,mBAAmB;IAC1E,MAAM,EAAE,oCAAoC,CAAC;IAC7C,MAAM,EAAE;QACN;;WAEG;QACH,aAAa,EAAE,MAAM,CAAC;KACvB,CAAC;CACH;AAGD,gBAAgB;AAChB,MAAM,MAAM,aAAa,GACrB,WAAW,GACX,iBAAiB,GACjB,eAAe,GACf,eAAe,GACf,gBAAgB,GAChB,kBAAkB,GAClB,oBAAoB,GACpB,4BAA4B,GAC5B,mBAAmB,GACnB,gBAAgB,GAChB,kBAAkB,GAClB,eAAe,GACf,gBAAgB,GAChB,cAAc,GACd,qBAAqB,GACrB,gBAAgB,GAChB,iBAAiB,CAAC;AAEtB,gBAAgB;AAChB,MAAM,MAAM,kBAAkB,GAC1B,qBAAqB,GACrB,oBAAoB,GACpB,uBAAuB,GACvB,4BAA4B,GAC5B,sBAAsB,CAAC;AAE3B,gBAAgB;AAChB,MAAM,MAAM,YAAY,GACpB,WAAW,GACX,mBAAmB,GACnB,eAAe,GACf,YAAY,GACZ,aAAa,GACb,oBAAoB,GACpB,eAAe,GACf,gBAAgB,CAAC;AAGrB,gBAAgB;AAChB,MAAM,MAAM,aAAa,GACrB,WAAW,GACX,oBAAoB,GACpB,gBAAgB,GAChB,aAAa,GACb,cAAc,GACd,qBAAqB,GACrB,gBAAgB,GAChB,iBAAiB,CAAC;AAEtB,gBAAgB;AAChB,MAAM,MAAM,kBAAkB,GAC1B,qBAAqB,GACrB,oBAAoB,GACpB,0BAA0B,GAC1B,2BAA2B,GAC3B,+BAA+B,GAC/B,2BAA2B,GAC3B,6BAA6B,GAC7B,+BAA+B,GAC/B,sBAAsB,CAAC;AAE3B,gBAAgB;AAChB,MAAM,MAAM,YAAY,GACpB,WAAW,GACX,gBAAgB,GAChB,cAAc,GACd,eAAe,GACf,iBAAiB,GACjB,2BAA2B,GAC3B,mBAAmB,GACnB,kBAAkB,GAClB,cAAc,GACd,eAAe,GACf,aAAa,GACb,oBAAoB,GACpB,eAAe,GACf,gBAAgB,CAAC"} \ No newline at end of file diff --git a/loan-advisor-chatgpt-app/node_modules/@modelcontextprotocol/sdk/dist/esm/spec.types.js b/loan-advisor-chatgpt-app/node_modules/@modelcontextprotocol/sdk/dist/esm/spec.types.js new file mode 100644 index 0000000000000000000000000000000000000000..7d0bd05529f5df0da21fd5b3b561130d30299456 --- /dev/null +++ b/loan-advisor-chatgpt-app/node_modules/@modelcontextprotocol/sdk/dist/esm/spec.types.js @@ -0,0 +1,24 @@ +/** + * This file is automatically generated from the Model Context Protocol specification. + * + * Source: https://github.com/modelcontextprotocol/modelcontextprotocol + * Pulled from: https://raw.githubusercontent.com/modelcontextprotocol/modelcontextprotocol/main/schema/draft/schema.ts + * Last updated from commit: 35fa160caf287a9c48696e3ae452c0645c713669 + * + * DO NOT EDIT THIS FILE MANUALLY. Changes will be overwritten by automated updates. + * To update this file, run: npm run fetch:spec-types + */ /* JSON-RPC types */ +/** @internal */ +export const LATEST_PROTOCOL_VERSION = "DRAFT-2026-v1"; +/** @internal */ +export const JSONRPC_VERSION = "2.0"; +// Standard JSON-RPC error codes +export const PARSE_ERROR = -32700; +export const INVALID_REQUEST = -32600; +export const METHOD_NOT_FOUND = -32601; +export const INVALID_PARAMS = -32602; +export const INTERNAL_ERROR = -32603; +// Implementation-specific JSON-RPC error codes [-32000, -32099] +/** @internal */ +export const URL_ELICITATION_REQUIRED = -32042; +//# sourceMappingURL=spec.types.js.map \ No newline at end of file diff --git a/loan-advisor-chatgpt-app/node_modules/@modelcontextprotocol/sdk/dist/esm/spec.types.js.map b/loan-advisor-chatgpt-app/node_modules/@modelcontextprotocol/sdk/dist/esm/spec.types.js.map new file mode 100644 index 0000000000000000000000000000000000000000..02dadb912836829aa178fd3299bceae0f82a5139 --- /dev/null +++ b/loan-advisor-chatgpt-app/node_modules/@modelcontextprotocol/sdk/dist/esm/spec.types.js.map @@ -0,0 +1 @@ +{"version":3,"file":"spec.types.js","sourceRoot":"","sources":["../../src/spec.types.ts"],"names":[],"mappings":"AAAA;;;;;;;;;GASG,CAAA,oBAAoB;AAYvB,gBAAgB;AAChB,MAAM,CAAC,MAAM,uBAAuB,GAAG,eAAe,CAAC;AACvD,gBAAgB;AAChB,MAAM,CAAC,MAAM,eAAe,GAAG,KAAK,CAAC;AA4JrC,gCAAgC;AAChC,MAAM,CAAC,MAAM,WAAW,GAAG,CAAC,KAAK,CAAC;AAClC,MAAM,CAAC,MAAM,eAAe,GAAG,CAAC,KAAK,CAAC;AACtC,MAAM,CAAC,MAAM,gBAAgB,GAAG,CAAC,KAAK,CAAC;AACvC,MAAM,CAAC,MAAM,cAAc,GAAG,CAAC,KAAK,CAAC;AACrC,MAAM,CAAC,MAAM,cAAc,GAAG,CAAC,KAAK,CAAC;AAErC,gEAAgE;AAChE,gBAAgB;AAChB,MAAM,CAAC,MAAM,wBAAwB,GAAG,CAAC,KAAK,CAAC"} \ No newline at end of file diff --git a/loan-advisor-chatgpt-app/node_modules/@modelcontextprotocol/sdk/dist/esm/types.d.ts b/loan-advisor-chatgpt-app/node_modules/@modelcontextprotocol/sdk/dist/esm/types.d.ts new file mode 100644 index 0000000000000000000000000000000000000000..742adf4421a74acbf38b7dfe3a26e2a825237a01 --- /dev/null +++ b/loan-advisor-chatgpt-app/node_modules/@modelcontextprotocol/sdk/dist/esm/types.d.ts @@ -0,0 +1,8168 @@ +import * as z from 'zod/v4'; +import { AuthInfo } from './server/auth/types.js'; +export declare const LATEST_PROTOCOL_VERSION = "2025-11-25"; +export declare const DEFAULT_NEGOTIATED_PROTOCOL_VERSION = "2025-03-26"; +export declare const SUPPORTED_PROTOCOL_VERSIONS: string[]; +export declare const RELATED_TASK_META_KEY = "io.modelcontextprotocol/related-task"; +export declare const JSONRPC_VERSION = "2.0"; +/** + * Utility types + */ +type ExpandRecursively = T extends object ? (T extends infer O ? { + [K in keyof O]: ExpandRecursively; +} : never) : T; +/** + * A progress token, used to associate progress notifications with the original request. + */ +export declare const ProgressTokenSchema: z.ZodUnion; +/** + * An opaque token used to represent a cursor for pagination. + */ +export declare const CursorSchema: z.ZodString; +/** + * Task creation parameters, used to ask that the server create a task to represent a request. + */ +export declare const TaskCreationParamsSchema: z.ZodObject<{ + /** + * Requested duration in milliseconds to retain task from creation. + */ + ttl: z.ZodOptional; + /** + * Time in milliseconds to wait between task status requests. + */ + pollInterval: z.ZodOptional; +}, z.core.$loose>; +export declare const TaskMetadataSchema: z.ZodObject<{ + ttl: z.ZodOptional; +}, z.core.$strip>; +/** + * Metadata for associating messages with a task. + * Include this in the `_meta` field under the key `io.modelcontextprotocol/related-task`. + */ +export declare const RelatedTaskMetadataSchema: z.ZodObject<{ + taskId: z.ZodString; +}, z.core.$strip>; +declare const RequestMetaSchema: z.ZodObject<{ + /** + * If specified, the caller is requesting out-of-band progress notifications for this request (as represented by notifications/progress). The value of this parameter is an opaque token that will be attached to any subsequent notifications. The receiver is not obligated to provide these notifications. + */ + progressToken: z.ZodOptional>; + /** + * If specified, this request is related to the provided task. + */ + "io.modelcontextprotocol/related-task": z.ZodOptional>; +}, z.core.$loose>; +/** + * Common params for any request. + */ +declare const BaseRequestParamsSchema: z.ZodObject<{ + _meta: z.ZodOptional>; + /** + * If specified, this request is related to the provided task. + */ + "io.modelcontextprotocol/related-task": z.ZodOptional>; + }, z.core.$loose>>; +}, z.core.$strip>; +/** + * Common params for any task-augmented request. + */ +export declare const TaskAugmentedRequestParamsSchema: z.ZodObject<{ + _meta: z.ZodOptional>; + /** + * If specified, this request is related to the provided task. + */ + "io.modelcontextprotocol/related-task": z.ZodOptional>; + }, z.core.$loose>>; + task: z.ZodOptional; + }, z.core.$strip>>; +}, z.core.$strip>; +/** + * Checks if a value is a valid TaskAugmentedRequestParams. + * @param value - The value to check. + * + * @returns True if the value is a valid TaskAugmentedRequestParams, false otherwise. + */ +export declare const isTaskAugmentedRequestParams: (value: unknown) => value is TaskAugmentedRequestParams; +export declare const RequestSchema: z.ZodObject<{ + method: z.ZodString; + params: z.ZodOptional>; + /** + * If specified, this request is related to the provided task. + */ + "io.modelcontextprotocol/related-task": z.ZodOptional>; + }, z.core.$loose>>; + }, z.core.$loose>>; +}, z.core.$strip>; +declare const NotificationsParamsSchema: z.ZodObject<{ + _meta: z.ZodOptional>; + /** + * If specified, this request is related to the provided task. + */ + "io.modelcontextprotocol/related-task": z.ZodOptional>; + }, z.core.$loose>>; +}, z.core.$strip>; +export declare const NotificationSchema: z.ZodObject<{ + method: z.ZodString; + params: z.ZodOptional>; + /** + * If specified, this request is related to the provided task. + */ + "io.modelcontextprotocol/related-task": z.ZodOptional>; + }, z.core.$loose>>; + }, z.core.$loose>>; +}, z.core.$strip>; +export declare const ResultSchema: z.ZodObject<{ + /** + * See [MCP specification](https://github.com/modelcontextprotocol/modelcontextprotocol/blob/47339c03c143bb4ec01a26e721a1b8fe66634ebe/docs/specification/draft/basic/index.mdx#general-fields) + * for notes on _meta usage. + */ + _meta: z.ZodOptional>; + /** + * If specified, this request is related to the provided task. + */ + "io.modelcontextprotocol/related-task": z.ZodOptional>; + }, z.core.$loose>>; +}, z.core.$loose>; +/** + * A uniquely identifying ID for a request in JSON-RPC. + */ +export declare const RequestIdSchema: z.ZodUnion; +/** + * A request that expects a response. + */ +export declare const JSONRPCRequestSchema: z.ZodObject<{ + method: z.ZodString; + params: z.ZodOptional>; + /** + * If specified, this request is related to the provided task. + */ + "io.modelcontextprotocol/related-task": z.ZodOptional>; + }, z.core.$loose>>; + }, z.core.$loose>>; + jsonrpc: z.ZodLiteral<"2.0">; + id: z.ZodUnion; +}, z.core.$strict>; +export declare const isJSONRPCRequest: (value: unknown) => value is JSONRPCRequest; +/** + * A notification which does not expect a response. + */ +export declare const JSONRPCNotificationSchema: z.ZodObject<{ + method: z.ZodString; + params: z.ZodOptional>; + /** + * If specified, this request is related to the provided task. + */ + "io.modelcontextprotocol/related-task": z.ZodOptional>; + }, z.core.$loose>>; + }, z.core.$loose>>; + jsonrpc: z.ZodLiteral<"2.0">; +}, z.core.$strict>; +export declare const isJSONRPCNotification: (value: unknown) => value is JSONRPCNotification; +/** + * A successful (non-error) response to a request. + */ +export declare const JSONRPCResultResponseSchema: z.ZodObject<{ + jsonrpc: z.ZodLiteral<"2.0">; + id: z.ZodUnion; + result: z.ZodObject<{ + /** + * See [MCP specification](https://github.com/modelcontextprotocol/modelcontextprotocol/blob/47339c03c143bb4ec01a26e721a1b8fe66634ebe/docs/specification/draft/basic/index.mdx#general-fields) + * for notes on _meta usage. + */ + _meta: z.ZodOptional>; + /** + * If specified, this request is related to the provided task. + */ + "io.modelcontextprotocol/related-task": z.ZodOptional>; + }, z.core.$loose>>; + }, z.core.$loose>; +}, z.core.$strict>; +/** + * Checks if a value is a valid JSONRPCResultResponse. + * @param value - The value to check. + * + * @returns True if the value is a valid JSONRPCResultResponse, false otherwise. + */ +export declare const isJSONRPCResultResponse: (value: unknown) => value is JSONRPCResultResponse; +/** + * @deprecated Use {@link isJSONRPCResultResponse} instead. + * + * Please note that {@link JSONRPCResponse} is a union of {@link JSONRPCResultResponse} and {@link JSONRPCErrorResponse} as per the updated JSON-RPC specification. (was previously just {@link JSONRPCResultResponse}) + */ +export declare const isJSONRPCResponse: (value: unknown) => value is JSONRPCResultResponse; +/** + * Error codes defined by the JSON-RPC specification. + */ +export declare enum ErrorCode { + ConnectionClosed = -32000, + RequestTimeout = -32001, + ParseError = -32700, + InvalidRequest = -32600, + MethodNotFound = -32601, + InvalidParams = -32602, + InternalError = -32603, + UrlElicitationRequired = -32042 +} +/** + * A response to a request that indicates an error occurred. + */ +export declare const JSONRPCErrorResponseSchema: z.ZodObject<{ + jsonrpc: z.ZodLiteral<"2.0">; + id: z.ZodOptional>; + error: z.ZodObject<{ + code: z.ZodNumber; + message: z.ZodString; + data: z.ZodOptional; + }, z.core.$strip>; +}, z.core.$strict>; +/** + * @deprecated Use {@link JSONRPCErrorResponseSchema} instead. + */ +export declare const JSONRPCErrorSchema: z.ZodObject<{ + jsonrpc: z.ZodLiteral<"2.0">; + id: z.ZodOptional>; + error: z.ZodObject<{ + code: z.ZodNumber; + message: z.ZodString; + data: z.ZodOptional; + }, z.core.$strip>; +}, z.core.$strict>; +/** + * Checks if a value is a valid JSONRPCErrorResponse. + * @param value - The value to check. + * + * @returns True if the value is a valid JSONRPCErrorResponse, false otherwise. + */ +export declare const isJSONRPCErrorResponse: (value: unknown) => value is JSONRPCErrorResponse; +/** + * @deprecated Use {@link isJSONRPCErrorResponse} instead. + */ +export declare const isJSONRPCError: (value: unknown) => value is JSONRPCErrorResponse; +export declare const JSONRPCMessageSchema: z.ZodUnion>; + /** + * If specified, this request is related to the provided task. + */ + "io.modelcontextprotocol/related-task": z.ZodOptional>; + }, z.core.$loose>>; + }, z.core.$loose>>; + jsonrpc: z.ZodLiteral<"2.0">; + id: z.ZodUnion; +}, z.core.$strict>, z.ZodObject<{ + method: z.ZodString; + params: z.ZodOptional>; + /** + * If specified, this request is related to the provided task. + */ + "io.modelcontextprotocol/related-task": z.ZodOptional>; + }, z.core.$loose>>; + }, z.core.$loose>>; + jsonrpc: z.ZodLiteral<"2.0">; +}, z.core.$strict>, z.ZodObject<{ + jsonrpc: z.ZodLiteral<"2.0">; + id: z.ZodUnion; + result: z.ZodObject<{ + /** + * See [MCP specification](https://github.com/modelcontextprotocol/modelcontextprotocol/blob/47339c03c143bb4ec01a26e721a1b8fe66634ebe/docs/specification/draft/basic/index.mdx#general-fields) + * for notes on _meta usage. + */ + _meta: z.ZodOptional>; + /** + * If specified, this request is related to the provided task. + */ + "io.modelcontextprotocol/related-task": z.ZodOptional>; + }, z.core.$loose>>; + }, z.core.$loose>; +}, z.core.$strict>, z.ZodObject<{ + jsonrpc: z.ZodLiteral<"2.0">; + id: z.ZodOptional>; + error: z.ZodObject<{ + code: z.ZodNumber; + message: z.ZodString; + data: z.ZodOptional; + }, z.core.$strip>; +}, z.core.$strict>]>; +export declare const JSONRPCResponseSchema: z.ZodUnion; + id: z.ZodUnion; + result: z.ZodObject<{ + /** + * See [MCP specification](https://github.com/modelcontextprotocol/modelcontextprotocol/blob/47339c03c143bb4ec01a26e721a1b8fe66634ebe/docs/specification/draft/basic/index.mdx#general-fields) + * for notes on _meta usage. + */ + _meta: z.ZodOptional>; + /** + * If specified, this request is related to the provided task. + */ + "io.modelcontextprotocol/related-task": z.ZodOptional>; + }, z.core.$loose>>; + }, z.core.$loose>; +}, z.core.$strict>, z.ZodObject<{ + jsonrpc: z.ZodLiteral<"2.0">; + id: z.ZodOptional>; + error: z.ZodObject<{ + code: z.ZodNumber; + message: z.ZodString; + data: z.ZodOptional; + }, z.core.$strip>; +}, z.core.$strict>]>; +/** + * A response that indicates success but carries no data. + */ +export declare const EmptyResultSchema: z.ZodObject<{ + /** + * See [MCP specification](https://github.com/modelcontextprotocol/modelcontextprotocol/blob/47339c03c143bb4ec01a26e721a1b8fe66634ebe/docs/specification/draft/basic/index.mdx#general-fields) + * for notes on _meta usage. + */ + _meta: z.ZodOptional>; + /** + * If specified, this request is related to the provided task. + */ + "io.modelcontextprotocol/related-task": z.ZodOptional>; + }, z.core.$loose>>; +}, z.core.$strict>; +export declare const CancelledNotificationParamsSchema: z.ZodObject<{ + _meta: z.ZodOptional>; + /** + * If specified, this request is related to the provided task. + */ + "io.modelcontextprotocol/related-task": z.ZodOptional>; + }, z.core.$loose>>; + requestId: z.ZodOptional>; + reason: z.ZodOptional; +}, z.core.$strip>; +/** + * This notification can be sent by either side to indicate that it is cancelling a previously-issued request. + * + * The request SHOULD still be in-flight, but due to communication latency, it is always possible that this notification MAY arrive after the request has already finished. + * + * This notification indicates that the result will be unused, so any associated processing SHOULD cease. + * + * A client MUST NOT attempt to cancel its `initialize` request. + */ +export declare const CancelledNotificationSchema: z.ZodObject<{ + method: z.ZodLiteral<"notifications/cancelled">; + params: z.ZodObject<{ + _meta: z.ZodOptional>; + /** + * If specified, this request is related to the provided task. + */ + "io.modelcontextprotocol/related-task": z.ZodOptional>; + }, z.core.$loose>>; + requestId: z.ZodOptional>; + reason: z.ZodOptional; + }, z.core.$strip>; +}, z.core.$strip>; +/** + * Icon schema for use in tools, prompts, resources, and implementations. + */ +export declare const IconSchema: z.ZodObject<{ + src: z.ZodString; + mimeType: z.ZodOptional; + sizes: z.ZodOptional>; + theme: z.ZodOptional>; +}, z.core.$strip>; +/** + * Base schema to add `icons` property. + * + */ +export declare const IconsSchema: z.ZodObject<{ + icons: z.ZodOptional; + sizes: z.ZodOptional>; + theme: z.ZodOptional>; + }, z.core.$strip>>>; +}, z.core.$strip>; +/** + * Base metadata interface for common properties across resources, tools, prompts, and implementations. + */ +export declare const BaseMetadataSchema: z.ZodObject<{ + name: z.ZodString; + title: z.ZodOptional; +}, z.core.$strip>; +/** + * Describes the name and version of an MCP implementation. + */ +export declare const ImplementationSchema: z.ZodObject<{ + version: z.ZodString; + websiteUrl: z.ZodOptional; + description: z.ZodOptional; + icons: z.ZodOptional; + sizes: z.ZodOptional>; + theme: z.ZodOptional>; + }, z.core.$strip>>>; + name: z.ZodString; + title: z.ZodOptional; +}, z.core.$strip>; +/** + * Task capabilities for clients, indicating which request types support task creation. + */ +export declare const ClientTasksCapabilitySchema: z.ZodObject<{ + /** + * Present if the client supports listing tasks. + */ + list: z.ZodOptional>; + /** + * Present if the client supports cancelling tasks. + */ + cancel: z.ZodOptional>; + /** + * Capabilities for task creation on specific request types. + */ + requests: z.ZodOptional>; + }, z.core.$loose>>; + /** + * Task support for elicitation requests. + */ + elicitation: z.ZodOptional>; + }, z.core.$loose>>; + }, z.core.$loose>>; +}, z.core.$loose>; +/** + * Task capabilities for servers, indicating which request types support task creation. + */ +export declare const ServerTasksCapabilitySchema: z.ZodObject<{ + /** + * Present if the server supports listing tasks. + */ + list: z.ZodOptional>; + /** + * Present if the server supports cancelling tasks. + */ + cancel: z.ZodOptional>; + /** + * Capabilities for task creation on specific request types. + */ + requests: z.ZodOptional>; + }, z.core.$loose>>; + }, z.core.$loose>>; +}, z.core.$loose>; +/** + * Capabilities a client may support. Known capabilities are defined here, in this schema, but this is not a closed set: any client can define its own, additional capabilities. + */ +export declare const ClientCapabilitiesSchema: z.ZodObject<{ + experimental: z.ZodOptional>>; + sampling: z.ZodOptional>; + tools: z.ZodOptional>; + }, z.core.$strip>>; + elicitation: z.ZodOptional, z.ZodIntersection; + }, z.core.$strip>, z.ZodRecord>>; + url: z.ZodOptional>; + }, z.core.$strip>, z.ZodOptional>>>>; + roots: z.ZodOptional; + }, z.core.$strip>>; + tasks: z.ZodOptional>; + /** + * Present if the client supports cancelling tasks. + */ + cancel: z.ZodOptional>; + /** + * Capabilities for task creation on specific request types. + */ + requests: z.ZodOptional>; + }, z.core.$loose>>; + /** + * Task support for elicitation requests. + */ + elicitation: z.ZodOptional>; + }, z.core.$loose>>; + }, z.core.$loose>>; + }, z.core.$loose>>; + extensions: z.ZodOptional>>; +}, z.core.$strip>; +export declare const InitializeRequestParamsSchema: z.ZodObject<{ + _meta: z.ZodOptional>; + /** + * If specified, this request is related to the provided task. + */ + "io.modelcontextprotocol/related-task": z.ZodOptional>; + }, z.core.$loose>>; + protocolVersion: z.ZodString; + capabilities: z.ZodObject<{ + experimental: z.ZodOptional>>; + sampling: z.ZodOptional>; + tools: z.ZodOptional>; + }, z.core.$strip>>; + elicitation: z.ZodOptional, z.ZodIntersection; + }, z.core.$strip>, z.ZodRecord>>; + url: z.ZodOptional>; + }, z.core.$strip>, z.ZodOptional>>>>; + roots: z.ZodOptional; + }, z.core.$strip>>; + tasks: z.ZodOptional>; + /** + * Present if the client supports cancelling tasks. + */ + cancel: z.ZodOptional>; + /** + * Capabilities for task creation on specific request types. + */ + requests: z.ZodOptional>; + }, z.core.$loose>>; + /** + * Task support for elicitation requests. + */ + elicitation: z.ZodOptional>; + }, z.core.$loose>>; + }, z.core.$loose>>; + }, z.core.$loose>>; + extensions: z.ZodOptional>>; + }, z.core.$strip>; + clientInfo: z.ZodObject<{ + version: z.ZodString; + websiteUrl: z.ZodOptional; + description: z.ZodOptional; + icons: z.ZodOptional; + sizes: z.ZodOptional>; + theme: z.ZodOptional>; + }, z.core.$strip>>>; + name: z.ZodString; + title: z.ZodOptional; + }, z.core.$strip>; +}, z.core.$strip>; +/** + * This request is sent from the client to the server when it first connects, asking it to begin initialization. + */ +export declare const InitializeRequestSchema: z.ZodObject<{ + method: z.ZodLiteral<"initialize">; + params: z.ZodObject<{ + _meta: z.ZodOptional>; + /** + * If specified, this request is related to the provided task. + */ + "io.modelcontextprotocol/related-task": z.ZodOptional>; + }, z.core.$loose>>; + protocolVersion: z.ZodString; + capabilities: z.ZodObject<{ + experimental: z.ZodOptional>>; + sampling: z.ZodOptional>; + tools: z.ZodOptional>; + }, z.core.$strip>>; + elicitation: z.ZodOptional, z.ZodIntersection; + }, z.core.$strip>, z.ZodRecord>>; + url: z.ZodOptional>; + }, z.core.$strip>, z.ZodOptional>>>>; + roots: z.ZodOptional; + }, z.core.$strip>>; + tasks: z.ZodOptional>; + /** + * Present if the client supports cancelling tasks. + */ + cancel: z.ZodOptional>; + /** + * Capabilities for task creation on specific request types. + */ + requests: z.ZodOptional>; + }, z.core.$loose>>; + /** + * Task support for elicitation requests. + */ + elicitation: z.ZodOptional>; + }, z.core.$loose>>; + }, z.core.$loose>>; + }, z.core.$loose>>; + extensions: z.ZodOptional>>; + }, z.core.$strip>; + clientInfo: z.ZodObject<{ + version: z.ZodString; + websiteUrl: z.ZodOptional; + description: z.ZodOptional; + icons: z.ZodOptional; + sizes: z.ZodOptional>; + theme: z.ZodOptional>; + }, z.core.$strip>>>; + name: z.ZodString; + title: z.ZodOptional; + }, z.core.$strip>; + }, z.core.$strip>; +}, z.core.$strip>; +export declare const isInitializeRequest: (value: unknown) => value is InitializeRequest; +/** + * Capabilities that a server may support. Known capabilities are defined here, in this schema, but this is not a closed set: any server can define its own, additional capabilities. + */ +export declare const ServerCapabilitiesSchema: z.ZodObject<{ + experimental: z.ZodOptional>>; + logging: z.ZodOptional>; + completions: z.ZodOptional>; + prompts: z.ZodOptional; + }, z.core.$strip>>; + resources: z.ZodOptional; + listChanged: z.ZodOptional; + }, z.core.$strip>>; + tools: z.ZodOptional; + }, z.core.$strip>>; + tasks: z.ZodOptional>; + /** + * Present if the server supports cancelling tasks. + */ + cancel: z.ZodOptional>; + /** + * Capabilities for task creation on specific request types. + */ + requests: z.ZodOptional>; + }, z.core.$loose>>; + }, z.core.$loose>>; + }, z.core.$loose>>; + extensions: z.ZodOptional>>; +}, z.core.$strip>; +/** + * After receiving an initialize request from the client, the server sends this response. + */ +export declare const InitializeResultSchema: z.ZodObject<{ + _meta: z.ZodOptional>; + /** + * If specified, this request is related to the provided task. + */ + "io.modelcontextprotocol/related-task": z.ZodOptional>; + }, z.core.$loose>>; + protocolVersion: z.ZodString; + capabilities: z.ZodObject<{ + experimental: z.ZodOptional>>; + logging: z.ZodOptional>; + completions: z.ZodOptional>; + prompts: z.ZodOptional; + }, z.core.$strip>>; + resources: z.ZodOptional; + listChanged: z.ZodOptional; + }, z.core.$strip>>; + tools: z.ZodOptional; + }, z.core.$strip>>; + tasks: z.ZodOptional>; + /** + * Present if the server supports cancelling tasks. + */ + cancel: z.ZodOptional>; + /** + * Capabilities for task creation on specific request types. + */ + requests: z.ZodOptional>; + }, z.core.$loose>>; + }, z.core.$loose>>; + }, z.core.$loose>>; + extensions: z.ZodOptional>>; + }, z.core.$strip>; + serverInfo: z.ZodObject<{ + version: z.ZodString; + websiteUrl: z.ZodOptional; + description: z.ZodOptional; + icons: z.ZodOptional; + sizes: z.ZodOptional>; + theme: z.ZodOptional>; + }, z.core.$strip>>>; + name: z.ZodString; + title: z.ZodOptional; + }, z.core.$strip>; + instructions: z.ZodOptional; +}, z.core.$loose>; +/** + * This notification is sent from the client to the server after initialization has finished. + */ +export declare const InitializedNotificationSchema: z.ZodObject<{ + method: z.ZodLiteral<"notifications/initialized">; + params: z.ZodOptional>; + /** + * If specified, this request is related to the provided task. + */ + "io.modelcontextprotocol/related-task": z.ZodOptional>; + }, z.core.$loose>>; + }, z.core.$strip>>; +}, z.core.$strip>; +export declare const isInitializedNotification: (value: unknown) => value is InitializedNotification; +/** + * A ping, issued by either the server or the client, to check that the other party is still alive. The receiver must promptly respond, or else may be disconnected. + */ +export declare const PingRequestSchema: z.ZodObject<{ + method: z.ZodLiteral<"ping">; + params: z.ZodOptional>; + /** + * If specified, this request is related to the provided task. + */ + "io.modelcontextprotocol/related-task": z.ZodOptional>; + }, z.core.$loose>>; + }, z.core.$strip>>; +}, z.core.$strip>; +export declare const ProgressSchema: z.ZodObject<{ + progress: z.ZodNumber; + total: z.ZodOptional; + message: z.ZodOptional; +}, z.core.$strip>; +export declare const ProgressNotificationParamsSchema: z.ZodObject<{ + progressToken: z.ZodUnion; + progress: z.ZodNumber; + total: z.ZodOptional; + message: z.ZodOptional; + _meta: z.ZodOptional>; + /** + * If specified, this request is related to the provided task. + */ + "io.modelcontextprotocol/related-task": z.ZodOptional>; + }, z.core.$loose>>; +}, z.core.$strip>; +/** + * An out-of-band notification used to inform the receiver of a progress update for a long-running request. + * + * @category notifications/progress + */ +export declare const ProgressNotificationSchema: z.ZodObject<{ + method: z.ZodLiteral<"notifications/progress">; + params: z.ZodObject<{ + progressToken: z.ZodUnion; + progress: z.ZodNumber; + total: z.ZodOptional; + message: z.ZodOptional; + _meta: z.ZodOptional>; + /** + * If specified, this request is related to the provided task. + */ + "io.modelcontextprotocol/related-task": z.ZodOptional>; + }, z.core.$loose>>; + }, z.core.$strip>; +}, z.core.$strip>; +export declare const PaginatedRequestParamsSchema: z.ZodObject<{ + _meta: z.ZodOptional>; + /** + * If specified, this request is related to the provided task. + */ + "io.modelcontextprotocol/related-task": z.ZodOptional>; + }, z.core.$loose>>; + cursor: z.ZodOptional; +}, z.core.$strip>; +export declare const PaginatedRequestSchema: z.ZodObject<{ + method: z.ZodString; + params: z.ZodOptional>; + /** + * If specified, this request is related to the provided task. + */ + "io.modelcontextprotocol/related-task": z.ZodOptional>; + }, z.core.$loose>>; + cursor: z.ZodOptional; + }, z.core.$strip>>; +}, z.core.$strip>; +export declare const PaginatedResultSchema: z.ZodObject<{ + _meta: z.ZodOptional>; + /** + * If specified, this request is related to the provided task. + */ + "io.modelcontextprotocol/related-task": z.ZodOptional>; + }, z.core.$loose>>; + nextCursor: z.ZodOptional; +}, z.core.$loose>; +/** + * The status of a task. + * */ +export declare const TaskStatusSchema: z.ZodEnum<{ + working: "working"; + input_required: "input_required"; + completed: "completed"; + failed: "failed"; + cancelled: "cancelled"; +}>; +/** + * A pollable state object associated with a request. + */ +export declare const TaskSchema: z.ZodObject<{ + taskId: z.ZodString; + status: z.ZodEnum<{ + working: "working"; + input_required: "input_required"; + completed: "completed"; + failed: "failed"; + cancelled: "cancelled"; + }>; + ttl: z.ZodUnion; + createdAt: z.ZodString; + lastUpdatedAt: z.ZodString; + pollInterval: z.ZodOptional; + statusMessage: z.ZodOptional; +}, z.core.$strip>; +/** + * Result returned when a task is created, containing the task data wrapped in a task field. + */ +export declare const CreateTaskResultSchema: z.ZodObject<{ + _meta: z.ZodOptional>; + /** + * If specified, this request is related to the provided task. + */ + "io.modelcontextprotocol/related-task": z.ZodOptional>; + }, z.core.$loose>>; + task: z.ZodObject<{ + taskId: z.ZodString; + status: z.ZodEnum<{ + working: "working"; + input_required: "input_required"; + completed: "completed"; + failed: "failed"; + cancelled: "cancelled"; + }>; + ttl: z.ZodUnion; + createdAt: z.ZodString; + lastUpdatedAt: z.ZodString; + pollInterval: z.ZodOptional; + statusMessage: z.ZodOptional; + }, z.core.$strip>; +}, z.core.$loose>; +/** + * Parameters for task status notification. + */ +export declare const TaskStatusNotificationParamsSchema: z.ZodObject<{ + _meta: z.ZodOptional>; + /** + * If specified, this request is related to the provided task. + */ + "io.modelcontextprotocol/related-task": z.ZodOptional>; + }, z.core.$loose>>; + taskId: z.ZodString; + status: z.ZodEnum<{ + working: "working"; + input_required: "input_required"; + completed: "completed"; + failed: "failed"; + cancelled: "cancelled"; + }>; + ttl: z.ZodUnion; + createdAt: z.ZodString; + lastUpdatedAt: z.ZodString; + pollInterval: z.ZodOptional; + statusMessage: z.ZodOptional; +}, z.core.$strip>; +/** + * A notification sent when a task's status changes. + */ +export declare const TaskStatusNotificationSchema: z.ZodObject<{ + method: z.ZodLiteral<"notifications/tasks/status">; + params: z.ZodObject<{ + _meta: z.ZodOptional>; + /** + * If specified, this request is related to the provided task. + */ + "io.modelcontextprotocol/related-task": z.ZodOptional>; + }, z.core.$loose>>; + taskId: z.ZodString; + status: z.ZodEnum<{ + working: "working"; + input_required: "input_required"; + completed: "completed"; + failed: "failed"; + cancelled: "cancelled"; + }>; + ttl: z.ZodUnion; + createdAt: z.ZodString; + lastUpdatedAt: z.ZodString; + pollInterval: z.ZodOptional; + statusMessage: z.ZodOptional; + }, z.core.$strip>; +}, z.core.$strip>; +/** + * A request to get the state of a specific task. + */ +export declare const GetTaskRequestSchema: z.ZodObject<{ + method: z.ZodLiteral<"tasks/get">; + params: z.ZodObject<{ + _meta: z.ZodOptional>; + /** + * If specified, this request is related to the provided task. + */ + "io.modelcontextprotocol/related-task": z.ZodOptional>; + }, z.core.$loose>>; + taskId: z.ZodString; + }, z.core.$strip>; +}, z.core.$strip>; +/** + * The response to a tasks/get request. + */ +export declare const GetTaskResultSchema: z.ZodObject<{ + _meta: z.ZodOptional>; + /** + * If specified, this request is related to the provided task. + */ + "io.modelcontextprotocol/related-task": z.ZodOptional>; + }, z.core.$loose>>; + taskId: z.ZodString; + status: z.ZodEnum<{ + working: "working"; + input_required: "input_required"; + completed: "completed"; + failed: "failed"; + cancelled: "cancelled"; + }>; + ttl: z.ZodUnion; + createdAt: z.ZodString; + lastUpdatedAt: z.ZodString; + pollInterval: z.ZodOptional; + statusMessage: z.ZodOptional; +}, z.core.$strip>; +/** + * A request to get the result of a specific task. + */ +export declare const GetTaskPayloadRequestSchema: z.ZodObject<{ + method: z.ZodLiteral<"tasks/result">; + params: z.ZodObject<{ + _meta: z.ZodOptional>; + /** + * If specified, this request is related to the provided task. + */ + "io.modelcontextprotocol/related-task": z.ZodOptional>; + }, z.core.$loose>>; + taskId: z.ZodString; + }, z.core.$strip>; +}, z.core.$strip>; +/** + * The response to a tasks/result request. + * The structure matches the result type of the original request. + * For example, a tools/call task would return the CallToolResult structure. + * + */ +export declare const GetTaskPayloadResultSchema: z.ZodObject<{ + /** + * See [MCP specification](https://github.com/modelcontextprotocol/modelcontextprotocol/blob/47339c03c143bb4ec01a26e721a1b8fe66634ebe/docs/specification/draft/basic/index.mdx#general-fields) + * for notes on _meta usage. + */ + _meta: z.ZodOptional>; + /** + * If specified, this request is related to the provided task. + */ + "io.modelcontextprotocol/related-task": z.ZodOptional>; + }, z.core.$loose>>; +}, z.core.$loose>; +/** + * A request to list tasks. + */ +export declare const ListTasksRequestSchema: z.ZodObject<{ + params: z.ZodOptional>; + /** + * If specified, this request is related to the provided task. + */ + "io.modelcontextprotocol/related-task": z.ZodOptional>; + }, z.core.$loose>>; + cursor: z.ZodOptional; + }, z.core.$strip>>; + method: z.ZodLiteral<"tasks/list">; +}, z.core.$strip>; +/** + * The response to a tasks/list request. + */ +export declare const ListTasksResultSchema: z.ZodObject<{ + _meta: z.ZodOptional>; + /** + * If specified, this request is related to the provided task. + */ + "io.modelcontextprotocol/related-task": z.ZodOptional>; + }, z.core.$loose>>; + nextCursor: z.ZodOptional; + tasks: z.ZodArray; + ttl: z.ZodUnion; + createdAt: z.ZodString; + lastUpdatedAt: z.ZodString; + pollInterval: z.ZodOptional; + statusMessage: z.ZodOptional; + }, z.core.$strip>>; +}, z.core.$loose>; +/** + * A request to cancel a specific task. + */ +export declare const CancelTaskRequestSchema: z.ZodObject<{ + method: z.ZodLiteral<"tasks/cancel">; + params: z.ZodObject<{ + _meta: z.ZodOptional>; + /** + * If specified, this request is related to the provided task. + */ + "io.modelcontextprotocol/related-task": z.ZodOptional>; + }, z.core.$loose>>; + taskId: z.ZodString; + }, z.core.$strip>; +}, z.core.$strip>; +/** + * The response to a tasks/cancel request. + */ +export declare const CancelTaskResultSchema: z.ZodObject<{ + _meta: z.ZodOptional>; + /** + * If specified, this request is related to the provided task. + */ + "io.modelcontextprotocol/related-task": z.ZodOptional>; + }, z.core.$loose>>; + taskId: z.ZodString; + status: z.ZodEnum<{ + working: "working"; + input_required: "input_required"; + completed: "completed"; + failed: "failed"; + cancelled: "cancelled"; + }>; + ttl: z.ZodUnion; + createdAt: z.ZodString; + lastUpdatedAt: z.ZodString; + pollInterval: z.ZodOptional; + statusMessage: z.ZodOptional; +}, z.core.$strip>; +/** + * The contents of a specific resource or sub-resource. + */ +export declare const ResourceContentsSchema: z.ZodObject<{ + uri: z.ZodString; + mimeType: z.ZodOptional; + _meta: z.ZodOptional>; +}, z.core.$strip>; +export declare const TextResourceContentsSchema: z.ZodObject<{ + uri: z.ZodString; + mimeType: z.ZodOptional; + _meta: z.ZodOptional>; + text: z.ZodString; +}, z.core.$strip>; +export declare const BlobResourceContentsSchema: z.ZodObject<{ + uri: z.ZodString; + mimeType: z.ZodOptional; + _meta: z.ZodOptional>; + blob: z.ZodString; +}, z.core.$strip>; +/** + * The sender or recipient of messages and data in a conversation. + */ +export declare const RoleSchema: z.ZodEnum<{ + user: "user"; + assistant: "assistant"; +}>; +/** + * Optional annotations providing clients additional context about a resource. + */ +export declare const AnnotationsSchema: z.ZodObject<{ + audience: z.ZodOptional>>; + priority: z.ZodOptional; + lastModified: z.ZodOptional; +}, z.core.$strip>; +/** + * A known resource that the server is capable of reading. + */ +export declare const ResourceSchema: z.ZodObject<{ + uri: z.ZodString; + description: z.ZodOptional; + mimeType: z.ZodOptional; + size: z.ZodOptional; + annotations: z.ZodOptional>>; + priority: z.ZodOptional; + lastModified: z.ZodOptional; + }, z.core.$strip>>; + _meta: z.ZodOptional>; + icons: z.ZodOptional; + sizes: z.ZodOptional>; + theme: z.ZodOptional>; + }, z.core.$strip>>>; + name: z.ZodString; + title: z.ZodOptional; +}, z.core.$strip>; +/** + * A template description for resources available on the server. + */ +export declare const ResourceTemplateSchema: z.ZodObject<{ + uriTemplate: z.ZodString; + description: z.ZodOptional; + mimeType: z.ZodOptional; + annotations: z.ZodOptional>>; + priority: z.ZodOptional; + lastModified: z.ZodOptional; + }, z.core.$strip>>; + _meta: z.ZodOptional>; + icons: z.ZodOptional; + sizes: z.ZodOptional>; + theme: z.ZodOptional>; + }, z.core.$strip>>>; + name: z.ZodString; + title: z.ZodOptional; +}, z.core.$strip>; +/** + * Sent from the client to request a list of resources the server has. + */ +export declare const ListResourcesRequestSchema: z.ZodObject<{ + params: z.ZodOptional>; + /** + * If specified, this request is related to the provided task. + */ + "io.modelcontextprotocol/related-task": z.ZodOptional>; + }, z.core.$loose>>; + cursor: z.ZodOptional; + }, z.core.$strip>>; + method: z.ZodLiteral<"resources/list">; +}, z.core.$strip>; +/** + * The server's response to a resources/list request from the client. + */ +export declare const ListResourcesResultSchema: z.ZodObject<{ + _meta: z.ZodOptional>; + /** + * If specified, this request is related to the provided task. + */ + "io.modelcontextprotocol/related-task": z.ZodOptional>; + }, z.core.$loose>>; + nextCursor: z.ZodOptional; + resources: z.ZodArray; + mimeType: z.ZodOptional; + size: z.ZodOptional; + annotations: z.ZodOptional>>; + priority: z.ZodOptional; + lastModified: z.ZodOptional; + }, z.core.$strip>>; + _meta: z.ZodOptional>; + icons: z.ZodOptional; + sizes: z.ZodOptional>; + theme: z.ZodOptional>; + }, z.core.$strip>>>; + name: z.ZodString; + title: z.ZodOptional; + }, z.core.$strip>>; +}, z.core.$loose>; +/** + * Sent from the client to request a list of resource templates the server has. + */ +export declare const ListResourceTemplatesRequestSchema: z.ZodObject<{ + params: z.ZodOptional>; + /** + * If specified, this request is related to the provided task. + */ + "io.modelcontextprotocol/related-task": z.ZodOptional>; + }, z.core.$loose>>; + cursor: z.ZodOptional; + }, z.core.$strip>>; + method: z.ZodLiteral<"resources/templates/list">; +}, z.core.$strip>; +/** + * The server's response to a resources/templates/list request from the client. + */ +export declare const ListResourceTemplatesResultSchema: z.ZodObject<{ + _meta: z.ZodOptional>; + /** + * If specified, this request is related to the provided task. + */ + "io.modelcontextprotocol/related-task": z.ZodOptional>; + }, z.core.$loose>>; + nextCursor: z.ZodOptional; + resourceTemplates: z.ZodArray; + mimeType: z.ZodOptional; + annotations: z.ZodOptional>>; + priority: z.ZodOptional; + lastModified: z.ZodOptional; + }, z.core.$strip>>; + _meta: z.ZodOptional>; + icons: z.ZodOptional; + sizes: z.ZodOptional>; + theme: z.ZodOptional>; + }, z.core.$strip>>>; + name: z.ZodString; + title: z.ZodOptional; + }, z.core.$strip>>; +}, z.core.$loose>; +export declare const ResourceRequestParamsSchema: z.ZodObject<{ + _meta: z.ZodOptional>; + /** + * If specified, this request is related to the provided task. + */ + "io.modelcontextprotocol/related-task": z.ZodOptional>; + }, z.core.$loose>>; + uri: z.ZodString; +}, z.core.$strip>; +/** + * Parameters for a `resources/read` request. + */ +export declare const ReadResourceRequestParamsSchema: z.ZodObject<{ + _meta: z.ZodOptional>; + /** + * If specified, this request is related to the provided task. + */ + "io.modelcontextprotocol/related-task": z.ZodOptional>; + }, z.core.$loose>>; + uri: z.ZodString; +}, z.core.$strip>; +/** + * Sent from the client to the server, to read a specific resource URI. + */ +export declare const ReadResourceRequestSchema: z.ZodObject<{ + method: z.ZodLiteral<"resources/read">; + params: z.ZodObject<{ + _meta: z.ZodOptional>; + /** + * If specified, this request is related to the provided task. + */ + "io.modelcontextprotocol/related-task": z.ZodOptional>; + }, z.core.$loose>>; + uri: z.ZodString; + }, z.core.$strip>; +}, z.core.$strip>; +/** + * The server's response to a resources/read request from the client. + */ +export declare const ReadResourceResultSchema: z.ZodObject<{ + _meta: z.ZodOptional>; + /** + * If specified, this request is related to the provided task. + */ + "io.modelcontextprotocol/related-task": z.ZodOptional>; + }, z.core.$loose>>; + contents: z.ZodArray; + _meta: z.ZodOptional>; + text: z.ZodString; + }, z.core.$strip>, z.ZodObject<{ + uri: z.ZodString; + mimeType: z.ZodOptional; + _meta: z.ZodOptional>; + blob: z.ZodString; + }, z.core.$strip>]>>; +}, z.core.$loose>; +/** + * An optional notification from the server to the client, informing it that the list of resources it can read from has changed. This may be issued by servers without any previous subscription from the client. + */ +export declare const ResourceListChangedNotificationSchema: z.ZodObject<{ + method: z.ZodLiteral<"notifications/resources/list_changed">; + params: z.ZodOptional>; + /** + * If specified, this request is related to the provided task. + */ + "io.modelcontextprotocol/related-task": z.ZodOptional>; + }, z.core.$loose>>; + }, z.core.$strip>>; +}, z.core.$strip>; +export declare const SubscribeRequestParamsSchema: z.ZodObject<{ + _meta: z.ZodOptional>; + /** + * If specified, this request is related to the provided task. + */ + "io.modelcontextprotocol/related-task": z.ZodOptional>; + }, z.core.$loose>>; + uri: z.ZodString; +}, z.core.$strip>; +/** + * Sent from the client to request resources/updated notifications from the server whenever a particular resource changes. + */ +export declare const SubscribeRequestSchema: z.ZodObject<{ + method: z.ZodLiteral<"resources/subscribe">; + params: z.ZodObject<{ + _meta: z.ZodOptional>; + /** + * If specified, this request is related to the provided task. + */ + "io.modelcontextprotocol/related-task": z.ZodOptional>; + }, z.core.$loose>>; + uri: z.ZodString; + }, z.core.$strip>; +}, z.core.$strip>; +export declare const UnsubscribeRequestParamsSchema: z.ZodObject<{ + _meta: z.ZodOptional>; + /** + * If specified, this request is related to the provided task. + */ + "io.modelcontextprotocol/related-task": z.ZodOptional>; + }, z.core.$loose>>; + uri: z.ZodString; +}, z.core.$strip>; +/** + * Sent from the client to request cancellation of resources/updated notifications from the server. This should follow a previous resources/subscribe request. + */ +export declare const UnsubscribeRequestSchema: z.ZodObject<{ + method: z.ZodLiteral<"resources/unsubscribe">; + params: z.ZodObject<{ + _meta: z.ZodOptional>; + /** + * If specified, this request is related to the provided task. + */ + "io.modelcontextprotocol/related-task": z.ZodOptional>; + }, z.core.$loose>>; + uri: z.ZodString; + }, z.core.$strip>; +}, z.core.$strip>; +/** + * Parameters for a `notifications/resources/updated` notification. + */ +export declare const ResourceUpdatedNotificationParamsSchema: z.ZodObject<{ + _meta: z.ZodOptional>; + /** + * If specified, this request is related to the provided task. + */ + "io.modelcontextprotocol/related-task": z.ZodOptional>; + }, z.core.$loose>>; + uri: z.ZodString; +}, z.core.$strip>; +/** + * A notification from the server to the client, informing it that a resource has changed and may need to be read again. This should only be sent if the client previously sent a resources/subscribe request. + */ +export declare const ResourceUpdatedNotificationSchema: z.ZodObject<{ + method: z.ZodLiteral<"notifications/resources/updated">; + params: z.ZodObject<{ + _meta: z.ZodOptional>; + /** + * If specified, this request is related to the provided task. + */ + "io.modelcontextprotocol/related-task": z.ZodOptional>; + }, z.core.$loose>>; + uri: z.ZodString; + }, z.core.$strip>; +}, z.core.$strip>; +/** + * Describes an argument that a prompt can accept. + */ +export declare const PromptArgumentSchema: z.ZodObject<{ + name: z.ZodString; + description: z.ZodOptional; + required: z.ZodOptional; +}, z.core.$strip>; +/** + * A prompt or prompt template that the server offers. + */ +export declare const PromptSchema: z.ZodObject<{ + description: z.ZodOptional; + arguments: z.ZodOptional; + required: z.ZodOptional; + }, z.core.$strip>>>; + _meta: z.ZodOptional>; + icons: z.ZodOptional; + sizes: z.ZodOptional>; + theme: z.ZodOptional>; + }, z.core.$strip>>>; + name: z.ZodString; + title: z.ZodOptional; +}, z.core.$strip>; +/** + * Sent from the client to request a list of prompts and prompt templates the server has. + */ +export declare const ListPromptsRequestSchema: z.ZodObject<{ + params: z.ZodOptional>; + /** + * If specified, this request is related to the provided task. + */ + "io.modelcontextprotocol/related-task": z.ZodOptional>; + }, z.core.$loose>>; + cursor: z.ZodOptional; + }, z.core.$strip>>; + method: z.ZodLiteral<"prompts/list">; +}, z.core.$strip>; +/** + * The server's response to a prompts/list request from the client. + */ +export declare const ListPromptsResultSchema: z.ZodObject<{ + _meta: z.ZodOptional>; + /** + * If specified, this request is related to the provided task. + */ + "io.modelcontextprotocol/related-task": z.ZodOptional>; + }, z.core.$loose>>; + nextCursor: z.ZodOptional; + prompts: z.ZodArray; + arguments: z.ZodOptional; + required: z.ZodOptional; + }, z.core.$strip>>>; + _meta: z.ZodOptional>; + icons: z.ZodOptional; + sizes: z.ZodOptional>; + theme: z.ZodOptional>; + }, z.core.$strip>>>; + name: z.ZodString; + title: z.ZodOptional; + }, z.core.$strip>>; +}, z.core.$loose>; +/** + * Parameters for a `prompts/get` request. + */ +export declare const GetPromptRequestParamsSchema: z.ZodObject<{ + _meta: z.ZodOptional>; + /** + * If specified, this request is related to the provided task. + */ + "io.modelcontextprotocol/related-task": z.ZodOptional>; + }, z.core.$loose>>; + name: z.ZodString; + arguments: z.ZodOptional>; +}, z.core.$strip>; +/** + * Used by the client to get a prompt provided by the server. + */ +export declare const GetPromptRequestSchema: z.ZodObject<{ + method: z.ZodLiteral<"prompts/get">; + params: z.ZodObject<{ + _meta: z.ZodOptional>; + /** + * If specified, this request is related to the provided task. + */ + "io.modelcontextprotocol/related-task": z.ZodOptional>; + }, z.core.$loose>>; + name: z.ZodString; + arguments: z.ZodOptional>; + }, z.core.$strip>; +}, z.core.$strip>; +/** + * Text provided to or from an LLM. + */ +export declare const TextContentSchema: z.ZodObject<{ + type: z.ZodLiteral<"text">; + text: z.ZodString; + annotations: z.ZodOptional>>; + priority: z.ZodOptional; + lastModified: z.ZodOptional; + }, z.core.$strip>>; + _meta: z.ZodOptional>; +}, z.core.$strip>; +/** + * An image provided to or from an LLM. + */ +export declare const ImageContentSchema: z.ZodObject<{ + type: z.ZodLiteral<"image">; + data: z.ZodString; + mimeType: z.ZodString; + annotations: z.ZodOptional>>; + priority: z.ZodOptional; + lastModified: z.ZodOptional; + }, z.core.$strip>>; + _meta: z.ZodOptional>; +}, z.core.$strip>; +/** + * An Audio provided to or from an LLM. + */ +export declare const AudioContentSchema: z.ZodObject<{ + type: z.ZodLiteral<"audio">; + data: z.ZodString; + mimeType: z.ZodString; + annotations: z.ZodOptional>>; + priority: z.ZodOptional; + lastModified: z.ZodOptional; + }, z.core.$strip>>; + _meta: z.ZodOptional>; +}, z.core.$strip>; +/** + * A tool call request from an assistant (LLM). + * Represents the assistant's request to use a tool. + */ +export declare const ToolUseContentSchema: z.ZodObject<{ + type: z.ZodLiteral<"tool_use">; + name: z.ZodString; + id: z.ZodString; + input: z.ZodRecord; + _meta: z.ZodOptional>; +}, z.core.$strip>; +/** + * The contents of a resource, embedded into a prompt or tool call result. + */ +export declare const EmbeddedResourceSchema: z.ZodObject<{ + type: z.ZodLiteral<"resource">; + resource: z.ZodUnion; + _meta: z.ZodOptional>; + text: z.ZodString; + }, z.core.$strip>, z.ZodObject<{ + uri: z.ZodString; + mimeType: z.ZodOptional; + _meta: z.ZodOptional>; + blob: z.ZodString; + }, z.core.$strip>]>; + annotations: z.ZodOptional>>; + priority: z.ZodOptional; + lastModified: z.ZodOptional; + }, z.core.$strip>>; + _meta: z.ZodOptional>; +}, z.core.$strip>; +/** + * A resource that the server is capable of reading, included in a prompt or tool call result. + * + * Note: resource links returned by tools are not guaranteed to appear in the results of `resources/list` requests. + */ +export declare const ResourceLinkSchema: z.ZodObject<{ + uri: z.ZodString; + description: z.ZodOptional; + mimeType: z.ZodOptional; + size: z.ZodOptional; + annotations: z.ZodOptional>>; + priority: z.ZodOptional; + lastModified: z.ZodOptional; + }, z.core.$strip>>; + _meta: z.ZodOptional>; + icons: z.ZodOptional; + sizes: z.ZodOptional>; + theme: z.ZodOptional>; + }, z.core.$strip>>>; + name: z.ZodString; + title: z.ZodOptional; + type: z.ZodLiteral<"resource_link">; +}, z.core.$strip>; +/** + * A content block that can be used in prompts and tool results. + */ +export declare const ContentBlockSchema: z.ZodUnion; + text: z.ZodString; + annotations: z.ZodOptional>>; + priority: z.ZodOptional; + lastModified: z.ZodOptional; + }, z.core.$strip>>; + _meta: z.ZodOptional>; +}, z.core.$strip>, z.ZodObject<{ + type: z.ZodLiteral<"image">; + data: z.ZodString; + mimeType: z.ZodString; + annotations: z.ZodOptional>>; + priority: z.ZodOptional; + lastModified: z.ZodOptional; + }, z.core.$strip>>; + _meta: z.ZodOptional>; +}, z.core.$strip>, z.ZodObject<{ + type: z.ZodLiteral<"audio">; + data: z.ZodString; + mimeType: z.ZodString; + annotations: z.ZodOptional>>; + priority: z.ZodOptional; + lastModified: z.ZodOptional; + }, z.core.$strip>>; + _meta: z.ZodOptional>; +}, z.core.$strip>, z.ZodObject<{ + uri: z.ZodString; + description: z.ZodOptional; + mimeType: z.ZodOptional; + size: z.ZodOptional; + annotations: z.ZodOptional>>; + priority: z.ZodOptional; + lastModified: z.ZodOptional; + }, z.core.$strip>>; + _meta: z.ZodOptional>; + icons: z.ZodOptional; + sizes: z.ZodOptional>; + theme: z.ZodOptional>; + }, z.core.$strip>>>; + name: z.ZodString; + title: z.ZodOptional; + type: z.ZodLiteral<"resource_link">; +}, z.core.$strip>, z.ZodObject<{ + type: z.ZodLiteral<"resource">; + resource: z.ZodUnion; + _meta: z.ZodOptional>; + text: z.ZodString; + }, z.core.$strip>, z.ZodObject<{ + uri: z.ZodString; + mimeType: z.ZodOptional; + _meta: z.ZodOptional>; + blob: z.ZodString; + }, z.core.$strip>]>; + annotations: z.ZodOptional>>; + priority: z.ZodOptional; + lastModified: z.ZodOptional; + }, z.core.$strip>>; + _meta: z.ZodOptional>; +}, z.core.$strip>]>; +/** + * Describes a message returned as part of a prompt. + */ +export declare const PromptMessageSchema: z.ZodObject<{ + role: z.ZodEnum<{ + user: "user"; + assistant: "assistant"; + }>; + content: z.ZodUnion; + text: z.ZodString; + annotations: z.ZodOptional>>; + priority: z.ZodOptional; + lastModified: z.ZodOptional; + }, z.core.$strip>>; + _meta: z.ZodOptional>; + }, z.core.$strip>, z.ZodObject<{ + type: z.ZodLiteral<"image">; + data: z.ZodString; + mimeType: z.ZodString; + annotations: z.ZodOptional>>; + priority: z.ZodOptional; + lastModified: z.ZodOptional; + }, z.core.$strip>>; + _meta: z.ZodOptional>; + }, z.core.$strip>, z.ZodObject<{ + type: z.ZodLiteral<"audio">; + data: z.ZodString; + mimeType: z.ZodString; + annotations: z.ZodOptional>>; + priority: z.ZodOptional; + lastModified: z.ZodOptional; + }, z.core.$strip>>; + _meta: z.ZodOptional>; + }, z.core.$strip>, z.ZodObject<{ + uri: z.ZodString; + description: z.ZodOptional; + mimeType: z.ZodOptional; + size: z.ZodOptional; + annotations: z.ZodOptional>>; + priority: z.ZodOptional; + lastModified: z.ZodOptional; + }, z.core.$strip>>; + _meta: z.ZodOptional>; + icons: z.ZodOptional; + sizes: z.ZodOptional>; + theme: z.ZodOptional>; + }, z.core.$strip>>>; + name: z.ZodString; + title: z.ZodOptional; + type: z.ZodLiteral<"resource_link">; + }, z.core.$strip>, z.ZodObject<{ + type: z.ZodLiteral<"resource">; + resource: z.ZodUnion; + _meta: z.ZodOptional>; + text: z.ZodString; + }, z.core.$strip>, z.ZodObject<{ + uri: z.ZodString; + mimeType: z.ZodOptional; + _meta: z.ZodOptional>; + blob: z.ZodString; + }, z.core.$strip>]>; + annotations: z.ZodOptional>>; + priority: z.ZodOptional; + lastModified: z.ZodOptional; + }, z.core.$strip>>; + _meta: z.ZodOptional>; + }, z.core.$strip>]>; +}, z.core.$strip>; +/** + * The server's response to a prompts/get request from the client. + */ +export declare const GetPromptResultSchema: z.ZodObject<{ + _meta: z.ZodOptional>; + /** + * If specified, this request is related to the provided task. + */ + "io.modelcontextprotocol/related-task": z.ZodOptional>; + }, z.core.$loose>>; + description: z.ZodOptional; + messages: z.ZodArray; + content: z.ZodUnion; + text: z.ZodString; + annotations: z.ZodOptional>>; + priority: z.ZodOptional; + lastModified: z.ZodOptional; + }, z.core.$strip>>; + _meta: z.ZodOptional>; + }, z.core.$strip>, z.ZodObject<{ + type: z.ZodLiteral<"image">; + data: z.ZodString; + mimeType: z.ZodString; + annotations: z.ZodOptional>>; + priority: z.ZodOptional; + lastModified: z.ZodOptional; + }, z.core.$strip>>; + _meta: z.ZodOptional>; + }, z.core.$strip>, z.ZodObject<{ + type: z.ZodLiteral<"audio">; + data: z.ZodString; + mimeType: z.ZodString; + annotations: z.ZodOptional>>; + priority: z.ZodOptional; + lastModified: z.ZodOptional; + }, z.core.$strip>>; + _meta: z.ZodOptional>; + }, z.core.$strip>, z.ZodObject<{ + uri: z.ZodString; + description: z.ZodOptional; + mimeType: z.ZodOptional; + size: z.ZodOptional; + annotations: z.ZodOptional>>; + priority: z.ZodOptional; + lastModified: z.ZodOptional; + }, z.core.$strip>>; + _meta: z.ZodOptional>; + icons: z.ZodOptional; + sizes: z.ZodOptional>; + theme: z.ZodOptional>; + }, z.core.$strip>>>; + name: z.ZodString; + title: z.ZodOptional; + type: z.ZodLiteral<"resource_link">; + }, z.core.$strip>, z.ZodObject<{ + type: z.ZodLiteral<"resource">; + resource: z.ZodUnion; + _meta: z.ZodOptional>; + text: z.ZodString; + }, z.core.$strip>, z.ZodObject<{ + uri: z.ZodString; + mimeType: z.ZodOptional; + _meta: z.ZodOptional>; + blob: z.ZodString; + }, z.core.$strip>]>; + annotations: z.ZodOptional>>; + priority: z.ZodOptional; + lastModified: z.ZodOptional; + }, z.core.$strip>>; + _meta: z.ZodOptional>; + }, z.core.$strip>]>; + }, z.core.$strip>>; +}, z.core.$loose>; +/** + * An optional notification from the server to the client, informing it that the list of prompts it offers has changed. This may be issued by servers without any previous subscription from the client. + */ +export declare const PromptListChangedNotificationSchema: z.ZodObject<{ + method: z.ZodLiteral<"notifications/prompts/list_changed">; + params: z.ZodOptional>; + /** + * If specified, this request is related to the provided task. + */ + "io.modelcontextprotocol/related-task": z.ZodOptional>; + }, z.core.$loose>>; + }, z.core.$strip>>; +}, z.core.$strip>; +/** + * Additional properties describing a Tool to clients. + * + * NOTE: all properties in ToolAnnotations are **hints**. + * They are not guaranteed to provide a faithful description of + * tool behavior (including descriptive properties like `title`). + * + * Clients should never make tool use decisions based on ToolAnnotations + * received from untrusted servers. + */ +export declare const ToolAnnotationsSchema: z.ZodObject<{ + title: z.ZodOptional; + readOnlyHint: z.ZodOptional; + destructiveHint: z.ZodOptional; + idempotentHint: z.ZodOptional; + openWorldHint: z.ZodOptional; +}, z.core.$strip>; +/** + * Execution-related properties for a tool. + */ +export declare const ToolExecutionSchema: z.ZodObject<{ + taskSupport: z.ZodOptional>; +}, z.core.$strip>; +/** + * Definition for a tool the client can call. + */ +export declare const ToolSchema: z.ZodObject<{ + description: z.ZodOptional; + inputSchema: z.ZodObject<{ + type: z.ZodLiteral<"object">; + properties: z.ZodOptional>>; + required: z.ZodOptional>; + }, z.core.$catchall>; + outputSchema: z.ZodOptional; + properties: z.ZodOptional>>; + required: z.ZodOptional>; + }, z.core.$catchall>>; + annotations: z.ZodOptional; + readOnlyHint: z.ZodOptional; + destructiveHint: z.ZodOptional; + idempotentHint: z.ZodOptional; + openWorldHint: z.ZodOptional; + }, z.core.$strip>>; + execution: z.ZodOptional>; + }, z.core.$strip>>; + _meta: z.ZodOptional>; + icons: z.ZodOptional; + sizes: z.ZodOptional>; + theme: z.ZodOptional>; + }, z.core.$strip>>>; + name: z.ZodString; + title: z.ZodOptional; +}, z.core.$strip>; +/** + * Sent from the client to request a list of tools the server has. + */ +export declare const ListToolsRequestSchema: z.ZodObject<{ + params: z.ZodOptional>; + /** + * If specified, this request is related to the provided task. + */ + "io.modelcontextprotocol/related-task": z.ZodOptional>; + }, z.core.$loose>>; + cursor: z.ZodOptional; + }, z.core.$strip>>; + method: z.ZodLiteral<"tools/list">; +}, z.core.$strip>; +/** + * The server's response to a tools/list request from the client. + */ +export declare const ListToolsResultSchema: z.ZodObject<{ + _meta: z.ZodOptional>; + /** + * If specified, this request is related to the provided task. + */ + "io.modelcontextprotocol/related-task": z.ZodOptional>; + }, z.core.$loose>>; + nextCursor: z.ZodOptional; + tools: z.ZodArray; + inputSchema: z.ZodObject<{ + type: z.ZodLiteral<"object">; + properties: z.ZodOptional>>; + required: z.ZodOptional>; + }, z.core.$catchall>; + outputSchema: z.ZodOptional; + properties: z.ZodOptional>>; + required: z.ZodOptional>; + }, z.core.$catchall>>; + annotations: z.ZodOptional; + readOnlyHint: z.ZodOptional; + destructiveHint: z.ZodOptional; + idempotentHint: z.ZodOptional; + openWorldHint: z.ZodOptional; + }, z.core.$strip>>; + execution: z.ZodOptional>; + }, z.core.$strip>>; + _meta: z.ZodOptional>; + icons: z.ZodOptional; + sizes: z.ZodOptional>; + theme: z.ZodOptional>; + }, z.core.$strip>>>; + name: z.ZodString; + title: z.ZodOptional; + }, z.core.$strip>>; +}, z.core.$loose>; +/** + * The server's response to a tool call. + */ +export declare const CallToolResultSchema: z.ZodObject<{ + _meta: z.ZodOptional>; + /** + * If specified, this request is related to the provided task. + */ + "io.modelcontextprotocol/related-task": z.ZodOptional>; + }, z.core.$loose>>; + content: z.ZodDefault; + text: z.ZodString; + annotations: z.ZodOptional>>; + priority: z.ZodOptional; + lastModified: z.ZodOptional; + }, z.core.$strip>>; + _meta: z.ZodOptional>; + }, z.core.$strip>, z.ZodObject<{ + type: z.ZodLiteral<"image">; + data: z.ZodString; + mimeType: z.ZodString; + annotations: z.ZodOptional>>; + priority: z.ZodOptional; + lastModified: z.ZodOptional; + }, z.core.$strip>>; + _meta: z.ZodOptional>; + }, z.core.$strip>, z.ZodObject<{ + type: z.ZodLiteral<"audio">; + data: z.ZodString; + mimeType: z.ZodString; + annotations: z.ZodOptional>>; + priority: z.ZodOptional; + lastModified: z.ZodOptional; + }, z.core.$strip>>; + _meta: z.ZodOptional>; + }, z.core.$strip>, z.ZodObject<{ + uri: z.ZodString; + description: z.ZodOptional; + mimeType: z.ZodOptional; + size: z.ZodOptional; + annotations: z.ZodOptional>>; + priority: z.ZodOptional; + lastModified: z.ZodOptional; + }, z.core.$strip>>; + _meta: z.ZodOptional>; + icons: z.ZodOptional; + sizes: z.ZodOptional>; + theme: z.ZodOptional>; + }, z.core.$strip>>>; + name: z.ZodString; + title: z.ZodOptional; + type: z.ZodLiteral<"resource_link">; + }, z.core.$strip>, z.ZodObject<{ + type: z.ZodLiteral<"resource">; + resource: z.ZodUnion; + _meta: z.ZodOptional>; + text: z.ZodString; + }, z.core.$strip>, z.ZodObject<{ + uri: z.ZodString; + mimeType: z.ZodOptional; + _meta: z.ZodOptional>; + blob: z.ZodString; + }, z.core.$strip>]>; + annotations: z.ZodOptional>>; + priority: z.ZodOptional; + lastModified: z.ZodOptional; + }, z.core.$strip>>; + _meta: z.ZodOptional>; + }, z.core.$strip>]>>>; + structuredContent: z.ZodOptional>; + isError: z.ZodOptional; +}, z.core.$loose>; +/** + * CallToolResultSchema extended with backwards compatibility to protocol version 2024-10-07. + */ +export declare const CompatibilityCallToolResultSchema: z.ZodUnion<[z.ZodObject<{ + _meta: z.ZodOptional>; + /** + * If specified, this request is related to the provided task. + */ + "io.modelcontextprotocol/related-task": z.ZodOptional>; + }, z.core.$loose>>; + content: z.ZodDefault; + text: z.ZodString; + annotations: z.ZodOptional>>; + priority: z.ZodOptional; + lastModified: z.ZodOptional; + }, z.core.$strip>>; + _meta: z.ZodOptional>; + }, z.core.$strip>, z.ZodObject<{ + type: z.ZodLiteral<"image">; + data: z.ZodString; + mimeType: z.ZodString; + annotations: z.ZodOptional>>; + priority: z.ZodOptional; + lastModified: z.ZodOptional; + }, z.core.$strip>>; + _meta: z.ZodOptional>; + }, z.core.$strip>, z.ZodObject<{ + type: z.ZodLiteral<"audio">; + data: z.ZodString; + mimeType: z.ZodString; + annotations: z.ZodOptional>>; + priority: z.ZodOptional; + lastModified: z.ZodOptional; + }, z.core.$strip>>; + _meta: z.ZodOptional>; + }, z.core.$strip>, z.ZodObject<{ + uri: z.ZodString; + description: z.ZodOptional; + mimeType: z.ZodOptional; + size: z.ZodOptional; + annotations: z.ZodOptional>>; + priority: z.ZodOptional; + lastModified: z.ZodOptional; + }, z.core.$strip>>; + _meta: z.ZodOptional>; + icons: z.ZodOptional; + sizes: z.ZodOptional>; + theme: z.ZodOptional>; + }, z.core.$strip>>>; + name: z.ZodString; + title: z.ZodOptional; + type: z.ZodLiteral<"resource_link">; + }, z.core.$strip>, z.ZodObject<{ + type: z.ZodLiteral<"resource">; + resource: z.ZodUnion; + _meta: z.ZodOptional>; + text: z.ZodString; + }, z.core.$strip>, z.ZodObject<{ + uri: z.ZodString; + mimeType: z.ZodOptional; + _meta: z.ZodOptional>; + blob: z.ZodString; + }, z.core.$strip>]>; + annotations: z.ZodOptional>>; + priority: z.ZodOptional; + lastModified: z.ZodOptional; + }, z.core.$strip>>; + _meta: z.ZodOptional>; + }, z.core.$strip>]>>>; + structuredContent: z.ZodOptional>; + isError: z.ZodOptional; +}, z.core.$loose>, z.ZodObject<{ + _meta: z.ZodOptional>; + /** + * If specified, this request is related to the provided task. + */ + "io.modelcontextprotocol/related-task": z.ZodOptional>; + }, z.core.$loose>>; + toolResult: z.ZodUnknown; +}, z.core.$loose>]>; +/** + * Parameters for a `tools/call` request. + */ +export declare const CallToolRequestParamsSchema: z.ZodObject<{ + _meta: z.ZodOptional>; + /** + * If specified, this request is related to the provided task. + */ + "io.modelcontextprotocol/related-task": z.ZodOptional>; + }, z.core.$loose>>; + task: z.ZodOptional; + }, z.core.$strip>>; + name: z.ZodString; + arguments: z.ZodOptional>; +}, z.core.$strip>; +/** + * Used by the client to invoke a tool provided by the server. + */ +export declare const CallToolRequestSchema: z.ZodObject<{ + method: z.ZodLiteral<"tools/call">; + params: z.ZodObject<{ + _meta: z.ZodOptional>; + /** + * If specified, this request is related to the provided task. + */ + "io.modelcontextprotocol/related-task": z.ZodOptional>; + }, z.core.$loose>>; + task: z.ZodOptional; + }, z.core.$strip>>; + name: z.ZodString; + arguments: z.ZodOptional>; + }, z.core.$strip>; +}, z.core.$strip>; +/** + * An optional notification from the server to the client, informing it that the list of tools it offers has changed. This may be issued by servers without any previous subscription from the client. + */ +export declare const ToolListChangedNotificationSchema: z.ZodObject<{ + method: z.ZodLiteral<"notifications/tools/list_changed">; + params: z.ZodOptional>; + /** + * If specified, this request is related to the provided task. + */ + "io.modelcontextprotocol/related-task": z.ZodOptional>; + }, z.core.$loose>>; + }, z.core.$strip>>; +}, z.core.$strip>; +/** + * Callback type for list changed notifications. + */ +export type ListChangedCallback = (error: Error | null, items: T[] | null) => void; +/** + * Base schema for list changed subscription options (without callback). + * Used internally for Zod validation of autoRefresh and debounceMs. + */ +export declare const ListChangedOptionsBaseSchema: z.ZodObject<{ + autoRefresh: z.ZodDefault; + debounceMs: z.ZodDefault; +}, z.core.$strip>; +/** + * Options for subscribing to list changed notifications. + * + * @typeParam T - The type of items in the list (Tool, Prompt, or Resource) + */ +export type ListChangedOptions = { + /** + * If true, the list will be refreshed automatically when a list changed notification is received. + * @default true + */ + autoRefresh?: boolean; + /** + * Debounce time in milliseconds. Set to 0 to disable. + * @default 300 + */ + debounceMs?: number; + /** + * Callback invoked when the list changes. + * + * If autoRefresh is true, items contains the updated list. + * If autoRefresh is false, items is null (caller should refresh manually). + */ + onChanged: ListChangedCallback; +}; +/** + * Configuration for list changed notification handlers. + * + * Use this to configure handlers for tools, prompts, and resources list changes + * when creating a client. + * + * Note: Handlers are only activated if the server advertises the corresponding + * `listChanged` capability (e.g., `tools.listChanged: true`). If the server + * doesn't advertise this capability, the handler will not be set up. + */ +export type ListChangedHandlers = { + /** + * Handler for tool list changes. + */ + tools?: ListChangedOptions; + /** + * Handler for prompt list changes. + */ + prompts?: ListChangedOptions; + /** + * Handler for resource list changes. + */ + resources?: ListChangedOptions; +}; +/** + * The severity of a log message. + */ +export declare const LoggingLevelSchema: z.ZodEnum<{ + error: "error"; + debug: "debug"; + info: "info"; + notice: "notice"; + warning: "warning"; + critical: "critical"; + alert: "alert"; + emergency: "emergency"; +}>; +/** + * Parameters for a `logging/setLevel` request. + */ +export declare const SetLevelRequestParamsSchema: z.ZodObject<{ + _meta: z.ZodOptional>; + /** + * If specified, this request is related to the provided task. + */ + "io.modelcontextprotocol/related-task": z.ZodOptional>; + }, z.core.$loose>>; + level: z.ZodEnum<{ + error: "error"; + debug: "debug"; + info: "info"; + notice: "notice"; + warning: "warning"; + critical: "critical"; + alert: "alert"; + emergency: "emergency"; + }>; +}, z.core.$strip>; +/** + * A request from the client to the server, to enable or adjust logging. + */ +export declare const SetLevelRequestSchema: z.ZodObject<{ + method: z.ZodLiteral<"logging/setLevel">; + params: z.ZodObject<{ + _meta: z.ZodOptional>; + /** + * If specified, this request is related to the provided task. + */ + "io.modelcontextprotocol/related-task": z.ZodOptional>; + }, z.core.$loose>>; + level: z.ZodEnum<{ + error: "error"; + debug: "debug"; + info: "info"; + notice: "notice"; + warning: "warning"; + critical: "critical"; + alert: "alert"; + emergency: "emergency"; + }>; + }, z.core.$strip>; +}, z.core.$strip>; +/** + * Parameters for a `notifications/message` notification. + */ +export declare const LoggingMessageNotificationParamsSchema: z.ZodObject<{ + _meta: z.ZodOptional>; + /** + * If specified, this request is related to the provided task. + */ + "io.modelcontextprotocol/related-task": z.ZodOptional>; + }, z.core.$loose>>; + level: z.ZodEnum<{ + error: "error"; + debug: "debug"; + info: "info"; + notice: "notice"; + warning: "warning"; + critical: "critical"; + alert: "alert"; + emergency: "emergency"; + }>; + logger: z.ZodOptional; + data: z.ZodUnknown; +}, z.core.$strip>; +/** + * Notification of a log message passed from server to client. If no logging/setLevel request has been sent from the client, the server MAY decide which messages to send automatically. + */ +export declare const LoggingMessageNotificationSchema: z.ZodObject<{ + method: z.ZodLiteral<"notifications/message">; + params: z.ZodObject<{ + _meta: z.ZodOptional>; + /** + * If specified, this request is related to the provided task. + */ + "io.modelcontextprotocol/related-task": z.ZodOptional>; + }, z.core.$loose>>; + level: z.ZodEnum<{ + error: "error"; + debug: "debug"; + info: "info"; + notice: "notice"; + warning: "warning"; + critical: "critical"; + alert: "alert"; + emergency: "emergency"; + }>; + logger: z.ZodOptional; + data: z.ZodUnknown; + }, z.core.$strip>; +}, z.core.$strip>; +/** + * Hints to use for model selection. + */ +export declare const ModelHintSchema: z.ZodObject<{ + name: z.ZodOptional; +}, z.core.$strip>; +/** + * The server's preferences for model selection, requested of the client during sampling. + */ +export declare const ModelPreferencesSchema: z.ZodObject<{ + hints: z.ZodOptional; + }, z.core.$strip>>>; + costPriority: z.ZodOptional; + speedPriority: z.ZodOptional; + intelligencePriority: z.ZodOptional; +}, z.core.$strip>; +/** + * Controls tool usage behavior in sampling requests. + */ +export declare const ToolChoiceSchema: z.ZodObject<{ + mode: z.ZodOptional>; +}, z.core.$strip>; +/** + * The result of a tool execution, provided by the user (server). + * Represents the outcome of invoking a tool requested via ToolUseContent. + */ +export declare const ToolResultContentSchema: z.ZodObject<{ + type: z.ZodLiteral<"tool_result">; + toolUseId: z.ZodString; + content: z.ZodDefault; + text: z.ZodString; + annotations: z.ZodOptional>>; + priority: z.ZodOptional; + lastModified: z.ZodOptional; + }, z.core.$strip>>; + _meta: z.ZodOptional>; + }, z.core.$strip>, z.ZodObject<{ + type: z.ZodLiteral<"image">; + data: z.ZodString; + mimeType: z.ZodString; + annotations: z.ZodOptional>>; + priority: z.ZodOptional; + lastModified: z.ZodOptional; + }, z.core.$strip>>; + _meta: z.ZodOptional>; + }, z.core.$strip>, z.ZodObject<{ + type: z.ZodLiteral<"audio">; + data: z.ZodString; + mimeType: z.ZodString; + annotations: z.ZodOptional>>; + priority: z.ZodOptional; + lastModified: z.ZodOptional; + }, z.core.$strip>>; + _meta: z.ZodOptional>; + }, z.core.$strip>, z.ZodObject<{ + uri: z.ZodString; + description: z.ZodOptional; + mimeType: z.ZodOptional; + size: z.ZodOptional; + annotations: z.ZodOptional>>; + priority: z.ZodOptional; + lastModified: z.ZodOptional; + }, z.core.$strip>>; + _meta: z.ZodOptional>; + icons: z.ZodOptional; + sizes: z.ZodOptional>; + theme: z.ZodOptional>; + }, z.core.$strip>>>; + name: z.ZodString; + title: z.ZodOptional; + type: z.ZodLiteral<"resource_link">; + }, z.core.$strip>, z.ZodObject<{ + type: z.ZodLiteral<"resource">; + resource: z.ZodUnion; + _meta: z.ZodOptional>; + text: z.ZodString; + }, z.core.$strip>, z.ZodObject<{ + uri: z.ZodString; + mimeType: z.ZodOptional; + _meta: z.ZodOptional>; + blob: z.ZodString; + }, z.core.$strip>]>; + annotations: z.ZodOptional>>; + priority: z.ZodOptional; + lastModified: z.ZodOptional; + }, z.core.$strip>>; + _meta: z.ZodOptional>; + }, z.core.$strip>]>>>; + structuredContent: z.ZodOptional>; + isError: z.ZodOptional; + _meta: z.ZodOptional>; +}, z.core.$strip>; +/** + * Basic content types for sampling responses (without tool use). + * Used for backwards-compatible CreateMessageResult when tools are not used. + */ +export declare const SamplingContentSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{ + type: z.ZodLiteral<"text">; + text: z.ZodString; + annotations: z.ZodOptional>>; + priority: z.ZodOptional; + lastModified: z.ZodOptional; + }, z.core.$strip>>; + _meta: z.ZodOptional>; +}, z.core.$strip>, z.ZodObject<{ + type: z.ZodLiteral<"image">; + data: z.ZodString; + mimeType: z.ZodString; + annotations: z.ZodOptional>>; + priority: z.ZodOptional; + lastModified: z.ZodOptional; + }, z.core.$strip>>; + _meta: z.ZodOptional>; +}, z.core.$strip>, z.ZodObject<{ + type: z.ZodLiteral<"audio">; + data: z.ZodString; + mimeType: z.ZodString; + annotations: z.ZodOptional>>; + priority: z.ZodOptional; + lastModified: z.ZodOptional; + }, z.core.$strip>>; + _meta: z.ZodOptional>; +}, z.core.$strip>]>; +/** + * Content block types allowed in sampling messages. + * This includes text, image, audio, tool use requests, and tool results. + */ +export declare const SamplingMessageContentBlockSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{ + type: z.ZodLiteral<"text">; + text: z.ZodString; + annotations: z.ZodOptional>>; + priority: z.ZodOptional; + lastModified: z.ZodOptional; + }, z.core.$strip>>; + _meta: z.ZodOptional>; +}, z.core.$strip>, z.ZodObject<{ + type: z.ZodLiteral<"image">; + data: z.ZodString; + mimeType: z.ZodString; + annotations: z.ZodOptional>>; + priority: z.ZodOptional; + lastModified: z.ZodOptional; + }, z.core.$strip>>; + _meta: z.ZodOptional>; +}, z.core.$strip>, z.ZodObject<{ + type: z.ZodLiteral<"audio">; + data: z.ZodString; + mimeType: z.ZodString; + annotations: z.ZodOptional>>; + priority: z.ZodOptional; + lastModified: z.ZodOptional; + }, z.core.$strip>>; + _meta: z.ZodOptional>; +}, z.core.$strip>, z.ZodObject<{ + type: z.ZodLiteral<"tool_use">; + name: z.ZodString; + id: z.ZodString; + input: z.ZodRecord; + _meta: z.ZodOptional>; +}, z.core.$strip>, z.ZodObject<{ + type: z.ZodLiteral<"tool_result">; + toolUseId: z.ZodString; + content: z.ZodDefault; + text: z.ZodString; + annotations: z.ZodOptional>>; + priority: z.ZodOptional; + lastModified: z.ZodOptional; + }, z.core.$strip>>; + _meta: z.ZodOptional>; + }, z.core.$strip>, z.ZodObject<{ + type: z.ZodLiteral<"image">; + data: z.ZodString; + mimeType: z.ZodString; + annotations: z.ZodOptional>>; + priority: z.ZodOptional; + lastModified: z.ZodOptional; + }, z.core.$strip>>; + _meta: z.ZodOptional>; + }, z.core.$strip>, z.ZodObject<{ + type: z.ZodLiteral<"audio">; + data: z.ZodString; + mimeType: z.ZodString; + annotations: z.ZodOptional>>; + priority: z.ZodOptional; + lastModified: z.ZodOptional; + }, z.core.$strip>>; + _meta: z.ZodOptional>; + }, z.core.$strip>, z.ZodObject<{ + uri: z.ZodString; + description: z.ZodOptional; + mimeType: z.ZodOptional; + size: z.ZodOptional; + annotations: z.ZodOptional>>; + priority: z.ZodOptional; + lastModified: z.ZodOptional; + }, z.core.$strip>>; + _meta: z.ZodOptional>; + icons: z.ZodOptional; + sizes: z.ZodOptional>; + theme: z.ZodOptional>; + }, z.core.$strip>>>; + name: z.ZodString; + title: z.ZodOptional; + type: z.ZodLiteral<"resource_link">; + }, z.core.$strip>, z.ZodObject<{ + type: z.ZodLiteral<"resource">; + resource: z.ZodUnion; + _meta: z.ZodOptional>; + text: z.ZodString; + }, z.core.$strip>, z.ZodObject<{ + uri: z.ZodString; + mimeType: z.ZodOptional; + _meta: z.ZodOptional>; + blob: z.ZodString; + }, z.core.$strip>]>; + annotations: z.ZodOptional>>; + priority: z.ZodOptional; + lastModified: z.ZodOptional; + }, z.core.$strip>>; + _meta: z.ZodOptional>; + }, z.core.$strip>]>>>; + structuredContent: z.ZodOptional>; + isError: z.ZodOptional; + _meta: z.ZodOptional>; +}, z.core.$strip>]>; +/** + * Describes a message issued to or received from an LLM API. + */ +export declare const SamplingMessageSchema: z.ZodObject<{ + role: z.ZodEnum<{ + user: "user"; + assistant: "assistant"; + }>; + content: z.ZodUnion; + text: z.ZodString; + annotations: z.ZodOptional>>; + priority: z.ZodOptional; + lastModified: z.ZodOptional; + }, z.core.$strip>>; + _meta: z.ZodOptional>; + }, z.core.$strip>, z.ZodObject<{ + type: z.ZodLiteral<"image">; + data: z.ZodString; + mimeType: z.ZodString; + annotations: z.ZodOptional>>; + priority: z.ZodOptional; + lastModified: z.ZodOptional; + }, z.core.$strip>>; + _meta: z.ZodOptional>; + }, z.core.$strip>, z.ZodObject<{ + type: z.ZodLiteral<"audio">; + data: z.ZodString; + mimeType: z.ZodString; + annotations: z.ZodOptional>>; + priority: z.ZodOptional; + lastModified: z.ZodOptional; + }, z.core.$strip>>; + _meta: z.ZodOptional>; + }, z.core.$strip>, z.ZodObject<{ + type: z.ZodLiteral<"tool_use">; + name: z.ZodString; + id: z.ZodString; + input: z.ZodRecord; + _meta: z.ZodOptional>; + }, z.core.$strip>, z.ZodObject<{ + type: z.ZodLiteral<"tool_result">; + toolUseId: z.ZodString; + content: z.ZodDefault; + text: z.ZodString; + annotations: z.ZodOptional>>; + priority: z.ZodOptional; + lastModified: z.ZodOptional; + }, z.core.$strip>>; + _meta: z.ZodOptional>; + }, z.core.$strip>, z.ZodObject<{ + type: z.ZodLiteral<"image">; + data: z.ZodString; + mimeType: z.ZodString; + annotations: z.ZodOptional>>; + priority: z.ZodOptional; + lastModified: z.ZodOptional; + }, z.core.$strip>>; + _meta: z.ZodOptional>; + }, z.core.$strip>, z.ZodObject<{ + type: z.ZodLiteral<"audio">; + data: z.ZodString; + mimeType: z.ZodString; + annotations: z.ZodOptional>>; + priority: z.ZodOptional; + lastModified: z.ZodOptional; + }, z.core.$strip>>; + _meta: z.ZodOptional>; + }, z.core.$strip>, z.ZodObject<{ + uri: z.ZodString; + description: z.ZodOptional; + mimeType: z.ZodOptional; + size: z.ZodOptional; + annotations: z.ZodOptional>>; + priority: z.ZodOptional; + lastModified: z.ZodOptional; + }, z.core.$strip>>; + _meta: z.ZodOptional>; + icons: z.ZodOptional; + sizes: z.ZodOptional>; + theme: z.ZodOptional>; + }, z.core.$strip>>>; + name: z.ZodString; + title: z.ZodOptional; + type: z.ZodLiteral<"resource_link">; + }, z.core.$strip>, z.ZodObject<{ + type: z.ZodLiteral<"resource">; + resource: z.ZodUnion; + _meta: z.ZodOptional>; + text: z.ZodString; + }, z.core.$strip>, z.ZodObject<{ + uri: z.ZodString; + mimeType: z.ZodOptional; + _meta: z.ZodOptional>; + blob: z.ZodString; + }, z.core.$strip>]>; + annotations: z.ZodOptional>>; + priority: z.ZodOptional; + lastModified: z.ZodOptional; + }, z.core.$strip>>; + _meta: z.ZodOptional>; + }, z.core.$strip>]>>>; + structuredContent: z.ZodOptional>; + isError: z.ZodOptional; + _meta: z.ZodOptional>; + }, z.core.$strip>]>, z.ZodArray; + text: z.ZodString; + annotations: z.ZodOptional>>; + priority: z.ZodOptional; + lastModified: z.ZodOptional; + }, z.core.$strip>>; + _meta: z.ZodOptional>; + }, z.core.$strip>, z.ZodObject<{ + type: z.ZodLiteral<"image">; + data: z.ZodString; + mimeType: z.ZodString; + annotations: z.ZodOptional>>; + priority: z.ZodOptional; + lastModified: z.ZodOptional; + }, z.core.$strip>>; + _meta: z.ZodOptional>; + }, z.core.$strip>, z.ZodObject<{ + type: z.ZodLiteral<"audio">; + data: z.ZodString; + mimeType: z.ZodString; + annotations: z.ZodOptional>>; + priority: z.ZodOptional; + lastModified: z.ZodOptional; + }, z.core.$strip>>; + _meta: z.ZodOptional>; + }, z.core.$strip>, z.ZodObject<{ + type: z.ZodLiteral<"tool_use">; + name: z.ZodString; + id: z.ZodString; + input: z.ZodRecord; + _meta: z.ZodOptional>; + }, z.core.$strip>, z.ZodObject<{ + type: z.ZodLiteral<"tool_result">; + toolUseId: z.ZodString; + content: z.ZodDefault; + text: z.ZodString; + annotations: z.ZodOptional>>; + priority: z.ZodOptional; + lastModified: z.ZodOptional; + }, z.core.$strip>>; + _meta: z.ZodOptional>; + }, z.core.$strip>, z.ZodObject<{ + type: z.ZodLiteral<"image">; + data: z.ZodString; + mimeType: z.ZodString; + annotations: z.ZodOptional>>; + priority: z.ZodOptional; + lastModified: z.ZodOptional; + }, z.core.$strip>>; + _meta: z.ZodOptional>; + }, z.core.$strip>, z.ZodObject<{ + type: z.ZodLiteral<"audio">; + data: z.ZodString; + mimeType: z.ZodString; + annotations: z.ZodOptional>>; + priority: z.ZodOptional; + lastModified: z.ZodOptional; + }, z.core.$strip>>; + _meta: z.ZodOptional>; + }, z.core.$strip>, z.ZodObject<{ + uri: z.ZodString; + description: z.ZodOptional; + mimeType: z.ZodOptional; + size: z.ZodOptional; + annotations: z.ZodOptional>>; + priority: z.ZodOptional; + lastModified: z.ZodOptional; + }, z.core.$strip>>; + _meta: z.ZodOptional>; + icons: z.ZodOptional; + sizes: z.ZodOptional>; + theme: z.ZodOptional>; + }, z.core.$strip>>>; + name: z.ZodString; + title: z.ZodOptional; + type: z.ZodLiteral<"resource_link">; + }, z.core.$strip>, z.ZodObject<{ + type: z.ZodLiteral<"resource">; + resource: z.ZodUnion; + _meta: z.ZodOptional>; + text: z.ZodString; + }, z.core.$strip>, z.ZodObject<{ + uri: z.ZodString; + mimeType: z.ZodOptional; + _meta: z.ZodOptional>; + blob: z.ZodString; + }, z.core.$strip>]>; + annotations: z.ZodOptional>>; + priority: z.ZodOptional; + lastModified: z.ZodOptional; + }, z.core.$strip>>; + _meta: z.ZodOptional>; + }, z.core.$strip>]>>>; + structuredContent: z.ZodOptional>; + isError: z.ZodOptional; + _meta: z.ZodOptional>; + }, z.core.$strip>]>>]>; + _meta: z.ZodOptional>; +}, z.core.$strip>; +/** + * Parameters for a `sampling/createMessage` request. + */ +export declare const CreateMessageRequestParamsSchema: z.ZodObject<{ + _meta: z.ZodOptional>; + /** + * If specified, this request is related to the provided task. + */ + "io.modelcontextprotocol/related-task": z.ZodOptional>; + }, z.core.$loose>>; + task: z.ZodOptional; + }, z.core.$strip>>; + messages: z.ZodArray; + content: z.ZodUnion; + text: z.ZodString; + annotations: z.ZodOptional>>; + priority: z.ZodOptional; + lastModified: z.ZodOptional; + }, z.core.$strip>>; + _meta: z.ZodOptional>; + }, z.core.$strip>, z.ZodObject<{ + type: z.ZodLiteral<"image">; + data: z.ZodString; + mimeType: z.ZodString; + annotations: z.ZodOptional>>; + priority: z.ZodOptional; + lastModified: z.ZodOptional; + }, z.core.$strip>>; + _meta: z.ZodOptional>; + }, z.core.$strip>, z.ZodObject<{ + type: z.ZodLiteral<"audio">; + data: z.ZodString; + mimeType: z.ZodString; + annotations: z.ZodOptional>>; + priority: z.ZodOptional; + lastModified: z.ZodOptional; + }, z.core.$strip>>; + _meta: z.ZodOptional>; + }, z.core.$strip>, z.ZodObject<{ + type: z.ZodLiteral<"tool_use">; + name: z.ZodString; + id: z.ZodString; + input: z.ZodRecord; + _meta: z.ZodOptional>; + }, z.core.$strip>, z.ZodObject<{ + type: z.ZodLiteral<"tool_result">; + toolUseId: z.ZodString; + content: z.ZodDefault; + text: z.ZodString; + annotations: z.ZodOptional>>; + priority: z.ZodOptional; + lastModified: z.ZodOptional; + }, z.core.$strip>>; + _meta: z.ZodOptional>; + }, z.core.$strip>, z.ZodObject<{ + type: z.ZodLiteral<"image">; + data: z.ZodString; + mimeType: z.ZodString; + annotations: z.ZodOptional>>; + priority: z.ZodOptional; + lastModified: z.ZodOptional; + }, z.core.$strip>>; + _meta: z.ZodOptional>; + }, z.core.$strip>, z.ZodObject<{ + type: z.ZodLiteral<"audio">; + data: z.ZodString; + mimeType: z.ZodString; + annotations: z.ZodOptional>>; + priority: z.ZodOptional; + lastModified: z.ZodOptional; + }, z.core.$strip>>; + _meta: z.ZodOptional>; + }, z.core.$strip>, z.ZodObject<{ + uri: z.ZodString; + description: z.ZodOptional; + mimeType: z.ZodOptional; + size: z.ZodOptional; + annotations: z.ZodOptional>>; + priority: z.ZodOptional; + lastModified: z.ZodOptional; + }, z.core.$strip>>; + _meta: z.ZodOptional>; + icons: z.ZodOptional; + sizes: z.ZodOptional>; + theme: z.ZodOptional>; + }, z.core.$strip>>>; + name: z.ZodString; + title: z.ZodOptional; + type: z.ZodLiteral<"resource_link">; + }, z.core.$strip>, z.ZodObject<{ + type: z.ZodLiteral<"resource">; + resource: z.ZodUnion; + _meta: z.ZodOptional>; + text: z.ZodString; + }, z.core.$strip>, z.ZodObject<{ + uri: z.ZodString; + mimeType: z.ZodOptional; + _meta: z.ZodOptional>; + blob: z.ZodString; + }, z.core.$strip>]>; + annotations: z.ZodOptional>>; + priority: z.ZodOptional; + lastModified: z.ZodOptional; + }, z.core.$strip>>; + _meta: z.ZodOptional>; + }, z.core.$strip>]>>>; + structuredContent: z.ZodOptional>; + isError: z.ZodOptional; + _meta: z.ZodOptional>; + }, z.core.$strip>]>, z.ZodArray; + text: z.ZodString; + annotations: z.ZodOptional>>; + priority: z.ZodOptional; + lastModified: z.ZodOptional; + }, z.core.$strip>>; + _meta: z.ZodOptional>; + }, z.core.$strip>, z.ZodObject<{ + type: z.ZodLiteral<"image">; + data: z.ZodString; + mimeType: z.ZodString; + annotations: z.ZodOptional>>; + priority: z.ZodOptional; + lastModified: z.ZodOptional; + }, z.core.$strip>>; + _meta: z.ZodOptional>; + }, z.core.$strip>, z.ZodObject<{ + type: z.ZodLiteral<"audio">; + data: z.ZodString; + mimeType: z.ZodString; + annotations: z.ZodOptional>>; + priority: z.ZodOptional; + lastModified: z.ZodOptional; + }, z.core.$strip>>; + _meta: z.ZodOptional>; + }, z.core.$strip>, z.ZodObject<{ + type: z.ZodLiteral<"tool_use">; + name: z.ZodString; + id: z.ZodString; + input: z.ZodRecord; + _meta: z.ZodOptional>; + }, z.core.$strip>, z.ZodObject<{ + type: z.ZodLiteral<"tool_result">; + toolUseId: z.ZodString; + content: z.ZodDefault; + text: z.ZodString; + annotations: z.ZodOptional>>; + priority: z.ZodOptional; + lastModified: z.ZodOptional; + }, z.core.$strip>>; + _meta: z.ZodOptional>; + }, z.core.$strip>, z.ZodObject<{ + type: z.ZodLiteral<"image">; + data: z.ZodString; + mimeType: z.ZodString; + annotations: z.ZodOptional>>; + priority: z.ZodOptional; + lastModified: z.ZodOptional; + }, z.core.$strip>>; + _meta: z.ZodOptional>; + }, z.core.$strip>, z.ZodObject<{ + type: z.ZodLiteral<"audio">; + data: z.ZodString; + mimeType: z.ZodString; + annotations: z.ZodOptional>>; + priority: z.ZodOptional; + lastModified: z.ZodOptional; + }, z.core.$strip>>; + _meta: z.ZodOptional>; + }, z.core.$strip>, z.ZodObject<{ + uri: z.ZodString; + description: z.ZodOptional; + mimeType: z.ZodOptional; + size: z.ZodOptional; + annotations: z.ZodOptional>>; + priority: z.ZodOptional; + lastModified: z.ZodOptional; + }, z.core.$strip>>; + _meta: z.ZodOptional>; + icons: z.ZodOptional; + sizes: z.ZodOptional>; + theme: z.ZodOptional>; + }, z.core.$strip>>>; + name: z.ZodString; + title: z.ZodOptional; + type: z.ZodLiteral<"resource_link">; + }, z.core.$strip>, z.ZodObject<{ + type: z.ZodLiteral<"resource">; + resource: z.ZodUnion; + _meta: z.ZodOptional>; + text: z.ZodString; + }, z.core.$strip>, z.ZodObject<{ + uri: z.ZodString; + mimeType: z.ZodOptional; + _meta: z.ZodOptional>; + blob: z.ZodString; + }, z.core.$strip>]>; + annotations: z.ZodOptional>>; + priority: z.ZodOptional; + lastModified: z.ZodOptional; + }, z.core.$strip>>; + _meta: z.ZodOptional>; + }, z.core.$strip>]>>>; + structuredContent: z.ZodOptional>; + isError: z.ZodOptional; + _meta: z.ZodOptional>; + }, z.core.$strip>]>>]>; + _meta: z.ZodOptional>; + }, z.core.$strip>>; + modelPreferences: z.ZodOptional; + }, z.core.$strip>>>; + costPriority: z.ZodOptional; + speedPriority: z.ZodOptional; + intelligencePriority: z.ZodOptional; + }, z.core.$strip>>; + systemPrompt: z.ZodOptional; + includeContext: z.ZodOptional>; + temperature: z.ZodOptional; + maxTokens: z.ZodNumber; + stopSequences: z.ZodOptional>; + metadata: z.ZodOptional>; + tools: z.ZodOptional; + inputSchema: z.ZodObject<{ + type: z.ZodLiteral<"object">; + properties: z.ZodOptional>>; + required: z.ZodOptional>; + }, z.core.$catchall>; + outputSchema: z.ZodOptional; + properties: z.ZodOptional>>; + required: z.ZodOptional>; + }, z.core.$catchall>>; + annotations: z.ZodOptional; + readOnlyHint: z.ZodOptional; + destructiveHint: z.ZodOptional; + idempotentHint: z.ZodOptional; + openWorldHint: z.ZodOptional; + }, z.core.$strip>>; + execution: z.ZodOptional>; + }, z.core.$strip>>; + _meta: z.ZodOptional>; + icons: z.ZodOptional; + sizes: z.ZodOptional>; + theme: z.ZodOptional>; + }, z.core.$strip>>>; + name: z.ZodString; + title: z.ZodOptional; + }, z.core.$strip>>>; + toolChoice: z.ZodOptional>; + }, z.core.$strip>>; +}, z.core.$strip>; +/** + * A request from the server to sample an LLM via the client. The client has full discretion over which model to select. The client should also inform the user before beginning sampling, to allow them to inspect the request (human in the loop) and decide whether to approve it. + */ +export declare const CreateMessageRequestSchema: z.ZodObject<{ + method: z.ZodLiteral<"sampling/createMessage">; + params: z.ZodObject<{ + _meta: z.ZodOptional>; + /** + * If specified, this request is related to the provided task. + */ + "io.modelcontextprotocol/related-task": z.ZodOptional>; + }, z.core.$loose>>; + task: z.ZodOptional; + }, z.core.$strip>>; + messages: z.ZodArray; + content: z.ZodUnion; + text: z.ZodString; + annotations: z.ZodOptional>>; + priority: z.ZodOptional; + lastModified: z.ZodOptional; + }, z.core.$strip>>; + _meta: z.ZodOptional>; + }, z.core.$strip>, z.ZodObject<{ + type: z.ZodLiteral<"image">; + data: z.ZodString; + mimeType: z.ZodString; + annotations: z.ZodOptional>>; + priority: z.ZodOptional; + lastModified: z.ZodOptional; + }, z.core.$strip>>; + _meta: z.ZodOptional>; + }, z.core.$strip>, z.ZodObject<{ + type: z.ZodLiteral<"audio">; + data: z.ZodString; + mimeType: z.ZodString; + annotations: z.ZodOptional>>; + priority: z.ZodOptional; + lastModified: z.ZodOptional; + }, z.core.$strip>>; + _meta: z.ZodOptional>; + }, z.core.$strip>, z.ZodObject<{ + type: z.ZodLiteral<"tool_use">; + name: z.ZodString; + id: z.ZodString; + input: z.ZodRecord; + _meta: z.ZodOptional>; + }, z.core.$strip>, z.ZodObject<{ + type: z.ZodLiteral<"tool_result">; + toolUseId: z.ZodString; + content: z.ZodDefault; + text: z.ZodString; + annotations: z.ZodOptional>>; + priority: z.ZodOptional; + lastModified: z.ZodOptional; + }, z.core.$strip>>; + _meta: z.ZodOptional>; + }, z.core.$strip>, z.ZodObject<{ + type: z.ZodLiteral<"image">; + data: z.ZodString; + mimeType: z.ZodString; + annotations: z.ZodOptional>>; + priority: z.ZodOptional; + lastModified: z.ZodOptional; + }, z.core.$strip>>; + _meta: z.ZodOptional>; + }, z.core.$strip>, z.ZodObject<{ + type: z.ZodLiteral<"audio">; + data: z.ZodString; + mimeType: z.ZodString; + annotations: z.ZodOptional>>; + priority: z.ZodOptional; + lastModified: z.ZodOptional; + }, z.core.$strip>>; + _meta: z.ZodOptional>; + }, z.core.$strip>, z.ZodObject<{ + uri: z.ZodString; + description: z.ZodOptional; + mimeType: z.ZodOptional; + size: z.ZodOptional; + annotations: z.ZodOptional>>; + priority: z.ZodOptional; + lastModified: z.ZodOptional; + }, z.core.$strip>>; + _meta: z.ZodOptional>; + icons: z.ZodOptional; + sizes: z.ZodOptional>; + theme: z.ZodOptional>; + }, z.core.$strip>>>; + name: z.ZodString; + title: z.ZodOptional; + type: z.ZodLiteral<"resource_link">; + }, z.core.$strip>, z.ZodObject<{ + type: z.ZodLiteral<"resource">; + resource: z.ZodUnion; + _meta: z.ZodOptional>; + text: z.ZodString; + }, z.core.$strip>, z.ZodObject<{ + uri: z.ZodString; + mimeType: z.ZodOptional; + _meta: z.ZodOptional>; + blob: z.ZodString; + }, z.core.$strip>]>; + annotations: z.ZodOptional>>; + priority: z.ZodOptional; + lastModified: z.ZodOptional; + }, z.core.$strip>>; + _meta: z.ZodOptional>; + }, z.core.$strip>]>>>; + structuredContent: z.ZodOptional>; + isError: z.ZodOptional; + _meta: z.ZodOptional>; + }, z.core.$strip>]>, z.ZodArray; + text: z.ZodString; + annotations: z.ZodOptional>>; + priority: z.ZodOptional; + lastModified: z.ZodOptional; + }, z.core.$strip>>; + _meta: z.ZodOptional>; + }, z.core.$strip>, z.ZodObject<{ + type: z.ZodLiteral<"image">; + data: z.ZodString; + mimeType: z.ZodString; + annotations: z.ZodOptional>>; + priority: z.ZodOptional; + lastModified: z.ZodOptional; + }, z.core.$strip>>; + _meta: z.ZodOptional>; + }, z.core.$strip>, z.ZodObject<{ + type: z.ZodLiteral<"audio">; + data: z.ZodString; + mimeType: z.ZodString; + annotations: z.ZodOptional>>; + priority: z.ZodOptional; + lastModified: z.ZodOptional; + }, z.core.$strip>>; + _meta: z.ZodOptional>; + }, z.core.$strip>, z.ZodObject<{ + type: z.ZodLiteral<"tool_use">; + name: z.ZodString; + id: z.ZodString; + input: z.ZodRecord; + _meta: z.ZodOptional>; + }, z.core.$strip>, z.ZodObject<{ + type: z.ZodLiteral<"tool_result">; + toolUseId: z.ZodString; + content: z.ZodDefault; + text: z.ZodString; + annotations: z.ZodOptional>>; + priority: z.ZodOptional; + lastModified: z.ZodOptional; + }, z.core.$strip>>; + _meta: z.ZodOptional>; + }, z.core.$strip>, z.ZodObject<{ + type: z.ZodLiteral<"image">; + data: z.ZodString; + mimeType: z.ZodString; + annotations: z.ZodOptional>>; + priority: z.ZodOptional; + lastModified: z.ZodOptional; + }, z.core.$strip>>; + _meta: z.ZodOptional>; + }, z.core.$strip>, z.ZodObject<{ + type: z.ZodLiteral<"audio">; + data: z.ZodString; + mimeType: z.ZodString; + annotations: z.ZodOptional>>; + priority: z.ZodOptional; + lastModified: z.ZodOptional; + }, z.core.$strip>>; + _meta: z.ZodOptional>; + }, z.core.$strip>, z.ZodObject<{ + uri: z.ZodString; + description: z.ZodOptional; + mimeType: z.ZodOptional; + size: z.ZodOptional; + annotations: z.ZodOptional>>; + priority: z.ZodOptional; + lastModified: z.ZodOptional; + }, z.core.$strip>>; + _meta: z.ZodOptional>; + icons: z.ZodOptional; + sizes: z.ZodOptional>; + theme: z.ZodOptional>; + }, z.core.$strip>>>; + name: z.ZodString; + title: z.ZodOptional; + type: z.ZodLiteral<"resource_link">; + }, z.core.$strip>, z.ZodObject<{ + type: z.ZodLiteral<"resource">; + resource: z.ZodUnion; + _meta: z.ZodOptional>; + text: z.ZodString; + }, z.core.$strip>, z.ZodObject<{ + uri: z.ZodString; + mimeType: z.ZodOptional; + _meta: z.ZodOptional>; + blob: z.ZodString; + }, z.core.$strip>]>; + annotations: z.ZodOptional>>; + priority: z.ZodOptional; + lastModified: z.ZodOptional; + }, z.core.$strip>>; + _meta: z.ZodOptional>; + }, z.core.$strip>]>>>; + structuredContent: z.ZodOptional>; + isError: z.ZodOptional; + _meta: z.ZodOptional>; + }, z.core.$strip>]>>]>; + _meta: z.ZodOptional>; + }, z.core.$strip>>; + modelPreferences: z.ZodOptional; + }, z.core.$strip>>>; + costPriority: z.ZodOptional; + speedPriority: z.ZodOptional; + intelligencePriority: z.ZodOptional; + }, z.core.$strip>>; + systemPrompt: z.ZodOptional; + includeContext: z.ZodOptional>; + temperature: z.ZodOptional; + maxTokens: z.ZodNumber; + stopSequences: z.ZodOptional>; + metadata: z.ZodOptional>; + tools: z.ZodOptional; + inputSchema: z.ZodObject<{ + type: z.ZodLiteral<"object">; + properties: z.ZodOptional>>; + required: z.ZodOptional>; + }, z.core.$catchall>; + outputSchema: z.ZodOptional; + properties: z.ZodOptional>>; + required: z.ZodOptional>; + }, z.core.$catchall>>; + annotations: z.ZodOptional; + readOnlyHint: z.ZodOptional; + destructiveHint: z.ZodOptional; + idempotentHint: z.ZodOptional; + openWorldHint: z.ZodOptional; + }, z.core.$strip>>; + execution: z.ZodOptional>; + }, z.core.$strip>>; + _meta: z.ZodOptional>; + icons: z.ZodOptional; + sizes: z.ZodOptional>; + theme: z.ZodOptional>; + }, z.core.$strip>>>; + name: z.ZodString; + title: z.ZodOptional; + }, z.core.$strip>>>; + toolChoice: z.ZodOptional>; + }, z.core.$strip>>; + }, z.core.$strip>; +}, z.core.$strip>; +/** + * The client's response to a sampling/create_message request from the server. + * This is the backwards-compatible version that returns single content (no arrays). + * Used when the request does not include tools. + */ +export declare const CreateMessageResultSchema: z.ZodObject<{ + _meta: z.ZodOptional>; + /** + * If specified, this request is related to the provided task. + */ + "io.modelcontextprotocol/related-task": z.ZodOptional>; + }, z.core.$loose>>; + model: z.ZodString; + stopReason: z.ZodOptional, z.ZodString]>>; + role: z.ZodEnum<{ + user: "user"; + assistant: "assistant"; + }>; + content: z.ZodDiscriminatedUnion<[z.ZodObject<{ + type: z.ZodLiteral<"text">; + text: z.ZodString; + annotations: z.ZodOptional>>; + priority: z.ZodOptional; + lastModified: z.ZodOptional; + }, z.core.$strip>>; + _meta: z.ZodOptional>; + }, z.core.$strip>, z.ZodObject<{ + type: z.ZodLiteral<"image">; + data: z.ZodString; + mimeType: z.ZodString; + annotations: z.ZodOptional>>; + priority: z.ZodOptional; + lastModified: z.ZodOptional; + }, z.core.$strip>>; + _meta: z.ZodOptional>; + }, z.core.$strip>, z.ZodObject<{ + type: z.ZodLiteral<"audio">; + data: z.ZodString; + mimeType: z.ZodString; + annotations: z.ZodOptional>>; + priority: z.ZodOptional; + lastModified: z.ZodOptional; + }, z.core.$strip>>; + _meta: z.ZodOptional>; + }, z.core.$strip>]>; +}, z.core.$loose>; +/** + * The client's response to a sampling/create_message request when tools were provided. + * This version supports array content for tool use flows. + */ +export declare const CreateMessageResultWithToolsSchema: z.ZodObject<{ + _meta: z.ZodOptional>; + /** + * If specified, this request is related to the provided task. + */ + "io.modelcontextprotocol/related-task": z.ZodOptional>; + }, z.core.$loose>>; + model: z.ZodString; + stopReason: z.ZodOptional, z.ZodString]>>; + role: z.ZodEnum<{ + user: "user"; + assistant: "assistant"; + }>; + content: z.ZodUnion; + text: z.ZodString; + annotations: z.ZodOptional>>; + priority: z.ZodOptional; + lastModified: z.ZodOptional; + }, z.core.$strip>>; + _meta: z.ZodOptional>; + }, z.core.$strip>, z.ZodObject<{ + type: z.ZodLiteral<"image">; + data: z.ZodString; + mimeType: z.ZodString; + annotations: z.ZodOptional>>; + priority: z.ZodOptional; + lastModified: z.ZodOptional; + }, z.core.$strip>>; + _meta: z.ZodOptional>; + }, z.core.$strip>, z.ZodObject<{ + type: z.ZodLiteral<"audio">; + data: z.ZodString; + mimeType: z.ZodString; + annotations: z.ZodOptional>>; + priority: z.ZodOptional; + lastModified: z.ZodOptional; + }, z.core.$strip>>; + _meta: z.ZodOptional>; + }, z.core.$strip>, z.ZodObject<{ + type: z.ZodLiteral<"tool_use">; + name: z.ZodString; + id: z.ZodString; + input: z.ZodRecord; + _meta: z.ZodOptional>; + }, z.core.$strip>, z.ZodObject<{ + type: z.ZodLiteral<"tool_result">; + toolUseId: z.ZodString; + content: z.ZodDefault; + text: z.ZodString; + annotations: z.ZodOptional>>; + priority: z.ZodOptional; + lastModified: z.ZodOptional; + }, z.core.$strip>>; + _meta: z.ZodOptional>; + }, z.core.$strip>, z.ZodObject<{ + type: z.ZodLiteral<"image">; + data: z.ZodString; + mimeType: z.ZodString; + annotations: z.ZodOptional>>; + priority: z.ZodOptional; + lastModified: z.ZodOptional; + }, z.core.$strip>>; + _meta: z.ZodOptional>; + }, z.core.$strip>, z.ZodObject<{ + type: z.ZodLiteral<"audio">; + data: z.ZodString; + mimeType: z.ZodString; + annotations: z.ZodOptional>>; + priority: z.ZodOptional; + lastModified: z.ZodOptional; + }, z.core.$strip>>; + _meta: z.ZodOptional>; + }, z.core.$strip>, z.ZodObject<{ + uri: z.ZodString; + description: z.ZodOptional; + mimeType: z.ZodOptional; + size: z.ZodOptional; + annotations: z.ZodOptional>>; + priority: z.ZodOptional; + lastModified: z.ZodOptional; + }, z.core.$strip>>; + _meta: z.ZodOptional>; + icons: z.ZodOptional; + sizes: z.ZodOptional>; + theme: z.ZodOptional>; + }, z.core.$strip>>>; + name: z.ZodString; + title: z.ZodOptional; + type: z.ZodLiteral<"resource_link">; + }, z.core.$strip>, z.ZodObject<{ + type: z.ZodLiteral<"resource">; + resource: z.ZodUnion; + _meta: z.ZodOptional>; + text: z.ZodString; + }, z.core.$strip>, z.ZodObject<{ + uri: z.ZodString; + mimeType: z.ZodOptional; + _meta: z.ZodOptional>; + blob: z.ZodString; + }, z.core.$strip>]>; + annotations: z.ZodOptional>>; + priority: z.ZodOptional; + lastModified: z.ZodOptional; + }, z.core.$strip>>; + _meta: z.ZodOptional>; + }, z.core.$strip>]>>>; + structuredContent: z.ZodOptional>; + isError: z.ZodOptional; + _meta: z.ZodOptional>; + }, z.core.$strip>]>, z.ZodArray; + text: z.ZodString; + annotations: z.ZodOptional>>; + priority: z.ZodOptional; + lastModified: z.ZodOptional; + }, z.core.$strip>>; + _meta: z.ZodOptional>; + }, z.core.$strip>, z.ZodObject<{ + type: z.ZodLiteral<"image">; + data: z.ZodString; + mimeType: z.ZodString; + annotations: z.ZodOptional>>; + priority: z.ZodOptional; + lastModified: z.ZodOptional; + }, z.core.$strip>>; + _meta: z.ZodOptional>; + }, z.core.$strip>, z.ZodObject<{ + type: z.ZodLiteral<"audio">; + data: z.ZodString; + mimeType: z.ZodString; + annotations: z.ZodOptional>>; + priority: z.ZodOptional; + lastModified: z.ZodOptional; + }, z.core.$strip>>; + _meta: z.ZodOptional>; + }, z.core.$strip>, z.ZodObject<{ + type: z.ZodLiteral<"tool_use">; + name: z.ZodString; + id: z.ZodString; + input: z.ZodRecord; + _meta: z.ZodOptional>; + }, z.core.$strip>, z.ZodObject<{ + type: z.ZodLiteral<"tool_result">; + toolUseId: z.ZodString; + content: z.ZodDefault; + text: z.ZodString; + annotations: z.ZodOptional>>; + priority: z.ZodOptional; + lastModified: z.ZodOptional; + }, z.core.$strip>>; + _meta: z.ZodOptional>; + }, z.core.$strip>, z.ZodObject<{ + type: z.ZodLiteral<"image">; + data: z.ZodString; + mimeType: z.ZodString; + annotations: z.ZodOptional>>; + priority: z.ZodOptional; + lastModified: z.ZodOptional; + }, z.core.$strip>>; + _meta: z.ZodOptional>; + }, z.core.$strip>, z.ZodObject<{ + type: z.ZodLiteral<"audio">; + data: z.ZodString; + mimeType: z.ZodString; + annotations: z.ZodOptional>>; + priority: z.ZodOptional; + lastModified: z.ZodOptional; + }, z.core.$strip>>; + _meta: z.ZodOptional>; + }, z.core.$strip>, z.ZodObject<{ + uri: z.ZodString; + description: z.ZodOptional; + mimeType: z.ZodOptional; + size: z.ZodOptional; + annotations: z.ZodOptional>>; + priority: z.ZodOptional; + lastModified: z.ZodOptional; + }, z.core.$strip>>; + _meta: z.ZodOptional>; + icons: z.ZodOptional; + sizes: z.ZodOptional>; + theme: z.ZodOptional>; + }, z.core.$strip>>>; + name: z.ZodString; + title: z.ZodOptional; + type: z.ZodLiteral<"resource_link">; + }, z.core.$strip>, z.ZodObject<{ + type: z.ZodLiteral<"resource">; + resource: z.ZodUnion; + _meta: z.ZodOptional>; + text: z.ZodString; + }, z.core.$strip>, z.ZodObject<{ + uri: z.ZodString; + mimeType: z.ZodOptional; + _meta: z.ZodOptional>; + blob: z.ZodString; + }, z.core.$strip>]>; + annotations: z.ZodOptional>>; + priority: z.ZodOptional; + lastModified: z.ZodOptional; + }, z.core.$strip>>; + _meta: z.ZodOptional>; + }, z.core.$strip>]>>>; + structuredContent: z.ZodOptional>; + isError: z.ZodOptional; + _meta: z.ZodOptional>; + }, z.core.$strip>]>>]>; +}, z.core.$loose>; +/** + * Primitive schema definition for boolean fields. + */ +export declare const BooleanSchemaSchema: z.ZodObject<{ + type: z.ZodLiteral<"boolean">; + title: z.ZodOptional; + description: z.ZodOptional; + default: z.ZodOptional; +}, z.core.$strip>; +/** + * Primitive schema definition for string fields. + */ +export declare const StringSchemaSchema: z.ZodObject<{ + type: z.ZodLiteral<"string">; + title: z.ZodOptional; + description: z.ZodOptional; + minLength: z.ZodOptional; + maxLength: z.ZodOptional; + format: z.ZodOptional>; + default: z.ZodOptional; +}, z.core.$strip>; +/** + * Primitive schema definition for number fields. + */ +export declare const NumberSchemaSchema: z.ZodObject<{ + type: z.ZodEnum<{ + number: "number"; + integer: "integer"; + }>; + title: z.ZodOptional; + description: z.ZodOptional; + minimum: z.ZodOptional; + maximum: z.ZodOptional; + default: z.ZodOptional; +}, z.core.$strip>; +/** + * Schema for single-selection enumeration without display titles for options. + */ +export declare const UntitledSingleSelectEnumSchemaSchema: z.ZodObject<{ + type: z.ZodLiteral<"string">; + title: z.ZodOptional; + description: z.ZodOptional; + enum: z.ZodArray; + default: z.ZodOptional; +}, z.core.$strip>; +/** + * Schema for single-selection enumeration with display titles for each option. + */ +export declare const TitledSingleSelectEnumSchemaSchema: z.ZodObject<{ + type: z.ZodLiteral<"string">; + title: z.ZodOptional; + description: z.ZodOptional; + oneOf: z.ZodArray>; + default: z.ZodOptional; +}, z.core.$strip>; +/** + * Use TitledSingleSelectEnumSchema instead. + * This interface will be removed in a future version. + */ +export declare const LegacyTitledEnumSchemaSchema: z.ZodObject<{ + type: z.ZodLiteral<"string">; + title: z.ZodOptional; + description: z.ZodOptional; + enum: z.ZodArray; + enumNames: z.ZodOptional>; + default: z.ZodOptional; +}, z.core.$strip>; +export declare const SingleSelectEnumSchemaSchema: z.ZodUnion; + title: z.ZodOptional; + description: z.ZodOptional; + enum: z.ZodArray; + default: z.ZodOptional; +}, z.core.$strip>, z.ZodObject<{ + type: z.ZodLiteral<"string">; + title: z.ZodOptional; + description: z.ZodOptional; + oneOf: z.ZodArray>; + default: z.ZodOptional; +}, z.core.$strip>]>; +/** + * Schema for multiple-selection enumeration without display titles for options. + */ +export declare const UntitledMultiSelectEnumSchemaSchema: z.ZodObject<{ + type: z.ZodLiteral<"array">; + title: z.ZodOptional; + description: z.ZodOptional; + minItems: z.ZodOptional; + maxItems: z.ZodOptional; + items: z.ZodObject<{ + type: z.ZodLiteral<"string">; + enum: z.ZodArray; + }, z.core.$strip>; + default: z.ZodOptional>; +}, z.core.$strip>; +/** + * Schema for multiple-selection enumeration with display titles for each option. + */ +export declare const TitledMultiSelectEnumSchemaSchema: z.ZodObject<{ + type: z.ZodLiteral<"array">; + title: z.ZodOptional; + description: z.ZodOptional; + minItems: z.ZodOptional; + maxItems: z.ZodOptional; + items: z.ZodObject<{ + anyOf: z.ZodArray>; + }, z.core.$strip>; + default: z.ZodOptional>; +}, z.core.$strip>; +/** + * Combined schema for multiple-selection enumeration + */ +export declare const MultiSelectEnumSchemaSchema: z.ZodUnion; + title: z.ZodOptional; + description: z.ZodOptional; + minItems: z.ZodOptional; + maxItems: z.ZodOptional; + items: z.ZodObject<{ + type: z.ZodLiteral<"string">; + enum: z.ZodArray; + }, z.core.$strip>; + default: z.ZodOptional>; +}, z.core.$strip>, z.ZodObject<{ + type: z.ZodLiteral<"array">; + title: z.ZodOptional; + description: z.ZodOptional; + minItems: z.ZodOptional; + maxItems: z.ZodOptional; + items: z.ZodObject<{ + anyOf: z.ZodArray>; + }, z.core.$strip>; + default: z.ZodOptional>; +}, z.core.$strip>]>; +/** + * Primitive schema definition for enum fields. + */ +export declare const EnumSchemaSchema: z.ZodUnion; + title: z.ZodOptional; + description: z.ZodOptional; + enum: z.ZodArray; + enumNames: z.ZodOptional>; + default: z.ZodOptional; +}, z.core.$strip>, z.ZodUnion; + title: z.ZodOptional; + description: z.ZodOptional; + enum: z.ZodArray; + default: z.ZodOptional; +}, z.core.$strip>, z.ZodObject<{ + type: z.ZodLiteral<"string">; + title: z.ZodOptional; + description: z.ZodOptional; + oneOf: z.ZodArray>; + default: z.ZodOptional; +}, z.core.$strip>]>, z.ZodUnion; + title: z.ZodOptional; + description: z.ZodOptional; + minItems: z.ZodOptional; + maxItems: z.ZodOptional; + items: z.ZodObject<{ + type: z.ZodLiteral<"string">; + enum: z.ZodArray; + }, z.core.$strip>; + default: z.ZodOptional>; +}, z.core.$strip>, z.ZodObject<{ + type: z.ZodLiteral<"array">; + title: z.ZodOptional; + description: z.ZodOptional; + minItems: z.ZodOptional; + maxItems: z.ZodOptional; + items: z.ZodObject<{ + anyOf: z.ZodArray>; + }, z.core.$strip>; + default: z.ZodOptional>; +}, z.core.$strip>]>]>; +/** + * Union of all primitive schema definitions. + */ +export declare const PrimitiveSchemaDefinitionSchema: z.ZodUnion; + title: z.ZodOptional; + description: z.ZodOptional; + enum: z.ZodArray; + enumNames: z.ZodOptional>; + default: z.ZodOptional; +}, z.core.$strip>, z.ZodUnion; + title: z.ZodOptional; + description: z.ZodOptional; + enum: z.ZodArray; + default: z.ZodOptional; +}, z.core.$strip>, z.ZodObject<{ + type: z.ZodLiteral<"string">; + title: z.ZodOptional; + description: z.ZodOptional; + oneOf: z.ZodArray>; + default: z.ZodOptional; +}, z.core.$strip>]>, z.ZodUnion; + title: z.ZodOptional; + description: z.ZodOptional; + minItems: z.ZodOptional; + maxItems: z.ZodOptional; + items: z.ZodObject<{ + type: z.ZodLiteral<"string">; + enum: z.ZodArray; + }, z.core.$strip>; + default: z.ZodOptional>; +}, z.core.$strip>, z.ZodObject<{ + type: z.ZodLiteral<"array">; + title: z.ZodOptional; + description: z.ZodOptional; + minItems: z.ZodOptional; + maxItems: z.ZodOptional; + items: z.ZodObject<{ + anyOf: z.ZodArray>; + }, z.core.$strip>; + default: z.ZodOptional>; +}, z.core.$strip>]>]>, z.ZodObject<{ + type: z.ZodLiteral<"boolean">; + title: z.ZodOptional; + description: z.ZodOptional; + default: z.ZodOptional; +}, z.core.$strip>, z.ZodObject<{ + type: z.ZodLiteral<"string">; + title: z.ZodOptional; + description: z.ZodOptional; + minLength: z.ZodOptional; + maxLength: z.ZodOptional; + format: z.ZodOptional>; + default: z.ZodOptional; +}, z.core.$strip>, z.ZodObject<{ + type: z.ZodEnum<{ + number: "number"; + integer: "integer"; + }>; + title: z.ZodOptional; + description: z.ZodOptional; + minimum: z.ZodOptional; + maximum: z.ZodOptional; + default: z.ZodOptional; +}, z.core.$strip>]>; +/** + * Parameters for an `elicitation/create` request for form-based elicitation. + */ +export declare const ElicitRequestFormParamsSchema: z.ZodObject<{ + _meta: z.ZodOptional>; + /** + * If specified, this request is related to the provided task. + */ + "io.modelcontextprotocol/related-task": z.ZodOptional>; + }, z.core.$loose>>; + task: z.ZodOptional; + }, z.core.$strip>>; + mode: z.ZodOptional>; + message: z.ZodString; + requestedSchema: z.ZodObject<{ + type: z.ZodLiteral<"object">; + properties: z.ZodRecord; + title: z.ZodOptional; + description: z.ZodOptional; + enum: z.ZodArray; + enumNames: z.ZodOptional>; + default: z.ZodOptional; + }, z.core.$strip>, z.ZodUnion; + title: z.ZodOptional; + description: z.ZodOptional; + enum: z.ZodArray; + default: z.ZodOptional; + }, z.core.$strip>, z.ZodObject<{ + type: z.ZodLiteral<"string">; + title: z.ZodOptional; + description: z.ZodOptional; + oneOf: z.ZodArray>; + default: z.ZodOptional; + }, z.core.$strip>]>, z.ZodUnion; + title: z.ZodOptional; + description: z.ZodOptional; + minItems: z.ZodOptional; + maxItems: z.ZodOptional; + items: z.ZodObject<{ + type: z.ZodLiteral<"string">; + enum: z.ZodArray; + }, z.core.$strip>; + default: z.ZodOptional>; + }, z.core.$strip>, z.ZodObject<{ + type: z.ZodLiteral<"array">; + title: z.ZodOptional; + description: z.ZodOptional; + minItems: z.ZodOptional; + maxItems: z.ZodOptional; + items: z.ZodObject<{ + anyOf: z.ZodArray>; + }, z.core.$strip>; + default: z.ZodOptional>; + }, z.core.$strip>]>]>, z.ZodObject<{ + type: z.ZodLiteral<"boolean">; + title: z.ZodOptional; + description: z.ZodOptional; + default: z.ZodOptional; + }, z.core.$strip>, z.ZodObject<{ + type: z.ZodLiteral<"string">; + title: z.ZodOptional; + description: z.ZodOptional; + minLength: z.ZodOptional; + maxLength: z.ZodOptional; + format: z.ZodOptional>; + default: z.ZodOptional; + }, z.core.$strip>, z.ZodObject<{ + type: z.ZodEnum<{ + number: "number"; + integer: "integer"; + }>; + title: z.ZodOptional; + description: z.ZodOptional; + minimum: z.ZodOptional; + maximum: z.ZodOptional; + default: z.ZodOptional; + }, z.core.$strip>]>>; + required: z.ZodOptional>; + }, z.core.$strip>; +}, z.core.$strip>; +/** + * Parameters for an `elicitation/create` request for URL-based elicitation. + */ +export declare const ElicitRequestURLParamsSchema: z.ZodObject<{ + _meta: z.ZodOptional>; + /** + * If specified, this request is related to the provided task. + */ + "io.modelcontextprotocol/related-task": z.ZodOptional>; + }, z.core.$loose>>; + task: z.ZodOptional; + }, z.core.$strip>>; + mode: z.ZodLiteral<"url">; + message: z.ZodString; + elicitationId: z.ZodString; + url: z.ZodString; +}, z.core.$strip>; +/** + * The parameters for a request to elicit additional information from the user via the client. + */ +export declare const ElicitRequestParamsSchema: z.ZodUnion>; + /** + * If specified, this request is related to the provided task. + */ + "io.modelcontextprotocol/related-task": z.ZodOptional>; + }, z.core.$loose>>; + task: z.ZodOptional; + }, z.core.$strip>>; + mode: z.ZodOptional>; + message: z.ZodString; + requestedSchema: z.ZodObject<{ + type: z.ZodLiteral<"object">; + properties: z.ZodRecord; + title: z.ZodOptional; + description: z.ZodOptional; + enum: z.ZodArray; + enumNames: z.ZodOptional>; + default: z.ZodOptional; + }, z.core.$strip>, z.ZodUnion; + title: z.ZodOptional; + description: z.ZodOptional; + enum: z.ZodArray; + default: z.ZodOptional; + }, z.core.$strip>, z.ZodObject<{ + type: z.ZodLiteral<"string">; + title: z.ZodOptional; + description: z.ZodOptional; + oneOf: z.ZodArray>; + default: z.ZodOptional; + }, z.core.$strip>]>, z.ZodUnion; + title: z.ZodOptional; + description: z.ZodOptional; + minItems: z.ZodOptional; + maxItems: z.ZodOptional; + items: z.ZodObject<{ + type: z.ZodLiteral<"string">; + enum: z.ZodArray; + }, z.core.$strip>; + default: z.ZodOptional>; + }, z.core.$strip>, z.ZodObject<{ + type: z.ZodLiteral<"array">; + title: z.ZodOptional; + description: z.ZodOptional; + minItems: z.ZodOptional; + maxItems: z.ZodOptional; + items: z.ZodObject<{ + anyOf: z.ZodArray>; + }, z.core.$strip>; + default: z.ZodOptional>; + }, z.core.$strip>]>]>, z.ZodObject<{ + type: z.ZodLiteral<"boolean">; + title: z.ZodOptional; + description: z.ZodOptional; + default: z.ZodOptional; + }, z.core.$strip>, z.ZodObject<{ + type: z.ZodLiteral<"string">; + title: z.ZodOptional; + description: z.ZodOptional; + minLength: z.ZodOptional; + maxLength: z.ZodOptional; + format: z.ZodOptional>; + default: z.ZodOptional; + }, z.core.$strip>, z.ZodObject<{ + type: z.ZodEnum<{ + number: "number"; + integer: "integer"; + }>; + title: z.ZodOptional; + description: z.ZodOptional; + minimum: z.ZodOptional; + maximum: z.ZodOptional; + default: z.ZodOptional; + }, z.core.$strip>]>>; + required: z.ZodOptional>; + }, z.core.$strip>; +}, z.core.$strip>, z.ZodObject<{ + _meta: z.ZodOptional>; + /** + * If specified, this request is related to the provided task. + */ + "io.modelcontextprotocol/related-task": z.ZodOptional>; + }, z.core.$loose>>; + task: z.ZodOptional; + }, z.core.$strip>>; + mode: z.ZodLiteral<"url">; + message: z.ZodString; + elicitationId: z.ZodString; + url: z.ZodString; +}, z.core.$strip>]>; +/** + * A request from the server to elicit user input via the client. + * The client should present the message and form fields to the user (form mode) + * or navigate to a URL (URL mode). + */ +export declare const ElicitRequestSchema: z.ZodObject<{ + method: z.ZodLiteral<"elicitation/create">; + params: z.ZodUnion>; + /** + * If specified, this request is related to the provided task. + */ + "io.modelcontextprotocol/related-task": z.ZodOptional>; + }, z.core.$loose>>; + task: z.ZodOptional; + }, z.core.$strip>>; + mode: z.ZodOptional>; + message: z.ZodString; + requestedSchema: z.ZodObject<{ + type: z.ZodLiteral<"object">; + properties: z.ZodRecord; + title: z.ZodOptional; + description: z.ZodOptional; + enum: z.ZodArray; + enumNames: z.ZodOptional>; + default: z.ZodOptional; + }, z.core.$strip>, z.ZodUnion; + title: z.ZodOptional; + description: z.ZodOptional; + enum: z.ZodArray; + default: z.ZodOptional; + }, z.core.$strip>, z.ZodObject<{ + type: z.ZodLiteral<"string">; + title: z.ZodOptional; + description: z.ZodOptional; + oneOf: z.ZodArray>; + default: z.ZodOptional; + }, z.core.$strip>]>, z.ZodUnion; + title: z.ZodOptional; + description: z.ZodOptional; + minItems: z.ZodOptional; + maxItems: z.ZodOptional; + items: z.ZodObject<{ + type: z.ZodLiteral<"string">; + enum: z.ZodArray; + }, z.core.$strip>; + default: z.ZodOptional>; + }, z.core.$strip>, z.ZodObject<{ + type: z.ZodLiteral<"array">; + title: z.ZodOptional; + description: z.ZodOptional; + minItems: z.ZodOptional; + maxItems: z.ZodOptional; + items: z.ZodObject<{ + anyOf: z.ZodArray>; + }, z.core.$strip>; + default: z.ZodOptional>; + }, z.core.$strip>]>]>, z.ZodObject<{ + type: z.ZodLiteral<"boolean">; + title: z.ZodOptional; + description: z.ZodOptional; + default: z.ZodOptional; + }, z.core.$strip>, z.ZodObject<{ + type: z.ZodLiteral<"string">; + title: z.ZodOptional; + description: z.ZodOptional; + minLength: z.ZodOptional; + maxLength: z.ZodOptional; + format: z.ZodOptional>; + default: z.ZodOptional; + }, z.core.$strip>, z.ZodObject<{ + type: z.ZodEnum<{ + number: "number"; + integer: "integer"; + }>; + title: z.ZodOptional; + description: z.ZodOptional; + minimum: z.ZodOptional; + maximum: z.ZodOptional; + default: z.ZodOptional; + }, z.core.$strip>]>>; + required: z.ZodOptional>; + }, z.core.$strip>; + }, z.core.$strip>, z.ZodObject<{ + _meta: z.ZodOptional>; + /** + * If specified, this request is related to the provided task. + */ + "io.modelcontextprotocol/related-task": z.ZodOptional>; + }, z.core.$loose>>; + task: z.ZodOptional; + }, z.core.$strip>>; + mode: z.ZodLiteral<"url">; + message: z.ZodString; + elicitationId: z.ZodString; + url: z.ZodString; + }, z.core.$strip>]>; +}, z.core.$strip>; +/** + * Parameters for a `notifications/elicitation/complete` notification. + * + * @category notifications/elicitation/complete + */ +export declare const ElicitationCompleteNotificationParamsSchema: z.ZodObject<{ + _meta: z.ZodOptional>; + /** + * If specified, this request is related to the provided task. + */ + "io.modelcontextprotocol/related-task": z.ZodOptional>; + }, z.core.$loose>>; + elicitationId: z.ZodString; +}, z.core.$strip>; +/** + * A notification from the server to the client, informing it of a completion of an out-of-band elicitation request. + * + * @category notifications/elicitation/complete + */ +export declare const ElicitationCompleteNotificationSchema: z.ZodObject<{ + method: z.ZodLiteral<"notifications/elicitation/complete">; + params: z.ZodObject<{ + _meta: z.ZodOptional>; + /** + * If specified, this request is related to the provided task. + */ + "io.modelcontextprotocol/related-task": z.ZodOptional>; + }, z.core.$loose>>; + elicitationId: z.ZodString; + }, z.core.$strip>; +}, z.core.$strip>; +/** + * The client's response to an elicitation/create request from the server. + */ +export declare const ElicitResultSchema: z.ZodObject<{ + _meta: z.ZodOptional>; + /** + * If specified, this request is related to the provided task. + */ + "io.modelcontextprotocol/related-task": z.ZodOptional>; + }, z.core.$loose>>; + action: z.ZodEnum<{ + cancel: "cancel"; + accept: "accept"; + decline: "decline"; + }>; + content: z.ZodPipe, z.ZodOptional]>>>>; +}, z.core.$loose>; +/** + * A reference to a resource or resource template definition. + */ +export declare const ResourceTemplateReferenceSchema: z.ZodObject<{ + type: z.ZodLiteral<"ref/resource">; + uri: z.ZodString; +}, z.core.$strip>; +/** + * @deprecated Use ResourceTemplateReferenceSchema instead + */ +export declare const ResourceReferenceSchema: z.ZodObject<{ + type: z.ZodLiteral<"ref/resource">; + uri: z.ZodString; +}, z.core.$strip>; +/** + * Identifies a prompt. + */ +export declare const PromptReferenceSchema: z.ZodObject<{ + type: z.ZodLiteral<"ref/prompt">; + name: z.ZodString; +}, z.core.$strip>; +/** + * Parameters for a `completion/complete` request. + */ +export declare const CompleteRequestParamsSchema: z.ZodObject<{ + _meta: z.ZodOptional>; + /** + * If specified, this request is related to the provided task. + */ + "io.modelcontextprotocol/related-task": z.ZodOptional>; + }, z.core.$loose>>; + ref: z.ZodUnion; + name: z.ZodString; + }, z.core.$strip>, z.ZodObject<{ + type: z.ZodLiteral<"ref/resource">; + uri: z.ZodString; + }, z.core.$strip>]>; + argument: z.ZodObject<{ + name: z.ZodString; + value: z.ZodString; + }, z.core.$strip>; + context: z.ZodOptional>; + }, z.core.$strip>>; +}, z.core.$strip>; +/** + * A request from the client to the server, to ask for completion options. + */ +export declare const CompleteRequestSchema: z.ZodObject<{ + method: z.ZodLiteral<"completion/complete">; + params: z.ZodObject<{ + _meta: z.ZodOptional>; + /** + * If specified, this request is related to the provided task. + */ + "io.modelcontextprotocol/related-task": z.ZodOptional>; + }, z.core.$loose>>; + ref: z.ZodUnion; + name: z.ZodString; + }, z.core.$strip>, z.ZodObject<{ + type: z.ZodLiteral<"ref/resource">; + uri: z.ZodString; + }, z.core.$strip>]>; + argument: z.ZodObject<{ + name: z.ZodString; + value: z.ZodString; + }, z.core.$strip>; + context: z.ZodOptional>; + }, z.core.$strip>>; + }, z.core.$strip>; +}, z.core.$strip>; +export declare function assertCompleteRequestPrompt(request: CompleteRequest): asserts request is CompleteRequestPrompt; +export declare function assertCompleteRequestResourceTemplate(request: CompleteRequest): asserts request is CompleteRequestResourceTemplate; +/** + * The server's response to a completion/complete request + */ +export declare const CompleteResultSchema: z.ZodObject<{ + _meta: z.ZodOptional>; + /** + * If specified, this request is related to the provided task. + */ + "io.modelcontextprotocol/related-task": z.ZodOptional>; + }, z.core.$loose>>; + completion: z.ZodObject<{ + /** + * An array of completion values. Must not exceed 100 items. + */ + values: z.ZodArray; + /** + * The total number of completion options available. This can exceed the number of values actually sent in the response. + */ + total: z.ZodOptional; + /** + * Indicates whether there are additional completion options beyond those provided in the current response, even if the exact total is unknown. + */ + hasMore: z.ZodOptional; + }, z.core.$loose>; +}, z.core.$loose>; +/** + * Represents a root directory or file that the server can operate on. + */ +export declare const RootSchema: z.ZodObject<{ + uri: z.ZodString; + name: z.ZodOptional; + _meta: z.ZodOptional>; +}, z.core.$strip>; +/** + * Sent from the server to request a list of root URIs from the client. + */ +export declare const ListRootsRequestSchema: z.ZodObject<{ + method: z.ZodLiteral<"roots/list">; + params: z.ZodOptional>; + /** + * If specified, this request is related to the provided task. + */ + "io.modelcontextprotocol/related-task": z.ZodOptional>; + }, z.core.$loose>>; + }, z.core.$strip>>; +}, z.core.$strip>; +/** + * The client's response to a roots/list request from the server. + */ +export declare const ListRootsResultSchema: z.ZodObject<{ + _meta: z.ZodOptional>; + /** + * If specified, this request is related to the provided task. + */ + "io.modelcontextprotocol/related-task": z.ZodOptional>; + }, z.core.$loose>>; + roots: z.ZodArray; + _meta: z.ZodOptional>; + }, z.core.$strip>>; +}, z.core.$loose>; +/** + * A notification from the client to the server, informing it that the list of roots has changed. + */ +export declare const RootsListChangedNotificationSchema: z.ZodObject<{ + method: z.ZodLiteral<"notifications/roots/list_changed">; + params: z.ZodOptional>; + /** + * If specified, this request is related to the provided task. + */ + "io.modelcontextprotocol/related-task": z.ZodOptional>; + }, z.core.$loose>>; + }, z.core.$strip>>; +}, z.core.$strip>; +export declare const ClientRequestSchema: z.ZodUnion; + params: z.ZodOptional>; + /** + * If specified, this request is related to the provided task. + */ + "io.modelcontextprotocol/related-task": z.ZodOptional>; + }, z.core.$loose>>; + }, z.core.$strip>>; +}, z.core.$strip>, z.ZodObject<{ + method: z.ZodLiteral<"initialize">; + params: z.ZodObject<{ + _meta: z.ZodOptional>; + /** + * If specified, this request is related to the provided task. + */ + "io.modelcontextprotocol/related-task": z.ZodOptional>; + }, z.core.$loose>>; + protocolVersion: z.ZodString; + capabilities: z.ZodObject<{ + experimental: z.ZodOptional>>; + sampling: z.ZodOptional>; + tools: z.ZodOptional>; + }, z.core.$strip>>; + elicitation: z.ZodOptional, z.ZodIntersection; + }, z.core.$strip>, z.ZodRecord>>; + url: z.ZodOptional>; + }, z.core.$strip>, z.ZodOptional>>>>; + roots: z.ZodOptional; + }, z.core.$strip>>; + tasks: z.ZodOptional>; + /** + * Present if the client supports cancelling tasks. + */ + cancel: z.ZodOptional>; + /** + * Capabilities for task creation on specific request types. + */ + requests: z.ZodOptional>; + }, z.core.$loose>>; + /** + * Task support for elicitation requests. + */ + elicitation: z.ZodOptional>; + }, z.core.$loose>>; + }, z.core.$loose>>; + }, z.core.$loose>>; + extensions: z.ZodOptional>>; + }, z.core.$strip>; + clientInfo: z.ZodObject<{ + version: z.ZodString; + websiteUrl: z.ZodOptional; + description: z.ZodOptional; + icons: z.ZodOptional; + sizes: z.ZodOptional>; + theme: z.ZodOptional>; + }, z.core.$strip>>>; + name: z.ZodString; + title: z.ZodOptional; + }, z.core.$strip>; + }, z.core.$strip>; +}, z.core.$strip>, z.ZodObject<{ + method: z.ZodLiteral<"completion/complete">; + params: z.ZodObject<{ + _meta: z.ZodOptional>; + /** + * If specified, this request is related to the provided task. + */ + "io.modelcontextprotocol/related-task": z.ZodOptional>; + }, z.core.$loose>>; + ref: z.ZodUnion; + name: z.ZodString; + }, z.core.$strip>, z.ZodObject<{ + type: z.ZodLiteral<"ref/resource">; + uri: z.ZodString; + }, z.core.$strip>]>; + argument: z.ZodObject<{ + name: z.ZodString; + value: z.ZodString; + }, z.core.$strip>; + context: z.ZodOptional>; + }, z.core.$strip>>; + }, z.core.$strip>; +}, z.core.$strip>, z.ZodObject<{ + method: z.ZodLiteral<"logging/setLevel">; + params: z.ZodObject<{ + _meta: z.ZodOptional>; + /** + * If specified, this request is related to the provided task. + */ + "io.modelcontextprotocol/related-task": z.ZodOptional>; + }, z.core.$loose>>; + level: z.ZodEnum<{ + error: "error"; + debug: "debug"; + info: "info"; + notice: "notice"; + warning: "warning"; + critical: "critical"; + alert: "alert"; + emergency: "emergency"; + }>; + }, z.core.$strip>; +}, z.core.$strip>, z.ZodObject<{ + method: z.ZodLiteral<"prompts/get">; + params: z.ZodObject<{ + _meta: z.ZodOptional>; + /** + * If specified, this request is related to the provided task. + */ + "io.modelcontextprotocol/related-task": z.ZodOptional>; + }, z.core.$loose>>; + name: z.ZodString; + arguments: z.ZodOptional>; + }, z.core.$strip>; +}, z.core.$strip>, z.ZodObject<{ + params: z.ZodOptional>; + /** + * If specified, this request is related to the provided task. + */ + "io.modelcontextprotocol/related-task": z.ZodOptional>; + }, z.core.$loose>>; + cursor: z.ZodOptional; + }, z.core.$strip>>; + method: z.ZodLiteral<"prompts/list">; +}, z.core.$strip>, z.ZodObject<{ + params: z.ZodOptional>; + /** + * If specified, this request is related to the provided task. + */ + "io.modelcontextprotocol/related-task": z.ZodOptional>; + }, z.core.$loose>>; + cursor: z.ZodOptional; + }, z.core.$strip>>; + method: z.ZodLiteral<"resources/list">; +}, z.core.$strip>, z.ZodObject<{ + params: z.ZodOptional>; + /** + * If specified, this request is related to the provided task. + */ + "io.modelcontextprotocol/related-task": z.ZodOptional>; + }, z.core.$loose>>; + cursor: z.ZodOptional; + }, z.core.$strip>>; + method: z.ZodLiteral<"resources/templates/list">; +}, z.core.$strip>, z.ZodObject<{ + method: z.ZodLiteral<"resources/read">; + params: z.ZodObject<{ + _meta: z.ZodOptional>; + /** + * If specified, this request is related to the provided task. + */ + "io.modelcontextprotocol/related-task": z.ZodOptional>; + }, z.core.$loose>>; + uri: z.ZodString; + }, z.core.$strip>; +}, z.core.$strip>, z.ZodObject<{ + method: z.ZodLiteral<"resources/subscribe">; + params: z.ZodObject<{ + _meta: z.ZodOptional>; + /** + * If specified, this request is related to the provided task. + */ + "io.modelcontextprotocol/related-task": z.ZodOptional>; + }, z.core.$loose>>; + uri: z.ZodString; + }, z.core.$strip>; +}, z.core.$strip>, z.ZodObject<{ + method: z.ZodLiteral<"resources/unsubscribe">; + params: z.ZodObject<{ + _meta: z.ZodOptional>; + /** + * If specified, this request is related to the provided task. + */ + "io.modelcontextprotocol/related-task": z.ZodOptional>; + }, z.core.$loose>>; + uri: z.ZodString; + }, z.core.$strip>; +}, z.core.$strip>, z.ZodObject<{ + method: z.ZodLiteral<"tools/call">; + params: z.ZodObject<{ + _meta: z.ZodOptional>; + /** + * If specified, this request is related to the provided task. + */ + "io.modelcontextprotocol/related-task": z.ZodOptional>; + }, z.core.$loose>>; + task: z.ZodOptional; + }, z.core.$strip>>; + name: z.ZodString; + arguments: z.ZodOptional>; + }, z.core.$strip>; +}, z.core.$strip>, z.ZodObject<{ + params: z.ZodOptional>; + /** + * If specified, this request is related to the provided task. + */ + "io.modelcontextprotocol/related-task": z.ZodOptional>; + }, z.core.$loose>>; + cursor: z.ZodOptional; + }, z.core.$strip>>; + method: z.ZodLiteral<"tools/list">; +}, z.core.$strip>, z.ZodObject<{ + method: z.ZodLiteral<"tasks/get">; + params: z.ZodObject<{ + _meta: z.ZodOptional>; + /** + * If specified, this request is related to the provided task. + */ + "io.modelcontextprotocol/related-task": z.ZodOptional>; + }, z.core.$loose>>; + taskId: z.ZodString; + }, z.core.$strip>; +}, z.core.$strip>, z.ZodObject<{ + method: z.ZodLiteral<"tasks/result">; + params: z.ZodObject<{ + _meta: z.ZodOptional>; + /** + * If specified, this request is related to the provided task. + */ + "io.modelcontextprotocol/related-task": z.ZodOptional>; + }, z.core.$loose>>; + taskId: z.ZodString; + }, z.core.$strip>; +}, z.core.$strip>, z.ZodObject<{ + params: z.ZodOptional>; + /** + * If specified, this request is related to the provided task. + */ + "io.modelcontextprotocol/related-task": z.ZodOptional>; + }, z.core.$loose>>; + cursor: z.ZodOptional; + }, z.core.$strip>>; + method: z.ZodLiteral<"tasks/list">; +}, z.core.$strip>, z.ZodObject<{ + method: z.ZodLiteral<"tasks/cancel">; + params: z.ZodObject<{ + _meta: z.ZodOptional>; + /** + * If specified, this request is related to the provided task. + */ + "io.modelcontextprotocol/related-task": z.ZodOptional>; + }, z.core.$loose>>; + taskId: z.ZodString; + }, z.core.$strip>; +}, z.core.$strip>]>; +export declare const ClientNotificationSchema: z.ZodUnion; + params: z.ZodObject<{ + _meta: z.ZodOptional>; + /** + * If specified, this request is related to the provided task. + */ + "io.modelcontextprotocol/related-task": z.ZodOptional>; + }, z.core.$loose>>; + requestId: z.ZodOptional>; + reason: z.ZodOptional; + }, z.core.$strip>; +}, z.core.$strip>, z.ZodObject<{ + method: z.ZodLiteral<"notifications/progress">; + params: z.ZodObject<{ + progressToken: z.ZodUnion; + progress: z.ZodNumber; + total: z.ZodOptional; + message: z.ZodOptional; + _meta: z.ZodOptional>; + /** + * If specified, this request is related to the provided task. + */ + "io.modelcontextprotocol/related-task": z.ZodOptional>; + }, z.core.$loose>>; + }, z.core.$strip>; +}, z.core.$strip>, z.ZodObject<{ + method: z.ZodLiteral<"notifications/initialized">; + params: z.ZodOptional>; + /** + * If specified, this request is related to the provided task. + */ + "io.modelcontextprotocol/related-task": z.ZodOptional>; + }, z.core.$loose>>; + }, z.core.$strip>>; +}, z.core.$strip>, z.ZodObject<{ + method: z.ZodLiteral<"notifications/roots/list_changed">; + params: z.ZodOptional>; + /** + * If specified, this request is related to the provided task. + */ + "io.modelcontextprotocol/related-task": z.ZodOptional>; + }, z.core.$loose>>; + }, z.core.$strip>>; +}, z.core.$strip>, z.ZodObject<{ + method: z.ZodLiteral<"notifications/tasks/status">; + params: z.ZodObject<{ + _meta: z.ZodOptional>; + /** + * If specified, this request is related to the provided task. + */ + "io.modelcontextprotocol/related-task": z.ZodOptional>; + }, z.core.$loose>>; + taskId: z.ZodString; + status: z.ZodEnum<{ + working: "working"; + input_required: "input_required"; + completed: "completed"; + failed: "failed"; + cancelled: "cancelled"; + }>; + ttl: z.ZodUnion; + createdAt: z.ZodString; + lastUpdatedAt: z.ZodString; + pollInterval: z.ZodOptional; + statusMessage: z.ZodOptional; + }, z.core.$strip>; +}, z.core.$strip>]>; +export declare const ClientResultSchema: z.ZodUnion>; + /** + * If specified, this request is related to the provided task. + */ + "io.modelcontextprotocol/related-task": z.ZodOptional>; + }, z.core.$loose>>; +}, z.core.$strict>, z.ZodObject<{ + _meta: z.ZodOptional>; + /** + * If specified, this request is related to the provided task. + */ + "io.modelcontextprotocol/related-task": z.ZodOptional>; + }, z.core.$loose>>; + model: z.ZodString; + stopReason: z.ZodOptional, z.ZodString]>>; + role: z.ZodEnum<{ + user: "user"; + assistant: "assistant"; + }>; + content: z.ZodDiscriminatedUnion<[z.ZodObject<{ + type: z.ZodLiteral<"text">; + text: z.ZodString; + annotations: z.ZodOptional>>; + priority: z.ZodOptional; + lastModified: z.ZodOptional; + }, z.core.$strip>>; + _meta: z.ZodOptional>; + }, z.core.$strip>, z.ZodObject<{ + type: z.ZodLiteral<"image">; + data: z.ZodString; + mimeType: z.ZodString; + annotations: z.ZodOptional>>; + priority: z.ZodOptional; + lastModified: z.ZodOptional; + }, z.core.$strip>>; + _meta: z.ZodOptional>; + }, z.core.$strip>, z.ZodObject<{ + type: z.ZodLiteral<"audio">; + data: z.ZodString; + mimeType: z.ZodString; + annotations: z.ZodOptional>>; + priority: z.ZodOptional; + lastModified: z.ZodOptional; + }, z.core.$strip>>; + _meta: z.ZodOptional>; + }, z.core.$strip>]>; +}, z.core.$loose>, z.ZodObject<{ + _meta: z.ZodOptional>; + /** + * If specified, this request is related to the provided task. + */ + "io.modelcontextprotocol/related-task": z.ZodOptional>; + }, z.core.$loose>>; + model: z.ZodString; + stopReason: z.ZodOptional, z.ZodString]>>; + role: z.ZodEnum<{ + user: "user"; + assistant: "assistant"; + }>; + content: z.ZodUnion; + text: z.ZodString; + annotations: z.ZodOptional>>; + priority: z.ZodOptional; + lastModified: z.ZodOptional; + }, z.core.$strip>>; + _meta: z.ZodOptional>; + }, z.core.$strip>, z.ZodObject<{ + type: z.ZodLiteral<"image">; + data: z.ZodString; + mimeType: z.ZodString; + annotations: z.ZodOptional>>; + priority: z.ZodOptional; + lastModified: z.ZodOptional; + }, z.core.$strip>>; + _meta: z.ZodOptional>; + }, z.core.$strip>, z.ZodObject<{ + type: z.ZodLiteral<"audio">; + data: z.ZodString; + mimeType: z.ZodString; + annotations: z.ZodOptional>>; + priority: z.ZodOptional; + lastModified: z.ZodOptional; + }, z.core.$strip>>; + _meta: z.ZodOptional>; + }, z.core.$strip>, z.ZodObject<{ + type: z.ZodLiteral<"tool_use">; + name: z.ZodString; + id: z.ZodString; + input: z.ZodRecord; + _meta: z.ZodOptional>; + }, z.core.$strip>, z.ZodObject<{ + type: z.ZodLiteral<"tool_result">; + toolUseId: z.ZodString; + content: z.ZodDefault; + text: z.ZodString; + annotations: z.ZodOptional>>; + priority: z.ZodOptional; + lastModified: z.ZodOptional; + }, z.core.$strip>>; + _meta: z.ZodOptional>; + }, z.core.$strip>, z.ZodObject<{ + type: z.ZodLiteral<"image">; + data: z.ZodString; + mimeType: z.ZodString; + annotations: z.ZodOptional>>; + priority: z.ZodOptional; + lastModified: z.ZodOptional; + }, z.core.$strip>>; + _meta: z.ZodOptional>; + }, z.core.$strip>, z.ZodObject<{ + type: z.ZodLiteral<"audio">; + data: z.ZodString; + mimeType: z.ZodString; + annotations: z.ZodOptional>>; + priority: z.ZodOptional; + lastModified: z.ZodOptional; + }, z.core.$strip>>; + _meta: z.ZodOptional>; + }, z.core.$strip>, z.ZodObject<{ + uri: z.ZodString; + description: z.ZodOptional; + mimeType: z.ZodOptional; + size: z.ZodOptional; + annotations: z.ZodOptional>>; + priority: z.ZodOptional; + lastModified: z.ZodOptional; + }, z.core.$strip>>; + _meta: z.ZodOptional>; + icons: z.ZodOptional; + sizes: z.ZodOptional>; + theme: z.ZodOptional>; + }, z.core.$strip>>>; + name: z.ZodString; + title: z.ZodOptional; + type: z.ZodLiteral<"resource_link">; + }, z.core.$strip>, z.ZodObject<{ + type: z.ZodLiteral<"resource">; + resource: z.ZodUnion; + _meta: z.ZodOptional>; + text: z.ZodString; + }, z.core.$strip>, z.ZodObject<{ + uri: z.ZodString; + mimeType: z.ZodOptional; + _meta: z.ZodOptional>; + blob: z.ZodString; + }, z.core.$strip>]>; + annotations: z.ZodOptional>>; + priority: z.ZodOptional; + lastModified: z.ZodOptional; + }, z.core.$strip>>; + _meta: z.ZodOptional>; + }, z.core.$strip>]>>>; + structuredContent: z.ZodOptional>; + isError: z.ZodOptional; + _meta: z.ZodOptional>; + }, z.core.$strip>]>, z.ZodArray; + text: z.ZodString; + annotations: z.ZodOptional>>; + priority: z.ZodOptional; + lastModified: z.ZodOptional; + }, z.core.$strip>>; + _meta: z.ZodOptional>; + }, z.core.$strip>, z.ZodObject<{ + type: z.ZodLiteral<"image">; + data: z.ZodString; + mimeType: z.ZodString; + annotations: z.ZodOptional>>; + priority: z.ZodOptional; + lastModified: z.ZodOptional; + }, z.core.$strip>>; + _meta: z.ZodOptional>; + }, z.core.$strip>, z.ZodObject<{ + type: z.ZodLiteral<"audio">; + data: z.ZodString; + mimeType: z.ZodString; + annotations: z.ZodOptional>>; + priority: z.ZodOptional; + lastModified: z.ZodOptional; + }, z.core.$strip>>; + _meta: z.ZodOptional>; + }, z.core.$strip>, z.ZodObject<{ + type: z.ZodLiteral<"tool_use">; + name: z.ZodString; + id: z.ZodString; + input: z.ZodRecord; + _meta: z.ZodOptional>; + }, z.core.$strip>, z.ZodObject<{ + type: z.ZodLiteral<"tool_result">; + toolUseId: z.ZodString; + content: z.ZodDefault; + text: z.ZodString; + annotations: z.ZodOptional>>; + priority: z.ZodOptional; + lastModified: z.ZodOptional; + }, z.core.$strip>>; + _meta: z.ZodOptional>; + }, z.core.$strip>, z.ZodObject<{ + type: z.ZodLiteral<"image">; + data: z.ZodString; + mimeType: z.ZodString; + annotations: z.ZodOptional>>; + priority: z.ZodOptional; + lastModified: z.ZodOptional; + }, z.core.$strip>>; + _meta: z.ZodOptional>; + }, z.core.$strip>, z.ZodObject<{ + type: z.ZodLiteral<"audio">; + data: z.ZodString; + mimeType: z.ZodString; + annotations: z.ZodOptional>>; + priority: z.ZodOptional; + lastModified: z.ZodOptional; + }, z.core.$strip>>; + _meta: z.ZodOptional>; + }, z.core.$strip>, z.ZodObject<{ + uri: z.ZodString; + description: z.ZodOptional; + mimeType: z.ZodOptional; + size: z.ZodOptional; + annotations: z.ZodOptional>>; + priority: z.ZodOptional; + lastModified: z.ZodOptional; + }, z.core.$strip>>; + _meta: z.ZodOptional>; + icons: z.ZodOptional; + sizes: z.ZodOptional>; + theme: z.ZodOptional>; + }, z.core.$strip>>>; + name: z.ZodString; + title: z.ZodOptional; + type: z.ZodLiteral<"resource_link">; + }, z.core.$strip>, z.ZodObject<{ + type: z.ZodLiteral<"resource">; + resource: z.ZodUnion; + _meta: z.ZodOptional>; + text: z.ZodString; + }, z.core.$strip>, z.ZodObject<{ + uri: z.ZodString; + mimeType: z.ZodOptional; + _meta: z.ZodOptional>; + blob: z.ZodString; + }, z.core.$strip>]>; + annotations: z.ZodOptional>>; + priority: z.ZodOptional; + lastModified: z.ZodOptional; + }, z.core.$strip>>; + _meta: z.ZodOptional>; + }, z.core.$strip>]>>>; + structuredContent: z.ZodOptional>; + isError: z.ZodOptional; + _meta: z.ZodOptional>; + }, z.core.$strip>]>>]>; +}, z.core.$loose>, z.ZodObject<{ + _meta: z.ZodOptional>; + /** + * If specified, this request is related to the provided task. + */ + "io.modelcontextprotocol/related-task": z.ZodOptional>; + }, z.core.$loose>>; + action: z.ZodEnum<{ + cancel: "cancel"; + accept: "accept"; + decline: "decline"; + }>; + content: z.ZodPipe, z.ZodOptional]>>>>; +}, z.core.$loose>, z.ZodObject<{ + _meta: z.ZodOptional>; + /** + * If specified, this request is related to the provided task. + */ + "io.modelcontextprotocol/related-task": z.ZodOptional>; + }, z.core.$loose>>; + roots: z.ZodArray; + _meta: z.ZodOptional>; + }, z.core.$strip>>; +}, z.core.$loose>, z.ZodObject<{ + _meta: z.ZodOptional>; + /** + * If specified, this request is related to the provided task. + */ + "io.modelcontextprotocol/related-task": z.ZodOptional>; + }, z.core.$loose>>; + taskId: z.ZodString; + status: z.ZodEnum<{ + working: "working"; + input_required: "input_required"; + completed: "completed"; + failed: "failed"; + cancelled: "cancelled"; + }>; + ttl: z.ZodUnion; + createdAt: z.ZodString; + lastUpdatedAt: z.ZodString; + pollInterval: z.ZodOptional; + statusMessage: z.ZodOptional; +}, z.core.$strip>, z.ZodObject<{ + _meta: z.ZodOptional>; + /** + * If specified, this request is related to the provided task. + */ + "io.modelcontextprotocol/related-task": z.ZodOptional>; + }, z.core.$loose>>; + nextCursor: z.ZodOptional; + tasks: z.ZodArray; + ttl: z.ZodUnion; + createdAt: z.ZodString; + lastUpdatedAt: z.ZodString; + pollInterval: z.ZodOptional; + statusMessage: z.ZodOptional; + }, z.core.$strip>>; +}, z.core.$loose>, z.ZodObject<{ + _meta: z.ZodOptional>; + /** + * If specified, this request is related to the provided task. + */ + "io.modelcontextprotocol/related-task": z.ZodOptional>; + }, z.core.$loose>>; + task: z.ZodObject<{ + taskId: z.ZodString; + status: z.ZodEnum<{ + working: "working"; + input_required: "input_required"; + completed: "completed"; + failed: "failed"; + cancelled: "cancelled"; + }>; + ttl: z.ZodUnion; + createdAt: z.ZodString; + lastUpdatedAt: z.ZodString; + pollInterval: z.ZodOptional; + statusMessage: z.ZodOptional; + }, z.core.$strip>; +}, z.core.$loose>]>; +export declare const ServerRequestSchema: z.ZodUnion; + params: z.ZodOptional>; + /** + * If specified, this request is related to the provided task. + */ + "io.modelcontextprotocol/related-task": z.ZodOptional>; + }, z.core.$loose>>; + }, z.core.$strip>>; +}, z.core.$strip>, z.ZodObject<{ + method: z.ZodLiteral<"sampling/createMessage">; + params: z.ZodObject<{ + _meta: z.ZodOptional>; + /** + * If specified, this request is related to the provided task. + */ + "io.modelcontextprotocol/related-task": z.ZodOptional>; + }, z.core.$loose>>; + task: z.ZodOptional; + }, z.core.$strip>>; + messages: z.ZodArray; + content: z.ZodUnion; + text: z.ZodString; + annotations: z.ZodOptional>>; + priority: z.ZodOptional; + lastModified: z.ZodOptional; + }, z.core.$strip>>; + _meta: z.ZodOptional>; + }, z.core.$strip>, z.ZodObject<{ + type: z.ZodLiteral<"image">; + data: z.ZodString; + mimeType: z.ZodString; + annotations: z.ZodOptional>>; + priority: z.ZodOptional; + lastModified: z.ZodOptional; + }, z.core.$strip>>; + _meta: z.ZodOptional>; + }, z.core.$strip>, z.ZodObject<{ + type: z.ZodLiteral<"audio">; + data: z.ZodString; + mimeType: z.ZodString; + annotations: z.ZodOptional>>; + priority: z.ZodOptional; + lastModified: z.ZodOptional; + }, z.core.$strip>>; + _meta: z.ZodOptional>; + }, z.core.$strip>, z.ZodObject<{ + type: z.ZodLiteral<"tool_use">; + name: z.ZodString; + id: z.ZodString; + input: z.ZodRecord; + _meta: z.ZodOptional>; + }, z.core.$strip>, z.ZodObject<{ + type: z.ZodLiteral<"tool_result">; + toolUseId: z.ZodString; + content: z.ZodDefault; + text: z.ZodString; + annotations: z.ZodOptional>>; + priority: z.ZodOptional; + lastModified: z.ZodOptional; + }, z.core.$strip>>; + _meta: z.ZodOptional>; + }, z.core.$strip>, z.ZodObject<{ + type: z.ZodLiteral<"image">; + data: z.ZodString; + mimeType: z.ZodString; + annotations: z.ZodOptional>>; + priority: z.ZodOptional; + lastModified: z.ZodOptional; + }, z.core.$strip>>; + _meta: z.ZodOptional>; + }, z.core.$strip>, z.ZodObject<{ + type: z.ZodLiteral<"audio">; + data: z.ZodString; + mimeType: z.ZodString; + annotations: z.ZodOptional>>; + priority: z.ZodOptional; + lastModified: z.ZodOptional; + }, z.core.$strip>>; + _meta: z.ZodOptional>; + }, z.core.$strip>, z.ZodObject<{ + uri: z.ZodString; + description: z.ZodOptional; + mimeType: z.ZodOptional; + size: z.ZodOptional; + annotations: z.ZodOptional>>; + priority: z.ZodOptional; + lastModified: z.ZodOptional; + }, z.core.$strip>>; + _meta: z.ZodOptional>; + icons: z.ZodOptional; + sizes: z.ZodOptional>; + theme: z.ZodOptional>; + }, z.core.$strip>>>; + name: z.ZodString; + title: z.ZodOptional; + type: z.ZodLiteral<"resource_link">; + }, z.core.$strip>, z.ZodObject<{ + type: z.ZodLiteral<"resource">; + resource: z.ZodUnion; + _meta: z.ZodOptional>; + text: z.ZodString; + }, z.core.$strip>, z.ZodObject<{ + uri: z.ZodString; + mimeType: z.ZodOptional; + _meta: z.ZodOptional>; + blob: z.ZodString; + }, z.core.$strip>]>; + annotations: z.ZodOptional>>; + priority: z.ZodOptional; + lastModified: z.ZodOptional; + }, z.core.$strip>>; + _meta: z.ZodOptional>; + }, z.core.$strip>]>>>; + structuredContent: z.ZodOptional>; + isError: z.ZodOptional; + _meta: z.ZodOptional>; + }, z.core.$strip>]>, z.ZodArray; + text: z.ZodString; + annotations: z.ZodOptional>>; + priority: z.ZodOptional; + lastModified: z.ZodOptional; + }, z.core.$strip>>; + _meta: z.ZodOptional>; + }, z.core.$strip>, z.ZodObject<{ + type: z.ZodLiteral<"image">; + data: z.ZodString; + mimeType: z.ZodString; + annotations: z.ZodOptional>>; + priority: z.ZodOptional; + lastModified: z.ZodOptional; + }, z.core.$strip>>; + _meta: z.ZodOptional>; + }, z.core.$strip>, z.ZodObject<{ + type: z.ZodLiteral<"audio">; + data: z.ZodString; + mimeType: z.ZodString; + annotations: z.ZodOptional>>; + priority: z.ZodOptional; + lastModified: z.ZodOptional; + }, z.core.$strip>>; + _meta: z.ZodOptional>; + }, z.core.$strip>, z.ZodObject<{ + type: z.ZodLiteral<"tool_use">; + name: z.ZodString; + id: z.ZodString; + input: z.ZodRecord; + _meta: z.ZodOptional>; + }, z.core.$strip>, z.ZodObject<{ + type: z.ZodLiteral<"tool_result">; + toolUseId: z.ZodString; + content: z.ZodDefault; + text: z.ZodString; + annotations: z.ZodOptional>>; + priority: z.ZodOptional; + lastModified: z.ZodOptional; + }, z.core.$strip>>; + _meta: z.ZodOptional>; + }, z.core.$strip>, z.ZodObject<{ + type: z.ZodLiteral<"image">; + data: z.ZodString; + mimeType: z.ZodString; + annotations: z.ZodOptional>>; + priority: z.ZodOptional; + lastModified: z.ZodOptional; + }, z.core.$strip>>; + _meta: z.ZodOptional>; + }, z.core.$strip>, z.ZodObject<{ + type: z.ZodLiteral<"audio">; + data: z.ZodString; + mimeType: z.ZodString; + annotations: z.ZodOptional>>; + priority: z.ZodOptional; + lastModified: z.ZodOptional; + }, z.core.$strip>>; + _meta: z.ZodOptional>; + }, z.core.$strip>, z.ZodObject<{ + uri: z.ZodString; + description: z.ZodOptional; + mimeType: z.ZodOptional; + size: z.ZodOptional; + annotations: z.ZodOptional>>; + priority: z.ZodOptional; + lastModified: z.ZodOptional; + }, z.core.$strip>>; + _meta: z.ZodOptional>; + icons: z.ZodOptional; + sizes: z.ZodOptional>; + theme: z.ZodOptional>; + }, z.core.$strip>>>; + name: z.ZodString; + title: z.ZodOptional; + type: z.ZodLiteral<"resource_link">; + }, z.core.$strip>, z.ZodObject<{ + type: z.ZodLiteral<"resource">; + resource: z.ZodUnion; + _meta: z.ZodOptional>; + text: z.ZodString; + }, z.core.$strip>, z.ZodObject<{ + uri: z.ZodString; + mimeType: z.ZodOptional; + _meta: z.ZodOptional>; + blob: z.ZodString; + }, z.core.$strip>]>; + annotations: z.ZodOptional>>; + priority: z.ZodOptional; + lastModified: z.ZodOptional; + }, z.core.$strip>>; + _meta: z.ZodOptional>; + }, z.core.$strip>]>>>; + structuredContent: z.ZodOptional>; + isError: z.ZodOptional; + _meta: z.ZodOptional>; + }, z.core.$strip>]>>]>; + _meta: z.ZodOptional>; + }, z.core.$strip>>; + modelPreferences: z.ZodOptional; + }, z.core.$strip>>>; + costPriority: z.ZodOptional; + speedPriority: z.ZodOptional; + intelligencePriority: z.ZodOptional; + }, z.core.$strip>>; + systemPrompt: z.ZodOptional; + includeContext: z.ZodOptional>; + temperature: z.ZodOptional; + maxTokens: z.ZodNumber; + stopSequences: z.ZodOptional>; + metadata: z.ZodOptional>; + tools: z.ZodOptional; + inputSchema: z.ZodObject<{ + type: z.ZodLiteral<"object">; + properties: z.ZodOptional>>; + required: z.ZodOptional>; + }, z.core.$catchall>; + outputSchema: z.ZodOptional; + properties: z.ZodOptional>>; + required: z.ZodOptional>; + }, z.core.$catchall>>; + annotations: z.ZodOptional; + readOnlyHint: z.ZodOptional; + destructiveHint: z.ZodOptional; + idempotentHint: z.ZodOptional; + openWorldHint: z.ZodOptional; + }, z.core.$strip>>; + execution: z.ZodOptional>; + }, z.core.$strip>>; + _meta: z.ZodOptional>; + icons: z.ZodOptional; + sizes: z.ZodOptional>; + theme: z.ZodOptional>; + }, z.core.$strip>>>; + name: z.ZodString; + title: z.ZodOptional; + }, z.core.$strip>>>; + toolChoice: z.ZodOptional>; + }, z.core.$strip>>; + }, z.core.$strip>; +}, z.core.$strip>, z.ZodObject<{ + method: z.ZodLiteral<"elicitation/create">; + params: z.ZodUnion>; + /** + * If specified, this request is related to the provided task. + */ + "io.modelcontextprotocol/related-task": z.ZodOptional>; + }, z.core.$loose>>; + task: z.ZodOptional; + }, z.core.$strip>>; + mode: z.ZodOptional>; + message: z.ZodString; + requestedSchema: z.ZodObject<{ + type: z.ZodLiteral<"object">; + properties: z.ZodRecord; + title: z.ZodOptional; + description: z.ZodOptional; + enum: z.ZodArray; + enumNames: z.ZodOptional>; + default: z.ZodOptional; + }, z.core.$strip>, z.ZodUnion; + title: z.ZodOptional; + description: z.ZodOptional; + enum: z.ZodArray; + default: z.ZodOptional; + }, z.core.$strip>, z.ZodObject<{ + type: z.ZodLiteral<"string">; + title: z.ZodOptional; + description: z.ZodOptional; + oneOf: z.ZodArray>; + default: z.ZodOptional; + }, z.core.$strip>]>, z.ZodUnion; + title: z.ZodOptional; + description: z.ZodOptional; + minItems: z.ZodOptional; + maxItems: z.ZodOptional; + items: z.ZodObject<{ + type: z.ZodLiteral<"string">; + enum: z.ZodArray; + }, z.core.$strip>; + default: z.ZodOptional>; + }, z.core.$strip>, z.ZodObject<{ + type: z.ZodLiteral<"array">; + title: z.ZodOptional; + description: z.ZodOptional; + minItems: z.ZodOptional; + maxItems: z.ZodOptional; + items: z.ZodObject<{ + anyOf: z.ZodArray>; + }, z.core.$strip>; + default: z.ZodOptional>; + }, z.core.$strip>]>]>, z.ZodObject<{ + type: z.ZodLiteral<"boolean">; + title: z.ZodOptional; + description: z.ZodOptional; + default: z.ZodOptional; + }, z.core.$strip>, z.ZodObject<{ + type: z.ZodLiteral<"string">; + title: z.ZodOptional; + description: z.ZodOptional; + minLength: z.ZodOptional; + maxLength: z.ZodOptional; + format: z.ZodOptional>; + default: z.ZodOptional; + }, z.core.$strip>, z.ZodObject<{ + type: z.ZodEnum<{ + number: "number"; + integer: "integer"; + }>; + title: z.ZodOptional; + description: z.ZodOptional; + minimum: z.ZodOptional; + maximum: z.ZodOptional; + default: z.ZodOptional; + }, z.core.$strip>]>>; + required: z.ZodOptional>; + }, z.core.$strip>; + }, z.core.$strip>, z.ZodObject<{ + _meta: z.ZodOptional>; + /** + * If specified, this request is related to the provided task. + */ + "io.modelcontextprotocol/related-task": z.ZodOptional>; + }, z.core.$loose>>; + task: z.ZodOptional; + }, z.core.$strip>>; + mode: z.ZodLiteral<"url">; + message: z.ZodString; + elicitationId: z.ZodString; + url: z.ZodString; + }, z.core.$strip>]>; +}, z.core.$strip>, z.ZodObject<{ + method: z.ZodLiteral<"roots/list">; + params: z.ZodOptional>; + /** + * If specified, this request is related to the provided task. + */ + "io.modelcontextprotocol/related-task": z.ZodOptional>; + }, z.core.$loose>>; + }, z.core.$strip>>; +}, z.core.$strip>, z.ZodObject<{ + method: z.ZodLiteral<"tasks/get">; + params: z.ZodObject<{ + _meta: z.ZodOptional>; + /** + * If specified, this request is related to the provided task. + */ + "io.modelcontextprotocol/related-task": z.ZodOptional>; + }, z.core.$loose>>; + taskId: z.ZodString; + }, z.core.$strip>; +}, z.core.$strip>, z.ZodObject<{ + method: z.ZodLiteral<"tasks/result">; + params: z.ZodObject<{ + _meta: z.ZodOptional>; + /** + * If specified, this request is related to the provided task. + */ + "io.modelcontextprotocol/related-task": z.ZodOptional>; + }, z.core.$loose>>; + taskId: z.ZodString; + }, z.core.$strip>; +}, z.core.$strip>, z.ZodObject<{ + params: z.ZodOptional>; + /** + * If specified, this request is related to the provided task. + */ + "io.modelcontextprotocol/related-task": z.ZodOptional>; + }, z.core.$loose>>; + cursor: z.ZodOptional; + }, z.core.$strip>>; + method: z.ZodLiteral<"tasks/list">; +}, z.core.$strip>, z.ZodObject<{ + method: z.ZodLiteral<"tasks/cancel">; + params: z.ZodObject<{ + _meta: z.ZodOptional>; + /** + * If specified, this request is related to the provided task. + */ + "io.modelcontextprotocol/related-task": z.ZodOptional>; + }, z.core.$loose>>; + taskId: z.ZodString; + }, z.core.$strip>; +}, z.core.$strip>]>; +export declare const ServerNotificationSchema: z.ZodUnion; + params: z.ZodObject<{ + _meta: z.ZodOptional>; + /** + * If specified, this request is related to the provided task. + */ + "io.modelcontextprotocol/related-task": z.ZodOptional>; + }, z.core.$loose>>; + requestId: z.ZodOptional>; + reason: z.ZodOptional; + }, z.core.$strip>; +}, z.core.$strip>, z.ZodObject<{ + method: z.ZodLiteral<"notifications/progress">; + params: z.ZodObject<{ + progressToken: z.ZodUnion; + progress: z.ZodNumber; + total: z.ZodOptional; + message: z.ZodOptional; + _meta: z.ZodOptional>; + /** + * If specified, this request is related to the provided task. + */ + "io.modelcontextprotocol/related-task": z.ZodOptional>; + }, z.core.$loose>>; + }, z.core.$strip>; +}, z.core.$strip>, z.ZodObject<{ + method: z.ZodLiteral<"notifications/message">; + params: z.ZodObject<{ + _meta: z.ZodOptional>; + /** + * If specified, this request is related to the provided task. + */ + "io.modelcontextprotocol/related-task": z.ZodOptional>; + }, z.core.$loose>>; + level: z.ZodEnum<{ + error: "error"; + debug: "debug"; + info: "info"; + notice: "notice"; + warning: "warning"; + critical: "critical"; + alert: "alert"; + emergency: "emergency"; + }>; + logger: z.ZodOptional; + data: z.ZodUnknown; + }, z.core.$strip>; +}, z.core.$strip>, z.ZodObject<{ + method: z.ZodLiteral<"notifications/resources/updated">; + params: z.ZodObject<{ + _meta: z.ZodOptional>; + /** + * If specified, this request is related to the provided task. + */ + "io.modelcontextprotocol/related-task": z.ZodOptional>; + }, z.core.$loose>>; + uri: z.ZodString; + }, z.core.$strip>; +}, z.core.$strip>, z.ZodObject<{ + method: z.ZodLiteral<"notifications/resources/list_changed">; + params: z.ZodOptional>; + /** + * If specified, this request is related to the provided task. + */ + "io.modelcontextprotocol/related-task": z.ZodOptional>; + }, z.core.$loose>>; + }, z.core.$strip>>; +}, z.core.$strip>, z.ZodObject<{ + method: z.ZodLiteral<"notifications/tools/list_changed">; + params: z.ZodOptional>; + /** + * If specified, this request is related to the provided task. + */ + "io.modelcontextprotocol/related-task": z.ZodOptional>; + }, z.core.$loose>>; + }, z.core.$strip>>; +}, z.core.$strip>, z.ZodObject<{ + method: z.ZodLiteral<"notifications/prompts/list_changed">; + params: z.ZodOptional>; + /** + * If specified, this request is related to the provided task. + */ + "io.modelcontextprotocol/related-task": z.ZodOptional>; + }, z.core.$loose>>; + }, z.core.$strip>>; +}, z.core.$strip>, z.ZodObject<{ + method: z.ZodLiteral<"notifications/tasks/status">; + params: z.ZodObject<{ + _meta: z.ZodOptional>; + /** + * If specified, this request is related to the provided task. + */ + "io.modelcontextprotocol/related-task": z.ZodOptional>; + }, z.core.$loose>>; + taskId: z.ZodString; + status: z.ZodEnum<{ + working: "working"; + input_required: "input_required"; + completed: "completed"; + failed: "failed"; + cancelled: "cancelled"; + }>; + ttl: z.ZodUnion; + createdAt: z.ZodString; + lastUpdatedAt: z.ZodString; + pollInterval: z.ZodOptional; + statusMessage: z.ZodOptional; + }, z.core.$strip>; +}, z.core.$strip>, z.ZodObject<{ + method: z.ZodLiteral<"notifications/elicitation/complete">; + params: z.ZodObject<{ + _meta: z.ZodOptional>; + /** + * If specified, this request is related to the provided task. + */ + "io.modelcontextprotocol/related-task": z.ZodOptional>; + }, z.core.$loose>>; + elicitationId: z.ZodString; + }, z.core.$strip>; +}, z.core.$strip>]>; +export declare const ServerResultSchema: z.ZodUnion>; + /** + * If specified, this request is related to the provided task. + */ + "io.modelcontextprotocol/related-task": z.ZodOptional>; + }, z.core.$loose>>; +}, z.core.$strict>, z.ZodObject<{ + _meta: z.ZodOptional>; + /** + * If specified, this request is related to the provided task. + */ + "io.modelcontextprotocol/related-task": z.ZodOptional>; + }, z.core.$loose>>; + protocolVersion: z.ZodString; + capabilities: z.ZodObject<{ + experimental: z.ZodOptional>>; + logging: z.ZodOptional>; + completions: z.ZodOptional>; + prompts: z.ZodOptional; + }, z.core.$strip>>; + resources: z.ZodOptional; + listChanged: z.ZodOptional; + }, z.core.$strip>>; + tools: z.ZodOptional; + }, z.core.$strip>>; + tasks: z.ZodOptional>; + /** + * Present if the server supports cancelling tasks. + */ + cancel: z.ZodOptional>; + /** + * Capabilities for task creation on specific request types. + */ + requests: z.ZodOptional>; + }, z.core.$loose>>; + }, z.core.$loose>>; + }, z.core.$loose>>; + extensions: z.ZodOptional>>; + }, z.core.$strip>; + serverInfo: z.ZodObject<{ + version: z.ZodString; + websiteUrl: z.ZodOptional; + description: z.ZodOptional; + icons: z.ZodOptional; + sizes: z.ZodOptional>; + theme: z.ZodOptional>; + }, z.core.$strip>>>; + name: z.ZodString; + title: z.ZodOptional; + }, z.core.$strip>; + instructions: z.ZodOptional; +}, z.core.$loose>, z.ZodObject<{ + _meta: z.ZodOptional>; + /** + * If specified, this request is related to the provided task. + */ + "io.modelcontextprotocol/related-task": z.ZodOptional>; + }, z.core.$loose>>; + completion: z.ZodObject<{ + /** + * An array of completion values. Must not exceed 100 items. + */ + values: z.ZodArray; + /** + * The total number of completion options available. This can exceed the number of values actually sent in the response. + */ + total: z.ZodOptional; + /** + * Indicates whether there are additional completion options beyond those provided in the current response, even if the exact total is unknown. + */ + hasMore: z.ZodOptional; + }, z.core.$loose>; +}, z.core.$loose>, z.ZodObject<{ + _meta: z.ZodOptional>; + /** + * If specified, this request is related to the provided task. + */ + "io.modelcontextprotocol/related-task": z.ZodOptional>; + }, z.core.$loose>>; + description: z.ZodOptional; + messages: z.ZodArray; + content: z.ZodUnion; + text: z.ZodString; + annotations: z.ZodOptional>>; + priority: z.ZodOptional; + lastModified: z.ZodOptional; + }, z.core.$strip>>; + _meta: z.ZodOptional>; + }, z.core.$strip>, z.ZodObject<{ + type: z.ZodLiteral<"image">; + data: z.ZodString; + mimeType: z.ZodString; + annotations: z.ZodOptional>>; + priority: z.ZodOptional; + lastModified: z.ZodOptional; + }, z.core.$strip>>; + _meta: z.ZodOptional>; + }, z.core.$strip>, z.ZodObject<{ + type: z.ZodLiteral<"audio">; + data: z.ZodString; + mimeType: z.ZodString; + annotations: z.ZodOptional>>; + priority: z.ZodOptional; + lastModified: z.ZodOptional; + }, z.core.$strip>>; + _meta: z.ZodOptional>; + }, z.core.$strip>, z.ZodObject<{ + uri: z.ZodString; + description: z.ZodOptional; + mimeType: z.ZodOptional; + size: z.ZodOptional; + annotations: z.ZodOptional>>; + priority: z.ZodOptional; + lastModified: z.ZodOptional; + }, z.core.$strip>>; + _meta: z.ZodOptional>; + icons: z.ZodOptional; + sizes: z.ZodOptional>; + theme: z.ZodOptional>; + }, z.core.$strip>>>; + name: z.ZodString; + title: z.ZodOptional; + type: z.ZodLiteral<"resource_link">; + }, z.core.$strip>, z.ZodObject<{ + type: z.ZodLiteral<"resource">; + resource: z.ZodUnion; + _meta: z.ZodOptional>; + text: z.ZodString; + }, z.core.$strip>, z.ZodObject<{ + uri: z.ZodString; + mimeType: z.ZodOptional; + _meta: z.ZodOptional>; + blob: z.ZodString; + }, z.core.$strip>]>; + annotations: z.ZodOptional>>; + priority: z.ZodOptional; + lastModified: z.ZodOptional; + }, z.core.$strip>>; + _meta: z.ZodOptional>; + }, z.core.$strip>]>; + }, z.core.$strip>>; +}, z.core.$loose>, z.ZodObject<{ + _meta: z.ZodOptional>; + /** + * If specified, this request is related to the provided task. + */ + "io.modelcontextprotocol/related-task": z.ZodOptional>; + }, z.core.$loose>>; + nextCursor: z.ZodOptional; + prompts: z.ZodArray; + arguments: z.ZodOptional; + required: z.ZodOptional; + }, z.core.$strip>>>; + _meta: z.ZodOptional>; + icons: z.ZodOptional; + sizes: z.ZodOptional>; + theme: z.ZodOptional>; + }, z.core.$strip>>>; + name: z.ZodString; + title: z.ZodOptional; + }, z.core.$strip>>; +}, z.core.$loose>, z.ZodObject<{ + _meta: z.ZodOptional>; + /** + * If specified, this request is related to the provided task. + */ + "io.modelcontextprotocol/related-task": z.ZodOptional>; + }, z.core.$loose>>; + nextCursor: z.ZodOptional; + resources: z.ZodArray; + mimeType: z.ZodOptional; + size: z.ZodOptional; + annotations: z.ZodOptional>>; + priority: z.ZodOptional; + lastModified: z.ZodOptional; + }, z.core.$strip>>; + _meta: z.ZodOptional>; + icons: z.ZodOptional; + sizes: z.ZodOptional>; + theme: z.ZodOptional>; + }, z.core.$strip>>>; + name: z.ZodString; + title: z.ZodOptional; + }, z.core.$strip>>; +}, z.core.$loose>, z.ZodObject<{ + _meta: z.ZodOptional>; + /** + * If specified, this request is related to the provided task. + */ + "io.modelcontextprotocol/related-task": z.ZodOptional>; + }, z.core.$loose>>; + nextCursor: z.ZodOptional; + resourceTemplates: z.ZodArray; + mimeType: z.ZodOptional; + annotations: z.ZodOptional>>; + priority: z.ZodOptional; + lastModified: z.ZodOptional; + }, z.core.$strip>>; + _meta: z.ZodOptional>; + icons: z.ZodOptional; + sizes: z.ZodOptional>; + theme: z.ZodOptional>; + }, z.core.$strip>>>; + name: z.ZodString; + title: z.ZodOptional; + }, z.core.$strip>>; +}, z.core.$loose>, z.ZodObject<{ + _meta: z.ZodOptional>; + /** + * If specified, this request is related to the provided task. + */ + "io.modelcontextprotocol/related-task": z.ZodOptional>; + }, z.core.$loose>>; + contents: z.ZodArray; + _meta: z.ZodOptional>; + text: z.ZodString; + }, z.core.$strip>, z.ZodObject<{ + uri: z.ZodString; + mimeType: z.ZodOptional; + _meta: z.ZodOptional>; + blob: z.ZodString; + }, z.core.$strip>]>>; +}, z.core.$loose>, z.ZodObject<{ + _meta: z.ZodOptional>; + /** + * If specified, this request is related to the provided task. + */ + "io.modelcontextprotocol/related-task": z.ZodOptional>; + }, z.core.$loose>>; + content: z.ZodDefault; + text: z.ZodString; + annotations: z.ZodOptional>>; + priority: z.ZodOptional; + lastModified: z.ZodOptional; + }, z.core.$strip>>; + _meta: z.ZodOptional>; + }, z.core.$strip>, z.ZodObject<{ + type: z.ZodLiteral<"image">; + data: z.ZodString; + mimeType: z.ZodString; + annotations: z.ZodOptional>>; + priority: z.ZodOptional; + lastModified: z.ZodOptional; + }, z.core.$strip>>; + _meta: z.ZodOptional>; + }, z.core.$strip>, z.ZodObject<{ + type: z.ZodLiteral<"audio">; + data: z.ZodString; + mimeType: z.ZodString; + annotations: z.ZodOptional>>; + priority: z.ZodOptional; + lastModified: z.ZodOptional; + }, z.core.$strip>>; + _meta: z.ZodOptional>; + }, z.core.$strip>, z.ZodObject<{ + uri: z.ZodString; + description: z.ZodOptional; + mimeType: z.ZodOptional; + size: z.ZodOptional; + annotations: z.ZodOptional>>; + priority: z.ZodOptional; + lastModified: z.ZodOptional; + }, z.core.$strip>>; + _meta: z.ZodOptional>; + icons: z.ZodOptional; + sizes: z.ZodOptional>; + theme: z.ZodOptional>; + }, z.core.$strip>>>; + name: z.ZodString; + title: z.ZodOptional; + type: z.ZodLiteral<"resource_link">; + }, z.core.$strip>, z.ZodObject<{ + type: z.ZodLiteral<"resource">; + resource: z.ZodUnion; + _meta: z.ZodOptional>; + text: z.ZodString; + }, z.core.$strip>, z.ZodObject<{ + uri: z.ZodString; + mimeType: z.ZodOptional; + _meta: z.ZodOptional>; + blob: z.ZodString; + }, z.core.$strip>]>; + annotations: z.ZodOptional>>; + priority: z.ZodOptional; + lastModified: z.ZodOptional; + }, z.core.$strip>>; + _meta: z.ZodOptional>; + }, z.core.$strip>]>>>; + structuredContent: z.ZodOptional>; + isError: z.ZodOptional; +}, z.core.$loose>, z.ZodObject<{ + _meta: z.ZodOptional>; + /** + * If specified, this request is related to the provided task. + */ + "io.modelcontextprotocol/related-task": z.ZodOptional>; + }, z.core.$loose>>; + nextCursor: z.ZodOptional; + tools: z.ZodArray; + inputSchema: z.ZodObject<{ + type: z.ZodLiteral<"object">; + properties: z.ZodOptional>>; + required: z.ZodOptional>; + }, z.core.$catchall>; + outputSchema: z.ZodOptional; + properties: z.ZodOptional>>; + required: z.ZodOptional>; + }, z.core.$catchall>>; + annotations: z.ZodOptional; + readOnlyHint: z.ZodOptional; + destructiveHint: z.ZodOptional; + idempotentHint: z.ZodOptional; + openWorldHint: z.ZodOptional; + }, z.core.$strip>>; + execution: z.ZodOptional>; + }, z.core.$strip>>; + _meta: z.ZodOptional>; + icons: z.ZodOptional; + sizes: z.ZodOptional>; + theme: z.ZodOptional>; + }, z.core.$strip>>>; + name: z.ZodString; + title: z.ZodOptional; + }, z.core.$strip>>; +}, z.core.$loose>, z.ZodObject<{ + _meta: z.ZodOptional>; + /** + * If specified, this request is related to the provided task. + */ + "io.modelcontextprotocol/related-task": z.ZodOptional>; + }, z.core.$loose>>; + taskId: z.ZodString; + status: z.ZodEnum<{ + working: "working"; + input_required: "input_required"; + completed: "completed"; + failed: "failed"; + cancelled: "cancelled"; + }>; + ttl: z.ZodUnion; + createdAt: z.ZodString; + lastUpdatedAt: z.ZodString; + pollInterval: z.ZodOptional; + statusMessage: z.ZodOptional; +}, z.core.$strip>, z.ZodObject<{ + _meta: z.ZodOptional>; + /** + * If specified, this request is related to the provided task. + */ + "io.modelcontextprotocol/related-task": z.ZodOptional>; + }, z.core.$loose>>; + nextCursor: z.ZodOptional; + tasks: z.ZodArray; + ttl: z.ZodUnion; + createdAt: z.ZodString; + lastUpdatedAt: z.ZodString; + pollInterval: z.ZodOptional; + statusMessage: z.ZodOptional; + }, z.core.$strip>>; +}, z.core.$loose>, z.ZodObject<{ + _meta: z.ZodOptional>; + /** + * If specified, this request is related to the provided task. + */ + "io.modelcontextprotocol/related-task": z.ZodOptional>; + }, z.core.$loose>>; + task: z.ZodObject<{ + taskId: z.ZodString; + status: z.ZodEnum<{ + working: "working"; + input_required: "input_required"; + completed: "completed"; + failed: "failed"; + cancelled: "cancelled"; + }>; + ttl: z.ZodUnion; + createdAt: z.ZodString; + lastUpdatedAt: z.ZodString; + pollInterval: z.ZodOptional; + statusMessage: z.ZodOptional; + }, z.core.$strip>; +}, z.core.$loose>]>; +export declare class McpError extends Error { + readonly code: number; + readonly data?: unknown; + constructor(code: number, message: string, data?: unknown); + /** + * Factory method to create the appropriate error type based on the error code and data + */ + static fromError(code: number, message: string, data?: unknown): McpError; +} +/** + * Specialized error type when a tool requires a URL mode elicitation. + * This makes it nicer for the client to handle since there is specific data to work with instead of just a code to check against. + */ +export declare class UrlElicitationRequiredError extends McpError { + constructor(elicitations: ElicitRequestURLParams[], message?: string); + get elicitations(): ElicitRequestURLParams[]; +} +type Primitive = string | number | boolean | bigint | null | undefined; +type Flatten = T extends Primitive ? T : T extends Array ? Array> : T extends Set ? Set> : T extends Map ? Map, Flatten> : T extends object ? { + [K in keyof T]: Flatten; +} : T; +type Infer = Flatten>; +/** + * Headers that are compatible with both Node.js and the browser. + */ +export type IsomorphicHeaders = Record; +/** + * Information about the incoming request. + */ +export interface RequestInfo { + /** + * The headers of the request. + */ + headers: IsomorphicHeaders; + /** + * The full URL of the request. + */ + url?: URL; +} +/** + * Extra information about a message. + */ +export interface MessageExtraInfo { + /** + * The request information. + */ + requestInfo?: RequestInfo; + /** + * The authentication information. + */ + authInfo?: AuthInfo; + /** + * Callback to close the SSE stream for this request, triggering client reconnection. + * Only available when using StreamableHTTPServerTransport with eventStore configured. + */ + closeSSEStream?: () => void; + /** + * Callback to close the standalone GET SSE stream, triggering client reconnection. + * Only available when using StreamableHTTPServerTransport with eventStore configured. + */ + closeStandaloneSSEStream?: () => void; +} +export type ProgressToken = Infer; +export type Cursor = Infer; +export type Request = Infer; +export type TaskAugmentedRequestParams = Infer; +export type RequestMeta = Infer; +export type Notification = Infer; +export type Result = Infer; +export type RequestId = Infer; +export type JSONRPCRequest = Infer; +export type JSONRPCNotification = Infer; +export type JSONRPCResponse = Infer; +export type JSONRPCErrorResponse = Infer; +/** + * @deprecated Use {@link JSONRPCErrorResponse} instead. + * + * Please note that spec types have renamed {@link JSONRPCError} to {@link JSONRPCErrorResponse} as per the updated JSON-RPC specification. (was previously just {@link JSONRPCError}) and future versions will remove {@link JSONRPCError}. + */ +export type JSONRPCError = JSONRPCErrorResponse; +export type JSONRPCResultResponse = Infer; +export type JSONRPCMessage = Infer; +export type RequestParams = Infer; +export type NotificationParams = Infer; +export type EmptyResult = Infer; +export type CancelledNotificationParams = Infer; +export type CancelledNotification = Infer; +export type Icon = Infer; +export type Icons = Infer; +export type BaseMetadata = Infer; +export type Annotations = Infer; +export type Role = Infer; +export type Implementation = Infer; +export type ClientCapabilities = Infer; +export type InitializeRequestParams = Infer; +export type InitializeRequest = Infer; +export type ServerCapabilities = Infer; +export type InitializeResult = Infer; +export type InitializedNotification = Infer; +export type PingRequest = Infer; +export type Progress = Infer; +export type ProgressNotificationParams = Infer; +export type ProgressNotification = Infer; +export type Task = Infer; +export type TaskStatus = Infer; +export type TaskCreationParams = Infer; +export type TaskMetadata = Infer; +export type RelatedTaskMetadata = Infer; +export type CreateTaskResult = Infer; +export type TaskStatusNotificationParams = Infer; +export type TaskStatusNotification = Infer; +export type GetTaskRequest = Infer; +export type GetTaskResult = Infer; +export type GetTaskPayloadRequest = Infer; +export type ListTasksRequest = Infer; +export type ListTasksResult = Infer; +export type CancelTaskRequest = Infer; +export type CancelTaskResult = Infer; +export type GetTaskPayloadResult = Infer; +export type PaginatedRequestParams = Infer; +export type PaginatedRequest = Infer; +export type PaginatedResult = Infer; +export type ResourceContents = Infer; +export type TextResourceContents = Infer; +export type BlobResourceContents = Infer; +export type Resource = Infer; +export type ResourceTemplate = Infer; +export type ListResourcesRequest = Infer; +export type ListResourcesResult = Infer; +export type ListResourceTemplatesRequest = Infer; +export type ListResourceTemplatesResult = Infer; +export type ResourceRequestParams = Infer; +export type ReadResourceRequestParams = Infer; +export type ReadResourceRequest = Infer; +export type ReadResourceResult = Infer; +export type ResourceListChangedNotification = Infer; +export type SubscribeRequestParams = Infer; +export type SubscribeRequest = Infer; +export type UnsubscribeRequestParams = Infer; +export type UnsubscribeRequest = Infer; +export type ResourceUpdatedNotificationParams = Infer; +export type ResourceUpdatedNotification = Infer; +export type PromptArgument = Infer; +export type Prompt = Infer; +export type ListPromptsRequest = Infer; +export type ListPromptsResult = Infer; +export type GetPromptRequestParams = Infer; +export type GetPromptRequest = Infer; +export type TextContent = Infer; +export type ImageContent = Infer; +export type AudioContent = Infer; +export type ToolUseContent = Infer; +export type ToolResultContent = Infer; +export type EmbeddedResource = Infer; +export type ResourceLink = Infer; +export type ContentBlock = Infer; +export type PromptMessage = Infer; +export type GetPromptResult = Infer; +export type PromptListChangedNotification = Infer; +export type ToolAnnotations = Infer; +export type ToolExecution = Infer; +export type Tool = Infer; +export type ListToolsRequest = Infer; +export type ListToolsResult = Infer; +export type CallToolRequestParams = Infer; +export type CallToolResult = Infer; +export type CompatibilityCallToolResult = Infer; +export type CallToolRequest = Infer; +export type ToolListChangedNotification = Infer; +export type LoggingLevel = Infer; +export type SetLevelRequestParams = Infer; +export type SetLevelRequest = Infer; +export type LoggingMessageNotificationParams = Infer; +export type LoggingMessageNotification = Infer; +export type ToolChoice = Infer; +export type ModelHint = Infer; +export type ModelPreferences = Infer; +export type SamplingContent = Infer; +export type SamplingMessageContentBlock = Infer; +export type SamplingMessage = Infer; +export type CreateMessageRequestParams = Infer; +export type CreateMessageRequest = Infer; +export type CreateMessageResult = Infer; +export type CreateMessageResultWithTools = Infer; +/** + * CreateMessageRequestParams without tools - for backwards-compatible overload. + * Excludes tools/toolChoice to indicate they should not be provided. + */ +export type CreateMessageRequestParamsBase = Omit; +/** + * CreateMessageRequestParams with required tools - for tool-enabled overload. + */ +export interface CreateMessageRequestParamsWithTools extends CreateMessageRequestParams { + tools: Tool[]; +} +export type BooleanSchema = Infer; +export type StringSchema = Infer; +export type NumberSchema = Infer; +export type EnumSchema = Infer; +export type UntitledSingleSelectEnumSchema = Infer; +export type TitledSingleSelectEnumSchema = Infer; +export type LegacyTitledEnumSchema = Infer; +export type UntitledMultiSelectEnumSchema = Infer; +export type TitledMultiSelectEnumSchema = Infer; +export type SingleSelectEnumSchema = Infer; +export type MultiSelectEnumSchema = Infer; +export type PrimitiveSchemaDefinition = Infer; +export type ElicitRequestParams = Infer; +export type ElicitRequestFormParams = Infer; +export type ElicitRequestURLParams = Infer; +export type ElicitRequest = Infer; +export type ElicitationCompleteNotificationParams = Infer; +export type ElicitationCompleteNotification = Infer; +export type ElicitResult = Infer; +export type ResourceTemplateReference = Infer; +/** + * @deprecated Use ResourceTemplateReference instead + */ +export type ResourceReference = ResourceTemplateReference; +export type PromptReference = Infer; +export type CompleteRequestParams = Infer; +export type CompleteRequest = Infer; +export type CompleteRequestResourceTemplate = ExpandRecursively; +export type CompleteRequestPrompt = ExpandRecursively; +export type CompleteResult = Infer; +export type Root = Infer; +export type ListRootsRequest = Infer; +export type ListRootsResult = Infer; +export type RootsListChangedNotification = Infer; +export type ClientRequest = Infer; +export type ClientNotification = Infer; +export type ClientResult = Infer; +export type ServerRequest = Infer; +export type ServerNotification = Infer; +export type ServerResult = Infer; +export {}; +//# sourceMappingURL=types.d.ts.map \ No newline at end of file diff --git a/loan-advisor-chatgpt-app/node_modules/@modelcontextprotocol/sdk/dist/esm/types.d.ts.map b/loan-advisor-chatgpt-app/node_modules/@modelcontextprotocol/sdk/dist/esm/types.d.ts.map new file mode 100644 index 0000000000000000000000000000000000000000..116e46004f6c945e35e734e00350fc82602c0d7d --- /dev/null +++ b/loan-advisor-chatgpt-app/node_modules/@modelcontextprotocol/sdk/dist/esm/types.d.ts.map @@ -0,0 +1 @@ +{"version":3,"file":"types.d.ts","sourceRoot":"","sources":["../../src/types.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,CAAC,MAAM,QAAQ,CAAC;AAC5B,OAAO,EAAE,QAAQ,EAAE,MAAM,wBAAwB,CAAC;AAElD,eAAO,MAAM,uBAAuB,eAAe,CAAC;AACpD,eAAO,MAAM,mCAAmC,eAAe,CAAC;AAChE,eAAO,MAAM,2BAA2B,UAAoF,CAAC;AAE7H,eAAO,MAAM,qBAAqB,yCAAyC,CAAC;AAG5E,eAAO,MAAM,eAAe,QAAQ,CAAC;AAErC;;GAEG;AACH,KAAK,iBAAiB,CAAC,CAAC,IAAI,CAAC,SAAS,MAAM,GAAG,CAAC,CAAC,SAAS,MAAM,CAAC,GAAG;KAAG,CAAC,IAAI,MAAM,CAAC,GAAG,iBAAiB,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC;CAAE,GAAG,KAAK,CAAC,GAAG,CAAC,CAAC;AAO7H;;GAEG;AACH,eAAO,MAAM,mBAAmB,iDAA0C,CAAC;AAE3E;;GAEG;AACH,eAAO,MAAM,YAAY,aAAa,CAAC;AAEvC;;GAEG;AACH,eAAO,MAAM,wBAAwB;IACjC;;OAEG;;IAGH;;OAEG;;iBAEL,CAAC;AAEH,eAAO,MAAM,kBAAkB;;iBAE7B,CAAC;AAEH;;;GAGG;AACH,eAAO,MAAM,yBAAyB;;iBAEpC,CAAC;AAEH,QAAA,MAAM,iBAAiB;IACnB;;OAEG;;IAEH;;OAEG;;;;iBAEL,CAAC;AAEH;;GAEG;AACH,QAAA,MAAM,uBAAuB;;QAbzB;;WAEG;;QAEH;;WAEG;;;;;iBAYL,CAAC;AAEH;;GAEG;AACH,eAAO,MAAM,gCAAgC;;QAvBzC;;WAEG;;QAEH;;WAEG;;;;;;;;iBA2BL,CAAC;AAEH;;;;;GAKG;AACH,eAAO,MAAM,4BAA4B,UAAW,OAAO,KAAG,KAAK,IAAI,0BACV,CAAC;AAE9D,eAAO,MAAM,aAAa;;;;YA5CtB;;eAEG;;YAEH;;eAEG;;;;;;iBAyCL,CAAC;AAEH,QAAA,MAAM,yBAAyB;;QAjD3B;;WAEG;;QAEH;;WAEG;;;;;iBAiDL,CAAC;AAEH,eAAO,MAAM,kBAAkB;;;;YAzD3B;;eAEG;;YAEH;;eAEG;;;;;;iBAsDL,CAAC;AAEH,eAAO,MAAM,YAAY;IACrB;;;OAGG;;QAlEH;;WAEG;;QAEH;;WAEG;;;;;iBA8DL,CAAC;AAEH;;GAEG;AACH,eAAO,MAAM,eAAe,iDAA0C,CAAC;AAEvE;;GAEG;AACH,eAAO,MAAM,oBAAoB;;;;YA9E7B;;eAEG;;YAEH;;eAEG;;;;;;;;kBA8EM,CAAC;AAEd,eAAO,MAAM,gBAAgB,UAAW,OAAO,KAAG,KAAK,IAAI,cAA+D,CAAC;AAE3H;;GAEG;AACH,eAAO,MAAM,yBAAyB;;;;YA3FlC;;eAEG;;YAEH;;eAEG;;;;;;;kBA0FM,CAAC;AAEd,eAAO,MAAM,qBAAqB,UAAW,OAAO,KAAG,KAAK,IAAI,mBAAyE,CAAC;AAE1I;;GAEG;AACH,eAAO,MAAM,2BAA2B;;;;QAxCpC;;;WAGG;;YAlEH;;eAEG;;YAEH;;eAEG;;;;;;kBAuGM,CAAC;AAEd;;;;;GAKG;AACH,eAAO,MAAM,uBAAuB,UAAW,OAAO,KAAG,KAAK,IAAI,qBACV,CAAC;AAEzD;;;;GAIG;AACH,eAAO,MAAM,iBAAiB,UARiB,OAAO,KAAG,KAAK,IAAI,qBAQV,CAAC;AAEzD;;GAEG;AACH,oBAAY,SAAS;IAEjB,gBAAgB,SAAS;IACzB,cAAc,SAAS;IAGvB,UAAU,SAAS;IACnB,cAAc,SAAS;IACvB,cAAc,SAAS;IACvB,aAAa,SAAS;IACtB,aAAa,SAAS;IAGtB,sBAAsB,SAAS;CAClC;AAED;;GAEG;AACH,eAAO,MAAM,0BAA0B;;;;;;;;kBAmB1B,CAAC;AAEd;;GAEG;AACH,eAAO,MAAM,kBAAkB;;;;;;;;kBAA6B,CAAC;AAE7D;;;;;GAKG;AACH,eAAO,MAAM,sBAAsB,UAAW,OAAO,KAAG,KAAK,IAAI,oBACV,CAAC;AAExD;;GAEG;AACH,eAAO,MAAM,cAAc,UANmB,OAAO,KAAG,KAAK,IAAI,oBAMb,CAAC;AAErD,eAAO,MAAM,oBAAoB;;;;YA7L7B;;eAEG;;YAEH;;eAEG;;;;;;;;;;;;YANH;;eAEG;;YAEH;;eAEG;;;;;;;;;;;QAyDH;;;WAGG;;YAlEH;;eAEG;;YAEH;;eAEG;;;;;;;;;;;;;;oBA4LL,CAAC;AAEH,eAAO,MAAM,qBAAqB;;;;QArI9B;;;WAGG;;YAlEH;;eAEG;;YAEH;;eAEG;;;;;;;;;;;;;;oBA8LgG,CAAC;AAGxG;;GAEG;AACH,eAAO,MAAM,iBAAiB;IA3I1B;;;OAGG;;QAlEH;;WAEG;;QAEH;;WAEG;;;;;kBAoM+C,CAAC;AAEvD,eAAO,MAAM,iCAAiC;;QA5M1C;;WAEG;;QAEH;;WAEG;;;;;;;iBAiNL,CAAC;AAEH;;;;;;;;GAQG;AACH,eAAO,MAAM,2BAA2B;;;;YAlOpC;;eAEG;;YAEH;;eAEG;;;;;;;;iBA+NL,CAAC;AAGH;;GAEG;AACH,eAAO,MAAM,UAAU;;;;;;;;iBAwBrB,CAAC;AAEH;;;GAGG;AACH,eAAO,MAAM,WAAW;;;;;;;;;;iBAatB,CAAC;AAEH;;GAEG;AACH,eAAO,MAAM,kBAAkB;;;iBAY7B,CAAC;AAGH;;GAEG;AACH,eAAO,MAAM,oBAAoB;;;;;;;;;;;;;;;iBAiB/B,CAAC;AA2BH;;GAEG;AACH,eAAO,MAAM,2BAA2B;IACpC;;OAEG;;IAEH;;OAEG;;IAEH;;OAEG;;QAGK;;WAEG;;;;QAMH;;WAEG;;;;;iBAQb,CAAC;AAEH;;GAEG;AACH,eAAO,MAAM,2BAA2B;IACpC;;OAEG;;IAEH;;OAEG;;IAEH;;OAEG;;QAGK;;WAEG;;;;;iBAQb,CAAC;AAEH;;GAEG;AACH,eAAO,MAAM,wBAAwB;;;;;;;;;;;;;;;;QAjEjC;;WAEG;;QAEH;;WAEG;;QAEH;;WAEG;;YAGK;;eAEG;;;;YAMH;;eAEG;;;;;;;iBAsFb,CAAC;AAEH,eAAO,MAAM,6BAA6B;;QA5ctC;;WAEG;;QAEH;;WAEG;;;;;;;;;;;;;;;;;;;;;;YAuVH;;eAEG;;YAEH;;eAEG;;YAEH;;eAEG;;gBAGK;;mBAEG;;;;gBAMH;;mBAEG;;;;;;;;;;;;;;;;;;;;;;;;iBA+Fb,CAAC;AACH;;GAEG;AACH,eAAO,MAAM,uBAAuB;;;;YAvdhC;;eAEG;;YAEH;;eAEG;;;;;;;;;;;;;;;;;;;;;;gBAuVH;;mBAEG;;gBAEH;;mBAEG;;gBAEH;;mBAEG;;oBAGK;;uBAEG;;;;oBAMH;;uBAEG;;;;;;;;;;;;;;;;;;;;;;;;;iBAsGb,CAAC;AAEH,eAAO,MAAM,mBAAmB,UAAW,OAAO,KAAG,KAAK,IAAI,iBAAqE,CAAC;AAEpI;;GAEG;AACH,eAAO,MAAM,wBAAwB;;;;;;;;;;;;;;;QA/FjC;;WAEG;;QAEH;;WAEG;;QAEH;;WAEG;;YAGK;;eAEG;;;;;;;iBA2Ib,CAAC;AAEH;;GAEG;AACH,eAAO,MAAM,sBAAsB;;QAjiB/B;;WAEG;;QAEH;;WAEG;;;;;;;;;;;;;;;;;;;;;YA4XH;;eAEG;;YAEH;;eAEG;;YAEH;;eAEG;;gBAGK;;mBAEG;;;;;;;;;;;;;;;;;;;;;;;;;iBA6Jb,CAAC;AAEH;;GAEG;AACH,eAAO,MAAM,6BAA6B;;;;YAnjBtC;;eAEG;;YAEH;;eAEG;;;;;;iBAgjBL,CAAC;AAEH,eAAO,MAAM,yBAAyB,UAAW,OAAO,KAAG,KAAK,IAAI,uBACV,CAAC;AAG3D;;GAEG;AACH,eAAO,MAAM,iBAAiB;;;;YA/jB1B;;eAEG;;YAEH;;eAEG;;;;;;iBA4jBL,CAAC;AAGH,eAAO,MAAM,cAAc;;;;iBAazB,CAAC;AAEH,eAAO,MAAM,gCAAgC;;;;;;QAplBzC;;WAEG;;QAEH;;WAEG;;;;;iBAqlBL,CAAC;AACH;;;;GAIG;AACH,eAAO,MAAM,0BAA0B;;;;;;;;YAjmBnC;;eAEG;;YAEH;;eAEG;;;;;;iBA8lBL,CAAC;AAEH,eAAO,MAAM,4BAA4B;;QAtmBrC;;WAEG;;QAEH;;WAEG;;;;;;iBAsmBL,CAAC;AAGH,eAAO,MAAM,sBAAsB;;;;YA/mB/B;;eAEG;;YAEH;;eAEG;;;;;;;iBA2mBL,CAAC;AAEH,eAAO,MAAM,qBAAqB;;QAnnB9B;;WAEG;;QAEH;;WAEG;;;;;;iBAmnBL,CAAC;AAEH;;KAEK;AACL,eAAO,MAAM,gBAAgB;;;;;;EAA4E,CAAC;AAG1G;;GAEG;AACH,eAAO,MAAM,UAAU;;;;;;;;;;;;;;iBAqBrB,CAAC;AAEH;;GAEG;AACH,eAAO,MAAM,sBAAsB;;QA9pB/B;;WAEG;;QAEH;;WAEG;;;;;;;;;;;;;;;;;;;;iBA0pBL,CAAC;AAEH;;GAEG;AACH,eAAO,MAAM,kCAAkC;;QArqB3C;;WAEG;;QAEH;;WAEG;;;;;;;;;;;;;;;;;;iBA+pBsF,CAAC;AAE9F;;GAEG;AACH,eAAO,MAAM,4BAA4B;;;;YA1qBrC;;eAEG;;YAEH;;eAEG;;;;;;;;;;;;;;;;;;;iBAuqBL,CAAC;AAEH;;GAEG;AACH,eAAO,MAAM,oBAAoB;;;;YAlrB7B;;eAEG;;YAEH;;eAEG;;;;;;;iBAirBL,CAAC;AAEH;;GAEG;AACH,eAAO,MAAM,mBAAmB;;QA5rB5B;;WAEG;;QAEH;;WAEG;;;;;;;;;;;;;;;;;;iBAsrB0D,CAAC;AAElE;;GAEG;AACH,eAAO,MAAM,2BAA2B;;;;YAjsBpC;;eAEG;;YAEH;;eAEG;;;;;;;iBAgsBL,CAAC;AAEH;;;;;GAKG;AACH,eAAO,MAAM,0BAA0B;IA/oBnC;;;OAGG;;QAlEH;;WAEG;;QAEH;;WAEG;;;;;iBAwsBuD,CAAC;AAE/D;;GAEG;AACH,eAAO,MAAM,sBAAsB;;;YAntB/B;;eAEG;;YAEH;;eAEG;;;;;;;;iBA+sBL,CAAC;AAEH;;GAEG;AACH,eAAO,MAAM,qBAAqB;;QA1tB9B;;WAEG;;QAEH;;WAEG;;;;;;;;;;;;;;;;;;;;;iBAstBL,CAAC;AAEH;;GAEG;AACH,eAAO,MAAM,uBAAuB;;;;YAjuBhC;;eAEG;;YAEH;;eAEG;;;;;;;iBAguBL,CAAC;AAEH;;GAEG;AACH,eAAO,MAAM,sBAAsB;;QA3uB/B;;WAEG;;QAEH;;WAEG;;;;;;;;;;;;;;;;;;iBAquB6D,CAAC;AAGrE;;GAEG;AACH,eAAO,MAAM,sBAAsB;;;;iBAcjC,CAAC;AAEH,eAAO,MAAM,0BAA0B;;;;;iBAKrC,CAAC;AAqBH,eAAO,MAAM,0BAA0B;;;;;iBAKrC,CAAC;AAEH;;GAEG;AACH,eAAO,MAAM,UAAU;;;EAAgC,CAAC;AAExD;;GAEG;AACH,eAAO,MAAM,iBAAiB;;;;;;;iBAe5B,CAAC;AAEH;;GAEG;AACH,eAAO,MAAM,cAAc;;;;;;;;;;;;;;;;;;;;;;;;;iBAqCzB,CAAC;AAEH;;GAEG;AACH,eAAO,MAAM,sBAAsB;;;;;;;;;;;;;;;;;;;;;;;;iBA8BjC,CAAC;AAEH;;GAEG;AACH,eAAO,MAAM,0BAA0B;;;YA34BnC;;eAEG;;YAEH;;eAEG;;;;;;;;iBAu4BL,CAAC;AAEH;;GAEG;AACH,eAAO,MAAM,yBAAyB;;QAl5BlC;;WAEG;;QAEH;;WAEG;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;iBA84BL,CAAC;AAEH;;GAEG;AACH,eAAO,MAAM,kCAAkC;;;YAz5B3C;;eAEG;;YAEH;;eAEG;;;;;;;;iBAq5BL,CAAC;AAEH;;GAEG;AACH,eAAO,MAAM,iCAAiC;;QAh6B1C;;WAEG;;QAEH;;WAEG;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;iBA45BL,CAAC;AAEH,eAAO,MAAM,2BAA2B;;QAp6BpC;;WAEG;;QAEH;;WAEG;;;;;;iBAq6BL,CAAC;AAEH;;GAEG;AACH,eAAO,MAAM,+BAA+B;;QAh7BxC;;WAEG;;QAEH;;WAEG;;;;;;iBA06BmE,CAAC;AAE3E;;GAEG;AACH,eAAO,MAAM,yBAAyB;;;;YAr7BlC;;eAEG;;YAEH;;eAEG;;;;;;;iBAk7BL,CAAC;AAEH;;GAEG;AACH,eAAO,MAAM,wBAAwB;;QA77BjC;;WAEG;;QAEH;;WAEG;;;;;;;;;;;;;;;;iBAy7BL,CAAC;AAEH;;GAEG;AACH,eAAO,MAAM,qCAAqC;;;;YAp8B9C;;eAEG;;YAEH;;eAEG;;;;;;iBAi8BL,CAAC;AAEH,eAAO,MAAM,4BAA4B;;QAz8BrC;;WAEG;;QAEH;;WAEG;;;;;;iBAm8BgE,CAAC;AACxE;;GAEG;AACH,eAAO,MAAM,sBAAsB;;;;YA78B/B;;eAEG;;YAEH;;eAEG;;;;;;;iBA08BL,CAAC;AAEH,eAAO,MAAM,8BAA8B;;QAl9BvC;;WAEG;;QAEH;;WAEG;;;;;;iBA48BkE,CAAC;AAC1E;;GAEG;AACH,eAAO,MAAM,wBAAwB;;;;YAt9BjC;;eAEG;;YAEH;;eAEG;;;;;;;iBAm9BL,CAAC;AAEH;;GAEG;AACH,eAAO,MAAM,uCAAuC;;QA99BhD;;WAEG;;QAEH;;WAEG;;;;;;iBA69BL,CAAC;AAEH;;GAEG;AACH,eAAO,MAAM,iCAAiC;;;;YAx+B1C;;eAEG;;YAEH;;eAEG;;;;;;;iBAq+BL,CAAC;AAGH;;GAEG;AACH,eAAO,MAAM,oBAAoB;;;;iBAa/B,CAAC;AAEH;;GAEG;AACH,eAAO,MAAM,YAAY;;;;;;;;;;;;;;;;;;;iBAgBvB,CAAC;AAEH;;GAEG;AACH,eAAO,MAAM,wBAAwB;;;YAxhCjC;;eAEG;;YAEH;;eAEG;;;;;;;;iBAohCL,CAAC;AAEH;;GAEG;AACH,eAAO,MAAM,uBAAuB;;QA/hChC;;WAEG;;QAEH;;WAEG;;;;;;;;;;;;;;;;;;;;;;;;;;iBA2hCL,CAAC;AAEH;;GAEG;AACH,eAAO,MAAM,4BAA4B;;QAtiCrC;;WAEG;;QAEH;;WAEG;;;;;;;iBAyiCL,CAAC;AACH;;GAEG;AACH,eAAO,MAAM,sBAAsB;;;;YAnjC/B;;eAEG;;YAEH;;eAEG;;;;;;;;iBAgjCL,CAAC;AAEH;;GAEG;AACH,eAAO,MAAM,iBAAiB;;;;;;;;;;;;iBAiB5B,CAAC;AAEH;;GAEG;AACH,eAAO,MAAM,kBAAkB;;;;;;;;;;;;;iBAqB7B,CAAC;AAEH;;GAEG;AACH,eAAO,MAAM,kBAAkB;;;;;;;;;;;;;iBAqB7B,CAAC;AAEH;;;GAGG;AACH,eAAO,MAAM,oBAAoB;;;;;;iBAsB/B,CAAC;AAEH;;GAEG;AACH,eAAO,MAAM,sBAAsB;;;;;;;;;;;;;;;;;;;;;;iBAYjC,CAAC;AAEH;;;;GAIG;AACH,eAAO,MAAM,kBAAkB;;;;;;;;;;;;;;;;;;;;;;;;;;iBAE7B,CAAC;AAEH;;GAEG;AACH,eAAO,MAAM,kBAAkB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;mBAM7B,CAAC;AAEH;;GAEG;AACH,eAAO,MAAM,mBAAmB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;iBAG9B,CAAC;AAEH;;GAEG;AACH,eAAO,MAAM,qBAAqB;;QA9sC9B;;WAEG;;QAEH;;WAEG;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;iBA8sCL,CAAC;AAEH;;GAEG;AACH,eAAO,MAAM,mCAAmC;;;;YAztC5C;;eAEG;;YAEH;;eAEG;;;;;;iBAstCL,CAAC;AAGH;;;;;;;;;GASG;AACH,eAAO,MAAM,qBAAqB;;;;;;iBA0ChC,CAAC;AAEH;;GAEG;AACH,eAAO,MAAM,mBAAmB;;;;;;iBAU9B,CAAC;AAEH;;GAEG;AACH,eAAO,MAAM,UAAU;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;iBA6CrB,CAAC;AAEH;;GAEG;AACH,eAAO,MAAM,sBAAsB;;;YAz1C/B;;eAEG;;YAEH;;eAEG;;;;;;;;iBAq1CL,CAAC;AAEH;;GAEG;AACH,eAAO,MAAM,qBAAqB;;QAh2C9B;;WAEG;;QAEH;;WAEG;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;iBA41CL,CAAC;AAEH;;GAEG;AACH,eAAO,MAAM,oBAAoB;;QAv2C7B;;WAEG;;QAEH;;WAEG;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;iBAg4CL,CAAC;AAEH;;GAEG;AACH,eAAO,MAAM,iCAAiC;;QA34C1C;;WAEG;;QAEH;;WAEG;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;QANH;;WAEG;;QAEH;;WAEG;;;;;;mBAy4CN,CAAC;AAEF;;GAEG;AACH,eAAO,MAAM,2BAA2B;;QAp5CpC;;WAEG;;QAEH;;WAEG;;;;;;;;;;iBAu5CL,CAAC;AAEH;;GAEG;AACH,eAAO,MAAM,qBAAqB;;;;YAl6C9B;;eAEG;;YAEH;;eAEG;;;;;;;;;;;iBA+5CL,CAAC;AAEH;;GAEG;AACH,eAAO,MAAM,iCAAiC;;;;YA16C1C;;eAEG;;YAEH;;eAEG;;;;;;iBAu6CL,CAAC;AAEH;;GAEG;AACH,MAAM,MAAM,mBAAmB,CAAC,CAAC,IAAI,CAAC,KAAK,EAAE,KAAK,GAAG,IAAI,EAAE,KAAK,EAAE,CAAC,EAAE,GAAG,IAAI,KAAK,IAAI,CAAC;AAEtF;;;GAGG;AACH,eAAO,MAAM,4BAA4B;;;iBAmBvC,CAAC;AAEH;;;;GAIG;AACH,MAAM,MAAM,kBAAkB,CAAC,CAAC,IAAI;IAChC;;;OAGG;IACH,WAAW,CAAC,EAAE,OAAO,CAAC;IACtB;;;OAGG;IACH,UAAU,CAAC,EAAE,MAAM,CAAC;IACpB;;;;;OAKG;IACH,SAAS,EAAE,mBAAmB,CAAC,CAAC,CAAC,CAAC;CACrC,CAAC;AAEF;;;;;;;;;GASG;AACH,MAAM,MAAM,mBAAmB,GAAG;IAC9B;;OAEG;IACH,KAAK,CAAC,EAAE,kBAAkB,CAAC,IAAI,CAAC,CAAC;IACjC;;OAEG;IACH,OAAO,CAAC,EAAE,kBAAkB,CAAC,MAAM,CAAC,CAAC;IACrC;;OAEG;IACH,SAAS,CAAC,EAAE,kBAAkB,CAAC,QAAQ,CAAC,CAAC;CAC5C,CAAC;AAGF;;GAEG;AACH,eAAO,MAAM,kBAAkB;;;;;;;;;EAA4F,CAAC;AAE5H;;GAEG;AACH,eAAO,MAAM,2BAA2B;;QAxgDpC;;WAEG;;QAEH;;WAEG;;;;;;;;;;;;;;;iBAugDL,CAAC;AACH;;GAEG;AACH,eAAO,MAAM,qBAAqB;;;;YAjhD9B;;eAEG;;YAEH;;eAEG;;;;;;;;;;;;;;;;iBA8gDL,CAAC;AAEH;;GAEG;AACH,eAAO,MAAM,sCAAsC;;QAzhD/C;;WAEG;;QAEH;;WAEG;;;;;;;;;;;;;;;;;iBAgiDL,CAAC;AACH;;GAEG;AACH,eAAO,MAAM,gCAAgC;;;;YA1iDzC;;eAEG;;YAEH;;eAEG;;;;;;;;;;;;;;;;;;iBAuiDL,CAAC;AAGH;;GAEG;AACH,eAAO,MAAM,eAAe;;iBAK1B,CAAC;AAEH;;GAEG;AACH,eAAO,MAAM,sBAAsB;;;;;;;iBAiBjC,CAAC;AAEH;;GAEG;AACH,eAAO,MAAM,gBAAgB;;;;;;iBAQ3B,CAAC;AAEH;;;GAGG;AACH,eAAO,MAAM,uBAAuB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;iBAYlC,CAAC;AAEH;;;GAGG;AACH,eAAO,MAAM,qBAAqB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;mBAA4F,CAAC;AAE/H;;;GAGG;AACH,eAAO,MAAM,iCAAiC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;mBAM5C,CAAC;AAEH;;GAEG;AACH,eAAO,MAAM,qBAAqB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;iBAQhC,CAAC;AAEH;;GAEG;AACH,eAAO,MAAM,gCAAgC;;QAjpDzC;;WAEG;;QAEH;;WAEG;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;iBAorDL,CAAC;AACH;;GAEG;AACH,eAAO,MAAM,0BAA0B;;;;YA9rDnC;;eAEG;;YAEH;;eAEG;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;iBA2rDL,CAAC;AAEH;;;;GAIG;AACH,eAAO,MAAM,yBAAyB;;QAxsDlC;;WAEG;;QAEH;;WAEG;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;iBAutDL,CAAC;AAEH;;;GAGG;AACH,eAAO,MAAM,kCAAkC;;QAnuD3C;;WAEG;;QAEH;;WAEG;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;iBAmvDL,CAAC;AAGH;;GAEG;AACH,eAAO,MAAM,mBAAmB;;;;;iBAK9B,CAAC;AAEH;;GAEG;AACH,eAAO,MAAM,kBAAkB;;;;;;;;;;;;;iBAQ7B,CAAC;AAEH;;GAEG;AACH,eAAO,MAAM,kBAAkB;;;;;;;;;;iBAO7B,CAAC;AAEH;;GAEG;AACH,eAAO,MAAM,oCAAoC;;;;;;iBAM/C,CAAC;AAEH;;GAEG;AACH,eAAO,MAAM,kCAAkC;;;;;;;;;iBAW7C,CAAC;AAEH;;;GAGG;AACH,eAAO,MAAM,4BAA4B;;;;;;;iBAOvC,CAAC;AAGH,eAAO,MAAM,4BAA4B;;;;;;;;;;;;;;;mBAAsF,CAAC;AAEhI;;GAEG;AACH,eAAO,MAAM,mCAAmC;;;;;;;;;;;iBAW9C,CAAC;AAEH;;GAEG;AACH,eAAO,MAAM,iCAAiC;;;;;;;;;;;;;iBAe5C,CAAC;AAEH;;GAEG;AACH,eAAO,MAAM,2BAA2B;;;;;;;;;;;;;;;;;;;;;;;;mBAAoF,CAAC;AAE7H;;GAEG;AACH,eAAO,MAAM,gBAAgB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;qBAAqG,CAAC;AAEnI;;GAEG;AACH,eAAO,MAAM,+BAA+B;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;mBAA2F,CAAC;AAExI;;GAEG;AACH,eAAO,MAAM,6BAA6B;;QAh4DtC;;WAEG;;QAEH;;WAEG;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;iBA84DL,CAAC;AAEH;;GAEG;AACH,eAAO,MAAM,4BAA4B;;QAz5DrC;;WAEG;;QAEH;;WAEG;;;;;;;;;;;;iBAq6DL,CAAC;AAEH;;GAEG;AACH,eAAO,MAAM,yBAAyB;;QAh7DlC;;WAEG;;QAEH;;WAEG;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;QANH;;WAEG;;QAEH;;WAEG;;;;;;;;;;;;mBA06DwG,CAAC;AAEhH;;;;GAIG;AACH,eAAO,MAAM,mBAAmB;;;;YAv7D5B;;eAEG;;YAEH;;eAEG;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;YANH;;eAEG;;YAEH;;eAEG;;;;;;;;;;;;;iBAo7DL,CAAC;AAEH;;;;GAIG;AACH,eAAO,MAAM,2CAA2C;;QAj8DpD;;WAEG;;QAEH;;WAEG;;;;;;iBAg8DL,CAAC;AAEH;;;;GAIG;AACH,eAAO,MAAM,qCAAqC;;;;YA78D9C;;eAEG;;YAEH;;eAEG;;;;;;;iBA08DL,CAAC;AAEH;;GAEG;AACH,eAAO,MAAM,kBAAkB;;QAr9D3B;;WAEG;;QAEH;;WAEG;;;;;;;;;;;iBAi+DL,CAAC;AAGH;;GAEG;AACH,eAAO,MAAM,+BAA+B;;;iBAM1C,CAAC;AAEH;;GAEG;AACH,eAAO,MAAM,uBAAuB;;;iBAAkC,CAAC;AAEvE;;GAEG;AACH,eAAO,MAAM,qBAAqB;;;iBAMhC,CAAC;AAEH;;GAEG;AACH,eAAO,MAAM,2BAA2B;;QAxgEpC;;WAEG;;QAEH;;WAEG;;;;;;;;;;;;;;;;;;;iBAyhEL,CAAC;AACH;;GAEG;AACH,eAAO,MAAM,qBAAqB;;;;YAniE9B;;eAEG;;YAEH;;eAEG;;;;;;;;;;;;;;;;;;;;iBAgiEL,CAAC;AAEH,wBAAgB,2BAA2B,CAAC,OAAO,EAAE,eAAe,GAAG,OAAO,CAAC,OAAO,IAAI,qBAAqB,CAK9G;AAED,wBAAgB,qCAAqC,CAAC,OAAO,EAAE,eAAe,GAAG,OAAO,CAAC,OAAO,IAAI,+BAA+B,CAKlI;AAED;;GAEG;AACH,eAAO,MAAM,oBAAoB;;QAzjE7B;;WAEG;;QAEH;;WAEG;;;;;;QAqjEC;;WAEG;;QAEH;;WAEG;;QAEH;;WAEG;;;iBAGT,CAAC;AAGH;;GAEG;AACH,eAAO,MAAM,UAAU;;;;iBAerB,CAAC;AAEH;;GAEG;AACH,eAAO,MAAM,sBAAsB;;;;YAlmE/B;;eAEG;;YAEH;;eAEG;;;;;;iBA+lEL,CAAC;AAEH;;GAEG;AACH,eAAO,MAAM,qBAAqB;;QA1mE9B;;WAEG;;QAEH;;WAEG;;;;;;;;;;iBAsmEL,CAAC;AAEH;;GAEG;AACH,eAAO,MAAM,kCAAkC;;;;YAjnE3C;;eAEG;;YAEH;;eAEG;;;;;;iBA8mEL,CAAC;AAGH,eAAO,MAAM,mBAAmB;;;;YAvnE5B;;eAEG;;YAEH;;eAEG;;;;;;;;;;YANH;;eAEG;;YAEH;;eAEG;;;;;;;;;;;;;;;;;;;;;;gBAuVH;;mBAEG;;gBAEH;;mBAEG;;gBAEH;;mBAEG;;oBAGK;;uBAEG;;;;oBAMH;;uBAEG;;;;;;;;;;;;;;;;;;;;;;;;;;;;;YApXX;;eAEG;;YAEH;;eAEG;;;;;;;;;;;;;;;;;;;;;;;;YANH;;eAEG;;YAEH;;eAEG;;;;;;;;;;;;;;;;;;;;YANH;;eAEG;;YAEH;;eAEG;;;;;;;;;;;YANH;;eAEG;;YAEH;;eAEG;;;;;;;;;;;YANH;;eAEG;;YAEH;;eAEG;;;;;;;;;;;YANH;;eAEG;;YAEH;;eAEG;;;;;;;;;;;;YANH;;eAEG;;YAEH;;eAEG;;;;;;;;;;;YANH;;eAEG;;YAEH;;eAEG;;;;;;;;;;;YANH;;eAEG;;YAEH;;eAEG;;;;;;;;;;;YANH;;eAEG;;YAEH;;eAEG;;;;;;;;;;;;;;YANH;;eAEG;;YAEH;;eAEG;;;;;;;;;;;;YANH;;eAEG;;YAEH;;eAEG;;;;;;;;;;;YANH;;eAEG;;YAEH;;eAEG;;;;;;;;;;YANH;;eAEG;;YAEH;;eAEG;;;;;;;;;;;;YANH;;eAEG;;YAEH;;eAEG;;;;;;;mBAmoEL,CAAC;AAEH,eAAO,MAAM,wBAAwB;;;;YA3oEjC;;eAEG;;YAEH;;eAEG;;;;;;;;;;;;;;;;YANH;;eAEG;;YAEH;;eAEG;;;;;;;;;;YANH;;eAEG;;YAEH;;eAEG;;;;;;;;;;YANH;;eAEG;;YAEH;;eAEG;;;;;;;;;;YANH;;eAEG;;YAEH;;eAEG;;;;;;;;;;;;;;;;;;;mBA2oEL,CAAC;AAEH,eAAO,MAAM,kBAAkB;IAplE3B;;;OAGG;;QAlEH;;WAEG;;QAEH;;WAEG;;;;;;;QANH;;WAEG;;QAEH;;WAEG;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;QANH;;WAEG;;QAEH;;WAEG;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;QANH;;WAEG;;QAEH;;WAEG;;;;;;;;;;;;;QANH;;WAEG;;QAEH;;WAEG;;;;;;;;;;;;QANH;;WAEG;;QAEH;;WAEG;;;;;;;;;;;;;;;;;;;;QANH;;WAEG;;QAEH;;WAEG;;;;;;;;;;;;;;;;;;;;;;;QANH;;WAEG;;QAEH;;WAEG;;;;;;;;;;;;;;;;;;;;mBAspEL,CAAC;AAGH,eAAO,MAAM,mBAAmB;;;;YA/pE5B;;eAEG;;YAEH;;eAEG;;;;;;;;;;YANH;;eAEG;;YAEH;;eAEG;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;YANH;;eAEG;;YAEH;;eAEG;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;YANH;;eAEG;;YAEH;;eAEG;;;;;;;;;;;;;;;;;YANH;;eAEG;;YAEH;;eAEG;;;;;;;;;;YANH;;eAEG;;YAEH;;eAEG;;;;;;;;;;;YANH;;eAEG;;YAEH;;eAEG;;;;;;;;;;YANH;;eAEG;;YAEH;;eAEG;;;;;;;;;;;;YANH;;eAEG;;YAEH;;eAEG;;;;;;;mBAkqEL,CAAC;AAEH,eAAO,MAAM,wBAAwB;;;;YA1qEjC;;eAEG;;YAEH;;eAEG;;;;;;;;;;;;;;;;YANH;;eAEG;;YAEH;;eAEG;;;;;;;;;;YANH;;eAEG;;YAEH;;eAEG;;;;;;;;;;;;;;;;;;;;;;YANH;;eAEG;;YAEH;;eAEG;;;;;;;;;;;YANH;;eAEG;;YAEH;;eAEG;;;;;;;;;;YANH;;eAEG;;YAEH;;eAEG;;;;;;;;;;YANH;;eAEG;;YAEH;;eAEG;;;;;;;;;;YANH;;eAEG;;YAEH;;eAEG;;;;;;;;;;;;;;;;;;;;;;;YANH;;eAEG;;YAEH;;eAEG;;;;;;;mBA8qEL,CAAC;AAEH,eAAO,MAAM,kBAAkB;IAvnE3B;;;OAGG;;QAlEH;;WAEG;;QAEH;;WAEG;;;;;;;QANH;;WAEG;;QAEH;;WAEG;;;;;;;;;;;;;;;;;;;;;YA4XH;;eAEG;;YAEH;;eAEG;;YAEH;;eAEG;;gBAGK;;mBAEG;;;;;;;;;;;;;;;;;;;;;;;;;;;QAjZX;;WAEG;;QAEH;;WAEG;;;;;;QAqjEC;;WAEG;;QAEH;;WAEG;;QAEH;;WAEG;;;;;QArkEP;;WAEG;;QAEH;;WAEG;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;QANH;;WAEG;;QAEH;;WAEG;;;;;;;;;;;;;;;;;;;;;;;;;;;;QANH;;WAEG;;QAEH;;WAEG;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;QANH;;WAEG;;QAEH;;WAEG;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;QANH;;WAEG;;QAEH;;WAEG;;;;;;;;;;;;;;;;;;QANH;;WAEG;;QAEH;;WAEG;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;QANH;;WAEG;;QAEH;;WAEG;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;QANH;;WAEG;;QAEH;;WAEG;;;;;;;;;;;;;;;;;;;;QANH;;WAEG;;QAEH;;WAEG;;;;;;;;;;;;;;;;;;;;;;;QANH;;WAEG;;QAEH;;WAEG;;;;;;;;;;;;;;;;;;;;mBA8rEL,CAAC;AAEH,qBAAa,QAAS,SAAQ,KAAK;aAEX,IAAI,EAAE,MAAM;aAEZ,IAAI,CAAC,EAAE,OAAO;gBAFd,IAAI,EAAE,MAAM,EAC5B,OAAO,EAAE,MAAM,EACC,IAAI,CAAC,EAAE,OAAO;IAMlC;;OAEG;IACH,MAAM,CAAC,SAAS,CAAC,IAAI,EAAE,MAAM,EAAE,OAAO,EAAE,MAAM,EAAE,IAAI,CAAC,EAAE,OAAO,GAAG,QAAQ;CAY5E;AAED;;;GAGG;AACH,qBAAa,2BAA4B,SAAQ,QAAQ;gBACzC,YAAY,EAAE,sBAAsB,EAAE,EAAE,OAAO,GAAE,MAAwE;IAMrI,IAAI,YAAY,IAAI,sBAAsB,EAAE,CAE3C;CACJ;AAED,KAAK,SAAS,GAAG,MAAM,GAAG,MAAM,GAAG,OAAO,GAAG,MAAM,GAAG,IAAI,GAAG,SAAS,CAAC;AACvE,KAAK,OAAO,CAAC,CAAC,IAAI,CAAC,SAAS,SAAS,GAC/B,CAAC,GACD,CAAC,SAAS,KAAK,CAAC,MAAM,CAAC,CAAC,GACtB,KAAK,CAAC,OAAO,CAAC,CAAC,CAAC,CAAC,GACjB,CAAC,SAAS,GAAG,CAAC,MAAM,CAAC,CAAC,GACpB,GAAG,CAAC,OAAO,CAAC,CAAC,CAAC,CAAC,GACf,CAAC,SAAS,GAAG,CAAC,MAAM,CAAC,EAAE,MAAM,CAAC,CAAC,GAC7B,GAAG,CAAC,OAAO,CAAC,CAAC,CAAC,EAAE,OAAO,CAAC,CAAC,CAAC,CAAC,GAC3B,CAAC,SAAS,MAAM,GACd;KAAG,CAAC,IAAI,MAAM,CAAC,GAAG,OAAO,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC;CAAE,GACjC,CAAC,CAAC;AAEhB,KAAK,KAAK,CAAC,MAAM,SAAS,CAAC,CAAC,UAAU,IAAI,OAAO,CAAC,CAAC,CAAC,KAAK,CAAC,MAAM,CAAC,CAAC,CAAC;AAEnE;;GAEG;AACH,MAAM,MAAM,iBAAiB,GAAG,MAAM,CAAC,MAAM,EAAE,MAAM,GAAG,MAAM,EAAE,GAAG,SAAS,CAAC,CAAC;AAE9E;;GAEG;AACH,MAAM,WAAW,WAAW;IACxB;;OAEG;IACH,OAAO,EAAE,iBAAiB,CAAC;IAC3B;;OAEG;IACH,GAAG,CAAC,EAAE,GAAG,CAAC;CACb;AAED;;GAEG;AACH,MAAM,WAAW,gBAAgB;IAC7B;;OAEG;IACH,WAAW,CAAC,EAAE,WAAW,CAAC;IAE1B;;OAEG;IACH,QAAQ,CAAC,EAAE,QAAQ,CAAC;IAEpB;;;OAGG;IACH,cAAc,CAAC,EAAE,MAAM,IAAI,CAAC;IAE5B;;;OAGG;IACH,wBAAwB,CAAC,EAAE,MAAM,IAAI,CAAC;CACzC;AAGD,MAAM,MAAM,aAAa,GAAG,KAAK,CAAC,OAAO,mBAAmB,CAAC,CAAC;AAC9D,MAAM,MAAM,MAAM,GAAG,KAAK,CAAC,OAAO,YAAY,CAAC,CAAC;AAChD,MAAM,MAAM,OAAO,GAAG,KAAK,CAAC,OAAO,aAAa,CAAC,CAAC;AAClD,MAAM,MAAM,0BAA0B,GAAG,KAAK,CAAC,OAAO,gCAAgC,CAAC,CAAC;AACxF,MAAM,MAAM,WAAW,GAAG,KAAK,CAAC,OAAO,iBAAiB,CAAC,CAAC;AAC1D,MAAM,MAAM,YAAY,GAAG,KAAK,CAAC,OAAO,kBAAkB,CAAC,CAAC;AAC5D,MAAM,MAAM,MAAM,GAAG,KAAK,CAAC,OAAO,YAAY,CAAC,CAAC;AAChD,MAAM,MAAM,SAAS,GAAG,KAAK,CAAC,OAAO,eAAe,CAAC,CAAC;AACtD,MAAM,MAAM,cAAc,GAAG,KAAK,CAAC,OAAO,oBAAoB,CAAC,CAAC;AAChE,MAAM,MAAM,mBAAmB,GAAG,KAAK,CAAC,OAAO,yBAAyB,CAAC,CAAC;AAC1E,MAAM,MAAM,eAAe,GAAG,KAAK,CAAC,OAAO,qBAAqB,CAAC,CAAC;AAClE,MAAM,MAAM,oBAAoB,GAAG,KAAK,CAAC,OAAO,0BAA0B,CAAC,CAAC;AAC5E;;;;GAIG;AACH,MAAM,MAAM,YAAY,GAAG,oBAAoB,CAAC;AAChD,MAAM,MAAM,qBAAqB,GAAG,KAAK,CAAC,OAAO,2BAA2B,CAAC,CAAC;AAE9E,MAAM,MAAM,cAAc,GAAG,KAAK,CAAC,OAAO,oBAAoB,CAAC,CAAC;AAChE,MAAM,MAAM,aAAa,GAAG,KAAK,CAAC,OAAO,uBAAuB,CAAC,CAAC;AAClE,MAAM,MAAM,kBAAkB,GAAG,KAAK,CAAC,OAAO,yBAAyB,CAAC,CAAC;AAGzE,MAAM,MAAM,WAAW,GAAG,KAAK,CAAC,OAAO,iBAAiB,CAAC,CAAC;AAG1D,MAAM,MAAM,2BAA2B,GAAG,KAAK,CAAC,OAAO,iCAAiC,CAAC,CAAC;AAC1F,MAAM,MAAM,qBAAqB,GAAG,KAAK,CAAC,OAAO,2BAA2B,CAAC,CAAC;AAG9E,MAAM,MAAM,IAAI,GAAG,KAAK,CAAC,OAAO,UAAU,CAAC,CAAC;AAC5C,MAAM,MAAM,KAAK,GAAG,KAAK,CAAC,OAAO,WAAW,CAAC,CAAC;AAC9C,MAAM,MAAM,YAAY,GAAG,KAAK,CAAC,OAAO,kBAAkB,CAAC,CAAC;AAC5D,MAAM,MAAM,WAAW,GAAG,KAAK,CAAC,OAAO,iBAAiB,CAAC,CAAC;AAC1D,MAAM,MAAM,IAAI,GAAG,KAAK,CAAC,OAAO,UAAU,CAAC,CAAC;AAG5C,MAAM,MAAM,cAAc,GAAG,KAAK,CAAC,OAAO,oBAAoB,CAAC,CAAC;AAChE,MAAM,MAAM,kBAAkB,GAAG,KAAK,CAAC,OAAO,wBAAwB,CAAC,CAAC;AACxE,MAAM,MAAM,uBAAuB,GAAG,KAAK,CAAC,OAAO,6BAA6B,CAAC,CAAC;AAClF,MAAM,MAAM,iBAAiB,GAAG,KAAK,CAAC,OAAO,uBAAuB,CAAC,CAAC;AACtE,MAAM,MAAM,kBAAkB,GAAG,KAAK,CAAC,OAAO,wBAAwB,CAAC,CAAC;AACxE,MAAM,MAAM,gBAAgB,GAAG,KAAK,CAAC,OAAO,sBAAsB,CAAC,CAAC;AACpE,MAAM,MAAM,uBAAuB,GAAG,KAAK,CAAC,OAAO,6BAA6B,CAAC,CAAC;AAGlF,MAAM,MAAM,WAAW,GAAG,KAAK,CAAC,OAAO,iBAAiB,CAAC,CAAC;AAG1D,MAAM,MAAM,QAAQ,GAAG,KAAK,CAAC,OAAO,cAAc,CAAC,CAAC;AACpD,MAAM,MAAM,0BAA0B,GAAG,KAAK,CAAC,OAAO,gCAAgC,CAAC,CAAC;AACxF,MAAM,MAAM,oBAAoB,GAAG,KAAK,CAAC,OAAO,0BAA0B,CAAC,CAAC;AAG5E,MAAM,MAAM,IAAI,GAAG,KAAK,CAAC,OAAO,UAAU,CAAC,CAAC;AAC5C,MAAM,MAAM,UAAU,GAAG,KAAK,CAAC,OAAO,gBAAgB,CAAC,CAAC;AACxD,MAAM,MAAM,kBAAkB,GAAG,KAAK,CAAC,OAAO,wBAAwB,CAAC,CAAC;AACxE,MAAM,MAAM,YAAY,GAAG,KAAK,CAAC,OAAO,kBAAkB,CAAC,CAAC;AAC5D,MAAM,MAAM,mBAAmB,GAAG,KAAK,CAAC,OAAO,yBAAyB,CAAC,CAAC;AAC1E,MAAM,MAAM,gBAAgB,GAAG,KAAK,CAAC,OAAO,sBAAsB,CAAC,CAAC;AACpE,MAAM,MAAM,4BAA4B,GAAG,KAAK,CAAC,OAAO,kCAAkC,CAAC,CAAC;AAC5F,MAAM,MAAM,sBAAsB,GAAG,KAAK,CAAC,OAAO,4BAA4B,CAAC,CAAC;AAChF,MAAM,MAAM,cAAc,GAAG,KAAK,CAAC,OAAO,oBAAoB,CAAC,CAAC;AAChE,MAAM,MAAM,aAAa,GAAG,KAAK,CAAC,OAAO,mBAAmB,CAAC,CAAC;AAC9D,MAAM,MAAM,qBAAqB,GAAG,KAAK,CAAC,OAAO,2BAA2B,CAAC,CAAC;AAC9E,MAAM,MAAM,gBAAgB,GAAG,KAAK,CAAC,OAAO,sBAAsB,CAAC,CAAC;AACpE,MAAM,MAAM,eAAe,GAAG,KAAK,CAAC,OAAO,qBAAqB,CAAC,CAAC;AAClE,MAAM,MAAM,iBAAiB,GAAG,KAAK,CAAC,OAAO,uBAAuB,CAAC,CAAC;AACtE,MAAM,MAAM,gBAAgB,GAAG,KAAK,CAAC,OAAO,sBAAsB,CAAC,CAAC;AACpE,MAAM,MAAM,oBAAoB,GAAG,KAAK,CAAC,OAAO,0BAA0B,CAAC,CAAC;AAG5E,MAAM,MAAM,sBAAsB,GAAG,KAAK,CAAC,OAAO,4BAA4B,CAAC,CAAC;AAChF,MAAM,MAAM,gBAAgB,GAAG,KAAK,CAAC,OAAO,sBAAsB,CAAC,CAAC;AACpE,MAAM,MAAM,eAAe,GAAG,KAAK,CAAC,OAAO,qBAAqB,CAAC,CAAC;AAGlE,MAAM,MAAM,gBAAgB,GAAG,KAAK,CAAC,OAAO,sBAAsB,CAAC,CAAC;AACpE,MAAM,MAAM,oBAAoB,GAAG,KAAK,CAAC,OAAO,0BAA0B,CAAC,CAAC;AAC5E,MAAM,MAAM,oBAAoB,GAAG,KAAK,CAAC,OAAO,0BAA0B,CAAC,CAAC;AAC5E,MAAM,MAAM,QAAQ,GAAG,KAAK,CAAC,OAAO,cAAc,CAAC,CAAC;AACpD,MAAM,MAAM,gBAAgB,GAAG,KAAK,CAAC,OAAO,sBAAsB,CAAC,CAAC;AACpE,MAAM,MAAM,oBAAoB,GAAG,KAAK,CAAC,OAAO,0BAA0B,CAAC,CAAC;AAC5E,MAAM,MAAM,mBAAmB,GAAG,KAAK,CAAC,OAAO,yBAAyB,CAAC,CAAC;AAC1E,MAAM,MAAM,4BAA4B,GAAG,KAAK,CAAC,OAAO,kCAAkC,CAAC,CAAC;AAC5F,MAAM,MAAM,2BAA2B,GAAG,KAAK,CAAC,OAAO,iCAAiC,CAAC,CAAC;AAC1F,MAAM,MAAM,qBAAqB,GAAG,KAAK,CAAC,OAAO,2BAA2B,CAAC,CAAC;AAC9E,MAAM,MAAM,yBAAyB,GAAG,KAAK,CAAC,OAAO,+BAA+B,CAAC,CAAC;AACtF,MAAM,MAAM,mBAAmB,GAAG,KAAK,CAAC,OAAO,yBAAyB,CAAC,CAAC;AAC1E,MAAM,MAAM,kBAAkB,GAAG,KAAK,CAAC,OAAO,wBAAwB,CAAC,CAAC;AACxE,MAAM,MAAM,+BAA+B,GAAG,KAAK,CAAC,OAAO,qCAAqC,CAAC,CAAC;AAClG,MAAM,MAAM,sBAAsB,GAAG,KAAK,CAAC,OAAO,4BAA4B,CAAC,CAAC;AAChF,MAAM,MAAM,gBAAgB,GAAG,KAAK,CAAC,OAAO,sBAAsB,CAAC,CAAC;AACpE,MAAM,MAAM,wBAAwB,GAAG,KAAK,CAAC,OAAO,8BAA8B,CAAC,CAAC;AACpF,MAAM,MAAM,kBAAkB,GAAG,KAAK,CAAC,OAAO,wBAAwB,CAAC,CAAC;AACxE,MAAM,MAAM,iCAAiC,GAAG,KAAK,CAAC,OAAO,uCAAuC,CAAC,CAAC;AACtG,MAAM,MAAM,2BAA2B,GAAG,KAAK,CAAC,OAAO,iCAAiC,CAAC,CAAC;AAG1F,MAAM,MAAM,cAAc,GAAG,KAAK,CAAC,OAAO,oBAAoB,CAAC,CAAC;AAChE,MAAM,MAAM,MAAM,GAAG,KAAK,CAAC,OAAO,YAAY,CAAC,CAAC;AAChD,MAAM,MAAM,kBAAkB,GAAG,KAAK,CAAC,OAAO,wBAAwB,CAAC,CAAC;AACxE,MAAM,MAAM,iBAAiB,GAAG,KAAK,CAAC,OAAO,uBAAuB,CAAC,CAAC;AACtE,MAAM,MAAM,sBAAsB,GAAG,KAAK,CAAC,OAAO,4BAA4B,CAAC,CAAC;AAChF,MAAM,MAAM,gBAAgB,GAAG,KAAK,CAAC,OAAO,sBAAsB,CAAC,CAAC;AACpE,MAAM,MAAM,WAAW,GAAG,KAAK,CAAC,OAAO,iBAAiB,CAAC,CAAC;AAC1D,MAAM,MAAM,YAAY,GAAG,KAAK,CAAC,OAAO,kBAAkB,CAAC,CAAC;AAC5D,MAAM,MAAM,YAAY,GAAG,KAAK,CAAC,OAAO,kBAAkB,CAAC,CAAC;AAC5D,MAAM,MAAM,cAAc,GAAG,KAAK,CAAC,OAAO,oBAAoB,CAAC,CAAC;AAChE,MAAM,MAAM,iBAAiB,GAAG,KAAK,CAAC,OAAO,uBAAuB,CAAC,CAAC;AACtE,MAAM,MAAM,gBAAgB,GAAG,KAAK,CAAC,OAAO,sBAAsB,CAAC,CAAC;AACpE,MAAM,MAAM,YAAY,GAAG,KAAK,CAAC,OAAO,kBAAkB,CAAC,CAAC;AAC5D,MAAM,MAAM,YAAY,GAAG,KAAK,CAAC,OAAO,kBAAkB,CAAC,CAAC;AAC5D,MAAM,MAAM,aAAa,GAAG,KAAK,CAAC,OAAO,mBAAmB,CAAC,CAAC;AAC9D,MAAM,MAAM,eAAe,GAAG,KAAK,CAAC,OAAO,qBAAqB,CAAC,CAAC;AAClE,MAAM,MAAM,6BAA6B,GAAG,KAAK,CAAC,OAAO,mCAAmC,CAAC,CAAC;AAG9F,MAAM,MAAM,eAAe,GAAG,KAAK,CAAC,OAAO,qBAAqB,CAAC,CAAC;AAClE,MAAM,MAAM,aAAa,GAAG,KAAK,CAAC,OAAO,mBAAmB,CAAC,CAAC;AAC9D,MAAM,MAAM,IAAI,GAAG,KAAK,CAAC,OAAO,UAAU,CAAC,CAAC;AAC5C,MAAM,MAAM,gBAAgB,GAAG,KAAK,CAAC,OAAO,sBAAsB,CAAC,CAAC;AACpE,MAAM,MAAM,eAAe,GAAG,KAAK,CAAC,OAAO,qBAAqB,CAAC,CAAC;AAClE,MAAM,MAAM,qBAAqB,GAAG,KAAK,CAAC,OAAO,2BAA2B,CAAC,CAAC;AAC9E,MAAM,MAAM,cAAc,GAAG,KAAK,CAAC,OAAO,oBAAoB,CAAC,CAAC;AAChE,MAAM,MAAM,2BAA2B,GAAG,KAAK,CAAC,OAAO,iCAAiC,CAAC,CAAC;AAC1F,MAAM,MAAM,eAAe,GAAG,KAAK,CAAC,OAAO,qBAAqB,CAAC,CAAC;AAClE,MAAM,MAAM,2BAA2B,GAAG,KAAK,CAAC,OAAO,iCAAiC,CAAC,CAAC;AAG1F,MAAM,MAAM,YAAY,GAAG,KAAK,CAAC,OAAO,kBAAkB,CAAC,CAAC;AAC5D,MAAM,MAAM,qBAAqB,GAAG,KAAK,CAAC,OAAO,2BAA2B,CAAC,CAAC;AAC9E,MAAM,MAAM,eAAe,GAAG,KAAK,CAAC,OAAO,qBAAqB,CAAC,CAAC;AAClE,MAAM,MAAM,gCAAgC,GAAG,KAAK,CAAC,OAAO,sCAAsC,CAAC,CAAC;AACpG,MAAM,MAAM,0BAA0B,GAAG,KAAK,CAAC,OAAO,gCAAgC,CAAC,CAAC;AAGxF,MAAM,MAAM,UAAU,GAAG,KAAK,CAAC,OAAO,gBAAgB,CAAC,CAAC;AACxD,MAAM,MAAM,SAAS,GAAG,KAAK,CAAC,OAAO,eAAe,CAAC,CAAC;AACtD,MAAM,MAAM,gBAAgB,GAAG,KAAK,CAAC,OAAO,sBAAsB,CAAC,CAAC;AACpE,MAAM,MAAM,eAAe,GAAG,KAAK,CAAC,OAAO,qBAAqB,CAAC,CAAC;AAClE,MAAM,MAAM,2BAA2B,GAAG,KAAK,CAAC,OAAO,iCAAiC,CAAC,CAAC;AAC1F,MAAM,MAAM,eAAe,GAAG,KAAK,CAAC,OAAO,qBAAqB,CAAC,CAAC;AAClE,MAAM,MAAM,0BAA0B,GAAG,KAAK,CAAC,OAAO,gCAAgC,CAAC,CAAC;AACxF,MAAM,MAAM,oBAAoB,GAAG,KAAK,CAAC,OAAO,0BAA0B,CAAC,CAAC;AAC5E,MAAM,MAAM,mBAAmB,GAAG,KAAK,CAAC,OAAO,yBAAyB,CAAC,CAAC;AAC1E,MAAM,MAAM,4BAA4B,GAAG,KAAK,CAAC,OAAO,kCAAkC,CAAC,CAAC;AAE5F;;;GAGG;AACH,MAAM,MAAM,8BAA8B,GAAG,IAAI,CAAC,0BAA0B,EAAE,OAAO,GAAG,YAAY,CAAC,CAAC;AAEtG;;GAEG;AACH,MAAM,WAAW,mCAAoC,SAAQ,0BAA0B;IACnF,KAAK,EAAE,IAAI,EAAE,CAAC;CACjB;AAGD,MAAM,MAAM,aAAa,GAAG,KAAK,CAAC,OAAO,mBAAmB,CAAC,CAAC;AAC9D,MAAM,MAAM,YAAY,GAAG,KAAK,CAAC,OAAO,kBAAkB,CAAC,CAAC;AAC5D,MAAM,MAAM,YAAY,GAAG,KAAK,CAAC,OAAO,kBAAkB,CAAC,CAAC;AAE5D,MAAM,MAAM,UAAU,GAAG,KAAK,CAAC,OAAO,gBAAgB,CAAC,CAAC;AACxD,MAAM,MAAM,8BAA8B,GAAG,KAAK,CAAC,OAAO,oCAAoC,CAAC,CAAC;AAChG,MAAM,MAAM,4BAA4B,GAAG,KAAK,CAAC,OAAO,kCAAkC,CAAC,CAAC;AAC5F,MAAM,MAAM,sBAAsB,GAAG,KAAK,CAAC,OAAO,4BAA4B,CAAC,CAAC;AAChF,MAAM,MAAM,6BAA6B,GAAG,KAAK,CAAC,OAAO,mCAAmC,CAAC,CAAC;AAC9F,MAAM,MAAM,2BAA2B,GAAG,KAAK,CAAC,OAAO,iCAAiC,CAAC,CAAC;AAC1F,MAAM,MAAM,sBAAsB,GAAG,KAAK,CAAC,OAAO,4BAA4B,CAAC,CAAC;AAChF,MAAM,MAAM,qBAAqB,GAAG,KAAK,CAAC,OAAO,2BAA2B,CAAC,CAAC;AAE9E,MAAM,MAAM,yBAAyB,GAAG,KAAK,CAAC,OAAO,+BAA+B,CAAC,CAAC;AACtF,MAAM,MAAM,mBAAmB,GAAG,KAAK,CAAC,OAAO,yBAAyB,CAAC,CAAC;AAC1E,MAAM,MAAM,uBAAuB,GAAG,KAAK,CAAC,OAAO,6BAA6B,CAAC,CAAC;AAClF,MAAM,MAAM,sBAAsB,GAAG,KAAK,CAAC,OAAO,4BAA4B,CAAC,CAAC;AAChF,MAAM,MAAM,aAAa,GAAG,KAAK,CAAC,OAAO,mBAAmB,CAAC,CAAC;AAC9D,MAAM,MAAM,qCAAqC,GAAG,KAAK,CAAC,OAAO,2CAA2C,CAAC,CAAC;AAC9G,MAAM,MAAM,+BAA+B,GAAG,KAAK,CAAC,OAAO,qCAAqC,CAAC,CAAC;AAClG,MAAM,MAAM,YAAY,GAAG,KAAK,CAAC,OAAO,kBAAkB,CAAC,CAAC;AAG5D,MAAM,MAAM,yBAAyB,GAAG,KAAK,CAAC,OAAO,+BAA+B,CAAC,CAAC;AACtF;;GAEG;AACH,MAAM,MAAM,iBAAiB,GAAG,yBAAyB,CAAC;AAC1D,MAAM,MAAM,eAAe,GAAG,KAAK,CAAC,OAAO,qBAAqB,CAAC,CAAC;AAClE,MAAM,MAAM,qBAAqB,GAAG,KAAK,CAAC,OAAO,2BAA2B,CAAC,CAAC;AAC9E,MAAM,MAAM,eAAe,GAAG,KAAK,CAAC,OAAO,qBAAqB,CAAC,CAAC;AAClE,MAAM,MAAM,+BAA+B,GAAG,iBAAiB,CAC3D,eAAe,GAAG;IAAE,MAAM,EAAE,qBAAqB,GAAG;QAAE,GAAG,EAAE,yBAAyB,CAAA;KAAE,CAAA;CAAE,CAC3F,CAAC;AACF,MAAM,MAAM,qBAAqB,GAAG,iBAAiB,CAAC,eAAe,GAAG;IAAE,MAAM,EAAE,qBAAqB,GAAG;QAAE,GAAG,EAAE,eAAe,CAAA;KAAE,CAAA;CAAE,CAAC,CAAC;AACtI,MAAM,MAAM,cAAc,GAAG,KAAK,CAAC,OAAO,oBAAoB,CAAC,CAAC;AAGhE,MAAM,MAAM,IAAI,GAAG,KAAK,CAAC,OAAO,UAAU,CAAC,CAAC;AAC5C,MAAM,MAAM,gBAAgB,GAAG,KAAK,CAAC,OAAO,sBAAsB,CAAC,CAAC;AACpE,MAAM,MAAM,eAAe,GAAG,KAAK,CAAC,OAAO,qBAAqB,CAAC,CAAC;AAClE,MAAM,MAAM,4BAA4B,GAAG,KAAK,CAAC,OAAO,kCAAkC,CAAC,CAAC;AAG5F,MAAM,MAAM,aAAa,GAAG,KAAK,CAAC,OAAO,mBAAmB,CAAC,CAAC;AAC9D,MAAM,MAAM,kBAAkB,GAAG,KAAK,CAAC,OAAO,wBAAwB,CAAC,CAAC;AACxE,MAAM,MAAM,YAAY,GAAG,KAAK,CAAC,OAAO,kBAAkB,CAAC,CAAC;AAG5D,MAAM,MAAM,aAAa,GAAG,KAAK,CAAC,OAAO,mBAAmB,CAAC,CAAC;AAC9D,MAAM,MAAM,kBAAkB,GAAG,KAAK,CAAC,OAAO,wBAAwB,CAAC,CAAC;AACxE,MAAM,MAAM,YAAY,GAAG,KAAK,CAAC,OAAO,kBAAkB,CAAC,CAAC"} \ No newline at end of file diff --git a/loan-advisor-chatgpt-app/node_modules/@modelcontextprotocol/sdk/dist/esm/types.js b/loan-advisor-chatgpt-app/node_modules/@modelcontextprotocol/sdk/dist/esm/types.js new file mode 100644 index 0000000000000000000000000000000000000000..866da3e68ca0ace1c524e8dcbd9d1370a9e39b84 --- /dev/null +++ b/loan-advisor-chatgpt-app/node_modules/@modelcontextprotocol/sdk/dist/esm/types.js @@ -0,0 +1,2065 @@ +import * as z from 'zod/v4'; +export const LATEST_PROTOCOL_VERSION = '2025-11-25'; +export const DEFAULT_NEGOTIATED_PROTOCOL_VERSION = '2025-03-26'; +export const SUPPORTED_PROTOCOL_VERSIONS = [LATEST_PROTOCOL_VERSION, '2025-06-18', '2025-03-26', '2024-11-05', '2024-10-07']; +export const RELATED_TASK_META_KEY = 'io.modelcontextprotocol/related-task'; +/* JSON-RPC types */ +export const JSONRPC_VERSION = '2.0'; +/** + * Assert 'object' type schema. + * + * @internal + */ +const AssertObjectSchema = z.custom((v) => v !== null && (typeof v === 'object' || typeof v === 'function')); +/** + * A progress token, used to associate progress notifications with the original request. + */ +export const ProgressTokenSchema = z.union([z.string(), z.number().int()]); +/** + * An opaque token used to represent a cursor for pagination. + */ +export const CursorSchema = z.string(); +/** + * Task creation parameters, used to ask that the server create a task to represent a request. + */ +export const TaskCreationParamsSchema = z.looseObject({ + /** + * Requested duration in milliseconds to retain task from creation. + */ + ttl: z.number().optional(), + /** + * Time in milliseconds to wait between task status requests. + */ + pollInterval: z.number().optional() +}); +export const TaskMetadataSchema = z.object({ + ttl: z.number().optional() +}); +/** + * Metadata for associating messages with a task. + * Include this in the `_meta` field under the key `io.modelcontextprotocol/related-task`. + */ +export const RelatedTaskMetadataSchema = z.object({ + taskId: z.string() +}); +const RequestMetaSchema = z.looseObject({ + /** + * If specified, the caller is requesting out-of-band progress notifications for this request (as represented by notifications/progress). The value of this parameter is an opaque token that will be attached to any subsequent notifications. The receiver is not obligated to provide these notifications. + */ + progressToken: ProgressTokenSchema.optional(), + /** + * If specified, this request is related to the provided task. + */ + [RELATED_TASK_META_KEY]: RelatedTaskMetadataSchema.optional() +}); +/** + * Common params for any request. + */ +const BaseRequestParamsSchema = z.object({ + /** + * See [General fields: `_meta`](/specification/draft/basic/index#meta) for notes on `_meta` usage. + */ + _meta: RequestMetaSchema.optional() +}); +/** + * Common params for any task-augmented request. + */ +export const TaskAugmentedRequestParamsSchema = BaseRequestParamsSchema.extend({ + /** + * If specified, the caller is requesting task-augmented execution for this request. + * The request will return a CreateTaskResult immediately, and the actual result can be + * retrieved later via tasks/result. + * + * Task augmentation is subject to capability negotiation - receivers MUST declare support + * for task augmentation of specific request types in their capabilities. + */ + task: TaskMetadataSchema.optional() +}); +/** + * Checks if a value is a valid TaskAugmentedRequestParams. + * @param value - The value to check. + * + * @returns True if the value is a valid TaskAugmentedRequestParams, false otherwise. + */ +export const isTaskAugmentedRequestParams = (value) => TaskAugmentedRequestParamsSchema.safeParse(value).success; +export const RequestSchema = z.object({ + method: z.string(), + params: BaseRequestParamsSchema.loose().optional() +}); +const NotificationsParamsSchema = z.object({ + /** + * See [MCP specification](https://github.com/modelcontextprotocol/modelcontextprotocol/blob/47339c03c143bb4ec01a26e721a1b8fe66634ebe/docs/specification/draft/basic/index.mdx#general-fields) + * for notes on _meta usage. + */ + _meta: RequestMetaSchema.optional() +}); +export const NotificationSchema = z.object({ + method: z.string(), + params: NotificationsParamsSchema.loose().optional() +}); +export const ResultSchema = z.looseObject({ + /** + * See [MCP specification](https://github.com/modelcontextprotocol/modelcontextprotocol/blob/47339c03c143bb4ec01a26e721a1b8fe66634ebe/docs/specification/draft/basic/index.mdx#general-fields) + * for notes on _meta usage. + */ + _meta: RequestMetaSchema.optional() +}); +/** + * A uniquely identifying ID for a request in JSON-RPC. + */ +export const RequestIdSchema = z.union([z.string(), z.number().int()]); +/** + * A request that expects a response. + */ +export const JSONRPCRequestSchema = z + .object({ + jsonrpc: z.literal(JSONRPC_VERSION), + id: RequestIdSchema, + ...RequestSchema.shape +}) + .strict(); +export const isJSONRPCRequest = (value) => JSONRPCRequestSchema.safeParse(value).success; +/** + * A notification which does not expect a response. + */ +export const JSONRPCNotificationSchema = z + .object({ + jsonrpc: z.literal(JSONRPC_VERSION), + ...NotificationSchema.shape +}) + .strict(); +export const isJSONRPCNotification = (value) => JSONRPCNotificationSchema.safeParse(value).success; +/** + * A successful (non-error) response to a request. + */ +export const JSONRPCResultResponseSchema = z + .object({ + jsonrpc: z.literal(JSONRPC_VERSION), + id: RequestIdSchema, + result: ResultSchema +}) + .strict(); +/** + * Checks if a value is a valid JSONRPCResultResponse. + * @param value - The value to check. + * + * @returns True if the value is a valid JSONRPCResultResponse, false otherwise. + */ +export const isJSONRPCResultResponse = (value) => JSONRPCResultResponseSchema.safeParse(value).success; +/** + * @deprecated Use {@link isJSONRPCResultResponse} instead. + * + * Please note that {@link JSONRPCResponse} is a union of {@link JSONRPCResultResponse} and {@link JSONRPCErrorResponse} as per the updated JSON-RPC specification. (was previously just {@link JSONRPCResultResponse}) + */ +export const isJSONRPCResponse = isJSONRPCResultResponse; +/** + * Error codes defined by the JSON-RPC specification. + */ +export var ErrorCode; +(function (ErrorCode) { + // SDK error codes + ErrorCode[ErrorCode["ConnectionClosed"] = -32000] = "ConnectionClosed"; + ErrorCode[ErrorCode["RequestTimeout"] = -32001] = "RequestTimeout"; + // Standard JSON-RPC error codes + ErrorCode[ErrorCode["ParseError"] = -32700] = "ParseError"; + ErrorCode[ErrorCode["InvalidRequest"] = -32600] = "InvalidRequest"; + ErrorCode[ErrorCode["MethodNotFound"] = -32601] = "MethodNotFound"; + ErrorCode[ErrorCode["InvalidParams"] = -32602] = "InvalidParams"; + ErrorCode[ErrorCode["InternalError"] = -32603] = "InternalError"; + // MCP-specific error codes + ErrorCode[ErrorCode["UrlElicitationRequired"] = -32042] = "UrlElicitationRequired"; +})(ErrorCode || (ErrorCode = {})); +/** + * A response to a request that indicates an error occurred. + */ +export const JSONRPCErrorResponseSchema = z + .object({ + jsonrpc: z.literal(JSONRPC_VERSION), + id: RequestIdSchema.optional(), + error: z.object({ + /** + * The error type that occurred. + */ + code: z.number().int(), + /** + * A short description of the error. The message SHOULD be limited to a concise single sentence. + */ + message: z.string(), + /** + * Additional information about the error. The value of this member is defined by the sender (e.g. detailed error information, nested errors etc.). + */ + data: z.unknown().optional() + }) +}) + .strict(); +/** + * @deprecated Use {@link JSONRPCErrorResponseSchema} instead. + */ +export const JSONRPCErrorSchema = JSONRPCErrorResponseSchema; +/** + * Checks if a value is a valid JSONRPCErrorResponse. + * @param value - The value to check. + * + * @returns True if the value is a valid JSONRPCErrorResponse, false otherwise. + */ +export const isJSONRPCErrorResponse = (value) => JSONRPCErrorResponseSchema.safeParse(value).success; +/** + * @deprecated Use {@link isJSONRPCErrorResponse} instead. + */ +export const isJSONRPCError = isJSONRPCErrorResponse; +export const JSONRPCMessageSchema = z.union([ + JSONRPCRequestSchema, + JSONRPCNotificationSchema, + JSONRPCResultResponseSchema, + JSONRPCErrorResponseSchema +]); +export const JSONRPCResponseSchema = z.union([JSONRPCResultResponseSchema, JSONRPCErrorResponseSchema]); +/* Empty result */ +/** + * A response that indicates success but carries no data. + */ +export const EmptyResultSchema = ResultSchema.strict(); +export const CancelledNotificationParamsSchema = NotificationsParamsSchema.extend({ + /** + * The ID of the request to cancel. + * + * This MUST correspond to the ID of a request previously issued in the same direction. + */ + requestId: RequestIdSchema.optional(), + /** + * An optional string describing the reason for the cancellation. This MAY be logged or presented to the user. + */ + reason: z.string().optional() +}); +/* Cancellation */ +/** + * This notification can be sent by either side to indicate that it is cancelling a previously-issued request. + * + * The request SHOULD still be in-flight, but due to communication latency, it is always possible that this notification MAY arrive after the request has already finished. + * + * This notification indicates that the result will be unused, so any associated processing SHOULD cease. + * + * A client MUST NOT attempt to cancel its `initialize` request. + */ +export const CancelledNotificationSchema = NotificationSchema.extend({ + method: z.literal('notifications/cancelled'), + params: CancelledNotificationParamsSchema +}); +/* Base Metadata */ +/** + * Icon schema for use in tools, prompts, resources, and implementations. + */ +export const IconSchema = z.object({ + /** + * URL or data URI for the icon. + */ + src: z.string(), + /** + * Optional MIME type for the icon. + */ + mimeType: z.string().optional(), + /** + * Optional array of strings that specify sizes at which the icon can be used. + * Each string should be in WxH format (e.g., `"48x48"`, `"96x96"`) or `"any"` for scalable formats like SVG. + * + * If not provided, the client should assume that the icon can be used at any size. + */ + sizes: z.array(z.string()).optional(), + /** + * Optional specifier for the theme this icon is designed for. `light` indicates + * the icon is designed to be used with a light background, and `dark` indicates + * the icon is designed to be used with a dark background. + * + * If not provided, the client should assume the icon can be used with any theme. + */ + theme: z.enum(['light', 'dark']).optional() +}); +/** + * Base schema to add `icons` property. + * + */ +export const IconsSchema = z.object({ + /** + * Optional set of sized icons that the client can display in a user interface. + * + * Clients that support rendering icons MUST support at least the following MIME types: + * - `image/png` - PNG images (safe, universal compatibility) + * - `image/jpeg` (and `image/jpg`) - JPEG images (safe, universal compatibility) + * + * Clients that support rendering icons SHOULD also support: + * - `image/svg+xml` - SVG images (scalable but requires security precautions) + * - `image/webp` - WebP images (modern, efficient format) + */ + icons: z.array(IconSchema).optional() +}); +/** + * Base metadata interface for common properties across resources, tools, prompts, and implementations. + */ +export const BaseMetadataSchema = z.object({ + /** Intended for programmatic or logical use, but used as a display name in past specs or fallback */ + name: z.string(), + /** + * Intended for UI and end-user contexts — optimized to be human-readable and easily understood, + * even by those unfamiliar with domain-specific terminology. + * + * If not provided, the name should be used for display (except for Tool, + * where `annotations.title` should be given precedence over using `name`, + * if present). + */ + title: z.string().optional() +}); +/* Initialization */ +/** + * Describes the name and version of an MCP implementation. + */ +export const ImplementationSchema = BaseMetadataSchema.extend({ + ...BaseMetadataSchema.shape, + ...IconsSchema.shape, + version: z.string(), + /** + * An optional URL of the website for this implementation. + */ + websiteUrl: z.string().optional(), + /** + * An optional human-readable description of what this implementation does. + * + * This can be used by clients or servers to provide context about their purpose + * and capabilities. For example, a server might describe the types of resources + * or tools it provides, while a client might describe its intended use case. + */ + description: z.string().optional() +}); +const FormElicitationCapabilitySchema = z.intersection(z.object({ + applyDefaults: z.boolean().optional() +}), z.record(z.string(), z.unknown())); +const ElicitationCapabilitySchema = z.preprocess(value => { + if (value && typeof value === 'object' && !Array.isArray(value)) { + if (Object.keys(value).length === 0) { + return { form: {} }; + } + } + return value; +}, z.intersection(z.object({ + form: FormElicitationCapabilitySchema.optional(), + url: AssertObjectSchema.optional() +}), z.record(z.string(), z.unknown()).optional())); +/** + * Task capabilities for clients, indicating which request types support task creation. + */ +export const ClientTasksCapabilitySchema = z.looseObject({ + /** + * Present if the client supports listing tasks. + */ + list: AssertObjectSchema.optional(), + /** + * Present if the client supports cancelling tasks. + */ + cancel: AssertObjectSchema.optional(), + /** + * Capabilities for task creation on specific request types. + */ + requests: z + .looseObject({ + /** + * Task support for sampling requests. + */ + sampling: z + .looseObject({ + createMessage: AssertObjectSchema.optional() + }) + .optional(), + /** + * Task support for elicitation requests. + */ + elicitation: z + .looseObject({ + create: AssertObjectSchema.optional() + }) + .optional() + }) + .optional() +}); +/** + * Task capabilities for servers, indicating which request types support task creation. + */ +export const ServerTasksCapabilitySchema = z.looseObject({ + /** + * Present if the server supports listing tasks. + */ + list: AssertObjectSchema.optional(), + /** + * Present if the server supports cancelling tasks. + */ + cancel: AssertObjectSchema.optional(), + /** + * Capabilities for task creation on specific request types. + */ + requests: z + .looseObject({ + /** + * Task support for tool requests. + */ + tools: z + .looseObject({ + call: AssertObjectSchema.optional() + }) + .optional() + }) + .optional() +}); +/** + * Capabilities a client may support. Known capabilities are defined here, in this schema, but this is not a closed set: any client can define its own, additional capabilities. + */ +export const ClientCapabilitiesSchema = z.object({ + /** + * Experimental, non-standard capabilities that the client supports. + */ + experimental: z.record(z.string(), AssertObjectSchema).optional(), + /** + * Present if the client supports sampling from an LLM. + */ + sampling: z + .object({ + /** + * Present if the client supports context inclusion via includeContext parameter. + * If not declared, servers SHOULD only use `includeContext: "none"` (or omit it). + */ + context: AssertObjectSchema.optional(), + /** + * Present if the client supports tool use via tools and toolChoice parameters. + */ + tools: AssertObjectSchema.optional() + }) + .optional(), + /** + * Present if the client supports eliciting user input. + */ + elicitation: ElicitationCapabilitySchema.optional(), + /** + * Present if the client supports listing roots. + */ + roots: z + .object({ + /** + * Whether the client supports issuing notifications for changes to the roots list. + */ + listChanged: z.boolean().optional() + }) + .optional(), + /** + * Present if the client supports task creation. + */ + tasks: ClientTasksCapabilitySchema.optional(), + /** + * Extensions that the client supports. Keys are extension identifiers (vendor-prefix/extension-name). + */ + extensions: z.record(z.string(), AssertObjectSchema).optional() +}); +export const InitializeRequestParamsSchema = BaseRequestParamsSchema.extend({ + /** + * The latest version of the Model Context Protocol that the client supports. The client MAY decide to support older versions as well. + */ + protocolVersion: z.string(), + capabilities: ClientCapabilitiesSchema, + clientInfo: ImplementationSchema +}); +/** + * This request is sent from the client to the server when it first connects, asking it to begin initialization. + */ +export const InitializeRequestSchema = RequestSchema.extend({ + method: z.literal('initialize'), + params: InitializeRequestParamsSchema +}); +export const isInitializeRequest = (value) => InitializeRequestSchema.safeParse(value).success; +/** + * Capabilities that a server may support. Known capabilities are defined here, in this schema, but this is not a closed set: any server can define its own, additional capabilities. + */ +export const ServerCapabilitiesSchema = z.object({ + /** + * Experimental, non-standard capabilities that the server supports. + */ + experimental: z.record(z.string(), AssertObjectSchema).optional(), + /** + * Present if the server supports sending log messages to the client. + */ + logging: AssertObjectSchema.optional(), + /** + * Present if the server supports sending completions to the client. + */ + completions: AssertObjectSchema.optional(), + /** + * Present if the server offers any prompt templates. + */ + prompts: z + .object({ + /** + * Whether this server supports issuing notifications for changes to the prompt list. + */ + listChanged: z.boolean().optional() + }) + .optional(), + /** + * Present if the server offers any resources to read. + */ + resources: z + .object({ + /** + * Whether this server supports clients subscribing to resource updates. + */ + subscribe: z.boolean().optional(), + /** + * Whether this server supports issuing notifications for changes to the resource list. + */ + listChanged: z.boolean().optional() + }) + .optional(), + /** + * Present if the server offers any tools to call. + */ + tools: z + .object({ + /** + * Whether this server supports issuing notifications for changes to the tool list. + */ + listChanged: z.boolean().optional() + }) + .optional(), + /** + * Present if the server supports task creation. + */ + tasks: ServerTasksCapabilitySchema.optional(), + /** + * Extensions that the server supports. Keys are extension identifiers (vendor-prefix/extension-name). + */ + extensions: z.record(z.string(), AssertObjectSchema).optional() +}); +/** + * After receiving an initialize request from the client, the server sends this response. + */ +export const InitializeResultSchema = ResultSchema.extend({ + /** + * The version of the Model Context Protocol that the server wants to use. This may not match the version that the client requested. If the client cannot support this version, it MUST disconnect. + */ + protocolVersion: z.string(), + capabilities: ServerCapabilitiesSchema, + serverInfo: ImplementationSchema, + /** + * Instructions describing how to use the server and its features. + * + * This can be used by clients to improve the LLM's understanding of available tools, resources, etc. It can be thought of like a "hint" to the model. For example, this information MAY be added to the system prompt. + */ + instructions: z.string().optional() +}); +/** + * This notification is sent from the client to the server after initialization has finished. + */ +export const InitializedNotificationSchema = NotificationSchema.extend({ + method: z.literal('notifications/initialized'), + params: NotificationsParamsSchema.optional() +}); +export const isInitializedNotification = (value) => InitializedNotificationSchema.safeParse(value).success; +/* Ping */ +/** + * A ping, issued by either the server or the client, to check that the other party is still alive. The receiver must promptly respond, or else may be disconnected. + */ +export const PingRequestSchema = RequestSchema.extend({ + method: z.literal('ping'), + params: BaseRequestParamsSchema.optional() +}); +/* Progress notifications */ +export const ProgressSchema = z.object({ + /** + * The progress thus far. This should increase every time progress is made, even if the total is unknown. + */ + progress: z.number(), + /** + * Total number of items to process (or total progress required), if known. + */ + total: z.optional(z.number()), + /** + * An optional message describing the current progress. + */ + message: z.optional(z.string()) +}); +export const ProgressNotificationParamsSchema = z.object({ + ...NotificationsParamsSchema.shape, + ...ProgressSchema.shape, + /** + * The progress token which was given in the initial request, used to associate this notification with the request that is proceeding. + */ + progressToken: ProgressTokenSchema +}); +/** + * An out-of-band notification used to inform the receiver of a progress update for a long-running request. + * + * @category notifications/progress + */ +export const ProgressNotificationSchema = NotificationSchema.extend({ + method: z.literal('notifications/progress'), + params: ProgressNotificationParamsSchema +}); +export const PaginatedRequestParamsSchema = BaseRequestParamsSchema.extend({ + /** + * An opaque token representing the current pagination position. + * If provided, the server should return results starting after this cursor. + */ + cursor: CursorSchema.optional() +}); +/* Pagination */ +export const PaginatedRequestSchema = RequestSchema.extend({ + params: PaginatedRequestParamsSchema.optional() +}); +export const PaginatedResultSchema = ResultSchema.extend({ + /** + * An opaque token representing the pagination position after the last returned result. + * If present, there may be more results available. + */ + nextCursor: CursorSchema.optional() +}); +/** + * The status of a task. + * */ +export const TaskStatusSchema = z.enum(['working', 'input_required', 'completed', 'failed', 'cancelled']); +/* Tasks */ +/** + * A pollable state object associated with a request. + */ +export const TaskSchema = z.object({ + taskId: z.string(), + status: TaskStatusSchema, + /** + * Time in milliseconds to keep task results available after completion. + * If null, the task has unlimited lifetime until manually cleaned up. + */ + ttl: z.union([z.number(), z.null()]), + /** + * ISO 8601 timestamp when the task was created. + */ + createdAt: z.string(), + /** + * ISO 8601 timestamp when the task was last updated. + */ + lastUpdatedAt: z.string(), + pollInterval: z.optional(z.number()), + /** + * Optional diagnostic message for failed tasks or other status information. + */ + statusMessage: z.optional(z.string()) +}); +/** + * Result returned when a task is created, containing the task data wrapped in a task field. + */ +export const CreateTaskResultSchema = ResultSchema.extend({ + task: TaskSchema +}); +/** + * Parameters for task status notification. + */ +export const TaskStatusNotificationParamsSchema = NotificationsParamsSchema.merge(TaskSchema); +/** + * A notification sent when a task's status changes. + */ +export const TaskStatusNotificationSchema = NotificationSchema.extend({ + method: z.literal('notifications/tasks/status'), + params: TaskStatusNotificationParamsSchema +}); +/** + * A request to get the state of a specific task. + */ +export const GetTaskRequestSchema = RequestSchema.extend({ + method: z.literal('tasks/get'), + params: BaseRequestParamsSchema.extend({ + taskId: z.string() + }) +}); +/** + * The response to a tasks/get request. + */ +export const GetTaskResultSchema = ResultSchema.merge(TaskSchema); +/** + * A request to get the result of a specific task. + */ +export const GetTaskPayloadRequestSchema = RequestSchema.extend({ + method: z.literal('tasks/result'), + params: BaseRequestParamsSchema.extend({ + taskId: z.string() + }) +}); +/** + * The response to a tasks/result request. + * The structure matches the result type of the original request. + * For example, a tools/call task would return the CallToolResult structure. + * + */ +export const GetTaskPayloadResultSchema = ResultSchema.loose(); +/** + * A request to list tasks. + */ +export const ListTasksRequestSchema = PaginatedRequestSchema.extend({ + method: z.literal('tasks/list') +}); +/** + * The response to a tasks/list request. + */ +export const ListTasksResultSchema = PaginatedResultSchema.extend({ + tasks: z.array(TaskSchema) +}); +/** + * A request to cancel a specific task. + */ +export const CancelTaskRequestSchema = RequestSchema.extend({ + method: z.literal('tasks/cancel'), + params: BaseRequestParamsSchema.extend({ + taskId: z.string() + }) +}); +/** + * The response to a tasks/cancel request. + */ +export const CancelTaskResultSchema = ResultSchema.merge(TaskSchema); +/* Resources */ +/** + * The contents of a specific resource or sub-resource. + */ +export const ResourceContentsSchema = z.object({ + /** + * The URI of this resource. + */ + uri: z.string(), + /** + * The MIME type of this resource, if known. + */ + mimeType: z.optional(z.string()), + /** + * See [MCP specification](https://github.com/modelcontextprotocol/modelcontextprotocol/blob/47339c03c143bb4ec01a26e721a1b8fe66634ebe/docs/specification/draft/basic/index.mdx#general-fields) + * for notes on _meta usage. + */ + _meta: z.record(z.string(), z.unknown()).optional() +}); +export const TextResourceContentsSchema = ResourceContentsSchema.extend({ + /** + * The text of the item. This must only be set if the item can actually be represented as text (not binary data). + */ + text: z.string() +}); +/** + * A Zod schema for validating Base64 strings that is more performant and + * robust for very large inputs than the default regex-based check. It avoids + * stack overflows by using the native `atob` function for validation. + */ +const Base64Schema = z.string().refine(val => { + try { + // atob throws a DOMException if the string contains characters + // that are not part of the Base64 character set. + atob(val); + return true; + } + catch { + return false; + } +}, { message: 'Invalid Base64 string' }); +export const BlobResourceContentsSchema = ResourceContentsSchema.extend({ + /** + * A base64-encoded string representing the binary data of the item. + */ + blob: Base64Schema +}); +/** + * The sender or recipient of messages and data in a conversation. + */ +export const RoleSchema = z.enum(['user', 'assistant']); +/** + * Optional annotations providing clients additional context about a resource. + */ +export const AnnotationsSchema = z.object({ + /** + * Intended audience(s) for the resource. + */ + audience: z.array(RoleSchema).optional(), + /** + * Importance hint for the resource, from 0 (least) to 1 (most). + */ + priority: z.number().min(0).max(1).optional(), + /** + * ISO 8601 timestamp for the most recent modification. + */ + lastModified: z.iso.datetime({ offset: true }).optional() +}); +/** + * A known resource that the server is capable of reading. + */ +export const ResourceSchema = z.object({ + ...BaseMetadataSchema.shape, + ...IconsSchema.shape, + /** + * The URI of this resource. + */ + uri: z.string(), + /** + * A description of what this resource represents. + * + * This can be used by clients to improve the LLM's understanding of available resources. It can be thought of like a "hint" to the model. + */ + description: z.optional(z.string()), + /** + * The MIME type of this resource, if known. + */ + mimeType: z.optional(z.string()), + /** + * The size of the raw resource content, in bytes (i.e., before base64 encoding or any tokenization), if known. + * + * This can be used by Hosts to display file sizes and estimate context window usage. + */ + size: z.optional(z.number()), + /** + * Optional annotations for the client. + */ + annotations: AnnotationsSchema.optional(), + /** + * See [MCP specification](https://github.com/modelcontextprotocol/modelcontextprotocol/blob/47339c03c143bb4ec01a26e721a1b8fe66634ebe/docs/specification/draft/basic/index.mdx#general-fields) + * for notes on _meta usage. + */ + _meta: z.optional(z.looseObject({})) +}); +/** + * A template description for resources available on the server. + */ +export const ResourceTemplateSchema = z.object({ + ...BaseMetadataSchema.shape, + ...IconsSchema.shape, + /** + * A URI template (according to RFC 6570) that can be used to construct resource URIs. + */ + uriTemplate: z.string(), + /** + * A description of what this template is for. + * + * This can be used by clients to improve the LLM's understanding of available resources. It can be thought of like a "hint" to the model. + */ + description: z.optional(z.string()), + /** + * The MIME type for all resources that match this template. This should only be included if all resources matching this template have the same type. + */ + mimeType: z.optional(z.string()), + /** + * Optional annotations for the client. + */ + annotations: AnnotationsSchema.optional(), + /** + * See [MCP specification](https://github.com/modelcontextprotocol/modelcontextprotocol/blob/47339c03c143bb4ec01a26e721a1b8fe66634ebe/docs/specification/draft/basic/index.mdx#general-fields) + * for notes on _meta usage. + */ + _meta: z.optional(z.looseObject({})) +}); +/** + * Sent from the client to request a list of resources the server has. + */ +export const ListResourcesRequestSchema = PaginatedRequestSchema.extend({ + method: z.literal('resources/list') +}); +/** + * The server's response to a resources/list request from the client. + */ +export const ListResourcesResultSchema = PaginatedResultSchema.extend({ + resources: z.array(ResourceSchema) +}); +/** + * Sent from the client to request a list of resource templates the server has. + */ +export const ListResourceTemplatesRequestSchema = PaginatedRequestSchema.extend({ + method: z.literal('resources/templates/list') +}); +/** + * The server's response to a resources/templates/list request from the client. + */ +export const ListResourceTemplatesResultSchema = PaginatedResultSchema.extend({ + resourceTemplates: z.array(ResourceTemplateSchema) +}); +export const ResourceRequestParamsSchema = BaseRequestParamsSchema.extend({ + /** + * The URI of the resource to read. The URI can use any protocol; it is up to the server how to interpret it. + * + * @format uri + */ + uri: z.string() +}); +/** + * Parameters for a `resources/read` request. + */ +export const ReadResourceRequestParamsSchema = ResourceRequestParamsSchema; +/** + * Sent from the client to the server, to read a specific resource URI. + */ +export const ReadResourceRequestSchema = RequestSchema.extend({ + method: z.literal('resources/read'), + params: ReadResourceRequestParamsSchema +}); +/** + * The server's response to a resources/read request from the client. + */ +export const ReadResourceResultSchema = ResultSchema.extend({ + contents: z.array(z.union([TextResourceContentsSchema, BlobResourceContentsSchema])) +}); +/** + * An optional notification from the server to the client, informing it that the list of resources it can read from has changed. This may be issued by servers without any previous subscription from the client. + */ +export const ResourceListChangedNotificationSchema = NotificationSchema.extend({ + method: z.literal('notifications/resources/list_changed'), + params: NotificationsParamsSchema.optional() +}); +export const SubscribeRequestParamsSchema = ResourceRequestParamsSchema; +/** + * Sent from the client to request resources/updated notifications from the server whenever a particular resource changes. + */ +export const SubscribeRequestSchema = RequestSchema.extend({ + method: z.literal('resources/subscribe'), + params: SubscribeRequestParamsSchema +}); +export const UnsubscribeRequestParamsSchema = ResourceRequestParamsSchema; +/** + * Sent from the client to request cancellation of resources/updated notifications from the server. This should follow a previous resources/subscribe request. + */ +export const UnsubscribeRequestSchema = RequestSchema.extend({ + method: z.literal('resources/unsubscribe'), + params: UnsubscribeRequestParamsSchema +}); +/** + * Parameters for a `notifications/resources/updated` notification. + */ +export const ResourceUpdatedNotificationParamsSchema = NotificationsParamsSchema.extend({ + /** + * The URI of the resource that has been updated. This might be a sub-resource of the one that the client actually subscribed to. + */ + uri: z.string() +}); +/** + * A notification from the server to the client, informing it that a resource has changed and may need to be read again. This should only be sent if the client previously sent a resources/subscribe request. + */ +export const ResourceUpdatedNotificationSchema = NotificationSchema.extend({ + method: z.literal('notifications/resources/updated'), + params: ResourceUpdatedNotificationParamsSchema +}); +/* Prompts */ +/** + * Describes an argument that a prompt can accept. + */ +export const PromptArgumentSchema = z.object({ + /** + * The name of the argument. + */ + name: z.string(), + /** + * A human-readable description of the argument. + */ + description: z.optional(z.string()), + /** + * Whether this argument must be provided. + */ + required: z.optional(z.boolean()) +}); +/** + * A prompt or prompt template that the server offers. + */ +export const PromptSchema = z.object({ + ...BaseMetadataSchema.shape, + ...IconsSchema.shape, + /** + * An optional description of what this prompt provides + */ + description: z.optional(z.string()), + /** + * A list of arguments to use for templating the prompt. + */ + arguments: z.optional(z.array(PromptArgumentSchema)), + /** + * See [MCP specification](https://github.com/modelcontextprotocol/modelcontextprotocol/blob/47339c03c143bb4ec01a26e721a1b8fe66634ebe/docs/specification/draft/basic/index.mdx#general-fields) + * for notes on _meta usage. + */ + _meta: z.optional(z.looseObject({})) +}); +/** + * Sent from the client to request a list of prompts and prompt templates the server has. + */ +export const ListPromptsRequestSchema = PaginatedRequestSchema.extend({ + method: z.literal('prompts/list') +}); +/** + * The server's response to a prompts/list request from the client. + */ +export const ListPromptsResultSchema = PaginatedResultSchema.extend({ + prompts: z.array(PromptSchema) +}); +/** + * Parameters for a `prompts/get` request. + */ +export const GetPromptRequestParamsSchema = BaseRequestParamsSchema.extend({ + /** + * The name of the prompt or prompt template. + */ + name: z.string(), + /** + * Arguments to use for templating the prompt. + */ + arguments: z.record(z.string(), z.string()).optional() +}); +/** + * Used by the client to get a prompt provided by the server. + */ +export const GetPromptRequestSchema = RequestSchema.extend({ + method: z.literal('prompts/get'), + params: GetPromptRequestParamsSchema +}); +/** + * Text provided to or from an LLM. + */ +export const TextContentSchema = z.object({ + type: z.literal('text'), + /** + * The text content of the message. + */ + text: z.string(), + /** + * Optional annotations for the client. + */ + annotations: AnnotationsSchema.optional(), + /** + * See [MCP specification](https://github.com/modelcontextprotocol/modelcontextprotocol/blob/47339c03c143bb4ec01a26e721a1b8fe66634ebe/docs/specification/draft/basic/index.mdx#general-fields) + * for notes on _meta usage. + */ + _meta: z.record(z.string(), z.unknown()).optional() +}); +/** + * An image provided to or from an LLM. + */ +export const ImageContentSchema = z.object({ + type: z.literal('image'), + /** + * The base64-encoded image data. + */ + data: Base64Schema, + /** + * The MIME type of the image. Different providers may support different image types. + */ + mimeType: z.string(), + /** + * Optional annotations for the client. + */ + annotations: AnnotationsSchema.optional(), + /** + * See [MCP specification](https://github.com/modelcontextprotocol/modelcontextprotocol/blob/47339c03c143bb4ec01a26e721a1b8fe66634ebe/docs/specification/draft/basic/index.mdx#general-fields) + * for notes on _meta usage. + */ + _meta: z.record(z.string(), z.unknown()).optional() +}); +/** + * An Audio provided to or from an LLM. + */ +export const AudioContentSchema = z.object({ + type: z.literal('audio'), + /** + * The base64-encoded audio data. + */ + data: Base64Schema, + /** + * The MIME type of the audio. Different providers may support different audio types. + */ + mimeType: z.string(), + /** + * Optional annotations for the client. + */ + annotations: AnnotationsSchema.optional(), + /** + * See [MCP specification](https://github.com/modelcontextprotocol/modelcontextprotocol/blob/47339c03c143bb4ec01a26e721a1b8fe66634ebe/docs/specification/draft/basic/index.mdx#general-fields) + * for notes on _meta usage. + */ + _meta: z.record(z.string(), z.unknown()).optional() +}); +/** + * A tool call request from an assistant (LLM). + * Represents the assistant's request to use a tool. + */ +export const ToolUseContentSchema = z.object({ + type: z.literal('tool_use'), + /** + * The name of the tool to invoke. + * Must match a tool name from the request's tools array. + */ + name: z.string(), + /** + * Unique identifier for this tool call. + * Used to correlate with ToolResultContent in subsequent messages. + */ + id: z.string(), + /** + * Arguments to pass to the tool. + * Must conform to the tool's inputSchema. + */ + input: z.record(z.string(), z.unknown()), + /** + * See [MCP specification](https://github.com/modelcontextprotocol/modelcontextprotocol/blob/47339c03c143bb4ec01a26e721a1b8fe66634ebe/docs/specification/draft/basic/index.mdx#general-fields) + * for notes on _meta usage. + */ + _meta: z.record(z.string(), z.unknown()).optional() +}); +/** + * The contents of a resource, embedded into a prompt or tool call result. + */ +export const EmbeddedResourceSchema = z.object({ + type: z.literal('resource'), + resource: z.union([TextResourceContentsSchema, BlobResourceContentsSchema]), + /** + * Optional annotations for the client. + */ + annotations: AnnotationsSchema.optional(), + /** + * See [MCP specification](https://github.com/modelcontextprotocol/modelcontextprotocol/blob/47339c03c143bb4ec01a26e721a1b8fe66634ebe/docs/specification/draft/basic/index.mdx#general-fields) + * for notes on _meta usage. + */ + _meta: z.record(z.string(), z.unknown()).optional() +}); +/** + * A resource that the server is capable of reading, included in a prompt or tool call result. + * + * Note: resource links returned by tools are not guaranteed to appear in the results of `resources/list` requests. + */ +export const ResourceLinkSchema = ResourceSchema.extend({ + type: z.literal('resource_link') +}); +/** + * A content block that can be used in prompts and tool results. + */ +export const ContentBlockSchema = z.union([ + TextContentSchema, + ImageContentSchema, + AudioContentSchema, + ResourceLinkSchema, + EmbeddedResourceSchema +]); +/** + * Describes a message returned as part of a prompt. + */ +export const PromptMessageSchema = z.object({ + role: RoleSchema, + content: ContentBlockSchema +}); +/** + * The server's response to a prompts/get request from the client. + */ +export const GetPromptResultSchema = ResultSchema.extend({ + /** + * An optional description for the prompt. + */ + description: z.string().optional(), + messages: z.array(PromptMessageSchema) +}); +/** + * An optional notification from the server to the client, informing it that the list of prompts it offers has changed. This may be issued by servers without any previous subscription from the client. + */ +export const PromptListChangedNotificationSchema = NotificationSchema.extend({ + method: z.literal('notifications/prompts/list_changed'), + params: NotificationsParamsSchema.optional() +}); +/* Tools */ +/** + * Additional properties describing a Tool to clients. + * + * NOTE: all properties in ToolAnnotations are **hints**. + * They are not guaranteed to provide a faithful description of + * tool behavior (including descriptive properties like `title`). + * + * Clients should never make tool use decisions based on ToolAnnotations + * received from untrusted servers. + */ +export const ToolAnnotationsSchema = z.object({ + /** + * A human-readable title for the tool. + */ + title: z.string().optional(), + /** + * If true, the tool does not modify its environment. + * + * Default: false + */ + readOnlyHint: z.boolean().optional(), + /** + * If true, the tool may perform destructive updates to its environment. + * If false, the tool performs only additive updates. + * + * (This property is meaningful only when `readOnlyHint == false`) + * + * Default: true + */ + destructiveHint: z.boolean().optional(), + /** + * If true, calling the tool repeatedly with the same arguments + * will have no additional effect on the its environment. + * + * (This property is meaningful only when `readOnlyHint == false`) + * + * Default: false + */ + idempotentHint: z.boolean().optional(), + /** + * If true, this tool may interact with an "open world" of external + * entities. If false, the tool's domain of interaction is closed. + * For example, the world of a web search tool is open, whereas that + * of a memory tool is not. + * + * Default: true + */ + openWorldHint: z.boolean().optional() +}); +/** + * Execution-related properties for a tool. + */ +export const ToolExecutionSchema = z.object({ + /** + * Indicates the tool's preference for task-augmented execution. + * - "required": Clients MUST invoke the tool as a task + * - "optional": Clients MAY invoke the tool as a task or normal request + * - "forbidden": Clients MUST NOT attempt to invoke the tool as a task + * + * If not present, defaults to "forbidden". + */ + taskSupport: z.enum(['required', 'optional', 'forbidden']).optional() +}); +/** + * Definition for a tool the client can call. + */ +export const ToolSchema = z.object({ + ...BaseMetadataSchema.shape, + ...IconsSchema.shape, + /** + * A human-readable description of the tool. + */ + description: z.string().optional(), + /** + * A JSON Schema 2020-12 object defining the expected parameters for the tool. + * Must have type: 'object' at the root level per MCP spec. + */ + inputSchema: z + .object({ + type: z.literal('object'), + properties: z.record(z.string(), AssertObjectSchema).optional(), + required: z.array(z.string()).optional() + }) + .catchall(z.unknown()), + /** + * An optional JSON Schema 2020-12 object defining the structure of the tool's output + * returned in the structuredContent field of a CallToolResult. + * Must have type: 'object' at the root level per MCP spec. + */ + outputSchema: z + .object({ + type: z.literal('object'), + properties: z.record(z.string(), AssertObjectSchema).optional(), + required: z.array(z.string()).optional() + }) + .catchall(z.unknown()) + .optional(), + /** + * Optional additional tool information. + */ + annotations: ToolAnnotationsSchema.optional(), + /** + * Execution-related properties for this tool. + */ + execution: ToolExecutionSchema.optional(), + /** + * See [MCP specification](https://github.com/modelcontextprotocol/modelcontextprotocol/blob/47339c03c143bb4ec01a26e721a1b8fe66634ebe/docs/specification/draft/basic/index.mdx#general-fields) + * for notes on _meta usage. + */ + _meta: z.record(z.string(), z.unknown()).optional() +}); +/** + * Sent from the client to request a list of tools the server has. + */ +export const ListToolsRequestSchema = PaginatedRequestSchema.extend({ + method: z.literal('tools/list') +}); +/** + * The server's response to a tools/list request from the client. + */ +export const ListToolsResultSchema = PaginatedResultSchema.extend({ + tools: z.array(ToolSchema) +}); +/** + * The server's response to a tool call. + */ +export const CallToolResultSchema = ResultSchema.extend({ + /** + * A list of content objects that represent the result of the tool call. + * + * If the Tool does not define an outputSchema, this field MUST be present in the result. + * For backwards compatibility, this field is always present, but it may be empty. + */ + content: z.array(ContentBlockSchema).default([]), + /** + * An object containing structured tool output. + * + * If the Tool defines an outputSchema, this field MUST be present in the result, and contain a JSON object that matches the schema. + */ + structuredContent: z.record(z.string(), z.unknown()).optional(), + /** + * Whether the tool call ended in an error. + * + * If not set, this is assumed to be false (the call was successful). + * + * Any errors that originate from the tool SHOULD be reported inside the result + * object, with `isError` set to true, _not_ as an MCP protocol-level error + * response. Otherwise, the LLM would not be able to see that an error occurred + * and self-correct. + * + * However, any errors in _finding_ the tool, an error indicating that the + * server does not support tool calls, or any other exceptional conditions, + * should be reported as an MCP error response. + */ + isError: z.boolean().optional() +}); +/** + * CallToolResultSchema extended with backwards compatibility to protocol version 2024-10-07. + */ +export const CompatibilityCallToolResultSchema = CallToolResultSchema.or(ResultSchema.extend({ + toolResult: z.unknown() +})); +/** + * Parameters for a `tools/call` request. + */ +export const CallToolRequestParamsSchema = TaskAugmentedRequestParamsSchema.extend({ + /** + * The name of the tool to call. + */ + name: z.string(), + /** + * Arguments to pass to the tool. + */ + arguments: z.record(z.string(), z.unknown()).optional() +}); +/** + * Used by the client to invoke a tool provided by the server. + */ +export const CallToolRequestSchema = RequestSchema.extend({ + method: z.literal('tools/call'), + params: CallToolRequestParamsSchema +}); +/** + * An optional notification from the server to the client, informing it that the list of tools it offers has changed. This may be issued by servers without any previous subscription from the client. + */ +export const ToolListChangedNotificationSchema = NotificationSchema.extend({ + method: z.literal('notifications/tools/list_changed'), + params: NotificationsParamsSchema.optional() +}); +/** + * Base schema for list changed subscription options (without callback). + * Used internally for Zod validation of autoRefresh and debounceMs. + */ +export const ListChangedOptionsBaseSchema = z.object({ + /** + * If true, the list will be refreshed automatically when a list changed notification is received. + * The callback will be called with the updated list. + * + * If false, the callback will be called with null items, allowing manual refresh. + * + * @default true + */ + autoRefresh: z.boolean().default(true), + /** + * Debounce time in milliseconds for list changed notification processing. + * + * Multiple notifications received within this timeframe will only trigger one refresh. + * Set to 0 to disable debouncing. + * + * @default 300 + */ + debounceMs: z.number().int().nonnegative().default(300) +}); +/* Logging */ +/** + * The severity of a log message. + */ +export const LoggingLevelSchema = z.enum(['debug', 'info', 'notice', 'warning', 'error', 'critical', 'alert', 'emergency']); +/** + * Parameters for a `logging/setLevel` request. + */ +export const SetLevelRequestParamsSchema = BaseRequestParamsSchema.extend({ + /** + * The level of logging that the client wants to receive from the server. The server should send all logs at this level and higher (i.e., more severe) to the client as notifications/logging/message. + */ + level: LoggingLevelSchema +}); +/** + * A request from the client to the server, to enable or adjust logging. + */ +export const SetLevelRequestSchema = RequestSchema.extend({ + method: z.literal('logging/setLevel'), + params: SetLevelRequestParamsSchema +}); +/** + * Parameters for a `notifications/message` notification. + */ +export const LoggingMessageNotificationParamsSchema = NotificationsParamsSchema.extend({ + /** + * The severity of this log message. + */ + level: LoggingLevelSchema, + /** + * An optional name of the logger issuing this message. + */ + logger: z.string().optional(), + /** + * The data to be logged, such as a string message or an object. Any JSON serializable type is allowed here. + */ + data: z.unknown() +}); +/** + * Notification of a log message passed from server to client. If no logging/setLevel request has been sent from the client, the server MAY decide which messages to send automatically. + */ +export const LoggingMessageNotificationSchema = NotificationSchema.extend({ + method: z.literal('notifications/message'), + params: LoggingMessageNotificationParamsSchema +}); +/* Sampling */ +/** + * Hints to use for model selection. + */ +export const ModelHintSchema = z.object({ + /** + * A hint for a model name. + */ + name: z.string().optional() +}); +/** + * The server's preferences for model selection, requested of the client during sampling. + */ +export const ModelPreferencesSchema = z.object({ + /** + * Optional hints to use for model selection. + */ + hints: z.array(ModelHintSchema).optional(), + /** + * How much to prioritize cost when selecting a model. + */ + costPriority: z.number().min(0).max(1).optional(), + /** + * How much to prioritize sampling speed (latency) when selecting a model. + */ + speedPriority: z.number().min(0).max(1).optional(), + /** + * How much to prioritize intelligence and capabilities when selecting a model. + */ + intelligencePriority: z.number().min(0).max(1).optional() +}); +/** + * Controls tool usage behavior in sampling requests. + */ +export const ToolChoiceSchema = z.object({ + /** + * Controls when tools are used: + * - "auto": Model decides whether to use tools (default) + * - "required": Model MUST use at least one tool before completing + * - "none": Model MUST NOT use any tools + */ + mode: z.enum(['auto', 'required', 'none']).optional() +}); +/** + * The result of a tool execution, provided by the user (server). + * Represents the outcome of invoking a tool requested via ToolUseContent. + */ +export const ToolResultContentSchema = z.object({ + type: z.literal('tool_result'), + toolUseId: z.string().describe('The unique identifier for the corresponding tool call.'), + content: z.array(ContentBlockSchema).default([]), + structuredContent: z.object({}).loose().optional(), + isError: z.boolean().optional(), + /** + * See [MCP specification](https://github.com/modelcontextprotocol/modelcontextprotocol/blob/47339c03c143bb4ec01a26e721a1b8fe66634ebe/docs/specification/draft/basic/index.mdx#general-fields) + * for notes on _meta usage. + */ + _meta: z.record(z.string(), z.unknown()).optional() +}); +/** + * Basic content types for sampling responses (without tool use). + * Used for backwards-compatible CreateMessageResult when tools are not used. + */ +export const SamplingContentSchema = z.discriminatedUnion('type', [TextContentSchema, ImageContentSchema, AudioContentSchema]); +/** + * Content block types allowed in sampling messages. + * This includes text, image, audio, tool use requests, and tool results. + */ +export const SamplingMessageContentBlockSchema = z.discriminatedUnion('type', [ + TextContentSchema, + ImageContentSchema, + AudioContentSchema, + ToolUseContentSchema, + ToolResultContentSchema +]); +/** + * Describes a message issued to or received from an LLM API. + */ +export const SamplingMessageSchema = z.object({ + role: RoleSchema, + content: z.union([SamplingMessageContentBlockSchema, z.array(SamplingMessageContentBlockSchema)]), + /** + * See [MCP specification](https://github.com/modelcontextprotocol/modelcontextprotocol/blob/47339c03c143bb4ec01a26e721a1b8fe66634ebe/docs/specification/draft/basic/index.mdx#general-fields) + * for notes on _meta usage. + */ + _meta: z.record(z.string(), z.unknown()).optional() +}); +/** + * Parameters for a `sampling/createMessage` request. + */ +export const CreateMessageRequestParamsSchema = TaskAugmentedRequestParamsSchema.extend({ + messages: z.array(SamplingMessageSchema), + /** + * The server's preferences for which model to select. The client MAY modify or omit this request. + */ + modelPreferences: ModelPreferencesSchema.optional(), + /** + * An optional system prompt the server wants to use for sampling. The client MAY modify or omit this prompt. + */ + systemPrompt: z.string().optional(), + /** + * A request to include context from one or more MCP servers (including the caller), to be attached to the prompt. + * The client MAY ignore this request. + * + * Default is "none". Values "thisServer" and "allServers" are soft-deprecated. Servers SHOULD only use these values if the client + * declares ClientCapabilities.sampling.context. These values may be removed in future spec releases. + */ + includeContext: z.enum(['none', 'thisServer', 'allServers']).optional(), + temperature: z.number().optional(), + /** + * The requested maximum number of tokens to sample (to prevent runaway completions). + * + * The client MAY choose to sample fewer tokens than the requested maximum. + */ + maxTokens: z.number().int(), + stopSequences: z.array(z.string()).optional(), + /** + * Optional metadata to pass through to the LLM provider. The format of this metadata is provider-specific. + */ + metadata: AssertObjectSchema.optional(), + /** + * Tools that the model may use during generation. + * The client MUST return an error if this field is provided but ClientCapabilities.sampling.tools is not declared. + */ + tools: z.array(ToolSchema).optional(), + /** + * Controls how the model uses tools. + * The client MUST return an error if this field is provided but ClientCapabilities.sampling.tools is not declared. + * Default is `{ mode: "auto" }`. + */ + toolChoice: ToolChoiceSchema.optional() +}); +/** + * A request from the server to sample an LLM via the client. The client has full discretion over which model to select. The client should also inform the user before beginning sampling, to allow them to inspect the request (human in the loop) and decide whether to approve it. + */ +export const CreateMessageRequestSchema = RequestSchema.extend({ + method: z.literal('sampling/createMessage'), + params: CreateMessageRequestParamsSchema +}); +/** + * The client's response to a sampling/create_message request from the server. + * This is the backwards-compatible version that returns single content (no arrays). + * Used when the request does not include tools. + */ +export const CreateMessageResultSchema = ResultSchema.extend({ + /** + * The name of the model that generated the message. + */ + model: z.string(), + /** + * The reason why sampling stopped, if known. + * + * Standard values: + * - "endTurn": Natural end of the assistant's turn + * - "stopSequence": A stop sequence was encountered + * - "maxTokens": Maximum token limit was reached + * + * This field is an open string to allow for provider-specific stop reasons. + */ + stopReason: z.optional(z.enum(['endTurn', 'stopSequence', 'maxTokens']).or(z.string())), + role: RoleSchema, + /** + * Response content. Single content block (text, image, or audio). + */ + content: SamplingContentSchema +}); +/** + * The client's response to a sampling/create_message request when tools were provided. + * This version supports array content for tool use flows. + */ +export const CreateMessageResultWithToolsSchema = ResultSchema.extend({ + /** + * The name of the model that generated the message. + */ + model: z.string(), + /** + * The reason why sampling stopped, if known. + * + * Standard values: + * - "endTurn": Natural end of the assistant's turn + * - "stopSequence": A stop sequence was encountered + * - "maxTokens": Maximum token limit was reached + * - "toolUse": The model wants to use one or more tools + * + * This field is an open string to allow for provider-specific stop reasons. + */ + stopReason: z.optional(z.enum(['endTurn', 'stopSequence', 'maxTokens', 'toolUse']).or(z.string())), + role: RoleSchema, + /** + * Response content. May be a single block or array. May include ToolUseContent if stopReason is "toolUse". + */ + content: z.union([SamplingMessageContentBlockSchema, z.array(SamplingMessageContentBlockSchema)]) +}); +/* Elicitation */ +/** + * Primitive schema definition for boolean fields. + */ +export const BooleanSchemaSchema = z.object({ + type: z.literal('boolean'), + title: z.string().optional(), + description: z.string().optional(), + default: z.boolean().optional() +}); +/** + * Primitive schema definition for string fields. + */ +export const StringSchemaSchema = z.object({ + type: z.literal('string'), + title: z.string().optional(), + description: z.string().optional(), + minLength: z.number().optional(), + maxLength: z.number().optional(), + format: z.enum(['email', 'uri', 'date', 'date-time']).optional(), + default: z.string().optional() +}); +/** + * Primitive schema definition for number fields. + */ +export const NumberSchemaSchema = z.object({ + type: z.enum(['number', 'integer']), + title: z.string().optional(), + description: z.string().optional(), + minimum: z.number().optional(), + maximum: z.number().optional(), + default: z.number().optional() +}); +/** + * Schema for single-selection enumeration without display titles for options. + */ +export const UntitledSingleSelectEnumSchemaSchema = z.object({ + type: z.literal('string'), + title: z.string().optional(), + description: z.string().optional(), + enum: z.array(z.string()), + default: z.string().optional() +}); +/** + * Schema for single-selection enumeration with display titles for each option. + */ +export const TitledSingleSelectEnumSchemaSchema = z.object({ + type: z.literal('string'), + title: z.string().optional(), + description: z.string().optional(), + oneOf: z.array(z.object({ + const: z.string(), + title: z.string() + })), + default: z.string().optional() +}); +/** + * Use TitledSingleSelectEnumSchema instead. + * This interface will be removed in a future version. + */ +export const LegacyTitledEnumSchemaSchema = z.object({ + type: z.literal('string'), + title: z.string().optional(), + description: z.string().optional(), + enum: z.array(z.string()), + enumNames: z.array(z.string()).optional(), + default: z.string().optional() +}); +// Combined single selection enumeration +export const SingleSelectEnumSchemaSchema = z.union([UntitledSingleSelectEnumSchemaSchema, TitledSingleSelectEnumSchemaSchema]); +/** + * Schema for multiple-selection enumeration without display titles for options. + */ +export const UntitledMultiSelectEnumSchemaSchema = z.object({ + type: z.literal('array'), + title: z.string().optional(), + description: z.string().optional(), + minItems: z.number().optional(), + maxItems: z.number().optional(), + items: z.object({ + type: z.literal('string'), + enum: z.array(z.string()) + }), + default: z.array(z.string()).optional() +}); +/** + * Schema for multiple-selection enumeration with display titles for each option. + */ +export const TitledMultiSelectEnumSchemaSchema = z.object({ + type: z.literal('array'), + title: z.string().optional(), + description: z.string().optional(), + minItems: z.number().optional(), + maxItems: z.number().optional(), + items: z.object({ + anyOf: z.array(z.object({ + const: z.string(), + title: z.string() + })) + }), + default: z.array(z.string()).optional() +}); +/** + * Combined schema for multiple-selection enumeration + */ +export const MultiSelectEnumSchemaSchema = z.union([UntitledMultiSelectEnumSchemaSchema, TitledMultiSelectEnumSchemaSchema]); +/** + * Primitive schema definition for enum fields. + */ +export const EnumSchemaSchema = z.union([LegacyTitledEnumSchemaSchema, SingleSelectEnumSchemaSchema, MultiSelectEnumSchemaSchema]); +/** + * Union of all primitive schema definitions. + */ +export const PrimitiveSchemaDefinitionSchema = z.union([EnumSchemaSchema, BooleanSchemaSchema, StringSchemaSchema, NumberSchemaSchema]); +/** + * Parameters for an `elicitation/create` request for form-based elicitation. + */ +export const ElicitRequestFormParamsSchema = TaskAugmentedRequestParamsSchema.extend({ + /** + * The elicitation mode. + * + * Optional for backward compatibility. Clients MUST treat missing mode as "form". + */ + mode: z.literal('form').optional(), + /** + * The message to present to the user describing what information is being requested. + */ + message: z.string(), + /** + * A restricted subset of JSON Schema. + * Only top-level properties are allowed, without nesting. + */ + requestedSchema: z.object({ + type: z.literal('object'), + properties: z.record(z.string(), PrimitiveSchemaDefinitionSchema), + required: z.array(z.string()).optional() + }) +}); +/** + * Parameters for an `elicitation/create` request for URL-based elicitation. + */ +export const ElicitRequestURLParamsSchema = TaskAugmentedRequestParamsSchema.extend({ + /** + * The elicitation mode. + */ + mode: z.literal('url'), + /** + * The message to present to the user explaining why the interaction is needed. + */ + message: z.string(), + /** + * The ID of the elicitation, which must be unique within the context of the server. + * The client MUST treat this ID as an opaque value. + */ + elicitationId: z.string(), + /** + * The URL that the user should navigate to. + */ + url: z.string().url() +}); +/** + * The parameters for a request to elicit additional information from the user via the client. + */ +export const ElicitRequestParamsSchema = z.union([ElicitRequestFormParamsSchema, ElicitRequestURLParamsSchema]); +/** + * A request from the server to elicit user input via the client. + * The client should present the message and form fields to the user (form mode) + * or navigate to a URL (URL mode). + */ +export const ElicitRequestSchema = RequestSchema.extend({ + method: z.literal('elicitation/create'), + params: ElicitRequestParamsSchema +}); +/** + * Parameters for a `notifications/elicitation/complete` notification. + * + * @category notifications/elicitation/complete + */ +export const ElicitationCompleteNotificationParamsSchema = NotificationsParamsSchema.extend({ + /** + * The ID of the elicitation that completed. + */ + elicitationId: z.string() +}); +/** + * A notification from the server to the client, informing it of a completion of an out-of-band elicitation request. + * + * @category notifications/elicitation/complete + */ +export const ElicitationCompleteNotificationSchema = NotificationSchema.extend({ + method: z.literal('notifications/elicitation/complete'), + params: ElicitationCompleteNotificationParamsSchema +}); +/** + * The client's response to an elicitation/create request from the server. + */ +export const ElicitResultSchema = ResultSchema.extend({ + /** + * The user action in response to the elicitation. + * - "accept": User submitted the form/confirmed the action + * - "decline": User explicitly decline the action + * - "cancel": User dismissed without making an explicit choice + */ + action: z.enum(['accept', 'decline', 'cancel']), + /** + * The submitted form data, only present when action is "accept". + * Contains values matching the requested schema. + * Per MCP spec, content is "typically omitted" for decline/cancel actions. + * We normalize null to undefined for leniency while maintaining type compatibility. + */ + content: z.preprocess(val => (val === null ? undefined : val), z.record(z.string(), z.union([z.string(), z.number(), z.boolean(), z.array(z.string())])).optional()) +}); +/* Autocomplete */ +/** + * A reference to a resource or resource template definition. + */ +export const ResourceTemplateReferenceSchema = z.object({ + type: z.literal('ref/resource'), + /** + * The URI or URI template of the resource. + */ + uri: z.string() +}); +/** + * @deprecated Use ResourceTemplateReferenceSchema instead + */ +export const ResourceReferenceSchema = ResourceTemplateReferenceSchema; +/** + * Identifies a prompt. + */ +export const PromptReferenceSchema = z.object({ + type: z.literal('ref/prompt'), + /** + * The name of the prompt or prompt template + */ + name: z.string() +}); +/** + * Parameters for a `completion/complete` request. + */ +export const CompleteRequestParamsSchema = BaseRequestParamsSchema.extend({ + ref: z.union([PromptReferenceSchema, ResourceTemplateReferenceSchema]), + /** + * The argument's information + */ + argument: z.object({ + /** + * The name of the argument + */ + name: z.string(), + /** + * The value of the argument to use for completion matching. + */ + value: z.string() + }), + context: z + .object({ + /** + * Previously-resolved variables in a URI template or prompt. + */ + arguments: z.record(z.string(), z.string()).optional() + }) + .optional() +}); +/** + * A request from the client to the server, to ask for completion options. + */ +export const CompleteRequestSchema = RequestSchema.extend({ + method: z.literal('completion/complete'), + params: CompleteRequestParamsSchema +}); +export function assertCompleteRequestPrompt(request) { + if (request.params.ref.type !== 'ref/prompt') { + throw new TypeError(`Expected CompleteRequestPrompt, but got ${request.params.ref.type}`); + } + void request; +} +export function assertCompleteRequestResourceTemplate(request) { + if (request.params.ref.type !== 'ref/resource') { + throw new TypeError(`Expected CompleteRequestResourceTemplate, but got ${request.params.ref.type}`); + } + void request; +} +/** + * The server's response to a completion/complete request + */ +export const CompleteResultSchema = ResultSchema.extend({ + completion: z.looseObject({ + /** + * An array of completion values. Must not exceed 100 items. + */ + values: z.array(z.string()).max(100), + /** + * The total number of completion options available. This can exceed the number of values actually sent in the response. + */ + total: z.optional(z.number().int()), + /** + * Indicates whether there are additional completion options beyond those provided in the current response, even if the exact total is unknown. + */ + hasMore: z.optional(z.boolean()) + }) +}); +/* Roots */ +/** + * Represents a root directory or file that the server can operate on. + */ +export const RootSchema = z.object({ + /** + * The URI identifying the root. This *must* start with file:// for now. + */ + uri: z.string().startsWith('file://'), + /** + * An optional name for the root. + */ + name: z.string().optional(), + /** + * See [MCP specification](https://github.com/modelcontextprotocol/modelcontextprotocol/blob/47339c03c143bb4ec01a26e721a1b8fe66634ebe/docs/specification/draft/basic/index.mdx#general-fields) + * for notes on _meta usage. + */ + _meta: z.record(z.string(), z.unknown()).optional() +}); +/** + * Sent from the server to request a list of root URIs from the client. + */ +export const ListRootsRequestSchema = RequestSchema.extend({ + method: z.literal('roots/list'), + params: BaseRequestParamsSchema.optional() +}); +/** + * The client's response to a roots/list request from the server. + */ +export const ListRootsResultSchema = ResultSchema.extend({ + roots: z.array(RootSchema) +}); +/** + * A notification from the client to the server, informing it that the list of roots has changed. + */ +export const RootsListChangedNotificationSchema = NotificationSchema.extend({ + method: z.literal('notifications/roots/list_changed'), + params: NotificationsParamsSchema.optional() +}); +/* Client messages */ +export const ClientRequestSchema = z.union([ + PingRequestSchema, + InitializeRequestSchema, + CompleteRequestSchema, + SetLevelRequestSchema, + GetPromptRequestSchema, + ListPromptsRequestSchema, + ListResourcesRequestSchema, + ListResourceTemplatesRequestSchema, + ReadResourceRequestSchema, + SubscribeRequestSchema, + UnsubscribeRequestSchema, + CallToolRequestSchema, + ListToolsRequestSchema, + GetTaskRequestSchema, + GetTaskPayloadRequestSchema, + ListTasksRequestSchema, + CancelTaskRequestSchema +]); +export const ClientNotificationSchema = z.union([ + CancelledNotificationSchema, + ProgressNotificationSchema, + InitializedNotificationSchema, + RootsListChangedNotificationSchema, + TaskStatusNotificationSchema +]); +export const ClientResultSchema = z.union([ + EmptyResultSchema, + CreateMessageResultSchema, + CreateMessageResultWithToolsSchema, + ElicitResultSchema, + ListRootsResultSchema, + GetTaskResultSchema, + ListTasksResultSchema, + CreateTaskResultSchema +]); +/* Server messages */ +export const ServerRequestSchema = z.union([ + PingRequestSchema, + CreateMessageRequestSchema, + ElicitRequestSchema, + ListRootsRequestSchema, + GetTaskRequestSchema, + GetTaskPayloadRequestSchema, + ListTasksRequestSchema, + CancelTaskRequestSchema +]); +export const ServerNotificationSchema = z.union([ + CancelledNotificationSchema, + ProgressNotificationSchema, + LoggingMessageNotificationSchema, + ResourceUpdatedNotificationSchema, + ResourceListChangedNotificationSchema, + ToolListChangedNotificationSchema, + PromptListChangedNotificationSchema, + TaskStatusNotificationSchema, + ElicitationCompleteNotificationSchema +]); +export const ServerResultSchema = z.union([ + EmptyResultSchema, + InitializeResultSchema, + CompleteResultSchema, + GetPromptResultSchema, + ListPromptsResultSchema, + ListResourcesResultSchema, + ListResourceTemplatesResultSchema, + ReadResourceResultSchema, + CallToolResultSchema, + ListToolsResultSchema, + GetTaskResultSchema, + ListTasksResultSchema, + CreateTaskResultSchema +]); +export class McpError extends Error { + constructor(code, message, data) { + super(`MCP error ${code}: ${message}`); + this.code = code; + this.data = data; + this.name = 'McpError'; + } + /** + * Factory method to create the appropriate error type based on the error code and data + */ + static fromError(code, message, data) { + // Check for specific error types + if (code === ErrorCode.UrlElicitationRequired && data) { + const errorData = data; + if (errorData.elicitations) { + return new UrlElicitationRequiredError(errorData.elicitations, message); + } + } + // Default to generic McpError + return new McpError(code, message, data); + } +} +/** + * Specialized error type when a tool requires a URL mode elicitation. + * This makes it nicer for the client to handle since there is specific data to work with instead of just a code to check against. + */ +export class UrlElicitationRequiredError extends McpError { + constructor(elicitations, message = `URL elicitation${elicitations.length > 1 ? 's' : ''} required`) { + super(ErrorCode.UrlElicitationRequired, message, { + elicitations: elicitations + }); + } + get elicitations() { + return this.data?.elicitations ?? []; + } +} +//# sourceMappingURL=types.js.map \ No newline at end of file diff --git a/loan-advisor-chatgpt-app/node_modules/@modelcontextprotocol/sdk/dist/esm/types.js.map b/loan-advisor-chatgpt-app/node_modules/@modelcontextprotocol/sdk/dist/esm/types.js.map new file mode 100644 index 0000000000000000000000000000000000000000..15afe12bcb9bd97be0937c7a952cba538acd6e6a --- /dev/null +++ b/loan-advisor-chatgpt-app/node_modules/@modelcontextprotocol/sdk/dist/esm/types.js.map @@ -0,0 +1 @@ +{"version":3,"file":"types.js","sourceRoot":"","sources":["../../src/types.ts"],"names":[],"mappings":"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"} \ No newline at end of file diff --git a/loan-advisor-chatgpt-app/node_modules/@modelcontextprotocol/sdk/dist/esm/validation/ajv-provider.d.ts b/loan-advisor-chatgpt-app/node_modules/@modelcontextprotocol/sdk/dist/esm/validation/ajv-provider.d.ts new file mode 100644 index 0000000000000000000000000000000000000000..952ee68dfcb764ca6e88dd05ea61fff24c919d69 --- /dev/null +++ b/loan-advisor-chatgpt-app/node_modules/@modelcontextprotocol/sdk/dist/esm/validation/ajv-provider.d.ts @@ -0,0 +1,53 @@ +/** + * AJV-based JSON Schema validator provider + */ +import Ajv from 'ajv'; +import type { JsonSchemaType, JsonSchemaValidator, jsonSchemaValidator } from './types.js'; +/** + * @example + * ```typescript + * // Use with default AJV instance (recommended) + * import { AjvJsonSchemaValidator } from '@modelcontextprotocol/sdk/validation/ajv'; + * const validator = new AjvJsonSchemaValidator(); + * + * // Use with custom AJV instance + * import { Ajv } from 'ajv'; + * const ajv = new Ajv({ strict: true, allErrors: true }); + * const validator = new AjvJsonSchemaValidator(ajv); + * ``` + */ +export declare class AjvJsonSchemaValidator implements jsonSchemaValidator { + private _ajv; + /** + * Create an AJV validator + * + * @param ajv - Optional pre-configured AJV instance. If not provided, a default instance will be created. + * + * @example + * ```typescript + * // Use default configuration (recommended for most cases) + * import { AjvJsonSchemaValidator } from '@modelcontextprotocol/sdk/validation/ajv'; + * const validator = new AjvJsonSchemaValidator(); + * + * // Or provide custom AJV instance for advanced configuration + * import { Ajv } from 'ajv'; + * import addFormats from 'ajv-formats'; + * + * const ajv = new Ajv({ validateFormats: true }); + * addFormats(ajv); + * const validator = new AjvJsonSchemaValidator(ajv); + * ``` + */ + constructor(ajv?: Ajv); + /** + * Create a validator for the given JSON Schema + * + * The validator is compiled once and can be reused multiple times. + * If the schema has an $id, it will be cached by AJV automatically. + * + * @param schema - Standard JSON Schema object + * @returns A validator function that validates input data + */ + getValidator(schema: JsonSchemaType): JsonSchemaValidator; +} +//# sourceMappingURL=ajv-provider.d.ts.map \ No newline at end of file diff --git a/loan-advisor-chatgpt-app/node_modules/@modelcontextprotocol/sdk/dist/esm/validation/ajv-provider.d.ts.map b/loan-advisor-chatgpt-app/node_modules/@modelcontextprotocol/sdk/dist/esm/validation/ajv-provider.d.ts.map new file mode 100644 index 0000000000000000000000000000000000000000..6704c4d927d9b3480cd8b4c59015f8f2c03c436b --- /dev/null +++ b/loan-advisor-chatgpt-app/node_modules/@modelcontextprotocol/sdk/dist/esm/validation/ajv-provider.d.ts.map @@ -0,0 +1 @@ +{"version":3,"file":"ajv-provider.d.ts","sourceRoot":"","sources":["../../../src/validation/ajv-provider.ts"],"names":[],"mappings":"AAAA;;GAEG;AAEH,OAAO,GAAG,MAAM,KAAK,CAAC;AAEtB,OAAO,KAAK,EAAE,cAAc,EAAE,mBAAmB,EAA6B,mBAAmB,EAAE,MAAM,YAAY,CAAC;AAgBtH;;;;;;;;;;;;GAYG;AACH,qBAAa,sBAAuB,YAAW,mBAAmB;IAC9D,OAAO,CAAC,IAAI,CAAM;IAElB;;;;;;;;;;;;;;;;;;;OAmBG;gBACS,GAAG,CAAC,EAAE,GAAG;IAIrB;;;;;;;;OAQG;IACH,YAAY,CAAC,CAAC,EAAE,MAAM,EAAE,cAAc,GAAG,mBAAmB,CAAC,CAAC,CAAC;CAyBlE"} \ No newline at end of file diff --git a/loan-advisor-chatgpt-app/node_modules/@modelcontextprotocol/sdk/dist/esm/validation/ajv-provider.js b/loan-advisor-chatgpt-app/node_modules/@modelcontextprotocol/sdk/dist/esm/validation/ajv-provider.js new file mode 100644 index 0000000000000000000000000000000000000000..a0ab067407957383f8431aa98e5cdc7f17b007a3 --- /dev/null +++ b/loan-advisor-chatgpt-app/node_modules/@modelcontextprotocol/sdk/dist/esm/validation/ajv-provider.js @@ -0,0 +1,87 @@ +/** + * AJV-based JSON Schema validator provider + */ +import Ajv from 'ajv'; +import _addFormats from 'ajv-formats'; +function createDefaultAjvInstance() { + const ajv = new Ajv({ + strict: false, + validateFormats: true, + validateSchema: false, + allErrors: true + }); + const addFormats = _addFormats; + addFormats(ajv); + return ajv; +} +/** + * @example + * ```typescript + * // Use with default AJV instance (recommended) + * import { AjvJsonSchemaValidator } from '@modelcontextprotocol/sdk/validation/ajv'; + * const validator = new AjvJsonSchemaValidator(); + * + * // Use with custom AJV instance + * import { Ajv } from 'ajv'; + * const ajv = new Ajv({ strict: true, allErrors: true }); + * const validator = new AjvJsonSchemaValidator(ajv); + * ``` + */ +export class AjvJsonSchemaValidator { + /** + * Create an AJV validator + * + * @param ajv - Optional pre-configured AJV instance. If not provided, a default instance will be created. + * + * @example + * ```typescript + * // Use default configuration (recommended for most cases) + * import { AjvJsonSchemaValidator } from '@modelcontextprotocol/sdk/validation/ajv'; + * const validator = new AjvJsonSchemaValidator(); + * + * // Or provide custom AJV instance for advanced configuration + * import { Ajv } from 'ajv'; + * import addFormats from 'ajv-formats'; + * + * const ajv = new Ajv({ validateFormats: true }); + * addFormats(ajv); + * const validator = new AjvJsonSchemaValidator(ajv); + * ``` + */ + constructor(ajv) { + this._ajv = ajv ?? createDefaultAjvInstance(); + } + /** + * Create a validator for the given JSON Schema + * + * The validator is compiled once and can be reused multiple times. + * If the schema has an $id, it will be cached by AJV automatically. + * + * @param schema - Standard JSON Schema object + * @returns A validator function that validates input data + */ + getValidator(schema) { + // Check if schema has $id and is already compiled/cached + const ajvValidator = '$id' in schema && typeof schema.$id === 'string' + ? (this._ajv.getSchema(schema.$id) ?? this._ajv.compile(schema)) + : this._ajv.compile(schema); + return (input) => { + const valid = ajvValidator(input); + if (valid) { + return { + valid: true, + data: input, + errorMessage: undefined + }; + } + else { + return { + valid: false, + data: undefined, + errorMessage: this._ajv.errorsText(ajvValidator.errors) + }; + } + }; + } +} +//# sourceMappingURL=ajv-provider.js.map \ No newline at end of file diff --git a/loan-advisor-chatgpt-app/node_modules/@modelcontextprotocol/sdk/dist/esm/validation/ajv-provider.js.map b/loan-advisor-chatgpt-app/node_modules/@modelcontextprotocol/sdk/dist/esm/validation/ajv-provider.js.map new file mode 100644 index 0000000000000000000000000000000000000000..7b01905975b15cae1cce15f29f43084aabf21537 --- /dev/null +++ b/loan-advisor-chatgpt-app/node_modules/@modelcontextprotocol/sdk/dist/esm/validation/ajv-provider.js.map @@ -0,0 +1 @@ +{"version":3,"file":"ajv-provider.js","sourceRoot":"","sources":["../../../src/validation/ajv-provider.ts"],"names":[],"mappings":"AAAA;;GAEG;AAEH,OAAO,GAAG,MAAM,KAAK,CAAC;AACtB,OAAO,WAAW,MAAM,aAAa,CAAC;AAGtC,SAAS,wBAAwB;IAC7B,MAAM,GAAG,GAAG,IAAI,GAAG,CAAC;QAChB,MAAM,EAAE,KAAK;QACb,eAAe,EAAE,IAAI;QACrB,cAAc,EAAE,KAAK;QACrB,SAAS,EAAE,IAAI;KAClB,CAAC,CAAC;IAEH,MAAM,UAAU,GAAG,WAAoD,CAAC;IACxE,UAAU,CAAC,GAAG,CAAC,CAAC;IAEhB,OAAO,GAAG,CAAC;AACf,CAAC;AAED;;;;;;;;;;;;GAYG;AACH,MAAM,OAAO,sBAAsB;IAG/B;;;;;;;;;;;;;;;;;;;OAmBG;IACH,YAAY,GAAS;QACjB,IAAI,CAAC,IAAI,GAAG,GAAG,IAAI,wBAAwB,EAAE,CAAC;IAClD,CAAC;IAED;;;;;;;;OAQG;IACH,YAAY,CAAI,MAAsB;QAClC,yDAAyD;QACzD,MAAM,YAAY,GACd,KAAK,IAAI,MAAM,IAAI,OAAO,MAAM,CAAC,GAAG,KAAK,QAAQ;YAC7C,CAAC,CAAC,CAAC,IAAI,CAAC,IAAI,CAAC,SAAS,CAAC,MAAM,CAAC,GAAG,CAAC,IAAI,IAAI,CAAC,IAAI,CAAC,OAAO,CAAC,MAAM,CAAC,CAAC;YAChE,CAAC,CAAC,IAAI,CAAC,IAAI,CAAC,OAAO,CAAC,MAAM,CAAC,CAAC;QAEpC,OAAO,CAAC,KAAc,EAAgC,EAAE;YACpD,MAAM,KAAK,GAAG,YAAY,CAAC,KAAK,CAAC,CAAC;YAElC,IAAI,KAAK,EAAE,CAAC;gBACR,OAAO;oBACH,KAAK,EAAE,IAAI;oBACX,IAAI,EAAE,KAAU;oBAChB,YAAY,EAAE,SAAS;iBAC1B,CAAC;YACN,CAAC;iBAAM,CAAC;gBACJ,OAAO;oBACH,KAAK,EAAE,KAAK;oBACZ,IAAI,EAAE,SAAS;oBACf,YAAY,EAAE,IAAI,CAAC,IAAI,CAAC,UAAU,CAAC,YAAY,CAAC,MAAM,CAAC;iBAC1D,CAAC;YACN,CAAC;QACL,CAAC,CAAC;IACN,CAAC;CACJ"} \ No newline at end of file diff --git a/loan-advisor-chatgpt-app/node_modules/@modelcontextprotocol/sdk/dist/esm/validation/cfworker-provider.d.ts b/loan-advisor-chatgpt-app/node_modules/@modelcontextprotocol/sdk/dist/esm/validation/cfworker-provider.d.ts new file mode 100644 index 0000000000000000000000000000000000000000..89c244a609434abb1c62cd97adc54636460d34a8 --- /dev/null +++ b/loan-advisor-chatgpt-app/node_modules/@modelcontextprotocol/sdk/dist/esm/validation/cfworker-provider.d.ts @@ -0,0 +1,51 @@ +/** + * Cloudflare Worker-compatible JSON Schema validator provider + * + * This provider uses @cfworker/json-schema for validation without code generation, + * making it compatible with edge runtimes like Cloudflare Workers that restrict + * eval and new Function. + */ +import type { JsonSchemaType, JsonSchemaValidator, jsonSchemaValidator } from './types.js'; +/** + * JSON Schema draft version supported by @cfworker/json-schema + */ +export type CfWorkerSchemaDraft = '4' | '7' | '2019-09' | '2020-12'; +/** + * + * @example + * ```typescript + * // Use with default configuration (2020-12, shortcircuit) + * const validator = new CfWorkerJsonSchemaValidator(); + * + * // Use with custom configuration + * const validator = new CfWorkerJsonSchemaValidator({ + * draft: '2020-12', + * shortcircuit: false // Report all errors + * }); + * ``` + */ +export declare class CfWorkerJsonSchemaValidator implements jsonSchemaValidator { + private shortcircuit; + private draft; + /** + * Create a validator + * + * @param options - Configuration options + * @param options.shortcircuit - If true, stop validation after first error (default: true) + * @param options.draft - JSON Schema draft version to use (default: '2020-12') + */ + constructor(options?: { + shortcircuit?: boolean; + draft?: CfWorkerSchemaDraft; + }); + /** + * Create a validator for the given JSON Schema + * + * Unlike AJV, this validator is not cached internally + * + * @param schema - Standard JSON Schema object + * @returns A validator function that validates input data + */ + getValidator(schema: JsonSchemaType): JsonSchemaValidator; +} +//# sourceMappingURL=cfworker-provider.d.ts.map \ No newline at end of file diff --git a/loan-advisor-chatgpt-app/node_modules/@modelcontextprotocol/sdk/dist/esm/validation/cfworker-provider.d.ts.map b/loan-advisor-chatgpt-app/node_modules/@modelcontextprotocol/sdk/dist/esm/validation/cfworker-provider.d.ts.map new file mode 100644 index 0000000000000000000000000000000000000000..ce404d92fcadb2cfaebcde5af67fdf4240fce4c1 --- /dev/null +++ b/loan-advisor-chatgpt-app/node_modules/@modelcontextprotocol/sdk/dist/esm/validation/cfworker-provider.d.ts.map @@ -0,0 +1 @@ +{"version":3,"file":"cfworker-provider.d.ts","sourceRoot":"","sources":["../../../src/validation/cfworker-provider.ts"],"names":[],"mappings":"AAAA;;;;;;GAMG;AAGH,OAAO,KAAK,EAAE,cAAc,EAAE,mBAAmB,EAA6B,mBAAmB,EAAE,MAAM,YAAY,CAAC;AAEtH;;GAEG;AACH,MAAM,MAAM,mBAAmB,GAAG,GAAG,GAAG,GAAG,GAAG,SAAS,GAAG,SAAS,CAAC;AAEpE;;;;;;;;;;;;;GAaG;AACH,qBAAa,2BAA4B,YAAW,mBAAmB;IACnE,OAAO,CAAC,YAAY,CAAU;IAC9B,OAAO,CAAC,KAAK,CAAsB;IAEnC;;;;;;OAMG;gBACS,OAAO,CAAC,EAAE;QAAE,YAAY,CAAC,EAAE,OAAO,CAAC;QAAC,KAAK,CAAC,EAAE,mBAAmB,CAAA;KAAE;IAK7E;;;;;;;OAOG;IACH,YAAY,CAAC,CAAC,EAAE,MAAM,EAAE,cAAc,GAAG,mBAAmB,CAAC,CAAC,CAAC;CAsBlE"} \ No newline at end of file diff --git a/loan-advisor-chatgpt-app/node_modules/@modelcontextprotocol/sdk/dist/esm/validation/cfworker-provider.js b/loan-advisor-chatgpt-app/node_modules/@modelcontextprotocol/sdk/dist/esm/validation/cfworker-provider.js new file mode 100644 index 0000000000000000000000000000000000000000..576491494ba5c3f8d5a89f382f23dfcc6c4cd97a --- /dev/null +++ b/loan-advisor-chatgpt-app/node_modules/@modelcontextprotocol/sdk/dist/esm/validation/cfworker-provider.js @@ -0,0 +1,65 @@ +/** + * Cloudflare Worker-compatible JSON Schema validator provider + * + * This provider uses @cfworker/json-schema for validation without code generation, + * making it compatible with edge runtimes like Cloudflare Workers that restrict + * eval and new Function. + */ +import { Validator } from '@cfworker/json-schema'; +/** + * + * @example + * ```typescript + * // Use with default configuration (2020-12, shortcircuit) + * const validator = new CfWorkerJsonSchemaValidator(); + * + * // Use with custom configuration + * const validator = new CfWorkerJsonSchemaValidator({ + * draft: '2020-12', + * shortcircuit: false // Report all errors + * }); + * ``` + */ +export class CfWorkerJsonSchemaValidator { + /** + * Create a validator + * + * @param options - Configuration options + * @param options.shortcircuit - If true, stop validation after first error (default: true) + * @param options.draft - JSON Schema draft version to use (default: '2020-12') + */ + constructor(options) { + this.shortcircuit = options?.shortcircuit ?? true; + this.draft = options?.draft ?? '2020-12'; + } + /** + * Create a validator for the given JSON Schema + * + * Unlike AJV, this validator is not cached internally + * + * @param schema - Standard JSON Schema object + * @returns A validator function that validates input data + */ + getValidator(schema) { + // Cast to the cfworker Schema type - our JsonSchemaType is structurally compatible + const validator = new Validator(schema, this.draft, this.shortcircuit); + return (input) => { + const result = validator.validate(input); + if (result.valid) { + return { + valid: true, + data: input, + errorMessage: undefined + }; + } + else { + return { + valid: false, + data: undefined, + errorMessage: result.errors.map(err => `${err.instanceLocation}: ${err.error}`).join('; ') + }; + } + }; + } +} +//# sourceMappingURL=cfworker-provider.js.map \ No newline at end of file diff --git a/loan-advisor-chatgpt-app/node_modules/@modelcontextprotocol/sdk/dist/esm/validation/cfworker-provider.js.map b/loan-advisor-chatgpt-app/node_modules/@modelcontextprotocol/sdk/dist/esm/validation/cfworker-provider.js.map new file mode 100644 index 0000000000000000000000000000000000000000..21c014ab774d83be82b35736ca2b160ef487a50e --- /dev/null +++ b/loan-advisor-chatgpt-app/node_modules/@modelcontextprotocol/sdk/dist/esm/validation/cfworker-provider.js.map @@ -0,0 +1 @@ +{"version":3,"file":"cfworker-provider.js","sourceRoot":"","sources":["../../../src/validation/cfworker-provider.ts"],"names":[],"mappings":"AAAA;;;;;;GAMG;AAEH,OAAO,EAAE,SAAS,EAAE,MAAM,uBAAuB,CAAC;AAQlD;;;;;;;;;;;;;GAaG;AACH,MAAM,OAAO,2BAA2B;IAIpC;;;;;;OAMG;IACH,YAAY,OAAiE;QACzE,IAAI,CAAC,YAAY,GAAG,OAAO,EAAE,YAAY,IAAI,IAAI,CAAC;QAClD,IAAI,CAAC,KAAK,GAAG,OAAO,EAAE,KAAK,IAAI,SAAS,CAAC;IAC7C,CAAC;IAED;;;;;;;OAOG;IACH,YAAY,CAAI,MAAsB;QAClC,mFAAmF;QACnF,MAAM,SAAS,GAAG,IAAI,SAAS,CAAC,MAAoD,EAAE,IAAI,CAAC,KAAK,EAAE,IAAI,CAAC,YAAY,CAAC,CAAC;QAErH,OAAO,CAAC,KAAc,EAAgC,EAAE;YACpD,MAAM,MAAM,GAAG,SAAS,CAAC,QAAQ,CAAC,KAAK,CAAC,CAAC;YAEzC,IAAI,MAAM,CAAC,KAAK,EAAE,CAAC;gBACf,OAAO;oBACH,KAAK,EAAE,IAAI;oBACX,IAAI,EAAE,KAAU;oBAChB,YAAY,EAAE,SAAS;iBAC1B,CAAC;YACN,CAAC;iBAAM,CAAC;gBACJ,OAAO;oBACH,KAAK,EAAE,KAAK;oBACZ,IAAI,EAAE,SAAS;oBACf,YAAY,EAAE,MAAM,CAAC,MAAM,CAAC,GAAG,CAAC,GAAG,CAAC,EAAE,CAAC,GAAG,GAAG,CAAC,gBAAgB,KAAK,GAAG,CAAC,KAAK,EAAE,CAAC,CAAC,IAAI,CAAC,IAAI,CAAC;iBAC7F,CAAC;YACN,CAAC;QACL,CAAC,CAAC;IACN,CAAC;CACJ"} \ No newline at end of file diff --git a/loan-advisor-chatgpt-app/node_modules/@modelcontextprotocol/sdk/dist/esm/validation/index.d.ts b/loan-advisor-chatgpt-app/node_modules/@modelcontextprotocol/sdk/dist/esm/validation/index.d.ts new file mode 100644 index 0000000000000000000000000000000000000000..99e993967ff5721a7cccbeab8faecf813cb95d67 --- /dev/null +++ b/loan-advisor-chatgpt-app/node_modules/@modelcontextprotocol/sdk/dist/esm/validation/index.d.ts @@ -0,0 +1,29 @@ +/** + * JSON Schema validation + * + * This module provides configurable JSON Schema validation for the MCP SDK. + * Choose a validator based on your runtime environment: + * + * - AjvJsonSchemaValidator: Best for Node.js (default, fastest) + * Import from: @modelcontextprotocol/sdk/validation/ajv + * Requires peer dependencies: ajv, ajv-formats + * + * - CfWorkerJsonSchemaValidator: Best for edge runtimes + * Import from: @modelcontextprotocol/sdk/validation/cfworker + * Requires peer dependency: @cfworker/json-schema + * + * @example + * ```typescript + * // For Node.js with AJV + * import { AjvJsonSchemaValidator } from '@modelcontextprotocol/sdk/validation/ajv'; + * const validator = new AjvJsonSchemaValidator(); + * + * // For Cloudflare Workers + * import { CfWorkerJsonSchemaValidator } from '@modelcontextprotocol/sdk/validation/cfworker'; + * const validator = new CfWorkerJsonSchemaValidator(); + * ``` + * + * @module validation + */ +export type { JsonSchemaType, JsonSchemaValidator, JsonSchemaValidatorResult, jsonSchemaValidator } from './types.js'; +//# sourceMappingURL=index.d.ts.map \ No newline at end of file diff --git a/loan-advisor-chatgpt-app/node_modules/@modelcontextprotocol/sdk/dist/esm/validation/index.d.ts.map b/loan-advisor-chatgpt-app/node_modules/@modelcontextprotocol/sdk/dist/esm/validation/index.d.ts.map new file mode 100644 index 0000000000000000000000000000000000000000..a8845b96e78da2c7d666b7171908ef6da2670ff0 --- /dev/null +++ b/loan-advisor-chatgpt-app/node_modules/@modelcontextprotocol/sdk/dist/esm/validation/index.d.ts.map @@ -0,0 +1 @@ +{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/validation/index.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;;;;;;;;;;;;;;;;;GA0BG;AAGH,YAAY,EAAE,cAAc,EAAE,mBAAmB,EAAE,yBAAyB,EAAE,mBAAmB,EAAE,MAAM,YAAY,CAAC"} \ No newline at end of file diff --git a/loan-advisor-chatgpt-app/node_modules/@modelcontextprotocol/sdk/dist/esm/validation/index.js b/loan-advisor-chatgpt-app/node_modules/@modelcontextprotocol/sdk/dist/esm/validation/index.js new file mode 100644 index 0000000000000000000000000000000000000000..685b1fd45fa9fa191d10181434a5b29916853508 --- /dev/null +++ b/loan-advisor-chatgpt-app/node_modules/@modelcontextprotocol/sdk/dist/esm/validation/index.js @@ -0,0 +1,29 @@ +/** + * JSON Schema validation + * + * This module provides configurable JSON Schema validation for the MCP SDK. + * Choose a validator based on your runtime environment: + * + * - AjvJsonSchemaValidator: Best for Node.js (default, fastest) + * Import from: @modelcontextprotocol/sdk/validation/ajv + * Requires peer dependencies: ajv, ajv-formats + * + * - CfWorkerJsonSchemaValidator: Best for edge runtimes + * Import from: @modelcontextprotocol/sdk/validation/cfworker + * Requires peer dependency: @cfworker/json-schema + * + * @example + * ```typescript + * // For Node.js with AJV + * import { AjvJsonSchemaValidator } from '@modelcontextprotocol/sdk/validation/ajv'; + * const validator = new AjvJsonSchemaValidator(); + * + * // For Cloudflare Workers + * import { CfWorkerJsonSchemaValidator } from '@modelcontextprotocol/sdk/validation/cfworker'; + * const validator = new CfWorkerJsonSchemaValidator(); + * ``` + * + * @module validation + */ +export {}; +//# sourceMappingURL=index.js.map \ No newline at end of file diff --git a/loan-advisor-chatgpt-app/node_modules/@modelcontextprotocol/sdk/dist/esm/validation/index.js.map b/loan-advisor-chatgpt-app/node_modules/@modelcontextprotocol/sdk/dist/esm/validation/index.js.map new file mode 100644 index 0000000000000000000000000000000000000000..ed2b9fc2346b4f9b5f4a9d5a7d1bf71bf5bfbb7a --- /dev/null +++ b/loan-advisor-chatgpt-app/node_modules/@modelcontextprotocol/sdk/dist/esm/validation/index.js.map @@ -0,0 +1 @@ +{"version":3,"file":"index.js","sourceRoot":"","sources":["../../../src/validation/index.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;;;;;;;;;;;;;;;;;GA0BG"} \ No newline at end of file diff --git a/loan-advisor-chatgpt-app/node_modules/@modelcontextprotocol/sdk/dist/esm/validation/types.d.ts b/loan-advisor-chatgpt-app/node_modules/@modelcontextprotocol/sdk/dist/esm/validation/types.d.ts new file mode 100644 index 0000000000000000000000000000000000000000..9fa92226c8781ea09b09bfdf1cce055f0ce1a7df --- /dev/null +++ b/loan-advisor-chatgpt-app/node_modules/@modelcontextprotocol/sdk/dist/esm/validation/types.d.ts @@ -0,0 +1,65 @@ +import type { JSONSchema } from 'json-schema-typed'; +/** + * JSON Schema type definition (JSON Schema Draft 2020-12) + * + * This uses the object form of JSON Schema (excluding boolean schemas). + * While `true` and `false` are valid JSON Schemas, this SDK uses the + * object form for practical type safety. + * + * Re-exported from json-schema-typed for convenience. + * @see https://json-schema.org/draft/2020-12/json-schema-core.html + */ +export type JsonSchemaType = JSONSchema.Interface; +/** + * Result of a JSON Schema validation operation + */ +export type JsonSchemaValidatorResult = { + valid: true; + data: T; + errorMessage: undefined; +} | { + valid: false; + data: undefined; + errorMessage: string; +}; +/** + * A validator function that validates data against a JSON Schema + */ +export type JsonSchemaValidator = (input: unknown) => JsonSchemaValidatorResult; +/** + * Provider interface for creating validators from JSON Schemas + * + * This is the main extension point for custom validator implementations. + * Implementations should: + * - Support JSON Schema Draft 2020-12 (or be compatible with it) + * - Return validator functions that can be called multiple times + * - Handle schema compilation/caching internally + * - Provide clear error messages on validation failure + * + * @example + * ```typescript + * class MyValidatorProvider implements jsonSchemaValidator { + * getValidator(schema: JsonSchemaType): JsonSchemaValidator { + * // Compile/cache validator from schema + * return (input: unknown) => { + * // Validate input against schema + * if (valid) { + * return { valid: true, data: input as T, errorMessage: undefined }; + * } else { + * return { valid: false, data: undefined, errorMessage: 'Error details' }; + * } + * }; + * } + * } + * ``` + */ +export interface jsonSchemaValidator { + /** + * Create a validator for the given JSON Schema + * + * @param schema - Standard JSON Schema object + * @returns A validator function that can be called multiple times + */ + getValidator(schema: JsonSchemaType): JsonSchemaValidator; +} +//# sourceMappingURL=types.d.ts.map \ No newline at end of file diff --git a/loan-advisor-chatgpt-app/node_modules/@modelcontextprotocol/sdk/dist/esm/validation/types.d.ts.map b/loan-advisor-chatgpt-app/node_modules/@modelcontextprotocol/sdk/dist/esm/validation/types.d.ts.map new file mode 100644 index 0000000000000000000000000000000000000000..52aa0ef423bb6a0b8b1dd0567b71d91ed15381cc --- /dev/null +++ b/loan-advisor-chatgpt-app/node_modules/@modelcontextprotocol/sdk/dist/esm/validation/types.d.ts.map @@ -0,0 +1 @@ +{"version":3,"file":"types.d.ts","sourceRoot":"","sources":["../../../src/validation/types.ts"],"names":[],"mappings":"AACA,OAAO,KAAK,EAAE,UAAU,EAAE,MAAM,mBAAmB,CAAC;AAEpD;;;;;;;;;GASG;AACH,MAAM,MAAM,cAAc,GAAG,UAAU,CAAC,SAAS,CAAC;AAElD;;GAEG;AACH,MAAM,MAAM,yBAAyB,CAAC,CAAC,IACjC;IAAE,KAAK,EAAE,IAAI,CAAC;IAAC,IAAI,EAAE,CAAC,CAAC;IAAC,YAAY,EAAE,SAAS,CAAA;CAAE,GACjD;IAAE,KAAK,EAAE,KAAK,CAAC;IAAC,IAAI,EAAE,SAAS,CAAC;IAAC,YAAY,EAAE,MAAM,CAAA;CAAE,CAAC;AAE9D;;GAEG;AACH,MAAM,MAAM,mBAAmB,CAAC,CAAC,IAAI,CAAC,KAAK,EAAE,OAAO,KAAK,yBAAyB,CAAC,CAAC,CAAC,CAAC;AAEtF;;;;;;;;;;;;;;;;;;;;;;;;;;GA0BG;AACH,MAAM,WAAW,mBAAmB;IAChC;;;;;OAKG;IACH,YAAY,CAAC,CAAC,EAAE,MAAM,EAAE,cAAc,GAAG,mBAAmB,CAAC,CAAC,CAAC,CAAC;CACnE"} \ No newline at end of file diff --git a/loan-advisor-chatgpt-app/node_modules/@modelcontextprotocol/sdk/dist/esm/validation/types.js b/loan-advisor-chatgpt-app/node_modules/@modelcontextprotocol/sdk/dist/esm/validation/types.js new file mode 100644 index 0000000000000000000000000000000000000000..718fd38ae40c67ea23b242517cf9919f602c5a3e --- /dev/null +++ b/loan-advisor-chatgpt-app/node_modules/@modelcontextprotocol/sdk/dist/esm/validation/types.js @@ -0,0 +1,2 @@ +export {}; +//# sourceMappingURL=types.js.map \ No newline at end of file diff --git a/loan-advisor-chatgpt-app/node_modules/@modelcontextprotocol/sdk/dist/esm/validation/types.js.map b/loan-advisor-chatgpt-app/node_modules/@modelcontextprotocol/sdk/dist/esm/validation/types.js.map new file mode 100644 index 0000000000000000000000000000000000000000..51361cf6a48effaf63dfded7ab648735b41fdbc4 --- /dev/null +++ b/loan-advisor-chatgpt-app/node_modules/@modelcontextprotocol/sdk/dist/esm/validation/types.js.map @@ -0,0 +1 @@ +{"version":3,"file":"types.js","sourceRoot":"","sources":["../../../src/validation/types.ts"],"names":[],"mappings":""} \ No newline at end of file diff --git a/loan-advisor-chatgpt-app/node_modules/@modelcontextprotocol/sdk/package.json b/loan-advisor-chatgpt-app/node_modules/@modelcontextprotocol/sdk/package.json new file mode 100644 index 0000000000000000000000000000000000000000..22d26ca56e0d3611f8865c476b604791967de173 --- /dev/null +++ b/loan-advisor-chatgpt-app/node_modules/@modelcontextprotocol/sdk/package.json @@ -0,0 +1,164 @@ +{ + "name": "@modelcontextprotocol/sdk", + "version": "1.29.0", + "description": "Model Context Protocol implementation for TypeScript", + "license": "MIT", + "author": "Anthropic, PBC (https://anthropic.com)", + "homepage": "https://modelcontextprotocol.io", + "bugs": "https://github.com/modelcontextprotocol/typescript-sdk/issues", + "type": "module", + "repository": { + "type": "git", + "url": "git+https://github.com/modelcontextprotocol/typescript-sdk.git" + }, + "engines": { + "node": ">=18" + }, + "keywords": [ + "modelcontextprotocol", + "mcp" + ], + "exports": { + ".": { + "types": "./dist/esm/index.d.ts", + "import": "./dist/esm/index.js", + "require": "./dist/cjs/index.js" + }, + "./client": { + "types": "./dist/esm/client/index.d.ts", + "import": "./dist/esm/client/index.js", + "require": "./dist/cjs/client/index.js" + }, + "./server": { + "types": "./dist/esm/server/index.d.ts", + "import": "./dist/esm/server/index.js", + "require": "./dist/cjs/server/index.js" + }, + "./validation": { + "types": "./dist/esm/validation/index.d.ts", + "import": "./dist/esm/validation/index.js", + "require": "./dist/cjs/validation/index.js" + }, + "./validation/ajv": { + "types": "./dist/esm/validation/ajv-provider.d.ts", + "import": "./dist/esm/validation/ajv-provider.js", + "require": "./dist/cjs/validation/ajv-provider.js" + }, + "./validation/cfworker": { + "types": "./dist/esm/validation/cfworker-provider.d.ts", + "import": "./dist/esm/validation/cfworker-provider.js", + "require": "./dist/cjs/validation/cfworker-provider.js" + }, + "./experimental": { + "types": "./dist/esm/experimental/index.d.ts", + "import": "./dist/esm/experimental/index.js", + "require": "./dist/cjs/experimental/index.js" + }, + "./experimental/tasks": { + "types": "./dist/esm/experimental/tasks/index.d.ts", + "import": "./dist/esm/experimental/tasks/index.js", + "require": "./dist/cjs/experimental/tasks/index.js" + }, + "./*": { + "types": "./dist/esm/*.d.ts", + "import": "./dist/esm/*", + "require": "./dist/cjs/*" + } + }, + "typesVersions": { + "*": { + "*": [ + "./dist/esm/*" + ] + } + }, + "files": [ + "dist" + ], + "scripts": { + "fetch:spec-types": "tsx scripts/fetch-spec-types.ts", + "typecheck": "tsgo --noEmit", + "build": "npm run build:esm && npm run build:cjs", + "build:esm": "mkdir -p dist/esm && echo '{\"type\": \"module\"}' > dist/esm/package.json && tsc -p tsconfig.prod.json", + "build:esm:w": "npm run build:esm -- -w", + "build:cjs": "mkdir -p dist/cjs && echo '{\"type\": \"commonjs\"}' > dist/cjs/package.json && tsc -p tsconfig.cjs.json", + "build:cjs:w": "npm run build:cjs -- -w", + "examples:simple-server:w": "tsx --watch src/examples/server/simpleStreamableHttp.ts --oauth", + "prepack": "npm run build:esm && npm run build:cjs", + "lint": "eslint src/ && prettier --check .", + "lint:fix": "eslint src/ --fix && prettier --write .", + "check": "npm run typecheck && npm run lint", + "test": "vitest run", + "test:watch": "vitest", + "start": "npm run server", + "server": "tsx watch --clear-screen=false scripts/cli.ts server", + "client": "tsx scripts/cli.ts client", + "test:conformance:server": "test/conformance/scripts/run-server-conformance.sh --expected-failures test/conformance/conformance-baseline.yml", + "test:conformance:server:all": "test/conformance/scripts/run-server-conformance.sh --suite all --expected-failures test/conformance/conformance-baseline.yml", + "test:conformance:server:run": "npx tsx test/conformance/src/everythingServer.ts", + "test:conformance:client": "npx @modelcontextprotocol/conformance client --command 'npx tsx test/conformance/src/everythingClient.ts' --expected-failures test/conformance/conformance-baseline.yml", + "test:conformance:client:all": "npx @modelcontextprotocol/conformance client --command 'npx tsx test/conformance/src/everythingClient.ts' --suite all --expected-failures test/conformance/conformance-baseline.yml" + }, + "dependencies": { + "@hono/node-server": "^1.19.9", + "ajv": "^8.17.1", + "ajv-formats": "^3.0.1", + "content-type": "^1.0.5", + "cors": "^2.8.5", + "cross-spawn": "^7.0.5", + "eventsource": "^3.0.2", + "eventsource-parser": "^3.0.0", + "express": "^5.2.1", + "express-rate-limit": "^8.2.1", + "hono": "^4.11.4", + "jose": "^6.1.3", + "json-schema-typed": "^8.0.2", + "pkce-challenge": "^5.0.0", + "raw-body": "^3.0.0", + "zod": "^3.25 || ^4.0", + "zod-to-json-schema": "^3.25.1" + }, + "peerDependencies": { + "@cfworker/json-schema": "^4.1.1", + "zod": "^3.25 || ^4.0" + }, + "peerDependenciesMeta": { + "@cfworker/json-schema": { + "optional": true + }, + "zod": { + "optional": false + } + }, + "devDependencies": { + "@cfworker/json-schema": "^4.1.1", + "@eslint/js": "^9.39.1", + "@modelcontextprotocol/conformance": "^0.1.14", + "@types/content-type": "^1.1.8", + "@types/cors": "^2.8.17", + "@types/cross-spawn": "^6.0.6", + "@types/eventsource": "^1.1.15", + "@types/express": "^5.0.0", + "@types/express-serve-static-core": "^5.1.0", + "@types/node": "^22.12.0", + "@types/supertest": "^6.0.2", + "@types/ws": "^8.5.12", + "@typescript/native-preview": "^7.0.0-dev.20251103.1", + "eslint": "^9.8.0", + "eslint-config-prettier": "^10.1.8", + "eslint-plugin-n": "^17.23.1", + "prettier": "3.6.2", + "supertest": "^7.0.0", + "tsx": "^4.16.5", + "typescript": "^5.5.4", + "typescript-eslint": "^8.48.1", + "vitest": "^4.0.8", + "ws": "^8.18.0" + }, + "resolutions": { + "strip-ansi": "6.0.1" + }, + "overrides": { + "qs": "6.14.1" + } +} diff --git a/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/Alert/Alert.js b/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/Alert/Alert.js new file mode 100644 index 0000000000000000000000000000000000000000..a65708b620053e388b88d7d7a976333ed0036f76 --- /dev/null +++ b/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/Alert/Alert.js @@ -0,0 +1,39 @@ +"use client"; +import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime"; +import clsx from "clsx"; +import { useEffect, useRef, useState } from "react"; +import { mergeRefs } from "react-merge-refs"; +import { useResizeObserver } from "usehooks-ts"; +import {} from "../../types"; +import { CheckCircle, Info, Warning } from "../Icon"; +import s from "./Alert.module.css"; +export const Alert = ({ color = "primary", variant = "outline", title, description, actions, actionsPlacement, indicator, className, actionsClassName, ref, ...restProps }) => { + const containerRef = useRef(null); + const actionsRef = useRef(null); + const [actionsAutoPlacement, setActionsAutoPlacement] = useState("end"); + // @ts-expect-error -- Type issue in usehooks-ts + const { width: containerWidth } = useResizeObserver({ ref: containerRef }); + useEffect(() => { + const actionsWidth = actionsRef.current?.clientWidth ?? 0; + if (actionsWidth && containerWidth) { + // If actions are larger than a third of the container width, wrap them. + const placement = actionsWidth > containerWidth / 3 ? "bottom" : "end"; + setActionsAutoPlacement(placement); + } + }, [containerWidth]); + return (_jsxs("div", { ref: mergeRefs([ref, containerRef]), className: clsx(s.Alert, className), "data-variant": variant, "data-color": color, role: color === "danger" ? "alert" : undefined, "data-actions-placement": actionsPlacement ?? actionsAutoPlacement, ...restProps, children: [indicator === false ? null : (_jsx("div", { className: s.Indicator, children: indicator ?? _jsx(Indicator, { color: color }) })), _jsxs("div", { className: s.Content, children: [_jsxs("div", { className: s.Message, children: [title && _jsx("div", { className: s.Title, children: title }), description && _jsx("div", { className: s.Description, children: description })] }), actions && (_jsx("div", { className: clsx(s.Actions, actionsClassName), ref: actionsRef, children: actions }))] })] })); +}; +export const Indicator = ({ color }) => { + // Choose a default icon based on the color (which signals intention) + switch (color) { + case "warning": + case "caution": + case "danger": + return _jsx(Warning, {}); + case "success": + return _jsx(CheckCircle, {}); + default: + return _jsx(Info, {}); + } +}; +//# sourceMappingURL=Alert.js.map \ No newline at end of file diff --git a/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/Alert/Alert.js.map b/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/Alert/Alert.js.map new file mode 100644 index 0000000000000000000000000000000000000000..ee8561908e6ced414f93cdf756c1a9811857dd14 --- /dev/null +++ b/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/Alert/Alert.js.map @@ -0,0 +1 @@ +{"version":3,"file":"Alert.js","sourceRoot":"","sources":["../../../../src/components/Alert/Alert.tsx"],"names":[],"mappings":"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","sourcesContent":["\"use client\"\n\nimport clsx from \"clsx\"\nimport { type ReactNode, type Ref, useEffect, useRef, useState } from \"react\"\nimport { mergeRefs } from \"react-merge-refs\"\nimport { useResizeObserver } from \"usehooks-ts\"\nimport { type SemanticColors, type Variants } from \"../../types\"\nimport { CheckCircle, Info, Warning } from \"../Icon\"\nimport s from \"./Alert.module.css\"\n\nexport type AlertProps = {\n /**\n * Color for the button\n * @default primary\n */\n color?: SemanticColors<\n \"primary\" | \"danger\" | \"success\" | \"info\" | \"discovery\" | \"caution\" | \"warning\"\n >\n /**\n * Style variant for the Button\n * @default fill\n */\n variant?: Variants<\"solid\" | \"soft\" | \"outline\">\n /** Title displayed in the alert. */\n title?: ReactNode\n /** Description text displayed in the alert */\n description?: ReactNode\n /** Actions associated with the Alert. */\n actions?: ReactNode\n /** Sets the placement of `actions` always on the end or the bottom. Default behavior is automatic placement based on sizing. */\n actionsPlacement?: \"end\" | \"bottom\"\n /** Optional override for the default indicator of the alert. When `false`, no indicator is shown. */\n indicator?: ReactNode | false\n /** Class applied to the alert container */\n className?: string\n /** Class applied to the actions container */\n actionsClassName?: string\n /** Ref applied to the alert container */\n ref?: Ref\n}\n\nexport const Alert = ({\n color = \"primary\",\n variant = \"outline\",\n title,\n description,\n actions,\n actionsPlacement,\n indicator,\n className,\n actionsClassName,\n ref,\n ...restProps\n}: AlertProps) => {\n const containerRef = useRef(null)\n const actionsRef = useRef(null)\n const [actionsAutoPlacement, setActionsAutoPlacement] = useState<\"end\" | \"bottom\">(\"end\")\n // @ts-expect-error -- Type issue in usehooks-ts\n const { width: containerWidth } = useResizeObserver({ ref: containerRef })\n\n useEffect(() => {\n const actionsWidth = actionsRef.current?.clientWidth ?? 0\n\n if (actionsWidth && containerWidth) {\n // If actions are larger than a third of the container width, wrap them.\n const placement = actionsWidth > containerWidth / 3 ? \"bottom\" : \"end\"\n setActionsAutoPlacement(placement)\n }\n }, [containerWidth])\n\n return (\n \n {indicator === false ? null : (\n
{indicator ?? }
\n )}\n
\n
\n {title &&
{title}
}\n {description &&
{description}
}\n
\n {actions && (\n
\n {actions}\n
\n )}\n
\n \n )\n}\n\nexport const Indicator = ({ color }: { color: AlertProps[\"color\"] }) => {\n // Choose a default icon based on the color (which signals intention)\n switch (color) {\n case \"warning\":\n case \"caution\":\n case \"danger\":\n return \n case \"success\":\n return \n default:\n return \n }\n}\n"]} \ No newline at end of file diff --git a/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/Alert/Alert.module.css b/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/Alert/Alert.module.css new file mode 100644 index 0000000000000000000000000000000000000000..a5b159a5ecbd2398e6b6e9419e0bf3a6c9ea1dcd --- /dev/null +++ b/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/Alert/Alert.module.css @@ -0,0 +1,187 @@ +@layer components {.Alert { + display: flex; + align-items: center; + gap: var(--alert-gap); + width: 100%; + padding: var(--alert-gutter); + border-radius: var(--alert-border-radius); + font-size: var(--alert-font-size); + line-height: var(--alert-line-height); +} + + .Alert:where([data-actions-placement="bottom"]) { + align-items: flex-start; + } + + /* ============================================= + Variants + ============================================= */ + .Alert[data-variant="soft"] { + background-color: var(--alert-background-color); + box-shadow: 0 0 0 1px var(--alert-border-color) inset; + color: var(--alert-text-color); + } + + .Alert[data-variant="soft"]:where([data-color="primary"]) { + --alert-background-color: var(--color-background-primary-surface); + --alert-border-color: var(--color-border-primary-surface); + --alert-text-color: var(--color-text); + } + + .Alert[data-variant="soft"]:where([data-color="success"]) { + --alert-background-color: var(--color-background-success-surface); + --alert-border-color: var(--color-border-success-surface); + --alert-text-color: var(--color-text-success-surface); + } + + .Alert[data-variant="soft"]:where([data-color="warning"]) { + --alert-background-color: var(--color-background-warning-surface); + --alert-border-color: var(--color-border-warning-surface); + --alert-text-color: var(--color-text-warning-surface); + } + + .Alert[data-variant="soft"]:where([data-color="caution"]) { + --alert-background-color: var(--color-background-caution-surface); + --alert-border-color: var(--color-border-caution-surface); + --alert-text-color: var(--color-text-caution-surface); + } + + .Alert[data-variant="soft"]:where([data-color="danger"]) { + --alert-background-color: var(--color-background-danger-surface); + --alert-border-color: var(--color-border-danger-surface); + --alert-text-color: var(--color-text-danger-surface); + } + + .Alert[data-variant="soft"]:where([data-color="info"]) { + --alert-background-color: var(--color-background-info-surface); + --alert-border-color: var(--color-border-info-surface); + --alert-text-color: var(--color-text-info-surface); + } + + .Alert[data-variant="soft"]:where([data-color="discovery"]) { + --alert-background-color: var(--color-background-discovery-surface); + --alert-border-color: var(--color-border-discovery-surface); + --alert-text-color: var(--color-text-discovery-surface); + } + + .Alert[data-variant="solid"] { + background-color: var(--alert-background-color); + color: var(--alert-text-color); + } + + .Alert[data-variant="solid"]:where([data-color="primary"]) { + --alert-background-color: var(--color-background-primary-solid); + --alert-text-color: var(--color-text-primary-solid); + } + + .Alert[data-variant="solid"]:where([data-color="success"]) { + --alert-background-color: var(--color-background-success-solid); + --alert-text-color: var(--color-text-success-solid); + } + + .Alert[data-variant="solid"]:where([data-color="warning"]) { + --alert-background-color: var(--color-background-warning-solid); + --alert-text-color: var(--color-text-warning-solid); + } + + .Alert[data-variant="solid"]:where([data-color="caution"]) { + --alert-background-color: var(--color-background-caution-solid); + --alert-text-color: var(--color-text-caution-solid); + } + + .Alert[data-variant="solid"]:where([data-color="danger"]) { + --alert-background-color: var(--color-background-danger-solid); + --alert-text-color: var(--color-text-danger-solid); + } + + .Alert[data-variant="solid"]:where([data-color="info"]) { + --alert-background-color: var(--color-background-info-solid); + --alert-text-color: var(--color-text-info-solid); + } + + .Alert[data-variant="solid"]:where([data-color="discovery"]) { + --alert-background-color: var(--color-background-discovery-solid); + --alert-text-color: var(--color-text-discovery-solid); + } + + .Alert[data-variant="outline"] { + box-shadow: 0 0 0 1px var(--alert-border-color) inset; + color: var(--alert-text-color); + } + + .Alert[data-variant="outline"]:where([data-color="primary"]) { + --alert-border-color: var(--color-border); + --alert-text-color: var(--color-text); + } + + .Alert[data-variant="outline"]:where([data-color="success"]) { + --alert-border-color: var(--color-border-success-outline); + --alert-text-color: var(--color-text-success-outline); + } + + .Alert[data-variant="outline"]:where([data-color="warning"]) { + --alert-border-color: var(--color-border-warning-outline); + --alert-text-color: var(--color-text-warning-outline); + } + + .Alert[data-variant="outline"]:where([data-color="caution"]) { + --alert-border-color: var(--color-border-caution-outline); + --alert-text-color: var(--color-text-caution-outline); + } + + .Alert[data-variant="outline"]:where([data-color="danger"]) { + --alert-border-color: var(--color-border-danger-outline); + --alert-text-color: var(--color-text-danger-outline); + } + + .Alert[data-variant="outline"]:where([data-color="info"]) { + --alert-border-color: var(--color-border-info-outline); + --alert-text-color: var(--color-text-info-outline); + } + + .Alert[data-variant="outline"]:where([data-color="discovery"]) { + --alert-border-color: var(--color-border-discovery-outline); + --alert-text-color: var(--color-text-discovery-outline); + }.Content { + display: flex; + align-items: center; + justify-content: space-between; + flex: 1; + min-width: 0; +} + + :where(.Alert[data-actions-placement="bottom"]) .Content { + display: block; + } + .Indicator svg { + width: var(--alert-indicator-size, 20px); + height: var(--alert-indicator-size, 20px); + }.Message { + flex: 1; + min-width: 0; +}.Title { + font-weight: var(--alert-title-font-weight); + text-wrap: pretty; +} + + /* Slight spacing when paired with a description */ + .Title ~ .Description { + margin-top: 2px; + }.Description { + opacity: 1; + text-wrap: pretty; +}.Actions { + display: flex; + gap: calc(var(--spacing) * 2); +} + + :where(.Alert[data-actions-placement="end"]) .Actions { + align-self: center; + /* Additional padding between right side or actions */ + margin-left: var(--alert-gutter); + } + + :where(.Alert[data-actions-placement="bottom"]) .Actions { + margin-top: var(--alert-gutter); + } +} diff --git a/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/Alert/index.js b/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/Alert/index.js new file mode 100644 index 0000000000000000000000000000000000000000..5eaf1ada60edfba15b1954a9dd0e5edc4ea19997 --- /dev/null +++ b/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/Alert/index.js @@ -0,0 +1,2 @@ +export { Alert } from "./Alert"; +//# sourceMappingURL=index.js.map \ No newline at end of file diff --git a/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/Alert/index.js.map b/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/Alert/index.js.map new file mode 100644 index 0000000000000000000000000000000000000000..5640c9b9036661e8da2e9232ef7fa68372031f15 --- /dev/null +++ b/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/Alert/index.js.map @@ -0,0 +1 @@ +{"version":3,"file":"index.js","sourceRoot":"","sources":["../../../../src/components/Alert/index.tsx"],"names":[],"mappings":"AAAA,OAAO,EAAE,KAAK,EAAmB,MAAM,SAAS,CAAA","sourcesContent":["export { Alert, type AlertProps } from \"./Alert\"\n"]} \ No newline at end of file diff --git a/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/AppsSDKUIProvider/AppsSDKUIContext.js b/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/AppsSDKUIProvider/AppsSDKUIContext.js new file mode 100644 index 0000000000000000000000000000000000000000..a102e5374138f164e371f646762f093c1c712b3c --- /dev/null +++ b/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/AppsSDKUIProvider/AppsSDKUIContext.js @@ -0,0 +1,4 @@ +"use client"; +import { createContext } from "react"; +export const AppsSDKUIContext = createContext(null); +//# sourceMappingURL=AppsSDKUIContext.js.map \ No newline at end of file diff --git a/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/AppsSDKUIProvider/AppsSDKUIContext.js.map b/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/AppsSDKUIProvider/AppsSDKUIContext.js.map new file mode 100644 index 0000000000000000000000000000000000000000..c7ffc15ce789d9dc379ee764723b627adf4b46de --- /dev/null +++ b/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/AppsSDKUIProvider/AppsSDKUIContext.js.map @@ -0,0 +1 @@ +{"version":3,"file":"AppsSDKUIContext.js","sourceRoot":"","sources":["../../../../src/components/AppsSDKUIProvider/AppsSDKUIContext.tsx"],"names":[],"mappings":"AAAA,YAAY,CAAA;AAEZ,OAAO,EAAsB,aAAa,EAAkC,MAAM,OAAO,CAAA;AAOzF,MAAM,CAAC,MAAM,gBAAgB,GAAG,aAAa,CAA+B,IAAI,CAAC,CAAA","sourcesContent":["\"use client\"\n\nimport { type ComponentType, createContext, type ForwardRefExoticComponent } from \"react\"\n\ntype AppsSDKUIContextValue = {\n // eslint-disable-next-line @typescript-eslint/no-explicit-any\n linkComponent: ComponentType | ForwardRefExoticComponent | \"a\"\n}\n\nexport const AppsSDKUIContext = createContext(null)\n"]} \ No newline at end of file diff --git a/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/AppsSDKUIProvider/AppsSDKUIProvider.js b/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/AppsSDKUIProvider/AppsSDKUIProvider.js new file mode 100644 index 0000000000000000000000000000000000000000..127beaf7c9cc624ecda4030f8f9dc3cb8fdc2634 --- /dev/null +++ b/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/AppsSDKUIProvider/AppsSDKUIProvider.js @@ -0,0 +1,15 @@ +"use client"; +import { jsx as _jsx } from "react/jsx-runtime"; +import {} from "react"; +import { AppsSDKUIContext } from "./AppsSDKUIContext"; +/** + * Shared context for all Apps SDK UI components - wrap your app in this + * provider to use Apps SDK UI components. + * + * It's pretty thin right now, we only use it to hold onto the component you + * use for rendering Links, but it could be expanded in the future. + */ +export function AppsSDKUIProvider({ children, linkComponent, }) { + return _jsx(AppsSDKUIContext.Provider, { value: { linkComponent }, children: children }); +} +//# sourceMappingURL=AppsSDKUIProvider.js.map \ No newline at end of file diff --git a/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/AppsSDKUIProvider/AppsSDKUIProvider.js.map b/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/AppsSDKUIProvider/AppsSDKUIProvider.js.map new file mode 100644 index 0000000000000000000000000000000000000000..5bde0f08255b90553839e71bb46907b9ec6006de --- /dev/null +++ b/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/AppsSDKUIProvider/AppsSDKUIProvider.js.map @@ -0,0 +1 @@ +{"version":3,"file":"AppsSDKUIProvider.js","sourceRoot":"","sources":["../../../../src/components/AppsSDKUIProvider/AppsSDKUIProvider.tsx"],"names":[],"mappings":"AAAA,YAAY,CAAA;;AAEZ,OAAO,EAAsE,MAAM,OAAO,CAAA;AAC1F,OAAO,EAAE,gBAAgB,EAAE,MAAM,oBAAoB,CAAA;AAoBrD;;;;;;GAMG;AACH,MAAM,UAAU,iBAAiB,CAAC,EAChC,QAAQ,EACR,aAAa,GAKd;IACC,OAAO,KAAC,gBAAgB,CAAC,QAAQ,IAAC,KAAK,EAAE,EAAE,aAAa,EAAE,YAAG,QAAQ,GAA6B,CAAA;AACpG,CAAC","sourcesContent":["\"use client\"\n\nimport { type ComponentType, type ForwardRefExoticComponent, type ReactNode } from \"react\"\nimport { AppsSDKUIContext } from \"./AppsSDKUIContext\"\n\n/// \n\ninterface DefaultConfig {\n LinkComponent: \"a\"\n}\n\ndeclare global {\n // eslint-disable-next-line @typescript-eslint/no-empty-object-type\n interface AppsSDKUIConfig {}\n}\n\n// Utility type to merge defaults with overrides. The override keys take precedence.\ntype MergeOverrides = Omit & Overrides\n\nexport type Config = MergeOverrides\n\nexport type LinkComponent = Config[\"LinkComponent\"]\n\n/**\n * Shared context for all Apps SDK UI components - wrap your app in this\n * provider to use Apps SDK UI components.\n *\n * It's pretty thin right now, we only use it to hold onto the component you\n * use for rendering Links, but it could be expanded in the future.\n */\nexport function AppsSDKUIProvider({\n children,\n linkComponent,\n}: {\n children: ReactNode\n // eslint-disable-next-line @typescript-eslint/no-explicit-any\n linkComponent: ComponentType | ForwardRefExoticComponent | \"a\"\n}) {\n return {children}\n}\n"]} \ No newline at end of file diff --git a/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/AppsSDKUIProvider/index.js b/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/AppsSDKUIProvider/index.js new file mode 100644 index 0000000000000000000000000000000000000000..6cdd5d5efcdab753a5a4b9d61910c25d1ffac1bf --- /dev/null +++ b/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/AppsSDKUIProvider/index.js @@ -0,0 +1,2 @@ +export { AppsSDKUIProvider } from "./AppsSDKUIProvider"; +//# sourceMappingURL=index.js.map \ No newline at end of file diff --git a/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/AppsSDKUIProvider/index.js.map b/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/AppsSDKUIProvider/index.js.map new file mode 100644 index 0000000000000000000000000000000000000000..44ca6df40d63269d6fc6651cc7c8fe6445d551cd --- /dev/null +++ b/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/AppsSDKUIProvider/index.js.map @@ -0,0 +1 @@ +{"version":3,"file":"index.js","sourceRoot":"","sources":["../../../../src/components/AppsSDKUIProvider/index.tsx"],"names":[],"mappings":"AAAA,OAAO,EAAE,iBAAiB,EAAE,MAAM,qBAAqB,CAAA","sourcesContent":["export { AppsSDKUIProvider } from \"./AppsSDKUIProvider\"\n"]} \ No newline at end of file diff --git a/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/AppsSDKUIProvider/internal.js b/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/AppsSDKUIProvider/internal.js new file mode 100644 index 0000000000000000000000000000000000000000..890c06f9f6fe372b0e556eaa28bf477342988505 --- /dev/null +++ b/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/AppsSDKUIProvider/internal.js @@ -0,0 +1,8 @@ +"use client"; +import { useContext } from "react"; +import { AppsSDKUIContext } from "./AppsSDKUIContext"; +export function useLinkComponent() { + const context = useContext(AppsSDKUIContext); + return context?.linkComponent ?? "a"; +} +//# sourceMappingURL=internal.js.map \ No newline at end of file diff --git a/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/AppsSDKUIProvider/internal.js.map b/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/AppsSDKUIProvider/internal.js.map new file mode 100644 index 0000000000000000000000000000000000000000..9c09f03153009c13da3fb9c53d8a1111d0feca15 --- /dev/null +++ b/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/AppsSDKUIProvider/internal.js.map @@ -0,0 +1 @@ +{"version":3,"file":"internal.js","sourceRoot":"","sources":["../../../../src/components/AppsSDKUIProvider/internal.ts"],"names":[],"mappings":"AAAA,YAAY,CAAA;AAEZ,OAAO,EAAE,UAAU,EAAE,MAAM,OAAO,CAAA;AAClC,OAAO,EAAE,gBAAgB,EAAE,MAAM,oBAAoB,CAAA;AAErD,MAAM,UAAU,gBAAgB;IAC9B,MAAM,OAAO,GAAG,UAAU,CAAC,gBAAgB,CAAC,CAAA;IAC5C,OAAO,OAAO,EAAE,aAAa,IAAI,GAAG,CAAA;AACtC,CAAC","sourcesContent":["\"use client\"\n\nimport { useContext } from \"react\"\nimport { AppsSDKUIContext } from \"./AppsSDKUIContext\"\n\nexport function useLinkComponent() {\n const context = useContext(AppsSDKUIContext)\n return context?.linkComponent ?? \"a\"\n}\n"]} \ No newline at end of file diff --git a/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/Avatar/Avatar.js b/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/Avatar/Avatar.js new file mode 100644 index 0000000000000000000000000000000000000000..4801456e1086bc7b6bcd722ce885d62439f7d59a --- /dev/null +++ b/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/Avatar/Avatar.js @@ -0,0 +1,63 @@ +"use client"; +import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime"; +import { createElement as _createElement } from "react"; +import clsx from "clsx"; +import { useMemo, useState } from "react"; +import { toCssVariables } from "../../lib/helpers"; +import {} from "../../types"; +import s from "./Avatar.module.css"; +export const Avatar = (props) => { + // Validate the image url before sending to the component + const validImageUrl = validateImageUrl(props.imageUrl); + // Keying off of imageUrl allows us to refresh imageStatus automatically through React rendering + return _createElement(AvatarInner, { ...props, imageUrl: validImageUrl, key: validImageUrl }); +}; +export const AvatarInner = (props) => { + const { className, size, overflowCount, name, color = "secondary", variant = "soft", imageUrl, Icon, + // asChild support + ...restProps } = props; + const [imageStatus, setImageStatus] = useState(); + const isInteractive = !!(restProps.onPointerDown || restProps.onClick); + const TagName = isInteractive ? "button" : "span"; + return (_jsx(TagName, { className: clsx(s.Avatar, className), style: toCssVariables({ + "avatar-size": size, + }), role: isInteractive ? undefined : "presentation", "data-color": color, "data-variant": variant, type: isInteractive ? "button" : undefined, ...restProps, children: (() => { + if (imageUrl && imageStatus !== "error") { + return (_jsx(AvatarImage, { status: imageStatus, url: imageUrl, onError: () => setImageStatus("error"), onLoad: () => setImageStatus("loaded") })); + } + if (Icon) { + return _jsx(Icon, { className: s.AvatarIcon }); + } + return overflowCount ? (_jsx(AvatarOverflowCount, { count: overflowCount })) : (_jsx(AvatarInitial, { name: name })); + })() })); +}; +const validateImageUrl = (imageUrl) => { + if (!imageUrl) { + return; + } + // Avoid specific pattern of images from gravatar.com, which use a pair of initials, instead of a single initial. + if (imageUrl.includes("gravatar.com") && imageUrl.includes("cdn.auth0.com")) { + return; + } + return imageUrl; +}; +const AvatarImage = ({ url, status, onLoad, onError, }) => { + return (_jsx("span", { className: s.AvatarImageContainer, children: _jsx("img", { src: url, className: s.AvatarImage, "data-loaded": status === "loaded" ? "" : undefined, onLoad: onLoad, onError: onError, alt: "", role: "presentation" }) })); +}; +const AvatarInitial = ({ name = "" }) => { + const firstInitial = useMemo(() => name.charAt(0).toUpperCase(), [name]); + return _jsx("span", { className: s.AvatarInitial, children: firstInitial }); +}; +const AvatarOverflowCount = ({ count }) => { + const formattedCount = useMemo(() => { + return new Intl.NumberFormat("en", { + notation: "compact", + compactDisplay: "short", + maximumFractionDigits: 0, + }) + .format(count) + .toLocaleLowerCase(); + }, [count]); + return (_jsxs("span", { className: s.AvatarOverflowCount, "data-letter-count": formattedCount.length, children: [_jsx("span", { className: s.AvatarOverflowCountSymbol, children: "+" }), formattedCount] })); +}; +//# sourceMappingURL=Avatar.js.map \ No newline at end of file diff --git a/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/Avatar/Avatar.js.map b/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/Avatar/Avatar.js.map new file mode 100644 index 0000000000000000000000000000000000000000..4ae592dcb4cac56f76828f8e627bf6b7e2b2508a --- /dev/null +++ b/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/Avatar/Avatar.js.map @@ -0,0 +1 @@ +{"version":3,"file":"Avatar.js","sourceRoot":"","sources":["../../../../src/components/Avatar/Avatar.tsx"],"names":[],"mappings":"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","sourcesContent":["\"use client\"\n\nimport clsx from \"clsx\"\nimport { useMemo, useState } from \"react\"\nimport { toCssVariables } from \"../../lib/helpers\"\nimport { type SemanticColors, type Variants } from \"../../types\"\nimport s from \"./Avatar.module.css\"\n\ntype ImageStatus = undefined | \"error\" | \"loaded\"\n\nexport type AvatarProps = {\n /** Class name applied to the avatar */\n className?: string\n /** Size of the avatar's width & height, in pixels. */\n size?: number\n /** Display a formatted count of overflow objects. */\n overflowCount?: number\n /** Name used to display initials from */\n name?: string\n /**\n * Color used for the avatar\n * @default secondary\n */\n color?: SemanticColors<\"primary\" | \"secondary\" | \"success\" | \"info\" | \"discovery\" | \"danger\">\n /**\n * Style variant of the avatar\n * @default soft\n */\n variant?: Variants<\"soft\" | \"solid\">\n /** URL of the image to display as the avatar */\n imageUrl?: string\n /** Icon to render in the avatar circle */\n Icon?: React.ComponentType>\n /** Optional click handler, which also enables semantic interactions */\n onClick?: () => void\n /** Optional pointer handler, which also enables semantic interactions */\n onPointerDown?: () => void\n}\n\nexport const Avatar = (props: AvatarProps) => {\n // Validate the image url before sending to the component\n const validImageUrl = validateImageUrl(props.imageUrl)\n\n // Keying off of imageUrl allows us to refresh imageStatus automatically through React rendering\n return \n}\n\nexport const AvatarInner = (props: AvatarProps) => {\n const {\n className,\n size,\n overflowCount,\n name,\n color = \"secondary\",\n variant = \"soft\",\n imageUrl,\n Icon,\n // asChild support\n ...restProps\n } = props\n const [imageStatus, setImageStatus] = useState()\n const isInteractive = !!(restProps.onPointerDown || restProps.onClick)\n const TagName = isInteractive ? \"button\" : \"span\"\n\n return (\n \n {(() => {\n if (imageUrl && imageStatus !== \"error\") {\n return (\n setImageStatus(\"error\")}\n onLoad={() => setImageStatus(\"loaded\")}\n />\n )\n }\n if (Icon) {\n return \n }\n return overflowCount ? (\n \n ) : (\n \n )\n })()}\n \n )\n}\n\nconst validateImageUrl = (imageUrl?: string): string | undefined => {\n if (!imageUrl) {\n return\n }\n\n // Avoid specific pattern of images from gravatar.com, which use a pair of initials, instead of a single initial.\n if (imageUrl.includes(\"gravatar.com\") && imageUrl.includes(\"cdn.auth0.com\")) {\n return\n }\n\n return imageUrl\n}\n\nconst AvatarImage = ({\n url,\n status,\n onLoad,\n onError,\n}: {\n url: string\n status: ImageStatus\n onLoad: () => void\n onError: () => void\n}) => {\n return (\n \n \n \n )\n}\n\nconst AvatarInitial = ({ name = \"\" }: { name?: string }) => {\n const firstInitial = useMemo(() => name.charAt(0).toUpperCase(), [name])\n\n return {firstInitial}\n}\n\nconst AvatarOverflowCount = ({ count }: { count: number }) => {\n const formattedCount = useMemo(() => {\n return new Intl.NumberFormat(\"en\", {\n notation: \"compact\",\n compactDisplay: \"short\",\n maximumFractionDigits: 0,\n })\n .format(count)\n .toLocaleLowerCase()\n }, [count])\n\n return (\n \n +\n {formattedCount}\n \n )\n}\n"]} \ No newline at end of file diff --git a/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/Avatar/Avatar.module.css b/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/Avatar/Avatar.module.css new file mode 100644 index 0000000000000000000000000000000000000000..71b2f4d604e38b6bcd9fbe4bd000ff66af7684bc --- /dev/null +++ b/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/Avatar/Avatar.module.css @@ -0,0 +1,168 @@ +@layer components {.Avatar { + position: relative; + overflow: hidden; + display: inline-flex; + align-items: center; + justify-content: center; + flex-grow: 0; + flex-shrink: 0; + width: var(--avatar-size); + height: var(--avatar-size); + border-radius: var(--avatar-radius); + transition: background-color 0.3s var(--cubic-enter); + -webkit-user-select: none; + -moz-user-select: none; + user-select: none; +} + + /* Interactive */ + .Avatar[type="button"] { + cursor: pointer; + } + + .Avatar[type="button"]:focus-visible { + outline: 2px solid var(--avatar-ring-color); + outline-offset: 2px; + } + + .Avatar[data-variant="soft"] { + background-color: var(--avatar-background-color); + color: var(--avatar-text-color); + } + + .Avatar[data-variant="soft"]:where([data-color="primary"]) { + --avatar-background-color: var(--color-background-primary-soft); + --avatar-text-color: var(--color-text-primary-soft); + --avatar-ring-color: var(--color-ring-primary-soft); + } + + .Avatar[data-variant="soft"]:where([data-color="secondary"]) { + --avatar-background-color: var(--color-background-secondary-soft); + --avatar-text-color: var(--color-text-secondary-soft); + --avatar-ring-color: var(--color-ring-secondary-soft); + } + + .Avatar[data-variant="soft"]:where([data-color="discovery"]) { + --avatar-background-color: var(--color-background-discovery-soft); + --avatar-text-color: var(--color-text-discovery-soft); + --avatar-ring-color: var(--color-ring-discovery-soft); + } + + .Avatar[data-variant="soft"]:where([data-color="info"]) { + --avatar-background-color: var(--color-background-info-soft); + --avatar-text-color: var(--color-text-info-soft); + --avatar-ring-color: var(--color-ring-info-soft); + } + + .Avatar[data-variant="soft"]:where([data-color="success"]) { + --avatar-background-color: var(--color-background-success-soft); + --avatar-text-color: var(--color-text-success-soft); + --avatar-ring-color: var(--color-ring-success-soft); + } + + .Avatar[data-variant="soft"]:where([data-color="danger"]) { + --avatar-background-color: var(--color-background-danger-soft); + --avatar-text-color: var(--color-text-danger-soft); + --avatar-ring-color: var(--color-ring-danger-soft); + } + + .Avatar[data-variant="solid"] { + background-color: var(--avatar-background-color); + color: var(--avatar-text-color); + } + + .Avatar[data-variant="solid"]:where([data-color="primary"]) { + --avatar-background-color: var(--color-background-primary-solid); + --avatar-text-color: var(--color-text-primary-solid); + --avatar-ring-color: var(--color-ring-primary-solid); + } + + .Avatar[data-variant="solid"]:where([data-color="secondary"]) { + --avatar-background-color: var(--color-background-secondary-solid); + --avatar-text-color: var(--color-text-secondary-solid); + --avatar-ring-color: var(--color-ring-secondary-solid); + } + + .Avatar[data-variant="solid"]:where([data-color="discovery"]) { + --avatar-background-color: var(--color-background-discovery-solid); + --avatar-text-color: var(--color-text-discovery-solid); + --avatar-ring-color: var(--color-ring-discovery-solid); + } + + .Avatar[data-variant="solid"]:where([data-color="info"]) { + --avatar-background-color: var(--color-background-info-solid); + --avatar-text-color: var(--color-text-info-solid); + --avatar-ring-color: var(--color-ring-info-solid); + } + + .Avatar[data-variant="solid"]:where([data-color="success"]) { + --avatar-background-color: var(--color-background-success-solid); + --avatar-text-color: var(--color-text-success-solid); + --avatar-ring-color: var(--color-ring-success-solid); + } + + .Avatar[data-variant="solid"]:where([data-color="danger"]) { + --avatar-background-color: var(--color-background-danger-solid); + --avatar-text-color: var(--color-text-danger-solid); + --avatar-ring-color: var(--color-ring-danger-solid); + }/* + * Images with low contrast backgrounds should have clear edges, + * but this border should not impact the size of the image, or + * create fringed edges on various background colors. Using a transparency + * on top of the image ensures crisp edges while also solving the issue of low contrast backgrounds. + */.AvatarImageContainer { + border-radius: inherit; +} + + .AvatarImageContainer::after { + position: absolute; + inset: 0; + display: block; + border: 1px solid var(--avatar-image-border-color); + border-radius: inherit; + content: ""; + pointer-events: none; + }.AvatarImage { + position: absolute; + top: 0; + left: 0; + width: 100%; + height: 100%; + border-radius: inherit; + -o-object-fit: cover; + object-fit: cover; + opacity: 0; + /* Prevent awkward dragging of the image */ + pointer-events: none; + transition: 0.15s ease; +} + + .AvatarImage[data-loaded] { + opacity: 1; + }.AvatarInitial { + font-size: calc(var(--avatar-size) * var(--avatar-font-size-scaling)); + font-weight: var(--font-weight-semibold); +}.AvatarOverflowCount { + font-size: calc(var(--avatar-size) * var(--avatar-overflow-font-size-scaling-three)); + font-weight: var(--font-weight-semibold); +} + + .AvatarOverflowCount[data-letter-count="2"] { + font-size: calc(var(--avatar-size) * var(--avatar-overflow-font-size-scaling-two)); + } + + .AvatarOverflowCount[data-letter-count="1"] { + font-size: calc(var(--avatar-size) * var(--avatar-overflow-font-size-scaling-one)); + }/* + * The "+" sits very low in the baseline - this lifts it up 1px per 24px of size + */.AvatarOverflowCountSymbol { + position: relative; + top: calc(-1 * var(--avatar-size) / 24); + margin-left: -1px; +}.AvatarIcon { + display: block; + flex-grow: 0; + flex-shrink: 0; + font-size: calc(var(--avatar-size) * 0.7); +} +} diff --git a/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/Avatar/AvatarGroup.js b/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/Avatar/AvatarGroup.js new file mode 100644 index 0000000000000000000000000000000000000000..a92b7725751760765cae32e913557a725f6a0160 --- /dev/null +++ b/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/Avatar/AvatarGroup.js @@ -0,0 +1,14 @@ +import { jsx as _jsx } from "react/jsx-runtime"; +import clsx from "clsx"; +import { Children, cloneElement, isValidElement } from "react"; +import { toCssVariables } from "../../lib/helpers"; +import s from "./AvatarGroup.module.css"; +export const AvatarGroup = ({ className, stack = "start", size, children }) => { + const childrenArray = Children.toArray(children); + // Conditionally reverse the array depending on desired stacking priority + const maybeReversedChildren = stack === "start" ? childrenArray.slice().reverse() : childrenArray; + return (_jsx("div", { className: clsx(s.Group, className), "data-stack": stack, style: toCssVariables({ + "avatar-size": size, + }), children: maybeReversedChildren.map((child) => (isValidElement(child) ? cloneElement(child) : child)) })); +}; +//# sourceMappingURL=AvatarGroup.js.map \ No newline at end of file diff --git a/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/Avatar/AvatarGroup.js.map b/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/Avatar/AvatarGroup.js.map new file mode 100644 index 0000000000000000000000000000000000000000..7c39a47f3d4fc908e708ce8e63c637dc5d0c2f5a --- /dev/null +++ b/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/Avatar/AvatarGroup.js.map @@ -0,0 +1 @@ +{"version":3,"file":"AvatarGroup.js","sourceRoot":"","sources":["../../../../src/components/Avatar/AvatarGroup.tsx"],"names":[],"mappings":";AAAA,OAAO,IAAI,MAAM,MAAM,CAAA;AACvB,OAAO,EAAE,QAAQ,EAAE,YAAY,EAAE,cAAc,EAAkB,MAAM,OAAO,CAAA;AAC9E,OAAO,EAAE,cAAc,EAAE,MAAM,mBAAmB,CAAA;AAClD,OAAO,CAAC,MAAM,0BAA0B,CAAA;AAexC,MAAM,CAAC,MAAM,WAAW,GAAG,CAAC,EAAE,SAAS,EAAE,KAAK,GAAG,OAAO,EAAE,IAAI,EAAE,QAAQ,EAAoB,EAAE,EAAE;IAC9F,MAAM,aAAa,GAAG,QAAQ,CAAC,OAAO,CAAC,QAAQ,CAAC,CAAA;IAChD,yEAAyE;IACzE,MAAM,qBAAqB,GAAG,KAAK,KAAK,OAAO,CAAC,CAAC,CAAC,aAAa,CAAC,KAAK,EAAE,CAAC,OAAO,EAAE,CAAC,CAAC,CAAC,aAAa,CAAA;IAEjG,OAAO,CACL,cACE,SAAS,EAAE,IAAI,CAAC,CAAC,CAAC,KAAK,EAAE,SAAS,CAAC,gBACvB,KAAK,EACjB,KAAK,EAAE,cAAc,CAAC;YACpB,aAAa,EAAE,IAAI;SACpB,CAAC,YAED,qBAAqB,CAAC,GAAG,CAAC,CAAC,KAAK,EAAE,EAAE,CAAC,CAAC,cAAc,CAAC,KAAK,CAAC,CAAC,CAAC,CAAC,YAAY,CAAC,KAAK,CAAC,CAAC,CAAC,CAAC,KAAK,CAAC,CAAC,GACxF,CACP,CAAA;AACH,CAAC,CAAA","sourcesContent":["import clsx from \"clsx\"\nimport { Children, cloneElement, isValidElement, type ReactNode } from \"react\"\nimport { toCssVariables } from \"../../lib/helpers\"\nimport s from \"./AvatarGroup.module.css\"\n\nexport type AvatarGroupProps = {\n /** Class name passed to the group container */\n className?: string\n /**\n * Determines stacking layer order\n * @default start\n */\n stack?: \"start\" | \"end\"\n /** Size all avatars in the group, in pixels. */\n size?: number\n children: ReactNode\n}\n\nexport const AvatarGroup = ({ className, stack = \"start\", size, children }: AvatarGroupProps) => {\n const childrenArray = Children.toArray(children)\n // Conditionally reverse the array depending on desired stacking priority\n const maybeReversedChildren = stack === \"start\" ? childrenArray.slice().reverse() : childrenArray\n\n return (\n \n {maybeReversedChildren.map((child) => (isValidElement(child) ? cloneElement(child) : child))}\n \n )\n}\n"]} \ No newline at end of file diff --git a/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/Avatar/AvatarGroup.module.css b/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/Avatar/AvatarGroup.module.css new file mode 100644 index 0000000000000000000000000000000000000000..cb8a210f893695451c4895fc9693e0c1b0c5f539 --- /dev/null +++ b/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/Avatar/AvatarGroup.module.css @@ -0,0 +1,26 @@ +@layer components {.Group { + display: flex; +} + + .Group > * ~ * { + box-shadow: 0 0 0 var(--avatar-group-cutout-width) var(--avatar-group-cutout-color); + + /* + * Mask approach avoids the need to apply a specific color, however: + * -radial masks currently have very harsh anti-aliasing + * - sizing must be set statically, and cannot use % sizing. You trade one imperative value for another. + * mask-image: radial-gradient(circle 22px at -15px, transparent 99%, #fff 100%); + */ + } + + .Group[data-stack="start"] { + flex-direction: row-reverse; + } + + .Group[data-stack="start"] > * ~ * { + margin-inline-end: var(--avatar-group-spacing); + } + .Group[data-stack="end"] > * ~ * { + margin-inline-start: var(--avatar-group-spacing); + } +} diff --git a/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/Avatar/index.js b/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/Avatar/index.js new file mode 100644 index 0000000000000000000000000000000000000000..5d3ee0dcbb5a210281abc326f7ad8f438f3f8af9 --- /dev/null +++ b/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/Avatar/index.js @@ -0,0 +1,3 @@ +export { Avatar } from "./Avatar"; +export { AvatarGroup } from "./AvatarGroup"; +//# sourceMappingURL=index.js.map \ No newline at end of file diff --git a/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/Avatar/index.js.map b/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/Avatar/index.js.map new file mode 100644 index 0000000000000000000000000000000000000000..8e48ab952d941956c7b2dc83bc13fe6596f22d6a --- /dev/null +++ b/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/Avatar/index.js.map @@ -0,0 +1 @@ +{"version":3,"file":"index.js","sourceRoot":"","sources":["../../../../src/components/Avatar/index.tsx"],"names":[],"mappings":"AAAA,OAAO,EAAE,MAAM,EAAoB,MAAM,UAAU,CAAA;AACnD,OAAO,EAAE,WAAW,EAAyB,MAAM,eAAe,CAAA","sourcesContent":["export { Avatar, type AvatarProps } from \"./Avatar\"\nexport { AvatarGroup, type AvatarGroupProps } from \"./AvatarGroup\"\n"]} \ No newline at end of file diff --git a/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/Badge/Badge.module.css b/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/Badge/Badge.module.css new file mode 100644 index 0000000000000000000000000000000000000000..94e46421dcf35f366f4ced7badc04ecb00422f1f --- /dev/null +++ b/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/Badge/Badge.module.css @@ -0,0 +1,181 @@ +@layer components {.Badge { + --indicator-size: var(--badge-indicator-size); + + display: inline-flex; + align-items: center; + gap: calc(var(--spacing) * 1); + height: var(--badge-size); + padding: 0 var(--badge-gutter); + border-radius: var(--badge-radius); + font-size: var(--badge-font-size); + font-weight: var(--badge-font-weight); + letter-spacing: var(--badge-tracking); + white-space: nowrap; +} + + .Badge svg { + font-size: var(--badge-icon-font-size); + } + + :where(.Badge svg:first-child:not(:only-child)) { + margin-left: var(--badge-icon-offset, -1px); + } + + :where(.Badge svg:last-child:not(:only-child)) { + margin-right: var(--badge-icon-offset, -1px); + } + + /* ============================================= + Variants + ============================================= */ + .Badge[data-variant="soft"] { + background-color: var(--badge-background-color); + color: var(--badge-text-color); + } + + .Badge[data-variant="soft"]:where([data-color="secondary"]) { + --badge-background-color: var(--color-background-secondary-soft-alpha); + --badge-text-color: var(--color-text-secondary-soft); + } + + .Badge[data-variant="soft"]:where([data-color="success"]) { + --badge-background-color: var(--color-background-success-soft-alpha); + --badge-text-color: var(--color-text-success-soft); + } + + .Badge[data-variant="soft"]:where([data-color="warning"]) { + --badge-background-color: var(--color-background-warning-soft-alpha); + --badge-text-color: var(--color-text-warning-soft); + } + + .Badge[data-variant="soft"]:where([data-color="danger"]) { + --badge-background-color: var(--color-background-danger-soft-alpha); + --badge-text-color: var(--color-text-danger-soft); + } + + .Badge[data-variant="soft"]:where([data-color="info"]) { + --badge-background-color: var(--color-background-info-soft-alpha); + --badge-text-color: var(--color-text-info-soft); + } + + .Badge[data-variant="soft"]:where([data-color="discovery"]) { + --badge-background-color: var(--color-background-discovery-soft-alpha); + --badge-text-color: var(--color-text-discovery-soft); + } + + .Badge[data-variant="solid"] { + background-color: var(--badge-background-color); + color: var(--badge-text-color); + } + + .Badge[data-variant="solid"]:where([data-color="secondary"]) { + --badge-background-color: var(--color-background-secondary-solid); + --badge-text-color: var(--color-text-secondary-solid); + } + + .Badge[data-variant="solid"]:where([data-color="success"]) { + --badge-background-color: var(--color-background-success-solid); + --badge-text-color: var(--color-text-success-solid); + } + + .Badge[data-variant="solid"]:where([data-color="warning"]) { + --badge-background-color: var(--color-background-warning-solid); + --badge-text-color: var(--color-text-warning-solid); + } + + .Badge[data-variant="solid"]:where([data-color="danger"]) { + --badge-background-color: var(--color-background-danger-solid); + --badge-text-color: var(--color-text-danger-solid); + } + + .Badge[data-variant="solid"]:where([data-color="info"]) { + --badge-background-color: var(--color-background-info-solid); + --badge-text-color: var(--color-text-info-solid); + } + + .Badge[data-variant="solid"]:where([data-color="discovery"]) { + --badge-background-color: var(--color-background-discovery-solid); + --badge-text-color: var(--color-text-discovery-solid); + } + + .Badge[data-variant="outline"] { + /* Avoids additive `width` compared to other variants */ + box-shadow: 0 0 0 1px var(--badge-border-color) inset; + color: var(--badge-text-color); + } + + .Badge[data-variant="outline"]:where([data-color="secondary"]) { + --badge-border-color: var(--color-border-secondary-outline); + --badge-text-color: var(--color-text-secondary-outline); + } + + .Badge[data-variant="outline"]:where([data-color="success"]) { + --badge-border-color: var(--color-border-success-outline); + --badge-text-color: var(--color-text-success-outline); + } + + .Badge[data-variant="outline"]:where([data-color="warning"]) { + --badge-border-color: var(--color-border-warning-outline); + --badge-text-color: var(--color-text-warning-outline); + } + + .Badge[data-variant="outline"]:where([data-color="danger"]) { + --badge-border-color: var(--color-border-danger-outline); + --badge-text-color: var(--color-text-danger-outline); + } + + .Badge[data-variant="outline"]:where([data-color="info"]) { + --badge-border-color: var(--color-border-info-outline); + --badge-text-color: var(--color-text-info-outline); + } + + .Badge[data-variant="outline"]:where([data-color="discovery"]) { + --badge-border-color: var(--color-border-discovery-outline); + --badge-text-color: var(--color-text-discovery-outline); + } + + /* ============================================= + Sizes + ============================================= */ + .Badge:where([data-size="sm"]) { + --badge-size: var(--badge-size-sm); + --badge-gutter: var(--badge-gutter-sm); + --badge-font-size: var(--badge-font-size-sm); + --badge-font-weight: var(--badge-font-weight-sm); + --badge-tracking: var(--badge-tracking-sm); + --badge-radius: var(--badge-radius-sm); + --badge-icon-font-size: var(--badge-icon-font-size-sm); + --badge-indicator-size: var(--badge-indicator-size-sm); + } + + .Badge:where([data-size="md"]) { + --badge-size: var(--badge-size-md); + --badge-gutter: var(--badge-gutter-md); + --badge-font-size: var(--badge-font-size-md); + --badge-font-weight: var(--badge-font-weight-md); + --badge-tracking: var(--badge-tracking-md); + --badge-radius: var(--badge-radius-md); + --badge-icon-font-size: var(--badge-icon-font-size-md); + --badge-indicator-size: var(--badge-indicator-size-md); + } + + .Badge:where([data-size="lg"]) { + --badge-size: var(--badge-size-lg); + --badge-gutter: var(--badge-gutter-lg); + --badge-font-size: var(--badge-font-size-lg); + --badge-font-weight: var(--badge-font-weight-lg); + --badge-tracking: var(--badge-tracking-lg); + --badge-radius: var(--badge-radius-lg); + --badge-icon-font-size: var(--badge-icon-font-size-lg); + --badge-indicator-size: var(--badge-indicator-size-lg); + } + + /* ============================================= + Pill + ============================================= */ + .Badge:where([data-pill]) { + --badge-radius: var(--radius-full); + + padding: 0 calc(var(--badge-gutter) * var(--control-gutter-pill-scaling)); + } +} diff --git a/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/Badge/index.js b/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/Badge/index.js new file mode 100644 index 0000000000000000000000000000000000000000..e0bce578d78971ec691c31bb524992b835406e06 --- /dev/null +++ b/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/Badge/index.js @@ -0,0 +1,10 @@ +import { jsx as _jsx } from "react/jsx-runtime"; +import clsx from "clsx"; +import {} from "react"; +import { wrapTextNodeSiblings } from "../../lib/renderHelpers"; +import {} from "../../types"; +import s from "./Badge.module.css"; +export const Badge = ({ children, className, variant = "soft", color = "secondary", size = "sm", pill, ...restMaybeAsChildProps }) => { + return (_jsx("div", { className: clsx(s.Badge, className), "data-color": color, "data-size": size, "data-pill": pill ? "" : undefined, "data-variant": variant, ...restMaybeAsChildProps, children: wrapTextNodeSiblings(children) })); +}; +//# sourceMappingURL=index.js.map \ No newline at end of file diff --git a/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/Badge/index.js.map b/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/Badge/index.js.map new file mode 100644 index 0000000000000000000000000000000000000000..d10d2651ad2dba4282ed694d915cd7643f2a9315 --- /dev/null +++ b/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/Badge/index.js.map @@ -0,0 +1 @@ +{"version":3,"file":"index.js","sourceRoot":"","sources":["../../../../src/components/Badge/index.tsx"],"names":[],"mappings":";AAAA,OAAO,IAAI,MAAM,MAAM,CAAA;AACvB,OAAO,EAAkB,MAAM,OAAO,CAAA;AACtC,OAAO,EAAE,oBAAoB,EAAE,MAAM,yBAAyB,CAAA;AAC9D,OAAO,EAAkD,MAAM,aAAa,CAAA;AAC5E,OAAO,CAAC,MAAM,oBAAoB,CAAA;AAiClC,MAAM,CAAC,MAAM,KAAK,GAAG,CAAC,EACpB,QAAQ,EACR,SAAS,EACT,OAAO,GAAG,MAAM,EAChB,KAAK,GAAG,WAAW,EACnB,IAAI,GAAG,IAAI,EACX,IAAI,EACJ,GAAG,qBAAqB,EACb,EAAE,EAAE;IACf,OAAO,CACL,cACE,SAAS,EAAE,IAAI,CAAC,CAAC,CAAC,KAAK,EAAE,SAAS,CAAC,gBACvB,KAAK,eACN,IAAI,eACJ,IAAI,CAAC,CAAC,CAAC,EAAE,CAAC,CAAC,CAAC,SAAS,kBAClB,OAAO,KACjB,qBAAqB,YAExB,oBAAoB,CAAC,QAAQ,CAAC,GAC3B,CACP,CAAA;AACH,CAAC,CAAA","sourcesContent":["import clsx from \"clsx\"\nimport { type ReactNode } from \"react\"\nimport { wrapTextNodeSiblings } from \"../../lib/renderHelpers\"\nimport { type SemanticColors, type Sizes, type Variants } from \"../../types\"\nimport s from \"./Badge.module.css\"\n\nexport type BadgeProps = {\n /** Content rendered inside the badge */\n children: ReactNode\n /** Class applied to the badge */\n className?: string\n /**\n * Visual style of the badge\n * @default soft\n */\n variant?: Variants<\"solid\" | \"soft\" | \"outline\">\n /**\n * Size scale of the badge\n *\n * | sm | md | lg |\n * | ------- | ------- | ------- |\n * | `18px` | `22px` | `24px` |\n * @default sm\n */\n size?: Sizes<\"sm\" | \"md\" | \"lg\">\n /**\n * Determines if the badge should be a fully rounded pill shape\n * @default false\n */\n pill?: boolean\n /**\n * Color of the badge, related to its meaning or intent\n * @default secondary\n */\n color?: SemanticColors<\"secondary\" | \"success\" | \"danger\" | \"warning\" | \"info\" | \"discovery\">\n}\n\nexport const Badge = ({\n children,\n className,\n variant = \"soft\",\n color = \"secondary\",\n size = \"sm\",\n pill,\n ...restMaybeAsChildProps\n}: BadgeProps) => {\n return (\n \n {wrapTextNodeSiblings(children)}\n \n )\n}\n"]} \ No newline at end of file diff --git a/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/Button/Button.js b/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/Button/Button.js new file mode 100644 index 0000000000000000000000000000000000000000..be233739d9212428767aea9cb2633bd126d626f8 --- /dev/null +++ b/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/Button/Button.js @@ -0,0 +1,69 @@ +"use client"; +import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime"; +import clsx from "clsx"; +import { useCallback, } from "react"; +import { handlePressableMouseEnter } from "../../lib/helpers"; +import { wrapTextNodeSiblings } from "../../lib/renderHelpers"; +import {} from "../../types"; +import { useLinkComponent } from "../AppsSDKUIProvider/internal"; +import { LoadingIndicator } from "../Indicator"; +import { TransitionGroup } from "../Transition/TransitionGroup"; +import s from "./Button.module.css"; +export const Button = (props) => { + const { type = "button", color = "primary", variant = "solid", pill = true, uniform = false, size = "md", iconSize, gutterSize, loading, selected, block, opticallyAlign, children, className, onClick, disabled, disabledTone, + // Defaults to `loading` state + inert = loading, ...restProps } = props; + const isInert = disabled || inert; + const handleClick = useCallback((e) => { + if (disabled) { + return; + } + onClick?.(e); + }, [onClick, disabled]); + return (_jsxs("button", { type: type, className: clsx(s.Button, className), "data-color": color, "data-variant": variant, "data-pill": pill ? "" : undefined, "data-uniform": uniform ? "" : undefined, "data-size": size, "data-gutter-size": gutterSize, "data-icon-size": iconSize, "data-loading": loading ? "" : undefined, "data-selected": selected ? "" : undefined, "data-block": block ? "" : undefined, "data-optically-align": opticallyAlign, onPointerEnter: handlePressableMouseEnter, + // Non-visual, accessible disablement + // NOTE: Do not use literal `inert` because that is incorrect semantically + disabled: isInert, "aria-disabled": isInert, tabIndex: isInert ? -1 : undefined, "data-disabled": disabled ? "" : undefined, "data-disabled-tone": disabled ? disabledTone : undefined, onClick: handleClick, ...restProps, children: [_jsx(TransitionGroup, { className: s.ButtonLoader, enterDuration: 250, exitDuration: 150, children: loading && _jsx(LoadingIndicator, {}, "loader") }), _jsx("span", { className: s.ButtonInner, children: wrapTextNodeSiblings(children) })] })); +}; +export const ButtonLink = ((props) => { + const { color = "primary", variant = "solid", pill = true, size = "md", gutterSize, iconSize, external, block, opticallyAlign, children, className, disabled, disabledTone, onClick, onPointerEnter, as: OverrideComponent, href, to, ...restProps } = props; + const isExternal = external ?? /^https?:\/\//.test(href ?? to ?? ""); + const DefaultComponent = useLinkComponent(); + const LinkComponent = OverrideComponent || (isExternal ? "a" : DefaultComponent); + const sharedProps = { + "className": clsx(s.Button, className), + disabled, + "aria-disabled": disabled, + "tabIndex": disabled ? -1 : undefined, + // Visual disablement (inert not supported in links, always applied) + "data-disabled": disabled ? "" : undefined, + "data-disabled-tone": disabled ? disabledTone : undefined, + "data-color": color, + "data-variant": variant, + "data-pill": pill ? "" : undefined, + "data-block": block ? "" : undefined, + "data-optically-align": opticallyAlign, + "data-size": size, + "data-gutter-size": gutterSize, + "data-icon-size": iconSize, + "onClick": disabled ? undefined : onClick, + "onPointerEnter": (evt) => { + handlePressableMouseEnter(evt); + onPointerEnter?.(evt); + }, + }; + if (disabled) { + // Don't thread down stuff that isn't valid for a span - just keep the event handlers + const eventProps = Object.fromEntries(Object.entries(restProps).filter(([key, value]) => key.startsWith("on") && typeof value === "function")); + return (_jsx("span", { role: "link", ...sharedProps, ...eventProps, children: _jsx("span", { className: s.ButtonInner, children: wrapTextNodeSiblings(children) }) })); + } + const linkProps = { + ...(isExternal + ? { target: "_blank", rel: "noopener noreferrer", href: href ?? to } + : { href, to }), + ...sharedProps, + ...restProps, + }; + return (_jsx(LinkComponent, { ...linkProps, children: _jsx("span", { className: s.ButtonInner, children: wrapTextNodeSiblings(children) }) })); +}); +//# sourceMappingURL=Button.js.map \ No newline at end of file diff --git a/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/Button/Button.js.map b/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/Button/Button.js.map new file mode 100644 index 0000000000000000000000000000000000000000..0b686c0ac29080db2c159acb7edc3f4f61b2b0cb --- /dev/null +++ b/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/Button/Button.js.map @@ -0,0 +1 @@ +{"version":3,"file":"Button.js","sourceRoot":"","sources":["../../../../src/components/Button/Button.tsx"],"names":[],"mappings":"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","sourcesContent":["\"use client\"\n\nimport clsx from \"clsx\"\nimport {\n type ButtonHTMLAttributes,\n type ComponentProps,\n type ComponentType,\n type MouseEventHandler,\n type ReactNode,\n useCallback,\n} from \"react\"\nimport { handlePressableMouseEnter } from \"../../lib/helpers\"\nimport { wrapTextNodeSiblings } from \"../../lib/renderHelpers\"\nimport { type ControlSize, type SemanticColors, type Sizes, type Variants } from \"../../types\"\nimport { useLinkComponent } from \"../AppsSDKUIProvider/internal\"\nimport { LoadingIndicator } from \"../Indicator\"\nimport { TransitionGroup } from \"../Transition/TransitionGroup\"\nimport s from \"./Button.module.css\"\n\ntype CommonProps = {\n /**\n * Color for the button\n * @default secondary\n */\n color: SemanticColors<\n \"primary\" | \"secondary\" | \"danger\" | \"success\" | \"info\" | \"discovery\" | \"caution\" | \"warning\"\n >\n /**\n * Style variant for the Button\n * @default \"solid\"\n */\n variant?: Variants<\"solid\" | \"soft\" | \"outline\" | \"ghost\">\n /**\n * Determines if the button should be a fully rounded pill shape\n * @default true\n */\n pill?: boolean\n /**\n * Disables the button visually and from interactions\n * @default false\n */\n disabled?: boolean\n /**\n * Controls the visual tone when the button is disabled. \"relaxed\" will use a default cursor instead of not-allowed.\n */\n disabledTone?: \"relaxed\"\n /**\n * Determines if the button should take up 100% of available width\n * @default false\n */\n block?: boolean\n /**\n * Applies a negative margin using the current gutter to optically align the button\n * with surrounding content.\n */\n opticallyAlign?: \"start\" | \"end\"\n /**\n * Controls size of the button, specifically height, but also includes defaults for `gutterSize`, `iconSize`, `font-size`, etc.\n *\n * | 3xs | 2xs | xs | sm | md | lg | xl | 2xl | 3xl |\n * | ------- | ------- | ------- | ------- | ------- | ------- | ------- | ------- | ------- |\n * | `22px` | `24px` | `26px` | `28px` | `32px` | `36px` | `40px` | `44px` | `48px` |\n * @default md\n */\n size?: ControlSize\n /**\n * Controls the size of icons within the button, defaults to value from `size`.\n *\n * | xs | sm | md | lg | xl | 2xl |\n * | ------ | ------ | ------ | ------ | ------ | ------ |\n * | `14px` | `16px` | `18px` | `20px` | `22px` | `24px` |\n */\n iconSize?: Sizes<\"sm\" | \"md\" | \"lg\" | \"xl\" | \"2xl\">\n /**\n * Controls gutter on the edges of the button, defaults to value from `size`.\n *\n * | 3xs | 2xs | xs | sm | md | lg | xl |\n * | ------ | ------ | ------ | ------ | ------ | ------ | ------ |\n * | `4px` | `6px` | `8px` | `10px` | `12px` | `14px` | `16px` |\n */\n gutterSize?: Sizes<\"3xs\" | \"2xs\" | \"xs\" | \"sm\" | \"md\" | \"lg\" | \"xl\">\n /** Custom class applied to the Button element */\n className?: string\n /** Content rendered inside of the Button */\n children: React.ReactNode\n}\n\nexport type ButtonProps = CommonProps & {\n /**\n * Determines if the button should have matching width and height, based on the `size`.\n * @default false\n */\n uniform?: boolean\n /**\n * Displays selected styles on the button, varying by `variant\n * @default false\n */\n selected?: boolean\n /**\n * Displays loading indicator on top of button contents\n * @default false\n */\n loading?: boolean\n /**\n * Determines whether the button should be made inert, without introducing visual change.\n * @default false\n */\n inert?: boolean\n /** Ref for the button */\n ref?: React.Ref\n} & ButtonHTMLAttributes\n\nexport const Button = (props: ButtonProps) => {\n const {\n type = \"button\",\n color = \"primary\",\n variant = \"solid\",\n pill = true,\n uniform = false,\n size = \"md\",\n iconSize,\n gutterSize,\n loading,\n selected,\n block,\n opticallyAlign,\n children,\n className,\n onClick,\n disabled,\n disabledTone,\n // Defaults to `loading` state\n inert = loading,\n ...restProps\n } = props\n\n const isInert = disabled || inert\n\n const handleClick: MouseEventHandler = useCallback(\n (e) => {\n if (disabled) {\n return\n }\n onClick?.(e)\n },\n [onClick, disabled],\n )\n\n return (\n \n \n {loading && }\n \n {wrapTextNodeSiblings(children)}\n \n )\n}\n\ntype ButtonLink = <\n // eslint-disable-next-line @typescript-eslint/no-explicit-any\n T extends ComponentType | \"a\" = AppsSDKUI.LinkComponent,\n>(\n props: Omit, \"href\"> &\n CommonProps & {\n /**\n * Explicity specify that the link is an external link. This should be\n * automatically detected based on the URL, but in some cases (e.g.\n * my-app://foo) you may want to explicitly set this.\n */\n external?: boolean\n /**\n * Override the default component used for the link. This is useful for\n * using a routing library, or SSR rendering.\n * purposes.\n *\n * @default 'a'\n */\n as?: T\n } & ComponentProps,\n) => ReactNode\n\nexport const ButtonLink = ((\n props: Omit, \"href\"> &\n CommonProps & {\n href?: string\n to?: string\n external?: boolean\n as?: AppsSDKUI.LinkComponent\n },\n) => {\n const {\n color = \"primary\",\n variant = \"solid\",\n pill = true,\n size = \"md\",\n gutterSize,\n iconSize,\n external,\n block,\n opticallyAlign,\n children,\n className,\n disabled,\n disabledTone,\n onClick,\n onPointerEnter,\n as: OverrideComponent,\n href,\n to,\n ...restProps\n } = props\n\n const isExternal = external ?? /^https?:\\/\\//.test(href ?? to ?? \"\")\n const DefaultComponent = useLinkComponent()\n const LinkComponent = OverrideComponent || (isExternal ? \"a\" : DefaultComponent)\n\n const sharedProps = {\n \"className\": clsx(s.Button, className),\n disabled,\n \"aria-disabled\": disabled,\n \"tabIndex\": disabled ? -1 : undefined,\n // Visual disablement (inert not supported in links, always applied)\n \"data-disabled\": disabled ? \"\" : undefined,\n \"data-disabled-tone\": disabled ? disabledTone : undefined,\n \"data-color\": color,\n \"data-variant\": variant,\n \"data-pill\": pill ? \"\" : undefined,\n \"data-block\": block ? \"\" : undefined,\n \"data-optically-align\": opticallyAlign,\n \"data-size\": size,\n \"data-gutter-size\": gutterSize,\n \"data-icon-size\": iconSize,\n \"onClick\": disabled ? undefined : onClick,\n \"onPointerEnter\": (evt: React.PointerEvent) => {\n handlePressableMouseEnter(evt)\n onPointerEnter?.(evt)\n },\n }\n\n if (disabled) {\n // Don't thread down stuff that isn't valid for a span - just keep the event handlers\n const eventProps = Object.fromEntries(\n Object.entries(restProps).filter(\n ([key, value]) => key.startsWith(\"on\") && typeof value === \"function\",\n ),\n )\n return (\n \n {wrapTextNodeSiblings(children)}\n \n )\n }\n\n const linkProps = {\n ...(isExternal\n ? { target: \"_blank\", rel: \"noopener noreferrer\", href: href ?? to }\n : { href, to }),\n ...sharedProps,\n ...restProps,\n }\n\n return (\n \n {wrapTextNodeSiblings(children)}\n \n )\n}) as ButtonLink\n"]} \ No newline at end of file diff --git a/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/Button/Button.module.css b/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/Button/Button.module.css new file mode 100644 index 0000000000000000000000000000000000000000..452f51fa5aa695d454d539f83623743f159b64de --- /dev/null +++ b/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/Button/Button.module.css @@ -0,0 +1,838 @@ +@layer components {.Button { + position: relative; + display: inline-block; + gap: var(--button-gap); /* Propagates down to .ButtonInner */ + flex-shrink: 0; + height: var(--button-size); + padding: 0 var(--button-gutter); + border-radius: var(--button-radius); + cursor: pointer; + font-size: var(--button-font-size); + font-weight: var(--button-font-weight); + line-height: 1; + transition-duration: var(--transition-duration-basic); + transition-property: opacity, color; + transition-timing-function: var(--transition-ease-basic); + -webkit-user-select: none; + -moz-user-select: none; + user-select: none; + white-space: nowrap; + + /* ============================================= + Disabled + ============================================= */ +} + + /* Background / shape of the button */ + .Button::before { + position: absolute; + inset: 0; + display: block; + border-radius: inherit; + content: ""; + transition-duration: var(--transition-duration-basic); + transition-property: opacity, background-color, transform, box-shadow, border-color; + transition-timing-function: var(--transition-ease-basic); + /* Composite layer seems required in some cases to avoid visual artifacts. */ + will-change: transform; + } + + /* Focus ring */ + .Button::after { + position: absolute; + inset: 0; + display: block; + border-radius: inherit; + content: ""; + pointer-events: none; + transition-duration: var(--transition-duration-basic); + transition-property: transform; + transition-timing-function: var(--transition-ease-basic); + /* Composite layer seems required in some cases to avoid visual artifacts. */ + will-change: transform; + } + + .Button:focus { + outline: none; + } + .Button:focus-visible::after { + outline: 2px solid var(--button-ring-color, var(--color-ring)); + outline-offset: var(--button-ring-offset, 2px); + } + + .Button svg:where(:not([data-no-autosize])) { + width: var(--button-icon-size); + height: var(--button-icon-size); + } + + :where(.Button svg:where(:not([data-no-autosize])):first-child:not(:only-child)) { + margin-left: var(--button-icon-offset, -1px); + } + + :where(.Button svg:where(:not([data-no-autosize])):last-child:not(:only-child)) { + margin-right: var(--button-icon-offset, -1px); + } + + /* ============================================= + Optical alignment + ============================================= */ + .Button:where([data-optically-align="start"]) { + margin-inline-start: calc(var(--button-gutter) * -1); + } + + .Button:where([data-optically-align="end"]) { + margin-inline-end: calc(var(--button-gutter) * -1); + } + + /* Uniform buttons zero-out button-gutter, requiring custom calcs */ + .Button:where([data-optically-align="start"][data-uniform]) { + margin-inline-start: calc(((var(--button-size) - var(--button-icon-size)) / 2) * -1); + } + + .Button:where([data-optically-align="end"][data-uniform]) { + margin-inline-end: calc(((var(--button-size) - var(--button-icon-size)) / 2) * -1); + } + + /* ============================================= + Sizes + ============================================= */ + .Button:where([data-size="3xs"]) { + --button-size: var(--control-size-3xs); + --button-gutter: var(--control-gutter-2xs); + --button-font-size: var(--control-font-size-sm); + --button-icon-size: var(--control-icon-size-xs); + --button-gap: var(--button-gap-sm); + --button-radius: var(--control-radius-sm); + --button-icon-offset: -1px; + --indicator-size: 11px; + --circular-progress-size: 11px; + } + + .Button:where([data-size="2xs"]) { + --button-size: var(--control-size-2xs); + --button-gutter: var(--control-gutter-xs); + --button-font-size: var(--control-font-size-sm); + --button-icon-size: var(--control-icon-size-sm); + --button-gap: var(--button-gap-md); + --button-radius: var(--control-radius-sm); + --button-icon-offset: -1px; + --indicator-size: 12px; + --circular-progress-size: 12px; + } + + .Button:where([data-size="xs"]) { + --button-size: var(--control-size-xs); + --button-gutter: var(--control-gutter-xs); + --button-font-size: var(--control-font-size-md); + --button-icon-size: var(--control-icon-size-sm); + --button-gap: var(--button-gap-md); + --button-radius: var(--control-radius-sm); + --button-icon-offset: -1px; + --indicator-size: 13px; + --circular-progress-size: 14px; + } + + .Button:where([data-size="sm"]) { + --button-size: var(--control-size-sm); + --button-gutter: var(--control-gutter-sm); + --button-font-size: var(--control-font-size-md); + --button-icon-size: var(--control-icon-size-md); + --button-gap: var(--button-gap-md); + --button-radius: var(--control-radius-sm); + --button-icon-offset: -1px; + --indicator-size: 15px; + --circular-progress-size: 15px; + } + + .Button:where([data-size="md"]) { + --button-size: var(--control-size-md); + --button-gutter: var(--control-gutter-md); + --button-font-size: var(--control-font-size-md); + --button-icon-size: var(--control-icon-size-md); + --button-gap: var(--button-gap-lg); + --button-radius: var(--control-radius-md); + --button-icon-offset: -1px; + --indicator-size: 16px; + --circular-progress-size: 16px; + } + + .Button:where([data-size="lg"]) { + --button-size: var(--control-size-lg); + --button-gutter: var(--control-gutter-md); + --button-font-size: var(--control-font-size-md); + --button-icon-size: var(--control-icon-size-md); + --button-gap: var(--button-gap-lg); + --button-radius: var(--control-radius-md); + --button-icon-offset: -1px; + --indicator-size: 16px; + --circular-progress-size: 16px; + } + + .Button:where([data-size="xl"]) { + --button-size: var(--control-size-xl); + --button-gutter: var(--control-gutter-lg); + --button-font-size: var(--control-font-size-md); + --button-icon-size: var(--control-icon-size-md); + --button-gap: var(--button-gap-lg); + --button-radius: var(--control-radius-lg); + --button-icon-offset: -1px; + --indicator-size: 18px; + --circular-progress-size: 18px; + } + + .Button:where([data-size="2xl"]) { + --button-size: var(--control-size-2xl); + --button-gutter: var(--control-gutter-lg); + --button-font-size: var(--control-font-size-lg); + --button-icon-size: var(--control-icon-size-lg); + --button-gap: var(--button-gap-lg); + --button-radius: var(--control-radius-xl); + --button-icon-offset: -2px; + --indicator-size: 18px; + --circular-progress-size: 18px; + } + + .Button:where([data-size="3xl"]) { + --button-size: var(--control-size-3xl); + --button-gutter: var(--control-gutter-xl); + --button-font-size: var(--control-font-size-lg); + --button-icon-size: var(--control-icon-size-lg); + --button-gap: var(--button-gap-lg); + --button-radius: var(--control-radius-xl); + --button-icon-offset: -2px; + --indicator-size: 20px; + --circular-progress-size: 20px; + } + + /* ============================================= + Gutter sizes + ============================================= */ + .Button:where([data-gutter-size="2xs"]) { + --button-gutter: var(--control-gutter-2xs); + } + + .Button:where([data-gutter-size="xs"]) { + --button-gutter: var(--control-gutter-xs); + } + + .Button:where([data-gutter-size="sm"]) { + --button-gutter: var(--control-gutter-sm); + } + + .Button:where([data-gutter-size="md"]) { + --button-gutter: var(--control-gutter-md); + } + + .Button:where([data-gutter-size="lg"]) { + --button-gutter: var(--control-gutter-lg); + } + + .Button:where([data-gutter-size="xl"]) { + --button-gutter: var(--control-gutter-xl); + } + + /* ============================================= + Icon sizes + ============================================= */ + .Button:where([data-icon-size="sm"]) { + --button-icon-size: var(--control-icon-size-sm); + } + + .Button:where([data-icon-size="md"]) { + --button-icon-size: var(--control-icon-size-md); + } + + .Button:where([data-icon-size="lg"]) { + --button-icon-size: var(--control-icon-size-lg); + } + + .Button:where([data-icon-size="xl"]) { + --button-icon-size: var(--control-icon-size-xl); + } + + .Button:where([data-icon-size="2xl"]) { + --button-icon-size: var(--control-icon-size-2xl); + } + + /* ============================================= + Pill + ============================================= */ + .Button:where([data-pill]) { + --button-radius: var(--radius-full); + + padding: 0 calc(var(--button-gutter) * var(--control-gutter-pill-scaling)); + } + + /* ============================================= + Block + ============================================= */ + .Button:where([data-block]) { + width: 100%; + } + + /* ============================================= + Uniform + ============================================= */ + .Button[data-uniform] { + --button-gutter: 0; + + width: var(--button-size); + } + + /* ============================================= + Ghost variant + ============================================= */ + .Button[data-variant="ghost"] { + --button-ring-offset: -1px; + + color: var(--button-text-color); + } + + .Button[data-variant="ghost"]::before { + background-color: var(--button-background-color); + opacity: 0; + transform: scale(var(--scale)); + } + + .Button[data-variant="ghost"][aria-expanded="true"], + .Button[data-variant="ghost"][data-state="open"] { + color: var(--button-text-color-hover); + } + + .Button[data-variant="ghost"][aria-expanded="true"]::before, .Button[data-variant="ghost"][data-state="open"]::before { + /* Slightly deemphasize */ + opacity: 0.6; + transform: scale(1); + } + + .Button[data-variant="ghost"][data-selected] { + color: var(--button-text-color-hover); + } + + .Button[data-variant="ghost"][data-selected]::before { + opacity: 1; + transform: scale(1); + } + @media (hover: hover) and (pointer: fine) {.Button[data-variant="ghost"]:where(:not([data-disabled])):hover { + color: var(--button-text-color-hover); +} + + .Button[data-variant="ghost"]:where(:not([data-disabled])):hover::before { + opacity: 1; + transform: scale(1); + } +} + .Button[data-variant="ghost"]:where(:not([data-disabled])):active::before { + background-color: var(--button-background-color-active); + opacity: 1; + transform: scale(var(--scale)); + } + + .Button[data-variant="ghost"]:where(:not([data-disabled])):active::after { + transform: scale(var(--scale)); + } + + .Button[data-variant="ghost"]:where([data-color="primary"]) { + --button-background-color: var(--color-background-primary-ghost-hover); + --button-background-color-active: var(--color-background-primary-ghost-active); + --button-text-color: var(--color-text-primary-ghost); + --button-text-color-hover: var(--color-text-primary-ghost-hover); + --button-ring-color: var(--color-ring-primary-ghost); + } + + .Button[data-variant="ghost"]:where([data-color="secondary"]) { + --button-background-color: var(--color-background-secondary-ghost-hover); + --button-background-color-active: var(--color-background-secondary-ghost-active); + --button-text-color: var(--color-text-secondary-ghost); + --button-text-color-hover: var(--color-text-secondary-ghost-hover); + --button-ring-color: var(--color-ring-secondary-ghost); + } + + .Button[data-variant="ghost"]:where([data-color="danger"]) { + --button-background-color: var(--color-background-danger-ghost-hover); + --button-background-color-active: var(--color-background-danger-ghost-active); + --button-text-color: var(--color-text-danger-ghost); + --button-text-color-hover: var(--color-text-danger-ghost-hover); + --button-ring-color: var(--color-ring-danger-ghost); + } + + .Button[data-variant="ghost"]:where([data-color="success"]) { + --button-background-color: var(--color-background-success-ghost-hover); + --button-background-color-active: var(--color-background-success-ghost-active); + --button-text-color: var(--color-text-success-ghost); + --button-text-color-hover: var(--color-text-success-ghost-hover); + --button-ring-color: var(--color-ring-success-ghost); + } + + .Button[data-variant="ghost"]:where([data-color="warning"]) { + --button-background-color: var(--color-background-warning-ghost-hover); + --button-background-color-active: var(--color-background-warning-ghost-active); + --button-text-color: var(--color-text-warning-ghost); + --button-text-color-hover: var(--color-text-warning-ghost-hover); + --button-ring-color: var(--color-ring-warning-ghost); + } + + .Button[data-variant="ghost"]:where([data-color="caution"]) { + --button-background-color: var(--color-background-caution-ghost-hover); + --button-background-color-active: var(--color-background-caution-ghost-active); + --button-text-color: var(--color-text-caution-ghost); + --button-text-color-hover: var(--color-text-caution-ghost-hover); + --button-ring-color: var(--color-ring-caution-ghost); + } + + .Button[data-variant="ghost"]:where([data-color="info"]) { + --button-background-color: var(--color-background-info-ghost-hover); + --button-background-color-active: var(--color-background-info-ghost-active); + --button-text-color: var(--color-text-info-ghost); + --button-text-color-hover: var(--color-text-info-ghost-hover); + --button-ring-color: var(--color-ring-info-ghost); + } + + .Button[data-variant="ghost"]:where([data-color="discovery"]) { + --button-background-color: var(--color-background-discovery-ghost-hover); + --button-background-color-active: var(--color-background-discovery-ghost-active); + --button-text-color: var(--color-text-discovery-ghost); + --button-text-color-hover: var(--color-text-discovery-ghost-hover); + --button-ring-color: var(--color-ring-discovery-ghost); + } + + /* ============================================= + Solid variant + ============================================= */ + .Button[data-variant="solid"] { + color: var(--button-text-color); + } + + .Button[data-variant="solid"]::before { + background-color: var(--button-background-color); + } + .Button[data-variant="solid"][aria-expanded="true"]::before, .Button[data-variant="solid"][data-state="open"]::before, .Button[data-variant="solid"][data-selected]::before { + background-color: var(--button-background-color-hover); + } + @media (hover: hover) and (pointer: fine) { + .Button[data-variant="solid"]:where(:not([data-disabled])):hover::before { + background-color: var(--button-background-color-hover); + } +} + .Button[data-variant="solid"]:where(:not([data-disabled])):active::before { + background-color: var(--button-background-color-active); + } + + .Button[data-variant="solid"]:where(:not([data-disabled])):active::before, + .Button[data-variant="solid"]:where(:not([data-disabled])):active::after { + transform: scale(var(--scale)); + } + + .Button[data-variant="solid"]:where([data-color="primary"]) { + --button-background-color: var(--color-background-primary-solid); + --button-background-color-hover: var(--color-background-primary-solid-hover); + --button-background-color-active: var(--color-background-primary-solid-active); + --button-text-color: var(--color-text-primary-solid); + --button-ring-color: var(--color-ring-primary-solid); + } + + .Button[data-variant="solid"]:where([data-color="secondary"]) { + --button-background-color: var(--color-background-secondary-solid); + --button-background-color-hover: var(--color-background-secondary-solid-hover); + --button-background-color-active: var(--color-background-secondary-solid-active); + --button-text-color: var(--color-text-secondary-solid); + --button-ring-color: var(--color-ring-secondary-solid); + } + + .Button[data-variant="solid"]:where([data-color="success"]) { + --button-background-color: var(--color-background-success-solid); + --button-background-color-hover: var(--color-background-success-solid-hover); + --button-background-color-active: var(--color-background-success-solid-active); + --button-text-color: var(--color-text-success-solid); + --button-ring-color: var(--color-ring-success-solid); + } + + .Button[data-variant="solid"]:where([data-color="danger"]) { + --button-background-color: var(--color-background-danger-solid); + --button-background-color-hover: var(--color-background-danger-solid-hover); + --button-background-color-active: var(--color-background-danger-solid-active); + --button-text-color: var(--color-text-danger-solid); + --button-ring-color: var(--color-ring-danger-solid); + } + + .Button[data-variant="solid"]:where([data-color="warning"]) { + --button-background-color: var(--color-background-warning-solid); + --button-background-color-hover: var(--color-background-warning-solid-hover); + --button-background-color-active: var(--color-background-warning-solid-active); + --button-text-color: var(--color-text-warning-solid); + --button-ring-color: var(--color-ring-warning-solid); + } + + .Button[data-variant="solid"]:where([data-color="caution"]) { + --button-background-color: var(--color-background-caution-solid); + --button-background-color-hover: var(--color-background-caution-solid-hover); + --button-background-color-active: var(--color-background-caution-solid-active); + --button-text-color: var(--color-text-caution-solid); + --button-ring-color: var(--color-ring-caution-solid); + } + + .Button[data-variant="solid"]:where([data-color="info"]) { + --button-background-color: var(--color-background-info-solid); + --button-background-color-hover: var(--color-background-info-solid-hover); + --button-background-color-active: var(--color-background-info-solid-active); + --button-text-color: var(--color-text-info-solid); + --button-ring-color: var(--color-ring-info-solid); + } + + .Button[data-variant="solid"]:where([data-color="discovery"]) { + --button-background-color: var(--color-background-discovery-solid); + --button-background-color-hover: var(--color-background-discovery-solid-hover); + --button-background-color-active: var(--color-background-discovery-solid-active); + --button-text-color: var(--color-text-discovery-solid); + --button-ring-color: var(--color-ring-discovery-solid); + } + + /* ============================================= + Soft variant + ============================================= */ + .Button[data-variant="soft"] { + color: var(--button-text-color); + } + + .Button[data-variant="soft"]::before { + background-color: var(--button-background-color); + } + .Button[data-variant="soft"][aria-expanded="true"]::before, .Button[data-variant="soft"][data-state="open"]::before, .Button[data-variant="soft"][data-selected]::before { + background-color: var(--button-background-color-hover); + } + @media (hover: hover) and (pointer: fine) { + .Button[data-variant="soft"]:where(:not([data-disabled])):hover::before { + background-color: var(--button-background-color-hover); + } +} + .Button[data-variant="soft"]:where(:not([data-disabled])):active::before { + background-color: var(--button-background-color-active); + } + + .Button[data-variant="soft"]:where(:not([data-disabled])):active::before, + .Button[data-variant="soft"]:where(:not([data-disabled])):active::after { + transform: scale(var(--scale)); + } + + .Button[data-variant="soft"]:where([data-color="primary"]) { + --button-background-color: var(--color-background-primary-soft-alpha); + --button-background-color-hover: var(--color-background-primary-soft-alpha-hover); + --button-background-color-active: var(--color-background-primary-soft-alpha-active); + --button-text-color: var(--color-text-primary-soft); + --button-ring-color: var(--color-ring-primary-soft); + } + + .Button[data-variant="soft"]:where([data-color="secondary"]) { + --button-background-color: var(--color-background-secondary-soft-alpha); + --button-background-color-hover: var(--color-background-secondary-soft-alpha-hover); + --button-background-color-active: var(--color-background-secondary-soft-alpha-active); + --button-text-color: var(--color-text-secondary-soft); + --button-ring-color: var(--color-ring-secondary-soft); + } + + .Button[data-variant="soft"]:where([data-color="success"]) { + --button-background-color: var(--color-background-success-soft-alpha); + --button-background-color-hover: var(--color-background-success-soft-alpha-hover); + --button-background-color-active: var(--color-background-success-soft-alpha-active); + --button-text-color: var(--color-text-success-soft); + --button-ring-color: var(--color-ring-success-soft); + } + + .Button[data-variant="soft"]:where([data-color="danger"]) { + --button-background-color: var(--color-background-danger-soft-alpha); + --button-background-color-hover: var(--color-background-danger-soft-alpha-hover); + --button-background-color-active: var(--color-background-danger-soft-alpha-active); + --button-text-color: var(--color-text-danger-soft); + --button-ring-color: var(--color-ring-danger-soft); + } + + .Button[data-variant="soft"]:where([data-color="warning"]) { + --button-background-color: var(--color-background-warning-soft-alpha); + --button-background-color-hover: var(--color-background-warning-soft-alpha-hover); + --button-background-color-active: var(--color-background-warning-soft-alpha-active); + --button-text-color: var(--color-text-warning-soft); + --button-ring-color: var(--color-ring-warning-soft); + } + + .Button[data-variant="soft"]:where([data-color="caution"]) { + --button-background-color: var(--color-background-caution-soft-alpha); + --button-background-color-hover: var(--color-background-caution-soft-alpha-hover); + --button-background-color-active: var(--color-background-caution-soft-alpha-active); + --button-text-color: var(--color-text-caution-soft); + --button-ring-color: var(--color-ring-caution-soft); + } + + .Button[data-variant="soft"]:where([data-color="info"]) { + --button-background-color: var(--color-background-info-soft-alpha); + --button-background-color-hover: var(--color-background-info-soft-alpha-hover); + --button-background-color-active: var(--color-background-info-soft-alpha-active); + --button-text-color: var(--color-text-info-soft); + --button-ring-color: var(--color-ring-info-soft); + } + + .Button[data-variant="soft"]:where([data-color="discovery"]) { + --button-background-color: var(--color-background-discovery-soft-alpha); + --button-background-color-hover: var(--color-background-discovery-soft-alpha-hover); + --button-background-color-active: var(--color-background-discovery-soft-alpha-active); + --button-text-color: var(--color-text-discovery-soft); + --button-ring-color: var(--color-ring-discovery-soft); + } + + /* ============================================= + Outline variant + ============================================= */ + .Button[data-variant="outline"] { + --button-ring-offset: -1px; + + color: var(--button-text-color); + } + + .Button[data-variant="outline"]::before { + background-color: transparent; + box-shadow: + 0 0 0 1px var(--button-border-color) inset, + var(--button-shadow-custom, 0 0 #00000000); + } + + .Button[data-variant="outline"][aria-expanded="true"], + .Button[data-variant="outline"][data-state="open"], + .Button[data-variant="outline"][data-selected] { + color: var(--button-text-color-hover); + } + + .Button[data-variant="outline"][aria-expanded="true"]::before, .Button[data-variant="outline"][data-state="open"]::before, .Button[data-variant="outline"][data-selected]::before { + background-color: var(--button-background-color-hover); + box-shadow: + 0 0 0 1px var(--button-border-color-hover) inset, + var(--button-shadow-custom, 0 0 #00000000); + } + @media (hover: hover) and (pointer: fine) {.Button[data-variant="outline"]:where(:not([data-disabled])):hover { + color: var(--button-text-color-hover); +} + + .Button[data-variant="outline"]:where(:not([data-disabled])):hover::before { + background-color: var(--button-background-color-hover); + box-shadow: + 0 0 0 1px var(--button-border-color-hover) inset, + var(--button-shadow-custom, 0 0 #00000000); + } +} + .Button[data-variant="outline"]:where(:not([data-disabled])):active::before { + background-color: var(--button-background-color-active); + transform: scale(var(--scale)); + } + + .Button[data-variant="outline"]:where(:not([data-disabled])):active::after { + transform: scale(var(--scale)); + } + + .Button[data-variant="outline"]:where([data-color="primary"]) { + --button-background-color-hover: var(--color-background-primary-outline-hover); + --button-background-color-active: var(--color-background-primary-outline-active); + --button-border-color: var(--color-border-primary-outline); + --button-border-color-hover: var(--color-border-primary-outline-hover); + --button-text-color: var(--color-text-primary-outline); + --button-text-color-hover: var(--color-text-primary-outline-hover); + --button-ring-color: var(--color-ring-primary-outline); + } + + .Button[data-variant="outline"]:where([data-color="secondary"]) { + --button-background-color-hover: var(--color-background-secondary-outline-hover); + --button-background-color-active: var(--color-background-secondary-outline-active); + --button-border-color: var(--color-border-secondary-outline); + --button-border-color-hover: var(--color-border-secondary-outline-hover); + --button-text-color: var(--color-text-secondary-outline); + --button-text-color-hover: var(--color-text-secondary-outline-hover); + --button-ring-color: var(--color-ring-secondary-outline); + } + + .Button[data-variant="outline"]:where([data-color="danger"]) { + --button-background-color-hover: var(--color-background-danger-outline-hover); + --button-background-color-active: var(--color-background-danger-outline-active); + --button-border-color: var(--color-border-danger-outline); + --button-border-color-hover: var(--color-border-danger-outline-hover); + --button-text-color: var(--color-text-danger-outline); + --button-text-color-hover: var(--color-text-danger-outline-hover); + --button-ring-color: var(--color-ring-danger-outline); + } + + .Button[data-variant="outline"]:where([data-color="success"]) { + --button-background-color-hover: var(--color-background-success-outline-hover); + --button-background-color-active: var(--color-background-success-outline-active); + --button-border-color: var(--color-border-success-outline); + --button-border-color-hover: var(--color-border-success-outline-hover); + --button-text-color: var(--color-text-success-outline); + --button-text-color-hover: var(--color-text-success-outline-hover); + --button-ring-color: var(--color-ring-success-outline); + } + + .Button[data-variant="outline"]:where([data-color="warning"]) { + --button-background-color-hover: var(--color-background-warning-outline-hover); + --button-background-color-active: var(--color-background-warning-outline-active); + --button-border-color: var(--color-border-warning-outline); + --button-border-color-hover: var(--color-border-warning-outline-hover); + --button-text-color: var(--color-text-warning-outline); + --button-text-color-hover: var(--color-text-warning-outline-hover); + --button-ring-color: var(--color-ring-warning-outline); + } + + .Button[data-variant="outline"]:where([data-color="caution"]) { + --button-background-color-hover: var(--color-background-caution-outline-hover); + --button-background-color-active: var(--color-background-caution-outline-active); + --button-border-color: var(--color-border-caution-outline); + --button-border-color-hover: var(--color-border-caution-outline-hover); + --button-text-color: var(--color-text-caution-outline); + --button-text-color-hover: var(--color-text-caution-outline-hover); + --button-ring-color: var(--color-ring-caution-outline); + } + + .Button[data-variant="outline"]:where([data-color="info"]) { + --button-background-color-hover: var(--color-background-info-outline-hover); + --button-background-color-active: var(--color-background-info-outline-active); + --button-border-color: var(--color-border-info-outline); + --button-border-color-hover: var(--color-border-info-outline-hover); + --button-text-color: var(--color-text-info-outline); + --button-text-color-hover: var(--color-text-info-outline-hover); + --button-ring-color: var(--color-ring-info-outline); + } + + .Button[data-variant="outline"]:where([data-color="discovery"]) { + --button-background-color-hover: var(--color-background-discovery-outline-hover); + --button-background-color-active: var(--color-background-discovery-outline-active); + --button-border-color: var(--color-border-discovery-outline); + --button-border-color-hover: var(--color-border-discovery-outline-hover); + --button-text-color: var(--color-text-discovery-outline); + --button-text-color-hover: var(--color-text-discovery-outline-hover); + --button-ring-color: var(--color-ring-discovery-outline); + } + /* Non-visual disablement, akin to `inert` */ + .Button[disabled] { + pointer-events: none; + } + + /* Visual disablement */ + .Button[data-disabled][data-variant] { + --button-background-color: var(--color-background-disabled); + --button-border-color: var(--color-border-disabled); + --button-text-color: var(--color-text-disabled); + + cursor: not-allowed; + pointer-events: auto; + } + + /* Don't press while disabled */ + .Button[data-disabled][data-variant]:active::before { + transform: scale(1); + } + + /* Relaxed disabled tone: keep disabled visuals, soften cursor */ + .Button[data-disabled][data-variant][data-disabled-tone="relaxed"] { + cursor: default; + }.ButtonInner { + position: relative; + display: flex; + /* Allows overrides through className on .Button */ + flex-direction: inherit; + align-items: center; + justify-content: center; + /* Allows overrides through className on .Button */ + gap: inherit; + width: 100%; + /* Prevent padding-bottom from creating excess height (flexbox) */ + height: 100%; + transition: opacity 0.15s ease 0.1s; +} + + [data-loading] .ButtonInner { + opacity: 0; + transition: opacity 0.3s ease; + }.ButtonLoader { + position: absolute; + inset: 0; + z-index: 3; + display: flex; + align-items: center; + justify-content: center; + pointer-events: none; +} + + .ButtonLoader[data-entering] { + opacity: 0; + } + + .ButtonLoader[data-exiting] { + opacity: 1; + } + + .ButtonLoader[data-entering-active], + .ButtonLoader[data-entering][data-interrupted] { + opacity: 1; + transition: opacity 0.15s ease 0.1s; + } + + .ButtonLoader[data-exiting-active], + .ButtonLoader[data-exiting][data-interrupted] { + opacity: 0; + transition: opacity 0.15s ease; + }/* .Kbd { + display: none; + + @mixin breakpoint md { + display: block; + padding: 1px 3px; + border: 1px solid var(--kbd-border-color, transparent); + border-radius: 4px; + margin: 0 -2px 0 4px; + background: var(--kbd-bg, var(--alpha-10)); + color: var(--kbd-color, inherit); + font-family: + system-ui, + -apple-system, + BlinkMacSystemFont, + "Segoe UI", + Roboto, + Oxygen, + Ubuntu, + Cantarell, + "Open Sans", + "Helvetica Neue", + sans-serif; + font-size: 13px; + font-style: normal; + font-weight: 600; + letter-spacing: var(--tracking-wide); + transition: + border-color 0.15s ease, + background-color 0.15s ease, + color 0.15s ease; + + [data-size="2xs"] & { + margin-right: 0; + margin-left: 3px; + font-size: 12px; + } + + [data-size="xs"] & { + font-size: 12px; + } + + [data-size="sm"] & { + margin-right: -1px; + } + + [data-size="xl"] & { + padding: 2px 3px; + font-size: 14px; + } + + [data-pill] & { + border-radius: 8px; + margin-right: -5px; + } + + [data-size="2xs"][data-pill] & { + margin-right: -4px; + } + } +} */ +} diff --git a/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/Button/CopyButton.js b/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/Button/CopyButton.js new file mode 100644 index 0000000000000000000000000000000000000000..6b703b38586ab5441e397da53b3427a90fc9e22c --- /dev/null +++ b/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/Button/CopyButton.js @@ -0,0 +1,33 @@ +"use client"; +import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime"; +import { useEffect, useRef, useState } from "react"; +import { copyToClipboard } from "../../lib/copyToClipboard"; +import { Check, Copy } from "../Icon"; +import { Animate } from "../Transition"; +import { Button } from "./Button"; +export const CopyButton = ({ children, copyValue, onClick, ...restProps }) => { + const [copied, setCopied] = useState(false); + const copiedTimeout = useRef(null); + const handleClick = (evt) => { + // No-op when copied is true + if (copied) { + return; + } + setCopied(true); + onClick?.(evt); + // Copy content to clipboard + // NOTE: Failures are a silent no-op + copyToClipboard(typeof copyValue === "function" ? copyValue() : copyValue); + copiedTimeout.current = window.setTimeout(() => { + setCopied(false); + }, 1300); + }; + useEffect(() => { + return () => { + if (copiedTimeout.current) + clearTimeout(copiedTimeout.current); + }; + }, []); + return (_jsxs(Button, { ...restProps, onClick: handleClick, children: [_jsx(Animate, { className: "w-[var(--button-icon-size)] h-[var(--button-icon-size)]", initial: { scale: 0.6 }, enter: { scale: 1, delay: 150, duration: 300 }, exit: { scale: 0.6, duration: 150 }, forceCompositeLayer: true, children: copied ? _jsx(Check, {}, "copied-icon") : _jsx(Copy, {}, "copy-icon") }), typeof children === "function" ? children({ copied }) : children] })); +}; +//# sourceMappingURL=CopyButton.js.map \ No newline at end of file diff --git a/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/Button/CopyButton.js.map b/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/Button/CopyButton.js.map new file mode 100644 index 0000000000000000000000000000000000000000..0cfc6bee6c2a9074489f1c8b7d7b8b0ff88fa53e --- /dev/null +++ b/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/Button/CopyButton.js.map @@ -0,0 +1 @@ +{"version":3,"file":"CopyButton.js","sourceRoot":"","sources":["../../../../src/components/Button/CopyButton.tsx"],"names":[],"mappings":"AAAA,YAAY,CAAA;;AAEZ,OAAO,EAAE,SAAS,EAAE,MAAM,EAAE,QAAQ,EAAmB,MAAM,OAAO,CAAA;AACpE,OAAO,EAAE,eAAe,EAAyB,MAAM,2BAA2B,CAAA;AAClF,OAAO,EAAE,KAAK,EAAE,IAAI,EAAE,MAAM,SAAS,CAAA;AACrC,OAAO,EAAE,OAAO,EAAE,MAAM,eAAe,CAAA;AACvC,OAAO,EAAE,MAAM,EAAoB,MAAM,UAAU,CAAA;AAOnD,MAAM,CAAC,MAAM,UAAU,GAAG,CAAC,EAAE,QAAQ,EAAE,SAAS,EAAE,OAAO,EAAE,GAAG,SAAS,EAAmB,EAAE,EAAE;IAC5F,MAAM,CAAC,MAAM,EAAE,SAAS,CAAC,GAAG,QAAQ,CAAU,KAAK,CAAC,CAAA;IACpD,MAAM,aAAa,GAAG,MAAM,CAAgB,IAAI,CAAC,CAAA;IAEjD,MAAM,WAAW,GAAG,CAAC,GAAkC,EAAE,EAAE;QACzD,4BAA4B;QAC5B,IAAI,MAAM,EAAE,CAAC;YACX,OAAM;QACR,CAAC;QAED,SAAS,CAAC,IAAI,CAAC,CAAA;QACf,OAAO,EAAE,CAAC,GAAG,CAAC,CAAA;QAEd,4BAA4B;QAC5B,oCAAoC;QACpC,eAAe,CAAC,OAAO,SAAS,KAAK,UAAU,CAAC,CAAC,CAAC,SAAS,EAAE,CAAC,CAAC,CAAC,SAAS,CAAC,CAAA;QAE1E,aAAa,CAAC,OAAO,GAAG,MAAM,CAAC,UAAU,CAAC,GAAG,EAAE;YAC7C,SAAS,CAAC,KAAK,CAAC,CAAA;QAClB,CAAC,EAAE,IAAI,CAAC,CAAA;IACV,CAAC,CAAA;IAED,SAAS,CAAC,GAAG,EAAE;QACb,OAAO,GAAG,EAAE;YACV,IAAI,aAAa,CAAC,OAAO;gBAAE,YAAY,CAAC,aAAa,CAAC,OAAO,CAAC,CAAA;QAChE,CAAC,CAAA;IACH,CAAC,EAAE,EAAE,CAAC,CAAA;IAEN,OAAO,CACL,MAAC,MAAM,OAAK,SAAS,EAAE,OAAO,EAAE,WAAW,aACzC,KAAC,OAAO,IACN,SAAS,EAAC,yDAAyD,EACnE,OAAO,EAAE,EAAE,KAAK,EAAE,GAAG,EAAE,EACvB,KAAK,EAAE,EAAE,KAAK,EAAE,CAAC,EAAE,KAAK,EAAE,GAAG,EAAE,QAAQ,EAAE,GAAG,EAAE,EAC9C,IAAI,EAAE,EAAE,KAAK,EAAE,GAAG,EAAE,QAAQ,EAAE,GAAG,EAAE,EACnC,mBAAmB,kBAElB,MAAM,CAAC,CAAC,CAAC,KAAC,KAAK,MAAK,aAAa,CAAG,CAAC,CAAC,CAAC,KAAC,IAAI,MAAK,WAAW,CAAG,GACxD,EACT,OAAO,QAAQ,KAAK,UAAU,CAAC,CAAC,CAAC,QAAQ,CAAC,EAAE,MAAM,EAAE,CAAC,CAAC,CAAC,CAAC,QAAQ,IAC1D,CACV,CAAA;AACH,CAAC,CAAA","sourcesContent":["\"use client\"\n\nimport { useEffect, useRef, useState, type MouseEvent } from \"react\"\nimport { copyToClipboard, type ClipboardContent } from \"../../lib/copyToClipboard\"\nimport { Check, Copy } from \"../Icon\"\nimport { Animate } from \"../Transition\"\nimport { Button, type ButtonProps } from \"./Button\"\n\nexport type CopyButtonProps = {\n copyValue: string | ClipboardContent | (() => string) | (() => ClipboardContent)\n children?: React.ReactNode | ((props: { copied: boolean }) => React.ReactNode)\n} & Omit\n\nexport const CopyButton = ({ children, copyValue, onClick, ...restProps }: CopyButtonProps) => {\n const [copied, setCopied] = useState(false)\n const copiedTimeout = useRef(null)\n\n const handleClick = (evt: MouseEvent) => {\n // No-op when copied is true\n if (copied) {\n return\n }\n\n setCopied(true)\n onClick?.(evt)\n\n // Copy content to clipboard\n // NOTE: Failures are a silent no-op\n copyToClipboard(typeof copyValue === \"function\" ? copyValue() : copyValue)\n\n copiedTimeout.current = window.setTimeout(() => {\n setCopied(false)\n }, 1300)\n }\n\n useEffect(() => {\n return () => {\n if (copiedTimeout.current) clearTimeout(copiedTimeout.current)\n }\n }, [])\n\n return (\n \n )\n}\n"]} \ No newline at end of file diff --git a/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/Button/index.js b/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/Button/index.js new file mode 100644 index 0000000000000000000000000000000000000000..b9b84eb81ab9be2062ac39b1b0e79413602bd0c7 --- /dev/null +++ b/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/Button/index.js @@ -0,0 +1,3 @@ +export { Button, ButtonLink } from "./Button"; +export { CopyButton } from "./CopyButton"; +//# sourceMappingURL=index.js.map \ No newline at end of file diff --git a/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/Button/index.js.map b/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/Button/index.js.map new file mode 100644 index 0000000000000000000000000000000000000000..476c3d6d51b489ac4dc59a6db6daa97964460f4e --- /dev/null +++ b/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/Button/index.js.map @@ -0,0 +1 @@ +{"version":3,"file":"index.js","sourceRoot":"","sources":["../../../../src/components/Button/index.tsx"],"names":[],"mappings":"AAAA,OAAO,EAAE,MAAM,EAAE,UAAU,EAAoB,MAAM,UAAU,CAAA;AAC/D,OAAO,EAAE,UAAU,EAAwB,MAAM,cAAc,CAAA","sourcesContent":["export { Button, ButtonLink, type ButtonProps } from \"./Button\"\nexport { CopyButton, type CopyButtonProps } from \"./CopyButton\"\n"]} \ No newline at end of file diff --git a/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/Checkbox/Checkbox.js b/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/Checkbox/Checkbox.js new file mode 100644 index 0000000000000000000000000000000000000000..decc58409d182d00bf0c6b577c68ef8126a326d3 --- /dev/null +++ b/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/Checkbox/Checkbox.js @@ -0,0 +1,15 @@ +"use client"; +import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime"; +import clsx from "clsx"; +import { Checkbox as RadixCheckbox } from "radix-ui"; +import { useId } from "react"; +import s from "./Checkbox.module.css"; +export const Checkbox = ({ className, label, id: propsId, disabled, orientation = "left", ...restProps }) => { + const reactId = useId(); + const id = propsId ?? reactId; + return (_jsxs("div", { "data-disabled": disabled ? "" : undefined, "data-has-label": label ? "" : undefined, "data-orientation": orientation, className: clsx(className, s.Container), children: [_jsx(RadixCheckbox.Root, { className: s.Checkbox, id: id, disabled: disabled, ...restProps, children: _jsx(RadixCheckbox.Indicator, { className: s.CheckMark }) }), label && (_jsx("label", { htmlFor: id, className: s.Label, onMouseDown: (event) => { + if (!event.defaultPrevented && event.detail > 1) + event.preventDefault(); + }, children: label }))] })); +}; +//# sourceMappingURL=Checkbox.js.map \ No newline at end of file diff --git a/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/Checkbox/Checkbox.js.map b/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/Checkbox/Checkbox.js.map new file mode 100644 index 0000000000000000000000000000000000000000..c15ca5496874661f51171922caaf07218883c982 --- /dev/null +++ b/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/Checkbox/Checkbox.js.map @@ -0,0 +1 @@ +{"version":3,"file":"Checkbox.js","sourceRoot":"","sources":["../../../../src/components/Checkbox/Checkbox.tsx"],"names":[],"mappings":"AAAA,YAAY,CAAA;;AAEZ,OAAO,IAAI,MAAM,MAAM,CAAA;AACvB,OAAO,EAAE,QAAQ,IAAI,aAAa,EAAE,MAAM,UAAU,CAAA;AACpD,OAAO,EAA0C,KAAK,EAAE,MAAM,OAAO,CAAA;AACrE,OAAO,CAAC,MAAM,uBAAuB,CAAA;AAmCrC,MAAM,CAAC,MAAM,QAAQ,GAAG,CAAC,EACvB,SAAS,EACT,KAAK,EACL,EAAE,EAAE,OAAO,EACX,QAAQ,EACR,WAAW,GAAG,MAAM,EACpB,GAAG,SAAS,EACE,EAAE,EAAE;IAClB,MAAM,OAAO,GAAG,KAAK,EAAE,CAAA;IACvB,MAAM,EAAE,GAAG,OAAO,IAAI,OAAO,CAAA;IAE7B,OAAO,CACL,gCACiB,QAAQ,CAAC,CAAC,CAAC,EAAE,CAAC,CAAC,CAAC,SAAS,oBACxB,KAAK,CAAC,CAAC,CAAC,EAAE,CAAC,CAAC,CAAC,SAAS,sBACpB,WAAW,EAC7B,SAAS,EAAE,IAAI,CAAC,SAAS,EAAE,CAAC,CAAC,SAAS,CAAC,aAEvC,KAAC,aAAa,CAAC,IAAI,IAAC,SAAS,EAAE,CAAC,CAAC,QAAQ,EAAE,EAAE,EAAE,EAAE,EAAE,QAAQ,EAAE,QAAQ,KAAM,SAAS,YAClF,KAAC,aAAa,CAAC,SAAS,IAAC,SAAS,EAAE,CAAC,CAAC,SAAS,GAAI,GAChC,EACpB,KAAK,IAAI,CACR,gBACE,OAAO,EAAE,EAAE,EACX,SAAS,EAAE,CAAC,CAAC,KAAK,EAClB,WAAW,EAAE,CAAC,KAAK,EAAE,EAAE;oBACrB,IAAI,CAAC,KAAK,CAAC,gBAAgB,IAAI,KAAK,CAAC,MAAM,GAAG,CAAC;wBAAE,KAAK,CAAC,cAAc,EAAE,CAAA;gBACzE,CAAC,YAEA,KAAK,GACA,CACT,IACG,CACP,CAAA;AACH,CAAC,CAAA","sourcesContent":["\"use client\"\n\nimport clsx from \"clsx\"\nimport { Checkbox as RadixCheckbox } from \"radix-ui\"\nimport { type FocusEventHandler, type ReactNode, useId } from \"react\"\nimport s from \"./Checkbox.module.css\"\n\nexport type CheckboxProps = {\n /** The `id` of the checkbox. */\n id?: string\n /** The state of the checkbox when it is initially rendered. Use when you do not need to control its state. */\n defaultChecked?: boolean | \"indeterminate\"\n /** The controlled state of the checkbox. Must be used in conjunction with `onCheckedChange`. */\n checked?: boolean | \"indeterminate\"\n /** Optional accessible label rendered to the right of the checkbox. */\n label?: ReactNode\n /** Event handler called when the state of the checkbox changes. */\n onCheckedChange?: (nextState: boolean) => void\n /** Event handler called when the checkbox looses focus. */\n onBlur?: FocusEventHandler\n /** Event handler called when the checkbox gains focus. */\n onFocus?: FocusEventHandler\n /** When `true`, prevents the user from interacting with the checkbox. */\n disabled?: boolean\n /** When `true`, indicates that the user must check the checkbox before the owning form can be submitted. */\n required?: boolean\n /** The name of the checkbox. Submitted with its owning form as part of a name/value pair. */\n name?: string\n /** The value given as data when submitted with a `name`. */\n value?: string\n /** CSS classes applied to wrapper node */\n className?: string\n /**\n * The orientation of the checkbox relative to the label.\n *\n * @default \"left\"\n */\n orientation?: \"left\" | \"right\"\n}\n\nexport const Checkbox = ({\n className,\n label,\n id: propsId,\n disabled,\n orientation = \"left\",\n ...restProps\n}: CheckboxProps) => {\n const reactId = useId()\n const id = propsId ?? reactId\n\n return (\n \n \n \n \n {label && (\n {\n if (!event.defaultPrevented && event.detail > 1) event.preventDefault()\n }}\n >\n {label}\n \n )}\n \n )\n}\n"]} \ No newline at end of file diff --git a/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/Checkbox/Checkbox.module.css b/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/Checkbox/Checkbox.module.css new file mode 100644 index 0000000000000000000000000000000000000000..f4e797b177e7e00c197217497a917e0e59f0c89f --- /dev/null +++ b/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/Checkbox/Checkbox.module.css @@ -0,0 +1,182 @@ +@layer components {.Container { + position: relative; + display: flex; +} + + .Container[data-has-label] { + align-items: flex-start; + } + + .Container[data-orientation="right"] { + flex-direction: row-reverse; + } + + /* Radix pushes the inputs off screen in a weird way that + messes with error overlays */ + .Container > input { + right: 0; + bottom: 0; + left: 0; + height: 1px !important; + transform: none !important; + }.Checkbox { + position: relative; + display: inline-flex; + align-items: center; + justify-content: center; + flex-shrink: 0; + width: 18px; + max-width: 18px; + height: 18px; + padding: 0; + border-radius: var(--radius-xs); + background-color: transparent; + cursor: pointer; + transition: + border-color 150ms ease, + background-color 150ms ease; +}.Checkbox, :where([data-theme="light"]) .Checkbox { +border: 1px solid var(--gray-200); +}:where([data-theme="dark"]) .Checkbox { +border: 1px solid var(--gray-500); +} + + [data-has-label] .Checkbox { + /* Adjust downward for label line-height - not using center to account for long labels than can wrap. */ + top: 1px; + } + @media (hover: hover) and (pointer: fine) {.Checkbox:where(:not([data-disabled], [data-state="checked"])):hover, :where([data-theme="light"]) .Checkbox:where(:not([data-disabled], [data-state="checked"])):hover { +border-color: var(--gray-300); +}:where([data-theme="dark"]) .Checkbox:where(:not([data-disabled], [data-state="checked"])):hover { +border-color: var(--gray-600); +} +} + + .Checkbox[data-state="indeterminate"], + .Checkbox[data-state="checked"] { + border-color: var(--gray-900); + background-color: var(--gray-900); + } + + .Checkbox:focus { + outline: none; + } + + .Checkbox:focus-visible { + outline: 2px solid var(--color-ring); + outline-offset: 2px; + } + + .Checkbox[data-disabled] { + cursor: not-allowed; + } + + .Checkbox[data-disabled], :where([data-theme="light"]) .Checkbox[data-disabled] { +border-color: var(--gray-150); +background: var(--gray-25); +} + + :where([data-theme="dark"]) .Checkbox[data-disabled] { +border-color: var(--gray-300); +background: var(--gray-200); +} + + .Checkbox[data-disabled][data-state="checked"], :where([data-theme="light"]) .Checkbox[data-disabled][data-state="checked"] { +border-color: var(--gray-300); +background-color: var(--gray-300); +} + + :where([data-theme="dark"]) .Checkbox[data-disabled][data-state="checked"] { +border-color: var(--gray-200); +background-color: var(--gray-200); +}.CheckMark { + position: absolute; + top: 0; + left: 0; + width: 64%; + height: 32%; + transform: rotate(-45deg) translate(-10%, 100%); + transform-origin: center; + transition: + opacity 150ms ease, + transform 150ms ease; +} + + @starting-style {.CheckMark { + opacity: 0 +} + } + + [data-state="indeterminate"] .CheckMark { + transform: translate(30%, 80%); + } + + [data-state="indeterminate"] .CheckMark::before { + opacity: 0; + } + + /* CheckMark arms */ + .CheckMark::before, + .CheckMark::after { + position: absolute; + display: block; + background: var(--gray-0); + content: ""; + will-change: transform; + } + + @starting-style { + .CheckMark::before, + .CheckMark::after { + transform: scale(0) + } + } + /* pure black checkbox is not low enough contrast to look disabled */ + :where([data-theme="dark"]) .CheckMark[data-disabled]::before, + :where([data-theme="dark"]) .CheckMark[data-disabled]::after { + background: var(--gray-100); + } + + .CheckMark::before { + top: 0; + bottom: 0; + left: 0; + width: 2px; + transform-origin: 0 0; + transition: + transform 100ms ease 80ms, + opacity 200ms ease; + } + + .CheckMark [data-state="indeterminate"]::before { + opacity: 0; + } + + .CheckMark::after { + right: 0; + bottom: 0; + left: 0; + height: 2px; + transform-origin: 0 100%; + transition: transform 100ms ease 160ms; + }.Label { + display: flex; + align-items: center; + min-height: 20px; + cursor: pointer; + font-size: 14px; + line-height: 20px; +} + + [data-disabled] .Label { + cursor: not-allowed; + } + + [data-orientation="left"] .Label { + padding-left: 8px; + } + + [data-orientation="right"] .Label { + padding-right: 8px; + } +} diff --git a/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/Checkbox/index.js b/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/Checkbox/index.js new file mode 100644 index 0000000000000000000000000000000000000000..092be6c05a29acaa71c38360bd012b69505aaed2 --- /dev/null +++ b/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/Checkbox/index.js @@ -0,0 +1,2 @@ +export { Checkbox } from "./Checkbox"; +//# sourceMappingURL=index.js.map \ No newline at end of file diff --git a/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/Checkbox/index.js.map b/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/Checkbox/index.js.map new file mode 100644 index 0000000000000000000000000000000000000000..e482e0784ea6fdd5da56539f2f4a8bf343a71300 --- /dev/null +++ b/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/Checkbox/index.js.map @@ -0,0 +1 @@ +{"version":3,"file":"index.js","sourceRoot":"","sources":["../../../../src/components/Checkbox/index.tsx"],"names":[],"mappings":"AAAA,OAAO,EAAE,QAAQ,EAAsB,MAAM,YAAY,CAAA","sourcesContent":["export { Checkbox, type CheckboxProps } from \"./Checkbox\"\n"]} \ No newline at end of file diff --git a/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/CodeBlock/CodeBlock.js b/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/CodeBlock/CodeBlock.js new file mode 100644 index 0000000000000000000000000000000000000000..aab29e4671db78604adf77700d64d12591338f4b --- /dev/null +++ b/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/CodeBlock/CodeBlock.js @@ -0,0 +1,74 @@ +"use client"; +import { jsx as _jsx, jsxs as _jsxs, Fragment as _Fragment } from "react/jsx-runtime"; +import clsx from "clsx"; +import {} from "react"; +import { createElement, PrismLight as SyntaxHighlighter } from "react-syntax-highlighter"; +import bash from "react-syntax-highlighter/dist/esm/languages/prism/bash"; +import c from "react-syntax-highlighter/dist/esm/languages/prism/c"; +import clike from "react-syntax-highlighter/dist/esm/languages/prism/clike"; +import css from "react-syntax-highlighter/dist/esm/languages/prism/css"; +import diff from "react-syntax-highlighter/dist/esm/languages/prism/diff"; +import docker from "react-syntax-highlighter/dist/esm/languages/prism/docker"; +import go from "react-syntax-highlighter/dist/esm/languages/prism/go"; +import java from "react-syntax-highlighter/dist/esm/languages/prism/java"; +import javascript from "react-syntax-highlighter/dist/esm/languages/prism/javascript"; +import json from "react-syntax-highlighter/dist/esm/languages/prism/json"; +import jsx from "react-syntax-highlighter/dist/esm/languages/prism/jsx"; +import kotlin from "react-syntax-highlighter/dist/esm/languages/prism/kotlin"; +import markdown from "react-syntax-highlighter/dist/esm/languages/prism/markdown"; +import markup from "react-syntax-highlighter/dist/esm/languages/prism/markup"; +import php from "react-syntax-highlighter/dist/esm/languages/prism/php"; +import python from "react-syntax-highlighter/dist/esm/languages/prism/python"; +import ruby from "react-syntax-highlighter/dist/esm/languages/prism/ruby"; +import scss from "react-syntax-highlighter/dist/esm/languages/prism/scss"; +import sql from "react-syntax-highlighter/dist/esm/languages/prism/sql"; +import toml from "react-syntax-highlighter/dist/esm/languages/prism/toml"; +import tsx from "react-syntax-highlighter/dist/esm/languages/prism/tsx"; +import typescript from "react-syntax-highlighter/dist/esm/languages/prism/typescript"; +import yaml from "react-syntax-highlighter/dist/esm/languages/prism/yaml"; +import { CopyButton } from "../Button"; +import s from "./CodeBlock.module.css"; +SyntaxHighlighter.registerLanguage("javascript", javascript); +SyntaxHighlighter.registerLanguage("jsx", jsx); +SyntaxHighlighter.registerLanguage("typescript", typescript); +SyntaxHighlighter.registerLanguage("tsx", tsx); +SyntaxHighlighter.registerLanguage("markup", markup); +SyntaxHighlighter.registerLanguage("css", css); +SyntaxHighlighter.registerLanguage("scss", scss); +SyntaxHighlighter.registerLanguage("c", c); +SyntaxHighlighter.registerLanguage("clike", clike); +SyntaxHighlighter.registerLanguage("bash", bash); +SyntaxHighlighter.registerLanguage("json", json); +SyntaxHighlighter.registerLanguage("jsonc", json); +SyntaxHighlighter.registerLanguage("python", python); +SyntaxHighlighter.registerLanguage("sql", sql); +SyntaxHighlighter.registerLanguage("diff", diff); +SyntaxHighlighter.registerLanguage("markdown", markdown); +SyntaxHighlighter.registerLanguage("yaml", yaml); +SyntaxHighlighter.registerLanguage("toml", toml); +SyntaxHighlighter.registerLanguage("docker", docker); +SyntaxHighlighter.registerLanguage("java", java); +SyntaxHighlighter.registerLanguage("go", go); +SyntaxHighlighter.registerLanguage("php", php); +SyntaxHighlighter.registerLanguage("ruby", ruby); +SyntaxHighlighter.registerLanguage("kotlin", kotlin); +export function CodeBlock({ children, language, className, }) { + return (_jsxs(CodeBlockBase, { className: className, children: [_jsx(CodeBlockBase.Code, { language: language, children: children }), _jsx(CodeBlockBase.CopyButton, { copyValue: children })] })); +} +export function CodeBlockBase({ className, children, ...restProps }) { + return (_jsx("div", { className: clsx(s.CodeBlock, className), ...restProps, children: children })); +} +CodeBlockBase.CopyButton = function CodeBlockCopyButton({ className, copyValue, loading, disabled, }) { + return (_jsx("div", { className: clsx(s.CopyButtonContainer, className), children: _jsx(CopyButton, { copyValue: copyValue, variant: "ghost", color: "secondary", pill: false, size: "md", uniform: true, loading: loading, disabled: disabled }) })); +}; +CodeBlockBase.Code = function CodeBlockCode({ className, children, language, codeTagProps, }) { + return (_jsx(SyntaxHighlighter, { className: clsx(s.SyntaxHighlighter, className), language: language, showLineNumbers: false, showInlineLineNumbers: false, useInlineStyles: false, codeTagProps: codeTagProps, renderer: ({ rows }) => { + return (_jsx(_Fragment, { children: rows.map((r, i) => createElement({ + key: i, + stylesheet: {}, + useInlineStyles: true, + node: r, + })) })); + }, children: children })); +}; +//# sourceMappingURL=CodeBlock.js.map \ No newline at end of file diff --git a/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/CodeBlock/CodeBlock.js.map b/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/CodeBlock/CodeBlock.js.map new file mode 100644 index 0000000000000000000000000000000000000000..19c79b4f9c8cf71df26fee0977e847c38553bbd4 --- /dev/null +++ b/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/CodeBlock/CodeBlock.js.map @@ -0,0 +1 @@ +{"version":3,"file":"CodeBlock.js","sourceRoot":"","sources":["../../../../src/components/CodeBlock/CodeBlock.tsx"],"names":[],"mappings":"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","sourcesContent":["\"use client\"\n\nimport clsx from \"clsx\"\nimport { type ComponentProps } from \"react\"\nimport { createElement, PrismLight as SyntaxHighlighter } from \"react-syntax-highlighter\"\nimport bash from \"react-syntax-highlighter/dist/esm/languages/prism/bash\"\nimport c from \"react-syntax-highlighter/dist/esm/languages/prism/c\"\nimport clike from \"react-syntax-highlighter/dist/esm/languages/prism/clike\"\nimport css from \"react-syntax-highlighter/dist/esm/languages/prism/css\"\nimport diff from \"react-syntax-highlighter/dist/esm/languages/prism/diff\"\nimport docker from \"react-syntax-highlighter/dist/esm/languages/prism/docker\"\nimport go from \"react-syntax-highlighter/dist/esm/languages/prism/go\"\nimport java from \"react-syntax-highlighter/dist/esm/languages/prism/java\"\nimport javascript from \"react-syntax-highlighter/dist/esm/languages/prism/javascript\"\nimport json from \"react-syntax-highlighter/dist/esm/languages/prism/json\"\nimport jsx from \"react-syntax-highlighter/dist/esm/languages/prism/jsx\"\nimport kotlin from \"react-syntax-highlighter/dist/esm/languages/prism/kotlin\"\nimport markdown from \"react-syntax-highlighter/dist/esm/languages/prism/markdown\"\nimport markup from \"react-syntax-highlighter/dist/esm/languages/prism/markup\"\nimport php from \"react-syntax-highlighter/dist/esm/languages/prism/php\"\nimport python from \"react-syntax-highlighter/dist/esm/languages/prism/python\"\nimport ruby from \"react-syntax-highlighter/dist/esm/languages/prism/ruby\"\nimport scss from \"react-syntax-highlighter/dist/esm/languages/prism/scss\"\nimport sql from \"react-syntax-highlighter/dist/esm/languages/prism/sql\"\nimport toml from \"react-syntax-highlighter/dist/esm/languages/prism/toml\"\nimport tsx from \"react-syntax-highlighter/dist/esm/languages/prism/tsx\"\nimport typescript from \"react-syntax-highlighter/dist/esm/languages/prism/typescript\"\nimport yaml from \"react-syntax-highlighter/dist/esm/languages/prism/yaml\"\n\nimport { CopyButton } from \"../Button\"\nimport s from \"./CodeBlock.module.css\"\n\nSyntaxHighlighter.registerLanguage(\"javascript\", javascript)\nSyntaxHighlighter.registerLanguage(\"jsx\", jsx)\nSyntaxHighlighter.registerLanguage(\"typescript\", typescript)\nSyntaxHighlighter.registerLanguage(\"tsx\", tsx)\nSyntaxHighlighter.registerLanguage(\"markup\", markup)\nSyntaxHighlighter.registerLanguage(\"css\", css)\nSyntaxHighlighter.registerLanguage(\"scss\", scss)\nSyntaxHighlighter.registerLanguage(\"c\", c)\nSyntaxHighlighter.registerLanguage(\"clike\", clike)\nSyntaxHighlighter.registerLanguage(\"bash\", bash)\nSyntaxHighlighter.registerLanguage(\"json\", json)\nSyntaxHighlighter.registerLanguage(\"jsonc\", json)\nSyntaxHighlighter.registerLanguage(\"python\", python)\nSyntaxHighlighter.registerLanguage(\"sql\", sql)\nSyntaxHighlighter.registerLanguage(\"diff\", diff)\nSyntaxHighlighter.registerLanguage(\"markdown\", markdown)\nSyntaxHighlighter.registerLanguage(\"yaml\", yaml)\nSyntaxHighlighter.registerLanguage(\"toml\", toml)\nSyntaxHighlighter.registerLanguage(\"docker\", docker)\nSyntaxHighlighter.registerLanguage(\"java\", java)\nSyntaxHighlighter.registerLanguage(\"go\", go)\nSyntaxHighlighter.registerLanguage(\"php\", php)\nSyntaxHighlighter.registerLanguage(\"ruby\", ruby)\nSyntaxHighlighter.registerLanguage(\"kotlin\", kotlin)\n\nexport function CodeBlock({\n children,\n language,\n className,\n}: {\n children: string\n language?: string\n className?: string\n}) {\n return (\n \n {children}\n \n \n )\n}\n\nexport function CodeBlockBase({ className, children, ...restProps }: ComponentProps<\"div\">) {\n return (\n
\n {children}\n
\n )\n}\n\nCodeBlockBase.CopyButton = function CodeBlockCopyButton({\n className,\n copyValue,\n loading,\n disabled,\n}: {\n className?: string\n copyValue: string\n disabled?: boolean\n loading?: boolean\n}) {\n return (\n
\n \n
\n )\n}\n\nCodeBlockBase.Code = function CodeBlockCode({\n className,\n children,\n language,\n codeTagProps,\n}: {\n className?: string\n children: string\n language?: string\n codeTagProps?: React.HTMLProps\n}) {\n return (\n {\n return (\n <>\n {rows.map((r, i) =>\n createElement({\n key: i,\n stylesheet: {},\n useInlineStyles: true,\n node: r,\n }),\n )}\n \n )\n }}\n >\n {children}\n \n )\n}\n"]} \ No newline at end of file diff --git a/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/CodeBlock/CodeBlock.module.css b/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/CodeBlock/CodeBlock.module.css new file mode 100644 index 0000000000000000000000000000000000000000..8f197c20e307fe40667c59ecf9102e241ae46f1e --- /dev/null +++ b/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/CodeBlock/CodeBlock.module.css @@ -0,0 +1,91 @@ +@layer components {.CodeBlock { + position: relative; + border: 1px solid var(--color-border); + border-radius: var(--radius-md); + background-color: var(--codeblock-background-color); +}.CopyButtonContainer { + position: absolute; + top: 0; + right: 0; + padding: 10px 10px 0 0; + border-radius: inherit; + background-color: var(--codeblock-background-color); +}.SyntaxHighlighter { + --syntax1: var(--codeblock-syntax-1); + --syntax2: var(--codeblock-syntax-2); + --syntax3: var(--codeblock-syntax-3); + --syntax4: var(--codeblock-syntax-4); + --syntax5: var(--codeblock-syntax-5); + + overflow: auto; + display: block; + /* Padding inside the overflow: auto container */ + padding: 14px 40px 14px 16px; + margin: 0; + background: transparent; + color: var(--color-text); + font-size: 0.875em; /* 14px to a 16px baseline */ + font-weight: var(--font-weight-normal); + line-height: 1.5em; +} + + /* stylelint-disable selector-class-pattern */ + .SyntaxHighlighter :global { + + /* Order matters here, for nested tokens */ + } + .SyntaxHighlighter :global .token.property, + .SyntaxHighlighter :global .token.variable, + .SyntaxHighlighter :global .token.attr-name, + .SyntaxHighlighter :global .token.unit, + .SyntaxHighlighter :global .token.id, + .SyntaxHighlighter :global .token.selector, + .SyntaxHighlighter :global .token.entity, + .SyntaxHighlighter :global .token.tag, + .SyntaxHighlighter :global .token.type { + color: var(--syntax4); + } + + .SyntaxHighlighter :global .token.url, + .SyntaxHighlighter :global .token.boolean, + .SyntaxHighlighter :global .token.number, + .SyntaxHighlighter :global .token.important { + color: var(--syntax5); + } + + .SyntaxHighlighter :global .token.builtin, + .SyntaxHighlighter :global .token.function, + .SyntaxHighlighter :global .token.class-name { + color: var(--syntax1); + } + .SyntaxHighlighter :global .token.keyword, + .SyntaxHighlighter :global .token.constant, + .SyntaxHighlighter :global .token.symbol, + .SyntaxHighlighter :global .token.deleted { + color: var(--syntax2); + } + + .SyntaxHighlighter :global .token.string, + .SyntaxHighlighter :global .token.char, + .SyntaxHighlighter :global .token.regex, + .SyntaxHighlighter :global .token.attr-value, + .SyntaxHighlighter :global .token.inserted { + color: var(--syntax3); + } + + .SyntaxHighlighter :global .token.comment, + .SyntaxHighlighter :global .token.prolog, + .SyntaxHighlighter :global .token.doctype, + .SyntaxHighlighter :global .token.cdata { + color: color-mix(in oklab, var(--color-text) 50%, transparent); + } + + .SyntaxHighlighter :global .token.punctuation, + .SyntaxHighlighter :global .token.operator { + color: color-mix(in oklab, var(--color-text) 60%, transparent); + } + + .SyntaxHighlighter :global .token.console { + color: var(--color-text); + } +} diff --git a/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/CodeBlock/index.js b/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/CodeBlock/index.js new file mode 100644 index 0000000000000000000000000000000000000000..c3892ae214dbf336b306f7dc58ad9ca57482efcd --- /dev/null +++ b/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/CodeBlock/index.js @@ -0,0 +1,2 @@ +export { CodeBlock, CodeBlockBase } from "./CodeBlock"; +//# sourceMappingURL=index.js.map \ No newline at end of file diff --git a/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/CodeBlock/index.js.map b/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/CodeBlock/index.js.map new file mode 100644 index 0000000000000000000000000000000000000000..12d3304af8c32aa2f8d7334d7cbbe7aa9c3d6710 --- /dev/null +++ b/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/CodeBlock/index.js.map @@ -0,0 +1 @@ +{"version":3,"file":"index.js","sourceRoot":"","sources":["../../../../src/components/CodeBlock/index.tsx"],"names":[],"mappings":"AAAA,OAAO,EAAE,SAAS,EAAE,aAAa,EAAE,MAAM,aAAa,CAAA","sourcesContent":["export { CodeBlock, CodeBlockBase } from \"./CodeBlock\"\n"]} \ No newline at end of file diff --git a/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/DatePicker/Calendar.js b/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/DatePicker/Calendar.js new file mode 100644 index 0000000000000000000000000000000000000000..f7259624ca52b98374c9c063eaba533e0dfdd0a5 --- /dev/null +++ b/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/DatePicker/Calendar.js @@ -0,0 +1,121 @@ +"use client"; +import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime"; +import { DateTime, Interval } from "luxon"; +import { useEffect, useMemo, useRef, useState } from "react"; +import { chunkIntoWeeks, getDaysOfMonth, isBefore, isSameDay, isToday } from "../../lib/dateUtils"; +import { waitForAnimationFrame } from "../../lib/helpers"; +import { Button } from "../Button"; +import { ChevronLeft, ChevronRight } from "../Icon"; +import { usePopoverClose } from "../Popover/usePopoverController"; +import { TransitionGroup } from "../Transition"; +import s from "./Calendar.module.css"; +import { useDateContext } from "./context"; +const CALENDAR_WIDTH_PX = 210; +const CALENDAR_GAP_PX = 32; +const STEP_DISTANCE_PX = CALENDAR_WIDTH_PX + CALENDAR_GAP_PX; +export const DateCalendar = () => { + const { value, min, max, onChangeRef } = useDateContext(); + const closePopover = usePopoverClose(); + const calendarContainerRef = useRef(null); + const [calendarSteps, setCalendarSteps] = useState(0); + const [forceRenderIncrement, setForceRenderIncrement] = useState(0); + const [calendarDate, setCalendarDate] = useState(() => value ?? DateTime.now()); + const canGoBack = !min || isBefore(min, calendarDate.startOf("month")); + const canGoForward = !max || isBefore(calendarDate.endOf("month"), max); + const handleNext = () => { + setCalendarSteps((c) => c + 1); + setCalendarDate((dt) => dt.plus({ months: 1 })); + }; + const handlePrevious = () => { + setCalendarSteps((c) => c - 1); + setCalendarDate((dt) => dt.minus({ months: 1 })); + }; + const handleDateSelect = (selectedDate) => { + onChangeRef.current(selectedDate); + closePopover(); + }; + // Force re-renders when `value` changes out of band from direct user-selection + useEffect(() => { + // No-op when value is empty + if (!value) { + return; + } + // Check if `value` is still within view of our calendar + const viewInterval = Interval.fromDateTimes(calendarDate.startOf("month"), calendarDate.endOf("month")); + const isValueInRangeOfCalendar = viewInterval.contains(value); + if (!isValueInRangeOfCalendar) { + // Reset state the calendar view entirely + setCalendarSteps(0); + setCalendarDate(value); + setForceRenderIncrement((c) => c + 1); + } + // eslint-disable-next-line react-hooks/exhaustive-deps -- Only re-run this hook when value changes + }, [value]); + // Detect height changes when new calendars are rendered + useEffect(() => { + waitForAnimationFrame(() => { + const container = calendarContainerRef.current; + if (!container) { + return; + } + let maxHeight = -Infinity; + // Find the tallest calendar + container.querySelectorAll("[data-calendar]")?.forEach((element) => { + // NOTE: clientHeight does not respect the scale() that popover uses to animate in, which is what we want + // We want to know the full height of the element, without any transform applied. + const height = element.clientHeight; + // Ignore calendars that are exiting + if (element.closest("[data-exiting")) { + return; + } + if (height > maxHeight) { + maxHeight = height; + } + }); + container.style.height = `${maxHeight}px`; + // Don't animate the initial height. + // This is relevant when the calendar opens to a larger size than the default. + if (!container.style.transition) { + waitForAnimationFrame(() => { + container.style.transition = `height 0.25s var(--cubic-move)`; + }); + } + }); + }, [calendarDate]); + return (_jsx("div", { className: s.CalendarWrapper, children: _jsxs("div", { ref: calendarContainerRef, className: s.CalendarContainer, children: [_jsx("div", { className: s.Previous, children: _jsx(Button, { variant: "ghost", color: "secondary", size: "sm", gutterSize: "2xs", pill: false, iconSize: "sm", onClick: handlePrevious, disabled: !canGoBack, children: _jsx(ChevronLeft, {}) }) }), _jsx("div", { className: s.Next, children: _jsx(Button, { variant: "ghost", color: "secondary", size: "sm", gutterSize: "2xs", pill: false, iconSize: "sm", onClick: handleNext, disabled: !canGoForward, children: _jsx(ChevronRight, {}) }) }), _jsx("div", { className: s.CalendarRange, style: { + transform: `translate(${calendarSteps * -1 * STEP_DISTANCE_PX}px, 0)`, + }, children: _jsx(TransitionGroup, { enterDuration: 400, exitDuration: 400, children: _jsx(CalendarView, { stepPosition: calendarSteps, date: calendarDate, selectedDate: value, min: min, max: max, onDateSelect: handleDateSelect }, calendarDate.toLocaleString({ + month: "long", + year: "numeric", + })) }) })] }) }, `stable-view-${forceRenderIncrement}`)); +}; +const daysOfTheWeekLabels = ["Su", "Mo", "Tu", "We", "Th", "Fr", "Sa"]; +const CalendarView = ({ date, selectedDate, min, max, onDateSelect, stepPosition, }) => { + // Lock position on mount and don't respond to changes + const [position] = useState(stepPosition); + const { startOfMonth, weeks, enabledInterval } = useMemo(() => { + const monthStart = date.startOf("month"); + const endOfMonth = date.endOf("month"); + const daysBeforeMonthStart = monthStart.weekday % 7; + const blankDays = new Array(daysBeforeMonthStart).fill(null); + const daysInMonth = getDaysOfMonth(monthStart); + const calendarCells = [...blankDays, ...daysInMonth]; + const enabledDateInterval = Interval.fromDateTimes(min || monthStart, max || endOfMonth); + return { + startOfMonth: monthStart, + endOfMonth, + weeks: chunkIntoWeeks(calendarCells, 7), + enabledInterval: enabledDateInterval, + }; + }, [date, min, max]); + return (_jsxs("div", { className: s.Calendar, style: { left: position * STEP_DISTANCE_PX }, "data-calendar": true, children: [_jsxs("p", { className: s.MonthLabel, children: [startOfMonth.monthLong, " ", startOfMonth.year] }), _jsx("div", { className: s.Week, children: daysOfTheWeekLabels.map((day) => (_jsx("div", { className: s.DayLabel, children: day }, day))) }), weeks.map((week, weekIndex) => (_jsx("div", { className: s.Week, children: week.map((d, dayIndex) => { + if (!d) { + return _jsx("div", { className: s.Day }, `${weekIndex}-${dayIndex}`); + } + const enabled = enabledInterval.contains(d); + const isSelected = enabled && selectedDate && isSameDay(d, selectedDate); + const dayIsToday = isToday(d); + return (_jsx("div", { className: s.Day, "data-is-selected": isSelected ? "" : undefined, children: _jsxs("button", { className: s.InteractiveDay, disabled: !enabled, onClick: () => d && onDateSelect?.(d), children: [d.day, dayIsToday && _jsx("span", { className: s.TodayDot })] }) }, dayIndex)); + }) }, weekIndex)))] })); +}; +//# sourceMappingURL=Calendar.js.map \ No newline at end of file diff --git a/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/DatePicker/Calendar.js.map b/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/DatePicker/Calendar.js.map new file mode 100644 index 0000000000000000000000000000000000000000..e20a417608ad6a63bd2579c08417d1353c65cc74 --- /dev/null +++ b/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/DatePicker/Calendar.js.map @@ -0,0 +1 @@ +{"version":3,"file":"Calendar.js","sourceRoot":"","sources":["../../../../src/components/DatePicker/Calendar.tsx"],"names":[],"mappings":"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","sourcesContent":["\"use client\"\n\nimport { DateTime, Interval } from \"luxon\"\nimport { useEffect, useMemo, useRef, useState } from \"react\"\nimport { chunkIntoWeeks, getDaysOfMonth, isBefore, isSameDay, isToday } from \"../../lib/dateUtils\"\nimport { waitForAnimationFrame } from \"../../lib/helpers\"\nimport { Button } from \"../Button\"\nimport { ChevronLeft, ChevronRight } from \"../Icon\"\nimport { usePopoverClose } from \"../Popover/usePopoverController\"\nimport { TransitionGroup } from \"../Transition\"\nimport s from \"./Calendar.module.css\"\nimport { useDateContext } from \"./context\"\n\nconst CALENDAR_WIDTH_PX = 210\nconst CALENDAR_GAP_PX = 32\nconst STEP_DISTANCE_PX = CALENDAR_WIDTH_PX + CALENDAR_GAP_PX\n\nexport const DateCalendar = () => {\n const { value, min, max, onChangeRef } = useDateContext()\n const closePopover = usePopoverClose()\n const calendarContainerRef = useRef(null)\n const [calendarSteps, setCalendarSteps] = useState(0)\n const [forceRenderIncrement, setForceRenderIncrement] = useState(0)\n const [calendarDate, setCalendarDate] = useState(() => value ?? DateTime.now())\n\n const canGoBack = !min || isBefore(min, calendarDate.startOf(\"month\"))\n const canGoForward = !max || isBefore(calendarDate.endOf(\"month\"), max)\n\n const handleNext = () => {\n setCalendarSteps((c) => c + 1)\n setCalendarDate((dt) => dt.plus({ months: 1 }))\n }\n\n const handlePrevious = () => {\n setCalendarSteps((c) => c - 1)\n setCalendarDate((dt) => dt.minus({ months: 1 }))\n }\n\n const handleDateSelect = (selectedDate: DateTime) => {\n onChangeRef.current(selectedDate)\n closePopover()\n }\n\n // Force re-renders when `value` changes out of band from direct user-selection\n useEffect(() => {\n // No-op when value is empty\n if (!value) {\n return\n }\n\n // Check if `value` is still within view of our calendar\n const viewInterval = Interval.fromDateTimes(\n calendarDate.startOf(\"month\"),\n calendarDate.endOf(\"month\"),\n )\n const isValueInRangeOfCalendar = viewInterval.contains(value)\n if (!isValueInRangeOfCalendar) {\n // Reset state the calendar view entirely\n setCalendarSteps(0)\n setCalendarDate(value)\n setForceRenderIncrement((c) => c + 1)\n }\n // eslint-disable-next-line react-hooks/exhaustive-deps -- Only re-run this hook when value changes\n }, [value])\n\n // Detect height changes when new calendars are rendered\n useEffect(() => {\n waitForAnimationFrame(() => {\n const container = calendarContainerRef.current\n\n if (!container) {\n return\n }\n\n let maxHeight = -Infinity\n\n // Find the tallest calendar\n container.querySelectorAll(\"[data-calendar]\")?.forEach((element) => {\n // NOTE: clientHeight does not respect the scale() that popover uses to animate in, which is what we want\n // We want to know the full height of the element, without any transform applied.\n const height = element.clientHeight\n\n // Ignore calendars that are exiting\n if (element.closest(\"[data-exiting\")) {\n return\n }\n\n if (height > maxHeight) {\n maxHeight = height\n }\n })\n\n container.style.height = `${maxHeight}px`\n\n // Don't animate the initial height.\n // This is relevant when the calendar opens to a larger size than the default.\n if (!container.style.transition) {\n waitForAnimationFrame(() => {\n container.style.transition = `height 0.25s var(--cubic-move)`\n })\n }\n })\n }, [calendarDate])\n\n return (\n
\n
\n
\n \n \n \n
\n
\n \n \n \n
\n \n \n \n \n
\n
\n \n )\n}\n\ntype CalendarViewProps = {\n // Can be any day within the given month that the calendar should render for\n date: DateTime\n selectedDate?: DateTime | null\n onDateSelect?: (dt: DateTime) => void\n min?: DateTime\n max?: DateTime\n stepPosition: number\n}\n\nconst daysOfTheWeekLabels = [\"Su\", \"Mo\", \"Tu\", \"We\", \"Th\", \"Fr\", \"Sa\"]\n\nconst CalendarView = ({\n date,\n selectedDate,\n min,\n max,\n onDateSelect,\n stepPosition,\n}: CalendarViewProps) => {\n // Lock position on mount and don't respond to changes\n const [position] = useState(stepPosition)\n const { startOfMonth, weeks, enabledInterval } = useMemo(() => {\n const monthStart = date.startOf(\"month\")\n const endOfMonth = date.endOf(\"month\")\n\n const daysBeforeMonthStart = monthStart.weekday % 7\n const blankDays = new Array(daysBeforeMonthStart).fill(null)\n const daysInMonth = getDaysOfMonth(monthStart)\n const calendarCells = [...blankDays, ...daysInMonth]\n\n const enabledDateInterval = Interval.fromDateTimes(min || monthStart, max || endOfMonth)\n\n return {\n startOfMonth: monthStart,\n endOfMonth,\n weeks: chunkIntoWeeks(calendarCells, 7),\n enabledInterval: enabledDateInterval,\n }\n }, [date, min, max])\n\n return (\n
\n

\n {startOfMonth.monthLong} {startOfMonth.year}\n

\n
\n {daysOfTheWeekLabels.map((day) => (\n
\n {day}\n
\n ))}\n
\n {weeks.map((week, weekIndex) => (\n
\n {week.map((d, dayIndex) => {\n if (!d) {\n return
\n }\n\n const enabled = enabledInterval.contains(d)\n const isSelected = enabled && selectedDate && isSameDay(d, selectedDate)\n const dayIsToday = isToday(d)\n\n return (\n
\n d && onDateSelect?.(d)}\n >\n {d.day}\n {dayIsToday && }\n \n
\n )\n })}\n
\n ))}\n
\n )\n}\n"]} \ No newline at end of file diff --git a/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/DatePicker/Calendar.module.css b/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/DatePicker/Calendar.module.css new file mode 100644 index 0000000000000000000000000000000000000000..24abfcb53271562ca2cbdf08dc4beffdf5ddbe1c --- /dev/null +++ b/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/DatePicker/Calendar.module.css @@ -0,0 +1,194 @@ +@layer components {.CalendarContainer { + position: relative; + width: 210px; + /* Default size of the calendar is assumed to be 224px */ + /* and then is dynamically set via JS measuring */ + height: 224px; +}.Previous { + position: absolute; + top: 0; + left: -2px; + z-index: 2; + background-color: var(--color-surface-elevated); +} + + /* Prevent titles from bleeding beyond the button */ + .Previous::before { + position: absolute; + top: 0; + bottom: 0; + left: -10px; + display: block; + width: 12px; + background-color: var(--color-surface-elevated); + content: ""; + } + + /* Slide fade as titles collide with the button */ + .Previous::after { + position: absolute; + top: 0; + bottom: 0; + left: 100%; + display: block; + width: 14px; + background-color: var(--color-surface-elevated); + content: ""; + -webkit-mask-image: linear-gradient(-90deg, rgb(0 0 0 / 0%), rgb(0 0 0 / 100%)); + mask-image: linear-gradient(-90deg, rgb(0 0 0 / 0%), rgb(0 0 0 / 100%)); + }.Next { + position: absolute; + top: 0; + right: -2px; + z-index: 2; + background-color: var(--color-surface-elevated); +} + + /* Prevent titles from bleeding beyond the button */ + .Next::before { + position: absolute; + top: 0; + right: -10px; + bottom: 0; + display: block; + width: 12px; + background-color: var(--color-surface-elevated); + content: ""; + } + + /* Slide fade as titles collide with the button */ + .Next::after { + position: absolute; + top: 0; + right: 100%; + bottom: 0; + display: block; + width: 14px; + background-color: var(--color-surface-elevated); + content: ""; + -webkit-mask-image: linear-gradient(90deg, rgb(0 0 0 / 0%), rgb(0 0 0 / 100%)); + mask-image: linear-gradient(90deg, rgb(0 0 0 / 0%), rgb(0 0 0 / 100%)); + }/* Lift the inner button above the pseudo elements to avoid clipping in the focus ring box shadow. */.Next button[type="button"], +.Previous button[type="button"] { + z-index: 2; +}.CalendarWrapper { + overflow: hidden; + padding: 10px 12px 12px; +}.CalendarRange { + transition: transform 0.25s var(--cubic-move); +}.Calendar { + --cell-size: 30px; + --cell-vertical-gutter: 2px; + + position: absolute; + top: 0; + width: 210px; + font-size: 14px; +}.Week { + display: flex; + margin-bottom: var(--cell-vertical-gutter); +} + + .Week:last-child { + margin-bottom: 0; + }.DayLabel { + display: flex; + align-items: center; + justify-content: center; + width: var(--cell-size); + height: var(--cell-size); + color: var(--color-text-secondary); + font-size: 12px; + letter-spacing: var(--tracking-none); + text-align: center; +}.MonthLabel { + display: flex; + align-items: center; + justify-content: center; + height: 28px; + padding: 0; + margin: 0 0 6px; + color: var(--color-text); + font-size: 13px; + font-weight: var(--font-weight-semibold); +}.Day { + position: relative; + width: var(--cell-size); + height: var(--cell-size); + text-align: center; + transition: background-color 0.15s var(--cubic-enter); +} + + .Day[data-is-selected] { + border-radius: var(--radius-full); + } + + .Day[data-is-selected], :where([data-theme="light"]) .Day[data-is-selected] { +background-color: var(--alpha-06); +} + + :where([data-theme="dark"]) .Day[data-is-selected] { +background-color: var(--alpha-08); +}.InteractiveDay { + position: relative; + display: block; + width: var(--cell-size); + height: var(--cell-size); + border: 0; + border-radius: var(--radius-full); + -webkit-appearance: auto; + -moz-appearance: auto; + appearance: auto; + background: none; + cursor: pointer; + font-size: var(--font-text-sm-size); +} + + .InteractiveDay::before { + position: absolute; + inset: 0; + display: block; + border: 1px solid var(--color-text); + border-radius: var(--radius-full); + content: ""; + opacity: 0; + transition: + color, + 0.15s var(--cubic-enter), + opacity 0.15s var(--cubic-enter); + } + + @media (hover: hover) and (pointer: fine) { + .InteractiveDay:hover::before { + opacity: 1; + } +} + + .InteractiveDay[disabled] { + cursor: not-allowed; + opacity: 0.4; + } + + .InteractiveDay[disabled]::before { + display: none; + } + + [data-is-selected] .InteractiveDay { + background: var(--color-text); + color: var(--color-text-inverse); + }.TodayDot { + position: absolute; + bottom: 3px; + left: 50%; + width: 3px; + height: 3px; + border-radius: 100%; + margin-left: -1px; + background-color: var(--color-text); + transition: background-color 0.15s var(--cubic-enter); +} + + [data-is-selected] .TodayDot { + background-color: var(--gray-0); + } +} diff --git a/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/DatePicker/DatePicker.js b/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/DatePicker/DatePicker.js new file mode 100644 index 0000000000000000000000000000000000000000..6c26ef9dbec6fd3ca89633d419d7d460a1d99283 --- /dev/null +++ b/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/DatePicker/DatePicker.js @@ -0,0 +1,57 @@ +"use client"; +import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime"; +import { DateTime } from "luxon"; +import { useMemo } from "react"; +import { useLatestValue } from "../../hooks/useLatestValue"; +import { isBefore } from "../../lib/dateUtils"; +import { Calendar } from "../Icon"; +import { Popover } from "../Popover"; +import { SelectControl } from "../SelectControl"; +import { DateCalendar } from "./Calendar"; +import { DateContext } from "./context"; +export const DatePicker = (props) => { + const { id, value, onChange, min, max, side = "bottom", sideOffset = 8, align = "center", alignOffset, variant = "outline", size = "md", clearable = false, disabled = false, dropdownIconType, placeholder = "Select date...", pill = true, block = false, triggerClassName, triggerShowIcon = true, triggerDateFormat = "MM/dd/yy", } = props; + if (min && max && !isBefore(min, max)) { + throw new Error("DatePicker error: `min` date must be before the `max` date"); + } + // Create stable, mutable references to avoid memoization requirements from consumers + const onChangeRef = useLatestValue(onChange); + const store = useMemo(() => ({ + value, + min, + max, + variant, + size, + dropdownIconType, + clearable, + disabled, + placeholder, + block, + pill, + triggerClassName, + triggerShowIcon, + triggerDateFormat, + onChangeRef, + }), [ + value, + min, + max, + variant, + size, + dropdownIconType, + clearable, + disabled, + placeholder, + block, + pill, + triggerClassName, + triggerShowIcon, + triggerDateFormat, + onChangeRef, + ]); + const handleClearClick = () => { + onChangeRef.current(null); + }; + return (_jsx(DateContext, { value: store, children: _jsxs(Popover, { children: [_jsx(Popover.Trigger, { children: _jsx(SelectControl, { id: id, className: triggerClassName, selected: !!value, variant: variant, pill: pill, block: block, size: size, disabled: disabled, StartIcon: triggerShowIcon ? Calendar : undefined, dropdownIconType: dropdownIconType, onClearClick: clearable ? handleClearClick : undefined, children: _jsx("span", { className: "tabular-nums", children: value?.toFormat(triggerDateFormat) ?? placeholder }) }) }), _jsx(Popover.Content, { minWidth: 230, side: side, sideOffset: sideOffset, align: align, alignOffset: alignOffset ?? (align === "center" ? 0 : -5), children: _jsx(DateCalendar, {}) })] }) })); +}; +//# sourceMappingURL=DatePicker.js.map \ No newline at end of file diff --git a/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/DatePicker/DatePicker.js.map b/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/DatePicker/DatePicker.js.map new file mode 100644 index 0000000000000000000000000000000000000000..ad7897fd36978cff78cb7207aeb8602475d26102 --- /dev/null +++ b/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/DatePicker/DatePicker.js.map @@ -0,0 +1 @@ +{"version":3,"file":"DatePicker.js","sourceRoot":"","sources":["../../../../src/components/DatePicker/DatePicker.tsx"],"names":[],"mappings":"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","sourcesContent":["\"use client\"\n\nimport { DateTime } from \"luxon\"\nimport { useMemo } from \"react\"\nimport { useLatestValue } from \"../../hooks/useLatestValue\"\nimport { isBefore } from \"../../lib/dateUtils\"\nimport { Calendar } from \"../Icon\"\nimport { Popover, type PopoverContentProps } from \"../Popover\"\nimport { SelectControl, type SelectControlProps } from \"../SelectControl\"\nimport { DateCalendar } from \"./Calendar\"\nimport { DateContext, type DateContextValue } from \"./context\"\n\nexport type DatePickerProps = {\n /**\n * Allow targeting the input for forms and accessibility.\n */\n id: string\n /**\n * The selected date value.\n */\n value: DateTime | null\n /**\n * Handler that is triggered when the date changes.\n */\n onChange: (nextValue: DateTime | null) => void\n /**\n * Defines the earliest selectable date (inclusive).\n */\n min?: DateTime\n /**\n * Defines the latest selectable date (inclusive).\n */\n max?: DateTime\n /**\n * The preferred side of the trigger to render against when open. Will be reversed when collisions occur.\n * @default bottom\n */\n side?: PopoverContentProps[\"side\"]\n /**\n * The distance in pixels from the trigger.\n * @default 8\n */\n sideOffset?: PopoverContentProps[\"sideOffset\"]\n /**\n * The preferred alignment against the trigger. May change when collisions occur.\n * @default center\n */\n align?: PopoverContentProps[\"align\"]\n /**\n * An offset in pixels from the \"start\" or \"end\" alignment options.\n * @default 0\n */\n alignOffset?: PopoverContentProps[\"alignOffset\"]\n\n /**\n * Disables the select visually and from interactions\n * @default false\n */\n disabled?: boolean\n /**\n * Placeholder text for the select\n * @default Select date...\n */\n placeholder?: string\n /**\n * Style variant for the select trigger\n * @default outline\n */\n variant?: SelectControlProps[\"variant\"]\n /**\n * Determines if the select trigger should be a fully rounded pill shape\n * @default false\n */\n pill?: boolean\n /**\n * Determines size of the size and spacing of the control.\n *\n * | 3xs | 2xs | xs | sm | md | lg | xl | 2xl | 3xl |\n * | ------- | ------- | ------- | ------- | ------- | ------- | ------- | ------- | ------- |\n * | `22px` | `24px` | `26px` | `28px` | `32px` | `36px` | `40px` | `44px` | `48px` |\n * @default md\n */\n size?: SelectControlProps[\"size\"]\n /**\n * Icon displayed in the far right of the select trigger\n * @default dropdown\n */\n dropdownIconType?: SelectControlProps[\"dropdownIconType\"]\n /**\n * Custom class applied to the select trigger\n */\n triggerClassName?: string\n /**\n * Display calendar icon at the start of the trigger\n * @default true\n */\n triggerShowIcon?: boolean\n /**\n * Format of dates displayed in the trigger\n */\n triggerDateFormat: string\n /**\n * Display a clear action that allows the select to be unset.\n * @default false\n */\n clearable?: boolean\n /**\n * Extends select to 100% of available width.\n * @default true\n */\n block?: boolean\n}\n\nexport const DatePicker = (props: DatePickerProps) => {\n const {\n id,\n value,\n onChange,\n min,\n max,\n side = \"bottom\",\n sideOffset = 8,\n align = \"center\",\n alignOffset,\n variant = \"outline\",\n size = \"md\",\n clearable = false,\n disabled = false,\n dropdownIconType,\n placeholder = \"Select date...\",\n pill = true,\n block = false,\n triggerClassName,\n triggerShowIcon = true,\n triggerDateFormat = \"MM/dd/yy\",\n } = props\n\n if (min && max && !isBefore(min, max)) {\n throw new Error(\"DatePicker error: `min` date must be before the `max` date\")\n }\n\n // Create stable, mutable references to avoid memoization requirements from consumers\n const onChangeRef = useLatestValue(onChange)\n\n const store = useMemo(\n () => ({\n value,\n min,\n max,\n variant,\n size,\n dropdownIconType,\n clearable,\n disabled,\n placeholder,\n block,\n pill,\n triggerClassName,\n triggerShowIcon,\n triggerDateFormat,\n onChangeRef,\n }),\n [\n value,\n min,\n max,\n variant,\n size,\n dropdownIconType,\n clearable,\n disabled,\n placeholder,\n block,\n pill,\n triggerClassName,\n triggerShowIcon,\n triggerDateFormat,\n onChangeRef,\n ],\n )\n\n const handleClearClick = () => {\n onChangeRef.current(null)\n }\n\n return (\n \n \n \n \n \n {value?.toFormat(triggerDateFormat) ?? placeholder}\n \n \n \n \n \n \n \n \n )\n}\n"]} \ No newline at end of file diff --git a/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/DatePicker/context.js b/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/DatePicker/context.js new file mode 100644 index 0000000000000000000000000000000000000000..9076ad85a54ec521bd5cc878e8af172f2604d099 --- /dev/null +++ b/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/DatePicker/context.js @@ -0,0 +1,12 @@ +"use client"; +import { DateTime } from "luxon"; +import { createContext, use } from "react"; +export const DateContext = createContext(null); +export const useDateContext = () => { + const context = use(DateContext); + if (!context) { + throw new Error("Date components must be wrapped in "); + } + return context; +}; +//# sourceMappingURL=context.js.map \ No newline at end of file diff --git a/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/DatePicker/context.js.map b/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/DatePicker/context.js.map new file mode 100644 index 0000000000000000000000000000000000000000..a4b694422d1fda89531d4ea314dd28b751d285e7 --- /dev/null +++ b/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/DatePicker/context.js.map @@ -0,0 +1 @@ +{"version":3,"file":"context.js","sourceRoot":"","sources":["../../../../src/components/DatePicker/context.tsx"],"names":[],"mappings":"AAAA,YAAY,CAAA;AAEZ,OAAO,EAAE,QAAQ,EAAE,MAAM,OAAO,CAAA;AAChC,OAAO,EAAE,aAAa,EAAE,GAAG,EAAE,MAAM,OAAO,CAAA;AAsB1C,MAAM,CAAC,MAAM,WAAW,GAAG,aAAa,CAA0B,IAAI,CAAC,CAAA;AAEvE,MAAM,CAAC,MAAM,cAAc,GAAG,GAAG,EAAE;IACjC,MAAM,OAAO,GAAG,GAAG,CAAC,WAAW,CAAC,CAAA;IAEhC,IAAI,CAAC,OAAO,EAAE,CAAC;QACb,MAAM,IAAI,KAAK,CAAC,mDAAmD,CAAC,CAAA;IACtE,CAAC;IAED,OAAO,OAAO,CAAA;AAChB,CAAC,CAAA","sourcesContent":["\"use client\"\n\nimport { DateTime } from \"luxon\"\nimport { createContext, use } from \"react\"\nimport type { SelectControlProps } from \"../SelectControl\"\n\nexport type DateContextValue = {\n value: DateTime | null\n min?: DateTime\n max?: DateTime\n triggerClassName?: string\n triggerShowIcon?: boolean\n triggerDateFormat: string\n disabled: boolean\n variant?: SelectControlProps[\"variant\"]\n pill: boolean\n block: boolean\n size?: SelectControlProps[\"size\"]\n dropdownIconType?: SelectControlProps[\"dropdownIconType\"]\n clearable: boolean\n placeholder: string\n // References\n onChangeRef: React.MutableRefObject<(nextValue: DateTime | null) => void>\n}\n\nexport const DateContext = createContext(null)\n\nexport const useDateContext = () => {\n const context = use(DateContext)\n\n if (!context) {\n throw new Error(\"Date components must be wrapped in \")\n }\n\n return context\n}\n"]} \ No newline at end of file diff --git a/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/DatePicker/index.js b/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/DatePicker/index.js new file mode 100644 index 0000000000000000000000000000000000000000..2d14bf8e363654bd6fb994f11f31174187ae26de --- /dev/null +++ b/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/DatePicker/index.js @@ -0,0 +1,2 @@ +export { DatePicker } from "./DatePicker"; +//# sourceMappingURL=index.js.map \ No newline at end of file diff --git a/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/DatePicker/index.js.map b/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/DatePicker/index.js.map new file mode 100644 index 0000000000000000000000000000000000000000..6ac055582fb221beb212aa761e4795712c3c6ccd --- /dev/null +++ b/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/DatePicker/index.js.map @@ -0,0 +1 @@ +{"version":3,"file":"index.js","sourceRoot":"","sources":["../../../../src/components/DatePicker/index.tsx"],"names":[],"mappings":"AAAA,OAAO,EAAE,UAAU,EAAE,MAAM,cAAc,CAAA","sourcesContent":["export { DatePicker } from \"./DatePicker\"\nexport type { DatePickerProps } from \"./DatePicker\"\n"]} \ No newline at end of file diff --git a/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/DateRangePicker/Calendar.js b/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/DateRangePicker/Calendar.js new file mode 100644 index 0000000000000000000000000000000000000000..f640564174e93dcfb52c7fc2e3d81f75c65b12a0 --- /dev/null +++ b/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/DateRangePicker/Calendar.js @@ -0,0 +1,226 @@ +"use client"; +import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime"; +import { DateTime, Interval } from "luxon"; +import { useEffect, useMemo, useRef, useState } from "react"; +import { useBreakpoint } from "../../hooks/useBreakpoints"; +import { chunkIntoWeeks, getDaysOfMonth, isAfter, isBefore, isSameDay, isToday, } from "../../lib/dateUtils"; +import { waitForAnimationFrame } from "../../lib/helpers"; +import { Button } from "../Button"; +import { Check, ChevronLeft, ChevronRight } from "../Icon"; +import { TransitionGroup } from "../Transition"; +import s from "./Calendar.module.css"; +import { useDateRangeContext } from "./context"; +import {} from "./types"; +const CALENDAR_WIDTH_PX = 210; +const CALENDAR_GAP_PX = 32; +const STEP_DISTANCE_PX = CALENDAR_WIDTH_PX + CALENDAR_GAP_PX; +export const DateRangeCalendar = () => { + const { value, min, max, maxRangeDays, onChangeRef } = useDateRangeContext(); + const isSmallUp = useBreakpoint("sm"); + const calendarContainerRef = useRef(null); + const [selectionRange, setSelectionRange] = useState(null); + const [calendarSteps, setCalendarSteps] = useState(0); + const [forceRenderIncrement, setForceRenderIncrement] = useState(0); + const [leftCalendarDate, setLeftCalendarDate] = useState(() => isSmallUp + ? getLeftCalendarDate(value?.[0] ?? DateTime.now(), max) + : value?.[0] ?? DateTime.now()); + const rightCalendarDate = isSmallUp + ? leftCalendarDate.plus({ months: 1 }).startOf("month") + : leftCalendarDate.startOf("month"); + const canGoBack = !min || isBefore(min, leftCalendarDate.startOf("month")); + const canGoForward = !max || isBefore(rightCalendarDate.endOf("month"), max); + const handleNext = () => { + setCalendarSteps((c) => c + 1); + setLeftCalendarDate((dt) => dt.plus({ months: 1 })); + }; + const handlePrevious = () => { + setCalendarSteps((c) => c - 1); + setLeftCalendarDate((dt) => dt.minus({ months: 1 })); + }; + const handleDateSelect = (selectedDate) => { + if (!selectionRange) { + setSelectionRange([selectedDate, selectedDate]); + return; + } + const [currentSelectionStartDate] = selectionRange; + // Selecting a date before the current selected start date moves the start date + // but does not resolve the selection + if (isBefore(selectedDate, currentSelectionStartDate)) { + setSelectionRange([selectedDate, selectedDate]); + return; + } + // Resolve the selection by emitting the value and clearing selection + onChangeRef.current([currentSelectionStartDate, selectedDate]); + setSelectionRange(null); + }; + const handleDateMouseEnter = (hoveredDate) => { + // If we're not actively selecting, no-op + if (!selectionRange) { + return; + } + setSelectionRange((currentSelectionRange) => { + // impossible due to the check above + if (!currentSelectionRange) { + return currentSelectionRange; + } + const [currentStartDate] = currentSelectionRange; + // When hovering a date before the current date, don't change the selection range + if (isBefore(hoveredDate, currentStartDate)) { + return [currentStartDate, currentStartDate]; + } + return [currentStartDate, hoveredDate]; + }); + }; + const handleCalendarMouseLeave = () => { + // If we're not actively selecting, no-op + if (!selectionRange) { + return; + } + setSelectionRange((currentSelectionRange) => { + if (!currentSelectionRange) { + return currentSelectionRange; + } + // Reset the end selection + const [currentStartDate] = currentSelectionRange; + return [currentStartDate, currentStartDate]; + }); + }; + const selectedDisplayValue = selectionRange || value; + // Force re-renders when `value` changes out of brand from direct user-selection + useEffect(() => { + // No-op when value is empty + if (!value) { + return; + } + // When a new value is received, it could be out of band from the control of this calendar. + // For example, a shortcut could be selected, or clear could be pressed. In either case, selection + // should be reset so that the new `value` can be displayed fully. + setSelectionRange(null); + // Check if `value` is still within view of our calendar + const viewInterval = Interval.fromDateTimes(leftCalendarDate.startOf("month"), rightCalendarDate.endOf("month")); + const isValueInRangeOfCalendar = viewInterval.contains(value[0]) || viewInterval.contains(value[1]); + if (!isValueInRangeOfCalendar) { + // Reset state the calendar view entirely + setSelectionRange(null); + setCalendarSteps(0); + setLeftCalendarDate(isSmallUp ? getLeftCalendarDate(value[0], max) : value[0]); + setForceRenderIncrement((c) => c + 1); + } + // eslint-disable-next-line react-hooks/exhaustive-deps -- Only re-run this hook when value changes + }, [value]); + // Detect height changes when new calendars are rendered + useEffect(() => { + waitForAnimationFrame(() => { + const container = calendarContainerRef.current; + if (!container) { + return; + } + let maxHeight = -Infinity; + // Find the tallest calendar + container.querySelectorAll("[data-calendar]")?.forEach((element) => { + // NOTE: clientHeight does not respect the scale() that popover uses to animate in, which is what we want + // We want to know the full height of the element, without any transform applied. + const height = element.clientHeight; + // Ignore calendars that are exiting + if (element.closest("[data-exiting")) { + return; + } + if (height > maxHeight) { + maxHeight = height; + } + }); + container.style.height = `${maxHeight}px`; + // Don't animate the initial height. + // This is relevant when the calendar opens to a larger size than the default. + if (!container.style.transition) { + waitForAnimationFrame(() => { + container.style.transition = `height 0.25s var(--cubic-move)`; + }); + } + }); + }, [leftCalendarDate]); + return (_jsx("div", { className: s.CalendarWrapper, children: _jsxs("div", { ref: calendarContainerRef, className: s.CalendarContainer, onMouseLeave: handleCalendarMouseLeave, children: [_jsx("div", { className: s.Previous, children: _jsx(Button, { variant: "ghost", color: "secondary", size: "sm", pill: false, gutterSize: "2xs", iconSize: "sm", onClick: handlePrevious, disabled: !canGoBack, children: _jsx(ChevronLeft, {}) }) }), _jsx("div", { className: s.Next, children: _jsx(Button, { variant: "ghost", color: "secondary", size: "sm", pill: false, gutterSize: "2xs", iconSize: "sm", onClick: handleNext, disabled: !canGoForward, children: _jsx(ChevronRight, {}) }) }), _jsx("div", { className: s.CalendarRange, style: { + transform: `translate(${calendarSteps * -1 * STEP_DISTANCE_PX}px, 0)`, + }, children: _jsxs(TransitionGroup, { enterDuration: 400, exitDuration: 400, children: [_jsx(CalendarView, { stepPosition: calendarSteps, date: leftCalendarDate, selectedDates: selectedDisplayValue, min: min, max: max, selectionStart: selectionRange?.[0], maxRangeDays: maxRangeDays, isSelecting: !!selectionRange, onDateSelect: handleDateSelect, onDateMouseEnter: handleDateMouseEnter }, leftCalendarDate.toLocaleString({ + month: "long", + year: "numeric", + })), isSmallUp && (_jsx(CalendarView, { stepPosition: calendarSteps + 1, date: rightCalendarDate, selectedDates: selectedDisplayValue, min: min, max: max, selectionStart: selectionRange?.[0], maxRangeDays: maxRangeDays, isSelecting: !!selectionRange, onDateSelect: handleDateSelect, onDateMouseEnter: handleDateMouseEnter }, rightCalendarDate.toLocaleString({ + month: "long", + year: "numeric", + })))] }) })] }) }, `stable-view-${forceRenderIncrement}`)); +}; +const daysOfTheWeekLabels = ["Su", "Mo", "Tu", "We", "Th", "Fr", "Sa"]; +const CalendarView = ({ date, selectedDates, min, max, selectionStart, maxRangeDays, isSelecting, onDateSelect, onDateMouseEnter, stepPosition, }) => { + // Lock position on mount and don't respond to changes + const [position] = useState(stepPosition); + const { startOfMonth, weeks, enabledInterval } = useMemo(() => { + const monthStart = date.startOf("month"); + const endOfMonth = date.endOf("month"); + const daysBeforeMonthStart = monthStart.weekday % 7; + const blankDays = new Array(daysBeforeMonthStart).fill(null); + const daysInMonth = getDaysOfMonth(monthStart); + const calendarCells = [...blankDays, ...daysInMonth]; + const enabledDateInterval = Interval.fromDateTimes(min || monthStart, max || endOfMonth); + return { + startOfMonth: monthStart, + endOfMonth, + weeks: chunkIntoWeeks(calendarCells, 7), + enabledInterval: enabledDateInterval, + }; + }, [date, min, max]); + const [selectedStart, selectedEnd] = selectedDates || []; + const rangeEndLimit = selectionStart && maxRangeDays != null + ? selectionStart.plus({ days: maxRangeDays - 1 }) + : undefined; + const selectedInterval = useMemo(() => { + if (!selectedStart || !selectedEnd) { + return null; + } + return Interval.fromDateTimes(selectedStart.startOf("day"), selectedEnd.endOf("day")); + }, [selectedStart, selectedEnd]); + return (_jsxs("div", { className: s.Calendar, style: { left: position * STEP_DISTANCE_PX }, "data-calendar": true, children: [_jsxs("p", { className: s.MonthLabel, children: [startOfMonth.monthLong, " ", startOfMonth.year] }), _jsx("div", { className: s.Week, children: daysOfTheWeekLabels.map((day) => (_jsx("div", { className: s.DayLabel, children: day }, day))) }), weeks.map((week, weekIndex) => (_jsx("div", { className: s.Week, children: week.map((d, dayIndex) => { + if (!d) { + return _jsx("div", { className: s.Day }, `${weekIndex}-${dayIndex}`); + } + // Check if 'day' is within selected range + const enabled = enabledInterval.contains(d) && + !(isSelecting && rangeEndLimit && isAfter(d, rangeEndLimit)); + const isStart = enabled && selectedStart && isSameDay(d, selectedStart); + const isEnd = enabled && selectedEnd && isSameDay(d, selectedEnd); + const hasRange = selectedStart && selectedEnd && !isSameDay(selectedStart, selectedEnd); + const isInRange = hasRange && selectedInterval?.contains(d); + const dayIsToday = isToday(d); + const isFirstRangeTrail = d.day === 1 && + // Trail doesn't make sense to display at the start of the week (Monday) + d.weekday !== 7 && + isInRange && + !isStart; + const isLastRangeTrail = d.day === d.daysInMonth && + // Trail doesn't make sense to display at the end of the week (Saturday) + d.weekday !== 6 && + isInRange && + !isEnd; + return (_jsx("div", { className: s.Day, "data-is-start": isStart ? "" : undefined, "data-is-end": isEnd ? "" : undefined, "data-is-in-range": isInRange ? "" : undefined, "data-is-first-range-trail": isFirstRangeTrail ? "" : undefined, "data-is-last-range-trail": isLastRangeTrail ? "" : undefined, children: _jsxs("button", { className: s.InteractiveDay, disabled: !enabled, onClick: () => d && onDateSelect?.(d), onMouseEnter: () => d && onDateMouseEnter?.(d), children: [d.day, dayIsToday && _jsx("span", { className: s.TodayDot })] }) }, dayIndex)); + }) }, weekIndex)))] })); +}; +export const DateRangeShortcuts = ({ shortcuts }) => { + const isMediumUp = useBreakpoint("md"); + const { value, onChangeRef } = useDateRangeContext(); + if (!isMediumUp || !shortcuts?.length) { + return null; + } + return (_jsx("div", { className: s.Shortcuts, children: shortcuts.map((shortcut) => { + const { label, getDateRange } = shortcut; + const range = getDateRange(); + const [start, end] = range; + const isActive = !!value && isSameDay(value[0], start) && isSameDay(value[1], end); + return (_jsxs(Button, { className: "mb-1", variant: "ghost", color: "primary", pill: false, size: "md", iconSize: "sm", block: true, selected: isActive, onClick: () => onChangeRef.current(range, shortcut), children: [_jsx("span", { className: s.ButtonText, children: label }), isActive && _jsx(Check, {})] }, label)); + }) })); +}; +const getLeftCalendarDate = (targetDate, maxDate) => { + if (!maxDate) { + return targetDate; + } + return isBefore(targetDate.endOf("month"), maxDate) ? targetDate : targetDate.minus({ months: 1 }); +}; +//# sourceMappingURL=Calendar.js.map \ No newline at end of file diff --git a/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/DateRangePicker/Calendar.js.map b/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/DateRangePicker/Calendar.js.map new file mode 100644 index 0000000000000000000000000000000000000000..dcaa40b70e63dcccb15529c0889ccc5e2ac3df0a --- /dev/null +++ b/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/DateRangePicker/Calendar.js.map @@ -0,0 +1 @@ +{"version":3,"file":"Calendar.js","sourceRoot":"","sources":["../../../../src/components/DateRangePicker/Calendar.tsx"],"names":[],"mappings":"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","sourcesContent":["\"use client\"\n\nimport { DateTime, Interval } from \"luxon\"\nimport { useEffect, useMemo, useRef, useState } from \"react\"\nimport { useBreakpoint } from \"../../hooks/useBreakpoints\"\nimport {\n chunkIntoWeeks,\n getDaysOfMonth,\n isAfter,\n isBefore,\n isSameDay,\n isToday,\n} from \"../../lib/dateUtils\"\nimport { waitForAnimationFrame } from \"../../lib/helpers\"\nimport { Button } from \"../Button\"\nimport { Check, ChevronLeft, ChevronRight } from \"../Icon\"\nimport { TransitionGroup } from \"../Transition\"\nimport s from \"./Calendar.module.css\"\nimport { useDateRangeContext } from \"./context\"\nimport { type DateRange, type DateRangeShortcut } from \"./types\"\n\nconst CALENDAR_WIDTH_PX = 210\nconst CALENDAR_GAP_PX = 32\nconst STEP_DISTANCE_PX = CALENDAR_WIDTH_PX + CALENDAR_GAP_PX\n\nexport const DateRangeCalendar = () => {\n const { value, min, max, maxRangeDays, onChangeRef } = useDateRangeContext()\n const isSmallUp = useBreakpoint(\"sm\")\n const calendarContainerRef = useRef(null)\n const [selectionRange, setSelectionRange] = useState(null)\n const [calendarSteps, setCalendarSteps] = useState(0)\n const [forceRenderIncrement, setForceRenderIncrement] = useState(0)\n const [leftCalendarDate, setLeftCalendarDate] = useState(() =>\n isSmallUp\n ? getLeftCalendarDate(value?.[0] ?? DateTime.now(), max)\n : value?.[0] ?? DateTime.now(),\n )\n\n const rightCalendarDate = isSmallUp\n ? leftCalendarDate.plus({ months: 1 }).startOf(\"month\")\n : leftCalendarDate.startOf(\"month\")\n\n const canGoBack = !min || isBefore(min, leftCalendarDate.startOf(\"month\"))\n const canGoForward = !max || isBefore(rightCalendarDate.endOf(\"month\"), max)\n\n const handleNext = () => {\n setCalendarSteps((c) => c + 1)\n setLeftCalendarDate((dt) => dt.plus({ months: 1 }))\n }\n\n const handlePrevious = () => {\n setCalendarSteps((c) => c - 1)\n setLeftCalendarDate((dt) => dt.minus({ months: 1 }))\n }\n\n const handleDateSelect = (selectedDate: DateTime) => {\n if (!selectionRange) {\n setSelectionRange([selectedDate, selectedDate])\n return\n }\n\n const [currentSelectionStartDate] = selectionRange\n\n // Selecting a date before the current selected start date moves the start date\n // but does not resolve the selection\n if (isBefore(selectedDate, currentSelectionStartDate)) {\n setSelectionRange([selectedDate, selectedDate])\n return\n }\n\n // Resolve the selection by emitting the value and clearing selection\n onChangeRef.current([currentSelectionStartDate, selectedDate])\n setSelectionRange(null)\n }\n\n const handleDateMouseEnter = (hoveredDate: DateTime) => {\n // If we're not actively selecting, no-op\n if (!selectionRange) {\n return\n }\n\n setSelectionRange((currentSelectionRange) => {\n // impossible due to the check above\n if (!currentSelectionRange) {\n return currentSelectionRange\n }\n\n const [currentStartDate] = currentSelectionRange\n\n // When hovering a date before the current date, don't change the selection range\n if (isBefore(hoveredDate, currentStartDate)) {\n return [currentStartDate, currentStartDate]\n }\n\n return [currentStartDate, hoveredDate]\n })\n }\n\n const handleCalendarMouseLeave = () => {\n // If we're not actively selecting, no-op\n if (!selectionRange) {\n return\n }\n\n setSelectionRange((currentSelectionRange) => {\n if (!currentSelectionRange) {\n return currentSelectionRange\n }\n\n // Reset the end selection\n const [currentStartDate] = currentSelectionRange\n return [currentStartDate, currentStartDate]\n })\n }\n\n const selectedDisplayValue = selectionRange || value\n\n // Force re-renders when `value` changes out of brand from direct user-selection\n useEffect(() => {\n // No-op when value is empty\n if (!value) {\n return\n }\n\n // When a new value is received, it could be out of band from the control of this calendar.\n // For example, a shortcut could be selected, or clear could be pressed. In either case, selection\n // should be reset so that the new `value` can be displayed fully.\n setSelectionRange(null)\n\n // Check if `value` is still within view of our calendar\n const viewInterval = Interval.fromDateTimes(\n leftCalendarDate.startOf(\"month\"),\n rightCalendarDate.endOf(\"month\"),\n )\n const isValueInRangeOfCalendar =\n viewInterval.contains(value[0]) || viewInterval.contains(value[1])\n if (!isValueInRangeOfCalendar) {\n // Reset state the calendar view entirely\n setSelectionRange(null)\n setCalendarSteps(0)\n setLeftCalendarDate(isSmallUp ? getLeftCalendarDate(value[0], max) : value[0])\n setForceRenderIncrement((c) => c + 1)\n }\n // eslint-disable-next-line react-hooks/exhaustive-deps -- Only re-run this hook when value changes\n }, [value])\n\n // Detect height changes when new calendars are rendered\n useEffect(() => {\n waitForAnimationFrame(() => {\n const container = calendarContainerRef.current\n\n if (!container) {\n return\n }\n\n let maxHeight = -Infinity\n\n // Find the tallest calendar\n container.querySelectorAll(\"[data-calendar]\")?.forEach((element) => {\n // NOTE: clientHeight does not respect the scale() that popover uses to animate in, which is what we want\n // We want to know the full height of the element, without any transform applied.\n const height = element.clientHeight\n\n // Ignore calendars that are exiting\n if (element.closest(\"[data-exiting\")) {\n return\n }\n\n if (height > maxHeight) {\n maxHeight = height\n }\n })\n\n container.style.height = `${maxHeight}px`\n\n // Don't animate the initial height.\n // This is relevant when the calendar opens to a larger size than the default.\n if (!container.style.transition) {\n waitForAnimationFrame(() => {\n container.style.transition = `height 0.25s var(--cubic-move)`\n })\n }\n })\n }, [leftCalendarDate])\n\n return (\n
\n \n
\n \n \n \n
\n
\n \n \n \n
\n \n \n \n {isSmallUp && (\n \n )}\n \n
\n
\n \n )\n}\n\ntype CalendarViewProps = {\n // Can be any day within the given month that the calendar should render for\n date: DateTime\n selectedDates?: DateRange | null\n onDateSelect?: (dt: DateTime) => void\n onDateMouseEnter?: (dt: DateTime) => void\n min?: DateTime\n max?: DateTime\n selectionStart?: DateTime | null\n maxRangeDays?: number\n isSelecting?: boolean\n stepPosition: number\n}\n\nconst daysOfTheWeekLabels = [\"Su\", \"Mo\", \"Tu\", \"We\", \"Th\", \"Fr\", \"Sa\"]\n\nconst CalendarView = ({\n date,\n selectedDates,\n min,\n max,\n selectionStart,\n maxRangeDays,\n isSelecting,\n onDateSelect,\n onDateMouseEnter,\n stepPosition,\n}: CalendarViewProps) => {\n // Lock position on mount and don't respond to changes\n const [position] = useState(stepPosition)\n const { startOfMonth, weeks, enabledInterval } = useMemo(() => {\n const monthStart = date.startOf(\"month\")\n const endOfMonth = date.endOf(\"month\")\n\n const daysBeforeMonthStart = monthStart.weekday % 7\n const blankDays = new Array(daysBeforeMonthStart).fill(null)\n const daysInMonth = getDaysOfMonth(monthStart)\n const calendarCells = [...blankDays, ...daysInMonth]\n\n const enabledDateInterval = Interval.fromDateTimes(min || monthStart, max || endOfMonth)\n\n return {\n startOfMonth: monthStart,\n endOfMonth,\n weeks: chunkIntoWeeks(calendarCells, 7),\n enabledInterval: enabledDateInterval,\n }\n }, [date, min, max])\n\n const [selectedStart, selectedEnd] = selectedDates || []\n const rangeEndLimit =\n selectionStart && maxRangeDays != null\n ? selectionStart.plus({ days: maxRangeDays - 1 })\n : undefined\n\n const selectedInterval = useMemo(() => {\n if (!selectedStart || !selectedEnd) {\n return null\n }\n\n return Interval.fromDateTimes(selectedStart.startOf(\"day\"), selectedEnd.endOf(\"day\"))\n }, [selectedStart, selectedEnd])\n\n return (\n
\n

\n {startOfMonth.monthLong} {startOfMonth.year}\n

\n
\n {daysOfTheWeekLabels.map((day) => (\n
\n {day}\n
\n ))}\n
\n {weeks.map((week, weekIndex) => (\n
\n {week.map((d, dayIndex) => {\n if (!d) {\n return
\n }\n\n // Check if 'day' is within selected range\n const enabled =\n enabledInterval.contains(d) &&\n !(isSelecting && rangeEndLimit && isAfter(d, rangeEndLimit))\n const isStart = enabled && selectedStart && isSameDay(d, selectedStart)\n const isEnd = enabled && selectedEnd && isSameDay(d, selectedEnd)\n const hasRange = selectedStart && selectedEnd && !isSameDay(selectedStart, selectedEnd)\n const isInRange = hasRange && selectedInterval?.contains(d)\n const dayIsToday = isToday(d)\n const isFirstRangeTrail =\n d.day === 1 &&\n // Trail doesn't make sense to display at the start of the week (Monday)\n d.weekday !== 7 &&\n isInRange &&\n !isStart\n const isLastRangeTrail =\n d.day === d.daysInMonth &&\n // Trail doesn't make sense to display at the end of the week (Saturday)\n d.weekday !== 6 &&\n isInRange &&\n !isEnd\n\n return (\n \n d && onDateSelect?.(d)}\n onMouseEnter={() => d && onDateMouseEnter?.(d)}\n >\n {d.day}\n {dayIsToday && }\n \n
\n )\n })}\n
\n ))}\n
\n )\n}\n\nexport const DateRangeShortcuts = ({ shortcuts }: { shortcuts?: DateRangeShortcut[] }) => {\n const isMediumUp = useBreakpoint(\"md\")\n const { value, onChangeRef } = useDateRangeContext()\n\n if (!isMediumUp || !shortcuts?.length) {\n return null\n }\n\n return (\n
\n {shortcuts.map((shortcut) => {\n const { label, getDateRange } = shortcut\n const range = getDateRange()\n const [start, end] = range\n const isActive = !!value && isSameDay(value[0], start) && isSameDay(value[1], end)\n\n return (\n onChangeRef.current(range, shortcut)}\n >\n {label}\n {isActive && }\n \n )\n })}\n
\n )\n}\n\nconst getLeftCalendarDate = (targetDate: DateTime, maxDate?: DateTime) => {\n if (!maxDate) {\n return targetDate\n }\n\n return isBefore(targetDate.endOf(\"month\"), maxDate) ? targetDate : targetDate.minus({ months: 1 })\n}\n"]} \ No newline at end of file diff --git a/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/DateRangePicker/Calendar.module.css b/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/DateRangePicker/Calendar.module.css new file mode 100644 index 0000000000000000000000000000000000000000..790eac63488c2c9b4f4ccd41f7d9151947bba64c --- /dev/null +++ b/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/DateRangePicker/Calendar.module.css @@ -0,0 +1,295 @@ +@layer components {.CalendarContainer { + position: relative; + width: 210px; + /* Default size of the calendar is assumed to be 224px */ + /* and then is dynamically set via JS measuring */ + height: 224px; +} + + @media (min-width: 576px) {.CalendarContainer { + width: 452px; +} +}.Previous { + position: absolute; + top: 0; + left: -2px; + z-index: 2; + background-color: var(--color-surface-elevated); +} + + /* Prevent titles from bleeding beyond the button */ + .Previous::before { + position: absolute; + top: 0; + bottom: 0; + left: -10px; + display: block; + width: 12px; + background-color: var(--color-surface-elevated); + content: ""; + } + + /* Slide fade as titles collide with the button */ + .Previous::after { + position: absolute; + top: 0; + bottom: 0; + left: 100%; + display: block; + width: 14px; + background-color: var(--color-surface-elevated); + content: ""; + -webkit-mask-image: linear-gradient(-90deg, rgb(0 0 0 / 0%), rgb(0 0 0 / 100%)); + mask-image: linear-gradient(-90deg, rgb(0 0 0 / 0%), rgb(0 0 0 / 100%)); + }.Next { + position: absolute; + top: 0; + right: -2px; + z-index: 2; + background-color: var(--color-surface-elevated); +} + + /* Prevent titles from bleeding beyond the button */ + .Next::before { + position: absolute; + top: 0; + right: -10px; + bottom: 0; + display: block; + width: 12px; + background-color: var(--color-surface-elevated); + content: ""; + } + + /* Slide fade as titles collide with the button */ + .Next::after { + position: absolute; + top: 0; + right: 100%; + bottom: 0; + display: block; + width: 14px; + background-color: var(--color-surface-elevated); + content: ""; + -webkit-mask-image: linear-gradient(90deg, rgb(0 0 0 / 0%), rgb(0 0 0 / 100%)); + mask-image: linear-gradient(90deg, rgb(0 0 0 / 0%), rgb(0 0 0 / 100%)); + }/* Lift the inner button above the pseudo elements to avoid clipping in the focus ring box shadow. */.Next button[type="button"], +.Previous button[type="button"] { + z-index: 2; +}.CalendarWrapper { + overflow: hidden; + padding: 10px 12px 12px; +}.CalendarRange { + transition: transform 0.25s var(--cubic-move); +}.ButtonText { + display: flex; + align-items: center; + justify-content: space-between; + width: 100%; + font-weight: var(--font-weight-normal); + text-align: left; +} + + [data-active] .ButtonText { + font-weight: var(--font-weight-semibold); + }.Calendar { + --cell-size: 30px; + --cell-vertical-gutter: 2px; + + position: absolute; + top: 0; + width: 210px; + font-size: 14px; +}.Week { + display: flex; + margin-bottom: var(--cell-vertical-gutter); +} + + .Week:last-child { + margin-bottom: 0; + }.DayLabel { + display: flex; + align-items: center; + justify-content: center; + width: var(--cell-size); + height: var(--cell-size); + color: var(--color-text-secondary); + font-size: 12px; + letter-spacing: var(--tracking-none); + text-align: center; +}.MonthLabel { + display: flex; + align-items: center; + justify-content: center; + height: 28px; + padding: 0; + margin: 0 0 6px; + color: var(--color-text); + font-size: 13px; + font-weight: var(--font-weight-semibold); +}.Day { + position: relative; + width: var(--cell-size); + height: var(--cell-size); + text-align: center; + transition: background-color 0.15s var(--cubic-enter); +} + + .Day:first-child { + border-radius: var(--radius-xs) 0 0 var(--radius-xs); + } + + .Day:last-child { + border-radius: 0 var(--radius-xs) var(--radius-xs) 0; + } + + .Day[data-is-start], .Day[data-is-end], .Day[data-is-in-range], :where([data-theme="light"]) .Day[data-is-start], :where([data-theme="light"]) .Day[data-is-end], :where([data-theme="light"]) .Day[data-is-in-range] { +background-color: var(--alpha-06); +} + + :where([data-theme="dark"]) .Day[data-is-start], :where([data-theme="dark"]) .Day[data-is-end], :where([data-theme="dark"]) .Day[data-is-in-range] { +background-color: var(--alpha-08); +} + + .Day[data-is-start][data-is-end] { + background: none; + } + + .Day[data-is-first-range-trail] { + border-radius: 0; + } + + .Day[data-is-first-range-trail]::before { + position: absolute; + top: 0; + right: 100%; + bottom: 0; + width: 15px; + content: ""; + -webkit-mask-image: linear-gradient(90deg, rgb(0 0 0 / 0%), rgb(0 0 0 / 100%)); + mask-image: linear-gradient(90deg, rgb(0 0 0 / 0%), rgb(0 0 0 / 100%)); + transition: opacity 0.15s var(--cubic-enter); + } + + .Day[data-is-first-range-trail]::before, :where([data-theme="light"]) .Day[data-is-first-range-trail]::before { +background-color: var(--alpha-06); +} + + :where([data-theme="dark"]) .Day[data-is-first-range-trail]::before { +background-color: var(--alpha-08); +} + + @starting-style { + + .Day[data-is-first-range-trail]::before { + opacity: 0 + } + } + + .Day[data-is-last-range-trail] { + border-radius: 0; + } + + .Day[data-is-last-range-trail]::before { + position: absolute; + top: 0; + bottom: 0; + left: 100%; + width: 15px; + content: ""; + -webkit-mask-image: linear-gradient(-90deg, rgb(0 0 0 / 0%), rgb(0 0 0 / 100%)); + mask-image: linear-gradient(-90deg, rgb(0 0 0 / 0%), rgb(0 0 0 / 100%)); + transition: opacity 0.15s var(--cubic-enter); + } + + .Day[data-is-last-range-trail]::before, :where([data-theme="light"]) .Day[data-is-last-range-trail]::before { +background-color: var(--alpha-06); +} + + :where([data-theme="dark"]) .Day[data-is-last-range-trail]::before { +background-color: var(--alpha-08); +} + + @starting-style { + + .Day[data-is-last-range-trail]::before { + opacity: 0 + } + } + + .Day[data-is-start] { + border-bottom-left-radius: var(--radius-full); + border-top-left-radius: var(--radius-full); + } + + .Day[data-is-end] { + border-bottom-right-radius: var(--radius-full); + border-top-right-radius: var(--radius-full); + }.InteractiveDay { + position: relative; + display: block; + width: var(--cell-size); + height: var(--cell-size); + border: 0; + border-radius: var(--radius-full); + -webkit-appearance: auto; + -moz-appearance: auto; + appearance: auto; + background: none; + cursor: pointer; + font-size: var(--font-text-sm-size); +} + + .InteractiveDay::before { + position: absolute; + inset: 0; + display: block; + border: 1px solid var(--color-text); + border-radius: var(--radius-full); + content: ""; + opacity: 0; + transition: + color, + 0.15s var(--cubic-enter), + opacity 0.15s var(--cubic-enter); + } + + .InteractiveDay:hover::before { + opacity: 1; + } + + .InteractiveDay[disabled] { + cursor: not-allowed; + opacity: 0.4; + } + + .InteractiveDay[disabled]::before { + display: none; + } + + [data-is-start] .InteractiveDay, + [data-is-end] .InteractiveDay { + background: var(--color-text); + color: var(--color-text-inverse); + }.TodayDot { + position: absolute; + bottom: 3px; + left: 50%; + width: 3px; + height: 3px; + border-radius: 100%; + margin-left: -1px; + background-color: var(--color-text); + transition: background-color 0.15s var(--cubic-enter); +} + + [data-is-start] .TodayDot, + [data-is-end] .TodayDot { + background-color: var(--gray-0); + }.Shortcuts { + flex: 1; + width: 150px; + padding: calc(var(--spacing) * 2); + border-right: 1px solid var(--color-border); +} +} diff --git a/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/DateRangePicker/DateRangePicker.js b/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/DateRangePicker/DateRangePicker.js new file mode 100644 index 0000000000000000000000000000000000000000..0d9598018194a82cbf01602724f868ef2b537bff --- /dev/null +++ b/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/DateRangePicker/DateRangePicker.js @@ -0,0 +1,60 @@ +"use client"; +import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime"; +import { DateTime } from "luxon"; +import { useMemo } from "react"; +import { useLatestValue } from "../../hooks/useLatestValue"; +import { isBefore } from "../../lib/dateUtils"; +import { Popover } from "../Popover"; +import { DateRangeCalendar, DateRangeShortcuts } from "./Calendar"; +import { DateRangeContext } from "./context"; +import { DateRangeTrigger } from "./Trigger"; +import {} from "./types"; +export const DateRangePicker = (props) => { + const { value, onChange, min, max, maxRangeDays, shortcuts, side = "bottom", sideOffset = 8, align = "center", alignOffset, variant = "outline", size = "md", clearable = false, disabled = false, dropdownIconType, placeholder = "Select date range...", pill = true, block = false, triggerStepperUnit, triggerClassName, triggerShowIcon = true, triggerDateFormat = "MM/dd/yy", } = props; + if (min && max && !isBefore(min, max)) { + throw new Error("DateRangePicker error: `min` date must be before the `max` date"); + } + // Create stable, mutable references to avoid memoization requirements from consumers + const onChangeRef = useLatestValue(onChange); + const store = useMemo(() => ({ + value, + min, + max, + maxRangeDays, + variant, + size, + dropdownIconType, + clearable, + disabled, + placeholder, + block, + pill, + shortcuts, + triggerStepperUnit, + triggerClassName, + triggerShowIcon, + triggerDateFormat, + onChangeRef, + }), [ + value, + min, + max, + maxRangeDays, + variant, + size, + dropdownIconType, + clearable, + disabled, + placeholder, + block, + pill, + shortcuts, + triggerStepperUnit, + triggerClassName, + triggerShowIcon, + triggerDateFormat, + onChangeRef, + ]); + return (_jsx(DateRangeContext, { value: store, children: _jsxs(Popover, { children: [_jsx(Popover.Trigger, { children: _jsx(DateRangeTrigger, {}) }), _jsx(Popover.Content, { minWidth: 230, side: side, sideOffset: sideOffset, align: align, alignOffset: alignOffset ?? (align === "center" ? 0 : -5), children: _jsxs("div", { className: "flex", children: [_jsx(DateRangeShortcuts, { shortcuts: shortcuts }), _jsx(DateRangeCalendar, {})] }) })] }) })); +}; +//# sourceMappingURL=DateRangePicker.js.map \ No newline at end of file diff --git a/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/DateRangePicker/DateRangePicker.js.map b/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/DateRangePicker/DateRangePicker.js.map new file mode 100644 index 0000000000000000000000000000000000000000..9ce6a6c108e82c2c3e01695f9caffb3fa60a7e54 --- /dev/null +++ b/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/DateRangePicker/DateRangePicker.js.map @@ -0,0 +1 @@ +{"version":3,"file":"DateRangePicker.js","sourceRoot":"","sources":["../../../../src/components/DateRangePicker/DateRangePicker.tsx"],"names":[],"mappings":"AAAA,YAAY,CAAA;;AAEZ,OAAO,EAAE,QAAQ,EAAE,MAAM,OAAO,CAAA;AAChC,OAAO,EAAE,OAAO,EAAE,MAAM,OAAO,CAAA;AAC/B,OAAO,EAAE,cAAc,EAAE,MAAM,4BAA4B,CAAA;AAC3D,OAAO,EAAE,QAAQ,EAAE,MAAM,qBAAqB,CAAA;AAC9C,OAAO,EAAE,OAAO,EAA4B,MAAM,YAAY,CAAA;AAE9D,OAAO,EAAE,iBAAiB,EAAE,kBAAkB,EAAE,MAAM,YAAY,CAAA;AAClE,OAAO,EAAE,gBAAgB,EAA8B,MAAM,WAAW,CAAA;AACxE,OAAO,EAAE,gBAAgB,EAAE,MAAM,WAAW,CAAA;AAC5C,OAAO,EAA0C,MAAM,SAAS,CAAA;AAkHhE,MAAM,CAAC,MAAM,eAAe,GAAG,CAAC,KAA2B,EAAE,EAAE;IAC7D,MAAM,EACJ,KAAK,EACL,QAAQ,EACR,GAAG,EACH,GAAG,EACH,YAAY,EACZ,SAAS,EACT,IAAI,GAAG,QAAQ,EACf,UAAU,GAAG,CAAC,EACd,KAAK,GAAG,QAAQ,EAChB,WAAW,EACX,OAAO,GAAG,SAAS,EACnB,IAAI,GAAG,IAAI,EACX,SAAS,GAAG,KAAK,EACjB,QAAQ,GAAG,KAAK,EAChB,gBAAgB,EAChB,WAAW,GAAG,sBAAsB,EACpC,IAAI,GAAG,IAAI,EACX,KAAK,GAAG,KAAK,EACb,kBAAkB,EAClB,gBAAgB,EAChB,eAAe,GAAG,IAAI,EACtB,iBAAiB,GAAG,UAAU,GAC/B,GAAG,KAAK,CAAA;IAET,IAAI,GAAG,IAAI,GAAG,IAAI,CAAC,QAAQ,CAAC,GAAG,EAAE,GAAG,CAAC,EAAE,CAAC;QACtC,MAAM,IAAI,KAAK,CAAC,iEAAiE,CAAC,CAAA;IACpF,CAAC;IAED,qFAAqF;IACrF,MAAM,WAAW,GAAG,cAAc,CAAC,QAAQ,CAAC,CAAA;IAE5C,MAAM,KAAK,GAAG,OAAO,CACnB,GAAG,EAAE,CAAC,CAAC;QACL,KAAK;QACL,GAAG;QACH,GAAG;QACH,YAAY;QACZ,OAAO;QACP,IAAI;QACJ,gBAAgB;QAChB,SAAS;QACT,QAAQ;QACR,WAAW;QACX,KAAK;QACL,IAAI;QACJ,SAAS;QACT,kBAAkB;QAClB,gBAAgB;QAChB,eAAe;QACf,iBAAiB;QACjB,WAAW;KACZ,CAAC,EACF;QACE,KAAK;QACL,GAAG;QACH,GAAG;QACH,YAAY;QACZ,OAAO;QACP,IAAI;QACJ,gBAAgB;QAChB,SAAS;QACT,QAAQ;QACR,WAAW;QACX,KAAK;QACL,IAAI;QACJ,SAAS;QACT,kBAAkB;QAClB,gBAAgB;QAChB,eAAe;QACf,iBAAiB;QACjB,WAAW;KACZ,CACF,CAAA;IAED,OAAO,CACL,KAAC,gBAAgB,IAAC,KAAK,EAAE,KAAK,YAC5B,MAAC,OAAO,eACN,KAAC,OAAO,CAAC,OAAO,cACd,KAAC,gBAAgB,KAAG,GACJ,EAClB,KAAC,OAAO,CAAC,OAAO,IACd,QAAQ,EAAE,GAAG,EACb,IAAI,EAAE,IAAI,EACV,UAAU,EAAE,UAAU,EACtB,KAAK,EAAE,KAAK,EACZ,WAAW,EAAE,WAAW,IAAI,CAAC,KAAK,KAAK,QAAQ,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,YAEzD,eAAK,SAAS,EAAC,MAAM,aACnB,KAAC,kBAAkB,IAAC,SAAS,EAAE,SAAS,GAAI,EAC5C,KAAC,iBAAiB,KAAG,IACjB,GACU,IACV,GACO,CACpB,CAAA;AACH,CAAC,CAAA","sourcesContent":["\"use client\"\n\nimport { DateTime } from \"luxon\"\nimport { useMemo } from \"react\"\nimport { useLatestValue } from \"../../hooks/useLatestValue\"\nimport { isBefore } from \"../../lib/dateUtils\"\nimport { Popover, type PopoverContentProps } from \"../Popover\"\nimport type { SelectControlProps } from \"../SelectControl\"\nimport { DateRangeCalendar, DateRangeShortcuts } from \"./Calendar\"\nimport { DateRangeContext, type DateRangeContextValue } from \"./context\"\nimport { DateRangeTrigger } from \"./Trigger\"\nimport { type DateRange, type DateRangeShortcut } from \"./types\"\n\nexport type DateRangePickerProps = {\n /**\n * The selected date range value.\n */\n value: DateRange | null\n /**\n * Handler that is triggered when the date range changes.\n */\n onChange: (nextValue: DateRange | null, shortcut?: DateRangeShortcut) => void\n /**\n * Defines the earliest selectable date (inclusive).\n */\n min?: DateTime\n /**\n * Defines the latest selectable date (inclusive).\n */\n max?: DateTime\n /**\n * Maximum length of the selectable range in days (inclusive).\n * When set, the end date cannot be more than this many days after the start date.\n */\n maxRangeDays?: number\n /**\n * List of date range shortcuts displayed for quick selection, shown to the left of the calendar.\n */\n shortcuts?: DateRangeShortcut[]\n /**\n * The preferred side of the trigger to render against when open. Will be reversed when collisions occur.\n * @default bottom\n */\n side?: PopoverContentProps[\"side\"]\n /**\n * The distance in pixels from the trigger.\n * @default 8\n */\n sideOffset?: PopoverContentProps[\"sideOffset\"]\n /**\n * The preferred alignment against the trigger. May change when collisions occur.\n * @default center\n */\n align?: PopoverContentProps[\"align\"]\n /**\n * An offset in pixels from the \"start\" or \"end\" alignment options.\n * @default 0\n */\n alignOffset?: PopoverContentProps[\"alignOffset\"]\n\n /**\n * Disables the select visually and from interactions\n * @default false\n */\n disabled?: boolean\n /**\n * Placeholder text for the select\n * @default Select date range...\n */\n placeholder?: string\n /**\n * Style variant for the select trigger\n * @default outline\n */\n variant?: SelectControlProps[\"variant\"]\n /**\n * Determines if the select trigger should be a fully rounded pill shape\n * @default false\n */\n pill?: boolean\n /**\n * Determines size of the size and spacing of the control.\n *\n * | 3xs | 2xs | xs | sm | md | lg | xl | 2xl | 3xl |\n * | ------- | ------- | ------- | ------- | ------- | ------- | ------- | ------- | ------- |\n * | `22px` | `24px` | `26px` | `28px` | `32px` | `36px` | `40px` | `44px` | `48px` |\n * @default md\n */\n size?: SelectControlProps[\"size\"]\n /**\n * Icon displayed in the far right of the select trigger\n * @default dropdown\n */\n dropdownIconType?: SelectControlProps[\"dropdownIconType\"]\n /**\n * Custom class applied to the select trigger\n */\n triggerClassName?: string\n /**\n * Display calendar icon at the start of the trigger\n * @default true\n */\n triggerShowIcon?: boolean\n /**\n * Allows the trigger to display as a stepper when the selected date matches the unit.\n * Currently 'month' is the only supported unit.\n */\n triggerStepperUnit?: \"month\"\n /**\n * Format of dates displayed in the trigger\n * @default \"MM/dd/yy\"\n */\n triggerDateFormat?: string\n /**\n * Display a clear action that allows the select to be unset.\n * @default false\n */\n clearable?: boolean\n /**\n * Extends select to 100% of available width.\n * @default true\n */\n block?: boolean\n}\n\nexport const DateRangePicker = (props: DateRangePickerProps) => {\n const {\n value,\n onChange,\n min,\n max,\n maxRangeDays,\n shortcuts,\n side = \"bottom\",\n sideOffset = 8,\n align = \"center\",\n alignOffset,\n variant = \"outline\",\n size = \"md\",\n clearable = false,\n disabled = false,\n dropdownIconType,\n placeholder = \"Select date range...\",\n pill = true,\n block = false,\n triggerStepperUnit,\n triggerClassName,\n triggerShowIcon = true,\n triggerDateFormat = \"MM/dd/yy\",\n } = props\n\n if (min && max && !isBefore(min, max)) {\n throw new Error(\"DateRangePicker error: `min` date must be before the `max` date\")\n }\n\n // Create stable, mutable references to avoid memoization requirements from consumers\n const onChangeRef = useLatestValue(onChange)\n\n const store = useMemo(\n () => ({\n value,\n min,\n max,\n maxRangeDays,\n variant,\n size,\n dropdownIconType,\n clearable,\n disabled,\n placeholder,\n block,\n pill,\n shortcuts,\n triggerStepperUnit,\n triggerClassName,\n triggerShowIcon,\n triggerDateFormat,\n onChangeRef,\n }),\n [\n value,\n min,\n max,\n maxRangeDays,\n variant,\n size,\n dropdownIconType,\n clearable,\n disabled,\n placeholder,\n block,\n pill,\n shortcuts,\n triggerStepperUnit,\n triggerClassName,\n triggerShowIcon,\n triggerDateFormat,\n onChangeRef,\n ],\n )\n\n return (\n \n \n \n \n \n \n
\n \n \n
\n \n
\n
\n )\n}\n"]} \ No newline at end of file diff --git a/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/DateRangePicker/Trigger.js b/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/DateRangePicker/Trigger.js new file mode 100644 index 0000000000000000000000000000000000000000..f0ab160e760287f0ae48846fa1a8eb9b933eace8 --- /dev/null +++ b/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/DateRangePicker/Trigger.js @@ -0,0 +1,64 @@ +"use client"; +import { jsx as _jsx, jsxs as _jsxs, Fragment as _Fragment } from "react/jsx-runtime"; +import clsx from "clsx"; +import { useMemo } from "react"; +import { getMonthStartAndEnd, isBefore, isSameDay } from "../../lib/dateUtils"; +import { Button } from "../Button"; +import { Calendar, ChevronLeft, ChevronRight } from "../Icon"; +import { SelectControl } from "../SelectControl"; +import s from "./Trigger.module.css"; +import { useDateRangeContext } from "./context"; +import {} from "./types"; +export const DateRangeTrigger = (props) => { + const { value, min, max, disabled, variant, pill, size, block, triggerStepperUnit, triggerClassName, clearable, dropdownIconType, triggerShowIcon, onChangeRef, } = useDateRangeContext(); + const isStepperView = useMemo(() => rangeMatchesStepperUnit(value, triggerStepperUnit, { + min, + max, + }), [value, triggerStepperUnit, min, max]); + const handleClearClick = () => { + onChangeRef.current(null); + }; + return (_jsx(SelectControl, { className: clsx(isStepperView && s.StepperControl, triggerClassName), selected: !!value, variant: variant, pill: pill, block: block, size: size, disabled: disabled, StartIcon: triggerShowIcon && !isStepperView ? Calendar : undefined, dropdownIconType: !isStepperView ? dropdownIconType : "none", onClearClick: clearable && !isStepperView ? handleClearClick : undefined, ...props, children: isStepperView ? _jsx(TriggerStepperView, {}) : _jsx(TriggerDisplayView, {}) })); +}; +const TriggerStepperView = () => { + const { value, min, max, disabled, onChangeRef } = useDateRangeContext(); + if (!value) { + return null; + } + const [startDate, endDate] = value; + const canGoBack = !min || isBefore(min, startDate.startOf("month")); + const canGoForward = !max || isBefore(endDate.endOf("month"), max); + return (_jsxs("span", { className: "flex", children: [_jsx(Button, { className: s.StepperPrevious, color: "secondary", variant: "ghost", disabled: disabled || !canGoBack, size: "3xs", uniform: true, pill: true, onPointerDown: (evt) => { + evt.stopPropagation(); + onChangeRef.current(getMonthStartAndEnd(startDate.minus({ months: 1 }), { min, max })); + }, children: _jsx(ChevronLeft, {}) }), " ", _jsxs("span", { className: clsx(s.TriggerText, "min-w-[120px] text-center"), children: [startDate.monthLong, " ", startDate.year] }), _jsx(Button, { className: s.StepperNext, color: "secondary", variant: "ghost", disabled: disabled || !canGoForward, size: "3xs", uniform: true, pill: true, onPointerDown: (evt) => { + evt.stopPropagation(); + onChangeRef.current(getMonthStartAndEnd(startDate.plus({ months: 1 }), { min, max })); + }, children: _jsx(ChevronRight, {}) })] })); +}; +const TriggerDisplayView = () => { + const { placeholder, value, triggerDateFormat, shortcuts } = useDateRangeContext(); + const activeShortcut = useMemo(() => { + if (!value || !shortcuts?.length) { + return undefined; + } + return shortcuts.find((sc) => { + const [start, end] = sc.getDateRange(); + return isSameDay(start, value[0]) && isSameDay(end, value[1]); + }); + }, [value, shortcuts]); + return (_jsx(_Fragment, { children: activeShortcut ? (_jsx("span", { className: "inline-block", children: activeShortcut.label })) : value && isSameDay(value[0], value[1]) ? (_jsx("span", { className: "inline-block tabular-nums", children: value[0].toFormat(triggerDateFormat) })) : value ? (_jsxs("span", { className: "inline-block tabular-nums", children: [value[0].toFormat(triggerDateFormat), _jsx("span", { className: s.RangeTextSeparator, children: "-" }), value[1].toFormat(triggerDateFormat)] })) : (placeholder) })); +}; +const rangeMatchesStepperUnit = (range, stepperUnit, { min, max } = {}) => { + // Allows method to be called lazily + if (!range || !stepperUnit) { + return false; + } + const [startDate, endDate] = range; + const [startDateCompare, endDateCompare] = getMonthStartAndEnd(startDate, { + min, + max, + }); + return isSameDay(startDateCompare, startDate) && isSameDay(endDateCompare, endDate); +}; +//# sourceMappingURL=Trigger.js.map \ No newline at end of file diff --git a/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/DateRangePicker/Trigger.js.map b/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/DateRangePicker/Trigger.js.map new file mode 100644 index 0000000000000000000000000000000000000000..32ddc3742d1473ae3cad82b9296500865059cc71 --- /dev/null +++ b/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/DateRangePicker/Trigger.js.map @@ -0,0 +1 @@ +{"version":3,"file":"Trigger.js","sourceRoot":"","sources":["../../../../src/components/DateRangePicker/Trigger.tsx"],"names":[],"mappings":"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","sourcesContent":["\"use client\"\n\nimport clsx from \"clsx\"\nimport type { DateTime } from \"luxon\"\nimport { useMemo, type ComponentProps } from \"react\"\nimport { getMonthStartAndEnd, isBefore, isSameDay } from \"../../lib/dateUtils\"\nimport { Button } from \"../Button\"\nimport { Calendar, ChevronLeft, ChevronRight } from \"../Icon\"\nimport { SelectControl } from \"../SelectControl\"\nimport s from \"./Trigger.module.css\"\nimport { useDateRangeContext } from \"./context\"\nimport { type DateRange, type DateRangeShortcut } from \"./types\"\n\nexport const DateRangeTrigger = (props: ComponentProps<\"span\">) => {\n const {\n value,\n min,\n max,\n disabled,\n variant,\n pill,\n size,\n block,\n triggerStepperUnit,\n triggerClassName,\n clearable,\n dropdownIconType,\n triggerShowIcon,\n onChangeRef,\n } = useDateRangeContext()\n\n const isStepperView = useMemo(\n () =>\n rangeMatchesStepperUnit(value, triggerStepperUnit, {\n min,\n max,\n }),\n [value, triggerStepperUnit, min, max],\n )\n\n const handleClearClick = () => {\n onChangeRef.current(null)\n }\n\n return (\n \n {isStepperView ? : }\n \n )\n}\n\nconst TriggerStepperView = () => {\n const { value, min, max, disabled, onChangeRef } = useDateRangeContext()\n\n if (!value) {\n return null\n }\n\n const [startDate, endDate] = value\n const canGoBack = !min || isBefore(min, startDate.startOf(\"month\"))\n const canGoForward = !max || isBefore(endDate.endOf(\"month\"), max)\n\n return (\n \n {\n evt.stopPropagation()\n onChangeRef.current(getMonthStartAndEnd(startDate.minus({ months: 1 }), { min, max }))\n }}\n >\n \n {\" \"}\n \n {startDate.monthLong} {startDate.year}\n \n {\n evt.stopPropagation()\n onChangeRef.current(getMonthStartAndEnd(startDate.plus({ months: 1 }), { min, max }))\n }}\n >\n \n \n \n )\n}\n\nconst TriggerDisplayView = () => {\n const { placeholder, value, triggerDateFormat, shortcuts } = useDateRangeContext()\n\n const activeShortcut = useMemo(() => {\n if (!value || !shortcuts?.length) {\n return undefined\n }\n\n return shortcuts.find((sc) => {\n const [start, end] = sc.getDateRange()\n return isSameDay(start, value[0]) && isSameDay(end, value[1])\n })\n }, [value, shortcuts])\n\n return (\n <>\n {activeShortcut ? (\n {activeShortcut.label}\n ) : value && isSameDay(value[0], value[1]) ? (\n {value[0].toFormat(triggerDateFormat)}\n ) : value ? (\n \n {value[0].toFormat(triggerDateFormat)}\n -\n {value[1].toFormat(triggerDateFormat)}\n \n ) : (\n placeholder\n )}\n \n )\n}\n\nconst rangeMatchesStepperUnit = (\n range: DateRange | null,\n stepperUnit: \"month\" | undefined,\n { min, max }: { min?: DateTime; max?: DateTime } = {},\n): boolean => {\n // Allows method to be called lazily\n if (!range || !stepperUnit) {\n return false\n }\n\n const [startDate, endDate] = range\n const [startDateCompare, endDateCompare] = getMonthStartAndEnd(startDate, {\n min,\n max,\n })\n\n return isSameDay(startDateCompare, startDate) && isSameDay(endDateCompare, endDate)\n}\n"]} \ No newline at end of file diff --git a/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/DateRangePicker/Trigger.module.css b/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/DateRangePicker/Trigger.module.css new file mode 100644 index 0000000000000000000000000000000000000000..ae59f5a3ec9ce687f7d52e4317fa59a259d74a0c --- /dev/null +++ b/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/DateRangePicker/Trigger.module.css @@ -0,0 +1,16 @@ +@layer components {.StepperControl { + padding-right: calc((var(--select-control-size) - var(--clear-size)) / 2); + padding-left: calc((var(--select-control-size) - var(--clear-size)) / 2); +}.StepperPrevious, +.StepperNext { + --button-size: var(--clear-size); + --button-icon-size: var(--clear-icon-size); +}.RangeText { + display: inline-block; + font-variant: tabular-nums; +}.RangeTextSeparator { + margin: 0 calc(var(--spacing) * 1); + font-size: var(--font-text-sm-size); + letter-spacing: 0; +} +} diff --git a/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/DateRangePicker/context.js b/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/DateRangePicker/context.js new file mode 100644 index 0000000000000000000000000000000000000000..0b347a28be37d615a6c5244577bf84961e7b8458 --- /dev/null +++ b/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/DateRangePicker/context.js @@ -0,0 +1,12 @@ +"use client"; +import { DateTime } from "luxon"; +import { createContext, use } from "react"; +export const DateRangeContext = createContext(null); +export const useDateRangeContext = () => { + const context = use(DateRangeContext); + if (!context) { + throw new Error("DateRange components must be wrapped in "); + } + return context; +}; +//# sourceMappingURL=context.js.map \ No newline at end of file diff --git a/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/DateRangePicker/context.js.map b/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/DateRangePicker/context.js.map new file mode 100644 index 0000000000000000000000000000000000000000..df51dbaaa06317037a2dd31887bf42d36063ee33 --- /dev/null +++ b/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/DateRangePicker/context.js.map @@ -0,0 +1 @@ +{"version":3,"file":"context.js","sourceRoot":"","sources":["../../../../src/components/DateRangePicker/context.tsx"],"names":[],"mappings":"AAAA,YAAY,CAAA;AAEZ,OAAO,EAAE,QAAQ,EAAE,MAAM,OAAO,CAAA;AAChC,OAAO,EAAE,aAAa,EAAE,GAAG,EAAE,MAAM,OAAO,CAAA;AA4B1C,MAAM,CAAC,MAAM,gBAAgB,GAAG,aAAa,CAA+B,IAAI,CAAC,CAAA;AAEjF,MAAM,CAAC,MAAM,mBAAmB,GAAG,GAAG,EAAE;IACtC,MAAM,OAAO,GAAG,GAAG,CAAC,gBAAgB,CAAC,CAAA;IAErC,IAAI,CAAC,OAAO,EAAE,CAAC;QACb,MAAM,IAAI,KAAK,CAAC,6DAA6D,CAAC,CAAA;IAChF,CAAC;IAED,OAAO,OAAO,CAAA;AAChB,CAAC,CAAA","sourcesContent":["\"use client\"\n\nimport { DateTime } from \"luxon\"\nimport { createContext, use } from \"react\"\nimport type { SelectControlProps } from \"../SelectControl\"\nimport type { DateRange, DateRangeShortcut } from \"./types\"\n\nexport type DateRangeContextValue = {\n value: DateRange | null\n min?: DateTime\n max?: DateTime\n maxRangeDays?: number\n triggerStepperUnit?: \"month\"\n triggerClassName?: string\n triggerShowIcon?: boolean\n triggerDateFormat: string\n disabled: boolean\n variant?: SelectControlProps[\"variant\"]\n pill: boolean\n block: boolean\n size?: SelectControlProps[\"size\"]\n dropdownIconType?: SelectControlProps[\"dropdownIconType\"]\n clearable: boolean\n placeholder: string\n shortcuts?: DateRangeShortcut[]\n // References\n onChangeRef: React.MutableRefObject<\n (nextValue: DateRange | null, shortcut?: DateRangeShortcut) => void\n >\n}\n\nexport const DateRangeContext = createContext(null)\n\nexport const useDateRangeContext = () => {\n const context = use(DateRangeContext)\n\n if (!context) {\n throw new Error(\"DateRange components must be wrapped in \")\n }\n\n return context\n}\n"]} \ No newline at end of file diff --git a/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/DateRangePicker/index.js b/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/DateRangePicker/index.js new file mode 100644 index 0000000000000000000000000000000000000000..da2a983b93d668e6451c841ee237a7b63ebd6b7a --- /dev/null +++ b/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/DateRangePicker/index.js @@ -0,0 +1,3 @@ +export { DateRangePicker } from "./DateRangePicker"; +export {} from "./types"; +//# sourceMappingURL=index.js.map \ No newline at end of file diff --git a/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/DateRangePicker/index.js.map b/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/DateRangePicker/index.js.map new file mode 100644 index 0000000000000000000000000000000000000000..6264bbfdb9cc85cc5696106c9768b20d608674e9 --- /dev/null +++ b/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/DateRangePicker/index.js.map @@ -0,0 +1 @@ +{"version":3,"file":"index.js","sourceRoot":"","sources":["../../../../src/components/DateRangePicker/index.tsx"],"names":[],"mappings":"AAAA,OAAO,EAAE,eAAe,EAA6B,MAAM,mBAAmB,CAAA;AAE9E,OAAO,EAA0C,MAAM,SAAS,CAAA","sourcesContent":["export { DateRangePicker, type DateRangePickerProps } from \"./DateRangePicker\"\n\nexport { type DateRange, type DateRangeShortcut } from \"./types\"\n"]} \ No newline at end of file diff --git a/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/DateRangePicker/types.js b/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/DateRangePicker/types.js new file mode 100644 index 0000000000000000000000000000000000000000..8d3d6f0d05369b3a576f2ccad9f90e09dee43670 --- /dev/null +++ b/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/DateRangePicker/types.js @@ -0,0 +1,2 @@ +import {} from "luxon"; +//# sourceMappingURL=types.js.map \ No newline at end of file diff --git a/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/DateRangePicker/types.js.map b/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/DateRangePicker/types.js.map new file mode 100644 index 0000000000000000000000000000000000000000..4bb8966742e49ae6fdbdfecf7db371086d470422 --- /dev/null +++ b/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/DateRangePicker/types.js.map @@ -0,0 +1 @@ +{"version":3,"file":"types.js","sourceRoot":"","sources":["../../../../src/components/DateRangePicker/types.ts"],"names":[],"mappings":"AAAA,OAAO,EAAiB,MAAM,OAAO,CAAA","sourcesContent":["import { type DateTime } from \"luxon\"\n\nexport type DateRange = [DateTime, DateTime]\nexport type DateRangeShortcut = {\n label: string\n getDateRange: () => DateRange\n}\n"]} \ No newline at end of file diff --git a/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/EmptyMessage/EmptyMessage.js b/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/EmptyMessage/EmptyMessage.js new file mode 100644 index 0000000000000000000000000000000000000000..6a443f391c7844e0d5cc3d5596c639c2ce2f8a88 --- /dev/null +++ b/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/EmptyMessage/EmptyMessage.js @@ -0,0 +1,25 @@ +import { jsx as _jsx } from "react/jsx-runtime"; +import clsx from "clsx"; +import {} from "react"; +import {} from "../../types"; +import s from "./EmptyMessage.module.css"; +export const EmptyMessage = ({ children, className, fill = "static" }) => { + return (_jsx("div", { className: clsx(s.EmptyMessage, className), "data-fill": fill, children: children })); +}; +const Icon = ({ size = "md", color = "secondary", children, className }) => { + return (_jsx("div", { className: clsx(s.IconBadge, className), "data-size": size, "data-color": color, children: children })); +}; +const Title = ({ children, className, color = "secondary" }) => { + return (_jsx("div", { className: clsx(s.Title, className), "data-color": color, children: children })); +}; +const Description = ({ children, className }) => { + return _jsx("div", { className: clsx(s.Description, className), children: children }); +}; +const ActionRow = ({ children, className }) => { + return _jsx("div", { className: clsx(s.ActionRow, className), children: children }); +}; +EmptyMessage.Icon = Icon; +EmptyMessage.Title = Title; +EmptyMessage.Description = Description; +EmptyMessage.ActionRow = ActionRow; +//# sourceMappingURL=EmptyMessage.js.map \ No newline at end of file diff --git a/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/EmptyMessage/EmptyMessage.js.map b/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/EmptyMessage/EmptyMessage.js.map new file mode 100644 index 0000000000000000000000000000000000000000..4b1adc12dda36bc6535deac0b9e7ff549acc00d8 --- /dev/null +++ b/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/EmptyMessage/EmptyMessage.js.map @@ -0,0 +1 @@ +{"version":3,"file":"EmptyMessage.js","sourceRoot":"","sources":["../../../../src/components/EmptyMessage/EmptyMessage.tsx"],"names":[],"mappings":";AAAA,OAAO,IAAI,MAAM,MAAM,CAAA;AACvB,OAAO,EAAkB,MAAM,OAAO,CAAA;AACtC,OAAO,EAAmC,MAAM,aAAa,CAAA;AAC7D,OAAO,CAAC,MAAM,2BAA2B,CAAA;AAYzC,MAAM,CAAC,MAAM,YAAY,GAAG,CAAC,EAAE,QAAQ,EAAE,SAAS,EAAE,IAAI,GAAG,QAAQ,EAAqB,EAAE,EAAE;IAC1F,OAAO,CACL,cAAK,SAAS,EAAE,IAAI,CAAC,CAAC,CAAC,YAAY,EAAE,SAAS,CAAC,eAAa,IAAI,YAC7D,QAAQ,GACL,CACP,CAAA;AACH,CAAC,CAAA;AAeD,MAAM,IAAI,GAAG,CAAC,EAAE,IAAI,GAAG,IAAI,EAAE,KAAK,GAAG,WAAW,EAAE,QAAQ,EAAE,SAAS,EAAyB,EAAE,EAAE;IAChG,OAAO,CACL,cAAK,SAAS,EAAE,IAAI,CAAC,CAAC,CAAC,SAAS,EAAE,SAAS,CAAC,eAAa,IAAI,gBAAc,KAAK,YAC7E,QAAQ,GACL,CACP,CAAA;AACH,CAAC,CAAA;AAWD,MAAM,KAAK,GAAG,CAAC,EAAE,QAAQ,EAAE,SAAS,EAAE,KAAK,GAAG,WAAW,EAA0B,EAAE,EAAE;IACrF,OAAO,CACL,cAAK,SAAS,EAAE,IAAI,CAAC,CAAC,CAAC,KAAK,EAAE,SAAS,CAAC,gBAAc,KAAK,YACxD,QAAQ,GACL,CACP,CAAA;AACH,CAAC,CAAA;AAED,MAAM,WAAW,GAAG,CAAC,EAAE,QAAQ,EAAE,SAAS,EAA+C,EAAE,EAAE;IAC3F,OAAO,cAAK,SAAS,EAAE,IAAI,CAAC,CAAC,CAAC,WAAW,EAAE,SAAS,CAAC,YAAG,QAAQ,GAAO,CAAA;AACzE,CAAC,CAAA;AAED,MAAM,SAAS,GAAG,CAAC,EAAE,QAAQ,EAAE,SAAS,EAA+C,EAAE,EAAE;IACzF,OAAO,cAAK,SAAS,EAAE,IAAI,CAAC,CAAC,CAAC,SAAS,EAAE,SAAS,CAAC,YAAG,QAAQ,GAAO,CAAA;AACvE,CAAC,CAAA;AAED,YAAY,CAAC,IAAI,GAAG,IAAI,CAAA;AACxB,YAAY,CAAC,KAAK,GAAG,KAAK,CAAA;AAC1B,YAAY,CAAC,WAAW,GAAG,WAAW,CAAA;AACtC,YAAY,CAAC,SAAS,GAAG,SAAS,CAAA","sourcesContent":["import clsx from \"clsx\"\nimport { type ReactNode } from \"react\"\nimport { type SemanticColors, type Sizes } from \"../../types\"\nimport s from \"./EmptyMessage.module.css\"\n\nexport type EmptyMessageProps = {\n children: ReactNode\n className?: string\n /**\n * Determines how the container fills available space\n * @default static\n */\n fill?: \"static\" | \"absolute\" | \"none\"\n}\n\nexport const EmptyMessage = ({ children, className, fill = \"static\" }: EmptyMessageProps) => {\n return (\n
\n {children}\n
\n )\n}\n\nexport type EmptyMessageIconProps = {\n /**\n * @default sm\n */\n size?: Sizes<\"sm\" | \"md\">\n /**\n * @default secondary\n */\n color?: SemanticColors<\"secondary\" | \"danger\" | \"warning\">\n children: ReactNode\n className?: string\n}\n\nconst Icon = ({ size = \"md\", color = \"secondary\", children, className }: EmptyMessageIconProps) => {\n return (\n
\n {children}\n
\n )\n}\n\nexport type EmptyMessageTitleProps = {\n children: ReactNode\n className?: string\n /**\n * @default secondary\n */\n color?: SemanticColors<\"secondary\" | \"danger\" | \"warning\">\n}\n\nconst Title = ({ children, className, color = \"secondary\" }: EmptyMessageTitleProps) => {\n return (\n
\n {children}\n
\n )\n}\n\nconst Description = ({ children, className }: { children: ReactNode; className?: string }) => {\n return
{children}
\n}\n\nconst ActionRow = ({ children, className }: { children: ReactNode; className?: string }) => {\n return
{children}
\n}\n\nEmptyMessage.Icon = Icon\nEmptyMessage.Title = Title\nEmptyMessage.Description = Description\nEmptyMessage.ActionRow = ActionRow\n"]} \ No newline at end of file diff --git a/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/EmptyMessage/EmptyMessage.module.css b/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/EmptyMessage/EmptyMessage.module.css new file mode 100644 index 0000000000000000000000000000000000000000..c0a9dd76b3ddb688efaadf4477ccba6177188925 --- /dev/null +++ b/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/EmptyMessage/EmptyMessage.module.css @@ -0,0 +1,80 @@ +@layer components {.EmptyMessage { + display: flex; + flex-direction: column; + align-items: center; + justify-content: center; +} + + .EmptyMessage[data-fill="static"] { + width: 100%; + height: 100%; + } + + .EmptyMessage[data-fill="absolute"] { + position: absolute; + inset: 0; + }.IconBadge { + --badge-size: 40px; + --icon-size: 24px; + + display: flex; + align-items: center; + justify-content: center; + width: var(--badge-size); + height: var(--badge-size); + border-radius: var(--radius-md); + margin: 0 0 12px; + background: var(--badge-background-color); + color: var(--badge-text-color); +} + + .IconBadge svg { + width: var(--icon-size); + height: var(--icon-size); + } + + .IconBadge[data-size="sm"] { + --badge-size: 32px; + --icon-size: 20px; + } + + .IconBadge[data-color="secondary"] { + --badge-background-color: var(--color-background-secondary-soft); + --badge-text-color: var(--color-text-secondary-soft); + } + + .IconBadge[data-color="warning"] { + --badge-background-color: var(--color-background-warning-soft); + --badge-text-color: var(--color-text-warning-soft); + } + + .IconBadge[data-color="danger"] { + --badge-background-color: var(--color-background-danger-soft); + --badge-text-color: var(--color-text-danger-soft); + }.Title { + max-width: 90%; + color: var(--color-text); + font-size: 16px; + font-weight: var(--font-weight-semibold); + text-align: center; + text-wrap: balance; +} + + .Title:where([data-color="danger"]) { + color: var(--color-text-danger); + } + + .Title:where([data-color="warning"]) { + color: var(--color-text-warning); + }.Description { + max-width: 90%; + margin: 6px 0 0; + color: var(--color-text-secondary); + font-size: 14px; + line-height: 1.45; + text-align: center; + text-wrap: balance; +}.ActionRow { + margin-top: calc(var(--spacing) * 4); +} +} diff --git a/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/EmptyMessage/index.js b/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/EmptyMessage/index.js new file mode 100644 index 0000000000000000000000000000000000000000..caef2b069d566c554165be0f17f3c20819653eb8 --- /dev/null +++ b/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/EmptyMessage/index.js @@ -0,0 +1,2 @@ +export { EmptyMessage } from "./EmptyMessage"; +//# sourceMappingURL=index.js.map \ No newline at end of file diff --git a/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/EmptyMessage/index.js.map b/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/EmptyMessage/index.js.map new file mode 100644 index 0000000000000000000000000000000000000000..df1e92ecd26b700e0440c84e575a43c289158439 --- /dev/null +++ b/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/EmptyMessage/index.js.map @@ -0,0 +1 @@ +{"version":3,"file":"index.js","sourceRoot":"","sources":["../../../../src/components/EmptyMessage/index.tsx"],"names":[],"mappings":"AAAA,OAAO,EAAE,YAAY,EAAsD,MAAM,gBAAgB,CAAA","sourcesContent":["export { EmptyMessage, type EmptyMessageIconProps, type EmptyMessageProps } from \"./EmptyMessage\"\n"]} \ No newline at end of file diff --git a/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/Icon/index.js b/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/Icon/index.js new file mode 100644 index 0000000000000000000000000000000000000000..4b9cb1cdb894fcd9aa0c01f65fd8c6a0dad60f26 --- /dev/null +++ b/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/Icon/index.js @@ -0,0 +1,746 @@ +export { default as AddMember } from "./svg/AddMember"; +export { default as AddSources } from "./svg/AddSources"; +export { default as Agent } from "./svg/Agent"; +export { default as AgentMode } from "./svg/AgentMode"; +export { default as AllGizmos } from "./svg/AllGizmos"; +export { default as AllProductsExplore } from "./svg/AllProductsExplore"; +export { default as Analytics } from "./svg/Analytics"; +export { default as AnalyzeData } from "./svg/AnalyzeData"; +export { default as ApiKey } from "./svg/ApiKey"; +export { default as ApiKeyAdmin } from "./svg/ApiKeyAdmin"; +export { default as ApiKeys } from "./svg/ApiKeys"; +export { default as ApiKeyServiceAccount } from "./svg/ApiKeyServiceAccount"; +export { default as Archive } from "./svg/Archive"; +export { default as Array } from "./svg/Array"; +export { default as ArrowBottomLeftSm } from "./svg/ArrowBottomLeftSm"; +export { default as ArrowBottomRightSm } from "./svg/ArrowBottomRightSm"; +export { default as ArrowCurved } from "./svg/ArrowCurved"; +export { default as ArrowCurvedLeft } from "./svg/ArrowCurvedLeft"; +export { default as ArrowCurvedRight } from "./svg/ArrowCurvedRight"; +export { default as ArrowCurvedRightXs } from "./svg/ArrowCurvedRightXs"; +export { default as ArrowCurvedRightXs24px } from "./svg/ArrowCurvedRightXs24px"; +export { default as ArrowDown } from "./svg/ArrowDown"; +export { default as ArrowDownLg } from "./svg/ArrowDownLg"; +export { default as ArrowDownSm } from "./svg/ArrowDownSm"; +export { default as ArrowLeft } from "./svg/ArrowLeft"; +export { default as ArrowLeftLg } from "./svg/ArrowLeftLg"; +export { default as ArrowLeftSm } from "./svg/ArrowLeftSm"; +export { default as ArrowRight } from "./svg/ArrowRight"; +export { default as ArrowRightLg } from "./svg/ArrowRightLg"; +export { default as ArrowRightSm } from "./svg/ArrowRightSm"; +export { default as ArrowRotateCcw } from "./svg/ArrowRotateCcw"; +export { default as ArrowRotateCw } from "./svg/ArrowRotateCw"; +export { default as ArrowTopLeftSm } from "./svg/ArrowTopLeftSm"; +export { default as ArrowTopRightSm } from "./svg/ArrowTopRightSm"; +export { default as ArrowUp } from "./svg/ArrowUp"; +export { default as ArrowUpLg } from "./svg/ArrowUpLg"; +export { default as ArrowUpRight } from "./svg/ArrowUpRight"; +export { default as ArrowUpSm } from "./svg/ArrowUpSm"; +export { default as AspectRatio11 } from "./svg/AspectRatio11"; +export { default as AspectRatio169 } from "./svg/AspectRatio169"; +export { default as AspectRatio34 } from "./svg/AspectRatio34"; +export { default as AspectRatio43 } from "./svg/AspectRatio43"; +export { default as AspectRatio916 } from "./svg/AspectRatio916"; +export { default as Assistant } from "./svg/Assistant"; +export { default as Astronout } from "./svg/Astronout"; +export { default as Atom } from "./svg/Atom"; +export { default as AtSign } from "./svg/AtSign"; +export { default as Autocomplete } from "./svg/Autocomplete"; +export { default as AutoPairApps } from "./svg/AutoPairApps"; +export { default as AutoSuggestedEdits } from "./svg/AutoSuggestedEdits"; +export { default as AvatarFilledProfile } from "./svg/AvatarFilledProfile"; +export { default as AvatarProfile } from "./svg/AvatarProfile"; +export { default as Back10s } from "./svg/Back10s"; +export { default as Back15s } from "./svg/Back15s"; +export { default as BackgroundConversation } from "./svg/BackgroundConversation"; +export { default as BackLarge } from "./svg/BackLarge"; +export { default as BackSmall } from "./svg/BackSmall"; +export { default as BackToApp } from "./svg/BackToApp"; +export { default as BalancingScale } from "./svg/BalancingScale"; +export { default as BarChart } from "./svg/BarChart"; +export { default as BarChartFilled } from "./svg/BarChartFilled"; +export { default as Batch } from "./svg/Batch"; +export { default as Batches } from "./svg/Batches"; +export { default as Bell } from "./svg/Bell"; +export { default as BellFilled } from "./svg/BellFilled"; +export { default as Beta } from "./svg/Beta"; +export { default as Bills } from "./svg/Bills"; +export { default as Blend } from "./svg/Blend"; +export { default as BlendingCurveSharp } from "./svg/BlendingCurveSharp"; +export { default as BlendingCurveSmooth } from "./svg/BlendingCurveSmooth"; +export { default as BlendingCurveSubtle } from "./svg/BlendingCurveSubtle"; +export { default as Bolt } from "./svg/Bolt"; +export { default as Book } from "./svg/Book"; +export { default as BookBookmark } from "./svg/BookBookmark"; +export { default as BookClock } from "./svg/BookClock"; +export { default as BookClosed } from "./svg/BookClosed"; +export { default as BookOpen } from "./svg/BookOpen"; +export { default as BookWrench } from "./svg/BookWrench"; +export { default as Boolean } from "./svg/Boolean"; +export { default as Brain } from "./svg/Brain"; +export { default as Branch } from "./svg/Branch"; +export { default as BranchAlt } from "./svg/BranchAlt"; +export { default as Bug } from "./svg/Bug"; +export { default as BuilderProfileCard } from "./svg/BuilderProfileCard"; +export { default as BuildingWorkspace } from "./svg/BuildingWorkspace"; +export { default as Business } from "./svg/Business"; +export { default as BusinessFilled } from "./svg/BusinessFilled"; +export { default as Cabinet } from "./svg/Cabinet"; +export { default as Calendar } from "./svg/Calendar"; +export { default as CalendarAlt } from "./svg/CalendarAlt"; +export { default as CalendarToday } from "./svg/CalendarToday"; +export { default as Camera } from "./svg/Camera"; +export { default as CameraFilledPhoto } from "./svg/CameraFilledPhoto"; +export { default as CameraPhoto } from "./svg/CameraPhoto"; +export { default as CaptionCcOff } from "./svg/CaptionCcOff"; +export { default as CaptionCcOn } from "./svg/CaptionCcOn"; +export { default as CaptionOff } from "./svg/CaptionOff"; +export { default as CaptionOn } from "./svg/CaptionOn"; +export { default as Card } from "./svg/Card"; +export { default as CaretDown } from "./svg/CaretDown"; +export { default as CaretLeft } from "./svg/CaretLeft"; +export { default as CaretRight } from "./svg/CaretRight"; +export { default as CaretUp } from "./svg/CaretUp"; +export { default as Category } from "./svg/Category"; +export { default as Certificate } from "./svg/Certificate"; +export { default as Chart } from "./svg/Chart"; +export { default as ChartXAxis } from "./svg/ChartXAxis"; +export { default as ChartYAxis } from "./svg/ChartYAxis"; +export { default as Chat } from "./svg/Chat"; +export { default as ChatCompose } from "./svg/ChatCompose"; +export { default as ChatDashedCheckedTemp } from "./svg/ChatDashedCheckedTemp"; +export { default as ChatDashedTemp } from "./svg/ChatDashedTemp"; +export { default as Chats } from "./svg/Chats"; +export { default as ChatTemporary } from "./svg/ChatTemporary"; +export { default as ChatTripleDots } from "./svg/ChatTripleDots"; +export { default as Check } from "./svg/Check"; +export { default as CheckCircle } from "./svg/CheckCircle"; +export { default as CheckCircleDashed } from "./svg/CheckCircleDashed"; +export { default as CheckCircleFilled } from "./svg/CheckCircleFilled"; +export { default as CheckLg } from "./svg/CheckLg"; +export { default as CheckMd } from "./svg/CheckMd"; +export { default as ChevronDown } from "./svg/ChevronDown"; +export { default as ChevronDownLg } from "./svg/ChevronDownLg"; +export { default as ChevronDownMd } from "./svg/ChevronDownMd"; +export { default as ChevronDownUp } from "./svg/ChevronDownUp"; +export { default as ChevronDownVector } from "./svg/ChevronDownVector"; +export { default as ChevronLeft } from "./svg/ChevronLeft"; +export { default as ChevronLeftLg } from "./svg/ChevronLeftLg"; +export { default as ChevronLeftMd } from "./svg/ChevronLeftMd"; +export { default as ChevronRight } from "./svg/ChevronRight"; +export { default as ChevronRightAlt } from "./svg/ChevronRightAlt"; +export { default as ChevronRightLg } from "./svg/ChevronRightLg"; +export { default as ChevronRightMd } from "./svg/ChevronRightMd"; +export { default as ChevronSmallDown } from "./svg/ChevronSmallDown"; +export { default as ChevronSmallLeft } from "./svg/ChevronSmallLeft"; +export { default as ChevronSmallRight } from "./svg/ChevronSmallRight"; +export { default as ChevronSmallUp } from "./svg/ChevronSmallUp"; +export { default as ChevronUp } from "./svg/ChevronUp"; +export { default as ChevronUpDown } from "./svg/ChevronUpDown"; +export { default as ChevronUpLg } from "./svg/ChevronUpLg"; +export { default as ChevronUpMd } from "./svg/ChevronUpMd"; +export { default as Circle } from "./svg/Circle"; +export { default as CircleDashed } from "./svg/CircleDashed"; +export { default as CircleQuestion } from "./svg/CircleQuestion"; +export { default as ClappingBoardClosed } from "./svg/ClappingBoardClosed"; +export { default as ClappingBoardOpen } from "./svg/ClappingBoardOpen"; +export { default as Cleanup } from "./svg/Cleanup"; +export { default as Clear } from "./svg/Clear"; +export { default as Click } from "./svg/Click"; +export { default as Clip } from "./svg/Clip"; +export { default as Clipboard } from "./svg/Clipboard"; +export { default as ClipboardCopy } from "./svg/ClipboardCopy"; +export { default as Clock } from "./svg/Clock"; +export { default as Clock10s } from "./svg/Clock10s"; +export { default as Clock15s } from "./svg/Clock15s"; +export { default as Clock20s } from "./svg/Clock20s"; +export { default as Clock5s } from "./svg/Clock5s"; +export { default as ClockOff } from "./svg/ClockOff"; +export { default as CloseBold } from "./svg/CloseBold"; +export { default as Code } from "./svg/Code"; +export { default as CodeSquareSlash } from "./svg/CodeSquareSlash"; +export { default as Collapse } from "./svg/Collapse"; +export { default as CollapseLarge } from "./svg/CollapseLarge"; +export { default as CollapseLeft } from "./svg/CollapseLeft"; +export { default as CollapseLg } from "./svg/CollapseLg"; +export { default as CollapseRight } from "./svg/CollapseRight"; +export { default as CollapseSm } from "./svg/CollapseSm"; +export { default as CollapseSmall } from "./svg/CollapseSmall"; +export { default as ColorTheme } from "./svg/ColorTheme"; +export { default as Comment } from "./svg/Comment"; +export { default as Commit } from "./svg/Commit"; +export { default as Compare } from "./svg/Compare"; +export { default as CompareArrows } from "./svg/CompareArrows"; +export { default as Compass } from "./svg/Compass"; +export { default as Complete } from "./svg/Complete"; +export { default as ComposeCanvasEditStar } from "./svg/ComposeCanvasEditStar"; +export { default as ComposeDashedTemporary } from "./svg/ComposeDashedTemporary"; +export { default as ComposeEditSquare } from "./svg/ComposeEditSquare"; +export { default as Confetti } from "./svg/Confetti"; +export { default as ConfettiParty } from "./svg/ConfettiParty"; +export { default as Connect } from "./svg/Connect"; +export { default as ConnectApps } from "./svg/ConnectApps"; +export { default as ConnectedDynamicGpt } from "./svg/ConnectedDynamicGpt"; +export { default as ConnectorsConnectedApps } from "./svg/ConnectorsConnectedApps"; +export { default as Copy } from "./svg/Copy"; +export { default as CreditCard } from "./svg/CreditCard"; +export { default as Credits } from "./svg/Credits"; +export { default as Cube } from "./svg/Cube"; +export { default as Cursor } from "./svg/Cursor"; +export { default as Customize } from "./svg/Customize"; +export { default as DarkMode } from "./svg/DarkMode"; +export { default as DataControls } from "./svg/DataControls"; +export { default as DeepSearchTelescope } from "./svg/DeepSearchTelescope"; +export { default as Delete } from "./svg/Delete"; +export { default as DeleteAccount } from "./svg/DeleteAccount"; +export { default as Desktop } from "./svg/Desktop"; +export { default as DiningEvents } from "./svg/DiningEvents"; +export { default as DisabledCursor } from "./svg/DisabledCursor"; +export { default as Dock } from "./svg/Dock"; +export { default as Document } from "./svg/Document"; +export { default as Documentation } from "./svg/Documentation"; +export { default as DollarCircle } from "./svg/DollarCircle"; +export { default as Dot } from "./svg/Dot"; +export { default as DotsHorizontal } from "./svg/DotsHorizontal"; +export { default as DotsHorizontalCircle } from "./svg/DotsHorizontalCircle"; +export { default as DotsHorizontalMoreMenu } from "./svg/DotsHorizontalMoreMenu"; +export { default as DotsVertical } from "./svg/DotsVertical"; +export { default as DotsVerticalCircle } from "./svg/DotsVerticalCircle"; +export { default as DotsVerticalMoreMenu } from "./svg/DotsVerticalMoreMenu"; +export { default as DoubleChevronLeft } from "./svg/DoubleChevronLeft"; +export { default as DoubleChevronRight } from "./svg/DoubleChevronRight"; +export { default as Download } from "./svg/Download"; +export { default as DownloadCircle } from "./svg/DownloadCircle"; +export { default as DownloadGifWatermark } from "./svg/DownloadGifWatermark"; +export { default as DownloadSimple } from "./svg/DownloadSimple"; +export { default as DownloadVideo } from "./svg/DownloadVideo"; +export { default as DownloadVideoWatermark } from "./svg/DownloadVideoWatermark"; +export { default as Dropdown } from "./svg/Dropdown"; +export { default as DropdownVector } from "./svg/DropdownVector"; +export { default as Dumbbell } from "./svg/Dumbbell"; +export { default as EarthTravelWorld } from "./svg/EarthTravelWorld"; +export { default as Edit } from "./svg/Edit"; +export { default as EditAlt } from "./svg/EditAlt"; +export { default as EditDalleImage } from "./svg/EditDalleImage"; +export { default as EditPencil } from "./svg/EditPencil"; +export { default as EditStar } from "./svg/EditStar"; +export { default as EditXs } from "./svg/EditXs"; +export { default as Education } from "./svg/Education"; +export { default as Email } from "./svg/Email"; +export { default as EmojiAdd } from "./svg/EmojiAdd"; +export { default as EmojiLists } from "./svg/EmojiLists"; +export { default as EmojiRemove } from "./svg/EmojiRemove"; +export { default as EmojiSections } from "./svg/EmojiSections"; +export { default as EmojiWords } from "./svg/EmojiWords"; +export { default as EmptyCircle } from "./svg/EmptyCircle"; +export { default as EmptyCircleFilled } from "./svg/EmptyCircleFilled"; +export { default as EnterLogin } from "./svg/EnterLogin"; +export { default as Enum } from "./svg/Enum"; +export { default as Equal } from "./svg/Equal"; +export { default as Error } from "./svg/Error"; +export { default as ExclamationMarkCircle } from "./svg/ExclamationMarkCircle"; +export { default as ExitLogout } from "./svg/ExitLogout"; +export { default as Expand } from "./svg/Expand"; +export { default as ExpandLarge } from "./svg/ExpandLarge"; +export { default as ExpandLg } from "./svg/ExpandLg"; +export { default as ExpandMd } from "./svg/ExpandMd"; +export { default as ExpandSm } from "./svg/ExpandSm"; +export { default as ExpandSmall } from "./svg/ExpandSmall"; +export { default as Explore } from "./svg/Explore"; +export { default as ExploreSora } from "./svg/ExploreSora"; +export { default as ExternalLink } from "./svg/ExternalLink"; +export { default as Eye } from "./svg/Eye"; +export { default as EyeClosed } from "./svg/EyeClosed"; +export { default as EyeOff } from "./svg/EyeOff"; +export { default as FeaturedWreath } from "./svg/FeaturedWreath"; +export { default as File } from "./svg/File"; +export { default as File3d } from "./svg/File3d"; +export { default as FileAudio } from "./svg/FileAudio"; +export { default as FileBlank } from "./svg/FileBlank"; +export { default as FileCode } from "./svg/FileCode"; +export { default as FileDocument } from "./svg/FileDocument"; +export { default as FileImage } from "./svg/FileImage"; +export { default as FilePresentation } from "./svg/FilePresentation"; +export { default as FileSpreadsheet } from "./svg/FileSpreadsheet"; +export { default as FileSpreedsheet } from "./svg/FileSpreedsheet"; +export { default as FileUpload } from "./svg/FileUpload"; +export { default as FileVideo } from "./svg/FileVideo"; +export { default as FileZip } from "./svg/FileZip"; +export { default as Filter } from "./svg/Filter"; +export { default as FineTuning } from "./svg/FineTuning"; +export { default as FistBump } from "./svg/FistBump"; +export { default as Flag } from "./svg/Flag"; +export { default as Flash } from "./svg/Flash"; +export { default as Flask } from "./svg/Flask"; +export { default as FlaskFilled } from "./svg/FlaskFilled"; +export { default as Folder } from "./svg/Folder"; +export { default as FolderDocumentsFinder } from "./svg/FolderDocumentsFinder"; +export { default as FolderOpen } from "./svg/FolderOpen"; +export { default as FolderPlus } from "./svg/FolderPlus"; +export { default as FolderPlusAdd } from "./svg/FolderPlusAdd"; +export { default as Folders } from "./svg/Folders"; +export { default as FolderShared } from "./svg/FolderShared"; +export { default as FolderSharedOpen } from "./svg/FolderSharedOpen"; +export { default as FolderStuffed } from "./svg/FolderStuffed"; +export { default as FolderUnshare } from "./svg/FolderUnshare"; +export { default as Followup } from "./svg/Followup"; +export { default as Forum } from "./svg/Forum"; +export { default as Forward } from "./svg/Forward"; +export { default as Forward10s } from "./svg/Forward10s"; +export { default as Forward15s } from "./svg/Forward15s"; +export { default as Frozen } from "./svg/Frozen"; +export { default as Function } from "./svg/Function"; +export { default as Functions } from "./svg/Functions"; +export { default as GenerateSuggestedEdits } from "./svg/GenerateSuggestedEdits"; +export { default as Glasses } from "./svg/Glasses"; +export { default as Globe } from "./svg/Globe"; +export { default as GlobeAltRealTimeSearch } from "./svg/GlobeAltRealTimeSearch"; +export { default as GlobeFilled } from "./svg/GlobeFilled"; +export { default as GlobeOffRealTimeSearch } from "./svg/GlobeOffRealTimeSearch"; +export { default as GlobeRealTimeSearch } from "./svg/GlobeRealTimeSearch"; +export { default as GlobeSpin } from "./svg/GlobeSpin"; +export { default as Go } from "./svg/Go"; +export { default as GoFilled } from "./svg/GoFilled"; +export { default as Graduate } from "./svg/Graduate"; +export { default as GraduationCap } from "./svg/GraduationCap"; +export { default as Grid } from "./svg/Grid"; +export { default as GridAlt } from "./svg/GridAlt"; +export { default as Group } from "./svg/Group"; +export { default as GroupFilled } from "./svg/GroupFilled"; +export { default as Groups } from "./svg/Groups"; +export { default as Hamburger } from "./svg/Hamburger"; +export { default as HandBack } from "./svg/HandBack"; +export { default as HandFront } from "./svg/HandFront"; +export { default as HandPeace } from "./svg/HandPeace"; +export { default as HandRaised } from "./svg/HandRaised"; +export { default as HandRaisedHey } from "./svg/HandRaisedHey"; +export { default as HandWavingBye } from "./svg/HandWavingBye"; +export { default as HapticFeedback } from "./svg/HapticFeedback"; +export { default as Headphones } from "./svg/Headphones"; +export { default as Health } from "./svg/Health"; +export { default as Heart } from "./svg/Heart"; +export { default as HeartFilled } from "./svg/HeartFilled"; +export { default as HeartFilledXs } from "./svg/HeartFilledXs"; +export { default as HeartXs } from "./svg/HeartXs"; +export { default as Help } from "./svg/Help"; +export { default as History } from "./svg/History"; +export { default as HistoryOff } from "./svg/HistoryOff"; +export { default as HistoryOn } from "./svg/HistoryOn"; +export { default as Home } from "./svg/Home"; +export { default as HomeAlt } from "./svg/HomeAlt"; +export { default as Identity } from "./svg/Identity"; +export { default as IdentityMeSecure } from "./svg/IdentityMeSecure"; +export { default as ImageCaption } from "./svg/ImageCaption"; +export { default as Images } from "./svg/Images"; +export { default as ImageSquare } from "./svg/ImageSquare"; +export { default as ImageSquarePictureLibrary } from "./svg/ImageSquarePictureLibrary"; +export { default as ImageToText } from "./svg/ImageToText"; +export { default as ImageWide } from "./svg/ImageWide"; +export { default as ImageWideFilled } from "./svg/ImageWideFilled"; +export { default as ImageWidePictureLibrary } from "./svg/ImageWidePictureLibrary"; +export { default as Info } from "./svg/Info"; +export { default as InfoCircle } from "./svg/InfoCircle"; +export { default as Inpaint } from "./svg/Inpaint"; +export { default as InpaintRespond } from "./svg/InpaintRespond"; +export { default as Inspiration } from "./svg/Inspiration"; +export { default as InspirationFilled } from "./svg/InspirationFilled"; +export { default as Interactiv } from "./svg/Interactiv"; +export { default as InternalKnowledge } from "./svg/InternalKnowledge"; +export { default as InternalKnowledgeOptimizedForCircle } from "./svg/InternalKnowledgeOptimizedForCircle"; +export { default as Invoice } from "./svg/Invoice"; +export { default as Io } from "./svg/Io"; +export { default as JumpToCaption } from "./svg/JumpToCaption"; +export { default as Kettlebell } from "./svg/Kettlebell"; +export { default as Key } from "./svg/Key"; +export { default as Keyboard } from "./svg/Keyboard"; +export { default as KeyboardShortcut } from "./svg/KeyboardShortcut"; +export { default as Lab } from "./svg/Lab"; +export { default as Language } from "./svg/Language"; +export { default as Latency } from "./svg/Latency"; +export { default as Lifesaver } from "./svg/Lifesaver"; +export { default as Lightbulb } from "./svg/Lightbulb"; +export { default as Lightbulb20 } from "./svg/Lightbulb20"; +export { default as Lightbulb22 } from "./svg/Lightbulb22"; +export { default as Lightbulb22Filled } from "./svg/Lightbulb22Filled"; +export { default as LightbulbGlow } from "./svg/LightbulbGlow"; +export { default as LightMode } from "./svg/LightMode"; +export { default as Link } from "./svg/Link"; +export { default as LinkDisabledBold } from "./svg/LinkDisabledBold"; +export { default as LinkExternalWebsite } from "./svg/LinkExternalWebsite"; +export { default as LocalServices } from "./svg/LocalServices"; +export { default as Lock } from "./svg/Lock"; +export { default as LockKeyHole } from "./svg/LockKeyHole"; +export { default as Logout } from "./svg/Logout"; +export { default as Loop } from "./svg/Loop"; +export { default as LoopLong } from "./svg/LoopLong"; +export { default as LoopNormal } from "./svg/LoopNormal"; +export { default as LoopShort } from "./svg/LoopShort"; +export { default as LoopXs } from "./svg/LoopXs"; +export { default as Lotus } from "./svg/Lotus"; +export { default as Love } from "./svg/Love"; +export { default as MagnifyingGlassSearch } from "./svg/MagnifyingGlassSearch"; +export { default as MagnifyingGlassSmSearch } from "./svg/MagnifyingGlassSmSearch"; +export { default as Mail } from "./svg/Mail"; +export { default as ManageHistory } from "./svg/ManageHistory"; +export { default as MapPin } from "./svg/MapPin"; +export { default as Maps } from "./svg/Maps"; +export { default as MapsAddress } from "./svg/MapsAddress"; +export { default as MapsDirections } from "./svg/MapsDirections"; +export { default as MarkerCode } from "./svg/MarkerCode"; +export { default as MarkerData } from "./svg/MarkerData"; +export { default as MarkerMultiple } from "./svg/MarkerMultiple"; +export { default as MarkerQuote } from "./svg/MarkerQuote"; +export { default as Mcp } from "./svg/Mcp"; +export { default as Members } from "./svg/Members"; +export { default as MembersFilled } from "./svg/MembersFilled"; +export { default as MemoryFilledSm } from "./svg/MemoryFilledSm"; +export { default as MemoryOffRemember } from "./svg/MemoryOffRemember"; +export { default as MemoryOnRemember } from "./svg/MemoryOnRemember"; +export { default as MemoryWriteSm } from "./svg/MemoryWriteSm"; +export { default as Menu } from "./svg/Menu"; +export { default as Menubar } from "./svg/Menubar"; +export { default as MenuInverted } from "./svg/MenuInverted"; +export { default as MenuSidebar } from "./svg/MenuSidebar"; +export { default as Messaging } from "./svg/Messaging"; +export { default as Mic } from "./svg/Mic"; +export { default as MicFilled } from "./svg/MicFilled"; +export { default as MicFilledOff } from "./svg/MicFilledOff"; +export { default as MicLgDictate } from "./svg/MicLgDictate"; +export { default as MicOff } from "./svg/MicOff"; +export { default as MinimizeDown } from "./svg/MinimizeDown"; +export { default as MinimizeLeft } from "./svg/MinimizeLeft"; +export { default as MinimizeRight } from "./svg/MinimizeRight"; +export { default as MinimizeTop } from "./svg/MinimizeTop"; +export { default as Minus } from "./svg/Minus"; +export { default as MinusCircle } from "./svg/MinusCircle"; +export { default as MinusCircleFilled } from "./svg/MinusCircleFilled"; +export { default as Mobile } from "./svg/Mobile"; +export { default as Moon } from "./svg/Moon"; +export { default as MoonSunSystem } from "./svg/MoonSunSystem"; +export { default as MoreCircleMenuDots } from "./svg/MoreCircleMenuDots"; +export { default as Music } from "./svg/Music"; +export { default as MyGptProfileMe } from "./svg/MyGptProfileMe"; +export { default as Name } from "./svg/Name"; +export { default as NewsPaper } from "./svg/NewsPaper"; +export { default as Nodes } from "./svg/Nodes"; +export { default as Notebook } from "./svg/Notebook"; +export { default as NotebookCheck } from "./svg/NotebookCheck"; +export { default as NotebookNarrow } from "./svg/NotebookNarrow"; +export { default as NotebookPencil } from "./svg/NotebookPencil"; +export { default as Notepad } from "./svg/Notepad"; +export { default as NotificationBell } from "./svg/NotificationBell"; +export { default as NotificationOffBell } from "./svg/NotificationOffBell"; +export { default as NoTraining } from "./svg/NoTraining"; +export { default as Number } from "./svg/Number"; +export { default as Object } from "./svg/ObjectIcon"; +export { default as On } from "./svg/On"; +export { default as OpenaiLogoBold } from "./svg/OpenaiLogoBold"; +export { default as OpenaiLogoBoldBoundingBox } from "./svg/OpenaiLogoBoldBoundingBox"; +export { default as OpenaiLogoRegular } from "./svg/OpenaiLogoRegular"; +export { default as OpenaiLogoRegularBoundingBox } from "./svg/OpenaiLogoRegularBoundingBox"; +export { default as OpenaiLogoWebappVariable480 } from "./svg/OpenaiLogoWebappVariable480"; +export { default as OpenLeft } from "./svg/OpenLeft"; +export { default as OpenRight } from "./svg/OpenRight"; +export { default as Operator } from "./svg/Operator"; +export { default as Order } from "./svg/Order"; +export { default as PageBlank } from "./svg/PageBlank"; +export { default as Paid } from "./svg/Paid"; +export { default as Paperclip } from "./svg/Paperclip"; +export { default as PaperclipAttach } from "./svg/PaperclipAttach"; +export { default as ParentControl } from "./svg/ParentControl"; +export { default as PastedText } from "./svg/PastedText"; +export { default as Pause } from "./svg/Pause"; +export { default as PauseCircle } from "./svg/PauseCircle"; +export { default as PauseCircleFilled } from "./svg/PauseCircleFilled"; +export { default as PauseOutline } from "./svg/PauseOutline"; +export { default as PauseSm } from "./svg/PauseSm"; +export { default as Paw } from "./svg/Paw"; +export { default as Pencil } from "./svg/Pencil"; +export { default as PencilSparkle } from "./svg/PencilSparkle"; +export { default as PencilSquare } from "./svg/PencilSquare"; +export { default as Pens } from "./svg/Pens"; +export { default as Phone } from "./svg/Phone"; +export { default as PhoneMissed } from "./svg/PhoneMissed"; +export { default as PhoneRing } from "./svg/PhoneRing"; +export { default as PhoneWaves } from "./svg/PhoneWaves"; +export { default as PictureInPicture } from "./svg/PictureInPicture"; +export { default as Pin } from "./svg/Pin"; +export { default as PinFilled } from "./svg/PinFilled"; +export { default as PinWindow } from "./svg/PinWindow"; +export { default as Plane } from "./svg/Plane"; +export { default as PlantDesk } from "./svg/PlantDesk"; +export { default as Play } from "./svg/Play"; +export { default as PlayCircle } from "./svg/PlayCircle"; +export { default as PlayCircleFilled } from "./svg/PlayCircleFilled"; +export { default as Playground } from "./svg/Playground"; +export { default as PlayOutline } from "./svg/PlayOutline"; +export { default as PlaySm } from "./svg/PlaySm"; +export { default as PlayTriangle } from "./svg/PlayTriangle"; +export { default as Plugin } from "./svg/Plugin"; +export { default as PluginPuzzle } from "./svg/PluginPuzzle"; +export { default as Plus } from "./svg/Plus"; +export { default as Plus14px } from "./svg/Plus14px"; +export { default as PlusCircle } from "./svg/PlusCircle"; +export { default as PlusCircleAdd } from "./svg/PlusCircleAdd"; +export { default as PlusCircleFilled } from "./svg/PlusCircleFilled"; +export { default as PlusComposer } from "./svg/PlusComposer"; +export { default as PlusFilled } from "./svg/PlusFilled"; +export { default as PlusLg } from "./svg/PlusLg"; +export { default as PlusLg18pxAdd } from "./svg/PlusLg18pxAdd"; +export { default as PlusSm12px } from "./svg/PlusSm12px"; +export { default as PlusSquareAdd } from "./svg/PlusSquareAdd"; +export { default as PopOutWindow } from "./svg/PopOutWindow"; +export { default as PresetDefault } from "./svg/PresetDefault"; +export { default as PresetSelected } from "./svg/PresetSelected"; +export { default as PrivacyIntern } from "./svg/PrivacyIntern"; +export { default as ProDiamond } from "./svg/ProDiamond"; +export { default as ProductTag } from "./svg/ProductTag"; +export { default as ProFilledDiamond } from "./svg/ProFilledDiamond"; +export { default as PullRequestClosed } from "./svg/PullRequestClosed"; +export { default as PullRequestDraft } from "./svg/PullRequestDraft"; +export { default as PullRequestMerged } from "./svg/PullRequestMerged"; +export { default as PullRequestOpen } from "./svg/PullRequestOpen"; +export { default as Pulse } from "./svg/Pulse"; +export { default as Question } from "./svg/Question"; +export { default as QuestionMark } from "./svg/QuestionMark"; +export { default as QuestionMarkCircle } from "./svg/QuestionMarkCircle"; +export { default as QuickStart } from "./svg/QuickStart"; +export { default as Quote } from "./svg/Quote"; +export { default as QuoteReplyFilledQuoteXs } from "./svg/QuoteReplyFilledQuoteXs"; +export { default as RadioSelected } from "./svg/RadioSelected"; +export { default as ReadingLevel } from "./svg/ReadingLevel"; +export { default as Record } from "./svg/Record"; +export { default as Regenerate } from "./svg/Regenerate"; +export { default as RegenerateOff } from "./svg/RegenerateOff"; +export { default as RegenerateStar } from "./svg/RegenerateStar"; +export { default as Reload } from "./svg/Reload"; +export { default as RemixMild } from "./svg/RemixMild"; +export { default as RemixMildXs } from "./svg/RemixMildXs"; +export { default as RemixStrong } from "./svg/RemixStrong"; +export { default as RemixSubtle } from "./svg/RemixSubtle"; +export { default as RemoveForeverPermanently } from "./svg/RemoveForeverPermanently"; +export { default as RemoveRedEye } from "./svg/RemoveRedEye"; +export { default as Reply } from "./svg/Reply"; +export { default as Report } from "./svg/Report"; +export { default as Resend } from "./svg/Resend"; +export { default as ResetChat } from "./svg/ResetChat"; +export { default as Resolution1080p } from "./svg/Resolution1080p"; +export { default as Resolution360p } from "./svg/Resolution360p"; +export { default as Resolution480p } from "./svg/Resolution480p"; +export { default as Resolution720p } from "./svg/Resolution720p"; +export { default as RestoreUntrash } from "./svg/RestoreUntrash"; +export { default as Rewind } from "./svg/Rewind"; +export { default as Robot } from "./svg/Robot"; +export { default as RobotHead } from "./svg/RobotHead"; +export { default as RobotHeadSad } from "./svg/RobotHeadSad"; +export { default as SavedFilledXs } from "./svg/SavedFilledXs"; +export { default as SavedXs } from "./svg/SavedXs"; +export { default as Scales } from "./svg/Scales"; +export { default as Scissor } from "./svg/Scissor"; +export { default as ScissorXs } from "./svg/ScissorXs"; +export { default as ScreenPosition } from "./svg/ScreenPosition"; +export { default as Search } from "./svg/Search"; +export { default as SearchConnector } from "./svg/SearchConnector"; +export { default as SearchFeed } from "./svg/SearchFeed"; +export { default as SearchXs } from "./svg/SearchXs"; +export { default as SelectText } from "./svg/SelectText"; +export { default as Settings } from "./svg/Settings"; +export { default as SettingsCircle } from "./svg/SettingsCircle"; +export { default as SettingsCog } from "./svg/SettingsCog"; +export { default as SettingsSlider } from "./svg/SettingsSlider"; +export { default as SettingsWrench } from "./svg/SettingsWrench"; +export { default as Share } from "./svg/Share"; +export { default as ShareChat } from "./svg/ShareChat"; +export { default as ShareScreen } from "./svg/ShareScreen"; +export { default as ShareScreenFilled } from "./svg/ShareScreenFilled"; +export { default as ShareScreenOff } from "./svg/ShareScreenOff"; +export { default as ShareScreenOffFilled } from "./svg/ShareScreenOffFilled"; +export { default as ShieldCheck } from "./svg/ShieldCheck"; +export { default as ShieldKey } from "./svg/ShieldKey"; +export { default as ShieldLock } from "./svg/ShieldLock"; +export { default as ShieldPerson } from "./svg/ShieldPerson"; +export { default as ShoppingBag } from "./svg/ShoppingBag"; +export { default as Shortcuts } from "./svg/Shortcuts"; +export { default as Shuffle } from "./svg/Shuffle"; +export { default as Sidebar } from "./svg/Sidebar"; +export { default as SidebarCollapseLeft } from "./svg/SidebarCollapseLeft"; +export { default as SidebarCollapseRight } from "./svg/SidebarCollapseRight"; +export { default as SidebarFloatingLeft } from "./svg/SidebarFloatingLeft"; +export { default as SidebarFloatingOpenLeft } from "./svg/SidebarFloatingOpenLeft"; +export { default as SidebarFloatingOpenRight } from "./svg/SidebarFloatingOpenRight"; +export { default as SidebarFloatingRight } from "./svg/SidebarFloatingRight"; +export { default as SidebarLeft } from "./svg/SidebarLeft"; +export { default as SidebarMenuMobile } from "./svg/SidebarMenuMobile"; +export { default as SidebarMenuMobileBadgeCutout } from "./svg/SidebarMenuMobileBadgeCutout"; +export { default as SidebarOpenLeft } from "./svg/SidebarOpenLeft"; +export { default as SidebarOpenLeftAlt } from "./svg/SidebarOpenLeftAlt"; +export { default as SidebarOpenRight } from "./svg/SidebarOpenRight"; +export { default as SidebarOpenRightAlt } from "./svg/SidebarOpenRightAlt"; +export { default as SidebarRight } from "./svg/SidebarRight"; +export { default as SimpleRelax } from "./svg/SimpleRelax"; +export { default as SimpleSad } from "./svg/SimpleSad"; +export { default as SimpleSmile } from "./svg/SimpleSmile"; +export { default as Skip } from "./svg/Skip"; +export { default as Sleep } from "./svg/Sleep"; +export { default as Snorkle } from "./svg/Snorkle"; +export { default as Snowflake } from "./svg/Snowflake"; +export { default as SoraBasicPopcorn } from "./svg/SoraBasicPopcorn"; +export { default as SoraProDirector } from "./svg/SoraProDirector"; +export { default as SoundOffSimpleMute } from "./svg/SoundOffSimpleMute"; +export { default as SoundOffSpeaker } from "./svg/SoundOffSpeaker"; +export { default as SoundOnReadOutLoudSpeaker } from "./svg/SoundOnReadOutLoudSpeaker"; +export { default as Sparkle } from "./svg/Sparkle"; +export { default as SparkleDouble } from "./svg/SparkleDouble"; +export { default as SparkleFilledPlus } from "./svg/SparkleFilledPlus"; +export { default as SparklePlus } from "./svg/SparklePlus"; +export { default as Sparkles } from "./svg/Sparkles"; +export { default as SparklesFilled } from "./svg/SparklesFilled"; +export { default as Speak } from "./svg/Speak"; +export { default as SpeechToText } from "./svg/SpeechToText"; +export { default as Speed } from "./svg/Speed"; +export { default as SpeedometerLatencySpeed } from "./svg/SpeedometerLatencySpeed"; +export { default as Spelling } from "./svg/Spelling"; +export { default as Spin } from "./svg/Spin"; +export { default as SquareCheckboxUnchecked } from "./svg/SquareCheckboxUnchecked"; +export { default as SquareCheckCheckboxChecked } from "./svg/SquareCheckCheckboxChecked"; +export { default as SquareCheckFilledCheckboxCheckedFilled } from "./svg/SquareCheckFilledCheckboxCheckedFilled"; +export { default as SquareCode } from "./svg/SquareCode"; +export { default as SquareFilledTableLegend } from "./svg/SquareFilledTableLegend"; +export { default as SquareImage } from "./svg/SquareImage"; +export { default as SquarePlus } from "./svg/SquarePlus"; +export { default as SquarePlusAlt } from "./svg/SquarePlusAlt"; +export { default as SquareTableLegend } from "./svg/SquareTableLegend"; +export { default as SquareText } from "./svg/SquareText"; +export { default as Stack } from "./svg/Stack"; +export { default as Star } from "./svg/Star"; +export { default as StarFilled } from "./svg/StarFilled"; +export { default as StartStrokeMd } from "./svg/StartStrokeMd"; +export { default as Status } from "./svg/Status"; +export { default as Stethoscope } from "./svg/Stethoscope"; +export { default as StickyNote } from "./svg/StickyNote"; +export { default as Stop } from "./svg/Stop"; +export { default as StopCircle } from "./svg/StopCircle"; +export { default as StopCircleFilled } from "./svg/StopCircleFilled"; +export { default as StopOutline } from "./svg/StopOutline"; +export { default as StopSm } from "./svg/StopSm"; +export { default as StopStrokeMd } from "./svg/StopStrokeMd"; +export { default as Stopwatch } from "./svg/Stopwatch"; +export { default as Storage } from "./svg/Storage"; +export { default as Storyboard } from "./svg/Storyboard"; +export { default as String } from "./svg/String"; +export { default as Studio } from "./svg/Studio"; +export { default as Stuff } from "./svg/Stuff"; +export { default as StuffTools } from "./svg/StuffTools"; +export { default as SubscriptionPlan } from "./svg/SubscriptionPlan"; +export { default as SuggestEdit } from "./svg/SuggestEdit"; +export { default as Suitcase } from "./svg/Suitcase"; +export { default as SuitcaseFilledWorkBusiness } from "./svg/SuitcaseFilledWorkBusiness"; +export { default as SuitcaseWorkBusiness } from "./svg/SuitcaseWorkBusiness"; +export { default as Sun } from "./svg/Sun"; +export { default as SystemMode } from "./svg/SystemMode"; +export { default as TableCellFilled } from "./svg/TableCellFilled"; +export { default as TableCellsFilled } from "./svg/TableCellsFilled"; +export { default as TableColumnFilled } from "./svg/TableColumnFilled"; +export { default as TableFilled } from "./svg/TableFilled"; +export { default as TableRowFilled } from "./svg/TableRowFilled"; +export { default as Tag } from "./svg/Tag"; +export { default as Tap } from "./svg/Tap"; +export { default as Tasks } from "./svg/Tasks"; +export { default as TBoneRaw } from "./svg/TBoneRaw"; +export { default as Telescope } from "./svg/Telescope"; +export { default as Terminal } from "./svg/Terminal"; +export { default as TerminalLg } from "./svg/TerminalLg"; +export { default as Terms } from "./svg/Terms"; +export { default as Text } from "./svg/Text"; +export { default as TextLonger } from "./svg/TextLonger"; +export { default as TextPrompt } from "./svg/TextPrompt"; +export { default as TextShorter } from "./svg/TextShorter"; +export { default as TextShorterConcise } from "./svg/TextShorterConcise"; +export { default as TextToSpeech } from "./svg/TextToSpeech"; +export { default as ThumbDown } from "./svg/ThumbDown"; +export { default as ThumbDownFilled } from "./svg/ThumbDownFilled"; +export { default as ThumbMixed } from "./svg/ThumbMixed"; +export { default as ThumbnailLarge } from "./svg/ThumbnailLarge"; +export { default as ThumbnailMedium } from "./svg/ThumbnailMedium"; +export { default as ThumbnailSmall } from "./svg/ThumbnailSmall"; +export { default as Thumbs } from "./svg/Thumbs"; +export { default as ThumbUp } from "./svg/ThumbUp"; +export { default as ThumbUpFilled } from "./svg/ThumbUpFilled"; +export { default as Timer } from "./svg/Timer"; +export { default as Tools } from "./svg/Tools"; +export { default as ToolsSkills } from "./svg/ToolsSkills"; +export { default as Translate } from "./svg/Translate"; +export { default as Trash } from "./svg/Trash"; +export { default as TrashRemove } from "./svg/TrashRemove"; +export { default as Trending } from "./svg/Trending"; +export { default as TriangleExclamationErrorWarning } from "./svg/TriangleExclamationErrorWarning"; +export { default as TriangleExclamationFilledErrorWarning } from "./svg/TriangleExclamationFilledErrorWarning"; +export { default as TrophyTop } from "./svg/TrophyTop"; +export { default as TuningFork } from "./svg/TuningFork"; +export { default as Unarchive } from "./svg/Unarchive"; +export { default as Undo } from "./svg/Undo"; +export { default as Unlink } from "./svg/Unlink"; +export { default as Unpin } from "./svg/Unpin"; +export { default as Upgrade } from "./svg/Upgrade"; +export { default as UpgradePlan } from "./svg/UpgradePlan"; +export { default as UploadDocuments } from "./svg/UploadDocuments"; +export { default as Upscale } from "./svg/Upscale"; +export { default as UpscaleXs } from "./svg/UpscaleXs"; +export { default as Usage } from "./svg/Usage"; +export { default as User } from "./svg/User"; +export { default as UserAdd } from "./svg/UserAdd"; +export { default as UserGpts } from "./svg/UserGpts"; +export { default as UserHeart } from "./svg/UserHeart"; +export { default as UserLock } from "./svg/UserLock"; +export { default as Users } from "./svg/Users"; +export { default as UserVoice } from "./svg/UserVoice"; +export { default as Variation2v2 } from "./svg/Variation2v2"; +export { default as VariationV21 } from "./svg/VariationV21"; +export { default as VariationV31 } from "./svg/VariationV31"; +export { default as VariationV32 } from "./svg/VariationV32"; +export { default as VariationV33 } from "./svg/VariationV33"; +export { default as VariationV41 } from "./svg/VariationV41"; +export { default as VariationV42 } from "./svg/VariationV42"; +export { default as VariationV43 } from "./svg/VariationV43"; +export { default as VariationV44 } from "./svg/VariationV44"; +export { default as VersionsV1 } from "./svg/VersionsV1"; +export { default as Video } from "./svg/Video"; +export { default as VideoCaption } from "./svg/VideoCaption"; +export { default as VideoFilled } from "./svg/VideoFilled"; +export { default as VideoFilledOff } from "./svg/VideoFilledOff"; +export { default as VideoGrid } from "./svg/VideoGrid"; +export { default as VideoList } from "./svg/VideoList"; +export { default as Videos } from "./svg/Videos"; +export { default as VideoToText } from "./svg/VideoToText"; +export { default as Voice } from "./svg/Voice"; +export { default as Voice4Bars } from "./svg/Voice4Bars"; +export { default as Voice5BarsSoundwave } from "./svg/Voice5BarsSoundwave"; +export { default as VoiceBold } from "./svg/VoiceBold"; +export { default as VoiceInputAreaMobileFilledVoiceXs } from "./svg/VoiceInputAreaMobileFilledVoiceXs"; +export { default as VoiceLight } from "./svg/VoiceLight"; +export { default as Warning } from "./svg/Warning"; +export { default as WarningFilledWrapCenteredForCircle } from "./svg/WarningFilledWrapCenteredForCircle"; +export { default as WarningWrapCenteredForCircle } from "./svg/WarningWrapCenteredForCircle"; +export { default as Wave } from "./svg/Wave"; +export { default as WebsiteNetwork } from "./svg/WebsiteNetwork"; +export { default as Whisk } from "./svg/Whisk"; +export { default as WhisperAutoSubmit } from "./svg/WhisperAutoSubmit"; +export { default as Widget } from "./svg/Widget"; +export { default as WidgetAdd } from "./svg/WidgetAdd"; +export { default as Workspace } from "./svg/Workspace"; +export { default as WorkWithApps } from "./svg/WorkWithApps"; +export { default as Wreath } from "./svg/Wreath"; +export { default as WriteAlt } from "./svg/WriteAlt"; +export { default as WriteAlt2 } from "./svg/WriteAlt2"; +export { default as Writing } from "./svg/Writing"; +export { default as X } from "./svg/X"; +export { default as XCircle } from "./svg/XCircle"; +export { default as XCircleCrossedClose } from "./svg/XCircleCrossedClose"; +export { default as XCircleFilled } from "./svg/XCircleFilled"; +export { default as XCircleFilledCrossedClose } from "./svg/XCircleFilledCrossedClose"; +export { default as XCrossed } from "./svg/XCrossed"; +export { default as XSquareCrossed } from "./svg/XSquareCrossed"; +export { default as XSquareFilledCrossed } from "./svg/XSquareFilledCrossed"; +export { default as XXs } from "./svg/XXs"; +export { default as XXsCrossed } from "./svg/XXsCrossed"; +//# sourceMappingURL=index.js.map \ No newline at end of file diff --git a/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/Icon/index.js.map b/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/Icon/index.js.map new file mode 100644 index 0000000000000000000000000000000000000000..a75b180cd7031248011e8ed374ec4684ba253b54 --- /dev/null +++ b/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/Icon/index.js.map @@ -0,0 +1 @@ +{"version":3,"file":"index.js","sourceRoot":"","sources":["../../../../src/components/Icon/index.tsx"],"names":[],"mappings":"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","sourcesContent":["export { default as AddMember } from \"./svg/AddMember\"\nexport { default as AddSources } from \"./svg/AddSources\"\nexport { default as Agent } from \"./svg/Agent\"\nexport { default as AgentMode } from \"./svg/AgentMode\"\nexport { default as AllGizmos } from \"./svg/AllGizmos\"\nexport { default as AllProductsExplore } from \"./svg/AllProductsExplore\"\nexport { default as Analytics } from \"./svg/Analytics\"\nexport { default as AnalyzeData } from \"./svg/AnalyzeData\"\nexport { default as ApiKey } from \"./svg/ApiKey\"\nexport { default as ApiKeyAdmin } from \"./svg/ApiKeyAdmin\"\nexport { default as ApiKeys } from \"./svg/ApiKeys\"\nexport { default as ApiKeyServiceAccount } from \"./svg/ApiKeyServiceAccount\"\nexport { default as Archive } from \"./svg/Archive\"\nexport { default as Array } from \"./svg/Array\"\nexport { default as ArrowBottomLeftSm } from \"./svg/ArrowBottomLeftSm\"\nexport { default as ArrowBottomRightSm } from \"./svg/ArrowBottomRightSm\"\nexport { default as ArrowCurved } from \"./svg/ArrowCurved\"\nexport { default as ArrowCurvedLeft } from \"./svg/ArrowCurvedLeft\"\nexport { default as ArrowCurvedRight } from \"./svg/ArrowCurvedRight\"\nexport { default as ArrowCurvedRightXs } from \"./svg/ArrowCurvedRightXs\"\nexport { default as ArrowCurvedRightXs24px } from \"./svg/ArrowCurvedRightXs24px\"\nexport { default as ArrowDown } from \"./svg/ArrowDown\"\nexport { default as ArrowDownLg } from \"./svg/ArrowDownLg\"\nexport { default as ArrowDownSm } from \"./svg/ArrowDownSm\"\nexport { default as ArrowLeft } from \"./svg/ArrowLeft\"\nexport { default as ArrowLeftLg } from \"./svg/ArrowLeftLg\"\nexport { default as ArrowLeftSm } from \"./svg/ArrowLeftSm\"\nexport { default as ArrowRight } from \"./svg/ArrowRight\"\nexport { default as ArrowRightLg } from \"./svg/ArrowRightLg\"\nexport { default as ArrowRightSm } from \"./svg/ArrowRightSm\"\nexport { default as ArrowRotateCcw } from \"./svg/ArrowRotateCcw\"\nexport { default as ArrowRotateCw } from \"./svg/ArrowRotateCw\"\nexport { default as ArrowTopLeftSm } from \"./svg/ArrowTopLeftSm\"\nexport { default as ArrowTopRightSm } from \"./svg/ArrowTopRightSm\"\nexport { default as ArrowUp } from \"./svg/ArrowUp\"\nexport { default as ArrowUpLg } from \"./svg/ArrowUpLg\"\nexport { default as ArrowUpRight } from \"./svg/ArrowUpRight\"\nexport { default as ArrowUpSm } from \"./svg/ArrowUpSm\"\nexport { default as AspectRatio11 } from \"./svg/AspectRatio11\"\nexport { default as AspectRatio169 } from \"./svg/AspectRatio169\"\nexport { default as AspectRatio34 } from \"./svg/AspectRatio34\"\nexport { default as AspectRatio43 } from \"./svg/AspectRatio43\"\nexport { default as AspectRatio916 } from \"./svg/AspectRatio916\"\nexport { default as Assistant } from \"./svg/Assistant\"\nexport { default as Astronout } from \"./svg/Astronout\"\nexport { default as Atom } from \"./svg/Atom\"\nexport { default as AtSign } from \"./svg/AtSign\"\nexport { default as Autocomplete } from \"./svg/Autocomplete\"\nexport { default as AutoPairApps } from \"./svg/AutoPairApps\"\nexport { default as AutoSuggestedEdits } from \"./svg/AutoSuggestedEdits\"\nexport { default as AvatarFilledProfile } from \"./svg/AvatarFilledProfile\"\nexport { default as AvatarProfile } from \"./svg/AvatarProfile\"\nexport { default as Back10s } from \"./svg/Back10s\"\nexport { default as Back15s } from \"./svg/Back15s\"\nexport { default as BackgroundConversation } from \"./svg/BackgroundConversation\"\nexport { default as BackLarge } from \"./svg/BackLarge\"\nexport { default as BackSmall } from \"./svg/BackSmall\"\nexport { default as BackToApp } from \"./svg/BackToApp\"\nexport { default as BalancingScale } from \"./svg/BalancingScale\"\nexport { default as BarChart } from \"./svg/BarChart\"\nexport { default as BarChartFilled } from \"./svg/BarChartFilled\"\nexport { default as Batch } from \"./svg/Batch\"\nexport { default as Batches } from \"./svg/Batches\"\nexport { default as Bell } from \"./svg/Bell\"\nexport { default as BellFilled } from \"./svg/BellFilled\"\nexport { default as Beta } from \"./svg/Beta\"\nexport { default as Bills } from \"./svg/Bills\"\nexport { default as Blend } from \"./svg/Blend\"\nexport { default as BlendingCurveSharp } from \"./svg/BlendingCurveSharp\"\nexport { default as BlendingCurveSmooth } from \"./svg/BlendingCurveSmooth\"\nexport { default as BlendingCurveSubtle } from \"./svg/BlendingCurveSubtle\"\nexport { default as Bolt } from \"./svg/Bolt\"\nexport { default as Book } from \"./svg/Book\"\nexport { default as BookBookmark } from \"./svg/BookBookmark\"\nexport { default as BookClock } from \"./svg/BookClock\"\nexport { default as BookClosed } from \"./svg/BookClosed\"\nexport { default as BookOpen } from \"./svg/BookOpen\"\nexport { default as BookWrench } from \"./svg/BookWrench\"\nexport { default as Boolean } from \"./svg/Boolean\"\nexport { default as Brain } from \"./svg/Brain\"\nexport { default as Branch } from \"./svg/Branch\"\nexport { default as BranchAlt } from \"./svg/BranchAlt\"\nexport { default as Bug } from \"./svg/Bug\"\nexport { default as BuilderProfileCard } from \"./svg/BuilderProfileCard\"\nexport { default as BuildingWorkspace } from \"./svg/BuildingWorkspace\"\nexport { default as Business } from \"./svg/Business\"\nexport { default as BusinessFilled } from \"./svg/BusinessFilled\"\nexport { default as Cabinet } from \"./svg/Cabinet\"\nexport { default as Calendar } from \"./svg/Calendar\"\nexport { default as CalendarAlt } from \"./svg/CalendarAlt\"\nexport { default as CalendarToday } from \"./svg/CalendarToday\"\nexport { default as Camera } from \"./svg/Camera\"\nexport { default as CameraFilledPhoto } from \"./svg/CameraFilledPhoto\"\nexport { default as CameraPhoto } from \"./svg/CameraPhoto\"\nexport { default as CaptionCcOff } from \"./svg/CaptionCcOff\"\nexport { default as CaptionCcOn } from \"./svg/CaptionCcOn\"\nexport { default as CaptionOff } from \"./svg/CaptionOff\"\nexport { default as CaptionOn } from \"./svg/CaptionOn\"\nexport { default as Card } from \"./svg/Card\"\nexport { default as CaretDown } from \"./svg/CaretDown\"\nexport { default as CaretLeft } from \"./svg/CaretLeft\"\nexport { default as CaretRight } from \"./svg/CaretRight\"\nexport { default as CaretUp } from \"./svg/CaretUp\"\nexport { default as Category } from \"./svg/Category\"\nexport { default as Certificate } from \"./svg/Certificate\"\nexport { default as Chart } from \"./svg/Chart\"\nexport { default as ChartXAxis } from \"./svg/ChartXAxis\"\nexport { default as ChartYAxis } from \"./svg/ChartYAxis\"\nexport { default as Chat } from \"./svg/Chat\"\nexport { default as ChatCompose } from \"./svg/ChatCompose\"\nexport { default as ChatDashedCheckedTemp } from \"./svg/ChatDashedCheckedTemp\"\nexport { default as ChatDashedTemp } from \"./svg/ChatDashedTemp\"\nexport { default as Chats } from \"./svg/Chats\"\nexport { default as ChatTemporary } from \"./svg/ChatTemporary\"\nexport { default as ChatTripleDots } from \"./svg/ChatTripleDots\"\nexport { default as Check } from \"./svg/Check\"\nexport { default as CheckCircle } from \"./svg/CheckCircle\"\nexport { default as CheckCircleDashed } from \"./svg/CheckCircleDashed\"\nexport { default as CheckCircleFilled } from \"./svg/CheckCircleFilled\"\nexport { default as CheckLg } from \"./svg/CheckLg\"\nexport { default as CheckMd } from \"./svg/CheckMd\"\nexport { default as ChevronDown } from \"./svg/ChevronDown\"\nexport { default as ChevronDownLg } from \"./svg/ChevronDownLg\"\nexport { default as ChevronDownMd } from \"./svg/ChevronDownMd\"\nexport { default as ChevronDownUp } from \"./svg/ChevronDownUp\"\nexport { default as ChevronDownVector } from \"./svg/ChevronDownVector\"\nexport { default as ChevronLeft } from \"./svg/ChevronLeft\"\nexport { default as ChevronLeftLg } from \"./svg/ChevronLeftLg\"\nexport { default as ChevronLeftMd } from \"./svg/ChevronLeftMd\"\nexport { default as ChevronRight } from \"./svg/ChevronRight\"\nexport { default as ChevronRightAlt } from \"./svg/ChevronRightAlt\"\nexport { default as ChevronRightLg } from \"./svg/ChevronRightLg\"\nexport { default as ChevronRightMd } from \"./svg/ChevronRightMd\"\nexport { default as ChevronSmallDown } from \"./svg/ChevronSmallDown\"\nexport { default as ChevronSmallLeft } from \"./svg/ChevronSmallLeft\"\nexport { default as ChevronSmallRight } from \"./svg/ChevronSmallRight\"\nexport { default as ChevronSmallUp } from \"./svg/ChevronSmallUp\"\nexport { default as ChevronUp } from \"./svg/ChevronUp\"\nexport { default as ChevronUpDown } from \"./svg/ChevronUpDown\"\nexport { default as ChevronUpLg } from \"./svg/ChevronUpLg\"\nexport { default as ChevronUpMd } from \"./svg/ChevronUpMd\"\nexport { default as Circle } from \"./svg/Circle\"\nexport { default as CircleDashed } from \"./svg/CircleDashed\"\nexport { default as CircleQuestion } from \"./svg/CircleQuestion\"\nexport { default as ClappingBoardClosed } from \"./svg/ClappingBoardClosed\"\nexport { default as ClappingBoardOpen } from \"./svg/ClappingBoardOpen\"\nexport { default as Cleanup } from \"./svg/Cleanup\"\nexport { default as Clear } from \"./svg/Clear\"\nexport { default as Click } from \"./svg/Click\"\nexport { default as Clip } from \"./svg/Clip\"\nexport { default as Clipboard } from \"./svg/Clipboard\"\nexport { default as ClipboardCopy } from \"./svg/ClipboardCopy\"\nexport { default as Clock } from \"./svg/Clock\"\nexport { default as Clock10s } from \"./svg/Clock10s\"\nexport { default as Clock15s } from \"./svg/Clock15s\"\nexport { default as Clock20s } from \"./svg/Clock20s\"\nexport { default as Clock5s } from \"./svg/Clock5s\"\nexport { default as ClockOff } from \"./svg/ClockOff\"\nexport { default as CloseBold } from \"./svg/CloseBold\"\nexport { default as Code } from \"./svg/Code\"\nexport { default as CodeSquareSlash } from \"./svg/CodeSquareSlash\"\nexport { default as Collapse } from \"./svg/Collapse\"\nexport { default as CollapseLarge } from \"./svg/CollapseLarge\"\nexport { default as CollapseLeft } from \"./svg/CollapseLeft\"\nexport { default as CollapseLg } from \"./svg/CollapseLg\"\nexport { default as CollapseRight } from \"./svg/CollapseRight\"\nexport { default as CollapseSm } from \"./svg/CollapseSm\"\nexport { default as CollapseSmall } from \"./svg/CollapseSmall\"\nexport { default as ColorTheme } from \"./svg/ColorTheme\"\nexport { default as Comment } from \"./svg/Comment\"\nexport { default as Commit } from \"./svg/Commit\"\nexport { default as Compare } from \"./svg/Compare\"\nexport { default as CompareArrows } from \"./svg/CompareArrows\"\nexport { default as Compass } from \"./svg/Compass\"\nexport { default as Complete } from \"./svg/Complete\"\nexport { default as ComposeCanvasEditStar } from \"./svg/ComposeCanvasEditStar\"\nexport { default as ComposeDashedTemporary } from \"./svg/ComposeDashedTemporary\"\nexport { default as ComposeEditSquare } from \"./svg/ComposeEditSquare\"\nexport { default as Confetti } from \"./svg/Confetti\"\nexport { default as ConfettiParty } from \"./svg/ConfettiParty\"\nexport { default as Connect } from \"./svg/Connect\"\nexport { default as ConnectApps } from \"./svg/ConnectApps\"\nexport { default as ConnectedDynamicGpt } from \"./svg/ConnectedDynamicGpt\"\nexport { default as ConnectorsConnectedApps } from \"./svg/ConnectorsConnectedApps\"\nexport { default as Copy } from \"./svg/Copy\"\nexport { default as CreditCard } from \"./svg/CreditCard\"\nexport { default as Credits } from \"./svg/Credits\"\nexport { default as Cube } from \"./svg/Cube\"\nexport { default as Cursor } from \"./svg/Cursor\"\nexport { default as Customize } from \"./svg/Customize\"\nexport { default as DarkMode } from \"./svg/DarkMode\"\nexport { default as DataControls } from \"./svg/DataControls\"\nexport { default as DeepSearchTelescope } from \"./svg/DeepSearchTelescope\"\nexport { default as Delete } from \"./svg/Delete\"\nexport { default as DeleteAccount } from \"./svg/DeleteAccount\"\nexport { default as Desktop } from \"./svg/Desktop\"\nexport { default as DiningEvents } from \"./svg/DiningEvents\"\nexport { default as DisabledCursor } from \"./svg/DisabledCursor\"\nexport { default as Dock } from \"./svg/Dock\"\nexport { default as Document } from \"./svg/Document\"\nexport { default as Documentation } from \"./svg/Documentation\"\nexport { default as DollarCircle } from \"./svg/DollarCircle\"\nexport { default as Dot } from \"./svg/Dot\"\nexport { default as DotsHorizontal } from \"./svg/DotsHorizontal\"\nexport { default as DotsHorizontalCircle } from \"./svg/DotsHorizontalCircle\"\nexport { default as DotsHorizontalMoreMenu } from \"./svg/DotsHorizontalMoreMenu\"\nexport { default as DotsVertical } from \"./svg/DotsVertical\"\nexport { default as DotsVerticalCircle } from \"./svg/DotsVerticalCircle\"\nexport { default as DotsVerticalMoreMenu } from \"./svg/DotsVerticalMoreMenu\"\nexport { default as DoubleChevronLeft } from \"./svg/DoubleChevronLeft\"\nexport { default as DoubleChevronRight } from \"./svg/DoubleChevronRight\"\nexport { default as Download } from \"./svg/Download\"\nexport { default as DownloadCircle } from \"./svg/DownloadCircle\"\nexport { default as DownloadGifWatermark } from \"./svg/DownloadGifWatermark\"\nexport { default as DownloadSimple } from \"./svg/DownloadSimple\"\nexport { default as DownloadVideo } from \"./svg/DownloadVideo\"\nexport { default as DownloadVideoWatermark } from \"./svg/DownloadVideoWatermark\"\nexport { default as Dropdown } from \"./svg/Dropdown\"\nexport { default as DropdownVector } from \"./svg/DropdownVector\"\nexport { default as Dumbbell } from \"./svg/Dumbbell\"\nexport { default as EarthTravelWorld } from \"./svg/EarthTravelWorld\"\nexport { default as Edit } from \"./svg/Edit\"\nexport { default as EditAlt } from \"./svg/EditAlt\"\nexport { default as EditDalleImage } from \"./svg/EditDalleImage\"\nexport { default as EditPencil } from \"./svg/EditPencil\"\nexport { default as EditStar } from \"./svg/EditStar\"\nexport { default as EditXs } from \"./svg/EditXs\"\nexport { default as Education } from \"./svg/Education\"\nexport { default as Email } from \"./svg/Email\"\nexport { default as EmojiAdd } from \"./svg/EmojiAdd\"\nexport { default as EmojiLists } from \"./svg/EmojiLists\"\nexport { default as EmojiRemove } from \"./svg/EmojiRemove\"\nexport { default as EmojiSections } from \"./svg/EmojiSections\"\nexport { default as EmojiWords } from \"./svg/EmojiWords\"\nexport { default as EmptyCircle } from \"./svg/EmptyCircle\"\nexport { default as EmptyCircleFilled } from \"./svg/EmptyCircleFilled\"\nexport { default as EnterLogin } from \"./svg/EnterLogin\"\nexport { default as Enum } from \"./svg/Enum\"\nexport { default as Equal } from \"./svg/Equal\"\nexport { default as Error } from \"./svg/Error\"\nexport { default as ExclamationMarkCircle } from \"./svg/ExclamationMarkCircle\"\nexport { default as ExitLogout } from \"./svg/ExitLogout\"\nexport { default as Expand } from \"./svg/Expand\"\nexport { default as ExpandLarge } from \"./svg/ExpandLarge\"\nexport { default as ExpandLg } from \"./svg/ExpandLg\"\nexport { default as ExpandMd } from \"./svg/ExpandMd\"\nexport { default as ExpandSm } from \"./svg/ExpandSm\"\nexport { default as ExpandSmall } from \"./svg/ExpandSmall\"\nexport { default as Explore } from \"./svg/Explore\"\nexport { default as ExploreSora } from \"./svg/ExploreSora\"\nexport { default as ExternalLink } from \"./svg/ExternalLink\"\nexport { default as Eye } from \"./svg/Eye\"\nexport { default as EyeClosed } from \"./svg/EyeClosed\"\nexport { default as EyeOff } from \"./svg/EyeOff\"\nexport { default as FeaturedWreath } from \"./svg/FeaturedWreath\"\nexport { default as File } from \"./svg/File\"\nexport { default as File3d } from \"./svg/File3d\"\nexport { default as FileAudio } from \"./svg/FileAudio\"\nexport { default as FileBlank } from \"./svg/FileBlank\"\nexport { default as FileCode } from \"./svg/FileCode\"\nexport { default as FileDocument } from \"./svg/FileDocument\"\nexport { default as FileImage } from \"./svg/FileImage\"\nexport { default as FilePresentation } from \"./svg/FilePresentation\"\nexport { default as FileSpreadsheet } from \"./svg/FileSpreadsheet\"\nexport { default as FileSpreedsheet } from \"./svg/FileSpreedsheet\"\nexport { default as FileUpload } from \"./svg/FileUpload\"\nexport { default as FileVideo } from \"./svg/FileVideo\"\nexport { default as FileZip } from \"./svg/FileZip\"\nexport { default as Filter } from \"./svg/Filter\"\nexport { default as FineTuning } from \"./svg/FineTuning\"\nexport { default as FistBump } from \"./svg/FistBump\"\nexport { default as Flag } from \"./svg/Flag\"\nexport { default as Flash } from \"./svg/Flash\"\nexport { default as Flask } from \"./svg/Flask\"\nexport { default as FlaskFilled } from \"./svg/FlaskFilled\"\nexport { default as Folder } from \"./svg/Folder\"\nexport { default as FolderDocumentsFinder } from \"./svg/FolderDocumentsFinder\"\nexport { default as FolderOpen } from \"./svg/FolderOpen\"\nexport { default as FolderPlus } from \"./svg/FolderPlus\"\nexport { default as FolderPlusAdd } from \"./svg/FolderPlusAdd\"\nexport { default as Folders } from \"./svg/Folders\"\nexport { default as FolderShared } from \"./svg/FolderShared\"\nexport { default as FolderSharedOpen } from \"./svg/FolderSharedOpen\"\nexport { default as FolderStuffed } from \"./svg/FolderStuffed\"\nexport { default as FolderUnshare } from \"./svg/FolderUnshare\"\nexport { default as Followup } from \"./svg/Followup\"\nexport { default as Forum } from \"./svg/Forum\"\nexport { default as Forward } from \"./svg/Forward\"\nexport { default as Forward10s } from \"./svg/Forward10s\"\nexport { default as Forward15s } from \"./svg/Forward15s\"\nexport { default as Frozen } from \"./svg/Frozen\"\nexport { default as Function } from \"./svg/Function\"\nexport { default as Functions } from \"./svg/Functions\"\nexport { default as GenerateSuggestedEdits } from \"./svg/GenerateSuggestedEdits\"\nexport { default as Glasses } from \"./svg/Glasses\"\nexport { default as Globe } from \"./svg/Globe\"\nexport { default as GlobeAltRealTimeSearch } from \"./svg/GlobeAltRealTimeSearch\"\nexport { default as GlobeFilled } from \"./svg/GlobeFilled\"\nexport { default as GlobeOffRealTimeSearch } from \"./svg/GlobeOffRealTimeSearch\"\nexport { default as GlobeRealTimeSearch } from \"./svg/GlobeRealTimeSearch\"\nexport { default as GlobeSpin } from \"./svg/GlobeSpin\"\nexport { default as Go } from \"./svg/Go\"\nexport { default as GoFilled } from \"./svg/GoFilled\"\nexport { default as Graduate } from \"./svg/Graduate\"\nexport { default as GraduationCap } from \"./svg/GraduationCap\"\nexport { default as Grid } from \"./svg/Grid\"\nexport { default as GridAlt } from \"./svg/GridAlt\"\nexport { default as Group } from \"./svg/Group\"\nexport { default as GroupFilled } from \"./svg/GroupFilled\"\nexport { default as Groups } from \"./svg/Groups\"\nexport { default as Hamburger } from \"./svg/Hamburger\"\nexport { default as HandBack } from \"./svg/HandBack\"\nexport { default as HandFront } from \"./svg/HandFront\"\nexport { default as HandPeace } from \"./svg/HandPeace\"\nexport { default as HandRaised } from \"./svg/HandRaised\"\nexport { default as HandRaisedHey } from \"./svg/HandRaisedHey\"\nexport { default as HandWavingBye } from \"./svg/HandWavingBye\"\nexport { default as HapticFeedback } from \"./svg/HapticFeedback\"\nexport { default as Headphones } from \"./svg/Headphones\"\nexport { default as Health } from \"./svg/Health\"\nexport { default as Heart } from \"./svg/Heart\"\nexport { default as HeartFilled } from \"./svg/HeartFilled\"\nexport { default as HeartFilledXs } from \"./svg/HeartFilledXs\"\nexport { default as HeartXs } from \"./svg/HeartXs\"\nexport { default as Help } from \"./svg/Help\"\nexport { default as History } from \"./svg/History\"\nexport { default as HistoryOff } from \"./svg/HistoryOff\"\nexport { default as HistoryOn } from \"./svg/HistoryOn\"\nexport { default as Home } from \"./svg/Home\"\nexport { default as HomeAlt } from \"./svg/HomeAlt\"\nexport { default as Identity } from \"./svg/Identity\"\nexport { default as IdentityMeSecure } from \"./svg/IdentityMeSecure\"\nexport { default as ImageCaption } from \"./svg/ImageCaption\"\nexport { default as Images } from \"./svg/Images\"\nexport { default as ImageSquare } from \"./svg/ImageSquare\"\nexport { default as ImageSquarePictureLibrary } from \"./svg/ImageSquarePictureLibrary\"\nexport { default as ImageToText } from \"./svg/ImageToText\"\nexport { default as ImageWide } from \"./svg/ImageWide\"\nexport { default as ImageWideFilled } from \"./svg/ImageWideFilled\"\nexport { default as ImageWidePictureLibrary } from \"./svg/ImageWidePictureLibrary\"\nexport { default as Info } from \"./svg/Info\"\nexport { default as InfoCircle } from \"./svg/InfoCircle\"\nexport { default as Inpaint } from \"./svg/Inpaint\"\nexport { default as InpaintRespond } from \"./svg/InpaintRespond\"\nexport { default as Inspiration } from \"./svg/Inspiration\"\nexport { default as InspirationFilled } from \"./svg/InspirationFilled\"\nexport { default as Interactiv } from \"./svg/Interactiv\"\nexport { default as InternalKnowledge } from \"./svg/InternalKnowledge\"\nexport { default as InternalKnowledgeOptimizedForCircle } from \"./svg/InternalKnowledgeOptimizedForCircle\"\nexport { default as Invoice } from \"./svg/Invoice\"\nexport { default as Io } from \"./svg/Io\"\nexport { default as JumpToCaption } from \"./svg/JumpToCaption\"\nexport { default as Kettlebell } from \"./svg/Kettlebell\"\nexport { default as Key } from \"./svg/Key\"\nexport { default as Keyboard } from \"./svg/Keyboard\"\nexport { default as KeyboardShortcut } from \"./svg/KeyboardShortcut\"\nexport { default as Lab } from \"./svg/Lab\"\nexport { default as Language } from \"./svg/Language\"\nexport { default as Latency } from \"./svg/Latency\"\nexport { default as Lifesaver } from \"./svg/Lifesaver\"\nexport { default as Lightbulb } from \"./svg/Lightbulb\"\nexport { default as Lightbulb20 } from \"./svg/Lightbulb20\"\nexport { default as Lightbulb22 } from \"./svg/Lightbulb22\"\nexport { default as Lightbulb22Filled } from \"./svg/Lightbulb22Filled\"\nexport { default as LightbulbGlow } from \"./svg/LightbulbGlow\"\nexport { default as LightMode } from \"./svg/LightMode\"\nexport { default as Link } from \"./svg/Link\"\nexport { default as LinkDisabledBold } from \"./svg/LinkDisabledBold\"\nexport { default as LinkExternalWebsite } from \"./svg/LinkExternalWebsite\"\nexport { default as LocalServices } from \"./svg/LocalServices\"\nexport { default as Lock } from \"./svg/Lock\"\nexport { default as LockKeyHole } from \"./svg/LockKeyHole\"\nexport { default as Logout } from \"./svg/Logout\"\nexport { default as Loop } from \"./svg/Loop\"\nexport { default as LoopLong } from \"./svg/LoopLong\"\nexport { default as LoopNormal } from \"./svg/LoopNormal\"\nexport { default as LoopShort } from \"./svg/LoopShort\"\nexport { default as LoopXs } from \"./svg/LoopXs\"\nexport { default as Lotus } from \"./svg/Lotus\"\nexport { default as Love } from \"./svg/Love\"\nexport { default as MagnifyingGlassSearch } from \"./svg/MagnifyingGlassSearch\"\nexport { default as MagnifyingGlassSmSearch } from \"./svg/MagnifyingGlassSmSearch\"\nexport { default as Mail } from \"./svg/Mail\"\nexport { default as ManageHistory } from \"./svg/ManageHistory\"\nexport { default as MapPin } from \"./svg/MapPin\"\nexport { default as Maps } from \"./svg/Maps\"\nexport { default as MapsAddress } from \"./svg/MapsAddress\"\nexport { default as MapsDirections } from \"./svg/MapsDirections\"\nexport { default as MarkerCode } from \"./svg/MarkerCode\"\nexport { default as MarkerData } from \"./svg/MarkerData\"\nexport { default as MarkerMultiple } from \"./svg/MarkerMultiple\"\nexport { default as MarkerQuote } from \"./svg/MarkerQuote\"\nexport { default as Mcp } from \"./svg/Mcp\"\nexport { default as Members } from \"./svg/Members\"\nexport { default as MembersFilled } from \"./svg/MembersFilled\"\nexport { default as MemoryFilledSm } from \"./svg/MemoryFilledSm\"\nexport { default as MemoryOffRemember } from \"./svg/MemoryOffRemember\"\nexport { default as MemoryOnRemember } from \"./svg/MemoryOnRemember\"\nexport { default as MemoryWriteSm } from \"./svg/MemoryWriteSm\"\nexport { default as Menu } from \"./svg/Menu\"\nexport { default as Menubar } from \"./svg/Menubar\"\nexport { default as MenuInverted } from \"./svg/MenuInverted\"\nexport { default as MenuSidebar } from \"./svg/MenuSidebar\"\nexport { default as Messaging } from \"./svg/Messaging\"\nexport { default as Mic } from \"./svg/Mic\"\nexport { default as MicFilled } from \"./svg/MicFilled\"\nexport { default as MicFilledOff } from \"./svg/MicFilledOff\"\nexport { default as MicLgDictate } from \"./svg/MicLgDictate\"\nexport { default as MicOff } from \"./svg/MicOff\"\nexport { default as MinimizeDown } from \"./svg/MinimizeDown\"\nexport { default as MinimizeLeft } from \"./svg/MinimizeLeft\"\nexport { default as MinimizeRight } from \"./svg/MinimizeRight\"\nexport { default as MinimizeTop } from \"./svg/MinimizeTop\"\nexport { default as Minus } from \"./svg/Minus\"\nexport { default as MinusCircle } from \"./svg/MinusCircle\"\nexport { default as MinusCircleFilled } from \"./svg/MinusCircleFilled\"\nexport { default as Mobile } from \"./svg/Mobile\"\nexport { default as Moon } from \"./svg/Moon\"\nexport { default as MoonSunSystem } from \"./svg/MoonSunSystem\"\nexport { default as MoreCircleMenuDots } from \"./svg/MoreCircleMenuDots\"\nexport { default as Music } from \"./svg/Music\"\nexport { default as MyGptProfileMe } from \"./svg/MyGptProfileMe\"\nexport { default as Name } from \"./svg/Name\"\nexport { default as NewsPaper } from \"./svg/NewsPaper\"\nexport { default as Nodes } from \"./svg/Nodes\"\nexport { default as Notebook } from \"./svg/Notebook\"\nexport { default as NotebookCheck } from \"./svg/NotebookCheck\"\nexport { default as NotebookNarrow } from \"./svg/NotebookNarrow\"\nexport { default as NotebookPencil } from \"./svg/NotebookPencil\"\nexport { default as Notepad } from \"./svg/Notepad\"\nexport { default as NotificationBell } from \"./svg/NotificationBell\"\nexport { default as NotificationOffBell } from \"./svg/NotificationOffBell\"\nexport { default as NoTraining } from \"./svg/NoTraining\"\nexport { default as Number } from \"./svg/Number\"\nexport { default as Object } from \"./svg/ObjectIcon\"\nexport { default as On } from \"./svg/On\"\nexport { default as OpenaiLogoBold } from \"./svg/OpenaiLogoBold\"\nexport { default as OpenaiLogoBoldBoundingBox } from \"./svg/OpenaiLogoBoldBoundingBox\"\nexport { default as OpenaiLogoRegular } from \"./svg/OpenaiLogoRegular\"\nexport { default as OpenaiLogoRegularBoundingBox } from \"./svg/OpenaiLogoRegularBoundingBox\"\nexport { default as OpenaiLogoWebappVariable480 } from \"./svg/OpenaiLogoWebappVariable480\"\nexport { default as OpenLeft } from \"./svg/OpenLeft\"\nexport { default as OpenRight } from \"./svg/OpenRight\"\nexport { default as Operator } from \"./svg/Operator\"\nexport { default as Order } from \"./svg/Order\"\nexport { default as PageBlank } from \"./svg/PageBlank\"\nexport { default as Paid } from \"./svg/Paid\"\nexport { default as Paperclip } from \"./svg/Paperclip\"\nexport { default as PaperclipAttach } from \"./svg/PaperclipAttach\"\nexport { default as ParentControl } from \"./svg/ParentControl\"\nexport { default as PastedText } from \"./svg/PastedText\"\nexport { default as Pause } from \"./svg/Pause\"\nexport { default as PauseCircle } from \"./svg/PauseCircle\"\nexport { default as PauseCircleFilled } from \"./svg/PauseCircleFilled\"\nexport { default as PauseOutline } from \"./svg/PauseOutline\"\nexport { default as PauseSm } from \"./svg/PauseSm\"\nexport { default as Paw } from \"./svg/Paw\"\nexport { default as Pencil } from \"./svg/Pencil\"\nexport { default as PencilSparkle } from \"./svg/PencilSparkle\"\nexport { default as PencilSquare } from \"./svg/PencilSquare\"\nexport { default as Pens } from \"./svg/Pens\"\nexport { default as Phone } from \"./svg/Phone\"\nexport { default as PhoneMissed } from \"./svg/PhoneMissed\"\nexport { default as PhoneRing } from \"./svg/PhoneRing\"\nexport { default as PhoneWaves } from \"./svg/PhoneWaves\"\nexport { default as PictureInPicture } from \"./svg/PictureInPicture\"\nexport { default as Pin } from \"./svg/Pin\"\nexport { default as PinFilled } from \"./svg/PinFilled\"\nexport { default as PinWindow } from \"./svg/PinWindow\"\nexport { default as Plane } from \"./svg/Plane\"\nexport { default as PlantDesk } from \"./svg/PlantDesk\"\nexport { default as Play } from \"./svg/Play\"\nexport { default as PlayCircle } from \"./svg/PlayCircle\"\nexport { default as PlayCircleFilled } from \"./svg/PlayCircleFilled\"\nexport { default as Playground } from \"./svg/Playground\"\nexport { default as PlayOutline } from \"./svg/PlayOutline\"\nexport { default as PlaySm } from \"./svg/PlaySm\"\nexport { default as PlayTriangle } from \"./svg/PlayTriangle\"\nexport { default as Plugin } from \"./svg/Plugin\"\nexport { default as PluginPuzzle } from \"./svg/PluginPuzzle\"\nexport { default as Plus } from \"./svg/Plus\"\nexport { default as Plus14px } from \"./svg/Plus14px\"\nexport { default as PlusCircle } from \"./svg/PlusCircle\"\nexport { default as PlusCircleAdd } from \"./svg/PlusCircleAdd\"\nexport { default as PlusCircleFilled } from \"./svg/PlusCircleFilled\"\nexport { default as PlusComposer } from \"./svg/PlusComposer\"\nexport { default as PlusFilled } from \"./svg/PlusFilled\"\nexport { default as PlusLg } from \"./svg/PlusLg\"\nexport { default as PlusLg18pxAdd } from \"./svg/PlusLg18pxAdd\"\nexport { default as PlusSm12px } from \"./svg/PlusSm12px\"\nexport { default as PlusSquareAdd } from \"./svg/PlusSquareAdd\"\nexport { default as PopOutWindow } from \"./svg/PopOutWindow\"\nexport { default as PresetDefault } from \"./svg/PresetDefault\"\nexport { default as PresetSelected } from \"./svg/PresetSelected\"\nexport { default as PrivacyIntern } from \"./svg/PrivacyIntern\"\nexport { default as ProDiamond } from \"./svg/ProDiamond\"\nexport { default as ProductTag } from \"./svg/ProductTag\"\nexport { default as ProFilledDiamond } from \"./svg/ProFilledDiamond\"\nexport { default as PullRequestClosed } from \"./svg/PullRequestClosed\"\nexport { default as PullRequestDraft } from \"./svg/PullRequestDraft\"\nexport { default as PullRequestMerged } from \"./svg/PullRequestMerged\"\nexport { default as PullRequestOpen } from \"./svg/PullRequestOpen\"\nexport { default as Pulse } from \"./svg/Pulse\"\nexport { default as Question } from \"./svg/Question\"\nexport { default as QuestionMark } from \"./svg/QuestionMark\"\nexport { default as QuestionMarkCircle } from \"./svg/QuestionMarkCircle\"\nexport { default as QuickStart } from \"./svg/QuickStart\"\nexport { default as Quote } from \"./svg/Quote\"\nexport { default as QuoteReplyFilledQuoteXs } from \"./svg/QuoteReplyFilledQuoteXs\"\nexport { default as RadioSelected } from \"./svg/RadioSelected\"\nexport { default as ReadingLevel } from \"./svg/ReadingLevel\"\nexport { default as Record } from \"./svg/Record\"\nexport { default as Regenerate } from \"./svg/Regenerate\"\nexport { default as RegenerateOff } from \"./svg/RegenerateOff\"\nexport { default as RegenerateStar } from \"./svg/RegenerateStar\"\nexport { default as Reload } from \"./svg/Reload\"\nexport { default as RemixMild } from \"./svg/RemixMild\"\nexport { default as RemixMildXs } from \"./svg/RemixMildXs\"\nexport { default as RemixStrong } from \"./svg/RemixStrong\"\nexport { default as RemixSubtle } from \"./svg/RemixSubtle\"\nexport { default as RemoveForeverPermanently } from \"./svg/RemoveForeverPermanently\"\nexport { default as RemoveRedEye } from \"./svg/RemoveRedEye\"\nexport { default as Reply } from \"./svg/Reply\"\nexport { default as Report } from \"./svg/Report\"\nexport { default as Resend } from \"./svg/Resend\"\nexport { default as ResetChat } from \"./svg/ResetChat\"\nexport { default as Resolution1080p } from \"./svg/Resolution1080p\"\nexport { default as Resolution360p } from \"./svg/Resolution360p\"\nexport { default as Resolution480p } from \"./svg/Resolution480p\"\nexport { default as Resolution720p } from \"./svg/Resolution720p\"\nexport { default as RestoreUntrash } from \"./svg/RestoreUntrash\"\nexport { default as Rewind } from \"./svg/Rewind\"\nexport { default as Robot } from \"./svg/Robot\"\nexport { default as RobotHead } from \"./svg/RobotHead\"\nexport { default as RobotHeadSad } from \"./svg/RobotHeadSad\"\nexport { default as SavedFilledXs } from \"./svg/SavedFilledXs\"\nexport { default as SavedXs } from \"./svg/SavedXs\"\nexport { default as Scales } from \"./svg/Scales\"\nexport { default as Scissor } from \"./svg/Scissor\"\nexport { default as ScissorXs } from \"./svg/ScissorXs\"\nexport { default as ScreenPosition } from \"./svg/ScreenPosition\"\nexport { default as Search } from \"./svg/Search\"\nexport { default as SearchConnector } from \"./svg/SearchConnector\"\nexport { default as SearchFeed } from \"./svg/SearchFeed\"\nexport { default as SearchXs } from \"./svg/SearchXs\"\nexport { default as SelectText } from \"./svg/SelectText\"\nexport { default as Settings } from \"./svg/Settings\"\nexport { default as SettingsCircle } from \"./svg/SettingsCircle\"\nexport { default as SettingsCog } from \"./svg/SettingsCog\"\nexport { default as SettingsSlider } from \"./svg/SettingsSlider\"\nexport { default as SettingsWrench } from \"./svg/SettingsWrench\"\nexport { default as Share } from \"./svg/Share\"\nexport { default as ShareChat } from \"./svg/ShareChat\"\nexport { default as ShareScreen } from \"./svg/ShareScreen\"\nexport { default as ShareScreenFilled } from \"./svg/ShareScreenFilled\"\nexport { default as ShareScreenOff } from \"./svg/ShareScreenOff\"\nexport { default as ShareScreenOffFilled } from \"./svg/ShareScreenOffFilled\"\nexport { default as ShieldCheck } from \"./svg/ShieldCheck\"\nexport { default as ShieldKey } from \"./svg/ShieldKey\"\nexport { default as ShieldLock } from \"./svg/ShieldLock\"\nexport { default as ShieldPerson } from \"./svg/ShieldPerson\"\nexport { default as ShoppingBag } from \"./svg/ShoppingBag\"\nexport { default as Shortcuts } from \"./svg/Shortcuts\"\nexport { default as Shuffle } from \"./svg/Shuffle\"\nexport { default as Sidebar } from \"./svg/Sidebar\"\nexport { default as SidebarCollapseLeft } from \"./svg/SidebarCollapseLeft\"\nexport { default as SidebarCollapseRight } from \"./svg/SidebarCollapseRight\"\nexport { default as SidebarFloatingLeft } from \"./svg/SidebarFloatingLeft\"\nexport { default as SidebarFloatingOpenLeft } from \"./svg/SidebarFloatingOpenLeft\"\nexport { default as SidebarFloatingOpenRight } from \"./svg/SidebarFloatingOpenRight\"\nexport { default as SidebarFloatingRight } from \"./svg/SidebarFloatingRight\"\nexport { default as SidebarLeft } from \"./svg/SidebarLeft\"\nexport { default as SidebarMenuMobile } from \"./svg/SidebarMenuMobile\"\nexport { default as SidebarMenuMobileBadgeCutout } from \"./svg/SidebarMenuMobileBadgeCutout\"\nexport { default as SidebarOpenLeft } from \"./svg/SidebarOpenLeft\"\nexport { default as SidebarOpenLeftAlt } from \"./svg/SidebarOpenLeftAlt\"\nexport { default as SidebarOpenRight } from \"./svg/SidebarOpenRight\"\nexport { default as SidebarOpenRightAlt } from \"./svg/SidebarOpenRightAlt\"\nexport { default as SidebarRight } from \"./svg/SidebarRight\"\nexport { default as SimpleRelax } from \"./svg/SimpleRelax\"\nexport { default as SimpleSad } from \"./svg/SimpleSad\"\nexport { default as SimpleSmile } from \"./svg/SimpleSmile\"\nexport { default as Skip } from \"./svg/Skip\"\nexport { default as Sleep } from \"./svg/Sleep\"\nexport { default as Snorkle } from \"./svg/Snorkle\"\nexport { default as Snowflake } from \"./svg/Snowflake\"\nexport { default as SoraBasicPopcorn } from \"./svg/SoraBasicPopcorn\"\nexport { default as SoraProDirector } from \"./svg/SoraProDirector\"\nexport { default as SoundOffSimpleMute } from \"./svg/SoundOffSimpleMute\"\nexport { default as SoundOffSpeaker } from \"./svg/SoundOffSpeaker\"\nexport { default as SoundOnReadOutLoudSpeaker } from \"./svg/SoundOnReadOutLoudSpeaker\"\nexport { default as Sparkle } from \"./svg/Sparkle\"\nexport { default as SparkleDouble } from \"./svg/SparkleDouble\"\nexport { default as SparkleFilledPlus } from \"./svg/SparkleFilledPlus\"\nexport { default as SparklePlus } from \"./svg/SparklePlus\"\nexport { default as Sparkles } from \"./svg/Sparkles\"\nexport { default as SparklesFilled } from \"./svg/SparklesFilled\"\nexport { default as Speak } from \"./svg/Speak\"\nexport { default as SpeechToText } from \"./svg/SpeechToText\"\nexport { default as Speed } from \"./svg/Speed\"\nexport { default as SpeedometerLatencySpeed } from \"./svg/SpeedometerLatencySpeed\"\nexport { default as Spelling } from \"./svg/Spelling\"\nexport { default as Spin } from \"./svg/Spin\"\nexport { default as SquareCheckboxUnchecked } from \"./svg/SquareCheckboxUnchecked\"\nexport { default as SquareCheckCheckboxChecked } from \"./svg/SquareCheckCheckboxChecked\"\nexport { default as SquareCheckFilledCheckboxCheckedFilled } from \"./svg/SquareCheckFilledCheckboxCheckedFilled\"\nexport { default as SquareCode } from \"./svg/SquareCode\"\nexport { default as SquareFilledTableLegend } from \"./svg/SquareFilledTableLegend\"\nexport { default as SquareImage } from \"./svg/SquareImage\"\nexport { default as SquarePlus } from \"./svg/SquarePlus\"\nexport { default as SquarePlusAlt } from \"./svg/SquarePlusAlt\"\nexport { default as SquareTableLegend } from \"./svg/SquareTableLegend\"\nexport { default as SquareText } from \"./svg/SquareText\"\nexport { default as Stack } from \"./svg/Stack\"\nexport { default as Star } from \"./svg/Star\"\nexport { default as StarFilled } from \"./svg/StarFilled\"\nexport { default as StartStrokeMd } from \"./svg/StartStrokeMd\"\nexport { default as Status } from \"./svg/Status\"\nexport { default as Stethoscope } from \"./svg/Stethoscope\"\nexport { default as StickyNote } from \"./svg/StickyNote\"\nexport { default as Stop } from \"./svg/Stop\"\nexport { default as StopCircle } from \"./svg/StopCircle\"\nexport { default as StopCircleFilled } from \"./svg/StopCircleFilled\"\nexport { default as StopOutline } from \"./svg/StopOutline\"\nexport { default as StopSm } from \"./svg/StopSm\"\nexport { default as StopStrokeMd } from \"./svg/StopStrokeMd\"\nexport { default as Stopwatch } from \"./svg/Stopwatch\"\nexport { default as Storage } from \"./svg/Storage\"\nexport { default as Storyboard } from \"./svg/Storyboard\"\nexport { default as String } from \"./svg/String\"\nexport { default as Studio } from \"./svg/Studio\"\nexport { default as Stuff } from \"./svg/Stuff\"\nexport { default as StuffTools } from \"./svg/StuffTools\"\nexport { default as SubscriptionPlan } from \"./svg/SubscriptionPlan\"\nexport { default as SuggestEdit } from \"./svg/SuggestEdit\"\nexport { default as Suitcase } from \"./svg/Suitcase\"\nexport { default as SuitcaseFilledWorkBusiness } from \"./svg/SuitcaseFilledWorkBusiness\"\nexport { default as SuitcaseWorkBusiness } from \"./svg/SuitcaseWorkBusiness\"\nexport { default as Sun } from \"./svg/Sun\"\nexport { default as SystemMode } from \"./svg/SystemMode\"\nexport { default as TableCellFilled } from \"./svg/TableCellFilled\"\nexport { default as TableCellsFilled } from \"./svg/TableCellsFilled\"\nexport { default as TableColumnFilled } from \"./svg/TableColumnFilled\"\nexport { default as TableFilled } from \"./svg/TableFilled\"\nexport { default as TableRowFilled } from \"./svg/TableRowFilled\"\nexport { default as Tag } from \"./svg/Tag\"\nexport { default as Tap } from \"./svg/Tap\"\nexport { default as Tasks } from \"./svg/Tasks\"\nexport { default as TBoneRaw } from \"./svg/TBoneRaw\"\nexport { default as Telescope } from \"./svg/Telescope\"\nexport { default as Terminal } from \"./svg/Terminal\"\nexport { default as TerminalLg } from \"./svg/TerminalLg\"\nexport { default as Terms } from \"./svg/Terms\"\nexport { default as Text } from \"./svg/Text\"\nexport { default as TextLonger } from \"./svg/TextLonger\"\nexport { default as TextPrompt } from \"./svg/TextPrompt\"\nexport { default as TextShorter } from \"./svg/TextShorter\"\nexport { default as TextShorterConcise } from \"./svg/TextShorterConcise\"\nexport { default as TextToSpeech } from \"./svg/TextToSpeech\"\nexport { default as ThumbDown } from \"./svg/ThumbDown\"\nexport { default as ThumbDownFilled } from \"./svg/ThumbDownFilled\"\nexport { default as ThumbMixed } from \"./svg/ThumbMixed\"\nexport { default as ThumbnailLarge } from \"./svg/ThumbnailLarge\"\nexport { default as ThumbnailMedium } from \"./svg/ThumbnailMedium\"\nexport { default as ThumbnailSmall } from \"./svg/ThumbnailSmall\"\nexport { default as Thumbs } from \"./svg/Thumbs\"\nexport { default as ThumbUp } from \"./svg/ThumbUp\"\nexport { default as ThumbUpFilled } from \"./svg/ThumbUpFilled\"\nexport { default as Timer } from \"./svg/Timer\"\nexport { default as Tools } from \"./svg/Tools\"\nexport { default as ToolsSkills } from \"./svg/ToolsSkills\"\nexport { default as Translate } from \"./svg/Translate\"\nexport { default as Trash } from \"./svg/Trash\"\nexport { default as TrashRemove } from \"./svg/TrashRemove\"\nexport { default as Trending } from \"./svg/Trending\"\nexport { default as TriangleExclamationErrorWarning } from \"./svg/TriangleExclamationErrorWarning\"\nexport { default as TriangleExclamationFilledErrorWarning } from \"./svg/TriangleExclamationFilledErrorWarning\"\nexport { default as TrophyTop } from \"./svg/TrophyTop\"\nexport { default as TuningFork } from \"./svg/TuningFork\"\nexport { default as Unarchive } from \"./svg/Unarchive\"\nexport { default as Undo } from \"./svg/Undo\"\nexport { default as Unlink } from \"./svg/Unlink\"\nexport { default as Unpin } from \"./svg/Unpin\"\nexport { default as Upgrade } from \"./svg/Upgrade\"\nexport { default as UpgradePlan } from \"./svg/UpgradePlan\"\nexport { default as UploadDocuments } from \"./svg/UploadDocuments\"\nexport { default as Upscale } from \"./svg/Upscale\"\nexport { default as UpscaleXs } from \"./svg/UpscaleXs\"\nexport { default as Usage } from \"./svg/Usage\"\nexport { default as User } from \"./svg/User\"\nexport { default as UserAdd } from \"./svg/UserAdd\"\nexport { default as UserGpts } from \"./svg/UserGpts\"\nexport { default as UserHeart } from \"./svg/UserHeart\"\nexport { default as UserLock } from \"./svg/UserLock\"\nexport { default as Users } from \"./svg/Users\"\nexport { default as UserVoice } from \"./svg/UserVoice\"\nexport { default as Variation2v2 } from \"./svg/Variation2v2\"\nexport { default as VariationV21 } from \"./svg/VariationV21\"\nexport { default as VariationV31 } from \"./svg/VariationV31\"\nexport { default as VariationV32 } from \"./svg/VariationV32\"\nexport { default as VariationV33 } from \"./svg/VariationV33\"\nexport { default as VariationV41 } from \"./svg/VariationV41\"\nexport { default as VariationV42 } from \"./svg/VariationV42\"\nexport { default as VariationV43 } from \"./svg/VariationV43\"\nexport { default as VariationV44 } from \"./svg/VariationV44\"\nexport { default as VersionsV1 } from \"./svg/VersionsV1\"\nexport { default as Video } from \"./svg/Video\"\nexport { default as VideoCaption } from \"./svg/VideoCaption\"\nexport { default as VideoFilled } from \"./svg/VideoFilled\"\nexport { default as VideoFilledOff } from \"./svg/VideoFilledOff\"\nexport { default as VideoGrid } from \"./svg/VideoGrid\"\nexport { default as VideoList } from \"./svg/VideoList\"\nexport { default as Videos } from \"./svg/Videos\"\nexport { default as VideoToText } from \"./svg/VideoToText\"\nexport { default as Voice } from \"./svg/Voice\"\nexport { default as Voice4Bars } from \"./svg/Voice4Bars\"\nexport { default as Voice5BarsSoundwave } from \"./svg/Voice5BarsSoundwave\"\nexport { default as VoiceBold } from \"./svg/VoiceBold\"\nexport { default as VoiceInputAreaMobileFilledVoiceXs } from \"./svg/VoiceInputAreaMobileFilledVoiceXs\"\nexport { default as VoiceLight } from \"./svg/VoiceLight\"\nexport { default as Warning } from \"./svg/Warning\"\nexport { default as WarningFilledWrapCenteredForCircle } from \"./svg/WarningFilledWrapCenteredForCircle\"\nexport { default as WarningWrapCenteredForCircle } from \"./svg/WarningWrapCenteredForCircle\"\nexport { default as Wave } from \"./svg/Wave\"\nexport { default as WebsiteNetwork } from \"./svg/WebsiteNetwork\"\nexport { default as Whisk } from \"./svg/Whisk\"\nexport { default as WhisperAutoSubmit } from \"./svg/WhisperAutoSubmit\"\nexport { default as Widget } from \"./svg/Widget\"\nexport { default as WidgetAdd } from \"./svg/WidgetAdd\"\nexport { default as Workspace } from \"./svg/Workspace\"\nexport { default as WorkWithApps } from \"./svg/WorkWithApps\"\nexport { default as Wreath } from \"./svg/Wreath\"\nexport { default as WriteAlt } from \"./svg/WriteAlt\"\nexport { default as WriteAlt2 } from \"./svg/WriteAlt2\"\nexport { default as Writing } from \"./svg/Writing\"\nexport { default as X } from \"./svg/X\"\nexport { default as XCircle } from \"./svg/XCircle\"\nexport { default as XCircleCrossedClose } from \"./svg/XCircleCrossedClose\"\nexport { default as XCircleFilled } from \"./svg/XCircleFilled\"\nexport { default as XCircleFilledCrossedClose } from \"./svg/XCircleFilledCrossedClose\"\nexport { default as XCrossed } from \"./svg/XCrossed\"\nexport { default as XSquareCrossed } from \"./svg/XSquareCrossed\"\nexport { default as XSquareFilledCrossed } from \"./svg/XSquareFilledCrossed\"\nexport { default as XXs } from \"./svg/XXs\"\nexport { default as XXsCrossed } from \"./svg/XXsCrossed\"\n"]} \ No newline at end of file diff --git a/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/Icon/svg/AddMember.js b/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/Icon/svg/AddMember.js new file mode 100644 index 0000000000000000000000000000000000000000..76112072d733e29aa7d1b24c0db03e12bce714c5 --- /dev/null +++ b/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/Icon/svg/AddMember.js @@ -0,0 +1,4 @@ +import { jsx as _jsx } from "react/jsx-runtime"; +const AddMember = (props) => (_jsx("svg", { width: "1em", height: "1em", viewBox: "0 0 24 24", fill: "currentColor", ...props, children: _jsx("path", { d: "M11.4998 7.5C11.4998 5.01472 13.5145 3 15.9998 3C18.4851 3 20.4998 5.01472 20.4998 7.5C20.4998 9.98528 18.4851 12 15.9998 12C13.5145 12 11.4998 9.98528 11.4998 7.5ZM15.9998 5C14.6191 5 13.4998 6.11929 13.4998 7.5C13.4998 8.88071 14.6191 10 15.9998 10C17.3805 10 18.4998 8.88071 18.4998 7.5C18.4998 6.11929 17.3805 5 15.9998 5ZM2.49978 8C2.49978 5.79086 4.29064 4 6.49978 4C8.70892 4 10.4998 5.79086 10.4998 8C10.4998 10.2091 8.70892 12 6.49978 12C4.29064 12 2.49978 10.2091 2.49978 8ZM6.49978 6C5.39521 6 4.49978 6.89543 4.49978 8C4.49978 9.10457 5.39521 10 6.49978 10C7.60435 10 8.49978 9.10457 8.49978 8C8.49978 6.89543 7.60435 6 6.49978 6ZM11.4364 14.5606C12.8874 13.385 14.7721 12.887 16.5742 13.0211C17.125 13.0621 17.5382 13.5418 17.4972 14.0926C17.4563 14.6433 16.9765 15.0566 16.4258 15.0156C15.0708 14.9148 13.7054 15.2963 12.6955 16.1145C11.7087 16.9141 10.9998 18.1781 10.9998 20C10.9998 20.5523 10.5521 21 9.99978 21C9.44749 21 8.99978 20.5523 8.99978 20C8.99978 17.5992 9.96238 15.7549 11.4364 14.5606ZM2.63451 13.949C4.15498 12.9883 6.07556 12.765 7.77119 13.2432C8.30275 13.3931 8.61214 13.9455 8.46224 14.477C8.31234 15.0086 7.75992 15.318 7.22836 15.1681C6.04081 14.8332 4.7115 15.0024 3.70288 15.6398C2.73131 16.2537 2 17.3348 2 19C2 19.5523 1.55228 20 1 20C0.447715 20 0 19.5523 0 19C0 16.6559 1.07699 14.9332 2.63451 13.949ZM20.4997 14.9956C21.052 14.9956 21.4997 15.4432 21.4998 15.9955L21.4999 17.4956H23C23.5523 17.4956 24 17.9433 24 18.4956C24 19.0479 23.5523 19.4956 23 19.4956H21.5V20.9956C21.5 21.5279 21.0523 21.9756 20.5 21.9956C19.9477 21.9756 19.5 21.5279 19.5 20.9956V19.4956H17.9998C17.4475 19.4756 16.9998 19.0479 16.9998 18.4956C16.9998 17.9433 17.4475 17.4756 17.9998 17.4956H19.4999L19.4998 15.9957C19.4997 15.4434 19.9474 14.9957 20.4997 14.9956Z", fill: "currentColor" }) })); +export default AddMember; +//# sourceMappingURL=AddMember.js.map \ No newline at end of file diff --git a/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/Icon/svg/AddMember.js.map b/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/Icon/svg/AddMember.js.map new file mode 100644 index 0000000000000000000000000000000000000000..bd5f4f3185138e21585eea7bac2d9acdc24927f6 --- /dev/null +++ b/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/Icon/svg/AddMember.js.map @@ -0,0 +1 @@ +{"version":3,"file":"AddMember.js","sourceRoot":"","sources":["../../../../../src/components/Icon/svg/AddMember.tsx"],"names":[],"mappings":";AACA,MAAM,SAAS,GAAG,CAAC,KAA8B,EAAE,EAAE,CAAC,CACpD,cAAK,KAAK,EAAC,KAAK,EAAC,MAAM,EAAC,KAAK,EAAC,OAAO,EAAC,WAAW,EAAC,IAAI,EAAC,cAAc,KAAK,KAAK,YAC7E,eACE,CAAC,EAAC,0vDAA0vD,EAC5vD,IAAI,EAAC,cAAc,GACnB,GACE,CACP,CAAA;AACD,eAAe,SAAS,CAAA","sourcesContent":["import type { SVGProps } from \"react\"\nconst AddMember = (props: SVGProps) => (\n \n \n \n)\nexport default AddMember\n"]} \ No newline at end of file diff --git a/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/Icon/svg/AddSources.js b/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/Icon/svg/AddSources.js new file mode 100644 index 0000000000000000000000000000000000000000..6995fef9fdf853a6958557401b91c4f48a48ea40 --- /dev/null +++ b/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/Icon/svg/AddSources.js @@ -0,0 +1,4 @@ +import { jsx as _jsx } from "react/jsx-runtime"; +const AddSources = (props) => (_jsx("svg", { width: "1em", height: "1em", viewBox: "0 0 24 24", fill: "currentColor", ...props, children: _jsx("path", { d: "M19.5 6.75C19.5 5.50736 18.4926 4.5 17.25 4.5C16.0074 4.5 15 5.50736 15 6.75C15 7.99264 16.0074 9 17.25 9C18.4926 9 19.5 7.99264 19.5 6.75ZM4.5 17.25C4.5 18.4926 5.50736 19.5 6.75 19.5C7.99264 19.5 9 18.4926 9 17.25C9 16.0074 7.99264 15 6.75 15C5.50736 15 4.5 16.0074 4.5 17.25ZM21.5 6.75C21.5 9.09721 19.5972 11 17.25 11C15.248 11 13.5696 9.61561 13.1191 7.75195C12.3163 7.75325 11.712 7.75818 11.248 7.78809C10.9622 7.80653 10.7616 7.83211 10.6211 7.8623C10.5494 7.87772 10.5051 7.89223 10.4805 7.90137L10.458 7.90918C10.0638 8.1633 9.89955 8.65783 10.0625 9.09766L10.0752 9.11719C10.0894 9.13931 10.1158 9.17794 10.1641 9.2334C10.2584 9.34188 10.4034 9.4826 10.6211 9.66895C11.0613 10.0457 11.6978 10.5238 12.5996 11.2002L13.7812 12.0918C14.1284 12.3586 14.4282 12.5971 14.6787 12.8115C15.1443 13.21 15.6116 13.663 15.8135 14.208L15.8936 14.457C16.2147 15.6263 15.7973 16.8774 14.8389 17.6201L14.625 17.7715C14.1365 18.0863 13.4914 18.1686 12.8799 18.208C12.353 18.242 11.6883 18.2458 10.8809 18.2471C10.4321 20.1131 8.75369 21.5 6.75 21.5C4.40279 21.5 2.5 19.5972 2.5 17.25C2.5 14.9028 4.40279 13 6.75 13C8.75163 13 10.429 14.384 10.8799 16.2471C11.6832 16.2458 12.2878 16.2418 12.752 16.2119C13.0378 16.1935 13.2384 16.1679 13.3789 16.1377C13.5221 16.1069 13.5567 16.0814 13.542 16.0908L13.6787 15.9844C13.9302 15.7522 14.0454 15.4059 13.9834 15.0693L13.9375 14.9023C13.9437 14.919 13.9323 14.8775 13.8359 14.7666C13.7416 14.6581 13.5966 14.5174 13.3789 14.3311C13.1588 14.1427 12.8894 13.9289 12.5625 13.6777L11.4004 12.7998C10.5218 12.1409 9.82245 11.6174 9.32129 11.1885C8.91384 10.8398 8.50535 10.4494 8.27441 9.99219L8.18652 9.79199C7.69784 8.47251 8.19224 6.99077 9.375 6.22852L9.56543 6.12109C10.0245 5.894 10.5851 5.82649 11.1201 5.79199C11.6468 5.75805 12.3111 5.75318 13.1182 5.75195C13.5672 3.88632 15.2466 2.5 17.25 2.5C19.5972 2.5 21.5 4.40279 21.5 6.75Z", fill: "currentColor" }) })); +export default AddSources; +//# sourceMappingURL=AddSources.js.map \ No newline at end of file diff --git a/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/Icon/svg/AddSources.js.map b/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/Icon/svg/AddSources.js.map new file mode 100644 index 0000000000000000000000000000000000000000..71b0ea6b41b97bcf69291bf421c2042cb7d63984 --- /dev/null +++ b/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/Icon/svg/AddSources.js.map @@ -0,0 +1 @@ +{"version":3,"file":"AddSources.js","sourceRoot":"","sources":["../../../../../src/components/Icon/svg/AddSources.tsx"],"names":[],"mappings":";AACA,MAAM,UAAU,GAAG,CAAC,KAA8B,EAAE,EAAE,CAAC,CACrD,cAAK,KAAK,EAAC,KAAK,EAAC,MAAM,EAAC,KAAK,EAAC,OAAO,EAAC,WAAW,EAAC,IAAI,EAAC,cAAc,KAAK,KAAK,YAC7E,eACE,CAAC,EAAC,k1DAAk1D,EACp1D,IAAI,EAAC,cAAc,GACnB,GACE,CACP,CAAA;AACD,eAAe,UAAU,CAAA","sourcesContent":["import type { SVGProps } from \"react\"\nconst AddSources = (props: SVGProps) => (\n \n \n \n)\nexport default AddSources\n"]} \ No newline at end of file diff --git a/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/Icon/svg/Agent.js b/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/Icon/svg/Agent.js new file mode 100644 index 0000000000000000000000000000000000000000..13b3a0a45ad7427f95dcf91d7ef1686bde7551f6 --- /dev/null +++ b/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/Icon/svg/Agent.js @@ -0,0 +1,4 @@ +import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime"; +const Agent = (props) => (_jsxs("svg", { width: "1em", height: "1em", viewBox: "0 0 24 24", fill: "currentColor", ...props, children: [_jsx("path", { d: "M11 7.5C11 8.32843 10.3284 9 9.5 9C8.67157 9 8 8.32843 8 7.5C8 6.67157 8.67157 6 9.5 6C10.3284 6 11 6.67157 11 7.5Z", fill: "currentColor" }), _jsx("path", { d: "M14.5 9C15.3284 9 16 8.32843 16 7.5C16 6.67157 15.3284 6 14.5 6C13.6716 6 13 6.67157 13 7.5C13 8.32843 13.6716 9 14.5 9Z", fill: "currentColor" }), _jsx("path", { d: "M12 1C12.5523 1 13 1.44772 13 2V2.5L15.8708 2.5C16.3832 2.49998 16.8252 2.49997 17.1896 2.52892C17.574 2.55947 17.9568 2.62688 18.3269 2.80938C18.9192 3.10147 19.3985 3.58084 19.6906 4.17313C19.8731 4.54322 19.9405 4.92598 19.9711 5.31042C20 5.6748 20 6.1168 20 6.62913V6.70824C20 7.76163 20 8.61129 19.9453 9.29994C19.889 10.0088 19.77 10.6322 19.4844 11.2114C18.9976 12.1986 18.1986 12.9975 17.2114 13.4844C16.6322 13.77 16.0088 13.889 15.2999 13.9453C14.6113 14 13.7616 14 12.7082 14H11.2918C10.2384 14 9.38872 14 8.70006 13.9453C7.99117 13.889 7.36777 13.77 6.78856 13.4844C5.8014 12.9976 5.00246 12.1986 4.51564 11.2114C4.23001 10.6322 4.11104 10.0088 4.05471 9.29995C3.99999 8.61131 3.99999 7.76169 4 6.70834V6.62922C3.99998 6.11688 3.99997 5.67481 4.02893 5.31042C4.05948 4.92598 4.12688 4.54322 4.30938 4.17313C4.60147 3.58084 5.08084 3.10147 5.67313 2.80938C6.04322 2.62688 6.42598 2.55947 6.81042 2.52892C7.17482 2.49997 7.61685 2.49998 8.12922 2.5L11 2.5V2C11 1.44772 11.4477 1 12 1ZM6.96885 4.52264C6.7044 4.54365 6.60587 4.57938 6.55771 4.60313C6.36028 4.70049 6.20049 4.86028 6.10313 5.05771C6.07938 5.10587 6.04366 5.2044 6.02264 5.46885C6.00074 5.7445 6 6.10631 6 6.66667C6 7.77136 6.00074 8.54142 6.04843 9.14152C6.09522 9.73042 6.18251 10.0696 6.30939 10.3269C6.60148 10.9192 7.08084 11.3985 7.67314 11.6906C7.93042 11.8175 8.26959 11.9048 8.85849 11.9516C9.45858 11.9993 10.2286 12 11.3333 12H12.6667C13.7714 12 14.5414 11.9993 15.1415 11.9516C15.7304 11.9048 16.0696 11.8175 16.3269 11.6906C16.9192 11.3985 17.3985 10.9192 17.6906 10.3269C17.8175 10.0696 17.9048 9.73042 17.9516 9.14152C17.9993 8.54142 18 7.77136 18 6.66667C18 6.1063 17.9993 5.7445 17.9774 5.46885C17.9563 5.20439 17.9206 5.10587 17.8969 5.05771C17.7995 4.86028 17.6397 4.70049 17.4423 4.60313C17.3941 4.57938 17.2956 4.54365 17.0312 4.52264C16.7555 4.50074 16.3937 4.5 15.8333 4.5H8.16667C7.60631 4.5 7.2445 4.50074 6.96885 4.52264Z", fill: "currentColor" }), _jsx("path", { d: "M6 21C6 20.0261 6.55099 19.05 7.63152 18.2782C8.71012 17.5078 10.2515 17 12 17C13.7486 17 15.2899 17.5078 16.3685 18.2782C17.449 19.05 18 20.0261 18 21C18 21.5523 18.4477 22 19 22C19.5523 22 20 21.5523 20 21C20 19.2125 18.984 17.6886 17.531 16.6507C16.0761 15.6115 14.1174 15 12.0001 15C9.88267 15 7.92397 15.6115 6.46905 16.6507C5.01605 17.6886 4 19.2125 4 21C4 21.5523 4.44772 22 5 22C5.55229 22 6 21.5523 6 21Z", fill: "currentColor" })] })); +export default Agent; +//# sourceMappingURL=Agent.js.map \ No newline at end of file diff --git a/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/Icon/svg/Agent.js.map b/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/Icon/svg/Agent.js.map new file mode 100644 index 0000000000000000000000000000000000000000..e8e449a05ef55c8eaebc64520cbd4ffeb9e254ff --- /dev/null +++ b/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/Icon/svg/Agent.js.map @@ -0,0 +1 @@ +{"version":3,"file":"Agent.js","sourceRoot":"","sources":["../../../../../src/components/Icon/svg/Agent.tsx"],"names":[],"mappings":";AACA,MAAM,KAAK,GAAG,CAAC,KAA8B,EAAE,EAAE,CAAC,CAChD,eAAK,KAAK,EAAC,KAAK,EAAC,MAAM,EAAC,KAAK,EAAC,OAAO,EAAC,WAAW,EAAC,IAAI,EAAC,cAAc,KAAK,KAAK,aAC7E,eACE,CAAC,EAAC,qHAAqH,EACvH,IAAI,EAAC,cAAc,GACnB,EACF,eACE,CAAC,EAAC,0HAA0H,EAC5H,IAAI,EAAC,cAAc,GACnB,EACF,eACE,CAAC,EAAC,m4DAAm4D,EACr4D,IAAI,EAAC,cAAc,GACnB,EACF,eACE,CAAC,EAAC,+ZAA+Z,EACja,IAAI,EAAC,cAAc,GACnB,IACE,CACP,CAAA;AACD,eAAe,KAAK,CAAA","sourcesContent":["import type { SVGProps } from \"react\"\nconst Agent = (props: SVGProps) => (\n \n \n \n \n \n \n)\nexport default Agent\n"]} \ No newline at end of file diff --git a/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/Icon/svg/AgentMode.js b/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/Icon/svg/AgentMode.js new file mode 100644 index 0000000000000000000000000000000000000000..4436568db869d10f414583dfddb9def47cc41eab --- /dev/null +++ b/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/Icon/svg/AgentMode.js @@ -0,0 +1,4 @@ +import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime"; +const AgentMode = (props) => (_jsxs("svg", { width: "1em", height: "1em", viewBox: "0 0 24 24", fill: "currentColor", ...props, children: [_jsx("path", { fillRule: "evenodd", clipRule: "evenodd", d: "M11.4053 13.3184C10.986 12.1299 12.1299 10.986 13.3184 11.4053L21.1787 14.1797C22.4453 14.6267 22.5315 16.385 21.3145 16.9531L18.3408 18.3408L16.9531 21.3145C16.385 22.5315 14.6267 22.4453 14.1797 21.1787L11.4053 13.3184ZM15.6572 19.3594L16.6055 17.3301L16.666 17.2139C16.8193 16.9487 17.0506 16.7359 17.3301 16.6055L19.3594 15.6572L13.6387 13.6387L15.6572 19.3594Z", fill: "currentColor" }), _jsx("path", { d: "M17 3C19.2091 3 21 4.79086 21 7V9C21 9.55228 20.5523 10 20 10C19.4477 10 19 9.55228 19 9V7C19 5.89543 18.1046 5 17 5H7C5.89543 5 5 5.89543 5 7V17C5 18.1046 5.89543 19 7 19H9C9.55228 19 10 19.4477 10 20C10 20.5523 9.55228 21 9 21H7C4.79086 21 3 19.2091 3 17V7C3 4.79086 4.79086 3 7 3H17Z", fill: "currentColor" }), _jsx("path", { d: "M8.50195 12.2051C9.00644 12.2561 9.40039 12.6823 9.40039 13.2002C9.40027 13.718 9.00637 14.1443 8.50195 14.1953L8.40039 14.2002H7.2002C6.64799 14.2002 6.20033 13.7524 6.2002 13.2002C6.2002 12.6479 6.64791 12.2002 7.2002 12.2002H8.40039L8.50195 12.2051Z", fill: "currentColor" }), _jsx("path", { d: "M7.99316 7.99316C8.38369 7.60264 9.0167 7.60264 9.40723 7.99316L10.3076 8.89355L10.376 8.96875C10.6963 9.36152 10.6737 9.9415 10.3076 10.3076C9.94148 10.6736 9.36148 10.6963 8.96875 10.376L8.89355 10.3076L7.99316 9.40723C7.60268 9.01674 7.60276 8.3837 7.99316 7.99316Z", fill: "currentColor" }), _jsx("path", { d: "M13.2002 6.2002C13.7525 6.2002 14.2002 6.64791 14.2002 7.2002V8.40039C14.2 8.95247 13.7523 9.40039 13.2002 9.40039C12.6481 9.40039 12.2004 8.95247 12.2002 8.40039V7.2002C12.2002 6.64791 12.6479 6.2002 13.2002 6.2002Z", fill: "currentColor" })] })); +export default AgentMode; +//# sourceMappingURL=AgentMode.js.map \ No newline at end of file diff --git a/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/Icon/svg/AgentMode.js.map b/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/Icon/svg/AgentMode.js.map new file mode 100644 index 0000000000000000000000000000000000000000..e558c558d6f11e8f1c8763b7cb96cc0e4c75d767 --- /dev/null +++ b/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/Icon/svg/AgentMode.js.map @@ -0,0 +1 @@ +{"version":3,"file":"AgentMode.js","sourceRoot":"","sources":["../../../../../src/components/Icon/svg/AgentMode.tsx"],"names":[],"mappings":";AACA,MAAM,SAAS,GAAG,CAAC,KAA8B,EAAE,EAAE,CAAC,CACpD,eAAK,KAAK,EAAC,KAAK,EAAC,MAAM,EAAC,KAAK,EAAC,OAAO,EAAC,WAAW,EAAC,IAAI,EAAC,cAAc,KAAK,KAAK,aAC7E,eACE,QAAQ,EAAC,SAAS,EAClB,QAAQ,EAAC,SAAS,EAClB,CAAC,EAAC,+WAA+W,EACjX,IAAI,EAAC,cAAc,GACnB,EACF,eACE,CAAC,EAAC,gSAAgS,EAClS,IAAI,EAAC,cAAc,GACnB,EACF,eACE,CAAC,EAAC,8PAA8P,EAChQ,IAAI,EAAC,cAAc,GACnB,EACF,eACE,CAAC,EAAC,8QAA8Q,EAChR,IAAI,EAAC,cAAc,GACnB,EACF,eACE,CAAC,EAAC,0NAA0N,EAC5N,IAAI,EAAC,cAAc,GACnB,IACE,CACP,CAAA;AACD,eAAe,SAAS,CAAA","sourcesContent":["import type { SVGProps } from \"react\"\nconst AgentMode = (props: SVGProps) => (\n \n \n \n \n \n \n \n)\nexport default AgentMode\n"]} \ No newline at end of file diff --git a/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/Icon/svg/AllGizmos.js b/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/Icon/svg/AllGizmos.js new file mode 100644 index 0000000000000000000000000000000000000000..96850f83a9efd8412f25e7a5a200b6dbf96fbb87 --- /dev/null +++ b/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/Icon/svg/AllGizmos.js @@ -0,0 +1,4 @@ +import { jsx as _jsx } from "react/jsx-runtime"; +const AllGizmos = (props) => (_jsx("svg", { width: "1em", height: "1em", viewBox: "0 0 24 24", fill: "currentColor", ...props, children: _jsx("path", { d: "M12.0001 4C11.5858 4 11.2501 4.33579 11.2501 4.75C11.2501 5.16421 11.5858 5.5 12.0001 5.5C12.4143 5.5 12.7501 5.16421 12.7501 4.75C12.7501 4.33579 12.4143 4 12.0001 4ZM9.25005 4.75C9.25005 3.23122 10.4813 2 12.0001 2C13.5188 2 14.7501 3.23122 14.7501 4.75C14.7501 6.26878 13.5188 7.5 12.0001 7.5C10.4813 7.5 9.25005 6.26878 9.25005 4.75ZM6.09637 7.72548C5.73765 7.51837 5.27895 7.64128 5.07185 8C4.86474 8.35872 4.98765 8.81741 5.34637 9.02452C5.70509 9.23163 6.16378 9.10872 6.37089 8.75C6.57799 8.39128 6.45509 7.93259 6.09637 7.72548ZM3.3398 7C4.09919 5.6847 5.78106 5.23404 7.09637 5.99343C8.41167 6.75282 8.86233 8.4347 8.10294 9.75C7.34355 11.0653 5.66167 11.516 4.34637 10.7566C3.03106 9.99718 2.58041 8.31531 3.3398 7ZM18.9281 8.00008C18.7209 7.64136 18.2622 7.51845 17.9035 7.72556C17.5448 7.93267 17.4219 8.39136 17.629 8.75008C17.8361 9.1088 18.2948 9.23171 18.6535 9.0246C19.0122 8.81749 19.1352 8.3588 18.9281 8.00008ZM16.9035 5.99351C18.2188 5.23412 19.9007 5.68478 20.6601 7.00008C21.4195 8.31539 20.9688 9.99726 19.6535 10.7567C18.3382 11.516 16.6564 11.0654 15.897 9.75008C15.1376 8.43478 15.5882 6.7529 16.9035 5.99351ZM12.0001 10.5C11.1716 10.5 10.5001 11.1716 10.5001 12C10.5001 12.8284 11.1716 13.5 12.0001 13.5C12.8285 13.5 13.5001 12.8284 13.5001 12C13.5001 11.1716 12.8285 10.5 12.0001 10.5ZM8.50005 12C8.50005 10.067 10.0671 8.5 12.0001 8.5C13.933 8.5 15.5001 10.067 15.5001 12C15.5001 13.933 13.933 15.5 12.0001 15.5C10.0671 15.5 8.50005 13.933 8.50005 12ZM18.6537 14.9755C18.295 14.7684 17.8363 14.8913 17.6292 15.25C17.4221 15.6087 17.545 16.0674 17.9037 16.2745C18.2625 16.4816 18.7211 16.3587 18.9283 16C19.1354 15.6413 19.0125 15.1826 18.6537 14.9755ZM15.8972 14.25C16.6566 12.9347 18.3384 12.484 19.6537 13.2434C20.969 14.0028 21.4197 15.6847 20.6603 17C19.9009 18.3153 18.219 18.766 16.9037 18.0066C15.5884 17.2472 15.1378 15.5653 15.8972 14.25ZM6.37068 15.2501C6.16357 14.8914 5.70488 14.7685 5.34616 14.9756C4.98744 15.1827 4.86454 15.6414 5.07164 16.0001C5.27875 16.3588 5.73744 16.4817 6.09616 16.2746C6.45488 16.0675 6.57779 15.6088 6.37068 15.2501ZM4.34616 13.2435C5.66147 12.4841 7.34334 12.9348 8.10273 14.2501C8.86212 15.5654 8.41147 17.2473 7.09616 18.0066C5.78086 18.766 4.09898 18.3154 3.33959 17.0001C2.5802 15.6848 3.03086 14.0029 4.34616 13.2435ZM12.0001 18.5C11.5858 18.5 11.2501 18.8358 11.2501 19.25C11.2501 19.6642 11.5858 20 12.0001 20C12.4143 20 12.7501 19.6642 12.7501 19.25C12.7501 18.8358 12.4143 18.5 12.0001 18.5ZM9.25005 19.25C9.25005 17.7312 10.4813 16.5 12.0001 16.5C13.5188 16.5 14.7501 17.7312 14.7501 19.25C14.7501 20.7688 13.5188 22 12.0001 22C10.4813 22 9.25005 20.7688 9.25005 19.25Z", fill: "currentColor" }) })); +export default AllGizmos; +//# sourceMappingURL=AllGizmos.js.map \ No newline at end of file diff --git a/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/Icon/svg/AllGizmos.js.map b/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/Icon/svg/AllGizmos.js.map new file mode 100644 index 0000000000000000000000000000000000000000..b614579926502ad1c8d8129233e6c753e7d53ca6 --- /dev/null +++ b/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/Icon/svg/AllGizmos.js.map @@ -0,0 +1 @@ +{"version":3,"file":"AllGizmos.js","sourceRoot":"","sources":["../../../../../src/components/Icon/svg/AllGizmos.tsx"],"names":[],"mappings":";AACA,MAAM,SAAS,GAAG,CAAC,KAA8B,EAAE,EAAE,CAAC,CACpD,cAAK,KAAK,EAAC,KAAK,EAAC,MAAM,EAAC,KAAK,EAAC,OAAO,EAAC,WAAW,EAAC,IAAI,EAAC,cAAc,KAAK,KAAK,YAC7E,eACE,CAAC,EAAC,6lFAA6lF,EAC/lF,IAAI,EAAC,cAAc,GACnB,GACE,CACP,CAAA;AACD,eAAe,SAAS,CAAA","sourcesContent":["import type { SVGProps } from \"react\"\nconst AllGizmos = (props: SVGProps) => (\n \n \n \n)\nexport default AllGizmos\n"]} \ No newline at end of file diff --git a/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/Icon/svg/AllProductsExplore.js b/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/Icon/svg/AllProductsExplore.js new file mode 100644 index 0000000000000000000000000000000000000000..165a394716fd1c846d9372372d26d37c6f02e3cb --- /dev/null +++ b/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/Icon/svg/AllProductsExplore.js @@ -0,0 +1,4 @@ +import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime"; +const AllProductsExplore = (props) => (_jsxs("svg", { width: "1em", height: "1em", viewBox: "0 0 24 24", fill: "currentColor", ...props, children: [_jsx("path", { d: "M6.75 4.5C5.50736 4.5 4.5 5.50736 4.5 6.75C4.5 7.99264 5.50736 9 6.75 9C7.99264 9 9 7.99264 9 6.75C9 5.50736 7.99264 4.5 6.75 4.5ZM2.5 6.75C2.5 4.40279 4.40279 2.5 6.75 2.5C9.09721 2.5 11 4.40279 11 6.75C11 9.09721 9.09721 11 6.75 11C4.40279 11 2.5 9.09721 2.5 6.75Z", fill: "currentColor" }), _jsx("path", { d: "M17.25 4.5C16.0074 4.5 15 5.50736 15 6.75C15 7.99264 16.0074 9 17.25 9C18.4926 9 19.5 7.99264 19.5 6.75C19.5 5.50736 18.4926 4.5 17.25 4.5ZM13 6.75C13 4.40279 14.9028 2.5 17.25 2.5C19.5972 2.5 21.5 4.40279 21.5 6.75C21.5 9.09721 19.5972 11 17.25 11C14.9028 11 13 9.09721 13 6.75Z", fill: "currentColor" }), _jsx("path", { d: "M6.75 15C5.50736 15 4.5 16.0074 4.5 17.25C4.5 18.4926 5.50736 19.5 6.75 19.5C7.99264 19.5 9 18.4926 9 17.25C9 16.0074 7.99264 15 6.75 15ZM2.5 17.25C2.5 14.9028 4.40279 13 6.75 13C9.09721 13 11 14.9028 11 17.25C11 19.5972 9.09721 21.5 6.75 21.5C4.40279 21.5 2.5 19.5972 2.5 17.25Z", fill: "currentColor" }), _jsx("path", { d: "M17.25 15C16.0074 15 15 16.0074 15 17.25C15 18.4926 16.0074 19.5 17.25 19.5C18.4926 19.5 19.5 18.4926 19.5 17.25C19.5 16.0074 18.4926 15 17.25 15ZM13 17.25C13 14.9028 14.9028 13 17.25 13C19.5972 13 21.5 14.9028 21.5 17.25C21.5 19.5972 19.5972 21.5 17.25 21.5C14.9028 21.5 13 19.5972 13 17.25Z", fill: "currentColor" })] })); +export default AllProductsExplore; +//# sourceMappingURL=AllProductsExplore.js.map \ No newline at end of file diff --git a/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/Icon/svg/AllProductsExplore.js.map b/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/Icon/svg/AllProductsExplore.js.map new file mode 100644 index 0000000000000000000000000000000000000000..9a8913983b79346c5de3c40c77b8270cf70b7724 --- /dev/null +++ b/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/Icon/svg/AllProductsExplore.js.map @@ -0,0 +1 @@ +{"version":3,"file":"AllProductsExplore.js","sourceRoot":"","sources":["../../../../../src/components/Icon/svg/AllProductsExplore.tsx"],"names":[],"mappings":";AACA,MAAM,kBAAkB,GAAG,CAAC,KAA8B,EAAE,EAAE,CAAC,CAC7D,eAAK,KAAK,EAAC,KAAK,EAAC,MAAM,EAAC,KAAK,EAAC,OAAO,EAAC,WAAW,EAAC,IAAI,EAAC,cAAc,KAAK,KAAK,aAC7E,eACE,CAAC,EAAC,4QAA4Q,EAC9Q,IAAI,EAAC,cAAc,GACnB,EACF,eACE,CAAC,EAAC,yRAAyR,EAC3R,IAAI,EAAC,cAAc,GACnB,EACF,eACE,CAAC,EAAC,yRAAyR,EAC3R,IAAI,EAAC,cAAc,GACnB,EACF,eACE,CAAC,EAAC,sSAAsS,EACxS,IAAI,EAAC,cAAc,GACnB,IACE,CACP,CAAA;AACD,eAAe,kBAAkB,CAAA","sourcesContent":["import type { SVGProps } from \"react\"\nconst AllProductsExplore = (props: SVGProps) => (\n \n \n \n \n \n \n)\nexport default AllProductsExplore\n"]} \ No newline at end of file diff --git a/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/Icon/svg/Analytics.js b/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/Icon/svg/Analytics.js new file mode 100644 index 0000000000000000000000000000000000000000..15b30d8f8a67fd4be9aa7fbfe3103eb0fe760329 --- /dev/null +++ b/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/Icon/svg/Analytics.js @@ -0,0 +1,4 @@ +import { jsx as _jsx } from "react/jsx-runtime"; +const Analytics = (props) => (_jsx("svg", { width: "1em", height: "1em", viewBox: "0 0 24 24", fill: "currentColor", ...props, children: _jsx("path", { d: "M8.7587 3H15.2413C16.0463 2.99999 16.7106 2.99998 17.2518 3.04419C17.8139 3.09012 18.3306 3.18868 18.816 3.43597C19.5686 3.81947 20.1805 4.43139 20.564 5.18404C20.8113 5.66937 20.9099 6.18608 20.9558 6.74817C21 7.28936 21 7.95372 21 8.75868V15.2413C21 16.0463 21 16.7106 20.9558 17.2518C20.9099 17.8139 20.8113 18.3306 20.564 18.816C20.1805 19.5686 19.5686 20.1805 18.816 20.564C18.3306 20.8113 17.8139 20.9099 17.2518 20.9558C16.7106 21 16.0463 21 15.2413 21H8.75868C7.95372 21 7.28936 21 6.74817 20.9558C6.18608 20.9099 5.66937 20.8113 5.18404 20.564C4.43139 20.1805 3.81947 19.5686 3.43597 18.816C3.18868 18.3306 3.09012 17.8139 3.04419 17.2518C2.99998 16.7106 2.99999 16.0463 3 15.2413V8.7587C2.99999 7.95373 2.99998 7.28937 3.04419 6.74817C3.09012 6.18608 3.18868 5.66937 3.43597 5.18404C3.81947 4.43139 4.43139 3.81947 5.18404 3.43597C5.66937 3.18868 6.18608 3.09012 6.74817 3.04419C7.28937 2.99998 7.95373 2.99999 8.7587 3ZM5 13V15.2C5 16.0566 5.00078 16.6389 5.03755 17.089C5.07337 17.5274 5.1383 17.7516 5.21799 17.908C5.40973 18.2843 5.7157 18.5903 6.09202 18.782C6.24842 18.8617 6.47262 18.9266 6.91104 18.9624C7.36113 18.9992 7.94342 19 8.8 19H15.2C16.0566 19 16.6389 18.9992 17.089 18.9624C17.5274 18.9266 17.7516 18.8617 17.908 18.782C18.2843 18.5903 18.5903 18.2843 18.782 17.908C18.8617 17.7516 18.9266 17.5274 18.9624 17.089C18.9992 16.6389 19 16.0566 19 15.2V13H17C16.677 13 16.374 12.844 16.1863 12.5812L14.5 10.2205L10.3137 16.0812C10.126 16.344 9.82295 16.5 9.5 16.5C9.17705 16.5 8.87398 16.344 8.68627 16.0812L6.48538 13H5ZM19 11V8.8C19 7.94342 18.9992 7.36113 18.9624 6.91104C18.9266 6.47262 18.8617 6.24842 18.782 6.09202C18.5903 5.7157 18.2843 5.40973 17.908 5.21799C17.7516 5.1383 17.5274 5.07337 17.089 5.03755C16.6389 5.00078 16.0566 5 15.2 5H8.8C7.94342 5 7.36113 5.00078 6.91104 5.03755C6.47262 5.07337 6.24842 5.1383 6.09202 5.21799C5.7157 5.40973 5.40973 5.7157 5.21799 6.09202C5.1383 6.24842 5.07337 6.47262 5.03755 6.91104C5.00078 7.36113 5 7.94342 5 8.8V11H7C7.32295 11 7.62602 11.156 7.81373 11.4188L9.5 13.7795L13.6863 7.91876C13.874 7.65597 14.177 7.5 14.5 7.5C14.823 7.5 15.126 7.65597 15.3137 7.91876L17.5146 11H19Z", fill: "currentColor" }) })); +export default Analytics; +//# sourceMappingURL=Analytics.js.map \ No newline at end of file diff --git a/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/Icon/svg/Analytics.js.map b/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/Icon/svg/Analytics.js.map new file mode 100644 index 0000000000000000000000000000000000000000..479bec798feec9301a234191711c5f7b38920537 --- /dev/null +++ b/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/Icon/svg/Analytics.js.map @@ -0,0 +1 @@ +{"version":3,"file":"Analytics.js","sourceRoot":"","sources":["../../../../../src/components/Icon/svg/Analytics.tsx"],"names":[],"mappings":";AACA,MAAM,SAAS,GAAG,CAAC,KAA8B,EAAE,EAAE,CAAC,CACpD,cAAK,KAAK,EAAC,KAAK,EAAC,MAAM,EAAC,KAAK,EAAC,OAAO,EAAC,WAAW,EAAC,IAAI,EAAC,cAAc,KAAK,KAAK,YAC7E,eACE,CAAC,EAAC,6mEAA6mE,EAC/mE,IAAI,EAAC,cAAc,GACnB,GACE,CACP,CAAA;AACD,eAAe,SAAS,CAAA","sourcesContent":["import type { SVGProps } from \"react\"\nconst Analytics = (props: SVGProps) => (\n \n \n \n)\nexport default Analytics\n"]} \ No newline at end of file diff --git a/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/Icon/svg/AnalyzeData.js b/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/Icon/svg/AnalyzeData.js new file mode 100644 index 0000000000000000000000000000000000000000..9c385e0cc5b5365da4a41c022bcbd17aa26c5b3b --- /dev/null +++ b/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/Icon/svg/AnalyzeData.js @@ -0,0 +1,4 @@ +import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime"; +const AnalyzeData = (props) => (_jsxs("svg", { width: "1em", height: "1em", viewBox: "0 0 24 24", fill: "currentColor", ...props, children: [_jsx("path", { d: "M15 15C15.5523 15 16 15.4477 16 16C16 16.5523 15.5523 17 15 17H8C7.44772 17 7 16.5523 7 16C7 15.4477 7.44772 15 8 15H15Z", fill: "currentColor" }), _jsx("path", { d: "M13 11C13.5523 11 14 11.4477 14 12C14 12.5523 13.5523 13 13 13H8C7.44772 13 7 12.5523 7 12C7 11.4477 7.44772 11 8 11H13Z", fill: "currentColor" }), _jsx("path", { d: "M10.75 7C11.3023 7 11.75 7.44772 11.75 8C11.75 8.55228 11.3023 9 10.75 9L8 9C7.44772 9 7 8.55229 7 8C7 7.44772 7.44772 7 8 7L10.75 7Z", fill: "currentColor" }), _jsx("path", { d: "M16 7C16.5523 7 17 7.44772 17 8C17 8.55229 16.5523 9 16 9H14.25C13.6977 9 13.25 8.55229 13.25 8C13.25 7.44772 13.6977 7 14.25 7H16Z", fill: "currentColor" }), _jsx("path", { d: "M15.2002 3C16.0237 3 16.7016 2.99898 17.252 3.04395C17.814 3.08988 18.3311 3.18827 18.8164 3.43555L19.0918 3.58985C19.7183 3.97414 20.2289 4.52513 20.5645 5.1836L20.6504 5.36719C20.8356 5.79892 20.9159 6.2562 20.9561 6.74805C21.001 7.29843 21 7.97632 21 8.79981V15.2002C21 16.0237 21.001 16.7016 20.9561 17.252C20.9159 17.7438 20.8356 18.2011 20.6504 18.6328L20.5645 18.8164C20.2289 19.4749 19.7183 20.0259 19.0918 20.4102L18.8164 20.5645C18.3311 20.8117 17.814 20.9101 17.252 20.9561C16.7016 21.001 16.0237 21 15.2002 21H8.79981C7.97632 21 7.29843 21.001 6.74805 20.9561C6.2562 20.9159 5.79892 20.8356 5.36719 20.6504L5.1836 20.5645C4.52513 20.2289 3.97414 19.7183 3.58985 19.0918L3.43555 18.8164C3.18827 18.3311 3.08988 17.814 3.04395 17.252C2.99898 16.7016 3 16.0237 3 15.2002V8.79981C3 7.97632 2.99898 7.29843 3.04395 6.74805C3.08988 6.18599 3.18827 5.6689 3.43555 5.1836C3.81902 4.43109 4.43109 3.81902 5.1836 3.43555C5.6689 3.18827 6.18599 3.08988 6.74805 3.04395C7.29843 2.99898 7.97632 3 8.79981 3H15.2002ZM8.79981 5C7.94342 5 7.36117 5.00035 6.91113 5.03711C6.47272 5.07293 6.2482 5.13809 6.0918 5.21778C5.71555 5.40951 5.40951 5.71555 5.21778 6.0918C5.13809 6.2482 5.07293 6.47272 5.03711 6.91113C5.00035 7.36117 5 7.94342 5 8.79981V15.2002C5 16.0566 5.00035 16.6388 5.03711 17.0889C5.07293 17.5273 5.13809 17.7518 5.21778 17.9082L5.29492 18.0459C5.48707 18.3592 5.76256 18.6145 6.0918 18.7822L6.22461 18.8389C6.37418 18.8924 6.58253 18.936 6.91113 18.9629C7.36117 18.9997 7.94342 19 8.79981 19H15.2002C16.0566 19 16.6388 18.9997 17.0889 18.9629C17.5273 18.9271 17.7518 18.8619 17.9082 18.7822L18.0459 18.7051C18.3592 18.5129 18.6145 18.2374 18.7822 17.9082L18.8389 17.7754C18.8924 17.6258 18.936 17.4175 18.9629 17.0889C18.9997 16.6388 19 16.0566 19 15.2002V8.79981C19 7.94342 18.9997 7.36117 18.9629 6.91113C18.936 6.58253 18.8924 6.37418 18.8389 6.22461L18.7822 6.0918C18.6145 5.76256 18.3592 5.48707 18.0459 5.29492L17.9082 5.21778C17.7518 5.13809 17.5273 5.07293 17.0889 5.03711C16.6388 5.00035 16.0566 5 15.2002 5H8.79981Z", fill: "currentColor" })] })); +export default AnalyzeData; +//# sourceMappingURL=AnalyzeData.js.map \ No newline at end of file diff --git a/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/Icon/svg/AnalyzeData.js.map b/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/Icon/svg/AnalyzeData.js.map new file mode 100644 index 0000000000000000000000000000000000000000..2c8652cc93a96aae3c928cb6ab195f16c26e6af9 --- /dev/null +++ b/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/Icon/svg/AnalyzeData.js.map @@ -0,0 +1 @@ +{"version":3,"file":"AnalyzeData.js","sourceRoot":"","sources":["../../../../../src/components/Icon/svg/AnalyzeData.tsx"],"names":[],"mappings":";AACA,MAAM,WAAW,GAAG,CAAC,KAA8B,EAAE,EAAE,CAAC,CACtD,eAAK,KAAK,EAAC,KAAK,EAAC,MAAM,EAAC,KAAK,EAAC,OAAO,EAAC,WAAW,EAAC,IAAI,EAAC,cAAc,KAAK,KAAK,aAC7E,eACE,CAAC,EAAC,0HAA0H,EAC5H,IAAI,EAAC,cAAc,GACnB,EACF,eACE,CAAC,EAAC,0HAA0H,EAC5H,IAAI,EAAC,cAAc,GACnB,EACF,eACE,CAAC,EAAC,uIAAuI,EACzI,IAAI,EAAC,cAAc,GACnB,EACF,eACE,CAAC,EAAC,qIAAqI,EACvI,IAAI,EAAC,cAAc,GACnB,EACF,eACE,CAAC,EAAC,w/DAAw/D,EAC1/D,IAAI,EAAC,cAAc,GACnB,IACE,CACP,CAAA;AACD,eAAe,WAAW,CAAA","sourcesContent":["import type { SVGProps } from \"react\"\nconst AnalyzeData = (props: SVGProps) => (\n \n \n \n \n \n \n \n)\nexport default AnalyzeData\n"]} \ No newline at end of file diff --git a/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/Icon/svg/ApiKey.js b/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/Icon/svg/ApiKey.js new file mode 100644 index 0000000000000000000000000000000000000000..bfb7ba4b05902232acdf0543ffcf4ca30489078a --- /dev/null +++ b/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/Icon/svg/ApiKey.js @@ -0,0 +1,4 @@ +import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime"; +const ApiKey = (props) => (_jsxs("svg", { width: "1em", height: "1em", viewBox: "0 0 24 24", fill: "currentColor", ...props, children: [_jsx("path", { d: "M16 9.75C16.9665 9.75 17.75 8.9665 17.75 8C17.75 7.0335 16.9665 6.25 16 6.25C15.0335 6.25 14.25 7.0335 14.25 8C14.25 8.9665 15.0335 9.75 16 9.75Z", fill: "currentColor" }), _jsx("path", { d: "M15 2C11.134 2 8 5.13401 8 9C8 9.49204 8.05092 9.97307 8.14801 10.4378L3.73223 14.8536C3.26339 15.3224 3 15.9583 3 16.6213V20C3 20.5523 3.44772 21 4 21H7.37868C8.04172 21 8.6776 20.7366 9.14645 20.2678L10.2071 19.2071C10.3946 19.0196 10.5 18.7652 10.5 18.5V17.5H11.5C11.7652 17.5 12.0196 17.3946 12.2071 17.2071L13.5622 15.852C14.0269 15.9491 14.508 16 15 16C18.866 16 22 12.866 22 9C22 5.13401 18.866 2 15 2ZM10 9C10 6.23858 12.2386 4 15 4C17.7614 4 20 6.23858 20 9C20 11.7614 17.7614 14 15 14C14.4932 14 14.0057 13.9249 13.5471 13.7859C13.1941 13.6789 12.8108 13.775 12.55 14.0358L11.0858 15.5H9.5C8.94772 15.5 8.5 15.9477 8.5 16.5V18.0858L7.73223 18.8536C7.63847 18.9473 7.51129 19 7.37868 19H5V16.6213C5 16.4887 5.05268 16.3615 5.14645 16.2678L9.96418 11.45C10.225 11.1892 10.3211 10.8059 10.2141 10.4529C10.0751 9.99431 10 9.50683 10 9Z", fill: "currentColor" })] })); +export default ApiKey; +//# sourceMappingURL=ApiKey.js.map \ No newline at end of file diff --git a/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/Icon/svg/ApiKey.js.map b/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/Icon/svg/ApiKey.js.map new file mode 100644 index 0000000000000000000000000000000000000000..9bac31e3cc6e63f2f9af60f49a12ae7ea2ee03c6 --- /dev/null +++ b/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/Icon/svg/ApiKey.js.map @@ -0,0 +1 @@ +{"version":3,"file":"ApiKey.js","sourceRoot":"","sources":["../../../../../src/components/Icon/svg/ApiKey.tsx"],"names":[],"mappings":";AACA,MAAM,MAAM,GAAG,CAAC,KAA8B,EAAE,EAAE,CAAC,CACjD,eAAK,KAAK,EAAC,KAAK,EAAC,MAAM,EAAC,KAAK,EAAC,OAAO,EAAC,WAAW,EAAC,IAAI,EAAC,cAAc,KAAK,KAAK,aAC7E,eACE,CAAC,EAAC,mJAAmJ,EACrJ,IAAI,EAAC,cAAc,GACnB,EACF,eACE,CAAC,EAAC,20BAA20B,EAC70B,IAAI,EAAC,cAAc,GACnB,IACE,CACP,CAAA;AACD,eAAe,MAAM,CAAA","sourcesContent":["import type { SVGProps } from \"react\"\nconst ApiKey = (props: SVGProps) => (\n \n \n \n \n)\nexport default ApiKey\n"]} \ No newline at end of file diff --git a/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/Icon/svg/ApiKeyAdmin.js b/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/Icon/svg/ApiKeyAdmin.js new file mode 100644 index 0000000000000000000000000000000000000000..06518bd3e5ba666f78e01f36dcd29abf50b0b846 --- /dev/null +++ b/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/Icon/svg/ApiKeyAdmin.js @@ -0,0 +1,4 @@ +import { jsx as _jsx } from "react/jsx-runtime"; +const ApiKeyAdmin = (props) => (_jsx("svg", { width: "1em", height: "1em", viewBox: "0 0 24 24", fill: "currentColor", ...props, children: _jsx("path", { d: "M13.677 4C11.0131 4 8.85352 6.15957 8.85352 8.82353C8.85352 9.31239 8.92592 9.78254 9.05992 10.2248C9.16689 10.5778 9.07083 10.961 8.81 11.2219L4.14645 15.8854C4.05268 15.9792 4 16.1064 4 16.239V18.5H6.26103C6.39364 18.5 6.52082 18.4473 6.61459 18.3536L7 17.9681V16.5C7 15.9477 7.44772 15.5 8 15.5C8.55228 15.5 9 15.9477 9 16.5V18.3824C9 18.6476 8.89464 18.9019 8.70711 19.0895L8.0288 19.7678C7.55996 20.2366 6.92407 20.5 6.26103 20.5H3C2.44772 20.5 2 20.0523 2 19.5V16.239C2 15.5759 2.26339 14.94 2.73223 14.4712L6.99446 10.209C6.90198 9.76095 6.85352 9.29747 6.85352 8.82353C6.85352 5.055 9.90851 2 13.677 2C16.4794 2 18.8849 3.68911 19.9354 6.10064C20.1559 6.60698 19.9243 7.19624 19.4179 7.4168C18.9116 7.63735 18.3223 7.40569 18.1018 6.89936C17.3577 5.19109 15.6553 4 13.677 4ZM16.5 11C17.3284 11 18 11.6716 18 12.5V13.5H15V12.5C15 11.6716 15.6716 11 16.5 11ZM20 13.6707V12.5C20 10.567 18.433 9 16.5 9C14.567 9 13 10.567 13 12.5V13.6707C11.8348 14.0825 11 15.1938 11 16.5V18.5C11 20.1569 12.3431 21.5 14 21.5H19C20.6569 21.5 22 20.1569 22 18.5V16.5C22 15.1938 21.1652 14.0825 20 13.6707ZM14 15.5H19C19.5523 15.5 20 15.9477 20 16.5V18.5C20 19.0523 19.5523 19.5 19 19.5H14C13.4477 19.5 13 19.0523 13 18.5V16.5C13 15.9477 13.4477 15.5 14 15.5Z", fill: "currentColor" }) })); +export default ApiKeyAdmin; +//# sourceMappingURL=ApiKeyAdmin.js.map \ No newline at end of file diff --git a/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/Icon/svg/ApiKeyAdmin.js.map b/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/Icon/svg/ApiKeyAdmin.js.map new file mode 100644 index 0000000000000000000000000000000000000000..5e67ffbe0747cda3574daad5803d9c63f74dbe8c --- /dev/null +++ b/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/Icon/svg/ApiKeyAdmin.js.map @@ -0,0 +1 @@ +{"version":3,"file":"ApiKeyAdmin.js","sourceRoot":"","sources":["../../../../../src/components/Icon/svg/ApiKeyAdmin.tsx"],"names":[],"mappings":";AACA,MAAM,WAAW,GAAG,CAAC,KAA8B,EAAE,EAAE,CAAC,CACtD,cAAK,KAAK,EAAC,KAAK,EAAC,MAAM,EAAC,KAAK,EAAC,OAAO,EAAC,WAAW,EAAC,IAAI,EAAC,cAAc,KAAK,KAAK,YAC7E,eACE,CAAC,EAAC,+tCAA+tC,EACjuC,IAAI,EAAC,cAAc,GACnB,GACE,CACP,CAAA;AACD,eAAe,WAAW,CAAA","sourcesContent":["import type { SVGProps } from \"react\"\nconst ApiKeyAdmin = (props: SVGProps) => (\n \n \n \n)\nexport default ApiKeyAdmin\n"]} \ No newline at end of file diff --git a/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/Icon/svg/ApiKeyServiceAccount.js b/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/Icon/svg/ApiKeyServiceAccount.js new file mode 100644 index 0000000000000000000000000000000000000000..08216c2e7633f13f25e4b1862c5f0d13f16a4582 --- /dev/null +++ b/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/Icon/svg/ApiKeyServiceAccount.js @@ -0,0 +1,4 @@ +import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime"; +const ApiKeyServiceAccount = (props) => (_jsxs("svg", { width: "1em", height: "1em", viewBox: "0 0 24 24", fill: "currentColor", ...props, children: [_jsx("path", { d: "M8.85294 8.82353C8.85294 6.15957 11.0125 4 13.6765 4C16.2502 4 18.3537 6.01623 18.4927 8.55468C18.5229 9.10613 18.9944 9.5287 19.5458 9.4985C20.0973 9.46831 20.5199 8.99678 20.4897 8.44532C20.2929 4.85225 17.3181 2 13.6765 2C9.90794 2 6.85294 5.055 6.85294 8.82353C6.85294 9.29764 6.90144 9.76128 6.99398 10.2095L2.71931 14.4841C2.25874 14.9447 2 15.5694 2 16.2207V19.5C2 20.0523 2.44772 20.5 3 20.5H6.27931C6.93065 20.5 7.55531 20.2413 8.01588 19.7807L8.70711 19.0895C8.89464 18.9019 9 18.6476 9 18.3824V16.5C9 15.9477 8.55228 15.5 8 15.5C7.44772 15.5 7 15.9477 7 16.5V17.9681L6.60166 18.3665C6.51617 18.452 6.40021 18.5 6.27931 18.5H4V16.2207C4 16.0998 4.04803 15.9838 4.13352 15.8983L8.80956 11.2223C9.07041 10.9615 9.16646 10.5782 9.05946 10.2251C8.92539 9.7828 8.85294 9.31253 8.85294 8.82353Z", fill: "currentColor" }), _jsx("path", { d: "M15.0004 17.2C15.6079 17.2 16.1004 16.7075 16.1004 16.1C16.1004 15.4925 15.6079 15 15.0004 15C14.3929 15 13.9004 15.4925 13.9004 16.1C13.9004 16.7075 14.3929 17.2 15.0004 17.2Z", fill: "currentColor" }), _jsx("path", { d: "M19.6004 16.1C19.6004 16.7075 19.1079 17.2 18.5004 17.2C17.8929 17.2 17.4004 16.7075 17.4004 16.1C17.4004 15.4925 17.8929 15 18.5004 15C19.1079 15 19.6004 15.4925 19.6004 16.1Z", fill: "currentColor" }), _jsx("path", { d: "M16.5 10.5C17.0523 10.5 17.5 10.9477 17.5 11.5V12L19.6361 12C20.0252 12 20.3753 12 20.6666 12.0238C20.9786 12.0492 21.3101 12.1069 21.635 12.2725C22.1054 12.5122 22.4878 12.8946 22.7275 13.365C22.8931 13.6899 22.9508 14.0214 22.9762 14.3334C23 14.6247 23 14.9748 23 15.3638V15.7413C23 16.5462 23 17.2107 22.9558 17.7518C22.9099 18.3139 22.8113 18.8306 22.564 19.316C22.1805 20.0686 21.5686 20.6805 20.816 21.064C20.3306 21.3113 19.8139 21.4099 19.2518 21.4558C18.7106 21.5 18.0463 21.5 17.2413 21.5H16.2587C15.4537 21.5 14.7894 21.5 14.2482 21.4558C13.6861 21.4099 13.1694 21.3113 12.684 21.064C11.9314 20.6805 11.3195 20.0686 10.936 19.316C10.6887 18.8306 10.5901 18.3139 10.5442 17.7518C10.5 17.2106 10.5 16.5463 10.5 15.7414L10.5 15.3639C10.5 14.9749 10.5 14.6247 10.5238 14.3334C10.5493 14.0214 10.6069 13.6899 10.7725 13.365C11.0122 12.8946 11.3946 12.5122 11.865 12.2725C12.1899 12.1069 12.5214 12.0492 12.8334 12.0238C13.1247 12 13.4748 12 13.8639 12L15.5 12V11.5C15.5 10.9477 15.9477 10.5 16.5 10.5ZM13.9 14C13.4635 14 13.1962 14.0008 12.9962 14.0171C12.9031 14.0247 12.8467 14.0343 12.8125 14.0423C12.7962 14.0462 12.7862 14.0494 12.7808 14.0513C12.7756 14.0532 12.773 14.0545 12.773 14.0545C12.6789 14.1024 12.6024 14.1789 12.5545 14.273C12.5545 14.273 12.5532 14.2756 12.5513 14.2808C12.5494 14.2862 12.5462 14.2962 12.5423 14.3125C12.5343 14.3467 12.5247 14.4031 12.5171 14.4962C12.5008 14.6962 12.5 14.9635 12.5 15.4V15.7C12.5 16.5566 12.5008 17.1389 12.5376 17.589C12.5734 18.0274 12.6383 18.2516 12.718 18.408C12.9097 18.7843 13.2157 19.0903 13.592 19.282C13.7484 19.3617 13.9726 19.4266 14.411 19.4624C14.8611 19.4992 15.4434 19.5 16.3 19.5H17.2C18.0566 19.5 18.6389 19.4992 19.089 19.4624C19.5274 19.4266 19.7516 19.3617 19.908 19.282C20.2843 19.0903 20.5903 18.7843 20.782 18.408C20.8617 18.2516 20.9266 18.0274 20.9625 17.589C20.9992 17.1389 21 16.5566 21 15.7V15.4C21 14.9635 20.9992 14.6962 20.9829 14.4962C20.9753 14.4031 20.9657 14.3467 20.9577 14.3125C20.9538 14.2962 20.9506 14.2862 20.9487 14.2808C20.9468 14.2756 20.9455 14.273 20.9455 14.273C20.8976 14.1789 20.8211 14.1024 20.727 14.0545L20.7257 14.0539C20.7257 14.0539 20.7225 14.0525 20.7192 14.0513C20.7138 14.0494 20.7038 14.0462 20.6875 14.0423C20.6533 14.0343 20.5969 14.0247 20.5038 14.0171C20.3038 14.0008 20.0365 14 19.6 14H13.9Z", fill: "currentColor" })] })); +export default ApiKeyServiceAccount; +//# sourceMappingURL=ApiKeyServiceAccount.js.map \ No newline at end of file diff --git a/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/Icon/svg/ApiKeyServiceAccount.js.map b/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/Icon/svg/ApiKeyServiceAccount.js.map new file mode 100644 index 0000000000000000000000000000000000000000..a23253873e5b42bf3679b749b963463964316cbd --- /dev/null +++ b/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/Icon/svg/ApiKeyServiceAccount.js.map @@ -0,0 +1 @@ +{"version":3,"file":"ApiKeyServiceAccount.js","sourceRoot":"","sources":["../../../../../src/components/Icon/svg/ApiKeyServiceAccount.tsx"],"names":[],"mappings":";AACA,MAAM,oBAAoB,GAAG,CAAC,KAA8B,EAAE,EAAE,CAAC,CAC/D,eAAK,KAAK,EAAC,KAAK,EAAC,MAAM,EAAC,KAAK,EAAC,OAAO,EAAC,WAAW,EAAC,IAAI,EAAC,cAAc,KAAK,KAAK,aAC7E,eACE,CAAC,EAAC,gyBAAgyB,EAClyB,IAAI,EAAC,cAAc,GACnB,EACF,eACE,CAAC,EAAC,kLAAkL,EACpL,IAAI,EAAC,cAAc,GACnB,EACF,eACE,CAAC,EAAC,kLAAkL,EACpL,IAAI,EAAC,cAAc,GACnB,EACF,eACE,CAAC,EAAC,+wEAA+wE,EACjxE,IAAI,EAAC,cAAc,GACnB,IACE,CACP,CAAA;AACD,eAAe,oBAAoB,CAAA","sourcesContent":["import type { SVGProps } from \"react\"\nconst ApiKeyServiceAccount = (props: SVGProps) => (\n \n \n \n \n \n \n)\nexport default ApiKeyServiceAccount\n"]} \ No newline at end of file diff --git a/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/Icon/svg/ApiKeys.js b/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/Icon/svg/ApiKeys.js new file mode 100644 index 0000000000000000000000000000000000000000..630d8e7dee008e051eccc10b544de275bb71e4bd --- /dev/null +++ b/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/Icon/svg/ApiKeys.js @@ -0,0 +1,4 @@ +import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime"; +const ApiKeys = (props) => (_jsxs("svg", { width: "1em", height: "1em", viewBox: "0 0 24 24", fill: "currentColor", ...props, children: [_jsx("path", { d: "M7.75 9C8.57843 9 9.25 8.32843 9.25 7.5C9.25 6.67157 8.57843 6 7.75 6C6.92157 6 6.25 6.67157 6.25 7.5C6.25 8.32843 6.92157 9 7.75 9Z", fill: "currentColor" }), _jsx("path", { d: "M7.75 2.5C4.43629 2.5 1.75 5.18629 1.75 8.5C1.75 10.5087 2.73751 12.2858 4.25 13.3738V17.6716C4.25 18.4672 4.56607 19.2303 5.12868 19.7929L6.68934 21.3536C7.27513 21.9393 8.22487 21.9393 8.81066 21.3536L10.3713 19.7929C10.9339 19.2303 11.25 18.4672 11.25 17.6716V17C11.25 16.8026 11.1916 16.6096 11.0821 16.4453L10.4519 15.5L11.0821 14.5547C11.1916 14.3904 11.25 14.1974 11.25 14V13.3738C11.3027 13.3359 11.3548 13.2972 11.4062 13.2576C12.1611 14.0074 13.0998 14.5388 14.1164 14.8059L15.6565 18.818C15.9416 19.5608 16.5101 20.1599 17.237 20.4835L19.2533 21.3813C20.0101 21.7182 20.8968 21.3779 21.2337 20.621L22.1314 18.6047C22.4551 17.8779 22.4767 17.0522 22.1915 16.3094L21.9509 15.6825C21.8801 15.4982 21.7564 15.3389 21.5953 15.2248L20.6682 14.5681L20.9178 13.4598C20.9611 13.2672 20.9465 13.066 20.8758 12.8817L20.6513 12.2969C21.6732 10.7391 21.9582 8.72632 21.2384 6.85114C20.0509 3.75753 16.5803 2.21234 13.4867 3.39987C12.9331 3.61237 12.428 3.89873 11.979 4.24373C10.8943 3.16595 9.39991 2.5 7.75 2.5ZM3.75 8.5C3.75 6.29086 5.54086 4.5 7.75 4.5C9.95914 4.5 11.75 6.29086 11.75 8.5C11.75 9.97931 10.9475 11.2724 9.74927 11.9655C9.44028 12.1442 9.25 12.4741 9.25 12.8311V13.6972L8.41795 14.9453C8.19402 15.2812 8.19402 15.7188 8.41795 16.0547L9.25 17.3028V17.6716C9.25 17.9368 9.14464 18.1911 8.95711 18.3787L7.75 19.5858L6.54289 18.3787C6.35536 18.1911 6.25 17.9368 6.25 17.6716V12.8311C6.25 12.4741 6.05972 12.1442 5.75073 11.9655C4.55251 11.2724 3.75 9.97931 3.75 8.5ZM15.0126 12.9532C14.1627 12.8179 13.3714 12.4105 12.7679 11.7904C13.3885 10.8459 13.75 9.71537 13.75 8.5C13.75 7.55699 13.5325 6.66479 13.1448 5.87086C13.456 5.62332 13.8103 5.41795 14.2035 5.26703C16.2659 4.47534 18.5796 5.50547 19.3713 7.56788C19.9014 8.94884 19.6156 10.4435 18.7455 11.52C18.5211 11.7976 18.4617 12.1737 18.5896 12.507L18.9001 13.3158L18.5706 14.7792C18.4819 15.173 18.6387 15.5815 18.9682 15.8149L20.1922 16.6819L20.3244 17.0262C20.4194 17.2738 20.4122 17.549 20.3043 17.7913L19.61 19.3508L18.0505 18.6564C17.8082 18.5486 17.6187 18.3489 17.5236 18.1013L15.789 13.5824C15.6611 13.2491 15.3652 13.0093 15.0126 12.9532Z", fill: "currentColor" })] })); +export default ApiKeys; +//# sourceMappingURL=ApiKeys.js.map \ No newline at end of file diff --git a/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/Icon/svg/ApiKeys.js.map b/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/Icon/svg/ApiKeys.js.map new file mode 100644 index 0000000000000000000000000000000000000000..3b849b1d5dd1ec58c406d923f221e0a78ff220dc --- /dev/null +++ b/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/Icon/svg/ApiKeys.js.map @@ -0,0 +1 @@ +{"version":3,"file":"ApiKeys.js","sourceRoot":"","sources":["../../../../../src/components/Icon/svg/ApiKeys.tsx"],"names":[],"mappings":";AACA,MAAM,OAAO,GAAG,CAAC,KAA8B,EAAE,EAAE,CAAC,CAClD,eAAK,KAAK,EAAC,KAAK,EAAC,MAAM,EAAC,KAAK,EAAC,OAAO,EAAC,WAAW,EAAC,IAAI,EAAC,cAAc,KAAK,KAAK,aAC7E,eACE,CAAC,EAAC,sIAAsI,EACxI,IAAI,EAAC,cAAc,GACnB,EACF,eACE,CAAC,EAAC,ukEAAukE,EACzkE,IAAI,EAAC,cAAc,GACnB,IACE,CACP,CAAA;AACD,eAAe,OAAO,CAAA","sourcesContent":["import type { SVGProps } from \"react\"\nconst ApiKeys = (props: SVGProps) => (\n \n \n \n \n)\nexport default ApiKeys\n"]} \ No newline at end of file diff --git a/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/Icon/svg/Archive.js b/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/Icon/svg/Archive.js new file mode 100644 index 0000000000000000000000000000000000000000..e52d147fc51f72a035878c32a2e97477b87f934d --- /dev/null +++ b/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/Icon/svg/Archive.js @@ -0,0 +1,4 @@ +import { jsx as _jsx } from "react/jsx-runtime"; +const Archive = (props) => (_jsx("svg", { width: "1em", height: "1em", viewBox: "0 0 24 24", fill: "currentColor", ...props, children: _jsx("path", { d: "M2.5 6C2.5 4.34315 3.84315 3 5.5 3H18.5C20.1569 3 21.5 4.34315 21.5 6V7C21.5 7.61337 21.3159 8.18374 21 8.6589V15.2413C21 16.0463 21 16.7106 20.9558 17.2518C20.9099 17.8139 20.8113 18.3306 20.564 18.816C20.1805 19.5686 19.5686 20.1805 18.816 20.564C18.3306 20.8113 17.8139 20.9099 17.2518 20.9558C16.7106 21 16.0463 21 15.2413 21H8.75868C7.95372 21 7.28936 21 6.74817 20.9558C6.18608 20.9099 5.66937 20.8113 5.18404 20.564C4.43139 20.1805 3.81947 19.5686 3.43597 18.816C3.18868 18.3306 3.09012 17.8139 3.04419 17.2518C2.99998 16.7106 2.99999 16.0463 3 15.2413L3 8.6589C2.68408 8.18374 2.5 7.61337 2.5 7V6ZM5.5 8H18.5C19.0523 8 19.5 7.55228 19.5 7V6C19.5 5.44772 19.0523 5 18.5 5H5.5C4.94772 5 4.5 5.44772 4.5 6V7C4.5 7.55228 4.94772 8 5.5 8ZM5 10V15.2C5 16.0566 5.00078 16.6389 5.03755 17.089C5.07337 17.5274 5.1383 17.7516 5.21799 17.908C5.40973 18.2843 5.7157 18.5903 6.09202 18.782C6.24842 18.8617 6.47262 18.9266 6.91104 18.9624C7.36113 18.9992 7.94342 19 8.8 19H15.2C16.0566 19 16.6389 18.9992 17.089 18.9624C17.5274 18.9266 17.7516 18.8617 17.908 18.782C18.2843 18.5903 18.5903 18.2843 18.782 17.908C18.8617 17.7516 18.9266 17.5274 18.9624 17.089C18.9992 16.6389 19 16.0566 19 15.2V10H5ZM15 13C15 13.5523 14.5523 14 14 14H10C9.44772 14 9 13.5523 9 13C9 12.4477 9.44772 12 10 12H14C14.5523 12 15 12.4477 15 13Z", fill: "currentColor" }) })); +export default Archive; +//# sourceMappingURL=Archive.js.map \ No newline at end of file diff --git a/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/Icon/svg/Archive.js.map b/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/Icon/svg/Archive.js.map new file mode 100644 index 0000000000000000000000000000000000000000..ce4e81d1d06e77a77b9e79dfa5bd3f8bb4df9b16 --- /dev/null +++ b/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/Icon/svg/Archive.js.map @@ -0,0 +1 @@ +{"version":3,"file":"Archive.js","sourceRoot":"","sources":["../../../../../src/components/Icon/svg/Archive.tsx"],"names":[],"mappings":";AACA,MAAM,OAAO,GAAG,CAAC,KAA8B,EAAE,EAAE,CAAC,CAClD,cAAK,KAAK,EAAC,KAAK,EAAC,MAAM,EAAC,KAAK,EAAC,OAAO,EAAC,WAAW,EAAC,IAAI,EAAC,cAAc,KAAK,KAAK,YAC7E,eACE,CAAC,EAAC,qyCAAqyC,EACvyC,IAAI,EAAC,cAAc,GACnB,GACE,CACP,CAAA;AACD,eAAe,OAAO,CAAA","sourcesContent":["import type { SVGProps } from \"react\"\nconst Archive = (props: SVGProps) => (\n \n \n \n)\nexport default Archive\n"]} \ No newline at end of file diff --git a/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/Icon/svg/Array.js b/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/Icon/svg/Array.js new file mode 100644 index 0000000000000000000000000000000000000000..28ba70bfe9d6cac9ddaaafb23048af30ada9bfb6 --- /dev/null +++ b/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/Icon/svg/Array.js @@ -0,0 +1,4 @@ +import { jsx as _jsx } from "react/jsx-runtime"; +const Array = (props) => (_jsx("svg", { width: "1em", height: "1em", viewBox: "0 0 24 24", fill: "currentColor", ...props, children: _jsx("path", { d: "M3 16.8V7.2c0-.543-.001-1.012.03-1.395.033-.396.104-.789.297-1.167a3 3 0 0 1 1.31-1.31c.379-.194.772-.265 1.168-.298C6.188 3 6.657 3 7.2 3H8a1 1 0 1 1 0 2h-.8c-.576 0-.949.001-1.232.024-.272.023-.373.06-.422.085a1 1 0 0 0-.437.437c-.025.05-.062.15-.085.422C5.001 6.25 5 6.624 5 7.2v9.6c0 .576.001.949.024 1.232.023.272.06.373.085.422.096.188.249.34.437.437.05.025.15.062.422.085.283.023.656.024 1.232.024H8a1 1 0 1 1 0 2h-.8c-.543 0-1.012.001-1.395-.03-.396-.033-.789-.104-1.167-.297a3 3 0 0 1-1.31-1.31c-.194-.379-.265-.772-.298-1.168C3 17.812 3 17.343 3 16.8Zm16 0V7.2c0-.576-.001-.949-.024-1.232-.023-.272-.06-.373-.085-.422a.999.999 0 0 0-.437-.437c-.05-.025-.15-.062-.422-.085A16.943 16.943 0 0 0 16.8 5H16a1 1 0 1 1 0-2h.8c.543 0 1.012-.001 1.395.03.396.033.789.104 1.167.297a3 3 0 0 1 1.31 1.31c.194.379.265.772.298 1.168.031.383.03.852.03 1.395v9.6c0 .543.001 1.012-.03 1.395-.033.396-.104.789-.297 1.167a3 3 0 0 1-1.31 1.31c-.379.194-.772.265-1.168.298-.383.031-.852.03-1.395.03H16a1 1 0 1 1 0-2h.8c.576 0 .949-.001 1.232-.024.272-.023.373-.06.422-.085a.999.999 0 0 0 .437-.437c.025-.05.062-.15.085-.422.023-.283.024-.656.024-1.232Z" }) })); +export default Array; +//# sourceMappingURL=Array.js.map \ No newline at end of file diff --git a/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/Icon/svg/Array.js.map b/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/Icon/svg/Array.js.map new file mode 100644 index 0000000000000000000000000000000000000000..e734c4b3f9c285724bc7db679a4a730a0ea79857 --- /dev/null +++ b/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/Icon/svg/Array.js.map @@ -0,0 +1 @@ +{"version":3,"file":"Array.js","sourceRoot":"","sources":["../../../../../src/components/Icon/svg/Array.tsx"],"names":[],"mappings":";AACA,MAAM,KAAK,GAAG,CAAC,KAA8B,EAAE,EAAE,CAAC,CAChD,cAAK,KAAK,EAAC,KAAK,EAAC,MAAM,EAAC,KAAK,EAAC,OAAO,EAAC,WAAW,EAAC,IAAI,EAAC,cAAc,KAAK,KAAK,YAC7E,eAAM,CAAC,EAAC,unCAAunC,GAAG,GAC9nC,CACP,CAAA;AACD,eAAe,KAAK,CAAA","sourcesContent":["import type { SVGProps } from \"react\"\nconst Array = (props: SVGProps) => (\n \n \n \n)\nexport default Array\n"]} \ No newline at end of file diff --git a/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/Icon/svg/ArrowBottomLeftSm.js b/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/Icon/svg/ArrowBottomLeftSm.js new file mode 100644 index 0000000000000000000000000000000000000000..a8985193e0b2e559c640fd968612857d2a3d787f --- /dev/null +++ b/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/Icon/svg/ArrowBottomLeftSm.js @@ -0,0 +1,4 @@ +import { jsx as _jsx } from "react/jsx-runtime"; +const ArrowBottomLeftSm = (props) => (_jsx("svg", { width: "1em", height: "1em", viewBox: "0 0 24 24", fill: "currentColor", ...props, children: _jsx("path", { d: "M7.75735 17.2426C7.20507 17.2426 6.75735 16.7949 6.75735 16.2426L6.75735 9.17154C6.75735 8.61925 7.20507 8.17154 7.75735 8.17154C8.30964 8.17154 8.75735 8.61925 8.75735 9.17154V13.8284L15.5355 7.05022C15.9261 6.65969 16.5592 6.65969 16.9497 7.05022C17.3403 7.44074 17.3403 8.07391 16.9497 8.46443L10.1716 15.2426H14.8284C15.3807 15.2426 15.8284 15.6903 15.8284 16.2426C15.8284 16.7949 15.3807 17.2426 14.8284 17.2426H7.75735Z", fill: "currentColor" }) })); +export default ArrowBottomLeftSm; +//# sourceMappingURL=ArrowBottomLeftSm.js.map \ No newline at end of file diff --git a/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/Icon/svg/ArrowBottomLeftSm.js.map b/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/Icon/svg/ArrowBottomLeftSm.js.map new file mode 100644 index 0000000000000000000000000000000000000000..f20e144b4024d4e61afd57960b5fb555f491afbe --- /dev/null +++ b/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/Icon/svg/ArrowBottomLeftSm.js.map @@ -0,0 +1 @@ +{"version":3,"file":"ArrowBottomLeftSm.js","sourceRoot":"","sources":["../../../../../src/components/Icon/svg/ArrowBottomLeftSm.tsx"],"names":[],"mappings":";AACA,MAAM,iBAAiB,GAAG,CAAC,KAA8B,EAAE,EAAE,CAAC,CAC5D,cAAK,KAAK,EAAC,KAAK,EAAC,MAAM,EAAC,KAAK,EAAC,OAAO,EAAC,WAAW,EAAC,IAAI,EAAC,cAAc,KAAK,KAAK,YAC7E,eACE,CAAC,EAAC,2aAA2a,EAC7a,IAAI,EAAC,cAAc,GACnB,GACE,CACP,CAAA;AACD,eAAe,iBAAiB,CAAA","sourcesContent":["import type { SVGProps } from \"react\"\nconst ArrowBottomLeftSm = (props: SVGProps) => (\n \n \n \n)\nexport default ArrowBottomLeftSm\n"]} \ No newline at end of file diff --git a/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/Icon/svg/ArrowBottomRightSm.js b/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/Icon/svg/ArrowBottomRightSm.js new file mode 100644 index 0000000000000000000000000000000000000000..a0c198e6f94002842e22dfeefa838b314fa63cbd --- /dev/null +++ b/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/Icon/svg/ArrowBottomRightSm.js @@ -0,0 +1,4 @@ +import { jsx as _jsx } from "react/jsx-runtime"; +const ArrowBottomRightSm = (props) => (_jsx("svg", { width: "1em", height: "1em", viewBox: "0 0 24 24", fill: "currentColor", ...props, children: _jsx("path", { d: "M17.2426 16.2426C17.2426 16.7949 16.7949 17.2426 16.2426 17.2426H9.17157C8.61928 17.2426 8.17157 16.7949 8.17157 16.2426C8.17157 15.6903 8.61928 15.2426 9.17157 15.2426H13.8284L7.05025 8.46443C6.65972 8.07391 6.65972 7.44074 7.05025 7.05022C7.44077 6.65969 8.07394 6.65969 8.46446 7.05022L15.2426 13.8284V9.17154C15.2426 8.61925 15.6904 8.17154 16.2426 8.17154C16.7949 8.17154 17.2426 8.61925 17.2426 9.17154V16.2426Z", fill: "currentColor" }) })); +export default ArrowBottomRightSm; +//# sourceMappingURL=ArrowBottomRightSm.js.map \ No newline at end of file diff --git a/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/Icon/svg/ArrowBottomRightSm.js.map b/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/Icon/svg/ArrowBottomRightSm.js.map new file mode 100644 index 0000000000000000000000000000000000000000..17fd3daf89dc5d405b13c1d5ab4602e31a17d157 --- /dev/null +++ b/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/Icon/svg/ArrowBottomRightSm.js.map @@ -0,0 +1 @@ +{"version":3,"file":"ArrowBottomRightSm.js","sourceRoot":"","sources":["../../../../../src/components/Icon/svg/ArrowBottomRightSm.tsx"],"names":[],"mappings":";AACA,MAAM,kBAAkB,GAAG,CAAC,KAA8B,EAAE,EAAE,CAAC,CAC7D,cAAK,KAAK,EAAC,KAAK,EAAC,MAAM,EAAC,KAAK,EAAC,OAAO,EAAC,WAAW,EAAC,IAAI,EAAC,cAAc,KAAK,KAAK,YAC7E,eACE,CAAC,EAAC,maAAma,EACra,IAAI,EAAC,cAAc,GACnB,GACE,CACP,CAAA;AACD,eAAe,kBAAkB,CAAA","sourcesContent":["import type { SVGProps } from \"react\"\nconst ArrowBottomRightSm = (props: SVGProps) => (\n \n \n \n)\nexport default ArrowBottomRightSm\n"]} \ No newline at end of file diff --git a/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/Icon/svg/ArrowCurved.js b/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/Icon/svg/ArrowCurved.js new file mode 100644 index 0000000000000000000000000000000000000000..0c207758d0d2002c4d054d92a442871b89a22c10 --- /dev/null +++ b/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/Icon/svg/ArrowCurved.js @@ -0,0 +1,4 @@ +import { jsx as _jsx } from "react/jsx-runtime"; +const ArrowCurved = (props) => (_jsx("svg", { width: "1em", height: "1em", viewBox: "0 0 24 24", fill: "currentColor", ...props, children: _jsx("path", { fillRule: "evenodd", d: "M5 6a1 1 0 0 1 1 1v4a1 1 0 0 0 1 1h9.586l-2.293-2.293a1 1 0 0 1 1.414-1.414l4 4a1 1 0 0 1 0 1.414l-4 4a1 1 0 0 1-1.414-1.414L16.586 14H7a3 3 0 0 1-3-3V7a1 1 0 0 1 1-1Z", clipRule: "evenodd" }) })); +export default ArrowCurved; +//# sourceMappingURL=ArrowCurved.js.map \ No newline at end of file diff --git a/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/Icon/svg/ArrowCurved.js.map b/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/Icon/svg/ArrowCurved.js.map new file mode 100644 index 0000000000000000000000000000000000000000..f44aaefb8e37c52fa1027330e9935ccb91c3ea4c --- /dev/null +++ b/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/Icon/svg/ArrowCurved.js.map @@ -0,0 +1 @@ +{"version":3,"file":"ArrowCurved.js","sourceRoot":"","sources":["../../../../../src/components/Icon/svg/ArrowCurved.tsx"],"names":[],"mappings":";AACA,MAAM,WAAW,GAAG,CAAC,KAA8B,EAAE,EAAE,CAAC,CACtD,cAAK,KAAK,EAAC,KAAK,EAAC,MAAM,EAAC,KAAK,EAAC,OAAO,EAAC,WAAW,EAAC,IAAI,EAAC,cAAc,KAAK,KAAK,YAC7E,eACE,QAAQ,EAAC,SAAS,EAClB,CAAC,EAAC,yKAAyK,EAC3K,QAAQ,EAAC,SAAS,GAClB,GACE,CACP,CAAA;AACD,eAAe,WAAW,CAAA","sourcesContent":["import type { SVGProps } from \"react\"\nconst ArrowCurved = (props: SVGProps) => (\n \n \n \n)\nexport default ArrowCurved\n"]} \ No newline at end of file diff --git a/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/Icon/svg/ArrowCurvedLeft.js b/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/Icon/svg/ArrowCurvedLeft.js new file mode 100644 index 0000000000000000000000000000000000000000..456ebd254dcac8d1cfb3e1bb19c486bf1745a42c --- /dev/null +++ b/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/Icon/svg/ArrowCurvedLeft.js @@ -0,0 +1,4 @@ +import { jsx as _jsx } from "react/jsx-runtime"; +const ArrowCurvedLeft = (props) => (_jsx("svg", { width: "1em", height: "1em", viewBox: "0 0 24 24", fill: "currentColor", ...props, children: _jsx("path", { d: "M19 6C18.4477 6 18 6.44772 18 7V11C18 11.5523 17.5523 12 17 12H7.41421L9.70711 9.70711C10.0976 9.31658 10.0976 8.68342 9.70711 8.29289C9.31658 7.90237 8.68342 7.90237 8.29289 8.29289L4.29289 12.2929C3.90237 12.6834 3.90237 13.3166 4.29289 13.7071L8.29289 17.7071C8.68342 18.0976 9.31658 18.0976 9.70711 17.7071C10.0976 17.3166 10.0976 16.6834 9.70711 16.2929L7.41421 14H17C18.6569 14 20 12.6569 20 11V7C20 6.44772 19.5523 6 19 6Z", fill: "currentColor" }) })); +export default ArrowCurvedLeft; +//# sourceMappingURL=ArrowCurvedLeft.js.map \ No newline at end of file diff --git a/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/Icon/svg/ArrowCurvedLeft.js.map b/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/Icon/svg/ArrowCurvedLeft.js.map new file mode 100644 index 0000000000000000000000000000000000000000..3f7acd5ae67d3444ce5f2736c32ad9061ff61426 --- /dev/null +++ b/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/Icon/svg/ArrowCurvedLeft.js.map @@ -0,0 +1 @@ +{"version":3,"file":"ArrowCurvedLeft.js","sourceRoot":"","sources":["../../../../../src/components/Icon/svg/ArrowCurvedLeft.tsx"],"names":[],"mappings":";AACA,MAAM,eAAe,GAAG,CAAC,KAA8B,EAAE,EAAE,CAAC,CAC1D,cAAK,KAAK,EAAC,KAAK,EAAC,MAAM,EAAC,KAAK,EAAC,OAAO,EAAC,WAAW,EAAC,IAAI,EAAC,cAAc,KAAK,KAAK,YAC7E,eACE,CAAC,EAAC,+aAA+a,EACjb,IAAI,EAAC,cAAc,GACnB,GACE,CACP,CAAA;AACD,eAAe,eAAe,CAAA","sourcesContent":["import type { SVGProps } from \"react\"\nconst ArrowCurvedLeft = (props: SVGProps) => (\n \n \n \n)\nexport default ArrowCurvedLeft\n"]} \ No newline at end of file diff --git a/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/Icon/svg/ArrowCurvedRight.js b/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/Icon/svg/ArrowCurvedRight.js new file mode 100644 index 0000000000000000000000000000000000000000..fe40895fde49643f989faa6d004354d31c4a979d --- /dev/null +++ b/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/Icon/svg/ArrowCurvedRight.js @@ -0,0 +1,4 @@ +import { jsx as _jsx } from "react/jsx-runtime"; +const ArrowCurvedRight = (props) => (_jsx("svg", { width: "1em", height: "1em", viewBox: "0 0 24 24", fill: "currentColor", ...props, children: _jsx("path", { d: "M5 6C5.55228 6 6 6.44772 6 7V11C6 11.5523 6.44772 12 7 12H16.5858L14.2929 9.70711C13.9024 9.31658 13.9024 8.68342 14.2929 8.29289C14.6834 7.90237 15.3166 7.90237 15.7071 8.29289L19.7071 12.2929C20.0976 12.6834 20.0976 13.3166 19.7071 13.7071L15.7071 17.7071C15.3166 18.0976 14.6834 18.0976 14.2929 17.7071C13.9024 17.3166 13.9024 16.6834 14.2929 16.2929L16.5858 14H7C5.34315 14 4 12.6569 4 11V7C4 6.44772 4.44772 6 5 6Z", fill: "currentColor" }) })); +export default ArrowCurvedRight; +//# sourceMappingURL=ArrowCurvedRight.js.map \ No newline at end of file diff --git a/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/Icon/svg/ArrowCurvedRight.js.map b/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/Icon/svg/ArrowCurvedRight.js.map new file mode 100644 index 0000000000000000000000000000000000000000..aa3920588e71a3b394f8806989a0018b724a5a4e --- /dev/null +++ b/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/Icon/svg/ArrowCurvedRight.js.map @@ -0,0 +1 @@ +{"version":3,"file":"ArrowCurvedRight.js","sourceRoot":"","sources":["../../../../../src/components/Icon/svg/ArrowCurvedRight.tsx"],"names":[],"mappings":";AACA,MAAM,gBAAgB,GAAG,CAAC,KAA8B,EAAE,EAAE,CAAC,CAC3D,cAAK,KAAK,EAAC,KAAK,EAAC,MAAM,EAAC,KAAK,EAAC,OAAO,EAAC,WAAW,EAAC,IAAI,EAAC,cAAc,KAAK,KAAK,YAC7E,eACE,CAAC,EAAC,qaAAqa,EACva,IAAI,EAAC,cAAc,GACnB,GACE,CACP,CAAA;AACD,eAAe,gBAAgB,CAAA","sourcesContent":["import type { SVGProps } from \"react\"\nconst ArrowCurvedRight = (props: SVGProps) => (\n \n \n \n)\nexport default ArrowCurvedRight\n"]} \ No newline at end of file diff --git a/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/Icon/svg/ArrowCurvedRightXs.js b/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/Icon/svg/ArrowCurvedRightXs.js new file mode 100644 index 0000000000000000000000000000000000000000..2edbf3b58e3f5498b95b40be3fac5d2684afc6d2 --- /dev/null +++ b/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/Icon/svg/ArrowCurvedRightXs.js @@ -0,0 +1,4 @@ +import { jsx as _jsx } from "react/jsx-runtime"; +const ArrowCurvedRightXs = (props) => (_jsx("svg", { width: "1em", height: "1em", viewBox: "0 0 24 24", fill: "currentColor", ...props, children: _jsx("path", { d: "M7 7a1 1 0 0 1 1 1c0 .713 0 1.197.026 1.573.025.368.07.559.126.692a2 2 0 0 0 1.083 1.083c.133.055.324.1.692.126.376.025.86.026 1.573.026h3.086l-1.293-1.293a1 1 0 0 1 1.414-1.414l3 3a1 1 0 0 1 0 1.414l-3 3a1 1 0 0 1-1.414-1.414l1.293-1.293h-3.12c-.67 0-1.223 0-1.676-.03-.469-.033-.903-.101-1.32-.275a4 4 0 0 1-2.166-2.164c-.173-.418-.241-.852-.273-1.321C6 9.257 6 8.704 6 8.034V8a1 1 0 0 1 1-1Z" }) })); +export default ArrowCurvedRightXs; +//# sourceMappingURL=ArrowCurvedRightXs.js.map \ No newline at end of file diff --git a/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/Icon/svg/ArrowCurvedRightXs.js.map b/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/Icon/svg/ArrowCurvedRightXs.js.map new file mode 100644 index 0000000000000000000000000000000000000000..1bfa8f60b529e4ae5e7c272c22a92ac677c881c7 --- /dev/null +++ b/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/Icon/svg/ArrowCurvedRightXs.js.map @@ -0,0 +1 @@ +{"version":3,"file":"ArrowCurvedRightXs.js","sourceRoot":"","sources":["../../../../../src/components/Icon/svg/ArrowCurvedRightXs.tsx"],"names":[],"mappings":";AACA,MAAM,kBAAkB,GAAG,CAAC,KAA8B,EAAE,EAAE,CAAC,CAC7D,cAAK,KAAK,EAAC,KAAK,EAAC,MAAM,EAAC,KAAK,EAAC,OAAO,EAAC,WAAW,EAAC,IAAI,EAAC,cAAc,KAAK,KAAK,YAC7E,eAAM,CAAC,EAAC,4YAA4Y,GAAG,GACnZ,CACP,CAAA;AACD,eAAe,kBAAkB,CAAA","sourcesContent":["import type { SVGProps } from \"react\"\nconst ArrowCurvedRightXs = (props: SVGProps) => (\n \n \n \n)\nexport default ArrowCurvedRightXs\n"]} \ No newline at end of file diff --git a/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/Icon/svg/ArrowCurvedRightXs24px.js b/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/Icon/svg/ArrowCurvedRightXs24px.js new file mode 100644 index 0000000000000000000000000000000000000000..14803a10364cd5a0077cd52d55340be8eac02105 --- /dev/null +++ b/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/Icon/svg/ArrowCurvedRightXs24px.js @@ -0,0 +1,4 @@ +import { jsx as _jsx } from "react/jsx-runtime"; +const ArrowCurvedRightXs24px = (props) => (_jsx("svg", { width: "1em", height: "1em", viewBox: "0 0 24 24", fill: "currentColor", ...props, children: _jsx("path", { d: "M7 7C7.55229 7 8 7.44772 8 8C8 8.71259 8.00054 9.19696 8.02623 9.5734C8.0513 9.94085 8.09694 10.1319 8.15224 10.2654C8.35523 10.7554 8.74458 11.1448 9.23463 11.3478C9.36813 11.4031 9.55915 11.4487 9.9266 11.4738C10.303 11.4995 10.7874 11.5 11.5 11.5H14.5858L13.2929 10.2071C12.9024 9.81658 12.9024 9.18342 13.2929 8.79289C13.6834 8.40237 14.3166 8.40237 14.7071 8.79289L17.7071 11.7929C18.0976 12.1834 18.0976 12.8166 17.7071 13.2071L14.7071 16.2071C14.3166 16.5976 13.6834 16.5976 13.2929 16.2071C12.9024 15.8166 12.9024 15.1834 13.2929 14.7929L14.5858 13.5H11.4657C10.7959 13.5 10.2431 13.5 9.79046 13.4691C9.32118 13.4371 8.88708 13.3686 8.46927 13.1955C7.48915 12.7895 6.71046 12.0108 6.30448 11.0307C6.13142 10.6129 6.06288 10.1788 6.03087 9.70954C5.99998 9.25693 5.99999 8.70406 6 8.03427L6 8C6 7.44772 6.44772 7 7 7Z", fill: "currentColor" }) })); +export default ArrowCurvedRightXs24px; +//# sourceMappingURL=ArrowCurvedRightXs24px.js.map \ No newline at end of file diff --git a/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/Icon/svg/ArrowCurvedRightXs24px.js.map b/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/Icon/svg/ArrowCurvedRightXs24px.js.map new file mode 100644 index 0000000000000000000000000000000000000000..bcaede43e4686a2cda81bf3ea1c67aa15cd09eaa --- /dev/null +++ b/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/Icon/svg/ArrowCurvedRightXs24px.js.map @@ -0,0 +1 @@ +{"version":3,"file":"ArrowCurvedRightXs24px.js","sourceRoot":"","sources":["../../../../../src/components/Icon/svg/ArrowCurvedRightXs24px.tsx"],"names":[],"mappings":";AACA,MAAM,sBAAsB,GAAG,CAAC,KAA8B,EAAE,EAAE,CAAC,CACjE,cAAK,KAAK,EAAC,KAAK,EAAC,MAAM,EAAC,KAAK,EAAC,OAAO,EAAC,WAAW,EAAC,IAAI,EAAC,cAAc,KAAK,KAAK,YAC7E,eACE,CAAC,EAAC,yzBAAyzB,EAC3zB,IAAI,EAAC,cAAc,GACnB,GACE,CACP,CAAA;AACD,eAAe,sBAAsB,CAAA","sourcesContent":["import type { SVGProps } from \"react\"\nconst ArrowCurvedRightXs24px = (props: SVGProps) => (\n \n \n \n)\nexport default ArrowCurvedRightXs24px\n"]} \ No newline at end of file diff --git a/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/Icon/svg/ArrowDown.js b/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/Icon/svg/ArrowDown.js new file mode 100644 index 0000000000000000000000000000000000000000..532c3b24c620d9259b133a1e50e56ec1906118d4 --- /dev/null +++ b/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/Icon/svg/ArrowDown.js @@ -0,0 +1,4 @@ +import { jsx as _jsx } from "react/jsx-runtime"; +const ArrowDown = (props) => (_jsx("svg", { width: "1em", height: "1em", viewBox: "0 0 24 24", fill: "currentColor", ...props, children: _jsx("path", { fillRule: "evenodd", d: "M12.707 18.707a1 1 0 0 1-1.414 0l-5-5a1 1 0 1 1 1.414-1.414L11 15.586V6a1 1 0 1 1 2 0v9.586l3.293-3.293a1 1 0 0 1 1.414 1.414l-5 5Z", clipRule: "evenodd" }) })); +export default ArrowDown; +//# sourceMappingURL=ArrowDown.js.map \ No newline at end of file diff --git a/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/Icon/svg/ArrowDown.js.map b/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/Icon/svg/ArrowDown.js.map new file mode 100644 index 0000000000000000000000000000000000000000..f7605252b0063da87eaa3bd7e9b810f7dff4ae8d --- /dev/null +++ b/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/Icon/svg/ArrowDown.js.map @@ -0,0 +1 @@ +{"version":3,"file":"ArrowDown.js","sourceRoot":"","sources":["../../../../../src/components/Icon/svg/ArrowDown.tsx"],"names":[],"mappings":";AACA,MAAM,SAAS,GAAG,CAAC,KAA8B,EAAE,EAAE,CAAC,CACpD,cAAK,KAAK,EAAC,KAAK,EAAC,MAAM,EAAC,KAAK,EAAC,OAAO,EAAC,WAAW,EAAC,IAAI,EAAC,cAAc,KAAK,KAAK,YAC7E,eACE,QAAQ,EAAC,SAAS,EAClB,CAAC,EAAC,qIAAqI,EACvI,QAAQ,EAAC,SAAS,GAClB,GACE,CACP,CAAA;AACD,eAAe,SAAS,CAAA","sourcesContent":["import type { SVGProps } from \"react\"\nconst ArrowDown = (props: SVGProps) => (\n \n \n \n)\nexport default ArrowDown\n"]} \ No newline at end of file diff --git a/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/Icon/svg/ArrowDownLg.js b/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/Icon/svg/ArrowDownLg.js new file mode 100644 index 0000000000000000000000000000000000000000..135b640c0671dee1e362e62233ae3d6fb31d37b8 --- /dev/null +++ b/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/Icon/svg/ArrowDownLg.js @@ -0,0 +1,4 @@ +import { jsx as _jsx } from "react/jsx-runtime"; +const ArrowDownLg = (props) => (_jsx("svg", { width: "1em", height: "1em", viewBox: "0 0 24 24", fill: "currentColor", ...props, children: _jsx("path", { d: "M12 21C11.7348 21 11.4804 20.8946 11.2929 20.7071L4.29289 13.7071C3.90237 13.3166 3.90237 12.6834 4.29289 12.2929C4.68342 11.9024 5.31658 11.9024 5.70711 12.2929L11 17.5858V4C11 3.44772 11.4477 3 12 3C12.5523 3 13 3.44772 13 4V17.5858L18.2929 12.2929C18.6834 11.9024 19.3166 11.9024 19.7071 12.2929C20.0976 12.6834 20.0976 13.3166 19.7071 13.7071L12.7071 20.7071C12.5196 20.8946 12.2652 21 12 21Z", fill: "currentColor" }) })); +export default ArrowDownLg; +//# sourceMappingURL=ArrowDownLg.js.map \ No newline at end of file diff --git a/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/Icon/svg/ArrowDownLg.js.map b/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/Icon/svg/ArrowDownLg.js.map new file mode 100644 index 0000000000000000000000000000000000000000..8ece476b256922a8b891c1a400dc5a953e4f9015 --- /dev/null +++ b/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/Icon/svg/ArrowDownLg.js.map @@ -0,0 +1 @@ +{"version":3,"file":"ArrowDownLg.js","sourceRoot":"","sources":["../../../../../src/components/Icon/svg/ArrowDownLg.tsx"],"names":[],"mappings":";AACA,MAAM,WAAW,GAAG,CAAC,KAA8B,EAAE,EAAE,CAAC,CACtD,cAAK,KAAK,EAAC,KAAK,EAAC,MAAM,EAAC,KAAK,EAAC,OAAO,EAAC,WAAW,EAAC,IAAI,EAAC,cAAc,KAAK,KAAK,YAC7E,eACE,CAAC,EAAC,8YAA8Y,EAChZ,IAAI,EAAC,cAAc,GACnB,GACE,CACP,CAAA;AACD,eAAe,WAAW,CAAA","sourcesContent":["import type { SVGProps } from \"react\"\nconst ArrowDownLg = (props: SVGProps) => (\n \n \n \n)\nexport default ArrowDownLg\n"]} \ No newline at end of file diff --git a/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/Icon/svg/ArrowDownSm.js b/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/Icon/svg/ArrowDownSm.js new file mode 100644 index 0000000000000000000000000000000000000000..1c41e2d0b70c5e0781237cdbb04d3aabd68e7fb6 --- /dev/null +++ b/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/Icon/svg/ArrowDownSm.js @@ -0,0 +1,4 @@ +import { jsx as _jsx } from "react/jsx-runtime"; +const ArrowDownSm = (props) => (_jsx("svg", { width: "1em", height: "1em", viewBox: "0 0 24 24", fill: "currentColor", ...props, children: _jsx("path", { d: "M11.2929 18.7071C11.6834 19.0976 12.3166 19.0976 12.7071 18.7071L17.7071 13.7071C18.0976 13.3166 18.0976 12.6834 17.7071 12.2929C17.3166 11.9024 16.6834 11.9024 16.2929 12.2929L13 15.5858V6C13 5.44771 12.5523 5 12 5C11.4477 5 11 5.44771 11 6V15.5858L7.70711 12.2929C7.31658 11.9024 6.68342 11.9024 6.29289 12.2929C5.90237 12.6834 5.90237 13.3166 6.29289 13.7071L11.2929 18.7071Z", fill: "currentColor" }) })); +export default ArrowDownSm; +//# sourceMappingURL=ArrowDownSm.js.map \ No newline at end of file diff --git a/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/Icon/svg/ArrowDownSm.js.map b/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/Icon/svg/ArrowDownSm.js.map new file mode 100644 index 0000000000000000000000000000000000000000..27b05046132a2d28647b4ce7ab88c802e70cf350 --- /dev/null +++ b/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/Icon/svg/ArrowDownSm.js.map @@ -0,0 +1 @@ +{"version":3,"file":"ArrowDownSm.js","sourceRoot":"","sources":["../../../../../src/components/Icon/svg/ArrowDownSm.tsx"],"names":[],"mappings":";AACA,MAAM,WAAW,GAAG,CAAC,KAA8B,EAAE,EAAE,CAAC,CACtD,cAAK,KAAK,EAAC,KAAK,EAAC,MAAM,EAAC,KAAK,EAAC,OAAO,EAAC,WAAW,EAAC,IAAI,EAAC,cAAc,KAAK,KAAK,YAC7E,eACE,CAAC,EAAC,4XAA4X,EAC9X,IAAI,EAAC,cAAc,GACnB,GACE,CACP,CAAA;AACD,eAAe,WAAW,CAAA","sourcesContent":["import type { SVGProps } from \"react\"\nconst ArrowDownSm = (props: SVGProps) => (\n \n \n \n)\nexport default ArrowDownSm\n"]} \ No newline at end of file diff --git a/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/Icon/svg/ArrowLeft.js b/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/Icon/svg/ArrowLeft.js new file mode 100644 index 0000000000000000000000000000000000000000..460391cbea8c4969ee0728c4c5ada2730edf8e49 --- /dev/null +++ b/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/Icon/svg/ArrowLeft.js @@ -0,0 +1,4 @@ +import { jsx as _jsx } from "react/jsx-runtime"; +const ArrowLeft = (props) => (_jsx("svg", { width: "1em", height: "1em", viewBox: "0 0 24 24", fill: "currentColor", ...props, children: _jsx("path", { fillRule: "evenodd", d: "M5.293 12.707a1 1 0 0 1 0-1.414l5-5a1 1 0 1 1 1.414 1.414L8.414 11H18a1 1 0 1 1 0 2H8.414l3.293 3.293a1 1 0 0 1-1.414 1.414l-5-5Z", clipRule: "evenodd" }) })); +export default ArrowLeft; +//# sourceMappingURL=ArrowLeft.js.map \ No newline at end of file diff --git a/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/Icon/svg/ArrowLeft.js.map b/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/Icon/svg/ArrowLeft.js.map new file mode 100644 index 0000000000000000000000000000000000000000..1ab3f56871a2c3b7a5fffad1bdab80512ac9090e --- /dev/null +++ b/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/Icon/svg/ArrowLeft.js.map @@ -0,0 +1 @@ +{"version":3,"file":"ArrowLeft.js","sourceRoot":"","sources":["../../../../../src/components/Icon/svg/ArrowLeft.tsx"],"names":[],"mappings":";AACA,MAAM,SAAS,GAAG,CAAC,KAA8B,EAAE,EAAE,CAAC,CACpD,cAAK,KAAK,EAAC,KAAK,EAAC,MAAM,EAAC,KAAK,EAAC,OAAO,EAAC,WAAW,EAAC,IAAI,EAAC,cAAc,KAAK,KAAK,YAC7E,eACE,QAAQ,EAAC,SAAS,EAClB,CAAC,EAAC,mIAAmI,EACrI,QAAQ,EAAC,SAAS,GAClB,GACE,CACP,CAAA;AACD,eAAe,SAAS,CAAA","sourcesContent":["import type { SVGProps } from \"react\"\nconst ArrowLeft = (props: SVGProps) => (\n \n \n \n)\nexport default ArrowLeft\n"]} \ No newline at end of file diff --git a/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/Icon/svg/ArrowLeftLg.js b/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/Icon/svg/ArrowLeftLg.js new file mode 100644 index 0000000000000000000000000000000000000000..c10615dd4edbadf915b474580cd7d7bcb707dcb6 --- /dev/null +++ b/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/Icon/svg/ArrowLeftLg.js @@ -0,0 +1,4 @@ +import { jsx as _jsx } from "react/jsx-runtime"; +const ArrowLeftLg = (props) => (_jsx("svg", { width: "1em", height: "1em", viewBox: "0 0 24 24", fill: "currentColor", ...props, children: _jsx("path", { d: "M3 12C3 11.7348 3.10536 11.4804 3.29289 11.2929L10.2929 4.29289C10.6834 3.90237 11.3166 3.90237 11.7071 4.29289C12.0976 4.68342 12.0976 5.31658 11.7071 5.70711L6.41421 11H20C20.5523 11 21 11.4477 21 12C21 12.5523 20.5523 13 20 13L6.41422 13L11.7071 18.2929C12.0976 18.6834 12.0976 19.3166 11.7071 19.7071C11.3166 20.0976 10.6834 20.0976 10.2929 19.7071L3.29289 12.7071C3.10536 12.5196 3 12.2652 3 12Z", fill: "currentColor" }) })); +export default ArrowLeftLg; +//# sourceMappingURL=ArrowLeftLg.js.map \ No newline at end of file diff --git a/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/Icon/svg/ArrowLeftLg.js.map b/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/Icon/svg/ArrowLeftLg.js.map new file mode 100644 index 0000000000000000000000000000000000000000..b0facb431e6f980acb619d37dffca3c2cb6c6660 --- /dev/null +++ b/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/Icon/svg/ArrowLeftLg.js.map @@ -0,0 +1 @@ +{"version":3,"file":"ArrowLeftLg.js","sourceRoot":"","sources":["../../../../../src/components/Icon/svg/ArrowLeftLg.tsx"],"names":[],"mappings":";AACA,MAAM,WAAW,GAAG,CAAC,KAA8B,EAAE,EAAE,CAAC,CACtD,cAAK,KAAK,EAAC,KAAK,EAAC,MAAM,EAAC,KAAK,EAAC,OAAO,EAAC,WAAW,EAAC,IAAI,EAAC,cAAc,KAAK,KAAK,YAC7E,eACE,CAAC,EAAC,kZAAkZ,EACpZ,IAAI,EAAC,cAAc,GACnB,GACE,CACP,CAAA;AACD,eAAe,WAAW,CAAA","sourcesContent":["import type { SVGProps } from \"react\"\nconst ArrowLeftLg = (props: SVGProps) => (\n \n \n \n)\nexport default ArrowLeftLg\n"]} \ No newline at end of file diff --git a/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/Icon/svg/ArrowLeftSm.js b/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/Icon/svg/ArrowLeftSm.js new file mode 100644 index 0000000000000000000000000000000000000000..0b1f9def319a822041667181d493b8cb90e53af8 --- /dev/null +++ b/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/Icon/svg/ArrowLeftSm.js @@ -0,0 +1,4 @@ +import { jsx as _jsx } from "react/jsx-runtime"; +const ArrowLeftSm = (props) => (_jsx("svg", { width: "1em", height: "1em", viewBox: "0 0 24 24", fill: "currentColor", ...props, children: _jsx("path", { d: "M5.29289 12.7071C4.90237 12.3166 4.90237 11.6834 5.29289 11.2929L10.2929 6.29289C10.6834 5.90237 11.3166 5.90237 11.7071 6.29289C12.0976 6.68342 12.0976 7.31658 11.7071 7.70711L8.41421 11H18C18.5523 11 19 11.4477 19 12C19 12.5523 18.5523 13 18 13H8.41421L11.7071 16.2929C12.0976 16.6834 12.0976 17.3166 11.7071 17.7071C11.3166 18.0976 10.6834 18.0976 10.2929 17.7071L5.29289 12.7071Z", fill: "currentColor" }) })); +export default ArrowLeftSm; +//# sourceMappingURL=ArrowLeftSm.js.map \ No newline at end of file diff --git a/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/Icon/svg/ArrowLeftSm.js.map b/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/Icon/svg/ArrowLeftSm.js.map new file mode 100644 index 0000000000000000000000000000000000000000..f237c2f765ba83e3b43262531a5d777cc71be608 --- /dev/null +++ b/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/Icon/svg/ArrowLeftSm.js.map @@ -0,0 +1 @@ +{"version":3,"file":"ArrowLeftSm.js","sourceRoot":"","sources":["../../../../../src/components/Icon/svg/ArrowLeftSm.tsx"],"names":[],"mappings":";AACA,MAAM,WAAW,GAAG,CAAC,KAA8B,EAAE,EAAE,CAAC,CACtD,cAAK,KAAK,EAAC,KAAK,EAAC,MAAM,EAAC,KAAK,EAAC,OAAO,EAAC,WAAW,EAAC,IAAI,EAAC,cAAc,KAAK,KAAK,YAC7E,eACE,CAAC,EAAC,iYAAiY,EACnY,IAAI,EAAC,cAAc,GACnB,GACE,CACP,CAAA;AACD,eAAe,WAAW,CAAA","sourcesContent":["import type { SVGProps } from \"react\"\nconst ArrowLeftSm = (props: SVGProps) => (\n \n \n \n)\nexport default ArrowLeftSm\n"]} \ No newline at end of file diff --git a/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/Icon/svg/ArrowRight.js b/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/Icon/svg/ArrowRight.js new file mode 100644 index 0000000000000000000000000000000000000000..815a76449cebe18979823cf37d35b7f8b4e98169 --- /dev/null +++ b/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/Icon/svg/ArrowRight.js @@ -0,0 +1,4 @@ +import { jsx as _jsx } from "react/jsx-runtime"; +const ArrowRight = (props) => (_jsx("svg", { width: "1em", height: "1em", viewBox: "0 0 24 24", fill: "currentColor", ...props, children: _jsx("path", { fillRule: "evenodd", d: "M18.707 12.707a1 1 0 0 0 0-1.414l-5-5a1 1 0 1 0-1.414 1.414L15.586 11H6a1 1 0 1 0 0 2h9.586l-3.293 3.293a1 1 0 0 0 1.414 1.414l5-5Z", clipRule: "evenodd" }) })); +export default ArrowRight; +//# sourceMappingURL=ArrowRight.js.map \ No newline at end of file diff --git a/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/Icon/svg/ArrowRight.js.map b/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/Icon/svg/ArrowRight.js.map new file mode 100644 index 0000000000000000000000000000000000000000..bc36382e44c824577a009910cedb0fe62cdfc2eb --- /dev/null +++ b/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/Icon/svg/ArrowRight.js.map @@ -0,0 +1 @@ +{"version":3,"file":"ArrowRight.js","sourceRoot":"","sources":["../../../../../src/components/Icon/svg/ArrowRight.tsx"],"names":[],"mappings":";AACA,MAAM,UAAU,GAAG,CAAC,KAA8B,EAAE,EAAE,CAAC,CACrD,cAAK,KAAK,EAAC,KAAK,EAAC,MAAM,EAAC,KAAK,EAAC,OAAO,EAAC,WAAW,EAAC,IAAI,EAAC,cAAc,KAAK,KAAK,YAC7E,eACE,QAAQ,EAAC,SAAS,EAClB,CAAC,EAAC,qIAAqI,EACvI,QAAQ,EAAC,SAAS,GAClB,GACE,CACP,CAAA;AACD,eAAe,UAAU,CAAA","sourcesContent":["import type { SVGProps } from \"react\"\nconst ArrowRight = (props: SVGProps) => (\n \n \n \n)\nexport default ArrowRight\n"]} \ No newline at end of file diff --git a/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/Icon/svg/ArrowRightLg.js b/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/Icon/svg/ArrowRightLg.js new file mode 100644 index 0000000000000000000000000000000000000000..901749dea35f6dc56772a9c5900645351b92d6ea --- /dev/null +++ b/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/Icon/svg/ArrowRightLg.js @@ -0,0 +1,4 @@ +import { jsx as _jsx } from "react/jsx-runtime"; +const ArrowRightLg = (props) => (_jsx("svg", { width: "1em", height: "1em", viewBox: "0 0 24 24", fill: "currentColor", ...props, children: _jsx("path", { d: "M21 12C21 12.2652 20.8946 12.5196 20.7071 12.7071L13.7071 19.7071C13.3166 20.0976 12.6834 20.0976 12.2929 19.7071C11.9024 19.3166 11.9024 18.6834 12.2929 18.2929L17.5858 13H4C3.44772 13 3 12.5523 3 12C3 11.4477 3.44772 11 4 11L17.5858 11L12.2929 5.70711C11.9024 5.31658 11.9024 4.68342 12.2929 4.29289C12.6834 3.90237 13.3166 3.90237 13.7071 4.29289L20.7071 11.2929C20.8946 11.4804 21 11.7348 21 12Z", fill: "currentColor" }) })); +export default ArrowRightLg; +//# sourceMappingURL=ArrowRightLg.js.map \ No newline at end of file diff --git a/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/Icon/svg/ArrowRightLg.js.map b/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/Icon/svg/ArrowRightLg.js.map new file mode 100644 index 0000000000000000000000000000000000000000..d423aedffe0ce5935025b2875d3e3ee88656253b --- /dev/null +++ b/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/Icon/svg/ArrowRightLg.js.map @@ -0,0 +1 @@ +{"version":3,"file":"ArrowRightLg.js","sourceRoot":"","sources":["../../../../../src/components/Icon/svg/ArrowRightLg.tsx"],"names":[],"mappings":";AACA,MAAM,YAAY,GAAG,CAAC,KAA8B,EAAE,EAAE,CAAC,CACvD,cAAK,KAAK,EAAC,KAAK,EAAC,MAAM,EAAC,KAAK,EAAC,OAAO,EAAC,WAAW,EAAC,IAAI,EAAC,cAAc,KAAK,KAAK,YAC7E,eACE,CAAC,EAAC,iZAAiZ,EACnZ,IAAI,EAAC,cAAc,GACnB,GACE,CACP,CAAA;AACD,eAAe,YAAY,CAAA","sourcesContent":["import type { SVGProps } from \"react\"\nconst ArrowRightLg = (props: SVGProps) => (\n \n \n \n)\nexport default ArrowRightLg\n"]} \ No newline at end of file diff --git a/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/Icon/svg/ArrowRightSm.js b/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/Icon/svg/ArrowRightSm.js new file mode 100644 index 0000000000000000000000000000000000000000..b42d038a1ee2c7d50815abd3a49ac729b192f159 --- /dev/null +++ b/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/Icon/svg/ArrowRightSm.js @@ -0,0 +1,4 @@ +import { jsx as _jsx } from "react/jsx-runtime"; +const ArrowRightSm = (props) => (_jsx("svg", { width: "1em", height: "1em", viewBox: "0 0 24 24", fill: "currentColor", ...props, children: _jsx("path", { d: "M18.7071 12.7071C19.0976 12.3166 19.0976 11.6834 18.7071 11.2929L13.7071 6.29289C13.3166 5.90237 12.6834 5.90237 12.2929 6.29289C11.9024 6.68342 11.9024 7.31658 12.2929 7.70711L15.5858 11H6C5.44771 11 5 11.4477 5 12C5 12.5523 5.44771 13 6 13H15.5858L12.2929 16.2929C11.9024 16.6834 11.9024 17.3166 12.2929 17.7071C12.6834 18.0976 13.3166 18.0976 13.7071 17.7071L18.7071 12.7071Z", fill: "currentColor" }) })); +export default ArrowRightSm; +//# sourceMappingURL=ArrowRightSm.js.map \ No newline at end of file diff --git a/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/Icon/svg/ArrowRightSm.js.map b/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/Icon/svg/ArrowRightSm.js.map new file mode 100644 index 0000000000000000000000000000000000000000..1ff4b00d33eb1dc10f6c02d1777b5652ebfd5e4f --- /dev/null +++ b/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/Icon/svg/ArrowRightSm.js.map @@ -0,0 +1 @@ +{"version":3,"file":"ArrowRightSm.js","sourceRoot":"","sources":["../../../../../src/components/Icon/svg/ArrowRightSm.tsx"],"names":[],"mappings":";AACA,MAAM,YAAY,GAAG,CAAC,KAA8B,EAAE,EAAE,CAAC,CACvD,cAAK,KAAK,EAAC,KAAK,EAAC,MAAM,EAAC,KAAK,EAAC,OAAO,EAAC,WAAW,EAAC,IAAI,EAAC,cAAc,KAAK,KAAK,YAC7E,eACE,CAAC,EAAC,4XAA4X,EAC9X,IAAI,EAAC,cAAc,GACnB,GACE,CACP,CAAA;AACD,eAAe,YAAY,CAAA","sourcesContent":["import type { SVGProps } from \"react\"\nconst ArrowRightSm = (props: SVGProps) => (\n \n \n \n)\nexport default ArrowRightSm\n"]} \ No newline at end of file diff --git a/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/Icon/svg/ArrowRotateCcw.js b/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/Icon/svg/ArrowRotateCcw.js new file mode 100644 index 0000000000000000000000000000000000000000..6acef5fb12f9507bfac2a94cebf005da629c90d4 --- /dev/null +++ b/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/Icon/svg/ArrowRotateCcw.js @@ -0,0 +1,4 @@ +import { jsx as _jsx } from "react/jsx-runtime"; +const ArrowRotateCcw = (props) => (_jsx("svg", { width: "1em", height: "1em", viewBox: "0 0 24 24", fill: "currentColor", ...props, children: _jsx("path", { d: "M4.47192 2.5C5.02421 2.5 5.47192 2.94772 5.47192 3.5V5.07196C7.17065 3.47759 9.45675 2.5 11.9719 2.5C17.2186 2.5 21.4719 6.75329 21.4719 12C21.4719 17.2467 17.2186 21.5 11.9719 21.5C7.10262 21.5 3.0902 17.8375 2.53692 13.1164C2.47264 12.5679 2.8652 12.0711 3.41373 12.0068C3.96226 11.9425 4.45904 12.3351 4.52333 12.8836C4.95991 16.6089 8.12901 19.5 11.9719 19.5C16.1141 19.5 19.4719 16.1421 19.4719 12C19.4719 7.85786 16.1141 4.5 11.9719 4.5C9.75153 4.5 7.75552 5.46469 6.38146 7H9.00003C9.55232 7 10 7.44772 10 8C10 8.55228 9.55232 9 9.00003 9H4.47192C3.93256 9 3.49293 8.57299 3.47265 8.03859C3.47175 8.01771 3.47151 7.99677 3.47192 7.9758V3.5C3.47192 2.94772 3.91964 2.5 4.47192 2.5Z", fill: "currentColor" }) })); +export default ArrowRotateCcw; +//# sourceMappingURL=ArrowRotateCcw.js.map \ No newline at end of file diff --git a/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/Icon/svg/ArrowRotateCcw.js.map b/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/Icon/svg/ArrowRotateCcw.js.map new file mode 100644 index 0000000000000000000000000000000000000000..f454435a335a7deda1a668e8f67ed4b23c7d23f6 --- /dev/null +++ b/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/Icon/svg/ArrowRotateCcw.js.map @@ -0,0 +1 @@ +{"version":3,"file":"ArrowRotateCcw.js","sourceRoot":"","sources":["../../../../../src/components/Icon/svg/ArrowRotateCcw.tsx"],"names":[],"mappings":";AACA,MAAM,cAAc,GAAG,CAAC,KAA8B,EAAE,EAAE,CAAC,CACzD,cAAK,KAAK,EAAC,KAAK,EAAC,MAAM,EAAC,KAAK,EAAC,OAAO,EAAC,WAAW,EAAC,IAAI,EAAC,cAAc,KAAK,KAAK,YAC7E,eACE,CAAC,EAAC,irBAAirB,EACnrB,IAAI,EAAC,cAAc,GACnB,GACE,CACP,CAAA;AACD,eAAe,cAAc,CAAA","sourcesContent":["import type { SVGProps } from \"react\"\nconst ArrowRotateCcw = (props: SVGProps) => (\n \n \n \n)\nexport default ArrowRotateCcw\n"]} \ No newline at end of file diff --git a/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/Icon/svg/ArrowRotateCw.js b/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/Icon/svg/ArrowRotateCw.js new file mode 100644 index 0000000000000000000000000000000000000000..8d83ac634a022c72cb5d2bd83e93fad9874e185d --- /dev/null +++ b/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/Icon/svg/ArrowRotateCw.js @@ -0,0 +1,4 @@ +import { jsx as _jsx } from "react/jsx-runtime"; +const ArrowRotateCw = (props) => (_jsx("svg", { width: "1em", height: "1em", viewBox: "0 0 24 24", fill: "currentColor", ...props, children: _jsx("path", { d: "M2.55823 12C2.55823 6.75329 6.81152 2.5 12.0582 2.5C14.5734 2.5 16.8595 3.47759 18.5582 5.07197V3.5C18.5582 2.94772 19.0059 2.5 19.5582 2.5C20.1105 2.5 20.5582 2.94772 20.5582 3.5V7.97591C20.5586 7.99622 20.5584 8.01651 20.5576 8.03674C20.5382 8.572 20.0982 9 19.5582 9H15.0582C14.5059 9 14.0582 8.55228 14.0582 8C14.0582 7.44772 14.5059 7 15.0582 7H17.6487C16.2746 5.46469 14.2786 4.5 12.0582 4.5C7.91609 4.5 4.55823 7.85786 4.55823 12C4.55823 16.1421 7.91609 19.5 12.0582 19.5C15.9011 19.5 19.0702 16.6089 19.5068 12.8836C19.5711 12.3351 20.0679 11.9425 20.6164 12.0068C21.165 12.0711 21.5575 12.5679 21.4932 13.1164C20.94 17.8375 16.9275 21.5 12.0582 21.5C6.81152 21.5 2.55823 17.2467 2.55823 12Z", fill: "currentColor" }) })); +export default ArrowRotateCw; +//# sourceMappingURL=ArrowRotateCw.js.map \ No newline at end of file diff --git a/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/Icon/svg/ArrowRotateCw.js.map b/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/Icon/svg/ArrowRotateCw.js.map new file mode 100644 index 0000000000000000000000000000000000000000..7a8f7697ab3298d220b53330e7f6b4d9d3bb80ba --- /dev/null +++ b/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/Icon/svg/ArrowRotateCw.js.map @@ -0,0 +1 @@ +{"version":3,"file":"ArrowRotateCw.js","sourceRoot":"","sources":["../../../../../src/components/Icon/svg/ArrowRotateCw.tsx"],"names":[],"mappings":";AACA,MAAM,aAAa,GAAG,CAAC,KAA8B,EAAE,EAAE,CAAC,CACxD,cAAK,KAAK,EAAC,KAAK,EAAC,MAAM,EAAC,KAAK,EAAC,OAAO,EAAC,WAAW,EAAC,IAAI,EAAC,cAAc,KAAK,KAAK,YAC7E,eACE,CAAC,EAAC,6rBAA6rB,EAC/rB,IAAI,EAAC,cAAc,GACnB,GACE,CACP,CAAA;AACD,eAAe,aAAa,CAAA","sourcesContent":["import type { SVGProps } from \"react\"\nconst ArrowRotateCw = (props: SVGProps) => (\n \n \n \n)\nexport default ArrowRotateCw\n"]} \ No newline at end of file diff --git a/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/Icon/svg/ArrowTopLeftSm.js b/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/Icon/svg/ArrowTopLeftSm.js new file mode 100644 index 0000000000000000000000000000000000000000..32e128aeadc9bb1594902d97ba2f7a948d171603 --- /dev/null +++ b/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/Icon/svg/ArrowTopLeftSm.js @@ -0,0 +1,4 @@ +import { jsx as _jsx } from "react/jsx-runtime"; +const ArrowTopLeftSm = (props) => (_jsx("svg", { width: "1em", height: "1em", viewBox: "0 0 24 24", fill: "currentColor", ...props, children: _jsx("path", { d: "M6.75735 7.75726C6.75735 7.20498 7.20507 6.75726 7.75735 6.75726L14.8284 6.75726C15.3807 6.75726 15.8284 7.20498 15.8284 7.75726C15.8284 8.30955 15.3807 8.75726 14.8284 8.75726H10.1716L16.9497 15.5354C17.3403 15.926 17.3403 16.5591 16.9497 16.9497C16.5592 17.3402 15.9261 17.3402 15.5355 16.9497L8.75735 10.1715V14.8283C8.75735 15.3806 8.30964 15.8283 7.75735 15.8283C7.20507 15.8283 6.75735 15.3806 6.75735 14.8283V7.75726Z", fill: "currentColor" }) })); +export default ArrowTopLeftSm; +//# sourceMappingURL=ArrowTopLeftSm.js.map \ No newline at end of file diff --git a/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/Icon/svg/ArrowTopLeftSm.js.map b/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/Icon/svg/ArrowTopLeftSm.js.map new file mode 100644 index 0000000000000000000000000000000000000000..c10664748b650ce63bf8d366a588e2d426addceb --- /dev/null +++ b/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/Icon/svg/ArrowTopLeftSm.js.map @@ -0,0 +1 @@ +{"version":3,"file":"ArrowTopLeftSm.js","sourceRoot":"","sources":["../../../../../src/components/Icon/svg/ArrowTopLeftSm.tsx"],"names":[],"mappings":";AACA,MAAM,cAAc,GAAG,CAAC,KAA8B,EAAE,EAAE,CAAC,CACzD,cAAK,KAAK,EAAC,KAAK,EAAC,MAAM,EAAC,KAAK,EAAC,OAAO,EAAC,WAAW,EAAC,IAAI,EAAC,cAAc,KAAK,KAAK,YAC7E,eACE,CAAC,EAAC,0aAA0a,EAC5a,IAAI,EAAC,cAAc,GACnB,GACE,CACP,CAAA;AACD,eAAe,cAAc,CAAA","sourcesContent":["import type { SVGProps } from \"react\"\nconst ArrowTopLeftSm = (props: SVGProps) => (\n \n \n \n)\nexport default ArrowTopLeftSm\n"]} \ No newline at end of file diff --git a/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/Icon/svg/ArrowTopRightSm.js b/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/Icon/svg/ArrowTopRightSm.js new file mode 100644 index 0000000000000000000000000000000000000000..16b694ace5bf320f2c0fab9cd6ae123ea4756f49 --- /dev/null +++ b/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/Icon/svg/ArrowTopRightSm.js @@ -0,0 +1,4 @@ +import { jsx as _jsx } from "react/jsx-runtime"; +const ArrowTopRightSm = (props) => (_jsx("svg", { width: "1em", height: "1em", viewBox: "0 0 24 24", fill: "currentColor", ...props, children: _jsx("path", { d: "M16.2426 6.75739C16.7949 6.75738 17.2426 7.2051 17.2426 7.75738V14.8285C17.2426 15.3807 16.7949 15.8285 16.2426 15.8285C15.6904 15.8285 15.2426 15.3807 15.2426 14.8285V10.1716L8.46446 16.9498C8.07394 17.3403 7.44077 17.3403 7.05025 16.9498C6.65972 16.5592 6.65972 15.9261 7.05025 15.5356L13.8284 8.75739H9.17157C8.61928 8.75739 8.17157 8.30967 8.17157 7.75738C8.17157 7.2051 8.61928 6.75738 9.17157 6.75739H16.2426Z", fill: "currentColor" }) })); +export default ArrowTopRightSm; +//# sourceMappingURL=ArrowTopRightSm.js.map \ No newline at end of file diff --git a/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/Icon/svg/ArrowTopRightSm.js.map b/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/Icon/svg/ArrowTopRightSm.js.map new file mode 100644 index 0000000000000000000000000000000000000000..06921d031191ba5652f7fcb5e72c36155b6498ec --- /dev/null +++ b/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/Icon/svg/ArrowTopRightSm.js.map @@ -0,0 +1 @@ +{"version":3,"file":"ArrowTopRightSm.js","sourceRoot":"","sources":["../../../../../src/components/Icon/svg/ArrowTopRightSm.tsx"],"names":[],"mappings":";AACA,MAAM,eAAe,GAAG,CAAC,KAA8B,EAAE,EAAE,CAAC,CAC1D,cAAK,KAAK,EAAC,KAAK,EAAC,MAAM,EAAC,KAAK,EAAC,OAAO,EAAC,WAAW,EAAC,IAAI,EAAC,cAAc,KAAK,KAAK,YAC7E,eACE,CAAC,EAAC,iaAAia,EACna,IAAI,EAAC,cAAc,GACnB,GACE,CACP,CAAA;AACD,eAAe,eAAe,CAAA","sourcesContent":["import type { SVGProps } from \"react\"\nconst ArrowTopRightSm = (props: SVGProps) => (\n \n \n \n)\nexport default ArrowTopRightSm\n"]} \ No newline at end of file diff --git a/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/Icon/svg/ArrowUp.js b/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/Icon/svg/ArrowUp.js new file mode 100644 index 0000000000000000000000000000000000000000..96736e65b7a6d2cefe7b6f7367cf99df45d15fdc --- /dev/null +++ b/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/Icon/svg/ArrowUp.js @@ -0,0 +1,4 @@ +import { jsx as _jsx } from "react/jsx-runtime"; +const ArrowUp = (props) => (_jsx("svg", { width: "1em", height: "1em", viewBox: "0 0 24 24", fill: "currentColor", ...props, children: _jsx("path", { fillRule: "evenodd", d: "M11.293 5.293a1 1 0 0 1 1.414 0l5 5a1 1 0 0 1-1.414 1.414L13 8.414V18a1 1 0 1 1-2 0V8.414l-3.293 3.293a1 1 0 0 1-1.414-1.414l5-5Z", clipRule: "evenodd" }) })); +export default ArrowUp; +//# sourceMappingURL=ArrowUp.js.map \ No newline at end of file diff --git a/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/Icon/svg/ArrowUp.js.map b/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/Icon/svg/ArrowUp.js.map new file mode 100644 index 0000000000000000000000000000000000000000..30c1afc3fea4c95c8e98229a4f5ca1eba259422b --- /dev/null +++ b/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/Icon/svg/ArrowUp.js.map @@ -0,0 +1 @@ +{"version":3,"file":"ArrowUp.js","sourceRoot":"","sources":["../../../../../src/components/Icon/svg/ArrowUp.tsx"],"names":[],"mappings":";AACA,MAAM,OAAO,GAAG,CAAC,KAA8B,EAAE,EAAE,CAAC,CAClD,cAAK,KAAK,EAAC,KAAK,EAAC,MAAM,EAAC,KAAK,EAAC,OAAO,EAAC,WAAW,EAAC,IAAI,EAAC,cAAc,KAAK,KAAK,YAC7E,eACE,QAAQ,EAAC,SAAS,EAClB,CAAC,EAAC,mIAAmI,EACrI,QAAQ,EAAC,SAAS,GAClB,GACE,CACP,CAAA;AACD,eAAe,OAAO,CAAA","sourcesContent":["import type { SVGProps } from \"react\"\nconst ArrowUp = (props: SVGProps) => (\n \n \n \n)\nexport default ArrowUp\n"]} \ No newline at end of file diff --git a/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/Icon/svg/ArrowUpLg.js b/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/Icon/svg/ArrowUpLg.js new file mode 100644 index 0000000000000000000000000000000000000000..564081a5ca0aaeb302fabcc1908dbbb223b485fb --- /dev/null +++ b/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/Icon/svg/ArrowUpLg.js @@ -0,0 +1,4 @@ +import { jsx as _jsx } from "react/jsx-runtime"; +const ArrowUpLg = (props) => (_jsx("svg", { width: "1em", height: "1em", viewBox: "0 0 24 24", fill: "currentColor", ...props, children: _jsx("path", { d: "M12 3C12.2652 3 12.5196 3.10536 12.7071 3.29289L19.7071 10.2929C20.0976 10.6834 20.0976 11.3166 19.7071 11.7071C19.3166 12.0976 18.6834 12.0976 18.2929 11.7071L13 6.41421V20C13 20.5523 12.5523 21 12 21C11.4477 21 11 20.5523 11 20V6.41422L5.70711 11.7071C5.31658 12.0976 4.68342 12.0976 4.29289 11.7071C3.90237 11.3166 3.90237 10.6834 4.29289 10.2929L11.2929 3.29289C11.4804 3.10536 11.7348 3 12 3Z", fill: "currentColor" }) })); +export default ArrowUpLg; +//# sourceMappingURL=ArrowUpLg.js.map \ No newline at end of file diff --git a/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/Icon/svg/ArrowUpLg.js.map b/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/Icon/svg/ArrowUpLg.js.map new file mode 100644 index 0000000000000000000000000000000000000000..4150f62b6e13756886adcb03182f6589b5d307bb --- /dev/null +++ b/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/Icon/svg/ArrowUpLg.js.map @@ -0,0 +1 @@ +{"version":3,"file":"ArrowUpLg.js","sourceRoot":"","sources":["../../../../../src/components/Icon/svg/ArrowUpLg.tsx"],"names":[],"mappings":";AACA,MAAM,SAAS,GAAG,CAAC,KAA8B,EAAE,EAAE,CAAC,CACpD,cAAK,KAAK,EAAC,KAAK,EAAC,MAAM,EAAC,KAAK,EAAC,OAAO,EAAC,WAAW,EAAC,IAAI,EAAC,cAAc,KAAK,KAAK,YAC7E,eACE,CAAC,EAAC,+YAA+Y,EACjZ,IAAI,EAAC,cAAc,GACnB,GACE,CACP,CAAA;AACD,eAAe,SAAS,CAAA","sourcesContent":["import type { SVGProps } from \"react\"\nconst ArrowUpLg = (props: SVGProps) => (\n \n \n \n)\nexport default ArrowUpLg\n"]} \ No newline at end of file diff --git a/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/Icon/svg/ArrowUpRight.js b/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/Icon/svg/ArrowUpRight.js new file mode 100644 index 0000000000000000000000000000000000000000..ba00b9a60bd994263f09050772380e08d1dad86f --- /dev/null +++ b/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/Icon/svg/ArrowUpRight.js @@ -0,0 +1,4 @@ +import { jsx as _jsx } from "react/jsx-runtime"; +const ArrowUpRight = (props) => (_jsx("svg", { width: "1em", height: "1em", viewBox: "0 0 24 24", fill: "currentColor", ...props, children: _jsx("path", { fillRule: "evenodd", d: "M16.243 6.757a1 1 0 0 1 1 1v7.072a1 1 0 0 1-2 0v-4.657L8.464 16.95a1 1 0 0 1-1.414-1.414l6.778-6.779H9.172a1 1 0 0 1 0-2h7.07Z", clipRule: "evenodd" }) })); +export default ArrowUpRight; +//# sourceMappingURL=ArrowUpRight.js.map \ No newline at end of file diff --git a/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/Icon/svg/ArrowUpRight.js.map b/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/Icon/svg/ArrowUpRight.js.map new file mode 100644 index 0000000000000000000000000000000000000000..f9fd6c47e5d8898eb4a3dba1ee3ec9fc0c46b847 --- /dev/null +++ b/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/Icon/svg/ArrowUpRight.js.map @@ -0,0 +1 @@ +{"version":3,"file":"ArrowUpRight.js","sourceRoot":"","sources":["../../../../../src/components/Icon/svg/ArrowUpRight.tsx"],"names":[],"mappings":";AACA,MAAM,YAAY,GAAG,CAAC,KAA8B,EAAE,EAAE,CAAC,CACvD,cAAK,KAAK,EAAC,KAAK,EAAC,MAAM,EAAC,KAAK,EAAC,OAAO,EAAC,WAAW,EAAC,IAAI,EAAC,cAAc,KAAK,KAAK,YAC7E,eACE,QAAQ,EAAC,SAAS,EAClB,CAAC,EAAC,gIAAgI,EAClI,QAAQ,EAAC,SAAS,GAClB,GACE,CACP,CAAA;AACD,eAAe,YAAY,CAAA","sourcesContent":["import type { SVGProps } from \"react\"\nconst ArrowUpRight = (props: SVGProps) => (\n \n \n \n)\nexport default ArrowUpRight\n"]} \ No newline at end of file diff --git a/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/Icon/svg/ArrowUpSm.js b/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/Icon/svg/ArrowUpSm.js new file mode 100644 index 0000000000000000000000000000000000000000..a2adb17db54f80881d5a39da4e8451d692d9f1f6 --- /dev/null +++ b/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/Icon/svg/ArrowUpSm.js @@ -0,0 +1,4 @@ +import { jsx as _jsx } from "react/jsx-runtime"; +const ArrowUpSm = (props) => (_jsx("svg", { width: "1em", height: "1em", viewBox: "0 0 24 24", fill: "currentColor", ...props, children: _jsx("path", { d: "M11.2929 5.29289C11.6834 4.90237 12.3166 4.90237 12.7071 5.29289L17.7071 10.2929C18.0976 10.6834 18.0976 11.3166 17.7071 11.7071C17.3166 12.0976 16.6834 12.0976 16.2929 11.7071L13 8.41421V18C13 18.5523 12.5523 19 12 19C11.4477 19 11 18.5523 11 18V8.41421L7.70711 11.7071C7.31658 12.0976 6.68342 12.0976 6.29289 11.7071C5.90237 11.3166 5.90237 10.6834 6.29289 10.2929L11.2929 5.29289Z", fill: "currentColor" }) })); +export default ArrowUpSm; +//# sourceMappingURL=ArrowUpSm.js.map \ No newline at end of file diff --git a/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/Icon/svg/ArrowUpSm.js.map b/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/Icon/svg/ArrowUpSm.js.map new file mode 100644 index 0000000000000000000000000000000000000000..0993f123b8ad652f9c14cefcb295d7b279bd14aa --- /dev/null +++ b/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/Icon/svg/ArrowUpSm.js.map @@ -0,0 +1 @@ +{"version":3,"file":"ArrowUpSm.js","sourceRoot":"","sources":["../../../../../src/components/Icon/svg/ArrowUpSm.tsx"],"names":[],"mappings":";AACA,MAAM,SAAS,GAAG,CAAC,KAA8B,EAAE,EAAE,CAAC,CACpD,cAAK,KAAK,EAAC,KAAK,EAAC,MAAM,EAAC,KAAK,EAAC,OAAO,EAAC,WAAW,EAAC,IAAI,EAAC,cAAc,KAAK,KAAK,YAC7E,eACE,CAAC,EAAC,iYAAiY,EACnY,IAAI,EAAC,cAAc,GACnB,GACE,CACP,CAAA;AACD,eAAe,SAAS,CAAA","sourcesContent":["import type { SVGProps } from \"react\"\nconst ArrowUpSm = (props: SVGProps) => (\n \n \n \n)\nexport default ArrowUpSm\n"]} \ No newline at end of file diff --git a/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/Icon/svg/AspectRatio11.js b/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/Icon/svg/AspectRatio11.js new file mode 100644 index 0000000000000000000000000000000000000000..7d3a39e75709fb276b1b5664a97dac104c381005 --- /dev/null +++ b/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/Icon/svg/AspectRatio11.js @@ -0,0 +1,4 @@ +import { jsx as _jsx } from "react/jsx-runtime"; +const AspectRatio11 = (props) => (_jsx("svg", { width: "1em", height: "1em", viewBox: "0 0 24 24", fill: "currentColor", ...props, children: _jsx("path", { d: "M8.7587 3H15.2413C16.0463 2.99999 16.7106 2.99998 17.2518 3.04419C17.8139 3.09012 18.3306 3.18868 18.816 3.43597C19.5686 3.81947 20.1805 4.43139 20.564 5.18404C20.8113 5.66937 20.9099 6.18608 20.9558 6.74817C21 7.28936 21 7.95372 21 8.75868V15.2413C21 16.0463 21 16.7106 20.9558 17.2518C20.9099 17.8139 20.8113 18.3306 20.564 18.816C20.1805 19.5686 19.5686 20.1805 18.816 20.564C18.3306 20.8113 17.8139 20.9099 17.2518 20.9558C16.7106 21 16.0463 21 15.2413 21H8.75868C7.95372 21 7.28936 21 6.74817 20.9558C6.18608 20.9099 5.66937 20.8113 5.18404 20.564C4.43139 20.1805 3.81947 19.5686 3.43597 18.816C3.18868 18.3306 3.09012 17.8139 3.04419 17.2518C2.99998 16.7106 2.99999 16.0463 3 15.2413V8.7587C2.99999 7.95373 2.99998 7.28937 3.04419 6.74817C3.09012 6.18608 3.18868 5.66937 3.43597 5.18404C3.81947 4.43139 4.43139 3.81947 5.18404 3.43597C5.66937 3.18868 6.18608 3.09012 6.74817 3.04419C7.28937 2.99998 7.95373 2.99999 8.7587 3ZM6.91104 5.03755C6.47262 5.07337 6.24842 5.1383 6.09202 5.21799C5.7157 5.40973 5.40973 5.7157 5.21799 6.09202C5.1383 6.24842 5.07337 6.47262 5.03755 6.91104C5.00078 7.36113 5 7.94342 5 8.8V15.2C5 16.0566 5.00078 16.6389 5.03755 17.089C5.07337 17.5274 5.1383 17.7516 5.21799 17.908C5.40973 18.2843 5.7157 18.5903 6.09202 18.782C6.24842 18.8617 6.47262 18.9266 6.91104 18.9624C7.36113 18.9992 7.94342 19 8.8 19H15.2C16.0566 19 16.6389 18.9992 17.089 18.9624C17.5274 18.9266 17.7516 18.8617 17.908 18.782C18.2843 18.5903 18.5903 18.2843 18.782 17.908C18.8617 17.7516 18.9266 17.5274 18.9624 17.089C18.9992 16.6389 19 16.0566 19 15.2V8.8C19 7.94342 18.9992 7.36113 18.9624 6.91104C18.9266 6.47262 18.8617 6.24842 18.782 6.09202C18.5903 5.7157 18.2843 5.40973 17.908 5.21799C17.7516 5.1383 17.5274 5.07337 17.089 5.03755C16.6389 5.00078 16.0566 5 15.2 5H8.8C7.94342 5 7.36113 5.00078 6.91104 5.03755Z", fill: "currentColor" }) })); +export default AspectRatio11; +//# sourceMappingURL=AspectRatio11.js.map \ No newline at end of file diff --git a/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/Icon/svg/AspectRatio11.js.map b/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/Icon/svg/AspectRatio11.js.map new file mode 100644 index 0000000000000000000000000000000000000000..1f2be491e4604c62f4e66b52f0c4bbf10b811744 --- /dev/null +++ b/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/Icon/svg/AspectRatio11.js.map @@ -0,0 +1 @@ +{"version":3,"file":"AspectRatio11.js","sourceRoot":"","sources":["../../../../../src/components/Icon/svg/AspectRatio11.tsx"],"names":[],"mappings":";AACA,MAAM,aAAa,GAAG,CAAC,KAA8B,EAAE,EAAE,CAAC,CACxD,cAAK,KAAK,EAAC,KAAK,EAAC,MAAM,EAAC,KAAK,EAAC,OAAO,EAAC,WAAW,EAAC,IAAI,EAAC,cAAc,KAAK,KAAK,YAC7E,eACE,CAAC,EAAC,myDAAmyD,EACryD,IAAI,EAAC,cAAc,GACnB,GACE,CACP,CAAA;AACD,eAAe,aAAa,CAAA","sourcesContent":["import type { SVGProps } from \"react\"\nconst AspectRatio11 = (props: SVGProps) => (\n \n \n \n)\nexport default AspectRatio11\n"]} \ No newline at end of file diff --git a/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/Icon/svg/AspectRatio169.js b/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/Icon/svg/AspectRatio169.js new file mode 100644 index 0000000000000000000000000000000000000000..895bc8108744f82f3fe10c9629b384e8929c2834 --- /dev/null +++ b/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/Icon/svg/AspectRatio169.js @@ -0,0 +1,4 @@ +import { jsx as _jsx } from "react/jsx-runtime"; +const AspectRatio169 = (props) => (_jsx("svg", { width: "1em", height: "1em", viewBox: "0 0 24 24", fill: "currentColor", ...props, children: _jsx("path", { d: "M5.7587 6H18.2413C19.0463 5.99999 19.7106 5.99998 20.2518 6.04419C20.8139 6.09012 21.3306 6.18868 21.816 6.43597C22.5686 6.81947 23.1805 7.43139 23.564 8.18404C23.8113 8.66937 23.9099 9.18608 23.9558 9.74817C24 10.2894 24 10.9537 24 11.7587V12.2413C24 13.0463 24 13.7106 23.9558 14.2518C23.9099 14.8139 23.8113 15.3306 23.564 15.816C23.1805 16.5686 22.5686 17.1805 21.816 17.564C21.3306 17.8113 20.8139 17.9099 20.2518 17.9558C19.7106 18 19.0463 18 18.2413 18H5.75872C4.95374 18 4.28938 18 3.74817 17.9558C3.18608 17.9099 2.66937 17.8113 2.18404 17.564C1.43139 17.1805 0.819468 16.5686 0.435975 15.816C0.188684 15.3306 0.0901197 14.8139 0.0441945 14.2518C-2.28137e-05 13.7106 -1.23241e-05 13.0463 4.31291e-07 12.2413V11.7587C-1.23241e-05 10.9537 -2.28137e-05 10.2894 0.0441945 9.74817C0.0901197 9.18608 0.188684 8.66937 0.435975 8.18404C0.819468 7.43139 1.43139 6.81947 2.18404 6.43597C2.66937 6.18868 3.18608 6.09012 3.74817 6.04419C4.28937 5.99998 4.95373 5.99999 5.7587 6ZM3.91104 8.03755C3.47262 8.07337 3.24842 8.1383 3.09202 8.21799C2.7157 8.40973 2.40973 8.7157 2.21799 9.09202C2.1383 9.24842 2.07337 9.47262 2.03755 9.91104C2.00078 10.3611 2 10.9434 2 11.8V12.2C2 13.0566 2.00078 13.6389 2.03755 14.089C2.07337 14.5274 2.1383 14.7516 2.21799 14.908C2.40973 15.2843 2.7157 15.5903 3.09202 15.782C3.24842 15.8617 3.47262 15.9266 3.91104 15.9624C4.36113 15.9992 4.94342 16 5.8 16H18.2C19.0566 16 19.6389 15.9992 20.089 15.9624C20.5274 15.9266 20.7516 15.8617 20.908 15.782C21.2843 15.5903 21.5903 15.2843 21.782 14.908C21.8617 14.7516 21.9266 14.5274 21.9624 14.089C21.9992 13.6389 22 13.0566 22 12.2V11.8C22 10.9434 21.9992 10.3611 21.9624 9.91104C21.9266 9.47262 21.8617 9.24842 21.782 9.09202C21.5903 8.7157 21.2843 8.40973 20.908 8.21799C20.7516 8.1383 20.5274 8.07337 20.089 8.03755C19.6389 8.00078 19.0566 8 18.2 8H5.8C4.94342 8 4.36113 8.00078 3.91104 8.03755Z", fill: "currentColor" }) })); +export default AspectRatio169; +//# sourceMappingURL=AspectRatio169.js.map \ No newline at end of file diff --git a/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/Icon/svg/AspectRatio169.js.map b/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/Icon/svg/AspectRatio169.js.map new file mode 100644 index 0000000000000000000000000000000000000000..700b38d69889a47bd013f02d7cb8b64376ab6328 --- /dev/null +++ b/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/Icon/svg/AspectRatio169.js.map @@ -0,0 +1 @@ +{"version":3,"file":"AspectRatio169.js","sourceRoot":"","sources":["../../../../../src/components/Icon/svg/AspectRatio169.tsx"],"names":[],"mappings":";AACA,MAAM,cAAc,GAAG,CAAC,KAA8B,EAAE,EAAE,CAAC,CACzD,cAAK,KAAK,EAAC,KAAK,EAAC,MAAM,EAAC,KAAK,EAAC,OAAO,EAAC,WAAW,EAAC,IAAI,EAAC,cAAc,KAAK,KAAK,YAC7E,eACE,CAAC,EAAC,k1DAAk1D,EACp1D,IAAI,EAAC,cAAc,GACnB,GACE,CACP,CAAA;AACD,eAAe,cAAc,CAAA","sourcesContent":["import type { SVGProps } from \"react\"\nconst AspectRatio169 = (props: SVGProps) => (\n \n \n \n)\nexport default AspectRatio169\n"]} \ No newline at end of file diff --git a/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/Icon/svg/AspectRatio34.js b/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/Icon/svg/AspectRatio34.js new file mode 100644 index 0000000000000000000000000000000000000000..4e73a73ccc22b4668ce663c2070388aa02d104ca --- /dev/null +++ b/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/Icon/svg/AspectRatio34.js @@ -0,0 +1,4 @@ +import { jsx as _jsx } from "react/jsx-runtime"; +const AspectRatio34 = (props) => (_jsx("svg", { width: "1em", height: "1em", viewBox: "0 0 24 24", fill: "currentColor", ...props, children: _jsx("path", { d: "M9.7587 2H14.2413C15.0463 1.99999 15.7106 1.99998 16.2518 2.04419C16.8139 2.09012 17.3306 2.18868 17.816 2.43597C18.5686 2.81947 19.1805 3.43139 19.564 4.18404C19.8113 4.66937 19.9099 5.18608 19.9558 5.74817C20 6.28938 20 6.95374 20 7.75873V16.2413C20 17.0463 20 17.7106 19.9558 18.2518C19.9099 18.8139 19.8113 19.3306 19.564 19.816C19.1805 20.5686 18.5686 21.1805 17.816 21.564C17.3306 21.8113 16.8139 21.9099 16.2518 21.9558C15.7106 22 15.0463 22 14.2413 22H9.75868C8.95372 22 8.28936 22 7.74818 21.9558C7.18608 21.9099 6.66937 21.8113 6.18404 21.564C5.43139 21.1805 4.81947 20.5686 4.43597 19.816C4.18868 19.3306 4.09012 18.8139 4.04419 18.2518C3.99998 17.7106 3.99999 17.0463 4 16.2413V7.7587C3.99999 6.95373 3.99998 6.28937 4.04419 5.74817C4.09012 5.18608 4.18868 4.66937 4.43597 4.18404C4.81947 3.43139 5.43139 2.81947 6.18404 2.43597C6.66937 2.18868 7.18608 2.09012 7.74817 2.04419C8.28937 1.99998 8.95373 1.99999 9.7587 2ZM7.91104 4.03755C7.47262 4.07337 7.24842 4.1383 7.09202 4.21799C6.7157 4.40973 6.40973 4.7157 6.21799 5.09202C6.1383 5.24842 6.07337 5.47262 6.03755 5.91104C6.00078 6.36113 6 6.94342 6 7.8V16.2C6 17.0566 6.00078 17.6389 6.03755 18.089C6.07337 18.5274 6.1383 18.7516 6.21799 18.908C6.40973 19.2843 6.7157 19.5903 7.09202 19.782C7.24842 19.8617 7.47262 19.9266 7.91104 19.9624C8.36113 19.9992 8.94342 20 9.8 20H14.2C15.0566 20 15.6389 19.9992 16.089 19.9624C16.5274 19.9266 16.7516 19.8617 16.908 19.782C17.2843 19.5903 17.5903 19.2843 17.782 18.908C17.8617 18.7516 17.9266 18.5274 17.9624 18.089C17.9992 17.6389 18 17.0566 18 16.2V7.8C18 6.94342 17.9992 6.36113 17.9624 5.91104C17.9266 5.47262 17.8617 5.24842 17.782 5.09202C17.5903 4.7157 17.2843 4.40973 16.908 4.21799C16.7516 4.1383 16.5274 4.07337 16.089 4.03755C15.6389 4.00078 15.0566 4 14.2 4H9.8C8.94342 4 8.36113 4.00078 7.91104 4.03755Z", fill: "currentColor" }) })); +export default AspectRatio34; +//# sourceMappingURL=AspectRatio34.js.map \ No newline at end of file diff --git a/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/Icon/svg/AspectRatio34.js.map b/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/Icon/svg/AspectRatio34.js.map new file mode 100644 index 0000000000000000000000000000000000000000..082a1d195c5294d2a998e4dd167efcd5d480f6ed --- /dev/null +++ b/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/Icon/svg/AspectRatio34.js.map @@ -0,0 +1 @@ +{"version":3,"file":"AspectRatio34.js","sourceRoot":"","sources":["../../../../../src/components/Icon/svg/AspectRatio34.tsx"],"names":[],"mappings":";AACA,MAAM,aAAa,GAAG,CAAC,KAA8B,EAAE,EAAE,CAAC,CACxD,cAAK,KAAK,EAAC,KAAK,EAAC,MAAM,EAAC,KAAK,EAAC,OAAO,EAAC,WAAW,EAAC,IAAI,EAAC,cAAc,KAAK,KAAK,YAC7E,eACE,CAAC,EAAC,myDAAmyD,EACryD,IAAI,EAAC,cAAc,GACnB,GACE,CACP,CAAA;AACD,eAAe,aAAa,CAAA","sourcesContent":["import type { SVGProps } from \"react\"\nconst AspectRatio34 = (props: SVGProps) => (\n \n \n \n)\nexport default AspectRatio34\n"]} \ No newline at end of file diff --git a/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/Icon/svg/AspectRatio43.js b/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/Icon/svg/AspectRatio43.js new file mode 100644 index 0000000000000000000000000000000000000000..e488f4eacf799e2ab5b4bb20e10680c375c0163d --- /dev/null +++ b/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/Icon/svg/AspectRatio43.js @@ -0,0 +1,4 @@ +import { jsx as _jsx } from "react/jsx-runtime"; +const AspectRatio43 = (props) => (_jsx("svg", { width: "1em", height: "1em", viewBox: "0 0 24 24", fill: "currentColor", ...props, children: _jsx("path", { d: "M7.7587 4H16.2413C17.0463 3.99999 17.7106 3.99998 18.2518 4.04419C18.8139 4.09012 19.3306 4.18868 19.816 4.43597C20.5686 4.81947 21.1805 5.43139 21.564 6.18404C21.8113 6.66937 21.9099 7.18608 21.9558 7.74817C22 8.28936 22 8.95372 22 9.75868V14.2413C22 15.0463 22 15.7106 21.9558 16.2518C21.9099 16.8139 21.8113 17.3306 21.564 17.816C21.1805 18.5686 20.5686 19.1805 19.816 19.564C19.3306 19.8113 18.8139 19.9099 18.2518 19.9558C17.7106 20 17.0463 20 16.2413 20H7.75872C6.95374 20 6.28938 20 5.74817 19.9558C5.18608 19.9099 4.66937 19.8113 4.18404 19.564C3.43139 19.1805 2.81947 18.5686 2.43597 17.816C2.18868 17.3306 2.09012 16.8139 2.04419 16.2518C1.99998 15.7106 1.99999 15.0463 2 14.2413V9.7587C1.99999 8.95373 1.99998 8.28937 2.04419 7.74818C2.09012 7.18608 2.18868 6.66937 2.43597 6.18404C2.81947 5.43139 3.43139 4.81947 4.18404 4.43597C4.66937 4.18868 5.18608 4.09012 5.74817 4.04419C6.28937 3.99998 6.95373 3.99999 7.7587 4ZM5.91104 6.03755C5.47262 6.07337 5.24842 6.1383 5.09202 6.21799C4.7157 6.40973 4.40973 6.7157 4.21799 7.09202C4.1383 7.24842 4.07337 7.47262 4.03755 7.91104C4.00078 8.36113 4 8.94342 4 9.8V14.2C4 15.0566 4.00078 15.6389 4.03755 16.089C4.07337 16.5274 4.1383 16.7516 4.21799 16.908C4.40973 17.2843 4.7157 17.5903 5.09202 17.782C5.24842 17.8617 5.47262 17.9266 5.91104 17.9624C6.36113 17.9992 6.94342 18 7.8 18H16.2C17.0566 18 17.6389 17.9992 18.089 17.9624C18.5274 17.9266 18.7516 17.8617 18.908 17.782C19.2843 17.5903 19.5903 17.2843 19.782 16.908C19.8617 16.7516 19.9266 16.5274 19.9624 16.089C19.9992 15.6389 20 15.0566 20 14.2V9.8C20 8.94342 19.9992 8.36113 19.9624 7.91104C19.9266 7.47262 19.8617 7.24842 19.782 7.09202C19.5903 6.7157 19.2843 6.40973 18.908 6.21799C18.7516 6.1383 18.5274 6.07337 18.089 6.03755C17.6389 6.00078 17.0566 6 16.2 6H7.8C6.94342 6 6.36113 6.00078 5.91104 6.03755Z", fill: "currentColor" }) })); +export default AspectRatio43; +//# sourceMappingURL=AspectRatio43.js.map \ No newline at end of file diff --git a/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/Icon/svg/AspectRatio43.js.map b/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/Icon/svg/AspectRatio43.js.map new file mode 100644 index 0000000000000000000000000000000000000000..16bb83aa5b3b93e56506dc616bd4a266f45f9def --- /dev/null +++ b/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/Icon/svg/AspectRatio43.js.map @@ -0,0 +1 @@ +{"version":3,"file":"AspectRatio43.js","sourceRoot":"","sources":["../../../../../src/components/Icon/svg/AspectRatio43.tsx"],"names":[],"mappings":";AACA,MAAM,aAAa,GAAG,CAAC,KAA8B,EAAE,EAAE,CAAC,CACxD,cAAK,KAAK,EAAC,KAAK,EAAC,MAAM,EAAC,KAAK,EAAC,OAAO,EAAC,WAAW,EAAC,IAAI,EAAC,cAAc,KAAK,KAAK,YAC7E,eACE,CAAC,EAAC,myDAAmyD,EACryD,IAAI,EAAC,cAAc,GACnB,GACE,CACP,CAAA;AACD,eAAe,aAAa,CAAA","sourcesContent":["import type { SVGProps } from \"react\"\nconst AspectRatio43 = (props: SVGProps) => (\n \n \n \n)\nexport default AspectRatio43\n"]} \ No newline at end of file diff --git a/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/Icon/svg/AspectRatio916.js b/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/Icon/svg/AspectRatio916.js new file mode 100644 index 0000000000000000000000000000000000000000..d3a4d2680b86fa32b1db3e10d0944e0c6a5a1c48 --- /dev/null +++ b/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/Icon/svg/AspectRatio916.js @@ -0,0 +1,4 @@ +import { jsx as _jsx } from "react/jsx-runtime"; +const AspectRatio916 = (props) => (_jsx("svg", { width: "1em", height: "1em", viewBox: "0 0 24 24", fill: "currentColor", ...props, children: _jsx("path", { d: "M10.7587 1H13.2413C14.0463 0.999988 14.7106 0.999977 15.2518 1.04419C15.8139 1.09012 16.3306 1.18868 16.816 1.43597C17.5686 1.81947 18.1805 2.43139 18.564 3.18404C18.8113 3.66937 18.9099 4.18608 18.9558 4.74817C19 5.28938 19 5.95374 19 6.75873V17.2413C19 18.0463 19 18.7106 18.9558 19.2518C18.9099 19.8139 18.8113 20.3306 18.564 20.816C18.1805 21.5686 17.5686 22.1805 16.816 22.564C16.3306 22.8113 15.8139 22.9099 15.2518 22.9558C14.7106 23 14.0463 23 13.2413 23H10.7587C9.95372 23 9.28936 23 8.74817 22.9558C8.18608 22.9099 7.66937 22.8113 7.18404 22.564C6.43139 22.1805 5.81947 21.5686 5.43597 20.816C5.18868 20.3306 5.09012 19.8139 5.04419 19.2518C4.99998 18.7106 4.99999 18.0463 5 17.2413V6.7587C4.99999 5.95373 4.99998 5.28937 5.04419 4.74817C5.09012 4.18608 5.18868 3.66937 5.43597 3.18404C5.81947 2.43139 6.43139 1.81947 7.18404 1.43597C7.66937 1.18868 8.18608 1.09012 8.74818 1.04419C9.28937 0.999977 9.95373 0.999988 10.7587 1ZM8.91104 3.03755C8.47262 3.07337 8.24842 3.1383 8.09202 3.21799C7.7157 3.40973 7.40973 3.7157 7.21799 4.09202C7.1383 4.24842 7.07337 4.47262 7.03755 4.91104C7.00078 5.36113 7 5.94342 7 6.8V17.2C7 18.0566 7.00078 18.6389 7.03755 19.089C7.07337 19.5274 7.1383 19.7516 7.21799 19.908C7.40973 20.2843 7.7157 20.5903 8.09202 20.782C8.24842 20.8617 8.47262 20.9266 8.91104 20.9624C9.36113 20.9992 9.94342 21 10.8 21H13.2C14.0566 21 14.6389 20.9992 15.089 20.9624C15.5274 20.9266 15.7516 20.8617 15.908 20.782C16.2843 20.5903 16.5903 20.2843 16.782 19.908C16.8617 19.7516 16.9266 19.5274 16.9624 19.089C16.9992 18.6389 17 18.0566 17 17.2V6.8C17 5.94342 16.9992 5.36113 16.9624 4.91104C16.9266 4.47262 16.8617 4.24842 16.782 4.09202C16.5903 3.7157 16.2843 3.40973 15.908 3.21799C15.7516 3.1383 15.5274 3.07337 15.089 3.03755C14.6389 3.00078 14.0566 3 13.2 3H10.8C9.94342 3 9.36113 3.00078 8.91104 3.03755Z", fill: "currentColor" }) })); +export default AspectRatio916; +//# sourceMappingURL=AspectRatio916.js.map \ No newline at end of file diff --git a/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/Icon/svg/AspectRatio916.js.map b/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/Icon/svg/AspectRatio916.js.map new file mode 100644 index 0000000000000000000000000000000000000000..53fb9a9bd7b3b8c5ebebce1d71301020658bc48e --- /dev/null +++ b/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/Icon/svg/AspectRatio916.js.map @@ -0,0 +1 @@ +{"version":3,"file":"AspectRatio916.js","sourceRoot":"","sources":["../../../../../src/components/Icon/svg/AspectRatio916.tsx"],"names":[],"mappings":";AACA,MAAM,cAAc,GAAG,CAAC,KAA8B,EAAE,EAAE,CAAC,CACzD,cAAK,KAAK,EAAC,KAAK,EAAC,MAAM,EAAC,KAAK,EAAC,OAAO,EAAC,WAAW,EAAC,IAAI,EAAC,cAAc,KAAK,KAAK,YAC7E,eACE,CAAC,EAAC,2yDAA2yD,EAC7yD,IAAI,EAAC,cAAc,GACnB,GACE,CACP,CAAA;AACD,eAAe,cAAc,CAAA","sourcesContent":["import type { SVGProps } from \"react\"\nconst AspectRatio916 = (props: SVGProps) => (\n \n \n \n)\nexport default AspectRatio916\n"]} \ No newline at end of file diff --git a/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/Icon/svg/Assistant.js b/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/Icon/svg/Assistant.js new file mode 100644 index 0000000000000000000000000000000000000000..907ced94e94c04cf2af4bffe674628bafeae22a4 --- /dev/null +++ b/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/Icon/svg/Assistant.js @@ -0,0 +1,4 @@ +import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime"; +const Assistant = (props) => (_jsxs("svg", { width: "1em", height: "1em", viewBox: "0 0 24 24", fill: "currentColor", ...props, children: [_jsx("path", { d: "M11 7.5a1.5 1.5 0 1 1-3 0 1.5 1.5 0 0 1 3 0ZM14.5 9a1.5 1.5 0 1 0 0-3 1.5 1.5 0 0 0 0 3Z" }), _jsx("path", { fillRule: "evenodd", d: "M12 1a1 1 0 0 1 1 1v.5h4a3 3 0 0 1 3 3V9a5 5 0 0 1-5 5H9a5 5 0 0 1-5-5V5.5a3 3 0 0 1 3-3h4V2a1 1 0 0 1 1-1ZM7 4.5h10a1 1 0 0 1 1 1V9a3 3 0 0 1-3 3H9a3 3 0 0 1-3-3V5.5a1 1 0 0 1 1-1Z", clipRule: "evenodd" }), _jsx("path", { d: "M6 21c0-.974.551-1.95 1.632-2.722C8.71 17.508 10.252 17 12 17c1.749 0 3.29.508 4.369 1.278C17.449 19.05 18 20.026 18 21a1 1 0 1 0 2 0c0-1.788-1.016-3.311-2.469-4.35-1.455-1.038-3.414-1.65-5.53-1.65-2.118 0-4.077.611-5.532 1.65C5.016 17.69 4 19.214 4 21a1 1 0 1 0 2 0Z" })] })); +export default Assistant; +//# sourceMappingURL=Assistant.js.map \ No newline at end of file diff --git a/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/Icon/svg/Assistant.js.map b/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/Icon/svg/Assistant.js.map new file mode 100644 index 0000000000000000000000000000000000000000..16dd1c42549caef17e1c0ce6c22aeecd49f15579 --- /dev/null +++ b/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/Icon/svg/Assistant.js.map @@ -0,0 +1 @@ +{"version":3,"file":"Assistant.js","sourceRoot":"","sources":["../../../../../src/components/Icon/svg/Assistant.tsx"],"names":[],"mappings":";AACA,MAAM,SAAS,GAAG,CAAC,KAA8B,EAAE,EAAE,CAAC,CACpD,eAAK,KAAK,EAAC,KAAK,EAAC,MAAM,EAAC,KAAK,EAAC,OAAO,EAAC,WAAW,EAAC,IAAI,EAAC,cAAc,KAAK,KAAK,aAC7E,eAAM,CAAC,EAAC,0FAA0F,GAAG,EACrG,eACE,QAAQ,EAAC,SAAS,EAClB,CAAC,EAAC,uLAAuL,EACzL,QAAQ,EAAC,SAAS,GAClB,EACF,eAAM,CAAC,EAAC,6QAA6Q,GAAG,IACpR,CACP,CAAA;AACD,eAAe,SAAS,CAAA","sourcesContent":["import type { SVGProps } from \"react\"\nconst Assistant = (props: SVGProps) => (\n \n \n \n \n \n)\nexport default Assistant\n"]} \ No newline at end of file diff --git a/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/Icon/svg/Astronout.js b/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/Icon/svg/Astronout.js new file mode 100644 index 0000000000000000000000000000000000000000..b11dd598b286a9ee99d294577b8a3cb877b775a3 --- /dev/null +++ b/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/Icon/svg/Astronout.js @@ -0,0 +1,4 @@ +import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime"; +const Astronout = (props) => (_jsxs("svg", { width: "1em", height: "1em", viewBox: "0 0 24 24", fill: "currentColor", ...props, children: [_jsx("path", { d: "M9.83972 10.1155L9.59566 10.8477C9.47795 11.2008 9.20083 11.4779 8.84768 11.5957L8.11552 11.8397C7.96149 11.8911 7.96149 12.1089 8.11552 12.1603L8.84768 12.4043C9.20083 12.5221 9.47795 12.7992 9.59566 13.1523L9.83972 13.8845C9.89106 14.0385 10.1089 14.0385 10.1603 13.8845L10.4043 13.1523C10.5221 12.7992 10.7992 12.5221 11.1523 12.4043L11.8845 12.1603C12.0385 12.1089 12.0385 11.8911 11.8845 11.8397L11.1523 11.5957C10.7992 11.4779 10.5221 11.2008 10.4043 10.8477L10.1603 10.1155C10.1089 9.96149 9.89106 9.96149 9.83972 10.1155Z", fill: "currentColor" }), _jsx("path", { d: "M11.9741 7H12.0259C12.8353 6.99999 13.6609 6.99999 14.4222 7.06627C15.1907 7.13318 15.9677 7.27244 16.6609 7.59168C17.3773 7.92159 17.9904 8.43801 18.4085 9.21252C18.8158 9.96719 19 10.8962 19 12C19 13.9604 18.1897 15.5058 16.8526 16.5351C15.5465 17.5405 13.8122 18 12 18C10.1878 18 8.45353 17.5405 7.14739 16.5351C5.81028 15.5058 5 13.9604 5 12C5 10.8962 5.18418 9.96719 5.59152 9.21252C6.00957 8.43801 6.62266 7.92159 7.33908 7.59168C8.03235 7.27244 8.80929 7.13318 9.57779 7.06627C10.3391 6.99999 11.1647 6.99999 11.9741 7ZM7.3515 10.1625C7.15161 10.5328 7 11.1039 7 12C7 13.3534 7.53286 14.3079 8.36733 14.9502C9.23276 15.6164 10.4985 16 12 16C13.5015 16 14.7672 15.6164 15.6327 14.9502C16.4671 14.3079 17 13.3534 17 12C17 11.1039 16.8484 10.5328 16.6485 10.1625C16.4593 9.812 16.1937 9.57841 15.8244 9.40832C15.4318 9.22757 14.9159 9.11682 14.2487 9.05873C13.5825 9.00072 12.8392 9 12 9C11.1608 9 10.4175 9.00072 9.75127 9.05873C9.0841 9.11682 8.56816 9.22757 8.17564 9.40832C7.80627 9.57841 7.54069 9.812 7.3515 10.1625Z", fill: "currentColor" }), _jsx("path", { d: "M5.94481 3.44886C7.37317 2.48424 9.30204 2 12 2C14.698 2 16.6268 2.48424 18.0552 3.44886C19.4916 4.41892 20.2853 5.78391 20.8907 7.23994C21.0042 7.51292 21.2028 7.78203 21.5017 8.13058C21.5538 8.19133 21.6109 8.25649 21.6713 8.32541C21.9206 8.61 22.2261 8.95871 22.4688 9.32571C22.8072 9.83755 23 10.4485 23 11.0926V12.1787C23 12.5726 22.922 12.9543 22.7779 13.3053C22.562 13.8314 22.2336 14.3045 21.9767 14.6747L21.9075 14.7746C21.6141 15.1996 21.4186 15.5078 21.3177 15.8165C20.7523 17.5479 19.8723 19.1314 18.3417 20.2669C16.8114 21.4021 14.7521 22 12 22C9.24794 22 7.18857 21.4021 5.65831 20.2669C4.1277 19.1314 3.24775 17.5479 2.68227 15.8165C2.58146 15.5078 2.38595 15.1996 2.09252 14.7746L2.02336 14.6748C1.76643 14.3045 1.43806 13.8314 1.22211 13.3053C1.078 12.9543 1 12.5725 1 12.1787V11.0926C1 10.4485 1.19282 9.83755 1.53123 9.32571C1.77389 8.9587 2.07939 8.60999 2.32872 8.3254C2.38905 8.25654 2.44622 8.19128 2.49828 8.13057C2.79721 7.78202 2.99581 7.51291 3.10932 7.23993C3.71473 5.7839 4.5084 4.41892 5.94481 3.44886ZM7.06413 5.1063C6.09823 5.75861 5.49751 6.70556 4.95604 8.00779C4.71332 8.59154 4.33414 9.06213 4.01642 9.43259C3.9342 9.52845 3.8571 9.61674 3.78451 9.69986C3.54859 9.97001 3.36038 10.1855 3.19956 10.4288C3.07216 10.6214 3 10.8503 3 11.0926V12.1787C3 12.3077 3.02543 12.4317 3.07227 12.5458C3.20202 12.8619 3.40973 13.1625 3.69823 13.5802L3.73839 13.6383C4.01896 14.0447 4.38049 14.5742 4.58344 15.1956C5.07246 16.6929 5.76575 17.8564 6.84992 18.6607C7.93446 19.4652 9.53141 20 12 20C14.4686 20 16.0656 19.4652 17.1501 18.6607C18.2343 17.8564 18.9276 16.6929 19.4166 15.1956C19.6195 14.5742 19.9811 14.0447 20.2616 13.6383L20.3018 13.5802C20.5903 13.1625 20.798 12.8619 20.9277 12.5458C20.9746 12.4317 21 12.3077 21 12.1787V11.0926C21 10.8503 20.9278 10.6214 20.8004 10.4288C20.6396 10.1855 20.4514 9.97 20.2155 9.69986C20.1429 9.61674 20.0658 9.52845 19.9836 9.4326C19.6659 9.06213 19.2867 8.59154 19.044 8.0078C18.5025 6.70556 17.9018 5.75861 16.9359 5.1063C15.9619 4.44856 14.4806 4 12 4C9.51944 4 8.03808 4.44856 7.06413 5.1063Z", fill: "currentColor" })] })); +export default Astronout; +//# sourceMappingURL=Astronout.js.map \ No newline at end of file diff --git a/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/Icon/svg/Astronout.js.map b/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/Icon/svg/Astronout.js.map new file mode 100644 index 0000000000000000000000000000000000000000..91fa45fc0f2182113234137db7ed365286c5f335 --- /dev/null +++ b/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/Icon/svg/Astronout.js.map @@ -0,0 +1 @@ +{"version":3,"file":"Astronout.js","sourceRoot":"","sources":["../../../../../src/components/Icon/svg/Astronout.tsx"],"names":[],"mappings":";AACA,MAAM,SAAS,GAAG,CAAC,KAA8B,EAAE,EAAE,CAAC,CACpD,eAAK,KAAK,EAAC,KAAK,EAAC,MAAM,EAAC,KAAK,EAAC,OAAO,EAAC,WAAW,EAAC,IAAI,EAAC,cAAc,KAAK,KAAK,aAC7E,eACE,CAAC,EAAC,mhBAAmhB,EACrhB,IAAI,EAAC,cAAc,GACnB,EACF,eACE,CAAC,EAAC,ogCAAogC,EACtgC,IAAI,EAAC,cAAc,GACnB,EACF,eACE,CAAC,EAAC,mhEAAmhE,EACrhE,IAAI,EAAC,cAAc,GACnB,IACE,CACP,CAAA;AACD,eAAe,SAAS,CAAA","sourcesContent":["import type { SVGProps } from \"react\"\nconst Astronout = (props: SVGProps) => (\n \n \n \n \n \n)\nexport default Astronout\n"]} \ No newline at end of file diff --git a/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/Icon/svg/AtSign.js b/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/Icon/svg/AtSign.js new file mode 100644 index 0000000000000000000000000000000000000000..74997d68ab97b95dae2169ecad5f643fdd74dcbb --- /dev/null +++ b/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/Icon/svg/AtSign.js @@ -0,0 +1,4 @@ +import { jsx as _jsx } from "react/jsx-runtime"; +const AtSign = (props) => (_jsx("svg", { width: "1em", height: "1em", viewBox: "0 0 20 20", fill: "currentColor", ...props, children: _jsx("path", { d: "M2.08496 10C2.08496 5.62867 5.62867 2.08496 10 2.08496C14.3433 2.08496 17.915 5.14624 17.915 10V10.0176C17.9149 10.0264 17.9145 10.0384 17.9141 10.0527C17.9132 10.0813 17.9121 10.1206 17.9092 10.1689C17.9032 10.2659 17.8911 10.4011 17.8682 10.5615C17.8227 10.879 17.7308 11.3139 17.54 11.7578C17.3493 12.2018 17.0484 12.6802 16.5732 13.0488C16.0888 13.4246 15.4619 13.6552 14.6807 13.6553C13.6189 13.6553 12.7585 13.0972 12.2305 12.3027C11.5038 13.3172 10.3378 13.9378 9.05664 13.7578C7.113 13.4844 5.93087 11.5134 6.21094 9.52051C6.49101 7.52769 8.17056 5.95857 10.1143 6.23145C10.9098 6.34325 11.5779 6.73994 12.0703 7.30566L12.1025 7.08496C12.1553 6.72154 12.493 6.46973 12.8564 6.52246C13.2199 6.57525 13.4717 6.91291 13.4189 7.27637L13.0039 10.1338C12.8397 11.2875 13.6804 12.3252 14.6807 12.3252C15.1835 12.3251 15.5197 12.1827 15.7578 11.998C16.0054 11.8059 16.1869 11.5361 16.3174 11.2324C16.4478 10.9288 16.5169 10.6163 16.5518 10.373C16.5689 10.2532 16.577 10.1545 16.5811 10.0879C16.5831 10.0548 16.5845 10.0298 16.585 10.0146C16.5852 10.0077 16.5849 10.0027 16.585 10L16.5762 9.62305C16.4012 5.78044 13.5502 3.41504 10 3.41504C6.36321 3.41504 3.41504 6.36321 3.41504 10C3.41504 13.6368 6.36321 16.585 10 16.585C11.2725 16.585 12.4588 16.2244 13.4648 15.6006C13.777 15.407 14.1873 15.5033 14.3809 15.8154C14.5744 16.1275 14.4781 16.5369 14.166 16.7305C12.9555 17.4811 11.5274 17.915 10 17.915C5.62867 17.915 2.08496 14.3714 2.08496 10ZM9.92969 7.54883C8.87298 7.40032 7.72936 8.26904 7.52734 9.70508C7.32549 11.1413 8.1854 12.2929 9.24219 12.4414C10.2988 12.5897 11.4417 11.7202 11.6436 10.2842C11.8454 8.84798 10.9864 7.69741 9.92969 7.54883Z" }) })); +export default AtSign; +//# sourceMappingURL=AtSign.js.map \ No newline at end of file diff --git a/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/Icon/svg/AtSign.js.map b/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/Icon/svg/AtSign.js.map new file mode 100644 index 0000000000000000000000000000000000000000..db4a18ac63beedafeeb579e18c46ea34f4262913 --- /dev/null +++ b/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/Icon/svg/AtSign.js.map @@ -0,0 +1 @@ +{"version":3,"file":"AtSign.js","sourceRoot":"","sources":["../../../../../src/components/Icon/svg/AtSign.tsx"],"names":[],"mappings":";AACA,MAAM,MAAM,GAAG,CAAC,KAA8B,EAAE,EAAE,CAAC,CACjD,cAAK,KAAK,EAAC,KAAK,EAAC,MAAM,EAAC,KAAK,EAAC,OAAO,EAAC,WAAW,EAAC,IAAI,EAAC,cAAc,KAAK,KAAK,YAC7E,eAAM,CAAC,EAAC,wnDAAwnD,GAAG,GAC/nD,CACP,CAAA;AACD,eAAe,MAAM,CAAA","sourcesContent":["import type { SVGProps } from \"react\"\nconst AtSign = (props: SVGProps) => (\n \n \n \n)\nexport default AtSign\n"]} \ No newline at end of file diff --git a/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/Icon/svg/Atom.js b/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/Icon/svg/Atom.js new file mode 100644 index 0000000000000000000000000000000000000000..501b3db69022e0496d9f9476982300ba75664821 --- /dev/null +++ b/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/Icon/svg/Atom.js @@ -0,0 +1,4 @@ +import { jsx as _jsx } from "react/jsx-runtime"; +const Atom = (props) => (_jsx("svg", { width: "1em", height: "1em", viewBox: "0 0 24 24", fill: "currentColor", ...props, children: _jsx("path", { d: "M6.286 4.75c.602-.004 1.374.158 2.28.52.53.213 1.09.487 1.667.82a25.428 25.428 0 0 0-2.19 1.954 25.428 25.428 0 0 0-1.953 2.19 13.144 13.144 0 0 1-.82-1.669c-.362-.905-.524-1.677-.52-2.279.004-.596.167-.95.376-1.16.21-.21.564-.372 1.16-.376ZM12 4.825a16.157 16.157 0 0 0-2.692-1.411c-1.055-.422-2.092-.67-3.035-.664-.95.006-1.873.274-2.561.962s-.956 1.612-.962 2.56c-.006.944.242 1.981.664 3.036.346.865.821 1.773 1.41 2.692a16.234 16.234 0 0 0-1.41 2.692c-.422 1.055-.67 2.092-.664 3.035.006.95.274 1.873.962 2.561s1.612.956 2.56.962c.944.006 1.981-.242 3.036-.664A16.152 16.152 0 0 0 12 19.176c.92.589 1.827 1.065 2.692 1.41 1.055.422 2.092.67 3.035.664.95-.006 1.873-.274 2.561-.962s.956-1.612.962-2.56c.006-.944-.242-1.981-.664-3.036A16.152 16.152 0 0 0 19.176 12a16.158 16.158 0 0 0 1.41-2.692c.422-1.055.67-2.092.664-3.035-.006-.95-.274-1.873-.962-2.561s-1.612-.956-2.56-.962c-.944-.006-1.981.242-3.036.664-.865.346-1.773.821-2.692 1.41Zm0 2.43a23.013 23.013 0 0 1 2.542 2.203A23.014 23.014 0 0 1 16.745 12a23.015 23.015 0 0 1-2.203 2.542A23.015 23.015 0 0 1 12 16.745a23.014 23.014 0 0 1-2.542-2.203A23.013 23.013 0 0 1 7.255 12a23.012 23.012 0 0 1 2.203-2.542A23.012 23.012 0 0 1 12 7.255Zm5.91 2.978a25.42 25.42 0 0 0-1.954-2.19 25.432 25.432 0 0 0-2.19-1.953 13.142 13.142 0 0 1 1.669-.82c.905-.362 1.677-.524 2.279-.52.596.004.95.167 1.16.376.21.21.372.564.376 1.16.004.602-.159 1.374-.52 2.28a13.23 13.23 0 0 1-.82 1.667Zm0 3.534c.333.577.607 1.137.82 1.668.361.905.524 1.677.52 2.279-.004.596-.167.95-.376 1.16-.21.21-.564.372-1.16.376-.602.004-1.374-.159-2.28-.52a13.23 13.23 0 0 1-1.667-.82 25.424 25.424 0 0 0 2.19-1.954 25.424 25.424 0 0 0 1.953-2.19Zm-7.677 4.143c-.577.333-1.137.607-1.668.82-.905.361-1.677.524-2.279.52-.596-.004-.95-.167-1.16-.376-.21-.21-.372-.564-.376-1.16-.004-.602.158-1.374.52-2.28.213-.53.487-1.09.82-1.667.587.74 1.24 1.476 1.954 2.19a25.418 25.418 0 0 0 2.19 1.953Z" }) })); +export default Atom; +//# sourceMappingURL=Atom.js.map \ No newline at end of file diff --git a/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/Icon/svg/Atom.js.map b/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/Icon/svg/Atom.js.map new file mode 100644 index 0000000000000000000000000000000000000000..3231137fe462a2e4e354cc93d0132388d16e09a7 --- /dev/null +++ b/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/Icon/svg/Atom.js.map @@ -0,0 +1 @@ +{"version":3,"file":"Atom.js","sourceRoot":"","sources":["../../../../../src/components/Icon/svg/Atom.tsx"],"names":[],"mappings":";AACA,MAAM,IAAI,GAAG,CAAC,KAA8B,EAAE,EAAE,CAAC,CAC/C,cAAK,KAAK,EAAC,KAAK,EAAC,MAAM,EAAC,KAAK,EAAC,OAAO,EAAC,WAAW,EAAC,IAAI,EAAC,cAAc,KAAK,KAAK,YAC7E,eAAM,CAAC,EAAC,w3DAAw3D,GAAG,GAC/3D,CACP,CAAA;AACD,eAAe,IAAI,CAAA","sourcesContent":["import type { SVGProps } from \"react\"\nconst Atom = (props: SVGProps) => (\n \n \n \n)\nexport default Atom\n"]} \ No newline at end of file diff --git a/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/Icon/svg/AutoPairApps.js b/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/Icon/svg/AutoPairApps.js new file mode 100644 index 0000000000000000000000000000000000000000..677fabcbbcad6d34735415496aaffc7ea009c896 --- /dev/null +++ b/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/Icon/svg/AutoPairApps.js @@ -0,0 +1,4 @@ +import { jsx as _jsx } from "react/jsx-runtime"; +const AutoPairApps = (props) => (_jsx("svg", { width: "1em", height: "1em", viewBox: "0 0 24 24", fill: "currentColor", ...props, children: _jsx("path", { fillRule: "evenodd", clipRule: "evenodd", d: "M12.4976 5.00013C11.6564 5.00013 10.9341 5.51983 10.639 6.25938C10.4343 6.77235 9.85248 7.02224 9.33951 6.81754C8.82655 6.61283 8.57665 6.03104 8.78136 5.51808C9.36948 4.04432 10.8104 3.00006 12.4976 3.00006H17.4976C19.7067 3.00006 21.4976 4.79094 21.4976 7.00009V11.0001C21.4976 13.2093 19.7067 15.0001 17.4976 15.0001H11.4976C10.9453 15.0001 10.4975 14.5524 10.4975 14.0001C10.4975 13.4478 10.9453 13.0001 11.4976 13.0001H17.4976C18.6021 13.0001 19.4975 12.1046 19.4975 11.0001V7.00009C19.4975 5.89554 18.6021 5.00013 17.4976 5.00013H12.4976ZM2.50269 13.0001C2.50269 10.7909 4.29356 9.00006 6.50272 9.00006H12.5027C13.055 9.00006 13.5028 9.44779 13.5028 10.0001C13.5028 10.5524 13.055 11.0001 12.5027 11.0001H6.50272C5.39817 11.0001 4.50275 11.8955 4.50275 13.0001V17.0001C4.50275 18.1046 5.39817 19.0001 6.50272 19.0001H11.5027C12.3439 19.0001 13.0662 18.4804 13.3613 17.7408C13.566 17.2278 14.1478 16.9779 14.6608 17.1827C15.1737 17.3874 15.4236 17.9691 15.2189 18.4821C14.6308 19.9559 13.1899 21.0001 11.5027 21.0001H6.50272C4.29356 21.0001 2.50269 19.2092 2.50269 17.0001V13.0001Z", fill: "currentColor" }) })); +export default AutoPairApps; +//# sourceMappingURL=AutoPairApps.js.map \ No newline at end of file diff --git a/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/Icon/svg/AutoPairApps.js.map b/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/Icon/svg/AutoPairApps.js.map new file mode 100644 index 0000000000000000000000000000000000000000..9254cb13bc463a4995d76d29388e954ff2da1245 --- /dev/null +++ b/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/Icon/svg/AutoPairApps.js.map @@ -0,0 +1 @@ +{"version":3,"file":"AutoPairApps.js","sourceRoot":"","sources":["../../../../../src/components/Icon/svg/AutoPairApps.tsx"],"names":[],"mappings":";AACA,MAAM,YAAY,GAAG,CAAC,KAA8B,EAAE,EAAE,CAAC,CACvD,cAAK,KAAK,EAAC,KAAK,EAAC,MAAM,EAAC,KAAK,EAAC,OAAO,EAAC,WAAW,EAAC,IAAI,EAAC,cAAc,KAAK,KAAK,YAC7E,eACE,QAAQ,EAAC,SAAS,EAClB,QAAQ,EAAC,SAAS,EAClB,CAAC,EAAC,gkCAAgkC,EAClkC,IAAI,EAAC,cAAc,GACnB,GACE,CACP,CAAA;AACD,eAAe,YAAY,CAAA","sourcesContent":["import type { SVGProps } from \"react\"\nconst AutoPairApps = (props: SVGProps) => (\n \n \n \n)\nexport default AutoPairApps\n"]} \ No newline at end of file diff --git a/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/Icon/svg/AutoSuggestedEdits.js b/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/Icon/svg/AutoSuggestedEdits.js new file mode 100644 index 0000000000000000000000000000000000000000..2ad59e372ee004b71c122ba91053374916ad0cb7 --- /dev/null +++ b/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/Icon/svg/AutoSuggestedEdits.js @@ -0,0 +1,4 @@ +import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime"; +const AutoSuggestedEdits = (props) => (_jsxs("svg", { width: "1em", height: "1em", viewBox: "0 0 24 24", fill: "currentColor", ...props, children: [_jsx("path", { d: "M8.7587 3H15.2413C16.0463 2.99999 16.7106 2.99998 17.2518 3.04419C17.8139 3.09012 18.3306 3.18868 18.816 3.43598C19.5686 3.81947 20.1805 4.43139 20.564 5.18404C20.8113 5.66937 20.9099 6.18608 20.9558 6.74818C21 7.28937 21 7.95372 21 8.75868V12C21 12.5523 20.5523 13 20 13C19.4477 13 19 12.5523 19 12V8.8C19 7.94342 18.9992 7.36113 18.9624 6.91104C18.9266 6.47262 18.8617 6.24842 18.782 6.09202C18.5903 5.7157 18.2843 5.40974 17.908 5.21799C17.7516 5.1383 17.5274 5.07337 17.089 5.03755C16.6389 5.00078 16.0566 5 15.2 5H8.8C7.94342 5 7.36113 5.00078 6.91104 5.03755C6.47262 5.07337 6.24842 5.1383 6.09202 5.21799C5.7157 5.40974 5.40974 5.7157 5.21799 6.09202C5.1383 6.24842 5.07337 6.47262 5.03755 6.91104C5.00078 7.36113 5 7.94342 5 8.8V14.7C5 15.5566 5.00078 16.1389 5.03755 16.589C5.07337 17.0274 5.1383 17.2516 5.21799 17.408C5.40974 17.7843 5.7157 18.0903 6.09202 18.282C6.24842 18.3617 6.47262 18.4266 6.91104 18.4624C7.36113 18.4992 7.94342 18.5 8.8 18.5H17.5858L16.7929 17.7071C16.4024 17.3166 16.4024 16.6834 16.7929 16.2929C17.1834 15.9024 17.8166 15.9024 18.2071 16.2929L20.7071 18.7929C21.0976 19.1834 21.0976 19.8166 20.7071 20.2071L18.2071 22.7071C17.8166 23.0976 17.1834 23.0976 16.7929 22.7071C16.4024 22.3166 16.4024 21.6834 16.7929 21.2929L17.5858 20.5H8.75868C7.95372 20.5 7.28937 20.5 6.74818 20.4558C6.18608 20.4099 5.66937 20.3113 5.18404 20.064C4.43139 19.6805 3.81947 19.0686 3.43598 18.316C3.18868 17.8306 3.09012 17.3139 3.04419 16.7518C2.99998 16.2106 2.99999 15.5463 3 14.7413V8.7587C2.99999 7.95374 2.99998 7.28937 3.04419 6.74818C3.09012 6.18608 3.18868 5.66937 3.43598 5.18404C3.81947 4.43139 4.43139 3.81947 5.18404 3.43598C5.66937 3.18868 6.18608 3.09012 6.74818 3.04419C7.28937 2.99998 7.95374 2.99999 8.7587 3Z", fill: "currentColor" }), _jsx("path", { d: "M15.9639 9.3288C16.2836 8.87843 16.1776 8.25419 15.7272 7.93453C15.2769 7.61487 14.6526 7.72083 14.333 8.1712L10.7906 13.1621L9.3855 11.6297C9.01225 11.2227 8.37968 11.1952 7.97261 11.5685C7.56554 11.9417 7.53813 12.5743 7.91138 12.9814L10.1528 15.4258C10.3569 15.6485 10.6507 15.7669 10.9522 15.7481C11.2537 15.7292 11.5305 15.5751 11.7053 15.3288L15.9639 9.3288Z", fill: "currentColor" })] })); +export default AutoSuggestedEdits; +//# sourceMappingURL=AutoSuggestedEdits.js.map \ No newline at end of file diff --git a/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/Icon/svg/AutoSuggestedEdits.js.map b/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/Icon/svg/AutoSuggestedEdits.js.map new file mode 100644 index 0000000000000000000000000000000000000000..cbec21dc25c03da3a8e30c2fcb716d78af678cd1 --- /dev/null +++ b/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/Icon/svg/AutoSuggestedEdits.js.map @@ -0,0 +1 @@ +{"version":3,"file":"AutoSuggestedEdits.js","sourceRoot":"","sources":["../../../../../src/components/Icon/svg/AutoSuggestedEdits.tsx"],"names":[],"mappings":";AACA,MAAM,kBAAkB,GAAG,CAAC,KAA8B,EAAE,EAAE,CAAC,CAC7D,eAAK,KAAK,EAAC,KAAK,EAAC,MAAM,EAAC,KAAK,EAAC,OAAO,EAAC,WAAW,EAAC,IAAI,EAAC,cAAc,KAAK,KAAK,aAC7E,eACE,CAAC,EAAC,ktDAAktD,EACptD,IAAI,EAAC,cAAc,GACnB,EACF,eACE,CAAC,EAAC,8WAA8W,EAChX,IAAI,EAAC,cAAc,GACnB,IACE,CACP,CAAA;AACD,eAAe,kBAAkB,CAAA","sourcesContent":["import type { SVGProps } from \"react\"\nconst AutoSuggestedEdits = (props: SVGProps) => (\n \n \n \n \n)\nexport default AutoSuggestedEdits\n"]} \ No newline at end of file diff --git a/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/Icon/svg/Autocomplete.js b/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/Icon/svg/Autocomplete.js new file mode 100644 index 0000000000000000000000000000000000000000..7e44d5cb3b4cb69a27a740b3dbaea95f52552ca8 --- /dev/null +++ b/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/Icon/svg/Autocomplete.js @@ -0,0 +1,4 @@ +import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime"; +const Autocomplete = (props) => (_jsxs("svg", { width: "1em", height: "1em", viewBox: "0 0 24 24", fill: "currentColor", ...props, children: [_jsx("path", { d: "M11.1784 5.16756C11.682 5.11499 12.0475 4.66419 11.995 4.16067C11.9424 3.65714 11.4916 3.29157 10.9881 3.34414C6.4438 3.81858 2.83325 7.47364 2.83325 12C2.83325 13.8413 3.43544 15.547 4.45618 16.949C4.30029 17.6327 4.07683 18.312 3.81085 19.0047C3.69902 19.2959 3.74295 19.6239 3.92744 19.8755C4.11194 20.127 4.41167 20.2674 4.723 20.2482C5.80536 20.1815 6.83649 20.0215 7.83955 19.7618C9.09036 20.3679 10.5052 20.7083 11.9999 20.7083C16.6549 20.7083 20.5615 17.3943 21.1031 13.0295C21.1655 12.5271 20.8087 12.0693 20.3063 12.0069C19.8039 11.9446 19.3461 12.3013 19.2837 12.8037C18.8646 16.1814 15.8009 18.875 11.9999 18.875C10.6768 18.875 9.43992 18.5471 8.37278 17.9764C8.16331 17.8643 7.91854 17.838 7.69003 17.9029C7.14047 18.0589 6.57987 18.1811 6.00187 18.2701C6.13633 17.8211 6.25176 17.3629 6.33997 16.8941C6.38967 16.6299 6.32092 16.3573 6.15191 16.1482C5.21622 14.991 4.66659 13.5544 4.66659 12C4.66659 8.5051 7.4728 5.55444 11.1784 5.16756Z", fill: "currentColor" }), _jsx("path", { fillRule: "evenodd", clipRule: "evenodd", d: "M19.7519 4.47707C18.6346 3.3597 16.823 3.3597 15.7056 4.47707L11.0698 9.11283C10.3686 9.81406 9.91371 10.7238 9.77346 11.7055L9.48797 13.7039C9.44717 13.9896 9.54323 14.2777 9.74725 14.4818C9.95127 14.6858 10.2394 14.7818 10.5251 14.741L12.5235 14.4556C13.5052 14.3153 14.4149 13.8604 15.1162 13.1592L19.7519 8.52343C20.8693 7.40606 20.8693 5.59444 19.7519 4.47707ZM17.0019 5.77343C17.4034 5.37202 18.0542 5.37202 18.4556 5.77343C18.857 6.17484 18.857 6.82566 18.4556 7.22707L13.8198 11.8628C13.3991 12.2836 12.8532 12.5565 12.2642 12.6406L11.4757 12.7533L11.5884 11.9648C11.6725 11.3758 11.9454 10.8299 12.3662 10.4092L17.0019 5.77343Z", fill: "currentColor" })] })); +export default Autocomplete; +//# sourceMappingURL=Autocomplete.js.map \ No newline at end of file diff --git a/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/Icon/svg/Autocomplete.js.map b/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/Icon/svg/Autocomplete.js.map new file mode 100644 index 0000000000000000000000000000000000000000..d810732b77f1da1538b7031a58cb7350ec7640a5 --- /dev/null +++ b/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/Icon/svg/Autocomplete.js.map @@ -0,0 +1 @@ +{"version":3,"file":"Autocomplete.js","sourceRoot":"","sources":["../../../../../src/components/Icon/svg/Autocomplete.tsx"],"names":[],"mappings":";AACA,MAAM,YAAY,GAAG,CAAC,KAA8B,EAAE,EAAE,CAAC,CACvD,eAAK,KAAK,EAAC,KAAK,EAAC,MAAM,EAAC,KAAK,EAAC,OAAO,EAAC,WAAW,EAAC,IAAI,EAAC,cAAc,KAAK,KAAK,aAC7E,eACE,CAAC,EAAC,y7BAAy7B,EAC37B,IAAI,EAAC,cAAc,GACnB,EACF,eACE,QAAQ,EAAC,SAAS,EAClB,QAAQ,EAAC,SAAS,EAClB,CAAC,EAAC,8nBAA8nB,EAChoB,IAAI,EAAC,cAAc,GACnB,IACE,CACP,CAAA;AACD,eAAe,YAAY,CAAA","sourcesContent":["import type { SVGProps } from \"react\"\nconst Autocomplete = (props: SVGProps) => (\n \n \n \n \n)\nexport default Autocomplete\n"]} \ No newline at end of file diff --git a/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/Icon/svg/AvatarFilledProfile.js b/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/Icon/svg/AvatarFilledProfile.js new file mode 100644 index 0000000000000000000000000000000000000000..8f8bfc0d088dd1775b1f793754a7f71efb919678 --- /dev/null +++ b/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/Icon/svg/AvatarFilledProfile.js @@ -0,0 +1,4 @@ +import { jsx as _jsx } from "react/jsx-runtime"; +const AvatarFilledProfile = (props) => (_jsx("svg", { width: "1em", height: "1em", viewBox: "0 0 24 24", fill: "currentColor", ...props, children: _jsx("path", { d: "M12 2C6.47715 2 2 6.47715 2 12C2 17.5228 6.47715 22 12 22C17.5228 22 22 17.5228 22 12C22 6.47715 17.5228 2 12 2ZM15 10C15 11.6569 13.6569 13 12 13C10.3431 13 9 11.6569 9 10C9 8.34315 10.3431 7 12 7C13.6569 7 15 8.34315 15 10ZM11.9994 15C14.282 15 16.333 15.9913 17.7454 17.5669C16.2912 19.0674 14.2545 20 12 20C9.74517 20 7.70822 19.0672 6.25403 17.5663C7.66642 15.9911 9.7172 15 11.9994 15Z", fill: "currentColor" }) })); +export default AvatarFilledProfile; +//# sourceMappingURL=AvatarFilledProfile.js.map \ No newline at end of file diff --git a/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/Icon/svg/AvatarFilledProfile.js.map b/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/Icon/svg/AvatarFilledProfile.js.map new file mode 100644 index 0000000000000000000000000000000000000000..85bb4e943723b2b3a6ba662010bb3c305fbe7dec --- /dev/null +++ b/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/Icon/svg/AvatarFilledProfile.js.map @@ -0,0 +1 @@ +{"version":3,"file":"AvatarFilledProfile.js","sourceRoot":"","sources":["../../../../../src/components/Icon/svg/AvatarFilledProfile.tsx"],"names":[],"mappings":";AACA,MAAM,mBAAmB,GAAG,CAAC,KAA8B,EAAE,EAAE,CAAC,CAC9D,cAAK,KAAK,EAAC,KAAK,EAAC,MAAM,EAAC,KAAK,EAAC,OAAO,EAAC,WAAW,EAAC,IAAI,EAAC,cAAc,KAAK,KAAK,YAC7E,eACE,CAAC,EAAC,yYAAyY,EAC3Y,IAAI,EAAC,cAAc,GACnB,GACE,CACP,CAAA;AACD,eAAe,mBAAmB,CAAA","sourcesContent":["import type { SVGProps } from \"react\"\nconst AvatarFilledProfile = (props: SVGProps) => (\n \n \n \n)\nexport default AvatarFilledProfile\n"]} \ No newline at end of file diff --git a/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/Icon/svg/AvatarProfile.js b/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/Icon/svg/AvatarProfile.js new file mode 100644 index 0000000000000000000000000000000000000000..9788aa137bbdda235a8019e4229621a0ab9e72ef --- /dev/null +++ b/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/Icon/svg/AvatarProfile.js @@ -0,0 +1,4 @@ +import { jsx as _jsx } from "react/jsx-runtime"; +const AvatarProfile = (props) => (_jsx("svg", { width: "1em", height: "1em", viewBox: "0 0 24 24", fill: "currentColor", ...props, children: _jsx("path", { d: "M12 4C7.58172 4 4 7.58172 4 12C4 14.2569 4.93453 16.2954 6.43772 17.7499C7.71622 16.0791 9.73141 15 12 15C14.2686 15 16.2838 16.0791 17.5623 17.7499C19.0655 16.2954 20 14.2569 20 12C20 7.58172 16.4183 4 12 4ZM15.9632 18.9509C15.0483 17.7635 13.6126 17 12 17C10.3874 17 8.9517 17.7635 8.03677 18.9509C9.20512 19.6185 10.558 20 12 20C13.442 20 14.7949 19.6185 15.9632 18.9509ZM2 12C2 6.47715 6.47715 2 12 2C17.5228 2 22 6.47715 22 12C22 17.5228 17.5228 22 12 22C6.47715 22 2 17.5228 2 12ZM12 8C10.8954 8 10 8.89543 10 10C10 11.1046 10.8954 12 12 12C13.1046 12 14 11.1046 14 10C14 8.89543 13.1046 8 12 8ZM8 10C8 7.79086 9.79086 6 12 6C14.2091 6 16 7.79086 16 10C16 12.2091 14.2091 14 12 14C9.79086 14 8 12.2091 8 10Z", fill: "currentColor" }) })); +export default AvatarProfile; +//# sourceMappingURL=AvatarProfile.js.map \ No newline at end of file diff --git a/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/Icon/svg/AvatarProfile.js.map b/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/Icon/svg/AvatarProfile.js.map new file mode 100644 index 0000000000000000000000000000000000000000..107f627b9b20b8be9d4c388d24b480dc8ab4c329 --- /dev/null +++ b/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/Icon/svg/AvatarProfile.js.map @@ -0,0 +1 @@ +{"version":3,"file":"AvatarProfile.js","sourceRoot":"","sources":["../../../../../src/components/Icon/svg/AvatarProfile.tsx"],"names":[],"mappings":";AACA,MAAM,aAAa,GAAG,CAAC,KAA8B,EAAE,EAAE,CAAC,CACxD,cAAK,KAAK,EAAC,KAAK,EAAC,MAAM,EAAC,KAAK,EAAC,OAAO,EAAC,WAAW,EAAC,IAAI,EAAC,cAAc,KAAK,KAAK,YAC7E,eACE,CAAC,EAAC,2sBAA2sB,EAC7sB,IAAI,EAAC,cAAc,GACnB,GACE,CACP,CAAA;AACD,eAAe,aAAa,CAAA","sourcesContent":["import type { SVGProps } from \"react\"\nconst AvatarProfile = (props: SVGProps) => (\n \n \n \n)\nexport default AvatarProfile\n"]} \ No newline at end of file diff --git a/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/Icon/svg/Back10s.js b/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/Icon/svg/Back10s.js new file mode 100644 index 0000000000000000000000000000000000000000..57315b504c52dae45451c8108e179c6e549fd09c --- /dev/null +++ b/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/Icon/svg/Back10s.js @@ -0,0 +1,4 @@ +import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime"; +const Back10s = (props) => (_jsxs("svg", { width: "1em", height: "1em", viewBox: "0 0 24 24", fill: "currentColor", ...props, children: [_jsx("path", { d: "M8 10C8.55228 10 9 9.55228 9 9C9 8.44772 8.55228 8 8 8H6.25494C7.5205 6.18566 9.62283 5 12.0005 5C14.9366 5 17.4529 6.80802 18.4921 9.37522C18.6993 9.88715 19.2823 10.1342 19.7942 9.92694C20.3061 9.71971 20.5532 9.13672 20.3459 8.62478C19.0116 5.32832 15.7791 3 12.0005 3C9.1719 3 6.64937 4.30473 5 6.34362V5C5 4.44772 4.55228 4 4 4C3.44772 4 3 4.44772 3 5V9C3 9.55228 3.44772 10 4 10C5.33333 10 6.66666 10 8 10Z", fill: "currentColor" }), _jsx("path", { d: "M10.8951 16.566C10.8951 13.8634 12.2032 12 14.5232 12C16.8433 12 18.1637 13.8634 18.1637 16.566C18.1637 19.2686 16.8433 21.132 14.5232 21.132C12.2032 21.132 10.8951 19.2686 10.8951 16.566ZM12.956 16.566C12.956 18.232 13.4126 19.3797 14.5232 19.3797C15.6339 19.3797 16.1028 18.232 16.1028 16.566C16.1028 14.9 15.6339 13.7524 14.5232 13.7524C13.4126 13.7524 12.956 14.9 12.956 16.566Z", fill: "currentColor" }), _jsx("path", { d: "M8.17989 12.3173C8.20459 12.1935 8.30955 12.0987 8.43578 12.0987H9.532C9.67007 12.0987 9.782 12.2107 9.782 12.3487V20.7463C9.782 20.8843 9.67007 20.9963 9.532 20.9963H7.98346C7.84539 20.9963 7.73346 20.8843 7.73346 20.7463V15.1962H5.93493C5.79686 15.1962 5.68493 15.0843 5.68493 14.9462V13.8837C5.68493 13.7537 5.7846 13.6453 5.91417 13.6345L6.42536 13.5919C7.50827 13.5121 8.01206 13.1586 8.17989 12.3173Z", fill: "currentColor" })] })); +export default Back10s; +//# sourceMappingURL=Back10s.js.map \ No newline at end of file diff --git a/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/Icon/svg/Back10s.js.map b/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/Icon/svg/Back10s.js.map new file mode 100644 index 0000000000000000000000000000000000000000..3e23038b6f5be366913bdae40b9b09fda4888e26 --- /dev/null +++ b/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/Icon/svg/Back10s.js.map @@ -0,0 +1 @@ +{"version":3,"file":"Back10s.js","sourceRoot":"","sources":["../../../../../src/components/Icon/svg/Back10s.tsx"],"names":[],"mappings":";AACA,MAAM,OAAO,GAAG,CAAC,KAA8B,EAAE,EAAE,CAAC,CAClD,eAAK,KAAK,EAAC,KAAK,EAAC,MAAM,EAAC,KAAK,EAAC,OAAO,EAAC,WAAW,EAAC,IAAI,EAAC,cAAc,KAAK,KAAK,aAC7E,eACE,CAAC,EAAC,8ZAA8Z,EACha,IAAI,EAAC,cAAc,GACnB,EACF,eACE,CAAC,EAAC,gYAAgY,EAClY,IAAI,EAAC,cAAc,GACnB,EACF,eACE,CAAC,EAAC,wZAAwZ,EAC1Z,IAAI,EAAC,cAAc,GACnB,IACE,CACP,CAAA;AACD,eAAe,OAAO,CAAA","sourcesContent":["import type { SVGProps } from \"react\"\nconst Back10s = (props: SVGProps) => (\n \n \n \n \n \n)\nexport default Back10s\n"]} \ No newline at end of file diff --git a/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/Icon/svg/Back15s.js b/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/Icon/svg/Back15s.js new file mode 100644 index 0000000000000000000000000000000000000000..d161a2eda334d9fb9269c72e9acf40ab3114a845 --- /dev/null +++ b/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/Icon/svg/Back15s.js @@ -0,0 +1,4 @@ +import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime"; +const Back15s = (props) => (_jsxs("svg", { width: "1em", height: "1em", viewBox: "0 0 24 24", fill: "currentColor", ...props, children: [_jsx("path", { d: "M8 10C8.55228 10 9 9.55228 9 9C9 8.44772 8.55228 8 8 8H6.25494C7.5205 6.18566 9.62283 5 12.0005 5C14.9366 5 17.4529 6.80802 18.4921 9.37522C18.6993 9.88715 19.2823 10.1342 19.7942 9.92694C20.3061 9.71971 20.5532 9.13672 20.3459 8.62478C19.0116 5.32832 15.7791 3 12.0005 3C9.1719 3 6.64937 4.30473 5 6.34362V5C5 4.44772 4.55228 4 4 4C3.44772 4 3 4.44772 3 5V9C3 9.55228 3.44772 10 4 10C5.33333 10 6.66666 10 8 10Z", fill: "currentColor" }), _jsx("path", { d: "M13.5493 17.0489C13.4879 17.1169 13.3998 17.1581 13.3088 17.1472L11.8124 16.9688C11.6787 16.9529 11.5816 16.8339 11.5929 16.6997L11.9651 12.2665C11.976 12.137 12.0843 12.0374 12.2142 12.0374H17.0489C17.1869 12.0374 17.2989 12.1494 17.2989 12.2874V13.5714C17.2989 13.7095 17.1869 13.8214 17.0489 13.8214H13.5687L13.419 15.4682C13.7434 15.2062 14.2549 14.9692 14.8911 14.9692C16.7375 14.9692 17.8603 16.2666 17.8603 17.9882C17.8603 19.8221 16.4256 21.132 14.5169 21.132C12.7569 21.132 11.439 20.2479 11.0926 18.6308C11.0639 18.497 11.1574 18.37 11.2925 18.3483L12.8165 18.1037C12.9553 18.0814 13.0834 18.1787 13.1187 18.3148C13.2969 19.0028 13.8006 19.4229 14.5044 19.4229C15.2903 19.4229 15.9016 18.849 15.9016 18.0381C15.9016 17.2397 15.3901 16.6159 14.5792 16.6159C14.1139 16.6159 13.7706 16.8037 13.5493 17.0489Z", fill: "currentColor" }), _jsx("path", { d: "M8.552 12.2186C8.57658 12.0948 8.68156 12 8.80779 12H9.92113C10.0592 12 10.1711 12.1119 10.1711 12.25V20.7448C10.1711 20.8828 10.0592 20.9948 9.92113 20.9948H8.35021C8.21214 20.9948 8.10021 20.8828 8.10021 20.7448V15.1313H6.2793C6.14123 15.1313 6.0293 15.0194 6.0293 14.8813V13.8019C6.0293 13.6719 6.12896 13.5636 6.25854 13.5528L6.77782 13.5095C7.87357 13.4288 8.3828 13.0708 8.552 12.2186Z", fill: "currentColor" })] })); +export default Back15s; +//# sourceMappingURL=Back15s.js.map \ No newline at end of file diff --git a/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/Icon/svg/Back15s.js.map b/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/Icon/svg/Back15s.js.map new file mode 100644 index 0000000000000000000000000000000000000000..da6bb2870bb670ce7541726e89c74d7f8ad667aa --- /dev/null +++ b/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/Icon/svg/Back15s.js.map @@ -0,0 +1 @@ +{"version":3,"file":"Back15s.js","sourceRoot":"","sources":["../../../../../src/components/Icon/svg/Back15s.tsx"],"names":[],"mappings":";AACA,MAAM,OAAO,GAAG,CAAC,KAA8B,EAAE,EAAE,CAAC,CAClD,eAAK,KAAK,EAAC,KAAK,EAAC,MAAM,EAAC,KAAK,EAAC,OAAO,EAAC,WAAW,EAAC,IAAI,EAAC,cAAc,KAAK,KAAK,aAC7E,eACE,CAAC,EAAC,8ZAA8Z,EACha,IAAI,EAAC,cAAc,GACnB,EACF,eACE,CAAC,EAAC,gzBAAgzB,EAClzB,IAAI,EAAC,cAAc,GACnB,EACF,eACE,CAAC,EAAC,yYAAyY,EAC3Y,IAAI,EAAC,cAAc,GACnB,IACE,CACP,CAAA;AACD,eAAe,OAAO,CAAA","sourcesContent":["import type { SVGProps } from \"react\"\nconst Back15s = (props: SVGProps) => (\n \n \n \n \n \n)\nexport default Back15s\n"]} \ No newline at end of file diff --git a/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/Icon/svg/BackLarge.js b/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/Icon/svg/BackLarge.js new file mode 100644 index 0000000000000000000000000000000000000000..d3fd12900f72d2a2d151df3e2f65f54bb9de45d2 --- /dev/null +++ b/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/Icon/svg/BackLarge.js @@ -0,0 +1,4 @@ +import { jsx as _jsx } from "react/jsx-runtime"; +const BackLarge = (props) => (_jsx("svg", { width: "1em", height: "1em", viewBox: "0 0 24 24", fill: "currentColor", ...props, children: _jsx("path", { d: "M15.707 4.293a1 1 0 0 1 0 1.414L9.414 12l6.293 6.293a1 1 0 0 1-1.414 1.414l-7-7a1 1 0 0 1 0-1.414l7-7a1 1 0 0 1 1.414 0Z" }) })); +export default BackLarge; +//# sourceMappingURL=BackLarge.js.map \ No newline at end of file diff --git a/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/Icon/svg/BackLarge.js.map b/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/Icon/svg/BackLarge.js.map new file mode 100644 index 0000000000000000000000000000000000000000..e9a0504a0e954e96411d42588716d3f017355ba8 --- /dev/null +++ b/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/Icon/svg/BackLarge.js.map @@ -0,0 +1 @@ +{"version":3,"file":"BackLarge.js","sourceRoot":"","sources":["../../../../../src/components/Icon/svg/BackLarge.tsx"],"names":[],"mappings":";AACA,MAAM,SAAS,GAAG,CAAC,KAA8B,EAAE,EAAE,CAAC,CACpD,cAAK,KAAK,EAAC,KAAK,EAAC,MAAM,EAAC,KAAK,EAAC,OAAO,EAAC,WAAW,EAAC,IAAI,EAAC,cAAc,KAAK,KAAK,YAC7E,eAAM,CAAC,EAAC,0HAA0H,GAAG,GACjI,CACP,CAAA;AACD,eAAe,SAAS,CAAA","sourcesContent":["import type { SVGProps } from \"react\"\nconst BackLarge = (props: SVGProps) => (\n \n \n \n)\nexport default BackLarge\n"]} \ No newline at end of file diff --git a/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/Icon/svg/BackSmall.js b/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/Icon/svg/BackSmall.js new file mode 100644 index 0000000000000000000000000000000000000000..b6da59c08db07912e54cc83bf1b644eb18419a12 --- /dev/null +++ b/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/Icon/svg/BackSmall.js @@ -0,0 +1,4 @@ +import { jsx as _jsx } from "react/jsx-runtime"; +const BackSmall = (props) => (_jsx("svg", { width: "1em", height: "1em", viewBox: "0 0 24 24", fill: "currentColor", ...props, children: _jsx("path", { d: "M14.707 5.293a1 1 0 0 1 0 1.414L9.414 12l5.293 5.293a1 1 0 0 1-1.414 1.414l-6-6a1 1 0 0 1 0-1.414l6-6a1 1 0 0 1 1.414 0Z" }) })); +export default BackSmall; +//# sourceMappingURL=BackSmall.js.map \ No newline at end of file diff --git a/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/Icon/svg/BackSmall.js.map b/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/Icon/svg/BackSmall.js.map new file mode 100644 index 0000000000000000000000000000000000000000..28b6bd80fd8c098daca2c7383661b567f36aed3e --- /dev/null +++ b/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/Icon/svg/BackSmall.js.map @@ -0,0 +1 @@ +{"version":3,"file":"BackSmall.js","sourceRoot":"","sources":["../../../../../src/components/Icon/svg/BackSmall.tsx"],"names":[],"mappings":";AACA,MAAM,SAAS,GAAG,CAAC,KAA8B,EAAE,EAAE,CAAC,CACpD,cAAK,KAAK,EAAC,KAAK,EAAC,MAAM,EAAC,KAAK,EAAC,OAAO,EAAC,WAAW,EAAC,IAAI,EAAC,cAAc,KAAK,KAAK,YAC7E,eAAM,CAAC,EAAC,0HAA0H,GAAG,GACjI,CACP,CAAA;AACD,eAAe,SAAS,CAAA","sourcesContent":["import type { SVGProps } from \"react\"\nconst BackSmall = (props: SVGProps) => (\n \n \n \n)\nexport default BackSmall\n"]} \ No newline at end of file diff --git a/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/Icon/svg/BackToApp.js b/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/Icon/svg/BackToApp.js new file mode 100644 index 0000000000000000000000000000000000000000..26025ccb37d673c55369e7cf9e12e80c34e9bbe9 --- /dev/null +++ b/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/Icon/svg/BackToApp.js @@ -0,0 +1,4 @@ +import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime"; +const BackToApp = (props) => (_jsxs("svg", { width: "1em", height: "1em", viewBox: "0 0 24 24", fill: "currentColor", ...props, children: [_jsx("path", { d: "M15 4.99998C15.9773 4.99998 16.3199 5.00482 16.5853 5.05762C17.7754 5.29434 18.7057 6.22463 18.9424 7.41471C18.9685 7.54611 18.9856 7.71822 18.9936 8.02577C19.0078 8.57787 19.4669 9.01389 20.019 8.99964C20.5711 8.9854 21.0071 8.52628 20.9929 7.97418C20.9839 7.6257 20.963 7.32143 20.904 7.02452C20.5094 5.04107 18.9589 3.49058 16.9755 3.09605C16.4907 2.99962 15.9334 2.99975 15.1158 2.99996L10.3572 2.99998C9.27344 2.99997 8.39929 2.99996 7.69141 3.05779C6.96256 3.11734 6.32238 3.24316 5.73008 3.54494C4.78927 4.02431 4.02437 4.78921 3.545 5.73002C3.24322 6.32231 3.1174 6.9625 3.05785 7.69135C3.00002 8.39923 3.00003 9.27338 3.00004 10.3572L3.00002 15.1157C2.99982 15.9333 2.99968 16.4906 3.09611 16.9754C3.49064 18.9589 5.04113 20.5094 7.02459 20.9039C7.32149 20.963 7.62576 20.9838 7.97424 20.9928C8.52634 21.0071 8.98546 20.5711 8.9997 20.019C9.01395 19.4669 8.57793 19.0077 8.02583 18.9935C7.71828 18.9856 7.54617 18.9685 7.41477 18.9423C6.22469 18.7056 5.2944 17.7753 5.05768 16.5852C5.00488 16.3198 5.00004 15.9772 5.00004 15V10.4C5.00004 9.26337 5.00081 8.47106 5.05121 7.85422C5.10066 7.24905 5.19283 6.90136 5.32702 6.638C5.61464 6.07352 6.07358 5.61458 6.63807 5.32696C6.90142 5.19277 7.24911 5.1006 7.85428 5.05115C8.47112 5.00075 9.26343 4.99998 10.4 4.99998H15Z", fill: "currentColor" }), _jsx("path", { d: "M8.50004 13C7.94775 13 7.50004 12.5523 7.50004 12V9.49998C7.50004 8.39541 8.39547 7.49998 9.50004 7.49998H12C12.5523 7.49998 13 7.94769 13 8.49998C13 9.05226 12.5523 9.49998 12 9.49998H9.50004V12C9.50004 12.5523 9.05232 13 8.50004 13Z", fill: "currentColor" }), _jsx("path", { fillRule: "evenodd", clipRule: "evenodd", d: "M16.1615 12H17.3386C17.8657 12 18.3205 11.9999 18.6951 12.0305C19.0904 12.0628 19.4836 12.1342 19.862 12.327C20.4265 12.6146 20.8854 13.0735 21.1731 13.638C21.3659 14.0164 21.4372 14.4096 21.4695 14.8049C21.5001 15.1795 21.5001 15.6342 21.5 16.1613V17.3385C21.5001 17.8656 21.5001 18.3205 21.4695 18.695C21.4372 19.0903 21.3659 19.4836 21.1731 19.8619C20.8854 20.4264 20.4265 20.8854 19.862 21.173C19.4836 21.3658 19.0904 21.4371 18.6951 21.4694C18.3205 21.5 17.8658 21.5 17.3387 21.5H16.1615C15.6344 21.5 15.1796 21.5 14.805 21.4694C14.4097 21.4371 14.0164 21.3658 13.6381 21.173C13.0736 20.8854 12.6146 20.4264 12.327 19.8619C12.1342 19.4836 12.0629 19.0903 12.0306 18.695C12 18.3204 12 17.8657 12 17.3385V16.1614C12 15.6343 12 15.1795 12.0306 14.8049C12.0629 14.4096 12.1342 14.0164 12.327 13.638C12.6146 13.0735 13.0736 12.6146 13.6381 12.327C14.0164 12.1342 14.4097 12.0628 14.805 12.0305C15.1796 11.9999 15.6343 12 16.1615 12ZM14.9679 14.0239C14.6962 14.0461 14.5955 14.0838 14.546 14.109C14.3579 14.2048 14.2049 14.3578 14.109 14.546C14.0838 14.5954 14.0462 14.6961 14.024 14.9678C14.0008 15.2511 14 15.6234 14 16.2V17.3C14 17.8765 14.0008 18.2488 14.024 18.5321C14.0462 18.8038 14.0838 18.9045 14.109 18.954C14.2049 19.1421 14.3579 19.2951 14.546 19.391C14.5955 19.4162 14.6962 19.4539 14.9679 19.476C15.2512 19.4992 15.6235 19.5 16.2 19.5H17.3C17.8766 19.5 18.2489 19.4992 18.5322 19.476C18.8039 19.4539 18.9046 19.4162 18.954 19.391C19.1422 19.2951 19.2952 19.1421 19.391 18.954C19.4162 18.9045 19.4539 18.8038 19.4761 18.5321C19.4993 18.2488 19.5 17.8765 19.5 17.3V16.2C19.5 15.6234 19.4993 15.2511 19.4761 14.9678C19.4539 14.6961 19.4162 14.5954 19.391 14.546C19.2952 14.3578 19.1422 14.2048 18.954 14.109C18.9046 14.0838 18.8039 14.0461 18.5322 14.0239C18.2489 14.0008 17.8766 14 17.3 14H16.2C15.6235 14 15.2512 14.0008 14.9679 14.0239Z", fill: "currentColor" })] })); +export default BackToApp; +//# sourceMappingURL=BackToApp.js.map \ No newline at end of file diff --git a/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/Icon/svg/BackToApp.js.map b/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/Icon/svg/BackToApp.js.map new file mode 100644 index 0000000000000000000000000000000000000000..e163c7ba453f8ad78b778fb7136b305709549bcb --- /dev/null +++ b/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/Icon/svg/BackToApp.js.map @@ -0,0 +1 @@ +{"version":3,"file":"BackToApp.js","sourceRoot":"","sources":["../../../../../src/components/Icon/svg/BackToApp.tsx"],"names":[],"mappings":";AACA,MAAM,SAAS,GAAG,CAAC,KAA8B,EAAE,EAAE,CAAC,CACpD,eAAK,KAAK,EAAC,KAAK,EAAC,MAAM,EAAC,KAAK,EAAC,OAAO,EAAC,WAAW,EAAC,IAAI,EAAC,cAAc,KAAK,KAAK,aAC7E,eACE,CAAC,EAAC,8vCAA8vC,EAChwC,IAAI,EAAC,cAAc,GACnB,EACF,eACE,CAAC,EAAC,4OAA4O,EAC9O,IAAI,EAAC,cAAc,GACnB,EACF,eACE,QAAQ,EAAC,SAAS,EAClB,QAAQ,EAAC,SAAS,EAClB,CAAC,EAAC,2zDAA2zD,EAC7zD,IAAI,EAAC,cAAc,GACnB,IACE,CACP,CAAA;AACD,eAAe,SAAS,CAAA","sourcesContent":["import type { SVGProps } from \"react\"\nconst BackToApp = (props: SVGProps) => (\n \n \n \n \n \n)\nexport default BackToApp\n"]} \ No newline at end of file diff --git a/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/Icon/svg/BackgroundConversation.js b/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/Icon/svg/BackgroundConversation.js new file mode 100644 index 0000000000000000000000000000000000000000..0c4a6460319f1d6521cc73808b5f22a2b60caa4f --- /dev/null +++ b/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/Icon/svg/BackgroundConversation.js @@ -0,0 +1,4 @@ +import { jsx as _jsx } from "react/jsx-runtime"; +const BackgroundConversation = (props) => (_jsx("svg", { width: "1em", height: "1em", viewBox: "0 0 24 24", fill: "currentColor", ...props, children: _jsx("path", { d: "M18 2C18.5523 2 19 2.44772 19 3V15C19 15.5523 18.5523 16 18 16C17.4477 16 17 15.5523 17 15V3C17 2.44772 17.4477 2 18 2ZM11 3C11.5523 3 12 3.44772 12 4V5.5C12 6.05228 11.5523 6.5 11 6.5C10.4477 6.5 10 6.05228 10 5.5V4C10 3.44772 10.4477 3 11 3ZM14.5 5C15.0523 5 15.5 5.44772 15.5 6V7.5C15.5 8.05228 15.0523 8.5 14.5 8.5C13.9477 8.5 13.5 8.05228 13.5 7.5V6C13.5 5.44772 13.9477 5 14.5 5ZM21.5 6C22.0523 6 22.5 6.44772 22.5 7V11C22.5 11.5523 22.0523 12 21.5 12C20.9477 12 20.5 11.5523 20.5 11V7C20.5 6.44772 20.9477 6 21.5 6ZM8.5 10C5.65489 10 3.5 12.0948 3.5 14.5C3.5 15.3779 3.77893 16.1999 4.27013 16.899C4.41055 17.0989 4.47295 17.3433 4.44557 17.586C4.39815 18.0063 4.31955 18.4139 4.21925 18.8099C4.65229 18.7232 5.07312 18.61 5.48727 18.4697C5.72968 18.3875 5.99435 18.4015 6.22679 18.5086C6.9058 18.8216 7.67743 19 8.5 19C11.3451 19 13.5 16.9052 13.5 14.5C13.5 12.0948 11.3451 10 8.5 10ZM1.5 14.5C1.5 10.83 4.71769 8 8.5 8C12.2823 8 15.5 10.83 15.5 14.5C15.5 18.17 12.2823 21 8.5 21C7.53025 21 6.60309 20.8166 5.75878 20.4828C4.82364 20.7669 3.86215 20.9357 2.84316 20.9981C2.50317 21.0189 2.17597 20.8653 1.97489 20.5903C1.7738 20.3154 1.72649 19.957 1.84935 19.6393C2.10511 18.9779 2.3033 18.3443 2.40969 17.7075C1.83301 16.7645 1.5 15.6694 1.5 14.5Z", fill: "currentColor" }) })); +export default BackgroundConversation; +//# sourceMappingURL=BackgroundConversation.js.map \ No newline at end of file diff --git a/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/Icon/svg/BackgroundConversation.js.map b/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/Icon/svg/BackgroundConversation.js.map new file mode 100644 index 0000000000000000000000000000000000000000..b65b41d26a9ac6eae7ae17fb9a9e109c043f7807 --- /dev/null +++ b/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/Icon/svg/BackgroundConversation.js.map @@ -0,0 +1 @@ +{"version":3,"file":"BackgroundConversation.js","sourceRoot":"","sources":["../../../../../src/components/Icon/svg/BackgroundConversation.tsx"],"names":[],"mappings":";AACA,MAAM,sBAAsB,GAAG,CAAC,KAA8B,EAAE,EAAE,CAAC,CACjE,cAAK,KAAK,EAAC,KAAK,EAAC,MAAM,EAAC,KAAK,EAAC,OAAO,EAAC,WAAW,EAAC,IAAI,EAAC,cAAc,KAAK,KAAK,YAC7E,eACE,CAAC,EAAC,2uCAA2uC,EAC7uC,IAAI,EAAC,cAAc,GACnB,GACE,CACP,CAAA;AACD,eAAe,sBAAsB,CAAA","sourcesContent":["import type { SVGProps } from \"react\"\nconst BackgroundConversation = (props: SVGProps) => (\n \n \n \n)\nexport default BackgroundConversation\n"]} \ No newline at end of file diff --git a/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/Icon/svg/BalancingScale.js b/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/Icon/svg/BalancingScale.js new file mode 100644 index 0000000000000000000000000000000000000000..8324df8158f20f7fc870907c1647f72fc3a4520f --- /dev/null +++ b/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/Icon/svg/BalancingScale.js @@ -0,0 +1,4 @@ +import { jsx as _jsx } from "react/jsx-runtime"; +const BalancingScale = (props) => (_jsx("svg", { width: "1em", height: "1em", viewBox: "0 0 24 24", fill: "currentColor", ...props, children: _jsx("path", { d: "M10.9999 3C10.9999 2.44776 11.4477 2.00008 11.9999 2C12.5522 2 12.9999 2.44772 12.9999 3V3.46973C13.037 3.49112 13.0734 3.51413 13.1093 3.53809L13.7909 3.99219C14.7765 4.6492 15.9346 4.99994 17.1191 5H20.6669C21.219 5.00015 21.6668 5.44787 21.6669 6C21.6669 6.55219 21.2191 6.99985 20.6669 7H20.2089L22.2841 13.3945C22.3934 13.7314 22.3168 14.1011 22.0819 14.3662C21.179 15.3854 20.0571 16 18.8329 16C17.6088 15.9999 16.4877 15.3853 15.5849 14.3662C15.35 14.1011 15.2725 13.7315 15.3818 13.3945L17.4569 7H17.1191C15.6652 6.99995 14.2421 6.60277 12.9999 5.85645V19H15.9999C16.5522 19 16.9999 19.4477 16.9999 20C16.9999 20.5523 16.5522 21 15.9999 21H7.99992C7.4477 20.9999 6.99992 20.5522 6.99992 20C6.99992 19.4478 7.4477 19.0001 7.99992 19H10.9999V5.85645C9.75777 6.60277 8.33459 6.99995 6.88078 7H6.54289L8.61808 13.3945C8.72743 13.7315 8.64987 14.101 8.41496 14.3662C7.51207 15.3853 6.39105 16 5.16691 16C3.94277 16 2.82175 15.3853 1.91886 14.3662C1.68395 14.101 1.60639 13.7315 1.71574 13.3945L3.79093 7H3.33293C2.78081 6.9998 2.33293 6.55216 2.33293 6C2.33299 5.44789 2.78085 5.0002 3.33293 5H6.88078C8.06523 4.99994 9.22338 4.6492 10.2089 3.99219L10.8905 3.53809C10.9265 3.51413 10.9629 3.49112 10.9999 3.46973V3ZM3.80851 13.4238C4.29774 13.8408 4.76342 14 5.16691 14C5.57024 14 6.03531 13.8404 6.52433 13.4238L5.16691 9.23926L3.80851 13.4238ZM17.4745 13.4238C17.9637 13.8408 18.4295 13.9999 18.8329 14C19.2362 14 19.7014 13.8403 20.1903 13.4238L18.8329 9.23926L17.4745 13.4238Z", fill: "currentColor" }) })); +export default BalancingScale; +//# sourceMappingURL=BalancingScale.js.map \ No newline at end of file diff --git a/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/Icon/svg/BalancingScale.js.map b/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/Icon/svg/BalancingScale.js.map new file mode 100644 index 0000000000000000000000000000000000000000..8fd6f41a6918603890b005013388539e6b32acc8 --- /dev/null +++ b/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/Icon/svg/BalancingScale.js.map @@ -0,0 +1 @@ +{"version":3,"file":"BalancingScale.js","sourceRoot":"","sources":["../../../../../src/components/Icon/svg/BalancingScale.tsx"],"names":[],"mappings":";AACA,MAAM,cAAc,GAAG,CAAC,KAA8B,EAAE,EAAE,CAAC,CACzD,cAAK,KAAK,EAAC,KAAK,EAAC,MAAM,EAAC,KAAK,EAAC,OAAO,EAAC,WAAW,EAAC,IAAI,EAAC,cAAc,KAAK,KAAK,YAC7E,eACE,CAAC,EAAC,68CAA68C,EAC/8C,IAAI,EAAC,cAAc,GACnB,GACE,CACP,CAAA;AACD,eAAe,cAAc,CAAA","sourcesContent":["import type { SVGProps } from \"react\"\nconst BalancingScale = (props: SVGProps) => (\n \n \n \n)\nexport default BalancingScale\n"]} \ No newline at end of file diff --git a/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/Icon/svg/BarChart.js b/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/Icon/svg/BarChart.js new file mode 100644 index 0000000000000000000000000000000000000000..29e7d3221d9fe30147f03519a979ed1f5c3bcbb0 --- /dev/null +++ b/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/Icon/svg/BarChart.js @@ -0,0 +1,4 @@ +import { jsx as _jsx } from "react/jsx-runtime"; +const BarChart = (props) => (_jsx("svg", { width: "1em", height: "1em", viewBox: "0 0 24 24", fill: "currentColor", ...props, children: _jsx("path", { d: "M11.33 5H12.66C13.2123 5 13.66 5.44771 13.66 6V19H10.33V6C10.33 5.44772 10.7777 5 11.33 5ZM15.66 19V9H18C18.5523 9 19 9.44772 19 10V18C19 18.5523 18.5523 19 18 19H15.66ZM15.66 7V6C15.66 4.34315 14.3169 3 12.66 3H11.33C9.67315 3 8.33 4.34315 8.33 6V11H6C4.34314 11 3 12.3431 3 14V18C3 19.6569 4.34315 21 6 21H18C19.6569 21 21 19.6569 21 18V10C21 8.34315 19.6569 7 18 7H15.66ZM8.33 13V19H6C5.44772 19 5 18.5523 5 18V14C5 13.4477 5.44771 13 6 13H8.33Z", fill: "currentColor" }) })); +export default BarChart; +//# sourceMappingURL=BarChart.js.map \ No newline at end of file diff --git a/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/Icon/svg/BarChart.js.map b/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/Icon/svg/BarChart.js.map new file mode 100644 index 0000000000000000000000000000000000000000..006674c137345d09bc1dde8a39473876148cb1e4 --- /dev/null +++ b/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/Icon/svg/BarChart.js.map @@ -0,0 +1 @@ +{"version":3,"file":"BarChart.js","sourceRoot":"","sources":["../../../../../src/components/Icon/svg/BarChart.tsx"],"names":[],"mappings":";AACA,MAAM,QAAQ,GAAG,CAAC,KAA8B,EAAE,EAAE,CAAC,CACnD,cAAK,KAAK,EAAC,KAAK,EAAC,MAAM,EAAC,KAAK,EAAC,OAAO,EAAC,WAAW,EAAC,IAAI,EAAC,cAAc,KAAK,KAAK,YAC7E,eACE,CAAC,EAAC,kcAAkc,EACpc,IAAI,EAAC,cAAc,GACnB,GACE,CACP,CAAA;AACD,eAAe,QAAQ,CAAA","sourcesContent":["import type { SVGProps } from \"react\"\nconst BarChart = (props: SVGProps) => (\n \n \n \n)\nexport default BarChart\n"]} \ No newline at end of file diff --git a/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/Icon/svg/BarChartFilled.js b/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/Icon/svg/BarChartFilled.js new file mode 100644 index 0000000000000000000000000000000000000000..df3e0aac011d78dd6ea81174299e3002a705df97 --- /dev/null +++ b/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/Icon/svg/BarChartFilled.js @@ -0,0 +1,4 @@ +import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime"; +const BarChartFilled = (props) => (_jsxs("svg", { width: "1em", height: "1em", viewBox: "0 0 24 24", fill: "currentColor", ...props, children: [_jsx("path", { d: "M2 10.5C2 9.67157 2.67157 9 3.5 9H5.83C6.65843 9 7.33 9.67157 7.33 10.5V18.5C7.33 19.3284 6.65843 20 5.83 20H3.5C2.67157 20 2 19.3284 2 18.5V10.5Z", fill: "currentColor" }), _jsx("path", { d: "M16.67 8.5C16.67 7.67157 17.3416 7 18.17 7H20.5C21.3284 7 22 7.67157 22 8.5V18.5C22 19.3284 21.3284 20 20.5 20H18.17C17.3416 20 16.67 19.3284 16.67 18.5V8.5Z", fill: "currentColor" }), _jsx("path", { d: "M9.33 4.5C9.33 3.67157 10.0016 3 10.83 3H13.17C13.9984 3 14.67 3.67157 14.67 4.5V19C14.67 19.5523 14.2223 20 13.67 20H10.33C9.77772 20 9.33 19.5523 9.33 19V4.5Z", fill: "currentColor" })] })); +export default BarChartFilled; +//# sourceMappingURL=BarChartFilled.js.map \ No newline at end of file diff --git a/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/Icon/svg/BarChartFilled.js.map b/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/Icon/svg/BarChartFilled.js.map new file mode 100644 index 0000000000000000000000000000000000000000..25717747659db7b7cccbefd3cfb88319a11a5770 --- /dev/null +++ b/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/Icon/svg/BarChartFilled.js.map @@ -0,0 +1 @@ +{"version":3,"file":"BarChartFilled.js","sourceRoot":"","sources":["../../../../../src/components/Icon/svg/BarChartFilled.tsx"],"names":[],"mappings":";AACA,MAAM,cAAc,GAAG,CAAC,KAA8B,EAAE,EAAE,CAAC,CACzD,eAAK,KAAK,EAAC,KAAK,EAAC,MAAM,EAAC,KAAK,EAAC,OAAO,EAAC,WAAW,EAAC,IAAI,EAAC,cAAc,KAAK,KAAK,aAC7E,eACE,CAAC,EAAC,oJAAoJ,EACtJ,IAAI,EAAC,cAAc,GACnB,EACF,eACE,CAAC,EAAC,+JAA+J,EACjK,IAAI,EAAC,cAAc,GACnB,EACF,eACE,CAAC,EAAC,kKAAkK,EACpK,IAAI,EAAC,cAAc,GACnB,IACE,CACP,CAAA;AACD,eAAe,cAAc,CAAA","sourcesContent":["import type { SVGProps } from \"react\"\nconst BarChartFilled = (props: SVGProps) => (\n \n \n \n \n \n)\nexport default BarChartFilled\n"]} \ No newline at end of file diff --git a/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/Icon/svg/Batch.js b/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/Icon/svg/Batch.js new file mode 100644 index 0000000000000000000000000000000000000000..de2e0e45bd7348c3c252be14882a56f6e5aa744d --- /dev/null +++ b/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/Icon/svg/Batch.js @@ -0,0 +1,4 @@ +import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime"; +const Batch = (props) => (_jsxs("svg", { width: "1em", height: "1em", viewBox: "0 0 24 24", fill: "currentColor", ...props, children: [_jsx("path", { d: "M3 7a4 4 0 0 1 4-4 1 1 0 0 1 0 2 2 2 0 0 0-2 2c0 .257.005.511.01.772v.032c.006.268.011.544.01.815-.004.535-.033 1.105-.16 1.652-.132.558-.372 1.114-.808 1.599a3.315 3.315 0 0 1-.13.137c.034.035.067.07.1.107.431.477.673 1.027.81 1.581.132.544.17 1.114.178 1.655.005.308 0 .657-.004.997-.003.227-.006.45-.006.653a2 2 0 0 0 2 2 1 1 0 1 1 0 2 4 4 0 0 1-4-4c0-.27.003-.51.007-.738.004-.303.008-.583.003-.88-.008-.49-.041-.884-.121-1.21-.078-.316-.192-.542-.351-.718-.158-.175-.41-.356-.847-.503A.995.995 0 0 1 1 12a.998.998 0 0 1 .691-.951c.457-.153.715-.34.875-.517.16-.178.272-.404.346-.718.077-.326.105-.719.108-1.207.001-.241-.004-.493-.009-.764v-.038A29.585 29.585 0 0 1 3 7Zm16.942 5.123c.039-.042.078-.083.118-.123a3.16 3.16 0 0 1-.117-.123c-.44-.482-.681-1.036-.811-1.594-.127-.545-.154-1.115-.155-1.65 0-.269.005-.544.011-.812v-.006C18.994 7.54 19 7.272 19 7a2 2 0 0 0-2-2 1 1 0 1 1 0-2 4 4 0 0 1 4 4c0 .296-.006.584-.012.854v.004c-.006.274-.011.527-.01.77 0 .491.027.88.101 1.2.072.308.183.528.341.702.16.174.421.362.889.519A.995.995 0 0 1 23 12a1.003 1.003 0 0 1-.692.951c-.468.157-.73.345-.889.52-.159.173-.269.393-.34.7-.075.321-.102.71-.103 1.201 0 .243.005.496.01.77l.001.004c.006.27.012.558.012.854a4 4 0 0 1-4 4 1 1 0 1 1 0-2 2 2 0 0 0 2-2c0-.272-.006-.54-.012-.814v-.007a34.216 34.216 0 0 1-.01-.811c0-.536.027-1.106.154-1.65.13-.56.37-1.113.81-1.595Z" }), _jsx("path", { d: "M9 11a1 1 0 1 0 0 2h6a1 1 0 1 0 0-2H9ZM8 8a1 1 0 0 1 1-1h6a1 1 0 1 1 0 2H9a1 1 0 0 1-1-1Zm1 7a1 1 0 1 0 0 2h6a1 1 0 1 0 0-2H9Z" })] })); +export default Batch; +//# sourceMappingURL=Batch.js.map \ No newline at end of file diff --git a/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/Icon/svg/Batch.js.map b/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/Icon/svg/Batch.js.map new file mode 100644 index 0000000000000000000000000000000000000000..cf24b17d7b1ab5ee1b1f61181ecc7d125977b299 --- /dev/null +++ b/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/Icon/svg/Batch.js.map @@ -0,0 +1 @@ +{"version":3,"file":"Batch.js","sourceRoot":"","sources":["../../../../../src/components/Icon/svg/Batch.tsx"],"names":[],"mappings":";AACA,MAAM,KAAK,GAAG,CAAC,KAA8B,EAAE,EAAE,CAAC,CAChD,eAAK,KAAK,EAAC,KAAK,EAAC,MAAM,EAAC,KAAK,EAAC,OAAO,EAAC,WAAW,EAAC,IAAI,EAAC,cAAc,KAAK,KAAK,aAC7E,eAAM,CAAC,EAAC,s1CAAs1C,GAAG,EACj2C,eAAM,CAAC,EAAC,gIAAgI,GAAG,IACvI,CACP,CAAA;AACD,eAAe,KAAK,CAAA","sourcesContent":["import type { SVGProps } from \"react\"\nconst Batch = (props: SVGProps) => (\n \n \n \n \n)\nexport default Batch\n"]} \ No newline at end of file diff --git a/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/Icon/svg/Batches.js b/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/Icon/svg/Batches.js new file mode 100644 index 0000000000000000000000000000000000000000..9e7c078942754458acc5e8a46ed58f751f68cdab --- /dev/null +++ b/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/Icon/svg/Batches.js @@ -0,0 +1,4 @@ +import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime"; +const Batches = (props) => (_jsxs("svg", { width: "1em", height: "1em", viewBox: "0 0 24 24", fill: "currentColor", ...props, children: [_jsx("path", { d: "M3 7C3 4.79086 4.79086 3 7 3C7.55228 3 8 3.44772 8 4C8 4.55228 7.55228 5 7 5C5.89543 5 5 5.89543 5 7C5 8.08835 5.11007 9.20187 4.85916 10.2708C4.72807 10.8292 4.48839 11.3851 4.05196 11.8698C4.00976 11.9167 3.96623 11.9623 3.92135 12.0068C3.95579 12.0417 3.98943 12.0773 4.02226 12.1137C4.4534 12.5913 4.6952 13.1406 4.83119 13.6951C5.09535 14.7724 5 15.9012 5 17C5 18.1046 5.89543 19 7 19C7.55228 19 8 19.4477 8 20C8 20.5523 7.55228 21 7 21C4.79086 21 3 19.2091 3 17C3 16.0704 3.11189 15.0815 2.88874 14.1715C2.81138 13.856 2.6965 13.6298 2.53765 13.4538C2.37927 13.2783 2.12594 13.0961 1.68377 12.9487C1.27543 12.8126 1 12.4304 1 12C1 11.5696 1.27543 11.1874 1.68377 11.0513C2.14482 10.8976 2.40546 10.7095 2.56569 10.5316C2.72565 10.3539 2.83837 10.1278 2.91208 9.81374C3.12432 8.90958 3 7.92466 3 7ZM16 4C16 3.44772 16.4477 3 17 3C19.2091 3 21 4.79086 21 7C21 7.9278 20.868 8.92181 21.0795 9.82884C21.1511 10.1363 21.2615 10.3558 21.42 10.5296C21.5802 10.7052 21.8443 10.894 22.3162 11.0513C22.7246 11.1874 23 11.5696 23 12C23 12.4304 22.7246 12.8126 22.3162 12.9487C21.8443 13.106 21.5802 13.2948 21.42 13.4704C21.2615 13.6442 21.1511 13.8637 21.0795 14.1712C20.868 15.0782 21 16.0722 21 17C21 19.2091 19.2091 21 17 21C16.4477 21 16 20.5523 16 20C16 19.4477 16.4477 19 17 19C18.1046 19 19 18.1046 19 17C19 15.9085 18.8817 14.7894 19.1317 13.7171C19.2619 13.1586 19.5024 12.6049 19.9425 12.1225C19.9806 12.0807 20.0198 12.0398 20.0601 12C20.0198 11.9602 19.9806 11.9193 19.9425 11.8775C19.5024 11.3951 19.2619 10.8414 19.1317 10.2829C18.8817 9.21061 19 8.09155 19 7C19 5.89543 18.1046 5 17 5C16.4477 5 16 4.55228 16 4Z", fill: "currentColor" }), _jsx("path", { d: "M8 8C8 7.44772 8.44772 7 9 7H15C15.5523 7 16 7.44772 16 8C16 8.55228 15.5523 9 15 9H9C8.44772 9 8 8.55228 8 8ZM8 12C8 11.4477 8.44772 11 9 11H15C15.5523 11 16 11.4477 16 12C16 12.5523 15.5523 13 15 13H9C8.44772 13 8 12.5523 8 12ZM8 16C8 15.4477 8.44772 15 9 15H15C15.5523 15 16 15.4477 16 16C16 16.5523 15.5523 17 15 17H9C8.44772 17 8 16.5523 8 16Z", fill: "currentColor" })] })); +export default Batches; +//# sourceMappingURL=Batches.js.map \ No newline at end of file diff --git a/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/Icon/svg/Batches.js.map b/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/Icon/svg/Batches.js.map new file mode 100644 index 0000000000000000000000000000000000000000..8c6957b2e71c18a6e843604ae81d5159840cc2c4 --- /dev/null +++ b/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/Icon/svg/Batches.js.map @@ -0,0 +1 @@ +{"version":3,"file":"Batches.js","sourceRoot":"","sources":["../../../../../src/components/Icon/svg/Batches.tsx"],"names":[],"mappings":";AACA,MAAM,OAAO,GAAG,CAAC,KAA8B,EAAE,EAAE,CAAC,CAClD,eAAK,KAAK,EAAC,KAAK,EAAC,MAAM,EAAC,KAAK,EAAC,OAAO,EAAC,WAAW,EAAC,IAAI,EAAC,cAAc,KAAK,KAAK,aAC7E,eACE,CAAC,EAAC,wlDAAwlD,EAC1lD,IAAI,EAAC,cAAc,GACnB,EACF,eACE,CAAC,EAAC,8VAA8V,EAChW,IAAI,EAAC,cAAc,GACnB,IACE,CACP,CAAA;AACD,eAAe,OAAO,CAAA","sourcesContent":["import type { SVGProps } from \"react\"\nconst Batches = (props: SVGProps) => (\n \n \n \n \n)\nexport default Batches\n"]} \ No newline at end of file diff --git a/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/Icon/svg/Bell.js b/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/Icon/svg/Bell.js new file mode 100644 index 0000000000000000000000000000000000000000..f41b19f002ce62f315c41102057f356a2760ed51 --- /dev/null +++ b/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/Icon/svg/Bell.js @@ -0,0 +1,4 @@ +import { jsx as _jsx } from "react/jsx-runtime"; +const Bell = (props) => (_jsx("svg", { width: "1em", height: "1em", viewBox: "0 0 24 24", fill: "currentColor", ...props, children: _jsx("path", { fillRule: "evenodd", clipRule: "evenodd", d: "M3.80094 9.60322C4.25738 5.41917 7.79108 2.25 12 2.25C16.2088 2.25 19.7425 5.41916 20.199 9.60322L20.8731 15.7831C21.0022 16.9665 20.0754 18 18.8849 18H16.8424C16.2874 20.1565 14.3298 21.75 12 21.75C9.67015 21.75 7.71253 20.1565 7.15747 18H5.11498C3.92455 18 2.99767 16.9665 3.12677 15.7831L3.80094 9.60322ZM9.27197 18C9.74598 19.0328 10.7892 19.75 12 19.75C13.2107 19.75 14.2539 19.0328 14.7279 18H9.27197ZM12 4.25C8.8117 4.25 6.1349 6.65066 5.78914 9.82011L5.11498 16L18.8849 16L18.2108 9.82011C17.865 6.65066 15.1882 4.25 12 4.25Z", fill: "currentColor" }) })); +export default Bell; +//# sourceMappingURL=Bell.js.map \ No newline at end of file diff --git a/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/Icon/svg/Bell.js.map b/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/Icon/svg/Bell.js.map new file mode 100644 index 0000000000000000000000000000000000000000..d5f9f095eb20d0c4d25afeee2fe69d5a99da667f --- /dev/null +++ b/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/Icon/svg/Bell.js.map @@ -0,0 +1 @@ +{"version":3,"file":"Bell.js","sourceRoot":"","sources":["../../../../../src/components/Icon/svg/Bell.tsx"],"names":[],"mappings":";AACA,MAAM,IAAI,GAAG,CAAC,KAA8B,EAAE,EAAE,CAAC,CAC/C,cAAK,KAAK,EAAC,KAAK,EAAC,MAAM,EAAC,KAAK,EAAC,OAAO,EAAC,WAAW,EAAC,IAAI,EAAC,cAAc,KAAK,KAAK,YAC7E,eACE,QAAQ,EAAC,SAAS,EAClB,QAAQ,EAAC,SAAS,EAClB,CAAC,EAAC,uhBAAuhB,EACzhB,IAAI,EAAC,cAAc,GACnB,GACE,CACP,CAAA;AACD,eAAe,IAAI,CAAA","sourcesContent":["import type { SVGProps } from \"react\"\nconst Bell = (props: SVGProps) => (\n \n \n \n)\nexport default Bell\n"]} \ No newline at end of file diff --git a/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/Icon/svg/BellFilled.js b/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/Icon/svg/BellFilled.js new file mode 100644 index 0000000000000000000000000000000000000000..d623c7e2948aca05e4c446905a2ff8cdd3d4959c --- /dev/null +++ b/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/Icon/svg/BellFilled.js @@ -0,0 +1,4 @@ +import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime"; +const BellFilled = (props) => (_jsxs("svg", { width: "1em", height: "1em", viewBox: "0 0 24 24", fill: "currentColor", ...props, children: [_jsx("path", { d: "M12.0007 2.25C7.78707 2.25 4.24043 5.40385 3.7481 9.58864L3.13896 14.7663C2.99908 15.9553 3.92808 17 5.12526 17H18.8762C20.0734 17 21.0024 15.9553 20.8625 14.7663L20.2533 9.58864C19.761 5.40385 16.2144 2.25 12.0007 2.25Z", fill: "currentColor" }), _jsx("path", { d: "M7.67819 18.5C8.21986 20.3771 9.95076 21.75 12.0023 21.75C14.0539 21.75 15.7847 20.3771 16.3264 18.5H7.67819Z", fill: "currentColor" })] })); +export default BellFilled; +//# sourceMappingURL=BellFilled.js.map \ No newline at end of file diff --git a/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/Icon/svg/BellFilled.js.map b/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/Icon/svg/BellFilled.js.map new file mode 100644 index 0000000000000000000000000000000000000000..9860c8a26135b57903a22d9006cd974ebadafe4e --- /dev/null +++ b/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/Icon/svg/BellFilled.js.map @@ -0,0 +1 @@ +{"version":3,"file":"BellFilled.js","sourceRoot":"","sources":["../../../../../src/components/Icon/svg/BellFilled.tsx"],"names":[],"mappings":";AACA,MAAM,UAAU,GAAG,CAAC,KAA8B,EAAE,EAAE,CAAC,CACrD,eAAK,KAAK,EAAC,KAAK,EAAC,MAAM,EAAC,KAAK,EAAC,OAAO,EAAC,WAAW,EAAC,IAAI,EAAC,cAAc,KAAK,KAAK,aAC7E,eACE,CAAC,EAAC,8NAA8N,EAChO,IAAI,EAAC,cAAc,GACnB,EACF,eACE,CAAC,EAAC,+GAA+G,EACjH,IAAI,EAAC,cAAc,GACnB,IACE,CACP,CAAA;AACD,eAAe,UAAU,CAAA","sourcesContent":["import type { SVGProps } from \"react\"\nconst BellFilled = (props: SVGProps) => (\n \n \n \n \n)\nexport default BellFilled\n"]} \ No newline at end of file diff --git a/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/Icon/svg/Beta.js b/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/Icon/svg/Beta.js new file mode 100644 index 0000000000000000000000000000000000000000..54ada1429e678309a3a2d23f8fd324afb33e77b7 --- /dev/null +++ b/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/Icon/svg/Beta.js @@ -0,0 +1,4 @@ +import { jsx as _jsx } from "react/jsx-runtime"; +const Beta = (props) => (_jsx("svg", { width: "1em", height: "1em", viewBox: "0 0 24 24", fill: "currentColor", ...props, children: _jsx("path", { fillRule: "evenodd", d: "M7 3a1 1 0 0 1 1-1h8a1 1 0 1 1 0 2v5.276a1 1 0 0 0 .232.64l3.685 4.423A4.671 4.671 0 0 1 16.33 22H7.671a4.671 4.671 0 0 1-3.588-7.661l.045-.055c.06-.106.139-.201.234-.28l3.406-4.088A1 1 0 0 0 8 9.276V4a1 1 0 0 1-1-1Zm3 1v5.276a3 3 0 0 1-.695 1.92l-1.709 2.05a10.82 10.82 0 0 1 1.4-.027c1.071.048 1.97.254 2.75.433l.219.05c.842.191 1.562.332 2.4.29.624-.03 1.348-.164 2.247-.495l-1.917-2.3A3 3 0 0 1 14 9.276V4h-4Zm7.959 11.113c-1.347.574-2.472.827-3.495.877-1.131.056-2.078-.142-2.941-.338l-.209-.047c-.793-.181-1.525-.348-2.409-.388-.879-.04-1.933.047-3.305.425A2.671 2.671 0 0 0 7.67 20h8.66a2.67 2.67 0 0 0 2.05-4.38l-.421-.507Z", clipRule: "evenodd" }) })); +export default Beta; +//# sourceMappingURL=Beta.js.map \ No newline at end of file diff --git a/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/Icon/svg/Beta.js.map b/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/Icon/svg/Beta.js.map new file mode 100644 index 0000000000000000000000000000000000000000..52cc29621c7426e4c3f1935be4912129ba3da83a --- /dev/null +++ b/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/Icon/svg/Beta.js.map @@ -0,0 +1 @@ +{"version":3,"file":"Beta.js","sourceRoot":"","sources":["../../../../../src/components/Icon/svg/Beta.tsx"],"names":[],"mappings":";AACA,MAAM,IAAI,GAAG,CAAC,KAA8B,EAAE,EAAE,CAAC,CAC/C,cAAK,KAAK,EAAC,KAAK,EAAC,MAAM,EAAC,KAAK,EAAC,OAAO,EAAC,WAAW,EAAC,IAAI,EAAC,cAAc,KAAK,KAAK,YAC7E,eACE,QAAQ,EAAC,SAAS,EAClB,CAAC,EAAC,ynBAAynB,EAC3nB,QAAQ,EAAC,SAAS,GAClB,GACE,CACP,CAAA;AACD,eAAe,IAAI,CAAA","sourcesContent":["import type { SVGProps } from \"react\"\nconst Beta = (props: SVGProps) => (\n \n \n \n)\nexport default Beta\n"]} \ No newline at end of file diff --git a/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/Icon/svg/Bills.js b/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/Icon/svg/Bills.js new file mode 100644 index 0000000000000000000000000000000000000000..22ab81f361a04d748ceb085a3478595b18dd90e9 --- /dev/null +++ b/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/Icon/svg/Bills.js @@ -0,0 +1,4 @@ +import { jsx as _jsx } from "react/jsx-runtime"; +const Bills = (props) => (_jsx("svg", { fill: "currentColor", viewBox: "0 0 21 21", stroke: "currentColor", width: "1em", height: "1em", ...props, children: _jsx("path", { d: "M2.375 16.125a50.062 50.062 0 0 1 13.164 1.75.955.955 0 0 0 1.211-.913v-.837M3.625 4.25v.625A.625.625 0 0 1 3 5.5h-.625m0 0v-.313c0-.517.42-.937.938-.937h14.062m-15 1.25V13m15-8.75v.625c0 .345.28.625.625.625h.625m-1.25-1.25h.313c.517 0 .937.42.937.938v8.125c0 .517-.42.937-.938.937h-.312m-15-1.25v.313a.937.937 0 0 0 .938.937h.312M2.375 13H3a.625.625 0 0 1 .625.625v.625m13.75 0v-.625A.624.624 0 0 1 18 13h.625m-1.25 1.25H3.625m9.375-5a2.5 2.5 0 1 1-5 0 2.5 2.5 0 0 1 5 0Zm2.5 0h.007v.007H15.5V9.25Zm-10 0h.007v.007H5.5V9.25Z", strokeWidth: 1.25, strokeLinecap: "round", strokeLinejoin: "round" }) })); +export default Bills; +//# sourceMappingURL=Bills.js.map \ No newline at end of file diff --git a/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/Icon/svg/Bills.js.map b/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/Icon/svg/Bills.js.map new file mode 100644 index 0000000000000000000000000000000000000000..97d8aaa81b74d2dbfca121ec8b7fd3784ba8d522 --- /dev/null +++ b/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/Icon/svg/Bills.js.map @@ -0,0 +1 @@ +{"version":3,"file":"Bills.js","sourceRoot":"","sources":["../../../../../src/components/Icon/svg/Bills.tsx"],"names":[],"mappings":";AACA,MAAM,KAAK,GAAG,CAAC,KAA8B,EAAE,EAAE,CAAC,CAChD,cACE,IAAI,EAAC,cAAc,EACnB,OAAO,EAAC,WAAW,EACnB,MAAM,EAAC,cAAc,EACrB,KAAK,EAAC,KAAK,EACX,MAAM,EAAC,KAAK,KACR,KAAK,YAET,eACE,CAAC,EAAC,+gBAA+gB,EACjhB,WAAW,EAAE,IAAI,EACjB,aAAa,EAAC,OAAO,EACrB,cAAc,EAAC,OAAO,GACtB,GACE,CACP,CAAA;AACD,eAAe,KAAK,CAAA","sourcesContent":["import type { SVGProps } from \"react\"\nconst Bills = (props: SVGProps) => (\n \n \n \n)\nexport default Bills\n"]} \ No newline at end of file diff --git a/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/Icon/svg/Blend.js b/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/Icon/svg/Blend.js new file mode 100644 index 0000000000000000000000000000000000000000..db794b40d978407f2c61c55b620042e2de42885b --- /dev/null +++ b/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/Icon/svg/Blend.js @@ -0,0 +1,4 @@ +import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime"; +const Blend = (props) => (_jsxs("svg", { width: "1em", height: "1em", viewBox: "0 0 24 24", fill: "currentColor", ...props, children: [_jsx("path", { d: "M7.7 11.5C7.58954 11.5 7.5 11.5895 7.5 11.7V12.3C7.5 12.4105 7.58954 12.5 7.7 12.5H8.3C8.41046 12.5 8.5 12.4105 8.5 12.3V11.7C8.5 11.5895 8.41046 11.5 8.3 11.5H7.7Z", fill: "currentColor" }), _jsx("path", { d: "M5.25 13.6C5.25 13.4067 5.4067 13.25 5.6 13.25H6.4C6.5933 13.25 6.75 13.4067 6.75 13.6V14.4C6.75 14.5933 6.5933 14.75 6.4 14.75H5.6C5.4067 14.75 5.25 14.5933 5.25 14.4V13.6Z", fill: "currentColor" }), _jsx("path", { d: "M9.60977 13.26C9.41647 13.26 9.25977 13.4167 9.25977 13.61V14.39C9.25977 14.5833 9.41647 14.74 9.60977 14.74H10.3898C10.5831 14.74 10.7398 14.5833 10.7398 14.39V13.61C10.7398 13.4167 10.5831 13.26 10.3898 13.26H9.60977Z", fill: "currentColor" }), _jsx("path", { d: "M13.25 13.6C13.25 13.4067 13.4067 13.25 13.6 13.25H14.4C14.5933 13.25 14.75 13.4067 14.75 13.6V14.4C14.75 14.5933 14.5933 14.75 14.4 14.75H13.6C13.4067 14.75 13.25 14.5933 13.25 14.4V13.6Z", fill: "currentColor" }), _jsx("path", { d: "M17.6 13.25C17.4067 13.25 17.25 13.4067 17.25 13.6V14.4C17.25 14.5933 17.4067 14.75 17.6 14.75H18.4C18.5933 14.75 18.75 14.5933 18.75 14.4V13.6C18.75 13.4067 18.5933 13.25 18.4 13.25H17.6Z", fill: "currentColor" }), _jsx("path", { d: "M7 15.5C7 15.2239 7.22386 15 7.5 15H8.5C8.77614 15 9 15.2239 9 15.5V16.5C9 16.7761 8.77614 17 8.5 17H7.5C7.22386 17 7 16.7761 7 16.5V15.5Z", fill: "currentColor" }), _jsx("path", { d: "M11.5 15C11.2239 15 11 15.2239 11 15.5V16.5C11 16.7761 11.2239 17 11.5 17H12.5C12.7761 17 13 16.7761 13 16.5V15.5C13 15.2239 12.7761 15 12.5 15H11.5Z", fill: "currentColor" }), _jsx("path", { d: "M15 15.5C15 15.2239 15.2239 15 15.5 15H16.5C16.7761 15 17 15.2239 17 15.5V16.5C17 16.7761 16.7761 17 16.5 17H15.5C15.2239 17 15 16.7761 15 16.5V15.5Z", fill: "currentColor" }), _jsx("path", { d: "M11.5 11.7C11.5 11.5895 11.5895 11.5 11.7 11.5H12.3C12.4105 11.5 12.5 11.5895 12.5 11.7V12.3C12.5 12.4105 12.4105 12.5 12.3 12.5H11.7C11.5895 12.5 11.5 12.4105 11.5 12.3V11.7Z", fill: "currentColor" }), _jsx("path", { d: "M15.7 11.5C15.5895 11.5 15.5 11.5895 15.5 11.7V12.3C15.5 12.4105 15.5895 12.5 15.7 12.5H16.3C16.4105 12.5 16.5 12.4105 16.5 12.3V11.7C16.5 11.5895 16.4105 11.5 16.3 11.5H15.7Z", fill: "currentColor" }), _jsx("path", { fillRule: "evenodd", clipRule: "evenodd", d: "M7 3C4.79086 3 3 4.79086 3 7V17C3 19.2091 4.79086 21 7 21H17C19.2091 21 21 19.2091 21 17V7C21 4.79086 19.2091 3 17 3H7ZM5 7C5 5.89543 5.89543 5 7 5H17C18.1046 5 19 5.89543 19 7V17H17.5C17.2239 17 17 17.2239 17 17.5V19H15V17.5C15 17.2239 14.7761 17 14.5 17H13.5C13.2239 17 13 17.2239 13 17.5V19H11V17.5C11 17.2239 10.7761 17 10.5 17H9.5C9.22386 17 9 17.2239 9 17.5V19H7V17.5C7 17.2239 6.77614 17 6.5 17H5V7Z", fill: "currentColor" })] })); +export default Blend; +//# sourceMappingURL=Blend.js.map \ No newline at end of file diff --git a/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/Icon/svg/Blend.js.map b/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/Icon/svg/Blend.js.map new file mode 100644 index 0000000000000000000000000000000000000000..224bd5fbb4fd19c53b33930a86624ad8e1d96834 --- /dev/null +++ b/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/Icon/svg/Blend.js.map @@ -0,0 +1 @@ +{"version":3,"file":"Blend.js","sourceRoot":"","sources":["../../../../../src/components/Icon/svg/Blend.tsx"],"names":[],"mappings":";AACA,MAAM,KAAK,GAAG,CAAC,KAA8B,EAAE,EAAE,CAAC,CAChD,eAAK,KAAK,EAAC,KAAK,EAAC,MAAM,EAAC,KAAK,EAAC,OAAO,EAAC,WAAW,EAAC,IAAI,EAAC,cAAc,KAAK,KAAK,aAC7E,eACE,CAAC,EAAC,sKAAsK,EACxK,IAAI,EAAC,cAAc,GACnB,EACF,eACE,CAAC,EAAC,+KAA+K,EACjL,IAAI,EAAC,cAAc,GACnB,EACF,eACE,CAAC,EAAC,6NAA6N,EAC/N,IAAI,EAAC,cAAc,GACnB,EACF,eACE,CAAC,EAAC,8LAA8L,EAChM,IAAI,EAAC,cAAc,GACnB,EACF,eACE,CAAC,EAAC,8LAA8L,EAChM,IAAI,EAAC,cAAc,GACnB,EACF,eACE,CAAC,EAAC,4IAA4I,EAC9I,IAAI,EAAC,cAAc,GACnB,EACF,eACE,CAAC,EAAC,uJAAuJ,EACzJ,IAAI,EAAC,cAAc,GACnB,EACF,eACE,CAAC,EAAC,uJAAuJ,EACzJ,IAAI,EAAC,cAAc,GACnB,EACF,eACE,CAAC,EAAC,iLAAiL,EACnL,IAAI,EAAC,cAAc,GACnB,EACF,eACE,CAAC,EAAC,iLAAiL,EACnL,IAAI,EAAC,cAAc,GACnB,EACF,eACE,QAAQ,EAAC,SAAS,EAClB,QAAQ,EAAC,SAAS,EAClB,CAAC,EAAC,wZAAwZ,EAC1Z,IAAI,EAAC,cAAc,GACnB,IACE,CACP,CAAA;AACD,eAAe,KAAK,CAAA","sourcesContent":["import type { SVGProps } from \"react\"\nconst Blend = (props: SVGProps) => (\n \n \n \n \n \n \n \n \n \n \n \n \n \n)\nexport default Blend\n"]} \ No newline at end of file diff --git a/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/Icon/svg/BlendingCurveSharp.js b/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/Icon/svg/BlendingCurveSharp.js new file mode 100644 index 0000000000000000000000000000000000000000..bca1531af13e7c694dd3e425882c1e2b0303199f --- /dev/null +++ b/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/Icon/svg/BlendingCurveSharp.js @@ -0,0 +1,4 @@ +import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime"; +const BlendingCurveSharp = (props) => (_jsxs("svg", { width: "1em", height: "1em", viewBox: "0 0 24 24", fill: "currentColor", ...props, children: [_jsx("path", { d: "M8.70711 7.29289C8.31658 6.90237 7.68342 6.90237 7.29289 7.29289C6.90237 7.68342 6.90237 8.31658 7.29289 8.70711L15.2929 16.7071C15.6834 17.0976 16.3166 17.0976 16.7071 16.7071C17.0976 16.3166 17.0976 15.6834 16.7071 15.2929L8.70711 7.29289Z", fill: "currentColor" }), _jsx("path", { fillRule: "evenodd", clipRule: "evenodd", d: "M7 3.00012C4.79086 3.00012 3 4.79098 3 7.00012V17.0001C3 19.2093 4.79086 21.0001 7 21.0001H17C19.2091 21.0001 21 19.2093 21 17.0001V7.00012C21 4.79098 19.2091 3.00012 17 3.00012H7ZM5 7.00012C5 5.89555 5.89543 5.00012 7 5.00012H17C18.1046 5.00012 19 5.89555 19 7.00012V17.0001C19 18.1047 18.1046 19.0001 17 19.0001H7C5.89543 19.0001 5 18.1047 5 17.0001V7.00012Z", fill: "currentColor" })] })); +export default BlendingCurveSharp; +//# sourceMappingURL=BlendingCurveSharp.js.map \ No newline at end of file diff --git a/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/Icon/svg/BlendingCurveSharp.js.map b/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/Icon/svg/BlendingCurveSharp.js.map new file mode 100644 index 0000000000000000000000000000000000000000..d0713a7eb9ec1f87f8c44e41ccc9540de4247535 --- /dev/null +++ b/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/Icon/svg/BlendingCurveSharp.js.map @@ -0,0 +1 @@ +{"version":3,"file":"BlendingCurveSharp.js","sourceRoot":"","sources":["../../../../../src/components/Icon/svg/BlendingCurveSharp.tsx"],"names":[],"mappings":";AACA,MAAM,kBAAkB,GAAG,CAAC,KAA8B,EAAE,EAAE,CAAC,CAC7D,eAAK,KAAK,EAAC,KAAK,EAAC,MAAM,EAAC,KAAK,EAAC,OAAO,EAAC,WAAW,EAAC,IAAI,EAAC,cAAc,KAAK,KAAK,aAC7E,eACE,CAAC,EAAC,mPAAmP,EACrP,IAAI,EAAC,cAAc,GACnB,EACF,eACE,QAAQ,EAAC,SAAS,EAClB,QAAQ,EAAC,SAAS,EAClB,CAAC,EAAC,0WAA0W,EAC5W,IAAI,EAAC,cAAc,GACnB,IACE,CACP,CAAA;AACD,eAAe,kBAAkB,CAAA","sourcesContent":["import type { SVGProps } from \"react\"\nconst BlendingCurveSharp = (props: SVGProps) => (\n \n \n \n \n)\nexport default BlendingCurveSharp\n"]} \ No newline at end of file diff --git a/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/Icon/svg/BlendingCurveSmooth.js b/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/Icon/svg/BlendingCurveSmooth.js new file mode 100644 index 0000000000000000000000000000000000000000..44ca149f42526e4f76fb542fd7763a74057aad80 --- /dev/null +++ b/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/Icon/svg/BlendingCurveSmooth.js @@ -0,0 +1,4 @@ +import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime"; +const BlendingCurveSmooth = (props) => (_jsxs("svg", { width: "1em", height: "1em", viewBox: "0 0 24 24", fill: "currentColor", ...props, children: [_jsx("path", { d: "M8 6.998C7.44661 6.998 6.998 7.44661 6.998 8C6.998 8.55339 7.44661 9.002 8 9.002C9.07774 9.002 9.62294 9.36831 10.0033 9.86173C10.4511 10.4427 10.7174 11.255 11.0436 12.2989L11.0686 12.3789C11.3626 13.3207 11.7207 14.4682 12.4095 15.3617C13.1854 16.3683 14.3277 17.002 16 17.002C16.5534 17.002 17.002 16.5534 17.002 16C17.002 15.4466 16.5534 14.998 16 14.998C14.9223 14.998 14.3771 14.6317 13.9967 14.1383C13.5489 13.5573 13.2826 12.745 12.9564 11.7011L12.9314 11.6211C12.6374 10.6793 12.2793 9.53183 11.5905 8.63827C10.8146 7.63169 9.67226 6.998 8 6.998Z", fill: "currentColor" }), _jsx("path", { fillRule: "evenodd", clipRule: "evenodd", d: "M7 3C4.79086 3 3 4.79086 3 7V17C3 19.2091 4.79086 21 7 21H17C19.2091 21 21 19.2091 21 17V7C21 4.79086 19.2091 3 17 3H7ZM5 7C5 5.89543 5.89543 5 7 5H17C18.1046 5 19 5.89543 19 7V17C19 18.1046 18.1046 19 17 19H7C5.89543 19 5 18.1046 5 17V7Z", fill: "currentColor" })] })); +export default BlendingCurveSmooth; +//# sourceMappingURL=BlendingCurveSmooth.js.map \ No newline at end of file diff --git a/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/Icon/svg/BlendingCurveSmooth.js.map b/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/Icon/svg/BlendingCurveSmooth.js.map new file mode 100644 index 0000000000000000000000000000000000000000..1792b8fa3383e78ae5456957fa2de87ce4f7f97e --- /dev/null +++ b/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/Icon/svg/BlendingCurveSmooth.js.map @@ -0,0 +1 @@ +{"version":3,"file":"BlendingCurveSmooth.js","sourceRoot":"","sources":["../../../../../src/components/Icon/svg/BlendingCurveSmooth.tsx"],"names":[],"mappings":";AACA,MAAM,mBAAmB,GAAG,CAAC,KAA8B,EAAE,EAAE,CAAC,CAC9D,eAAK,KAAK,EAAC,KAAK,EAAC,MAAM,EAAC,KAAK,EAAC,OAAO,EAAC,WAAW,EAAC,IAAI,EAAC,cAAc,KAAK,KAAK,aAC7E,eACE,CAAC,EAAC,6iBAA6iB,EAC/iB,IAAI,EAAC,cAAc,GACnB,EACF,eACE,QAAQ,EAAC,SAAS,EAClB,QAAQ,EAAC,SAAS,EAClB,CAAC,EAAC,gPAAgP,EAClP,IAAI,EAAC,cAAc,GACnB,IACE,CACP,CAAA;AACD,eAAe,mBAAmB,CAAA","sourcesContent":["import type { SVGProps } from \"react\"\nconst BlendingCurveSmooth = (props: SVGProps) => (\n \n \n \n \n)\nexport default BlendingCurveSmooth\n"]} \ No newline at end of file diff --git a/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/Icon/svg/BlendingCurveSubtle.js b/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/Icon/svg/BlendingCurveSubtle.js new file mode 100644 index 0000000000000000000000000000000000000000..d81eacce84a32cbf36f0a9e5a5f2f0bdab1f68ab --- /dev/null +++ b/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/Icon/svg/BlendingCurveSubtle.js @@ -0,0 +1,4 @@ +import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime"; +const BlendingCurveSubtle = (props) => (_jsxs("svg", { width: "1em", height: "1em", viewBox: "0 0 24 24", fill: "currentColor", ...props, children: [_jsx("path", { d: "M8.0997 8.00297C7.54906 7.94791 7.05804 8.34965 7.00297 8.9003C6.94791 9.45094 7.34965 9.94196 7.9003 9.99703C8.95956 10.103 9.56123 10.4318 9.97742 10.8151C10.4301 11.2321 10.733 11.7696 11.1203 12.4798L11.1477 12.5299C11.5055 13.1863 11.9484 13.999 12.6649 14.6589C13.4362 15.3693 14.4596 15.853 15.9003 15.997C16.4509 16.0521 16.942 15.6503 16.997 15.0997C17.0521 14.5491 16.6503 14.058 16.0997 14.003C15.0404 13.897 14.4388 13.5682 14.0226 13.1849C13.5699 12.7679 13.267 12.2304 12.8797 11.5202L12.8523 11.4701C12.4945 10.8137 12.0516 10.001 11.3351 9.34111C10.5638 8.63069 9.54044 8.14705 8.0997 8.00297Z", fill: "currentColor" }), _jsx("path", { fillRule: "evenodd", clipRule: "evenodd", d: "M7 3C4.79086 3 3 4.79086 3 7V17C3 19.2091 4.79086 21 7 21H17C19.2091 21 21 19.2091 21 17V7C21 4.79086 19.2091 3 17 3H7ZM5 7C5 5.89543 5.89543 5 7 5H17C18.1046 5 19 5.89543 19 7V17C19 18.1046 18.1046 19 17 19H7C5.89543 19 5 18.1046 5 17V7Z", fill: "currentColor" })] })); +export default BlendingCurveSubtle; +//# sourceMappingURL=BlendingCurveSubtle.js.map \ No newline at end of file diff --git a/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/Icon/svg/BlendingCurveSubtle.js.map b/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/Icon/svg/BlendingCurveSubtle.js.map new file mode 100644 index 0000000000000000000000000000000000000000..269b3b4c5f4145d70306df97a3af290ab91dfcaa --- /dev/null +++ b/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/Icon/svg/BlendingCurveSubtle.js.map @@ -0,0 +1 @@ +{"version":3,"file":"BlendingCurveSubtle.js","sourceRoot":"","sources":["../../../../../src/components/Icon/svg/BlendingCurveSubtle.tsx"],"names":[],"mappings":";AACA,MAAM,mBAAmB,GAAG,CAAC,KAA8B,EAAE,EAAE,CAAC,CAC9D,eAAK,KAAK,EAAC,KAAK,EAAC,MAAM,EAAC,KAAK,EAAC,OAAO,EAAC,WAAW,EAAC,IAAI,EAAC,cAAc,KAAK,KAAK,aAC7E,eACE,CAAC,EAAC,mmBAAmmB,EACrmB,IAAI,EAAC,cAAc,GACnB,EACF,eACE,QAAQ,EAAC,SAAS,EAClB,QAAQ,EAAC,SAAS,EAClB,CAAC,EAAC,gPAAgP,EAClP,IAAI,EAAC,cAAc,GACnB,IACE,CACP,CAAA;AACD,eAAe,mBAAmB,CAAA","sourcesContent":["import type { SVGProps } from \"react\"\nconst BlendingCurveSubtle = (props: SVGProps) => (\n \n \n \n \n)\nexport default BlendingCurveSubtle\n"]} \ No newline at end of file diff --git a/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/Icon/svg/Bolt.js b/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/Icon/svg/Bolt.js new file mode 100644 index 0000000000000000000000000000000000000000..513b2094fb83dfc260605d29c56c6051a1567a6c --- /dev/null +++ b/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/Icon/svg/Bolt.js @@ -0,0 +1,4 @@ +import { jsx as _jsx } from "react/jsx-runtime"; +const Bolt = (props) => (_jsx("svg", { width: "1em", height: "1em", viewBox: "0 0 24 24", fill: "currentColor", ...props, children: _jsx("path", { fillRule: "evenodd", d: "M15.24 3.486v.002l-1.056 4.517h5.823c1.726 0 2.596 2.021 1.518 3.3l-.002.003-9.308 10.965-.002.002c-1.397 1.656-3.922.223-3.454-1.76v-.003l1.057-4.517H3.993c-1.726 0-2.596-2.021-1.519-3.3l.003-.003 9.308-10.965.002-.002c1.397-1.656 3.922-.223 3.454 1.76Zm-1.95-.444-1.34 5.735a.998.998 0 0 0 .973 1.226h7.074a.04.04 0 0 1 .003.01.045.045 0 0 1-.004.005l-9.287 10.94 1.341-5.735a.998.998 0 0 0-.973-1.226H4.003a.041.041 0 0 1-.003-.01l.004-.005 9.287-10.94Z", clipRule: "evenodd" }) })); +export default Bolt; +//# sourceMappingURL=Bolt.js.map \ No newline at end of file diff --git a/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/Icon/svg/Bolt.js.map b/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/Icon/svg/Bolt.js.map new file mode 100644 index 0000000000000000000000000000000000000000..934cf4e493e1a415548f507212c4b488e44a730e --- /dev/null +++ b/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/Icon/svg/Bolt.js.map @@ -0,0 +1 @@ +{"version":3,"file":"Bolt.js","sourceRoot":"","sources":["../../../../../src/components/Icon/svg/Bolt.tsx"],"names":[],"mappings":";AACA,MAAM,IAAI,GAAG,CAAC,KAA8B,EAAE,EAAE,CAAC,CAC/C,cAAK,KAAK,EAAC,KAAK,EAAC,MAAM,EAAC,KAAK,EAAC,OAAO,EAAC,WAAW,EAAC,IAAI,EAAC,cAAc,KAAK,KAAK,YAC7E,eACE,QAAQ,EAAC,SAAS,EAClB,CAAC,EAAC,0cAA0c,EAC5c,QAAQ,EAAC,SAAS,GAClB,GACE,CACP,CAAA;AACD,eAAe,IAAI,CAAA","sourcesContent":["import type { SVGProps } from \"react\"\nconst Bolt = (props: SVGProps) => (\n \n \n \n)\nexport default Bolt\n"]} \ No newline at end of file diff --git a/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/Icon/svg/Book.js b/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/Icon/svg/Book.js new file mode 100644 index 0000000000000000000000000000000000000000..a43cf246308257f585fc9c018002ee11d9361373 --- /dev/null +++ b/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/Icon/svg/Book.js @@ -0,0 +1,4 @@ +import { jsx as _jsx } from "react/jsx-runtime"; +const Book = (props) => (_jsx("svg", { width: "1em", height: "1em", viewBox: "0 0 24 24", fill: "currentColor", ...props, children: _jsx("path", { d: "M17.9754 4.01031C17.8588 4.00078 17.6965 4.00001 17.4 4.00001H9.8C8.94342 4.00001 8.36113 4.00078 7.91104 4.03756C7.47262 4.07338 7.24842 4.1383 7.09202 4.21799C6.7157 4.40974 6.40973 4.7157 6.21799 5.09202C6.1383 5.24842 6.07337 5.47263 6.03755 5.91104C6.00078 6.36113 6 6.94343 6 7.80001V16.1707C6.31278 16.0602 6.64937 16 7 16H18L18 4.60001C18 4.30348 17.9992 4.14122 17.9897 4.02464C17.9893 4.02 17.9889 4.0156 17.9886 4.01145C17.9844 4.01107 17.98 4.01069 17.9754 4.01031ZM17.657 18H7C6.44772 18 6 18.4477 6 19C6 19.5523 6.44772 20 7 20H17.657C17.5343 19.3301 17.5343 18.6699 17.657 18ZM4 19L4 7.75871C3.99999 6.95374 3.99998 6.28937 4.04419 5.74818C4.09012 5.18608 4.18868 4.66938 4.43597 4.18404C4.81947 3.43139 5.43139 2.81947 6.18404 2.43598C6.66937 2.18869 7.18608 2.09012 7.74818 2.0442C8.28937 1.99998 8.95373 1.99999 9.7587 2L17.4319 2C17.6843 1.99997 17.9301 1.99994 18.1382 2.01695C18.3668 2.03563 18.6366 2.07969 18.908 2.21799C19.2843 2.40974 19.5903 2.7157 19.782 3.09203C19.9203 3.36345 19.9644 3.63318 19.9831 3.86178C20.0001 4.06994 20 4.31574 20 4.56812L20 17C20 17.1325 19.9736 17.2638 19.9225 17.386C19.4458 18.5253 19.4458 19.4747 19.9225 20.614C20.0517 20.9227 20.0179 21.2755 19.8325 21.5541C19.6471 21.8326 19.3346 22 19 22H7C5.34315 22 4 20.6569 4 19Z", fill: "currentColor" }) })); +export default Book; +//# sourceMappingURL=Book.js.map \ No newline at end of file diff --git a/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/Icon/svg/Book.js.map b/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/Icon/svg/Book.js.map new file mode 100644 index 0000000000000000000000000000000000000000..7ab92f6ceecf1eb127f7f215770af640376413d2 --- /dev/null +++ b/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/Icon/svg/Book.js.map @@ -0,0 +1 @@ +{"version":3,"file":"Book.js","sourceRoot":"","sources":["../../../../../src/components/Icon/svg/Book.tsx"],"names":[],"mappings":";AACA,MAAM,IAAI,GAAG,CAAC,KAA8B,EAAE,EAAE,CAAC,CAC/C,cAAK,KAAK,EAAC,KAAK,EAAC,MAAM,EAAC,KAAK,EAAC,OAAO,EAAC,WAAW,EAAC,IAAI,EAAC,cAAc,KAAK,KAAK,YAC7E,eACE,CAAC,EAAC,kwCAAkwC,EACpwC,IAAI,EAAC,cAAc,GACnB,GACE,CACP,CAAA;AACD,eAAe,IAAI,CAAA","sourcesContent":["import type { SVGProps } from \"react\"\nconst Book = (props: SVGProps) => (\n \n \n \n)\nexport default Book\n"]} \ No newline at end of file diff --git a/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/Icon/svg/BookBookmark.js b/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/Icon/svg/BookBookmark.js new file mode 100644 index 0000000000000000000000000000000000000000..03c2139a241c925c44b7809cba5674d409b38a81 --- /dev/null +++ b/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/Icon/svg/BookBookmark.js @@ -0,0 +1,4 @@ +import { jsx as _jsx } from "react/jsx-runtime"; +const BookBookmark = (props) => (_jsx("svg", { width: "1em", height: "1em", viewBox: "0 0 24 24", fill: "currentColor", ...props, children: _jsx("path", { d: "M4 7.75871L4 19C4 20.6569 5.34315 22 7 22H19C19.3346 22 19.6471 21.8326 19.8325 21.5541C20.0179 21.2755 20.0517 20.9227 19.9225 20.614C19.4458 19.4747 19.4458 18.5253 19.9225 17.386C19.9736 17.2638 20 17.1325 20 17L20 4.56812C20 4.31575 20.0001 4.06993 19.9831 3.86178C19.9644 3.63318 19.9203 3.36345 19.782 3.09203C19.5903 2.7157 19.2843 2.40974 18.908 2.21799C18.6366 2.07969 18.3668 2.03563 18.1382 2.01695C17.9301 1.99994 17.6843 1.99997 17.4319 2L9.7587 2C8.95373 1.99999 8.28937 1.99998 7.74818 2.0442C7.18608 2.09012 6.66937 2.18869 6.18404 2.43598C5.43139 2.81947 4.81947 3.43139 4.43597 4.18404C4.18868 4.66938 4.09012 5.18608 4.04419 5.74818C3.99998 6.28937 3.99999 6.95374 4 7.75871ZM17.4 4.00001C17.6965 4.00001 17.8588 4.00078 17.9754 4.01031L17.9886 4.01145L17.9897 4.02464C17.9992 4.14122 18 4.30348 18 4.60001L18 16H7C6.64937 16 6.31278 16.0602 6 16.1707V7.80001C6 6.94343 6.00078 6.36113 6.03755 5.91104C6.07337 5.47263 6.1383 5.24842 6.21799 5.09202C6.40973 4.7157 6.7157 4.40974 7.09202 4.21799C7.24842 4.1383 7.47262 4.07338 7.91104 4.03756C7.94013 4.03518 7.96977 4.03295 8 4.03087V12C8 12.5523 8.44771 13 9 13C9.55229 13 10 12.5523 10 12V4L17.4 4.00001ZM7 18H17.657C17.5343 18.6699 17.5343 19.3301 17.657 20H7C6.44772 20 6 19.5523 6 19C6 18.4477 6.44772 18 7 18Z", fill: "currentColor" }) })); +export default BookBookmark; +//# sourceMappingURL=BookBookmark.js.map \ No newline at end of file diff --git a/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/Icon/svg/BookBookmark.js.map b/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/Icon/svg/BookBookmark.js.map new file mode 100644 index 0000000000000000000000000000000000000000..1c6e4baf012eb9b83d57de3fa11861ff74b8898b --- /dev/null +++ b/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/Icon/svg/BookBookmark.js.map @@ -0,0 +1 @@ +{"version":3,"file":"BookBookmark.js","sourceRoot":"","sources":["../../../../../src/components/Icon/svg/BookBookmark.tsx"],"names":[],"mappings":";AACA,MAAM,YAAY,GAAG,CAAC,KAA8B,EAAE,EAAE,CAAC,CACvD,cAAK,KAAK,EAAC,KAAK,EAAC,MAAM,EAAC,KAAK,EAAC,OAAO,EAAC,WAAW,EAAC,IAAI,EAAC,cAAc,KAAK,KAAK,YAC7E,eACE,CAAC,EAAC,swCAAswC,EACxwC,IAAI,EAAC,cAAc,GACnB,GACE,CACP,CAAA;AACD,eAAe,YAAY,CAAA","sourcesContent":["import type { SVGProps } from \"react\"\nconst BookBookmark = (props: SVGProps) => (\n \n \n \n)\nexport default BookBookmark\n"]} \ No newline at end of file diff --git a/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/Icon/svg/BookClock.js b/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/Icon/svg/BookClock.js new file mode 100644 index 0000000000000000000000000000000000000000..92393d9f2c3f100284118278ab43bbedbd86f637 --- /dev/null +++ b/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/Icon/svg/BookClock.js @@ -0,0 +1,4 @@ +import { jsx as _jsx } from "react/jsx-runtime"; +const BookClock = (props) => (_jsx("svg", { width: "1em", height: "1em", viewBox: "0 0 24 24", fill: "currentColor", ...props, children: _jsx("path", { d: "M12 4C8.13401 4 5 7.13401 5 11C5 11.2972 5.01846 11.5896 5.05421 11.8763C5.12255 12.4243 4.73367 12.924 4.18563 12.9923C3.63759 13.0607 3.13792 12.6718 3.06958 12.1237C3.02362 11.7552 3 11.3801 3 11C3 6.02944 7.02944 2 12 2C16.9706 2 21 6.02944 21 11C21 11.3801 20.9764 11.7552 20.9304 12.1237C20.8621 12.6718 20.3624 13.0607 19.8144 12.9923C19.2663 12.924 18.8775 12.4243 18.9458 11.8763C18.9815 11.5896 19 11.2972 19 11C19 7.13401 15.866 4 12 4ZM12 6C12.5523 6 13 6.44772 13 7V11C13 11.5523 12.5523 12 12 12H9C8.44772 12 8 11.5523 8 11C8 10.4477 8.44772 10 9 10H11V7C11 6.44772 11.4477 6 12 6ZM3 18.5C3 16.5072 4.7034 15 6.66667 15H20.5C21.0523 15 21.5 15.4477 21.5 16C21.5 16.5523 21.0523 17 20.5 17H20.2177C19.9274 18.0236 19.9274 18.9764 20.2177 20H20.5C21.0523 20 21.5 20.4477 21.5 21C21.5 21.5523 21.0523 22 20.5 22H6.66667C4.7034 22 3 20.4928 3 18.5ZM18.16 20C17.9481 18.9927 17.9481 18.0073 18.16 17H6.66667C5.68442 17 5 17.7314 5 18.5C5 19.2686 5.68442 20 6.66667 20H18.16Z", fill: "currentColor" }) })); +export default BookClock; +//# sourceMappingURL=BookClock.js.map \ No newline at end of file diff --git a/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/Icon/svg/BookClock.js.map b/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/Icon/svg/BookClock.js.map new file mode 100644 index 0000000000000000000000000000000000000000..01009822e24b51216a995d4987bf98bf3ae7cda1 --- /dev/null +++ b/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/Icon/svg/BookClock.js.map @@ -0,0 +1 @@ +{"version":3,"file":"BookClock.js","sourceRoot":"","sources":["../../../../../src/components/Icon/svg/BookClock.tsx"],"names":[],"mappings":";AACA,MAAM,SAAS,GAAG,CAAC,KAA8B,EAAE,EAAE,CAAC,CACpD,cAAK,KAAK,EAAC,KAAK,EAAC,MAAM,EAAC,KAAK,EAAC,OAAO,EAAC,WAAW,EAAC,IAAI,EAAC,cAAc,KAAK,KAAK,YAC7E,eACE,CAAC,EAAC,y9BAAy9B,EAC39B,IAAI,EAAC,cAAc,GACnB,GACE,CACP,CAAA;AACD,eAAe,SAAS,CAAA","sourcesContent":["import type { SVGProps } from \"react\"\nconst BookClock = (props: SVGProps) => (\n \n \n \n)\nexport default BookClock\n"]} \ No newline at end of file diff --git a/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/Icon/svg/BookClosed.js b/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/Icon/svg/BookClosed.js new file mode 100644 index 0000000000000000000000000000000000000000..fc28ff8cb47ee2655996cd03518c6c03ddfd1937 --- /dev/null +++ b/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/Icon/svg/BookClosed.js @@ -0,0 +1,4 @@ +import { jsx as _jsx } from "react/jsx-runtime"; +const BookClosed = (props) => (_jsx("svg", { width: "1em", height: "1em", viewBox: "0 0 24 24", fill: "currentColor", ...props, children: _jsx("path", { fillRule: "evenodd", d: "M7 4a1 1 0 0 0-1 1v11.17c.313-.11.65-.17 1-.17h11V4H7Zm10.657 14H7a1 1 0 1 0 0 2h10.657a5.48 5.48 0 0 1 0-2ZM4 19V5a3 3 0 0 1 3-3h12a1 1 0 0 1 1 1v14a1 1 0 0 1-.078.386c-.476 1.14-.476 2.089 0 3.228A1 1 0 0 1 19 22H7a3 3 0 0 1-3-3Z", clipRule: "evenodd" }) })); +export default BookClosed; +//# sourceMappingURL=BookClosed.js.map \ No newline at end of file diff --git a/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/Icon/svg/BookClosed.js.map b/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/Icon/svg/BookClosed.js.map new file mode 100644 index 0000000000000000000000000000000000000000..a925c3b1e8d8c65057791ac28bef985ec37ef22a --- /dev/null +++ b/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/Icon/svg/BookClosed.js.map @@ -0,0 +1 @@ +{"version":3,"file":"BookClosed.js","sourceRoot":"","sources":["../../../../../src/components/Icon/svg/BookClosed.tsx"],"names":[],"mappings":";AACA,MAAM,UAAU,GAAG,CAAC,KAA8B,EAAE,EAAE,CAAC,CACrD,cAAK,KAAK,EAAC,KAAK,EAAC,MAAM,EAAC,KAAK,EAAC,OAAO,EAAC,WAAW,EAAC,IAAI,EAAC,cAAc,KAAK,KAAK,YAC7E,eACE,QAAQ,EAAC,SAAS,EAClB,CAAC,EAAC,yOAAyO,EAC3O,QAAQ,EAAC,SAAS,GAClB,GACE,CACP,CAAA;AACD,eAAe,UAAU,CAAA","sourcesContent":["import type { SVGProps } from \"react\"\nconst BookClosed = (props: SVGProps) => (\n \n \n \n)\nexport default BookClosed\n"]} \ No newline at end of file diff --git a/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/Icon/svg/BookOpen.js b/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/Icon/svg/BookOpen.js new file mode 100644 index 0000000000000000000000000000000000000000..b626de89b7c8f5a48e8136d9bd4527e31e6d41fd --- /dev/null +++ b/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/Icon/svg/BookOpen.js @@ -0,0 +1,4 @@ +import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime"; +const BookOpen = (props) => (_jsxs("svg", { width: "1em", height: "1em", viewBox: "0 0 24 24", fill: "currentColor", ...props, children: [_jsx("path", { d: "M22 6.017c0-1.104-.907-2.037-2.049-2l-.594.025c-2.732.148-4.952.705-7.333 1.953l-.512.279-.087.054a1 1 0 0 0 .971 1.737l.092-.046.454-.246C15.195 6.59 17.26 6.106 20 6.016v11.837c-3.034.046-5.42.582-7.99 1.99l-.517.295-.086.056a1 1 0 0 0 1.009 1.715l.09-.047.455-.258c2.105-1.157 4.045-1.645 6.537-1.738l.543-.014a1.995 1.995 0 0 0 1.95-1.8l.009-.198V6.017Z" }), _jsx("path", { d: "M2 6.017c0-1.104.907-2.037 2.049-2l.594.025c2.732.148 4.952.705 7.333 1.953l.512.279.087.054a1 1 0 0 1-.971 1.737l-.092-.046-.454-.246C8.805 6.59 6.74 6.106 4 6.016v11.837c3.034.046 5.42.582 7.99 1.99l.517.295.086.056a1 1 0 0 1-1.009 1.715l-.09-.047-.455-.258c-2.105-1.157-4.045-1.644-6.537-1.738l-.543-.014a1.995 1.995 0 0 1-1.95-1.8L2 17.855V6.017Z" }), _jsx("path", { d: "M13 7.5v13h-2v-13h2Z" })] })); +export default BookOpen; +//# sourceMappingURL=BookOpen.js.map \ No newline at end of file diff --git a/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/Icon/svg/BookOpen.js.map b/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/Icon/svg/BookOpen.js.map new file mode 100644 index 0000000000000000000000000000000000000000..29cfb9ded86768237fd1401cc8fd66a552f42b3d --- /dev/null +++ b/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/Icon/svg/BookOpen.js.map @@ -0,0 +1 @@ +{"version":3,"file":"BookOpen.js","sourceRoot":"","sources":["../../../../../src/components/Icon/svg/BookOpen.tsx"],"names":[],"mappings":";AACA,MAAM,QAAQ,GAAG,CAAC,KAA8B,EAAE,EAAE,CAAC,CACnD,eAAK,KAAK,EAAC,KAAK,EAAC,MAAM,EAAC,KAAK,EAAC,OAAO,EAAC,WAAW,EAAC,IAAI,EAAC,cAAc,KAAK,KAAK,aAC7E,eAAM,CAAC,EAAC,uWAAuW,GAAG,EAClX,eAAM,CAAC,EAAC,gWAAgW,GAAG,EAC3W,eAAM,CAAC,EAAC,sBAAsB,GAAG,IAC7B,CACP,CAAA;AACD,eAAe,QAAQ,CAAA","sourcesContent":["import type { SVGProps } from \"react\"\nconst BookOpen = (props: SVGProps) => (\n \n \n \n \n \n)\nexport default BookOpen\n"]} \ No newline at end of file diff --git a/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/Icon/svg/BookWrench.js b/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/Icon/svg/BookWrench.js new file mode 100644 index 0000000000000000000000000000000000000000..370c9edca4bab4c051f950f427b4703059abeae8 --- /dev/null +++ b/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/Icon/svg/BookWrench.js @@ -0,0 +1,4 @@ +import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime"; +const BookWrench = (props) => (_jsxs("svg", { width: "1em", height: "1em", viewBox: "0 0 24 24", fill: "currentColor", ...props, children: [_jsx("path", { d: "M10.663 6.3872C10.8152 6.29068 11 6.40984 11 6.59007V8C11 8.55229 11.4477 9 12 9C12.5523 9 13 8.55229 13 8V6.59007C13 6.40984 13.1848 6.29068 13.337 6.3872C14.036 6.83047 14.5 7.61105 14.5 8.5C14.5 9.53284 13.8737 10.4194 12.9801 10.8006C12.9932 10.865 13 10.9317 13 11V13C13 13.5523 12.5523 14 12 14C11.4477 14 11 13.5523 11 13V11C11 10.9317 11.0068 10.865 11.0199 10.8006C10.1263 10.4194 9.5 9.53284 9.5 8.5C9.5 7.61105 9.96397 6.83047 10.663 6.3872Z", fill: "currentColor" }), _jsx("path", { d: "M17.9754 4.01031C17.8588 4.00078 17.6965 4.00001 17.4 4.00001H9.8C8.94342 4.00001 8.36113 4.00078 7.91104 4.03756C7.47262 4.07338 7.24842 4.1383 7.09202 4.21799C6.7157 4.40974 6.40973 4.7157 6.21799 5.09202C6.1383 5.24842 6.07337 5.47263 6.03755 5.91104C6.00078 6.36113 6 6.94343 6 7.80001V16.1707C6.31278 16.0602 6.64937 16 7 16H18L18 4.60001C18 4.30348 17.9992 4.14122 17.9897 4.02464C17.9893 4.02 17.9889 4.0156 17.9886 4.01145C17.9844 4.01107 17.98 4.01069 17.9754 4.01031ZM17.657 18H7C6.44772 18 6 18.4477 6 19C6 19.5523 6.44772 20 7 20H17.657C17.5343 19.3301 17.5343 18.6699 17.657 18ZM4 19L4 7.75871C3.99999 6.95374 3.99998 6.28937 4.04419 5.74818C4.09012 5.18608 4.18868 4.66938 4.43597 4.18404C4.81947 3.43139 5.43139 2.81947 6.18404 2.43598C6.66937 2.18869 7.18608 2.09012 7.74818 2.0442C8.28937 1.99998 8.95373 1.99999 9.7587 2L17.4319 2C17.6843 1.99997 17.9301 1.99994 18.1382 2.01695C18.3668 2.03563 18.6366 2.07969 18.908 2.21799C19.2843 2.40974 19.5903 2.7157 19.782 3.09203C19.9203 3.36345 19.9644 3.63318 19.9831 3.86178C20.0001 4.06994 20 4.31574 20 4.56812L20 17C20 17.1325 19.9736 17.2638 19.9225 17.386C19.4458 18.5253 19.4458 19.4747 19.9225 20.614C20.0517 20.9227 20.0179 21.2755 19.8325 21.5541C19.6471 21.8326 19.3346 22 19 22H7C5.34315 22 4 20.6569 4 19Z", fill: "currentColor" })] })); +export default BookWrench; +//# sourceMappingURL=BookWrench.js.map \ No newline at end of file diff --git a/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/Icon/svg/BookWrench.js.map b/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/Icon/svg/BookWrench.js.map new file mode 100644 index 0000000000000000000000000000000000000000..ca1799c723afb8dd1dac80db0b0879a6ce45c07e --- /dev/null +++ b/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/Icon/svg/BookWrench.js.map @@ -0,0 +1 @@ +{"version":3,"file":"BookWrench.js","sourceRoot":"","sources":["../../../../../src/components/Icon/svg/BookWrench.tsx"],"names":[],"mappings":";AACA,MAAM,UAAU,GAAG,CAAC,KAA8B,EAAE,EAAE,CAAC,CACrD,eAAK,KAAK,EAAC,KAAK,EAAC,MAAM,EAAC,KAAK,EAAC,OAAO,EAAC,WAAW,EAAC,IAAI,EAAC,cAAc,KAAK,KAAK,aAC7E,eACE,CAAC,EAAC,scAAsc,EACxc,IAAI,EAAC,cAAc,GACnB,EACF,eACE,CAAC,EAAC,kwCAAkwC,EACpwC,IAAI,EAAC,cAAc,GACnB,IACE,CACP,CAAA;AACD,eAAe,UAAU,CAAA","sourcesContent":["import type { SVGProps } from \"react\"\nconst BookWrench = (props: SVGProps) => (\n \n \n \n \n)\nexport default BookWrench\n"]} \ No newline at end of file diff --git a/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/Icon/svg/Boolean.js b/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/Icon/svg/Boolean.js new file mode 100644 index 0000000000000000000000000000000000000000..4782407f4de36b971445513c88ddcf04e6c2f1b6 --- /dev/null +++ b/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/Icon/svg/Boolean.js @@ -0,0 +1,4 @@ +import { jsx as _jsx } from "react/jsx-runtime"; +const Boolean = (props) => (_jsx("svg", { width: "1em", height: "1em", viewBox: "0 0 24 24", fill: "currentColor", ...props, children: _jsx("path", { d: "M15.2 3c.824 0 1.502-.001 2.052.044.562.046 1.08.144 1.564.392a4.001 4.001 0 0 1 1.748 1.748c.248.485.346 1.002.392 1.564.045.55.044 1.228.044 2.052v6.4c0 .824.001 1.502-.044 2.052-.046.562-.144 1.08-.392 1.564a4.002 4.002 0 0 1-1.748 1.748c-.485.248-1.002.346-1.564.392-.55.045-1.228.044-2.052.044H8.8c-.824 0-1.502.001-2.052-.044-.562-.046-1.08-.144-1.564-.392a4.001 4.001 0 0 1-1.748-1.748c-.248-.485-.346-1.002-.392-1.564C2.999 16.702 3 16.024 3 15.2V8.8c0-.824-.001-1.502.044-2.052.046-.562.144-1.08.392-1.564a4.001 4.001 0 0 1 1.748-1.748c.485-.248 1.002-.346 1.564-.392C7.298 2.999 7.976 3 8.8 3h6.4ZM8.8 5c-.857 0-1.439 0-1.889.037-.438.036-.663.101-.82.18a2 2 0 0 0-.873.875c-.08.156-.145.38-.18.82C5 7.361 5 7.942 5 8.8v6.4c0 .857 0 1.439.037 1.889.036.438.101.663.18.82a2 2 0 0 0 .369.505L18.414 5.586a2 2 0 0 0-.506-.368c-.156-.08-.38-.145-.82-.18C16.639 5 16.058 5 15.2 5H8.8Z" }) })); +export default Boolean; +//# sourceMappingURL=Boolean.js.map \ No newline at end of file diff --git a/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/Icon/svg/Boolean.js.map b/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/Icon/svg/Boolean.js.map new file mode 100644 index 0000000000000000000000000000000000000000..92a8315b54d5cf20e050aca44ef41f0a99d56284 --- /dev/null +++ b/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/Icon/svg/Boolean.js.map @@ -0,0 +1 @@ +{"version":3,"file":"Boolean.js","sourceRoot":"","sources":["../../../../../src/components/Icon/svg/Boolean.tsx"],"names":[],"mappings":";AACA,MAAM,OAAO,GAAG,CAAC,KAA8B,EAAE,EAAE,CAAC,CAClD,cAAK,KAAK,EAAC,KAAK,EAAC,MAAM,EAAC,KAAK,EAAC,OAAO,EAAC,WAAW,EAAC,IAAI,EAAC,cAAc,KAAK,KAAK,YAC7E,eAAM,CAAC,EAAC,23BAA23B,GAAG,GACl4B,CACP,CAAA;AACD,eAAe,OAAO,CAAA","sourcesContent":["import type { SVGProps } from \"react\"\nconst Boolean = (props: SVGProps) => (\n \n \n \n)\nexport default Boolean\n"]} \ No newline at end of file diff --git a/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/Icon/svg/Brain.js b/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/Icon/svg/Brain.js new file mode 100644 index 0000000000000000000000000000000000000000..4165925ce65e0b4722e2815c0d77752459d3c9f2 --- /dev/null +++ b/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/Icon/svg/Brain.js @@ -0,0 +1,4 @@ +import { jsx as _jsx } from "react/jsx-runtime"; +const Brain = (props) => (_jsx("svg", { width: "1em", height: "1em", viewBox: "0 0 24 24", fill: "currentColor", ...props, children: _jsx("path", { d: "M14.8974 2.29998C15.8303 2.29013 16.802 2.58194 17.5566 3.22577C18.1589 3.73967 18.5845 4.44761 18.7451 5.31073C20.0159 5.68745 21.0027 6.50113 21.4482 7.6037C21.8952 8.70995 21.7263 9.93091 20.9902 10.9914C21.5775 11.9456 21.7666 13.1257 21.6757 14.2189C21.6886 14.283 21.6962 14.3493 21.6962 14.4172C21.6961 16.0908 20.757 17.5402 19.3808 18.2785C18.7896 20.2128 17.1855 21.4914 15.4599 21.6769C14.5141 21.7787 13.5339 21.5479 12.7128 20.9133C12.4502 20.7102 12.2116 20.4715 11.999 20.1994C11.7854 20.4727 11.5463 20.7126 11.2822 20.9162C10.4592 21.5506 9.47721 21.78 8.53022 21.676C6.80047 21.4857 5.19378 20.1976 4.6103 18.2521C3.32727 17.5234 2.6154 16.0905 2.38764 14.7404C2.18065 13.5132 2.32674 12.0996 3.00873 10.9914C2.2728 9.93104 2.10389 8.7098 2.55073 7.6037C2.99615 6.50129 3.98328 5.68752 5.25385 5.31073C5.41438 4.44772 5.84013 3.73967 6.44233 3.22577C7.19688 2.58201 8.16873 2.2902 9.10151 2.29998C10.0348 2.30984 11.0025 2.62141 11.7509 3.2785C11.8376 3.35461 11.9199 3.43566 11.999 3.51971C12.0783 3.43538 12.162 3.35484 12.249 3.2785C12.9972 2.62161 13.9643 2.3099 14.8974 2.29998ZM10.9999 6.17108C10.9998 5.5022 10.7533 5.06474 10.4306 4.78143C10.0884 4.48116 9.60157 4.30555 9.081 4.29998C8.55965 4.29448 8.07721 4.46058 7.74116 4.74725C7.42624 5.01593 7.18256 5.43636 7.18256 6.09393V6.12225C7.18544 6.6218 6.81963 7.04734 6.32514 7.11834C5.22327 7.27654 4.61609 7.83085 4.40522 8.35272C4.26751 8.69354 4.25234 9.13509 4.5058 9.61639C5.13533 9.26679 5.86003 9.06662 6.6308 9.06659C7.18307 9.06659 7.63077 9.51433 7.6308 10.0666C7.6308 10.6189 7.18309 11.0666 6.6308 11.0666C5.98117 11.0666 5.39367 11.3251 4.96284 11.7473C4.92842 11.781 4.89119 11.8103 4.85346 11.8381C4.39663 12.4129 4.18564 13.3773 4.35932 14.4074C4.55066 15.5418 5.13668 16.3609 5.82123 16.6213C6.14352 16.7438 6.38036 17.0242 6.44721 17.3625C6.7245 18.7647 7.77678 19.5806 8.74799 19.6877C9.2239 19.74 9.68087 19.6256 10.0615 19.3322C10.4299 19.0481 10.794 18.5409 10.9999 17.6867V6.17108ZM12.9999 17.6877C13.2056 18.54 13.5688 19.047 13.9365 19.3312C14.3162 19.6246 14.7714 19.7397 15.246 19.6887C15.8221 19.6267 16.4253 19.3131 16.8808 18.7775C16.3687 18.7272 15.881 18.5901 15.4345 18.3781C14.9357 18.1411 14.7229 17.544 14.9599 17.0451C15.197 16.5466 15.7933 16.3347 16.2919 16.5715C16.6002 16.7179 16.9461 16.8 17.3134 16.8C17.5725 16.8 17.8193 16.7562 18.0507 16.6808C18.0914 16.6584 18.1336 16.6381 18.1777 16.6213C18.8623 16.3609 19.4482 15.5419 19.6396 14.4074C19.8303 13.2768 19.5586 12.2249 19.0058 11.6808C18.8148 11.4929 18.707 11.236 18.707 10.968C18.707 10.7 18.8148 10.443 19.0058 10.2551C19.7383 9.53413 19.7916 8.84018 19.5947 8.35272C19.4539 8.00424 19.1357 7.64175 18.6122 7.39178C18.2868 8.40588 17.5605 9.23979 16.6191 9.70233C16.1235 9.94566 15.5237 9.74089 15.2802 9.2453C15.0368 8.74965 15.2416 8.14994 15.7373 7.90643C16.3692 7.59585 16.8006 6.94772 16.8007 6.20038C16.8007 6.148 16.8057 6.09628 16.8134 6.04608C16.802 5.41578 16.5659 5.0094 16.2587 4.74725C15.9227 4.46055 15.4403 4.29449 14.9189 4.29998C14.398 4.30549 13.9106 4.48092 13.5683 4.78143C13.286 5.02931 13.0623 5.39527 13.0107 5.93084L12.9999 6.17108V17.6877Z", fill: "currentColor" }) })); +export default Brain; +//# sourceMappingURL=Brain.js.map \ No newline at end of file diff --git a/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/Icon/svg/Brain.js.map b/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/Icon/svg/Brain.js.map new file mode 100644 index 0000000000000000000000000000000000000000..8916b4a6bccb4701f6e9512affc0c770f590a68f --- /dev/null +++ b/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/Icon/svg/Brain.js.map @@ -0,0 +1 @@ +{"version":3,"file":"Brain.js","sourceRoot":"","sources":["../../../../../src/components/Icon/svg/Brain.tsx"],"names":[],"mappings":";AACA,MAAM,KAAK,GAAG,CAAC,KAA8B,EAAE,EAAE,CAAC,CAChD,cAAK,KAAK,EAAC,KAAK,EAAC,MAAM,EAAC,KAAK,EAAC,OAAO,EAAC,WAAW,EAAC,IAAI,EAAC,cAAc,KAAK,KAAK,YAC7E,eACE,CAAC,EAAC,0kGAA0kG,EAC5kG,IAAI,EAAC,cAAc,GACnB,GACE,CACP,CAAA;AACD,eAAe,KAAK,CAAA","sourcesContent":["import type { SVGProps } from \"react\"\nconst Brain = (props: SVGProps) => (\n \n \n \n)\nexport default Brain\n"]} \ No newline at end of file diff --git a/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/Icon/svg/Branch.js b/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/Icon/svg/Branch.js new file mode 100644 index 0000000000000000000000000000000000000000..a24e01bd998d11e091e38276d2aaaf7f22dd101e --- /dev/null +++ b/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/Icon/svg/Branch.js @@ -0,0 +1,4 @@ +import { jsx as _jsx } from "react/jsx-runtime"; +const Branch = (props) => (_jsx("svg", { width: "1em", height: "1em", viewBox: "0 0 24 24", fill: "currentColor", ...props, children: _jsx("path", { d: "M7.75 18C7.75 17.3096 7.19036 16.75 6.5 16.75C5.80964 16.75 5.25 17.3096 5.25 18C5.25 18.6904 5.80964 19.25 6.5 19.25C7.19036 19.25 7.75 18.6904 7.75 18ZM7.75 6C7.75 5.30964 7.19036 4.75 6.5 4.75C5.80964 4.75 5.25 5.30964 5.25 6C5.25 6.69036 5.80964 7.25 6.5 7.25C7.19036 7.25 7.75 6.69036 7.75 6ZM18.75 6C18.75 5.30964 18.1904 4.75 17.5 4.75C16.8096 4.75 16.25 5.30964 16.25 6C16.25 6.69036 16.8096 7.25 17.5 7.25C18.1904 7.25 18.75 6.69036 18.75 6ZM20.75 6C20.75 7.44586 19.8054 8.66989 18.5 9.0918V10C18.5 11.6569 17.1569 13 15.5 13H8.5C7.94772 13 7.5 13.4477 7.5 14V14.9072C8.80556 15.329 9.75 16.554 9.75 18C9.75 19.7949 8.29493 21.25 6.5 21.25C4.70507 21.25 3.25 19.7949 3.25 18C3.25 16.554 4.19444 15.329 5.5 14.9072V9.0918C4.19459 8.66989 3.25 7.44586 3.25 6C3.25 4.20507 4.70507 2.75 6.5 2.75C8.29493 2.75 9.75 4.20507 9.75 6C9.75 7.44586 8.80541 8.66989 7.5 9.0918V11.1738C7.81306 11.0631 8.149 11 8.5 11H15.5C16.0523 11 16.5 10.5523 16.5 10V9.0918C15.1946 8.66989 14.25 7.44586 14.25 6C14.25 4.20507 15.7051 2.75 17.5 2.75C19.2949 2.75 20.75 4.20507 20.75 6Z", fill: "currentColor" }) })); +export default Branch; +//# sourceMappingURL=Branch.js.map \ No newline at end of file diff --git a/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/Icon/svg/Branch.js.map b/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/Icon/svg/Branch.js.map new file mode 100644 index 0000000000000000000000000000000000000000..f1ae7ae5d9e72982de37e9f4cdce1371172f8f2a --- /dev/null +++ b/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/Icon/svg/Branch.js.map @@ -0,0 +1 @@ +{"version":3,"file":"Branch.js","sourceRoot":"","sources":["../../../../../src/components/Icon/svg/Branch.tsx"],"names":[],"mappings":";AACA,MAAM,MAAM,GAAG,CAAC,KAA8B,EAAE,EAAE,CAAC,CACjD,cAAK,KAAK,EAAC,KAAK,EAAC,MAAM,EAAC,KAAK,EAAC,OAAO,EAAC,WAAW,EAAC,IAAI,EAAC,cAAc,KAAK,KAAK,YAC7E,eACE,CAAC,EAAC,+iCAA+iC,EACjjC,IAAI,EAAC,cAAc,GACnB,GACE,CACP,CAAA;AACD,eAAe,MAAM,CAAA","sourcesContent":["import type { SVGProps } from \"react\"\nconst Branch = (props: SVGProps) => (\n \n \n \n)\nexport default Branch\n"]} \ No newline at end of file diff --git a/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/Icon/svg/BranchAlt.js b/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/Icon/svg/BranchAlt.js new file mode 100644 index 0000000000000000000000000000000000000000..6d90e1d30105109916f4a754a841f0f7a09acb8a --- /dev/null +++ b/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/Icon/svg/BranchAlt.js @@ -0,0 +1,4 @@ +import { jsx as _jsx } from "react/jsx-runtime"; +const BranchAlt = (props) => (_jsx("svg", { width: "1em", height: "1em", viewBox: "0 0 24 24", fill: "currentColor", ...props, children: _jsx("path", { d: "M19 14a1 1 0 0 1 1 1v5a1 1 0 0 1-1 1h-5a1 1 0 1 1 0-2h2.495l-3.66-3.253a1 1 0 1 1 1.33-1.494L18 17.663V15a1 1 0 0 1 1-1Zm0-11a1 1 0 0 1 1 1v5a1 1 0 1 1-2 0V6.414l-4.605 4.607c-.59.588-.995 1.002-1.483 1.301a4.61 4.61 0 0 1-1.329.551c-.556.134-1.136.127-1.969.127H3a1 1 0 1 1 0-2h5.614c.928 0 1.23-.007 1.502-.072.265-.064.519-.168.751-.31.24-.147.456-.356 1.112-1.013L16.587 5H14a1 1 0 1 1 0-2h5Z" }) })); +export default BranchAlt; +//# sourceMappingURL=BranchAlt.js.map \ No newline at end of file diff --git a/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/Icon/svg/BranchAlt.js.map b/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/Icon/svg/BranchAlt.js.map new file mode 100644 index 0000000000000000000000000000000000000000..86ea988469ee1f12192a750b564db24b8bbaaa46 --- /dev/null +++ b/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/Icon/svg/BranchAlt.js.map @@ -0,0 +1 @@ +{"version":3,"file":"BranchAlt.js","sourceRoot":"","sources":["../../../../../src/components/Icon/svg/BranchAlt.tsx"],"names":[],"mappings":";AACA,MAAM,SAAS,GAAG,CAAC,KAA8B,EAAE,EAAE,CAAC,CACpD,cAAK,KAAK,EAAC,KAAK,EAAC,MAAM,EAAC,KAAK,EAAC,OAAO,EAAC,WAAW,EAAC,IAAI,EAAC,cAAc,KAAK,KAAK,YAC7E,eAAM,CAAC,EAAC,8YAA8Y,GAAG,GACrZ,CACP,CAAA;AACD,eAAe,SAAS,CAAA","sourcesContent":["import type { SVGProps } from \"react\"\nconst BranchAlt = (props: SVGProps) => (\n \n \n \n)\nexport default BranchAlt\n"]} \ No newline at end of file diff --git a/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/Icon/svg/Bug.js b/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/Icon/svg/Bug.js new file mode 100644 index 0000000000000000000000000000000000000000..d7dadbcad1f3d8144fa6f5ab6b47be75cb42ef08 --- /dev/null +++ b/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/Icon/svg/Bug.js @@ -0,0 +1,4 @@ +import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime"; +const Bug = (props) => (_jsxs("svg", { width: "1em", height: "1em", viewBox: "0 0 24 24", fill: "currentColor", ...props, children: [_jsx("path", { d: "M9.5 13.5C10.3284 13.5 11 12.9404 11 12.25C11 11.5596 10.3284 11 9.5 11C8.67157 11 8 11.5596 8 12.25C8 12.9404 8.67157 13.5 9.5 13.5Z", fill: "currentColor" }), _jsx("path", { d: "M13.5 16.5C13.5 17.6046 12.8284 18.5 12 18.5C11.1716 18.5 10.5 17.6046 10.5 16.5C10.5 15.3954 11.1716 14.5 12 14.5C12.8284 14.5 13.5 15.3954 13.5 16.5Z", fill: "currentColor" }), _jsx("path", { d: "M14.5 13.5C15.3284 13.5 16 12.9404 16 12.25C16 11.5596 15.3284 11 14.5 11C13.6716 11 13 11.5596 13 12.25C13 12.9404 13.6716 13.5 14.5 13.5Z", fill: "currentColor" }), _jsx("path", { d: "M10.1689 5.17703C10.7615 5.0609 11.3741 5 12 5C12.6259 5 13.2385 5.0609 13.8311 5.17703C14.2125 4.34087 14.7295 3.51088 15.3887 2.90913C16.0678 2.2891 16.9848 1.84347 18.0577 2.05199C19.0855 2.25177 19.9991 3.00672 20.8169 4.16677C21.1354 4.61856 21.0278 5.24335 20.5766 5.56226C20.1254 5.88118 19.5014 5.77346 19.183 5.32167C18.5007 4.35394 17.9768 4.07629 17.6766 4.01793C17.4212 3.9683 17.1195 4.03899 16.7362 4.38899C16.3912 4.70395 16.054 5.18667 15.7606 5.77733C18.8328 7.11381 21 10.0398 21 13.5C21 18.2542 16.9088 22 12 22C7.09121 22 3 18.2542 3 13.5C3 10.0398 5.16716 7.11381 8.2394 5.77733C7.946 5.18667 7.60881 4.70395 7.26383 4.38899C6.88046 4.03899 6.57876 3.9683 6.32345 4.01793C6.02318 4.07629 5.49926 4.35394 4.81705 5.32167C4.49855 5.77346 3.87459 5.88118 3.4234 5.56226C2.9722 5.24335 2.86462 4.61856 3.18312 4.16677C4.00091 3.00672 4.91449 2.25177 5.94234 2.05199C7.01515 1.84347 7.9322 2.2891 8.61134 2.90913C9.27045 3.51088 9.78747 4.34087 10.1689 5.17703ZM12 7C11.6011 7 11.2111 7.03063 10.8322 7.08936C10.8946 7.34259 10.9462 7.59208 10.9865 7.83391C11.0773 8.3794 10.7093 8.8953 10.1645 8.98622C9.61971 9.07713 9.10448 8.70863 9.01369 8.16314C8.98674 8.00125 8.95305 7.83368 8.91295 7.6627C6.57573 8.73108 5 10.9719 5 13.5C5 17.03 8.07223 20 12 20C15.9278 20 19 17.03 19 13.5C19 10.9719 17.4243 8.73108 15.0871 7.6627C15.0469 7.83368 15.0133 8.00125 14.9863 8.16314C14.8955 8.70863 14.3803 9.07713 13.8355 8.98622C13.2907 8.8953 12.9227 8.3794 13.0135 7.83391C13.0538 7.59208 13.1054 7.34259 13.1678 7.08936C12.7889 7.03063 12.3989 7 12 7Z", fill: "currentColor" })] })); +export default Bug; +//# sourceMappingURL=Bug.js.map \ No newline at end of file diff --git a/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/Icon/svg/Bug.js.map b/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/Icon/svg/Bug.js.map new file mode 100644 index 0000000000000000000000000000000000000000..adacd269df9a27c1c82f7102d8bb6a15a40fd5a4 --- /dev/null +++ b/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/Icon/svg/Bug.js.map @@ -0,0 +1 @@ +{"version":3,"file":"Bug.js","sourceRoot":"","sources":["../../../../../src/components/Icon/svg/Bug.tsx"],"names":[],"mappings":";AACA,MAAM,GAAG,GAAG,CAAC,KAA8B,EAAE,EAAE,CAAC,CAC9C,eAAK,KAAK,EAAC,KAAK,EAAC,MAAM,EAAC,KAAK,EAAC,OAAO,EAAC,WAAW,EAAC,IAAI,EAAC,cAAc,KAAK,KAAK,aAC7E,eACE,CAAC,EAAC,uIAAuI,EACzI,IAAI,EAAC,cAAc,GACnB,EACF,eACE,CAAC,EAAC,yJAAyJ,EAC3J,IAAI,EAAC,cAAc,GACnB,EACF,eACE,CAAC,EAAC,6IAA6I,EAC/I,IAAI,EAAC,cAAc,GACnB,EACF,eACE,CAAC,EAAC,6hDAA6hD,EAC/hD,IAAI,EAAC,cAAc,GACnB,IACE,CACP,CAAA;AACD,eAAe,GAAG,CAAA","sourcesContent":["import type { SVGProps } from \"react\"\nconst Bug = (props: SVGProps) => (\n \n \n \n \n \n \n)\nexport default Bug\n"]} \ No newline at end of file diff --git a/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/Icon/svg/BuilderProfileCard.js b/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/Icon/svg/BuilderProfileCard.js new file mode 100644 index 0000000000000000000000000000000000000000..62465c83d6a153ad20a98afd906dda92782463d0 --- /dev/null +++ b/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/Icon/svg/BuilderProfileCard.js @@ -0,0 +1,4 @@ +import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime"; +const BuilderProfileCard = (props) => (_jsxs("svg", { width: "1em", height: "1em", viewBox: "0 0 24 24", fill: "currentColor", ...props, children: [_jsx("path", { d: "M14 12.5C14 13.6046 13.1046 14.5 12 14.5C10.8954 14.5 10 13.6046 10 12.5C10 11.3954 10.8954 10.5 12 10.5C13.1046 10.5 14 11.3954 14 12.5Z", fill: "currentColor" }), _jsx("path", { d: "M12 17.25C11.7265 17.25 11.3187 17.3872 10.6823 17.9811C10.2786 18.3579 9.64578 18.3361 9.26895 17.9323C8.89212 17.5286 8.91394 16.8958 9.31769 16.5189C10.1099 15.7795 10.9878 15.25 12 15.25C13.0122 15.25 13.8901 15.7795 14.6823 16.5189C15.0861 16.8958 15.1079 17.5286 14.7311 17.9323C14.3542 18.3361 13.7214 18.3579 13.3177 17.9811C12.6814 17.3871 12.2735 17.25 12 17.25Z", fill: "currentColor" }), _jsx("path", { d: "M9.7587 2H14.2413C15.0463 1.99999 15.7106 1.99998 16.2518 2.04419C16.8139 2.09012 17.3306 2.18868 17.816 2.43597C18.5686 2.81947 19.1805 3.43139 19.564 4.18404C19.8113 4.66937 19.9099 5.18608 19.9558 5.74817C20 6.28938 20 6.95374 20 7.75873V16.2413C20 17.0463 20 17.7106 19.9558 18.2518C19.9099 18.8139 19.8113 19.3306 19.564 19.816C19.1805 20.5686 18.5686 21.1805 17.816 21.564C17.3306 21.8113 16.8139 21.9099 16.2518 21.9558C15.7106 22 15.0463 22 14.2413 22H9.75868C8.95372 22 8.28936 22 7.74818 21.9558C7.18608 21.9099 6.66937 21.8113 6.18404 21.564C5.43139 21.1805 4.81947 20.5686 4.43597 19.816C4.18868 19.3306 4.09012 18.8139 4.04419 18.2518C3.99998 17.7106 3.99999 17.0463 4 16.2413V7.7587C3.99999 6.95373 3.99998 6.28937 4.04419 5.74817C4.09012 5.18608 4.18868 4.66937 4.43597 4.18404C4.81947 3.43139 5.43139 2.81947 6.18404 2.43597C6.66937 2.18868 7.18608 2.09012 7.74817 2.04419C8.28937 1.99998 8.95373 1.99999 9.7587 2ZM7.91104 4.03755C7.47262 4.07337 7.24842 4.1383 7.09202 4.21799C6.7157 4.40973 6.40973 4.7157 6.21799 5.09202C6.1383 5.24842 6.07337 5.47262 6.03755 5.91104C6.00078 6.36113 6 6.94342 6 7.8V16.2C6 17.0566 6.00078 17.6389 6.03755 18.089C6.07337 18.5274 6.1383 18.7516 6.21799 18.908C6.40973 19.2843 6.7157 19.5903 7.09202 19.782C7.24842 19.8617 7.47262 19.9266 7.91104 19.9624C8.36113 19.9992 8.94342 20 9.8 20H14.2C15.0566 20 15.6389 19.9992 16.089 19.9624C16.5274 19.9266 16.7516 19.8617 16.908 19.782C17.2843 19.5903 17.5903 19.2843 17.782 18.908C17.8617 18.7516 17.9266 18.5274 17.9624 18.089C17.9992 17.6389 18 17.0566 18 16.2V7.8C18 6.94342 17.9992 6.36113 17.9624 5.91104C17.9266 5.47262 17.8617 5.24842 17.782 5.09202C17.5903 4.7157 17.2843 4.40973 16.908 4.21799C16.7516 4.1383 16.5274 4.07337 16.089 4.03755C15.6389 4.00078 15.0566 4 14.2 4H9.8C8.94342 4 8.36113 4.00078 7.91104 4.03755ZM9 7C9 6.44772 9.44772 6 10 6H14C14.5523 6 15 6.44772 15 7C15 7.55229 14.5523 8 14 8H10C9.44772 8 9 7.55229 9 7Z", fill: "currentColor" })] })); +export default BuilderProfileCard; +//# sourceMappingURL=BuilderProfileCard.js.map \ No newline at end of file diff --git a/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/Icon/svg/BuilderProfileCard.js.map b/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/Icon/svg/BuilderProfileCard.js.map new file mode 100644 index 0000000000000000000000000000000000000000..962d168ca9d6d2f67b97d027e89842ace6534430 --- /dev/null +++ b/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/Icon/svg/BuilderProfileCard.js.map @@ -0,0 +1 @@ +{"version":3,"file":"BuilderProfileCard.js","sourceRoot":"","sources":["../../../../../src/components/Icon/svg/BuilderProfileCard.tsx"],"names":[],"mappings":";AACA,MAAM,kBAAkB,GAAG,CAAC,KAA8B,EAAE,EAAE,CAAC,CAC7D,eAAK,KAAK,EAAC,KAAK,EAAC,MAAM,EAAC,KAAK,EAAC,OAAO,EAAC,WAAW,EAAC,IAAI,EAAC,cAAc,KAAK,KAAK,aAC7E,eACE,CAAC,EAAC,2IAA2I,EAC7I,IAAI,EAAC,cAAc,GACnB,EACF,eACE,CAAC,EAAC,sXAAsX,EACxX,IAAI,EAAC,cAAc,GACnB,EACF,eACE,CAAC,EAAC,m5DAAm5D,EACr5D,IAAI,EAAC,cAAc,GACnB,IACE,CACP,CAAA;AACD,eAAe,kBAAkB,CAAA","sourcesContent":["import type { SVGProps } from \"react\"\nconst BuilderProfileCard = (props: SVGProps) => (\n \n \n \n \n \n)\nexport default BuilderProfileCard\n"]} \ No newline at end of file diff --git a/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/Icon/svg/BuildingWorkspace.js b/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/Icon/svg/BuildingWorkspace.js new file mode 100644 index 0000000000000000000000000000000000000000..1880fe28d9a32b0de96f30411d9e0fa3b882a6bb --- /dev/null +++ b/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/Icon/svg/BuildingWorkspace.js @@ -0,0 +1,4 @@ +import { jsx as _jsx } from "react/jsx-runtime"; +const BuildingWorkspace = (props) => (_jsx("svg", { width: "1em", height: "1em", viewBox: "0 0 24 24", fill: "currentColor", ...props, children: _jsx("path", { d: "M3 6C3 4.34315 4.34315 3 6 3H12C13.6569 3 15 4.34315 15 6V7H18C19.6569 7 21 8.34315 21 10V19H22C22.5523 19 23 19.4477 23 20C23 20.5523 22.5523 21 22 21H2C1.44772 21 1 20.5523 1 20C1 19.4477 1.44772 19 2 19H3V6ZM5 19H8V17C8 16.4477 8.44772 16 9 16C9.55228 16 10 16.4477 10 17V19H13V6C13 5.44772 12.5523 5 12 5H6C5.44772 5 5 5.44772 5 6V19ZM15 19H19V10C19 9.44772 18.5523 9 18 9H15V19Z", fill: "currentColor" }) })); +export default BuildingWorkspace; +//# sourceMappingURL=BuildingWorkspace.js.map \ No newline at end of file diff --git a/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/Icon/svg/BuildingWorkspace.js.map b/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/Icon/svg/BuildingWorkspace.js.map new file mode 100644 index 0000000000000000000000000000000000000000..23dd8303705f0281d5dc62a181437bb7c6902ae1 --- /dev/null +++ b/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/Icon/svg/BuildingWorkspace.js.map @@ -0,0 +1 @@ +{"version":3,"file":"BuildingWorkspace.js","sourceRoot":"","sources":["../../../../../src/components/Icon/svg/BuildingWorkspace.tsx"],"names":[],"mappings":";AACA,MAAM,iBAAiB,GAAG,CAAC,KAA8B,EAAE,EAAE,CAAC,CAC5D,cAAK,KAAK,EAAC,KAAK,EAAC,MAAM,EAAC,KAAK,EAAC,OAAO,EAAC,WAAW,EAAC,IAAI,EAAC,cAAc,KAAK,KAAK,YAC7E,eACE,CAAC,EAAC,iYAAiY,EACnY,IAAI,EAAC,cAAc,GACnB,GACE,CACP,CAAA;AACD,eAAe,iBAAiB,CAAA","sourcesContent":["import type { SVGProps } from \"react\"\nconst BuildingWorkspace = (props: SVGProps) => (\n \n \n \n)\nexport default BuildingWorkspace\n"]} \ No newline at end of file diff --git a/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/Icon/svg/Business.js b/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/Icon/svg/Business.js new file mode 100644 index 0000000000000000000000000000000000000000..cca094efe4ce6d92b86643e96772a902976c0027 --- /dev/null +++ b/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/Icon/svg/Business.js @@ -0,0 +1,4 @@ +import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime"; +const Business = (props) => (_jsxs("svg", { width: "1em", height: "1em", viewBox: "0 0 24 24", fill: "currentColor", ...props, children: [_jsx("path", { d: "M12.5001 3.44336C12.1907 3.26473 11.8095 3.26473 11.5001 3.44336L4.83984 7.28866C4.53044 7.46729 4.33984 7.79742 4.33984 8.15469V15.8453C4.33984 16.2026 4.53044 16.5327 4.83984 16.7113L11.5001 20.5566C11.8095 20.7352 12.1907 20.7352 12.5001 20.5566L19.1604 16.7113C19.4698 16.5327 19.6604 16.2026 19.6604 15.8453V8.15469C19.6604 7.79742 19.4698 7.46729 19.1604 7.28866L12.5001 3.44336ZM10.5001 1.71131C11.4283 1.17541 12.5719 1.17541 13.5001 1.71131L20.1604 5.55661C21.0886 6.09251 21.6604 7.08289 21.6604 8.15469V15.8453C21.6604 16.9171 21.0886 17.9075 20.1604 18.4434L13.5001 22.2887C12.5719 22.8246 11.4283 22.8246 10.5001 22.2887L3.83984 18.4434C2.91164 17.9075 2.33984 16.9171 2.33984 15.8453V8.15469C2.33984 7.08289 2.91164 6.09251 3.83984 5.55661L10.5001 1.71131Z", fill: "currentColor" }), _jsx("path", { d: "M12.0018 7.49999C12.3204 7.50057 12.5882 7.74059 12.624 8.05721C12.8448 10.0065 13.9499 11.2001 15.9287 11.376C16.2526 11.4047 16.5004 11.6766 16.5 12.0017C16.4994 12.3267 16.2507 12.5977 15.927 12.6258C13.9765 12.7948 12.7948 13.9765 12.6258 15.9269C12.5978 16.2507 12.3267 16.4994 12.0018 16.5C11.6766 16.5003 11.4047 16.2526 11.376 15.9287C11.2001 13.9499 10.0065 12.8448 8.05723 12.624C7.74061 12.5881 7.50059 12.3203 7.5 12.0017C7.49968 11.6831 7.73898 11.4145 8.05547 11.3777C10.0329 11.1496 11.1497 10.0329 11.3777 8.05546C11.4145 7.73895 11.6831 7.49966 12.0018 7.49999Z", fill: "black" })] })); +export default Business; +//# sourceMappingURL=Business.js.map \ No newline at end of file diff --git a/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/Icon/svg/Business.js.map b/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/Icon/svg/Business.js.map new file mode 100644 index 0000000000000000000000000000000000000000..0a9df363292bf10c202138cd06aba66f3ad6739f --- /dev/null +++ b/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/Icon/svg/Business.js.map @@ -0,0 +1 @@ +{"version":3,"file":"Business.js","sourceRoot":"","sources":["../../../../../src/components/Icon/svg/Business.tsx"],"names":[],"mappings":";AACA,MAAM,QAAQ,GAAG,CAAC,KAA8B,EAAE,EAAE,CAAC,CACnD,eAAK,KAAK,EAAC,KAAK,EAAC,MAAM,EAAC,KAAK,EAAC,OAAO,EAAC,WAAW,EAAC,IAAI,EAAC,cAAc,KAAK,KAAK,aAC7E,eACE,CAAC,EAAC,owBAAowB,EACtwB,IAAI,EAAC,cAAc,GACnB,EACF,eACE,CAAC,EAAC,okBAAokB,EACtkB,IAAI,EAAC,OAAO,GACZ,IACE,CACP,CAAA;AACD,eAAe,QAAQ,CAAA","sourcesContent":["import type { SVGProps } from \"react\"\nconst Business = (props: SVGProps) => (\n \n \n \n \n)\nexport default Business\n"]} \ No newline at end of file diff --git a/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/Icon/svg/BusinessFilled.js b/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/Icon/svg/BusinessFilled.js new file mode 100644 index 0000000000000000000000000000000000000000..0b9158ec7a1ae2030d12c5cff06cf3e2dc214506 --- /dev/null +++ b/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/Icon/svg/BusinessFilled.js @@ -0,0 +1,4 @@ +import { jsx as _jsx } from "react/jsx-runtime"; +const BusinessFilled = (props) => (_jsx("svg", { width: "1em", height: "1em", viewBox: "0 0 24 24", fill: "currentColor", ...props, children: _jsx("path", { fillRule: "evenodd", clipRule: "evenodd", d: "M13.5001 1.71131C12.5719 1.17541 11.4283 1.17541 10.5001 1.71131L3.83984 5.55661C2.91164 6.09251 2.33984 7.08289 2.33984 8.15469V15.8453C2.33984 16.9171 2.91164 17.9075 3.83984 18.4434L10.5001 22.2887C11.4283 22.8246 12.5719 22.8246 13.5001 22.2887L20.1604 18.4434C21.0886 17.9075 21.6604 16.9171 21.6604 15.8453V8.15469C21.6604 7.08289 21.0886 6.09251 20.1604 5.55661L13.5001 1.71131ZM12.0018 7.49999C12.3204 7.50057 12.5882 7.74059 12.624 8.05721C12.8448 10.0065 13.9499 11.2001 15.9287 11.376C16.2526 11.4047 16.5004 11.6766 16.5 12.0017C16.4994 12.3267 16.2507 12.5977 15.927 12.6258C13.9765 12.7948 12.7948 13.9765 12.6258 15.9269C12.5978 16.2507 12.3267 16.4994 12.0018 16.5C11.6766 16.5003 11.4047 16.2526 11.376 15.9287C11.2001 13.9499 10.0065 12.8448 8.05723 12.624C7.74061 12.5881 7.50059 12.3203 7.5 12.0017C7.49968 11.6831 7.73898 11.4145 8.05547 11.3777C10.0329 11.1496 11.1497 10.0329 11.3777 8.05546C11.4145 7.73895 11.6831 7.49966 12.0018 7.49999Z", fill: "currentColor" }) })); +export default BusinessFilled; +//# sourceMappingURL=BusinessFilled.js.map \ No newline at end of file diff --git a/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/Icon/svg/BusinessFilled.js.map b/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/Icon/svg/BusinessFilled.js.map new file mode 100644 index 0000000000000000000000000000000000000000..b220b9e17aaf1209db44e38787ce316e51d257a4 --- /dev/null +++ b/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/Icon/svg/BusinessFilled.js.map @@ -0,0 +1 @@ +{"version":3,"file":"BusinessFilled.js","sourceRoot":"","sources":["../../../../../src/components/Icon/svg/BusinessFilled.tsx"],"names":[],"mappings":";AACA,MAAM,cAAc,GAAG,CAAC,KAA8B,EAAE,EAAE,CAAC,CACzD,cAAK,KAAK,EAAC,KAAK,EAAC,MAAM,EAAC,KAAK,EAAC,OAAO,EAAC,WAAW,EAAC,IAAI,EAAC,cAAc,KAAK,KAAK,YAC7E,eACE,QAAQ,EAAC,SAAS,EAClB,QAAQ,EAAC,SAAS,EAClB,CAAC,EAAC,q8BAAq8B,EACv8B,IAAI,EAAC,cAAc,GACnB,GACE,CACP,CAAA;AACD,eAAe,cAAc,CAAA","sourcesContent":["import type { SVGProps } from \"react\"\nconst BusinessFilled = (props: SVGProps) => (\n \n \n \n)\nexport default BusinessFilled\n"]} \ No newline at end of file diff --git a/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/Icon/svg/Cabinet.js b/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/Icon/svg/Cabinet.js new file mode 100644 index 0000000000000000000000000000000000000000..0ee894f82e582f0abc5d9311e9b24ddd5bec4d99 --- /dev/null +++ b/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/Icon/svg/Cabinet.js @@ -0,0 +1,4 @@ +import { jsx as _jsx } from "react/jsx-runtime"; +const Cabinet = (props) => (_jsx("svg", { width: "1em", height: "1em", viewBox: "0 0 24 24", fill: "currentColor", ...props, children: _jsx("path", { fillRule: "evenodd", d: "M4.83 4.106A2 2 0 0 1 6.617 3h10.764a2 2 0 0 1 1.789 1.106l1.618 3.236a2 2 0 0 1 .211.894V18a3 3 0 0 1-3 3H6a3 3 0 0 1-3-3V8.236a2 2 0 0 1 .211-.894L4.83 4.106ZM17.381 5H6.618l-1 2h12.764l-1-2ZM19 9H5v9a1 1 0 0 0 1 1h12a1 1 0 0 0 1-1V9ZM9 12a1 1 0 0 1 1-1h4a1 1 0 0 1 0 2h-4a1 1 0 0 1-1-1Z", clipRule: "evenodd" }) })); +export default Cabinet; +//# sourceMappingURL=Cabinet.js.map \ No newline at end of file diff --git a/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/Icon/svg/Cabinet.js.map b/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/Icon/svg/Cabinet.js.map new file mode 100644 index 0000000000000000000000000000000000000000..a7a4c938dc303c21acccc2a5c2b10a391fdc15e9 --- /dev/null +++ b/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/Icon/svg/Cabinet.js.map @@ -0,0 +1 @@ +{"version":3,"file":"Cabinet.js","sourceRoot":"","sources":["../../../../../src/components/Icon/svg/Cabinet.tsx"],"names":[],"mappings":";AACA,MAAM,OAAO,GAAG,CAAC,KAA8B,EAAE,EAAE,CAAC,CAClD,cAAK,KAAK,EAAC,KAAK,EAAC,MAAM,EAAC,KAAK,EAAC,OAAO,EAAC,WAAW,EAAC,IAAI,EAAC,cAAc,KAAK,KAAK,YAC7E,eACE,QAAQ,EAAC,SAAS,EAClB,CAAC,EAAC,mSAAmS,EACrS,QAAQ,EAAC,SAAS,GAClB,GACE,CACP,CAAA;AACD,eAAe,OAAO,CAAA","sourcesContent":["import type { SVGProps } from \"react\"\nconst Cabinet = (props: SVGProps) => (\n \n \n \n)\nexport default Cabinet\n"]} \ No newline at end of file diff --git a/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/Icon/svg/Calendar.js b/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/Icon/svg/Calendar.js new file mode 100644 index 0000000000000000000000000000000000000000..959f3a6322ce6931ebdbae09e2ed2f143aeb1102 --- /dev/null +++ b/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/Icon/svg/Calendar.js @@ -0,0 +1,4 @@ +import { jsx as _jsx } from "react/jsx-runtime"; +const Calendar = (props) => (_jsx("svg", { width: "1em", height: "1em", viewBox: "0 0 24 24", fill: "currentColor", ...props, children: _jsx("path", { d: "M19 11H5v7l.005.102A1 1 0 0 0 6 19h12a1 1 0 0 0 1-1v-7Zm0-4a1 1 0 0 0-1-1H6a1 1 0 0 0-1 1v2h14V7Zm2 11a3 3 0 0 1-3 3H6a3 3 0 0 1-2.996-2.846L3 18V7a3 3 0 0 1 3-3h1V3a1 1 0 0 1 2 0v1h6V3a1 1 0 1 1 2 0v1h1a3 3 0 0 1 3 3v11Z" }) })); +export default Calendar; +//# sourceMappingURL=Calendar.js.map \ No newline at end of file diff --git a/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/Icon/svg/Calendar.js.map b/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/Icon/svg/Calendar.js.map new file mode 100644 index 0000000000000000000000000000000000000000..3573a692231a921e5733c21ee60892892b36d409 --- /dev/null +++ b/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/Icon/svg/Calendar.js.map @@ -0,0 +1 @@ +{"version":3,"file":"Calendar.js","sourceRoot":"","sources":["../../../../../src/components/Icon/svg/Calendar.tsx"],"names":[],"mappings":";AACA,MAAM,QAAQ,GAAG,CAAC,KAA8B,EAAE,EAAE,CAAC,CACnD,cAAK,KAAK,EAAC,KAAK,EAAC,MAAM,EAAC,KAAK,EAAC,OAAO,EAAC,WAAW,EAAC,IAAI,EAAC,cAAc,KAAK,KAAK,YAC7E,eAAM,CAAC,EAAC,+NAA+N,GAAG,GACtO,CACP,CAAA;AACD,eAAe,QAAQ,CAAA","sourcesContent":["import type { SVGProps } from \"react\"\nconst Calendar = (props: SVGProps) => (\n \n \n \n)\nexport default Calendar\n"]} \ No newline at end of file diff --git a/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/Icon/svg/CalendarAlt.js b/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/Icon/svg/CalendarAlt.js new file mode 100644 index 0000000000000000000000000000000000000000..c8dbad14ed8ea84436a67d169a0ceda7cd47146f --- /dev/null +++ b/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/Icon/svg/CalendarAlt.js @@ -0,0 +1,4 @@ +import { jsx as _jsx } from "react/jsx-runtime"; +const CalendarAlt = (props) => (_jsx("svg", { width: "1em", height: "1em", viewBox: "0 0 24 24", fill: "currentColor", ...props, children: _jsx("path", { d: "M8 2a1 1 0 0 1 1 1h6a1 1 0 1 1 2 0v.009c.313.007.598.02.856.044.521.05 1.004.15 1.46.383a4 4 0 0 1 1.748 1.748c.247.485.346 1.002.392 1.564.044.541.044 1.206.044 2.01v5.356c0 .635 0 1.114-.11 1.577a4 4 0 0 1-.48 1.156c-.248.406-.587.745-1.037 1.194l-.072.072-1.188 1.188-.072.072c-.449.45-.788.789-1.194 1.038a4 4 0 0 1-1.156.479c-.463.11-.942.11-1.577.11H8.259c-.805 0-1.47 0-2.01-.044-.563-.046-1.08-.145-1.565-.392a4 4 0 0 1-1.748-1.748c-.247-.485-.346-1.002-.392-1.564-.044-.541-.044-1.206-.044-2.01V8.758c0-.805 0-1.47.044-2.01.046-.563.145-1.08.392-1.565a4 4 0 0 1 1.748-1.748c.456-.232.939-.333 1.46-.383.259-.024.543-.037.856-.044V3a1 1 0 0 1 1-1ZM7 5.01a9.674 9.674 0 0 0-.666.034c-.388.037-.596.1-.742.174a2 2 0 0 0-.874.874c-.08.156-.145.38-.18.819C4.5 7.361 4.5 7.943 4.5 8.8v6.4c0 .857 0 1.439.038 1.889.035.438.1.663.18.819a2 2 0 0 0 .874.874c.156.08.38.145.819.18C6.861 19 7.443 19 8.3 19H14v-1a4 4 0 0 1 4-4h1c.182 0 .353.049.5.134V8.8c0-.857 0-1.439-.038-1.889-.035-.438-.1-.663-.18-.819a2 2 0 0 0-.874-.874c-.146-.075-.354-.137-.742-.174A9.678 9.678 0 0 0 17 5.01V6a1 1 0 1 1-2 0V5H9v1a1 1 0 1 1-2 0v-.99Zm12.062 10.988A.968.968 0 0 1 19 16h-1a2 2 0 0 0-2 2v.857c.105-.042.206-.093.302-.152.179-.109.344-.265.897-.818l1.188-1.188c.363-.363.555-.559.675-.7Z" }) })); +export default CalendarAlt; +//# sourceMappingURL=CalendarAlt.js.map \ No newline at end of file diff --git a/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/Icon/svg/CalendarAlt.js.map b/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/Icon/svg/CalendarAlt.js.map new file mode 100644 index 0000000000000000000000000000000000000000..e4f7063eb1184dab1c5bf29836f1ce7a7ba2bc13 --- /dev/null +++ b/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/Icon/svg/CalendarAlt.js.map @@ -0,0 +1 @@ +{"version":3,"file":"CalendarAlt.js","sourceRoot":"","sources":["../../../../../src/components/Icon/svg/CalendarAlt.tsx"],"names":[],"mappings":";AACA,MAAM,WAAW,GAAG,CAAC,KAA8B,EAAE,EAAE,CAAC,CACtD,cAAK,KAAK,EAAC,KAAK,EAAC,MAAM,EAAC,KAAK,EAAC,OAAO,EAAC,WAAW,EAAC,IAAI,EAAC,cAAc,KAAK,KAAK,YAC7E,eAAM,CAAC,EAAC,4vCAA4vC,GAAG,GACnwC,CACP,CAAA;AACD,eAAe,WAAW,CAAA","sourcesContent":["import type { SVGProps } from \"react\"\nconst CalendarAlt = (props: SVGProps) => (\n \n \n \n)\nexport default CalendarAlt\n"]} \ No newline at end of file diff --git a/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/Icon/svg/CalendarToday.js b/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/Icon/svg/CalendarToday.js new file mode 100644 index 0000000000000000000000000000000000000000..53e270b78addd79df7cf62846c1b9d545a5749a9 --- /dev/null +++ b/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/Icon/svg/CalendarToday.js @@ -0,0 +1,4 @@ +import { jsx as _jsx } from "react/jsx-runtime"; +const CalendarToday = (props) => (_jsx("svg", { width: "1em", height: "1em", viewBox: "0 0 24 24", fill: "currentColor", ...props, children: _jsx("path", { d: "M8 2C8.55229 2 9 2.44772 9 3H15C15 2.44772 15.4477 2 16 2C16.5523 2 17 2.44772 17 3V3.0085C17.3129 3.01563 17.5975 3.02883 17.8556 3.05335C18.3774 3.10292 18.8601 3.20369 19.316 3.43597C20.0686 3.81947 20.6805 4.43139 21.064 5.18404C21.3113 5.66937 21.4099 6.18608 21.4558 6.74817C21.5 7.28936 21.5 7.95372 21.5 8.75868V14.0118C21.5 14.0462 21.5 14.0801 21.5 14.1136C21.5003 14.7486 21.5006 15.2284 21.3895 15.6911C21.2915 16.0993 21.1299 16.4895 20.9106 16.8474C20.6619 17.2531 20.3225 17.5922 19.8733 18.041C19.8496 18.0647 19.8255 18.0887 19.8012 18.113L18.613 19.3012C18.5887 19.3255 18.5647 19.3495 18.541 19.3733C18.0922 19.8225 17.7531 20.1619 17.3474 20.4106C16.9895 20.6299 16.5993 20.7915 16.1911 20.8895C15.7284 21.0006 15.2486 21.0003 14.6136 21C14.5801 21 14.5462 21 14.5118 21H8.25868C7.45372 21 6.78936 21 6.24818 20.9558C5.68608 20.9099 5.16937 20.8113 4.68404 20.564C3.93139 20.1805 3.31947 19.5686 2.93597 18.816C2.68868 18.3306 2.59012 17.8139 2.54419 17.2518C2.49998 16.7106 2.49999 16.0463 2.5 15.2413V8.7587C2.49999 7.95373 2.49998 7.28937 2.54419 6.74817C2.59012 6.18608 2.68868 5.66937 2.93597 5.18404C3.31947 4.43139 3.93139 3.81947 4.68404 3.43597C5.13993 3.20369 5.62264 3.10292 6.14437 3.05335C6.40251 3.02883 6.68711 3.01563 7 3.0085V3C7 2.44772 7.44772 2 8 2ZM7 5.00905C6.74249 5.01544 6.52466 5.02623 6.33353 5.04439C5.9455 5.08125 5.73848 5.14336 5.59202 5.21799C5.2157 5.40973 4.90973 5.7157 4.71799 6.09202C4.6383 6.24842 4.57337 6.47262 4.53755 6.91104C4.50078 7.36113 4.5 7.94342 4.5 8.8V15.2C4.5 16.0566 4.50078 16.6389 4.53755 17.089C4.57337 17.5274 4.6383 17.7516 4.71799 17.908C4.90973 18.2843 5.2157 18.5903 5.59202 18.782C5.74842 18.8617 5.97262 18.9266 6.41104 18.9624C6.86113 18.9992 7.44342 19 8.3 19H14V18C14 15.7909 15.7909 14 18 14H19C19.1821 14 19.3529 14.0487 19.4999 14.1337C19.5 14.0947 19.5 14.054 19.5 14.0118V8.8C19.5 7.94342 19.4992 7.36113 19.4624 6.91104C19.4266 6.47262 19.3617 6.24842 19.282 6.09202C19.0903 5.71569 18.7843 5.40973 18.408 5.21799C18.2615 5.14336 18.0545 5.08125 17.6665 5.04439C17.4753 5.02623 17.2575 5.01544 17 5.00905V6C17 6.55228 16.5523 7 16 7C15.4477 7 15 6.55228 15 6V5H9V6C9 6.55228 8.55229 7 8 7C7.44772 7 7 6.55228 7 6V5.00905ZM19.0616 15.9981C19.0412 15.9994 19.0207 16 19 16H18C16.8954 16 16 16.8954 16 18V18.857C16.1047 18.8151 16.2059 18.7644 16.3024 18.7053C16.4807 18.596 16.6463 18.4395 17.1988 17.887L18.387 16.6988C18.7495 16.3363 18.9415 16.1404 19.0616 15.9981Z", fill: "currentColor" }) })); +export default CalendarToday; +//# sourceMappingURL=CalendarToday.js.map \ No newline at end of file diff --git a/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/Icon/svg/CalendarToday.js.map b/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/Icon/svg/CalendarToday.js.map new file mode 100644 index 0000000000000000000000000000000000000000..6d90c14e1315052198ce614da661e5af4f28929d --- /dev/null +++ b/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/Icon/svg/CalendarToday.js.map @@ -0,0 +1 @@ +{"version":3,"file":"CalendarToday.js","sourceRoot":"","sources":["../../../../../src/components/Icon/svg/CalendarToday.tsx"],"names":[],"mappings":";AACA,MAAM,aAAa,GAAG,CAAC,KAA8B,EAAE,EAAE,CAAC,CACxD,cAAK,KAAK,EAAC,KAAK,EAAC,MAAM,EAAC,KAAK,EAAC,OAAO,EAAC,WAAW,EAAC,IAAI,EAAC,cAAc,KAAK,KAAK,YAC7E,eACE,CAAC,EAAC,65EAA65E,EAC/5E,IAAI,EAAC,cAAc,GACnB,GACE,CACP,CAAA;AACD,eAAe,aAAa,CAAA","sourcesContent":["import type { SVGProps } from \"react\"\nconst CalendarToday = (props: SVGProps) => (\n \n \n \n)\nexport default CalendarToday\n"]} \ No newline at end of file diff --git a/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/Icon/svg/Camera.js b/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/Icon/svg/Camera.js new file mode 100644 index 0000000000000000000000000000000000000000..a08413d94836c44ce65b6502b76d5379972c5b48 --- /dev/null +++ b/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/Icon/svg/Camera.js @@ -0,0 +1,4 @@ +import { jsx as _jsx } from "react/jsx-runtime"; +const Camera = (props) => (_jsx("svg", { width: "1em", height: "1em", viewBox: "0 0 24 24", fill: "currentColor", ...props, children: _jsx("path", { fillRule: "evenodd", d: "M12 4a3 3 0 0 0-2.6 1.5 1 1 0 0 1-.865.5H5a1 1 0 0 0-1 1v11a1 1 0 0 0 1 1h14a1 1 0 0 0 1-1V7a1 1 0 0 0-1-1h-3.535a1 1 0 0 1-.866-.5A2.998 2.998 0 0 0 12 4ZM8 4a4.993 4.993 0 0 1 4-2 4.99 4.99 0 0 1 4 2h3a3 3 0 0 1 3 3v11a3 3 0 0 1-3 3H5a3 3 0 0 1-3-3V7a3 3 0 0 1 3-3h3Zm4 6a2 2 0 1 0 0 4 2 2 0 0 0 0-4Zm-4 2a4 4 0 1 1 8 0 4 4 0 0 1-8 0Z", clipRule: "evenodd" }) })); +export default Camera; +//# sourceMappingURL=Camera.js.map \ No newline at end of file diff --git a/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/Icon/svg/Camera.js.map b/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/Icon/svg/Camera.js.map new file mode 100644 index 0000000000000000000000000000000000000000..54a231f5c49c06c8c7c186b5e28e524f898a72cf --- /dev/null +++ b/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/Icon/svg/Camera.js.map @@ -0,0 +1 @@ +{"version":3,"file":"Camera.js","sourceRoot":"","sources":["../../../../../src/components/Icon/svg/Camera.tsx"],"names":[],"mappings":";AACA,MAAM,MAAM,GAAG,CAAC,KAA8B,EAAE,EAAE,CAAC,CACjD,cAAK,KAAK,EAAC,KAAK,EAAC,MAAM,EAAC,KAAK,EAAC,OAAO,EAAC,WAAW,EAAC,IAAI,EAAC,cAAc,KAAK,KAAK,YAC7E,eACE,QAAQ,EAAC,SAAS,EAClB,CAAC,EAAC,kVAAkV,EACpV,QAAQ,EAAC,SAAS,GAClB,GACE,CACP,CAAA;AACD,eAAe,MAAM,CAAA","sourcesContent":["import type { SVGProps } from \"react\"\nconst Camera = (props: SVGProps) => (\n \n \n \n)\nexport default Camera\n"]} \ No newline at end of file diff --git a/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/Icon/svg/CameraFilledPhoto.js b/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/Icon/svg/CameraFilledPhoto.js new file mode 100644 index 0000000000000000000000000000000000000000..f045c90baaa13bca1165bd757ceb3b9b75ccc11c --- /dev/null +++ b/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/Icon/svg/CameraFilledPhoto.js @@ -0,0 +1,4 @@ +import { jsx as _jsx } from "react/jsx-runtime"; +const CameraFilledPhoto = (props) => (_jsx("svg", { width: "1em", height: "1em", viewBox: "0 0 24 24", fill: "currentColor", ...props, children: _jsx("path", { d: "M7.99973 4C8.91084 2.78702 10.363 2 12 2C13.6369 2 15.0891 2.78702 16.0002 4L16.2413 4C17.0463 3.99999 17.7106 3.99998 18.2518 4.04419C18.8139 4.09012 19.3306 4.18868 19.816 4.43597C20.5686 4.81947 21.1805 5.43139 21.564 6.18404C21.8113 6.66937 21.9099 7.18608 21.9558 7.74817C22 8.28936 22 8.95372 22 9.75868V15.2413C22 16.0463 22 16.7106 21.9558 17.2518C21.9099 17.8139 21.8113 18.3306 21.564 18.816C21.1805 19.5686 20.5686 20.1805 19.816 20.564C19.3306 20.8113 18.8139 20.9099 18.2518 20.9558C17.7106 21 17.0463 21 16.2413 21H7.75868C6.95372 21 6.28937 21 5.74818 20.9558C5.18608 20.9099 4.66938 20.8113 4.18404 20.564C3.43139 20.1805 2.81947 19.5686 2.43598 18.816C2.18868 18.3306 2.09012 17.8139 2.0442 17.2518C1.99998 16.7106 1.99999 16.0463 2 15.2413V9.75868C1.99999 8.95373 1.99998 8.28936 2.0442 7.74817C2.09012 7.18608 2.18868 6.66937 2.43598 6.18404C2.81947 5.43139 3.43139 4.81947 4.18404 4.43597C4.66938 4.18868 5.18608 4.09012 5.74818 4.04419C6.28937 3.99998 6.95373 3.99999 7.7587 4L7.99973 4ZM12 15.75C13.933 15.75 15.5 14.183 15.5 12.25C15.5 10.317 13.933 8.75 12 8.75C10.067 8.75 8.5 10.317 8.5 12.25C8.5 14.183 10.067 15.75 12 15.75Z", fill: "currentColor" }) })); +export default CameraFilledPhoto; +//# sourceMappingURL=CameraFilledPhoto.js.map \ No newline at end of file diff --git a/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/Icon/svg/CameraFilledPhoto.js.map b/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/Icon/svg/CameraFilledPhoto.js.map new file mode 100644 index 0000000000000000000000000000000000000000..f5b85998eed5ad1117cfbf259980666ed70c6c2d --- /dev/null +++ b/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/Icon/svg/CameraFilledPhoto.js.map @@ -0,0 +1 @@ +{"version":3,"file":"CameraFilledPhoto.js","sourceRoot":"","sources":["../../../../../src/components/Icon/svg/CameraFilledPhoto.tsx"],"names":[],"mappings":";AACA,MAAM,iBAAiB,GAAG,CAAC,KAA8B,EAAE,EAAE,CAAC,CAC5D,cAAK,KAAK,EAAC,KAAK,EAAC,MAAM,EAAC,KAAK,EAAC,OAAO,EAAC,WAAW,EAAC,IAAI,EAAC,cAAc,KAAK,KAAK,YAC7E,eACE,CAAC,EAAC,koCAAkoC,EACpoC,IAAI,EAAC,cAAc,GACnB,GACE,CACP,CAAA;AACD,eAAe,iBAAiB,CAAA","sourcesContent":["import type { SVGProps } from \"react\"\nconst CameraFilledPhoto = (props: SVGProps) => (\n \n \n \n)\nexport default CameraFilledPhoto\n"]} \ No newline at end of file diff --git a/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/Icon/svg/CameraPhoto.js b/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/Icon/svg/CameraPhoto.js new file mode 100644 index 0000000000000000000000000000000000000000..3f46bc553da3661dd5034b3ac6f9ea7164811b82 --- /dev/null +++ b/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/Icon/svg/CameraPhoto.js @@ -0,0 +1,4 @@ +import { jsx as _jsx } from "react/jsx-runtime"; +const CameraPhoto = (props) => (_jsx("svg", { width: "1em", height: "1em", viewBox: "0 0 24 24", fill: "currentColor", ...props, children: _jsx("path", { d: "M12 4C10.8908 4 9.92091 4.60141 9.40069 5.50073C9.22194 5.80972 8.89205 6 8.53508 6H7.8C6.94342 6 6.36113 6.00078 5.91104 6.03755C5.47262 6.07337 5.24842 6.1383 5.09202 6.21799C4.7157 6.40973 4.40973 6.71569 4.21799 7.09202C4.1383 7.24842 4.07337 7.47262 4.03755 7.91104C4.00078 8.36113 4 8.94342 4 9.8V15.2C4 16.0566 4.00078 16.6389 4.03755 17.089C4.07337 17.5274 4.1383 17.7516 4.21799 17.908C4.40973 18.2843 4.7157 18.5903 5.09202 18.782C5.24842 18.8617 5.47262 18.9266 5.91104 18.9624C6.36113 18.9992 6.94342 19 7.8 19H16.2C17.0566 19 17.6389 18.9992 18.089 18.9624C18.5274 18.9266 18.7516 18.8617 18.908 18.782C19.2843 18.5903 19.5903 18.2843 19.782 17.908C19.8617 17.7516 19.9266 17.5274 19.9624 17.089C19.9992 16.6389 20 16.0566 20 15.2V9.8C20 8.94342 19.9992 8.36113 19.9624 7.91104C19.9266 7.47262 19.8617 7.24842 19.782 7.09202C19.5903 6.71569 19.2843 6.40973 18.908 6.21799C18.7516 6.1383 18.5274 6.07337 18.089 6.03755C17.6389 6.00078 17.0566 6 16.2 6H15.4648C15.1079 6 14.778 5.80972 14.5992 5.50073C14.079 4.60141 13.1091 4 12 4ZM7.99973 4C8.91084 2.78702 10.363 2 12 2C13.6369 2 15.0891 2.78702 16.0002 4L16.2413 4C17.0463 3.99999 17.7106 3.99998 18.2518 4.04419C18.8139 4.09012 19.3306 4.18868 19.816 4.43597C20.5686 4.81947 21.1805 5.43139 21.564 6.18404C21.8113 6.66937 21.9099 7.18608 21.9558 7.74817C22 8.28936 22 8.95372 22 9.75868V15.2413C22 16.0463 22 16.7106 21.9558 17.2518C21.9099 17.8139 21.8113 18.3306 21.564 18.816C21.1805 19.5686 20.5686 20.1805 19.816 20.564C19.3306 20.8113 18.8139 20.9099 18.2518 20.9558C17.7106 21 17.0463 21 16.2413 21H7.75868C6.95372 21 6.28936 21 5.74817 20.9558C5.18608 20.9099 4.66937 20.8113 4.18404 20.564C3.43139 20.1805 2.81947 19.5686 2.43597 18.816C2.18868 18.3306 2.09012 17.8139 2.04419 17.2518C1.99998 16.7106 1.99999 16.0463 2 15.2413V9.7587C1.99999 8.95373 1.99998 8.28937 2.04419 7.74817C2.09012 7.18608 2.18868 6.66937 2.43597 6.18404C2.81947 5.43139 3.43139 4.81947 4.18404 4.43597C4.66937 4.18868 5.18608 4.09012 5.74817 4.04419C6.28937 3.99998 6.95373 3.99999 7.7587 4L7.99973 4ZM12 10C10.7573 10 9.74995 11.0074 9.74995 12.25C9.74995 13.4926 10.7573 14.5 12 14.5C13.2426 14.5 14.25 13.4926 14.25 12.25C14.25 11.0074 13.2426 10 12 10ZM7.74995 12.25C7.74995 9.90279 9.65274 8 12 8C14.3472 8 16.25 9.90279 16.25 12.25C16.25 14.5972 14.3472 16.5 12 16.5C9.65274 16.5 7.74995 14.5972 7.74995 12.25Z", fill: "currentColor" }) })); +export default CameraPhoto; +//# sourceMappingURL=CameraPhoto.js.map \ No newline at end of file diff --git a/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/Icon/svg/CameraPhoto.js.map b/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/Icon/svg/CameraPhoto.js.map new file mode 100644 index 0000000000000000000000000000000000000000..6d13628a433bb52fb1a1b78412b6e64ba1d22e52 --- /dev/null +++ b/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/Icon/svg/CameraPhoto.js.map @@ -0,0 +1 @@ +{"version":3,"file":"CameraPhoto.js","sourceRoot":"","sources":["../../../../../src/components/Icon/svg/CameraPhoto.tsx"],"names":[],"mappings":";AACA,MAAM,WAAW,GAAG,CAAC,KAA8B,EAAE,EAAE,CAAC,CACtD,cAAK,KAAK,EAAC,KAAK,EAAC,MAAM,EAAC,KAAK,EAAC,OAAO,EAAC,WAAW,EAAC,IAAI,EAAC,cAAc,KAAK,KAAK,YAC7E,eACE,CAAC,EAAC,i0EAAi0E,EACn0E,IAAI,EAAC,cAAc,GACnB,GACE,CACP,CAAA;AACD,eAAe,WAAW,CAAA","sourcesContent":["import type { SVGProps } from \"react\"\nconst CameraPhoto = (props: SVGProps) => (\n \n \n \n)\nexport default CameraPhoto\n"]} \ No newline at end of file diff --git a/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/Icon/svg/CaptionCcOff.js b/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/Icon/svg/CaptionCcOff.js new file mode 100644 index 0000000000000000000000000000000000000000..ac05789474fa2162de526b7a8df6ff67784cd4eb --- /dev/null +++ b/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/Icon/svg/CaptionCcOff.js @@ -0,0 +1,4 @@ +import { jsx as _jsx } from "react/jsx-runtime"; +const CaptionCcOff = (props) => (_jsx("svg", { width: "1em", height: "1em", viewBox: "0 0 24 24", fill: "currentColor", ...props, children: _jsx("path", { d: "M20 8.79981C20 7.94342 19.9997 7.36117 19.9629 6.91113C19.936 6.58253 19.8924 6.37418 19.8389 6.22461L19.7822 6.0918C19.6145 5.76256 19.3592 5.48707 19.0459 5.29492L18.9082 5.21778C18.7518 5.13809 18.5273 5.07293 18.0889 5.03711C17.6388 5.00035 17.0566 5 16.2002 5H7.79981C6.94342 5 6.36117 5.00035 5.91113 5.03711C5.58253 5.06396 5.37418 5.10762 5.22461 5.16113L5.0918 5.21778C4.76256 5.38555 4.48707 5.64085 4.29492 5.9541L4.21778 6.0918C4.13809 6.2482 4.07293 6.47272 4.03711 6.91113C4.00035 7.36117 4 7.94342 4 8.79981V15.2002C4 16.0566 4.00035 16.6388 4.03711 17.0889C4.07293 17.5273 4.13809 17.7518 4.21778 17.9082L4.29492 18.0459C4.48707 18.3592 4.76256 18.6145 5.0918 18.7822L5.22461 18.8389C5.37418 18.8924 5.58253 18.936 5.91113 18.9629C6.36117 18.9997 6.94342 19 7.79981 19H16.2002C17.0566 19 17.6388 18.9997 18.0889 18.9629C18.5273 18.9271 18.7518 18.8619 18.9082 18.7822L19.0459 18.7051C19.3592 18.5129 19.6145 18.2374 19.7822 17.9082L19.8389 17.7754C19.8924 17.6258 19.936 17.4175 19.9629 17.0889C19.9997 16.6388 20 16.0566 20 15.2002V8.79981ZM5.5 12C5.5 10.0808 6.86111 8.25 8.85352 8.25C9.76062 8.25011 10.5592 8.64968 11.1397 9.25391L11.2529 9.37793L11.3164 9.45801C11.6097 9.87147 11.5481 10.4484 11.1582 10.7891C10.7682 11.1296 10.1886 11.1127 9.81836 10.7666L9.74707 10.6934L9.64649 10.5889C9.40642 10.3608 9.12855 10.2501 8.85352 10.25C8.24672 10.25 7.5 10.8816 7.5 12C7.5 13.1184 8.24672 13.75 8.85352 13.75C9.16774 13.7499 9.48607 13.6055 9.74707 13.3066L9.81836 13.2334C10.1886 12.8873 10.7682 12.8704 11.1582 13.2109C11.574 13.5742 11.6161 14.2061 11.2529 14.6221L11.1397 14.7461C10.5592 15.3503 9.76062 15.7499 8.85352 15.75C6.86111 15.75 5.5 13.9192 5.5 12ZM12.25 12C12.25 10.0808 13.6111 8.25 15.6035 8.25C16.5106 8.25011 17.3092 8.64968 17.8897 9.25391L18.0029 9.37793L18.0664 9.45801C18.3597 9.87147 18.2981 10.4484 17.9082 10.7891C17.5182 11.1296 16.9386 11.1127 16.5684 10.7666L16.4971 10.6934L16.3965 10.5889C16.1564 10.3608 15.8785 10.2501 15.6035 10.25C14.9967 10.25 14.25 10.8816 14.25 12C14.25 13.1184 14.9967 13.75 15.6035 13.75C15.9177 13.7499 16.2361 13.6055 16.4971 13.3066L16.5684 13.2334C16.9386 12.8873 17.5182 12.8704 17.9082 13.2109C18.324 13.5742 18.3661 14.2061 18.0029 14.6221L17.8897 14.7461C17.3092 15.3503 16.5106 15.7499 15.6035 15.75C13.6111 15.75 12.25 13.9192 12.25 12ZM22 15.2002C22 16.0237 22.001 16.7016 21.9561 17.252C21.9159 17.7438 21.8356 18.2011 21.6504 18.6328L21.5645 18.8164C21.2289 19.4749 20.7183 20.0259 20.0918 20.4102L19.8164 20.5645C19.3311 20.8117 18.814 20.9101 18.252 20.9561C17.7016 21.001 17.0237 21 16.2002 21H7.79981C6.97632 21 6.29843 21.001 5.74805 20.9561C5.2562 20.9159 4.79892 20.8356 4.36719 20.6504L4.1836 20.5645C3.52513 20.2289 2.97414 19.7183 2.58985 19.0918L2.43555 18.8164C2.18827 18.3311 2.08988 17.814 2.04395 17.252C1.99898 16.7016 2 16.0237 2 15.2002V8.79981C2 7.97632 1.99898 7.29843 2.04395 6.74805C2.08988 6.18599 2.18827 5.6689 2.43555 5.1836L2.58985 4.90821C2.97414 4.2817 3.52513 3.7711 4.1836 3.43555L4.36719 3.34961C4.79892 3.16442 5.2562 3.08414 5.74805 3.04395C6.29843 2.99898 6.97632 3 7.79981 3H16.2002C17.0237 3 17.7016 2.99898 18.252 3.04395C18.814 3.08988 19.3311 3.18827 19.8164 3.43555L20.0918 3.58985C20.7183 3.97414 21.2289 4.52513 21.5645 5.1836L21.6504 5.36719C21.8356 5.79892 21.9159 6.2562 21.9561 6.74805C22.001 7.29843 22 7.97632 22 8.79981V15.2002Z", fill: "currentColor" }) })); +export default CaptionCcOff; +//# sourceMappingURL=CaptionCcOff.js.map \ No newline at end of file diff --git a/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/Icon/svg/CaptionCcOff.js.map b/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/Icon/svg/CaptionCcOff.js.map new file mode 100644 index 0000000000000000000000000000000000000000..76e91bee0cc5b37354aac79290b6905212fd04c1 --- /dev/null +++ b/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/Icon/svg/CaptionCcOff.js.map @@ -0,0 +1 @@ +{"version":3,"file":"CaptionCcOff.js","sourceRoot":"","sources":["../../../../../src/components/Icon/svg/CaptionCcOff.tsx"],"names":[],"mappings":";AACA,MAAM,YAAY,GAAG,CAAC,KAA8B,EAAE,EAAE,CAAC,CACvD,cAAK,KAAK,EAAC,KAAK,EAAC,MAAM,EAAC,KAAK,EAAC,OAAO,EAAC,WAAW,EAAC,IAAI,EAAC,cAAc,KAAK,KAAK,YAC7E,eACE,CAAC,EAAC,4yGAA4yG,EAC9yG,IAAI,EAAC,cAAc,GACnB,GACE,CACP,CAAA;AACD,eAAe,YAAY,CAAA","sourcesContent":["import type { SVGProps } from \"react\"\nconst CaptionCcOff = (props: SVGProps) => (\n \n \n \n)\nexport default CaptionCcOff\n"]} \ No newline at end of file diff --git a/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/Icon/svg/CaptionCcOn.js b/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/Icon/svg/CaptionCcOn.js new file mode 100644 index 0000000000000000000000000000000000000000..494e909f38bf48d383a72b12686bc8c86d2a3ec7 --- /dev/null +++ b/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/Icon/svg/CaptionCcOn.js @@ -0,0 +1,4 @@ +import { jsx as _jsx } from "react/jsx-runtime"; +const CaptionCcOn = (props) => (_jsx("svg", { width: "1em", height: "1em", viewBox: "0 0 24 24", fill: "currentColor", ...props, children: _jsx("path", { d: "M16.2002 3C17.0237 3 17.7016 2.99898 18.252 3.04395C18.814 3.08988 19.3311 3.18828 19.8164 3.43555L20.0918 3.58985C20.7183 3.97413 21.2289 4.52513 21.5645 5.1836C21.8117 5.6689 21.9101 6.186 21.9561 6.74805C22.001 7.29843 22 7.97632 22 8.79981V15.2002C22 16.0237 22.001 16.7016 21.9561 17.252C21.9159 17.7438 21.8356 18.2011 21.6504 18.6328L21.5645 18.8164C21.2289 19.4749 20.7183 20.0259 20.0918 20.4102L19.8164 20.5645C19.3311 20.8117 18.814 20.9101 18.252 20.9561C17.7016 21.001 17.0237 21 16.2002 21H7.79981C6.97632 21 6.29843 21.001 5.74805 20.9561C5.2562 20.9159 4.79892 20.8356 4.36719 20.6504L4.1836 20.5645C3.52513 20.2289 2.97413 19.7183 2.58985 19.0918L2.43555 18.8164C2.18828 18.3311 2.08988 17.814 2.04395 17.252C1.99898 16.7016 2 16.0237 2 15.2002V8.79981C2 7.97632 1.99898 7.29843 2.04395 6.74805C2.08988 6.18599 2.18827 5.6689 2.43555 5.1836C2.81902 4.43109 3.43109 3.81902 4.1836 3.43555C4.6689 3.18827 5.18599 3.08988 5.74805 3.04395C6.29843 2.99898 6.97632 3 7.79981 3H16.2002ZM8.60352 8.25C6.61111 8.25 5.25 10.0808 5.25 12C5.25 13.9192 6.61111 15.75 8.60352 15.75C9.51062 15.7499 10.3092 15.3503 10.8897 14.7461L11.0029 14.6221C11.3661 14.2061 11.324 13.5742 10.9082 13.2109C10.5182 12.8704 9.93861 12.8873 9.56836 13.2334L9.49707 13.3066C9.23607 13.6055 8.91774 13.7499 8.60352 13.75C7.99672 13.75 7.25 13.1184 7.25 12C7.25 10.8816 7.99672 10.25 8.60352 10.25C8.87855 10.2501 9.15642 10.3608 9.39649 10.5889L9.49707 10.6934L9.56836 10.7666C9.93861 11.1127 10.5182 11.1296 10.9082 10.7891C11.2981 10.4484 11.3597 9.87147 11.0664 9.45801L11.0029 9.37793L10.8897 9.25391C10.3092 8.64968 9.51062 8.25011 8.60352 8.25ZM15.8535 8.25C13.8611 8.25 12.5 10.0808 12.5 12C12.5 13.9192 13.8611 15.75 15.8535 15.75C16.7606 15.7499 17.5592 15.3503 18.1397 14.7461L18.2529 14.6221C18.6161 14.2061 18.574 13.5742 18.1582 13.2109C17.7682 12.8704 17.1886 12.8873 16.8184 13.2334L16.7471 13.3066C16.4861 13.6055 16.1677 13.7499 15.8535 13.75C15.2467 13.75 14.5 13.1184 14.5 12C14.5 10.8816 15.2467 10.25 15.8535 10.25C16.1285 10.2501 16.4064 10.3608 16.6465 10.5889L16.7471 10.6934L16.8184 10.7666C17.1886 11.1127 17.7682 11.1296 18.1582 10.7891C18.5481 10.4484 18.6097 9.87147 18.3164 9.45801L18.2529 9.37793L18.1397 9.25391C17.5592 8.64968 16.7606 8.25011 15.8535 8.25Z", fill: "currentColor" }) })); +export default CaptionCcOn; +//# sourceMappingURL=CaptionCcOn.js.map \ No newline at end of file diff --git a/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/Icon/svg/CaptionCcOn.js.map b/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/Icon/svg/CaptionCcOn.js.map new file mode 100644 index 0000000000000000000000000000000000000000..11fc551735cb7c6d018113adb4b5631ad6cff6f2 --- /dev/null +++ b/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/Icon/svg/CaptionCcOn.js.map @@ -0,0 +1 @@ +{"version":3,"file":"CaptionCcOn.js","sourceRoot":"","sources":["../../../../../src/components/Icon/svg/CaptionCcOn.tsx"],"names":[],"mappings":";AACA,MAAM,WAAW,GAAG,CAAC,KAA8B,EAAE,EAAE,CAAC,CACtD,cAAK,KAAK,EAAC,KAAK,EAAC,MAAM,EAAC,KAAK,EAAC,OAAO,EAAC,WAAW,EAAC,IAAI,EAAC,cAAc,KAAK,KAAK,YAC7E,eACE,CAAC,EAAC,ouEAAouE,EACtuE,IAAI,EAAC,cAAc,GACnB,GACE,CACP,CAAA;AACD,eAAe,WAAW,CAAA","sourcesContent":["import type { SVGProps } from \"react\"\nconst CaptionCcOn = (props: SVGProps) => (\n \n \n \n)\nexport default CaptionCcOn\n"]} \ No newline at end of file diff --git a/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/Icon/svg/CaptionOff.js b/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/Icon/svg/CaptionOff.js new file mode 100644 index 0000000000000000000000000000000000000000..e7649808bd3980522a8a6d74b7ea6c25b4a52753 --- /dev/null +++ b/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/Icon/svg/CaptionOff.js @@ -0,0 +1,4 @@ +import { jsx as _jsx } from "react/jsx-runtime"; +const CaptionOff = (props) => (_jsx("svg", { width: "1em", height: "1em", viewBox: "0 0 24 24", fill: "currentColor", ...props, children: _jsx("path", { d: "M1.29298 1.29298C1.65909 0.926863 2.2381 0.904269 2.63087 1.22462L2.70704 1.29298L22.707 21.293L22.7754 21.3692C23.0958 21.7619 23.0732 22.3409 22.707 22.707C22.3409 23.0732 21.7619 23.0958 21.3692 22.7754L21.293 22.707L19.3418 20.7559C18.9964 20.8665 18.6351 20.9248 18.252 20.9561C17.7016 21.001 17.0237 21 16.2002 21H7.79981C6.97632 21 6.29844 21.001 5.74806 20.9561C5.25621 20.9159 4.79893 20.8356 4.3672 20.6504L4.1836 20.5645C3.52513 20.2289 2.97414 19.7183 2.58985 19.0918L2.43556 18.8164C2.18828 18.3311 2.08988 17.814 2.04396 17.252C1.99899 16.7016 2.00001 16.0237 2.00001 15.2002V8.79981C2.00001 7.97632 1.99899 7.29844 2.04396 6.74806C2.08988 6.186 2.18828 5.66891 2.43556 5.1836L2.54786 4.9795C2.67138 4.76846 2.81406 4.57046 2.97267 4.38673L1.29298 2.70704L1.22462 2.63087C0.904269 2.2381 0.926863 1.65909 1.29298 1.29298ZM12.25 15C12.8023 15 13.25 15.4477 13.25 16C13.25 16.5523 12.8023 17 12.25 17H7.00001C6.44772 17 6.00001 16.5523 6.00001 16C6.00001 15.4477 6.44772 15 7.00001 15H12.25ZM20 16V8.79981C20 7.94342 19.9997 7.36118 19.9629 6.91114C19.9361 6.58254 19.8924 6.37419 19.8389 6.22462L19.7822 6.09181C19.6145 5.76257 19.3592 5.48708 19.0459 5.29493L18.9082 5.21778C18.7518 5.13809 18.5273 5.07294 18.0889 5.03712C17.6388 5.00036 17.0566 5.00001 16.2002 5.00001H9.00001C8.44772 5.00001 8.00001 4.55229 8.00001 4.00001C8.00001 3.44773 8.44772 3.00001 9.00001 3.00001H16.2002C17.0237 3.00001 17.7016 2.99899 18.252 3.04396C18.814 3.08988 19.3311 3.18828 19.8164 3.43556L20.0918 3.58985C20.7183 3.97414 21.2289 4.52513 21.5645 5.1836L21.6504 5.3672C21.8356 5.79893 21.9159 6.25621 21.9561 6.74806C22.001 7.29844 22 7.97632 22 8.79981V16C22 16.5523 21.5523 17 21 17C20.4477 17 20 16.5523 20 16ZM8.50001 11.5C9.05229 11.5 9.50001 11.9477 9.50001 12.5C9.50001 13.0523 9.05229 13.5 8.50001 13.5H7.00001C6.44772 13.5 6.00001 13.0523 6.00001 12.5C6.00001 11.9477 6.44772 11.5 7.00001 11.5H8.50001ZM17 11.5C17.5523 11.5 18 11.9477 18 12.5C18 13.0523 17.5523 13.5 17 13.5H16.5C15.9477 13.5 15.5 13.0523 15.5 12.5C15.5 11.9477 15.9477 11.5 16.5 11.5H17ZM4.00001 15.2002C4.00001 16.0566 4.00036 16.6388 4.03712 17.0889C4.07294 17.5273 4.13809 17.7518 4.21778 17.9082L4.29493 18.0459C4.48708 18.3592 4.76257 18.6145 5.09181 18.7822L5.22462 18.8389C5.37419 18.8924 5.58254 18.9361 5.91114 18.9629C6.36118 18.9997 6.94342 19 7.79981 19H16.2002C16.7628 19 17.207 18.998 17.5733 18.9873L4.39552 5.80958C4.37528 5.83685 4.35383 5.86328 4.33497 5.89161L4.21778 6.09181C4.13809 6.24821 4.07294 6.47273 4.03712 6.91114C4.00036 7.36118 4.00001 7.94342 4.00001 8.79981V15.2002Z", fill: "currentColor" }) })); +export default CaptionOff; +//# sourceMappingURL=CaptionOff.js.map \ No newline at end of file diff --git a/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/Icon/svg/CaptionOff.js.map b/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/Icon/svg/CaptionOff.js.map new file mode 100644 index 0000000000000000000000000000000000000000..a8c6c8e0b21580e7ca38826382480c7dace337aa --- /dev/null +++ b/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/Icon/svg/CaptionOff.js.map @@ -0,0 +1 @@ +{"version":3,"file":"CaptionOff.js","sourceRoot":"","sources":["../../../../../src/components/Icon/svg/CaptionOff.tsx"],"names":[],"mappings":";AACA,MAAM,UAAU,GAAG,CAAC,KAA8B,EAAE,EAAE,CAAC,CACrD,cAAK,KAAK,EAAC,KAAK,EAAC,MAAM,EAAC,KAAK,EAAC,OAAO,EAAC,WAAW,EAAC,IAAI,EAAC,cAAc,KAAK,KAAK,YAC7E,eACE,CAAC,EAAC,khFAAkhF,EACphF,IAAI,EAAC,cAAc,GACnB,GACE,CACP,CAAA;AACD,eAAe,UAAU,CAAA","sourcesContent":["import type { SVGProps } from \"react\"\nconst CaptionOff = (props: SVGProps) => (\n \n \n \n)\nexport default CaptionOff\n"]} \ No newline at end of file diff --git a/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/Icon/svg/CaptionOn.js b/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/Icon/svg/CaptionOn.js new file mode 100644 index 0000000000000000000000000000000000000000..fc383940215cf06d8998571a3d69918841d0b4ff --- /dev/null +++ b/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/Icon/svg/CaptionOn.js @@ -0,0 +1,4 @@ +import { jsx as _jsx } from "react/jsx-runtime"; +const CaptionOn = (props) => (_jsx("svg", { width: "1em", height: "1em", viewBox: "0 0 24 24", fill: "currentColor", ...props, children: _jsx("path", { d: "M20 8.79981C20 7.94342 19.9997 7.36117 19.9629 6.91113C19.936 6.58253 19.8924 6.37418 19.8389 6.22461L19.7822 6.0918C19.6145 5.76256 19.3592 5.48707 19.0459 5.29492L18.9082 5.21778C18.7518 5.13809 18.5273 5.07293 18.0889 5.03711C17.6388 5.00035 17.0566 5 16.2002 5H7.79981C6.94342 5 6.36117 5.00035 5.91113 5.03711C5.58253 5.06396 5.37418 5.10762 5.22461 5.16113L5.0918 5.21778C4.76256 5.38555 4.48707 5.64085 4.29492 5.9541L4.21778 6.0918C4.13809 6.2482 4.07293 6.47272 4.03711 6.91113C4.00035 7.36117 4 7.94342 4 8.79981V15.2002C4 16.0566 4.00035 16.6388 4.03711 17.0889C4.07293 17.5273 4.13809 17.7518 4.21778 17.9082L4.29492 18.0459C4.48707 18.3592 4.76256 18.6145 5.0918 18.7822L5.22461 18.8389C5.37418 18.8924 5.58253 18.936 5.91113 18.9629C6.36117 18.9997 6.94342 19 7.79981 19H16.2002C17.0566 19 17.6388 18.9997 18.0889 18.9629C18.5273 18.9271 18.7518 18.8619 18.9082 18.7822L19.0459 18.7051C19.3592 18.5129 19.6145 18.2374 19.7822 17.9082L19.8389 17.7754C19.8924 17.6258 19.936 17.4175 19.9629 17.0889C19.9997 16.6388 20 16.0566 20 15.2002V8.79981ZM12.25 15C12.8023 15 13.25 15.4477 13.25 16C13.25 16.5523 12.8023 17 12.25 17H7C6.44772 17 6 16.5523 6 16C6 15.4477 6.44772 15 7 15H12.25ZM17 15C17.5523 15 18 15.4477 18 16C18 16.5523 17.5523 17 17 17H15.5C14.9477 17 14.5 16.5523 14.5 16C14.5 15.4477 14.9477 15 15.5 15H17ZM8.5 11.5C9.05229 11.5 9.5 11.9477 9.5 12.5C9.5 13.0523 9.05229 13.5 8.5 13.5H7C6.44772 13.5 6 13.0523 6 12.5C6 11.9477 6.44772 11.5 7 11.5H8.5ZM17 11.5C17.5523 11.5 18 11.9477 18 12.5C18 13.0523 17.5523 13.5 17 13.5H11.75C11.1977 13.5 10.75 13.0523 10.75 12.5C10.75 11.9477 11.1977 11.5 11.75 11.5H17ZM22 15.2002C22 16.0237 22.001 16.7016 21.9561 17.252C21.9159 17.7438 21.8356 18.2011 21.6504 18.6328L21.5645 18.8164C21.2289 19.4749 20.7183 20.0259 20.0918 20.4102L19.8164 20.5645C19.3311 20.8117 18.814 20.9101 18.252 20.9561C17.7016 21.001 17.0237 21 16.2002 21H7.79981C6.97632 21 6.29843 21.001 5.74805 20.9561C5.2562 20.9159 4.79892 20.8356 4.36719 20.6504L4.1836 20.5645C3.52513 20.2289 2.97414 19.7183 2.58985 19.0918L2.43555 18.8164C2.18827 18.3311 2.08988 17.814 2.04395 17.252C1.99898 16.7016 2 16.0237 2 15.2002V8.79981C2 7.97632 1.99898 7.29843 2.04395 6.74805C2.08988 6.18599 2.18827 5.6689 2.43555 5.1836L2.58985 4.90821C2.97414 4.2817 3.52513 3.7711 4.1836 3.43555L4.36719 3.34961C4.79892 3.16442 5.2562 3.08414 5.74805 3.04395C6.29843 2.99898 6.97632 3 7.79981 3H16.2002C17.0237 3 17.7016 2.99898 18.252 3.04395C18.814 3.08988 19.3311 3.18827 19.8164 3.43555L20.0918 3.58985C20.7183 3.97414 21.2289 4.52513 21.5645 5.1836L21.6504 5.36719C21.8356 5.79892 21.9159 6.2562 21.9561 6.74805C22.001 7.29843 22 7.97632 22 8.79981V15.2002Z", fill: "currentColor" }) })); +export default CaptionOn; +//# sourceMappingURL=CaptionOn.js.map \ No newline at end of file diff --git a/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/Icon/svg/CaptionOn.js.map b/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/Icon/svg/CaptionOn.js.map new file mode 100644 index 0000000000000000000000000000000000000000..3506ba50658cad4806bf79c327334f001afcdcec --- /dev/null +++ b/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/Icon/svg/CaptionOn.js.map @@ -0,0 +1 @@ +{"version":3,"file":"CaptionOn.js","sourceRoot":"","sources":["../../../../../src/components/Icon/svg/CaptionOn.tsx"],"names":[],"mappings":";AACA,MAAM,SAAS,GAAG,CAAC,KAA8B,EAAE,EAAE,CAAC,CACpD,cAAK,KAAK,EAAC,KAAK,EAAC,MAAM,EAAC,KAAK,EAAC,OAAO,EAAC,WAAW,EAAC,IAAI,EAAC,cAAc,KAAK,KAAK,YAC7E,eACE,CAAC,EAAC,unFAAunF,EACznF,IAAI,EAAC,cAAc,GACnB,GACE,CACP,CAAA;AACD,eAAe,SAAS,CAAA","sourcesContent":["import type { SVGProps } from \"react\"\nconst CaptionOn = (props: SVGProps) => (\n \n \n \n)\nexport default CaptionOn\n"]} \ No newline at end of file diff --git a/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/Icon/svg/Card.js b/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/Icon/svg/Card.js new file mode 100644 index 0000000000000000000000000000000000000000..103eba1351cd007f50f280cf1a8a62139668a906 --- /dev/null +++ b/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/Icon/svg/Card.js @@ -0,0 +1,4 @@ +import { jsx as _jsx } from "react/jsx-runtime"; +const Card = (props) => (_jsx("svg", { width: "1em", height: "1em", viewBox: "0 0 24 24", fill: "currentColor", ...props, children: _jsx("path", { fillRule: "evenodd", d: "M2 7a3 3 0 0 1 3-3h14a3 3 0 0 1 3 3v10a3 3 0 0 1-3 3H5a3 3 0 0 1-3-3V7Zm2 4v6a1 1 0 0 0 1 1h14a1 1 0 0 0 1-1v-6H4Zm16-2H4V7a1 1 0 0 1 1-1h14a1 1 0 0 1 1 1v2Zm-6 6a1 1 0 0 1 1-1h2a1 1 0 1 1 0 2h-2a1 1 0 0 1-1-1Z", clipRule: "evenodd" }) })); +export default Card; +//# sourceMappingURL=Card.js.map \ No newline at end of file diff --git a/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/Icon/svg/Card.js.map b/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/Icon/svg/Card.js.map new file mode 100644 index 0000000000000000000000000000000000000000..881e5a1b9cf4ba32327912746c8d138a965eb9f5 --- /dev/null +++ b/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/Icon/svg/Card.js.map @@ -0,0 +1 @@ +{"version":3,"file":"Card.js","sourceRoot":"","sources":["../../../../../src/components/Icon/svg/Card.tsx"],"names":[],"mappings":";AACA,MAAM,IAAI,GAAG,CAAC,KAA8B,EAAE,EAAE,CAAC,CAC/C,cAAK,KAAK,EAAC,KAAK,EAAC,MAAM,EAAC,KAAK,EAAC,OAAO,EAAC,WAAW,EAAC,IAAI,EAAC,cAAc,KAAK,KAAK,YAC7E,eACE,QAAQ,EAAC,SAAS,EAClB,CAAC,EAAC,oNAAoN,EACtN,QAAQ,EAAC,SAAS,GAClB,GACE,CACP,CAAA;AACD,eAAe,IAAI,CAAA","sourcesContent":["import type { SVGProps } from \"react\"\nconst Card = (props: SVGProps) => (\n \n \n \n)\nexport default Card\n"]} \ No newline at end of file diff --git a/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/Icon/svg/CaretDown.js b/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/Icon/svg/CaretDown.js new file mode 100644 index 0000000000000000000000000000000000000000..892f49e0137526610e44205ebfef3018d6eb9a0a --- /dev/null +++ b/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/Icon/svg/CaretDown.js @@ -0,0 +1,4 @@ +import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime"; +const CaretDown = (props) => (_jsxs("svg", { width: "1em", height: "1em", viewBox: "0 0 24 24", fill: "currentColor", ...props, children: [_jsx("path", { d: "m12 16 5-6H7l5 6Z" }), _jsx("path", { fillRule: "evenodd", d: "M6.094 9.576A1 1 0 0 1 7 9h10a1 1 0 0 1 .768 1.64l-5 6a1 1 0 0 1-1.536 0l-5-6a1 1 0 0 1-.138-1.064ZM9.135 11 12 14.438 14.865 11h-5.73Z", clipRule: "evenodd" })] })); +export default CaretDown; +//# sourceMappingURL=CaretDown.js.map \ No newline at end of file diff --git a/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/Icon/svg/CaretDown.js.map b/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/Icon/svg/CaretDown.js.map new file mode 100644 index 0000000000000000000000000000000000000000..1b3a4d9fe61f955047f5694eb7271062ddfd5dd2 --- /dev/null +++ b/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/Icon/svg/CaretDown.js.map @@ -0,0 +1 @@ +{"version":3,"file":"CaretDown.js","sourceRoot":"","sources":["../../../../../src/components/Icon/svg/CaretDown.tsx"],"names":[],"mappings":";AACA,MAAM,SAAS,GAAG,CAAC,KAA8B,EAAE,EAAE,CAAC,CACpD,eAAK,KAAK,EAAC,KAAK,EAAC,MAAM,EAAC,KAAK,EAAC,OAAO,EAAC,WAAW,EAAC,IAAI,EAAC,cAAc,KAAK,KAAK,aAC7E,eAAM,CAAC,EAAC,mBAAmB,GAAG,EAC9B,eACE,QAAQ,EAAC,SAAS,EAClB,CAAC,EAAC,yIAAyI,EAC3I,QAAQ,EAAC,SAAS,GAClB,IACE,CACP,CAAA;AACD,eAAe,SAAS,CAAA","sourcesContent":["import type { SVGProps } from \"react\"\nconst CaretDown = (props: SVGProps) => (\n \n \n \n \n)\nexport default CaretDown\n"]} \ No newline at end of file diff --git a/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/Icon/svg/CaretLeft.js b/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/Icon/svg/CaretLeft.js new file mode 100644 index 0000000000000000000000000000000000000000..99f24cc23629a7378e454006967c767333b0e153 --- /dev/null +++ b/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/Icon/svg/CaretLeft.js @@ -0,0 +1,4 @@ +import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime"; +const CaretLeft = (props) => (_jsxs("svg", { width: "1em", height: "1em", viewBox: "0 0 24 24", fill: "currentColor", ...props, children: [_jsx("path", { d: "m9 13 6 5V8l-6 5Z" }), _jsx("path", { fillRule: "evenodd", d: "M15.424 7.094A1 1 0 0 1 16 8v10a1 1 0 0 1-1.64.768l-6-5a1 1 0 0 1 0-1.536l6-5a1 1 0 0 1 1.064-.138ZM10.562 13 14 15.865v-5.73L10.562 13Z", clipRule: "evenodd" })] })); +export default CaretLeft; +//# sourceMappingURL=CaretLeft.js.map \ No newline at end of file diff --git a/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/Icon/svg/CaretLeft.js.map b/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/Icon/svg/CaretLeft.js.map new file mode 100644 index 0000000000000000000000000000000000000000..c9b34b93e5cae4f053ee0b6cbd57c0906d78375d --- /dev/null +++ b/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/Icon/svg/CaretLeft.js.map @@ -0,0 +1 @@ +{"version":3,"file":"CaretLeft.js","sourceRoot":"","sources":["../../../../../src/components/Icon/svg/CaretLeft.tsx"],"names":[],"mappings":";AACA,MAAM,SAAS,GAAG,CAAC,KAA8B,EAAE,EAAE,CAAC,CACpD,eAAK,KAAK,EAAC,KAAK,EAAC,MAAM,EAAC,KAAK,EAAC,OAAO,EAAC,WAAW,EAAC,IAAI,EAAC,cAAc,KAAK,KAAK,aAC7E,eAAM,CAAC,EAAC,mBAAmB,GAAG,EAC9B,eACE,QAAQ,EAAC,SAAS,EAClB,CAAC,EAAC,0IAA0I,EAC5I,QAAQ,EAAC,SAAS,GAClB,IACE,CACP,CAAA;AACD,eAAe,SAAS,CAAA","sourcesContent":["import type { SVGProps } from \"react\"\nconst CaretLeft = (props: SVGProps) => (\n \n \n \n \n)\nexport default CaretLeft\n"]} \ No newline at end of file diff --git a/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/Icon/svg/CaretRight.js b/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/Icon/svg/CaretRight.js new file mode 100644 index 0000000000000000000000000000000000000000..4119b15eab14a2c8da96b9a0e6175db7dd55ae93 --- /dev/null +++ b/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/Icon/svg/CaretRight.js @@ -0,0 +1,4 @@ +import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime"; +const CaretRight = (props) => (_jsxs("svg", { width: "1em", height: "1em", viewBox: "0 0 24 24", fill: "currentColor", ...props, children: [_jsx("path", { d: "M15 12 9 7v10l6-5Z" }), _jsx("path", { fillRule: "evenodd", d: "M8.576 6.094a1 1 0 0 1 1.064.138l6 5a1 1 0 0 1 0 1.536l-6 5A1 1 0 0 1 8 17V7a1 1 0 0 1 .576-.906ZM10 9.135v5.73L13.438 12 10 9.135Z", clipRule: "evenodd" })] })); +export default CaretRight; +//# sourceMappingURL=CaretRight.js.map \ No newline at end of file diff --git a/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/Icon/svg/CaretRight.js.map b/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/Icon/svg/CaretRight.js.map new file mode 100644 index 0000000000000000000000000000000000000000..90b84068808f3bc62b3ce979c793cac39bcd513b --- /dev/null +++ b/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/Icon/svg/CaretRight.js.map @@ -0,0 +1 @@ +{"version":3,"file":"CaretRight.js","sourceRoot":"","sources":["../../../../../src/components/Icon/svg/CaretRight.tsx"],"names":[],"mappings":";AACA,MAAM,UAAU,GAAG,CAAC,KAA8B,EAAE,EAAE,CAAC,CACrD,eAAK,KAAK,EAAC,KAAK,EAAC,MAAM,EAAC,KAAK,EAAC,OAAO,EAAC,WAAW,EAAC,IAAI,EAAC,cAAc,KAAK,KAAK,aAC7E,eAAM,CAAC,EAAC,oBAAoB,GAAG,EAC/B,eACE,QAAQ,EAAC,SAAS,EAClB,CAAC,EAAC,qIAAqI,EACvI,QAAQ,EAAC,SAAS,GAClB,IACE,CACP,CAAA;AACD,eAAe,UAAU,CAAA","sourcesContent":["import type { SVGProps } from \"react\"\nconst CaretRight = (props: SVGProps) => (\n \n \n \n \n)\nexport default CaretRight\n"]} \ No newline at end of file diff --git a/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/Icon/svg/CaretUp.js b/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/Icon/svg/CaretUp.js new file mode 100644 index 0000000000000000000000000000000000000000..456b2d5b1e3e2ec34fd77d4f036e7d6f7a6b5253 --- /dev/null +++ b/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/Icon/svg/CaretUp.js @@ -0,0 +1,4 @@ +import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime"; +const CaretUp = (props) => (_jsxs("svg", { width: "1em", height: "1em", viewBox: "0 0 24 24", fill: "currentColor", ...props, children: [_jsx("path", { d: "m12 10 5 6H7l5-6Z" }), _jsx("path", { fillRule: "evenodd", d: "M6.094 16.424A1 1 0 0 0 7 17h10a1 1 0 0 0 .768-1.64l-5-6a1 1 0 0 0-1.536 0l-5 6a1 1 0 0 0-.138 1.064ZM9.135 15 12 11.562 14.865 15h-5.73Z", clipRule: "evenodd" })] })); +export default CaretUp; +//# sourceMappingURL=CaretUp.js.map \ No newline at end of file diff --git a/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/Icon/svg/CaretUp.js.map b/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/Icon/svg/CaretUp.js.map new file mode 100644 index 0000000000000000000000000000000000000000..33e41139d45ce7e5bf4efb250f59e344d390943c --- /dev/null +++ b/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/Icon/svg/CaretUp.js.map @@ -0,0 +1 @@ +{"version":3,"file":"CaretUp.js","sourceRoot":"","sources":["../../../../../src/components/Icon/svg/CaretUp.tsx"],"names":[],"mappings":";AACA,MAAM,OAAO,GAAG,CAAC,KAA8B,EAAE,EAAE,CAAC,CAClD,eAAK,KAAK,EAAC,KAAK,EAAC,MAAM,EAAC,KAAK,EAAC,OAAO,EAAC,WAAW,EAAC,IAAI,EAAC,cAAc,KAAK,KAAK,aAC7E,eAAM,CAAC,EAAC,mBAAmB,GAAG,EAC9B,eACE,QAAQ,EAAC,SAAS,EAClB,CAAC,EAAC,2IAA2I,EAC7I,QAAQ,EAAC,SAAS,GAClB,IACE,CACP,CAAA;AACD,eAAe,OAAO,CAAA","sourcesContent":["import type { SVGProps } from \"react\"\nconst CaretUp = (props: SVGProps) => (\n \n \n \n \n)\nexport default CaretUp\n"]} \ No newline at end of file diff --git a/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/Icon/svg/Category.js b/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/Icon/svg/Category.js new file mode 100644 index 0000000000000000000000000000000000000000..1c07a67565538f66904ab2709ff6de41d6632e9b --- /dev/null +++ b/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/Icon/svg/Category.js @@ -0,0 +1,4 @@ +import { jsx as _jsx } from "react/jsx-runtime"; +const Category = (props) => (_jsx("svg", { width: "1em", height: "1em", viewBox: "0 0 24 24", fill: "currentColor", ...props, children: _jsx("path", { d: "M6.83855 3H6.16146C5.63433 2.99998 5.17954 2.99997 4.80497 3.03057C4.40963 3.06287 4.01641 3.13419 3.63803 3.32698C3.07354 3.6146 2.6146 4.07354 2.32698 4.63803C2.13419 5.01641 2.06287 5.40963 2.03057 5.80497C1.99997 6.17954 1.99998 6.63429 2 7.16142V15.2413C1.99999 16.0463 1.99998 16.7107 2.0442 17.2519C2.09012 17.814 2.18869 18.3307 2.43598 18.816C2.81947 19.5686 3.43139 20.1806 4.18404 20.5641C4.66938 20.8113 5.18608 20.9099 5.74818 20.9558C6.28937 21.0001 6.95372 21 7.75868 21H16.2413C17.0463 21 17.7106 21.0001 18.2518 20.9558C18.8139 20.9099 19.3306 20.8113 19.816 20.5641C20.5686 20.1806 21.1805 19.5686 21.564 18.816C21.8113 18.3307 21.9099 17.814 21.9558 17.2519C22 16.7107 22 16.0463 22 15.2414V8.16146C22 7.63433 22 7.17957 21.9694 6.805C21.9371 6.40966 21.8658 6.01644 21.673 5.63806C21.3854 5.07357 20.9265 4.61463 20.362 4.32701C19.9836 4.13422 19.5904 4.0629 19.195 4.0306C18.8205 4 18.3657 4.00001 17.8385 4.00003L10.2361 4.00003C9.99029 3.72521 9.69444 3.49638 9.36197 3.32698C8.98359 3.13419 8.59038 3.06287 8.19503 3.03057C7.82047 2.99997 7.36568 2.99998 6.83855 3ZM19.9761 10.9679C19.9992 11.2512 20 11.6235 20 12.2V15.2C20 16.0566 19.9992 16.6389 19.9625 17.089C19.9266 17.5274 19.8617 17.7516 19.782 17.908C19.5903 18.2843 19.2843 18.5903 18.908 18.782C18.7516 18.8617 18.5274 18.9267 18.089 18.9625C17.6389 18.9993 17.0566 19 16.2 19H7.8C6.94342 19 6.36113 18.9993 5.91104 18.9625C5.47263 18.9267 5.24842 18.8617 5.09202 18.782C4.7157 18.5903 4.40974 18.2843 4.21799 17.908C4.1383 17.7516 4.07337 17.5274 4.03755 17.089C4.00078 16.6389 4 16.0566 4 15.2V7.2C4 6.62345 4.00078 6.25118 4.02393 5.96784C4.04613 5.69618 4.0838 5.59546 4.109 5.54601C4.20487 5.35785 4.35785 5.20487 4.54601 5.109C4.59546 5.0838 4.69618 5.04613 4.96784 5.02393C5.25118 5.00078 5.62345 5 6.2 5H6.8C7.37656 5 7.74883 5.00078 8.03217 5.02393C8.30383 5.04613 8.40455 5.0838 8.45399 5.109C8.64216 5.20487 8.79514 5.35785 8.89101 5.54601C8.9162 5.59546 8.95388 5.69618 8.97608 5.96784C8.99923 6.25118 9 6.62345 9 7.2V8.40003C9 8.96008 9 9.24011 9.109 9.45402C9.20487 9.64218 9.35785 9.79516 9.54601 9.89104C9.75992 10 10.04 10 10.6 10H17.8C18.3766 10 18.7488 10.0008 19.0322 10.024C19.3038 10.0462 19.4045 10.0838 19.454 10.109C19.6422 10.2049 19.7951 10.3579 19.891 10.546C19.9162 10.5955 19.9539 10.6962 19.9761 10.9679ZM17.8385 8.00003L16.5 8.00003C16.4997 7.541 16.4969 7.14078 16.4694 6.805C16.4473 6.53432 16.4069 6.26464 16.3218 6.00003H17.8C18.3766 6.00003 18.7488 6.00081 19.0322 6.02396C19.3038 6.04615 19.4045 6.08383 19.454 6.10902C19.6422 6.2049 19.7951 6.35788 19.891 6.54604C19.9162 6.59548 19.9539 6.6962 19.9761 6.96787C19.9989 7.24763 20 7.61409 20 8.17829C19.7354 8.09312 19.4657 8.05272 19.195 8.0306C18.8205 8 18.3657 8.00001 17.8385 8.00003ZM14.5 8H11V7.16145C11.0001 6.72264 11.0001 6.33399 10.9824 6H12.3C12.8766 6 13.2489 6.00078 13.5322 6.02393C13.8039 6.04612 13.9046 6.0838 13.954 6.10899C14.1422 6.20487 14.2952 6.35785 14.391 6.54601C14.4162 6.59545 14.4539 6.69617 14.4761 6.96784C14.4965 7.21698 14.4995 7.5349 14.5 8Z", fill: "currentColor" }) })); +export default Category; +//# sourceMappingURL=Category.js.map \ No newline at end of file diff --git a/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/Icon/svg/Category.js.map b/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/Icon/svg/Category.js.map new file mode 100644 index 0000000000000000000000000000000000000000..78840ef5bb424202a9854902656eb3a48d26797d --- /dev/null +++ b/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/Icon/svg/Category.js.map @@ -0,0 +1 @@ +{"version":3,"file":"Category.js","sourceRoot":"","sources":["../../../../../src/components/Icon/svg/Category.tsx"],"names":[],"mappings":";AACA,MAAM,QAAQ,GAAG,CAAC,KAA8B,EAAE,EAAE,CAAC,CACnD,cAAK,KAAK,EAAC,KAAK,EAAC,MAAM,EAAC,KAAK,EAAC,OAAO,EAAC,WAAW,EAAC,IAAI,EAAC,cAAc,KAAK,KAAK,YAC7E,eACE,CAAC,EAAC,0+FAA0+F,EAC5+F,IAAI,EAAC,cAAc,GACnB,GACE,CACP,CAAA;AACD,eAAe,QAAQ,CAAA","sourcesContent":["import type { SVGProps } from \"react\"\nconst Category = (props: SVGProps) => (\n \n \n \n)\nexport default Category\n"]} \ No newline at end of file diff --git a/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/Icon/svg/Certificate.js b/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/Icon/svg/Certificate.js new file mode 100644 index 0000000000000000000000000000000000000000..c003026d36eab4fa9dfffed02237689e085d725d --- /dev/null +++ b/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/Icon/svg/Certificate.js @@ -0,0 +1,4 @@ +import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime"; +const Certificate = (props) => (_jsxs("svg", { width: "1em", height: "1em", viewBox: "0 0 24 24", fill: "currentColor", ...props, children: [_jsx("path", { fillRule: "evenodd", clipRule: "evenodd", d: "M2 7C2 5.34315 3.34315 4 5 4H19C20.6569 4 22 5.34315 22 7V17C22 18.6569 20.6569 20 19 20H5C3.34315 20 2 18.6569 2 17V7ZM5 6C4.44772 6 4 6.44772 4 7V17C4 17.5523 4.44772 18 5 18H19C19.5523 18 20 17.5523 20 17V7C20 6.44772 19.5523 6 19 6H5Z" }), _jsx("path", { fillRule: "evenodd", clipRule: "evenodd", d: "M12 9.5C11.4477 9.5 11 9.94772 11 10.5C11 11.0523 11.4477 11.5 12 11.5C12.5523 11.5 13 11.0523 13 10.5C13 9.94772 12.5523 9.5 12 9.5ZM9 10.5C9 8.84315 10.3431 7.5 12 7.5C13.6569 7.5 15 8.84315 15 10.5C15 12.1569 13.6569 13.5 12 13.5C10.3431 13.5 9 12.1569 9 10.5Z" }), _jsx("path", { fillRule: "evenodd", clipRule: "evenodd", d: "M8 15.5C8 14.9477 8.44772 14.5 9 14.5H15C15.5523 14.5 16 14.9477 16 15.5C16 16.0523 15.5523 16.5 15 16.5H9C8.44772 16.5 8 16.0523 8 15.5Z" })] })); +export default Certificate; +//# sourceMappingURL=Certificate.js.map \ No newline at end of file diff --git a/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/Icon/svg/Certificate.js.map b/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/Icon/svg/Certificate.js.map new file mode 100644 index 0000000000000000000000000000000000000000..70037d16ae5e74f0cbabf7466dececd2357d3446 --- /dev/null +++ b/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/Icon/svg/Certificate.js.map @@ -0,0 +1 @@ +{"version":3,"file":"Certificate.js","sourceRoot":"","sources":["../../../../../src/components/Icon/svg/Certificate.tsx"],"names":[],"mappings":";AACA,MAAM,WAAW,GAAG,CAAC,KAA8B,EAAE,EAAE,CAAC,CACtD,eAAK,KAAK,EAAC,KAAK,EAAC,MAAM,EAAC,KAAK,EAAC,OAAO,EAAC,WAAW,EAAC,IAAI,EAAC,cAAc,KAAK,KAAK,aAC7E,eACE,QAAQ,EAAC,SAAS,EAClB,QAAQ,EAAC,SAAS,EAClB,CAAC,EAAC,gPAAgP,GAClP,EACF,eACE,QAAQ,EAAC,SAAS,EAClB,QAAQ,EAAC,SAAS,EAClB,CAAC,EAAC,yQAAyQ,GAC3Q,EACF,eACE,QAAQ,EAAC,SAAS,EAClB,QAAQ,EAAC,SAAS,EAClB,CAAC,EAAC,2IAA2I,GAC7I,IACE,CACP,CAAA;AACD,eAAe,WAAW,CAAA","sourcesContent":["import type { SVGProps } from \"react\"\nconst Certificate = (props: SVGProps) => (\n \n \n \n \n \n)\nexport default Certificate\n"]} \ No newline at end of file diff --git a/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/Icon/svg/Chart.js b/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/Icon/svg/Chart.js new file mode 100644 index 0000000000000000000000000000000000000000..3d8e5b50262fdaaba15655fb7a4a5326f4ba604a --- /dev/null +++ b/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/Icon/svg/Chart.js @@ -0,0 +1,4 @@ +import { jsx as _jsx } from "react/jsx-runtime"; +const Chart = (props) => (_jsx("svg", { width: "1em", height: "1em", viewBox: "0 0 24 24", fill: "currentColor", ...props, children: _jsx("path", { d: "M11.33 5h1.33a1 1 0 0 1 1 1v13h-3.33V6a1 1 0 0 1 1-1Zm4.33 14V9H18a1 1 0 0 1 1 1v8a1 1 0 0 1-1 1h-2.34Zm0-12V6a3 3 0 0 0-3-3h-1.33a3 3 0 0 0-3 3v5H6a3 3 0 0 0-3 3v4a3 3 0 0 0 3 3h12a3 3 0 0 0 3-3v-8a3 3 0 0 0-3-3h-2.34Zm-7.33 6v6H6a1 1 0 0 1-1-1v-4a1 1 0 0 1 1-1h2.33Z" }) })); +export default Chart; +//# sourceMappingURL=Chart.js.map \ No newline at end of file diff --git a/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/Icon/svg/Chart.js.map b/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/Icon/svg/Chart.js.map new file mode 100644 index 0000000000000000000000000000000000000000..3f9dc192732e7fc19fa7c28af4d0530b20fa4dd5 --- /dev/null +++ b/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/Icon/svg/Chart.js.map @@ -0,0 +1 @@ +{"version":3,"file":"Chart.js","sourceRoot":"","sources":["../../../../../src/components/Icon/svg/Chart.tsx"],"names":[],"mappings":";AACA,MAAM,KAAK,GAAG,CAAC,KAA8B,EAAE,EAAE,CAAC,CAChD,cAAK,KAAK,EAAC,KAAK,EAAC,MAAM,EAAC,KAAK,EAAC,OAAO,EAAC,WAAW,EAAC,IAAI,EAAC,cAAc,KAAK,KAAK,YAC7E,eAAM,CAAC,EAAC,8QAA8Q,GAAG,GACrR,CACP,CAAA;AACD,eAAe,KAAK,CAAA","sourcesContent":["import type { SVGProps } from \"react\"\nconst Chart = (props: SVGProps) => (\n \n \n \n)\nexport default Chart\n"]} \ No newline at end of file diff --git a/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/Icon/svg/ChartXAxis.js b/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/Icon/svg/ChartXAxis.js new file mode 100644 index 0000000000000000000000000000000000000000..bd20662c34e74d62917a870161071a69e79ad0ac --- /dev/null +++ b/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/Icon/svg/ChartXAxis.js @@ -0,0 +1,4 @@ +import { jsx as _jsx } from "react/jsx-runtime"; +const ChartXAxis = (props) => (_jsx("svg", { width: "1em", height: "1em", viewBox: "0 0 24 24", fill: "currentColor", ...props, children: _jsx("path", { d: "M15.2413 3H8.7587C7.95376 2.99999 7.28936 2.99998 6.74818 3.0442C6.18608 3.09012 5.66938 3.18869 5.18404 3.43598C4.43139 3.81947 3.81947 4.43139 3.43598 5.18404C3.18869 5.66938 3.09012 6.18608 3.0442 6.74818C2.99998 7.28936 2.99999 7.95372 3 8.75867V15.2413C2.99999 16.0463 2.99998 16.7106 3.0442 17.2518C3.09012 17.8139 3.18869 18.3306 3.43598 18.816C3.81947 19.5686 4.43139 20.1805 5.18404 20.564C5.66938 20.8113 6.18608 20.9099 6.74818 20.9558C7.28937 21 7.95372 21 8.75868 21H15.2413C16.0463 21 16.7106 21 17.2518 20.9558C17.8139 20.9099 18.3306 20.8113 18.816 20.564C19.5686 20.1805 20.1805 19.5686 20.564 18.816C20.8113 18.3306 20.9099 17.8139 20.9558 17.2518C21 16.7106 21 16.0463 21 15.2413V8.75868C21 7.95372 21 7.28937 20.9558 6.74818C20.9099 6.18608 20.8113 5.66938 20.564 5.18404C20.1805 4.43139 19.5686 3.81947 18.816 3.43598C18.3306 3.18869 17.8139 3.09012 17.2518 3.0442C16.7106 2.99998 16.0463 2.99999 15.2413 3ZM12.0001 10.3334L14.2001 7.40006C14.5314 6.95823 15.1582 6.86869 15.6001 7.20006C16.0419 7.53143 16.1314 8.15823 15.8001 8.60006L13.2501 12.0001L15.8001 15.4001C16.1314 15.8419 16.0419 16.4687 15.6001 16.8001C15.1582 17.1314 14.5314 17.0419 14.2001 16.6001L12.0001 13.6667L9.80006 16.6001C9.46869 17.0419 8.84189 17.1314 8.40006 16.8001C7.95823 16.4687 7.86869 15.8419 8.20006 15.4001L10.7501 12.0001L8.20006 8.60006C7.86869 8.15823 7.95823 7.53143 8.40006 7.20006C8.84189 6.86869 9.46869 6.95823 9.80006 7.40006L12.0001 10.3334Z", fill: "currentColor" }) })); +export default ChartXAxis; +//# sourceMappingURL=ChartXAxis.js.map \ No newline at end of file diff --git a/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/Icon/svg/ChartXAxis.js.map b/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/Icon/svg/ChartXAxis.js.map new file mode 100644 index 0000000000000000000000000000000000000000..28c47a209d8a9c51a8166805be33a311d35f3aa1 --- /dev/null +++ b/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/Icon/svg/ChartXAxis.js.map @@ -0,0 +1 @@ +{"version":3,"file":"ChartXAxis.js","sourceRoot":"","sources":["../../../../../src/components/Icon/svg/ChartXAxis.tsx"],"names":[],"mappings":";AACA,MAAM,UAAU,GAAG,CAAC,KAA8B,EAAE,EAAE,CAAC,CACrD,cAAK,KAAK,EAAC,KAAK,EAAC,MAAM,EAAC,KAAK,EAAC,OAAO,EAAC,WAAW,EAAC,IAAI,EAAC,cAAc,KAAK,KAAK,YAC7E,eACE,CAAC,EAAC,m7CAAm7C,EACr7C,IAAI,EAAC,cAAc,GACnB,GACE,CACP,CAAA;AACD,eAAe,UAAU,CAAA","sourcesContent":["import type { SVGProps } from \"react\"\nconst ChartXAxis = (props: SVGProps) => (\n \n \n \n)\nexport default ChartXAxis\n"]} \ No newline at end of file diff --git a/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/Icon/svg/ChartYAxis.js b/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/Icon/svg/ChartYAxis.js new file mode 100644 index 0000000000000000000000000000000000000000..7dc31b86481e9d24756f77c430974b1d7a4731d9 --- /dev/null +++ b/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/Icon/svg/ChartYAxis.js @@ -0,0 +1,4 @@ +import { jsx as _jsx } from "react/jsx-runtime"; +const ChartYAxis = (props) => (_jsx("svg", { width: "1em", height: "1em", viewBox: "0 0 24 24", fill: "currentColor", ...props, children: _jsx("path", { d: "M15.2413 3H8.7587C7.95376 2.99999 7.28936 2.99998 6.74818 3.0442C6.18608 3.09012 5.66938 3.18869 5.18404 3.43598C4.43139 3.81947 3.81947 4.43139 3.43598 5.18404C3.18869 5.66938 3.09012 6.18608 3.0442 6.74818C2.99998 7.28936 2.99999 7.95372 3 8.75867V15.2413C2.99999 16.0463 2.99998 16.7106 3.0442 17.2518C3.09012 17.8139 3.18869 18.3306 3.43598 18.816C3.81947 19.5686 4.43139 20.1805 5.18404 20.564C5.66938 20.8113 6.18608 20.9099 6.74818 20.9558C7.28937 21 7.95372 21 8.75868 21H15.2413C16.0463 21 16.7106 21 17.2518 20.9558C17.8139 20.9099 18.3306 20.8113 18.816 20.564C19.5686 20.1805 20.1805 19.5686 20.564 18.816C20.8113 18.3306 20.9099 17.8139 20.9558 17.2518C21 16.7106 21 16.0463 21 15.2413V8.75868C21 7.95372 21 7.28937 20.9558 6.74818C20.9099 6.18608 20.8113 5.66938 20.564 5.18404C20.1805 4.43139 19.5686 3.81947 18.816 3.43598C18.3306 3.18869 17.8139 3.09012 17.2518 3.0442C16.7106 2.99998 16.0463 2.99999 15.2413 3ZM12.0001 10.3334L14.2001 7.40006C14.5314 6.95823 15.1582 6.86869 15.6001 7.20006C16.0419 7.53143 16.1314 8.15823 15.8001 8.60006L13.0001 12.3334V16.0001C13.0001 16.5523 12.5523 17.0001 12.0001 17.0001C11.4478 17.0001 11.0001 16.5523 11.0001 16.0001V12.3334L8.20006 8.60006C7.86869 8.15823 7.95823 7.53143 8.40006 7.20006C8.84189 6.86869 9.46869 6.95823 9.80006 7.40006L12.0001 10.3334Z", fill: "currentColor" }) })); +export default ChartYAxis; +//# sourceMappingURL=ChartYAxis.js.map \ No newline at end of file diff --git a/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/Icon/svg/ChartYAxis.js.map b/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/Icon/svg/ChartYAxis.js.map new file mode 100644 index 0000000000000000000000000000000000000000..f87059dbfeb17c3a4a5dc1ab77cdf83b0de851f1 --- /dev/null +++ b/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/Icon/svg/ChartYAxis.js.map @@ -0,0 +1 @@ +{"version":3,"file":"ChartYAxis.js","sourceRoot":"","sources":["../../../../../src/components/Icon/svg/ChartYAxis.tsx"],"names":[],"mappings":";AACA,MAAM,UAAU,GAAG,CAAC,KAA8B,EAAE,EAAE,CAAC,CACrD,cAAK,KAAK,EAAC,KAAK,EAAC,MAAM,EAAC,KAAK,EAAC,OAAO,EAAC,WAAW,EAAC,IAAI,EAAC,cAAc,KAAK,KAAK,YAC7E,eACE,CAAC,EAAC,myCAAmyC,EACryC,IAAI,EAAC,cAAc,GACnB,GACE,CACP,CAAA;AACD,eAAe,UAAU,CAAA","sourcesContent":["import type { SVGProps } from \"react\"\nconst ChartYAxis = (props: SVGProps) => (\n \n \n \n)\nexport default ChartYAxis\n"]} \ No newline at end of file diff --git a/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/Icon/svg/Chat.js b/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/Icon/svg/Chat.js new file mode 100644 index 0000000000000000000000000000000000000000..2dd483a1aaa4f877bc84c4099aca3a4382e478c1 --- /dev/null +++ b/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/Icon/svg/Chat.js @@ -0,0 +1,4 @@ +import { jsx as _jsx } from "react/jsx-runtime"; +const Chat = (props) => (_jsx("svg", { width: "1em", height: "1em", viewBox: "0 0 24 24", fill: "currentColor", ...props, children: _jsx("path", { d: "M12 4.5C7.5271 4.5 4 7.91095 4 12C4 13.6958 4.5996 15.263 5.62036 16.5254C5.80473 16.7534 5.87973 17.0509 5.82551 17.339C5.72928 17.8505 5.60336 18.3503 5.45668 18.8401C6.08722 18.743 6.69878 18.6098 7.2983 18.4395C7.54758 18.3687 7.81461 18.3975 8.04312 18.5197C9.20727 19.1423 10.5566 19.5 12 19.5C16.4729 19.5 20 16.0891 20 12C20 7.91095 16.4729 4.5 12 4.5ZM2 12C2 6.70021 6.53177 2.5 12 2.5C17.4682 2.5 22 6.70021 22 12C22 17.2998 17.4682 21.5 12 21.5C10.3694 21.5 8.82593 21.1286 7.46141 20.4675C6.36717 20.7507 5.2423 20.9253 4.06155 20.9981C3.72191 21.019 3.39493 20.8658 3.19366 20.5915C2.9924 20.3171 2.94448 19.9592 3.06647 19.6415C3.35663 18.8859 3.6004 18.1448 3.77047 17.399C2.65693 15.8695 2 14.0088 2 12Z", fill: "currentColor" }) })); +export default Chat; +//# sourceMappingURL=Chat.js.map \ No newline at end of file diff --git a/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/Icon/svg/Chat.js.map b/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/Icon/svg/Chat.js.map new file mode 100644 index 0000000000000000000000000000000000000000..72e4474b437111fb64e733dceb20f52840893f36 --- /dev/null +++ b/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/Icon/svg/Chat.js.map @@ -0,0 +1 @@ +{"version":3,"file":"Chat.js","sourceRoot":"","sources":["../../../../../src/components/Icon/svg/Chat.tsx"],"names":[],"mappings":";AACA,MAAM,IAAI,GAAG,CAAC,KAA8B,EAAE,EAAE,CAAC,CAC/C,cAAK,KAAK,EAAC,KAAK,EAAC,MAAM,EAAC,KAAK,EAAC,OAAO,EAAC,WAAW,EAAC,IAAI,EAAC,cAAc,KAAK,KAAK,YAC7E,eACE,CAAC,EAAC,itBAAitB,EACntB,IAAI,EAAC,cAAc,GACnB,GACE,CACP,CAAA;AACD,eAAe,IAAI,CAAA","sourcesContent":["import type { SVGProps } from \"react\"\nconst Chat = (props: SVGProps) => (\n \n \n \n)\nexport default Chat\n"]} \ No newline at end of file diff --git a/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/Icon/svg/ChatCompose.js b/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/Icon/svg/ChatCompose.js new file mode 100644 index 0000000000000000000000000000000000000000..9e594424fd0ff64b4c510822a5184d7bef715f69 --- /dev/null +++ b/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/Icon/svg/ChatCompose.js @@ -0,0 +1,4 @@ +import { jsx as _jsx } from "react/jsx-runtime"; +const ChatCompose = (props) => (_jsx("svg", { width: "1em", height: "1em", viewBox: "0 0 24 24", fill: "currentColor", ...props, children: _jsx("path", { d: "M12 4.5C7.5271 4.5 4 7.91095 4 12C4 13.6958 4.5996 15.263 5.62036 16.5254C5.80473 16.7534 5.87973 17.0509 5.82551 17.339C5.72928 17.8505 5.60336 18.3503 5.45668 18.8401C6.08722 18.743 6.69878 18.6098 7.2983 18.4395C7.54758 18.3687 7.81461 18.3975 8.04312 18.5197C9.20727 19.1423 10.5566 19.5 12 19.5C16.4729 19.5 20 16.0891 20 12C20 7.91095 16.4729 4.5 12 4.5ZM2 12C2 6.70021 6.53177 2.5 12 2.5C17.4682 2.5 22 6.70021 22 12C22 17.2998 17.4682 21.5 12 21.5C10.3694 21.5 8.82593 21.1286 7.46141 20.4675C6.36717 20.7507 5.2423 20.9253 4.06155 20.9981C3.72191 21.019 3.39493 20.8658 3.19366 20.5915C2.9924 20.3171 2.94448 19.9592 3.06647 19.6415C3.35663 18.8859 3.6004 18.1448 3.77047 17.399C2.65693 15.8695 2 14.0088 2 12ZM12 8C12.5523 8 13 8.44772 13 9V11H15C15.5523 11 16 11.4477 16 12C16 12.5523 15.5523 13 15 13H13V15C13 15.5523 12.5523 16 12 16C11.4477 16 11 15.5523 11 15V13H9C8.44772 13 8 12.5523 8 12C8 11.4477 8.44772 11 9 11H11V9C11 8.44772 11.4477 8 12 8Z", fill: "currentColor" }) })); +export default ChatCompose; +//# sourceMappingURL=ChatCompose.js.map \ No newline at end of file diff --git a/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/Icon/svg/ChatCompose.js.map b/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/Icon/svg/ChatCompose.js.map new file mode 100644 index 0000000000000000000000000000000000000000..b1bd564d3b28797c8fc426de35597cbc09c9d149 --- /dev/null +++ b/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/Icon/svg/ChatCompose.js.map @@ -0,0 +1 @@ +{"version":3,"file":"ChatCompose.js","sourceRoot":"","sources":["../../../../../src/components/Icon/svg/ChatCompose.tsx"],"names":[],"mappings":";AACA,MAAM,WAAW,GAAG,CAAC,KAA8B,EAAE,EAAE,CAAC,CACtD,cAAK,KAAK,EAAC,KAAK,EAAC,MAAM,EAAC,KAAK,EAAC,OAAO,EAAC,WAAW,EAAC,IAAI,EAAC,cAAc,KAAK,KAAK,YAC7E,eACE,CAAC,EAAC,q8BAAq8B,EACv8B,IAAI,EAAC,cAAc,GACnB,GACE,CACP,CAAA;AACD,eAAe,WAAW,CAAA","sourcesContent":["import type { SVGProps } from \"react\"\nconst ChatCompose = (props: SVGProps) => (\n \n \n \n)\nexport default ChatCompose\n"]} \ No newline at end of file diff --git a/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/Icon/svg/ChatDashedCheckedTemp.js b/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/Icon/svg/ChatDashedCheckedTemp.js new file mode 100644 index 0000000000000000000000000000000000000000..033d581eb0ce409b4e867b008b38f3be8632bb6f --- /dev/null +++ b/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/Icon/svg/ChatDashedCheckedTemp.js @@ -0,0 +1,4 @@ +import { jsx as _jsx } from "react/jsx-runtime"; +const ChatDashedCheckedTemp = (props) => (_jsx("svg", { width: "1em", height: "1em", viewBox: "0 0 24 24", fill: "currentColor", ...props, children: _jsx("path", { d: "M10.9778 3.50105C11.0935 4.04107 10.7496 4.57266 10.2095 4.68839C8.69873 5.01217 7.35453 5.73662 6.30709 6.73132C5.90661 7.11163 5.27366 7.09529 4.89335 6.69481C4.51304 6.29433 4.52938 5.66138 4.92986 5.28107C6.24406 4.03304 7.91978 3.13369 9.79045 2.7328C10.3305 2.61707 10.8621 2.96102 10.9778 3.50105ZM13.0222 3.50105C13.1379 2.96102 13.6695 2.61707 14.2095 2.7328C16.0802 3.13369 17.7559 4.03304 19.0701 5.28106C19.4706 5.66138 19.487 6.29433 19.1067 6.69481C18.7263 7.09528 18.0934 7.11163 17.6929 6.73132C16.6455 5.73662 15.3013 5.01217 13.7905 4.68839C13.2504 4.57266 12.9065 4.04107 13.0222 3.50105ZM15.036 8.40581C15.5023 8.70184 15.6402 9.31979 15.3442 9.78603L11.5347 15.786C11.3677 16.049 11.0877 16.2192 10.7774 16.2462C10.4671 16.2733 10.1619 16.1542 9.95186 15.9242L7.76139 13.5242C7.38908 13.1162 7.41795 12.4837 7.82587 12.1114C8.23379 11.7391 8.8663 11.768 9.23861 12.1759L10.5473 13.6098L13.6558 8.71402C13.9518 8.24777 14.5698 8.10978 15.036 8.40581ZM20.2342 8.42182C20.7564 8.24189 21.3255 8.51933 21.5054 9.04149C21.8265 9.97332 22 10.9682 22 12C22 13.0318 21.8265 14.0266 21.5054 14.9585C21.3255 15.4806 20.7564 15.758 20.2342 15.5781C19.712 15.3982 19.4346 14.8291 19.6145 14.3069C19.8647 13.5809 20 12.806 20 12C20 11.1939 19.8647 10.4191 19.6145 9.69304C19.4346 9.17088 19.712 8.60174 20.2342 8.42182ZM3.7658 8.42182C4.28795 8.60174 4.56539 9.17089 4.38547 9.69304C4.1353 10.4191 4 11.1939 4 12C4 12.806 4.1353 13.5809 4.38547 14.3069C4.56539 14.8291 4.28795 15.3982 3.7658 15.5781C3.24364 15.758 2.6745 15.4806 2.49458 14.9584C2.17349 14.0266 2 13.0318 2 12C2 10.9682 2.17349 9.97332 2.49457 9.04149C2.6745 8.51934 3.24364 8.2419 3.7658 8.42182ZM19.1066 17.3051C19.487 17.7056 19.4706 18.3386 19.0701 18.7189C17.7559 19.9669 16.0802 20.8662 14.2095 21.2671C13.6695 21.3829 13.1379 21.0389 13.0222 20.4989C12.9065 19.9589 13.2504 19.4273 13.7905 19.3115C15.3013 18.9878 16.6455 18.2633 17.6929 17.2686C18.0934 16.8883 18.7263 16.9047 19.1066 17.3051ZM4.90351 17.0318C5.43822 17.1701 5.75964 17.7156 5.62142 18.2503C5.57019 18.4485 5.51509 18.645 5.45668 18.8401C6.08722 18.743 6.69878 18.6098 7.2983 18.4395C7.54758 18.3687 7.81461 18.3975 8.04312 18.5197C8.71039 18.8766 9.43831 19.1463 10.2095 19.3115C10.7496 19.4273 11.0935 19.9589 10.9778 20.4989C10.8621 21.0389 10.3305 21.3829 9.79045 21.2671C8.97207 21.0918 8.19108 20.821 7.46142 20.4674C6.36717 20.7507 5.2423 20.9253 4.06155 20.9981C3.72191 21.019 3.39493 20.8658 3.19366 20.5914C2.9924 20.317 2.94448 19.9591 3.06647 19.6415C3.31084 19.0051 3.52253 18.3785 3.68506 17.7498C3.82328 17.215 4.3688 16.8936 4.90351 17.0318Z", fill: "currentColor" }) })); +export default ChatDashedCheckedTemp; +//# sourceMappingURL=ChatDashedCheckedTemp.js.map \ No newline at end of file diff --git a/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/Icon/svg/ChatDashedCheckedTemp.js.map b/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/Icon/svg/ChatDashedCheckedTemp.js.map new file mode 100644 index 0000000000000000000000000000000000000000..f040c3f9358bc01ae8eaf6866c51343b011bc2fa --- /dev/null +++ b/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/Icon/svg/ChatDashedCheckedTemp.js.map @@ -0,0 +1 @@ +{"version":3,"file":"ChatDashedCheckedTemp.js","sourceRoot":"","sources":["../../../../../src/components/Icon/svg/ChatDashedCheckedTemp.tsx"],"names":[],"mappings":";AACA,MAAM,qBAAqB,GAAG,CAAC,KAA8B,EAAE,EAAE,CAAC,CAChE,cAAK,KAAK,EAAC,KAAK,EAAC,MAAM,EAAC,KAAK,EAAC,OAAO,EAAC,WAAW,EAAC,IAAI,EAAC,cAAc,KAAK,KAAK,YAC7E,eACE,CAAC,EAAC,ijFAAijF,EACnjF,IAAI,EAAC,cAAc,GACnB,GACE,CACP,CAAA;AACD,eAAe,qBAAqB,CAAA","sourcesContent":["import type { SVGProps } from \"react\"\nconst ChatDashedCheckedTemp = (props: SVGProps) => (\n \n \n \n)\nexport default ChatDashedCheckedTemp\n"]} \ No newline at end of file diff --git a/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/Icon/svg/ChatDashedTemp.js b/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/Icon/svg/ChatDashedTemp.js new file mode 100644 index 0000000000000000000000000000000000000000..ac3bef60107e1ca214f9423b387150b4316e9b96 --- /dev/null +++ b/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/Icon/svg/ChatDashedTemp.js @@ -0,0 +1,4 @@ +import { jsx as _jsx } from "react/jsx-runtime"; +const ChatDashedTemp = (props) => (_jsx("svg", { width: "1em", height: "1em", viewBox: "0 0 24 24", fill: "currentColor", ...props, children: _jsx("path", { d: "M10.9778 3.50111C11.0935 4.04113 10.7496 4.57272 10.2095 4.68845C8.69873 5.01223 7.35453 5.73668 6.30709 6.73138C5.90662 7.11169 5.27366 7.09534 4.89335 6.69487C4.51304 6.29439 4.52939 5.66144 4.92986 5.28113C6.24406 4.0331 7.91978 3.13375 9.79045 2.73286C10.3305 2.61713 10.8621 2.96109 10.9778 3.50111ZM13.0222 3.50111C13.1379 2.96109 13.6695 2.61713 14.2095 2.73286C16.0803 3.13376 17.756 4.03313 19.0702 5.2812C19.4707 5.66151 19.487 6.29447 19.1067 6.69494C18.7264 7.09541 18.0934 7.11175 17.693 6.73144C16.6455 5.73671 15.3013 5.01224 13.7905 4.68845C13.2504 4.57272 12.9065 4.04113 13.0222 3.50111ZM3.7658 8.42188C4.28796 8.6018 4.56539 9.17094 4.38547 9.6931C4.1353 10.4191 4 11.194 4 12C4 12.8061 4.13531 13.581 4.38549 14.307C4.56542 14.8292 4.28799 15.3983 3.76584 15.5783C3.24368 15.7582 2.67454 15.4808 2.49461 14.9586C2.1735 14.0267 2 13.0318 2 12C2 10.9682 2.17349 9.97338 2.49458 9.04155C2.6745 8.51939 3.24364 8.24195 3.7658 8.42188ZM20.2342 8.42196C20.7564 8.24204 21.3255 8.51948 21.5055 9.04164C21.8265 9.97345 22 10.9683 22 12C22 13.0318 21.8265 14.0267 21.5054 14.9585C21.3255 15.4807 20.7564 15.7581 20.2342 15.5782C19.712 15.3983 19.4346 14.8291 19.6145 14.307C19.8647 13.5809 20 12.8061 20 12C20 11.194 19.8647 10.4192 19.6146 9.69318C19.4346 9.17102 19.7121 8.60187 20.2342 8.42196ZM4.90468 17.0255C5.43946 17.1635 5.76113 17.7089 5.62315 18.2436C5.57143 18.4441 5.51575 18.6429 5.45668 18.8401C6.08722 18.7431 6.69878 18.6098 7.2983 18.4396C7.54758 18.3688 7.81461 18.3975 8.04312 18.5197C8.71039 18.8766 9.43831 19.1463 10.2095 19.3116C10.7496 19.4273 11.0935 19.9589 10.9778 20.4989C10.8621 21.039 10.3305 21.3829 9.79045 21.2672C8.97207 21.0918 8.19108 20.8211 7.46141 20.4675C6.36717 20.7508 5.2423 20.9253 4.06155 20.9981C3.72191 21.0191 3.39493 20.8659 3.19366 20.5915C2.9924 20.3171 2.94448 19.9592 3.06647 19.6415C3.31159 19.0032 3.52384 18.3747 3.68657 17.744C3.82454 17.2092 4.36991 16.8875 4.90468 17.0255ZM19.1067 17.3052C19.487 17.7057 19.4706 18.3386 19.0701 18.7189C17.7559 19.967 16.0802 20.8663 14.2095 21.2672C13.6695 21.3829 13.1379 21.039 13.0222 20.4989C12.9065 19.9589 13.2504 19.4273 13.7905 19.3116C15.3013 18.9878 16.6455 18.2634 17.6929 17.2687C18.0934 16.8884 18.7263 16.9047 19.1067 17.3052Z", fill: "currentColor" }) })); +export default ChatDashedTemp; +//# sourceMappingURL=ChatDashedTemp.js.map \ No newline at end of file diff --git a/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/Icon/svg/ChatDashedTemp.js.map b/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/Icon/svg/ChatDashedTemp.js.map new file mode 100644 index 0000000000000000000000000000000000000000..e0d50b30308a2eecc381eccfef98fd0ee092f4a7 --- /dev/null +++ b/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/Icon/svg/ChatDashedTemp.js.map @@ -0,0 +1 @@ +{"version":3,"file":"ChatDashedTemp.js","sourceRoot":"","sources":["../../../../../src/components/Icon/svg/ChatDashedTemp.tsx"],"names":[],"mappings":";AACA,MAAM,cAAc,GAAG,CAAC,KAA8B,EAAE,EAAE,CAAC,CACzD,cAAK,KAAK,EAAC,KAAK,EAAC,MAAM,EAAC,KAAK,EAAC,OAAO,EAAC,WAAW,EAAC,IAAI,EAAC,cAAc,KAAK,KAAK,YAC7E,eACE,CAAC,EAAC,wsEAAwsE,EAC1sE,IAAI,EAAC,cAAc,GACnB,GACE,CACP,CAAA;AACD,eAAe,cAAc,CAAA","sourcesContent":["import type { SVGProps } from \"react\"\nconst ChatDashedTemp = (props: SVGProps) => (\n \n \n \n)\nexport default ChatDashedTemp\n"]} \ No newline at end of file diff --git a/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/Icon/svg/ChatTemporary.js b/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/Icon/svg/ChatTemporary.js new file mode 100644 index 0000000000000000000000000000000000000000..10930f46b9c2662f3ac808d9e78bdfa044a01954 --- /dev/null +++ b/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/Icon/svg/ChatTemporary.js @@ -0,0 +1,4 @@ +import { jsx as _jsx } from "react/jsx-runtime"; +const ChatTemporary = (props) => (_jsx("svg", { width: "1em", height: "1em", viewBox: "0 0 24 24", fill: "currentColor", ...props, children: _jsx("path", { d: "M3.716 17.652a1 1 0 0 1 1.905.6l-.15.537c-.004.017-.01.033-.016.05a15.042 15.042 0 0 0 1.843-.4l.095-.02a1 1 0 0 1 .65.1 8.256 8.256 0 0 0 1.88.726l.287.067.099.026a1 1 0 0 1-.417 1.946l-.102-.016-.355-.083a10.26 10.26 0 0 1-1.975-.719 17.82 17.82 0 0 1-3.398.532 1 1 0 0 1-.996-1.356c.245-.636.457-1.263.62-1.892l.03-.098Zm13.977-.383a1 1 0 0 1 1.377 1.45 10.141 10.141 0 0 1-4.86 2.549l-.102.016a1 1 0 0 1-.318-1.972l.281-.066a8.128 8.128 0 0 0 3.622-1.977ZM2 12c0-1.031.173-2.026.494-2.958l.04-.095a1 1 0 0 1 1.852.747l-.09.274A7.066 7.066 0 0 0 4 12c0 .806.136 1.582.386 2.308a1 1 0 0 1-1.892.651A9.065 9.065 0 0 1 2 12Zm19.506 2.96a1 1 0 0 1-1.892-.652l1.892.651ZM20 12c0-.705-.103-1.386-.297-2.032l-.089-.274-.028-.1a1 1 0 0 1 1.88-.647l.04.095.113.353c.248.828.381 1.703.381 2.605a9.068 9.068 0 0 1-.494 2.96l-1.892-.652c.25-.726.386-1.502.386-2.308ZM9.79 2.734a1 1 0 0 1 .42 1.955 8.144 8.144 0 0 0-3.903 2.043l-.078.066a1 1 0 0 1-1.3-1.517l.252-.23A10.158 10.158 0 0 1 9.79 2.735Zm4.318-.017.102.017.348.08a10.141 10.141 0 0 1 4.261 2.238l.251.23.07.074a1 1 0 0 1-1.37 1.442l-.077-.066-.2-.183a8.143 8.143 0 0 0-3.422-1.795l-.281-.065-.099-.027a1 1 0 0 1 .417-1.945Z" }) })); +export default ChatTemporary; +//# sourceMappingURL=ChatTemporary.js.map \ No newline at end of file diff --git a/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/Icon/svg/ChatTemporary.js.map b/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/Icon/svg/ChatTemporary.js.map new file mode 100644 index 0000000000000000000000000000000000000000..5dfa92a80f34d07e69890334f45f34d10fad6d84 --- /dev/null +++ b/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/Icon/svg/ChatTemporary.js.map @@ -0,0 +1 @@ +{"version":3,"file":"ChatTemporary.js","sourceRoot":"","sources":["../../../../../src/components/Icon/svg/ChatTemporary.tsx"],"names":[],"mappings":";AACA,MAAM,aAAa,GAAG,CAAC,KAA8B,EAAE,EAAE,CAAC,CACxD,cAAK,KAAK,EAAC,KAAK,EAAC,MAAM,EAAC,KAAK,EAAC,OAAO,EAAC,WAAW,EAAC,IAAI,EAAC,cAAc,KAAK,KAAK,YAC7E,eAAM,CAAC,EAAC,ypCAAypC,GAAG,GAChqC,CACP,CAAA;AACD,eAAe,aAAa,CAAA","sourcesContent":["import type { SVGProps } from \"react\"\nconst ChatTemporary = (props: SVGProps) => (\n \n \n \n)\nexport default ChatTemporary\n"]} \ No newline at end of file diff --git a/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/Icon/svg/ChatTripleDots.js b/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/Icon/svg/ChatTripleDots.js new file mode 100644 index 0000000000000000000000000000000000000000..217710143b6e1c0a05a4872b85ba63e920aee460 --- /dev/null +++ b/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/Icon/svg/ChatTripleDots.js @@ -0,0 +1,4 @@ +import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime"; +const ChatTripleDots = (props) => (_jsxs("svg", { width: "1em", height: "1em", viewBox: "0 0 24 24", fill: "currentColor", ...props, children: [_jsx("path", { d: "M12 4.5C7.5271 4.5 4 7.91095 4 12C4 13.6958 4.5996 15.263 5.62036 16.5254C5.80473 16.7534 5.87973 17.0509 5.82551 17.339C5.72928 17.8505 5.60336 18.3503 5.45668 18.8401C6.08722 18.743 6.69878 18.6098 7.2983 18.4395C7.54758 18.3687 7.81461 18.3975 8.04312 18.5197C9.20727 19.1423 10.5566 19.5 12 19.5C16.4729 19.5 20 16.0891 20 12C20 7.91095 16.4729 4.5 12 4.5ZM2 12C2 6.70021 6.53177 2.5 12 2.5C17.4682 2.5 22 6.70021 22 12C22 17.2998 17.4682 21.5 12 21.5C10.3694 21.5 8.82593 21.1286 7.46141 20.4675C6.36717 20.7507 5.2423 20.9253 4.06155 20.9981C3.72191 21.019 3.39493 20.8658 3.19366 20.5915C2.9924 20.3171 2.94448 19.9592 3.06647 19.6415C3.35663 18.8859 3.6004 18.1448 3.77047 17.399C2.65693 15.8695 2 14.0088 2 12Z", fill: "currentColor" }), _jsx("path", { d: "M9.25 12C9.25 12.6904 8.69036 13.25 8 13.25C7.30964 13.25 6.75 12.6904 6.75 12C6.75 11.3096 7.30964 10.75 8 10.75C8.69036 10.75 9.25 11.3096 9.25 12Z", fill: "currentColor" }), _jsx("path", { d: "M13.25 12C13.25 12.6904 12.6904 13.25 12 13.25C11.3096 13.25 10.75 12.6904 10.75 12C10.75 11.3096 11.3096 10.75 12 10.75C12.6904 10.75 13.25 11.3096 13.25 12Z", fill: "currentColor" }), _jsx("path", { d: "M17.25 12C17.25 12.6904 16.6904 13.25 16 13.25C15.3096 13.25 14.75 12.6904 14.75 12C14.75 11.3096 15.3096 10.75 16 10.75C16.6904 10.75 17.25 11.3096 17.25 12Z", fill: "currentColor" })] })); +export default ChatTripleDots; +//# sourceMappingURL=ChatTripleDots.js.map \ No newline at end of file diff --git a/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/Icon/svg/ChatTripleDots.js.map b/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/Icon/svg/ChatTripleDots.js.map new file mode 100644 index 0000000000000000000000000000000000000000..c4d3bd8adfc96538ab28dd95d930997ebfa50b41 --- /dev/null +++ b/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/Icon/svg/ChatTripleDots.js.map @@ -0,0 +1 @@ +{"version":3,"file":"ChatTripleDots.js","sourceRoot":"","sources":["../../../../../src/components/Icon/svg/ChatTripleDots.tsx"],"names":[],"mappings":";AACA,MAAM,cAAc,GAAG,CAAC,KAA8B,EAAE,EAAE,CAAC,CACzD,eAAK,KAAK,EAAC,KAAK,EAAC,MAAM,EAAC,KAAK,EAAC,OAAO,EAAC,WAAW,EAAC,IAAI,EAAC,cAAc,KAAK,KAAK,aAC7E,eACE,CAAC,EAAC,itBAAitB,EACntB,IAAI,EAAC,cAAc,GACnB,EACF,eACE,CAAC,EAAC,uJAAuJ,EACzJ,IAAI,EAAC,cAAc,GACnB,EACF,eACE,CAAC,EAAC,gKAAgK,EAClK,IAAI,EAAC,cAAc,GACnB,EACF,eACE,CAAC,EAAC,gKAAgK,EAClK,IAAI,EAAC,cAAc,GACnB,IACE,CACP,CAAA;AACD,eAAe,cAAc,CAAA","sourcesContent":["import type { SVGProps } from \"react\"\nconst ChatTripleDots = (props: SVGProps) => (\n \n \n \n \n \n \n)\nexport default ChatTripleDots\n"]} \ No newline at end of file diff --git a/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/Icon/svg/Chats.js b/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/Icon/svg/Chats.js new file mode 100644 index 0000000000000000000000000000000000000000..74fc0cb51d6913b6f3b5cf76c111489d0e95991c --- /dev/null +++ b/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/Icon/svg/Chats.js @@ -0,0 +1,4 @@ +import { jsx as _jsx } from "react/jsx-runtime"; +const Chats = (props) => (_jsx("svg", { width: "1em", height: "1em", viewBox: "0 0 24 24", fill: "currentColor", ...props, children: _jsx("path", { fillRule: "evenodd", clipRule: "evenodd", d: "M10.8338 4.78537C12.0783 3.67377 13.7568 3 15.5909 3C19.3379 3 22.5 5.84379 22.5 9.5C22.5 10.6675 22.1723 11.7617 21.6035 12.7049C21.7082 13.3446 21.9041 13.9807 22.1568 14.6441C22.2777 14.9617 22.2291 15.319 22.0276 15.5928C21.8261 15.8665 21.4994 16.0192 21.1602 15.9981C20.0211 15.9272 18.9547 15.7195 17.9166 15.3624C17.3944 15.1827 17.1167 14.6137 17.2963 14.0914C17.476 13.5692 18.045 13.2915 18.5673 13.4712C18.9672 13.6088 19.3734 13.7202 19.7912 13.8061C19.6925 13.4107 19.6153 13.0038 19.5687 12.5843C19.542 12.3446 19.6029 12.1033 19.7402 11.9049C20.2241 11.2056 20.5 10.3815 20.5 9.5C20.5 7.08108 18.3709 5 15.5909 5C14.2496 5 13.0451 5.4919 12.1662 6.27698C11.7543 6.64489 11.1221 6.60924 10.7542 6.19734C10.3863 5.78544 10.4219 5.15328 10.8338 4.78537ZM8.5 10C5.65489 10 3.5 12.0948 3.5 14.5C3.5 15.3779 3.77893 16.1999 4.27013 16.899C4.41055 17.0989 4.47295 17.3433 4.44557 17.586C4.39815 18.0063 4.31955 18.4139 4.21925 18.8099C4.65229 18.7232 5.07312 18.61 5.48727 18.4697C5.72968 18.3875 5.99435 18.4015 6.22679 18.5086C6.90579 18.8216 7.67742 19 8.5 19C11.3451 19 13.5 16.9052 13.5 14.5C13.5 12.0948 11.3451 10 8.5 10ZM1.5 14.5C1.5 10.83 4.71769 8 8.5 8C12.2823 8 15.5 10.83 15.5 14.5C15.5 18.17 12.2823 21 8.5 21C7.53025 21 6.60309 20.8166 5.75878 20.4828C4.82364 20.7669 3.86215 20.9357 2.84316 20.9981C2.50317 21.0189 2.17597 20.8653 1.97489 20.5903C1.7738 20.3154 1.72649 19.957 1.84935 19.6393C2.10511 18.9779 2.3033 18.3443 2.40969 17.7075C1.83301 16.7645 1.5 15.6694 1.5 14.5Z", fill: "currentColor" }) })); +export default Chats; +//# sourceMappingURL=Chats.js.map \ No newline at end of file diff --git a/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/Icon/svg/Chats.js.map b/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/Icon/svg/Chats.js.map new file mode 100644 index 0000000000000000000000000000000000000000..0a2ad5fed044316290af06381f126f68c3044a1a --- /dev/null +++ b/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/Icon/svg/Chats.js.map @@ -0,0 +1 @@ +{"version":3,"file":"Chats.js","sourceRoot":"","sources":["../../../../../src/components/Icon/svg/Chats.tsx"],"names":[],"mappings":";AACA,MAAM,KAAK,GAAG,CAAC,KAA8B,EAAE,EAAE,CAAC,CAChD,cAAK,KAAK,EAAC,KAAK,EAAC,MAAM,EAAC,KAAK,EAAC,OAAO,EAAC,WAAW,EAAC,IAAI,EAAC,cAAc,KAAK,KAAK,YAC7E,eACE,QAAQ,EAAC,SAAS,EAClB,QAAQ,EAAC,SAAS,EAClB,CAAC,EAAC,g+CAAg+C,EACl+C,IAAI,EAAC,cAAc,GACnB,GACE,CACP,CAAA;AACD,eAAe,KAAK,CAAA","sourcesContent":["import type { SVGProps } from \"react\"\nconst Chats = (props: SVGProps) => (\n \n \n \n)\nexport default Chats\n"]} \ No newline at end of file diff --git a/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/Icon/svg/Check.js b/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/Icon/svg/Check.js new file mode 100644 index 0000000000000000000000000000000000000000..117fee11d1e965a55baf3a44280d1ad560665ec5 --- /dev/null +++ b/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/Icon/svg/Check.js @@ -0,0 +1,4 @@ +import { jsx as _jsx } from "react/jsx-runtime"; +const Check = (props) => (_jsx("svg", { width: "1em", height: "1em", viewBox: "0 0 24 24", fill: "currentColor", ...props, children: _jsx("path", { fillRule: "evenodd", d: "M18.063 5.674a1 1 0 0 1 .263 1.39l-7.5 11a1 1 0 0 1-1.533.143l-4.5-4.5a1 1 0 1 1 1.414-1.414l3.647 3.647 6.82-10.003a1 1 0 0 1 1.39-.263Z", clipRule: "evenodd" }) })); +export default Check; +//# sourceMappingURL=Check.js.map \ No newline at end of file diff --git a/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/Icon/svg/Check.js.map b/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/Icon/svg/Check.js.map new file mode 100644 index 0000000000000000000000000000000000000000..5050c4a725510c9e23759bca8890cc2772cd4087 --- /dev/null +++ b/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/Icon/svg/Check.js.map @@ -0,0 +1 @@ +{"version":3,"file":"Check.js","sourceRoot":"","sources":["../../../../../src/components/Icon/svg/Check.tsx"],"names":[],"mappings":";AACA,MAAM,KAAK,GAAG,CAAC,KAA8B,EAAE,EAAE,CAAC,CAChD,cAAK,KAAK,EAAC,KAAK,EAAC,MAAM,EAAC,KAAK,EAAC,OAAO,EAAC,WAAW,EAAC,IAAI,EAAC,cAAc,KAAK,KAAK,YAC7E,eACE,QAAQ,EAAC,SAAS,EAClB,CAAC,EAAC,2IAA2I,EAC7I,QAAQ,EAAC,SAAS,GAClB,GACE,CACP,CAAA;AACD,eAAe,KAAK,CAAA","sourcesContent":["import type { SVGProps } from \"react\"\nconst Check = (props: SVGProps) => (\n \n \n \n)\nexport default Check\n"]} \ No newline at end of file diff --git a/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/Icon/svg/CheckCircle.js b/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/Icon/svg/CheckCircle.js new file mode 100644 index 0000000000000000000000000000000000000000..8d1e1994d7e4322cd710d0b7e3c506755130f394 --- /dev/null +++ b/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/Icon/svg/CheckCircle.js @@ -0,0 +1,4 @@ +import { jsx as _jsx } from "react/jsx-runtime"; +const CheckCircle = (props) => (_jsx("svg", { width: "1em", height: "1em", viewBox: "0 0 24 24", fill: "currentColor", ...props, children: _jsx("path", { d: "M12 4C7.58172 4 4 7.58172 4 12C4 16.4183 7.58172 20 12 20C16.4183 20 20 16.4183 20 12C20 7.58172 16.4183 4 12 4ZM2 12C2 6.47715 6.47715 2 12 2C17.5228 2 22 6.47715 22 12C22 17.5228 17.5228 22 12 22C6.47715 22 2 17.5228 2 12ZM16.0755 7.93219C16.5272 8.25003 16.6356 8.87383 16.3178 9.32549L11.5678 16.0755C11.3931 16.3237 11.1152 16.4792 10.8123 16.4981C10.5093 16.517 10.2142 16.3973 10.0101 16.1727L7.51006 13.4227C7.13855 13.014 7.16867 12.3816 7.57733 12.0101C7.98598 11.6386 8.61843 11.6687 8.98994 12.0773L10.6504 13.9039L14.6822 8.17451C15 7.72284 15.6238 7.61436 16.0755 7.93219Z", fill: "currentColor" }) })); +export default CheckCircle; +//# sourceMappingURL=CheckCircle.js.map \ No newline at end of file diff --git a/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/Icon/svg/CheckCircle.js.map b/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/Icon/svg/CheckCircle.js.map new file mode 100644 index 0000000000000000000000000000000000000000..1049ab5a112b1f3a08a6fd55887dfa43c3279bd2 --- /dev/null +++ b/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/Icon/svg/CheckCircle.js.map @@ -0,0 +1 @@ +{"version":3,"file":"CheckCircle.js","sourceRoot":"","sources":["../../../../../src/components/Icon/svg/CheckCircle.tsx"],"names":[],"mappings":";AACA,MAAM,WAAW,GAAG,CAAC,KAA8B,EAAE,EAAE,CAAC,CACtD,cAAK,KAAK,EAAC,KAAK,EAAC,MAAM,EAAC,KAAK,EAAC,OAAO,EAAC,WAAW,EAAC,IAAI,EAAC,cAAc,KAAK,KAAK,YAC7E,eACE,CAAC,EAAC,4kBAA4kB,EAC9kB,IAAI,EAAC,cAAc,GACnB,GACE,CACP,CAAA;AACD,eAAe,WAAW,CAAA","sourcesContent":["import type { SVGProps } from \"react\"\nconst CheckCircle = (props: SVGProps) => (\n \n \n \n)\nexport default CheckCircle\n"]} \ No newline at end of file diff --git a/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/Icon/svg/CheckCircleDashed.js b/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/Icon/svg/CheckCircleDashed.js new file mode 100644 index 0000000000000000000000000000000000000000..8dd0959f54db40c267b53c224c90d9145f21d0f1 --- /dev/null +++ b/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/Icon/svg/CheckCircleDashed.js @@ -0,0 +1,4 @@ +import { jsx as _jsx } from "react/jsx-runtime"; +const CheckCircleDashed = (props) => (_jsx("svg", { width: "1em", height: "1em", viewBox: "0 0 24 24", fill: "currentColor", ...props, children: _jsx("path", { fillRule: "evenodd", clipRule: "evenodd", d: "M14.3607 4.35618C12.8474 3.88926 11.2017 3.87011 9.63958 4.35412C9.11204 4.51757 8.55187 4.22242 8.38842 3.69488C8.22496 3.16734 8.52011 2.60717 9.04765 2.44372C11.005 1.83724 13.0627 1.86266 14.9503 2.44508C15.4781 2.60791 15.7739 3.16772 15.6111 3.69546C15.4482 4.22319 14.8884 4.51901 14.3607 4.35618ZM17.3877 4.7184C17.7634 4.31353 18.3961 4.28983 18.801 4.66546C19.5176 5.33035 20.1474 6.11163 20.6603 7.00001C21.1732 7.88838 21.5349 8.82444 21.7524 9.77751C21.8753 10.316 21.5384 10.8521 21 10.9749C20.4615 11.0978 19.9254 10.7609 19.8025 10.2225C19.629 9.46207 19.3401 8.71335 18.9283 8.00001C18.5164 7.28666 18.0125 6.6621 17.4407 6.13162C17.0358 5.75599 17.0121 5.12327 17.3877 4.7184ZM6.61343 4.71967C6.98856 5.125 6.96409 5.75769 6.55876 6.13283C5.35855 7.24364 4.55229 8.67842 4.2 10.2224C4.07714 10.7609 3.54105 11.0978 3.0026 10.9749C2.46416 10.8521 2.12725 10.316 2.25011 9.77754C2.68955 7.85157 3.69637 6.05688 5.20027 4.665C5.6056 4.28987 6.23829 4.31434 6.61343 4.71967ZM16.0755 7.9322C16.5272 8.25003 16.6357 8.87383 16.3179 9.3255L11.5679 16.0755C11.3932 16.3237 11.1152 16.4792 10.8123 16.4981C10.5094 16.517 10.2143 16.3973 10.0101 16.1727L7.51012 13.4227C7.13861 13.014 7.16873 12.3816 7.57738 12.0101C7.98604 11.6386 8.61849 11.6687 8.99 12.0773L10.6505 13.9039L14.6822 8.17451C15.0001 7.72285 15.6239 7.61436 16.0755 7.9322ZM20.9975 13.025C21.536 13.1479 21.8729 13.684 21.75 14.2224C21.3106 16.1484 20.3037 17.9431 18.7998 19.335C18.3945 19.7101 17.7618 19.6857 17.3867 19.2803C17.0115 18.875 17.036 18.2423 17.4414 17.8672C18.6416 16.7564 19.4478 15.3216 19.8001 13.7775C19.923 13.2391 20.4591 12.9022 20.9975 13.025ZM3.00015 13.0251C3.5386 12.9022 4.0747 13.2391 4.19757 13.7775C4.3711 14.5379 4.66 15.2867 5.07185 16C5.4837 16.7134 5.98766 17.3379 6.55944 17.8684C6.9643 18.244 6.98801 18.8767 6.61237 19.2816C6.23674 19.6865 5.60402 19.7102 5.19915 19.3346C4.48251 18.6697 3.85271 17.8884 3.3398 17C2.82689 16.1116 2.46519 15.1756 2.24769 14.2225C2.12482 13.684 2.46171 13.1479 3.00015 13.0251ZM8.38905 20.3046C8.55188 19.7768 9.11169 19.481 9.63943 19.6438C11.1527 20.1108 12.7984 20.1299 14.3605 19.6459C14.8881 19.4824 15.4482 19.7776 15.6117 20.3051C15.7752 20.8327 15.48 21.3928 14.9525 21.5563C12.9951 22.1628 10.9374 22.1374 9.04978 21.5549C8.52204 21.3921 8.22622 20.8323 8.38905 20.3046Z", fill: "currentColor" }) })); +export default CheckCircleDashed; +//# sourceMappingURL=CheckCircleDashed.js.map \ No newline at end of file diff --git a/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/Icon/svg/CheckCircleDashed.js.map b/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/Icon/svg/CheckCircleDashed.js.map new file mode 100644 index 0000000000000000000000000000000000000000..50374031b2f8bc51dbdd688c834729944599ff30 --- /dev/null +++ b/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/Icon/svg/CheckCircleDashed.js.map @@ -0,0 +1 @@ +{"version":3,"file":"CheckCircleDashed.js","sourceRoot":"","sources":["../../../../../src/components/Icon/svg/CheckCircleDashed.tsx"],"names":[],"mappings":";AACA,MAAM,iBAAiB,GAAG,CAAC,KAA8B,EAAE,EAAE,CAAC,CAC5D,cAAK,KAAK,EAAC,KAAK,EAAC,MAAM,EAAC,KAAK,EAAC,OAAO,EAAC,WAAW,EAAC,IAAI,EAAC,cAAc,KAAK,KAAK,YAC7E,eACE,QAAQ,EAAC,SAAS,EAClB,QAAQ,EAAC,SAAS,EAClB,CAAC,EAAC,wxEAAwxE,EAC1xE,IAAI,EAAC,cAAc,GACnB,GACE,CACP,CAAA;AACD,eAAe,iBAAiB,CAAA","sourcesContent":["import type { SVGProps } from \"react\"\nconst CheckCircleDashed = (props: SVGProps) => (\n \n \n \n)\nexport default CheckCircleDashed\n"]} \ No newline at end of file diff --git a/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/Icon/svg/CheckCircleFilled.js b/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/Icon/svg/CheckCircleFilled.js new file mode 100644 index 0000000000000000000000000000000000000000..572e00b79ebf197e6525bc6f458fe805f2c7eefc --- /dev/null +++ b/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/Icon/svg/CheckCircleFilled.js @@ -0,0 +1,4 @@ +import { jsx as _jsx } from "react/jsx-runtime"; +const CheckCircleFilled = (props) => (_jsx("svg", { width: "1em", height: "1em", viewBox: "0 0 24 24", fill: "currentColor", ...props, children: _jsx("path", { d: "M2 12C2 6.47715 6.47715 2 12 2C17.5228 2 22 6.47715 22 12C22 17.5228 17.5228 22 12 22C6.47715 22 2 17.5228 2 12ZM16.0755 7.93219C15.6238 7.61436 15 7.72284 14.6822 8.17451L10.6504 13.9039L8.98994 12.0773C8.61843 11.6687 7.98598 11.6386 7.57733 12.0101C7.16867 12.3816 7.13855 13.014 7.51006 13.4227L10.0101 16.1727C10.2142 16.3973 10.5093 16.517 10.8123 16.4981C11.1152 16.4792 11.3931 16.3237 11.5678 16.0755L16.3178 9.32549C16.6356 8.87383 16.5272 8.25003 16.0755 7.93219Z", fill: "currentColor" }) })); +export default CheckCircleFilled; +//# sourceMappingURL=CheckCircleFilled.js.map \ No newline at end of file diff --git a/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/Icon/svg/CheckCircleFilled.js.map b/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/Icon/svg/CheckCircleFilled.js.map new file mode 100644 index 0000000000000000000000000000000000000000..44401803ec8d71f0277317fc9b17c2aa9cd18657 --- /dev/null +++ b/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/Icon/svg/CheckCircleFilled.js.map @@ -0,0 +1 @@ +{"version":3,"file":"CheckCircleFilled.js","sourceRoot":"","sources":["../../../../../src/components/Icon/svg/CheckCircleFilled.tsx"],"names":[],"mappings":";AACA,MAAM,iBAAiB,GAAG,CAAC,KAA8B,EAAE,EAAE,CAAC,CAC5D,cAAK,KAAK,EAAC,KAAK,EAAC,MAAM,EAAC,KAAK,EAAC,OAAO,EAAC,WAAW,EAAC,IAAI,EAAC,cAAc,KAAK,KAAK,YAC7E,eACE,CAAC,EAAC,4dAA4d,EAC9d,IAAI,EAAC,cAAc,GACnB,GACE,CACP,CAAA;AACD,eAAe,iBAAiB,CAAA","sourcesContent":["import type { SVGProps } from \"react\"\nconst CheckCircleFilled = (props: SVGProps) => (\n \n \n \n)\nexport default CheckCircleFilled\n"]} \ No newline at end of file diff --git a/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/Icon/svg/CheckLg.js b/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/Icon/svg/CheckLg.js new file mode 100644 index 0000000000000000000000000000000000000000..853911c269b1f11d204e113aaf3471694b168016 --- /dev/null +++ b/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/Icon/svg/CheckLg.js @@ -0,0 +1,4 @@ +import { jsx as _jsx } from "react/jsx-runtime"; +const CheckLg = (props) => (_jsx("svg", { width: "1em", height: "1em", viewBox: "0 0 24 24", fill: "currentColor", ...props, children: _jsx("path", { d: "M20.3215 4.17948C20.7747 4.49511 20.8862 5.11837 20.5706 5.57158L10.8206 19.5716C10.6514 19.8145 10.3833 19.97 10.0884 19.9962C9.79354 20.0223 9.50222 19.9165 9.29289 19.7072L3.54289 13.9572C3.15237 13.5667 3.15237 12.9335 3.54289 12.543C3.93342 12.1525 4.56658 12.1525 4.95711 12.543L9.86223 17.4481L18.9294 4.42859C19.245 3.97539 19.8683 3.86385 20.3215 4.17948Z", fill: "currentColor" }) })); +export default CheckLg; +//# sourceMappingURL=CheckLg.js.map \ No newline at end of file diff --git a/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/Icon/svg/CheckLg.js.map b/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/Icon/svg/CheckLg.js.map new file mode 100644 index 0000000000000000000000000000000000000000..f79c52990ca20b60eb413c16decae2426daf9236 --- /dev/null +++ b/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/Icon/svg/CheckLg.js.map @@ -0,0 +1 @@ +{"version":3,"file":"CheckLg.js","sourceRoot":"","sources":["../../../../../src/components/Icon/svg/CheckLg.tsx"],"names":[],"mappings":";AACA,MAAM,OAAO,GAAG,CAAC,KAA8B,EAAE,EAAE,CAAC,CAClD,cAAK,KAAK,EAAC,KAAK,EAAC,MAAM,EAAC,KAAK,EAAC,OAAO,EAAC,WAAW,EAAC,IAAI,EAAC,cAAc,KAAK,KAAK,YAC7E,eACE,CAAC,EAAC,8WAA8W,EAChX,IAAI,EAAC,cAAc,GACnB,GACE,CACP,CAAA;AACD,eAAe,OAAO,CAAA","sourcesContent":["import type { SVGProps } from \"react\"\nconst CheckLg = (props: SVGProps) => (\n \n \n \n)\nexport default CheckLg\n"]} \ No newline at end of file diff --git a/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/Icon/svg/CheckMd.js b/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/Icon/svg/CheckMd.js new file mode 100644 index 0000000000000000000000000000000000000000..b3c14fdffb184aa1409e265103329b401a239d3f --- /dev/null +++ b/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/Icon/svg/CheckMd.js @@ -0,0 +1,4 @@ +import { jsx as _jsx } from "react/jsx-runtime"; +const CheckMd = (props) => (_jsx("svg", { width: "1em", height: "1em", viewBox: "0 0 24 24", fill: "currentColor", ...props, children: _jsx("path", { d: "M18.0633 5.67387C18.5196 5.98499 18.6374 6.60712 18.3262 7.06343L10.8262 18.0634C10.6585 18.3095 10.3898 18.4679 10.0934 18.4957C9.79688 18.5235 9.50345 18.4178 9.29289 18.2072L4.79289 13.7072C4.40237 13.3167 4.40237 12.6835 4.79289 12.293C5.18342 11.9025 5.81658 11.9025 6.20711 12.293L9.85368 15.9396L16.6738 5.93676C16.9849 5.48045 17.607 5.36275 18.0633 5.67387Z", fill: "currentColor" }) })); +export default CheckMd; +//# sourceMappingURL=CheckMd.js.map \ No newline at end of file diff --git a/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/Icon/svg/CheckMd.js.map b/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/Icon/svg/CheckMd.js.map new file mode 100644 index 0000000000000000000000000000000000000000..c575ee96d5f4cae7215c6f539da0b97a15bda9fe --- /dev/null +++ b/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/Icon/svg/CheckMd.js.map @@ -0,0 +1 @@ +{"version":3,"file":"CheckMd.js","sourceRoot":"","sources":["../../../../../src/components/Icon/svg/CheckMd.tsx"],"names":[],"mappings":";AACA,MAAM,OAAO,GAAG,CAAC,KAA8B,EAAE,EAAE,CAAC,CAClD,cAAK,KAAK,EAAC,KAAK,EAAC,MAAM,EAAC,KAAK,EAAC,OAAO,EAAC,WAAW,EAAC,IAAI,EAAC,cAAc,KAAK,KAAK,YAC7E,eACE,CAAC,EAAC,gXAAgX,EAClX,IAAI,EAAC,cAAc,GACnB,GACE,CACP,CAAA;AACD,eAAe,OAAO,CAAA","sourcesContent":["import type { SVGProps } from \"react\"\nconst CheckMd = (props: SVGProps) => (\n \n \n \n)\nexport default CheckMd\n"]} \ No newline at end of file diff --git a/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/Icon/svg/ChevronDown.js b/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/Icon/svg/ChevronDown.js new file mode 100644 index 0000000000000000000000000000000000000000..b691949eacb1e26a198c50b2a1bbb439a516f124 --- /dev/null +++ b/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/Icon/svg/ChevronDown.js @@ -0,0 +1,4 @@ +import { jsx as _jsx } from "react/jsx-runtime"; +const ChevronDown = (props) => (_jsx("svg", { width: "1em", height: "1em", viewBox: "0 0 24 24", fill: "currentColor", ...props, children: _jsx("path", { fillRule: "evenodd", d: "M4.293 8.293a1 1 0 0 1 1.414 0L12 14.586l6.293-6.293a1 1 0 1 1 1.414 1.414l-7 7a1 1 0 0 1-1.414 0l-7-7a1 1 0 0 1 0-1.414Z", clipRule: "evenodd" }) })); +export default ChevronDown; +//# sourceMappingURL=ChevronDown.js.map \ No newline at end of file diff --git a/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/Icon/svg/ChevronDown.js.map b/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/Icon/svg/ChevronDown.js.map new file mode 100644 index 0000000000000000000000000000000000000000..530176aba79775a583f2201cc03a7677af952c5d --- /dev/null +++ b/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/Icon/svg/ChevronDown.js.map @@ -0,0 +1 @@ +{"version":3,"file":"ChevronDown.js","sourceRoot":"","sources":["../../../../../src/components/Icon/svg/ChevronDown.tsx"],"names":[],"mappings":";AACA,MAAM,WAAW,GAAG,CAAC,KAA8B,EAAE,EAAE,CAAC,CACtD,cAAK,KAAK,EAAC,KAAK,EAAC,MAAM,EAAC,KAAK,EAAC,OAAO,EAAC,WAAW,EAAC,IAAI,EAAC,cAAc,KAAK,KAAK,YAC7E,eACE,QAAQ,EAAC,SAAS,EAClB,CAAC,EAAC,2HAA2H,EAC7H,QAAQ,EAAC,SAAS,GAClB,GACE,CACP,CAAA;AACD,eAAe,WAAW,CAAA","sourcesContent":["import type { SVGProps } from \"react\"\nconst ChevronDown = (props: SVGProps) => (\n \n \n \n)\nexport default ChevronDown\n"]} \ No newline at end of file diff --git a/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/Icon/svg/ChevronDownLg.js b/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/Icon/svg/ChevronDownLg.js new file mode 100644 index 0000000000000000000000000000000000000000..38e72cdc45ae95a2d5dba98fab37a888fb68e9de --- /dev/null +++ b/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/Icon/svg/ChevronDownLg.js @@ -0,0 +1,4 @@ +import { jsx as _jsx } from "react/jsx-runtime"; +const ChevronDownLg = (props) => (_jsx("svg", { width: "1em", height: "1em", viewBox: "0 0 24 24", fill: "currentColor", ...props, children: _jsx("path", { d: "M4.29289 8.29289C4.68342 7.90237 5.31658 7.90237 5.70711 8.29289L12 14.5858L18.2929 8.29289C18.6834 7.90237 19.3166 7.90237 19.7071 8.29289C20.0976 8.68342 20.0976 9.31658 19.7071 9.70711L12.7071 16.7071C12.3166 17.0976 11.6834 17.0976 11.2929 16.7071L4.29289 9.70711C3.90237 9.31658 3.90237 8.68342 4.29289 8.29289Z", fill: "currentColor" }) })); +export default ChevronDownLg; +//# sourceMappingURL=ChevronDownLg.js.map \ No newline at end of file diff --git a/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/Icon/svg/ChevronDownLg.js.map b/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/Icon/svg/ChevronDownLg.js.map new file mode 100644 index 0000000000000000000000000000000000000000..76366320eaaf6488f932c90f1915c95484eb66a6 --- /dev/null +++ b/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/Icon/svg/ChevronDownLg.js.map @@ -0,0 +1 @@ +{"version":3,"file":"ChevronDownLg.js","sourceRoot":"","sources":["../../../../../src/components/Icon/svg/ChevronDownLg.tsx"],"names":[],"mappings":";AACA,MAAM,aAAa,GAAG,CAAC,KAA8B,EAAE,EAAE,CAAC,CACxD,cAAK,KAAK,EAAC,KAAK,EAAC,MAAM,EAAC,KAAK,EAAC,OAAO,EAAC,WAAW,EAAC,IAAI,EAAC,cAAc,KAAK,KAAK,YAC7E,eACE,CAAC,EAAC,8TAA8T,EAChU,IAAI,EAAC,cAAc,GACnB,GACE,CACP,CAAA;AACD,eAAe,aAAa,CAAA","sourcesContent":["import type { SVGProps } from \"react\"\nconst ChevronDownLg = (props: SVGProps) => (\n \n \n \n)\nexport default ChevronDownLg\n"]} \ No newline at end of file diff --git a/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/Icon/svg/ChevronDownMd.js b/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/Icon/svg/ChevronDownMd.js new file mode 100644 index 0000000000000000000000000000000000000000..1757670346e7232a2031903e1c224e755f4a14b7 --- /dev/null +++ b/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/Icon/svg/ChevronDownMd.js @@ -0,0 +1,4 @@ +import { jsx as _jsx } from "react/jsx-runtime"; +const ChevronDownMd = (props) => (_jsx("svg", { width: "1em", height: "1em", viewBox: "0 0 24 24", fill: "currentColor", ...props, children: _jsx("path", { d: "M5.29289 9.29289C5.68342 8.90237 6.31658 8.90237 6.70711 9.29289L12 14.5858L17.2929 9.29289C17.6834 8.90237 18.3166 8.90237 18.7071 9.29289C19.0976 9.68342 19.0976 10.3166 18.7071 10.7071L12.7071 16.7071C12.5196 16.8946 12.2652 17 12 17C11.7348 17 11.4804 16.8946 11.2929 16.7071L5.29289 10.7071C4.90237 10.3166 4.90237 9.68342 5.29289 9.29289Z", fill: "currentColor" }) })); +export default ChevronDownMd; +//# sourceMappingURL=ChevronDownMd.js.map \ No newline at end of file diff --git a/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/Icon/svg/ChevronDownMd.js.map b/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/Icon/svg/ChevronDownMd.js.map new file mode 100644 index 0000000000000000000000000000000000000000..55d5db778f6f78d0b93a9a0846ef9544a26bd31f --- /dev/null +++ b/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/Icon/svg/ChevronDownMd.js.map @@ -0,0 +1 @@ +{"version":3,"file":"ChevronDownMd.js","sourceRoot":"","sources":["../../../../../src/components/Icon/svg/ChevronDownMd.tsx"],"names":[],"mappings":";AACA,MAAM,aAAa,GAAG,CAAC,KAA8B,EAAE,EAAE,CAAC,CACxD,cAAK,KAAK,EAAC,KAAK,EAAC,MAAM,EAAC,KAAK,EAAC,OAAO,EAAC,WAAW,EAAC,IAAI,EAAC,cAAc,KAAK,KAAK,YAC7E,eACE,CAAC,EAAC,0VAA0V,EAC5V,IAAI,EAAC,cAAc,GACnB,GACE,CACP,CAAA;AACD,eAAe,aAAa,CAAA","sourcesContent":["import type { SVGProps } from \"react\"\nconst ChevronDownMd = (props: SVGProps) => (\n \n \n \n)\nexport default ChevronDownMd\n"]} \ No newline at end of file diff --git a/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/Icon/svg/ChevronDownUp.js b/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/Icon/svg/ChevronDownUp.js new file mode 100644 index 0000000000000000000000000000000000000000..1be7ffd8517cc611045a1d2bb128cf31b5031746 --- /dev/null +++ b/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/Icon/svg/ChevronDownUp.js @@ -0,0 +1,4 @@ +import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime"; +const ChevronDownUp = (props) => (_jsxs("svg", { width: "1em", height: "1em", viewBox: "0 0 24 24", fill: "currentColor", ...props, children: [_jsx("path", { d: "M8.65852 5.74744C8.24288 5.38375 7.61112 5.42587 7.24744 5.84151C6.88375 6.25715 6.92587 6.88891 7.34151 7.25259L11.3415 10.7526C11.7185 11.0825 12.2815 11.0825 12.6585 10.7526L16.6585 7.25259C17.0742 6.88891 17.1163 6.25715 16.7526 5.84151C16.3889 5.42587 15.7571 5.38375 15.3415 5.74744L12 8.67125L8.65852 5.74744Z", fill: "currentColor" }), _jsx("path", { d: "M12.6585 13.2474C12.2815 12.9175 11.7185 12.9175 11.3415 13.2474L7.34152 16.7474C6.92589 17.1111 6.88377 17.7429 7.24745 18.1585C7.61113 18.5742 8.2429 18.6163 8.65853 18.2526L12 15.3288L15.3415 18.2526C15.7572 18.6163 16.3889 18.5742 16.7526 18.1585C17.1163 17.7429 17.0742 17.1111 16.6585 16.7474L12.6585 13.2474Z", fill: "currentColor" })] })); +export default ChevronDownUp; +//# sourceMappingURL=ChevronDownUp.js.map \ No newline at end of file diff --git a/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/Icon/svg/ChevronDownUp.js.map b/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/Icon/svg/ChevronDownUp.js.map new file mode 100644 index 0000000000000000000000000000000000000000..7a251f6dd4e6cfca544f5d0046f8bf9d9238b83f --- /dev/null +++ b/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/Icon/svg/ChevronDownUp.js.map @@ -0,0 +1 @@ +{"version":3,"file":"ChevronDownUp.js","sourceRoot":"","sources":["../../../../../src/components/Icon/svg/ChevronDownUp.tsx"],"names":[],"mappings":";AACA,MAAM,aAAa,GAAG,CAAC,KAA8B,EAAE,EAAE,CAAC,CACxD,eAAK,KAAK,EAAC,KAAK,EAAC,MAAM,EAAC,KAAK,EAAC,OAAO,EAAC,WAAW,EAAC,IAAI,EAAC,cAAc,KAAK,KAAK,aAC7E,eACE,CAAC,EAAC,8TAA8T,EAChU,IAAI,EAAC,cAAc,GACnB,EACF,eACE,CAAC,EAAC,6TAA6T,EAC/T,IAAI,EAAC,cAAc,GACnB,IACE,CACP,CAAA;AACD,eAAe,aAAa,CAAA","sourcesContent":["import type { SVGProps } from \"react\"\nconst ChevronDownUp = (props: SVGProps) => (\n \n \n \n \n)\nexport default ChevronDownUp\n"]} \ No newline at end of file diff --git a/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/Icon/svg/ChevronDownVector.js b/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/Icon/svg/ChevronDownVector.js new file mode 100644 index 0000000000000000000000000000000000000000..535e3e270118d77c44feb80c5cc23d9313eaa07f --- /dev/null +++ b/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/Icon/svg/ChevronDownVector.js @@ -0,0 +1,4 @@ +import { jsx as _jsx } from "react/jsx-runtime"; +const ChevronDownVector = (props) => (_jsx("svg", { width: "1em", height: "1em", viewBox: "0 0 16 9", fill: "currentColor", ...props, children: _jsx("path", { fillRule: "evenodd", clipRule: "evenodd", d: "M0.292893 0.292893C0.683418 -0.0976311 1.31658 -0.0976311 1.70711 0.292893L8 6.58579L14.2929 0.292894C14.6834 -0.0976305 15.3166 -0.0976304 15.7071 0.292894C16.0976 0.683418 16.0976 1.31658 15.7071 1.70711L8.70711 8.70711C8.31658 9.09763 7.68342 9.09763 7.29289 8.70711L0.292893 1.70711C-0.0976311 1.31658 -0.0976311 0.683417 0.292893 0.292893Z" }) })); +export default ChevronDownVector; +//# sourceMappingURL=ChevronDownVector.js.map \ No newline at end of file diff --git a/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/Icon/svg/ChevronDownVector.js.map b/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/Icon/svg/ChevronDownVector.js.map new file mode 100644 index 0000000000000000000000000000000000000000..a603df9de468ea34d4d9eaf1581b1dc53203d100 --- /dev/null +++ b/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/Icon/svg/ChevronDownVector.js.map @@ -0,0 +1 @@ +{"version":3,"file":"ChevronDownVector.js","sourceRoot":"","sources":["../../../../../src/components/Icon/svg/ChevronDownVector.tsx"],"names":[],"mappings":";AACA,MAAM,iBAAiB,GAAG,CAAC,KAA8B,EAAE,EAAE,CAAC,CAC5D,cAAK,KAAK,EAAC,KAAK,EAAC,MAAM,EAAC,KAAK,EAAC,OAAO,EAAC,UAAU,EAAC,IAAI,EAAC,cAAc,KAAK,KAAK,YAC5E,eACE,QAAQ,EAAC,SAAS,EAClB,QAAQ,EAAC,SAAS,EAClB,CAAC,EAAC,0VAA0V,GAC5V,GACE,CACP,CAAA;AACD,eAAe,iBAAiB,CAAA","sourcesContent":["import type { SVGProps } from \"react\"\nconst ChevronDownVector = (props: SVGProps) => (\n \n \n \n)\nexport default ChevronDownVector\n"]} \ No newline at end of file diff --git a/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/Icon/svg/ChevronLeft.js b/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/Icon/svg/ChevronLeft.js new file mode 100644 index 0000000000000000000000000000000000000000..b1ffb96322d271d8e7b2c954d8d4f74b4cb59f2b --- /dev/null +++ b/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/Icon/svg/ChevronLeft.js @@ -0,0 +1,4 @@ +import { jsx as _jsx } from "react/jsx-runtime"; +const ChevronLeft = (props) => (_jsx("svg", { width: "1em", height: "1em", viewBox: "0 0 24 24", fill: "currentColor", ...props, children: _jsx("path", { fillRule: "evenodd", d: "M15.707 4.293a1 1 0 0 1 0 1.414L9.414 12l6.293 6.293a1 1 0 0 1-1.414 1.414l-7-7a1 1 0 0 1 0-1.414l7-7a1 1 0 0 1 1.414 0Z", clipRule: "evenodd" }) })); +export default ChevronLeft; +//# sourceMappingURL=ChevronLeft.js.map \ No newline at end of file diff --git a/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/Icon/svg/ChevronLeft.js.map b/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/Icon/svg/ChevronLeft.js.map new file mode 100644 index 0000000000000000000000000000000000000000..d6c384c13e7ea0089c5c8756522b69f7581f61c9 --- /dev/null +++ b/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/Icon/svg/ChevronLeft.js.map @@ -0,0 +1 @@ +{"version":3,"file":"ChevronLeft.js","sourceRoot":"","sources":["../../../../../src/components/Icon/svg/ChevronLeft.tsx"],"names":[],"mappings":";AACA,MAAM,WAAW,GAAG,CAAC,KAA8B,EAAE,EAAE,CAAC,CACtD,cAAK,KAAK,EAAC,KAAK,EAAC,MAAM,EAAC,KAAK,EAAC,OAAO,EAAC,WAAW,EAAC,IAAI,EAAC,cAAc,KAAK,KAAK,YAC7E,eACE,QAAQ,EAAC,SAAS,EAClB,CAAC,EAAC,0HAA0H,EAC5H,QAAQ,EAAC,SAAS,GAClB,GACE,CACP,CAAA;AACD,eAAe,WAAW,CAAA","sourcesContent":["import type { SVGProps } from \"react\"\nconst ChevronLeft = (props: SVGProps) => (\n \n \n \n)\nexport default ChevronLeft\n"]} \ No newline at end of file diff --git a/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/Icon/svg/ChevronLeftLg.js b/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/Icon/svg/ChevronLeftLg.js new file mode 100644 index 0000000000000000000000000000000000000000..4a23d11dc30c2915c95e20dd4305dbe2ca72e5b6 --- /dev/null +++ b/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/Icon/svg/ChevronLeftLg.js @@ -0,0 +1,4 @@ +import { jsx as _jsx } from "react/jsx-runtime"; +const ChevronLeftLg = (props) => (_jsx("svg", { width: "1em", height: "1em", viewBox: "0 0 24 24", fill: "currentColor", ...props, children: _jsx("path", { d: "M15.7071 4.29289C16.0976 4.68342 16.0976 5.31658 15.7071 5.70711L9.41421 12L15.7071 18.2929C16.0976 18.6834 16.0976 19.3166 15.7071 19.7071C15.3166 20.0976 14.6834 20.0976 14.2929 19.7071L7.29289 12.7071C6.90237 12.3166 6.90237 11.6834 7.29289 11.2929L14.2929 4.29289C14.6834 3.90237 15.3166 3.90237 15.7071 4.29289Z", fill: "currentColor" }) })); +export default ChevronLeftLg; +//# sourceMappingURL=ChevronLeftLg.js.map \ No newline at end of file diff --git a/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/Icon/svg/ChevronLeftLg.js.map b/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/Icon/svg/ChevronLeftLg.js.map new file mode 100644 index 0000000000000000000000000000000000000000..f3eed88f24cdcc7159a641915f8cc7ad6eccc34d --- /dev/null +++ b/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/Icon/svg/ChevronLeftLg.js.map @@ -0,0 +1 @@ +{"version":3,"file":"ChevronLeftLg.js","sourceRoot":"","sources":["../../../../../src/components/Icon/svg/ChevronLeftLg.tsx"],"names":[],"mappings":";AACA,MAAM,aAAa,GAAG,CAAC,KAA8B,EAAE,EAAE,CAAC,CACxD,cAAK,KAAK,EAAC,KAAK,EAAC,MAAM,EAAC,KAAK,EAAC,OAAO,EAAC,WAAW,EAAC,IAAI,EAAC,cAAc,KAAK,KAAK,YAC7E,eACE,CAAC,EAAC,8TAA8T,EAChU,IAAI,EAAC,cAAc,GACnB,GACE,CACP,CAAA;AACD,eAAe,aAAa,CAAA","sourcesContent":["import type { SVGProps } from \"react\"\nconst ChevronLeftLg = (props: SVGProps) => (\n \n \n \n)\nexport default ChevronLeftLg\n"]} \ No newline at end of file diff --git a/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/Icon/svg/ChevronLeftMd.js b/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/Icon/svg/ChevronLeftMd.js new file mode 100644 index 0000000000000000000000000000000000000000..30ce421e1bc19dfcfe6ea62b34b276dc6094b8f9 --- /dev/null +++ b/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/Icon/svg/ChevronLeftMd.js @@ -0,0 +1,4 @@ +import { jsx as _jsx } from "react/jsx-runtime"; +const ChevronLeftMd = (props) => (_jsx("svg", { width: "1em", height: "1em", viewBox: "0 0 24 24", fill: "currentColor", ...props, children: _jsx("path", { d: "M14.7071 5.29289C15.0976 5.68342 15.0976 6.31658 14.7071 6.70711L9.41421 12L14.7071 17.2929C15.0976 17.6834 15.0976 18.3166 14.7071 18.7071C14.3166 19.0976 13.6834 19.0976 13.2929 18.7071L7.29289 12.7071C7.10536 12.5196 7 12.2652 7 12C7 11.7348 7.10536 11.4804 7.29289 11.2929L13.2929 5.29289C13.6834 4.90237 14.3166 4.90237 14.7071 5.29289Z", fill: "currentColor" }) })); +export default ChevronLeftMd; +//# sourceMappingURL=ChevronLeftMd.js.map \ No newline at end of file diff --git a/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/Icon/svg/ChevronLeftMd.js.map b/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/Icon/svg/ChevronLeftMd.js.map new file mode 100644 index 0000000000000000000000000000000000000000..f713b3caa527ac348b2a90287c986ac431c7564a --- /dev/null +++ b/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/Icon/svg/ChevronLeftMd.js.map @@ -0,0 +1 @@ +{"version":3,"file":"ChevronLeftMd.js","sourceRoot":"","sources":["../../../../../src/components/Icon/svg/ChevronLeftMd.tsx"],"names":[],"mappings":";AACA,MAAM,aAAa,GAAG,CAAC,KAA8B,EAAE,EAAE,CAAC,CACxD,cAAK,KAAK,EAAC,KAAK,EAAC,MAAM,EAAC,KAAK,EAAC,OAAO,EAAC,WAAW,EAAC,IAAI,EAAC,cAAc,KAAK,KAAK,YAC7E,eACE,CAAC,EAAC,uVAAuV,EACzV,IAAI,EAAC,cAAc,GACnB,GACE,CACP,CAAA;AACD,eAAe,aAAa,CAAA","sourcesContent":["import type { SVGProps } from \"react\"\nconst ChevronLeftMd = (props: SVGProps) => (\n \n \n \n)\nexport default ChevronLeftMd\n"]} \ No newline at end of file diff --git a/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/Icon/svg/ChevronRight.js b/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/Icon/svg/ChevronRight.js new file mode 100644 index 0000000000000000000000000000000000000000..83b5eda919341eeda10d45c3588ead715bbbe876 --- /dev/null +++ b/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/Icon/svg/ChevronRight.js @@ -0,0 +1,4 @@ +import { jsx as _jsx } from "react/jsx-runtime"; +const ChevronRight = (props) => (_jsx("svg", { width: "1em", height: "1em", viewBox: "0 0 24 24", fill: "currentColor", ...props, children: _jsx("path", { fillRule: "evenodd", d: "M8.293 4.293a1 1 0 0 1 1.414 0l7 7a1 1 0 0 1 0 1.414l-7 7a1 1 0 0 1-1.414-1.414L14.586 12 8.293 5.707a1 1 0 0 1 0-1.414Z", clipRule: "evenodd" }) })); +export default ChevronRight; +//# sourceMappingURL=ChevronRight.js.map \ No newline at end of file diff --git a/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/Icon/svg/ChevronRight.js.map b/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/Icon/svg/ChevronRight.js.map new file mode 100644 index 0000000000000000000000000000000000000000..719e9dbfd3fb355101d1058a8ab59a8df0428707 --- /dev/null +++ b/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/Icon/svg/ChevronRight.js.map @@ -0,0 +1 @@ +{"version":3,"file":"ChevronRight.js","sourceRoot":"","sources":["../../../../../src/components/Icon/svg/ChevronRight.tsx"],"names":[],"mappings":";AACA,MAAM,YAAY,GAAG,CAAC,KAA8B,EAAE,EAAE,CAAC,CACvD,cAAK,KAAK,EAAC,KAAK,EAAC,MAAM,EAAC,KAAK,EAAC,OAAO,EAAC,WAAW,EAAC,IAAI,EAAC,cAAc,KAAK,KAAK,YAC7E,eACE,QAAQ,EAAC,SAAS,EAClB,CAAC,EAAC,0HAA0H,EAC5H,QAAQ,EAAC,SAAS,GAClB,GACE,CACP,CAAA;AACD,eAAe,YAAY,CAAA","sourcesContent":["import type { SVGProps } from \"react\"\nconst ChevronRight = (props: SVGProps) => (\n \n \n \n)\nexport default ChevronRight\n"]} \ No newline at end of file diff --git a/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/Icon/svg/ChevronRightAlt.js b/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/Icon/svg/ChevronRightAlt.js new file mode 100644 index 0000000000000000000000000000000000000000..2d306734842e4bb8f345d400328e45cee72f0706 --- /dev/null +++ b/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/Icon/svg/ChevronRightAlt.js @@ -0,0 +1,4 @@ +import { jsx as _jsx } from "react/jsx-runtime"; +const ChevronRightAlt = (props) => (_jsx("svg", { width: "1em", height: "1em", viewBox: "0 0 20 20", fill: "currentColor", ...props, children: _jsx("path", { d: "M7.52925 3.7793C7.75652 3.55203 8.10803 3.52383 8.36616 3.69434L8.47065 3.7793L14.2207 9.5293C14.4804 9.789 14.4804 10.211 14.2207 10.4707L8.47065 16.2207C8.21095 16.4804 7.78895 16.4804 7.52925 16.2207C7.26955 15.961 7.26955 15.539 7.52925 15.2793L12.8085 10L7.52925 4.7207L7.44429 4.61621C7.27378 4.35808 7.30198 4.00657 7.52925 3.7793Z" }) })); +export default ChevronRightAlt; +//# sourceMappingURL=ChevronRightAlt.js.map \ No newline at end of file diff --git a/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/Icon/svg/ChevronRightAlt.js.map b/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/Icon/svg/ChevronRightAlt.js.map new file mode 100644 index 0000000000000000000000000000000000000000..eb8712b5d552c68b6b5862bb94e4d7caafa2c831 --- /dev/null +++ b/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/Icon/svg/ChevronRightAlt.js.map @@ -0,0 +1 @@ +{"version":3,"file":"ChevronRightAlt.js","sourceRoot":"","sources":["../../../../../src/components/Icon/svg/ChevronRightAlt.tsx"],"names":[],"mappings":";AACA,MAAM,eAAe,GAAG,CAAC,KAA8B,EAAE,EAAE,CAAC,CAC1D,cAAK,KAAK,EAAC,KAAK,EAAC,MAAM,EAAC,KAAK,EAAC,OAAO,EAAC,WAAW,EAAC,IAAI,EAAC,cAAc,KAAK,KAAK,YAC7E,eAAM,CAAC,EAAC,oVAAoV,GAAG,GAC3V,CACP,CAAA;AACD,eAAe,eAAe,CAAA","sourcesContent":["import type { SVGProps } from \"react\"\nconst ChevronRightAlt = (props: SVGProps) => (\n \n \n \n)\nexport default ChevronRightAlt\n"]} \ No newline at end of file diff --git a/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/Icon/svg/ChevronRightLg.js b/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/Icon/svg/ChevronRightLg.js new file mode 100644 index 0000000000000000000000000000000000000000..0c5d68cdb7c55701b9697cfd1d3a663e61f0cbe9 --- /dev/null +++ b/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/Icon/svg/ChevronRightLg.js @@ -0,0 +1,4 @@ +import { jsx as _jsx } from "react/jsx-runtime"; +const ChevronRightLg = (props) => (_jsx("svg", { width: "1em", height: "1em", viewBox: "0 0 24 24", fill: "currentColor", ...props, children: _jsx("path", { d: "M8.29289 4.29289C8.68342 3.90237 9.31658 3.90237 9.70711 4.29289L16.7071 11.2929C17.0976 11.6834 17.0976 12.3166 16.7071 12.7071L9.70711 19.7071C9.31658 20.0976 8.68342 20.0976 8.29289 19.7071C7.90237 19.3166 7.90237 18.6834 8.29289 18.2929L14.5858 12L8.29289 5.70711C7.90237 5.31658 7.90237 4.68342 8.29289 4.29289Z", fill: "currentColor" }) })); +export default ChevronRightLg; +//# sourceMappingURL=ChevronRightLg.js.map \ No newline at end of file diff --git a/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/Icon/svg/ChevronRightLg.js.map b/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/Icon/svg/ChevronRightLg.js.map new file mode 100644 index 0000000000000000000000000000000000000000..2266a012dee74139303609da4b21d3f65e5e7d79 --- /dev/null +++ b/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/Icon/svg/ChevronRightLg.js.map @@ -0,0 +1 @@ +{"version":3,"file":"ChevronRightLg.js","sourceRoot":"","sources":["../../../../../src/components/Icon/svg/ChevronRightLg.tsx"],"names":[],"mappings":";AACA,MAAM,cAAc,GAAG,CAAC,KAA8B,EAAE,EAAE,CAAC,CACzD,cAAK,KAAK,EAAC,KAAK,EAAC,MAAM,EAAC,KAAK,EAAC,OAAO,EAAC,WAAW,EAAC,IAAI,EAAC,cAAc,KAAK,KAAK,YAC7E,eACE,CAAC,EAAC,8TAA8T,EAChU,IAAI,EAAC,cAAc,GACnB,GACE,CACP,CAAA;AACD,eAAe,cAAc,CAAA","sourcesContent":["import type { SVGProps } from \"react\"\nconst ChevronRightLg = (props: SVGProps) => (\n \n \n \n)\nexport default ChevronRightLg\n"]} \ No newline at end of file diff --git a/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/Icon/svg/ChevronRightMd.js b/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/Icon/svg/ChevronRightMd.js new file mode 100644 index 0000000000000000000000000000000000000000..8b6f43b8a6ba93523a6901ae348d7b7bff810694 --- /dev/null +++ b/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/Icon/svg/ChevronRightMd.js @@ -0,0 +1,4 @@ +import { jsx as _jsx } from "react/jsx-runtime"; +const ChevronRightMd = (props) => (_jsx("svg", { width: "1em", height: "1em", viewBox: "0 0 24 24", fill: "currentColor", ...props, children: _jsx("path", { d: "M9.29289 18.7071C8.90237 18.3166 8.90237 17.6834 9.29289 17.2929L14.5858 12L9.29289 6.70711C8.90237 6.31658 8.90237 5.68342 9.29289 5.29289C9.68342 4.90237 10.3166 4.90237 10.7071 5.29289L16.7071 11.2929C16.8946 11.4804 17 11.7348 17 12C17 12.2652 16.8946 12.5196 16.7071 12.7071L10.7071 18.7071C10.3166 19.0976 9.68342 19.0976 9.29289 18.7071Z", fill: "currentColor" }) })); +export default ChevronRightMd; +//# sourceMappingURL=ChevronRightMd.js.map \ No newline at end of file diff --git a/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/Icon/svg/ChevronRightMd.js.map b/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/Icon/svg/ChevronRightMd.js.map new file mode 100644 index 0000000000000000000000000000000000000000..62ac884c73917ab68e61d693795397d6b721df21 --- /dev/null +++ b/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/Icon/svg/ChevronRightMd.js.map @@ -0,0 +1 @@ +{"version":3,"file":"ChevronRightMd.js","sourceRoot":"","sources":["../../../../../src/components/Icon/svg/ChevronRightMd.tsx"],"names":[],"mappings":";AACA,MAAM,cAAc,GAAG,CAAC,KAA8B,EAAE,EAAE,CAAC,CACzD,cAAK,KAAK,EAAC,KAAK,EAAC,MAAM,EAAC,KAAK,EAAC,OAAO,EAAC,WAAW,EAAC,IAAI,EAAC,cAAc,KAAK,KAAK,YAC7E,eACE,CAAC,EAAC,0VAA0V,EAC5V,IAAI,EAAC,cAAc,GACnB,GACE,CACP,CAAA;AACD,eAAe,cAAc,CAAA","sourcesContent":["import type { SVGProps } from \"react\"\nconst ChevronRightMd = (props: SVGProps) => (\n \n \n \n)\nexport default ChevronRightMd\n"]} \ No newline at end of file diff --git a/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/Icon/svg/ChevronSmallDown.js b/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/Icon/svg/ChevronSmallDown.js new file mode 100644 index 0000000000000000000000000000000000000000..b3008166323190943629e64cd54df5034c53e221 --- /dev/null +++ b/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/Icon/svg/ChevronSmallDown.js @@ -0,0 +1,4 @@ +import { jsx as _jsx } from "react/jsx-runtime"; +const ChevronSmallDown = (props) => (_jsx("svg", { width: "1em", height: "1em", viewBox: "0 0 24 24", fill: "currentColor", ...props, children: _jsx("path", { fillRule: "evenodd", d: "M7.293 9.293a1 1 0 0 1 1.414 0L12 12.586l3.293-3.293a1 1 0 1 1 1.414 1.414l-4 4a1 1 0 0 1-1.414 0l-4-4a1 1 0 0 1 0-1.414Z", clipRule: "evenodd" }) })); +export default ChevronSmallDown; +//# sourceMappingURL=ChevronSmallDown.js.map \ No newline at end of file diff --git a/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/Icon/svg/ChevronSmallDown.js.map b/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/Icon/svg/ChevronSmallDown.js.map new file mode 100644 index 0000000000000000000000000000000000000000..5546ce06580b8f1e4c912ae326ebc693f0e3e93f --- /dev/null +++ b/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/Icon/svg/ChevronSmallDown.js.map @@ -0,0 +1 @@ +{"version":3,"file":"ChevronSmallDown.js","sourceRoot":"","sources":["../../../../../src/components/Icon/svg/ChevronSmallDown.tsx"],"names":[],"mappings":";AACA,MAAM,gBAAgB,GAAG,CAAC,KAA8B,EAAE,EAAE,CAAC,CAC3D,cAAK,KAAK,EAAC,KAAK,EAAC,MAAM,EAAC,KAAK,EAAC,OAAO,EAAC,WAAW,EAAC,IAAI,EAAC,cAAc,KAAK,KAAK,YAC7E,eACE,QAAQ,EAAC,SAAS,EAClB,CAAC,EAAC,2HAA2H,EAC7H,QAAQ,EAAC,SAAS,GAClB,GACE,CACP,CAAA;AACD,eAAe,gBAAgB,CAAA","sourcesContent":["import type { SVGProps } from \"react\"\nconst ChevronSmallDown = (props: SVGProps) => (\n \n \n \n)\nexport default ChevronSmallDown\n"]} \ No newline at end of file diff --git a/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/Icon/svg/ChevronSmallLeft.js b/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/Icon/svg/ChevronSmallLeft.js new file mode 100644 index 0000000000000000000000000000000000000000..6eeb795b627aef561372668d08722cd0ea57a6bd --- /dev/null +++ b/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/Icon/svg/ChevronSmallLeft.js @@ -0,0 +1,4 @@ +import { jsx as _jsx } from "react/jsx-runtime"; +const ChevronSmallLeft = (props) => (_jsx("svg", { width: "1em", height: "1em", viewBox: "0 0 24 24", fill: "currentColor", ...props, children: _jsx("path", { fillRule: "evenodd", d: "M14.707 7.293a1 1 0 0 1 0 1.414L11.414 12l3.293 3.293a1 1 0 0 1-1.414 1.414l-4-4a1 1 0 0 1 0-1.414l4-4a1 1 0 0 1 1.414 0Z", clipRule: "evenodd" }) })); +export default ChevronSmallLeft; +//# sourceMappingURL=ChevronSmallLeft.js.map \ No newline at end of file diff --git a/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/Icon/svg/ChevronSmallLeft.js.map b/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/Icon/svg/ChevronSmallLeft.js.map new file mode 100644 index 0000000000000000000000000000000000000000..80104962904103f303a5655c15db96c579ee3290 --- /dev/null +++ b/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/Icon/svg/ChevronSmallLeft.js.map @@ -0,0 +1 @@ +{"version":3,"file":"ChevronSmallLeft.js","sourceRoot":"","sources":["../../../../../src/components/Icon/svg/ChevronSmallLeft.tsx"],"names":[],"mappings":";AACA,MAAM,gBAAgB,GAAG,CAAC,KAA8B,EAAE,EAAE,CAAC,CAC3D,cAAK,KAAK,EAAC,KAAK,EAAC,MAAM,EAAC,KAAK,EAAC,OAAO,EAAC,WAAW,EAAC,IAAI,EAAC,cAAc,KAAK,KAAK,YAC7E,eACE,QAAQ,EAAC,SAAS,EAClB,CAAC,EAAC,2HAA2H,EAC7H,QAAQ,EAAC,SAAS,GAClB,GACE,CACP,CAAA;AACD,eAAe,gBAAgB,CAAA","sourcesContent":["import type { SVGProps } from \"react\"\nconst ChevronSmallLeft = (props: SVGProps) => (\n \n \n \n)\nexport default ChevronSmallLeft\n"]} \ No newline at end of file diff --git a/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/Icon/svg/ChevronSmallRight.js b/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/Icon/svg/ChevronSmallRight.js new file mode 100644 index 0000000000000000000000000000000000000000..b8bde1a14a9527b5cc03f8e0c4211a411fd80787 --- /dev/null +++ b/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/Icon/svg/ChevronSmallRight.js @@ -0,0 +1,4 @@ +import { jsx as _jsx } from "react/jsx-runtime"; +const ChevronSmallRight = (props) => (_jsx("svg", { width: "1em", height: "1em", viewBox: "0 0 24 24", fill: "currentColor", ...props, children: _jsx("path", { fillRule: "evenodd", d: "M9.293 7.293a1 1 0 0 1 1.414 0l4 4a1 1 0 0 1 0 1.414l-4 4a1 1 0 0 1-1.414-1.414L12.586 12 9.293 8.707a1 1 0 0 1 0-1.414Z", clipRule: "evenodd" }) })); +export default ChevronSmallRight; +//# sourceMappingURL=ChevronSmallRight.js.map \ No newline at end of file diff --git a/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/Icon/svg/ChevronSmallRight.js.map b/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/Icon/svg/ChevronSmallRight.js.map new file mode 100644 index 0000000000000000000000000000000000000000..78843cc17ef27ad48d0dfa8757211473b0c2c05d --- /dev/null +++ b/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/Icon/svg/ChevronSmallRight.js.map @@ -0,0 +1 @@ +{"version":3,"file":"ChevronSmallRight.js","sourceRoot":"","sources":["../../../../../src/components/Icon/svg/ChevronSmallRight.tsx"],"names":[],"mappings":";AACA,MAAM,iBAAiB,GAAG,CAAC,KAA8B,EAAE,EAAE,CAAC,CAC5D,cAAK,KAAK,EAAC,KAAK,EAAC,MAAM,EAAC,KAAK,EAAC,OAAO,EAAC,WAAW,EAAC,IAAI,EAAC,cAAc,KAAK,KAAK,YAC7E,eACE,QAAQ,EAAC,SAAS,EAClB,CAAC,EAAC,0HAA0H,EAC5H,QAAQ,EAAC,SAAS,GAClB,GACE,CACP,CAAA;AACD,eAAe,iBAAiB,CAAA","sourcesContent":["import type { SVGProps } from \"react\"\nconst ChevronSmallRight = (props: SVGProps) => (\n \n \n \n)\nexport default ChevronSmallRight\n"]} \ No newline at end of file diff --git a/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/Icon/svg/ChevronSmallUp.js b/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/Icon/svg/ChevronSmallUp.js new file mode 100644 index 0000000000000000000000000000000000000000..789b9f99dc006be7104b979b5fe2c57634c1e667 --- /dev/null +++ b/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/Icon/svg/ChevronSmallUp.js @@ -0,0 +1,4 @@ +import { jsx as _jsx } from "react/jsx-runtime"; +const ChevronSmallUp = (props) => (_jsx("svg", { width: "1em", height: "1em", viewBox: "0 0 24 24", fill: "currentColor", ...props, children: _jsx("path", { fillRule: "evenodd", d: "M11.293 9.293a1 1 0 0 1 1.414 0l4 4a1 1 0 0 1-1.414 1.414L12 11.414l-3.293 3.293a1 1 0 0 1-1.414-1.414l4-4Z", clipRule: "evenodd" }) })); +export default ChevronSmallUp; +//# sourceMappingURL=ChevronSmallUp.js.map \ No newline at end of file diff --git a/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/Icon/svg/ChevronSmallUp.js.map b/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/Icon/svg/ChevronSmallUp.js.map new file mode 100644 index 0000000000000000000000000000000000000000..cb7897fa95facf4c070f2be5c6920ca623620d65 --- /dev/null +++ b/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/Icon/svg/ChevronSmallUp.js.map @@ -0,0 +1 @@ +{"version":3,"file":"ChevronSmallUp.js","sourceRoot":"","sources":["../../../../../src/components/Icon/svg/ChevronSmallUp.tsx"],"names":[],"mappings":";AACA,MAAM,cAAc,GAAG,CAAC,KAA8B,EAAE,EAAE,CAAC,CACzD,cAAK,KAAK,EAAC,KAAK,EAAC,MAAM,EAAC,KAAK,EAAC,OAAO,EAAC,WAAW,EAAC,IAAI,EAAC,cAAc,KAAK,KAAK,YAC7E,eACE,QAAQ,EAAC,SAAS,EAClB,CAAC,EAAC,6GAA6G,EAC/G,QAAQ,EAAC,SAAS,GAClB,GACE,CACP,CAAA;AACD,eAAe,cAAc,CAAA","sourcesContent":["import type { SVGProps } from \"react\"\nconst ChevronSmallUp = (props: SVGProps) => (\n \n \n \n)\nexport default ChevronSmallUp\n"]} \ No newline at end of file diff --git a/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/Icon/svg/ChevronUp.js b/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/Icon/svg/ChevronUp.js new file mode 100644 index 0000000000000000000000000000000000000000..171875627552f4d82ff1d666a89c10b2c266ddc1 --- /dev/null +++ b/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/Icon/svg/ChevronUp.js @@ -0,0 +1,4 @@ +import { jsx as _jsx } from "react/jsx-runtime"; +const ChevronUp = (props) => (_jsx("svg", { width: "1em", height: "1em", viewBox: "0 0 24 24", fill: "currentColor", ...props, children: _jsx("path", { fillRule: "evenodd", d: "M12 8a1 1 0 0 1 .707.293l7 7a1 1 0 0 1-1.414 1.414L12 10.414l-6.293 6.293a1 1 0 0 1-1.414-1.414l7-7A1 1 0 0 1 12 8Z", clipRule: "evenodd" }) })); +export default ChevronUp; +//# sourceMappingURL=ChevronUp.js.map \ No newline at end of file diff --git a/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/Icon/svg/ChevronUp.js.map b/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/Icon/svg/ChevronUp.js.map new file mode 100644 index 0000000000000000000000000000000000000000..54090f0a64573d25ce40c43ba6d79368a219b6ee --- /dev/null +++ b/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/Icon/svg/ChevronUp.js.map @@ -0,0 +1 @@ +{"version":3,"file":"ChevronUp.js","sourceRoot":"","sources":["../../../../../src/components/Icon/svg/ChevronUp.tsx"],"names":[],"mappings":";AACA,MAAM,SAAS,GAAG,CAAC,KAA8B,EAAE,EAAE,CAAC,CACpD,cAAK,KAAK,EAAC,KAAK,EAAC,MAAM,EAAC,KAAK,EAAC,OAAO,EAAC,WAAW,EAAC,IAAI,EAAC,cAAc,KAAK,KAAK,YAC7E,eACE,QAAQ,EAAC,SAAS,EAClB,CAAC,EAAC,qHAAqH,EACvH,QAAQ,EAAC,SAAS,GAClB,GACE,CACP,CAAA;AACD,eAAe,SAAS,CAAA","sourcesContent":["import type { SVGProps } from \"react\"\nconst ChevronUp = (props: SVGProps) => (\n \n \n \n)\nexport default ChevronUp\n"]} \ No newline at end of file diff --git a/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/Icon/svg/ChevronUpDown.js b/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/Icon/svg/ChevronUpDown.js new file mode 100644 index 0000000000000000000000000000000000000000..c68fa375eda21f2f73a431155dd29dafd2374cce --- /dev/null +++ b/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/Icon/svg/ChevronUpDown.js @@ -0,0 +1,4 @@ +import { jsx as _jsx } from "react/jsx-runtime"; +const ChevronUpDown = (props) => (_jsx("svg", { width: "1em", height: "1em", viewBox: "0 0 24 24", fill: "currentColor", ...props, children: _jsx("path", { d: "M11.3415 4.74742C11.7185 4.41753 12.2815 4.41753 12.6585 4.74742L16.6585 8.24742C17.0741 8.61111 17.1162 9.24287 16.7526 9.6585C16.3889 10.0741 15.7571 10.1163 15.3415 9.75258L12 6.82877L8.65849 9.75258C8.24285 10.1163 7.61109 10.0741 7.24741 9.6585C6.88373 9.24287 6.92584 8.61111 7.34148 8.24742L11.3415 4.74742ZM7.24603 14.3578C7.60885 13.9414 8.24052 13.8979 8.65692 14.2608L12 17.1737L15.3431 14.2608C15.7594 13.8979 16.3911 13.9414 16.7539 14.3578C17.1167 14.7742 17.0733 15.4058 16.6569 15.7687L12.6569 19.2539C12.2804 19.582 11.7196 19.582 11.3431 19.2539L7.34305 15.7687C6.92666 15.4058 6.88322 14.7742 7.24603 14.3578Z", fill: "currentColor" }) })); +export default ChevronUpDown; +//# sourceMappingURL=ChevronUpDown.js.map \ No newline at end of file diff --git a/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/Icon/svg/ChevronUpDown.js.map b/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/Icon/svg/ChevronUpDown.js.map new file mode 100644 index 0000000000000000000000000000000000000000..47f70473c263d3c9cb1bb14b03c3cb4f179d05a3 --- /dev/null +++ b/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/Icon/svg/ChevronUpDown.js.map @@ -0,0 +1 @@ +{"version":3,"file":"ChevronUpDown.js","sourceRoot":"","sources":["../../../../../src/components/Icon/svg/ChevronUpDown.tsx"],"names":[],"mappings":";AACA,MAAM,aAAa,GAAG,CAAC,KAA8B,EAAE,EAAE,CAAC,CACxD,cAAK,KAAK,EAAC,KAAK,EAAC,MAAM,EAAC,KAAK,EAAC,OAAO,EAAC,WAAW,EAAC,IAAI,EAAC,cAAc,KAAK,KAAK,YAC7E,eACE,CAAC,EAAC,snBAAsnB,EACxnB,IAAI,EAAC,cAAc,GACnB,GACE,CACP,CAAA;AACD,eAAe,aAAa,CAAA","sourcesContent":["import type { SVGProps } from \"react\"\nconst ChevronUpDown = (props: SVGProps) => (\n \n \n \n)\nexport default ChevronUpDown\n"]} \ No newline at end of file diff --git a/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/Icon/svg/ChevronUpLg.js b/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/Icon/svg/ChevronUpLg.js new file mode 100644 index 0000000000000000000000000000000000000000..79305ce5dcb122bbeac09c6c9aa839776abb1a6e --- /dev/null +++ b/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/Icon/svg/ChevronUpLg.js @@ -0,0 +1,4 @@ +import { jsx as _jsx } from "react/jsx-runtime"; +const ChevronUpLg = (props) => (_jsx("svg", { width: "1em", height: "1em", viewBox: "0 0 24 24", fill: "currentColor", ...props, children: _jsx("path", { d: "M12 7C12.2652 7 12.5196 7.10536 12.7071 7.29289L19.7071 14.2929C20.0976 14.6834 20.0976 15.3166 19.7071 15.7071C19.3166 16.0976 18.6834 16.0976 18.2929 15.7071L12 9.41421L5.70711 15.7071C5.31658 16.0976 4.68342 16.0976 4.29289 15.7071C3.90237 15.3166 3.90237 14.6834 4.29289 14.2929L11.2929 7.29289C11.4804 7.10536 11.7348 7 12 7Z", fill: "currentColor" }) })); +export default ChevronUpLg; +//# sourceMappingURL=ChevronUpLg.js.map \ No newline at end of file diff --git a/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/Icon/svg/ChevronUpLg.js.map b/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/Icon/svg/ChevronUpLg.js.map new file mode 100644 index 0000000000000000000000000000000000000000..29f4492bbdf2775f4445ec93ab03dc66670c7674 --- /dev/null +++ b/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/Icon/svg/ChevronUpLg.js.map @@ -0,0 +1 @@ +{"version":3,"file":"ChevronUpLg.js","sourceRoot":"","sources":["../../../../../src/components/Icon/svg/ChevronUpLg.tsx"],"names":[],"mappings":";AACA,MAAM,WAAW,GAAG,CAAC,KAA8B,EAAE,EAAE,CAAC,CACtD,cAAK,KAAK,EAAC,KAAK,EAAC,MAAM,EAAC,KAAK,EAAC,OAAO,EAAC,WAAW,EAAC,IAAI,EAAC,cAAc,KAAK,KAAK,YAC7E,eACE,CAAC,EAAC,4UAA4U,EAC9U,IAAI,EAAC,cAAc,GACnB,GACE,CACP,CAAA;AACD,eAAe,WAAW,CAAA","sourcesContent":["import type { SVGProps } from \"react\"\nconst ChevronUpLg = (props: SVGProps) => (\n \n \n \n)\nexport default ChevronUpLg\n"]} \ No newline at end of file diff --git a/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/Icon/svg/ChevronUpMd.js b/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/Icon/svg/ChevronUpMd.js new file mode 100644 index 0000000000000000000000000000000000000000..dc294c8531e6bf794ca08af53300a9dd74e0ed00 --- /dev/null +++ b/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/Icon/svg/ChevronUpMd.js @@ -0,0 +1,4 @@ +import { jsx as _jsx } from "react/jsx-runtime"; +const ChevronUpMd = (props) => (_jsx("svg", { width: "1em", height: "1em", viewBox: "0 0 24 24", fill: "currentColor", ...props, children: _jsx("path", { d: "M12 7C12.2652 7 12.5196 7.10536 12.7071 7.29289L18.7071 13.2929C19.0976 13.6834 19.0976 14.3166 18.7071 14.7071C18.3166 15.0976 17.6834 15.0976 17.2929 14.7071L12 9.41421L6.70711 14.7071C6.31658 15.0976 5.68342 15.0976 5.29289 14.7071C4.90237 14.3166 4.90237 13.6834 5.29289 13.2929L11.2929 7.29289C11.4804 7.10536 11.7348 7 12 7Z", fill: "currentColor" }) })); +export default ChevronUpMd; +//# sourceMappingURL=ChevronUpMd.js.map \ No newline at end of file diff --git a/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/Icon/svg/ChevronUpMd.js.map b/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/Icon/svg/ChevronUpMd.js.map new file mode 100644 index 0000000000000000000000000000000000000000..4f189452338ede092920ea1c80bc47b476151fbe --- /dev/null +++ b/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/Icon/svg/ChevronUpMd.js.map @@ -0,0 +1 @@ +{"version":3,"file":"ChevronUpMd.js","sourceRoot":"","sources":["../../../../../src/components/Icon/svg/ChevronUpMd.tsx"],"names":[],"mappings":";AACA,MAAM,WAAW,GAAG,CAAC,KAA8B,EAAE,EAAE,CAAC,CACtD,cAAK,KAAK,EAAC,KAAK,EAAC,MAAM,EAAC,KAAK,EAAC,OAAO,EAAC,WAAW,EAAC,IAAI,EAAC,cAAc,KAAK,KAAK,YAC7E,eACE,CAAC,EAAC,4UAA4U,EAC9U,IAAI,EAAC,cAAc,GACnB,GACE,CACP,CAAA;AACD,eAAe,WAAW,CAAA","sourcesContent":["import type { SVGProps } from \"react\"\nconst ChevronUpMd = (props: SVGProps) => (\n \n \n \n)\nexport default ChevronUpMd\n"]} \ No newline at end of file diff --git a/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/Icon/svg/Circle.js b/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/Icon/svg/Circle.js new file mode 100644 index 0000000000000000000000000000000000000000..5f346b1317e67c8d769c65aa2c3a2f822b6e6ce9 --- /dev/null +++ b/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/Icon/svg/Circle.js @@ -0,0 +1,4 @@ +import { jsx as _jsx } from "react/jsx-runtime"; +const Circle = (props) => (_jsx("svg", { width: "1em", height: "1em", viewBox: "0 0 6 6", fill: "currentColor", ...props, children: _jsx("rect", { width: 6, height: 6, rx: 3 }) })); +export default Circle; +//# sourceMappingURL=Circle.js.map \ No newline at end of file diff --git a/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/Icon/svg/Circle.js.map b/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/Icon/svg/Circle.js.map new file mode 100644 index 0000000000000000000000000000000000000000..42f1116110c79adcefc1be8d98af45b7ef2751fc --- /dev/null +++ b/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/Icon/svg/Circle.js.map @@ -0,0 +1 @@ +{"version":3,"file":"Circle.js","sourceRoot":"","sources":["../../../../../src/components/Icon/svg/Circle.tsx"],"names":[],"mappings":";AACA,MAAM,MAAM,GAAG,CAAC,KAA8B,EAAE,EAAE,CAAC,CACjD,cAAK,KAAK,EAAC,KAAK,EAAC,MAAM,EAAC,KAAK,EAAC,OAAO,EAAC,SAAS,EAAC,IAAI,EAAC,cAAc,KAAK,KAAK,YAC3E,eAAM,KAAK,EAAE,CAAC,EAAE,MAAM,EAAE,CAAC,EAAE,EAAE,EAAE,CAAC,GAAI,GAChC,CACP,CAAA;AACD,eAAe,MAAM,CAAA","sourcesContent":["import type { SVGProps } from \"react\"\nconst Circle = (props: SVGProps) => (\n \n \n \n)\nexport default Circle\n"]} \ No newline at end of file diff --git a/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/Icon/svg/CircleDashed.js b/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/Icon/svg/CircleDashed.js new file mode 100644 index 0000000000000000000000000000000000000000..ab4942a0cebbea784e1a1813f7721abbf3274e3c --- /dev/null +++ b/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/Icon/svg/CircleDashed.js @@ -0,0 +1,4 @@ +import { jsx as _jsx } from "react/jsx-runtime"; +const CircleDashed = (props) => (_jsx("svg", { width: "1em", height: "1em", viewBox: "0 0 24 24", fill: "currentColor", ...props, children: _jsx("path", { d: "M13.787 19.8a1 1 0 0 1 .447 1.95 9.992 9.992 0 0 1-4.457 0 1 1 0 0 1 .445-1.95 7.993 7.993 0 0 0 3.565 0ZM9.777 2.248a9.992 9.992 0 0 1 4.434 0 1 1 0 0 1-.443 1.95 7.992 7.992 0 0 0-3.546 0 1 1 0 0 1-.445-1.95Zm9.874 12.109a1 1 0 0 1 1.912.587 9.99 9.99 0 0 1-2.229 3.86 1 1 0 0 1-1.465-1.36 7.99 7.99 0 0 0 1.782-3.087ZM2.445 9.053a9.992 9.992 0 0 1 2.217-3.84 1 1 0 0 1 1.468 1.36 7.992 7.992 0 0 0-1.773 3.07 1 1 0 0 1-1.912-.589ZM17.87 6.557a1 1 0 0 1 1.464-1.362 9.991 9.991 0 0 1 2.228 3.86 1 1 0 0 1-1.91.589 7.992 7.992 0 0 0-1.783-3.087ZM4.672 18.806a9.993 9.993 0 0 1-2.217-3.84 1 1 0 0 1 1.91-.592 7.98 7.98 0 0 0 1.773 3.07 1 1 0 0 1-1.466 1.362Z" }) })); +export default CircleDashed; +//# sourceMappingURL=CircleDashed.js.map \ No newline at end of file diff --git a/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/Icon/svg/CircleDashed.js.map b/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/Icon/svg/CircleDashed.js.map new file mode 100644 index 0000000000000000000000000000000000000000..95bd5dac379fa884efac8ae63ac80510998ed803 --- /dev/null +++ b/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/Icon/svg/CircleDashed.js.map @@ -0,0 +1 @@ +{"version":3,"file":"CircleDashed.js","sourceRoot":"","sources":["../../../../../src/components/Icon/svg/CircleDashed.tsx"],"names":[],"mappings":";AACA,MAAM,YAAY,GAAG,CAAC,KAA8B,EAAE,EAAE,CAAC,CACvD,cAAK,KAAK,EAAC,KAAK,EAAC,MAAM,EAAC,KAAK,EAAC,OAAO,EAAC,WAAW,EAAC,IAAI,EAAC,cAAc,KAAK,KAAK,YAC7E,eAAM,CAAC,EAAC,opBAAopB,GAAG,GAC3pB,CACP,CAAA;AACD,eAAe,YAAY,CAAA","sourcesContent":["import type { SVGProps } from \"react\"\nconst CircleDashed = (props: SVGProps) => (\n \n \n \n)\nexport default CircleDashed\n"]} \ No newline at end of file diff --git a/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/Icon/svg/CircleQuestion.js b/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/Icon/svg/CircleQuestion.js new file mode 100644 index 0000000000000000000000000000000000000000..1bda8cd5dda3d79933e69f85f17adcf42dd4bd48 --- /dev/null +++ b/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/Icon/svg/CircleQuestion.js @@ -0,0 +1,4 @@ +import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime"; +const CircleQuestion = (props) => (_jsxs("svg", { width: "1em", height: "1em", viewBox: "0 0 24 24", fill: "currentColor", ...props, children: [_jsx("path", { d: "M12 4a8 8 0 1 0 0 16 8 8 0 0 0 0-16ZM2 12C2 6.477 6.477 2 12 2s10 4.477 10 10-4.477 10-10 10S2 17.523 2 12Z" }), _jsx("path", { d: "M12 9a1 1 0 0 0-.879.522 1 1 0 0 1-1.754-.96A3 3 0 0 1 12 7c1.515 0 2.567 1.006 2.866 2.189.302 1.189-.156 2.574-1.524 3.258A.618.618 0 0 0 13 13a1 1 0 1 1-2 0c0-.992.56-1.898 1.447-2.342.455-.227.572-.618.48-.978C12.836 9.314 12.529 9 12 9Zm1.1 7a1.1 1.1 0 1 1-2.2 0 1.1 1.1 0 0 1 2.2 0Z" })] })); +export default CircleQuestion; +//# sourceMappingURL=CircleQuestion.js.map \ No newline at end of file diff --git a/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/Icon/svg/CircleQuestion.js.map b/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/Icon/svg/CircleQuestion.js.map new file mode 100644 index 0000000000000000000000000000000000000000..fa4b121d179ac4b9f7035e66fb21c1cb45f45360 --- /dev/null +++ b/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/Icon/svg/CircleQuestion.js.map @@ -0,0 +1 @@ +{"version":3,"file":"CircleQuestion.js","sourceRoot":"","sources":["../../../../../src/components/Icon/svg/CircleQuestion.tsx"],"names":[],"mappings":";AACA,MAAM,cAAc,GAAG,CAAC,KAA8B,EAAE,EAAE,CAAC,CACzD,eAAK,KAAK,EAAC,KAAK,EAAC,MAAM,EAAC,KAAK,EAAC,OAAO,EAAC,WAAW,EAAC,IAAI,EAAC,cAAc,KAAK,KAAK,aAC7E,eAAM,CAAC,EAAC,6GAA6G,GAAG,EACxH,eAAM,CAAC,EAAC,kSAAkS,GAAG,IACzS,CACP,CAAA;AACD,eAAe,cAAc,CAAA","sourcesContent":["import type { SVGProps } from \"react\"\nconst CircleQuestion = (props: SVGProps) => (\n \n \n \n \n)\nexport default CircleQuestion\n"]} \ No newline at end of file diff --git a/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/Icon/svg/ClappingBoardClosed.js b/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/Icon/svg/ClappingBoardClosed.js new file mode 100644 index 0000000000000000000000000000000000000000..2e715b4c6876a54cc6ca0de6757de3b7ae00d0cd --- /dev/null +++ b/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/Icon/svg/ClappingBoardClosed.js @@ -0,0 +1,4 @@ +import { jsx as _jsx } from "react/jsx-runtime"; +const ClappingBoardClosed = (props) => (_jsx("svg", { width: "1em", height: "1em", viewBox: "0 0 24 24", fill: "currentColor", ...props, children: _jsx("path", { fillRule: "evenodd", clipRule: "evenodd", d: "M13.5996 3C14.3472 3 14.9959 3.00063 15.5596 3.01855C15.7132 2.98861 15.8752 2.99414 16.0332 3.04102C16.1276 3.04657 16.2195 3.05034 16.3086 3.05762C17.0373 3.11715 17.6773 3.24326 18.2695 3.54492C19.2103 4.02429 19.9757 4.78966 20.4551 5.73047L20.5605 5.9541C20.7877 6.48344 20.8903 7.05359 20.9424 7.69141C20.9713 8.04489 20.985 8.43994 20.9922 8.88184C20.9968 8.92062 21 8.95998 21 9C21 9.03666 20.997 9.07276 20.9932 9.1084C20.9974 9.50255 21 9.93206 21 10.4004V13.5996C21 14.7032 21.001 15.5914 20.9424 16.3086C20.8903 16.9464 20.7877 17.5166 20.5605 18.0459L20.4551 18.2695C20.0056 19.1516 19.3054 19.8798 18.4443 20.3623L18.2695 20.4551C17.6773 20.7567 17.0373 20.8828 16.3086 20.9424C15.5914 21.001 14.7032 21 13.5996 21H10.4004C9.29681 21 8.40857 21.001 7.69141 20.9424C7.05359 20.8903 6.48344 20.7877 5.9541 20.5605L5.73047 20.4551C4.78966 19.9757 4.02429 19.2103 3.54492 18.2695C3.24327 17.6773 3.11716 17.0373 3.05762 16.3086C2.99903 15.5914 3 14.7032 3 13.5996V10.4004C3 9.93207 3.00158 9.50254 3.00586 9.1084C3.00202 9.07279 3 9.03663 3 9C3 8.96002 3.00228 8.92059 3.00684 8.88184C3.01402 8.43993 3.02874 8.04489 3.05762 7.69141C3.11716 6.9627 3.24327 6.32266 3.54492 5.73047C4.02429 4.78966 4.78966 4.02429 5.73047 3.54492C6.32266 3.24326 6.9627 3.11715 7.69141 3.05762C8.3688 3.00228 9.19881 3.00007 10.2188 3H13.5996ZM5.00195 10C5.00185 10.1286 5 10.2619 5 10.4004V13.5996C5 14.736 5.00041 15.5287 5.05078 16.1455C5.10023 16.7507 5.19296 17.0989 5.32715 17.3623C5.61472 17.9265 6.07347 18.3853 6.6377 18.6729L6.74121 18.7217C6.99244 18.8298 7.32513 18.906 7.85449 18.9492C8.47129 18.9996 9.26396 19 10.4004 19H13.5996C14.736 19 15.5287 18.9996 16.1455 18.9492C16.7507 18.8998 17.099 18.807 17.3623 18.6729L17.5684 18.5576C18.0383 18.2694 18.4211 17.8562 18.6729 17.3623L18.7217 17.2588C18.8298 17.0076 18.906 16.6749 18.9492 16.1455C18.9996 15.5287 19 14.736 19 13.5996V10.4004C19 10.2619 18.9981 10.1286 18.998 10H5.00195ZM15.2275 8H18.958C18.9547 7.95045 18.9531 7.90189 18.9492 7.85449C18.906 7.32513 18.8298 6.99244 18.7217 6.74121L18.6729 6.6377C18.3853 6.07347 17.9265 5.61472 17.3623 5.32715C17.1376 5.21265 16.8507 5.13112 16.3955 5.07812L15.2275 8ZM8.76856 5.01074C8.42179 5.01784 8.12163 5.02896 7.85449 5.05078C7.24933 5.10023 6.90105 5.19296 6.6377 5.32715C6.07347 5.61472 5.61472 6.07347 5.32715 6.6377C5.19296 6.90105 5.10023 7.24933 5.05078 7.85449C5.04691 7.90189 5.0453 7.95045 5.04199 8H7.57324L8.76856 5.01074ZM9.72754 8H13.0732L14.2715 5.00293C14.0616 5.00244 13.8382 5 13.5996 5H10.9268L9.72754 8Z", fill: "currentColor" }) })); +export default ClappingBoardClosed; +//# sourceMappingURL=ClappingBoardClosed.js.map \ No newline at end of file diff --git a/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/Icon/svg/ClappingBoardClosed.js.map b/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/Icon/svg/ClappingBoardClosed.js.map new file mode 100644 index 0000000000000000000000000000000000000000..ada04a5dbf7bdd0ea7379e512ea7acf63e4fbf90 --- /dev/null +++ b/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/Icon/svg/ClappingBoardClosed.js.map @@ -0,0 +1 @@ +{"version":3,"file":"ClappingBoardClosed.js","sourceRoot":"","sources":["../../../../../src/components/Icon/svg/ClappingBoardClosed.tsx"],"names":[],"mappings":";AACA,MAAM,mBAAmB,GAAG,CAAC,KAA8B,EAAE,EAAE,CAAC,CAC9D,cAAK,KAAK,EAAC,KAAK,EAAC,MAAM,EAAC,KAAK,EAAC,OAAO,EAAC,WAAW,EAAC,IAAI,EAAC,cAAc,KAAK,KAAK,YAC7E,eACE,QAAQ,EAAC,SAAS,EAClB,QAAQ,EAAC,SAAS,EAClB,CAAC,EAAC,y+EAAy+E,EAC3+E,IAAI,EAAC,cAAc,GACnB,GACE,CACP,CAAA;AACD,eAAe,mBAAmB,CAAA","sourcesContent":["import type { SVGProps } from \"react\"\nconst ClappingBoardClosed = (props: SVGProps) => (\n \n \n \n)\nexport default ClappingBoardClosed\n"]} \ No newline at end of file diff --git a/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/Icon/svg/ClappingBoardOpen.js b/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/Icon/svg/ClappingBoardOpen.js new file mode 100644 index 0000000000000000000000000000000000000000..3e9a91c1457839564d8144dfb4b35b4a81c4c4bc --- /dev/null +++ b/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/Icon/svg/ClappingBoardOpen.js @@ -0,0 +1,4 @@ +import { jsx as _jsx } from "react/jsx-runtime"; +const ClappingBoardOpen = (props) => (_jsx("svg", { width: "1em", height: "1em", viewBox: "0 0 24 24", fill: "currentColor", ...props, children: _jsx("path", { fillRule: "evenodd", clipRule: "evenodd", d: "M18.5717 6.88319C18.418 5.78937 17.4066 5.02728 16.3128 5.181L15.687 5.26895L14.9751 7.38866L18.5717 6.88319ZM12.7608 7.69986L13.4727 5.58015L10.2406 6.03441L9.52863 8.15411L12.7608 7.69986ZM7.31432 8.46531L8.02624 6.34561L6.41014 6.57273C5.31632 6.72646 4.55422 7.7378 4.70795 8.83162L7.31432 8.46531ZM16.0345 3.20047C18.2221 2.89301 20.2448 4.41721 20.5522 6.60485L20.6914 7.59512C20.7683 8.14203 20.3872 8.64769 19.8403 8.72456L5.42864 10.75H20.0001C20.5524 10.75 21.0001 11.1977 21.0001 11.75V15.2413C21.0001 16.0463 21.0001 16.7106 20.9559 17.2518C20.91 17.8139 20.8114 18.3306 20.5641 18.8159C20.1806 19.5686 19.5687 20.1805 18.8161 20.564C18.3307 20.8113 17.814 20.9099 17.2519 20.9558C16.7108 21 16.0464 21 15.2414 21H8.75879C7.95383 21 7.28948 21 6.74829 20.9558C6.18619 20.9099 5.66949 20.8113 5.18415 20.564C4.4315 20.1805 3.81958 19.5686 3.43609 18.8159C3.1888 18.3306 3.09023 17.8139 3.04431 17.2518C3.00009 16.7106 3.0001 16.0463 3.00011 15.2413L3.00011 11.0503L2.72741 9.10996C2.41996 6.92232 3.94415 4.89965 6.13179 4.5922L16.0345 3.20047ZM5.00011 12.75V15.2C5.00011 16.0566 5.00089 16.6389 5.03767 17.0889C5.07349 17.5274 5.13841 17.7516 5.2181 17.908C5.40985 18.2843 5.71581 18.5903 6.09213 18.782C6.24853 18.8617 6.47274 18.9266 6.91115 18.9624C7.36124 18.9992 7.94353 19 8.80011 19H15.2001C16.0567 19 16.639 18.9992 17.0891 18.9624C17.5275 18.9266 17.7517 18.8617 17.9081 18.782C18.2844 18.5903 18.5904 18.2843 18.7821 17.908C18.8618 17.7516 18.9267 17.5274 18.9626 17.0889C18.9993 16.6389 19.0001 16.0566 19.0001 15.2V12.75H5.00011Z", fill: "currentColor" }) })); +export default ClappingBoardOpen; +//# sourceMappingURL=ClappingBoardOpen.js.map \ No newline at end of file diff --git a/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/Icon/svg/ClappingBoardOpen.js.map b/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/Icon/svg/ClappingBoardOpen.js.map new file mode 100644 index 0000000000000000000000000000000000000000..2cb646a497a22c0dd978cdfd5b1ba64d084a3f1e --- /dev/null +++ b/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/Icon/svg/ClappingBoardOpen.js.map @@ -0,0 +1 @@ +{"version":3,"file":"ClappingBoardOpen.js","sourceRoot":"","sources":["../../../../../src/components/Icon/svg/ClappingBoardOpen.tsx"],"names":[],"mappings":";AACA,MAAM,iBAAiB,GAAG,CAAC,KAA8B,EAAE,EAAE,CAAC,CAC5D,cAAK,KAAK,EAAC,KAAK,EAAC,MAAM,EAAC,KAAK,EAAC,OAAO,EAAC,WAAW,EAAC,IAAI,EAAC,cAAc,KAAK,KAAK,YAC7E,eACE,QAAQ,EAAC,SAAS,EAClB,QAAQ,EAAC,SAAS,EAClB,CAAC,EAAC,mhDAAmhD,EACrhD,IAAI,EAAC,cAAc,GACnB,GACE,CACP,CAAA;AACD,eAAe,iBAAiB,CAAA","sourcesContent":["import type { SVGProps } from \"react\"\nconst ClappingBoardOpen = (props: SVGProps) => (\n \n \n \n)\nexport default ClappingBoardOpen\n"]} \ No newline at end of file diff --git a/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/Icon/svg/Cleanup.js b/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/Icon/svg/Cleanup.js new file mode 100644 index 0000000000000000000000000000000000000000..19098c52d0393c6f3ac1345818c5c7038d60ea8e --- /dev/null +++ b/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/Icon/svg/Cleanup.js @@ -0,0 +1,4 @@ +import { jsx as _jsx } from "react/jsx-runtime"; +const Cleanup = (props) => (_jsx("svg", { width: "1em", height: "1em", viewBox: "0 0 24 24", fill: "currentColor", ...props, children: _jsx("path", { fillRule: "evenodd", clipRule: "evenodd", d: "M20.6924 7.69934C21.9197 6.49031 21.9271 4.51298 20.7089 3.2948C19.4886 2.07451 17.5071 2.08437 16.299 3.31675L13.5969 6.07326L13.5568 6.03323C12.2372 4.71498 10.165 4.92295 8.96133 6.1414C7.50794 7.61259 5.9016 8.71537 4.01232 9.53517C2.41106 10.23 1.38556 12.218 2.39528 13.9556C2.71855 14.5119 3.04766 15.0415 3.38622 15.5473C3.63945 15.9257 4.11629 16.0853 4.54624 15.9355L4.76992 15.8576L4.59035 16.1624C4.37846 16.5222 4.41238 16.9757 4.67542 17.3C5.53382 18.3581 6.22496 19.0669 7.05481 19.7064C7.8654 20.331 8.78688 20.8714 10.0525 21.6054C11.7893 22.6127 13.7791 21.5912 14.4753 19.99C15.2958 18.1028 16.3996 16.4982 17.8722 15.0462C19.0923 13.8434 19.3008 11.7715 17.9805 10.4525L17.9394 10.4115L20.6924 7.69934ZM17.7273 4.71682C18.1567 4.27878 18.861 4.27527 19.2947 4.70902C19.7277 5.14201 19.7251 5.84483 19.2889 6.27457L15.8177 9.6941C15.6278 9.8812 15.5204 10.1364 15.5195 10.403C15.5186 10.6696 15.6241 10.9255 15.8127 11.1139L16.567 11.8674C16.9956 12.2956 17.0084 13.0893 16.4681 13.622C16.2745 13.8129 16.0865 14.0063 15.9038 14.2024L9.80462 8.10929C10.0005 7.92726 10.1936 7.73986 10.3841 7.54698C10.9178 7.00679 11.7139 7.01923 12.1433 7.44814L12.8975 8.20165C13.0863 8.39025 13.3427 8.49557 13.6095 8.49417C13.8764 8.49278 14.1316 8.38479 14.3184 8.19422L17.7273 4.71682ZM8.25899 9.39223C7.19845 10.1743 6.05635 10.8284 4.80844 11.3699C4.05522 11.6967 3.84545 12.4705 4.12451 12.9507C4.29191 13.2388 4.46015 13.5178 4.62979 13.7885L6.68582 13.0723C7.08193 12.9343 7.52205 13.0582 7.78803 13.3825C8.05401 13.7068 8.08932 14.1627 7.87644 14.5241L6.67127 16.5703C7.25497 17.247 7.73718 17.7073 8.27556 18.1222C8.96317 18.652 9.76515 19.1267 11.0559 19.8753C11.539 20.1555 12.3146 19.9434 12.6411 19.1925C13.183 17.9463 13.8374 16.8058 14.6198 15.7467L8.25899 9.39223Z", fill: "currentColor" }) })); +export default Cleanup; +//# sourceMappingURL=Cleanup.js.map \ No newline at end of file diff --git a/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/Icon/svg/Cleanup.js.map b/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/Icon/svg/Cleanup.js.map new file mode 100644 index 0000000000000000000000000000000000000000..f96cdc3a8f12111387ef0edfb9b2d287d5866611 --- /dev/null +++ b/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/Icon/svg/Cleanup.js.map @@ -0,0 +1 @@ +{"version":3,"file":"Cleanup.js","sourceRoot":"","sources":["../../../../../src/components/Icon/svg/Cleanup.tsx"],"names":[],"mappings":";AACA,MAAM,OAAO,GAAG,CAAC,KAA8B,EAAE,EAAE,CAAC,CAClD,cAAK,KAAK,EAAC,KAAK,EAAC,MAAM,EAAC,KAAK,EAAC,OAAO,EAAC,WAAW,EAAC,IAAI,EAAC,cAAc,KAAK,KAAK,YAC7E,eACE,QAAQ,EAAC,SAAS,EAClB,QAAQ,EAAC,SAAS,EAClB,CAAC,EAAC,4vDAA4vD,EAC9vD,IAAI,EAAC,cAAc,GACnB,GACE,CACP,CAAA;AACD,eAAe,OAAO,CAAA","sourcesContent":["import type { SVGProps } from \"react\"\nconst Cleanup = (props: SVGProps) => (\n \n \n \n)\nexport default Cleanup\n"]} \ No newline at end of file diff --git a/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/Icon/svg/Clear.js b/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/Icon/svg/Clear.js new file mode 100644 index 0000000000000000000000000000000000000000..517c1e0053d1bda5334c7380dfc227a162be9f87 --- /dev/null +++ b/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/Icon/svg/Clear.js @@ -0,0 +1,4 @@ +import { jsx as _jsx } from "react/jsx-runtime"; +const Clear = (props) => (_jsx("svg", { width: "1em", height: "1em", viewBox: "0 0 24 24", fill: "currentColor", ...props, children: _jsx("path", { fillRule: "evenodd", d: "M20.719 4.696a1 1 0 0 0-1.415-1.415l-4.796 4.796-.634-.635a3.002 3.002 0 0 0-3.788-.375l-7.64 5.093a1 1 0 0 0-.153 1.541l8.005 8.005a1.002 1.002 0 0 0 1.541-.152l5.093-7.64a3.001 3.001 0 0 0-.375-3.789l-.634-.633 4.796-4.796Zm-9.523 4.037a1 1 0 0 1 1.263.124l2.682 2.684a1 1 0 0 1 .126 1.262l-.414.621-4.278-4.277.62-.414ZM8.877 10.28l-4.305 2.87 1.43 1.43 1.294-1.292a1 1 0 0 1 1.415 1.415l-1.294 1.294 3.433 3.432 2.871-4.306-4.844-4.843Z", clipRule: "evenodd" }) })); +export default Clear; +//# sourceMappingURL=Clear.js.map \ No newline at end of file diff --git a/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/Icon/svg/Clear.js.map b/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/Icon/svg/Clear.js.map new file mode 100644 index 0000000000000000000000000000000000000000..04245c183c77a6ef6ff0c463e0cb50c6c2df8514 --- /dev/null +++ b/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/Icon/svg/Clear.js.map @@ -0,0 +1 @@ +{"version":3,"file":"Clear.js","sourceRoot":"","sources":["../../../../../src/components/Icon/svg/Clear.tsx"],"names":[],"mappings":";AACA,MAAM,KAAK,GAAG,CAAC,KAA8B,EAAE,EAAE,CAAC,CAChD,cAAK,KAAK,EAAC,KAAK,EAAC,MAAM,EAAC,KAAK,EAAC,OAAO,EAAC,WAAW,EAAC,IAAI,EAAC,cAAc,KAAK,KAAK,YAC7E,eACE,QAAQ,EAAC,SAAS,EAClB,CAAC,EAAC,0bAA0b,EAC5b,QAAQ,EAAC,SAAS,GAClB,GACE,CACP,CAAA;AACD,eAAe,KAAK,CAAA","sourcesContent":["import type { SVGProps } from \"react\"\nconst Clear = (props: SVGProps) => (\n \n \n \n)\nexport default Clear\n"]} \ No newline at end of file diff --git a/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/Icon/svg/Click.js b/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/Icon/svg/Click.js new file mode 100644 index 0000000000000000000000000000000000000000..d1912e9e7e83fabf978d8540f014c024dd7da69c --- /dev/null +++ b/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/Icon/svg/Click.js @@ -0,0 +1,4 @@ +import { jsx as _jsx } from "react/jsx-runtime"; +const Click = (props) => (_jsx("svg", { width: "1em", height: "1em", viewBox: "0 0 24 24", fill: "currentColor", ...props, children: _jsx("path", { d: "M6.83828 4.6278C4.57626 6.21169 4.02652 9.32942 5.61041 11.5914C5.94663 12.0716 6.35043 12.4732 6.79926 12.7937C7.2487 13.1147 7.35283 13.7393 7.03185 14.1887C6.71086 14.6381 6.08632 14.7422 5.63689 14.4213C5.00587 13.9706 4.44035 13.4073 3.9721 12.7386C1.75466 9.57176 2.5243 5.20694 5.69113 2.9895C8.85797 0.772055 13.2228 1.54169 15.4402 4.70853C15.9085 5.37725 16.2444 6.10132 16.452 6.84842C16.5999 7.38053 16.2885 7.9318 15.7564 8.0797C15.2243 8.22761 14.673 7.91615 14.5251 7.38404C14.3774 6.85265 14.1381 6.33585 13.8019 5.85568C12.218 3.59365 9.10031 3.04391 6.83828 4.6278ZM9.41486 8.31713C9.72777 8.09528 10.14 8.07196 10.476 8.25713L20.719 13.903C21.0214 14.0697 21.2164 14.3805 21.2348 14.7252C21.2533 15.07 21.0927 15.3999 20.8099 15.5979L19.0603 16.823L20.1987 18.4775C20.5099 18.9298 20.3982 19.5485 19.9484 19.8635L16.6673 22.1609C16.2149 22.4777 15.5913 22.3678 15.2745 21.9153L14.1274 20.277L12.4936 21.421C12.2125 21.6179 11.8501 21.6568 11.5336 21.5242C11.2171 21.3916 10.9907 21.106 10.9338 20.7676L9.00706 9.29858C8.9435 8.9203 9.10194 8.53899 9.41486 8.31713ZM11.3221 11.0072L12.6438 18.8743L13.7994 18.0652C14.2518 17.7484 14.8753 17.8583 15.1921 18.3107L16.3393 19.949L17.9888 18.794L16.8505 17.1395C16.5392 16.6872 16.6509 16.0685 17.1007 15.7535L18.3483 14.88L11.3221 11.0072Z", fill: "currentColor" }) })); +export default Click; +//# sourceMappingURL=Click.js.map \ No newline at end of file diff --git a/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/Icon/svg/Click.js.map b/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/Icon/svg/Click.js.map new file mode 100644 index 0000000000000000000000000000000000000000..dcf44bcbe933ff24d42296e725ad86ae6647df94 --- /dev/null +++ b/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/Icon/svg/Click.js.map @@ -0,0 +1 @@ +{"version":3,"file":"Click.js","sourceRoot":"","sources":["../../../../../src/components/Icon/svg/Click.tsx"],"names":[],"mappings":";AACA,MAAM,KAAK,GAAG,CAAC,KAA8B,EAAE,EAAE,CAAC,CAChD,cAAK,KAAK,EAAC,KAAK,EAAC,MAAM,EAAC,KAAK,EAAC,OAAO,EAAC,WAAW,EAAC,IAAI,EAAC,cAAc,KAAK,KAAK,YAC7E,eACE,CAAC,EAAC,0xCAA0xC,EAC5xC,IAAI,EAAC,cAAc,GACnB,GACE,CACP,CAAA;AACD,eAAe,KAAK,CAAA","sourcesContent":["import type { SVGProps } from \"react\"\nconst Click = (props: SVGProps) => (\n \n \n \n)\nexport default Click\n"]} \ No newline at end of file diff --git a/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/Icon/svg/Clip.js b/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/Icon/svg/Clip.js new file mode 100644 index 0000000000000000000000000000000000000000..fd9df9439a681bb717fcb420c0abea4f1e39d044 --- /dev/null +++ b/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/Icon/svg/Clip.js @@ -0,0 +1,4 @@ +import { jsx as _jsx } from "react/jsx-runtime"; +const Clip = (props) => (_jsx("svg", { width: "1em", height: "1em", viewBox: "0 0 24 24", fill: "currentColor", ...props, children: _jsx("path", { fillRule: "evenodd", d: "M9 7a5 5 0 0 1 10 0v8a7 7 0 1 1-14 0V9a1 1 0 0 1 2 0v6a5 5 0 0 0 10 0V7a3 3 0 1 0-6 0v8a1 1 0 1 0 2 0V9a1 1 0 1 1 2 0v6a3 3 0 1 1-6 0V7Z", clipRule: "evenodd" }) })); +export default Clip; +//# sourceMappingURL=Clip.js.map \ No newline at end of file diff --git a/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/Icon/svg/Clip.js.map b/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/Icon/svg/Clip.js.map new file mode 100644 index 0000000000000000000000000000000000000000..8d72d59ae306ea0493681090f27d0113c5b2c5f3 --- /dev/null +++ b/loan-advisor-chatgpt-app/node_modules/@openai/apps-sdk-ui/dist/es/components/Icon/svg/Clip.js.map @@ -0,0 +1 @@ +{"version":3,"file":"Clip.js","sourceRoot":"","sources":["../../../../../src/components/Icon/svg/Clip.tsx"],"names":[],"mappings":";AACA,MAAM,IAAI,GAAG,CAAC,KAA8B,EAAE,EAAE,CAAC,CAC/C,cAAK,KAAK,EAAC,KAAK,EAAC,MAAM,EAAC,KAAK,EAAC,OAAO,EAAC,WAAW,EAAC,IAAI,EAAC,cAAc,KAAK,KAAK,YAC7E,eACE,QAAQ,EAAC,SAAS,EAClB,CAAC,EAAC,0IAA0I,EAC5I,QAAQ,EAAC,SAAS,GAClB,GACE,CACP,CAAA;AACD,eAAe,IAAI,CAAA","sourcesContent":["import type { SVGProps } from \"react\"\nconst Clip = (props: SVGProps) => (\n \n \n \n)\nexport default Clip\n"]} \ No newline at end of file