@taqueria/protocol 0.28.4 → 0.28.6
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/EphemeralState.d.ts +1112 -836
- package/EphemeralState.d.ts.map +1 -1
- package/EphemeralState.js.map +1 -1
- package/ParsedPluginInfo.d.ts +1169 -3011
- package/ParsedPluginInfo.d.ts.map +1 -1
- package/PersistentState.d.ts +254 -110
- package/PersistentState.d.ts.map +1 -1
- package/PluginInfo.d.ts +1840 -3078
- package/PluginInfo.d.ts.map +1 -1
- package/PluginSchema.d.ts +31266 -4773
- package/PluginSchema.d.ts.map +1 -1
- package/SHA256.js +4 -0
- package/SHA256.js.map +1 -1
- package/SanitizedAbsPath.js +4 -0
- package/SanitizedAbsPath.js.map +1 -1
- package/SanitizedArgs.d.ts +1634 -1395
- package/SanitizedArgs.d.ts.map +1 -1
- package/SanitizedArgs.js +4 -0
- package/SanitizedArgs.js.map +1 -1
- package/i18n.js +5 -0
- package/i18n.js.map +1 -1
- package/index.js +5 -0
- package/index.js.map +1 -1
- package/out/types/Config.d.ts +221 -221
- package/out/types/ConfigEnvironmentFileV2.d.ts +160 -88
- package/out/types/ConfigEnvironmentFileV2.d.ts.map +1 -1
- package/out/types/ConfigFileV1.d.ts +321 -321
- package/out/types/ConfigFileV2.d.ts +378 -242
- package/out/types/ConfigFileV2.d.ts.map +1 -1
- package/out/types/Environment.d.ts +13 -13
- package/out/types/EphemeralState.d.ts +6709 -6745
- package/out/types/EphemeralState.d.ts.map +1 -1
- package/out/types/LoadedConfig.d.ts +435 -439
- package/out/types/LoadedConfig.d.ts.map +1 -1
- package/out/types/NetworkAccountConfig.d.ts +9 -9
- package/out/types/NetworkConfig.d.ts +30 -30
- package/out/types/Operation.d.ts +6307 -1763
- package/out/types/Operation.d.ts.map +1 -1
- package/out/types/Option.d.ts +40 -40
- package/out/types/ParsedConfig.d.ts +161 -425
- package/out/types/ParsedConfig.d.ts.map +1 -1
- package/out/types/ParsedOperation.d.ts +3414 -1282
- package/out/types/ParsedOperation.d.ts.map +1 -1
- package/out/types/ParsedTemplate.d.ts +217 -2365
- package/out/types/ParsedTemplate.d.ts.map +1 -1
- package/out/types/PersistedOperation.d.ts +9 -9
- package/out/types/PersistedTask.d.ts +9 -9
- package/out/types/PersistentState.d.ts +34 -34
- package/out/types/PluginDependenciesResponse.d.ts +16 -20
- package/out/types/PluginDependenciesResponse.d.ts.map +1 -1
- package/out/types/PluginInfo.d.ts +3014 -3034
- package/out/types/PluginInfo.d.ts.map +1 -1
- package/out/types/PluginJsonResponse.d.ts +4 -4
- package/out/types/PluginProxyResponse.d.ts +4 -4
- package/out/types/PluginSchema.d.ts +46162 -13114
- package/out/types/PluginSchema.d.ts.map +1 -1
- package/out/types/PositionalArg.d.ts +27 -27
- package/out/types/Provisioner.d.ts +17 -17
- package/out/types/Provisions.d.ts +17 -17
- package/out/types/ProxyTaskArgs.d.ts +3318 -922
- package/out/types/ProxyTaskArgs.d.ts.map +1 -1
- package/out/types/ProxyTemplateArgs.d.ts +3318 -922
- package/out/types/ProxyTemplateArgs.d.ts.map +1 -1
- package/out/types/RequestArgs.d.ts +3288 -888
- package/out/types/RequestArgs.d.ts.map +1 -1
- package/out/types/RuntimeDependencyReport.d.ts +16 -20
- package/out/types/RuntimeDependencyReport.d.ts.map +1 -1
- package/out/types/SandboxAccount.d.ts +22 -22
- package/out/types/SandboxAccount.d.ts.map +1 -1
- package/out/types/SandboxAccounts.d.ts +22 -22
- package/out/types/SandboxAccounts.d.ts.map +1 -1
- package/out/types/SandboxConfig.d.ts +22 -22
- package/out/types/SanitizedArgs.d.ts +157 -157
- package/out/types/SanitizedArgs.d.ts.map +1 -1
- package/out/types/Task.d.ts +212 -212
- package/out/types/Template.d.ts +9547 -1799
- package/out/types/Template.d.ts.map +1 -1
- package/out/types-zod.d.ts +22716 -10470
- package/out/types-zod.d.ts.map +1 -1
- package/package.json +1 -1
- package/taqueria-protocol-types.js +5 -0
- package/taqueria-protocol-types.js.map +1 -1
- package/types-config-files.js +20 -0
- package/types-config-files.js.map +1 -1
|
@@ -12,11 +12,28 @@ export declare const schemas: {
|
|
|
12
12
|
type: import("zod").ZodOptional<import("zod").ZodString>;
|
|
13
13
|
accounts: import("zod").ZodOptional<import("zod").ZodRecord<import("zod").ZodString, import("zod").ZodObject<{
|
|
14
14
|
type: import("zod").ZodOptional<import("zod").ZodString>;
|
|
15
|
-
}, "passthrough", import("zod").ZodTypeAny, {
|
|
16
|
-
type
|
|
15
|
+
}, "passthrough", import("zod").ZodTypeAny, import("zod").objectOutputType<{
|
|
16
|
+
type: import("zod").ZodOptional<import("zod").ZodString>;
|
|
17
|
+
}, import("zod").ZodTypeAny, "passthrough">, import("zod").objectInputType<{
|
|
18
|
+
type: import("zod").ZodOptional<import("zod").ZodString>;
|
|
19
|
+
}, import("zod").ZodTypeAny, "passthrough">>>>;
|
|
20
|
+
accountDefault: import("zod").ZodOptional<import("zod").ZodAny>;
|
|
21
|
+
contracts: import("zod").ZodOptional<import("zod").ZodRecord<import("zod").ZodString, import("zod").ZodObject<{
|
|
22
|
+
address: import("zod").ZodOptional<import("zod").ZodString>;
|
|
23
|
+
}, "strip", import("zod").ZodTypeAny, {
|
|
24
|
+
address?: string | undefined;
|
|
17
25
|
}, {
|
|
18
|
-
|
|
26
|
+
address?: string | undefined;
|
|
19
27
|
}>>>;
|
|
28
|
+
}, "passthrough", import("zod").ZodTypeAny, import("zod").objectOutputType<{
|
|
29
|
+
type: import("zod").ZodOptional<import("zod").ZodString>;
|
|
30
|
+
accounts: import("zod").ZodOptional<import("zod").ZodRecord<import("zod").ZodString, import("zod").ZodObject<{
|
|
31
|
+
type: import("zod").ZodOptional<import("zod").ZodString>;
|
|
32
|
+
}, "passthrough", import("zod").ZodTypeAny, import("zod").objectOutputType<{
|
|
33
|
+
type: import("zod").ZodOptional<import("zod").ZodString>;
|
|
34
|
+
}, import("zod").ZodTypeAny, "passthrough">, import("zod").objectInputType<{
|
|
35
|
+
type: import("zod").ZodOptional<import("zod").ZodString>;
|
|
36
|
+
}, import("zod").ZodTypeAny, "passthrough">>>>;
|
|
20
37
|
accountDefault: import("zod").ZodOptional<import("zod").ZodAny>;
|
|
21
38
|
contracts: import("zod").ZodOptional<import("zod").ZodRecord<import("zod").ZodString, import("zod").ZodObject<{
|
|
22
39
|
address: import("zod").ZodOptional<import("zod").ZodString>;
|
|
@@ -25,34 +42,50 @@ export declare const schemas: {
|
|
|
25
42
|
}, {
|
|
26
43
|
address?: string | undefined;
|
|
27
44
|
}>>>;
|
|
28
|
-
}, "
|
|
29
|
-
|
|
45
|
+
}, import("zod").ZodTypeAny, "passthrough">, import("zod").objectInputType<{
|
|
46
|
+
type: import("zod").ZodOptional<import("zod").ZodString>;
|
|
47
|
+
accounts: import("zod").ZodOptional<import("zod").ZodRecord<import("zod").ZodString, import("zod").ZodObject<{
|
|
48
|
+
type: import("zod").ZodOptional<import("zod").ZodString>;
|
|
49
|
+
}, "passthrough", import("zod").ZodTypeAny, import("zod").objectOutputType<{
|
|
50
|
+
type: import("zod").ZodOptional<import("zod").ZodString>;
|
|
51
|
+
}, import("zod").ZodTypeAny, "passthrough">, import("zod").objectInputType<{
|
|
52
|
+
type: import("zod").ZodOptional<import("zod").ZodString>;
|
|
53
|
+
}, import("zod").ZodTypeAny, "passthrough">>>>;
|
|
54
|
+
accountDefault: import("zod").ZodOptional<import("zod").ZodAny>;
|
|
55
|
+
contracts: import("zod").ZodOptional<import("zod").ZodRecord<import("zod").ZodString, import("zod").ZodObject<{
|
|
56
|
+
address: import("zod").ZodOptional<import("zod").ZodString>;
|
|
57
|
+
}, "strip", import("zod").ZodTypeAny, {
|
|
30
58
|
address?: string | undefined;
|
|
31
|
-
}
|
|
32
|
-
accounts?: Record<string, {
|
|
33
|
-
type?: string | undefined;
|
|
34
|
-
}> | undefined;
|
|
35
|
-
type?: string | undefined;
|
|
36
|
-
accountDefault?: any;
|
|
37
|
-
}, {
|
|
38
|
-
contracts?: Record<string, {
|
|
59
|
+
}, {
|
|
39
60
|
address?: string | undefined;
|
|
40
|
-
}
|
|
41
|
-
|
|
42
|
-
type?: string | undefined;
|
|
43
|
-
}> | undefined;
|
|
44
|
-
type?: string | undefined;
|
|
45
|
-
accountDefault?: any;
|
|
46
|
-
}>;
|
|
61
|
+
}>>>;
|
|
62
|
+
}, import("zod").ZodTypeAny, "passthrough">>;
|
|
47
63
|
schema: import("zod").ZodEffects<import("zod").ZodObject<{
|
|
48
64
|
type: import("zod").ZodOptional<import("zod").ZodString>;
|
|
49
65
|
accounts: import("zod").ZodOptional<import("zod").ZodRecord<import("zod").ZodString, import("zod").ZodObject<{
|
|
50
66
|
type: import("zod").ZodOptional<import("zod").ZodString>;
|
|
51
|
-
}, "passthrough", import("zod").ZodTypeAny, {
|
|
52
|
-
type
|
|
67
|
+
}, "passthrough", import("zod").ZodTypeAny, import("zod").objectOutputType<{
|
|
68
|
+
type: import("zod").ZodOptional<import("zod").ZodString>;
|
|
69
|
+
}, import("zod").ZodTypeAny, "passthrough">, import("zod").objectInputType<{
|
|
70
|
+
type: import("zod").ZodOptional<import("zod").ZodString>;
|
|
71
|
+
}, import("zod").ZodTypeAny, "passthrough">>>>;
|
|
72
|
+
accountDefault: import("zod").ZodOptional<import("zod").ZodAny>;
|
|
73
|
+
contracts: import("zod").ZodOptional<import("zod").ZodRecord<import("zod").ZodString, import("zod").ZodObject<{
|
|
74
|
+
address: import("zod").ZodOptional<import("zod").ZodString>;
|
|
75
|
+
}, "strip", import("zod").ZodTypeAny, {
|
|
76
|
+
address?: string | undefined;
|
|
53
77
|
}, {
|
|
54
|
-
|
|
78
|
+
address?: string | undefined;
|
|
55
79
|
}>>>;
|
|
80
|
+
}, "passthrough", import("zod").ZodTypeAny, import("zod").objectOutputType<{
|
|
81
|
+
type: import("zod").ZodOptional<import("zod").ZodString>;
|
|
82
|
+
accounts: import("zod").ZodOptional<import("zod").ZodRecord<import("zod").ZodString, import("zod").ZodObject<{
|
|
83
|
+
type: import("zod").ZodOptional<import("zod").ZodString>;
|
|
84
|
+
}, "passthrough", import("zod").ZodTypeAny, import("zod").objectOutputType<{
|
|
85
|
+
type: import("zod").ZodOptional<import("zod").ZodString>;
|
|
86
|
+
}, import("zod").ZodTypeAny, "passthrough">, import("zod").objectInputType<{
|
|
87
|
+
type: import("zod").ZodOptional<import("zod").ZodString>;
|
|
88
|
+
}, import("zod").ZodTypeAny, "passthrough">>>>;
|
|
56
89
|
accountDefault: import("zod").ZodOptional<import("zod").ZodAny>;
|
|
57
90
|
contracts: import("zod").ZodOptional<import("zod").ZodRecord<import("zod").ZodString, import("zod").ZodObject<{
|
|
58
91
|
address: import("zod").ZodOptional<import("zod").ZodString>;
|
|
@@ -61,44 +94,68 @@ export declare const schemas: {
|
|
|
61
94
|
}, {
|
|
62
95
|
address?: string | undefined;
|
|
63
96
|
}>>>;
|
|
64
|
-
}, "
|
|
65
|
-
|
|
97
|
+
}, import("zod").ZodTypeAny, "passthrough">, import("zod").objectInputType<{
|
|
98
|
+
type: import("zod").ZodOptional<import("zod").ZodString>;
|
|
99
|
+
accounts: import("zod").ZodOptional<import("zod").ZodRecord<import("zod").ZodString, import("zod").ZodObject<{
|
|
100
|
+
type: import("zod").ZodOptional<import("zod").ZodString>;
|
|
101
|
+
}, "passthrough", import("zod").ZodTypeAny, import("zod").objectOutputType<{
|
|
102
|
+
type: import("zod").ZodOptional<import("zod").ZodString>;
|
|
103
|
+
}, import("zod").ZodTypeAny, "passthrough">, import("zod").objectInputType<{
|
|
104
|
+
type: import("zod").ZodOptional<import("zod").ZodString>;
|
|
105
|
+
}, import("zod").ZodTypeAny, "passthrough">>>>;
|
|
106
|
+
accountDefault: import("zod").ZodOptional<import("zod").ZodAny>;
|
|
107
|
+
contracts: import("zod").ZodOptional<import("zod").ZodRecord<import("zod").ZodString, import("zod").ZodObject<{
|
|
108
|
+
address: import("zod").ZodOptional<import("zod").ZodString>;
|
|
109
|
+
}, "strip", import("zod").ZodTypeAny, {
|
|
66
110
|
address?: string | undefined;
|
|
67
|
-
}
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
type
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
111
|
+
}, {
|
|
112
|
+
address?: string | undefined;
|
|
113
|
+
}>>>;
|
|
114
|
+
}, import("zod").ZodTypeAny, "passthrough">>, ConfigEnvironmentFileV2Strict, import("zod").objectInputType<{
|
|
115
|
+
type: import("zod").ZodOptional<import("zod").ZodString>;
|
|
116
|
+
accounts: import("zod").ZodOptional<import("zod").ZodRecord<import("zod").ZodString, import("zod").ZodObject<{
|
|
117
|
+
type: import("zod").ZodOptional<import("zod").ZodString>;
|
|
118
|
+
}, "passthrough", import("zod").ZodTypeAny, import("zod").objectOutputType<{
|
|
119
|
+
type: import("zod").ZodOptional<import("zod").ZodString>;
|
|
120
|
+
}, import("zod").ZodTypeAny, "passthrough">, import("zod").objectInputType<{
|
|
121
|
+
type: import("zod").ZodOptional<import("zod").ZodString>;
|
|
122
|
+
}, import("zod").ZodTypeAny, "passthrough">>>>;
|
|
123
|
+
accountDefault: import("zod").ZodOptional<import("zod").ZodAny>;
|
|
124
|
+
contracts: import("zod").ZodOptional<import("zod").ZodRecord<import("zod").ZodString, import("zod").ZodObject<{
|
|
125
|
+
address: import("zod").ZodOptional<import("zod").ZodString>;
|
|
126
|
+
}, "strip", import("zod").ZodTypeAny, {
|
|
75
127
|
address?: string | undefined;
|
|
76
|
-
}
|
|
77
|
-
accounts?: Record<string, {
|
|
78
|
-
type?: string | undefined;
|
|
79
|
-
}> | undefined;
|
|
80
|
-
type?: string | undefined;
|
|
81
|
-
accountDefault?: any;
|
|
82
|
-
}>, ConfigEnvironmentFileV2Strict, {
|
|
83
|
-
contracts?: Record<string, {
|
|
128
|
+
}, {
|
|
84
129
|
address?: string | undefined;
|
|
85
|
-
}
|
|
86
|
-
|
|
87
|
-
type?: string | undefined;
|
|
88
|
-
}> | undefined;
|
|
89
|
-
type?: string | undefined;
|
|
90
|
-
accountDefault?: any;
|
|
91
|
-
}>;
|
|
130
|
+
}>>>;
|
|
131
|
+
}, import("zod").ZodTypeAny, "passthrough">>;
|
|
92
132
|
};
|
|
93
133
|
export declare const rawSchema: import("zod").ZodObject<{
|
|
94
134
|
type: import("zod").ZodOptional<import("zod").ZodString>;
|
|
95
135
|
accounts: import("zod").ZodOptional<import("zod").ZodRecord<import("zod").ZodString, import("zod").ZodObject<{
|
|
96
136
|
type: import("zod").ZodOptional<import("zod").ZodString>;
|
|
97
|
-
}, "passthrough", import("zod").ZodTypeAny, {
|
|
98
|
-
type
|
|
137
|
+
}, "passthrough", import("zod").ZodTypeAny, import("zod").objectOutputType<{
|
|
138
|
+
type: import("zod").ZodOptional<import("zod").ZodString>;
|
|
139
|
+
}, import("zod").ZodTypeAny, "passthrough">, import("zod").objectInputType<{
|
|
140
|
+
type: import("zod").ZodOptional<import("zod").ZodString>;
|
|
141
|
+
}, import("zod").ZodTypeAny, "passthrough">>>>;
|
|
142
|
+
accountDefault: import("zod").ZodOptional<import("zod").ZodAny>;
|
|
143
|
+
contracts: import("zod").ZodOptional<import("zod").ZodRecord<import("zod").ZodString, import("zod").ZodObject<{
|
|
144
|
+
address: import("zod").ZodOptional<import("zod").ZodString>;
|
|
145
|
+
}, "strip", import("zod").ZodTypeAny, {
|
|
146
|
+
address?: string | undefined;
|
|
99
147
|
}, {
|
|
100
|
-
|
|
148
|
+
address?: string | undefined;
|
|
101
149
|
}>>>;
|
|
150
|
+
}, "passthrough", import("zod").ZodTypeAny, import("zod").objectOutputType<{
|
|
151
|
+
type: import("zod").ZodOptional<import("zod").ZodString>;
|
|
152
|
+
accounts: import("zod").ZodOptional<import("zod").ZodRecord<import("zod").ZodString, import("zod").ZodObject<{
|
|
153
|
+
type: import("zod").ZodOptional<import("zod").ZodString>;
|
|
154
|
+
}, "passthrough", import("zod").ZodTypeAny, import("zod").objectOutputType<{
|
|
155
|
+
type: import("zod").ZodOptional<import("zod").ZodString>;
|
|
156
|
+
}, import("zod").ZodTypeAny, "passthrough">, import("zod").objectInputType<{
|
|
157
|
+
type: import("zod").ZodOptional<import("zod").ZodString>;
|
|
158
|
+
}, import("zod").ZodTypeAny, "passthrough">>>>;
|
|
102
159
|
accountDefault: import("zod").ZodOptional<import("zod").ZodAny>;
|
|
103
160
|
contracts: import("zod").ZodOptional<import("zod").ZodRecord<import("zod").ZodString, import("zod").ZodObject<{
|
|
104
161
|
address: import("zod").ZodOptional<import("zod").ZodString>;
|
|
@@ -107,34 +164,50 @@ export declare const rawSchema: import("zod").ZodObject<{
|
|
|
107
164
|
}, {
|
|
108
165
|
address?: string | undefined;
|
|
109
166
|
}>>>;
|
|
110
|
-
}, "
|
|
111
|
-
|
|
167
|
+
}, import("zod").ZodTypeAny, "passthrough">, import("zod").objectInputType<{
|
|
168
|
+
type: import("zod").ZodOptional<import("zod").ZodString>;
|
|
169
|
+
accounts: import("zod").ZodOptional<import("zod").ZodRecord<import("zod").ZodString, import("zod").ZodObject<{
|
|
170
|
+
type: import("zod").ZodOptional<import("zod").ZodString>;
|
|
171
|
+
}, "passthrough", import("zod").ZodTypeAny, import("zod").objectOutputType<{
|
|
172
|
+
type: import("zod").ZodOptional<import("zod").ZodString>;
|
|
173
|
+
}, import("zod").ZodTypeAny, "passthrough">, import("zod").objectInputType<{
|
|
174
|
+
type: import("zod").ZodOptional<import("zod").ZodString>;
|
|
175
|
+
}, import("zod").ZodTypeAny, "passthrough">>>>;
|
|
176
|
+
accountDefault: import("zod").ZodOptional<import("zod").ZodAny>;
|
|
177
|
+
contracts: import("zod").ZodOptional<import("zod").ZodRecord<import("zod").ZodString, import("zod").ZodObject<{
|
|
178
|
+
address: import("zod").ZodOptional<import("zod").ZodString>;
|
|
179
|
+
}, "strip", import("zod").ZodTypeAny, {
|
|
112
180
|
address?: string | undefined;
|
|
113
|
-
}
|
|
114
|
-
accounts?: Record<string, {
|
|
115
|
-
type?: string | undefined;
|
|
116
|
-
}> | undefined;
|
|
117
|
-
type?: string | undefined;
|
|
118
|
-
accountDefault?: any;
|
|
119
|
-
}, {
|
|
120
|
-
contracts?: Record<string, {
|
|
181
|
+
}, {
|
|
121
182
|
address?: string | undefined;
|
|
122
|
-
}
|
|
123
|
-
|
|
124
|
-
type?: string | undefined;
|
|
125
|
-
}> | undefined;
|
|
126
|
-
type?: string | undefined;
|
|
127
|
-
accountDefault?: any;
|
|
128
|
-
}>;
|
|
183
|
+
}>>>;
|
|
184
|
+
}, import("zod").ZodTypeAny, "passthrough">>;
|
|
129
185
|
export declare const internalSchema: import("zod").ZodObject<{
|
|
130
186
|
type: import("zod").ZodOptional<import("zod").ZodString>;
|
|
131
187
|
accounts: import("zod").ZodOptional<import("zod").ZodRecord<import("zod").ZodString, import("zod").ZodObject<{
|
|
132
188
|
type: import("zod").ZodOptional<import("zod").ZodString>;
|
|
133
|
-
}, "passthrough", import("zod").ZodTypeAny, {
|
|
134
|
-
type
|
|
189
|
+
}, "passthrough", import("zod").ZodTypeAny, import("zod").objectOutputType<{
|
|
190
|
+
type: import("zod").ZodOptional<import("zod").ZodString>;
|
|
191
|
+
}, import("zod").ZodTypeAny, "passthrough">, import("zod").objectInputType<{
|
|
192
|
+
type: import("zod").ZodOptional<import("zod").ZodString>;
|
|
193
|
+
}, import("zod").ZodTypeAny, "passthrough">>>>;
|
|
194
|
+
accountDefault: import("zod").ZodOptional<import("zod").ZodAny>;
|
|
195
|
+
contracts: import("zod").ZodOptional<import("zod").ZodRecord<import("zod").ZodString, import("zod").ZodObject<{
|
|
196
|
+
address: import("zod").ZodOptional<import("zod").ZodString>;
|
|
197
|
+
}, "strip", import("zod").ZodTypeAny, {
|
|
198
|
+
address?: string | undefined;
|
|
135
199
|
}, {
|
|
136
|
-
|
|
200
|
+
address?: string | undefined;
|
|
137
201
|
}>>>;
|
|
202
|
+
}, "passthrough", import("zod").ZodTypeAny, import("zod").objectOutputType<{
|
|
203
|
+
type: import("zod").ZodOptional<import("zod").ZodString>;
|
|
204
|
+
accounts: import("zod").ZodOptional<import("zod").ZodRecord<import("zod").ZodString, import("zod").ZodObject<{
|
|
205
|
+
type: import("zod").ZodOptional<import("zod").ZodString>;
|
|
206
|
+
}, "passthrough", import("zod").ZodTypeAny, import("zod").objectOutputType<{
|
|
207
|
+
type: import("zod").ZodOptional<import("zod").ZodString>;
|
|
208
|
+
}, import("zod").ZodTypeAny, "passthrough">, import("zod").objectInputType<{
|
|
209
|
+
type: import("zod").ZodOptional<import("zod").ZodString>;
|
|
210
|
+
}, import("zod").ZodTypeAny, "passthrough">>>>;
|
|
138
211
|
accountDefault: import("zod").ZodOptional<import("zod").ZodAny>;
|
|
139
212
|
contracts: import("zod").ZodOptional<import("zod").ZodRecord<import("zod").ZodString, import("zod").ZodObject<{
|
|
140
213
|
address: import("zod").ZodOptional<import("zod").ZodString>;
|
|
@@ -143,24 +216,23 @@ export declare const internalSchema: import("zod").ZodObject<{
|
|
|
143
216
|
}, {
|
|
144
217
|
address?: string | undefined;
|
|
145
218
|
}>>>;
|
|
146
|
-
}, "
|
|
147
|
-
|
|
219
|
+
}, import("zod").ZodTypeAny, "passthrough">, import("zod").objectInputType<{
|
|
220
|
+
type: import("zod").ZodOptional<import("zod").ZodString>;
|
|
221
|
+
accounts: import("zod").ZodOptional<import("zod").ZodRecord<import("zod").ZodString, import("zod").ZodObject<{
|
|
222
|
+
type: import("zod").ZodOptional<import("zod").ZodString>;
|
|
223
|
+
}, "passthrough", import("zod").ZodTypeAny, import("zod").objectOutputType<{
|
|
224
|
+
type: import("zod").ZodOptional<import("zod").ZodString>;
|
|
225
|
+
}, import("zod").ZodTypeAny, "passthrough">, import("zod").objectInputType<{
|
|
226
|
+
type: import("zod").ZodOptional<import("zod").ZodString>;
|
|
227
|
+
}, import("zod").ZodTypeAny, "passthrough">>>>;
|
|
228
|
+
accountDefault: import("zod").ZodOptional<import("zod").ZodAny>;
|
|
229
|
+
contracts: import("zod").ZodOptional<import("zod").ZodRecord<import("zod").ZodString, import("zod").ZodObject<{
|
|
230
|
+
address: import("zod").ZodOptional<import("zod").ZodString>;
|
|
231
|
+
}, "strip", import("zod").ZodTypeAny, {
|
|
148
232
|
address?: string | undefined;
|
|
149
|
-
}
|
|
150
|
-
accounts?: Record<string, {
|
|
151
|
-
type?: string | undefined;
|
|
152
|
-
}> | undefined;
|
|
153
|
-
type?: string | undefined;
|
|
154
|
-
accountDefault?: any;
|
|
155
|
-
}, {
|
|
156
|
-
contracts?: Record<string, {
|
|
233
|
+
}, {
|
|
157
234
|
address?: string | undefined;
|
|
158
|
-
}
|
|
159
|
-
|
|
160
|
-
type?: string | undefined;
|
|
161
|
-
}> | undefined;
|
|
162
|
-
type?: string | undefined;
|
|
163
|
-
accountDefault?: any;
|
|
164
|
-
}>;
|
|
235
|
+
}>>>;
|
|
236
|
+
}, import("zod").ZodTypeAny, "passthrough">>;
|
|
165
237
|
export type t = ConfigEnvironmentFileV2Strict;
|
|
166
238
|
//# sourceMappingURL=ConfigEnvironmentFileV2.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"ConfigEnvironmentFileV2.d.ts","sourceRoot":"","sources":["ConfigEnvironmentFileV2.ts"],"names":[],"mappings":"AAGA,OAAO,EAAE,QAAQ,EAA4E,MAAM,6BAA6B,CAAC;AACjI,OAAO,EAAE,cAAc,EAAmB,MAAM,SAAS,CAAC;AAE1D,OAAO,EAAE,uBAAuB,EAAE,MAAM,0BAA0B,CAAC;AACnE,OAAO,EAAE,uBAAuB,IAAI,6BAA6B,EAAE,MAAM,qCAAqC,CAAC;AAG/G,YAAY,EAAE,6BAA6B,IAAI,uBAAuB,EAAE,CAAC;AAEzE,eAAO,MAAM,IAAI,UAAW,OAAO,KAAG,6BAoBrC,CAAC;AAEF,eAAO,MAAM,MAAM,UAAW,uBAAuB,KAAG,6BAA4C,CAAC;AAErG,eAAO,MAAM,EAAE,UAAW,OAAO,KAAG,eAAe,QAAQ,EAAE,6BAA6B,CAOzF,CAAC;AAEF,eAAO,MAAM,IAAI,UAAW,KAAK,6BAA6B,EAAE,QAAQ,CAAC,KAAG,eAAe,QAAQ,EAAE,6BAA6B,CAAc,CAAC;AAGjJ,eAAO,MAAM,OAAO
|
|
1
|
+
{"version":3,"file":"ConfigEnvironmentFileV2.d.ts","sourceRoot":"","sources":["ConfigEnvironmentFileV2.ts"],"names":[],"mappings":"AAGA,OAAO,EAAE,QAAQ,EAA4E,MAAM,6BAA6B,CAAC;AACjI,OAAO,EAAE,cAAc,EAAmB,MAAM,SAAS,CAAC;AAE1D,OAAO,EAAE,uBAAuB,EAAE,MAAM,0BAA0B,CAAC;AACnE,OAAO,EAAE,uBAAuB,IAAI,6BAA6B,EAAE,MAAM,qCAAqC,CAAC;AAG/G,YAAY,EAAE,6BAA6B,IAAI,uBAAuB,EAAE,CAAC;AAEzE,eAAO,MAAM,IAAI,UAAW,OAAO,KAAG,6BAoBrC,CAAC;AAEF,eAAO,MAAM,MAAM,UAAW,uBAAuB,KAAG,6BAA4C,CAAC;AAErG,eAAO,MAAM,EAAE,UAAW,OAAO,KAAG,eAAe,QAAQ,EAAE,6BAA6B,CAOzF,CAAC;AAEF,eAAO,MAAM,IAAI,UAAW,KAAK,6BAA6B,EAAE,QAAQ,CAAC,KAAG,eAAe,QAAQ,EAAE,6BAA6B,CAAc,CAAC;AAGjJ,eAAO,MAAM,OAAO;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAGnB,CAAC;AACF,eAAO,MAAM,SAAS;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4CAAoB,CAAC;AAC3C,eAAO,MAAM,cAAc;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4CAAgC,CAAC;AAE5D,MAAM,MAAM,CAAC,GAAG,6BAA6B,CAAC"}
|