@cubist-labs/cubesigner-sdk 0.4.270 → 0.4.273

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.
@@ -33,6 +33,8 @@ export type UpdateOrgRequest = schemas["UpdateOrgRequest"];
33
33
  export type OrgExtProps = NonNullable<UpdateOrgRequest["ext_props"]>;
34
34
  export type UpdateOrgResponse = schemas["UpdateOrgResponse"];
35
35
  export type UpdateUserMembershipRequest = schemas["UpdateUserMembershipRequest"];
36
+ export type MfaResetRequest = schemas["MfaResetRequest"];
37
+ export type CompleteMfaResetRequest = schemas["CompleteMfaResetRequest"];
36
38
  export type NotificationEndpointConfiguration = schemas["NotificationEndpointConfiguration"];
37
39
  export type OrgEvents = schemas["OrgEventDiscriminants"];
38
40
  export type BillingEvent = schemas["BillingEvent"];
@@ -65,9 +67,12 @@ const AllOperationKinds: Record<OperationKind, true> = {
65
67
  BtcSign: true,
66
68
  BybitQueryUser: true,
67
69
  BybitQuerySubMembers: true,
70
+ BybitQueryCoinInfo: true,
68
71
  BybitQueryCoinsBalance: true,
69
72
  BybitQueryDepositAddress: true,
73
+ BybitDepositHistory: true,
70
74
  BybitUniversalTransfer: true,
75
+ BybitUniversalTransferHistory: true,
71
76
  BybitWithdraw: true,
72
77
  BybitWithdrawals: true,
73
78
  CoinbaseListAccounts: true,
@@ -78,6 +83,7 @@ const AllOperationKinds: Record<OperationKind, true> = {
78
83
  TaprootSign: true,
79
84
  Eip191Sign: true,
80
85
  Eip712Sign: true,
86
+ Eip7702Sign: true,
81
87
  EotsNonces: true,
82
88
  EotsSign: true,
83
89
  Eth1Sign: true,
@@ -165,7 +171,9 @@ export type EvmSignRequest = schemas["Eth1SignRequest"];
165
171
  export type EvmSignResponse = schemas["Eth1SignResponse"];
166
172
  export type Eip191SignRequest = schemas["Eip191SignRequest"];
167
173
  export type Eip712SignRequest = schemas["Eip712SignRequest"];
174
+ export type Eip7702SignRequest = schemas["Eip7702SignRequest"];
168
175
  export type Eip191Or712SignResponse = schemas["SignResponse"];
176
+ export type SignResponse = schemas["SignResponse"];
169
177
  export type Eth2SignRequest = schemas["Eth2SignRequest"];
170
178
  export type Eth2SignResponse = schemas["SignResponse"];
171
179
  export type Eth2StakeRequest = schemas["StakeRequest"];
package/src/scopes.ts CHANGED
@@ -59,8 +59,11 @@ export const AllScopes: Record<ExplicitScope, string> =
59
59
  "sign:bybit:queryUser" : "Allows access to the typed sign 'bybit' endpoint, but only for the 'QueryUser' operation.",
60
60
  "sign:bybit:querySubMembers" : "Allows access to the typed sign 'bybit' endpoint, but only for the 'QuerySubMembers' operation.",
61
61
  "sign:bybit:queryCoinsBalance" : "Allows access to the typed sign 'bybit' endpoint, but only for the 'QueryCoinsBalance' operation.",
62
+ "sign:bybit:queryCoinInfo" : "Allows access to the typed sign 'bybit' endpoint, but only for the 'QueryCoinInfo' operation.",
62
63
  "sign:bybit:queryDepositAddress" : "Allows access to the typed sign 'bybit' endpoint, but only for the 'QueryDepositAddress' operation.",
64
+ "sign:bybit:depositHistory" : "Allows access to the typed sign 'bybit' endpoint, but only for the 'DepositHistory' operation.",
63
65
  "sign:bybit:universalTransfer" : "Allows access to the typed sign 'bybit' endpoint, but only for the 'UniversalTransfer' operation.",
66
+ "sign:bybit:universalTransferHistory" : "Allows access to the typed sign 'bybit' endpoint, but only for the 'UniversalTransferHistory' operation.",
64
67
  "sign:bybit:withdraw" : "Allows access to the typed sign 'bybit' endpoint, but only for the 'Withdraw' operation.",
65
68
  "sign:bybit:withdrawals" : "Allows access to the typed sign 'bybit' endpoint, but only for the 'Withdrawals' operation.",
66
69
  "sign:coinbase:*" : "Allows access to the typed sign 'coinbase' endpoint (signs Coinbase RPC requests).",
@@ -70,7 +73,8 @@ export const AllScopes: Record<ExplicitScope, string> =
70
73
  "sign:evm:*" : "Allows access to all sign 'evm' endpoints",
71
74
  "sign:evm:tx" : "Allows access to the signing endpoint for evm transactions",
72
75
  "sign:evm:eip191" : "Allows access to the signing endpoint for EIP-191 personal_message data",
73
- "sign:evm:eip712" : "Allows acess to the signing endpoint for EIP-712 typed data",
76
+ "sign:evm:eip712" : "Allows access to the signing endpoint for EIP-712 typed data",
77
+ "sign:evm:eip7702" : "Allows access to the signing endpoint for EIP-7702 authorization requests",
74
78
  "sign:eth2:*" : "Allows access to all sign 'eth2' endpoints",
75
79
  "sign:eth2:validate" : "Allows access to the sign eth2 'validate' endpoint",
76
80
  "sign:eth2:stake" : "Allows access to the sign eth2 'stake' endpoint",