@settlemint/sdk-utils
Advanced tools
Comparing version 0.9.2 to 0.9.3-main60569eea
@@ -9,36 +9,71 @@ import { z } from 'zod'; | ||
declare const DotEnvSchema: z.ZodObject<{ | ||
/** Base URL of the SettleMint platform instance */ | ||
SETTLEMINT_INSTANCE: z.ZodDefault<z.ZodString>; | ||
/** Application access token for authenticating with SettleMint services */ | ||
SETTLEMINT_ACCESS_TOKEN: z.ZodOptional<z.ZodString>; | ||
/** Personal access token for authenticating with SettleMint services */ | ||
SETTLEMINT_PERSONAL_ACCESS_TOKEN: z.ZodOptional<z.ZodString>; | ||
/** Unique name of the workspace */ | ||
SETTLEMINT_WORKSPACE: z.ZodOptional<z.ZodString>; | ||
/** Unique name of the application */ | ||
SETTLEMINT_APPLICATION: z.ZodOptional<z.ZodString>; | ||
/** Unique name of the blockchain network */ | ||
SETTLEMINT_BLOCKCHAIN_NETWORK: z.ZodOptional<z.ZodString>; | ||
/** Unique name of the blockchain node */ | ||
SETTLEMINT_BLOCKCHAIN_NODE: z.ZodOptional<z.ZodString>; | ||
/** Unique name of the load balancer */ | ||
SETTLEMINT_LOAD_BALANCER: z.ZodOptional<z.ZodString>; | ||
/** Unique name of the Hasura instance */ | ||
SETTLEMINT_HASURA: z.ZodOptional<z.ZodString>; | ||
/** Endpoint URL for the Hasura GraphQL API */ | ||
SETTLEMINT_HASURA_ENDPOINT: z.ZodOptional<z.ZodString>; | ||
/** Admin secret for authenticating with Hasura */ | ||
SETTLEMINT_HASURA_ADMIN_SECRET: z.ZodOptional<z.ZodString>; | ||
/** Database connection URL for Hasura */ | ||
SETTLEMINT_HASURA_DATABASE_URL: z.ZodOptional<z.ZodString>; | ||
/** Unique name of The Graph instance */ | ||
SETTLEMINT_THEGRAPH: z.ZodOptional<z.ZodString>; | ||
/** Array of endpoint URLs for The Graph subgraphs */ | ||
SETTLEMINT_THEGRAPH_SUBGRAPHS_ENDPOINTS: z.ZodEffects<z.ZodOptional<z.ZodArray<z.ZodString, "many">>, string[] | undefined, unknown>; | ||
/** Name of The Graph subgraph */ | ||
SETTLEMINT_THEGRAPH_SUBGRAPH_NAME: z.ZodOptional<z.ZodString>; | ||
/** Unique name of the Smart Contract Portal instance */ | ||
SETTLEMINT_PORTAL: z.ZodOptional<z.ZodString>; | ||
/** GraphQL endpoint URL for the Portal */ | ||
SETTLEMINT_PORTAL_GRAPHQL_ENDPOINT: z.ZodOptional<z.ZodString>; | ||
/** REST endpoint URL for the Portal */ | ||
SETTLEMINT_PORTAL_REST_ENDPOINT: z.ZodOptional<z.ZodString>; | ||
/** Unique name of the HD private key */ | ||
SETTLEMINT_HD_PRIVATE_KEY: z.ZodOptional<z.ZodString>; | ||
/** Unique name of the MinIO instance */ | ||
SETTLEMINT_MINIO: z.ZodOptional<z.ZodString>; | ||
/** Endpoint URL for MinIO */ | ||
SETTLEMINT_MINIO_ENDPOINT: z.ZodOptional<z.ZodString>; | ||
/** Access key for MinIO authentication */ | ||
SETTLEMINT_MINIO_ACCESS_KEY: z.ZodOptional<z.ZodString>; | ||
/** Secret key for MinIO authentication */ | ||
SETTLEMINT_MINIO_SECRET_KEY: z.ZodOptional<z.ZodString>; | ||
/** Unique name of the IPFS instance */ | ||
SETTLEMINT_IPFS: z.ZodOptional<z.ZodString>; | ||
/** API endpoint URL for IPFS */ | ||
SETTLEMINT_IPFS_API_ENDPOINT: z.ZodOptional<z.ZodString>; | ||
/** Pinning service endpoint URL for IPFS */ | ||
SETTLEMINT_IPFS_PINNING_ENDPOINT: z.ZodOptional<z.ZodString>; | ||
/** Gateway endpoint URL for IPFS */ | ||
SETTLEMINT_IPFS_GATEWAY_ENDPOINT: z.ZodOptional<z.ZodString>; | ||
/** Unique name of the custom deployment */ | ||
SETTLEMINT_CUSTOM_DEPLOYMENT: z.ZodOptional<z.ZodString>; | ||
/** Endpoint URL for the custom deployment */ | ||
SETTLEMINT_CUSTOM_DEPLOYMENT_ENDPOINT: z.ZodOptional<z.ZodString>; | ||
/** Unique name of the Blockscout instance */ | ||
SETTLEMINT_BLOCKSCOUT: z.ZodOptional<z.ZodString>; | ||
/** GraphQL endpoint URL for Blockscout */ | ||
SETTLEMINT_BLOCKSCOUT_GRAPHQL_ENDPOINT: z.ZodOptional<z.ZodString>; | ||
/** UI endpoint URL for Blockscout */ | ||
SETTLEMINT_BLOCKSCOUT_UI_ENDPOINT: z.ZodOptional<z.ZodString>; | ||
/** Name of the new project being created */ | ||
SETTLEMINT_NEW_PROJECT_NAME: z.ZodOptional<z.ZodString>; | ||
/** Address of the deployed smart contract */ | ||
SETTLEMINT_SMART_CONTRACT_ADDRESS: z.ZodOptional<z.ZodString>; | ||
/** Deployment ID of the smart contract */ | ||
SETTLEMINT_SMART_CONTRACT_DEPLOYMENT_ID: z.ZodOptional<z.ZodString>; | ||
@@ -45,0 +80,0 @@ }, "strip", z.ZodTypeAny, { |
@@ -15,3 +15,3 @@ import { PathLike } from 'node:fs'; | ||
*/ | ||
declare function projectRoot(): Promise<string>; | ||
declare function projectRoot(fallbackToCwd?: boolean): Promise<string>; | ||
@@ -18,0 +18,0 @@ /** |
@@ -31,36 +31,71 @@ import { ZodString, z, ZodSchema } from 'zod'; | ||
declare const DotEnvSchema: z.ZodObject<{ | ||
/** Base URL of the SettleMint platform instance */ | ||
SETTLEMINT_INSTANCE: z.ZodDefault<z.ZodString>; | ||
/** Application access token for authenticating with SettleMint services */ | ||
SETTLEMINT_ACCESS_TOKEN: z.ZodOptional<z.ZodString>; | ||
/** Personal access token for authenticating with SettleMint services */ | ||
SETTLEMINT_PERSONAL_ACCESS_TOKEN: z.ZodOptional<z.ZodString>; | ||
/** Unique name of the workspace */ | ||
SETTLEMINT_WORKSPACE: z.ZodOptional<z.ZodString>; | ||
/** Unique name of the application */ | ||
SETTLEMINT_APPLICATION: z.ZodOptional<z.ZodString>; | ||
/** Unique name of the blockchain network */ | ||
SETTLEMINT_BLOCKCHAIN_NETWORK: z.ZodOptional<z.ZodString>; | ||
/** Unique name of the blockchain node */ | ||
SETTLEMINT_BLOCKCHAIN_NODE: z.ZodOptional<z.ZodString>; | ||
/** Unique name of the load balancer */ | ||
SETTLEMINT_LOAD_BALANCER: z.ZodOptional<z.ZodString>; | ||
/** Unique name of the Hasura instance */ | ||
SETTLEMINT_HASURA: z.ZodOptional<z.ZodString>; | ||
/** Endpoint URL for the Hasura GraphQL API */ | ||
SETTLEMINT_HASURA_ENDPOINT: z.ZodOptional<z.ZodString>; | ||
/** Admin secret for authenticating with Hasura */ | ||
SETTLEMINT_HASURA_ADMIN_SECRET: z.ZodOptional<z.ZodString>; | ||
/** Database connection URL for Hasura */ | ||
SETTLEMINT_HASURA_DATABASE_URL: z.ZodOptional<z.ZodString>; | ||
/** Unique name of The Graph instance */ | ||
SETTLEMINT_THEGRAPH: z.ZodOptional<z.ZodString>; | ||
/** Array of endpoint URLs for The Graph subgraphs */ | ||
SETTLEMINT_THEGRAPH_SUBGRAPHS_ENDPOINTS: z.ZodEffects<z.ZodOptional<z.ZodArray<z.ZodString, "many">>, string[] | undefined, unknown>; | ||
/** Name of The Graph subgraph */ | ||
SETTLEMINT_THEGRAPH_SUBGRAPH_NAME: z.ZodOptional<z.ZodString>; | ||
/** Unique name of the Smart Contract Portal instance */ | ||
SETTLEMINT_PORTAL: z.ZodOptional<z.ZodString>; | ||
/** GraphQL endpoint URL for the Portal */ | ||
SETTLEMINT_PORTAL_GRAPHQL_ENDPOINT: z.ZodOptional<z.ZodString>; | ||
/** REST endpoint URL for the Portal */ | ||
SETTLEMINT_PORTAL_REST_ENDPOINT: z.ZodOptional<z.ZodString>; | ||
/** Unique name of the HD private key */ | ||
SETTLEMINT_HD_PRIVATE_KEY: z.ZodOptional<z.ZodString>; | ||
/** Unique name of the MinIO instance */ | ||
SETTLEMINT_MINIO: z.ZodOptional<z.ZodString>; | ||
/** Endpoint URL for MinIO */ | ||
SETTLEMINT_MINIO_ENDPOINT: z.ZodOptional<z.ZodString>; | ||
/** Access key for MinIO authentication */ | ||
SETTLEMINT_MINIO_ACCESS_KEY: z.ZodOptional<z.ZodString>; | ||
/** Secret key for MinIO authentication */ | ||
SETTLEMINT_MINIO_SECRET_KEY: z.ZodOptional<z.ZodString>; | ||
/** Unique name of the IPFS instance */ | ||
SETTLEMINT_IPFS: z.ZodOptional<z.ZodString>; | ||
/** API endpoint URL for IPFS */ | ||
SETTLEMINT_IPFS_API_ENDPOINT: z.ZodOptional<z.ZodString>; | ||
/** Pinning service endpoint URL for IPFS */ | ||
SETTLEMINT_IPFS_PINNING_ENDPOINT: z.ZodOptional<z.ZodString>; | ||
/** Gateway endpoint URL for IPFS */ | ||
SETTLEMINT_IPFS_GATEWAY_ENDPOINT: z.ZodOptional<z.ZodString>; | ||
/** Unique name of the custom deployment */ | ||
SETTLEMINT_CUSTOM_DEPLOYMENT: z.ZodOptional<z.ZodString>; | ||
/** Endpoint URL for the custom deployment */ | ||
SETTLEMINT_CUSTOM_DEPLOYMENT_ENDPOINT: z.ZodOptional<z.ZodString>; | ||
/** Unique name of the Blockscout instance */ | ||
SETTLEMINT_BLOCKSCOUT: z.ZodOptional<z.ZodString>; | ||
/** GraphQL endpoint URL for Blockscout */ | ||
SETTLEMINT_BLOCKSCOUT_GRAPHQL_ENDPOINT: z.ZodOptional<z.ZodString>; | ||
/** UI endpoint URL for Blockscout */ | ||
SETTLEMINT_BLOCKSCOUT_UI_ENDPOINT: z.ZodOptional<z.ZodString>; | ||
/** Name of the new project being created */ | ||
SETTLEMINT_NEW_PROJECT_NAME: z.ZodOptional<z.ZodString>; | ||
/** Address of the deployed smart contract */ | ||
SETTLEMINT_SMART_CONTRACT_ADDRESS: z.ZodOptional<z.ZodString>; | ||
/** Deployment ID of the smart contract */ | ||
SETTLEMINT_SMART_CONTRACT_DEPLOYMENT_ID: z.ZodOptional<z.ZodString>; | ||
@@ -419,3 +454,3 @@ }, "strip", z.ZodTypeAny, { | ||
*/ | ||
declare function projectRoot(): Promise<string>; | ||
declare function projectRoot(fallbackToCwd?: boolean): Promise<string>; | ||
@@ -422,0 +457,0 @@ /** |
@@ -28,36 +28,71 @@ import { ZodString, z, ZodSchema } from 'zod'; | ||
declare const DotEnvSchema: z.ZodObject<{ | ||
/** Base URL of the SettleMint platform instance */ | ||
SETTLEMINT_INSTANCE: z.ZodDefault<z.ZodString>; | ||
/** Application access token for authenticating with SettleMint services */ | ||
SETTLEMINT_ACCESS_TOKEN: z.ZodOptional<z.ZodString>; | ||
/** Personal access token for authenticating with SettleMint services */ | ||
SETTLEMINT_PERSONAL_ACCESS_TOKEN: z.ZodOptional<z.ZodString>; | ||
/** Unique name of the workspace */ | ||
SETTLEMINT_WORKSPACE: z.ZodOptional<z.ZodString>; | ||
/** Unique name of the application */ | ||
SETTLEMINT_APPLICATION: z.ZodOptional<z.ZodString>; | ||
/** Unique name of the blockchain network */ | ||
SETTLEMINT_BLOCKCHAIN_NETWORK: z.ZodOptional<z.ZodString>; | ||
/** Unique name of the blockchain node */ | ||
SETTLEMINT_BLOCKCHAIN_NODE: z.ZodOptional<z.ZodString>; | ||
/** Unique name of the load balancer */ | ||
SETTLEMINT_LOAD_BALANCER: z.ZodOptional<z.ZodString>; | ||
/** Unique name of the Hasura instance */ | ||
SETTLEMINT_HASURA: z.ZodOptional<z.ZodString>; | ||
/** Endpoint URL for the Hasura GraphQL API */ | ||
SETTLEMINT_HASURA_ENDPOINT: z.ZodOptional<z.ZodString>; | ||
/** Admin secret for authenticating with Hasura */ | ||
SETTLEMINT_HASURA_ADMIN_SECRET: z.ZodOptional<z.ZodString>; | ||
/** Database connection URL for Hasura */ | ||
SETTLEMINT_HASURA_DATABASE_URL: z.ZodOptional<z.ZodString>; | ||
/** Unique name of The Graph instance */ | ||
SETTLEMINT_THEGRAPH: z.ZodOptional<z.ZodString>; | ||
/** Array of endpoint URLs for The Graph subgraphs */ | ||
SETTLEMINT_THEGRAPH_SUBGRAPHS_ENDPOINTS: z.ZodEffects<z.ZodOptional<z.ZodArray<z.ZodString, "many">>, string[] | undefined, unknown>; | ||
/** Name of The Graph subgraph */ | ||
SETTLEMINT_THEGRAPH_SUBGRAPH_NAME: z.ZodOptional<z.ZodString>; | ||
/** Unique name of the Smart Contract Portal instance */ | ||
SETTLEMINT_PORTAL: z.ZodOptional<z.ZodString>; | ||
/** GraphQL endpoint URL for the Portal */ | ||
SETTLEMINT_PORTAL_GRAPHQL_ENDPOINT: z.ZodOptional<z.ZodString>; | ||
/** REST endpoint URL for the Portal */ | ||
SETTLEMINT_PORTAL_REST_ENDPOINT: z.ZodOptional<z.ZodString>; | ||
/** Unique name of the HD private key */ | ||
SETTLEMINT_HD_PRIVATE_KEY: z.ZodOptional<z.ZodString>; | ||
/** Unique name of the MinIO instance */ | ||
SETTLEMINT_MINIO: z.ZodOptional<z.ZodString>; | ||
/** Endpoint URL for MinIO */ | ||
SETTLEMINT_MINIO_ENDPOINT: z.ZodOptional<z.ZodString>; | ||
/** Access key for MinIO authentication */ | ||
SETTLEMINT_MINIO_ACCESS_KEY: z.ZodOptional<z.ZodString>; | ||
/** Secret key for MinIO authentication */ | ||
SETTLEMINT_MINIO_SECRET_KEY: z.ZodOptional<z.ZodString>; | ||
/** Unique name of the IPFS instance */ | ||
SETTLEMINT_IPFS: z.ZodOptional<z.ZodString>; | ||
/** API endpoint URL for IPFS */ | ||
SETTLEMINT_IPFS_API_ENDPOINT: z.ZodOptional<z.ZodString>; | ||
/** Pinning service endpoint URL for IPFS */ | ||
SETTLEMINT_IPFS_PINNING_ENDPOINT: z.ZodOptional<z.ZodString>; | ||
/** Gateway endpoint URL for IPFS */ | ||
SETTLEMINT_IPFS_GATEWAY_ENDPOINT: z.ZodOptional<z.ZodString>; | ||
/** Unique name of the custom deployment */ | ||
SETTLEMINT_CUSTOM_DEPLOYMENT: z.ZodOptional<z.ZodString>; | ||
/** Endpoint URL for the custom deployment */ | ||
SETTLEMINT_CUSTOM_DEPLOYMENT_ENDPOINT: z.ZodOptional<z.ZodString>; | ||
/** Unique name of the Blockscout instance */ | ||
SETTLEMINT_BLOCKSCOUT: z.ZodOptional<z.ZodString>; | ||
/** GraphQL endpoint URL for Blockscout */ | ||
SETTLEMINT_BLOCKSCOUT_GRAPHQL_ENDPOINT: z.ZodOptional<z.ZodString>; | ||
/** UI endpoint URL for Blockscout */ | ||
SETTLEMINT_BLOCKSCOUT_UI_ENDPOINT: z.ZodOptional<z.ZodString>; | ||
/** Name of the new project being created */ | ||
SETTLEMINT_NEW_PROJECT_NAME: z.ZodOptional<z.ZodString>; | ||
/** Address of the deployed smart contract */ | ||
SETTLEMINT_SMART_CONTRACT_ADDRESS: z.ZodOptional<z.ZodString>; | ||
/** Deployment ID of the smart contract */ | ||
SETTLEMINT_SMART_CONTRACT_DEPLOYMENT_ID: z.ZodOptional<z.ZodString>; | ||
@@ -64,0 +99,0 @@ }, "strip", z.ZodTypeAny, { |
{ | ||
"name": "@settlemint/sdk-utils", | ||
"description": "SettleMint SDK, integrate SettleMint into your application with ease.", | ||
"version": "0.9.2", | ||
"version": "0.9.3-main60569eea", | ||
"type": "module", | ||
@@ -67,3 +67,3 @@ "private": false, | ||
"is-in-ci": "1.0.0", | ||
"@antfu/install-pkg": "^0.5.0", | ||
"@antfu/install-pkg": "^1.0.0", | ||
"@dotenvx/dotenvx": "^1", | ||
@@ -70,0 +70,0 @@ "@manypkg/find-root": "^2.2.3", |
258
README.md
@@ -101,3 +101,3 @@ <p align="center"> | ||
Defined in: [sdk/utils/src/terminal/ascii.ts:13](https://github.com/settlemint/sdk/blob/v0.9.2/sdk/utils/src/terminal/ascii.ts#L13) | ||
Defined in: [sdk/utils/src/terminal/ascii.ts:13](https://github.com/settlemint/sdk/blob/v0.9.3/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.2/sdk/utils/src/terminal/cancel.ts#L17) | ||
Defined in: [sdk/utils/src/terminal/cancel.ts:17](https://github.com/settlemint/sdk/blob/v0.9.3/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.2/sdk/utils/src/string.ts#L13) | ||
Defined in: [sdk/utils/src/string.ts:13](https://github.com/settlemint/sdk/blob/v0.9.3/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.2/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.3/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.2/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.3/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.2/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.3/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.2/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.3/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.2/sdk/utils/src/filesystem/exists.ts#L17) | ||
Defined in: [sdk/utils/src/filesystem/exists.ts:17](https://github.com/settlemint/sdk/blob/v0.9.3/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.2/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.3/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.2/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.3/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.2/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.3/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:18](https://github.com/settlemint/sdk/blob/v0.9.2/sdk/utils/src/package-manager/install-dependencies.ts#L18) | ||
Defined in: [sdk/utils/src/package-manager/install-dependencies.ts:18](https://github.com/settlemint/sdk/blob/v0.9.3/sdk/utils/src/package-manager/install-dependencies.ts#L18) | ||
@@ -488,3 +488,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.2/sdk/utils/src/terminal/intro.ts#L15) | ||
Defined in: [sdk/utils/src/terminal/intro.ts:15](https://github.com/settlemint/sdk/blob/v0.9.3/sdk/utils/src/terminal/intro.ts#L15) | ||
@@ -519,3 +519,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.2/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.3/sdk/utils/src/package-manager/download-and-extract.ts#L39) | ||
@@ -552,3 +552,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.2/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.3/sdk/utils/src/package-manager/is-package-installed.ts#L12) | ||
@@ -580,3 +580,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.2/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.3/sdk/utils/src/environment/load-env.ts#L25) | ||
@@ -629,3 +629,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.2/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.3/sdk/utils/src/terminal/mask-tokens.ts#L13) | ||
@@ -662,3 +662,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.2/sdk/utils/src/terminal/note.ts#L20) | ||
Defined in: [sdk/utils/src/terminal/note.ts:20](https://github.com/settlemint/sdk/blob/v0.9.3/sdk/utils/src/terminal/note.ts#L20) | ||
@@ -698,3 +698,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.2/sdk/utils/src/terminal/outro.ts#L15) | ||
Defined in: [sdk/utils/src/terminal/outro.ts:15](https://github.com/settlemint/sdk/blob/v0.9.3/sdk/utils/src/terminal/outro.ts#L15) | ||
@@ -729,3 +729,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.2/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.3/sdk/utils/src/filesystem/project-root.ts#L16) | ||
@@ -760,3 +760,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.2/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.3/sdk/utils/src/package-manager/set-name.ts#L16) | ||
@@ -796,3 +796,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.2/sdk/utils/src/terminal/spinner.ts#L39) | ||
Defined in: [sdk/utils/src/terminal/spinner.ts:39](https://github.com/settlemint/sdk/blob/v0.9.3/sdk/utils/src/terminal/spinner.ts#L39) | ||
@@ -847,3 +847,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.2/sdk/utils/src/json.ts#L23) | ||
Defined in: [sdk/utils/src/json.ts:23](https://github.com/settlemint/sdk/blob/v0.9.3/sdk/utils/src/json.ts#L23) | ||
@@ -895,3 +895,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.2/sdk/utils/src/validation.ts#L14) | ||
Defined in: [sdk/utils/src/validation.ts:14](https://github.com/settlemint/sdk/blob/v0.9.3/sdk/utils/src/validation.ts#L14) | ||
@@ -935,3 +935,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.2/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.3/sdk/utils/src/environment/write-env.ts#L81) | ||
@@ -978,3 +978,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.2/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.3/sdk/utils/src/terminal/execute-command.ts#L7) | ||
@@ -991,3 +991,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.2/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.3/sdk/utils/src/terminal/execute-command.ts#L9) | | ||
@@ -998,3 +998,3 @@ *** | ||
Defined in: [sdk/utils/src/terminal/spinner.ts:9](https://github.com/settlemint/sdk/blob/v0.9.2/sdk/utils/src/terminal/spinner.ts#L9) | ||
Defined in: [sdk/utils/src/terminal/spinner.ts:9](https://github.com/settlemint/sdk/blob/v0.9.3/sdk/utils/src/terminal/spinner.ts#L9) | ||
@@ -1013,5 +1013,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.2/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.2/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.2/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.3/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.3/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.3/sdk/utils/src/terminal/spinner.ts#L13) | | ||
@@ -1024,3 +1024,3 @@ ### Type Aliases | ||
Defined in: [sdk/utils/src/validation/access-token.schema.ts:22](https://github.com/settlemint/sdk/blob/v0.9.2/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.3/sdk/utils/src/validation/access-token.schema.ts#L22) | ||
@@ -1036,3 +1036,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.2/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.3/sdk/utils/src/validation/access-token.schema.ts#L8) | ||
@@ -1048,3 +1048,3 @@ Schema for validating application access tokens. | ||
Defined in: [sdk/utils/src/validation/dot-env.schema.ts:56](https://github.com/settlemint/sdk/blob/v0.9.2/sdk/utils/src/validation/dot-env.schema.ts#L56) | ||
Defined in: [sdk/utils/src/validation/dot-env.schema.ts:91](https://github.com/settlemint/sdk/blob/v0.9.3/sdk/utils/src/validation/dot-env.schema.ts#L91) | ||
@@ -1055,39 +1055,39 @@ Type definition for the environment variables schema. | ||
| Name | Type | Defined in | | ||
| ------ | ------ | ------ | | ||
| <a id="settlemint_access_token"></a> `SETTLEMINT_ACCESS_TOKEN`? | `string` | [sdk/utils/src/validation/dot-env.schema.ts:14](https://github.com/settlemint/sdk/blob/v0.9.2/sdk/utils/src/validation/dot-env.schema.ts#L14) | | ||
| <a id="settlemint_application"></a> `SETTLEMINT_APPLICATION`? | `string` | [sdk/utils/src/validation/dot-env.schema.ts:17](https://github.com/settlemint/sdk/blob/v0.9.2/sdk/utils/src/validation/dot-env.schema.ts#L17) | | ||
| <a id="settlemint_blockchain_network"></a> `SETTLEMINT_BLOCKCHAIN_NETWORK`? | `string` | [sdk/utils/src/validation/dot-env.schema.ts:18](https://github.com/settlemint/sdk/blob/v0.9.2/sdk/utils/src/validation/dot-env.schema.ts#L18) | | ||
| <a id="settlemint_blockchain_node"></a> `SETTLEMINT_BLOCKCHAIN_NODE`? | `string` | [sdk/utils/src/validation/dot-env.schema.ts:19](https://github.com/settlemint/sdk/blob/v0.9.2/sdk/utils/src/validation/dot-env.schema.ts#L19) | | ||
| <a id="settlemint_blockscout"></a> `SETTLEMINT_BLOCKSCOUT`? | `string` | [sdk/utils/src/validation/dot-env.schema.ts:45](https://github.com/settlemint/sdk/blob/v0.9.2/sdk/utils/src/validation/dot-env.schema.ts#L45) | | ||
| <a id="settlemint_blockscout_graphql_endpoint"></a> `SETTLEMINT_BLOCKSCOUT_GRAPHQL_ENDPOINT`? | `string` | [sdk/utils/src/validation/dot-env.schema.ts:46](https://github.com/settlemint/sdk/blob/v0.9.2/sdk/utils/src/validation/dot-env.schema.ts#L46) | | ||
| <a id="settlemint_blockscout_ui_endpoint"></a> `SETTLEMINT_BLOCKSCOUT_UI_ENDPOINT`? | `string` | [sdk/utils/src/validation/dot-env.schema.ts:47](https://github.com/settlemint/sdk/blob/v0.9.2/sdk/utils/src/validation/dot-env.schema.ts#L47) | | ||
| <a id="settlemint_custom_deployment"></a> `SETTLEMINT_CUSTOM_DEPLOYMENT`? | `string` | [sdk/utils/src/validation/dot-env.schema.ts:43](https://github.com/settlemint/sdk/blob/v0.9.2/sdk/utils/src/validation/dot-env.schema.ts#L43) | | ||
| <a id="settlemint_custom_deployment_endpoint"></a> `SETTLEMINT_CUSTOM_DEPLOYMENT_ENDPOINT`? | `string` | [sdk/utils/src/validation/dot-env.schema.ts:44](https://github.com/settlemint/sdk/blob/v0.9.2/sdk/utils/src/validation/dot-env.schema.ts#L44) | | ||
| <a id="settlemint_hasura"></a> `SETTLEMINT_HASURA`? | `string` | [sdk/utils/src/validation/dot-env.schema.ts:21](https://github.com/settlemint/sdk/blob/v0.9.2/sdk/utils/src/validation/dot-env.schema.ts#L21) | | ||
| <a id="settlemint_hasura_admin_secret"></a> `SETTLEMINT_HASURA_ADMIN_SECRET`? | `string` | [sdk/utils/src/validation/dot-env.schema.ts:23](https://github.com/settlemint/sdk/blob/v0.9.2/sdk/utils/src/validation/dot-env.schema.ts#L23) | | ||
| <a id="settlemint_hasura_database_url"></a> `SETTLEMINT_HASURA_DATABASE_URL`? | `string` | [sdk/utils/src/validation/dot-env.schema.ts:24](https://github.com/settlemint/sdk/blob/v0.9.2/sdk/utils/src/validation/dot-env.schema.ts#L24) | | ||
| <a id="settlemint_hasura_endpoint"></a> `SETTLEMINT_HASURA_ENDPOINT`? | `string` | [sdk/utils/src/validation/dot-env.schema.ts:22](https://github.com/settlemint/sdk/blob/v0.9.2/sdk/utils/src/validation/dot-env.schema.ts#L22) | | ||
| <a id="settlemint_hd_private_key"></a> `SETTLEMINT_HD_PRIVATE_KEY`? | `string` | [sdk/utils/src/validation/dot-env.schema.ts:34](https://github.com/settlemint/sdk/blob/v0.9.2/sdk/utils/src/validation/dot-env.schema.ts#L34) | | ||
| <a id="settlemint_instance"></a> `SETTLEMINT_INSTANCE` | `string` | [sdk/utils/src/validation/dot-env.schema.ts:13](https://github.com/settlemint/sdk/blob/v0.9.2/sdk/utils/src/validation/dot-env.schema.ts#L13) | | ||
| <a id="settlemint_ipfs"></a> `SETTLEMINT_IPFS`? | `string` | [sdk/utils/src/validation/dot-env.schema.ts:39](https://github.com/settlemint/sdk/blob/v0.9.2/sdk/utils/src/validation/dot-env.schema.ts#L39) | | ||
| <a id="settlemint_ipfs_api_endpoint"></a> `SETTLEMINT_IPFS_API_ENDPOINT`? | `string` | [sdk/utils/src/validation/dot-env.schema.ts:40](https://github.com/settlemint/sdk/blob/v0.9.2/sdk/utils/src/validation/dot-env.schema.ts#L40) | | ||
| <a id="settlemint_ipfs_gateway_endpoint"></a> `SETTLEMINT_IPFS_GATEWAY_ENDPOINT`? | `string` | [sdk/utils/src/validation/dot-env.schema.ts:42](https://github.com/settlemint/sdk/blob/v0.9.2/sdk/utils/src/validation/dot-env.schema.ts#L42) | | ||
| <a id="settlemint_ipfs_pinning_endpoint"></a> `SETTLEMINT_IPFS_PINNING_ENDPOINT`? | `string` | [sdk/utils/src/validation/dot-env.schema.ts:41](https://github.com/settlemint/sdk/blob/v0.9.2/sdk/utils/src/validation/dot-env.schema.ts#L41) | | ||
| <a id="settlemint_load_balancer"></a> `SETTLEMINT_LOAD_BALANCER`? | `string` | [sdk/utils/src/validation/dot-env.schema.ts:20](https://github.com/settlemint/sdk/blob/v0.9.2/sdk/utils/src/validation/dot-env.schema.ts#L20) | | ||
| <a id="settlemint_minio"></a> `SETTLEMINT_MINIO`? | `string` | [sdk/utils/src/validation/dot-env.schema.ts:35](https://github.com/settlemint/sdk/blob/v0.9.2/sdk/utils/src/validation/dot-env.schema.ts#L35) | | ||
| <a id="settlemint_minio_access_key"></a> `SETTLEMINT_MINIO_ACCESS_KEY`? | `string` | [sdk/utils/src/validation/dot-env.schema.ts:37](https://github.com/settlemint/sdk/blob/v0.9.2/sdk/utils/src/validation/dot-env.schema.ts#L37) | | ||
| <a id="settlemint_minio_endpoint"></a> `SETTLEMINT_MINIO_ENDPOINT`? | `string` | [sdk/utils/src/validation/dot-env.schema.ts:36](https://github.com/settlemint/sdk/blob/v0.9.2/sdk/utils/src/validation/dot-env.schema.ts#L36) | | ||
| <a id="settlemint_minio_secret_key"></a> `SETTLEMINT_MINIO_SECRET_KEY`? | `string` | [sdk/utils/src/validation/dot-env.schema.ts:38](https://github.com/settlemint/sdk/blob/v0.9.2/sdk/utils/src/validation/dot-env.schema.ts#L38) | | ||
| <a id="settlemint_new_project_name"></a> `SETTLEMINT_NEW_PROJECT_NAME`? | `string` | [sdk/utils/src/validation/dot-env.schema.ts:48](https://github.com/settlemint/sdk/blob/v0.9.2/sdk/utils/src/validation/dot-env.schema.ts#L48) | | ||
| <a id="settlemint_personal_access_token"></a> `SETTLEMINT_PERSONAL_ACCESS_TOKEN`? | `string` | [sdk/utils/src/validation/dot-env.schema.ts:15](https://github.com/settlemint/sdk/blob/v0.9.2/sdk/utils/src/validation/dot-env.schema.ts#L15) | | ||
| <a id="settlemint_portal"></a> `SETTLEMINT_PORTAL`? | `string` | [sdk/utils/src/validation/dot-env.schema.ts:31](https://github.com/settlemint/sdk/blob/v0.9.2/sdk/utils/src/validation/dot-env.schema.ts#L31) | | ||
| <a id="settlemint_portal_graphql_endpoint"></a> `SETTLEMINT_PORTAL_GRAPHQL_ENDPOINT`? | `string` | [sdk/utils/src/validation/dot-env.schema.ts:32](https://github.com/settlemint/sdk/blob/v0.9.2/sdk/utils/src/validation/dot-env.schema.ts#L32) | | ||
| <a id="settlemint_portal_rest_endpoint"></a> `SETTLEMINT_PORTAL_REST_ENDPOINT`? | `string` | [sdk/utils/src/validation/dot-env.schema.ts:33](https://github.com/settlemint/sdk/blob/v0.9.2/sdk/utils/src/validation/dot-env.schema.ts#L33) | | ||
| <a id="settlemint_smart_contract_address"></a> `SETTLEMINT_SMART_CONTRACT_ADDRESS`? | `string` | [sdk/utils/src/validation/dot-env.schema.ts:49](https://github.com/settlemint/sdk/blob/v0.9.2/sdk/utils/src/validation/dot-env.schema.ts#L49) | | ||
| <a id="settlemint_smart_contract_deployment_id"></a> `SETTLEMINT_SMART_CONTRACT_DEPLOYMENT_ID`? | `string` | [sdk/utils/src/validation/dot-env.schema.ts:50](https://github.com/settlemint/sdk/blob/v0.9.2/sdk/utils/src/validation/dot-env.schema.ts#L50) | | ||
| <a id="settlemint_thegraph"></a> `SETTLEMINT_THEGRAPH`? | `string` | [sdk/utils/src/validation/dot-env.schema.ts:25](https://github.com/settlemint/sdk/blob/v0.9.2/sdk/utils/src/validation/dot-env.schema.ts#L25) | | ||
| <a id="settlemint_thegraph_subgraph_name"></a> `SETTLEMINT_THEGRAPH_SUBGRAPH_NAME`? | `string` | [sdk/utils/src/validation/dot-env.schema.ts:30](https://github.com/settlemint/sdk/blob/v0.9.2/sdk/utils/src/validation/dot-env.schema.ts#L30) | | ||
| <a id="settlemint_thegraph_subgraphs_endpoints"></a> `SETTLEMINT_THEGRAPH_SUBGRAPHS_ENDPOINTS`? | `string`[] | [sdk/utils/src/validation/dot-env.schema.ts:26](https://github.com/settlemint/sdk/blob/v0.9.2/sdk/utils/src/validation/dot-env.schema.ts#L26) | | ||
| <a id="settlemint_workspace"></a> `SETTLEMINT_WORKSPACE`? | `string` | [sdk/utils/src/validation/dot-env.schema.ts:16](https://github.com/settlemint/sdk/blob/v0.9.2/sdk/utils/src/validation/dot-env.schema.ts#L16) | | ||
| Name | Type | Description | Defined in | | ||
| ------ | ------ | ------ | ------ | | ||
| <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.3/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.3/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.3/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.3/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.3/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.3/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.3/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.3/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.3/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.3/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.3/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.3/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.3/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.3/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.3/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.3/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.3/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.3/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.3/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.3/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.3/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.3/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.3/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.3/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.3/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.3/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.3/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.3/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.3/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.3/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.3/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.3/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.3/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.3/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.3/sdk/utils/src/validation/dot-env.schema.ts#L20) | | ||
@@ -1100,3 +1100,3 @@ *** | ||
Defined in: [sdk/utils/src/validation/dot-env.schema.ts:67](https://github.com/settlemint/sdk/blob/v0.9.2/sdk/utils/src/validation/dot-env.schema.ts#L67) | ||
Defined in: [sdk/utils/src/validation/dot-env.schema.ts:102](https://github.com/settlemint/sdk/blob/v0.9.3/sdk/utils/src/validation/dot-env.schema.ts#L102) | ||
@@ -1107,39 +1107,39 @@ Type definition for the partial environment variables schema. | ||
| Name | Type | Defined in | | ||
| ------ | ------ | ------ | | ||
| <a id="settlemint_access_token-1"></a> `SETTLEMINT_ACCESS_TOKEN`? | `string` | [sdk/utils/src/validation/dot-env.schema.ts:14](https://github.com/settlemint/sdk/blob/v0.9.2/sdk/utils/src/validation/dot-env.schema.ts#L14) | | ||
| <a id="settlemint_application-1"></a> `SETTLEMINT_APPLICATION`? | `string` | [sdk/utils/src/validation/dot-env.schema.ts:17](https://github.com/settlemint/sdk/blob/v0.9.2/sdk/utils/src/validation/dot-env.schema.ts#L17) | | ||
| <a id="settlemint_blockchain_network-1"></a> `SETTLEMINT_BLOCKCHAIN_NETWORK`? | `string` | [sdk/utils/src/validation/dot-env.schema.ts:18](https://github.com/settlemint/sdk/blob/v0.9.2/sdk/utils/src/validation/dot-env.schema.ts#L18) | | ||
| <a id="settlemint_blockchain_node-1"></a> `SETTLEMINT_BLOCKCHAIN_NODE`? | `string` | [sdk/utils/src/validation/dot-env.schema.ts:19](https://github.com/settlemint/sdk/blob/v0.9.2/sdk/utils/src/validation/dot-env.schema.ts#L19) | | ||
| <a id="settlemint_blockscout-1"></a> `SETTLEMINT_BLOCKSCOUT`? | `string` | [sdk/utils/src/validation/dot-env.schema.ts:45](https://github.com/settlemint/sdk/blob/v0.9.2/sdk/utils/src/validation/dot-env.schema.ts#L45) | | ||
| <a id="settlemint_blockscout_graphql_endpoint-1"></a> `SETTLEMINT_BLOCKSCOUT_GRAPHQL_ENDPOINT`? | `string` | [sdk/utils/src/validation/dot-env.schema.ts:46](https://github.com/settlemint/sdk/blob/v0.9.2/sdk/utils/src/validation/dot-env.schema.ts#L46) | | ||
| <a id="settlemint_blockscout_ui_endpoint-1"></a> `SETTLEMINT_BLOCKSCOUT_UI_ENDPOINT`? | `string` | [sdk/utils/src/validation/dot-env.schema.ts:47](https://github.com/settlemint/sdk/blob/v0.9.2/sdk/utils/src/validation/dot-env.schema.ts#L47) | | ||
| <a id="settlemint_custom_deployment-1"></a> `SETTLEMINT_CUSTOM_DEPLOYMENT`? | `string` | [sdk/utils/src/validation/dot-env.schema.ts:43](https://github.com/settlemint/sdk/blob/v0.9.2/sdk/utils/src/validation/dot-env.schema.ts#L43) | | ||
| <a id="settlemint_custom_deployment_endpoint-1"></a> `SETTLEMINT_CUSTOM_DEPLOYMENT_ENDPOINT`? | `string` | [sdk/utils/src/validation/dot-env.schema.ts:44](https://github.com/settlemint/sdk/blob/v0.9.2/sdk/utils/src/validation/dot-env.schema.ts#L44) | | ||
| <a id="settlemint_hasura-1"></a> `SETTLEMINT_HASURA`? | `string` | [sdk/utils/src/validation/dot-env.schema.ts:21](https://github.com/settlemint/sdk/blob/v0.9.2/sdk/utils/src/validation/dot-env.schema.ts#L21) | | ||
| <a id="settlemint_hasura_admin_secret-1"></a> `SETTLEMINT_HASURA_ADMIN_SECRET`? | `string` | [sdk/utils/src/validation/dot-env.schema.ts:23](https://github.com/settlemint/sdk/blob/v0.9.2/sdk/utils/src/validation/dot-env.schema.ts#L23) | | ||
| <a id="settlemint_hasura_database_url-1"></a> `SETTLEMINT_HASURA_DATABASE_URL`? | `string` | [sdk/utils/src/validation/dot-env.schema.ts:24](https://github.com/settlemint/sdk/blob/v0.9.2/sdk/utils/src/validation/dot-env.schema.ts#L24) | | ||
| <a id="settlemint_hasura_endpoint-1"></a> `SETTLEMINT_HASURA_ENDPOINT`? | `string` | [sdk/utils/src/validation/dot-env.schema.ts:22](https://github.com/settlemint/sdk/blob/v0.9.2/sdk/utils/src/validation/dot-env.schema.ts#L22) | | ||
| <a id="settlemint_hd_private_key-1"></a> `SETTLEMINT_HD_PRIVATE_KEY`? | `string` | [sdk/utils/src/validation/dot-env.schema.ts:34](https://github.com/settlemint/sdk/blob/v0.9.2/sdk/utils/src/validation/dot-env.schema.ts#L34) | | ||
| <a id="settlemint_instance-1"></a> `SETTLEMINT_INSTANCE`? | `string` | [sdk/utils/src/validation/dot-env.schema.ts:13](https://github.com/settlemint/sdk/blob/v0.9.2/sdk/utils/src/validation/dot-env.schema.ts#L13) | | ||
| <a id="settlemint_ipfs-1"></a> `SETTLEMINT_IPFS`? | `string` | [sdk/utils/src/validation/dot-env.schema.ts:39](https://github.com/settlemint/sdk/blob/v0.9.2/sdk/utils/src/validation/dot-env.schema.ts#L39) | | ||
| <a id="settlemint_ipfs_api_endpoint-1"></a> `SETTLEMINT_IPFS_API_ENDPOINT`? | `string` | [sdk/utils/src/validation/dot-env.schema.ts:40](https://github.com/settlemint/sdk/blob/v0.9.2/sdk/utils/src/validation/dot-env.schema.ts#L40) | | ||
| <a id="settlemint_ipfs_gateway_endpoint-1"></a> `SETTLEMINT_IPFS_GATEWAY_ENDPOINT`? | `string` | [sdk/utils/src/validation/dot-env.schema.ts:42](https://github.com/settlemint/sdk/blob/v0.9.2/sdk/utils/src/validation/dot-env.schema.ts#L42) | | ||
| <a id="settlemint_ipfs_pinning_endpoint-1"></a> `SETTLEMINT_IPFS_PINNING_ENDPOINT`? | `string` | [sdk/utils/src/validation/dot-env.schema.ts:41](https://github.com/settlemint/sdk/blob/v0.9.2/sdk/utils/src/validation/dot-env.schema.ts#L41) | | ||
| <a id="settlemint_load_balancer-1"></a> `SETTLEMINT_LOAD_BALANCER`? | `string` | [sdk/utils/src/validation/dot-env.schema.ts:20](https://github.com/settlemint/sdk/blob/v0.9.2/sdk/utils/src/validation/dot-env.schema.ts#L20) | | ||
| <a id="settlemint_minio-1"></a> `SETTLEMINT_MINIO`? | `string` | [sdk/utils/src/validation/dot-env.schema.ts:35](https://github.com/settlemint/sdk/blob/v0.9.2/sdk/utils/src/validation/dot-env.schema.ts#L35) | | ||
| <a id="settlemint_minio_access_key-1"></a> `SETTLEMINT_MINIO_ACCESS_KEY`? | `string` | [sdk/utils/src/validation/dot-env.schema.ts:37](https://github.com/settlemint/sdk/blob/v0.9.2/sdk/utils/src/validation/dot-env.schema.ts#L37) | | ||
| <a id="settlemint_minio_endpoint-1"></a> `SETTLEMINT_MINIO_ENDPOINT`? | `string` | [sdk/utils/src/validation/dot-env.schema.ts:36](https://github.com/settlemint/sdk/blob/v0.9.2/sdk/utils/src/validation/dot-env.schema.ts#L36) | | ||
| <a id="settlemint_minio_secret_key-1"></a> `SETTLEMINT_MINIO_SECRET_KEY`? | `string` | [sdk/utils/src/validation/dot-env.schema.ts:38](https://github.com/settlemint/sdk/blob/v0.9.2/sdk/utils/src/validation/dot-env.schema.ts#L38) | | ||
| <a id="settlemint_new_project_name-1"></a> `SETTLEMINT_NEW_PROJECT_NAME`? | `string` | [sdk/utils/src/validation/dot-env.schema.ts:48](https://github.com/settlemint/sdk/blob/v0.9.2/sdk/utils/src/validation/dot-env.schema.ts#L48) | | ||
| <a id="settlemint_personal_access_token-1"></a> `SETTLEMINT_PERSONAL_ACCESS_TOKEN`? | `string` | [sdk/utils/src/validation/dot-env.schema.ts:15](https://github.com/settlemint/sdk/blob/v0.9.2/sdk/utils/src/validation/dot-env.schema.ts#L15) | | ||
| <a id="settlemint_portal-1"></a> `SETTLEMINT_PORTAL`? | `string` | [sdk/utils/src/validation/dot-env.schema.ts:31](https://github.com/settlemint/sdk/blob/v0.9.2/sdk/utils/src/validation/dot-env.schema.ts#L31) | | ||
| <a id="settlemint_portal_graphql_endpoint-1"></a> `SETTLEMINT_PORTAL_GRAPHQL_ENDPOINT`? | `string` | [sdk/utils/src/validation/dot-env.schema.ts:32](https://github.com/settlemint/sdk/blob/v0.9.2/sdk/utils/src/validation/dot-env.schema.ts#L32) | | ||
| <a id="settlemint_portal_rest_endpoint-1"></a> `SETTLEMINT_PORTAL_REST_ENDPOINT`? | `string` | [sdk/utils/src/validation/dot-env.schema.ts:33](https://github.com/settlemint/sdk/blob/v0.9.2/sdk/utils/src/validation/dot-env.schema.ts#L33) | | ||
| <a id="settlemint_smart_contract_address-1"></a> `SETTLEMINT_SMART_CONTRACT_ADDRESS`? | `string` | [sdk/utils/src/validation/dot-env.schema.ts:49](https://github.com/settlemint/sdk/blob/v0.9.2/sdk/utils/src/validation/dot-env.schema.ts#L49) | | ||
| <a id="settlemint_smart_contract_deployment_id-1"></a> `SETTLEMINT_SMART_CONTRACT_DEPLOYMENT_ID`? | `string` | [sdk/utils/src/validation/dot-env.schema.ts:50](https://github.com/settlemint/sdk/blob/v0.9.2/sdk/utils/src/validation/dot-env.schema.ts#L50) | | ||
| <a id="settlemint_thegraph-1"></a> `SETTLEMINT_THEGRAPH`? | `string` | [sdk/utils/src/validation/dot-env.schema.ts:25](https://github.com/settlemint/sdk/blob/v0.9.2/sdk/utils/src/validation/dot-env.schema.ts#L25) | | ||
| <a id="settlemint_thegraph_subgraph_name-1"></a> `SETTLEMINT_THEGRAPH_SUBGRAPH_NAME`? | `string` | [sdk/utils/src/validation/dot-env.schema.ts:30](https://github.com/settlemint/sdk/blob/v0.9.2/sdk/utils/src/validation/dot-env.schema.ts#L30) | | ||
| <a id="settlemint_thegraph_subgraphs_endpoints-1"></a> `SETTLEMINT_THEGRAPH_SUBGRAPHS_ENDPOINTS`? | `string`[] | [sdk/utils/src/validation/dot-env.schema.ts:26](https://github.com/settlemint/sdk/blob/v0.9.2/sdk/utils/src/validation/dot-env.schema.ts#L26) | | ||
| <a id="settlemint_workspace-1"></a> `SETTLEMINT_WORKSPACE`? | `string` | [sdk/utils/src/validation/dot-env.schema.ts:16](https://github.com/settlemint/sdk/blob/v0.9.2/sdk/utils/src/validation/dot-env.schema.ts#L16) | | ||
| Name | Type | Description | Defined in | | ||
| ------ | ------ | ------ | ------ | | ||
| <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.3/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.3/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.3/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.3/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.3/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.3/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.3/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.3/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.3/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.3/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.3/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.3/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.3/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.3/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.3/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.3/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.3/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.3/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.3/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.3/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.3/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.3/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.3/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.3/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.3/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.3/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.3/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.3/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.3/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.3/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.3/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.3/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.3/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.3/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.3/sdk/utils/src/validation/dot-env.schema.ts#L20) | | ||
@@ -1152,3 +1152,3 @@ *** | ||
Defined in: [sdk/utils/src/validation/id.schema.ts:30](https://github.com/settlemint/sdk/blob/v0.9.2/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.3/sdk/utils/src/validation/id.schema.ts#L30) | ||
@@ -1164,3 +1164,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.2/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.3/sdk/utils/src/validation/access-token.schema.ts#L15) | ||
@@ -1176,3 +1176,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.2/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.3/sdk/utils/src/package-manager/download-and-extract.ts#L8) | ||
@@ -1185,4 +1185,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.2/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.2/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.3/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.3/sdk/utils/src/package-manager/download-and-extract.ts#L8) | | ||
@@ -1195,3 +1195,3 @@ *** | ||
Defined in: [sdk/utils/src/validation/url.schema.ts:18](https://github.com/settlemint/sdk/blob/v0.9.2/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.3/sdk/utils/src/validation/url.schema.ts#L18) | ||
@@ -1220,3 +1220,3 @@ Schema for validating URLs. | ||
Defined in: [sdk/utils/src/validation/url.schema.ts:55](https://github.com/settlemint/sdk/blob/v0.9.2/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.3/sdk/utils/src/validation/url.schema.ts#L55) | ||
@@ -1245,3 +1245,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.2/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.3/sdk/utils/src/validation/url.schema.ts#L38) | ||
@@ -1270,3 +1270,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.2/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.3/sdk/utils/src/validation/access-token.schema.ts#L21) | ||
@@ -1282,3 +1282,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.2/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.3/sdk/utils/src/validation/access-token.schema.ts#L7) | ||
@@ -1294,3 +1294,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.2/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.3/sdk/utils/src/validation/dot-env.schema.ts#L12) | ||
@@ -1307,3 +1307,3 @@ Schema for validating environment variables used by the SettleMint SDK. | ||
Defined in: [sdk/utils/src/validation/dot-env.schema.ts:62](https://github.com/settlemint/sdk/blob/v0.9.2/sdk/utils/src/validation/dot-env.schema.ts#L62) | ||
Defined in: [sdk/utils/src/validation/dot-env.schema.ts:97](https://github.com/settlemint/sdk/blob/v0.9.3/sdk/utils/src/validation/dot-env.schema.ts#L97) | ||
@@ -1319,3 +1319,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.2/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.3/sdk/utils/src/validation/id.schema.ts#L17) | ||
@@ -1344,3 +1344,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.2/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.3/sdk/utils/src/validation/access-token.schema.ts#L14) | ||
@@ -1356,3 +1356,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.2/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.3/sdk/utils/src/runtime/ensure-server.ts#L40) | ||
@@ -1367,3 +1367,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.2/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.3/sdk/utils/src/runtime/ensure-server.ts#L45) | ||
@@ -1378,3 +1378,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.2/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.3/sdk/utils/src/validation/unique-name.schema.ts#L19) | ||
@@ -1405,3 +1405,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.2/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.3/sdk/utils/src/validation/url.schema.ts#L54) | ||
@@ -1430,3 +1430,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.2/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.3/sdk/utils/src/validation/url.schema.ts#L34) | ||
@@ -1455,3 +1455,3 @@ Schema for validating URL paths. | ||
Defined in: [sdk/utils/src/validation/url.schema.ts:17](https://github.com/settlemint/sdk/blob/v0.9.2/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.3/sdk/utils/src/validation/url.schema.ts#L17) | ||
@@ -1458,0 +1458,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
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
573775
4486
+ Added@antfu/install-pkg@1.0.0(transitive)
- Removed@antfu/install-pkg@0.5.0(transitive)
Updated@antfu/install-pkg@^1.0.0