@thirdweb-dev/service-utils 0.4.6-nightly-ec36b13a-20231008174544 → 0.4.7-nightly-95380eae-20231011180222

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.
@@ -32,6 +32,7 @@ const usageEventSchema = zod.z.object({
32
32
  creatorWalletAddress: zod.z.string().optional(),
33
33
  clientId: zod.z.string().optional(),
34
34
  walletAddress: zod.z.string().optional(),
35
+ walletType: zod.z.string().optional(),
35
36
  chainId: zod.z.number().int().positive().optional(),
36
37
  provider: zod.z.string().optional(),
37
38
  mimeType: zod.z.string().optional(),
@@ -32,6 +32,7 @@ const usageEventSchema = zod.z.object({
32
32
  creatorWalletAddress: zod.z.string().optional(),
33
33
  clientId: zod.z.string().optional(),
34
34
  walletAddress: zod.z.string().optional(),
35
+ walletType: zod.z.string().optional(),
35
36
  chainId: zod.z.number().int().positive().optional(),
36
37
  provider: zod.z.string().optional(),
37
38
  mimeType: zod.z.string().optional(),
@@ -29,6 +29,7 @@ const usageEventSchema = z.object({
29
29
  creatorWalletAddress: z.string().optional(),
30
30
  clientId: z.string().optional(),
31
31
  walletAddress: z.string().optional(),
32
+ walletType: z.string().optional(),
32
33
  chainId: z.number().int().positive().optional(),
33
34
  provider: z.string().optional(),
34
35
  mimeType: z.string().optional(),
@@ -14,6 +14,7 @@ declare const usageEventSchema: z.ZodObject<{
14
14
  creatorWalletAddress: z.ZodOptional<z.ZodString>;
15
15
  clientId: z.ZodOptional<z.ZodString>;
16
16
  walletAddress: z.ZodOptional<z.ZodString>;
17
+ walletType: z.ZodOptional<z.ZodString>;
17
18
  chainId: z.ZodOptional<z.ZodNumber>;
18
19
  provider: z.ZodOptional<z.ZodString>;
19
20
  mimeType: z.ZodOptional<z.ZodString>;
@@ -37,6 +38,7 @@ declare const usageEventSchema: z.ZodObject<{
37
38
  creatorWalletAddress?: string | undefined;
38
39
  clientId?: string | undefined;
39
40
  walletAddress?: string | undefined;
41
+ walletType?: string | undefined;
40
42
  chainId?: number | undefined;
41
43
  provider?: string | undefined;
42
44
  mimeType?: string | undefined;
@@ -60,6 +62,7 @@ declare const usageEventSchema: z.ZodObject<{
60
62
  creatorWalletAddress?: string | undefined;
61
63
  clientId?: string | undefined;
62
64
  walletAddress?: string | undefined;
65
+ walletType?: string | undefined;
63
66
  chainId?: number | undefined;
64
67
  provider?: string | undefined;
65
68
  mimeType?: string | undefined;
@@ -1 +1 @@
1
- {"version":3,"file":"usage.d.ts","sourceRoot":"../../../../src/cf-worker","sources":["usage.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAC;AAWxB;;GAEG;AACH,QAAA,MAAM,gBAAgB;;;IAYpB;;OAEG;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAsBH,CAAC;AACH,MAAM,MAAM,UAAU,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,gBAAgB,CAAC,CAAC;AAE1D;;;;;;;;;;;;;GAaG;AACH,wBAAsB,kBAAkB,CACtC,WAAW,EAAE,UAAU,EAAE,EACzB,MAAM,EAAE;IACN,QAAQ,EAAE,MAAM,CAAC;IACjB,WAAW,EAAE,MAAM,CAAC;IACpB,eAAe,EAAE,MAAM,CAAC;IACxB,MAAM,CAAC,EAAE,MAAM,CAAC;CACjB,GACA,OAAO,CAAC,IAAI,CAAC,CAiCf"}
1
+ {"version":3,"file":"usage.d.ts","sourceRoot":"../../../../src/cf-worker","sources":["usage.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAC;AAWxB;;GAEG;AACH,QAAA,MAAM,gBAAgB;;;IAYpB;;OAEG;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAuBH,CAAC;AACH,MAAM,MAAM,UAAU,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,gBAAgB,CAAC,CAAC;AAE1D;;;;;;;;;;;;;GAaG;AACH,wBAAsB,kBAAkB,CACtC,WAAW,EAAE,UAAU,EAAE,EACzB,MAAM,EAAE;IACN,QAAQ,EAAE,MAAM,CAAC;IACjB,WAAW,EAAE,MAAM,CAAC;IACpB,eAAe,EAAE,MAAM,CAAC;IACxB,MAAM,CAAC,EAAE,MAAM,CAAC;CACjB,GACA,OAAO,CAAC,IAAI,CAAC,CAiCf"}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@thirdweb-dev/service-utils",
3
- "version": "0.4.6-nightly-ec36b13a-20231008174544",
3
+ "version": "0.4.7-nightly-95380eae-20231011180222",
4
4
  "main": "dist/thirdweb-dev-service-utils.cjs.js",
5
5
  "module": "dist/thirdweb-dev-service-utils.esm.js",
6
6
  "exports": {
@@ -57,7 +57,7 @@
57
57
  },
58
58
  "dependencies": {
59
59
  "aws4fetch": "^1.0.17",
60
- "zod": "^3.20.2"
60
+ "zod": "^3.22.3"
61
61
  },
62
62
  "scripts": {
63
63
  "format": "prettier --write 'src/**/*'",