@eduzz/miau-client 0.0.21 → 0.0.22
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/.turbo/turbo-build$colon$types.log +1 -1
- package/dist/index.js +10 -3
- package/dist/index.js.map +2 -2
- package/dist/miau-types/index.js +10 -3
- package/dist/miau-types/index.js.map +2 -2
- package/dist/miau-types/types/Environments.d.ts +8 -3
- package/dist/miau-types/types/Environments.d.ts.map +1 -1
- package/package.json +2 -3
- package/scripts/prepare-publish.sh +2 -0
- package/scripts/should-release.sh +28 -0
- package/.turbo/turbo-prepublish.log +0 -4
package/dist/index.js
CHANGED
|
@@ -11719,6 +11719,7 @@ __export(index_exports, {
|
|
|
11719
11719
|
SecretEnvValues: () => SecretEnvValues,
|
|
11720
11720
|
UserPermissions: () => UserPermissions,
|
|
11721
11721
|
envMap: () => envMap,
|
|
11722
|
+
envs: () => envs,
|
|
11722
11723
|
expirationOptions: () => expirationOptions,
|
|
11723
11724
|
expirationOptionsValues: () => expirationOptionsValues,
|
|
11724
11725
|
expirationTimeToDate: () => expirationTimeToDate,
|
|
@@ -11833,10 +11834,15 @@ var expirationTimeToDate = (option) => {
|
|
|
11833
11834
|
};
|
|
11834
11835
|
|
|
11835
11836
|
// ../types/src/types/Environments.ts
|
|
11837
|
+
var envs = {
|
|
11838
|
+
development: "Development",
|
|
11839
|
+
test: "Testing",
|
|
11840
|
+
production: "Production"
|
|
11841
|
+
};
|
|
11836
11842
|
var networks = {
|
|
11837
|
-
development: "
|
|
11838
|
-
test: "
|
|
11839
|
-
production: "
|
|
11843
|
+
development: "127.0.0.0/8",
|
|
11844
|
+
test: "127.0.0.0/8",
|
|
11845
|
+
production: "127.0.0.0/8"
|
|
11840
11846
|
};
|
|
11841
11847
|
var SecretEnvValues = ["development", "test", "production"];
|
|
11842
11848
|
var envMap = {
|
|
@@ -12041,6 +12047,7 @@ var MiauClient = class {
|
|
|
12041
12047
|
SecretEnvValues,
|
|
12042
12048
|
UserPermissions,
|
|
12043
12049
|
envMap,
|
|
12050
|
+
envs,
|
|
12044
12051
|
expirationOptions,
|
|
12045
12052
|
expirationOptionsValues,
|
|
12046
12053
|
expirationTimeToDate,
|