@sudobility/types 1.9.45 → 1.9.46
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.cjs +220 -50
- package/dist/index.d.ts +44 -5
- package/dist/index.d.ts.map +1 -1
- package/dist/index.js +220 -50
- package/dist/index.js.map +1 -1
- package/dist/types/entity/permissions.cjs +7 -7
- package/dist/types/entity/permissions.d.ts +17 -0
- package/dist/types/entity/permissions.d.ts.map +1 -1
- package/dist/types/entity/permissions.js +7 -7
- package/dist/types/entity/permissions.js.map +1 -1
- package/dist/utils/async-helpers.cjs +6 -6
- package/dist/utils/async-helpers.js +6 -6
- package/dist/utils/async-helpers.js.map +1 -1
- package/package.json +1 -1
- package/dist/types/blockchain/index.cjs +0 -18
- package/dist/types/blockchain/index.d.ts +0 -4
- package/dist/types/blockchain/index.d.ts.map +0 -1
- package/dist/types/blockchain/index.js +0 -18
- package/dist/types/blockchain/index.js.map +0 -1
- package/dist/types/business/index.cjs +0 -33
- package/dist/types/business/index.d.ts +0 -4
- package/dist/types/business/index.d.ts.map +0 -1
- package/dist/types/business/index.js +0 -33
- package/dist/types/business/index.js.map +0 -1
- package/dist/types/config/index.cjs +0 -6
- package/dist/types/config/index.d.ts +0 -4
- package/dist/types/config/index.d.ts.map +0 -1
- package/dist/types/config/index.js +0 -6
- package/dist/types/config/index.js.map +0 -1
- package/dist/types/entity/index.cjs +0 -29
- package/dist/types/entity/index.d.ts +0 -9
- package/dist/types/entity/index.d.ts.map +0 -1
- package/dist/types/entity/index.js +0 -29
- package/dist/types/entity/index.js.map +0 -1
- package/dist/types/index.cjs +0 -31
- package/dist/types/index.d.ts +0 -8
- package/dist/types/index.d.ts.map +0 -1
- package/dist/types/index.js +0 -31
- package/dist/types/index.js.map +0 -1
- package/dist/types/infrastructure/index.cjs +0 -16
- package/dist/types/infrastructure/index.d.ts +0 -9
- package/dist/types/infrastructure/index.d.ts.map +0 -1
- package/dist/types/infrastructure/index.js +0 -16
- package/dist/types/infrastructure/index.js.map +0 -1
- package/dist/types/subscription/index.cjs +0 -19
- package/dist/types/subscription/index.d.ts +0 -2
- package/dist/types/subscription/index.d.ts.map +0 -1
- package/dist/types/subscription/index.js +0 -19
- package/dist/types/subscription/index.js.map +0 -1
- package/dist/utils/auth/index.cjs +0 -14
- package/dist/utils/auth/index.d.ts +0 -2
- package/dist/utils/auth/index.d.ts.map +0 -1
- package/dist/utils/auth/index.js +0 -14
- package/dist/utils/auth/index.js.map +0 -1
- package/dist/utils/blockchain/index.cjs +0 -28
- package/dist/utils/blockchain/index.d.ts +0 -6
- package/dist/utils/blockchain/index.d.ts.map +0 -1
- package/dist/utils/blockchain/index.js +0 -28
- package/dist/utils/blockchain/index.js.map +0 -1
- package/dist/utils/constants/index.cjs +0 -29
- package/dist/utils/constants/index.d.ts +0 -7
- package/dist/utils/constants/index.d.ts.map +0 -1
- package/dist/utils/constants/index.js +0 -29
- package/dist/utils/constants/index.js.map +0 -1
- package/dist/utils/formatting/index.cjs +0 -37
- package/dist/utils/formatting/index.d.ts +0 -4
- package/dist/utils/formatting/index.d.ts.map +0 -1
- package/dist/utils/formatting/index.js +0 -37
- package/dist/utils/formatting/index.js.map +0 -1
- package/dist/utils/index.cjs +0 -28
- package/dist/utils/index.d.ts +0 -12
- package/dist/utils/index.d.ts.map +0 -1
- package/dist/utils/index.js +0 -28
- package/dist/utils/index.js.map +0 -1
- package/dist/utils/logging/index.cjs +0 -16
- package/dist/utils/logging/index.d.ts +0 -5
- package/dist/utils/logging/index.d.ts.map +0 -1
- package/dist/utils/logging/index.js +0 -16
- package/dist/utils/logging/index.js.map +0 -1
- package/dist/utils/url/index.cjs +0 -13
- package/dist/utils/url/index.d.ts +0 -5
- package/dist/utils/url/index.d.ts.map +0 -1
- package/dist/utils/url/index.js +0 -13
- package/dist/utils/url/index.js.map +0 -1
- package/dist/utils/validation/index.cjs +0 -25
- package/dist/utils/validation/index.d.ts +0 -5
- package/dist/utils/validation/index.d.ts.map +0 -1
- package/dist/utils/validation/index.js +0 -25
- package/dist/utils/validation/index.js.map +0 -1
package/dist/index.cjs
CHANGED
|
@@ -9,55 +9,225 @@
|
|
|
9
9
|
* @version 1.0.0
|
|
10
10
|
* @license MIT
|
|
11
11
|
*/
|
|
12
|
-
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
13
|
-
if (k2 === undefined) k2 = k;
|
|
14
|
-
var desc = Object.getOwnPropertyDescriptor(m, k);
|
|
15
|
-
if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
|
|
16
|
-
desc = { enumerable: true, get: function() { return m[k]; } };
|
|
17
|
-
}
|
|
18
|
-
Object.defineProperty(o, k2, desc);
|
|
19
|
-
}) : (function(o, m, k, k2) {
|
|
20
|
-
if (k2 === undefined) k2 = k;
|
|
21
|
-
o[k2] = m[k];
|
|
22
|
-
}));
|
|
23
|
-
var __exportStar = (this && this.__exportStar) || function(m, exports) {
|
|
24
|
-
for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p);
|
|
25
|
-
};
|
|
26
12
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
27
|
-
exports.ProcessedEventName = exports.ContractType = exports.StorageType = exports.
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
//
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
Object.defineProperty(exports, "
|
|
37
|
-
Object.defineProperty(exports, "
|
|
38
|
-
Object.defineProperty(exports, "
|
|
39
|
-
Object.defineProperty(exports, "
|
|
40
|
-
Object.defineProperty(exports, "
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
Object.defineProperty(exports, "
|
|
45
|
-
Object.defineProperty(exports, "
|
|
46
|
-
Object.defineProperty(exports, "
|
|
47
|
-
Object.defineProperty(exports, "
|
|
48
|
-
Object.defineProperty(exports, "
|
|
49
|
-
Object.defineProperty(exports, "
|
|
50
|
-
Object.defineProperty(exports, "
|
|
51
|
-
Object.defineProperty(exports, "
|
|
52
|
-
Object.defineProperty(exports, "
|
|
53
|
-
|
|
54
|
-
Object.defineProperty(exports, "
|
|
55
|
-
Object.defineProperty(exports, "
|
|
56
|
-
|
|
57
|
-
Object.defineProperty(exports, "
|
|
58
|
-
Object.defineProperty(exports, "
|
|
59
|
-
|
|
60
|
-
Object.defineProperty(exports, "
|
|
61
|
-
Object.defineProperty(exports, "
|
|
62
|
-
Object.defineProperty(exports, "
|
|
13
|
+
exports.MANAGER_PERMISSIONS = exports.OWNER_PERMISSIONS = exports.InvitationStatus = exports.EntityRole = exports.EntityType = exports.RateLimitPeriodType = exports.WalletType = exports.NetworkError = exports.ProcessedEventName = exports.ContractType = exports.AnalyticsEventBuilder = exports.AnalyticsEvent = exports.StorageType = exports.validateMessage = exports.validateDomain = exports.validateAmount = exports.validateAddress = exports.isSolanaRecipient = exports.isSolanaAddress = exports.isEvmRecipient = exports.isEvmAddress = exports.TransactionStatus = exports.PROTOCOL_CONSTANTS = exports.MessageType = exports.isWalletVerified = exports.isWalletConnected = exports.getWalletConnectionState = exports.Theme = exports.SubscriptionAction = exports.SortOrder = exports.RequestStatus = exports.PlatformType = exports.NotificationType = exports.MobileView = exports.MediumView = exports.InfoType = exports.FontSize = exports.FeatureFlag = exports.ErrorType = exports.EmailValidationState = exports.EmailSortCriteria = exports.EmailComposeType = exports.EmailAddressType = exports.EmailAction = exports.Currency = exports.ConnectionType = exports.ConnectionState = exports.ChainType = exports.Chain = exports.AuthStatus = void 0;
|
|
14
|
+
exports.USDC_DECIMALS = exports.CLAIM_PERIOD_DAYS = exports.isValidNonce = exports.isAuthStatusConnected = exports.isAuthExpired = exports.getAuthStatusText = exports.generateNonce = exports.generateAuthMessage = exports.extractNonceFromMessage = exports.canAccessProtectedFeatures = exports.validateEventArgs = exports.normalizeAddress = exports.isZeroAddress = exports.isTestNet = exports.formatBigInt = exports.createUserMultiChainId = exports.createMultiChainId = exports.createDelegationId = exports.createChainStatsId = exports.parseEmailAddress = exports.isValidWalletAddress = exports.isValidSignature = exports.isSNSName = exports.isENSName = exports.getChainDisplayName = exports.getAddressType = exports.formatWalletAddress = exports.AddressType = exports.validateArray = exports.parseJson = exports.optional = exports.isValidDate = exports.isUrl = exports.isSuccessResponse = exports.isString = exports.isObject = exports.isNumber = exports.isNullish = exports.isErrorResponse = exports.isEmail = exports.isBoolean = exports.isArray = exports.isApiResponse = exports.hasRequiredProperties = exports.createValidator = exports.createAssertion = exports.Web3UsernameValidator = exports.hasPermission = exports.getPermissionsForRole = exports.MEMBER_PERMISSIONS = void 0;
|
|
15
|
+
exports.storageLogger = exports.ensLogger = exports.contractLogger = exports.apiLogger = exports.authLogger = exports.logger = exports.LogLevel = exports.STATUS_VALUES = exports.Z_INDEX = exports.ANIMATION = exports.NETWORK_IDS = exports.WALLET_NAMES = exports.CONTACT_INFO = exports.ROUTES = exports.SUCCESS_MESSAGES = exports.ERROR_MESSAGES = exports.TIME_FORMAT = exports.SUBSCRIPTION_TIERS = exports.EMAIL_CONFIG = exports.STORAGE_KEYS = exports.CHAIN_TYPE = exports.AUTH_STATUS = exports.API_RETRY_DELAY = exports.API_RETRY_ATTEMPTS = exports.API_TIMEOUT = exports.truncate = exports.toTitleCase = exports.toSnakeCase = exports.toKebabCase = exports.toCamelCase = exports.stripHtml = exports.randomString = exports.pluralize = exports.normalizeWhitespace = exports.isNotBlank = exports.isBlank = exports.getInitials = exports.formatNumber = exports.formatBytes = exports.escapeHtml = exports.capitalize = exports.parseDate = exports.isDateInRange = exports.formatTimestamp = exports.formatRelativeTime = exports.formatEmailDate = exports.addHours = exports.addDays = exports.parseUSDC = exports.formatUSDC = void 0;
|
|
16
|
+
exports.debounceAsync = exports.clearExpiredCache = exports.withCache = exports.withTimeout = exports.safeParallel = exports.withLoadingState = exports.safeAsync = exports.parseSearchParams = exports.searchParamsToString = exports.createSearchParams = exports.createURLSearchParams = void 0;
|
|
17
|
+
// ============================================================================
|
|
18
|
+
// TYPES - Business
|
|
19
|
+
// ============================================================================
|
|
20
|
+
// Enums
|
|
21
|
+
var enums_1 = require("./types/business/enums");
|
|
22
|
+
Object.defineProperty(exports, "AuthStatus", { enumerable: true, get: function () { return enums_1.AuthStatus; } });
|
|
23
|
+
Object.defineProperty(exports, "Chain", { enumerable: true, get: function () { return enums_1.Chain; } });
|
|
24
|
+
Object.defineProperty(exports, "ChainType", { enumerable: true, get: function () { return enums_1.ChainType; } });
|
|
25
|
+
Object.defineProperty(exports, "ConnectionState", { enumerable: true, get: function () { return enums_1.ConnectionState; } });
|
|
26
|
+
Object.defineProperty(exports, "ConnectionType", { enumerable: true, get: function () { return enums_1.ConnectionType; } });
|
|
27
|
+
Object.defineProperty(exports, "Currency", { enumerable: true, get: function () { return enums_1.Currency; } });
|
|
28
|
+
Object.defineProperty(exports, "EmailAction", { enumerable: true, get: function () { return enums_1.EmailAction; } });
|
|
29
|
+
Object.defineProperty(exports, "EmailAddressType", { enumerable: true, get: function () { return enums_1.EmailAddressType; } });
|
|
30
|
+
Object.defineProperty(exports, "EmailComposeType", { enumerable: true, get: function () { return enums_1.EmailComposeType; } });
|
|
31
|
+
Object.defineProperty(exports, "EmailSortCriteria", { enumerable: true, get: function () { return enums_1.EmailSortCriteria; } });
|
|
32
|
+
Object.defineProperty(exports, "EmailValidationState", { enumerable: true, get: function () { return enums_1.EmailValidationState; } });
|
|
33
|
+
Object.defineProperty(exports, "ErrorType", { enumerable: true, get: function () { return enums_1.ErrorType; } });
|
|
34
|
+
Object.defineProperty(exports, "FeatureFlag", { enumerable: true, get: function () { return enums_1.FeatureFlag; } });
|
|
35
|
+
Object.defineProperty(exports, "FontSize", { enumerable: true, get: function () { return enums_1.FontSize; } });
|
|
36
|
+
Object.defineProperty(exports, "InfoType", { enumerable: true, get: function () { return enums_1.InfoType; } });
|
|
37
|
+
Object.defineProperty(exports, "MediumView", { enumerable: true, get: function () { return enums_1.MediumView; } });
|
|
38
|
+
Object.defineProperty(exports, "MobileView", { enumerable: true, get: function () { return enums_1.MobileView; } });
|
|
39
|
+
Object.defineProperty(exports, "NotificationType", { enumerable: true, get: function () { return enums_1.NotificationType; } });
|
|
40
|
+
Object.defineProperty(exports, "PlatformType", { enumerable: true, get: function () { return enums_1.PlatformType; } });
|
|
41
|
+
Object.defineProperty(exports, "RequestStatus", { enumerable: true, get: function () { return enums_1.RequestStatus; } });
|
|
42
|
+
Object.defineProperty(exports, "SortOrder", { enumerable: true, get: function () { return enums_1.SortOrder; } });
|
|
43
|
+
Object.defineProperty(exports, "SubscriptionAction", { enumerable: true, get: function () { return enums_1.SubscriptionAction; } });
|
|
44
|
+
Object.defineProperty(exports, "Theme", { enumerable: true, get: function () { return enums_1.Theme; } });
|
|
45
|
+
var wallet_status_1 = require("./types/business/wallet-status");
|
|
46
|
+
Object.defineProperty(exports, "getWalletConnectionState", { enumerable: true, get: function () { return wallet_status_1.getWalletConnectionState; } });
|
|
47
|
+
Object.defineProperty(exports, "isWalletConnected", { enumerable: true, get: function () { return wallet_status_1.isWalletConnected; } });
|
|
48
|
+
Object.defineProperty(exports, "isWalletVerified", { enumerable: true, get: function () { return wallet_status_1.isWalletVerified; } });
|
|
49
|
+
var common_1 = require("./types/blockchain/common");
|
|
50
|
+
Object.defineProperty(exports, "MessageType", { enumerable: true, get: function () { return common_1.MessageType; } });
|
|
51
|
+
Object.defineProperty(exports, "PROTOCOL_CONSTANTS", { enumerable: true, get: function () { return common_1.PROTOCOL_CONSTANTS; } });
|
|
52
|
+
Object.defineProperty(exports, "TransactionStatus", { enumerable: true, get: function () { return common_1.TransactionStatus; } });
|
|
53
|
+
Object.defineProperty(exports, "isEvmAddress", { enumerable: true, get: function () { return common_1.isEvmAddress; } });
|
|
54
|
+
Object.defineProperty(exports, "isEvmRecipient", { enumerable: true, get: function () { return common_1.isEvmRecipient; } });
|
|
55
|
+
Object.defineProperty(exports, "isSolanaAddress", { enumerable: true, get: function () { return common_1.isSolanaAddress; } });
|
|
56
|
+
Object.defineProperty(exports, "isSolanaRecipient", { enumerable: true, get: function () { return common_1.isSolanaRecipient; } });
|
|
57
|
+
var validation_1 = require("./types/blockchain/validation");
|
|
58
|
+
Object.defineProperty(exports, "validateAddress", { enumerable: true, get: function () { return validation_1.validateAddress; } });
|
|
59
|
+
Object.defineProperty(exports, "validateAmount", { enumerable: true, get: function () { return validation_1.validateAmount; } });
|
|
60
|
+
Object.defineProperty(exports, "validateDomain", { enumerable: true, get: function () { return validation_1.validateDomain; } });
|
|
61
|
+
Object.defineProperty(exports, "validateMessage", { enumerable: true, get: function () { return validation_1.validateMessage; } });
|
|
62
|
+
var environment_1 = require("./types/config/environment");
|
|
63
|
+
Object.defineProperty(exports, "StorageType", { enumerable: true, get: function () { return environment_1.StorageType; } });
|
|
64
|
+
var analytics_1 = require("./types/infrastructure/analytics");
|
|
65
|
+
Object.defineProperty(exports, "AnalyticsEvent", { enumerable: true, get: function () { return analytics_1.AnalyticsEvent; } });
|
|
66
|
+
Object.defineProperty(exports, "AnalyticsEventBuilder", { enumerable: true, get: function () { return analytics_1.AnalyticsEventBuilder; } });
|
|
67
|
+
var api_1 = require("./types/infrastructure/api");
|
|
68
|
+
Object.defineProperty(exports, "ContractType", { enumerable: true, get: function () { return api_1.ContractType; } });
|
|
69
|
+
Object.defineProperty(exports, "ProcessedEventName", { enumerable: true, get: function () { return api_1.ProcessedEventName; } });
|
|
70
|
+
var network_1 = require("./types/infrastructure/network");
|
|
71
|
+
Object.defineProperty(exports, "NetworkError", { enumerable: true, get: function () { return network_1.NetworkError; } });
|
|
72
|
+
// Wallet
|
|
73
|
+
var wallet_1 = require("./types/infrastructure/wallet");
|
|
74
|
+
Object.defineProperty(exports, "WalletType", { enumerable: true, get: function () { return wallet_1.WalletType; } });
|
|
75
|
+
var rate_limits_1 = require("./types/subscription/rate-limits");
|
|
76
|
+
Object.defineProperty(exports, "RateLimitPeriodType", { enumerable: true, get: function () { return rate_limits_1.RateLimitPeriodType; } });
|
|
77
|
+
// ============================================================================
|
|
78
|
+
// TYPES - Entity
|
|
79
|
+
// ============================================================================
|
|
80
|
+
// Core entity types
|
|
81
|
+
var entity_1 = require("./types/entity/entity");
|
|
82
|
+
Object.defineProperty(exports, "EntityType", { enumerable: true, get: function () { return entity_1.EntityType; } });
|
|
83
|
+
Object.defineProperty(exports, "EntityRole", { enumerable: true, get: function () { return entity_1.EntityRole; } });
|
|
84
|
+
Object.defineProperty(exports, "InvitationStatus", { enumerable: true, get: function () { return entity_1.InvitationStatus; } });
|
|
85
|
+
var permissions_1 = require("./types/entity/permissions");
|
|
86
|
+
Object.defineProperty(exports, "OWNER_PERMISSIONS", { enumerable: true, get: function () { return permissions_1.OWNER_PERMISSIONS; } });
|
|
87
|
+
Object.defineProperty(exports, "MANAGER_PERMISSIONS", { enumerable: true, get: function () { return permissions_1.MANAGER_PERMISSIONS; } });
|
|
88
|
+
Object.defineProperty(exports, "MEMBER_PERMISSIONS", { enumerable: true, get: function () { return permissions_1.MEMBER_PERMISSIONS; } });
|
|
89
|
+
Object.defineProperty(exports, "getPermissionsForRole", { enumerable: true, get: function () { return permissions_1.getPermissionsForRole; } });
|
|
90
|
+
Object.defineProperty(exports, "hasPermission", { enumerable: true, get: function () { return permissions_1.hasPermission; } });
|
|
91
|
+
var web3_username_validator_1 = require("./utils/validation/web3-username-validator");
|
|
92
|
+
Object.defineProperty(exports, "Web3UsernameValidator", { enumerable: true, get: function () { return web3_username_validator_1.Web3UsernameValidator; } });
|
|
93
|
+
var type_validation_1 = require("./utils/validation/type-validation");
|
|
94
|
+
Object.defineProperty(exports, "createAssertion", { enumerable: true, get: function () { return type_validation_1.createAssertion; } });
|
|
95
|
+
Object.defineProperty(exports, "createValidator", { enumerable: true, get: function () { return type_validation_1.createValidator; } });
|
|
96
|
+
Object.defineProperty(exports, "hasRequiredProperties", { enumerable: true, get: function () { return type_validation_1.hasRequiredProperties; } });
|
|
97
|
+
Object.defineProperty(exports, "isApiResponse", { enumerable: true, get: function () { return type_validation_1.isApiResponse; } });
|
|
98
|
+
Object.defineProperty(exports, "isArray", { enumerable: true, get: function () { return type_validation_1.isArray; } });
|
|
99
|
+
Object.defineProperty(exports, "isBoolean", { enumerable: true, get: function () { return type_validation_1.isBoolean; } });
|
|
100
|
+
Object.defineProperty(exports, "isEmail", { enumerable: true, get: function () { return type_validation_1.isEmail; } });
|
|
101
|
+
Object.defineProperty(exports, "isErrorResponse", { enumerable: true, get: function () { return type_validation_1.isErrorResponse; } });
|
|
102
|
+
Object.defineProperty(exports, "isNullish", { enumerable: true, get: function () { return type_validation_1.isNullish; } });
|
|
103
|
+
Object.defineProperty(exports, "isNumber", { enumerable: true, get: function () { return type_validation_1.isNumber; } });
|
|
104
|
+
Object.defineProperty(exports, "isObject", { enumerable: true, get: function () { return type_validation_1.isObject; } });
|
|
105
|
+
Object.defineProperty(exports, "isString", { enumerable: true, get: function () { return type_validation_1.isString; } });
|
|
106
|
+
Object.defineProperty(exports, "isSuccessResponse", { enumerable: true, get: function () { return type_validation_1.isSuccessResponse; } });
|
|
107
|
+
Object.defineProperty(exports, "isUrl", { enumerable: true, get: function () { return type_validation_1.isUrl; } });
|
|
108
|
+
Object.defineProperty(exports, "isValidDate", { enumerable: true, get: function () { return type_validation_1.isValidDate; } });
|
|
109
|
+
Object.defineProperty(exports, "optional", { enumerable: true, get: function () { return type_validation_1.optional; } });
|
|
110
|
+
Object.defineProperty(exports, "parseJson", { enumerable: true, get: function () { return type_validation_1.parseJson; } });
|
|
111
|
+
Object.defineProperty(exports, "validateArray", { enumerable: true, get: function () { return type_validation_1.validateArray; } });
|
|
112
|
+
var address_1 = require("./utils/blockchain/address");
|
|
113
|
+
Object.defineProperty(exports, "AddressType", { enumerable: true, get: function () { return address_1.AddressType; } });
|
|
114
|
+
Object.defineProperty(exports, "formatWalletAddress", { enumerable: true, get: function () { return address_1.formatWalletAddress; } });
|
|
115
|
+
Object.defineProperty(exports, "getAddressType", { enumerable: true, get: function () { return address_1.getAddressType; } });
|
|
116
|
+
Object.defineProperty(exports, "getChainDisplayName", { enumerable: true, get: function () { return address_1.getChainDisplayName; } });
|
|
117
|
+
Object.defineProperty(exports, "isENSName", { enumerable: true, get: function () { return address_1.isENSName; } });
|
|
118
|
+
Object.defineProperty(exports, "isSNSName", { enumerable: true, get: function () { return address_1.isSNSName; } });
|
|
119
|
+
Object.defineProperty(exports, "isValidSignature", { enumerable: true, get: function () { return address_1.isValidSignature; } });
|
|
120
|
+
Object.defineProperty(exports, "isValidWalletAddress", { enumerable: true, get: function () { return address_1.isValidWalletAddress; } });
|
|
121
|
+
Object.defineProperty(exports, "parseEmailAddress", { enumerable: true, get: function () { return address_1.parseEmailAddress; } });
|
|
122
|
+
var event_helpers_1 = require("./utils/blockchain/event-helpers");
|
|
123
|
+
Object.defineProperty(exports, "createChainStatsId", { enumerable: true, get: function () { return event_helpers_1.createChainStatsId; } });
|
|
124
|
+
Object.defineProperty(exports, "createDelegationId", { enumerable: true, get: function () { return event_helpers_1.createDelegationId; } });
|
|
125
|
+
Object.defineProperty(exports, "createMultiChainId", { enumerable: true, get: function () { return event_helpers_1.createMultiChainId; } });
|
|
126
|
+
Object.defineProperty(exports, "createUserMultiChainId", { enumerable: true, get: function () { return event_helpers_1.createUserMultiChainId; } });
|
|
127
|
+
Object.defineProperty(exports, "formatBigInt", { enumerable: true, get: function () { return event_helpers_1.formatBigInt; } });
|
|
128
|
+
Object.defineProperty(exports, "isTestNet", { enumerable: true, get: function () { return event_helpers_1.isTestNet; } });
|
|
129
|
+
Object.defineProperty(exports, "isZeroAddress", { enumerable: true, get: function () { return event_helpers_1.isZeroAddress; } });
|
|
130
|
+
Object.defineProperty(exports, "normalizeAddress", { enumerable: true, get: function () { return event_helpers_1.normalizeAddress; } });
|
|
131
|
+
Object.defineProperty(exports, "validateEventArgs", { enumerable: true, get: function () { return event_helpers_1.validateEventArgs; } });
|
|
132
|
+
// ============================================================================
|
|
133
|
+
// UTILS - Auth
|
|
134
|
+
// ============================================================================
|
|
135
|
+
var auth_1 = require("./utils/auth/auth");
|
|
136
|
+
Object.defineProperty(exports, "canAccessProtectedFeatures", { enumerable: true, get: function () { return auth_1.canAccessProtectedFeatures; } });
|
|
137
|
+
Object.defineProperty(exports, "extractNonceFromMessage", { enumerable: true, get: function () { return auth_1.extractNonceFromMessage; } });
|
|
138
|
+
Object.defineProperty(exports, "generateAuthMessage", { enumerable: true, get: function () { return auth_1.generateAuthMessage; } });
|
|
139
|
+
Object.defineProperty(exports, "generateNonce", { enumerable: true, get: function () { return auth_1.generateNonce; } });
|
|
140
|
+
Object.defineProperty(exports, "getAuthStatusText", { enumerable: true, get: function () { return auth_1.getAuthStatusText; } });
|
|
141
|
+
Object.defineProperty(exports, "isAuthExpired", { enumerable: true, get: function () { return auth_1.isAuthExpired; } });
|
|
142
|
+
Object.defineProperty(exports, "isAuthStatusConnected", { enumerable: true, get: function () { return auth_1.isAuthStatusConnected; } });
|
|
143
|
+
Object.defineProperty(exports, "isValidNonce", { enumerable: true, get: function () { return auth_1.isValidNonce; } });
|
|
144
|
+
// ============================================================================
|
|
145
|
+
// UTILS - Formatting
|
|
146
|
+
// ============================================================================
|
|
147
|
+
// Currency
|
|
148
|
+
var currency_1 = require("./utils/formatting/currency");
|
|
149
|
+
Object.defineProperty(exports, "CLAIM_PERIOD_DAYS", { enumerable: true, get: function () { return currency_1.CLAIM_PERIOD_DAYS; } });
|
|
150
|
+
Object.defineProperty(exports, "USDC_DECIMALS", { enumerable: true, get: function () { return currency_1.USDC_DECIMALS; } });
|
|
151
|
+
Object.defineProperty(exports, "formatUSDC", { enumerable: true, get: function () { return currency_1.formatUSDC; } });
|
|
152
|
+
Object.defineProperty(exports, "parseUSDC", { enumerable: true, get: function () { return currency_1.parseUSDC; } });
|
|
153
|
+
// Date
|
|
154
|
+
var date_1 = require("./utils/formatting/date");
|
|
155
|
+
Object.defineProperty(exports, "addDays", { enumerable: true, get: function () { return date_1.addDays; } });
|
|
156
|
+
Object.defineProperty(exports, "addHours", { enumerable: true, get: function () { return date_1.addHours; } });
|
|
157
|
+
Object.defineProperty(exports, "formatEmailDate", { enumerable: true, get: function () { return date_1.formatEmailDate; } });
|
|
158
|
+
Object.defineProperty(exports, "formatRelativeTime", { enumerable: true, get: function () { return date_1.formatRelativeTime; } });
|
|
159
|
+
Object.defineProperty(exports, "formatTimestamp", { enumerable: true, get: function () { return date_1.formatTimestamp; } });
|
|
160
|
+
Object.defineProperty(exports, "isDateInRange", { enumerable: true, get: function () { return date_1.isDateInRange; } });
|
|
161
|
+
Object.defineProperty(exports, "parseDate", { enumerable: true, get: function () { return date_1.parseDate; } });
|
|
162
|
+
// String
|
|
163
|
+
var string_1 = require("./utils/formatting/string");
|
|
164
|
+
Object.defineProperty(exports, "capitalize", { enumerable: true, get: function () { return string_1.capitalize; } });
|
|
165
|
+
Object.defineProperty(exports, "escapeHtml", { enumerable: true, get: function () { return string_1.escapeHtml; } });
|
|
166
|
+
Object.defineProperty(exports, "formatBytes", { enumerable: true, get: function () { return string_1.formatBytes; } });
|
|
167
|
+
Object.defineProperty(exports, "formatNumber", { enumerable: true, get: function () { return string_1.formatNumber; } });
|
|
168
|
+
Object.defineProperty(exports, "getInitials", { enumerable: true, get: function () { return string_1.getInitials; } });
|
|
169
|
+
Object.defineProperty(exports, "isBlank", { enumerable: true, get: function () { return string_1.isBlank; } });
|
|
170
|
+
Object.defineProperty(exports, "isNotBlank", { enumerable: true, get: function () { return string_1.isNotBlank; } });
|
|
171
|
+
Object.defineProperty(exports, "normalizeWhitespace", { enumerable: true, get: function () { return string_1.normalizeWhitespace; } });
|
|
172
|
+
Object.defineProperty(exports, "pluralize", { enumerable: true, get: function () { return string_1.pluralize; } });
|
|
173
|
+
Object.defineProperty(exports, "randomString", { enumerable: true, get: function () { return string_1.randomString; } });
|
|
174
|
+
Object.defineProperty(exports, "stripHtml", { enumerable: true, get: function () { return string_1.stripHtml; } });
|
|
175
|
+
Object.defineProperty(exports, "toCamelCase", { enumerable: true, get: function () { return string_1.toCamelCase; } });
|
|
176
|
+
Object.defineProperty(exports, "toKebabCase", { enumerable: true, get: function () { return string_1.toKebabCase; } });
|
|
177
|
+
Object.defineProperty(exports, "toSnakeCase", { enumerable: true, get: function () { return string_1.toSnakeCase; } });
|
|
178
|
+
Object.defineProperty(exports, "toTitleCase", { enumerable: true, get: function () { return string_1.toTitleCase; } });
|
|
179
|
+
Object.defineProperty(exports, "truncate", { enumerable: true, get: function () { return string_1.truncate; } });
|
|
180
|
+
// ============================================================================
|
|
181
|
+
// UTILS - Constants
|
|
182
|
+
// ============================================================================
|
|
183
|
+
var application_1 = require("./utils/constants/application");
|
|
184
|
+
Object.defineProperty(exports, "API_TIMEOUT", { enumerable: true, get: function () { return application_1.API_TIMEOUT; } });
|
|
185
|
+
Object.defineProperty(exports, "API_RETRY_ATTEMPTS", { enumerable: true, get: function () { return application_1.API_RETRY_ATTEMPTS; } });
|
|
186
|
+
Object.defineProperty(exports, "API_RETRY_DELAY", { enumerable: true, get: function () { return application_1.API_RETRY_DELAY; } });
|
|
187
|
+
Object.defineProperty(exports, "AUTH_STATUS", { enumerable: true, get: function () { return application_1.AUTH_STATUS; } });
|
|
188
|
+
Object.defineProperty(exports, "CHAIN_TYPE", { enumerable: true, get: function () { return application_1.CHAIN_TYPE; } });
|
|
189
|
+
Object.defineProperty(exports, "STORAGE_KEYS", { enumerable: true, get: function () { return application_1.STORAGE_KEYS; } });
|
|
190
|
+
Object.defineProperty(exports, "EMAIL_CONFIG", { enumerable: true, get: function () { return application_1.EMAIL_CONFIG; } });
|
|
191
|
+
Object.defineProperty(exports, "SUBSCRIPTION_TIERS", { enumerable: true, get: function () { return application_1.SUBSCRIPTION_TIERS; } });
|
|
192
|
+
Object.defineProperty(exports, "TIME_FORMAT", { enumerable: true, get: function () { return application_1.TIME_FORMAT; } });
|
|
193
|
+
Object.defineProperty(exports, "ERROR_MESSAGES", { enumerable: true, get: function () { return application_1.ERROR_MESSAGES; } });
|
|
194
|
+
Object.defineProperty(exports, "SUCCESS_MESSAGES", { enumerable: true, get: function () { return application_1.SUCCESS_MESSAGES; } });
|
|
195
|
+
Object.defineProperty(exports, "ROUTES", { enumerable: true, get: function () { return application_1.ROUTES; } });
|
|
196
|
+
Object.defineProperty(exports, "CONTACT_INFO", { enumerable: true, get: function () { return application_1.CONTACT_INFO; } });
|
|
197
|
+
Object.defineProperty(exports, "WALLET_NAMES", { enumerable: true, get: function () { return application_1.WALLET_NAMES; } });
|
|
198
|
+
Object.defineProperty(exports, "NETWORK_IDS", { enumerable: true, get: function () { return application_1.NETWORK_IDS; } });
|
|
199
|
+
Object.defineProperty(exports, "ANIMATION", { enumerable: true, get: function () { return application_1.ANIMATION; } });
|
|
200
|
+
Object.defineProperty(exports, "Z_INDEX", { enumerable: true, get: function () { return application_1.Z_INDEX; } });
|
|
201
|
+
var status_values_1 = require("./utils/constants/status-values");
|
|
202
|
+
Object.defineProperty(exports, "STATUS_VALUES", { enumerable: true, get: function () { return status_values_1.STATUS_VALUES; } });
|
|
203
|
+
// ============================================================================
|
|
204
|
+
// UTILS - Logging
|
|
205
|
+
// ============================================================================
|
|
206
|
+
var logger_1 = require("./utils/logging/logger");
|
|
207
|
+
Object.defineProperty(exports, "LogLevel", { enumerable: true, get: function () { return logger_1.LogLevel; } });
|
|
208
|
+
Object.defineProperty(exports, "logger", { enumerable: true, get: function () { return logger_1.logger; } });
|
|
209
|
+
Object.defineProperty(exports, "authLogger", { enumerable: true, get: function () { return logger_1.authLogger; } });
|
|
210
|
+
Object.defineProperty(exports, "apiLogger", { enumerable: true, get: function () { return logger_1.apiLogger; } });
|
|
211
|
+
Object.defineProperty(exports, "contractLogger", { enumerable: true, get: function () { return logger_1.contractLogger; } });
|
|
212
|
+
Object.defineProperty(exports, "ensLogger", { enumerable: true, get: function () { return logger_1.ensLogger; } });
|
|
213
|
+
Object.defineProperty(exports, "storageLogger", { enumerable: true, get: function () { return logger_1.storageLogger; } });
|
|
214
|
+
// ============================================================================
|
|
215
|
+
// UTILS - URL
|
|
216
|
+
// ============================================================================
|
|
217
|
+
var url_params_1 = require("./utils/url/url-params");
|
|
218
|
+
Object.defineProperty(exports, "createURLSearchParams", { enumerable: true, get: function () { return url_params_1.createURLSearchParams; } });
|
|
219
|
+
Object.defineProperty(exports, "createSearchParams", { enumerable: true, get: function () { return url_params_1.createSearchParams; } });
|
|
220
|
+
Object.defineProperty(exports, "searchParamsToString", { enumerable: true, get: function () { return url_params_1.searchParamsToString; } });
|
|
221
|
+
Object.defineProperty(exports, "parseSearchParams", { enumerable: true, get: function () { return url_params_1.parseSearchParams; } });
|
|
222
|
+
// ============================================================================
|
|
223
|
+
// UTILS - Async Helpers
|
|
224
|
+
// ============================================================================
|
|
225
|
+
var async_helpers_1 = require("./utils/async-helpers");
|
|
226
|
+
Object.defineProperty(exports, "safeAsync", { enumerable: true, get: function () { return async_helpers_1.safeAsync; } });
|
|
227
|
+
Object.defineProperty(exports, "withLoadingState", { enumerable: true, get: function () { return async_helpers_1.withLoadingState; } });
|
|
228
|
+
Object.defineProperty(exports, "safeParallel", { enumerable: true, get: function () { return async_helpers_1.safeParallel; } });
|
|
229
|
+
Object.defineProperty(exports, "withTimeout", { enumerable: true, get: function () { return async_helpers_1.withTimeout; } });
|
|
230
|
+
Object.defineProperty(exports, "withCache", { enumerable: true, get: function () { return async_helpers_1.withCache; } });
|
|
231
|
+
Object.defineProperty(exports, "clearExpiredCache", { enumerable: true, get: function () { return async_helpers_1.clearExpiredCache; } });
|
|
232
|
+
Object.defineProperty(exports, "debounceAsync", { enumerable: true, get: function () { return async_helpers_1.debounceAsync; } });
|
|
63
233
|
//# sourceMappingURL=index.js.map
|
package/dist/index.d.ts
CHANGED
|
@@ -8,9 +8,48 @@
|
|
|
8
8
|
* @version 1.0.0
|
|
9
9
|
* @license MIT
|
|
10
10
|
*/
|
|
11
|
-
export
|
|
12
|
-
export
|
|
13
|
-
export type {
|
|
14
|
-
export {
|
|
15
|
-
export {
|
|
11
|
+
export type { Optional, WalletData, FolderBase, MessageBase, BaseResponse, PaginationOptions, PaginationInfo, PaginatedResponse, UnifiedError, Result, ValidationResult, } from './types/common';
|
|
12
|
+
export { AuthStatus, Chain, ChainType, ConnectionState, ConnectionType, Currency, EmailAction, EmailAddressType, EmailComposeType, EmailSortCriteria, EmailValidationState, ErrorType, FeatureFlag, FontSize, InfoType, MediumView, MobileView, NotificationType, PlatformType, RequestStatus, SortOrder, SubscriptionAction, Theme, } from './types/business/enums';
|
|
13
|
+
export type { WalletStatus } from './types/business/wallet-status';
|
|
14
|
+
export { getWalletConnectionState, isWalletConnected, isWalletVerified, } from './types/business/wallet-status';
|
|
15
|
+
export type { ChainConfig, ClaimableRevenue, ClientConfig, DeploymentAddresses, FeeStructure, Message, MessageFilter, MessageRecipient, OperationError, PreparedMessage, RpcConfig, SendMessageOptions, TransactionResult, } from './types/blockchain/common';
|
|
16
|
+
export { MessageType, PROTOCOL_CONSTANTS, TransactionStatus, isEvmAddress, isEvmRecipient, isSolanaAddress, isSolanaRecipient, } from './types/blockchain/common';
|
|
17
|
+
export { validateAddress, validateAmount, validateDomain, validateMessage, } from './types/blockchain/validation';
|
|
18
|
+
export type { EnvProvider, EnvironmentVariables, } from './types/config/environment';
|
|
19
|
+
export { StorageType } from './types/config/environment';
|
|
20
|
+
export type { AppConfig, FirebaseConfig } from './types/config/app-config';
|
|
21
|
+
export type { AnalyticsConfig, AnalyticsEventProperties, AnalyticsService, EmailAnalyticsService, } from './types/infrastructure/analytics';
|
|
22
|
+
export { AnalyticsEvent, AnalyticsEventBuilder, } from './types/infrastructure/analytics';
|
|
23
|
+
export type { ApiResponse, ChainMetadata, ChainStatisticsEntity, DelegationEntity, EventLogEntity, GraphQLResult, MailEntity, MultiChainId, PreparedMailEntity, SignatureProtectedRequest, StatisticsEntity, SupportedChainId, UserChainId, UserStatisticsEntity, } from './types/infrastructure/api';
|
|
24
|
+
export { ContractType, ProcessedEventName, } from './types/infrastructure/api';
|
|
25
|
+
export type { NetworkClient, NetworkRequestOptions, NetworkResponse, } from './types/infrastructure/network';
|
|
26
|
+
export { NetworkError } from './types/infrastructure/network';
|
|
27
|
+
export type { UILocationHook, UINavigationConfig, UINavigationHook, UINavigationOptions, UINavigationService, UINavigationState, } from './types/infrastructure/navigation';
|
|
28
|
+
export { WalletType } from './types/infrastructure/wallet';
|
|
29
|
+
export type { RateLimits, RateLimitTier, RateLimitsConfigData, RateLimitUsage, RateLimitsConfigResponse, RateLimitHistoryEntry, RateLimitHistoryData, RateLimitHistoryResponse, } from './types/subscription/rate-limits';
|
|
30
|
+
export { RateLimitPeriodType } from './types/subscription/rate-limits';
|
|
31
|
+
export { EntityType, EntityRole, InvitationStatus, } from './types/entity/entity';
|
|
32
|
+
export type { Entity, EntityWithRole, EntityMember, EntityInvitation, } from './types/entity/entity';
|
|
33
|
+
export type { EntityPermissions } from './types/entity/permissions';
|
|
34
|
+
export { OWNER_PERMISSIONS, MANAGER_PERMISSIONS, MEMBER_PERMISSIONS, getPermissionsForRole, hasPermission, } from './types/entity/permissions';
|
|
35
|
+
export type { CreateEntityRequest, UpdateEntityRequest, UpdateMemberRoleRequest, InviteMemberRequest, AcceptInvitationRequest, DeclineInvitationRequest, } from './types/entity/requests';
|
|
36
|
+
export type { EntityResponse, EntityWithRoleListResponse, EntityWithRoleResponse, EntityMemberResponse, EntityMemberListResponse, EntityInvitationResponse, EntityInvitationListResponse, SlugAvailabilityData, SlugAvailabilityResponse, } from './types/entity/responses';
|
|
37
|
+
export type { AddressValidationResult } from './utils/validation/web3-username-validator';
|
|
38
|
+
export { Web3UsernameValidator } from './utils/validation/web3-username-validator';
|
|
39
|
+
export type { ValidationResult as TypeValidationResult } from './utils/validation/type-validation';
|
|
40
|
+
export { createAssertion, createValidator, hasRequiredProperties, isApiResponse, isArray, isBoolean, isEmail, isErrorResponse, isNullish, isNumber, isObject, isString, isSuccessResponse, isUrl, isValidDate, optional, parseJson, validateArray, } from './utils/validation/type-validation';
|
|
41
|
+
export type { ParsedEmailAddress } from './utils/blockchain/address';
|
|
42
|
+
export { AddressType, formatWalletAddress, getAddressType, getChainDisplayName, isENSName, isSNSName, isValidSignature, isValidWalletAddress, parseEmailAddress, } from './utils/blockchain/address';
|
|
43
|
+
export type { MultiChainIdGenerator, UserChainIdGenerator, } from './utils/blockchain/event-helpers';
|
|
44
|
+
export { createChainStatsId, createDelegationId, createMultiChainId, createUserMultiChainId, formatBigInt, isTestNet, isZeroAddress, normalizeAddress, validateEventArgs, } from './utils/blockchain/event-helpers';
|
|
45
|
+
export { canAccessProtectedFeatures, extractNonceFromMessage, generateAuthMessage, generateNonce, getAuthStatusText, isAuthExpired, isAuthStatusConnected, isValidNonce, } from './utils/auth/auth';
|
|
46
|
+
export { CLAIM_PERIOD_DAYS, USDC_DECIMALS, formatUSDC, parseUSDC, } from './utils/formatting/currency';
|
|
47
|
+
export { addDays, addHours, formatEmailDate, formatRelativeTime, formatTimestamp, isDateInRange, parseDate, } from './utils/formatting/date';
|
|
48
|
+
export { capitalize, escapeHtml, formatBytes, formatNumber, getInitials, isBlank, isNotBlank, normalizeWhitespace, pluralize, randomString, stripHtml, toCamelCase, toKebabCase, toSnakeCase, toTitleCase, truncate, } from './utils/formatting/string';
|
|
49
|
+
export { API_TIMEOUT, API_RETRY_ATTEMPTS, API_RETRY_DELAY, AUTH_STATUS, CHAIN_TYPE, STORAGE_KEYS, EMAIL_CONFIG, SUBSCRIPTION_TIERS, TIME_FORMAT, ERROR_MESSAGES, SUCCESS_MESSAGES, ROUTES, CONTACT_INFO, WALLET_NAMES, NETWORK_IDS, ANIMATION, Z_INDEX, } from './utils/constants/application';
|
|
50
|
+
export { STATUS_VALUES } from './utils/constants/status-values';
|
|
51
|
+
export type { StatusValue } from './utils/constants/status-values';
|
|
52
|
+
export { LogLevel, type LogEntry, logger, authLogger, apiLogger, contractLogger, ensLogger, storageLogger, } from './utils/logging/logger';
|
|
53
|
+
export { createURLSearchParams, createSearchParams, searchParamsToString, parseSearchParams, type URLSearchParamsLike, } from './utils/url/url-params';
|
|
54
|
+
export { safeAsync, withLoadingState, safeParallel, withTimeout, withCache, clearExpiredCache, debounceAsync, type AsyncResult, } from './utils/async-helpers';
|
|
16
55
|
//# sourceMappingURL=index.d.ts.map
|
package/dist/index.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAAA;;;;;;;;;GASG;
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"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"}
|