@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.
@@ -1,4 +1,4 @@
1
1
 
2
- > @eduzz/miau-client@0.0.21 build:types /home/runner/work/eduzz-miau/eduzz-miau/packages/client
2
+ > @eduzz/miau-client@0.0.22 build:types /home/runner/work/eduzz-miau/eduzz-miau/packages/client
3
3
  > tsc --emitDeclarationOnly --outDir dist
4
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: "10.11.0.0/16",
11838
- test: "10.201.0.0/16",
11839
- production: "10.150.0.0/16"
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,