@gearbox-protocol/deploy-tools 4.54.0 → 4.55.1
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/index.mjs +4 -1
- package/package.json +1 -1
package/dist/index.mjs
CHANGED
|
@@ -221691,6 +221691,9 @@ var ScriptTemplate = z.object({
|
|
|
221691
221691
|
// replace array object with undefined
|
|
221692
221692
|
});
|
|
221693
221693
|
var ForkTemplate = z.object({
|
|
221694
|
+
alias: z.string().regex(/^[0-9a-zA-Z\-_]{3,}$/, {
|
|
221695
|
+
message: "alias must contain letters, numbers, dashes and underscores, and must contain minimum 3 symbols"
|
|
221696
|
+
}).nullish(),
|
|
221694
221697
|
description: z.string(),
|
|
221695
221698
|
/**
|
|
221696
221699
|
* GIP id
|
|
@@ -300184,7 +300187,7 @@ function getRenderer(opts) {
|
|
|
300184
300187
|
}
|
|
300185
300188
|
|
|
300186
300189
|
// package.json
|
|
300187
|
-
var version2 = "4.
|
|
300190
|
+
var version2 = "4.55.1";
|
|
300188
300191
|
|
|
300189
300192
|
// src/version.ts
|
|
300190
300193
|
var version_default = version2;
|