televerse-dao-typechain-types 1.0.8-alpha.17 → 1.0.8-alpha.18

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/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "televerse-dao-typechain-types",
3
3
  "sourceType": "commonjs",
4
- "version": "1.0.8-alpha.17",
4
+ "version": "1.0.8-alpha.18",
5
5
  "description": "The typechain types for the Televerse DAO smart contracts.",
6
6
  "license": "MIT",
7
7
  "files": [
@@ -1,4 +1,10 @@
1
1
  import { z } from 'zod';
2
+ export declare const zOnChainState: z.ZodObject<{
3
+ ed25519Exists: z.ZodBoolean;
4
+ x25519Exists: z.ZodBoolean;
5
+ serviceEndpointExists: z.ZodBoolean;
6
+ }, z.core.$strip>;
7
+ export type OnChainState = z.infer<typeof zOnChainState>;
2
8
  export declare const postMessageSchema: z.ZodIntersection<z.ZodObject<{
3
9
  type: z.ZodOptional<z.ZodString>;
4
10
  }, z.core.$strip>, z.ZodRecord<z.ZodString, z.ZodAny>>;
@@ -1,8 +1,8 @@
1
1
  "use strict";
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.DecryptedDidCommMessageBodySchema = exports.DecryptedMessageListResultSchema = exports.DecryptedMessageResultSchema = exports.JWESchema = exports.RecipientSchema = exports.RecipientHeaderSchema = exports.EphemeralPublicKeySchema = exports.ResultSchema = exports.IVerifyResultSchema = exports.IErrorSchema = exports.CreateSearchVcSchema = exports.VerifiableCredentialSchema = exports.proofTypeSchema = exports.eip712ProofTypeSchema = exports.jwtProofTypeSchema = exports.unsignedCredentialSchema = exports.credentialStatusReferenceSchema = exports.contextTypeSchema = exports.credentialSubjectSchema = exports.issuerTypeSchema = exports.networksSchema = exports.configJsonSchema = exports.supportedNetworkEnumSchema = exports.supportedNetworks = exports.jwtSchema = exports.DIDCommQuoteMessageSchema = exports.gisPointSchema = exports.postMessagePayloadSchema = exports.postMessageSchema = void 0;
3
+ exports.DecryptedDidCommMessageBodySchema = exports.DecryptedMessageListResultSchema = exports.DecryptedMessageResultSchema = exports.JWESchema = exports.RecipientSchema = exports.RecipientHeaderSchema = exports.EphemeralPublicKeySchema = exports.ResultSchema = exports.IVerifyResultSchema = exports.IErrorSchema = exports.CreateSearchVcSchema = exports.VerifiableCredentialSchema = exports.proofTypeSchema = exports.eip712ProofTypeSchema = exports.jwtProofTypeSchema = exports.unsignedCredentialSchema = exports.credentialStatusReferenceSchema = exports.contextTypeSchema = exports.credentialSubjectSchema = exports.issuerTypeSchema = exports.networksSchema = exports.configJsonSchema = exports.supportedNetworkEnumSchema = exports.supportedNetworks = exports.jwtSchema = exports.DIDCommQuoteMessageSchema = exports.gisPointSchema = exports.postMessagePayloadSchema = exports.postMessageSchema = exports.zOnChainState = void 0;
4
4
  const zod_1 = require("zod");
5
- const zOnChainState = zod_1.z.object({
5
+ exports.zOnChainState = zod_1.z.object({
6
6
  ed25519Exists: zod_1.z.boolean(),
7
7
  x25519Exists: zod_1.z.boolean(),
8
8
  serviceEndpointExists: zod_1.z.boolean(),