@taqueria/protocol 0.20.2 → 0.21.5
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/Template.d.ts
CHANGED
|
@@ -83,16 +83,8 @@ export declare const rawSchema: z.ZodObject<{
|
|
|
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<{
|
|
|
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<{
|
|
|
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<{
|
|
|
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<{
|
|
|
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<{
|
|
|
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;
|
|
@@ -381,16 +383,8 @@ export declare const rawSchema: z.ZodObject<{
|
|
|
381
383
|
};
|
|
382
384
|
}> | undefined;
|
|
383
385
|
network?: Record<string, import("@taqueria/protocol/Base").Flatten<{
|
|
384
|
-
|
|
385
|
-
|
|
386
|
-
};
|
|
387
|
-
rpcUrl: string & {
|
|
388
|
-
readonly __kind: any;
|
|
389
|
-
};
|
|
390
|
-
protocol: string & {
|
|
391
|
-
readonly __kind: any;
|
|
392
|
-
};
|
|
393
|
-
faucet: import("@taqueria/protocol/Base").Flatten<{
|
|
386
|
+
accounts?: Record<string, any> | undefined;
|
|
387
|
+
faucet?: import("@taqueria/protocol/Base").Flatten<{
|
|
394
388
|
email?: string | undefined;
|
|
395
389
|
password?: string | undefined;
|
|
396
390
|
amount?: string | undefined;
|
|
@@ -401,15 +395,20 @@ export declare const rawSchema: z.ZodObject<{
|
|
|
401
395
|
};
|
|
402
396
|
} & {
|
|
403
397
|
readonly __kind: any;
|
|
404
|
-
}
|
|
398
|
+
}> | undefined;
|
|
399
|
+
label: string & {
|
|
400
|
+
readonly __kind: any;
|
|
401
|
+
};
|
|
402
|
+
rpcUrl: string & {
|
|
403
|
+
readonly __kind: any;
|
|
404
|
+
};
|
|
405
|
+
protocol: string & {
|
|
406
|
+
readonly __kind: any;
|
|
407
|
+
};
|
|
405
408
|
} & {
|
|
406
409
|
readonly __kind: any;
|
|
407
410
|
}>> | undefined;
|
|
408
411
|
sandbox?: Record<string, {
|
|
409
|
-
attributes?: Record<string, string | number | boolean> | undefined;
|
|
410
|
-
plugin?: (string & {
|
|
411
|
-
readonly __kind: any;
|
|
412
|
-
}) | undefined;
|
|
413
412
|
accounts?: Record<string, string | ({
|
|
414
413
|
encryptedKey: string;
|
|
415
414
|
publicKeyHash: string & {
|
|
@@ -419,6 +418,10 @@ export declare const rawSchema: z.ZodObject<{
|
|
|
419
418
|
} & {
|
|
420
419
|
readonly __kind: any;
|
|
421
420
|
})> | undefined;
|
|
421
|
+
attributes?: Record<string, string | number | boolean> | undefined;
|
|
422
|
+
plugin?: (string & {
|
|
423
|
+
readonly __kind: any;
|
|
424
|
+
}) | undefined;
|
|
422
425
|
tzkt?: {
|
|
423
426
|
disableAutostartWithSandbox: boolean;
|
|
424
427
|
postgresqlPort: number;
|
|
@@ -575,16 +578,8 @@ export declare const internalSchema: z.ZodObject<z.extendShape<{
|
|
|
575
578
|
};
|
|
576
579
|
}> | undefined;
|
|
577
580
|
network?: Record<string, import("@taqueria/protocol/Base").Flatten<{
|
|
578
|
-
|
|
579
|
-
|
|
580
|
-
};
|
|
581
|
-
rpcUrl: string & {
|
|
582
|
-
readonly __kind: any;
|
|
583
|
-
};
|
|
584
|
-
protocol: string & {
|
|
585
|
-
readonly __kind: any;
|
|
586
|
-
};
|
|
587
|
-
faucet: import("@taqueria/protocol/Base").Flatten<{
|
|
581
|
+
accounts?: Record<string, any> | undefined;
|
|
582
|
+
faucet?: import("@taqueria/protocol/Base").Flatten<{
|
|
588
583
|
email?: string | undefined;
|
|
589
584
|
password?: string | undefined;
|
|
590
585
|
amount?: string | undefined;
|
|
@@ -595,15 +590,20 @@ export declare const internalSchema: z.ZodObject<z.extendShape<{
|
|
|
595
590
|
};
|
|
596
591
|
} & {
|
|
597
592
|
readonly __kind: any;
|
|
598
|
-
}
|
|
593
|
+
}> | undefined;
|
|
594
|
+
label: string & {
|
|
595
|
+
readonly __kind: any;
|
|
596
|
+
};
|
|
597
|
+
rpcUrl: string & {
|
|
598
|
+
readonly __kind: any;
|
|
599
|
+
};
|
|
600
|
+
protocol: string & {
|
|
601
|
+
readonly __kind: any;
|
|
602
|
+
};
|
|
599
603
|
} & {
|
|
600
604
|
readonly __kind: any;
|
|
601
605
|
}>> | undefined;
|
|
602
606
|
sandbox?: Record<string, {
|
|
603
|
-
attributes?: Record<string, string | number | boolean> | undefined;
|
|
604
|
-
plugin?: (string & {
|
|
605
|
-
readonly __kind: any;
|
|
606
|
-
}) | undefined;
|
|
607
607
|
accounts?: Record<string, string | ({
|
|
608
608
|
encryptedKey: string;
|
|
609
609
|
publicKeyHash: string & {
|
|
@@ -613,6 +613,10 @@ export declare const internalSchema: z.ZodObject<z.extendShape<{
|
|
|
613
613
|
} & {
|
|
614
614
|
readonly __kind: any;
|
|
615
615
|
})> | undefined;
|
|
616
|
+
attributes?: Record<string, string | number | boolean> | undefined;
|
|
617
|
+
plugin?: (string & {
|
|
618
|
+
readonly __kind: any;
|
|
619
|
+
}) | undefined;
|
|
616
620
|
tzkt?: {
|
|
617
621
|
disableAutostartWithSandbox: boolean;
|
|
618
622
|
postgresqlPort: number;
|
|
@@ -700,16 +704,8 @@ export declare const internalSchema: z.ZodObject<z.extendShape<{
|
|
|
700
704
|
};
|
|
701
705
|
}> | undefined;
|
|
702
706
|
network?: Record<string, import("@taqueria/protocol/Base").Flatten<{
|
|
703
|
-
|
|
704
|
-
|
|
705
|
-
};
|
|
706
|
-
rpcUrl: string & {
|
|
707
|
-
readonly __kind: any;
|
|
708
|
-
};
|
|
709
|
-
protocol: string & {
|
|
710
|
-
readonly __kind: any;
|
|
711
|
-
};
|
|
712
|
-
faucet: import("@taqueria/protocol/Base").Flatten<{
|
|
707
|
+
accounts?: Record<string, any> | undefined;
|
|
708
|
+
faucet?: import("@taqueria/protocol/Base").Flatten<{
|
|
713
709
|
email?: string | undefined;
|
|
714
710
|
password?: string | undefined;
|
|
715
711
|
amount?: string | undefined;
|
|
@@ -720,15 +716,20 @@ export declare const internalSchema: z.ZodObject<z.extendShape<{
|
|
|
720
716
|
};
|
|
721
717
|
} & {
|
|
722
718
|
readonly __kind: any;
|
|
723
|
-
}
|
|
719
|
+
}> | undefined;
|
|
720
|
+
label: string & {
|
|
721
|
+
readonly __kind: any;
|
|
722
|
+
};
|
|
723
|
+
rpcUrl: string & {
|
|
724
|
+
readonly __kind: any;
|
|
725
|
+
};
|
|
726
|
+
protocol: string & {
|
|
727
|
+
readonly __kind: any;
|
|
728
|
+
};
|
|
724
729
|
} & {
|
|
725
730
|
readonly __kind: any;
|
|
726
731
|
}>> | undefined;
|
|
727
732
|
sandbox?: Record<string, {
|
|
728
|
-
attributes?: Record<string, string | number | boolean> | undefined;
|
|
729
|
-
plugin?: (string & {
|
|
730
|
-
readonly __kind: any;
|
|
731
|
-
}) | undefined;
|
|
732
733
|
accounts?: Record<string, string | ({
|
|
733
734
|
encryptedKey: string;
|
|
734
735
|
publicKeyHash: string & {
|
|
@@ -738,6 +739,10 @@ export declare const internalSchema: z.ZodObject<z.extendShape<{
|
|
|
738
739
|
} & {
|
|
739
740
|
readonly __kind: any;
|
|
740
741
|
})> | undefined;
|
|
742
|
+
attributes?: Record<string, string | number | boolean> | undefined;
|
|
743
|
+
plugin?: (string & {
|
|
744
|
+
readonly __kind: any;
|
|
745
|
+
}) | undefined;
|
|
741
746
|
tzkt?: {
|
|
742
747
|
disableAutostartWithSandbox: boolean;
|
|
743
748
|
postgresqlPort: number;
|
|
@@ -975,16 +980,8 @@ export declare const internalSchema: z.ZodObject<z.extendShape<{
|
|
|
975
980
|
};
|
|
976
981
|
}> | undefined;
|
|
977
982
|
network?: Record<string, import("@taqueria/protocol/Base").Flatten<{
|
|
978
|
-
|
|
979
|
-
|
|
980
|
-
};
|
|
981
|
-
rpcUrl: string & {
|
|
982
|
-
readonly __kind: any;
|
|
983
|
-
};
|
|
984
|
-
protocol: string & {
|
|
985
|
-
readonly __kind: any;
|
|
986
|
-
};
|
|
987
|
-
faucet: import("@taqueria/protocol/Base").Flatten<{
|
|
983
|
+
accounts?: Record<string, any> | undefined;
|
|
984
|
+
faucet?: import("@taqueria/protocol/Base").Flatten<{
|
|
988
985
|
email?: string | undefined;
|
|
989
986
|
password?: string | undefined;
|
|
990
987
|
amount?: string | undefined;
|
|
@@ -995,15 +992,20 @@ export declare const internalSchema: z.ZodObject<z.extendShape<{
|
|
|
995
992
|
};
|
|
996
993
|
} & {
|
|
997
994
|
readonly __kind: any;
|
|
998
|
-
}
|
|
995
|
+
}> | undefined;
|
|
996
|
+
label: string & {
|
|
997
|
+
readonly __kind: any;
|
|
998
|
+
};
|
|
999
|
+
rpcUrl: string & {
|
|
1000
|
+
readonly __kind: any;
|
|
1001
|
+
};
|
|
1002
|
+
protocol: string & {
|
|
1003
|
+
readonly __kind: any;
|
|
1004
|
+
};
|
|
999
1005
|
} & {
|
|
1000
1006
|
readonly __kind: any;
|
|
1001
1007
|
}>> | undefined;
|
|
1002
1008
|
sandbox?: Record<string, {
|
|
1003
|
-
attributes?: Record<string, string | number | boolean> | undefined;
|
|
1004
|
-
plugin?: (string & {
|
|
1005
|
-
readonly __kind: any;
|
|
1006
|
-
}) | undefined;
|
|
1007
1009
|
accounts?: Record<string, string | ({
|
|
1008
1010
|
encryptedKey: string;
|
|
1009
1011
|
publicKeyHash: string & {
|
|
@@ -1013,6 +1015,10 @@ export declare const internalSchema: z.ZodObject<z.extendShape<{
|
|
|
1013
1015
|
} & {
|
|
1014
1016
|
readonly __kind: any;
|
|
1015
1017
|
})> | undefined;
|
|
1018
|
+
attributes?: Record<string, string | number | boolean> | undefined;
|
|
1019
|
+
plugin?: (string & {
|
|
1020
|
+
readonly __kind: any;
|
|
1021
|
+
}) | undefined;
|
|
1016
1022
|
tzkt?: {
|
|
1017
1023
|
disableAutostartWithSandbox: boolean;
|
|
1018
1024
|
postgresqlPort: number;
|
package/Template.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"Template.d.ts","sourceRoot":"","sources":["Template.ts"],"names":[],"mappings":"AAQA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAC;AAmBxB,eAAO,MAAM,SAAS
|
|
1
|
+
{"version":3,"file":"Template.d.ts","sourceRoot":"","sources":["Template.ts"],"names":[],"mappings":"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"}
|
package/package.json
CHANGED