@wowok/agent-mcp 2.2.22 → 2.3.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/dist/index.d.ts +86 -126
- package/dist/schema/call/allocation.d.ts +1 -1
- package/dist/schema/call/arbitration.d.ts +1 -1
- package/dist/schema/call/arbitration.js +1 -1
- package/dist/schema/call/base.d.ts +1 -1
- package/dist/schema/call/contact.d.ts +1 -1
- package/dist/schema/call/demand.d.ts +1 -1
- package/dist/schema/call/demand.js +1 -1
- package/dist/schema/call/guard.d.ts +3 -3
- package/dist/schema/call/machine.d.ts +4 -4
- package/dist/schema/call/machine.js +1 -1
- package/dist/schema/call/order.d.ts +15 -15
- package/dist/schema/call/order.js +1 -1
- package/dist/schema/call/payment.d.ts +1 -1
- package/dist/schema/call/permission.d.ts +1 -1
- package/dist/schema/call/permission.js +1 -1
- package/dist/schema/call/personal.d.ts +1 -1
- package/dist/schema/call/progress.d.ts +1 -1
- package/dist/schema/call/proof.d.ts +13 -98
- package/dist/schema/call/proof.js +3 -3
- package/dist/schema/call/repository.d.ts +79 -79
- package/dist/schema/call/repository.js +4 -3
- package/dist/schema/call/reward.d.ts +1 -1
- package/dist/schema/call/reward.js +1 -1
- package/dist/schema/call/service.d.ts +46 -46
- package/dist/schema/call/service.js +3 -3
- package/dist/schema/call/treasury.d.ts +9 -69
- package/dist/schema/call/treasury.js +1 -1
- package/dist/schema/common/index.d.ts +3 -3
- package/dist/schema/common/index.js +2 -0
- package/dist/schema/local/index.d.ts +11 -11
- package/dist/schema/messenger/index.d.ts +1 -1
- package/dist/schema/query/index.d.ts +58 -58
- package/dist/schema/query/index.js +2 -2
- package/dist/schemas/account_operation.schema.json +4 -2
- package/dist/schemas/guard2file.schema.json +2 -1
- package/dist/schemas/index.json +1 -1
- package/dist/schemas/machineNode2file.schema.json +2 -1
- package/dist/schemas/messenger_operation.schema.json +2 -1
- package/dist/schemas/onchain_events.schema.json +2 -1
- package/dist/schemas/onchain_operations_allocation.schema.json +2 -1
- package/dist/schemas/onchain_operations_arbitration.schema.json +3 -2
- package/dist/schemas/onchain_operations_contact.schema.json +2 -1
- package/dist/schemas/onchain_operations_demand.schema.json +3 -2
- package/dist/schemas/onchain_operations_gen_passport.schema.json +4 -2
- package/dist/schemas/onchain_operations_guard.schema.json +2 -1
- package/dist/schemas/onchain_operations_machine.schema.json +10 -5
- package/dist/schemas/onchain_operations_order.schema.json +6 -5
- package/dist/schemas/onchain_operations_payment.schema.json +2 -1
- package/dist/schemas/onchain_operations_permission.schema.json +3 -2
- package/dist/schemas/onchain_operations_personal.schema.json +2 -1
- package/dist/schemas/onchain_operations_progress.schema.json +2 -1
- package/dist/schemas/onchain_operations_repository.schema.json +9 -5
- package/dist/schemas/onchain_operations_reward.schema.json +3 -2
- package/dist/schemas/onchain_operations_service.schema.json +6 -2
- package/dist/schemas/onchain_operations_treasury.schema.json +4 -3
- package/package.json +2 -2
package/dist/index.d.ts
CHANGED
|
@@ -484,8 +484,8 @@ declare const OnchainOperationsSchema: z.ZodEffects<z.ZodDiscriminatedUnion<"ope
|
|
|
484
484
|
discount_value: z.ZodUnion<[z.ZodNumber, z.ZodString]>;
|
|
485
485
|
benchmark: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodString]>>;
|
|
486
486
|
time_ms_start: z.ZodOptional<z.ZodNumber>;
|
|
487
|
-
time_ms_end: z.
|
|
488
|
-
count: z.
|
|
487
|
+
time_ms_end: z.ZodNumber;
|
|
488
|
+
count: z.ZodNumber;
|
|
489
489
|
recipient: z.ZodObject<{
|
|
490
490
|
entities: z.ZodArray<z.ZodObject<{
|
|
491
491
|
name_or_address: z.ZodOptional<z.ZodEffects<z.ZodString, string, string>>;
|
|
@@ -511,7 +511,7 @@ declare const OnchainOperationsSchema: z.ZodEffects<z.ZodDiscriminatedUnion<"ope
|
|
|
511
511
|
}[];
|
|
512
512
|
check_all_founded?: boolean | undefined;
|
|
513
513
|
}>;
|
|
514
|
-
transferable: z.
|
|
514
|
+
transferable: z.ZodBoolean;
|
|
515
515
|
}, "strict", z.ZodTypeAny, {
|
|
516
516
|
name: string;
|
|
517
517
|
recipient: {
|
|
@@ -521,13 +521,13 @@ declare const OnchainOperationsSchema: z.ZodEffects<z.ZodDiscriminatedUnion<"ope
|
|
|
521
521
|
}[];
|
|
522
522
|
check_all_founded?: boolean | undefined;
|
|
523
523
|
};
|
|
524
|
+
count: number;
|
|
524
525
|
discount_type: import("@wowok/wowok").DiscountType;
|
|
526
|
+
transferable: boolean;
|
|
525
527
|
discount_value: string | number;
|
|
526
|
-
|
|
528
|
+
time_ms_end: number;
|
|
527
529
|
benchmark?: string | number | undefined;
|
|
528
|
-
transferable?: boolean | undefined;
|
|
529
530
|
time_ms_start?: number | undefined;
|
|
530
|
-
time_ms_end?: number | undefined;
|
|
531
531
|
}, {
|
|
532
532
|
name: string;
|
|
533
533
|
recipient: {
|
|
@@ -537,13 +537,13 @@ declare const OnchainOperationsSchema: z.ZodEffects<z.ZodDiscriminatedUnion<"ope
|
|
|
537
537
|
}[];
|
|
538
538
|
check_all_founded?: boolean | undefined;
|
|
539
539
|
};
|
|
540
|
+
count: number;
|
|
540
541
|
discount_type: import("@wowok/wowok").DiscountType;
|
|
542
|
+
transferable: boolean;
|
|
541
543
|
discount_value: string | number;
|
|
542
|
-
|
|
544
|
+
time_ms_end: number;
|
|
543
545
|
benchmark?: string | number | undefined;
|
|
544
|
-
transferable?: boolean | undefined;
|
|
545
546
|
time_ms_start?: number | undefined;
|
|
546
|
-
time_ms_end?: number | undefined;
|
|
547
547
|
}>>;
|
|
548
548
|
discount_destroy: z.ZodOptional<z.ZodArray<z.ZodEffects<z.ZodString, string, string>, "many">>;
|
|
549
549
|
customer_required: z.ZodOptional<z.ZodArray<z.ZodEffects<z.ZodString, string, string>, "many">>;
|
|
@@ -845,13 +845,13 @@ declare const OnchainOperationsSchema: z.ZodEffects<z.ZodDiscriminatedUnion<"ope
|
|
|
845
845
|
}[];
|
|
846
846
|
check_all_founded?: boolean | undefined;
|
|
847
847
|
};
|
|
848
|
+
count: number;
|
|
848
849
|
discount_type: import("@wowok/wowok").DiscountType;
|
|
850
|
+
transferable: boolean;
|
|
849
851
|
discount_value: string | number;
|
|
850
|
-
|
|
852
|
+
time_ms_end: number;
|
|
851
853
|
benchmark?: string | number | undefined;
|
|
852
|
-
transferable?: boolean | undefined;
|
|
853
854
|
time_ms_start?: number | undefined;
|
|
854
|
-
time_ms_end?: number | undefined;
|
|
855
855
|
} | undefined;
|
|
856
856
|
machine?: string | null | undefined;
|
|
857
857
|
sales?: {
|
|
@@ -1037,13 +1037,13 @@ declare const OnchainOperationsSchema: z.ZodEffects<z.ZodDiscriminatedUnion<"ope
|
|
|
1037
1037
|
}[];
|
|
1038
1038
|
check_all_founded?: boolean | undefined;
|
|
1039
1039
|
};
|
|
1040
|
+
count: number;
|
|
1040
1041
|
discount_type: import("@wowok/wowok").DiscountType;
|
|
1042
|
+
transferable: boolean;
|
|
1041
1043
|
discount_value: string | number;
|
|
1042
|
-
|
|
1044
|
+
time_ms_end: number;
|
|
1043
1045
|
benchmark?: string | number | undefined;
|
|
1044
|
-
transferable?: boolean | undefined;
|
|
1045
1046
|
time_ms_start?: number | undefined;
|
|
1046
|
-
time_ms_end?: number | undefined;
|
|
1047
1047
|
} | undefined;
|
|
1048
1048
|
machine?: string | null | undefined;
|
|
1049
1049
|
sales?: {
|
|
@@ -1185,7 +1185,7 @@ declare const OnchainOperationsSchema: z.ZodEffects<z.ZodDiscriminatedUnion<"ope
|
|
|
1185
1185
|
account: z.ZodDefault<z.ZodOptional<z.ZodEffects<z.ZodString, string, string>>>;
|
|
1186
1186
|
permission_guard: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
1187
1187
|
no_cache: z.ZodOptional<z.ZodBoolean>;
|
|
1188
|
-
network: z.ZodOptional<z.ZodEnum<[import("@wowok/wowok").ENTRYPOINT.Localnet, import("@wowok/wowok").ENTRYPOINT.Testnet]>>;
|
|
1188
|
+
network: z.ZodOptional<z.ZodEnum<[import("@wowok/wowok").ENTRYPOINT.Localnet, import("@wowok/wowok").ENTRYPOINT.Testnet, import("@wowok/wowok").ENTRYPOINT.Devnet]>>;
|
|
1189
1189
|
referrer: z.ZodOptional<z.ZodEffects<z.ZodString, string, string>>;
|
|
1190
1190
|
}, "strict", z.ZodTypeAny, {
|
|
1191
1191
|
account: string;
|
|
@@ -1430,13 +1430,13 @@ declare const OnchainOperationsSchema: z.ZodEffects<z.ZodDiscriminatedUnion<"ope
|
|
|
1430
1430
|
}[];
|
|
1431
1431
|
check_all_founded?: boolean | undefined;
|
|
1432
1432
|
};
|
|
1433
|
+
count: number;
|
|
1433
1434
|
discount_type: import("@wowok/wowok").DiscountType;
|
|
1435
|
+
transferable: boolean;
|
|
1434
1436
|
discount_value: string | number;
|
|
1435
|
-
|
|
1437
|
+
time_ms_end: number;
|
|
1436
1438
|
benchmark?: string | number | undefined;
|
|
1437
|
-
transferable?: boolean | undefined;
|
|
1438
1439
|
time_ms_start?: number | undefined;
|
|
1439
|
-
time_ms_end?: number | undefined;
|
|
1440
1440
|
} | undefined;
|
|
1441
1441
|
machine?: string | null | undefined;
|
|
1442
1442
|
sales?: {
|
|
@@ -1659,13 +1659,13 @@ declare const OnchainOperationsSchema: z.ZodEffects<z.ZodDiscriminatedUnion<"ope
|
|
|
1659
1659
|
}[];
|
|
1660
1660
|
check_all_founded?: boolean | undefined;
|
|
1661
1661
|
};
|
|
1662
|
+
count: number;
|
|
1662
1663
|
discount_type: import("@wowok/wowok").DiscountType;
|
|
1664
|
+
transferable: boolean;
|
|
1663
1665
|
discount_value: string | number;
|
|
1664
|
-
|
|
1666
|
+
time_ms_end: number;
|
|
1665
1667
|
benchmark?: string | number | undefined;
|
|
1666
|
-
transferable?: boolean | undefined;
|
|
1667
1668
|
time_ms_start?: number | undefined;
|
|
1668
|
-
time_ms_end?: number | undefined;
|
|
1669
1669
|
} | undefined;
|
|
1670
1670
|
machine?: string | null | undefined;
|
|
1671
1671
|
sales?: {
|
|
@@ -2600,7 +2600,7 @@ declare const OnchainOperationsSchema: z.ZodEffects<z.ZodDiscriminatedUnion<"ope
|
|
|
2600
2600
|
balance: string | number;
|
|
2601
2601
|
token_type: string;
|
|
2602
2602
|
}>, z.ZodLiteral<"recently">]>>;
|
|
2603
|
-
um: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNull]>>;
|
|
2603
|
+
um: z.ZodOptional<z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodNull]>>;
|
|
2604
2604
|
}, "strict", z.ZodTypeAny, {
|
|
2605
2605
|
object: string | {
|
|
2606
2606
|
name?: string | undefined;
|
|
@@ -2916,7 +2916,7 @@ declare const OnchainOperationsSchema: z.ZodEffects<z.ZodDiscriminatedUnion<"ope
|
|
|
2916
2916
|
account: z.ZodDefault<z.ZodOptional<z.ZodEffects<z.ZodString, string, string>>>;
|
|
2917
2917
|
permission_guard: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
2918
2918
|
no_cache: z.ZodOptional<z.ZodBoolean>;
|
|
2919
|
-
network: z.ZodOptional<z.ZodEnum<[import("@wowok/wowok").ENTRYPOINT.Localnet, import("@wowok/wowok").ENTRYPOINT.Testnet]>>;
|
|
2919
|
+
network: z.ZodOptional<z.ZodEnum<[import("@wowok/wowok").ENTRYPOINT.Localnet, import("@wowok/wowok").ENTRYPOINT.Testnet, import("@wowok/wowok").ENTRYPOINT.Devnet]>>;
|
|
2920
2920
|
referrer: z.ZodOptional<z.ZodEffects<z.ZodString, string, string>>;
|
|
2921
2921
|
}, "strict", z.ZodTypeAny, {
|
|
2922
2922
|
account: string;
|
|
@@ -3674,7 +3674,7 @@ declare const OnchainOperationsSchema: z.ZodEffects<z.ZodDiscriminatedUnion<"ope
|
|
|
3674
3674
|
account: z.ZodDefault<z.ZodOptional<z.ZodEffects<z.ZodString, string, string>>>;
|
|
3675
3675
|
permission_guard: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
3676
3676
|
no_cache: z.ZodOptional<z.ZodBoolean>;
|
|
3677
|
-
network: z.ZodOptional<z.ZodEnum<[import("@wowok/wowok").ENTRYPOINT.Localnet, import("@wowok/wowok").ENTRYPOINT.Testnet]>>;
|
|
3677
|
+
network: z.ZodOptional<z.ZodEnum<[import("@wowok/wowok").ENTRYPOINT.Localnet, import("@wowok/wowok").ENTRYPOINT.Testnet, import("@wowok/wowok").ENTRYPOINT.Devnet]>>;
|
|
3678
3678
|
referrer: z.ZodOptional<z.ZodEffects<z.ZodString, string, string>>;
|
|
3679
3679
|
}, "strict", z.ZodTypeAny, {
|
|
3680
3680
|
account: string;
|
|
@@ -4199,7 +4199,7 @@ declare const OnchainOperationsSchema: z.ZodEffects<z.ZodDiscriminatedUnion<"ope
|
|
|
4199
4199
|
name: z.ZodEffects<z.ZodString, string, string>;
|
|
4200
4200
|
items: z.ZodArray<z.ZodObject<{
|
|
4201
4201
|
data: z.ZodArray<z.ZodObject<{
|
|
4202
|
-
id: z.ZodUnion<[z.ZodObject<{
|
|
4202
|
+
id: z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodObject<{
|
|
4203
4203
|
name_or_address: z.ZodOptional<z.ZodEffects<z.ZodString, string, string>>;
|
|
4204
4204
|
local_mark_first: z.ZodOptional<z.ZodBoolean>;
|
|
4205
4205
|
}, "strict", z.ZodTypeAny, {
|
|
@@ -4208,7 +4208,7 @@ declare const OnchainOperationsSchema: z.ZodEffects<z.ZodDiscriminatedUnion<"ope
|
|
|
4208
4208
|
}, {
|
|
4209
4209
|
name_or_address?: string | undefined;
|
|
4210
4210
|
local_mark_first?: boolean | undefined;
|
|
4211
|
-
}
|
|
4211
|
+
}>]>;
|
|
4212
4212
|
data: z.ZodUnion<[z.ZodUnion<[z.ZodBoolean, z.ZodUnion<[z.ZodObject<{
|
|
4213
4213
|
name_or_address: z.ZodOptional<z.ZodEffects<z.ZodString, string, string>>;
|
|
4214
4214
|
local_mark_first: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -4244,13 +4244,13 @@ declare const OnchainOperationsSchema: z.ZodEffects<z.ZodDiscriminatedUnion<"ope
|
|
|
4244
4244
|
check_all_founded?: boolean | undefined;
|
|
4245
4245
|
}>, z.ZodArray<z.ZodString, "many">]>, z.ZodArray<z.ZodString, "many">, z.ZodArray<z.ZodNumber, "many">, z.ZodArray<z.ZodArray<z.ZodNumber, "many">, "many">]>, z.ZodType<any, z.ZodTypeDef, any>]>;
|
|
4246
4246
|
}, "strict", z.ZodTypeAny, {
|
|
4247
|
-
id: number | {
|
|
4247
|
+
id: string | number | {
|
|
4248
4248
|
name_or_address?: string | undefined;
|
|
4249
4249
|
local_mark_first?: boolean | undefined;
|
|
4250
4250
|
};
|
|
4251
4251
|
data?: any;
|
|
4252
4252
|
}, {
|
|
4253
|
-
id: number | {
|
|
4253
|
+
id: string | number | {
|
|
4254
4254
|
name_or_address?: string | undefined;
|
|
4255
4255
|
local_mark_first?: boolean | undefined;
|
|
4256
4256
|
};
|
|
@@ -4259,7 +4259,7 @@ declare const OnchainOperationsSchema: z.ZodEffects<z.ZodDiscriminatedUnion<"ope
|
|
|
4259
4259
|
write_guard: z.ZodOptional<z.ZodEffects<z.ZodString, string, string>>;
|
|
4260
4260
|
}, "strict", z.ZodTypeAny, {
|
|
4261
4261
|
data: {
|
|
4262
|
-
id: number | {
|
|
4262
|
+
id: string | number | {
|
|
4263
4263
|
name_or_address?: string | undefined;
|
|
4264
4264
|
local_mark_first?: boolean | undefined;
|
|
4265
4265
|
};
|
|
@@ -4268,7 +4268,7 @@ declare const OnchainOperationsSchema: z.ZodEffects<z.ZodDiscriminatedUnion<"ope
|
|
|
4268
4268
|
write_guard?: string | undefined;
|
|
4269
4269
|
}, {
|
|
4270
4270
|
data: {
|
|
4271
|
-
id: number | {
|
|
4271
|
+
id: string | number | {
|
|
4272
4272
|
name_or_address?: string | undefined;
|
|
4273
4273
|
local_mark_first?: boolean | undefined;
|
|
4274
4274
|
};
|
|
@@ -4280,7 +4280,7 @@ declare const OnchainOperationsSchema: z.ZodEffects<z.ZodDiscriminatedUnion<"ope
|
|
|
4280
4280
|
name: string;
|
|
4281
4281
|
items: {
|
|
4282
4282
|
data: {
|
|
4283
|
-
id: number | {
|
|
4283
|
+
id: string | number | {
|
|
4284
4284
|
name_or_address?: string | undefined;
|
|
4285
4285
|
local_mark_first?: boolean | undefined;
|
|
4286
4286
|
};
|
|
@@ -4292,7 +4292,7 @@ declare const OnchainOperationsSchema: z.ZodEffects<z.ZodDiscriminatedUnion<"ope
|
|
|
4292
4292
|
name: string;
|
|
4293
4293
|
items: {
|
|
4294
4294
|
data: {
|
|
4295
|
-
id: number | {
|
|
4295
|
+
id: string | number | {
|
|
4296
4296
|
name_or_address?: string | undefined;
|
|
4297
4297
|
local_mark_first?: boolean | undefined;
|
|
4298
4298
|
};
|
|
@@ -4313,7 +4313,7 @@ declare const OnchainOperationsSchema: z.ZodEffects<z.ZodDiscriminatedUnion<"ope
|
|
|
4313
4313
|
}>, z.ZodObject<{
|
|
4314
4314
|
name: z.ZodEffects<z.ZodString, string, string>;
|
|
4315
4315
|
items: z.ZodArray<z.ZodObject<{
|
|
4316
|
-
id: z.ZodArray<z.ZodUnion<[z.ZodObject<{
|
|
4316
|
+
id: z.ZodArray<z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodObject<{
|
|
4317
4317
|
name_or_address: z.ZodOptional<z.ZodEffects<z.ZodString, string, string>>;
|
|
4318
4318
|
local_mark_first: z.ZodOptional<z.ZodBoolean>;
|
|
4319
4319
|
}, "strict", z.ZodTypeAny, {
|
|
@@ -4322,16 +4322,16 @@ declare const OnchainOperationsSchema: z.ZodEffects<z.ZodDiscriminatedUnion<"ope
|
|
|
4322
4322
|
}, {
|
|
4323
4323
|
name_or_address?: string | undefined;
|
|
4324
4324
|
local_mark_first?: boolean | undefined;
|
|
4325
|
-
}
|
|
4325
|
+
}>]>, "many">;
|
|
4326
4326
|
write_guard: z.ZodOptional<z.ZodEffects<z.ZodString, string, string>>;
|
|
4327
4327
|
}, "strict", z.ZodTypeAny, {
|
|
4328
|
-
id: (number | {
|
|
4328
|
+
id: (string | number | {
|
|
4329
4329
|
name_or_address?: string | undefined;
|
|
4330
4330
|
local_mark_first?: boolean | undefined;
|
|
4331
4331
|
})[];
|
|
4332
4332
|
write_guard?: string | undefined;
|
|
4333
4333
|
}, {
|
|
4334
|
-
id: (number | {
|
|
4334
|
+
id: (string | number | {
|
|
4335
4335
|
name_or_address?: string | undefined;
|
|
4336
4336
|
local_mark_first?: boolean | undefined;
|
|
4337
4337
|
})[];
|
|
@@ -4340,7 +4340,7 @@ declare const OnchainOperationsSchema: z.ZodEffects<z.ZodDiscriminatedUnion<"ope
|
|
|
4340
4340
|
}, "strict", z.ZodTypeAny, {
|
|
4341
4341
|
name: string;
|
|
4342
4342
|
items: {
|
|
4343
|
-
id: (number | {
|
|
4343
|
+
id: (string | number | {
|
|
4344
4344
|
name_or_address?: string | undefined;
|
|
4345
4345
|
local_mark_first?: boolean | undefined;
|
|
4346
4346
|
})[];
|
|
@@ -4349,7 +4349,7 @@ declare const OnchainOperationsSchema: z.ZodEffects<z.ZodDiscriminatedUnion<"ope
|
|
|
4349
4349
|
}, {
|
|
4350
4350
|
name: string;
|
|
4351
4351
|
items: {
|
|
4352
|
-
id: (number | {
|
|
4352
|
+
id: (string | number | {
|
|
4353
4353
|
name_or_address?: string | undefined;
|
|
4354
4354
|
local_mark_first?: boolean | undefined;
|
|
4355
4355
|
})[];
|
|
@@ -4493,7 +4493,7 @@ declare const OnchainOperationsSchema: z.ZodEffects<z.ZodDiscriminatedUnion<"ope
|
|
|
4493
4493
|
name: string;
|
|
4494
4494
|
items: {
|
|
4495
4495
|
data: {
|
|
4496
|
-
id: number | {
|
|
4496
|
+
id: string | number | {
|
|
4497
4497
|
name_or_address?: string | undefined;
|
|
4498
4498
|
local_mark_first?: boolean | undefined;
|
|
4499
4499
|
};
|
|
@@ -4508,7 +4508,7 @@ declare const OnchainOperationsSchema: z.ZodEffects<z.ZodDiscriminatedUnion<"ope
|
|
|
4508
4508
|
} | {
|
|
4509
4509
|
name: string;
|
|
4510
4510
|
items: {
|
|
4511
|
-
id: (number | {
|
|
4511
|
+
id: (string | number | {
|
|
4512
4512
|
name_or_address?: string | undefined;
|
|
4513
4513
|
local_mark_first?: boolean | undefined;
|
|
4514
4514
|
})[];
|
|
@@ -4581,7 +4581,7 @@ declare const OnchainOperationsSchema: z.ZodEffects<z.ZodDiscriminatedUnion<"ope
|
|
|
4581
4581
|
name: string;
|
|
4582
4582
|
items: {
|
|
4583
4583
|
data: {
|
|
4584
|
-
id: number | {
|
|
4584
|
+
id: string | number | {
|
|
4585
4585
|
name_or_address?: string | undefined;
|
|
4586
4586
|
local_mark_first?: boolean | undefined;
|
|
4587
4587
|
};
|
|
@@ -4596,7 +4596,7 @@ declare const OnchainOperationsSchema: z.ZodEffects<z.ZodDiscriminatedUnion<"ope
|
|
|
4596
4596
|
} | {
|
|
4597
4597
|
name: string;
|
|
4598
4598
|
items: {
|
|
4599
|
-
id: (number | {
|
|
4599
|
+
id: (string | number | {
|
|
4600
4600
|
name_or_address?: string | undefined;
|
|
4601
4601
|
local_mark_first?: boolean | undefined;
|
|
4602
4602
|
})[];
|
|
@@ -4608,7 +4608,7 @@ declare const OnchainOperationsSchema: z.ZodEffects<z.ZodDiscriminatedUnion<"ope
|
|
|
4608
4608
|
account: z.ZodDefault<z.ZodOptional<z.ZodEffects<z.ZodString, string, string>>>;
|
|
4609
4609
|
permission_guard: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
4610
4610
|
no_cache: z.ZodOptional<z.ZodBoolean>;
|
|
4611
|
-
network: z.ZodOptional<z.ZodEnum<[import("@wowok/wowok").ENTRYPOINT.Localnet, import("@wowok/wowok").ENTRYPOINT.Testnet]>>;
|
|
4611
|
+
network: z.ZodOptional<z.ZodEnum<[import("@wowok/wowok").ENTRYPOINT.Localnet, import("@wowok/wowok").ENTRYPOINT.Testnet, import("@wowok/wowok").ENTRYPOINT.Devnet]>>;
|
|
4612
4612
|
referrer: z.ZodOptional<z.ZodEffects<z.ZodString, string, string>>;
|
|
4613
4613
|
}, "strict", z.ZodTypeAny, {
|
|
4614
4614
|
account: string;
|
|
@@ -4870,7 +4870,7 @@ declare const OnchainOperationsSchema: z.ZodEffects<z.ZodDiscriminatedUnion<"ope
|
|
|
4870
4870
|
name: string;
|
|
4871
4871
|
items: {
|
|
4872
4872
|
data: {
|
|
4873
|
-
id: number | {
|
|
4873
|
+
id: string | number | {
|
|
4874
4874
|
name_or_address?: string | undefined;
|
|
4875
4875
|
local_mark_first?: boolean | undefined;
|
|
4876
4876
|
};
|
|
@@ -4885,7 +4885,7 @@ declare const OnchainOperationsSchema: z.ZodEffects<z.ZodDiscriminatedUnion<"ope
|
|
|
4885
4885
|
} | {
|
|
4886
4886
|
name: string;
|
|
4887
4887
|
items: {
|
|
4888
|
-
id: (number | {
|
|
4888
|
+
id: (string | number | {
|
|
4889
4889
|
name_or_address?: string | undefined;
|
|
4890
4890
|
local_mark_first?: boolean | undefined;
|
|
4891
4891
|
})[];
|
|
@@ -4995,7 +4995,7 @@ declare const OnchainOperationsSchema: z.ZodEffects<z.ZodDiscriminatedUnion<"ope
|
|
|
4995
4995
|
name: string;
|
|
4996
4996
|
items: {
|
|
4997
4997
|
data: {
|
|
4998
|
-
id: number | {
|
|
4998
|
+
id: string | number | {
|
|
4999
4999
|
name_or_address?: string | undefined;
|
|
5000
5000
|
local_mark_first?: boolean | undefined;
|
|
5001
5001
|
};
|
|
@@ -5010,7 +5010,7 @@ declare const OnchainOperationsSchema: z.ZodEffects<z.ZodDiscriminatedUnion<"ope
|
|
|
5010
5010
|
} | {
|
|
5011
5011
|
name: string;
|
|
5012
5012
|
items: {
|
|
5013
|
-
id: (number | {
|
|
5013
|
+
id: (string | number | {
|
|
5014
5014
|
name_or_address?: string | undefined;
|
|
5015
5015
|
local_mark_first?: boolean | undefined;
|
|
5016
5016
|
})[];
|
|
@@ -5653,7 +5653,7 @@ declare const OnchainOperationsSchema: z.ZodEffects<z.ZodDiscriminatedUnion<"ope
|
|
|
5653
5653
|
account: z.ZodDefault<z.ZodOptional<z.ZodEffects<z.ZodString, string, string>>>;
|
|
5654
5654
|
permission_guard: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
5655
5655
|
no_cache: z.ZodOptional<z.ZodBoolean>;
|
|
5656
|
-
network: z.ZodOptional<z.ZodEnum<[import("@wowok/wowok").ENTRYPOINT.Localnet, import("@wowok/wowok").ENTRYPOINT.Testnet]>>;
|
|
5656
|
+
network: z.ZodOptional<z.ZodEnum<[import("@wowok/wowok").ENTRYPOINT.Localnet, import("@wowok/wowok").ENTRYPOINT.Testnet, import("@wowok/wowok").ENTRYPOINT.Devnet]>>;
|
|
5657
5657
|
referrer: z.ZodOptional<z.ZodEffects<z.ZodString, string, string>>;
|
|
5658
5658
|
}, "strict", z.ZodTypeAny, {
|
|
5659
5659
|
account: string;
|
|
@@ -6409,7 +6409,7 @@ declare const OnchainOperationsSchema: z.ZodEffects<z.ZodDiscriminatedUnion<"ope
|
|
|
6409
6409
|
account: z.ZodDefault<z.ZodOptional<z.ZodEffects<z.ZodString, string, string>>>;
|
|
6410
6410
|
permission_guard: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
6411
6411
|
no_cache: z.ZodOptional<z.ZodBoolean>;
|
|
6412
|
-
network: z.ZodOptional<z.ZodEnum<[import("@wowok/wowok").ENTRYPOINT.Localnet, import("@wowok/wowok").ENTRYPOINT.Testnet]>>;
|
|
6412
|
+
network: z.ZodOptional<z.ZodEnum<[import("@wowok/wowok").ENTRYPOINT.Localnet, import("@wowok/wowok").ENTRYPOINT.Testnet, import("@wowok/wowok").ENTRYPOINT.Devnet]>>;
|
|
6413
6413
|
referrer: z.ZodOptional<z.ZodEffects<z.ZodString, string, string>>;
|
|
6414
6414
|
}, "strict", z.ZodTypeAny, {
|
|
6415
6415
|
account: string;
|
|
@@ -7246,22 +7246,7 @@ declare const OnchainOperationsSchema: z.ZodEffects<z.ZodDiscriminatedUnion<"ope
|
|
|
7246
7246
|
balance: string | number;
|
|
7247
7247
|
token_type: string;
|
|
7248
7248
|
}>, z.ZodLiteral<"recently">]>>;
|
|
7249
|
-
um: z.ZodOptional<z.ZodUnion<[z.
|
|
7250
|
-
name: z.ZodOptional<z.ZodEffects<z.ZodString, string, string>>;
|
|
7251
|
-
tags: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
7252
|
-
onChain: z.ZodOptional<z.ZodBoolean>;
|
|
7253
|
-
replaceExistName: z.ZodOptional<z.ZodBoolean>;
|
|
7254
|
-
}, "strict", z.ZodTypeAny, {
|
|
7255
|
-
name?: string | undefined;
|
|
7256
|
-
replaceExistName?: boolean | undefined;
|
|
7257
|
-
tags?: string[] | undefined;
|
|
7258
|
-
onChain?: boolean | undefined;
|
|
7259
|
-
}, {
|
|
7260
|
-
name?: string | undefined;
|
|
7261
|
-
replaceExistName?: boolean | undefined;
|
|
7262
|
-
tags?: string[] | undefined;
|
|
7263
|
-
onChain?: boolean | undefined;
|
|
7264
|
-
}>, z.ZodNull]>>;
|
|
7249
|
+
um: z.ZodOptional<z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodNull]>>;
|
|
7265
7250
|
}, "strict", z.ZodTypeAny, {
|
|
7266
7251
|
object: string | {
|
|
7267
7252
|
type_parameter: string;
|
|
@@ -7291,12 +7276,7 @@ declare const OnchainOperationsSchema: z.ZodEffects<z.ZodDiscriminatedUnion<"ope
|
|
|
7291
7276
|
id: string;
|
|
7292
7277
|
content_raw?: any;
|
|
7293
7278
|
}[] | undefined;
|
|
7294
|
-
um?:
|
|
7295
|
-
name?: string | undefined;
|
|
7296
|
-
replaceExistName?: boolean | undefined;
|
|
7297
|
-
tags?: string[] | undefined;
|
|
7298
|
-
onChain?: boolean | undefined;
|
|
7299
|
-
} | null | undefined;
|
|
7279
|
+
um?: string | null | undefined;
|
|
7300
7280
|
external_deposit_guard?: {
|
|
7301
7281
|
op: "add";
|
|
7302
7282
|
guards: {
|
|
@@ -7418,12 +7398,7 @@ declare const OnchainOperationsSchema: z.ZodEffects<z.ZodDiscriminatedUnion<"ope
|
|
|
7418
7398
|
id: string;
|
|
7419
7399
|
content_raw?: any;
|
|
7420
7400
|
}[] | undefined;
|
|
7421
|
-
um?:
|
|
7422
|
-
name?: string | undefined;
|
|
7423
|
-
replaceExistName?: boolean | undefined;
|
|
7424
|
-
tags?: string[] | undefined;
|
|
7425
|
-
onChain?: boolean | undefined;
|
|
7426
|
-
} | null | undefined;
|
|
7401
|
+
um?: string | null | undefined;
|
|
7427
7402
|
external_deposit_guard?: {
|
|
7428
7403
|
op: "add";
|
|
7429
7404
|
guards: {
|
|
@@ -7521,7 +7496,7 @@ declare const OnchainOperationsSchema: z.ZodEffects<z.ZodDiscriminatedUnion<"ope
|
|
|
7521
7496
|
account: z.ZodDefault<z.ZodOptional<z.ZodEffects<z.ZodString, string, string>>>;
|
|
7522
7497
|
permission_guard: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
7523
7498
|
no_cache: z.ZodOptional<z.ZodBoolean>;
|
|
7524
|
-
network: z.ZodOptional<z.ZodEnum<[import("@wowok/wowok").ENTRYPOINT.Localnet, import("@wowok/wowok").ENTRYPOINT.Testnet]>>;
|
|
7499
|
+
network: z.ZodOptional<z.ZodEnum<[import("@wowok/wowok").ENTRYPOINT.Localnet, import("@wowok/wowok").ENTRYPOINT.Testnet, import("@wowok/wowok").ENTRYPOINT.Devnet]>>;
|
|
7525
7500
|
referrer: z.ZodOptional<z.ZodEffects<z.ZodString, string, string>>;
|
|
7526
7501
|
}, "strict", z.ZodTypeAny, {
|
|
7527
7502
|
account: string;
|
|
@@ -7746,12 +7721,7 @@ declare const OnchainOperationsSchema: z.ZodEffects<z.ZodDiscriminatedUnion<"ope
|
|
|
7746
7721
|
id: string;
|
|
7747
7722
|
content_raw?: any;
|
|
7748
7723
|
}[] | undefined;
|
|
7749
|
-
um?:
|
|
7750
|
-
name?: string | undefined;
|
|
7751
|
-
replaceExistName?: boolean | undefined;
|
|
7752
|
-
tags?: string[] | undefined;
|
|
7753
|
-
onChain?: boolean | undefined;
|
|
7754
|
-
} | null | undefined;
|
|
7724
|
+
um?: string | null | undefined;
|
|
7755
7725
|
external_deposit_guard?: {
|
|
7756
7726
|
op: "add";
|
|
7757
7727
|
guards: {
|
|
@@ -7910,12 +7880,7 @@ declare const OnchainOperationsSchema: z.ZodEffects<z.ZodDiscriminatedUnion<"ope
|
|
|
7910
7880
|
id: string;
|
|
7911
7881
|
content_raw?: any;
|
|
7912
7882
|
}[] | undefined;
|
|
7913
|
-
um?:
|
|
7914
|
-
name?: string | undefined;
|
|
7915
|
-
replaceExistName?: boolean | undefined;
|
|
7916
|
-
tags?: string[] | undefined;
|
|
7917
|
-
onChain?: boolean | undefined;
|
|
7918
|
-
} | null | undefined;
|
|
7883
|
+
um?: string | null | undefined;
|
|
7919
7884
|
external_deposit_guard?: {
|
|
7920
7885
|
op: "add";
|
|
7921
7886
|
guards: {
|
|
@@ -8441,7 +8406,7 @@ declare const OnchainOperationsSchema: z.ZodEffects<z.ZodDiscriminatedUnion<"ope
|
|
|
8441
8406
|
account: z.ZodDefault<z.ZodOptional<z.ZodEffects<z.ZodString, string, string>>>;
|
|
8442
8407
|
permission_guard: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
8443
8408
|
no_cache: z.ZodOptional<z.ZodBoolean>;
|
|
8444
|
-
network: z.ZodOptional<z.ZodEnum<[import("@wowok/wowok").ENTRYPOINT.Localnet, import("@wowok/wowok").ENTRYPOINT.Testnet]>>;
|
|
8409
|
+
network: z.ZodOptional<z.ZodEnum<[import("@wowok/wowok").ENTRYPOINT.Localnet, import("@wowok/wowok").ENTRYPOINT.Testnet, import("@wowok/wowok").ENTRYPOINT.Devnet]>>;
|
|
8445
8410
|
referrer: z.ZodOptional<z.ZodEffects<z.ZodString, string, string>>;
|
|
8446
8411
|
}, "strict", z.ZodTypeAny, {
|
|
8447
8412
|
account: string;
|
|
@@ -9202,7 +9167,7 @@ declare const OnchainOperationsSchema: z.ZodEffects<z.ZodDiscriminatedUnion<"ope
|
|
|
9202
9167
|
account: z.ZodDefault<z.ZodOptional<z.ZodEffects<z.ZodString, string, string>>>;
|
|
9203
9168
|
permission_guard: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
9204
9169
|
no_cache: z.ZodOptional<z.ZodBoolean>;
|
|
9205
|
-
network: z.ZodOptional<z.ZodEnum<[import("@wowok/wowok").ENTRYPOINT.Localnet, import("@wowok/wowok").ENTRYPOINT.Testnet]>>;
|
|
9170
|
+
network: z.ZodOptional<z.ZodEnum<[import("@wowok/wowok").ENTRYPOINT.Localnet, import("@wowok/wowok").ENTRYPOINT.Testnet, import("@wowok/wowok").ENTRYPOINT.Devnet]>>;
|
|
9206
9171
|
referrer: z.ZodOptional<z.ZodEffects<z.ZodString, string, string>>;
|
|
9207
9172
|
}, "strict", z.ZodTypeAny, {
|
|
9208
9173
|
account: string;
|
|
@@ -10384,7 +10349,7 @@ declare const OnchainOperationsSchema: z.ZodEffects<z.ZodDiscriminatedUnion<"ope
|
|
|
10384
10349
|
account: z.ZodDefault<z.ZodOptional<z.ZodEffects<z.ZodString, string, string>>>;
|
|
10385
10350
|
permission_guard: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
10386
10351
|
no_cache: z.ZodOptional<z.ZodBoolean>;
|
|
10387
|
-
network: z.ZodOptional<z.ZodEnum<[import("@wowok/wowok").ENTRYPOINT.Localnet, import("@wowok/wowok").ENTRYPOINT.Testnet]>>;
|
|
10352
|
+
network: z.ZodOptional<z.ZodEnum<[import("@wowok/wowok").ENTRYPOINT.Localnet, import("@wowok/wowok").ENTRYPOINT.Testnet, import("@wowok/wowok").ENTRYPOINT.Devnet]>>;
|
|
10388
10353
|
referrer: z.ZodOptional<z.ZodEffects<z.ZodString, string, string>>;
|
|
10389
10354
|
}, "strict", z.ZodTypeAny, {
|
|
10390
10355
|
account: string;
|
|
@@ -10890,7 +10855,7 @@ declare const OnchainOperationsSchema: z.ZodEffects<z.ZodDiscriminatedUnion<"ope
|
|
|
10890
10855
|
account: z.ZodDefault<z.ZodOptional<z.ZodEffects<z.ZodString, string, string>>>;
|
|
10891
10856
|
permission_guard: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
10892
10857
|
no_cache: z.ZodOptional<z.ZodBoolean>;
|
|
10893
|
-
network: z.ZodOptional<z.ZodEnum<[import("@wowok/wowok").ENTRYPOINT.Localnet, import("@wowok/wowok").ENTRYPOINT.Testnet]>>;
|
|
10858
|
+
network: z.ZodOptional<z.ZodEnum<[import("@wowok/wowok").ENTRYPOINT.Localnet, import("@wowok/wowok").ENTRYPOINT.Testnet, import("@wowok/wowok").ENTRYPOINT.Devnet]>>;
|
|
10894
10859
|
referrer: z.ZodOptional<z.ZodEffects<z.ZodString, string, string>>;
|
|
10895
10860
|
}, "strict", z.ZodTypeAny, {
|
|
10896
10861
|
account: string;
|
|
@@ -11392,7 +11357,7 @@ declare const OnchainOperationsSchema: z.ZodEffects<z.ZodDiscriminatedUnion<"ope
|
|
|
11392
11357
|
account: z.ZodDefault<z.ZodOptional<z.ZodEffects<z.ZodString, string, string>>>;
|
|
11393
11358
|
permission_guard: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
11394
11359
|
no_cache: z.ZodOptional<z.ZodBoolean>;
|
|
11395
|
-
network: z.ZodOptional<z.ZodEnum<[import("@wowok/wowok").ENTRYPOINT.Localnet, import("@wowok/wowok").ENTRYPOINT.Testnet]>>;
|
|
11360
|
+
network: z.ZodOptional<z.ZodEnum<[import("@wowok/wowok").ENTRYPOINT.Localnet, import("@wowok/wowok").ENTRYPOINT.Testnet, import("@wowok/wowok").ENTRYPOINT.Devnet]>>;
|
|
11396
11361
|
referrer: z.ZodOptional<z.ZodEffects<z.ZodString, string, string>>;
|
|
11397
11362
|
}, "strict", z.ZodTypeAny, {
|
|
11398
11363
|
account: string;
|
|
@@ -11684,7 +11649,7 @@ declare const OnchainOperationsSchema: z.ZodEffects<z.ZodDiscriminatedUnion<"ope
|
|
|
11684
11649
|
account: z.ZodDefault<z.ZodOptional<z.ZodEffects<z.ZodString, string, string>>>;
|
|
11685
11650
|
permission_guard: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
11686
11651
|
no_cache: z.ZodOptional<z.ZodBoolean>;
|
|
11687
|
-
network: z.ZodOptional<z.ZodEnum<[import("@wowok/wowok").ENTRYPOINT.Localnet, import("@wowok/wowok").ENTRYPOINT.Testnet]>>;
|
|
11652
|
+
network: z.ZodOptional<z.ZodEnum<[import("@wowok/wowok").ENTRYPOINT.Localnet, import("@wowok/wowok").ENTRYPOINT.Testnet, import("@wowok/wowok").ENTRYPOINT.Devnet]>>;
|
|
11688
11653
|
referrer: z.ZodOptional<z.ZodEffects<z.ZodString, string, string>>;
|
|
11689
11654
|
}, "strict", z.ZodTypeAny, {
|
|
11690
11655
|
account: string;
|
|
@@ -12146,7 +12111,7 @@ declare const OnchainOperationsSchema: z.ZodEffects<z.ZodDiscriminatedUnion<"ope
|
|
|
12146
12111
|
account: z.ZodDefault<z.ZodOptional<z.ZodEffects<z.ZodString, string, string>>>;
|
|
12147
12112
|
permission_guard: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
12148
12113
|
no_cache: z.ZodOptional<z.ZodBoolean>;
|
|
12149
|
-
network: z.ZodOptional<z.ZodEnum<[import("@wowok/wowok").ENTRYPOINT.Localnet, import("@wowok/wowok").ENTRYPOINT.Testnet]>>;
|
|
12114
|
+
network: z.ZodOptional<z.ZodEnum<[import("@wowok/wowok").ENTRYPOINT.Localnet, import("@wowok/wowok").ENTRYPOINT.Testnet, import("@wowok/wowok").ENTRYPOINT.Devnet]>>;
|
|
12150
12115
|
referrer: z.ZodOptional<z.ZodEffects<z.ZodString, string, string>>;
|
|
12151
12116
|
}, "strict", z.ZodTypeAny, {
|
|
12152
12117
|
account: string;
|
|
@@ -12559,7 +12524,7 @@ declare const OnchainOperationsSchema: z.ZodEffects<z.ZodDiscriminatedUnion<"ope
|
|
|
12559
12524
|
operation_type: z.ZodLiteral<"order">;
|
|
12560
12525
|
data: z.ZodObject<{
|
|
12561
12526
|
object: z.ZodEffects<z.ZodString, string, string>;
|
|
12562
|
-
|
|
12527
|
+
agent: z.ZodOptional<z.ZodObject<{
|
|
12563
12528
|
entities: z.ZodArray<z.ZodObject<{
|
|
12564
12529
|
name_or_address: z.ZodOptional<z.ZodEffects<z.ZodString, string, string>>;
|
|
12565
12530
|
local_mark_first: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -12745,14 +12710,14 @@ declare const OnchainOperationsSchema: z.ZodEffects<z.ZodDiscriminatedUnion<"ope
|
|
|
12745
12710
|
hold?: boolean | undefined;
|
|
12746
12711
|
adminUnhold?: boolean | undefined;
|
|
12747
12712
|
} | undefined;
|
|
12748
|
-
|
|
12749
|
-
agents?: {
|
|
12713
|
+
agent?: {
|
|
12750
12714
|
entities: {
|
|
12751
12715
|
name_or_address?: string | undefined;
|
|
12752
12716
|
local_mark_first?: boolean | undefined;
|
|
12753
12717
|
}[];
|
|
12754
12718
|
check_all_founded?: boolean | undefined;
|
|
12755
12719
|
} | undefined;
|
|
12720
|
+
required_info?: string | null | undefined;
|
|
12756
12721
|
arb_confirm?: {
|
|
12757
12722
|
arb: string;
|
|
12758
12723
|
confirm: boolean;
|
|
@@ -12796,14 +12761,14 @@ declare const OnchainOperationsSchema: z.ZodEffects<z.ZodDiscriminatedUnion<"ope
|
|
|
12796
12761
|
hold?: boolean | undefined;
|
|
12797
12762
|
adminUnhold?: boolean | undefined;
|
|
12798
12763
|
} | undefined;
|
|
12799
|
-
|
|
12800
|
-
agents?: {
|
|
12764
|
+
agent?: {
|
|
12801
12765
|
entities: {
|
|
12802
12766
|
name_or_address?: string | undefined;
|
|
12803
12767
|
local_mark_first?: boolean | undefined;
|
|
12804
12768
|
}[];
|
|
12805
12769
|
check_all_founded?: boolean | undefined;
|
|
12806
12770
|
} | undefined;
|
|
12771
|
+
required_info?: string | null | undefined;
|
|
12807
12772
|
arb_confirm?: {
|
|
12808
12773
|
arb: string;
|
|
12809
12774
|
confirm: boolean;
|
|
@@ -12841,7 +12806,7 @@ declare const OnchainOperationsSchema: z.ZodEffects<z.ZodDiscriminatedUnion<"ope
|
|
|
12841
12806
|
account: z.ZodDefault<z.ZodOptional<z.ZodEffects<z.ZodString, string, string>>>;
|
|
12842
12807
|
permission_guard: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
12843
12808
|
no_cache: z.ZodOptional<z.ZodBoolean>;
|
|
12844
|
-
network: z.ZodOptional<z.ZodEnum<[import("@wowok/wowok").ENTRYPOINT.Localnet, import("@wowok/wowok").ENTRYPOINT.Testnet]>>;
|
|
12809
|
+
network: z.ZodOptional<z.ZodEnum<[import("@wowok/wowok").ENTRYPOINT.Localnet, import("@wowok/wowok").ENTRYPOINT.Testnet, import("@wowok/wowok").ENTRYPOINT.Devnet]>>;
|
|
12845
12810
|
referrer: z.ZodOptional<z.ZodEffects<z.ZodString, string, string>>;
|
|
12846
12811
|
}, "strict", z.ZodTypeAny, {
|
|
12847
12812
|
account: string;
|
|
@@ -13048,14 +13013,14 @@ declare const OnchainOperationsSchema: z.ZodEffects<z.ZodDiscriminatedUnion<"ope
|
|
|
13048
13013
|
hold?: boolean | undefined;
|
|
13049
13014
|
adminUnhold?: boolean | undefined;
|
|
13050
13015
|
} | undefined;
|
|
13051
|
-
|
|
13052
|
-
agents?: {
|
|
13016
|
+
agent?: {
|
|
13053
13017
|
entities: {
|
|
13054
13018
|
name_or_address?: string | undefined;
|
|
13055
13019
|
local_mark_first?: boolean | undefined;
|
|
13056
13020
|
}[];
|
|
13057
13021
|
check_all_founded?: boolean | undefined;
|
|
13058
13022
|
} | undefined;
|
|
13023
|
+
required_info?: string | null | undefined;
|
|
13059
13024
|
arb_confirm?: {
|
|
13060
13025
|
arb: string;
|
|
13061
13026
|
confirm: boolean;
|
|
@@ -13136,14 +13101,14 @@ declare const OnchainOperationsSchema: z.ZodEffects<z.ZodDiscriminatedUnion<"ope
|
|
|
13136
13101
|
hold?: boolean | undefined;
|
|
13137
13102
|
adminUnhold?: boolean | undefined;
|
|
13138
13103
|
} | undefined;
|
|
13139
|
-
|
|
13140
|
-
agents?: {
|
|
13104
|
+
agent?: {
|
|
13141
13105
|
entities: {
|
|
13142
13106
|
name_or_address?: string | undefined;
|
|
13143
13107
|
local_mark_first?: boolean | undefined;
|
|
13144
13108
|
}[];
|
|
13145
13109
|
check_all_founded?: boolean | undefined;
|
|
13146
13110
|
} | undefined;
|
|
13111
|
+
required_info?: string | null | undefined;
|
|
13147
13112
|
arb_confirm?: {
|
|
13148
13113
|
arb: string;
|
|
13149
13114
|
confirm: boolean;
|
|
@@ -13399,7 +13364,7 @@ declare const OnchainOperationsSchema: z.ZodEffects<z.ZodDiscriminatedUnion<"ope
|
|
|
13399
13364
|
account: z.ZodDefault<z.ZodOptional<z.ZodEffects<z.ZodString, string, string>>>;
|
|
13400
13365
|
permission_guard: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
13401
13366
|
no_cache: z.ZodOptional<z.ZodBoolean>;
|
|
13402
|
-
network: z.ZodOptional<z.ZodEnum<[import("@wowok/wowok").ENTRYPOINT.Localnet, import("@wowok/wowok").ENTRYPOINT.Testnet]>>;
|
|
13367
|
+
network: z.ZodOptional<z.ZodEnum<[import("@wowok/wowok").ENTRYPOINT.Localnet, import("@wowok/wowok").ENTRYPOINT.Testnet, import("@wowok/wowok").ENTRYPOINT.Devnet]>>;
|
|
13403
13368
|
referrer: z.ZodOptional<z.ZodEffects<z.ZodString, string, string>>;
|
|
13404
13369
|
}, "strict", z.ZodTypeAny, {
|
|
13405
13370
|
account: string;
|
|
@@ -13538,13 +13503,13 @@ declare const OnchainOperationsSchema: z.ZodEffects<z.ZodDiscriminatedUnion<"ope
|
|
|
13538
13503
|
}[];
|
|
13539
13504
|
check_all_founded?: boolean | undefined;
|
|
13540
13505
|
};
|
|
13506
|
+
count: number;
|
|
13541
13507
|
discount_type: import("@wowok/wowok").DiscountType;
|
|
13508
|
+
transferable: boolean;
|
|
13542
13509
|
discount_value: string | number;
|
|
13543
|
-
|
|
13510
|
+
time_ms_end: number;
|
|
13544
13511
|
benchmark?: string | number | undefined;
|
|
13545
|
-
transferable?: boolean | undefined;
|
|
13546
13512
|
time_ms_start?: number | undefined;
|
|
13547
|
-
time_ms_end?: number | undefined;
|
|
13548
13513
|
} | undefined;
|
|
13549
13514
|
machine?: string | null | undefined;
|
|
13550
13515
|
sales?: {
|
|
@@ -14045,7 +14010,7 @@ declare const OnchainOperationsSchema: z.ZodEffects<z.ZodDiscriminatedUnion<"ope
|
|
|
14045
14010
|
name: string;
|
|
14046
14011
|
items: {
|
|
14047
14012
|
data: {
|
|
14048
|
-
id: number | {
|
|
14013
|
+
id: string | number | {
|
|
14049
14014
|
name_or_address?: string | undefined;
|
|
14050
14015
|
local_mark_first?: boolean | undefined;
|
|
14051
14016
|
};
|
|
@@ -14060,7 +14025,7 @@ declare const OnchainOperationsSchema: z.ZodEffects<z.ZodDiscriminatedUnion<"ope
|
|
|
14060
14025
|
} | {
|
|
14061
14026
|
name: string;
|
|
14062
14027
|
items: {
|
|
14063
|
-
id: (number | {
|
|
14028
|
+
id: (string | number | {
|
|
14064
14029
|
name_or_address?: string | undefined;
|
|
14065
14030
|
local_mark_first?: boolean | undefined;
|
|
14066
14031
|
})[];
|
|
@@ -14365,12 +14330,7 @@ declare const OnchainOperationsSchema: z.ZodEffects<z.ZodDiscriminatedUnion<"ope
|
|
|
14365
14330
|
id: string;
|
|
14366
14331
|
content_raw?: any;
|
|
14367
14332
|
}[] | undefined;
|
|
14368
|
-
um?:
|
|
14369
|
-
name?: string | undefined;
|
|
14370
|
-
replaceExistName?: boolean | undefined;
|
|
14371
|
-
tags?: string[] | undefined;
|
|
14372
|
-
onChain?: boolean | undefined;
|
|
14373
|
-
} | null | undefined;
|
|
14333
|
+
um?: string | null | undefined;
|
|
14374
14334
|
external_deposit_guard?: {
|
|
14375
14335
|
op: "add";
|
|
14376
14336
|
guards: {
|
|
@@ -15111,14 +15071,14 @@ declare const OnchainOperationsSchema: z.ZodEffects<z.ZodDiscriminatedUnion<"ope
|
|
|
15111
15071
|
hold?: boolean | undefined;
|
|
15112
15072
|
adminUnhold?: boolean | undefined;
|
|
15113
15073
|
} | undefined;
|
|
15114
|
-
|
|
15115
|
-
agents?: {
|
|
15074
|
+
agent?: {
|
|
15116
15075
|
entities: {
|
|
15117
15076
|
name_or_address?: string | undefined;
|
|
15118
15077
|
local_mark_first?: boolean | undefined;
|
|
15119
15078
|
}[];
|
|
15120
15079
|
check_all_founded?: boolean | undefined;
|
|
15121
15080
|
} | undefined;
|
|
15081
|
+
required_info?: string | null | undefined;
|
|
15122
15082
|
arb_confirm?: {
|
|
15123
15083
|
arb: string;
|
|
15124
15084
|
confirm: boolean;
|
|
@@ -15675,7 +15635,7 @@ declare const WatchQueryOperationsSchema: z.ZodEffects<z.ZodUnion<[z.ZodDiscrimi
|
|
|
15675
15635
|
limit?: number | null | undefined;
|
|
15676
15636
|
}>>;
|
|
15677
15637
|
token_type: z.ZodOptional<z.ZodEffects<z.ZodString, string, string>>;
|
|
15678
|
-
network: z.ZodOptional<z.ZodEnum<[import("@wowok/wowok").ENTRYPOINT.Localnet, import("@wowok/wowok").ENTRYPOINT.Testnet]>>;
|
|
15638
|
+
network: z.ZodOptional<z.ZodEnum<[import("@wowok/wowok").ENTRYPOINT.Localnet, import("@wowok/wowok").ENTRYPOINT.Testnet, import("@wowok/wowok").ENTRYPOINT.Devnet]>>;
|
|
15679
15639
|
}, "strip", z.ZodTypeAny, {
|
|
15680
15640
|
query_type: "account_balance";
|
|
15681
15641
|
name_or_address?: string | undefined;
|
|
@@ -15709,7 +15669,7 @@ declare const WatchQueryOperationsSchema: z.ZodEffects<z.ZodUnion<[z.ZodDiscrimi
|
|
|
15709
15669
|
query_type: z.ZodLiteral<"onchain_personal_profile">;
|
|
15710
15670
|
account: z.ZodOptional<z.ZodEffects<z.ZodString, string, string>>;
|
|
15711
15671
|
no_cache: z.ZodOptional<z.ZodBoolean>;
|
|
15712
|
-
network: z.ZodOptional<z.ZodEnum<[import("@wowok/wowok").ENTRYPOINT.Localnet, import("@wowok/wowok").ENTRYPOINT.Testnet]>>;
|
|
15672
|
+
network: z.ZodOptional<z.ZodEnum<[import("@wowok/wowok").ENTRYPOINT.Localnet, import("@wowok/wowok").ENTRYPOINT.Testnet, import("@wowok/wowok").ENTRYPOINT.Devnet]>>;
|
|
15713
15673
|
}, "strip", z.ZodTypeAny, {
|
|
15714
15674
|
query_type: "onchain_personal_profile";
|
|
15715
15675
|
no_cache?: boolean | undefined;
|
|
@@ -15724,7 +15684,7 @@ declare const WatchQueryOperationsSchema: z.ZodEffects<z.ZodUnion<[z.ZodDiscrimi
|
|
|
15724
15684
|
query_type: z.ZodLiteral<"onchain_objects">;
|
|
15725
15685
|
objects: z.ZodArray<z.ZodEffects<z.ZodString, string, string>, "many">;
|
|
15726
15686
|
no_cache: z.ZodOptional<z.ZodBoolean>;
|
|
15727
|
-
network: z.ZodOptional<z.ZodEnum<[import("@wowok/wowok").ENTRYPOINT.Localnet, import("@wowok/wowok").ENTRYPOINT.Testnet]>>;
|
|
15687
|
+
network: z.ZodOptional<z.ZodEnum<[import("@wowok/wowok").ENTRYPOINT.Localnet, import("@wowok/wowok").ENTRYPOINT.Testnet, import("@wowok/wowok").ENTRYPOINT.Devnet]>>;
|
|
15728
15688
|
}, "strip", z.ZodTypeAny, {
|
|
15729
15689
|
objects: string[];
|
|
15730
15690
|
query_type: "onchain_objects";
|
|
@@ -15751,7 +15711,7 @@ declare const WatchQueryOperationsSchema: z.ZodEffects<z.ZodUnion<[z.ZodDiscrimi
|
|
|
15751
15711
|
cursor: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNull]>>;
|
|
15752
15712
|
limit: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodNull]>>;
|
|
15753
15713
|
no_cache: z.ZodOptional<z.ZodBoolean>;
|
|
15754
|
-
network: z.ZodOptional<z.ZodEnum<[import("@wowok/wowok").ENTRYPOINT.Localnet, import("@wowok/wowok").ENTRYPOINT.Testnet]>>;
|
|
15714
|
+
network: z.ZodOptional<z.ZodEnum<[import("@wowok/wowok").ENTRYPOINT.Localnet, import("@wowok/wowok").ENTRYPOINT.Testnet, import("@wowok/wowok").ENTRYPOINT.Devnet]>>;
|
|
15755
15715
|
}, "strip", z.ZodTypeAny, {
|
|
15756
15716
|
name_or_address: string | {
|
|
15757
15717
|
name_or_address?: string | undefined;
|