@taqueria/protocol 0.20.1 → 0.21.0
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/Config.d.ts +317 -293
- package/Config.d.ts.map +1 -1
- package/LoadedConfig.d.ts +331 -306
- package/LoadedConfig.d.ts.map +1 -1
- package/NetworkConfig.d.ts +129 -110
- package/NetworkConfig.d.ts.map +1 -1
- package/NetworkConfig.js +10 -2
- package/NetworkConfig.js.map +1 -1
- package/NetworkConfig.mjs +10 -2
- package/NetworkConfig.mjs.map +1 -1
- package/Operation.d.ts +64 -60
- package/Operation.d.ts.map +1 -1
- package/ParsedOperation.d.ts +16 -15
- package/ParsedOperation.d.ts.map +1 -1
- package/ParsedTemplate.d.ts +32 -30
- package/ParsedTemplate.d.ts.map +1 -1
- package/PluginSchema.d.ts +448 -420
- package/PluginSchema.d.ts.map +1 -1
- package/RequestArgs.d.ts +659 -610
- package/RequestArgs.d.ts.map +1 -1
- package/SandboxConfig.d.ts +64 -64
- package/Template.d.ts +96 -90
- package/Template.d.ts.map +1 -1
- package/package.json +1 -1
package/Operation.d.ts
CHANGED
|
@@ -328,16 +328,8 @@ export declare const internalSchema: z.ZodObject<{
|
|
|
328
328
|
};
|
|
329
329
|
}> | undefined;
|
|
330
330
|
network?: Record<string, Flatten<{
|
|
331
|
-
|
|
332
|
-
|
|
333
|
-
};
|
|
334
|
-
rpcUrl: string & {
|
|
335
|
-
readonly __kind: any;
|
|
336
|
-
};
|
|
337
|
-
protocol: string & {
|
|
338
|
-
readonly __kind: any;
|
|
339
|
-
};
|
|
340
|
-
faucet: Flatten<{
|
|
331
|
+
accounts?: Record<string, any> | undefined;
|
|
332
|
+
faucet?: Flatten<{
|
|
341
333
|
email?: string | undefined;
|
|
342
334
|
password?: string | undefined;
|
|
343
335
|
amount?: string | undefined;
|
|
@@ -348,15 +340,20 @@ export declare const internalSchema: z.ZodObject<{
|
|
|
348
340
|
};
|
|
349
341
|
} & {
|
|
350
342
|
readonly __kind: any;
|
|
351
|
-
}
|
|
343
|
+
}> | undefined;
|
|
344
|
+
label: string & {
|
|
345
|
+
readonly __kind: any;
|
|
346
|
+
};
|
|
347
|
+
rpcUrl: string & {
|
|
348
|
+
readonly __kind: any;
|
|
349
|
+
};
|
|
350
|
+
protocol: string & {
|
|
351
|
+
readonly __kind: any;
|
|
352
|
+
};
|
|
352
353
|
} & {
|
|
353
354
|
readonly __kind: any;
|
|
354
355
|
}>> | undefined;
|
|
355
356
|
sandbox?: Record<string, {
|
|
356
|
-
attributes?: Record<string, string | number | boolean> | undefined;
|
|
357
|
-
plugin?: (string & {
|
|
358
|
-
readonly __kind: any;
|
|
359
|
-
}) | undefined;
|
|
360
357
|
accounts?: Record<string, string | ({
|
|
361
358
|
encryptedKey: string;
|
|
362
359
|
publicKeyHash: string & {
|
|
@@ -366,6 +363,10 @@ export declare const internalSchema: z.ZodObject<{
|
|
|
366
363
|
} & {
|
|
367
364
|
readonly __kind: any;
|
|
368
365
|
})> | undefined;
|
|
366
|
+
attributes?: Record<string, string | number | boolean> | undefined;
|
|
367
|
+
plugin?: (string & {
|
|
368
|
+
readonly __kind: any;
|
|
369
|
+
}) | undefined;
|
|
369
370
|
tzkt?: {
|
|
370
371
|
disableAutostartWithSandbox: boolean;
|
|
371
372
|
postgresqlPort: number;
|
|
@@ -453,16 +454,8 @@ export declare const internalSchema: z.ZodObject<{
|
|
|
453
454
|
};
|
|
454
455
|
}> | undefined;
|
|
455
456
|
network?: Record<string, Flatten<{
|
|
456
|
-
|
|
457
|
-
|
|
458
|
-
};
|
|
459
|
-
rpcUrl: string & {
|
|
460
|
-
readonly __kind: any;
|
|
461
|
-
};
|
|
462
|
-
protocol: string & {
|
|
463
|
-
readonly __kind: any;
|
|
464
|
-
};
|
|
465
|
-
faucet: Flatten<{
|
|
457
|
+
accounts?: Record<string, any> | undefined;
|
|
458
|
+
faucet?: Flatten<{
|
|
466
459
|
email?: string | undefined;
|
|
467
460
|
password?: string | undefined;
|
|
468
461
|
amount?: string | undefined;
|
|
@@ -473,15 +466,20 @@ export declare const internalSchema: z.ZodObject<{
|
|
|
473
466
|
};
|
|
474
467
|
} & {
|
|
475
468
|
readonly __kind: any;
|
|
476
|
-
}
|
|
469
|
+
}> | undefined;
|
|
470
|
+
label: string & {
|
|
471
|
+
readonly __kind: any;
|
|
472
|
+
};
|
|
473
|
+
rpcUrl: string & {
|
|
474
|
+
readonly __kind: any;
|
|
475
|
+
};
|
|
476
|
+
protocol: string & {
|
|
477
|
+
readonly __kind: any;
|
|
478
|
+
};
|
|
477
479
|
} & {
|
|
478
480
|
readonly __kind: any;
|
|
479
481
|
}>> | undefined;
|
|
480
482
|
sandbox?: Record<string, {
|
|
481
|
-
attributes?: Record<string, string | number | boolean> | undefined;
|
|
482
|
-
plugin?: (string & {
|
|
483
|
-
readonly __kind: any;
|
|
484
|
-
}) | undefined;
|
|
485
483
|
accounts?: Record<string, string | ({
|
|
486
484
|
encryptedKey: string;
|
|
487
485
|
publicKeyHash: string & {
|
|
@@ -491,6 +489,10 @@ export declare const internalSchema: z.ZodObject<{
|
|
|
491
489
|
} & {
|
|
492
490
|
readonly __kind: any;
|
|
493
491
|
})> | undefined;
|
|
492
|
+
attributes?: Record<string, string | number | boolean> | undefined;
|
|
493
|
+
plugin?: (string & {
|
|
494
|
+
readonly __kind: any;
|
|
495
|
+
}) | undefined;
|
|
494
496
|
tzkt?: {
|
|
495
497
|
disableAutostartWithSandbox: boolean;
|
|
496
498
|
postgresqlPort: number;
|
|
@@ -590,16 +592,8 @@ export declare const internalSchema: z.ZodObject<{
|
|
|
590
592
|
};
|
|
591
593
|
}> | undefined;
|
|
592
594
|
network?: Record<string, Flatten<{
|
|
593
|
-
|
|
594
|
-
|
|
595
|
-
};
|
|
596
|
-
rpcUrl: string & {
|
|
597
|
-
readonly __kind: any;
|
|
598
|
-
};
|
|
599
|
-
protocol: string & {
|
|
600
|
-
readonly __kind: any;
|
|
601
|
-
};
|
|
602
|
-
faucet: Flatten<{
|
|
595
|
+
accounts?: Record<string, any> | undefined;
|
|
596
|
+
faucet?: Flatten<{
|
|
603
597
|
email?: string | undefined;
|
|
604
598
|
password?: string | undefined;
|
|
605
599
|
amount?: string | undefined;
|
|
@@ -610,15 +604,20 @@ export declare const internalSchema: z.ZodObject<{
|
|
|
610
604
|
};
|
|
611
605
|
} & {
|
|
612
606
|
readonly __kind: any;
|
|
613
|
-
}
|
|
607
|
+
}> | undefined;
|
|
608
|
+
label: string & {
|
|
609
|
+
readonly __kind: any;
|
|
610
|
+
};
|
|
611
|
+
rpcUrl: string & {
|
|
612
|
+
readonly __kind: any;
|
|
613
|
+
};
|
|
614
|
+
protocol: string & {
|
|
615
|
+
readonly __kind: any;
|
|
616
|
+
};
|
|
614
617
|
} & {
|
|
615
618
|
readonly __kind: any;
|
|
616
619
|
}>> | undefined;
|
|
617
620
|
sandbox?: Record<string, {
|
|
618
|
-
attributes?: Record<string, string | number | boolean> | undefined;
|
|
619
|
-
plugin?: (string & {
|
|
620
|
-
readonly __kind: any;
|
|
621
|
-
}) | undefined;
|
|
622
621
|
accounts?: Record<string, string | ({
|
|
623
622
|
encryptedKey: string;
|
|
624
623
|
publicKeyHash: string & {
|
|
@@ -628,6 +627,10 @@ export declare const internalSchema: z.ZodObject<{
|
|
|
628
627
|
} & {
|
|
629
628
|
readonly __kind: any;
|
|
630
629
|
})> | undefined;
|
|
630
|
+
attributes?: Record<string, string | number | boolean> | undefined;
|
|
631
|
+
plugin?: (string & {
|
|
632
|
+
readonly __kind: any;
|
|
633
|
+
}) | undefined;
|
|
631
634
|
tzkt?: {
|
|
632
635
|
disableAutostartWithSandbox: boolean;
|
|
633
636
|
postgresqlPort: number;
|
|
@@ -770,16 +773,8 @@ export declare const internalSchema: z.ZodObject<{
|
|
|
770
773
|
};
|
|
771
774
|
}> | undefined;
|
|
772
775
|
network?: Record<string, Flatten<{
|
|
773
|
-
|
|
774
|
-
|
|
775
|
-
};
|
|
776
|
-
rpcUrl: string & {
|
|
777
|
-
readonly __kind: any;
|
|
778
|
-
};
|
|
779
|
-
protocol: string & {
|
|
780
|
-
readonly __kind: any;
|
|
781
|
-
};
|
|
782
|
-
faucet: Flatten<{
|
|
776
|
+
accounts?: Record<string, any> | undefined;
|
|
777
|
+
faucet?: Flatten<{
|
|
783
778
|
email?: string | undefined;
|
|
784
779
|
password?: string | undefined;
|
|
785
780
|
amount?: string | undefined;
|
|
@@ -790,15 +785,20 @@ export declare const internalSchema: z.ZodObject<{
|
|
|
790
785
|
};
|
|
791
786
|
} & {
|
|
792
787
|
readonly __kind: any;
|
|
793
|
-
}
|
|
788
|
+
}> | undefined;
|
|
789
|
+
label: string & {
|
|
790
|
+
readonly __kind: any;
|
|
791
|
+
};
|
|
792
|
+
rpcUrl: string & {
|
|
793
|
+
readonly __kind: any;
|
|
794
|
+
};
|
|
795
|
+
protocol: string & {
|
|
796
|
+
readonly __kind: any;
|
|
797
|
+
};
|
|
794
798
|
} & {
|
|
795
799
|
readonly __kind: any;
|
|
796
800
|
}>> | undefined;
|
|
797
801
|
sandbox?: Record<string, {
|
|
798
|
-
attributes?: Record<string, string | number | boolean> | undefined;
|
|
799
|
-
plugin?: (string & {
|
|
800
|
-
readonly __kind: any;
|
|
801
|
-
}) | undefined;
|
|
802
802
|
accounts?: Record<string, string | ({
|
|
803
803
|
encryptedKey: string;
|
|
804
804
|
publicKeyHash: string & {
|
|
@@ -808,6 +808,10 @@ export declare const internalSchema: z.ZodObject<{
|
|
|
808
808
|
} & {
|
|
809
809
|
readonly __kind: any;
|
|
810
810
|
})> | undefined;
|
|
811
|
+
attributes?: Record<string, string | number | boolean> | undefined;
|
|
812
|
+
plugin?: (string & {
|
|
813
|
+
readonly __kind: any;
|
|
814
|
+
}) | undefined;
|
|
811
815
|
tzkt?: {
|
|
812
816
|
disableAutostartWithSandbox: boolean;
|
|
813
817
|
postgresqlPort: number;
|
package/Operation.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"Operation.d.ts","sourceRoot":"","sources":["Operation.ts"],"names":[],"mappings":"AAAA,OAAmB,EAAE,OAAO,EAAE,MAAM,yBAAyB,CAAC;AAG9D,OAAO,KAAK,eAAe,MAAM,oCAAoC,CAAC;AAEtE,OAAO,KAAK,WAAW,MAAM,gCAAgC,CAAC;AAE9D,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAC;AAExB,aAAK,OAAO,GAAG,CAAC,KAAK,EAAE,eAAe,CAAC,CAAC,KAAK,CAAC,CAAC,SAAS,WAAW,CAAC,CAAC,EAAE,IAAI,EAAE,CAAC,KAAK,OAAO,CAAC;AAE3F,eAAO,MAAM,SAAS;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAoBE,CAAC;AAEzB,eAAO,MAAM,cAAc
|
|
1
|
+
{"version":3,"file":"Operation.d.ts","sourceRoot":"","sources":["Operation.ts"],"names":[],"mappings":"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"}
|
package/ParsedOperation.d.ts
CHANGED
|
@@ -152,16 +152,8 @@ export declare const rawSchema: z.ZodObject<Omit<{
|
|
|
152
152
|
};
|
|
153
153
|
}> | undefined;
|
|
154
154
|
network?: Record<string, import("@taqueria/protocol/Base").Flatten<{
|
|
155
|
-
|
|
156
|
-
|
|
157
|
-
};
|
|
158
|
-
rpcUrl: string & {
|
|
159
|
-
readonly __kind: any;
|
|
160
|
-
};
|
|
161
|
-
protocol: string & {
|
|
162
|
-
readonly __kind: any;
|
|
163
|
-
};
|
|
164
|
-
faucet: import("@taqueria/protocol/Base").Flatten<{
|
|
155
|
+
accounts?: Record<string, any> | undefined;
|
|
156
|
+
faucet?: import("@taqueria/protocol/Base").Flatten<{
|
|
165
157
|
email?: string | undefined;
|
|
166
158
|
password?: string | undefined;
|
|
167
159
|
amount?: string | undefined;
|
|
@@ -172,15 +164,20 @@ export declare const rawSchema: z.ZodObject<Omit<{
|
|
|
172
164
|
};
|
|
173
165
|
} & {
|
|
174
166
|
readonly __kind: any;
|
|
175
|
-
}
|
|
167
|
+
}> | undefined;
|
|
168
|
+
label: string & {
|
|
169
|
+
readonly __kind: any;
|
|
170
|
+
};
|
|
171
|
+
rpcUrl: string & {
|
|
172
|
+
readonly __kind: any;
|
|
173
|
+
};
|
|
174
|
+
protocol: string & {
|
|
175
|
+
readonly __kind: any;
|
|
176
|
+
};
|
|
176
177
|
} & {
|
|
177
178
|
readonly __kind: any;
|
|
178
179
|
}>> | undefined;
|
|
179
180
|
sandbox?: Record<string, {
|
|
180
|
-
attributes?: Record<string, string | number | boolean> | undefined;
|
|
181
|
-
plugin?: (string & {
|
|
182
|
-
readonly __kind: any;
|
|
183
|
-
}) | undefined;
|
|
184
181
|
accounts?: Record<string, string | ({
|
|
185
182
|
encryptedKey: string;
|
|
186
183
|
publicKeyHash: string & {
|
|
@@ -190,6 +187,10 @@ export declare const rawSchema: z.ZodObject<Omit<{
|
|
|
190
187
|
} & {
|
|
191
188
|
readonly __kind: any;
|
|
192
189
|
})> | undefined;
|
|
190
|
+
attributes?: Record<string, string | number | boolean> | undefined;
|
|
191
|
+
plugin?: (string & {
|
|
192
|
+
readonly __kind: any;
|
|
193
|
+
}) | undefined;
|
|
193
194
|
tzkt?: {
|
|
194
195
|
disableAutostartWithSandbox: boolean;
|
|
195
196
|
postgresqlPort: number;
|
package/ParsedOperation.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"ParsedOperation.d.ts","sourceRoot":"","sources":["ParsedOperation.ts"],"names":[],"mappings":"AAEA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAC;AAOxB,eAAO,MAAM,SAAS
|
|
1
|
+
{"version":3,"file":"ParsedOperation.d.ts","sourceRoot":"","sources":["ParsedOperation.ts"],"names":[],"mappings":"AAEA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAC;AAOxB,eAAO,MAAM,SAAS;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAGO,CAAC;AAK9B,eAAO,MAAiB,gBAAgB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GAAE,OAAO;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAK/C,CAAC;AAEH,oBAAY,eAAe,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,gBAAgB,CAAC,MAAM,CAAC,CAAC;AACtE,oBAAY,CAAC,GAAG,eAAe,CAAC;AAEhC,eAAO,MAAQ,MAAM;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GAAE,IAAI;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;IAAE,EAAE;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAAY,CAAC;AAE5C,eAAO,MAAM,OAAO;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAGnB,CAAC"}
|
package/ParsedTemplate.d.ts
CHANGED
|
@@ -83,16 +83,8 @@ export declare const rawSchema: z.ZodObject<z.extendShape<{
|
|
|
83
83
|
};
|
|
84
84
|
}> | undefined;
|
|
85
85
|
network?: Record<string, import("@taqueria/protocol/Base").Flatten<{
|
|
86
|
-
|
|
87
|
-
|
|
88
|
-
};
|
|
89
|
-
rpcUrl: string & {
|
|
90
|
-
readonly __kind: any;
|
|
91
|
-
};
|
|
92
|
-
protocol: string & {
|
|
93
|
-
readonly __kind: any;
|
|
94
|
-
};
|
|
95
|
-
faucet: import("@taqueria/protocol/Base").Flatten<{
|
|
86
|
+
accounts?: Record<string, any> | undefined;
|
|
87
|
+
faucet?: import("@taqueria/protocol/Base").Flatten<{
|
|
96
88
|
email?: string | undefined;
|
|
97
89
|
password?: string | undefined;
|
|
98
90
|
amount?: string | undefined;
|
|
@@ -103,15 +95,20 @@ export declare const rawSchema: z.ZodObject<z.extendShape<{
|
|
|
103
95
|
};
|
|
104
96
|
} & {
|
|
105
97
|
readonly __kind: any;
|
|
106
|
-
}
|
|
98
|
+
}> | undefined;
|
|
99
|
+
label: string & {
|
|
100
|
+
readonly __kind: any;
|
|
101
|
+
};
|
|
102
|
+
rpcUrl: string & {
|
|
103
|
+
readonly __kind: any;
|
|
104
|
+
};
|
|
105
|
+
protocol: string & {
|
|
106
|
+
readonly __kind: any;
|
|
107
|
+
};
|
|
107
108
|
} & {
|
|
108
109
|
readonly __kind: any;
|
|
109
110
|
}>> | undefined;
|
|
110
111
|
sandbox?: Record<string, {
|
|
111
|
-
attributes?: Record<string, string | number | boolean> | undefined;
|
|
112
|
-
plugin?: (string & {
|
|
113
|
-
readonly __kind: any;
|
|
114
|
-
}) | undefined;
|
|
115
112
|
accounts?: Record<string, string | ({
|
|
116
113
|
encryptedKey: string;
|
|
117
114
|
publicKeyHash: string & {
|
|
@@ -121,6 +118,10 @@ export declare const rawSchema: z.ZodObject<z.extendShape<{
|
|
|
121
118
|
} & {
|
|
122
119
|
readonly __kind: any;
|
|
123
120
|
})> | undefined;
|
|
121
|
+
attributes?: Record<string, string | number | boolean> | undefined;
|
|
122
|
+
plugin?: (string & {
|
|
123
|
+
readonly __kind: any;
|
|
124
|
+
}) | undefined;
|
|
124
125
|
tzkt?: {
|
|
125
126
|
disableAutostartWithSandbox: boolean;
|
|
126
127
|
postgresqlPort: number;
|
|
@@ -208,16 +209,8 @@ export declare const rawSchema: z.ZodObject<z.extendShape<{
|
|
|
208
209
|
};
|
|
209
210
|
}> | undefined;
|
|
210
211
|
network?: Record<string, import("@taqueria/protocol/Base").Flatten<{
|
|
211
|
-
|
|
212
|
-
|
|
213
|
-
};
|
|
214
|
-
rpcUrl: string & {
|
|
215
|
-
readonly __kind: any;
|
|
216
|
-
};
|
|
217
|
-
protocol: string & {
|
|
218
|
-
readonly __kind: any;
|
|
219
|
-
};
|
|
220
|
-
faucet: import("@taqueria/protocol/Base").Flatten<{
|
|
212
|
+
accounts?: Record<string, any> | undefined;
|
|
213
|
+
faucet?: import("@taqueria/protocol/Base").Flatten<{
|
|
221
214
|
email?: string | undefined;
|
|
222
215
|
password?: string | undefined;
|
|
223
216
|
amount?: string | undefined;
|
|
@@ -228,15 +221,20 @@ export declare const rawSchema: z.ZodObject<z.extendShape<{
|
|
|
228
221
|
};
|
|
229
222
|
} & {
|
|
230
223
|
readonly __kind: any;
|
|
231
|
-
}
|
|
224
|
+
}> | undefined;
|
|
225
|
+
label: string & {
|
|
226
|
+
readonly __kind: any;
|
|
227
|
+
};
|
|
228
|
+
rpcUrl: string & {
|
|
229
|
+
readonly __kind: any;
|
|
230
|
+
};
|
|
231
|
+
protocol: string & {
|
|
232
|
+
readonly __kind: any;
|
|
233
|
+
};
|
|
232
234
|
} & {
|
|
233
235
|
readonly __kind: any;
|
|
234
236
|
}>> | undefined;
|
|
235
237
|
sandbox?: Record<string, {
|
|
236
|
-
attributes?: Record<string, string | number | boolean> | undefined;
|
|
237
|
-
plugin?: (string & {
|
|
238
|
-
readonly __kind: any;
|
|
239
|
-
}) | undefined;
|
|
240
238
|
accounts?: Record<string, string | ({
|
|
241
239
|
encryptedKey: string;
|
|
242
240
|
publicKeyHash: string & {
|
|
@@ -246,6 +244,10 @@ export declare const rawSchema: z.ZodObject<z.extendShape<{
|
|
|
246
244
|
} & {
|
|
247
245
|
readonly __kind: any;
|
|
248
246
|
})> | undefined;
|
|
247
|
+
attributes?: Record<string, string | number | boolean> | undefined;
|
|
248
|
+
plugin?: (string & {
|
|
249
|
+
readonly __kind: any;
|
|
250
|
+
}) | undefined;
|
|
249
251
|
tzkt?: {
|
|
250
252
|
disableAutostartWithSandbox: boolean;
|
|
251
253
|
postgresqlPort: number;
|
package/ParsedTemplate.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"ParsedTemplate.d.ts","sourceRoot":"","sources":["ParsedTemplate.ts"],"names":[],"mappings":"AAGA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAC;AAUxB,eAAO,MAAM,SAAS
|
|
1
|
+
{"version":3,"file":"ParsedTemplate.d.ts","sourceRoot":"","sources":["ParsedTemplate.ts"],"names":[],"mappings":"AAGA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAC;AAUxB,eAAO,MAAM,SAAS;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAMM,CAAC;AAK7B,eAAO,MAAiB,gBAAgB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GAAE,OAAO;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAK/C,CAAC;AAEH,oBAAY,cAAc,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,gBAAgB,CAAC,MAAM,CAAC,CAAC;AACrE,oBAAY,CAAC,GAAG,cAAc,CAAC;AAE/B,eAAO,MAAQ,MAAM;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GAAE,IAAI;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;IAAE,EAAE;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAAY,CAAC;AAE5C,eAAO,MAAM,OAAO;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAGnB,CAAC"}
|