@glowlabs-org/events-sdk 1.0.14 → 1.0.15

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/README.md CHANGED
@@ -183,7 +183,7 @@ export interface AuditPushedV2AlphaPayload {
183
183
  ### `audit.pfees.paid` v2-alpha
184
184
 
185
185
  ```ts
186
- export type PaymentCurrency = "GCTL" | "USDC" | "USDG" | "GLW";
186
+ export type PaymentCurrency = "GCTL" | "USDC" | "USDG" | "GLW" | "SGCTL";
187
187
  export interface AuditPfeesPaidV2AlphaPayload {
188
188
  applicationId: string; // UUID string
189
189
  payer: string; // Ethereum address (0x...)
@@ -1,12 +1,12 @@
1
1
  import { z } from "zod";
2
- export type PaymentCurrency = "GCTL" | "USDC" | "USDG" | "GLW";
2
+ export type PaymentCurrency = "GCTL" | "USDC" | "USDG" | "GLW" | "SGCTL";
3
3
  export declare const auditPfeesPaidV2AlphaPayloadZ: z.ZodObject<{
4
4
  applicationId: z.ZodString;
5
5
  payer: z.ZodString;
6
6
  amount_6Decimals: z.ZodString;
7
7
  txHash: z.ZodString;
8
8
  } & {
9
- paymentCurrency: z.ZodEnum<["GCTL", "USDC", "USDG", "GLW"]>;
9
+ paymentCurrency: z.ZodEnum<["GCTL", "USDC", "USDG", "GLW", "SGCTL"]>;
10
10
  paymentEventType: z.ZodString;
11
11
  isSponsored: z.ZodBoolean;
12
12
  }, "strip", z.ZodTypeAny, {
@@ -14,7 +14,7 @@ export declare const auditPfeesPaidV2AlphaPayloadZ: z.ZodObject<{
14
14
  applicationId: string;
15
15
  payer: string;
16
16
  amount_6Decimals: string;
17
- paymentCurrency: "GCTL" | "GLW" | "USDC" | "USDG";
17
+ paymentCurrency: "GCTL" | "GLW" | "USDC" | "USDG" | "SGCTL";
18
18
  paymentEventType: string;
19
19
  isSponsored: boolean;
20
20
  }, {
@@ -22,7 +22,7 @@ export declare const auditPfeesPaidV2AlphaPayloadZ: z.ZodObject<{
22
22
  applicationId: string;
23
23
  payer: string;
24
24
  amount_6Decimals: string;
25
- paymentCurrency: "GCTL" | "GLW" | "USDC" | "USDG";
25
+ paymentCurrency: "GCTL" | "GLW" | "USDC" | "USDG" | "SGCTL";
26
26
  paymentEventType: string;
27
27
  isSponsored: boolean;
28
28
  }>;
@@ -4,7 +4,7 @@ exports.auditPfeesPaidV2AlphaPayloadZ = void 0;
4
4
  const zod_1 = require("zod");
5
5
  const audit_pfees_paid_v1_1 = require("./audit-pfees-paid.v1");
6
6
  exports.auditPfeesPaidV2AlphaPayloadZ = audit_pfees_paid_v1_1.auditPfeesPaidV1PayloadZ.extend({
7
- paymentCurrency: zod_1.z.enum(["GCTL", "USDC", "USDG", "GLW"]),
7
+ paymentCurrency: zod_1.z.enum(["GCTL", "USDC", "USDG", "GLW", "SGCTL"]),
8
8
  paymentEventType: zod_1.z.string(),
9
9
  isSponsored: zod_1.z.boolean(),
10
10
  });
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@glowlabs-org/events-sdk",
3
- "version": "1.0.14",
3
+ "version": "1.0.15",
4
4
  "description": "Typed event SDK for Glow, powered by RabbitMQ and Zod.",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",