@@ -55,6 +55,7 @@ declare global {
55
55
const authPath : typeof import ( './core/path/src/index' ) [ 'authPath' ]
56
56
const autoResetRef : typeof import ( './core/utils/src/vendors' ) [ 'autoResetRef' ]
57
57
const backendEnv : typeof import ( './core/validation/src/validate' ) [ 'backendEnv' ]
58
+ const backendEnvValidation : typeof import ( './core/validation/src/validate' ) [ 'backendEnvValidation' ]
58
59
const backendEnvValidations : typeof import ( './core/validation/src/validate' ) [ 'backendEnvValidations' ]
59
60
const base64Encode : typeof import ( './core/security/src/hash' ) [ 'base64Encode' ]
60
61
const base64Verify : typeof import ( './core/security/src/hash' ) [ 'base64Verify' ]
@@ -232,12 +233,14 @@ declare global {
232
233
const ensurePrefix : typeof import ( './core/strings/src/utils' ) [ 'ensurePrefix' ]
233
234
const ensureSuffix : typeof import ( './core/strings/src/utils' ) [ 'ensureSuffix' ]
234
235
const env : typeof import ( './core/validation/src/validate' ) [ 'env' ]
236
+ const envValidation : typeof import ( './core/validation/src/validate' ) [ 'envValidation' ]
235
237
const envValidations : typeof import ( './core/validation/src/validate' ) [ 'envValidations' ]
236
238
const equal : typeof import ( './core/utils/src/currency' ) [ 'equal' ]
237
239
const err : typeof import ( './core/error-handling/src/index' ) [ 'err' ]
238
240
const errAsync : typeof import ( './core/error-handling/src/index' ) [ 'errAsync' ]
239
241
const errorHandler : typeof import ( './core/error-handling/src/index' ) [ 'errorHandler' ]
240
242
const errorHandlingPath : typeof import ( './core/path/src/index' ) [ 'errorHandlingPath' ]
243
+ const errorMessageOptions : typeof import ( './core/validation/src/validate' ) [ 'errorMessageOptions' ]
241
244
const eslint : typeof import ( './core/lint/src/index' ) [ 'eslint' ]
242
245
const events : typeof import ( './core/events/src/index' ) [ 'events' ]
243
246
const eventsPath : typeof import ( './core/path/src/index' ) [ 'eventsPath' ]
@@ -264,6 +267,7 @@ declare global {
264
267
const fromSafePromise : typeof import ( './core/error-handling/src/index' ) [ 'fromSafePromise' ]
265
268
const fromThrowable : typeof import ( './core/error-handling/src/index' ) [ 'fromThrowable' ]
266
269
const frontendEnv : typeof import ( './core/validation/src/validate' ) [ 'frontendEnv' ]
270
+ const frontendEnvValidation : typeof import ( './core/validation/src/validate' ) [ 'frontendEnvValidation' ]
267
271
const frontendEnvValidations : typeof import ( './core/validation/src/validate' ) [ 'frontendEnvValidations' ]
268
272
const fs : typeof import ( './core/storage/src/index' ) [ 'fs' ]
269
273
const functionsPath : typeof import ( './core/path/src/index' ) [ 'functionsPath' ]
@@ -285,6 +289,7 @@ declare global {
285
289
const green : typeof import ( './core/cli/src/utilities' ) [ 'green' ]
286
290
const gupshup : typeof import ( './core/sms/src/index' ) [ 'gupshup' ]
287
291
const h : typeof import ( 'vue' ) [ 'h' ]
292
+ const handleError : typeof import ( './core/error-handling/src/index' ) [ 'handleError' ]
288
293
const hasComponents : typeof import ( './core/storage/src/index' ) [ 'hasComponents' ]
289
294
const hasFiles : typeof import ( './core/storage/src/index' ) [ 'hasFiles' ]
290
295
const hasFunctions : typeof import ( './core/storage/src/index' ) [ 'hasFunctions' ]
@@ -693,6 +698,7 @@ declare global {
693
698
const useElementSize : typeof import ( './core/utils/src/vendors' ) [ 'useElementSize' ]
694
699
const useElementVisibility : typeof import ( './core/utils/src/vendors' ) [ 'useElementVisibility' ]
695
700
const useEmail : typeof import ( './core/notifications/src/index' ) [ 'useEmail' ]
701
+ const useEnv : typeof import ( './core/validation/src/validate' ) [ 'useEnv' ]
696
702
const useEvent : typeof import ( './core/events/src/index' ) [ 'useEvent' ]
697
703
const useEventBus : typeof import ( './core/utils/src/vendors' ) [ 'useEventBus' ]
698
704
const useEventListener : typeof import ( './core/utils/src/vendors' ) [ 'useEventListener' ]
@@ -899,7 +905,7 @@ declare module 'vue' {
899
905
readonly authPath : UnwrapRef < typeof import ( './core/path/src/index' ) [ 'authPath' ] >
900
906
readonly autoResetRef : UnwrapRef < typeof import ( './core/utils/src/vendors' ) [ 'autoResetRef' ] >
901
907
readonly backendEnv : UnwrapRef < typeof import ( './core/validation/src/validate' ) [ 'backendEnv' ] >
902
- readonly backendEnvValidations : UnwrapRef < typeof import ( './core/validation/src/validate' ) [ 'backendEnvValidations ' ] >
908
+ readonly backendEnvValidation : UnwrapRef < typeof import ( './core/validation/src/validate' ) [ 'backendEnvValidation ' ] >
903
909
readonly base64Encode : UnwrapRef < typeof import ( './core/security/src/hash' ) [ 'base64Encode' ] >
904
910
readonly base64Verify : UnwrapRef < typeof import ( './core/security/src/hash' ) [ 'base64Verify' ] >
905
911
readonly basename : UnwrapRef < typeof import ( './core/path/src/index' ) [ 'basename' ] >
@@ -1076,12 +1082,12 @@ declare module 'vue' {
1076
1082
readonly ensurePrefix : UnwrapRef < typeof import ( './core/strings/src/utils' ) [ 'ensurePrefix' ] >
1077
1083
readonly ensureSuffix : UnwrapRef < typeof import ( './core/strings/src/utils' ) [ 'ensureSuffix' ] >
1078
1084
readonly env : UnwrapRef < typeof import ( './core/validation/src/validate' ) [ 'env' ] >
1079
- readonly envValidations : UnwrapRef < typeof import ( './core/validation/src/validate' ) [ 'envValidations ' ] >
1085
+ readonly envValidation : UnwrapRef < typeof import ( './core/validation/src/validate' ) [ 'envValidation ' ] >
1080
1086
readonly equal : UnwrapRef < typeof import ( './core/utils/src/currency' ) [ 'equal' ] >
1081
1087
readonly err : UnwrapRef < typeof import ( './core/error-handling/src/index' ) [ 'err' ] >
1082
1088
readonly errAsync : UnwrapRef < typeof import ( './core/error-handling/src/index' ) [ 'errAsync' ] >
1083
- readonly errorHandler : UnwrapRef < typeof import ( './core/error-handling/src/index' ) [ 'errorHandler' ] >
1084
1089
readonly errorHandlingPath : UnwrapRef < typeof import ( './core/path/src/index' ) [ 'errorHandlingPath' ] >
1090
+ readonly errorMessageOptions : UnwrapRef < typeof import ( './core/validation/src/validate' ) [ 'errorMessageOptions' ] >
1085
1091
readonly eslint : UnwrapRef < typeof import ( './core/lint/src/index' ) [ 'eslint' ] >
1086
1092
readonly events : UnwrapRef < typeof import ( './core/events/src/index' ) [ 'events' ] >
1087
1093
readonly eventsPath : UnwrapRef < typeof import ( './core/path/src/index' ) [ 'eventsPath' ] >
@@ -1108,7 +1114,7 @@ declare module 'vue' {
1108
1114
readonly fromSafePromise : UnwrapRef < typeof import ( './core/error-handling/src/index' ) [ 'fromSafePromise' ] >
1109
1115
readonly fromThrowable : UnwrapRef < typeof import ( './core/error-handling/src/index' ) [ 'fromThrowable' ] >
1110
1116
readonly frontendEnv : UnwrapRef < typeof import ( './core/validation/src/validate' ) [ 'frontendEnv' ] >
1111
- readonly frontendEnvValidations : UnwrapRef < typeof import ( './core/validation/src/validate' ) [ 'frontendEnvValidations ' ] >
1117
+ readonly frontendEnvValidation : UnwrapRef < typeof import ( './core/validation/src/validate' ) [ 'frontendEnvValidation ' ] >
1112
1118
readonly fs : UnwrapRef < typeof import ( './core/storage/src/index' ) [ 'fs' ] >
1113
1119
readonly functionsPath : UnwrapRef < typeof import ( './core/path/src/index' ) [ 'functionsPath' ] >
1114
1120
readonly generateAppKey : UnwrapRef < typeof import ( './core/security/src/key' ) [ 'generateAppKey' ] >
@@ -1129,6 +1135,7 @@ declare module 'vue' {
1129
1135
readonly green : UnwrapRef < typeof import ( './core/cli/src/utilities' ) [ 'green' ] >
1130
1136
readonly gupshup : UnwrapRef < typeof import ( './core/sms/src/index' ) [ 'gupshup' ] >
1131
1137
readonly h : UnwrapRef < typeof import ( 'vue' ) [ 'h' ] >
1138
+ readonly handleError : UnwrapRef < typeof import ( './core/error-handling/src/index' ) [ 'handleError' ] >
1132
1139
readonly hasComponents : UnwrapRef < typeof import ( './core/storage/src/index' ) [ 'hasComponents' ] >
1133
1140
readonly hasFiles : UnwrapRef < typeof import ( './core/storage/src/index' ) [ 'hasFiles' ] >
1134
1141
readonly hasFunctions : UnwrapRef < typeof import ( './core/storage/src/index' ) [ 'hasFunctions' ] >
@@ -1537,6 +1544,7 @@ declare module 'vue' {
1537
1544
readonly useElementSize : UnwrapRef < typeof import ( './core/utils/src/vendors' ) [ 'useElementSize' ] >
1538
1545
readonly useElementVisibility : UnwrapRef < typeof import ( './core/utils/src/vendors' ) [ 'useElementVisibility' ] >
1539
1546
readonly useEmail : UnwrapRef < typeof import ( './core/notifications/src/index' ) [ 'useEmail' ] >
1547
+ readonly useEnv : UnwrapRef < typeof import ( './core/validation/src/validate' ) [ 'useEnv' ] >
1540
1548
readonly useEvent : UnwrapRef < typeof import ( './core/events/src/index' ) [ 'useEvent' ] >
1541
1549
readonly useEventBus : UnwrapRef < typeof import ( './core/utils/src/vendors' ) [ 'useEventBus' ] >
1542
1550
readonly useEventListener : UnwrapRef < typeof import ( './core/utils/src/vendors' ) [ 'useEventListener' ] >
@@ -1737,7 +1745,7 @@ declare module '@vue/runtime-core' {
1737
1745
readonly authPath : UnwrapRef < typeof import ( './core/path/src/index' ) [ 'authPath' ] >
1738
1746
readonly autoResetRef : UnwrapRef < typeof import ( './core/utils/src/vendors' ) [ 'autoResetRef' ] >
1739
1747
readonly backendEnv : UnwrapRef < typeof import ( './core/validation/src/validate' ) [ 'backendEnv' ] >
1740
- readonly backendEnvValidations : UnwrapRef < typeof import ( './core/validation/src/validate' ) [ 'backendEnvValidations ' ] >
1748
+ readonly backendEnvValidation : UnwrapRef < typeof import ( './core/validation/src/validate' ) [ 'backendEnvValidation ' ] >
1741
1749
readonly base64Encode : UnwrapRef < typeof import ( './core/security/src/hash' ) [ 'base64Encode' ] >
1742
1750
readonly base64Verify : UnwrapRef < typeof import ( './core/security/src/hash' ) [ 'base64Verify' ] >
1743
1751
readonly basename : UnwrapRef < typeof import ( './core/path/src/index' ) [ 'basename' ] >
@@ -1914,12 +1922,12 @@ declare module '@vue/runtime-core' {
1914
1922
readonly ensurePrefix : UnwrapRef < typeof import ( './core/strings/src/utils' ) [ 'ensurePrefix' ] >
1915
1923
readonly ensureSuffix : UnwrapRef < typeof import ( './core/strings/src/utils' ) [ 'ensureSuffix' ] >
1916
1924
readonly env : UnwrapRef < typeof import ( './core/validation/src/validate' ) [ 'env' ] >
1917
- readonly envValidations : UnwrapRef < typeof import ( './core/validation/src/validate' ) [ 'envValidations ' ] >
1925
+ readonly envValidation : UnwrapRef < typeof import ( './core/validation/src/validate' ) [ 'envValidation ' ] >
1918
1926
readonly equal : UnwrapRef < typeof import ( './core/utils/src/currency' ) [ 'equal' ] >
1919
1927
readonly err : UnwrapRef < typeof import ( './core/error-handling/src/index' ) [ 'err' ] >
1920
1928
readonly errAsync : UnwrapRef < typeof import ( './core/error-handling/src/index' ) [ 'errAsync' ] >
1921
- readonly errorHandler : UnwrapRef < typeof import ( './core/error-handling/src/index' ) [ 'errorHandler' ] >
1922
1929
readonly errorHandlingPath : UnwrapRef < typeof import ( './core/path/src/index' ) [ 'errorHandlingPath' ] >
1930
+ readonly errorMessageOptions : UnwrapRef < typeof import ( './core/validation/src/validate' ) [ 'errorMessageOptions' ] >
1923
1931
readonly eslint : UnwrapRef < typeof import ( './core/lint/src/index' ) [ 'eslint' ] >
1924
1932
readonly events : UnwrapRef < typeof import ( './core/events/src/index' ) [ 'events' ] >
1925
1933
readonly eventsPath : UnwrapRef < typeof import ( './core/path/src/index' ) [ 'eventsPath' ] >
@@ -1946,7 +1954,7 @@ declare module '@vue/runtime-core' {
1946
1954
readonly fromSafePromise : UnwrapRef < typeof import ( './core/error-handling/src/index' ) [ 'fromSafePromise' ] >
1947
1955
readonly fromThrowable : UnwrapRef < typeof import ( './core/error-handling/src/index' ) [ 'fromThrowable' ] >
1948
1956
readonly frontendEnv : UnwrapRef < typeof import ( './core/validation/src/validate' ) [ 'frontendEnv' ] >
1949
- readonly frontendEnvValidations : UnwrapRef < typeof import ( './core/validation/src/validate' ) [ 'frontendEnvValidations ' ] >
1957
+ readonly frontendEnvValidation : UnwrapRef < typeof import ( './core/validation/src/validate' ) [ 'frontendEnvValidation ' ] >
1950
1958
readonly fs : UnwrapRef < typeof import ( './core/storage/src/index' ) [ 'fs' ] >
1951
1959
readonly functionsPath : UnwrapRef < typeof import ( './core/path/src/index' ) [ 'functionsPath' ] >
1952
1960
readonly generateAppKey : UnwrapRef < typeof import ( './core/security/src/key' ) [ 'generateAppKey' ] >
@@ -1967,6 +1975,7 @@ declare module '@vue/runtime-core' {
1967
1975
readonly green : UnwrapRef < typeof import ( './core/cli/src/utilities' ) [ 'green' ] >
1968
1976
readonly gupshup : UnwrapRef < typeof import ( './core/sms/src/index' ) [ 'gupshup' ] >
1969
1977
readonly h : UnwrapRef < typeof import ( 'vue' ) [ 'h' ] >
1978
+ readonly handleError : UnwrapRef < typeof import ( './core/error-handling/src/index' ) [ 'handleError' ] >
1970
1979
readonly hasComponents : UnwrapRef < typeof import ( './core/storage/src/index' ) [ 'hasComponents' ] >
1971
1980
readonly hasFiles : UnwrapRef < typeof import ( './core/storage/src/index' ) [ 'hasFiles' ] >
1972
1981
readonly hasFunctions : UnwrapRef < typeof import ( './core/storage/src/index' ) [ 'hasFunctions' ] >
@@ -2375,6 +2384,7 @@ declare module '@vue/runtime-core' {
2375
2384
readonly useElementSize : UnwrapRef < typeof import ( './core/utils/src/vendors' ) [ 'useElementSize' ] >
2376
2385
readonly useElementVisibility : UnwrapRef < typeof import ( './core/utils/src/vendors' ) [ 'useElementVisibility' ] >
2377
2386
readonly useEmail : UnwrapRef < typeof import ( './core/notifications/src/index' ) [ 'useEmail' ] >
2387
+ readonly useEnv : UnwrapRef < typeof import ( './core/validation/src/validate' ) [ 'useEnv' ] >
2378
2388
readonly useEvent : UnwrapRef < typeof import ( './core/events/src/index' ) [ 'useEvent' ] >
2379
2389
readonly useEventBus : UnwrapRef < typeof import ( './core/utils/src/vendors' ) [ 'useEventBus' ] >
2380
2390
readonly useEventListener : UnwrapRef < typeof import ( './core/utils/src/vendors' ) [ 'useEventListener' ] >
0 commit comments