@settlemint/sdk-cli 2.2.2-pr9d852cc3 → 2.2.2-prb5500d27
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/cli.js +9 -8
- package/dist/cli.js.map +3 -3
- package/package.json +3 -3
package/dist/cli.js
CHANGED
@@ -236269,13 +236269,14 @@ var base64urlRegex = /^([0-9a-zA-Z-_]{4})*(([0-9a-zA-Z-_]{2}(==)?)|([0-9a-zA-Z-_
|
|
236269
236269
|
var dateRegexSource = `((\\d\\d[2468][048]|\\d\\d[13579][26]|\\d\\d0[48]|[02468][048]00|[13579][26]00)-02-29|\\d{4}-((0[13578]|1[02])-(0[1-9]|[12]\\d|3[01])|(0[469]|11)-(0[1-9]|[12]\\d|30)|(02)-(0[1-9]|1\\d|2[0-8])))`;
|
236270
236270
|
var dateRegex = new RegExp(`^${dateRegexSource}$`);
|
236271
236271
|
function timeRegexSource(args) {
|
236272
|
-
let
|
236272
|
+
let secondsRegexSource = `[0-5]\\d`;
|
236273
236273
|
if (args.precision) {
|
236274
|
-
|
236274
|
+
secondsRegexSource = `${secondsRegexSource}\\.\\d{${args.precision}}`;
|
236275
236275
|
} else if (args.precision == null) {
|
236276
|
-
|
236276
|
+
secondsRegexSource = `${secondsRegexSource}(\\.\\d+)?`;
|
236277
236277
|
}
|
236278
|
-
|
236278
|
+
const secondsQuantifier = args.precision ? "+" : "?";
|
236279
|
+
return `([01]\\d|2[0-3]):[0-5]\\d(:${secondsRegexSource})${secondsQuantifier}`;
|
236279
236280
|
}
|
236280
236281
|
function timeRegex(args) {
|
236281
236282
|
return new RegExp(`^${timeRegexSource(args)}$`);
|
@@ -245445,7 +245446,7 @@ function pruneCurrentEnv(currentEnv, env2) {
|
|
245445
245446
|
var package_default = {
|
245446
245447
|
name: "@settlemint/sdk-cli",
|
245447
245448
|
description: "Command-line interface for SettleMint SDK, providing development tools and project management capabilities",
|
245448
|
-
version: "2.2.2-
|
245449
|
+
version: "2.2.2-prb5500d27",
|
245449
245450
|
type: "module",
|
245450
245451
|
private: false,
|
245451
245452
|
license: "FSL-1.1-MIT",
|
@@ -245494,8 +245495,8 @@ var package_default = {
|
|
245494
245495
|
"@inquirer/input": "4.1.9",
|
245495
245496
|
"@inquirer/password": "4.0.12",
|
245496
245497
|
"@inquirer/select": "4.2.0",
|
245497
|
-
"@settlemint/sdk-js": "2.2.2-
|
245498
|
-
"@settlemint/sdk-utils": "2.2.2-
|
245498
|
+
"@settlemint/sdk-js": "2.2.2-prb5500d27",
|
245499
|
+
"@settlemint/sdk-utils": "2.2.2-prb5500d27",
|
245499
245500
|
"@types/node": "22.15.3",
|
245500
245501
|
"@types/semver": "7.7.0",
|
245501
245502
|
"@types/which": "3.0.4",
|
@@ -260806,4 +260807,4 @@ async function sdkCliCommand(argv = process.argv) {
|
|
260806
260807
|
// src/cli.ts
|
260807
260808
|
sdkCliCommand();
|
260808
260809
|
|
260809
|
-
//# debugId=
|
260810
|
+
//# debugId=90EAFE0F034BC64164756E2164756E21
|