@xube/kit-aws-hooks 0.0.92 → 0.0.94

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.
@@ -13,19 +13,19 @@ export declare const WebhookEndpointSchema: z.ZodObject<{
13
13
  id: z.ZodString;
14
14
  account: z.ZodString;
15
15
  }, "strip", z.ZodTypeAny, {
16
- account: string;
16
+ id: string;
17
17
  endpoints: {
18
18
  url: string;
19
19
  headers?: Record<string, string> | undefined;
20
20
  }[];
21
- id: string;
22
- }, {
23
21
  account: string;
22
+ }, {
23
+ id: string;
24
24
  endpoints: {
25
25
  url: string;
26
26
  headers?: Record<string, string> | undefined;
27
27
  }[];
28
- id: string;
28
+ account: string;
29
29
  }>;
30
30
  export type WebhookEndpoint = z.infer<typeof WebhookEndpointSchema>;
31
31
  export declare const isWebhookEndpoint: (obj: unknown) => obj is WebhookEndpoint;
@@ -51,26 +51,26 @@ export declare const WebhookEndpointItemSchema: z.ZodObject<z.objectUtil.extendS
51
51
  PK: z.ZodString;
52
52
  SK: z.ZodString;
53
53
  }>>, "strip", z.ZodTypeAny, {
54
+ s: number;
54
55
  type: string;
55
- account: string;
56
+ id: string;
56
57
  endpoints: {
57
58
  url: string;
58
59
  headers?: Record<string, string> | undefined;
59
60
  }[];
60
- id: string;
61
- s: number;
61
+ account: string;
62
62
  PK: string;
63
63
  SK: string;
64
64
  us?: number | undefined;
65
65
  }, {
66
+ s: number;
66
67
  type: string;
67
- account: string;
68
+ id: string;
68
69
  endpoints: {
69
70
  url: string;
70
71
  headers?: Record<string, string> | undefined;
71
72
  }[];
72
- id: string;
73
- s: number;
73
+ account: string;
74
74
  PK: string;
75
75
  SK: string;
76
76
  us?: number | undefined;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@xube/kit-aws-hooks",
3
- "version": "0.0.92",
3
+ "version": "0.0.94",
4
4
  "description": "",
5
5
  "main": "dist/index.js",
6
6
  "scripts": {
@@ -17,15 +17,15 @@
17
17
  },
18
18
  "homepage": "https://github.com/XubeLtd/dev-kit#readme",
19
19
  "devDependencies": {
20
- "@xube/kit-build": "^0.0.92"
20
+ "@xube/kit-build": "^0.0.94"
21
21
  },
22
22
  "dependencies": {
23
- "@xube/kit-aws": "^0.0.92",
24
- "@xube/kit-aws-data-schema": "^0.0.92",
25
- "@xube/kit-aws-schema": "^0.0.92",
26
- "@xube/kit-log": "^0.0.92",
27
- "@xube/kit-request": "^0.0.92",
28
- "@xube/kit-schema": "^0.0.92",
23
+ "@xube/kit-aws": "^0.0.94",
24
+ "@xube/kit-aws-data-schema": "^0.0.94",
25
+ "@xube/kit-aws-schema": "^0.0.94",
26
+ "@xube/kit-log": "^0.0.94",
27
+ "@xube/kit-request": "^0.0.94",
28
+ "@xube/kit-schema": "^0.0.94",
29
29
  "zod": "^3.23.8"
30
30
  }
31
31
  }