@thirdweb-dev/service-utils 0.4.32 → 0.4.33-nightly-d320777eea5404f596aa39b2b49b5165d3e1959a-20240621000551

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.
@@ -53,11 +53,12 @@ declare const usageEventSchema: z.ZodObject<{
53
53
  }, "strip", z.ZodTypeAny, {
54
54
  source: "storage" | "rpc" | "bundler" | "relayer" | "embeddedWallets" | "checkout" | "pay" | "ecosystemWallets" | "paymaster" | "connectWallet" | "engine";
55
55
  action: string;
56
+ errorCode?: string | undefined;
57
+ clientId?: string | undefined;
58
+ creatorWalletAddress?: string | undefined;
56
59
  accountId?: string | undefined;
57
60
  isClientEvent?: boolean | undefined;
58
61
  apiKeyId?: string | undefined;
59
- creatorWalletAddress?: string | undefined;
60
- clientId?: string | undefined;
61
62
  walletAddress?: string | undefined;
62
63
  walletType?: string | undefined;
63
64
  chainId?: number | undefined;
@@ -79,7 +80,6 @@ declare const usageEventSchema: z.ZodObject<{
79
80
  transactionValue?: string | undefined;
80
81
  pathname?: string | undefined;
81
82
  contractAddress?: string | undefined;
82
- errorCode?: string | undefined;
83
83
  httpStatusCode?: number | undefined;
84
84
  functionName?: string | undefined;
85
85
  extension?: string | undefined;
@@ -98,11 +98,12 @@ declare const usageEventSchema: z.ZodObject<{
98
98
  }, {
99
99
  source: "storage" | "rpc" | "bundler" | "relayer" | "embeddedWallets" | "checkout" | "pay" | "ecosystemWallets" | "paymaster" | "connectWallet" | "engine";
100
100
  action: string;
101
+ errorCode?: string | undefined;
102
+ clientId?: string | undefined;
103
+ creatorWalletAddress?: string | undefined;
101
104
  accountId?: string | undefined;
102
105
  isClientEvent?: boolean | undefined;
103
106
  apiKeyId?: string | undefined;
104
- creatorWalletAddress?: string | undefined;
105
- clientId?: string | undefined;
106
107
  walletAddress?: string | undefined;
107
108
  walletType?: string | undefined;
108
109
  chainId?: number | undefined;
@@ -124,7 +125,6 @@ declare const usageEventSchema: z.ZodObject<{
124
125
  transactionValue?: string | undefined;
125
126
  pathname?: string | undefined;
126
127
  contractAddress?: string | undefined;
127
- errorCode?: string | undefined;
128
128
  httpStatusCode?: number | undefined;
129
129
  functionName?: string | undefined;
130
130
  extension?: string | undefined;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@thirdweb-dev/service-utils",
3
- "version": "0.4.32",
3
+ "version": "0.4.33-nightly-d320777eea5404f596aa39b2b49b5165d3e1959a-20240621000551",
4
4
  "main": "dist/thirdweb-dev-service-utils.cjs.js",
5
5
  "module": "dist/thirdweb-dev-service-utils.esm.js",
6
6
  "exports": {
@@ -40,19 +40,19 @@
40
40
  "sideEffects": false,
41
41
  "dependencies": {
42
42
  "aws4fetch": "1.0.18",
43
- "zod": "3.22.4"
43
+ "zod": "3.23.8"
44
44
  },
45
45
  "devDependencies": {
46
46
  "@cloudflare/workers-types": "4.20240405.0",
47
47
  "@preconstruct/cli": "2.7.0",
48
48
  "@thirdweb-dev/tsconfig": "^0.1.7",
49
- "@types/node": "20.12.7",
49
+ "@types/node": "20.14.6",
50
50
  "typescript": "5.4.4"
51
51
  },
52
52
  "scripts": {
53
- "format": "biome format --write 'src/**/*'",
54
- "lint": "biome check src/",
55
- "fix": "biome check src/ --apply",
53
+ "format": "biome format ./src --write",
54
+ "lint": "biome check ./src",
55
+ "fix": "biome check ./src --fix",
56
56
  "clean": "rm -rf dist/",
57
57
  "build": "tsc && preconstruct build",
58
58
  "push": "yalc push",