Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

@settlemint/sdk-utils

Package Overview
Dependencies
Maintainers
2
Versions
1489
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@settlemint/sdk-utils - npm Package Compare versions

Comparing version 0.9.8 to 0.9.9-pr0e56a924

17

dist/filesystem.d.ts

@@ -32,2 +32,17 @@ import { PathLike } from 'node:fs';

export { exists, projectRoot };
/**
* Finds the root directory of a monorepo
*
* @param startDir - The directory to start searching from
* @returns The root directory of the monorepo or null if not found
*/
declare function findMonoRepoRoot(startDir: string): Promise<string | null>;
/**
* Finds all packages in a monorepo
*
* @param projectDir - The directory to start searching from
* @returns An array of package directories
*/
declare function findMonoRepoPackages(projectDir: string): Promise<string[]>;
export { exists, findMonoRepoPackages, findMonoRepoRoot, projectRoot };

@@ -471,2 +471,17 @@ import { ZodString, z, ZodSchema } from 'zod';

/**
* Finds the root directory of a monorepo
*
* @param startDir - The directory to start searching from
* @returns The root directory of the monorepo or null if not found
*/
declare function findMonoRepoRoot(startDir: string): Promise<string | null>;
/**
* Finds all packages in a monorepo
*
* @param projectDir - The directory to start searching from
* @returns An array of package directories
*/
declare function findMonoRepoPackages(projectDir: string): Promise<string[]>;
/**
* Attempts to parse a JSON string into a typed value, returning a default value if parsing fails.

@@ -610,2 +625,24 @@ *

/**
* Retry a function when it fails.
* @param fn - The function to retry.
* @param maxRetries - The maximum number of retries.
* @param initialSleepTime - The initial time to sleep between exponential backoff retries.
* @param stopOnError - The function to stop on error.
* @returns The result of the function or undefined if it fails.
*/
declare function retryWhenFailed<T>(fn: () => Promise<T>, maxRetries?: number, initialSleepTime?: number, stopOnError?: (error: Error) => boolean): Promise<T>;
/**
* Retry an HTTP request with exponential backoff and jitter.
* Only retries on server errors (5xx), rate limits (429), timeouts (408), and network errors.
*
* @param input - The URL or Request object to fetch
* @param init - The fetch init options
* @param maxRetries - Maximum number of retry attempts
* @param initialSleepTime - Initial sleep time between retries in ms
* @returns The fetch Response
* @throws Error if all retries fail
*/
declare function fetchWithRetry(input: RequestInfo | URL, init?: RequestInit, maxRetries?: number, initialSleepTime?: number): Promise<Response>;
/**
* Ensures that code is running on the server and not in a browser environment.

@@ -802,2 +839,2 @@ *

export { type AccessToken, AccessTokenSchema, type ApplicationAccessToken, ApplicationAccessTokenSchema, type DotEnv, type DotEnvPartial, DotEnvSchema, DotEnvSchemaPartial, type ExecuteCommandOptions, type Id, IdSchema, type PersonalAccessToken, PersonalAccessTokenSchema, type SpinnerOptions, type Template, UniqueNameSchema, type Url, type UrlOrPath, UrlOrPathSchema, type UrlPath, UrlPathSchema, UrlSchema, ascii, cancel, capitalizeFirstLetter, emptyDir, ensureBrowser, ensureServer, executeCommand, exists, formatTargetDir, getPackageManager, getPackageManagerExecutable, installDependencies, intro, isEmpty, isPackageInstalled, loadEnv, maskTokens, note, outro, projectRoot, runsInBrowser, runsOnServer, setName, spinner, templates, tryParseJson, validate, writeEnv };
export { type AccessToken, AccessTokenSchema, type ApplicationAccessToken, ApplicationAccessTokenSchema, type DotEnv, type DotEnvPartial, DotEnvSchema, DotEnvSchemaPartial, type ExecuteCommandOptions, type Id, IdSchema, type PersonalAccessToken, PersonalAccessTokenSchema, type SpinnerOptions, type Template, UniqueNameSchema, type Url, type UrlOrPath, UrlOrPathSchema, type UrlPath, UrlPathSchema, UrlSchema, ascii, cancel, capitalizeFirstLetter, emptyDir, ensureBrowser, ensureServer, executeCommand, exists, fetchWithRetry, findMonoRepoPackages, findMonoRepoRoot, formatTargetDir, getPackageManager, getPackageManagerExecutable, installDependencies, intro, isEmpty, isPackageInstalled, loadEnv, maskTokens, note, outro, projectRoot, retryWhenFailed, runsInBrowser, runsOnServer, setName, spinner, templates, tryParseJson, validate, writeEnv };

2

package.json
{
"name": "@settlemint/sdk-utils",
"description": "SettleMint SDK, integrate SettleMint into your application with ease.",
"version": "0.9.8",
"version": "0.9.9-pr0e56a924",
"type": "module",

@@ -6,0 +6,0 @@ "private": false,

@@ -101,3 +101,3 @@ <p align="center">

Defined in: [sdk/utils/src/terminal/ascii.ts:13](https://github.com/settlemint/sdk/blob/v0.9.7/sdk/utils/src/terminal/ascii.ts#L13)
Defined in: [sdk/utils/src/terminal/ascii.ts:13](https://github.com/settlemint/sdk/blob/v0.9.9/sdk/utils/src/terminal/ascii.ts#L13)

@@ -126,3 +126,3 @@ Prints the SettleMint ASCII art logo to the console in magenta color.

Defined in: [sdk/utils/src/terminal/cancel.ts:17](https://github.com/settlemint/sdk/blob/v0.9.7/sdk/utils/src/terminal/cancel.ts#L17)
Defined in: [sdk/utils/src/terminal/cancel.ts:17](https://github.com/settlemint/sdk/blob/v0.9.9/sdk/utils/src/terminal/cancel.ts#L17)

@@ -160,3 +160,3 @@ Displays an error message in red inverse text and exits the process.

Defined in: [sdk/utils/src/string.ts:13](https://github.com/settlemint/sdk/blob/v0.9.7/sdk/utils/src/string.ts#L13)
Defined in: [sdk/utils/src/string.ts:13](https://github.com/settlemint/sdk/blob/v0.9.9/sdk/utils/src/string.ts#L13)

@@ -192,3 +192,3 @@ Capitalizes the first letter of a string.

Defined in: [sdk/utils/src/package-manager/download-and-extract.ts:53](https://github.com/settlemint/sdk/blob/v0.9.7/sdk/utils/src/package-manager/download-and-extract.ts#L53)
Defined in: [sdk/utils/src/package-manager/download-and-extract.ts:53](https://github.com/settlemint/sdk/blob/v0.9.9/sdk/utils/src/package-manager/download-and-extract.ts#L53)

@@ -221,3 +221,3 @@ Removes all contents of a directory except the .git folder

Defined in: [sdk/utils/src/runtime/ensure-server.ts:31](https://github.com/settlemint/sdk/blob/v0.9.7/sdk/utils/src/runtime/ensure-server.ts#L31)
Defined in: [sdk/utils/src/runtime/ensure-server.ts:31](https://github.com/settlemint/sdk/blob/v0.9.9/sdk/utils/src/runtime/ensure-server.ts#L31)

@@ -249,3 +249,3 @@ Ensures that code is running in a browser environment and not on the server.

Defined in: [sdk/utils/src/runtime/ensure-server.ts:13](https://github.com/settlemint/sdk/blob/v0.9.7/sdk/utils/src/runtime/ensure-server.ts#L13)
Defined in: [sdk/utils/src/runtime/ensure-server.ts:13](https://github.com/settlemint/sdk/blob/v0.9.9/sdk/utils/src/runtime/ensure-server.ts#L13)

@@ -277,3 +277,3 @@ Ensures that code is running on the server and not in a browser environment.

Defined in: [sdk/utils/src/terminal/execute-command.ts:31](https://github.com/settlemint/sdk/blob/v0.9.7/sdk/utils/src/terminal/execute-command.ts#L31)
Defined in: [sdk/utils/src/terminal/execute-command.ts:31](https://github.com/settlemint/sdk/blob/v0.9.9/sdk/utils/src/terminal/execute-command.ts#L31)

@@ -320,3 +320,3 @@ Executes a command with the given arguments in a child process.

Defined in: [sdk/utils/src/filesystem/exists.ts:17](https://github.com/settlemint/sdk/blob/v0.9.7/sdk/utils/src/filesystem/exists.ts#L17)
Defined in: [sdk/utils/src/filesystem/exists.ts:17](https://github.com/settlemint/sdk/blob/v0.9.9/sdk/utils/src/filesystem/exists.ts#L17)

@@ -354,3 +354,3 @@ Checks if a file or directory exists at the given path

Defined in: [sdk/utils/src/package-manager/download-and-extract.ts:23](https://github.com/settlemint/sdk/blob/v0.9.7/sdk/utils/src/package-manager/download-and-extract.ts#L23)
Defined in: [sdk/utils/src/package-manager/download-and-extract.ts:23](https://github.com/settlemint/sdk/blob/v0.9.9/sdk/utils/src/package-manager/download-and-extract.ts#L23)

@@ -385,3 +385,3 @@ Formats a directory path by removing trailing slashes and whitespace

Defined in: [sdk/utils/src/package-manager/get-package-manager.ts:15](https://github.com/settlemint/sdk/blob/v0.9.7/sdk/utils/src/package-manager/get-package-manager.ts#L15)
Defined in: [sdk/utils/src/package-manager/get-package-manager.ts:15](https://github.com/settlemint/sdk/blob/v0.9.9/sdk/utils/src/package-manager/get-package-manager.ts#L15)

@@ -417,3 +417,3 @@ Detects the package manager used in the current project

Defined in: [sdk/utils/src/package-manager/get-package-manager-executable.ts:14](https://github.com/settlemint/sdk/blob/v0.9.7/sdk/utils/src/package-manager/get-package-manager-executable.ts#L14)
Defined in: [sdk/utils/src/package-manager/get-package-manager-executable.ts:14](https://github.com/settlemint/sdk/blob/v0.9.9/sdk/utils/src/package-manager/get-package-manager-executable.ts#L14)

@@ -449,3 +449,3 @@ Retrieves the executable command and arguments for the package manager

Defined in: [sdk/utils/src/package-manager/install-dependencies.ts:20](https://github.com/settlemint/sdk/blob/v0.9.7/sdk/utils/src/package-manager/install-dependencies.ts#L20)
Defined in: [sdk/utils/src/package-manager/install-dependencies.ts:20](https://github.com/settlemint/sdk/blob/v0.9.9/sdk/utils/src/package-manager/install-dependencies.ts#L20)

@@ -489,3 +489,3 @@ Installs one or more packages as dependencies using the detected package manager

Defined in: [sdk/utils/src/terminal/intro.ts:15](https://github.com/settlemint/sdk/blob/v0.9.7/sdk/utils/src/terminal/intro.ts#L15)
Defined in: [sdk/utils/src/terminal/intro.ts:15](https://github.com/settlemint/sdk/blob/v0.9.9/sdk/utils/src/terminal/intro.ts#L15)

@@ -520,3 +520,3 @@ Displays an introductory message in magenta text with padding.

Defined in: [sdk/utils/src/package-manager/download-and-extract.ts:39](https://github.com/settlemint/sdk/blob/v0.9.7/sdk/utils/src/package-manager/download-and-extract.ts#L39)
Defined in: [sdk/utils/src/package-manager/download-and-extract.ts:39](https://github.com/settlemint/sdk/blob/v0.9.9/sdk/utils/src/package-manager/download-and-extract.ts#L39)

@@ -553,3 +553,3 @@ Checks if a directory is empty or contains only a .git folder

Defined in: [sdk/utils/src/package-manager/is-package-installed.ts:12](https://github.com/settlemint/sdk/blob/v0.9.7/sdk/utils/src/package-manager/is-package-installed.ts#L12)
Defined in: [sdk/utils/src/package-manager/is-package-installed.ts:12](https://github.com/settlemint/sdk/blob/v0.9.9/sdk/utils/src/package-manager/is-package-installed.ts#L12)

@@ -581,3 +581,3 @@ Checks if a package is installed in the project's dependencies, devDependencies, or peerDependencies.

Defined in: [sdk/utils/src/environment/load-env.ts:25](https://github.com/settlemint/sdk/blob/v0.9.7/sdk/utils/src/environment/load-env.ts#L25)
Defined in: [sdk/utils/src/environment/load-env.ts:25](https://github.com/settlemint/sdk/blob/v0.9.9/sdk/utils/src/environment/load-env.ts#L25)

@@ -630,3 +630,3 @@ Loads environment variables from .env files.

Defined in: [sdk/utils/src/terminal/mask-tokens.ts:13](https://github.com/settlemint/sdk/blob/v0.9.7/sdk/utils/src/terminal/mask-tokens.ts#L13)
Defined in: [sdk/utils/src/terminal/mask-tokens.ts:13](https://github.com/settlemint/sdk/blob/v0.9.9/sdk/utils/src/terminal/mask-tokens.ts#L13)

@@ -663,3 +663,3 @@ Masks sensitive SettleMint tokens in output text by replacing them with asterisks.

Defined in: [sdk/utils/src/terminal/note.ts:20](https://github.com/settlemint/sdk/blob/v0.9.7/sdk/utils/src/terminal/note.ts#L20)
Defined in: [sdk/utils/src/terminal/note.ts:20](https://github.com/settlemint/sdk/blob/v0.9.9/sdk/utils/src/terminal/note.ts#L20)

@@ -699,3 +699,3 @@ Displays a note message with optional warning level formatting.

Defined in: [sdk/utils/src/terminal/outro.ts:15](https://github.com/settlemint/sdk/blob/v0.9.7/sdk/utils/src/terminal/outro.ts#L15)
Defined in: [sdk/utils/src/terminal/outro.ts:15](https://github.com/settlemint/sdk/blob/v0.9.9/sdk/utils/src/terminal/outro.ts#L15)

@@ -730,3 +730,3 @@ Displays a closing message in green inverted text with padding.

Defined in: [sdk/utils/src/filesystem/project-root.ts:16](https://github.com/settlemint/sdk/blob/v0.9.7/sdk/utils/src/filesystem/project-root.ts#L16)
Defined in: [sdk/utils/src/filesystem/project-root.ts:16](https://github.com/settlemint/sdk/blob/v0.9.9/sdk/utils/src/filesystem/project-root.ts#L16)

@@ -767,3 +767,3 @@ Finds the root directory of the current project by locating the nearest package.json file

Defined in: [sdk/utils/src/package-manager/set-name.ts:16](https://github.com/settlemint/sdk/blob/v0.9.7/sdk/utils/src/package-manager/set-name.ts#L16)
Defined in: [sdk/utils/src/package-manager/set-name.ts:16](https://github.com/settlemint/sdk/blob/v0.9.9/sdk/utils/src/package-manager/set-name.ts#L16)

@@ -803,3 +803,3 @@ Sets the name field in the package.json file

Defined in: [sdk/utils/src/terminal/spinner.ts:39](https://github.com/settlemint/sdk/blob/v0.9.7/sdk/utils/src/terminal/spinner.ts#L39)
Defined in: [sdk/utils/src/terminal/spinner.ts:39](https://github.com/settlemint/sdk/blob/v0.9.9/sdk/utils/src/terminal/spinner.ts#L39)

@@ -854,3 +854,3 @@ Displays a loading spinner while executing an async task.

Defined in: [sdk/utils/src/json.ts:23](https://github.com/settlemint/sdk/blob/v0.9.7/sdk/utils/src/json.ts#L23)
Defined in: [sdk/utils/src/json.ts:23](https://github.com/settlemint/sdk/blob/v0.9.9/sdk/utils/src/json.ts#L23)

@@ -902,3 +902,3 @@ Attempts to parse a JSON string into a typed value, returning a default value if parsing fails.

Defined in: [sdk/utils/src/validation.ts:14](https://github.com/settlemint/sdk/blob/v0.9.7/sdk/utils/src/validation.ts#L14)
Defined in: [sdk/utils/src/validation.ts:14](https://github.com/settlemint/sdk/blob/v0.9.9/sdk/utils/src/validation.ts#L14)

@@ -942,3 +942,3 @@ Validates a value against a given Zod schema.

Defined in: [sdk/utils/src/environment/write-env.ts:81](https://github.com/settlemint/sdk/blob/v0.9.7/sdk/utils/src/environment/write-env.ts#L81)
Defined in: [sdk/utils/src/environment/write-env.ts:81](https://github.com/settlemint/sdk/blob/v0.9.9/sdk/utils/src/environment/write-env.ts#L81)

@@ -985,3 +985,3 @@ Writes environment variables to .env files across a project or monorepo

Defined in: [sdk/utils/src/terminal/execute-command.ts:7](https://github.com/settlemint/sdk/blob/v0.9.7/sdk/utils/src/terminal/execute-command.ts#L7)
Defined in: [sdk/utils/src/terminal/execute-command.ts:7](https://github.com/settlemint/sdk/blob/v0.9.9/sdk/utils/src/terminal/execute-command.ts#L7)

@@ -998,3 +998,3 @@ Options for executing a command, extending SpawnOptionsWithoutStdio

| ------ | ------ | ------ | ------ |
| <a id="silent"></a> `silent?` | `boolean` | Whether to suppress output to stdout/stderr | [sdk/utils/src/terminal/execute-command.ts:9](https://github.com/settlemint/sdk/blob/v0.9.7/sdk/utils/src/terminal/execute-command.ts#L9) |
| <a id="silent"></a> `silent?` | `boolean` | Whether to suppress output to stdout/stderr | [sdk/utils/src/terminal/execute-command.ts:9](https://github.com/settlemint/sdk/blob/v0.9.9/sdk/utils/src/terminal/execute-command.ts#L9) |

@@ -1005,3 +1005,3 @@ ***

Defined in: [sdk/utils/src/terminal/spinner.ts:9](https://github.com/settlemint/sdk/blob/v0.9.7/sdk/utils/src/terminal/spinner.ts#L9)
Defined in: [sdk/utils/src/terminal/spinner.ts:9](https://github.com/settlemint/sdk/blob/v0.9.9/sdk/utils/src/terminal/spinner.ts#L9)

@@ -1020,5 +1020,5 @@ Options for configuring the spinner behavior

| ------ | ------ | ------ | ------ |
| <a id="startmessage"></a> `startMessage` | `string` | Message to display when spinner starts | [sdk/utils/src/terminal/spinner.ts:11](https://github.com/settlemint/sdk/blob/v0.9.7/sdk/utils/src/terminal/spinner.ts#L11) |
| <a id="stopmessage"></a> `stopMessage` | `string` | Message to display when spinner completes successfully | [sdk/utils/src/terminal/spinner.ts:15](https://github.com/settlemint/sdk/blob/v0.9.7/sdk/utils/src/terminal/spinner.ts#L15) |
| <a id="task"></a> `task` | () => `Promise`\<`R`\> | Async task to execute while spinner is active | [sdk/utils/src/terminal/spinner.ts:13](https://github.com/settlemint/sdk/blob/v0.9.7/sdk/utils/src/terminal/spinner.ts#L13) |
| <a id="startmessage"></a> `startMessage` | `string` | Message to display when spinner starts | [sdk/utils/src/terminal/spinner.ts:11](https://github.com/settlemint/sdk/blob/v0.9.9/sdk/utils/src/terminal/spinner.ts#L11) |
| <a id="stopmessage"></a> `stopMessage` | `string` | Message to display when spinner completes successfully | [sdk/utils/src/terminal/spinner.ts:15](https://github.com/settlemint/sdk/blob/v0.9.9/sdk/utils/src/terminal/spinner.ts#L15) |
| <a id="task"></a> `task` | () => `Promise`\<`R`\> | Async task to execute while spinner is active | [sdk/utils/src/terminal/spinner.ts:13](https://github.com/settlemint/sdk/blob/v0.9.9/sdk/utils/src/terminal/spinner.ts#L13) |

@@ -1031,3 +1031,3 @@ ### Type Aliases

Defined in: [sdk/utils/src/validation/access-token.schema.ts:22](https://github.com/settlemint/sdk/blob/v0.9.7/sdk/utils/src/validation/access-token.schema.ts#L22)
Defined in: [sdk/utils/src/validation/access-token.schema.ts:22](https://github.com/settlemint/sdk/blob/v0.9.9/sdk/utils/src/validation/access-token.schema.ts#L22)

@@ -1043,3 +1043,3 @@ Schema for validating both application and personal access tokens.

Defined in: [sdk/utils/src/validation/access-token.schema.ts:8](https://github.com/settlemint/sdk/blob/v0.9.7/sdk/utils/src/validation/access-token.schema.ts#L8)
Defined in: [sdk/utils/src/validation/access-token.schema.ts:8](https://github.com/settlemint/sdk/blob/v0.9.9/sdk/utils/src/validation/access-token.schema.ts#L8)

@@ -1055,3 +1055,3 @@ Schema for validating application access tokens.

Defined in: [sdk/utils/src/validation/dot-env.schema.ts:91](https://github.com/settlemint/sdk/blob/v0.9.7/sdk/utils/src/validation/dot-env.schema.ts#L91)
Defined in: [sdk/utils/src/validation/dot-env.schema.ts:91](https://github.com/settlemint/sdk/blob/v0.9.9/sdk/utils/src/validation/dot-env.schema.ts#L91)

@@ -1064,37 +1064,37 @@ Type definition for the environment variables schema.

| ------ | ------ | ------ | ------ |
| <a id="settlemint_access_token"></a> `SETTLEMINT_ACCESS_TOKEN`? | `string` | Application access token for authenticating with SettleMint services | [sdk/utils/src/validation/dot-env.schema.ts:16](https://github.com/settlemint/sdk/blob/v0.9.7/sdk/utils/src/validation/dot-env.schema.ts#L16) |
| <a id="settlemint_application"></a> `SETTLEMINT_APPLICATION`? | `string` | Unique name of the application | [sdk/utils/src/validation/dot-env.schema.ts:22](https://github.com/settlemint/sdk/blob/v0.9.7/sdk/utils/src/validation/dot-env.schema.ts#L22) |
| <a id="settlemint_blockchain_network"></a> `SETTLEMINT_BLOCKCHAIN_NETWORK`? | `string` | Unique name of the blockchain network | [sdk/utils/src/validation/dot-env.schema.ts:24](https://github.com/settlemint/sdk/blob/v0.9.7/sdk/utils/src/validation/dot-env.schema.ts#L24) |
| <a id="settlemint_blockchain_node"></a> `SETTLEMINT_BLOCKCHAIN_NODE`? | `string` | Unique name of the blockchain node | [sdk/utils/src/validation/dot-env.schema.ts:26](https://github.com/settlemint/sdk/blob/v0.9.7/sdk/utils/src/validation/dot-env.schema.ts#L26) |
| <a id="settlemint_blockscout"></a> `SETTLEMINT_BLOCKSCOUT`? | `string` | Unique name of the Blockscout instance | [sdk/utils/src/validation/dot-env.schema.ts:75](https://github.com/settlemint/sdk/blob/v0.9.7/sdk/utils/src/validation/dot-env.schema.ts#L75) |
| <a id="settlemint_blockscout_graphql_endpoint"></a> `SETTLEMINT_BLOCKSCOUT_GRAPHQL_ENDPOINT`? | `string` | GraphQL endpoint URL for Blockscout | [sdk/utils/src/validation/dot-env.schema.ts:77](https://github.com/settlemint/sdk/blob/v0.9.7/sdk/utils/src/validation/dot-env.schema.ts#L77) |
| <a id="settlemint_blockscout_ui_endpoint"></a> `SETTLEMINT_BLOCKSCOUT_UI_ENDPOINT`? | `string` | UI endpoint URL for Blockscout | [sdk/utils/src/validation/dot-env.schema.ts:79](https://github.com/settlemint/sdk/blob/v0.9.7/sdk/utils/src/validation/dot-env.schema.ts#L79) |
| <a id="settlemint_custom_deployment"></a> `SETTLEMINT_CUSTOM_DEPLOYMENT`? | `string` | Unique name of the custom deployment | [sdk/utils/src/validation/dot-env.schema.ts:71](https://github.com/settlemint/sdk/blob/v0.9.7/sdk/utils/src/validation/dot-env.schema.ts#L71) |
| <a id="settlemint_custom_deployment_endpoint"></a> `SETTLEMINT_CUSTOM_DEPLOYMENT_ENDPOINT`? | `string` | Endpoint URL for the custom deployment | [sdk/utils/src/validation/dot-env.schema.ts:73](https://github.com/settlemint/sdk/blob/v0.9.7/sdk/utils/src/validation/dot-env.schema.ts#L73) |
| <a id="settlemint_hasura"></a> `SETTLEMINT_HASURA`? | `string` | Unique name of the Hasura instance | [sdk/utils/src/validation/dot-env.schema.ts:30](https://github.com/settlemint/sdk/blob/v0.9.7/sdk/utils/src/validation/dot-env.schema.ts#L30) |
| <a id="settlemint_hasura_admin_secret"></a> `SETTLEMINT_HASURA_ADMIN_SECRET`? | `string` | Admin secret for authenticating with Hasura | [sdk/utils/src/validation/dot-env.schema.ts:34](https://github.com/settlemint/sdk/blob/v0.9.7/sdk/utils/src/validation/dot-env.schema.ts#L34) |
| <a id="settlemint_hasura_database_url"></a> `SETTLEMINT_HASURA_DATABASE_URL`? | `string` | Database connection URL for Hasura | [sdk/utils/src/validation/dot-env.schema.ts:36](https://github.com/settlemint/sdk/blob/v0.9.7/sdk/utils/src/validation/dot-env.schema.ts#L36) |
| <a id="settlemint_hasura_endpoint"></a> `SETTLEMINT_HASURA_ENDPOINT`? | `string` | Endpoint URL for the Hasura GraphQL API | [sdk/utils/src/validation/dot-env.schema.ts:32](https://github.com/settlemint/sdk/blob/v0.9.7/sdk/utils/src/validation/dot-env.schema.ts#L32) |
| <a id="settlemint_hd_private_key"></a> `SETTLEMINT_HD_PRIVATE_KEY`? | `string` | Unique name of the HD private key | [sdk/utils/src/validation/dot-env.schema.ts:53](https://github.com/settlemint/sdk/blob/v0.9.7/sdk/utils/src/validation/dot-env.schema.ts#L53) |
| <a id="settlemint_instance"></a> `SETTLEMINT_INSTANCE` | `string` | Base URL of the SettleMint platform instance | [sdk/utils/src/validation/dot-env.schema.ts:14](https://github.com/settlemint/sdk/blob/v0.9.7/sdk/utils/src/validation/dot-env.schema.ts#L14) |
| <a id="settlemint_ipfs"></a> `SETTLEMINT_IPFS`? | `string` | Unique name of the IPFS instance | [sdk/utils/src/validation/dot-env.schema.ts:63](https://github.com/settlemint/sdk/blob/v0.9.7/sdk/utils/src/validation/dot-env.schema.ts#L63) |
| <a id="settlemint_ipfs_api_endpoint"></a> `SETTLEMINT_IPFS_API_ENDPOINT`? | `string` | API endpoint URL for IPFS | [sdk/utils/src/validation/dot-env.schema.ts:65](https://github.com/settlemint/sdk/blob/v0.9.7/sdk/utils/src/validation/dot-env.schema.ts#L65) |
| <a id="settlemint_ipfs_gateway_endpoint"></a> `SETTLEMINT_IPFS_GATEWAY_ENDPOINT`? | `string` | Gateway endpoint URL for IPFS | [sdk/utils/src/validation/dot-env.schema.ts:69](https://github.com/settlemint/sdk/blob/v0.9.7/sdk/utils/src/validation/dot-env.schema.ts#L69) |
| <a id="settlemint_ipfs_pinning_endpoint"></a> `SETTLEMINT_IPFS_PINNING_ENDPOINT`? | `string` | Pinning service endpoint URL for IPFS | [sdk/utils/src/validation/dot-env.schema.ts:67](https://github.com/settlemint/sdk/blob/v0.9.7/sdk/utils/src/validation/dot-env.schema.ts#L67) |
| <a id="settlemint_load_balancer"></a> `SETTLEMINT_LOAD_BALANCER`? | `string` | Unique name of the load balancer | [sdk/utils/src/validation/dot-env.schema.ts:28](https://github.com/settlemint/sdk/blob/v0.9.7/sdk/utils/src/validation/dot-env.schema.ts#L28) |
| <a id="settlemint_minio"></a> `SETTLEMINT_MINIO`? | `string` | Unique name of the MinIO instance | [sdk/utils/src/validation/dot-env.schema.ts:55](https://github.com/settlemint/sdk/blob/v0.9.7/sdk/utils/src/validation/dot-env.schema.ts#L55) |
| <a id="settlemint_minio_access_key"></a> `SETTLEMINT_MINIO_ACCESS_KEY`? | `string` | Access key for MinIO authentication | [sdk/utils/src/validation/dot-env.schema.ts:59](https://github.com/settlemint/sdk/blob/v0.9.7/sdk/utils/src/validation/dot-env.schema.ts#L59) |
| <a id="settlemint_minio_endpoint"></a> `SETTLEMINT_MINIO_ENDPOINT`? | `string` | Endpoint URL for MinIO | [sdk/utils/src/validation/dot-env.schema.ts:57](https://github.com/settlemint/sdk/blob/v0.9.7/sdk/utils/src/validation/dot-env.schema.ts#L57) |
| <a id="settlemint_minio_secret_key"></a> `SETTLEMINT_MINIO_SECRET_KEY`? | `string` | Secret key for MinIO authentication | [sdk/utils/src/validation/dot-env.schema.ts:61](https://github.com/settlemint/sdk/blob/v0.9.7/sdk/utils/src/validation/dot-env.schema.ts#L61) |
| <a id="settlemint_new_project_name"></a> `SETTLEMINT_NEW_PROJECT_NAME`? | `string` | Name of the new project being created | [sdk/utils/src/validation/dot-env.schema.ts:81](https://github.com/settlemint/sdk/blob/v0.9.7/sdk/utils/src/validation/dot-env.schema.ts#L81) |
| <a id="settlemint_personal_access_token"></a> `SETTLEMINT_PERSONAL_ACCESS_TOKEN`? | `string` | Personal access token for authenticating with SettleMint services | [sdk/utils/src/validation/dot-env.schema.ts:18](https://github.com/settlemint/sdk/blob/v0.9.7/sdk/utils/src/validation/dot-env.schema.ts#L18) |
| <a id="settlemint_portal"></a> `SETTLEMINT_PORTAL`? | `string` | Unique name of the Smart Contract Portal instance | [sdk/utils/src/validation/dot-env.schema.ts:47](https://github.com/settlemint/sdk/blob/v0.9.7/sdk/utils/src/validation/dot-env.schema.ts#L47) |
| <a id="settlemint_portal_graphql_endpoint"></a> `SETTLEMINT_PORTAL_GRAPHQL_ENDPOINT`? | `string` | GraphQL endpoint URL for the Portal | [sdk/utils/src/validation/dot-env.schema.ts:49](https://github.com/settlemint/sdk/blob/v0.9.7/sdk/utils/src/validation/dot-env.schema.ts#L49) |
| <a id="settlemint_portal_rest_endpoint"></a> `SETTLEMINT_PORTAL_REST_ENDPOINT`? | `string` | REST endpoint URL for the Portal | [sdk/utils/src/validation/dot-env.schema.ts:51](https://github.com/settlemint/sdk/blob/v0.9.7/sdk/utils/src/validation/dot-env.schema.ts#L51) |
| <a id="settlemint_smart_contract_address"></a> `SETTLEMINT_SMART_CONTRACT_ADDRESS`? | `string` | Address of the deployed smart contract | [sdk/utils/src/validation/dot-env.schema.ts:83](https://github.com/settlemint/sdk/blob/v0.9.7/sdk/utils/src/validation/dot-env.schema.ts#L83) |
| <a id="settlemint_smart_contract_deployment_id"></a> `SETTLEMINT_SMART_CONTRACT_DEPLOYMENT_ID`? | `string` | Deployment ID of the smart contract | [sdk/utils/src/validation/dot-env.schema.ts:85](https://github.com/settlemint/sdk/blob/v0.9.7/sdk/utils/src/validation/dot-env.schema.ts#L85) |
| <a id="settlemint_thegraph"></a> `SETTLEMINT_THEGRAPH`? | `string` | Unique name of The Graph instance | [sdk/utils/src/validation/dot-env.schema.ts:38](https://github.com/settlemint/sdk/blob/v0.9.7/sdk/utils/src/validation/dot-env.schema.ts#L38) |
| <a id="settlemint_thegraph_subgraph_name"></a> `SETTLEMINT_THEGRAPH_SUBGRAPH_NAME`? | `string` | Name of The Graph subgraph | [sdk/utils/src/validation/dot-env.schema.ts:45](https://github.com/settlemint/sdk/blob/v0.9.7/sdk/utils/src/validation/dot-env.schema.ts#L45) |
| <a id="settlemint_thegraph_subgraphs_endpoints"></a> `SETTLEMINT_THEGRAPH_SUBGRAPHS_ENDPOINTS`? | `string`[] | Array of endpoint URLs for The Graph subgraphs | [sdk/utils/src/validation/dot-env.schema.ts:40](https://github.com/settlemint/sdk/blob/v0.9.7/sdk/utils/src/validation/dot-env.schema.ts#L40) |
| <a id="settlemint_workspace"></a> `SETTLEMINT_WORKSPACE`? | `string` | Unique name of the workspace | [sdk/utils/src/validation/dot-env.schema.ts:20](https://github.com/settlemint/sdk/blob/v0.9.7/sdk/utils/src/validation/dot-env.schema.ts#L20) |
| <a id="settlemint_access_token"></a> `SETTLEMINT_ACCESS_TOKEN`? | `string` | Application access token for authenticating with SettleMint services | [sdk/utils/src/validation/dot-env.schema.ts:16](https://github.com/settlemint/sdk/blob/v0.9.9/sdk/utils/src/validation/dot-env.schema.ts#L16) |
| <a id="settlemint_application"></a> `SETTLEMINT_APPLICATION`? | `string` | Unique name of the application | [sdk/utils/src/validation/dot-env.schema.ts:22](https://github.com/settlemint/sdk/blob/v0.9.9/sdk/utils/src/validation/dot-env.schema.ts#L22) |
| <a id="settlemint_blockchain_network"></a> `SETTLEMINT_BLOCKCHAIN_NETWORK`? | `string` | Unique name of the blockchain network | [sdk/utils/src/validation/dot-env.schema.ts:24](https://github.com/settlemint/sdk/blob/v0.9.9/sdk/utils/src/validation/dot-env.schema.ts#L24) |
| <a id="settlemint_blockchain_node"></a> `SETTLEMINT_BLOCKCHAIN_NODE`? | `string` | Unique name of the blockchain node | [sdk/utils/src/validation/dot-env.schema.ts:26](https://github.com/settlemint/sdk/blob/v0.9.9/sdk/utils/src/validation/dot-env.schema.ts#L26) |
| <a id="settlemint_blockscout"></a> `SETTLEMINT_BLOCKSCOUT`? | `string` | Unique name of the Blockscout instance | [sdk/utils/src/validation/dot-env.schema.ts:75](https://github.com/settlemint/sdk/blob/v0.9.9/sdk/utils/src/validation/dot-env.schema.ts#L75) |
| <a id="settlemint_blockscout_graphql_endpoint"></a> `SETTLEMINT_BLOCKSCOUT_GRAPHQL_ENDPOINT`? | `string` | GraphQL endpoint URL for Blockscout | [sdk/utils/src/validation/dot-env.schema.ts:77](https://github.com/settlemint/sdk/blob/v0.9.9/sdk/utils/src/validation/dot-env.schema.ts#L77) |
| <a id="settlemint_blockscout_ui_endpoint"></a> `SETTLEMINT_BLOCKSCOUT_UI_ENDPOINT`? | `string` | UI endpoint URL for Blockscout | [sdk/utils/src/validation/dot-env.schema.ts:79](https://github.com/settlemint/sdk/blob/v0.9.9/sdk/utils/src/validation/dot-env.schema.ts#L79) |
| <a id="settlemint_custom_deployment"></a> `SETTLEMINT_CUSTOM_DEPLOYMENT`? | `string` | Unique name of the custom deployment | [sdk/utils/src/validation/dot-env.schema.ts:71](https://github.com/settlemint/sdk/blob/v0.9.9/sdk/utils/src/validation/dot-env.schema.ts#L71) |
| <a id="settlemint_custom_deployment_endpoint"></a> `SETTLEMINT_CUSTOM_DEPLOYMENT_ENDPOINT`? | `string` | Endpoint URL for the custom deployment | [sdk/utils/src/validation/dot-env.schema.ts:73](https://github.com/settlemint/sdk/blob/v0.9.9/sdk/utils/src/validation/dot-env.schema.ts#L73) |
| <a id="settlemint_hasura"></a> `SETTLEMINT_HASURA`? | `string` | Unique name of the Hasura instance | [sdk/utils/src/validation/dot-env.schema.ts:30](https://github.com/settlemint/sdk/blob/v0.9.9/sdk/utils/src/validation/dot-env.schema.ts#L30) |
| <a id="settlemint_hasura_admin_secret"></a> `SETTLEMINT_HASURA_ADMIN_SECRET`? | `string` | Admin secret for authenticating with Hasura | [sdk/utils/src/validation/dot-env.schema.ts:34](https://github.com/settlemint/sdk/blob/v0.9.9/sdk/utils/src/validation/dot-env.schema.ts#L34) |
| <a id="settlemint_hasura_database_url"></a> `SETTLEMINT_HASURA_DATABASE_URL`? | `string` | Database connection URL for Hasura | [sdk/utils/src/validation/dot-env.schema.ts:36](https://github.com/settlemint/sdk/blob/v0.9.9/sdk/utils/src/validation/dot-env.schema.ts#L36) |
| <a id="settlemint_hasura_endpoint"></a> `SETTLEMINT_HASURA_ENDPOINT`? | `string` | Endpoint URL for the Hasura GraphQL API | [sdk/utils/src/validation/dot-env.schema.ts:32](https://github.com/settlemint/sdk/blob/v0.9.9/sdk/utils/src/validation/dot-env.schema.ts#L32) |
| <a id="settlemint_hd_private_key"></a> `SETTLEMINT_HD_PRIVATE_KEY`? | `string` | Unique name of the HD private key | [sdk/utils/src/validation/dot-env.schema.ts:53](https://github.com/settlemint/sdk/blob/v0.9.9/sdk/utils/src/validation/dot-env.schema.ts#L53) |
| <a id="settlemint_instance"></a> `SETTLEMINT_INSTANCE` | `string` | Base URL of the SettleMint platform instance | [sdk/utils/src/validation/dot-env.schema.ts:14](https://github.com/settlemint/sdk/blob/v0.9.9/sdk/utils/src/validation/dot-env.schema.ts#L14) |
| <a id="settlemint_ipfs"></a> `SETTLEMINT_IPFS`? | `string` | Unique name of the IPFS instance | [sdk/utils/src/validation/dot-env.schema.ts:63](https://github.com/settlemint/sdk/blob/v0.9.9/sdk/utils/src/validation/dot-env.schema.ts#L63) |
| <a id="settlemint_ipfs_api_endpoint"></a> `SETTLEMINT_IPFS_API_ENDPOINT`? | `string` | API endpoint URL for IPFS | [sdk/utils/src/validation/dot-env.schema.ts:65](https://github.com/settlemint/sdk/blob/v0.9.9/sdk/utils/src/validation/dot-env.schema.ts#L65) |
| <a id="settlemint_ipfs_gateway_endpoint"></a> `SETTLEMINT_IPFS_GATEWAY_ENDPOINT`? | `string` | Gateway endpoint URL for IPFS | [sdk/utils/src/validation/dot-env.schema.ts:69](https://github.com/settlemint/sdk/blob/v0.9.9/sdk/utils/src/validation/dot-env.schema.ts#L69) |
| <a id="settlemint_ipfs_pinning_endpoint"></a> `SETTLEMINT_IPFS_PINNING_ENDPOINT`? | `string` | Pinning service endpoint URL for IPFS | [sdk/utils/src/validation/dot-env.schema.ts:67](https://github.com/settlemint/sdk/blob/v0.9.9/sdk/utils/src/validation/dot-env.schema.ts#L67) |
| <a id="settlemint_load_balancer"></a> `SETTLEMINT_LOAD_BALANCER`? | `string` | Unique name of the load balancer | [sdk/utils/src/validation/dot-env.schema.ts:28](https://github.com/settlemint/sdk/blob/v0.9.9/sdk/utils/src/validation/dot-env.schema.ts#L28) |
| <a id="settlemint_minio"></a> `SETTLEMINT_MINIO`? | `string` | Unique name of the MinIO instance | [sdk/utils/src/validation/dot-env.schema.ts:55](https://github.com/settlemint/sdk/blob/v0.9.9/sdk/utils/src/validation/dot-env.schema.ts#L55) |
| <a id="settlemint_minio_access_key"></a> `SETTLEMINT_MINIO_ACCESS_KEY`? | `string` | Access key for MinIO authentication | [sdk/utils/src/validation/dot-env.schema.ts:59](https://github.com/settlemint/sdk/blob/v0.9.9/sdk/utils/src/validation/dot-env.schema.ts#L59) |
| <a id="settlemint_minio_endpoint"></a> `SETTLEMINT_MINIO_ENDPOINT`? | `string` | Endpoint URL for MinIO | [sdk/utils/src/validation/dot-env.schema.ts:57](https://github.com/settlemint/sdk/blob/v0.9.9/sdk/utils/src/validation/dot-env.schema.ts#L57) |
| <a id="settlemint_minio_secret_key"></a> `SETTLEMINT_MINIO_SECRET_KEY`? | `string` | Secret key for MinIO authentication | [sdk/utils/src/validation/dot-env.schema.ts:61](https://github.com/settlemint/sdk/blob/v0.9.9/sdk/utils/src/validation/dot-env.schema.ts#L61) |
| <a id="settlemint_new_project_name"></a> `SETTLEMINT_NEW_PROJECT_NAME`? | `string` | Name of the new project being created | [sdk/utils/src/validation/dot-env.schema.ts:81](https://github.com/settlemint/sdk/blob/v0.9.9/sdk/utils/src/validation/dot-env.schema.ts#L81) |
| <a id="settlemint_personal_access_token"></a> `SETTLEMINT_PERSONAL_ACCESS_TOKEN`? | `string` | Personal access token for authenticating with SettleMint services | [sdk/utils/src/validation/dot-env.schema.ts:18](https://github.com/settlemint/sdk/blob/v0.9.9/sdk/utils/src/validation/dot-env.schema.ts#L18) |
| <a id="settlemint_portal"></a> `SETTLEMINT_PORTAL`? | `string` | Unique name of the Smart Contract Portal instance | [sdk/utils/src/validation/dot-env.schema.ts:47](https://github.com/settlemint/sdk/blob/v0.9.9/sdk/utils/src/validation/dot-env.schema.ts#L47) |
| <a id="settlemint_portal_graphql_endpoint"></a> `SETTLEMINT_PORTAL_GRAPHQL_ENDPOINT`? | `string` | GraphQL endpoint URL for the Portal | [sdk/utils/src/validation/dot-env.schema.ts:49](https://github.com/settlemint/sdk/blob/v0.9.9/sdk/utils/src/validation/dot-env.schema.ts#L49) |
| <a id="settlemint_portal_rest_endpoint"></a> `SETTLEMINT_PORTAL_REST_ENDPOINT`? | `string` | REST endpoint URL for the Portal | [sdk/utils/src/validation/dot-env.schema.ts:51](https://github.com/settlemint/sdk/blob/v0.9.9/sdk/utils/src/validation/dot-env.schema.ts#L51) |
| <a id="settlemint_smart_contract_address"></a> `SETTLEMINT_SMART_CONTRACT_ADDRESS`? | `string` | Address of the deployed smart contract | [sdk/utils/src/validation/dot-env.schema.ts:83](https://github.com/settlemint/sdk/blob/v0.9.9/sdk/utils/src/validation/dot-env.schema.ts#L83) |
| <a id="settlemint_smart_contract_deployment_id"></a> `SETTLEMINT_SMART_CONTRACT_DEPLOYMENT_ID`? | `string` | Deployment ID of the smart contract | [sdk/utils/src/validation/dot-env.schema.ts:85](https://github.com/settlemint/sdk/blob/v0.9.9/sdk/utils/src/validation/dot-env.schema.ts#L85) |
| <a id="settlemint_thegraph"></a> `SETTLEMINT_THEGRAPH`? | `string` | Unique name of The Graph instance | [sdk/utils/src/validation/dot-env.schema.ts:38](https://github.com/settlemint/sdk/blob/v0.9.9/sdk/utils/src/validation/dot-env.schema.ts#L38) |
| <a id="settlemint_thegraph_subgraph_name"></a> `SETTLEMINT_THEGRAPH_SUBGRAPH_NAME`? | `string` | Name of The Graph subgraph | [sdk/utils/src/validation/dot-env.schema.ts:45](https://github.com/settlemint/sdk/blob/v0.9.9/sdk/utils/src/validation/dot-env.schema.ts#L45) |
| <a id="settlemint_thegraph_subgraphs_endpoints"></a> `SETTLEMINT_THEGRAPH_SUBGRAPHS_ENDPOINTS`? | `string`[] | Array of endpoint URLs for The Graph subgraphs | [sdk/utils/src/validation/dot-env.schema.ts:40](https://github.com/settlemint/sdk/blob/v0.9.9/sdk/utils/src/validation/dot-env.schema.ts#L40) |
| <a id="settlemint_workspace"></a> `SETTLEMINT_WORKSPACE`? | `string` | Unique name of the workspace | [sdk/utils/src/validation/dot-env.schema.ts:20](https://github.com/settlemint/sdk/blob/v0.9.9/sdk/utils/src/validation/dot-env.schema.ts#L20) |

@@ -1107,3 +1107,3 @@ ***

Defined in: [sdk/utils/src/validation/dot-env.schema.ts:102](https://github.com/settlemint/sdk/blob/v0.9.7/sdk/utils/src/validation/dot-env.schema.ts#L102)
Defined in: [sdk/utils/src/validation/dot-env.schema.ts:102](https://github.com/settlemint/sdk/blob/v0.9.9/sdk/utils/src/validation/dot-env.schema.ts#L102)

@@ -1116,37 +1116,37 @@ Type definition for the partial environment variables schema.

| ------ | ------ | ------ | ------ |
| <a id="settlemint_access_token-1"></a> `SETTLEMINT_ACCESS_TOKEN`? | `string` | Application access token for authenticating with SettleMint services | [sdk/utils/src/validation/dot-env.schema.ts:16](https://github.com/settlemint/sdk/blob/v0.9.7/sdk/utils/src/validation/dot-env.schema.ts#L16) |
| <a id="settlemint_application-1"></a> `SETTLEMINT_APPLICATION`? | `string` | Unique name of the application | [sdk/utils/src/validation/dot-env.schema.ts:22](https://github.com/settlemint/sdk/blob/v0.9.7/sdk/utils/src/validation/dot-env.schema.ts#L22) |
| <a id="settlemint_blockchain_network-1"></a> `SETTLEMINT_BLOCKCHAIN_NETWORK`? | `string` | Unique name of the blockchain network | [sdk/utils/src/validation/dot-env.schema.ts:24](https://github.com/settlemint/sdk/blob/v0.9.7/sdk/utils/src/validation/dot-env.schema.ts#L24) |
| <a id="settlemint_blockchain_node-1"></a> `SETTLEMINT_BLOCKCHAIN_NODE`? | `string` | Unique name of the blockchain node | [sdk/utils/src/validation/dot-env.schema.ts:26](https://github.com/settlemint/sdk/blob/v0.9.7/sdk/utils/src/validation/dot-env.schema.ts#L26) |
| <a id="settlemint_blockscout-1"></a> `SETTLEMINT_BLOCKSCOUT`? | `string` | Unique name of the Blockscout instance | [sdk/utils/src/validation/dot-env.schema.ts:75](https://github.com/settlemint/sdk/blob/v0.9.7/sdk/utils/src/validation/dot-env.schema.ts#L75) |
| <a id="settlemint_blockscout_graphql_endpoint-1"></a> `SETTLEMINT_BLOCKSCOUT_GRAPHQL_ENDPOINT`? | `string` | GraphQL endpoint URL for Blockscout | [sdk/utils/src/validation/dot-env.schema.ts:77](https://github.com/settlemint/sdk/blob/v0.9.7/sdk/utils/src/validation/dot-env.schema.ts#L77) |
| <a id="settlemint_blockscout_ui_endpoint-1"></a> `SETTLEMINT_BLOCKSCOUT_UI_ENDPOINT`? | `string` | UI endpoint URL for Blockscout | [sdk/utils/src/validation/dot-env.schema.ts:79](https://github.com/settlemint/sdk/blob/v0.9.7/sdk/utils/src/validation/dot-env.schema.ts#L79) |
| <a id="settlemint_custom_deployment-1"></a> `SETTLEMINT_CUSTOM_DEPLOYMENT`? | `string` | Unique name of the custom deployment | [sdk/utils/src/validation/dot-env.schema.ts:71](https://github.com/settlemint/sdk/blob/v0.9.7/sdk/utils/src/validation/dot-env.schema.ts#L71) |
| <a id="settlemint_custom_deployment_endpoint-1"></a> `SETTLEMINT_CUSTOM_DEPLOYMENT_ENDPOINT`? | `string` | Endpoint URL for the custom deployment | [sdk/utils/src/validation/dot-env.schema.ts:73](https://github.com/settlemint/sdk/blob/v0.9.7/sdk/utils/src/validation/dot-env.schema.ts#L73) |
| <a id="settlemint_hasura-1"></a> `SETTLEMINT_HASURA`? | `string` | Unique name of the Hasura instance | [sdk/utils/src/validation/dot-env.schema.ts:30](https://github.com/settlemint/sdk/blob/v0.9.7/sdk/utils/src/validation/dot-env.schema.ts#L30) |
| <a id="settlemint_hasura_admin_secret-1"></a> `SETTLEMINT_HASURA_ADMIN_SECRET`? | `string` | Admin secret for authenticating with Hasura | [sdk/utils/src/validation/dot-env.schema.ts:34](https://github.com/settlemint/sdk/blob/v0.9.7/sdk/utils/src/validation/dot-env.schema.ts#L34) |
| <a id="settlemint_hasura_database_url-1"></a> `SETTLEMINT_HASURA_DATABASE_URL`? | `string` | Database connection URL for Hasura | [sdk/utils/src/validation/dot-env.schema.ts:36](https://github.com/settlemint/sdk/blob/v0.9.7/sdk/utils/src/validation/dot-env.schema.ts#L36) |
| <a id="settlemint_hasura_endpoint-1"></a> `SETTLEMINT_HASURA_ENDPOINT`? | `string` | Endpoint URL for the Hasura GraphQL API | [sdk/utils/src/validation/dot-env.schema.ts:32](https://github.com/settlemint/sdk/blob/v0.9.7/sdk/utils/src/validation/dot-env.schema.ts#L32) |
| <a id="settlemint_hd_private_key-1"></a> `SETTLEMINT_HD_PRIVATE_KEY`? | `string` | Unique name of the HD private key | [sdk/utils/src/validation/dot-env.schema.ts:53](https://github.com/settlemint/sdk/blob/v0.9.7/sdk/utils/src/validation/dot-env.schema.ts#L53) |
| <a id="settlemint_instance-1"></a> `SETTLEMINT_INSTANCE`? | `string` | Base URL of the SettleMint platform instance | [sdk/utils/src/validation/dot-env.schema.ts:14](https://github.com/settlemint/sdk/blob/v0.9.7/sdk/utils/src/validation/dot-env.schema.ts#L14) |
| <a id="settlemint_ipfs-1"></a> `SETTLEMINT_IPFS`? | `string` | Unique name of the IPFS instance | [sdk/utils/src/validation/dot-env.schema.ts:63](https://github.com/settlemint/sdk/blob/v0.9.7/sdk/utils/src/validation/dot-env.schema.ts#L63) |
| <a id="settlemint_ipfs_api_endpoint-1"></a> `SETTLEMINT_IPFS_API_ENDPOINT`? | `string` | API endpoint URL for IPFS | [sdk/utils/src/validation/dot-env.schema.ts:65](https://github.com/settlemint/sdk/blob/v0.9.7/sdk/utils/src/validation/dot-env.schema.ts#L65) |
| <a id="settlemint_ipfs_gateway_endpoint-1"></a> `SETTLEMINT_IPFS_GATEWAY_ENDPOINT`? | `string` | Gateway endpoint URL for IPFS | [sdk/utils/src/validation/dot-env.schema.ts:69](https://github.com/settlemint/sdk/blob/v0.9.7/sdk/utils/src/validation/dot-env.schema.ts#L69) |
| <a id="settlemint_ipfs_pinning_endpoint-1"></a> `SETTLEMINT_IPFS_PINNING_ENDPOINT`? | `string` | Pinning service endpoint URL for IPFS | [sdk/utils/src/validation/dot-env.schema.ts:67](https://github.com/settlemint/sdk/blob/v0.9.7/sdk/utils/src/validation/dot-env.schema.ts#L67) |
| <a id="settlemint_load_balancer-1"></a> `SETTLEMINT_LOAD_BALANCER`? | `string` | Unique name of the load balancer | [sdk/utils/src/validation/dot-env.schema.ts:28](https://github.com/settlemint/sdk/blob/v0.9.7/sdk/utils/src/validation/dot-env.schema.ts#L28) |
| <a id="settlemint_minio-1"></a> `SETTLEMINT_MINIO`? | `string` | Unique name of the MinIO instance | [sdk/utils/src/validation/dot-env.schema.ts:55](https://github.com/settlemint/sdk/blob/v0.9.7/sdk/utils/src/validation/dot-env.schema.ts#L55) |
| <a id="settlemint_minio_access_key-1"></a> `SETTLEMINT_MINIO_ACCESS_KEY`? | `string` | Access key for MinIO authentication | [sdk/utils/src/validation/dot-env.schema.ts:59](https://github.com/settlemint/sdk/blob/v0.9.7/sdk/utils/src/validation/dot-env.schema.ts#L59) |
| <a id="settlemint_minio_endpoint-1"></a> `SETTLEMINT_MINIO_ENDPOINT`? | `string` | Endpoint URL for MinIO | [sdk/utils/src/validation/dot-env.schema.ts:57](https://github.com/settlemint/sdk/blob/v0.9.7/sdk/utils/src/validation/dot-env.schema.ts#L57) |
| <a id="settlemint_minio_secret_key-1"></a> `SETTLEMINT_MINIO_SECRET_KEY`? | `string` | Secret key for MinIO authentication | [sdk/utils/src/validation/dot-env.schema.ts:61](https://github.com/settlemint/sdk/blob/v0.9.7/sdk/utils/src/validation/dot-env.schema.ts#L61) |
| <a id="settlemint_new_project_name-1"></a> `SETTLEMINT_NEW_PROJECT_NAME`? | `string` | Name of the new project being created | [sdk/utils/src/validation/dot-env.schema.ts:81](https://github.com/settlemint/sdk/blob/v0.9.7/sdk/utils/src/validation/dot-env.schema.ts#L81) |
| <a id="settlemint_personal_access_token-1"></a> `SETTLEMINT_PERSONAL_ACCESS_TOKEN`? | `string` | Personal access token for authenticating with SettleMint services | [sdk/utils/src/validation/dot-env.schema.ts:18](https://github.com/settlemint/sdk/blob/v0.9.7/sdk/utils/src/validation/dot-env.schema.ts#L18) |
| <a id="settlemint_portal-1"></a> `SETTLEMINT_PORTAL`? | `string` | Unique name of the Smart Contract Portal instance | [sdk/utils/src/validation/dot-env.schema.ts:47](https://github.com/settlemint/sdk/blob/v0.9.7/sdk/utils/src/validation/dot-env.schema.ts#L47) |
| <a id="settlemint_portal_graphql_endpoint-1"></a> `SETTLEMINT_PORTAL_GRAPHQL_ENDPOINT`? | `string` | GraphQL endpoint URL for the Portal | [sdk/utils/src/validation/dot-env.schema.ts:49](https://github.com/settlemint/sdk/blob/v0.9.7/sdk/utils/src/validation/dot-env.schema.ts#L49) |
| <a id="settlemint_portal_rest_endpoint-1"></a> `SETTLEMINT_PORTAL_REST_ENDPOINT`? | `string` | REST endpoint URL for the Portal | [sdk/utils/src/validation/dot-env.schema.ts:51](https://github.com/settlemint/sdk/blob/v0.9.7/sdk/utils/src/validation/dot-env.schema.ts#L51) |
| <a id="settlemint_smart_contract_address-1"></a> `SETTLEMINT_SMART_CONTRACT_ADDRESS`? | `string` | Address of the deployed smart contract | [sdk/utils/src/validation/dot-env.schema.ts:83](https://github.com/settlemint/sdk/blob/v0.9.7/sdk/utils/src/validation/dot-env.schema.ts#L83) |
| <a id="settlemint_smart_contract_deployment_id-1"></a> `SETTLEMINT_SMART_CONTRACT_DEPLOYMENT_ID`? | `string` | Deployment ID of the smart contract | [sdk/utils/src/validation/dot-env.schema.ts:85](https://github.com/settlemint/sdk/blob/v0.9.7/sdk/utils/src/validation/dot-env.schema.ts#L85) |
| <a id="settlemint_thegraph-1"></a> `SETTLEMINT_THEGRAPH`? | `string` | Unique name of The Graph instance | [sdk/utils/src/validation/dot-env.schema.ts:38](https://github.com/settlemint/sdk/blob/v0.9.7/sdk/utils/src/validation/dot-env.schema.ts#L38) |
| <a id="settlemint_thegraph_subgraph_name-1"></a> `SETTLEMINT_THEGRAPH_SUBGRAPH_NAME`? | `string` | Name of The Graph subgraph | [sdk/utils/src/validation/dot-env.schema.ts:45](https://github.com/settlemint/sdk/blob/v0.9.7/sdk/utils/src/validation/dot-env.schema.ts#L45) |
| <a id="settlemint_thegraph_subgraphs_endpoints-1"></a> `SETTLEMINT_THEGRAPH_SUBGRAPHS_ENDPOINTS`? | `string`[] | Array of endpoint URLs for The Graph subgraphs | [sdk/utils/src/validation/dot-env.schema.ts:40](https://github.com/settlemint/sdk/blob/v0.9.7/sdk/utils/src/validation/dot-env.schema.ts#L40) |
| <a id="settlemint_workspace-1"></a> `SETTLEMINT_WORKSPACE`? | `string` | Unique name of the workspace | [sdk/utils/src/validation/dot-env.schema.ts:20](https://github.com/settlemint/sdk/blob/v0.9.7/sdk/utils/src/validation/dot-env.schema.ts#L20) |
| <a id="settlemint_access_token-1"></a> `SETTLEMINT_ACCESS_TOKEN`? | `string` | Application access token for authenticating with SettleMint services | [sdk/utils/src/validation/dot-env.schema.ts:16](https://github.com/settlemint/sdk/blob/v0.9.9/sdk/utils/src/validation/dot-env.schema.ts#L16) |
| <a id="settlemint_application-1"></a> `SETTLEMINT_APPLICATION`? | `string` | Unique name of the application | [sdk/utils/src/validation/dot-env.schema.ts:22](https://github.com/settlemint/sdk/blob/v0.9.9/sdk/utils/src/validation/dot-env.schema.ts#L22) |
| <a id="settlemint_blockchain_network-1"></a> `SETTLEMINT_BLOCKCHAIN_NETWORK`? | `string` | Unique name of the blockchain network | [sdk/utils/src/validation/dot-env.schema.ts:24](https://github.com/settlemint/sdk/blob/v0.9.9/sdk/utils/src/validation/dot-env.schema.ts#L24) |
| <a id="settlemint_blockchain_node-1"></a> `SETTLEMINT_BLOCKCHAIN_NODE`? | `string` | Unique name of the blockchain node | [sdk/utils/src/validation/dot-env.schema.ts:26](https://github.com/settlemint/sdk/blob/v0.9.9/sdk/utils/src/validation/dot-env.schema.ts#L26) |
| <a id="settlemint_blockscout-1"></a> `SETTLEMINT_BLOCKSCOUT`? | `string` | Unique name of the Blockscout instance | [sdk/utils/src/validation/dot-env.schema.ts:75](https://github.com/settlemint/sdk/blob/v0.9.9/sdk/utils/src/validation/dot-env.schema.ts#L75) |
| <a id="settlemint_blockscout_graphql_endpoint-1"></a> `SETTLEMINT_BLOCKSCOUT_GRAPHQL_ENDPOINT`? | `string` | GraphQL endpoint URL for Blockscout | [sdk/utils/src/validation/dot-env.schema.ts:77](https://github.com/settlemint/sdk/blob/v0.9.9/sdk/utils/src/validation/dot-env.schema.ts#L77) |
| <a id="settlemint_blockscout_ui_endpoint-1"></a> `SETTLEMINT_BLOCKSCOUT_UI_ENDPOINT`? | `string` | UI endpoint URL for Blockscout | [sdk/utils/src/validation/dot-env.schema.ts:79](https://github.com/settlemint/sdk/blob/v0.9.9/sdk/utils/src/validation/dot-env.schema.ts#L79) |
| <a id="settlemint_custom_deployment-1"></a> `SETTLEMINT_CUSTOM_DEPLOYMENT`? | `string` | Unique name of the custom deployment | [sdk/utils/src/validation/dot-env.schema.ts:71](https://github.com/settlemint/sdk/blob/v0.9.9/sdk/utils/src/validation/dot-env.schema.ts#L71) |
| <a id="settlemint_custom_deployment_endpoint-1"></a> `SETTLEMINT_CUSTOM_DEPLOYMENT_ENDPOINT`? | `string` | Endpoint URL for the custom deployment | [sdk/utils/src/validation/dot-env.schema.ts:73](https://github.com/settlemint/sdk/blob/v0.9.9/sdk/utils/src/validation/dot-env.schema.ts#L73) |
| <a id="settlemint_hasura-1"></a> `SETTLEMINT_HASURA`? | `string` | Unique name of the Hasura instance | [sdk/utils/src/validation/dot-env.schema.ts:30](https://github.com/settlemint/sdk/blob/v0.9.9/sdk/utils/src/validation/dot-env.schema.ts#L30) |
| <a id="settlemint_hasura_admin_secret-1"></a> `SETTLEMINT_HASURA_ADMIN_SECRET`? | `string` | Admin secret for authenticating with Hasura | [sdk/utils/src/validation/dot-env.schema.ts:34](https://github.com/settlemint/sdk/blob/v0.9.9/sdk/utils/src/validation/dot-env.schema.ts#L34) |
| <a id="settlemint_hasura_database_url-1"></a> `SETTLEMINT_HASURA_DATABASE_URL`? | `string` | Database connection URL for Hasura | [sdk/utils/src/validation/dot-env.schema.ts:36](https://github.com/settlemint/sdk/blob/v0.9.9/sdk/utils/src/validation/dot-env.schema.ts#L36) |
| <a id="settlemint_hasura_endpoint-1"></a> `SETTLEMINT_HASURA_ENDPOINT`? | `string` | Endpoint URL for the Hasura GraphQL API | [sdk/utils/src/validation/dot-env.schema.ts:32](https://github.com/settlemint/sdk/blob/v0.9.9/sdk/utils/src/validation/dot-env.schema.ts#L32) |
| <a id="settlemint_hd_private_key-1"></a> `SETTLEMINT_HD_PRIVATE_KEY`? | `string` | Unique name of the HD private key | [sdk/utils/src/validation/dot-env.schema.ts:53](https://github.com/settlemint/sdk/blob/v0.9.9/sdk/utils/src/validation/dot-env.schema.ts#L53) |
| <a id="settlemint_instance-1"></a> `SETTLEMINT_INSTANCE`? | `string` | Base URL of the SettleMint platform instance | [sdk/utils/src/validation/dot-env.schema.ts:14](https://github.com/settlemint/sdk/blob/v0.9.9/sdk/utils/src/validation/dot-env.schema.ts#L14) |
| <a id="settlemint_ipfs-1"></a> `SETTLEMINT_IPFS`? | `string` | Unique name of the IPFS instance | [sdk/utils/src/validation/dot-env.schema.ts:63](https://github.com/settlemint/sdk/blob/v0.9.9/sdk/utils/src/validation/dot-env.schema.ts#L63) |
| <a id="settlemint_ipfs_api_endpoint-1"></a> `SETTLEMINT_IPFS_API_ENDPOINT`? | `string` | API endpoint URL for IPFS | [sdk/utils/src/validation/dot-env.schema.ts:65](https://github.com/settlemint/sdk/blob/v0.9.9/sdk/utils/src/validation/dot-env.schema.ts#L65) |
| <a id="settlemint_ipfs_gateway_endpoint-1"></a> `SETTLEMINT_IPFS_GATEWAY_ENDPOINT`? | `string` | Gateway endpoint URL for IPFS | [sdk/utils/src/validation/dot-env.schema.ts:69](https://github.com/settlemint/sdk/blob/v0.9.9/sdk/utils/src/validation/dot-env.schema.ts#L69) |
| <a id="settlemint_ipfs_pinning_endpoint-1"></a> `SETTLEMINT_IPFS_PINNING_ENDPOINT`? | `string` | Pinning service endpoint URL for IPFS | [sdk/utils/src/validation/dot-env.schema.ts:67](https://github.com/settlemint/sdk/blob/v0.9.9/sdk/utils/src/validation/dot-env.schema.ts#L67) |
| <a id="settlemint_load_balancer-1"></a> `SETTLEMINT_LOAD_BALANCER`? | `string` | Unique name of the load balancer | [sdk/utils/src/validation/dot-env.schema.ts:28](https://github.com/settlemint/sdk/blob/v0.9.9/sdk/utils/src/validation/dot-env.schema.ts#L28) |
| <a id="settlemint_minio-1"></a> `SETTLEMINT_MINIO`? | `string` | Unique name of the MinIO instance | [sdk/utils/src/validation/dot-env.schema.ts:55](https://github.com/settlemint/sdk/blob/v0.9.9/sdk/utils/src/validation/dot-env.schema.ts#L55) |
| <a id="settlemint_minio_access_key-1"></a> `SETTLEMINT_MINIO_ACCESS_KEY`? | `string` | Access key for MinIO authentication | [sdk/utils/src/validation/dot-env.schema.ts:59](https://github.com/settlemint/sdk/blob/v0.9.9/sdk/utils/src/validation/dot-env.schema.ts#L59) |
| <a id="settlemint_minio_endpoint-1"></a> `SETTLEMINT_MINIO_ENDPOINT`? | `string` | Endpoint URL for MinIO | [sdk/utils/src/validation/dot-env.schema.ts:57](https://github.com/settlemint/sdk/blob/v0.9.9/sdk/utils/src/validation/dot-env.schema.ts#L57) |
| <a id="settlemint_minio_secret_key-1"></a> `SETTLEMINT_MINIO_SECRET_KEY`? | `string` | Secret key for MinIO authentication | [sdk/utils/src/validation/dot-env.schema.ts:61](https://github.com/settlemint/sdk/blob/v0.9.9/sdk/utils/src/validation/dot-env.schema.ts#L61) |
| <a id="settlemint_new_project_name-1"></a> `SETTLEMINT_NEW_PROJECT_NAME`? | `string` | Name of the new project being created | [sdk/utils/src/validation/dot-env.schema.ts:81](https://github.com/settlemint/sdk/blob/v0.9.9/sdk/utils/src/validation/dot-env.schema.ts#L81) |
| <a id="settlemint_personal_access_token-1"></a> `SETTLEMINT_PERSONAL_ACCESS_TOKEN`? | `string` | Personal access token for authenticating with SettleMint services | [sdk/utils/src/validation/dot-env.schema.ts:18](https://github.com/settlemint/sdk/blob/v0.9.9/sdk/utils/src/validation/dot-env.schema.ts#L18) |
| <a id="settlemint_portal-1"></a> `SETTLEMINT_PORTAL`? | `string` | Unique name of the Smart Contract Portal instance | [sdk/utils/src/validation/dot-env.schema.ts:47](https://github.com/settlemint/sdk/blob/v0.9.9/sdk/utils/src/validation/dot-env.schema.ts#L47) |
| <a id="settlemint_portal_graphql_endpoint-1"></a> `SETTLEMINT_PORTAL_GRAPHQL_ENDPOINT`? | `string` | GraphQL endpoint URL for the Portal | [sdk/utils/src/validation/dot-env.schema.ts:49](https://github.com/settlemint/sdk/blob/v0.9.9/sdk/utils/src/validation/dot-env.schema.ts#L49) |
| <a id="settlemint_portal_rest_endpoint-1"></a> `SETTLEMINT_PORTAL_REST_ENDPOINT`? | `string` | REST endpoint URL for the Portal | [sdk/utils/src/validation/dot-env.schema.ts:51](https://github.com/settlemint/sdk/blob/v0.9.9/sdk/utils/src/validation/dot-env.schema.ts#L51) |
| <a id="settlemint_smart_contract_address-1"></a> `SETTLEMINT_SMART_CONTRACT_ADDRESS`? | `string` | Address of the deployed smart contract | [sdk/utils/src/validation/dot-env.schema.ts:83](https://github.com/settlemint/sdk/blob/v0.9.9/sdk/utils/src/validation/dot-env.schema.ts#L83) |
| <a id="settlemint_smart_contract_deployment_id-1"></a> `SETTLEMINT_SMART_CONTRACT_DEPLOYMENT_ID`? | `string` | Deployment ID of the smart contract | [sdk/utils/src/validation/dot-env.schema.ts:85](https://github.com/settlemint/sdk/blob/v0.9.9/sdk/utils/src/validation/dot-env.schema.ts#L85) |
| <a id="settlemint_thegraph-1"></a> `SETTLEMINT_THEGRAPH`? | `string` | Unique name of The Graph instance | [sdk/utils/src/validation/dot-env.schema.ts:38](https://github.com/settlemint/sdk/blob/v0.9.9/sdk/utils/src/validation/dot-env.schema.ts#L38) |
| <a id="settlemint_thegraph_subgraph_name-1"></a> `SETTLEMINT_THEGRAPH_SUBGRAPH_NAME`? | `string` | Name of The Graph subgraph | [sdk/utils/src/validation/dot-env.schema.ts:45](https://github.com/settlemint/sdk/blob/v0.9.9/sdk/utils/src/validation/dot-env.schema.ts#L45) |
| <a id="settlemint_thegraph_subgraphs_endpoints-1"></a> `SETTLEMINT_THEGRAPH_SUBGRAPHS_ENDPOINTS`? | `string`[] | Array of endpoint URLs for The Graph subgraphs | [sdk/utils/src/validation/dot-env.schema.ts:40](https://github.com/settlemint/sdk/blob/v0.9.9/sdk/utils/src/validation/dot-env.schema.ts#L40) |
| <a id="settlemint_workspace-1"></a> `SETTLEMINT_WORKSPACE`? | `string` | Unique name of the workspace | [sdk/utils/src/validation/dot-env.schema.ts:20](https://github.com/settlemint/sdk/blob/v0.9.9/sdk/utils/src/validation/dot-env.schema.ts#L20) |

@@ -1159,3 +1159,3 @@ ***

Defined in: [sdk/utils/src/validation/id.schema.ts:30](https://github.com/settlemint/sdk/blob/v0.9.7/sdk/utils/src/validation/id.schema.ts#L30)
Defined in: [sdk/utils/src/validation/id.schema.ts:30](https://github.com/settlemint/sdk/blob/v0.9.9/sdk/utils/src/validation/id.schema.ts#L30)

@@ -1171,3 +1171,3 @@ Type definition for database IDs, inferred from IdSchema.

Defined in: [sdk/utils/src/validation/access-token.schema.ts:15](https://github.com/settlemint/sdk/blob/v0.9.7/sdk/utils/src/validation/access-token.schema.ts#L15)
Defined in: [sdk/utils/src/validation/access-token.schema.ts:15](https://github.com/settlemint/sdk/blob/v0.9.9/sdk/utils/src/validation/access-token.schema.ts#L15)

@@ -1183,3 +1183,3 @@ Schema for validating personal access tokens.

Defined in: [sdk/utils/src/package-manager/download-and-extract.ts:8](https://github.com/settlemint/sdk/blob/v0.9.7/sdk/utils/src/package-manager/download-and-extract.ts#L8)
Defined in: [sdk/utils/src/package-manager/download-and-extract.ts:8](https://github.com/settlemint/sdk/blob/v0.9.9/sdk/utils/src/package-manager/download-and-extract.ts#L8)

@@ -1192,4 +1192,4 @@ Available templates for project creation

| ------ | ------ | ------ |
| <a id="label"></a> `label` | `string` | [sdk/utils/src/package-manager/download-and-extract.ts:8](https://github.com/settlemint/sdk/blob/v0.9.7/sdk/utils/src/package-manager/download-and-extract.ts#L8) |
| <a id="value"></a> `value` | `string` | [sdk/utils/src/package-manager/download-and-extract.ts:8](https://github.com/settlemint/sdk/blob/v0.9.7/sdk/utils/src/package-manager/download-and-extract.ts#L8) |
| <a id="label"></a> `label` | `string` | [sdk/utils/src/package-manager/download-and-extract.ts:8](https://github.com/settlemint/sdk/blob/v0.9.9/sdk/utils/src/package-manager/download-and-extract.ts#L8) |
| <a id="value"></a> `value` | `string` | [sdk/utils/src/package-manager/download-and-extract.ts:8](https://github.com/settlemint/sdk/blob/v0.9.9/sdk/utils/src/package-manager/download-and-extract.ts#L8) |

@@ -1202,3 +1202,3 @@ ***

Defined in: [sdk/utils/src/validation/url.schema.ts:18](https://github.com/settlemint/sdk/blob/v0.9.7/sdk/utils/src/validation/url.schema.ts#L18)
Defined in: [sdk/utils/src/validation/url.schema.ts:18](https://github.com/settlemint/sdk/blob/v0.9.9/sdk/utils/src/validation/url.schema.ts#L18)

@@ -1227,3 +1227,3 @@ Schema for validating URLs.

Defined in: [sdk/utils/src/validation/url.schema.ts:55](https://github.com/settlemint/sdk/blob/v0.9.7/sdk/utils/src/validation/url.schema.ts#L55)
Defined in: [sdk/utils/src/validation/url.schema.ts:55](https://github.com/settlemint/sdk/blob/v0.9.9/sdk/utils/src/validation/url.schema.ts#L55)

@@ -1252,3 +1252,3 @@ Schema that accepts either a full URL or a URL path.

Defined in: [sdk/utils/src/validation/url.schema.ts:38](https://github.com/settlemint/sdk/blob/v0.9.7/sdk/utils/src/validation/url.schema.ts#L38)
Defined in: [sdk/utils/src/validation/url.schema.ts:38](https://github.com/settlemint/sdk/blob/v0.9.9/sdk/utils/src/validation/url.schema.ts#L38)

@@ -1277,3 +1277,3 @@ Schema for validating URL paths.

Defined in: [sdk/utils/src/validation/access-token.schema.ts:21](https://github.com/settlemint/sdk/blob/v0.9.7/sdk/utils/src/validation/access-token.schema.ts#L21)
Defined in: [sdk/utils/src/validation/access-token.schema.ts:21](https://github.com/settlemint/sdk/blob/v0.9.9/sdk/utils/src/validation/access-token.schema.ts#L21)

@@ -1289,3 +1289,3 @@ Schema for validating both application and personal access tokens.

Defined in: [sdk/utils/src/validation/access-token.schema.ts:7](https://github.com/settlemint/sdk/blob/v0.9.7/sdk/utils/src/validation/access-token.schema.ts#L7)
Defined in: [sdk/utils/src/validation/access-token.schema.ts:7](https://github.com/settlemint/sdk/blob/v0.9.9/sdk/utils/src/validation/access-token.schema.ts#L7)

@@ -1301,3 +1301,3 @@ Schema for validating application access tokens.

Defined in: [sdk/utils/src/validation/dot-env.schema.ts:12](https://github.com/settlemint/sdk/blob/v0.9.7/sdk/utils/src/validation/dot-env.schema.ts#L12)
Defined in: [sdk/utils/src/validation/dot-env.schema.ts:12](https://github.com/settlemint/sdk/blob/v0.9.9/sdk/utils/src/validation/dot-env.schema.ts#L12)

@@ -1314,3 +1314,3 @@ Schema for validating environment variables used by the SettleMint SDK.

Defined in: [sdk/utils/src/validation/dot-env.schema.ts:97](https://github.com/settlemint/sdk/blob/v0.9.7/sdk/utils/src/validation/dot-env.schema.ts#L97)
Defined in: [sdk/utils/src/validation/dot-env.schema.ts:97](https://github.com/settlemint/sdk/blob/v0.9.9/sdk/utils/src/validation/dot-env.schema.ts#L97)

@@ -1326,3 +1326,3 @@ Partial version of the environment variables schema where all fields are optional.

Defined in: [sdk/utils/src/validation/id.schema.ts:17](https://github.com/settlemint/sdk/blob/v0.9.7/sdk/utils/src/validation/id.schema.ts#L17)
Defined in: [sdk/utils/src/validation/id.schema.ts:17](https://github.com/settlemint/sdk/blob/v0.9.9/sdk/utils/src/validation/id.schema.ts#L17)

@@ -1351,3 +1351,3 @@ Schema for validating database IDs. Accepts both PostgreSQL UUIDs and MongoDB ObjectIDs.

Defined in: [sdk/utils/src/validation/access-token.schema.ts:14](https://github.com/settlemint/sdk/blob/v0.9.7/sdk/utils/src/validation/access-token.schema.ts#L14)
Defined in: [sdk/utils/src/validation/access-token.schema.ts:14](https://github.com/settlemint/sdk/blob/v0.9.9/sdk/utils/src/validation/access-token.schema.ts#L14)

@@ -1363,3 +1363,3 @@ Schema for validating personal access tokens.

Defined in: [sdk/utils/src/runtime/ensure-server.ts:40](https://github.com/settlemint/sdk/blob/v0.9.7/sdk/utils/src/runtime/ensure-server.ts#L40)
Defined in: [sdk/utils/src/runtime/ensure-server.ts:40](https://github.com/settlemint/sdk/blob/v0.9.9/sdk/utils/src/runtime/ensure-server.ts#L40)

@@ -1374,3 +1374,3 @@ Boolean indicating if code is currently running in a browser environment

Defined in: [sdk/utils/src/runtime/ensure-server.ts:45](https://github.com/settlemint/sdk/blob/v0.9.7/sdk/utils/src/runtime/ensure-server.ts#L45)
Defined in: [sdk/utils/src/runtime/ensure-server.ts:45](https://github.com/settlemint/sdk/blob/v0.9.9/sdk/utils/src/runtime/ensure-server.ts#L45)

@@ -1385,3 +1385,3 @@ Boolean indicating if code is currently running in a server environment

Defined in: [sdk/utils/src/validation/unique-name.schema.ts:19](https://github.com/settlemint/sdk/blob/v0.9.7/sdk/utils/src/validation/unique-name.schema.ts#L19)
Defined in: [sdk/utils/src/validation/unique-name.schema.ts:19](https://github.com/settlemint/sdk/blob/v0.9.9/sdk/utils/src/validation/unique-name.schema.ts#L19)

@@ -1412,3 +1412,3 @@ Schema for validating unique names used across the SettleMint platform.

Defined in: [sdk/utils/src/validation/url.schema.ts:54](https://github.com/settlemint/sdk/blob/v0.9.7/sdk/utils/src/validation/url.schema.ts#L54)
Defined in: [sdk/utils/src/validation/url.schema.ts:54](https://github.com/settlemint/sdk/blob/v0.9.9/sdk/utils/src/validation/url.schema.ts#L54)

@@ -1437,3 +1437,3 @@ Schema that accepts either a full URL or a URL path.

Defined in: [sdk/utils/src/validation/url.schema.ts:34](https://github.com/settlemint/sdk/blob/v0.9.7/sdk/utils/src/validation/url.schema.ts#L34)
Defined in: [sdk/utils/src/validation/url.schema.ts:34](https://github.com/settlemint/sdk/blob/v0.9.9/sdk/utils/src/validation/url.schema.ts#L34)

@@ -1462,3 +1462,3 @@ Schema for validating URL paths.

Defined in: [sdk/utils/src/validation/url.schema.ts:17](https://github.com/settlemint/sdk/blob/v0.9.7/sdk/utils/src/validation/url.schema.ts#L17)
Defined in: [sdk/utils/src/validation/url.schema.ts:17](https://github.com/settlemint/sdk/blob/v0.9.9/sdk/utils/src/validation/url.schema.ts#L17)

@@ -1465,0 +1465,0 @@ Schema for validating URLs.

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc