@silvana-one/orderbook 1.1.24 → 1.1.26
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/node/index.cjs +81 -7
- package/dist/node/orderbook.d.ts +32 -1
- package/dist/node/orderbook.js +35 -1
- package/dist/node/orderbook.js.map +1 -1
- package/dist/node/proto/silvana/orderbook/v1/orderbook_pb.d.ts +429 -0
- package/dist/node/proto/silvana/orderbook/v1/orderbook_pb.js +84 -7
- package/dist/node/proto/silvana/orderbook/v1/orderbook_pb.js.map +1 -1
- package/dist/tsconfig.tsbuildinfo +1 -1
- package/dist/tsconfig.web.tsbuildinfo +1 -1
- package/dist/web/orderbook.d.ts +32 -1
- package/dist/web/orderbook.js +35 -1
- package/dist/web/orderbook.js.map +1 -1
- package/dist/web/proto/silvana/orderbook/v1/orderbook_pb.d.ts +429 -0
- package/dist/web/proto/silvana/orderbook/v1/orderbook_pb.js +84 -7
- package/dist/web/proto/silvana/orderbook/v1/orderbook_pb.js.map +1 -1
- package/package.json +1 -1
- package/src/orderbook.ts +62 -0
- package/src/proto/silvana/orderbook/v1/orderbook_pb.ts +518 -7
|
@@ -1824,6 +1824,30 @@ export type CreatePartyRequest = Message<"silvana.orderbook.v1.CreatePartyReques
|
|
|
1824
1824
|
* @generated from field: google.protobuf.Struct user_data = 9;
|
|
1825
1825
|
*/
|
|
1826
1826
|
userData?: JsonObject;
|
|
1827
|
+
/**
|
|
1828
|
+
* Party email address
|
|
1829
|
+
*
|
|
1830
|
+
* @generated from field: optional string email = 10;
|
|
1831
|
+
*/
|
|
1832
|
+
email?: string;
|
|
1833
|
+
/**
|
|
1834
|
+
* Base58 public key
|
|
1835
|
+
*
|
|
1836
|
+
* @generated from field: optional string public_key = 11;
|
|
1837
|
+
*/
|
|
1838
|
+
publicKey?: string;
|
|
1839
|
+
/**
|
|
1840
|
+
* Invite code used during registration
|
|
1841
|
+
*
|
|
1842
|
+
* @generated from field: optional string invite_code = 12;
|
|
1843
|
+
*/
|
|
1844
|
+
inviteCode?: string;
|
|
1845
|
+
/**
|
|
1846
|
+
* Source: loop_wallet, form, supa_wallet, admin
|
|
1847
|
+
*
|
|
1848
|
+
* @generated from field: optional string source = 13;
|
|
1849
|
+
*/
|
|
1850
|
+
source?: string;
|
|
1827
1851
|
/**
|
|
1828
1852
|
* Alternative auth for external accounts
|
|
1829
1853
|
*
|
|
@@ -1924,6 +1948,30 @@ export type UpdatePartyRequest = Message<"silvana.orderbook.v1.UpdatePartyReques
|
|
|
1924
1948
|
* @generated from field: optional string change_reason = 10;
|
|
1925
1949
|
*/
|
|
1926
1950
|
changeReason?: string;
|
|
1951
|
+
/**
|
|
1952
|
+
* Party email address
|
|
1953
|
+
*
|
|
1954
|
+
* @generated from field: optional string email = 11;
|
|
1955
|
+
*/
|
|
1956
|
+
email?: string;
|
|
1957
|
+
/**
|
|
1958
|
+
* Base58 public key
|
|
1959
|
+
*
|
|
1960
|
+
* @generated from field: optional string public_key = 12;
|
|
1961
|
+
*/
|
|
1962
|
+
publicKey?: string;
|
|
1963
|
+
/**
|
|
1964
|
+
* Invite code used during registration
|
|
1965
|
+
*
|
|
1966
|
+
* @generated from field: optional string invite_code = 13;
|
|
1967
|
+
*/
|
|
1968
|
+
inviteCode?: string;
|
|
1969
|
+
/**
|
|
1970
|
+
* Source: loop_wallet, form, supa_wallet, admin
|
|
1971
|
+
*
|
|
1972
|
+
* @generated from field: optional string source = 14;
|
|
1973
|
+
*/
|
|
1974
|
+
source?: string;
|
|
1927
1975
|
/**
|
|
1928
1976
|
* Alternative auth for external accounts
|
|
1929
1977
|
*
|
|
@@ -2304,6 +2352,30 @@ export type Party = Message<"silvana.orderbook.v1.Party"> & {
|
|
|
2304
2352
|
* @generated from field: uint64 version = 12;
|
|
2305
2353
|
*/
|
|
2306
2354
|
version: bigint;
|
|
2355
|
+
/**
|
|
2356
|
+
* Party email address
|
|
2357
|
+
*
|
|
2358
|
+
* @generated from field: optional string email = 13;
|
|
2359
|
+
*/
|
|
2360
|
+
email?: string;
|
|
2361
|
+
/**
|
|
2362
|
+
* Base58 public key
|
|
2363
|
+
*
|
|
2364
|
+
* @generated from field: optional string public_key = 14;
|
|
2365
|
+
*/
|
|
2366
|
+
publicKey?: string;
|
|
2367
|
+
/**
|
|
2368
|
+
* Invite code used during registration
|
|
2369
|
+
*
|
|
2370
|
+
* @generated from field: optional string invite_code = 15;
|
|
2371
|
+
*/
|
|
2372
|
+
inviteCode?: string;
|
|
2373
|
+
/**
|
|
2374
|
+
* Source: loop_wallet, form, supa_wallet, admin
|
|
2375
|
+
*
|
|
2376
|
+
* @generated from field: string source = 16;
|
|
2377
|
+
*/
|
|
2378
|
+
source: string;
|
|
2307
2379
|
};
|
|
2308
2380
|
/**
|
|
2309
2381
|
* Describes the message silvana.orderbook.v1.Party.
|
|
@@ -2416,6 +2488,304 @@ export type GetLiquidityProvidersResponse = Message<"silvana.orderbook.v1.GetLiq
|
|
|
2416
2488
|
* Use `create(GetLiquidityProvidersResponseSchema)` to create a new message.
|
|
2417
2489
|
*/
|
|
2418
2490
|
export declare const GetLiquidityProvidersResponseSchema: GenMessage<GetLiquidityProvidersResponse>;
|
|
2491
|
+
/**
|
|
2492
|
+
* Waiting list entry for users pending onboarding
|
|
2493
|
+
*
|
|
2494
|
+
* @generated from message silvana.orderbook.v1.WaitingListEntry
|
|
2495
|
+
*/
|
|
2496
|
+
export type WaitingListEntry = Message<"silvana.orderbook.v1.WaitingListEntry"> & {
|
|
2497
|
+
/**
|
|
2498
|
+
* @generated from field: uint64 id = 1;
|
|
2499
|
+
*/
|
|
2500
|
+
id: bigint;
|
|
2501
|
+
/**
|
|
2502
|
+
* @generated from field: optional string party_id = 2;
|
|
2503
|
+
*/
|
|
2504
|
+
partyId?: string;
|
|
2505
|
+
/**
|
|
2506
|
+
* @generated from field: google.protobuf.Struct user_data = 3;
|
|
2507
|
+
*/
|
|
2508
|
+
userData?: JsonObject;
|
|
2509
|
+
/**
|
|
2510
|
+
* loop_wallet, form, supa_wallet
|
|
2511
|
+
*
|
|
2512
|
+
* @generated from field: string source = 4;
|
|
2513
|
+
*/
|
|
2514
|
+
source: string;
|
|
2515
|
+
/**
|
|
2516
|
+
* @generated from field: optional string email = 5;
|
|
2517
|
+
*/
|
|
2518
|
+
email?: string;
|
|
2519
|
+
/**
|
|
2520
|
+
* @generated from field: optional string public_key = 6;
|
|
2521
|
+
*/
|
|
2522
|
+
publicKey?: string;
|
|
2523
|
+
/**
|
|
2524
|
+
* @generated from field: bool is_onboarded = 7;
|
|
2525
|
+
*/
|
|
2526
|
+
isOnboarded: boolean;
|
|
2527
|
+
/**
|
|
2528
|
+
* @generated from field: uint64 version = 8;
|
|
2529
|
+
*/
|
|
2530
|
+
version: bigint;
|
|
2531
|
+
/**
|
|
2532
|
+
* @generated from field: optional google.protobuf.Struct metadata = 9;
|
|
2533
|
+
*/
|
|
2534
|
+
metadata?: JsonObject;
|
|
2535
|
+
/**
|
|
2536
|
+
* @generated from field: google.protobuf.Timestamp created_at = 10;
|
|
2537
|
+
*/
|
|
2538
|
+
createdAt?: Timestamp;
|
|
2539
|
+
/**
|
|
2540
|
+
* @generated from field: google.protobuf.Timestamp updated_at = 11;
|
|
2541
|
+
*/
|
|
2542
|
+
updatedAt?: Timestamp;
|
|
2543
|
+
};
|
|
2544
|
+
/**
|
|
2545
|
+
* Describes the message silvana.orderbook.v1.WaitingListEntry.
|
|
2546
|
+
* Use `create(WaitingListEntrySchema)` to create a new message.
|
|
2547
|
+
*/
|
|
2548
|
+
export declare const WaitingListEntrySchema: GenMessage<WaitingListEntry>;
|
|
2549
|
+
/**
|
|
2550
|
+
* Add entry to waiting list (JWT auth with user 'onboard')
|
|
2551
|
+
*
|
|
2552
|
+
* @generated from message silvana.orderbook.v1.AddWaitingListEntryRequest
|
|
2553
|
+
*/
|
|
2554
|
+
export type AddWaitingListEntryRequest = Message<"silvana.orderbook.v1.AddWaitingListEntryRequest"> & {
|
|
2555
|
+
/**
|
|
2556
|
+
* @generated from field: silvana.orderbook.v1.JWTAuth auth = 1;
|
|
2557
|
+
*/
|
|
2558
|
+
auth?: JWTAuth;
|
|
2559
|
+
/**
|
|
2560
|
+
* @generated from field: google.protobuf.Struct user_data = 2;
|
|
2561
|
+
*/
|
|
2562
|
+
userData?: JsonObject;
|
|
2563
|
+
/**
|
|
2564
|
+
* @generated from field: string source = 3;
|
|
2565
|
+
*/
|
|
2566
|
+
source: string;
|
|
2567
|
+
/**
|
|
2568
|
+
* @generated from field: optional string email = 4;
|
|
2569
|
+
*/
|
|
2570
|
+
email?: string;
|
|
2571
|
+
/**
|
|
2572
|
+
* @generated from field: optional string public_key = 5;
|
|
2573
|
+
*/
|
|
2574
|
+
publicKey?: string;
|
|
2575
|
+
/**
|
|
2576
|
+
* @generated from field: optional google.protobuf.Struct metadata = 6;
|
|
2577
|
+
*/
|
|
2578
|
+
metadata?: JsonObject;
|
|
2579
|
+
};
|
|
2580
|
+
/**
|
|
2581
|
+
* Describes the message silvana.orderbook.v1.AddWaitingListEntryRequest.
|
|
2582
|
+
* Use `create(AddWaitingListEntryRequestSchema)` to create a new message.
|
|
2583
|
+
*/
|
|
2584
|
+
export declare const AddWaitingListEntryRequestSchema: GenMessage<AddWaitingListEntryRequest>;
|
|
2585
|
+
/**
|
|
2586
|
+
* @generated from message silvana.orderbook.v1.AddWaitingListEntryResponse
|
|
2587
|
+
*/
|
|
2588
|
+
export type AddWaitingListEntryResponse = Message<"silvana.orderbook.v1.AddWaitingListEntryResponse"> & {
|
|
2589
|
+
/**
|
|
2590
|
+
* @generated from field: bool success = 1;
|
|
2591
|
+
*/
|
|
2592
|
+
success: boolean;
|
|
2593
|
+
/**
|
|
2594
|
+
* @generated from field: string message = 2;
|
|
2595
|
+
*/
|
|
2596
|
+
message: string;
|
|
2597
|
+
/**
|
|
2598
|
+
* @generated from field: uint64 id = 3;
|
|
2599
|
+
*/
|
|
2600
|
+
id: bigint;
|
|
2601
|
+
};
|
|
2602
|
+
/**
|
|
2603
|
+
* Describes the message silvana.orderbook.v1.AddWaitingListEntryResponse.
|
|
2604
|
+
* Use `create(AddWaitingListEntryResponseSchema)` to create a new message.
|
|
2605
|
+
*/
|
|
2606
|
+
export declare const AddWaitingListEntryResponseSchema: GenMessage<AddWaitingListEntryResponse>;
|
|
2607
|
+
/**
|
|
2608
|
+
* Canton round with conversion coefficients for reward calculations
|
|
2609
|
+
*
|
|
2610
|
+
* @generated from message silvana.orderbook.v1.Round
|
|
2611
|
+
*/
|
|
2612
|
+
export type Round = Message<"silvana.orderbook.v1.Round"> & {
|
|
2613
|
+
/**
|
|
2614
|
+
* @generated from field: uint64 round_number = 1;
|
|
2615
|
+
*/
|
|
2616
|
+
roundNumber: bigint;
|
|
2617
|
+
/**
|
|
2618
|
+
* DECIMAL(38,10) as string
|
|
2619
|
+
*
|
|
2620
|
+
* @generated from field: optional string issuance_per_featured_app_reward_coupon = 2;
|
|
2621
|
+
*/
|
|
2622
|
+
issuancePerFeaturedAppRewardCoupon?: string;
|
|
2623
|
+
/**
|
|
2624
|
+
* DECIMAL(38,10) as string
|
|
2625
|
+
*
|
|
2626
|
+
* @generated from field: optional string issuance_per_unfeatured_app_reward_coupon = 3;
|
|
2627
|
+
*/
|
|
2628
|
+
issuancePerUnfeaturedAppRewardCoupon?: string;
|
|
2629
|
+
/**
|
|
2630
|
+
* DECIMAL(38,10) as string
|
|
2631
|
+
*
|
|
2632
|
+
* @generated from field: optional string cc_usd_rate = 4;
|
|
2633
|
+
*/
|
|
2634
|
+
ccUsdRate?: string;
|
|
2635
|
+
/**
|
|
2636
|
+
* DECIMAL(38,10) as string
|
|
2637
|
+
*
|
|
2638
|
+
* @generated from field: optional string traffic_cost_usd_per_mb = 5;
|
|
2639
|
+
*/
|
|
2640
|
+
trafficCostUsdPerMb?: string;
|
|
2641
|
+
/**
|
|
2642
|
+
* @generated from field: google.protobuf.Timestamp created_at = 6;
|
|
2643
|
+
*/
|
|
2644
|
+
createdAt?: Timestamp;
|
|
2645
|
+
/**
|
|
2646
|
+
* @generated from field: google.protobuf.Timestamp updated_at = 7;
|
|
2647
|
+
*/
|
|
2648
|
+
updatedAt?: Timestamp;
|
|
2649
|
+
};
|
|
2650
|
+
/**
|
|
2651
|
+
* Describes the message silvana.orderbook.v1.Round.
|
|
2652
|
+
* Use `create(RoundSchema)` to create a new message.
|
|
2653
|
+
*/
|
|
2654
|
+
export declare const RoundSchema: GenMessage<Round>;
|
|
2655
|
+
/**
|
|
2656
|
+
* Invite code for user onboarding
|
|
2657
|
+
*
|
|
2658
|
+
* @generated from message silvana.orderbook.v1.Invite
|
|
2659
|
+
*/
|
|
2660
|
+
export type Invite = Message<"silvana.orderbook.v1.Invite"> & {
|
|
2661
|
+
/**
|
|
2662
|
+
* @generated from field: string invite_code = 1;
|
|
2663
|
+
*/
|
|
2664
|
+
inviteCode: string;
|
|
2665
|
+
/**
|
|
2666
|
+
* @generated from field: string channel = 2;
|
|
2667
|
+
*/
|
|
2668
|
+
channel: string;
|
|
2669
|
+
/**
|
|
2670
|
+
* DECIMAL(38,10) as string
|
|
2671
|
+
*
|
|
2672
|
+
* @generated from field: optional string rewards = 3;
|
|
2673
|
+
*/
|
|
2674
|
+
rewards?: string;
|
|
2675
|
+
/**
|
|
2676
|
+
* @generated from field: optional google.protobuf.Struct metadata = 4;
|
|
2677
|
+
*/
|
|
2678
|
+
metadata?: JsonObject;
|
|
2679
|
+
/**
|
|
2680
|
+
* @generated from field: silvana.orderbook.v1.InviteStatus status = 5;
|
|
2681
|
+
*/
|
|
2682
|
+
status: InviteStatus;
|
|
2683
|
+
/**
|
|
2684
|
+
* @generated from field: uint32 count_used = 6;
|
|
2685
|
+
*/
|
|
2686
|
+
countUsed: number;
|
|
2687
|
+
/**
|
|
2688
|
+
* @generated from field: optional uint32 max_count = 7;
|
|
2689
|
+
*/
|
|
2690
|
+
maxCount?: number;
|
|
2691
|
+
/**
|
|
2692
|
+
* @generated from field: string created_by = 8;
|
|
2693
|
+
*/
|
|
2694
|
+
createdBy: string;
|
|
2695
|
+
/**
|
|
2696
|
+
* @generated from field: google.protobuf.Timestamp created_at = 9;
|
|
2697
|
+
*/
|
|
2698
|
+
createdAt?: Timestamp;
|
|
2699
|
+
/**
|
|
2700
|
+
* @generated from field: google.protobuf.Timestamp updated_at = 10;
|
|
2701
|
+
*/
|
|
2702
|
+
updatedAt?: Timestamp;
|
|
2703
|
+
};
|
|
2704
|
+
/**
|
|
2705
|
+
* Describes the message silvana.orderbook.v1.Invite.
|
|
2706
|
+
* Use `create(InviteSchema)` to create a new message.
|
|
2707
|
+
*/
|
|
2708
|
+
export declare const InviteSchema: GenMessage<Invite>;
|
|
2709
|
+
/**
|
|
2710
|
+
* Get invite by code
|
|
2711
|
+
*
|
|
2712
|
+
* @generated from message silvana.orderbook.v1.GetInviteRequest
|
|
2713
|
+
*/
|
|
2714
|
+
export type GetInviteRequest = Message<"silvana.orderbook.v1.GetInviteRequest"> & {
|
|
2715
|
+
/**
|
|
2716
|
+
* @generated from field: string invite_code = 1;
|
|
2717
|
+
*/
|
|
2718
|
+
inviteCode: string;
|
|
2719
|
+
};
|
|
2720
|
+
/**
|
|
2721
|
+
* Describes the message silvana.orderbook.v1.GetInviteRequest.
|
|
2722
|
+
* Use `create(GetInviteRequestSchema)` to create a new message.
|
|
2723
|
+
*/
|
|
2724
|
+
export declare const GetInviteRequestSchema: GenMessage<GetInviteRequest>;
|
|
2725
|
+
/**
|
|
2726
|
+
* @generated from message silvana.orderbook.v1.GetInviteResponse
|
|
2727
|
+
*/
|
|
2728
|
+
export type GetInviteResponse = Message<"silvana.orderbook.v1.GetInviteResponse"> & {
|
|
2729
|
+
/**
|
|
2730
|
+
* @generated from field: bool found = 1;
|
|
2731
|
+
*/
|
|
2732
|
+
found: boolean;
|
|
2733
|
+
/**
|
|
2734
|
+
* @generated from field: optional silvana.orderbook.v1.Invite invite = 2;
|
|
2735
|
+
*/
|
|
2736
|
+
invite?: Invite;
|
|
2737
|
+
};
|
|
2738
|
+
/**
|
|
2739
|
+
* Describes the message silvana.orderbook.v1.GetInviteResponse.
|
|
2740
|
+
* Use `create(GetInviteResponseSchema)` to create a new message.
|
|
2741
|
+
*/
|
|
2742
|
+
export declare const GetInviteResponseSchema: GenMessage<GetInviteResponse>;
|
|
2743
|
+
/**
|
|
2744
|
+
* Use invite code (increments count, marks used if at max)
|
|
2745
|
+
*
|
|
2746
|
+
* @generated from message silvana.orderbook.v1.UseInviteRequest
|
|
2747
|
+
*/
|
|
2748
|
+
export type UseInviteRequest = Message<"silvana.orderbook.v1.UseInviteRequest"> & {
|
|
2749
|
+
/**
|
|
2750
|
+
* @generated from field: string invite_code = 1;
|
|
2751
|
+
*/
|
|
2752
|
+
inviteCode: string;
|
|
2753
|
+
/**
|
|
2754
|
+
* Who is using the invite
|
|
2755
|
+
*
|
|
2756
|
+
* @generated from field: optional string party_id = 2;
|
|
2757
|
+
*/
|
|
2758
|
+
partyId?: string;
|
|
2759
|
+
};
|
|
2760
|
+
/**
|
|
2761
|
+
* Describes the message silvana.orderbook.v1.UseInviteRequest.
|
|
2762
|
+
* Use `create(UseInviteRequestSchema)` to create a new message.
|
|
2763
|
+
*/
|
|
2764
|
+
export declare const UseInviteRequestSchema: GenMessage<UseInviteRequest>;
|
|
2765
|
+
/**
|
|
2766
|
+
* @generated from message silvana.orderbook.v1.UseInviteResponse
|
|
2767
|
+
*/
|
|
2768
|
+
export type UseInviteResponse = Message<"silvana.orderbook.v1.UseInviteResponse"> & {
|
|
2769
|
+
/**
|
|
2770
|
+
* @generated from field: bool success = 1;
|
|
2771
|
+
*/
|
|
2772
|
+
success: boolean;
|
|
2773
|
+
/**
|
|
2774
|
+
* @generated from field: string message = 2;
|
|
2775
|
+
*/
|
|
2776
|
+
message: string;
|
|
2777
|
+
/**
|
|
2778
|
+
* Updated invite after use
|
|
2779
|
+
*
|
|
2780
|
+
* @generated from field: optional silvana.orderbook.v1.Invite invite = 3;
|
|
2781
|
+
*/
|
|
2782
|
+
invite?: Invite;
|
|
2783
|
+
};
|
|
2784
|
+
/**
|
|
2785
|
+
* Describes the message silvana.orderbook.v1.UseInviteResponse.
|
|
2786
|
+
* Use `create(UseInviteResponseSchema)` to create a new message.
|
|
2787
|
+
*/
|
|
2788
|
+
export declare const UseInviteResponseSchema: GenMessage<UseInviteResponse>;
|
|
2419
2789
|
/**
|
|
2420
2790
|
* Create a new instrument
|
|
2421
2791
|
*
|
|
@@ -2839,6 +3209,37 @@ export declare enum MarketType {
|
|
|
2839
3209
|
* Describes the enum silvana.orderbook.v1.MarketType.
|
|
2840
3210
|
*/
|
|
2841
3211
|
export declare const MarketTypeSchema: GenEnum<MarketType>;
|
|
3212
|
+
/**
|
|
3213
|
+
* Invite status enum
|
|
3214
|
+
*
|
|
3215
|
+
* @generated from enum silvana.orderbook.v1.InviteStatus
|
|
3216
|
+
*/
|
|
3217
|
+
export declare enum InviteStatus {
|
|
3218
|
+
/**
|
|
3219
|
+
* @generated from enum value: INVITE_STATUS_UNSPECIFIED = 0;
|
|
3220
|
+
*/
|
|
3221
|
+
UNSPECIFIED = 0,
|
|
3222
|
+
/**
|
|
3223
|
+
* @generated from enum value: INVITE_STATUS_VALID = 1;
|
|
3224
|
+
*/
|
|
3225
|
+
VALID = 1,
|
|
3226
|
+
/**
|
|
3227
|
+
* @generated from enum value: INVITE_STATUS_EXPIRED = 2;
|
|
3228
|
+
*/
|
|
3229
|
+
EXPIRED = 2,
|
|
3230
|
+
/**
|
|
3231
|
+
* @generated from enum value: INVITE_STATUS_USED = 3;
|
|
3232
|
+
*/
|
|
3233
|
+
USED = 3,
|
|
3234
|
+
/**
|
|
3235
|
+
* @generated from enum value: INVITE_STATUS_CANCELLED = 4;
|
|
3236
|
+
*/
|
|
3237
|
+
CANCELLED = 4
|
|
3238
|
+
}
|
|
3239
|
+
/**
|
|
3240
|
+
* Describes the enum silvana.orderbook.v1.InviteStatus.
|
|
3241
|
+
*/
|
|
3242
|
+
export declare const InviteStatusSchema: GenEnum<InviteStatus>;
|
|
2842
3243
|
/**
|
|
2843
3244
|
* @generated from service silvana.orderbook.v1.OrderbookService
|
|
2844
3245
|
*/
|
|
@@ -2963,6 +3364,34 @@ export declare const OrderbookService: GenService<{
|
|
|
2963
3364
|
input: typeof GetLiquidityProvidersRequestSchema;
|
|
2964
3365
|
output: typeof GetLiquidityProvidersResponseSchema;
|
|
2965
3366
|
};
|
|
3367
|
+
/**
|
|
3368
|
+
* Waiting list operations (JWT auth with user 'onboard')
|
|
3369
|
+
*
|
|
3370
|
+
* @generated from rpc silvana.orderbook.v1.OrderbookService.AddWaitingListEntry
|
|
3371
|
+
*/
|
|
3372
|
+
addWaitingListEntry: {
|
|
3373
|
+
methodKind: "unary";
|
|
3374
|
+
input: typeof AddWaitingListEntryRequestSchema;
|
|
3375
|
+
output: typeof AddWaitingListEntryResponseSchema;
|
|
3376
|
+
};
|
|
3377
|
+
/**
|
|
3378
|
+
* Invite operations
|
|
3379
|
+
*
|
|
3380
|
+
* @generated from rpc silvana.orderbook.v1.OrderbookService.GetInvite
|
|
3381
|
+
*/
|
|
3382
|
+
getInvite: {
|
|
3383
|
+
methodKind: "unary";
|
|
3384
|
+
input: typeof GetInviteRequestSchema;
|
|
3385
|
+
output: typeof GetInviteResponseSchema;
|
|
3386
|
+
};
|
|
3387
|
+
/**
|
|
3388
|
+
* @generated from rpc silvana.orderbook.v1.OrderbookService.UseInvite
|
|
3389
|
+
*/
|
|
3390
|
+
useInvite: {
|
|
3391
|
+
methodKind: "unary";
|
|
3392
|
+
input: typeof UseInviteRequestSchema;
|
|
3393
|
+
output: typeof UseInviteResponseSchema;
|
|
3394
|
+
};
|
|
2966
3395
|
/**
|
|
2967
3396
|
* Admin operations (require operator authentication)
|
|
2968
3397
|
*
|