@iotexproject/kit 0.1.70 → 0.1.72

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.
Files changed (2) hide show
  1. package/dist/index.d.ts +118 -388
  2. package/package.json +8 -1
package/dist/index.d.ts CHANGED
@@ -8163,6 +8163,8 @@ declare class LiquidityMining {
8163
8163
  type: string;
8164
8164
  startTime: number;
8165
8165
  endTime: number;
8166
+ isExpired: boolean;
8167
+ isNew: boolean;
8166
8168
  key: MimoV3MiningPoolKey;
8167
8169
  address: `0x${string}`;
8168
8170
  chainId: string;
@@ -8204,6 +8206,7 @@ declare class LiquidityMining {
8204
8206
  };
8205
8207
  price0: number;
8206
8208
  price1: number;
8209
+ liquidity: any;
8207
8210
  }[]>;
8208
8211
  StakedToken: {
8209
8212
  symbol: string;
@@ -8251,8 +8254,6 @@ declare class LiquidityMining {
8251
8254
  totalStakedBalanceUSD: string;
8252
8255
  totalStakedBalanceUSDOrigin: string;
8253
8256
  };
8254
- isNew: boolean;
8255
- isExpired: boolean;
8256
8257
  totalReward: {
8257
8258
  totalRewardUSD: string;
8258
8259
  totalReward: {
@@ -8301,6 +8302,7 @@ declare class LiquidityMining {
8301
8302
  };
8302
8303
  price0: number;
8303
8304
  price1: number;
8305
+ liquidity: any;
8304
8306
  })[];
8305
8307
  myPoolBalance: {
8306
8308
  token0Address: any;
@@ -8324,6 +8326,7 @@ declare class LiquidityMining {
8324
8326
  };
8325
8327
  price0: number;
8326
8328
  price1: number;
8329
+ liquidity: any;
8327
8330
  }[];
8328
8331
  RewardToken: import("@dappworks/kit/aiem").QueryReturnType<ERC20Entity, {
8329
8332
  symbol: true;
@@ -8365,6 +8368,8 @@ declare class LiquidityMiningV3 {
8365
8368
  }, ctx?: ConfigContext): Promise<{
8366
8369
  startTime: number;
8367
8370
  endTime: number;
8371
+ isExpired: boolean;
8372
+ isNew: boolean;
8368
8373
  key: MimoV3MiningPoolKey;
8369
8374
  address: `0x${string}`;
8370
8375
  chainId: string;
@@ -8406,6 +8411,7 @@ declare class LiquidityMiningV3 {
8406
8411
  };
8407
8412
  price0: number;
8408
8413
  price1: number;
8414
+ liquidity: any;
8409
8415
  }[]>;
8410
8416
  StakedToken: {
8411
8417
  symbol: string;
@@ -8453,8 +8459,6 @@ declare class LiquidityMiningV3 {
8453
8459
  totalStakedBalanceUSD: string;
8454
8460
  totalStakedBalanceUSDOrigin: string;
8455
8461
  };
8456
- isNew: boolean;
8457
- isExpired: boolean;
8458
8462
  totalReward: {
8459
8463
  totalRewardUSD: string;
8460
8464
  totalReward: {
@@ -8503,6 +8507,7 @@ declare class LiquidityMiningV3 {
8503
8507
  };
8504
8508
  price0: number;
8505
8509
  price1: number;
8510
+ liquidity: any;
8506
8511
  })[];
8507
8512
  myPoolBalance: {
8508
8513
  token0Address: any;
@@ -8526,6 +8531,7 @@ declare class LiquidityMiningV3 {
8526
8531
  };
8527
8532
  price0: number;
8528
8533
  price1: number;
8534
+ liquidity: any;
8529
8535
  }[];
8530
8536
  RewardToken: import("@dappworks/kit/aiem").QueryReturnType<ERC20Entity, {
8531
8537
  symbol: true;
@@ -8556,6 +8562,25 @@ declare class LiquidityMiningV3 {
8556
8562
  chainId: string;
8557
8563
  type: string;
8558
8564
  }>;
8565
+ batchHarvest(args: {
8566
+ key: MimoV3MiningPoolKey;
8567
+ v3PositionIds: number[];
8568
+ account: `0x${string}`;
8569
+ }, ctx?: ConfigContext): Promise<{
8570
+ data: any;
8571
+ address: string;
8572
+ chainId: string;
8573
+ type: string;
8574
+ }>;
8575
+ batchWithdraw(args: {
8576
+ v3PositionIds: number[];
8577
+ account: `0x${string}`;
8578
+ }, ctx?: ConfigContext): Promise<{
8579
+ data: any;
8580
+ address: string;
8581
+ chainId: string;
8582
+ type: string;
8583
+ }>;
8559
8584
  unstakeAndWithdraw(args: {
8560
8585
  key: MimoV3MiningPoolKey;
8561
8586
  v3PositionId: number;
@@ -8605,6 +8630,7 @@ declare class ClickHouseSDK {
8605
8630
  query(sql: string): Promise<any>;
8606
8631
  }
8607
8632
  declare class BaseDBModule {
8633
+ ch: ClickHouseSDK;
8608
8634
  analyzer: ReturnType<typeof postgres>;
8609
8635
  scout: ReturnType<typeof postgres>;
8610
8636
  superbase: ReturnType<typeof postgres>;
@@ -8613,7 +8639,6 @@ declare class BaseDBModule {
8613
8639
  nftmarket: ReturnType<typeof postgres>;
8614
8640
  mimo: ReturnType<typeof postgres>;
8615
8641
  depinscan: ReturnType<typeof postgres>;
8616
- ch: ClickHouseSDK;
8617
8642
  analysis: ClickHouseSDK;
8618
8643
  microServiceCenter: ReturnType<typeof postgres>;
8619
8644
  constructor();
@@ -8645,294 +8670,6 @@ declare class Account extends BaseDBModule {
8645
8670
  tokens: import("postgres").RowList<import("postgres").Row[]>;
8646
8671
  }>;
8647
8672
  }
8648
- declare class Analysis extends BaseDBModule {
8649
- checkAuth(key: string): Promise<{
8650
- ok: boolean;
8651
- message: string;
8652
- authData: null;
8653
- } | {
8654
- ok: boolean;
8655
- message: string;
8656
- authData: {
8657
- app_id: any;
8658
- };
8659
- }>;
8660
- upload_event({ user_id, event_type, event_id, event }: {
8661
- event_type: string;
8662
- user_id: string;
8663
- event_id: string;
8664
- event: Record<string, any>;
8665
- }, ctx?: {
8666
- authData?: {
8667
- app_id: string;
8668
- };
8669
- }): Promise<{
8670
- status: number;
8671
- error: string;
8672
- ok?: undefined;
8673
- msg?: undefined;
8674
- } | {
8675
- ok: boolean;
8676
- msg: string;
8677
- status?: undefined;
8678
- error?: undefined;
8679
- }>;
8680
- referral_code({ refer_id, }: {
8681
- refer_id: string;
8682
- }, ctx?: {
8683
- authData?: {
8684
- app_id: string;
8685
- };
8686
- }): Promise<{
8687
- status: number;
8688
- error: string;
8689
- ok?: undefined;
8690
- referral_code?: undefined;
8691
- msg?: undefined;
8692
- } | {
8693
- ok: boolean;
8694
- referral_code: any;
8695
- msg: string;
8696
- status?: undefined;
8697
- error?: undefined;
8698
- }>;
8699
- create_refer({ refer_id, refer_id_type, user_id, device_id, data, }: {
8700
- refer_id: string;
8701
- refer_id_type: "referral_code" | "user_id";
8702
- user_id: string;
8703
- device_id: string;
8704
- data: Record<string, any>;
8705
- }, ctx?: {
8706
- authData?: {
8707
- app_id: string;
8708
- };
8709
- }): Promise<{
8710
- status: number;
8711
- error: string;
8712
- ok?: undefined;
8713
- msg?: undefined;
8714
- } | {
8715
- ok: boolean;
8716
- error: string;
8717
- status?: undefined;
8718
- msg?: undefined;
8719
- } | {
8720
- ok: boolean;
8721
- msg: string;
8722
- status?: undefined;
8723
- error?: undefined;
8724
- }>;
8725
- fetch_event({ event_id }: {
8726
- event_id: string;
8727
- }): Promise<Record<string, any>>;
8728
- batch_fetch_event({ event_ids }: {
8729
- event_ids: string[];
8730
- }): Promise<any[] | {
8731
- status: number;
8732
- error: string;
8733
- }>;
8734
- fetch_user_point({ user_id, include_referral_point, }: {
8735
- user_id: string;
8736
- include_referral_point?: string;
8737
- }, ctx?: {
8738
- authData?: {
8739
- app_id: string;
8740
- };
8741
- }): Promise<{
8742
- status: number;
8743
- error: string;
8744
- ok?: undefined;
8745
- point?: undefined;
8746
- } | {
8747
- ok: boolean;
8748
- point: any;
8749
- status?: undefined;
8750
- error?: undefined;
8751
- }>;
8752
- fetch_invitees_num({ user_id, }: {
8753
- user_id: string;
8754
- }, ctx?: {
8755
- authData?: {
8756
- app_id: string;
8757
- };
8758
- }): Promise<{
8759
- status: number;
8760
- error: string;
8761
- ok?: undefined;
8762
- invitees_num?: undefined;
8763
- } | {
8764
- ok: boolean;
8765
- invitees_num: any;
8766
- status?: undefined;
8767
- error?: undefined;
8768
- }>;
8769
- }
8770
- declare class AnalysisV2 extends BaseDBModule {
8771
- checkAuth(key: string): Promise<{
8772
- ok: boolean;
8773
- message: string;
8774
- authData: null;
8775
- } | {
8776
- ok: boolean;
8777
- message: string;
8778
- authData: {
8779
- app_id: any;
8780
- };
8781
- }>;
8782
- upload_event({ user_id, event_id, event, campaign }: {
8783
- user_id: string;
8784
- event_id: string;
8785
- event: any;
8786
- campaign: any;
8787
- }, ctx?: {
8788
- authData?: {
8789
- app_id: string;
8790
- };
8791
- }): Promise<{
8792
- ok: boolean;
8793
- msg: string;
8794
- status?: undefined;
8795
- error?: undefined;
8796
- } | {
8797
- status: number;
8798
- error: any;
8799
- ok?: undefined;
8800
- msg?: undefined;
8801
- }>;
8802
- referral_code({ refer_id, }: {
8803
- refer_id: string;
8804
- }, ctx?: {
8805
- authData?: {
8806
- app_id: string;
8807
- };
8808
- }): Promise<{
8809
- status: number;
8810
- error: string;
8811
- ok?: undefined;
8812
- referral_code?: undefined;
8813
- msg?: undefined;
8814
- } | {
8815
- ok: boolean;
8816
- referral_code: any;
8817
- msg: string;
8818
- status?: undefined;
8819
- error?: undefined;
8820
- }>;
8821
- create_refer({ refer_id, refer_id_type, user_id, event_id, event, }: {
8822
- refer_id: string;
8823
- refer_id_type: "referral_code" | "user_id";
8824
- user_id: string;
8825
- event_id: string;
8826
- event: any;
8827
- }, ctx?: {
8828
- authData?: {
8829
- app_id: string;
8830
- };
8831
- }): Promise<{
8832
- status: number;
8833
- error: string;
8834
- ok?: undefined;
8835
- msg?: undefined;
8836
- } | {
8837
- ok: boolean;
8838
- msg: string;
8839
- status?: undefined;
8840
- error?: undefined;
8841
- }>;
8842
- fetch_event({ event_id }: {
8843
- event_id: string;
8844
- }): Promise<Record<string, any>>;
8845
- batch_fetch_event({ event_ids }: {
8846
- event_ids: string[];
8847
- }): Promise<any[] | {
8848
- status: number;
8849
- error: string;
8850
- }>;
8851
- fetch_user_point({ user_id, }: {
8852
- user_id: string;
8853
- }, ctx?: {
8854
- authData?: {
8855
- app_id: string;
8856
- };
8857
- }): Promise<{
8858
- status: number;
8859
- error: string;
8860
- ok?: undefined;
8861
- totalPoints?: undefined;
8862
- point?: undefined;
8863
- } | {
8864
- ok: boolean;
8865
- totalPoints: any;
8866
- point: any;
8867
- status?: undefined;
8868
- error?: undefined;
8869
- }>;
8870
- binobits({ user_id, }: {
8871
- user_id: string;
8872
- }, ctx?: {
8873
- authData?: {
8874
- app_id: string;
8875
- };
8876
- }): Promise<{
8877
- status: number;
8878
- error: string;
8879
- ok?: undefined;
8880
- amount?: undefined;
8881
- } | {
8882
- ok: boolean;
8883
- amount: any;
8884
- status?: undefined;
8885
- error?: undefined;
8886
- }>;
8887
- fetch_invitees_num({ user_id, }: {
8888
- user_id: string;
8889
- }, ctx?: {
8890
- authData?: {
8891
- app_id: string;
8892
- };
8893
- }): Promise<{
8894
- status: number;
8895
- error: string;
8896
- ok?: undefined;
8897
- invitees_num?: undefined;
8898
- } | {
8899
- ok: boolean;
8900
- invitees_num: any;
8901
- status?: undefined;
8902
- error?: undefined;
8903
- }>;
8904
- user_count({ project_id, action_id, }: {
8905
- project_id: number;
8906
- action_id?: number;
8907
- }, ctx?: {
8908
- authData?: {
8909
- app_id: string;
8910
- };
8911
- }): Promise<{
8912
- status: number;
8913
- error: string;
8914
- count?: undefined;
8915
- } | {
8916
- status: number;
8917
- count: any;
8918
- error?: undefined;
8919
- }>;
8920
- query_refer_code({ refer_code }: {
8921
- refer_code: string;
8922
- }, ctx?: {
8923
- authData?: {
8924
- app_id: string;
8925
- };
8926
- }): Promise<{
8927
- status: number;
8928
- error: string;
8929
- result?: undefined;
8930
- } | {
8931
- status: number;
8932
- result: any;
8933
- error?: undefined;
8934
- }>;
8935
- }
8936
8673
  declare class Analyzer extends BaseDBModule {
8937
8674
  tvl(): Promise<any>;
8938
8675
  dailyTvl({ start_date, end_date }?: {
@@ -9116,10 +8853,6 @@ declare class Staking$1 extends BaseDBModule {
9116
8853
  blocks: import("postgres").Row[] & Iterable<import("postgres").Row> & import("postgres").ResultQueryMeta<number, string | number>;
9117
8854
  total: number;
9118
8855
  };
9119
- error?: undefined;
9120
- } | {
9121
- error: unknown;
9122
- data?: undefined;
9123
8856
  }>;
9124
8857
  }
9125
8858
  export type ComponentType = "banner-latest" | "token-2049";
@@ -9175,51 +8908,23 @@ declare class Mimo$1 extends BaseDBModule {
9175
8908
  pair: string;
9176
8909
  type: string;
9177
8910
  }): Promise<never[] | import("postgres").RowList<import("postgres").Row[]> | undefined>;
8911
+ pool_detail_v2({ pair_address }: {
8912
+ pair_address: string;
8913
+ }): Promise<import("postgres").Row>;
8914
+ token_detail_v2({ token_address }: {
8915
+ token_address: string;
8916
+ }): Promise<import("postgres").Row>;
9178
8917
  token_tx_v2({ token, type }: {
9179
8918
  token: string;
9180
8919
  type: string;
9181
8920
  }): Promise<never[] | import("postgres").RowList<import("postgres").Row[]> | undefined>;
9182
- }
9183
- declare class LearnToEarn extends BaseDBModule {
9184
- checkAuth(key: string): Promise<{
9185
- ok: boolean;
9186
- message: string;
9187
- authData: null;
9188
- } | {
9189
- ok: boolean;
9190
- message: string;
9191
- authData: {
9192
- app_id: any;
9193
- };
9194
- }>;
9195
- questions({ post_id }: {
9196
- post_id: string;
9197
- }, ctx?: {
9198
- authData?: {
9199
- app_id: string;
9200
- };
9201
- }): Promise<import("postgres").RowList<import("postgres").Row[]> | {
9202
- status: number;
9203
- error: string;
9204
- }>;
9205
- reply({ post_id, ids, answers }: {
9206
- post_id: string;
9207
- ids: number[];
9208
- answers: string[];
9209
- }, ctx?: {
9210
- authData?: {
9211
- app_id: string;
9212
- };
8921
+ mimo_swap_volume(args: {
8922
+ token: string;
8923
+ user: string;
8924
+ volume?: number;
9213
8925
  }): Promise<{
9214
- status: number;
9215
- error: string;
9216
- isCorrect?: undefined;
9217
- wrongIds?: undefined;
9218
- } | {
9219
- isCorrect: boolean;
9220
- wrongIds: number[];
9221
- status?: undefined;
9222
- error?: undefined;
8926
+ usdAmount: string;
8927
+ exceed: boolean;
9223
8928
  }>;
9224
8929
  }
9225
8930
  declare class Galxe extends BaseDBModule {
@@ -9248,69 +8953,37 @@ declare class DepinScan extends BaseDBModule {
9248
8953
  total_device: any;
9249
8954
  }[]>;
9250
8955
  }
9251
- declare class MicroService extends BaseDBModule {
9252
- checkAuth(key: string): Promise<{
9253
- ok: boolean;
9254
- message: string;
9255
- authData: null;
9256
- } | {
9257
- ok: boolean;
9258
- message: string;
9259
- authData: {
9260
- app_id: any;
9261
- };
9262
- }>;
9263
- user_data({ user_id, key }: {
9264
- user_id: string;
9265
- key?: string;
9266
- }, ctx?: {
9267
- authData?: {
9268
- app_id: string;
9269
- };
8956
+ declare class Verification {
8957
+ checkVerification({ type, text }: {
8958
+ type: string;
8959
+ text: string;
9270
8960
  }): Promise<{
9271
- status: number;
9272
- error: string;
9273
- user?: undefined;
9274
- } | {
9275
- user: import("postgres").Row;
9276
- status?: undefined;
9277
- error?: undefined;
8961
+ ok: boolean;
8962
+ isVerified: boolean;
9278
8963
  }>;
9279
- save_user_data({ user_id, key, value }: {
9280
- user_id: string;
9281
- key: string;
9282
- value: any;
9283
- }, ctx?: {
9284
- authData?: {
9285
- app_id: string;
9286
- };
8964
+ upsertVerification({ type, text, status }: {
8965
+ type: string;
8966
+ text: string;
8967
+ status: "verified" | "invalid";
9287
8968
  }): Promise<{
9288
- status: number;
9289
- error: string;
9290
- ok?: undefined;
9291
- } | {
9292
8969
  ok: boolean;
9293
- status?: undefined;
9294
- error?: undefined;
8970
+ message: string;
9295
8971
  }>;
9296
8972
  }
9297
8973
  declare const modules$1: {
9298
8974
  account: Account;
9299
- analysis: Analysis;
9300
- analysisv2: AnalysisV2;
9301
8975
  analyzer: Analyzer;
9302
8976
  staking: Staking$1;
9303
8977
  transaction: Transaction;
9304
8978
  nft: NFT;
9305
8979
  health: Health;
9306
- "learn-to-earn": LearnToEarn;
9307
8980
  contract: Contract;
9308
8981
  resource: Resource;
9309
8982
  iopay: IoPay;
9310
8983
  mimo: Mimo$1;
9311
8984
  galxe: Galxe;
9312
8985
  depinscan: DepinScan;
9313
- microservice: MicroService;
8986
+ verification: Verification;
9314
8987
  };
9315
8988
  export type DBModuleType = typeof modules$1;
9316
8989
  export interface ConfigOptions {
@@ -10343,12 +10016,34 @@ declare class Point {
10343
10016
  authData?: {
10344
10017
  sub: string;
10345
10018
  };
10346
- }): Promise<any>;
10019
+ }): Promise<{
10020
+ status: number;
10021
+ error: string;
10022
+ ok?: undefined;
10023
+ msg?: undefined;
10024
+ } | {
10025
+ status: number;
10026
+ ok: boolean;
10027
+ msg: string;
10028
+ error?: undefined;
10029
+ }>;
10347
10030
  fetch_referral_code(args?: any, ctx?: {
10348
10031
  authData?: {
10349
10032
  sub: string;
10350
10033
  };
10351
- }): Promise<any>;
10034
+ }): Promise<{
10035
+ status: number;
10036
+ error: string;
10037
+ ok?: undefined;
10038
+ referral_code?: undefined;
10039
+ msg?: undefined;
10040
+ } | {
10041
+ ok: boolean;
10042
+ referral_code: any;
10043
+ msg: string;
10044
+ status?: undefined;
10045
+ error?: undefined;
10046
+ }>;
10352
10047
  create_refer({ referral_code, device_id, }: {
10353
10048
  referral_code: string;
10354
10049
  device_id: string;
@@ -10356,13 +10051,31 @@ declare class Point {
10356
10051
  authData?: {
10357
10052
  sub: string;
10358
10053
  };
10359
- }): Promise<any>;
10054
+ }): Promise<{
10055
+ status: number;
10056
+ error: string;
10057
+ ok?: undefined;
10058
+ msg?: undefined;
10059
+ } | {
10060
+ status: number;
10061
+ ok: boolean;
10062
+ error: string;
10063
+ msg?: undefined;
10064
+ } | {
10065
+ status: number;
10066
+ ok: boolean;
10067
+ msg: string;
10068
+ error?: undefined;
10069
+ }>;
10360
10070
  fetch_event({ event_id }: {
10361
10071
  event_id: string;
10362
- }): Promise<any>;
10072
+ }): Promise<Record<string, any> | null>;
10363
10073
  batch_fetch_event({ event_ids }: {
10364
10074
  event_ids: string[];
10365
- }): Promise<any>;
10075
+ }): Promise<(Error | Record<string, any>)[] | {
10076
+ status: number;
10077
+ error: string;
10078
+ }>;
10366
10079
  fetch_tasks({ user_id }: {
10367
10080
  user_id: string;
10368
10081
  }): Promise<any[] | {
@@ -10372,10 +10085,27 @@ declare class Point {
10372
10085
  fetch_point({ user_id, include_referral_point }: {
10373
10086
  user_id: string;
10374
10087
  include_referral_point?: string;
10375
- }): Promise<any>;
10088
+ }): Promise<{
10089
+ ok: boolean;
10090
+ error: string;
10091
+ points: any;
10092
+ } | {
10093
+ status: number;
10094
+ error: string;
10095
+ }>;
10376
10096
  fetch_invitees_num({ user_id }: {
10377
10097
  user_id: string;
10378
- }): Promise<any>;
10098
+ }): Promise<{
10099
+ status: number;
10100
+ error: string;
10101
+ ok?: undefined;
10102
+ invitees_num?: undefined;
10103
+ } | {
10104
+ status: number;
10105
+ ok: boolean;
10106
+ invitees_num: any;
10107
+ error?: undefined;
10108
+ }>;
10379
10109
  }
10380
10110
  declare const modules$4: {
10381
10111
  point: Point;
package/package.json CHANGED
@@ -2,7 +2,7 @@
2
2
  "name": "@iotexproject/kit",
3
3
  "module": "index.ts",
4
4
  "type": "module",
5
- "version": "v0.1.70",
5
+ "version": "v0.1.72",
6
6
  "main": "dist/index.js",
7
7
  "types": "dist/index.d.ts",
8
8
  "scripts": {
@@ -23,6 +23,7 @@
23
23
  "@clickhouse/client": "^1.4.0",
24
24
  "@grpc/grpc-js": "^1.11.1",
25
25
  "@grpc/proto-loader": "^0.7.13",
26
+ "@hyperdx/node-opentelemetry": "^0.8.1",
26
27
  "@iotexproject/iotex-address-ts": "^1.0.4",
27
28
  "@noble/curves": "^1.6.0",
28
29
  "@tryghost/content-api": "^1.11.21",
@@ -39,6 +40,8 @@
39
40
  "crypto-js": "^4.2.0",
40
41
  "dataloader": "^2.2.2",
41
42
  "dayjs": "^1.11.12",
43
+ "dotenv": "^16.4.7",
44
+ "drizzle-orm": "^0.38.2",
42
45
  "ethers": "^6.13.2",
43
46
  "firebase-admin": "^12.6.0",
44
47
  "graphql-request": "^7.1.0",
@@ -52,6 +55,7 @@
52
55
  "lru-cache": "^11.0.0",
53
56
  "number-to-bn": "^1.7.0",
54
57
  "p-timeout": "^6.1.3",
58
+ "pg": "^8.13.1",
55
59
  "postgres": "^3.4.4",
56
60
  "reflect-metadata": "^0.2.2",
57
61
  "strip-ansi-cjs": "^8.0.0",
@@ -68,13 +72,16 @@
68
72
  "@types/crypto-js": "^4.2.2",
69
73
  "@types/google-protobuf": "^3.15.12",
70
74
  "@types/jsonwebtoken": "^9.0.7",
75
+ "@types/pg": "^8.11.10",
71
76
  "@types/tryghost__content-api": "^1.3.16",
72
77
  "@types/underscore": "^1.11.15",
73
78
  "bun-plugin-dts": "^0.2.3",
79
+ "drizzle-kit": "^0.30.1",
74
80
  "grpc-tools": "^1.12.4",
75
81
  "grpc_tools_node_protoc_ts": "^5.3.3",
76
82
  "hono": "^4.4.11",
77
83
  "protoc-gen-ts": "^0.8.7",
84
+ "tsx": "^4.19.2",
78
85
  "typescript": "^5.5.4"
79
86
  },
80
87
  "publishConfig": {