@privy-io/node 0.2.0 → 0.4.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/CHANGELOG.md +57 -0
- package/README.md +1 -1
- package/client.d.mts +7 -4
- package/client.d.mts.map +1 -1
- package/client.d.ts +7 -4
- package/client.d.ts.map +1 -1
- package/client.js +3 -0
- package/client.js.map +1 -1
- package/client.mjs +3 -0
- package/client.mjs.map +1 -1
- package/index.d.mts +1 -1
- package/index.d.mts.map +1 -1
- package/index.d.ts +1 -1
- package/index.d.ts.map +1 -1
- package/internal/to-file.d.mts +1 -1
- package/internal/to-file.d.ts +1 -1
- package/internal/to-file.js +1 -1
- package/internal/to-file.mjs +1 -1
- package/lib/identity-token.d.mts.map +1 -1
- package/lib/identity-token.d.ts.map +1 -1
- package/lib/identity-token.js +1 -0
- package/lib/identity-token.js.map +1 -1
- package/lib/identity-token.mjs +1 -0
- package/lib/identity-token.mjs.map +1 -1
- package/lib/user-utils.d.mts +5 -9
- package/lib/user-utils.d.mts.map +1 -1
- package/lib/user-utils.d.ts +5 -9
- package/lib/user-utils.d.ts.map +1 -1
- package/lib/user-utils.js.map +1 -1
- package/lib/user-utils.mjs.map +1 -1
- package/package.json +4 -3
- package/public-api/PrivyClient.d.mts +5 -1
- package/public-api/PrivyClient.d.mts.map +1 -1
- package/public-api/PrivyClient.d.ts +5 -1
- package/public-api/PrivyClient.d.ts.map +1 -1
- package/public-api/PrivyClient.js +6 -1
- package/public-api/PrivyClient.js.map +1 -1
- package/public-api/PrivyClient.mjs +6 -1
- package/public-api/PrivyClient.mjs.map +1 -1
- package/public-api/services/webhooks.d.mts +34 -0
- package/public-api/services/webhooks.d.mts.map +1 -0
- package/public-api/services/webhooks.d.ts +34 -0
- package/public-api/services/webhooks.d.ts.map +1 -0
- package/public-api/services/webhooks.js +48 -0
- package/public-api/services/webhooks.js.map +1 -0
- package/public-api/services/webhooks.mjs +43 -0
- package/public-api/services/webhooks.mjs.map +1 -0
- package/resources/client-auth.d.mts +24 -0
- package/resources/client-auth.d.mts.map +1 -0
- package/resources/client-auth.d.ts +24 -0
- package/resources/client-auth.d.ts.map +1 -0
- package/resources/client-auth.js +9 -0
- package/resources/client-auth.js.map +1 -0
- package/resources/client-auth.mjs +5 -0
- package/resources/client-auth.mjs.map +1 -0
- package/resources/index.d.mts +3 -2
- package/resources/index.d.mts.map +1 -1
- package/resources/index.d.ts +3 -2
- package/resources/index.d.ts.map +1 -1
- package/resources/index.js +3 -1
- package/resources/index.js.map +1 -1
- package/resources/index.mjs +1 -0
- package/resources/index.mjs.map +1 -1
- package/resources/policies.d.mts +76 -76
- package/resources/policies.d.mts.map +1 -1
- package/resources/policies.d.ts +76 -76
- package/resources/policies.d.ts.map +1 -1
- package/resources/policies.js +4 -4
- package/resources/policies.mjs +4 -4
- package/resources/transactions.d.mts +1 -1
- package/resources/transactions.d.mts.map +1 -1
- package/resources/transactions.d.ts +1 -1
- package/resources/transactions.d.ts.map +1 -1
- package/resources/users.d.mts +215 -98
- package/resources/users.d.mts.map +1 -1
- package/resources/users.d.ts +215 -98
- package/resources/users.d.ts.map +1 -1
- package/resources/users.js.map +1 -1
- package/resources/users.mjs.map +1 -1
- package/resources/wallets/balance.d.mts +4 -4
- package/resources/wallets/balance.d.mts.map +1 -1
- package/resources/wallets/balance.d.ts +4 -4
- package/resources/wallets/balance.d.ts.map +1 -1
- package/resources/wallets/index.d.mts +1 -1
- package/resources/wallets/index.d.mts.map +1 -1
- package/resources/wallets/index.d.ts +1 -1
- package/resources/wallets/index.d.ts.map +1 -1
- package/resources/wallets/index.js.map +1 -1
- package/resources/wallets/index.mjs.map +1 -1
- package/resources/wallets/transactions.d.mts +6 -6
- package/resources/wallets/transactions.d.mts.map +1 -1
- package/resources/wallets/transactions.d.ts +6 -6
- package/resources/wallets/transactions.d.ts.map +1 -1
- package/resources/wallets/wallets.d.mts +38 -14
- package/resources/wallets/wallets.d.mts.map +1 -1
- package/resources/wallets/wallets.d.ts +38 -14
- package/resources/wallets/wallets.d.ts.map +1 -1
- package/resources/wallets/wallets.js.map +1 -1
- package/resources/wallets/wallets.mjs.map +1 -1
- package/src/client.ts +45 -0
- package/src/index.ts +1 -1
- package/src/internal/to-file.ts +1 -1
- package/src/lib/identity-token.ts +22 -21
- package/src/lib/user-utils.ts +6 -10
- package/src/public-api/PrivyClient.ts +9 -0
- package/src/public-api/services/webhooks.ts +63 -0
- package/src/resources/client-auth.ts +46 -0
- package/src/resources/index.ts +21 -0
- package/src/resources/policies.ts +76 -76
- package/src/resources/transactions.ts +9 -1
- package/src/resources/users.ts +390 -184
- package/src/resources/wallets/balance.ts +45 -4
- package/src/resources/wallets/index.ts +3 -0
- package/src/resources/wallets/transactions.ts +48 -8
- package/src/resources/wallets/wallets.ts +69 -52
- package/src/version.ts +1 -1
- package/version.d.mts +1 -1
- package/version.d.ts +1 -1
- package/version.js +1 -1
- package/version.mjs +1 -1
package/resources/index.d.mts
CHANGED
|
@@ -1,6 +1,7 @@
|
|
|
1
|
+
export { ClientAuth, type ExternalOAuthProviderID, type PrivyOAuthProviderID, type CustomOAuthProviderID, type OAuthProviderID, } from "./client-auth.mjs";
|
|
1
2
|
export { KeyQuorums, type KeyQuorum, type KeyQuorumDeleteResponse, type KeyQuorumCreateParams, type KeyQuorumDeleteParams, type KeyQuorumUpdateParams, } from "./key-quorums.mjs";
|
|
2
3
|
export { Policies, type Policy, type PolicyCreateRuleResponse, type PolicyDeleteResponse, type PolicyDeleteRuleResponse, type PolicyUpdateRuleResponse, type PolicyGetRuleResponse, type PolicyCreateParams, type PolicyCreateRuleParams, type PolicyDeleteParams, type PolicyDeleteRuleParams, type PolicyUpdateParams, type PolicyUpdateRuleParams, type PolicyGetRuleParams, } from "./policies.mjs";
|
|
3
4
|
export { Transactions, type TransactionGetResponse } from "./transactions.mjs";
|
|
4
|
-
export { Users, type User, type UserCreateParams, type UserListParams, type UserGetByCustomAuthIDParams, type UserGetByDiscordUsernameParams, type UserGetByEmailAddressParams, type UserGetByFarcasterIDParams, type UserGetByGitHubUsernameParams, type UserGetByPhoneNumberParams, type UserGetBySmartWalletAddressParams, type UserGetByTelegramUserIDParams, type UserGetByTelegramUsernameParams, type UserGetByTwitterSubjectParams, type UserGetByTwitterUsernameParams, type UserGetByWalletAddressParams, type UserPregenerateWalletsParams, type UserSearchParams, type UserSetCustomMetadataParams, type UserUnlinkLinkedAccountParams, type UsersCursor, } from "./users.mjs";
|
|
5
|
-
export { Wallets, type Wallet, type WalletExportResponse, type WalletInitImportResponse, type WalletRawSignResponse, type WalletRpcResponse, type WalletAuthenticateWithJwtResponse, type WalletCreateWalletsWithRecoveryResponse, type WalletCreateParams, type WalletListParams, type WalletExportParams, type WalletInitImportParams, type WalletRawSignParams, type WalletRpcParams, type WalletSubmitImportParams, type WalletUpdateParams, type WalletAuthenticateWithJwtParams, type WalletCreateWalletsWithRecoveryParams, type WalletsCursor, } from "./wallets/wallets.mjs";
|
|
5
|
+
export { Users, type AuthenticatedUser, type LinkedAccount, type User, type LinkedAccountEthereumEmbeddedWallet, type LinkedAccountSolanaEmbeddedWallet, type LinkedAccountBitcoinSegwitEmbeddedWallet, type LinkedAccountBitcoinTaprootEmbeddedWallet, type LinkedAccountCurveSigningEmbeddedWallet, type LinkedAccountEmbeddedWallet, type LinkedAccountEmbeddedWalletWithID, type SmartWalletType, type LinkedAccountSmartWallet, type UserCreateParams, type UserListParams, type UserGetByCustomAuthIDParams, type UserGetByDiscordUsernameParams, type UserGetByEmailAddressParams, type UserGetByFarcasterIDParams, type UserGetByGitHubUsernameParams, type UserGetByPhoneNumberParams, type UserGetBySmartWalletAddressParams, type UserGetByTelegramUserIDParams, type UserGetByTelegramUsernameParams, type UserGetByTwitterSubjectParams, type UserGetByTwitterUsernameParams, type UserGetByWalletAddressParams, type UserPregenerateWalletsParams, type UserSearchParams, type UserSetCustomMetadataParams, type UserUnlinkLinkedAccountParams, type UsersCursor, } from "./users.mjs";
|
|
6
|
+
export { Wallets, type CurveSigningChainType, type FirstClassChainType, type Wallet, type WalletChainType, type WalletExportResponse, type WalletInitImportResponse, type WalletRawSignResponse, type WalletRpcResponse, type WalletAuthenticateWithJwtResponse, type WalletCreateWalletsWithRecoveryResponse, type WalletCreateParams, type WalletListParams, type WalletExportParams, type WalletInitImportParams, type WalletRawSignParams, type WalletRpcParams, type WalletSubmitImportParams, type WalletUpdateParams, type WalletAuthenticateWithJwtParams, type WalletCreateWalletsWithRecoveryParams, type WalletsCursor, } from "./wallets/wallets.mjs";
|
|
6
7
|
//# sourceMappingURL=index.d.mts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.mts","sourceRoot":"","sources":["../src/resources/index.ts"],"names":[],"mappings":"OAEO,EACL,UAAU,EACV,KAAK,SAAS,EACd,KAAK,uBAAuB,EAC5B,KAAK,qBAAqB,EAC1B,KAAK,qBAAqB,EAC1B,KAAK,qBAAqB,GAC3B;OACM,EACL,QAAQ,EACR,KAAK,MAAM,EACX,KAAK,wBAAwB,EAC7B,KAAK,oBAAoB,EACzB,KAAK,wBAAwB,EAC7B,KAAK,wBAAwB,EAC7B,KAAK,qBAAqB,EAC1B,KAAK,kBAAkB,EACvB,KAAK,sBAAsB,EAC3B,KAAK,kBAAkB,EACvB,KAAK,sBAAsB,EAC3B,KAAK,kBAAkB,EACvB,KAAK,sBAAsB,EAC3B,KAAK,mBAAmB,GACzB;OACM,EAAE,YAAY,EAAE,KAAK,sBAAsB,EAAE;OAC7C,EACL,KAAK,EACL,KAAK,IAAI,EACT,KAAK,gBAAgB,EACrB,KAAK,cAAc,EACnB,KAAK,2BAA2B,EAChC,KAAK,8BAA8B,EACnC,KAAK,2BAA2B,EAChC,KAAK,0BAA0B,EAC/B,KAAK,6BAA6B,EAClC,KAAK,0BAA0B,EAC/B,KAAK,iCAAiC,EACtC,KAAK,6BAA6B,EAClC,KAAK,+BAA+B,EACpC,KAAK,6BAA6B,EAClC,KAAK,8BAA8B,EACnC,KAAK,4BAA4B,EACjC,KAAK,4BAA4B,EACjC,KAAK,gBAAgB,EACrB,KAAK,2BAA2B,EAChC,KAAK,6BAA6B,EAClC,KAAK,WAAW,GACjB;OACM,EACL,OAAO,EACP,KAAK,MAAM,EACX,KAAK,oBAAoB,EACzB,KAAK,wBAAwB,EAC7B,KAAK,qBAAqB,EAC1B,KAAK,iBAAiB,EACtB,KAAK,iCAAiC,EACtC,KAAK,uCAAuC,EAC5C,KAAK,kBAAkB,EACvB,KAAK,gBAAgB,EACrB,KAAK,kBAAkB,EACvB,KAAK,sBAAsB,EAC3B,KAAK,mBAAmB,EACxB,KAAK,eAAe,EACpB,KAAK,wBAAwB,EAC7B,KAAK,kBAAkB,EACvB,KAAK,+BAA+B,EACpC,KAAK,qCAAqC,EAC1C,KAAK,aAAa,GACnB"}
|
|
1
|
+
{"version":3,"file":"index.d.mts","sourceRoot":"","sources":["../src/resources/index.ts"],"names":[],"mappings":"OAEO,EACL,UAAU,EACV,KAAK,uBAAuB,EAC5B,KAAK,oBAAoB,EACzB,KAAK,qBAAqB,EAC1B,KAAK,eAAe,GACrB;OACM,EACL,UAAU,EACV,KAAK,SAAS,EACd,KAAK,uBAAuB,EAC5B,KAAK,qBAAqB,EAC1B,KAAK,qBAAqB,EAC1B,KAAK,qBAAqB,GAC3B;OACM,EACL,QAAQ,EACR,KAAK,MAAM,EACX,KAAK,wBAAwB,EAC7B,KAAK,oBAAoB,EACzB,KAAK,wBAAwB,EAC7B,KAAK,wBAAwB,EAC7B,KAAK,qBAAqB,EAC1B,KAAK,kBAAkB,EACvB,KAAK,sBAAsB,EAC3B,KAAK,kBAAkB,EACvB,KAAK,sBAAsB,EAC3B,KAAK,kBAAkB,EACvB,KAAK,sBAAsB,EAC3B,KAAK,mBAAmB,GACzB;OACM,EAAE,YAAY,EAAE,KAAK,sBAAsB,EAAE;OAC7C,EACL,KAAK,EACL,KAAK,iBAAiB,EACtB,KAAK,aAAa,EAClB,KAAK,IAAI,EACT,KAAK,mCAAmC,EACxC,KAAK,iCAAiC,EACtC,KAAK,wCAAwC,EAC7C,KAAK,yCAAyC,EAC9C,KAAK,uCAAuC,EAC5C,KAAK,2BAA2B,EAChC,KAAK,iCAAiC,EACtC,KAAK,eAAe,EACpB,KAAK,wBAAwB,EAC7B,KAAK,gBAAgB,EACrB,KAAK,cAAc,EACnB,KAAK,2BAA2B,EAChC,KAAK,8BAA8B,EACnC,KAAK,2BAA2B,EAChC,KAAK,0BAA0B,EAC/B,KAAK,6BAA6B,EAClC,KAAK,0BAA0B,EAC/B,KAAK,iCAAiC,EACtC,KAAK,6BAA6B,EAClC,KAAK,+BAA+B,EACpC,KAAK,6BAA6B,EAClC,KAAK,8BAA8B,EACnC,KAAK,4BAA4B,EACjC,KAAK,4BAA4B,EACjC,KAAK,gBAAgB,EACrB,KAAK,2BAA2B,EAChC,KAAK,6BAA6B,EAClC,KAAK,WAAW,GACjB;OACM,EACL,OAAO,EACP,KAAK,qBAAqB,EAC1B,KAAK,mBAAmB,EACxB,KAAK,MAAM,EACX,KAAK,eAAe,EACpB,KAAK,oBAAoB,EACzB,KAAK,wBAAwB,EAC7B,KAAK,qBAAqB,EAC1B,KAAK,iBAAiB,EACtB,KAAK,iCAAiC,EACtC,KAAK,uCAAuC,EAC5C,KAAK,kBAAkB,EACvB,KAAK,gBAAgB,EACrB,KAAK,kBAAkB,EACvB,KAAK,sBAAsB,EAC3B,KAAK,mBAAmB,EACxB,KAAK,eAAe,EACpB,KAAK,wBAAwB,EAC7B,KAAK,kBAAkB,EACvB,KAAK,+BAA+B,EACpC,KAAK,qCAAqC,EAC1C,KAAK,aAAa,GACnB"}
|
package/resources/index.d.ts
CHANGED
|
@@ -1,6 +1,7 @@
|
|
|
1
|
+
export { ClientAuth, type ExternalOAuthProviderID, type PrivyOAuthProviderID, type CustomOAuthProviderID, type OAuthProviderID, } from "./client-auth.js";
|
|
1
2
|
export { KeyQuorums, type KeyQuorum, type KeyQuorumDeleteResponse, type KeyQuorumCreateParams, type KeyQuorumDeleteParams, type KeyQuorumUpdateParams, } from "./key-quorums.js";
|
|
2
3
|
export { Policies, type Policy, type PolicyCreateRuleResponse, type PolicyDeleteResponse, type PolicyDeleteRuleResponse, type PolicyUpdateRuleResponse, type PolicyGetRuleResponse, type PolicyCreateParams, type PolicyCreateRuleParams, type PolicyDeleteParams, type PolicyDeleteRuleParams, type PolicyUpdateParams, type PolicyUpdateRuleParams, type PolicyGetRuleParams, } from "./policies.js";
|
|
3
4
|
export { Transactions, type TransactionGetResponse } from "./transactions.js";
|
|
4
|
-
export { Users, type User, type UserCreateParams, type UserListParams, type UserGetByCustomAuthIDParams, type UserGetByDiscordUsernameParams, type UserGetByEmailAddressParams, type UserGetByFarcasterIDParams, type UserGetByGitHubUsernameParams, type UserGetByPhoneNumberParams, type UserGetBySmartWalletAddressParams, type UserGetByTelegramUserIDParams, type UserGetByTelegramUsernameParams, type UserGetByTwitterSubjectParams, type UserGetByTwitterUsernameParams, type UserGetByWalletAddressParams, type UserPregenerateWalletsParams, type UserSearchParams, type UserSetCustomMetadataParams, type UserUnlinkLinkedAccountParams, type UsersCursor, } from "./users.js";
|
|
5
|
-
export { Wallets, type Wallet, type WalletExportResponse, type WalletInitImportResponse, type WalletRawSignResponse, type WalletRpcResponse, type WalletAuthenticateWithJwtResponse, type WalletCreateWalletsWithRecoveryResponse, type WalletCreateParams, type WalletListParams, type WalletExportParams, type WalletInitImportParams, type WalletRawSignParams, type WalletRpcParams, type WalletSubmitImportParams, type WalletUpdateParams, type WalletAuthenticateWithJwtParams, type WalletCreateWalletsWithRecoveryParams, type WalletsCursor, } from "./wallets/wallets.js";
|
|
5
|
+
export { Users, type AuthenticatedUser, type LinkedAccount, type User, type LinkedAccountEthereumEmbeddedWallet, type LinkedAccountSolanaEmbeddedWallet, type LinkedAccountBitcoinSegwitEmbeddedWallet, type LinkedAccountBitcoinTaprootEmbeddedWallet, type LinkedAccountCurveSigningEmbeddedWallet, type LinkedAccountEmbeddedWallet, type LinkedAccountEmbeddedWalletWithID, type SmartWalletType, type LinkedAccountSmartWallet, type UserCreateParams, type UserListParams, type UserGetByCustomAuthIDParams, type UserGetByDiscordUsernameParams, type UserGetByEmailAddressParams, type UserGetByFarcasterIDParams, type UserGetByGitHubUsernameParams, type UserGetByPhoneNumberParams, type UserGetBySmartWalletAddressParams, type UserGetByTelegramUserIDParams, type UserGetByTelegramUsernameParams, type UserGetByTwitterSubjectParams, type UserGetByTwitterUsernameParams, type UserGetByWalletAddressParams, type UserPregenerateWalletsParams, type UserSearchParams, type UserSetCustomMetadataParams, type UserUnlinkLinkedAccountParams, type UsersCursor, } from "./users.js";
|
|
6
|
+
export { Wallets, type CurveSigningChainType, type FirstClassChainType, type Wallet, type WalletChainType, type WalletExportResponse, type WalletInitImportResponse, type WalletRawSignResponse, type WalletRpcResponse, type WalletAuthenticateWithJwtResponse, type WalletCreateWalletsWithRecoveryResponse, type WalletCreateParams, type WalletListParams, type WalletExportParams, type WalletInitImportParams, type WalletRawSignParams, type WalletRpcParams, type WalletSubmitImportParams, type WalletUpdateParams, type WalletAuthenticateWithJwtParams, type WalletCreateWalletsWithRecoveryParams, type WalletsCursor, } from "./wallets/wallets.js";
|
|
6
7
|
//# sourceMappingURL=index.d.ts.map
|
package/resources/index.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/resources/index.ts"],"names":[],"mappings":"OAEO,EACL,UAAU,EACV,KAAK,SAAS,EACd,KAAK,uBAAuB,EAC5B,KAAK,qBAAqB,EAC1B,KAAK,qBAAqB,EAC1B,KAAK,qBAAqB,GAC3B;OACM,EACL,QAAQ,EACR,KAAK,MAAM,EACX,KAAK,wBAAwB,EAC7B,KAAK,oBAAoB,EACzB,KAAK,wBAAwB,EAC7B,KAAK,wBAAwB,EAC7B,KAAK,qBAAqB,EAC1B,KAAK,kBAAkB,EACvB,KAAK,sBAAsB,EAC3B,KAAK,kBAAkB,EACvB,KAAK,sBAAsB,EAC3B,KAAK,kBAAkB,EACvB,KAAK,sBAAsB,EAC3B,KAAK,mBAAmB,GACzB;OACM,EAAE,YAAY,EAAE,KAAK,sBAAsB,EAAE;OAC7C,EACL,KAAK,EACL,KAAK,IAAI,EACT,KAAK,gBAAgB,EACrB,KAAK,cAAc,EACnB,KAAK,2BAA2B,EAChC,KAAK,8BAA8B,EACnC,KAAK,2BAA2B,EAChC,KAAK,0BAA0B,EAC/B,KAAK,6BAA6B,EAClC,KAAK,0BAA0B,EAC/B,KAAK,iCAAiC,EACtC,KAAK,6BAA6B,EAClC,KAAK,+BAA+B,EACpC,KAAK,6BAA6B,EAClC,KAAK,8BAA8B,EACnC,KAAK,4BAA4B,EACjC,KAAK,4BAA4B,EACjC,KAAK,gBAAgB,EACrB,KAAK,2BAA2B,EAChC,KAAK,6BAA6B,EAClC,KAAK,WAAW,GACjB;OACM,EACL,OAAO,EACP,KAAK,MAAM,EACX,KAAK,oBAAoB,EACzB,KAAK,wBAAwB,EAC7B,KAAK,qBAAqB,EAC1B,KAAK,iBAAiB,EACtB,KAAK,iCAAiC,EACtC,KAAK,uCAAuC,EAC5C,KAAK,kBAAkB,EACvB,KAAK,gBAAgB,EACrB,KAAK,kBAAkB,EACvB,KAAK,sBAAsB,EAC3B,KAAK,mBAAmB,EACxB,KAAK,eAAe,EACpB,KAAK,wBAAwB,EAC7B,KAAK,kBAAkB,EACvB,KAAK,+BAA+B,EACpC,KAAK,qCAAqC,EAC1C,KAAK,aAAa,GACnB"}
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/resources/index.ts"],"names":[],"mappings":"OAEO,EACL,UAAU,EACV,KAAK,uBAAuB,EAC5B,KAAK,oBAAoB,EACzB,KAAK,qBAAqB,EAC1B,KAAK,eAAe,GACrB;OACM,EACL,UAAU,EACV,KAAK,SAAS,EACd,KAAK,uBAAuB,EAC5B,KAAK,qBAAqB,EAC1B,KAAK,qBAAqB,EAC1B,KAAK,qBAAqB,GAC3B;OACM,EACL,QAAQ,EACR,KAAK,MAAM,EACX,KAAK,wBAAwB,EAC7B,KAAK,oBAAoB,EACzB,KAAK,wBAAwB,EAC7B,KAAK,wBAAwB,EAC7B,KAAK,qBAAqB,EAC1B,KAAK,kBAAkB,EACvB,KAAK,sBAAsB,EAC3B,KAAK,kBAAkB,EACvB,KAAK,sBAAsB,EAC3B,KAAK,kBAAkB,EACvB,KAAK,sBAAsB,EAC3B,KAAK,mBAAmB,GACzB;OACM,EAAE,YAAY,EAAE,KAAK,sBAAsB,EAAE;OAC7C,EACL,KAAK,EACL,KAAK,iBAAiB,EACtB,KAAK,aAAa,EAClB,KAAK,IAAI,EACT,KAAK,mCAAmC,EACxC,KAAK,iCAAiC,EACtC,KAAK,wCAAwC,EAC7C,KAAK,yCAAyC,EAC9C,KAAK,uCAAuC,EAC5C,KAAK,2BAA2B,EAChC,KAAK,iCAAiC,EACtC,KAAK,eAAe,EACpB,KAAK,wBAAwB,EAC7B,KAAK,gBAAgB,EACrB,KAAK,cAAc,EACnB,KAAK,2BAA2B,EAChC,KAAK,8BAA8B,EACnC,KAAK,2BAA2B,EAChC,KAAK,0BAA0B,EAC/B,KAAK,6BAA6B,EAClC,KAAK,0BAA0B,EAC/B,KAAK,iCAAiC,EACtC,KAAK,6BAA6B,EAClC,KAAK,+BAA+B,EACpC,KAAK,6BAA6B,EAClC,KAAK,8BAA8B,EACnC,KAAK,4BAA4B,EACjC,KAAK,4BAA4B,EACjC,KAAK,gBAAgB,EACrB,KAAK,2BAA2B,EAChC,KAAK,6BAA6B,EAClC,KAAK,WAAW,GACjB;OACM,EACL,OAAO,EACP,KAAK,qBAAqB,EAC1B,KAAK,mBAAmB,EACxB,KAAK,MAAM,EACX,KAAK,eAAe,EACpB,KAAK,oBAAoB,EACzB,KAAK,wBAAwB,EAC7B,KAAK,qBAAqB,EAC1B,KAAK,iBAAiB,EACtB,KAAK,iCAAiC,EACtC,KAAK,uCAAuC,EAC5C,KAAK,kBAAkB,EACvB,KAAK,gBAAgB,EACrB,KAAK,kBAAkB,EACvB,KAAK,sBAAsB,EAC3B,KAAK,mBAAmB,EACxB,KAAK,eAAe,EACpB,KAAK,wBAAwB,EAC7B,KAAK,kBAAkB,EACvB,KAAK,+BAA+B,EACpC,KAAK,qCAAqC,EAC1C,KAAK,aAAa,GACnB"}
|
package/resources/index.js
CHANGED
|
@@ -1,7 +1,9 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
// File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details.
|
|
3
3
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
4
|
-
exports.Wallets = exports.Users = exports.Transactions = exports.Policies = exports.KeyQuorums = void 0;
|
|
4
|
+
exports.Wallets = exports.Users = exports.Transactions = exports.Policies = exports.KeyQuorums = exports.ClientAuth = void 0;
|
|
5
|
+
var client_auth_1 = require("./client-auth.js");
|
|
6
|
+
Object.defineProperty(exports, "ClientAuth", { enumerable: true, get: function () { return client_auth_1.ClientAuth; } });
|
|
5
7
|
var key_quorums_1 = require("./key-quorums.js");
|
|
6
8
|
Object.defineProperty(exports, "KeyQuorums", { enumerable: true, get: function () { return key_quorums_1.KeyQuorums; } });
|
|
7
9
|
var policies_1 = require("./policies.js");
|
package/resources/index.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","sourceRoot":"","sources":["../src/resources/index.ts"],"names":[],"mappings":";AAAA,sFAAsF;;;AAEtF,gDAOuB;AANrB,yGAAA,UAAU,OAAA;AAOZ,0CAeoB;AAdlB,oGAAA,QAAQ,OAAA;AAeV,kDAA2E;AAAlE,4GAAA,YAAY,OAAA;AACrB,
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../src/resources/index.ts"],"names":[],"mappings":";AAAA,sFAAsF;;;AAEtF,gDAMuB;AALrB,yGAAA,UAAU,OAAA;AAMZ,gDAOuB;AANrB,yGAAA,UAAU,OAAA;AAOZ,0CAeoB;AAdlB,oGAAA,QAAQ,OAAA;AAeV,kDAA2E;AAAlE,4GAAA,YAAY,OAAA;AACrB,oCAiCiB;AAhCf,8FAAA,KAAK,OAAA;AAiCP,gDAuB2B;AAtBzB,kGAAA,OAAO,OAAA"}
|
package/resources/index.mjs
CHANGED
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
// File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details.
|
|
2
|
+
export { ClientAuth, } from "./client-auth.mjs";
|
|
2
3
|
export { KeyQuorums, } from "./key-quorums.mjs";
|
|
3
4
|
export { Policies, } from "./policies.mjs";
|
|
4
5
|
export { Transactions } from "./transactions.mjs";
|
package/resources/index.mjs.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.mjs","sourceRoot":"","sources":["../src/resources/index.ts"],"names":[],"mappings":"AAAA,sFAAsF;OAE/E,EACL,UAAU,GAMX;OACM,EACL,QAAQ,GAcT;OACM,EAAE,YAAY,EAA+B;OAC7C,EACL,KAAK,
|
|
1
|
+
{"version":3,"file":"index.mjs","sourceRoot":"","sources":["../src/resources/index.ts"],"names":[],"mappings":"AAAA,sFAAsF;OAE/E,EACL,UAAU,GAKX;OACM,EACL,UAAU,GAMX;OACM,EACL,QAAQ,GAcT;OACM,EAAE,YAAY,EAA+B;OAC7C,EACL,KAAK,GAgCN;OACM,EACL,OAAO,GAsBR"}
|