@settlemint/sdk-utils
Advanced tools
Comparing version
@@ -291,3 +291,3 @@ import { z } from 'zod'; | ||
* @example | ||
* import { loadEnv } from '@settlemint/sdk-utils'; | ||
* import { loadEnv } from '@settlemint/sdk-utils/environment'; | ||
* | ||
@@ -312,3 +312,3 @@ * // Load and validate environment variables | ||
* @example | ||
* import { writeEnv } from '@settlemint/sdk-utils'; | ||
* import { writeEnv } from '@settlemint/sdk-utils/environment'; | ||
* | ||
@@ -315,0 +315,0 @@ * // Write development environment variables |
@@ -9,3 +9,3 @@ import { PathLike } from 'node:fs'; | ||
* @example | ||
* import { projectRoot } from "@settlemint/sdk-utils"; | ||
* import { projectRoot } from "@settlemint/sdk-utils/filesystem"; | ||
* | ||
@@ -24,3 +24,3 @@ * // Get project root path | ||
* @example | ||
* import { exists } from "@settlemint/sdk-utils"; | ||
* import { exists } from "@settlemint/sdk-utils/filesystem"; | ||
* | ||
@@ -40,3 +40,3 @@ * // Check if file exists before reading | ||
* @example | ||
* import { findMonoRepoRoot } from "@settlemint/sdk-utils"; | ||
* import { findMonoRepoRoot } from "@settlemint/sdk-utils/filesystem"; | ||
* | ||
@@ -53,3 +53,3 @@ * const root = await findMonoRepoRoot("/path/to/your/project"); | ||
* @example | ||
* import { findMonoRepoPackages } from "@settlemint/sdk-utils"; | ||
* import { findMonoRepoPackages } from "@settlemint/sdk-utils/filesystem"; | ||
* | ||
@@ -56,0 +56,0 @@ * const packages = await findMonoRepoPackages("/path/to/your/project"); |
@@ -1,553 +0,2 @@ | ||
import { ZodString, z, ZodSchema } from 'zod'; | ||
import { PathLike } from 'node:fs'; | ||
import { AgentName } from 'package-manager-detector'; | ||
import { SpawnOptionsWithoutStdio } from 'node:child_process'; | ||
import { Spinner } from 'yocto-spinner'; | ||
/** | ||
* Schema for validating application access tokens. | ||
* Application access tokens start with 'sm_aat_' prefix. | ||
*/ | ||
declare const ApplicationAccessTokenSchema: ZodString; | ||
type ApplicationAccessToken = z.infer<typeof ApplicationAccessTokenSchema>; | ||
/** | ||
* Schema for validating personal access tokens. | ||
* Personal access tokens start with 'sm_pat_' prefix. | ||
*/ | ||
declare const PersonalAccessTokenSchema: ZodString; | ||
type PersonalAccessToken = z.infer<typeof PersonalAccessTokenSchema>; | ||
/** | ||
* Schema for validating both application and personal access tokens. | ||
* Accepts tokens starting with either 'sm_pat_' or 'sm_aat_' prefix. | ||
*/ | ||
declare const AccessTokenSchema: ZodString; | ||
type AccessToken = z.infer<typeof AccessTokenSchema>; | ||
/** | ||
* Schema for validating environment variables used by the SettleMint SDK. | ||
* Defines validation rules and types for configuration values like URLs, | ||
* access tokens, workspace names, and service endpoints. | ||
*/ | ||
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 accessible private key */ | ||
SETTLEMINT_ACCESSIBLE_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>; | ||
}, "strip", z.ZodTypeAny, { | ||
SETTLEMINT_INSTANCE: string; | ||
SETTLEMINT_ACCESS_TOKEN?: string | undefined; | ||
SETTLEMINT_PERSONAL_ACCESS_TOKEN?: string | undefined; | ||
SETTLEMINT_WORKSPACE?: string | undefined; | ||
SETTLEMINT_APPLICATION?: string | undefined; | ||
SETTLEMINT_BLOCKCHAIN_NETWORK?: string | undefined; | ||
SETTLEMINT_BLOCKCHAIN_NODE?: string | undefined; | ||
SETTLEMINT_LOAD_BALANCER?: string | undefined; | ||
SETTLEMINT_HASURA?: string | undefined; | ||
SETTLEMINT_HASURA_ENDPOINT?: string | undefined; | ||
SETTLEMINT_HASURA_ADMIN_SECRET?: string | undefined; | ||
SETTLEMINT_HASURA_DATABASE_URL?: string | undefined; | ||
SETTLEMINT_THEGRAPH?: string | undefined; | ||
SETTLEMINT_THEGRAPH_SUBGRAPHS_ENDPOINTS?: string[] | undefined; | ||
SETTLEMINT_THEGRAPH_SUBGRAPH_NAME?: string | undefined; | ||
SETTLEMINT_PORTAL?: string | undefined; | ||
SETTLEMINT_PORTAL_GRAPHQL_ENDPOINT?: string | undefined; | ||
SETTLEMINT_PORTAL_REST_ENDPOINT?: string | undefined; | ||
SETTLEMINT_HD_PRIVATE_KEY?: string | undefined; | ||
SETTLEMINT_ACCESSIBLE_PRIVATE_KEY?: string | undefined; | ||
SETTLEMINT_MINIO?: string | undefined; | ||
SETTLEMINT_MINIO_ENDPOINT?: string | undefined; | ||
SETTLEMINT_MINIO_ACCESS_KEY?: string | undefined; | ||
SETTLEMINT_MINIO_SECRET_KEY?: string | undefined; | ||
SETTLEMINT_IPFS?: string | undefined; | ||
SETTLEMINT_IPFS_API_ENDPOINT?: string | undefined; | ||
SETTLEMINT_IPFS_PINNING_ENDPOINT?: string | undefined; | ||
SETTLEMINT_IPFS_GATEWAY_ENDPOINT?: string | undefined; | ||
SETTLEMINT_CUSTOM_DEPLOYMENT?: string | undefined; | ||
SETTLEMINT_CUSTOM_DEPLOYMENT_ENDPOINT?: string | undefined; | ||
SETTLEMINT_BLOCKSCOUT?: string | undefined; | ||
SETTLEMINT_BLOCKSCOUT_GRAPHQL_ENDPOINT?: string | undefined; | ||
SETTLEMINT_BLOCKSCOUT_UI_ENDPOINT?: string | undefined; | ||
SETTLEMINT_NEW_PROJECT_NAME?: string | undefined; | ||
SETTLEMINT_SMART_CONTRACT_ADDRESS?: string | undefined; | ||
SETTLEMINT_SMART_CONTRACT_DEPLOYMENT_ID?: string | undefined; | ||
}, { | ||
SETTLEMINT_INSTANCE?: string | undefined; | ||
SETTLEMINT_ACCESS_TOKEN?: string | undefined; | ||
SETTLEMINT_PERSONAL_ACCESS_TOKEN?: string | undefined; | ||
SETTLEMINT_WORKSPACE?: string | undefined; | ||
SETTLEMINT_APPLICATION?: string | undefined; | ||
SETTLEMINT_BLOCKCHAIN_NETWORK?: string | undefined; | ||
SETTLEMINT_BLOCKCHAIN_NODE?: string | undefined; | ||
SETTLEMINT_LOAD_BALANCER?: string | undefined; | ||
SETTLEMINT_HASURA?: string | undefined; | ||
SETTLEMINT_HASURA_ENDPOINT?: string | undefined; | ||
SETTLEMINT_HASURA_ADMIN_SECRET?: string | undefined; | ||
SETTLEMINT_HASURA_DATABASE_URL?: string | undefined; | ||
SETTLEMINT_THEGRAPH?: string | undefined; | ||
SETTLEMINT_THEGRAPH_SUBGRAPHS_ENDPOINTS?: unknown; | ||
SETTLEMINT_THEGRAPH_SUBGRAPH_NAME?: string | undefined; | ||
SETTLEMINT_PORTAL?: string | undefined; | ||
SETTLEMINT_PORTAL_GRAPHQL_ENDPOINT?: string | undefined; | ||
SETTLEMINT_PORTAL_REST_ENDPOINT?: string | undefined; | ||
SETTLEMINT_HD_PRIVATE_KEY?: string | undefined; | ||
SETTLEMINT_ACCESSIBLE_PRIVATE_KEY?: string | undefined; | ||
SETTLEMINT_MINIO?: string | undefined; | ||
SETTLEMINT_MINIO_ENDPOINT?: string | undefined; | ||
SETTLEMINT_MINIO_ACCESS_KEY?: string | undefined; | ||
SETTLEMINT_MINIO_SECRET_KEY?: string | undefined; | ||
SETTLEMINT_IPFS?: string | undefined; | ||
SETTLEMINT_IPFS_API_ENDPOINT?: string | undefined; | ||
SETTLEMINT_IPFS_PINNING_ENDPOINT?: string | undefined; | ||
SETTLEMINT_IPFS_GATEWAY_ENDPOINT?: string | undefined; | ||
SETTLEMINT_CUSTOM_DEPLOYMENT?: string | undefined; | ||
SETTLEMINT_CUSTOM_DEPLOYMENT_ENDPOINT?: string | undefined; | ||
SETTLEMINT_BLOCKSCOUT?: string | undefined; | ||
SETTLEMINT_BLOCKSCOUT_GRAPHQL_ENDPOINT?: string | undefined; | ||
SETTLEMINT_BLOCKSCOUT_UI_ENDPOINT?: string | undefined; | ||
SETTLEMINT_NEW_PROJECT_NAME?: string | undefined; | ||
SETTLEMINT_SMART_CONTRACT_ADDRESS?: string | undefined; | ||
SETTLEMINT_SMART_CONTRACT_DEPLOYMENT_ID?: string | undefined; | ||
}>; | ||
/** | ||
* Type definition for the environment variables schema. | ||
*/ | ||
type DotEnv = z.infer<typeof DotEnvSchema>; | ||
/** | ||
* Partial version of the environment variables schema where all fields are optional. | ||
* Useful for validating incomplete configurations during development or build time. | ||
*/ | ||
declare const DotEnvSchemaPartial: z.ZodObject<{ | ||
SETTLEMINT_INSTANCE: z.ZodOptional<z.ZodDefault<z.ZodString>>; | ||
SETTLEMINT_ACCESS_TOKEN: z.ZodOptional<z.ZodOptional<z.ZodString>>; | ||
SETTLEMINT_PERSONAL_ACCESS_TOKEN: z.ZodOptional<z.ZodOptional<z.ZodString>>; | ||
SETTLEMINT_WORKSPACE: z.ZodOptional<z.ZodOptional<z.ZodString>>; | ||
SETTLEMINT_APPLICATION: z.ZodOptional<z.ZodOptional<z.ZodString>>; | ||
SETTLEMINT_BLOCKCHAIN_NETWORK: z.ZodOptional<z.ZodOptional<z.ZodString>>; | ||
SETTLEMINT_BLOCKCHAIN_NODE: z.ZodOptional<z.ZodOptional<z.ZodString>>; | ||
SETTLEMINT_LOAD_BALANCER: z.ZodOptional<z.ZodOptional<z.ZodString>>; | ||
SETTLEMINT_HASURA: z.ZodOptional<z.ZodOptional<z.ZodString>>; | ||
SETTLEMINT_HASURA_ENDPOINT: z.ZodOptional<z.ZodOptional<z.ZodString>>; | ||
SETTLEMINT_HASURA_ADMIN_SECRET: z.ZodOptional<z.ZodOptional<z.ZodString>>; | ||
SETTLEMINT_HASURA_DATABASE_URL: z.ZodOptional<z.ZodOptional<z.ZodString>>; | ||
SETTLEMINT_THEGRAPH: z.ZodOptional<z.ZodOptional<z.ZodString>>; | ||
SETTLEMINT_THEGRAPH_SUBGRAPHS_ENDPOINTS: z.ZodOptional<z.ZodEffects<z.ZodOptional<z.ZodArray<z.ZodString, "many">>, string[] | undefined, unknown>>; | ||
SETTLEMINT_THEGRAPH_SUBGRAPH_NAME: z.ZodOptional<z.ZodOptional<z.ZodString>>; | ||
SETTLEMINT_PORTAL: z.ZodOptional<z.ZodOptional<z.ZodString>>; | ||
SETTLEMINT_PORTAL_GRAPHQL_ENDPOINT: z.ZodOptional<z.ZodOptional<z.ZodString>>; | ||
SETTLEMINT_PORTAL_REST_ENDPOINT: z.ZodOptional<z.ZodOptional<z.ZodString>>; | ||
SETTLEMINT_HD_PRIVATE_KEY: z.ZodOptional<z.ZodOptional<z.ZodString>>; | ||
SETTLEMINT_ACCESSIBLE_PRIVATE_KEY: z.ZodOptional<z.ZodOptional<z.ZodString>>; | ||
SETTLEMINT_MINIO: z.ZodOptional<z.ZodOptional<z.ZodString>>; | ||
SETTLEMINT_MINIO_ENDPOINT: z.ZodOptional<z.ZodOptional<z.ZodString>>; | ||
SETTLEMINT_MINIO_ACCESS_KEY: z.ZodOptional<z.ZodOptional<z.ZodString>>; | ||
SETTLEMINT_MINIO_SECRET_KEY: z.ZodOptional<z.ZodOptional<z.ZodString>>; | ||
SETTLEMINT_IPFS: z.ZodOptional<z.ZodOptional<z.ZodString>>; | ||
SETTLEMINT_IPFS_API_ENDPOINT: z.ZodOptional<z.ZodOptional<z.ZodString>>; | ||
SETTLEMINT_IPFS_PINNING_ENDPOINT: z.ZodOptional<z.ZodOptional<z.ZodString>>; | ||
SETTLEMINT_IPFS_GATEWAY_ENDPOINT: z.ZodOptional<z.ZodOptional<z.ZodString>>; | ||
SETTLEMINT_CUSTOM_DEPLOYMENT: z.ZodOptional<z.ZodOptional<z.ZodString>>; | ||
SETTLEMINT_CUSTOM_DEPLOYMENT_ENDPOINT: z.ZodOptional<z.ZodOptional<z.ZodString>>; | ||
SETTLEMINT_BLOCKSCOUT: z.ZodOptional<z.ZodOptional<z.ZodString>>; | ||
SETTLEMINT_BLOCKSCOUT_GRAPHQL_ENDPOINT: z.ZodOptional<z.ZodOptional<z.ZodString>>; | ||
SETTLEMINT_BLOCKSCOUT_UI_ENDPOINT: z.ZodOptional<z.ZodOptional<z.ZodString>>; | ||
SETTLEMINT_NEW_PROJECT_NAME: z.ZodOptional<z.ZodOptional<z.ZodString>>; | ||
SETTLEMINT_SMART_CONTRACT_ADDRESS: z.ZodOptional<z.ZodOptional<z.ZodString>>; | ||
SETTLEMINT_SMART_CONTRACT_DEPLOYMENT_ID: z.ZodOptional<z.ZodOptional<z.ZodString>>; | ||
}, "strip", z.ZodTypeAny, { | ||
SETTLEMINT_INSTANCE?: string | undefined; | ||
SETTLEMINT_ACCESS_TOKEN?: string | undefined; | ||
SETTLEMINT_PERSONAL_ACCESS_TOKEN?: string | undefined; | ||
SETTLEMINT_WORKSPACE?: string | undefined; | ||
SETTLEMINT_APPLICATION?: string | undefined; | ||
SETTLEMINT_BLOCKCHAIN_NETWORK?: string | undefined; | ||
SETTLEMINT_BLOCKCHAIN_NODE?: string | undefined; | ||
SETTLEMINT_LOAD_BALANCER?: string | undefined; | ||
SETTLEMINT_HASURA?: string | undefined; | ||
SETTLEMINT_HASURA_ENDPOINT?: string | undefined; | ||
SETTLEMINT_HASURA_ADMIN_SECRET?: string | undefined; | ||
SETTLEMINT_HASURA_DATABASE_URL?: string | undefined; | ||
SETTLEMINT_THEGRAPH?: string | undefined; | ||
SETTLEMINT_THEGRAPH_SUBGRAPHS_ENDPOINTS?: string[] | undefined; | ||
SETTLEMINT_THEGRAPH_SUBGRAPH_NAME?: string | undefined; | ||
SETTLEMINT_PORTAL?: string | undefined; | ||
SETTLEMINT_PORTAL_GRAPHQL_ENDPOINT?: string | undefined; | ||
SETTLEMINT_PORTAL_REST_ENDPOINT?: string | undefined; | ||
SETTLEMINT_HD_PRIVATE_KEY?: string | undefined; | ||
SETTLEMINT_ACCESSIBLE_PRIVATE_KEY?: string | undefined; | ||
SETTLEMINT_MINIO?: string | undefined; | ||
SETTLEMINT_MINIO_ENDPOINT?: string | undefined; | ||
SETTLEMINT_MINIO_ACCESS_KEY?: string | undefined; | ||
SETTLEMINT_MINIO_SECRET_KEY?: string | undefined; | ||
SETTLEMINT_IPFS?: string | undefined; | ||
SETTLEMINT_IPFS_API_ENDPOINT?: string | undefined; | ||
SETTLEMINT_IPFS_PINNING_ENDPOINT?: string | undefined; | ||
SETTLEMINT_IPFS_GATEWAY_ENDPOINT?: string | undefined; | ||
SETTLEMINT_CUSTOM_DEPLOYMENT?: string | undefined; | ||
SETTLEMINT_CUSTOM_DEPLOYMENT_ENDPOINT?: string | undefined; | ||
SETTLEMINT_BLOCKSCOUT?: string | undefined; | ||
SETTLEMINT_BLOCKSCOUT_GRAPHQL_ENDPOINT?: string | undefined; | ||
SETTLEMINT_BLOCKSCOUT_UI_ENDPOINT?: string | undefined; | ||
SETTLEMINT_NEW_PROJECT_NAME?: string | undefined; | ||
SETTLEMINT_SMART_CONTRACT_ADDRESS?: string | undefined; | ||
SETTLEMINT_SMART_CONTRACT_DEPLOYMENT_ID?: string | undefined; | ||
}, { | ||
SETTLEMINT_INSTANCE?: string | undefined; | ||
SETTLEMINT_ACCESS_TOKEN?: string | undefined; | ||
SETTLEMINT_PERSONAL_ACCESS_TOKEN?: string | undefined; | ||
SETTLEMINT_WORKSPACE?: string | undefined; | ||
SETTLEMINT_APPLICATION?: string | undefined; | ||
SETTLEMINT_BLOCKCHAIN_NETWORK?: string | undefined; | ||
SETTLEMINT_BLOCKCHAIN_NODE?: string | undefined; | ||
SETTLEMINT_LOAD_BALANCER?: string | undefined; | ||
SETTLEMINT_HASURA?: string | undefined; | ||
SETTLEMINT_HASURA_ENDPOINT?: string | undefined; | ||
SETTLEMINT_HASURA_ADMIN_SECRET?: string | undefined; | ||
SETTLEMINT_HASURA_DATABASE_URL?: string | undefined; | ||
SETTLEMINT_THEGRAPH?: string | undefined; | ||
SETTLEMINT_THEGRAPH_SUBGRAPHS_ENDPOINTS?: unknown; | ||
SETTLEMINT_THEGRAPH_SUBGRAPH_NAME?: string | undefined; | ||
SETTLEMINT_PORTAL?: string | undefined; | ||
SETTLEMINT_PORTAL_GRAPHQL_ENDPOINT?: string | undefined; | ||
SETTLEMINT_PORTAL_REST_ENDPOINT?: string | undefined; | ||
SETTLEMINT_HD_PRIVATE_KEY?: string | undefined; | ||
SETTLEMINT_ACCESSIBLE_PRIVATE_KEY?: string | undefined; | ||
SETTLEMINT_MINIO?: string | undefined; | ||
SETTLEMINT_MINIO_ENDPOINT?: string | undefined; | ||
SETTLEMINT_MINIO_ACCESS_KEY?: string | undefined; | ||
SETTLEMINT_MINIO_SECRET_KEY?: string | undefined; | ||
SETTLEMINT_IPFS?: string | undefined; | ||
SETTLEMINT_IPFS_API_ENDPOINT?: string | undefined; | ||
SETTLEMINT_IPFS_PINNING_ENDPOINT?: string | undefined; | ||
SETTLEMINT_IPFS_GATEWAY_ENDPOINT?: string | undefined; | ||
SETTLEMINT_CUSTOM_DEPLOYMENT?: string | undefined; | ||
SETTLEMINT_CUSTOM_DEPLOYMENT_ENDPOINT?: string | undefined; | ||
SETTLEMINT_BLOCKSCOUT?: string | undefined; | ||
SETTLEMINT_BLOCKSCOUT_GRAPHQL_ENDPOINT?: string | undefined; | ||
SETTLEMINT_BLOCKSCOUT_UI_ENDPOINT?: string | undefined; | ||
SETTLEMINT_NEW_PROJECT_NAME?: string | undefined; | ||
SETTLEMINT_SMART_CONTRACT_ADDRESS?: string | undefined; | ||
SETTLEMINT_SMART_CONTRACT_DEPLOYMENT_ID?: string | undefined; | ||
}>; | ||
/** | ||
* Type definition for the partial environment variables schema. | ||
*/ | ||
type DotEnvPartial = z.infer<typeof DotEnvSchemaPartial>; | ||
/** | ||
* Schema for validating database IDs. Accepts both PostgreSQL UUIDs and MongoDB ObjectIDs. | ||
* PostgreSQL UUIDs are 32 hexadecimal characters with hyphens (e.g. 123e4567-e89b-12d3-a456-426614174000). | ||
* MongoDB ObjectIDs are 24 hexadecimal characters (e.g. 507f1f77bcf86cd799439011). | ||
* | ||
* @example | ||
* import { IdSchema } from "@settlemint/sdk-utils"; | ||
* | ||
* // Validate PostgreSQL UUID | ||
* const isValidUuid = IdSchema.safeParse("123e4567-e89b-12d3-a456-426614174000").success; | ||
* | ||
* // Validate MongoDB ObjectID | ||
* const isValidObjectId = IdSchema.safeParse("507f1f77bcf86cd799439011").success; | ||
*/ | ||
declare const IdSchema: z.ZodUnion<[z.ZodString, z.ZodString]>; | ||
/** | ||
* Type definition for database IDs, inferred from IdSchema. | ||
* Can be either a PostgreSQL UUID string or MongoDB ObjectID string. | ||
*/ | ||
type Id = z.infer<typeof IdSchema>; | ||
/** | ||
* Schema for validating unique names used across the SettleMint platform. | ||
* Only accepts lowercase alphanumeric characters and hyphens. | ||
* Used for workspace names, application names, service names etc. | ||
* | ||
* @example | ||
* import { UniqueNameSchema } from "@settlemint/sdk-utils"; | ||
* | ||
* // Validate a workspace name | ||
* const isValidName = UniqueNameSchema.safeParse("my-workspace-123").success; | ||
* // true | ||
* | ||
* // Invalid names will fail validation | ||
* const isInvalidName = UniqueNameSchema.safeParse("My Workspace!").success; | ||
* // false | ||
*/ | ||
declare const UniqueNameSchema: z.ZodString; | ||
/** | ||
* Schema for validating URLs. | ||
* | ||
* @example | ||
* import { UrlSchema } from "@settlemint/sdk-utils"; | ||
* | ||
* // Validate a URL | ||
* const isValidUrl = UrlSchema.safeParse("https://console.settlemint.com").success; | ||
* // true | ||
* | ||
* // Invalid URLs will fail validation | ||
* const isInvalidUrl = UrlSchema.safeParse("not-a-url").success; | ||
* // false | ||
*/ | ||
declare const UrlSchema: z.ZodString; | ||
type Url = z.infer<typeof UrlSchema>; | ||
/** | ||
* Schema for validating URL paths. | ||
* | ||
* @example | ||
* import { UrlPathSchema } from "@settlemint/sdk-utils"; | ||
* | ||
* // Validate a URL path | ||
* const isValidPath = UrlPathSchema.safeParse("/api/v1/users").success; | ||
* // true | ||
* | ||
* // Invalid paths will fail validation | ||
* const isInvalidPath = UrlPathSchema.safeParse("not-a-path").success; | ||
* // false | ||
*/ | ||
declare const UrlPathSchema: z.ZodString; | ||
type UrlPath = z.infer<typeof UrlPathSchema>; | ||
/** | ||
* Schema that accepts either a full URL or a URL path. | ||
* | ||
* @example | ||
* import { UrlOrPathSchema } from "@settlemint/sdk-utils"; | ||
* | ||
* // Validate a URL | ||
* const isValidUrl = UrlOrPathSchema.safeParse("https://console.settlemint.com").success; | ||
* // true | ||
* | ||
* // Validate a path | ||
* const isValidPath = UrlOrPathSchema.safeParse("/api/v1/users").success; | ||
* // true | ||
*/ | ||
declare const UrlOrPathSchema: z.ZodUnion<[z.ZodString, z.ZodString]>; | ||
type UrlOrPath = z.infer<typeof UrlOrPathSchema>; | ||
/** | ||
* Validates a value against a given Zod schema. | ||
* | ||
* @param schema - The Zod schema to validate against. | ||
* @param value - The value to validate. | ||
* @returns The validated and parsed value. | ||
* @throws Will throw an error if validation fails, with formatted error messages. | ||
* | ||
* @example | ||
* const validatedId = validate(IdSchema, "550e8400-e29b-41d4-a716-446655440000"); | ||
*/ | ||
declare function validate<T extends ZodSchema>(schema: T, value: unknown): T["_output"]; | ||
/** | ||
* Loads environment variables from .env files. | ||
* To enable encryption with dotenvx (https://www.dotenvx.com/docs) run `bunx dotenvx encrypt` | ||
* | ||
* @param validateEnv - Whether to validate the environment variables against the schema | ||
* @param prod - Whether to load production environment variables | ||
* @param path - Optional path to the directory containing .env files. Defaults to process.cwd() | ||
* @returns A promise that resolves to the validated environment variables | ||
* @throws Will throw an error if validation fails and validateEnv is true | ||
* @example | ||
* import { loadEnv } from '@settlemint/sdk-utils'; | ||
* | ||
* // Load and validate environment variables | ||
* const env = await loadEnv(true, false); | ||
* console.log(env.SETTLEMINT_INSTANCE); | ||
* | ||
* // Load without validation | ||
* const rawEnv = await loadEnv(false, false); | ||
*/ | ||
declare function loadEnv<T extends boolean = true>(validateEnv: T, prod: boolean, path?: string): Promise<T extends true ? DotEnv : DotEnvPartial>; | ||
/** | ||
* Writes environment variables to .env files across a project or monorepo | ||
* | ||
* @param prod - Whether to write production environment variables | ||
* @param env - The environment variables to write | ||
* @param secrets - Whether to write to .env.local files for secrets | ||
* @returns Promise that resolves when writing is complete | ||
* @throws Will throw an error if writing fails | ||
* @example | ||
* import { writeEnv } from '@settlemint/sdk-utils'; | ||
* | ||
* // Write development environment variables | ||
* await writeEnv(false, { | ||
* SETTLEMINT_INSTANCE: 'https://dev.example.com' | ||
* }, false); | ||
* | ||
* // Write production secrets | ||
* await writeEnv(true, { | ||
* SETTLEMINT_ACCESS_TOKEN: 'secret-token' | ||
* }, true); | ||
*/ | ||
declare function writeEnv(prod: boolean, env: Partial<DotEnv>, secrets: boolean): Promise<void>; | ||
/** | ||
* Finds the root directory of the current project by locating the nearest package.json file | ||
* | ||
* @returns Promise that resolves to the absolute path of the project root directory | ||
* @throws Will throw an error if no package.json is found in the directory tree | ||
* @example | ||
* import { projectRoot } from "@settlemint/sdk-utils"; | ||
* | ||
* // Get project root path | ||
* const rootDir = await projectRoot(); | ||
* console.log(`Project root is at: ${rootDir}`); | ||
*/ | ||
declare function projectRoot(fallbackToCwd?: boolean): Promise<string>; | ||
/** | ||
* Checks if a file or directory exists at the given path | ||
* | ||
* @param path - The file system path to check for existence | ||
* @returns Promise that resolves to true if the path exists, false otherwise | ||
* @example | ||
* import { exists } from "@settlemint/sdk-utils"; | ||
* | ||
* // Check if file exists before reading | ||
* if (await exists('/path/to/file.txt')) { | ||
* // File exists, safe to read | ||
* } | ||
*/ | ||
declare function exists(path: PathLike): Promise<boolean>; | ||
/** | ||
* 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 | ||
* @example | ||
* import { findMonoRepoRoot } from "@settlemint/sdk-utils"; | ||
* | ||
* const root = await findMonoRepoRoot("/path/to/your/project"); | ||
* console.log(root); // Output: /path/to/your/project/packages/core | ||
*/ | ||
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 | ||
* @example | ||
* import { findMonoRepoPackages } from "@settlemint/sdk-utils"; | ||
* | ||
* const packages = await findMonoRepoPackages("/path/to/your/project"); | ||
* console.log(packages); // Output: ["/path/to/your/project/packages/core", "/path/to/your/project/packages/ui"] | ||
*/ | ||
declare function findMonoRepoPackages(projectDir: string): Promise<string[]>; | ||
/** | ||
* 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 | ||
* @example | ||
* import { fetchWithRetry } from "@settlemint/sdk-utils"; | ||
* | ||
* const response = await fetchWithRetry("https://api.example.com/data"); | ||
*/ | ||
declare function fetchWithRetry(input: RequestInfo | URL, init?: RequestInit, maxRetries?: number, initialSleepTime?: number): Promise<Response>; | ||
/** | ||
* Executes a GraphQL request with automatic retries using exponential backoff and jitter. | ||
* Only retries on server errors (5xx), rate limits (429), timeouts (408), and network errors. | ||
* Will also retry if the GraphQL response contains errors. | ||
* | ||
* @param input - The URL or Request object for the GraphQL endpoint | ||
* @param init - Optional fetch configuration options | ||
* @param maxRetries - Maximum retry attempts before failing (default: 5) | ||
* @param initialSleepTime - Initial delay between retries in milliseconds (default: 3000) | ||
* @returns The parsed GraphQL response data | ||
* @throws Error if all retries fail or if GraphQL response contains errors | ||
* @example | ||
* import { graphqlFetchWithRetry } from "@settlemint/sdk-utils"; | ||
* | ||
* const data = await graphqlFetchWithRetry<{ user: { id: string } }>( | ||
* "https://api.example.com/graphql", | ||
* { | ||
* method: "POST", | ||
* headers: { "Content-Type": "application/json" }, | ||
* body: JSON.stringify({ | ||
* query: `query GetUser($id: ID!) { | ||
* user(id: $id) { | ||
* id | ||
* } | ||
* }`, | ||
* variables: { id: "123" } | ||
* }) | ||
* } | ||
* ); | ||
*/ | ||
declare function graphqlFetchWithRetry<Data>(input: RequestInfo | URL, init?: RequestInit, maxRetries?: number, initialSleepTime?: number): Promise<Data>; | ||
/** | ||
* Attempts to parse a JSON string into a typed value, returning a default value if parsing fails. | ||
@@ -577,116 +26,2 @@ * | ||
/** | ||
* Available templates for project creation | ||
*/ | ||
type Template = { | ||
value: string; | ||
label: string; | ||
}; | ||
declare const templates: Template[]; | ||
/** | ||
* Formats a directory path by removing trailing slashes and whitespace | ||
* | ||
* @param targetDir - The directory path to format | ||
* @returns The formatted directory path | ||
* @example | ||
* import { formatTargetDir } from "@settlemint/sdk-utils"; | ||
* | ||
* const formatted = formatTargetDir("/path/to/dir/ "); // "/path/to/dir" | ||
*/ | ||
declare function formatTargetDir(targetDir: string): string; | ||
/** | ||
* Checks if a directory is empty or contains only a .git folder | ||
* | ||
* @param path - The directory path to check | ||
* @returns True if directory is empty or contains only .git, false otherwise | ||
* @example | ||
* import { isEmpty } from "@settlemint/sdk-utils"; | ||
* | ||
* if (await isEmpty("/path/to/dir")) { | ||
* // Directory is empty | ||
* } | ||
*/ | ||
declare function isEmpty(path: string): Promise<boolean>; | ||
/** | ||
* Removes all contents of a directory except the .git folder | ||
* | ||
* @param dir - The directory path to empty | ||
* @example | ||
* import { emptyDir } from "@settlemint/sdk-utils"; | ||
* | ||
* await emptyDir("/path/to/dir"); // Removes all contents except .git | ||
*/ | ||
declare function emptyDir(dir: string): Promise<void>; | ||
/** | ||
* Detects the package manager used in the current project | ||
* | ||
* @param targetDir - The directory to check for package manager (optional, defaults to process.cwd()) | ||
* @returns The name of the package manager | ||
* @example | ||
* import { getPackageManager } from "@settlemint/sdk-utils"; | ||
* | ||
* const packageManager = await getPackageManager(); | ||
* console.log(`Using ${packageManager}`); | ||
*/ | ||
declare function getPackageManager(targetDir?: string): Promise<AgentName>; | ||
/** | ||
* Retrieves the executable command and arguments for the package manager | ||
* | ||
* @param targetDir - The directory to check for package manager (optional, defaults to process.cwd()) | ||
* @returns An object containing the command and arguments for the package manager | ||
* @example | ||
* import { getPackageManagerExecutable } from "@settlemint/sdk-utils"; | ||
* | ||
* const { command, args } = await getPackageManagerExecutable(); | ||
* console.log(`Using ${command} with args: ${args.join(" ")}`); | ||
*/ | ||
declare function getPackageManagerExecutable(targetDir?: string): Promise<{ | ||
command: string; | ||
args: string[]; | ||
}>; | ||
/** | ||
* Installs one or more packages as dependencies using the detected package manager | ||
* | ||
* @param pkgs - A single package name or array of package names to install | ||
* @param cwd - The directory to run the installation in | ||
* @returns A promise that resolves when installation is complete | ||
* @throws If package installation fails | ||
* @example | ||
* import { installDependencies } from "@settlemint/sdk-utils"; | ||
* | ||
* // Install a single package | ||
* await installDependencies("express"); | ||
* | ||
* // Install multiple packages | ||
* await installDependencies(["express", "cors"]); | ||
*/ | ||
declare function installDependencies(pkgs: string | string[], cwd?: string): Promise<void>; | ||
/** | ||
* Checks if a package is installed in the project's dependencies, devDependencies, or peerDependencies. | ||
* | ||
* @param name - The name of the package to check | ||
* @param path - The path to the project root directory. If not provided, will be automatically determined | ||
* @returns Whether the package is installed | ||
* @throws If unable to read or parse the package.json file | ||
*/ | ||
declare function isPackageInstalled(name: string, path?: string): Promise<boolean>; | ||
/** | ||
* Sets the name field in the package.json file | ||
* | ||
* @param name - The new name to set in the package.json file | ||
* @param path - The path to the project root directory. If not provided, will be automatically determined | ||
* @returns A promise that resolves when the package.json has been updated | ||
* @throws If unable to read, update or save the package.json file | ||
* @example | ||
* import { setName } from "@settlemint/sdk-utils"; | ||
* | ||
* await setName("my-new-project-name"); | ||
*/ | ||
declare function setName(name: string, path?: string): Promise<void>; | ||
/** | ||
* Retry a function when it fails. | ||
@@ -707,33 +42,2 @@ * @param fn - The function to retry. | ||
/** | ||
* Ensures that code is running on the server and not in a browser environment. | ||
* | ||
* @throws {Error} If called from a browser environment | ||
* @example | ||
* import { ensureServer } from "@settlemint/sdk-utils"; | ||
* | ||
* // Will throw if running in browser | ||
* ensureServer(); | ||
*/ | ||
declare function ensureServer(): void; | ||
/** | ||
* Ensures that code is running in a browser environment and not on the server. | ||
* | ||
* @throws {Error} If called from a server environment | ||
* @example | ||
* import { ensureBrowser } from "@settlemint/sdk-utils"; | ||
* | ||
* // Will throw if running on server | ||
* ensureBrowser(); | ||
*/ | ||
declare function ensureBrowser(): void; | ||
/** | ||
* Boolean indicating if code is currently running in a browser environment | ||
*/ | ||
declare const runsInBrowser: boolean; | ||
/** | ||
* Boolean indicating if code is currently running in a server environment | ||
*/ | ||
declare const runsOnServer: boolean; | ||
/** | ||
* Capitalizes the first letter of a string. | ||
@@ -752,149 +56,2 @@ * | ||
/** | ||
* Prints the SettleMint ASCII art logo to the console in magenta color. | ||
* Used for CLI branding and visual identification. | ||
* | ||
* @example | ||
* import { ascii } from "@settlemint/sdk-utils"; | ||
* | ||
* // Prints the SettleMint logo | ||
* ascii(); | ||
*/ | ||
declare const ascii: () => void; | ||
/** | ||
* Displays an error message in red inverse text and exits the process. | ||
* Used to terminate execution with a visible error message. | ||
* Any sensitive tokens in the message are masked before display. | ||
* | ||
* @param msg - The error message to display | ||
* @returns never - Function does not return as it exits the process | ||
* @example | ||
* import { cancel } from "@settlemint/sdk-utils"; | ||
* | ||
* // Exits process with error message | ||
* cancel("An error occurred"); | ||
*/ | ||
declare const cancel: (msg: string) => never; | ||
/** | ||
* Options for executing a command, extending SpawnOptionsWithoutStdio | ||
*/ | ||
interface ExecuteCommandOptions extends SpawnOptionsWithoutStdio { | ||
/** Whether to suppress output to stdout/stderr */ | ||
silent?: boolean; | ||
} | ||
/** | ||
* Executes a command with the given arguments in a child process. | ||
* Pipes stdin to the child process and captures stdout/stderr output. | ||
* Masks any sensitive tokens in the output before displaying or returning. | ||
* | ||
* @param command - The command to execute | ||
* @param args - Array of arguments to pass to the command | ||
* @param options - Options for customizing command execution | ||
* @returns Array of output strings from stdout and stderr | ||
* @throws {Error} If the process fails to start or exits with non-zero code | ||
* @example | ||
* import { executeCommand } from "@settlemint/sdk-utils"; | ||
* | ||
* // Execute git clone | ||
* await executeCommand("git", ["clone", "repo-url"]); | ||
* | ||
* // Execute silently | ||
* await executeCommand("npm", ["install"], { silent: true }); | ||
*/ | ||
declare function executeCommand(command: string, args: string[], options?: ExecuteCommandOptions): Promise<string[]>; | ||
/** | ||
* Masks sensitive SettleMint tokens in output text by replacing them with asterisks. | ||
* Handles personal access tokens (PAT), application access tokens (AAT), and service account tokens (SAT). | ||
* | ||
* @param output - The text string that may contain sensitive tokens | ||
* @returns The text with any sensitive tokens masked with asterisks | ||
* @example | ||
* import { maskTokens } from "@settlemint/sdk-utils"; | ||
* | ||
* // Masks a token in text | ||
* const masked = maskTokens("Token: sm_pat_****"); // "Token: ***" | ||
*/ | ||
declare const maskTokens: (output: string) => string; | ||
/** | ||
* Displays an introductory message in magenta text with padding. | ||
* Any sensitive tokens in the message are masked before display. | ||
* | ||
* @param msg - The message to display as introduction | ||
* @example | ||
* import { intro } from "@settlemint/sdk-utils"; | ||
* | ||
* // Display intro message | ||
* intro("Starting deployment..."); | ||
*/ | ||
declare const intro: (msg: string) => void; | ||
/** | ||
* Displays a note message with optional warning level formatting. | ||
* Regular notes are displayed in normal text, while warnings are shown in yellow. | ||
* Any sensitive tokens in the message are masked before display. | ||
* | ||
* @param message - The message to display as a note | ||
* @param level - The note level: "info" (default) or "warn" for warning styling | ||
* @example | ||
* import { note } from "@settlemint/sdk-utils"; | ||
* | ||
* // Display info note | ||
* note("Operation completed successfully"); | ||
* | ||
* // Display warning note | ||
* note("Low disk space remaining", "warn"); | ||
*/ | ||
declare const note: (message: string, level?: "info" | "warn") => void; | ||
/** | ||
* Displays a closing message in green inverted text with padding. | ||
* Any sensitive tokens in the message are masked before display. | ||
* | ||
* @param msg - The message to display as conclusion | ||
* @example | ||
* import { outro } from "@settlemint/sdk-utils"; | ||
* | ||
* // Display outro message | ||
* outro("Deployment completed successfully!"); | ||
*/ | ||
declare const outro: (msg: string) => void; | ||
/** | ||
* Options for configuring the spinner behavior | ||
*/ | ||
interface SpinnerOptions<R> { | ||
/** Message to display when spinner starts */ | ||
startMessage: string; | ||
/** Async task to execute while spinner is active */ | ||
task: (spinner?: Spinner) => Promise<R>; | ||
/** Message to display when spinner completes successfully */ | ||
stopMessage: string; | ||
} | ||
/** | ||
* Displays a loading spinner while executing an async task. | ||
* Shows progress with start/stop messages and handles errors. | ||
* Spinner is disabled in CI environments. | ||
* | ||
* @param options - Configuration options for the spinner | ||
* @returns The result from the executed task | ||
* @throws Will exit process with code 1 if task fails | ||
* @example | ||
* import { spinner } from "@settlemint/sdk-utils"; | ||
* | ||
* // Show spinner during async task | ||
* const result = await spinner({ | ||
* startMessage: "Deploying...", | ||
* task: async () => { | ||
* // Async work here | ||
* return "success"; | ||
* }, | ||
* stopMessage: "Deployed successfully!" | ||
* }); | ||
*/ | ||
declare const spinner: <R>(options: SpinnerOptions<R>) => Promise<R>; | ||
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, graphqlFetchWithRetry, installDependencies, intro, isEmpty, isPackageInstalled, loadEnv, maskTokens, note, outro, projectRoot, retryWhenFailed, runsInBrowser, runsOnServer, setName, spinner, templates, tryParseJson, validate, writeEnv }; | ||
export { capitalizeFirstLetter, retryWhenFailed, tryParseJson }; |
@@ -17,3 +17,3 @@ import { AgentName } from 'package-manager-detector'; | ||
* @example | ||
* import { formatTargetDir } from "@settlemint/sdk-utils"; | ||
* import { formatTargetDir } from "@settlemint/sdk-utils/package-manager"; | ||
* | ||
@@ -29,3 +29,3 @@ * const formatted = formatTargetDir("/path/to/dir/ "); // "/path/to/dir" | ||
* @example | ||
* import { isEmpty } from "@settlemint/sdk-utils"; | ||
* import { isEmpty } from "@settlemint/sdk-utils/package-manager"; | ||
* | ||
@@ -42,3 +42,3 @@ * if (await isEmpty("/path/to/dir")) { | ||
* @example | ||
* import { emptyDir } from "@settlemint/sdk-utils"; | ||
* import { emptyDir } from "@settlemint/sdk-utils/package-manager"; | ||
* | ||
@@ -55,3 +55,3 @@ * await emptyDir("/path/to/dir"); // Removes all contents except .git | ||
* @example | ||
* import { getPackageManager } from "@settlemint/sdk-utils"; | ||
* import { getPackageManager } from "@settlemint/sdk-utils/package-manager"; | ||
* | ||
@@ -69,3 +69,3 @@ * const packageManager = await getPackageManager(); | ||
* @example | ||
* import { getPackageManagerExecutable } from "@settlemint/sdk-utils"; | ||
* import { getPackageManagerExecutable } from "@settlemint/sdk-utils/package-manager"; | ||
* | ||
@@ -88,3 +88,3 @@ * const { command, args } = await getPackageManagerExecutable(); | ||
* @example | ||
* import { installDependencies } from "@settlemint/sdk-utils"; | ||
* import { installDependencies } from "@settlemint/sdk-utils/package-manager"; | ||
* | ||
@@ -106,2 +106,7 @@ * // Install a single package | ||
* @throws If unable to read or parse the package.json file | ||
* @example | ||
* import { isPackageInstalled } from "@settlemint/sdk-utils/package-manager"; | ||
* | ||
* const isInstalled = await isPackageInstalled("@settlemint/sdk-utils"); | ||
* console.log(`@settlemint/sdk-utils is installed: ${isInstalled}`); | ||
*/ | ||
@@ -118,3 +123,3 @@ declare function isPackageInstalled(name: string, path?: string): Promise<boolean>; | ||
* @example | ||
* import { setName } from "@settlemint/sdk-utils"; | ||
* import { setName } from "@settlemint/sdk-utils/package-manager"; | ||
* | ||
@@ -121,0 +126,0 @@ * await setName("my-new-project-name"); |
@@ -6,3 +6,3 @@ /** | ||
* @example | ||
* import { ensureServer } from "@settlemint/sdk-utils"; | ||
* import { ensureServer } from "@settlemint/sdk-utils/runtime"; | ||
* | ||
@@ -18,3 +18,3 @@ * // Will throw if running in browser | ||
* @example | ||
* import { ensureBrowser } from "@settlemint/sdk-utils"; | ||
* import { ensureBrowser } from "@settlemint/sdk-utils/runtime"; | ||
* | ||
@@ -21,0 +21,0 @@ * // Will throw if running on server |
@@ -9,3 +9,3 @@ import { SpawnOptionsWithoutStdio } from 'node:child_process'; | ||
* @example | ||
* import { ascii } from "@settlemint/sdk-utils"; | ||
* import { ascii } from "@settlemint/sdk-utils/terminal"; | ||
* | ||
@@ -25,3 +25,3 @@ * // Prints the SettleMint logo | ||
* @example | ||
* import { cancel } from "@settlemint/sdk-utils"; | ||
* import { cancel } from "@settlemint/sdk-utils/terminal"; | ||
* | ||
@@ -51,3 +51,3 @@ * // Exits process with error message | ||
* @example | ||
* import { executeCommand } from "@settlemint/sdk-utils"; | ||
* import { executeCommand } from "@settlemint/sdk-utils/terminal"; | ||
* | ||
@@ -69,3 +69,3 @@ * // Execute git clone | ||
* @example | ||
* import { maskTokens } from "@settlemint/sdk-utils"; | ||
* import { maskTokens } from "@settlemint/sdk-utils/terminal"; | ||
* | ||
@@ -83,3 +83,3 @@ * // Masks a token in text | ||
* @example | ||
* import { intro } from "@settlemint/sdk-utils"; | ||
* import { intro } from "@settlemint/sdk-utils/terminal"; | ||
* | ||
@@ -99,3 +99,3 @@ * // Display intro message | ||
* @example | ||
* import { note } from "@settlemint/sdk-utils"; | ||
* import { note } from "@settlemint/sdk-utils/terminal"; | ||
* | ||
@@ -116,3 +116,3 @@ * // Display info note | ||
* @example | ||
* import { outro } from "@settlemint/sdk-utils"; | ||
* import { outro } from "@settlemint/sdk-utils/terminal"; | ||
* | ||
@@ -144,3 +144,3 @@ * // Display outro message | ||
* @example | ||
* import { spinner } from "@settlemint/sdk-utils"; | ||
* import { spinner } from "@settlemint/sdk-utils/terminal"; | ||
* | ||
@@ -147,0 +147,0 @@ * // Show spinner during async task |
@@ -1,4 +0,19 @@ | ||
import { ZodString, z, ZodSchema } from 'zod'; | ||
import { ZodSchema, ZodString, z } from 'zod'; | ||
/** | ||
* Validates a value against a given Zod schema. | ||
* | ||
* @param schema - The Zod schema to validate against. | ||
* @param value - The value to validate. | ||
* @returns The validated and parsed value. | ||
* @throws Will throw an error if validation fails, with formatted error messages. | ||
* | ||
* @example | ||
* import { validate } from "@settlemint/sdk-utils/validation"; | ||
* | ||
* const validatedId = validate(IdSchema, "550e8400-e29b-41d4-a716-446655440000"); | ||
*/ | ||
declare function validate<T extends ZodSchema>(schema: T, value: unknown): T["_output"]; | ||
/** | ||
* Schema for validating application access tokens. | ||
@@ -306,3 +321,3 @@ * Application access tokens start with 'sm_aat_' prefix. | ||
* @example | ||
* import { IdSchema } from "@settlemint/sdk-utils"; | ||
* import { IdSchema } from "@settlemint/sdk-utils/validation"; | ||
* | ||
@@ -328,3 +343,3 @@ * // Validate PostgreSQL UUID | ||
* @example | ||
* import { UniqueNameSchema } from "@settlemint/sdk-utils"; | ||
* import { UniqueNameSchema } from "@settlemint/sdk-utils/validation"; | ||
* | ||
@@ -345,3 +360,3 @@ * // Validate a workspace name | ||
* @example | ||
* import { UrlSchema } from "@settlemint/sdk-utils"; | ||
* import { UrlSchema } from "@settlemint/sdk-utils/validation"; | ||
* | ||
@@ -362,3 +377,3 @@ * // Validate a URL | ||
* @example | ||
* import { UrlPathSchema } from "@settlemint/sdk-utils"; | ||
* import { UrlPathSchema } from "@settlemint/sdk-utils/validation"; | ||
* | ||
@@ -379,3 +394,3 @@ * // Validate a URL path | ||
* @example | ||
* import { UrlOrPathSchema } from "@settlemint/sdk-utils"; | ||
* import { UrlOrPathSchema } from "@settlemint/sdk-utils/validation"; | ||
* | ||
@@ -393,15 +408,2 @@ * // Validate a URL | ||
/** | ||
* Validates a value against a given Zod schema. | ||
* | ||
* @param schema - The Zod schema to validate against. | ||
* @param value - The value to validate. | ||
* @returns The validated and parsed value. | ||
* @throws Will throw an error if validation fails, with formatted error messages. | ||
* | ||
* @example | ||
* const validatedId = validate(IdSchema, "550e8400-e29b-41d4-a716-446655440000"); | ||
*/ | ||
declare function validate<T extends ZodSchema>(schema: T, value: unknown): T["_output"]; | ||
export { type AccessToken, AccessTokenSchema, type ApplicationAccessToken, ApplicationAccessTokenSchema, type DotEnv, type DotEnvPartial, DotEnvSchema, DotEnvSchemaPartial, type Id, IdSchema, type PersonalAccessToken, PersonalAccessTokenSchema, UniqueNameSchema, type Url, type UrlOrPath, UrlOrPathSchema, type UrlPath, UrlPathSchema, UrlSchema, validate }; |
{ | ||
"name": "@settlemint/sdk-utils", | ||
"description": "Shared utilities and helper functions for SettleMint SDK modules", | ||
"version": "1.0.4", | ||
"version": "1.0.5", | ||
"type": "module", | ||
@@ -60,3 +60,3 @@ "private": false, | ||
"prepack": "cp ../../LICENSE .", | ||
"docs": "typedoc --options '../../typedoc.config.mjs' --entryPoints src/index.ts --out ./docs" | ||
"docs": "typedoc --options '../../typedoc.config.mjs' --entryPoints src/index.ts src/environment.ts src/filesystem.ts src/http.ts src/package-manager.ts src/terminal.ts src/runtime.ts src/validation.ts --out ./docs" | ||
}, | ||
@@ -63,0 +63,0 @@ "devDependencies": { |
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
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 too big to display
51
13.33%1649
0.67%16
-42.86%5
-16.67%474887
-29.25%3321
-34.65%