@layerzerolabs/onesig-model 1.2.42 → 1.2.44

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.
@@ -1,8 +1,8 @@
1
- import { oneSigBundleSizeOverrideSchema } from './YJC3WODI.js';
2
- import { proposerSignatureSchema } from './WJMHUJYW.js';
3
1
  import { signerSignatureSchema } from './H3AGSGWO.js';
4
- import { oneSigBundleMetadataSchema } from './3FLMGPQY.js';
5
2
  import { oneSigLeafSchema } from './IPGS4JOW.js';
3
+ import { oneSigBundleMetadataSchema } from './3FLMGPQY.js';
4
+ import { oneSigBundleSizeOverrideSchema } from './YJC3WODI.js';
5
+ import { proposerSignatureSchema } from './WJMHUJYW.js';
6
6
  import { z } from 'zod';
7
7
 
8
8
  var oneSigEntitySchema = z.object({
@@ -25,5 +25,5 @@ var oneSigProposedEntitySchema = z.object({
25
25
  });
26
26
 
27
27
  export { oneSigEntitySchema, oneSigProposedEntitySchema };
28
- //# sourceMappingURL=3LZH6F5K.js.map
29
- //# sourceMappingURL=3LZH6F5K.js.map
28
+ //# sourceMappingURL=HICCFF2O.js.map
29
+ //# sourceMappingURL=HICCFF2O.js.map
@@ -1 +1 @@
1
- {"version":3,"sources":["../src/model/onesig-bundle/onesig-entity.ts"],"names":["oneSigEntitySchema","z","object","id","uuid","describe","oneSigName","string","expiry","number","optional","seed","signatures","array","signerSignatureSchema","leaves","oneSigLeafSchema","metadata","oneSigBundleMetadataSchema","bundlingOverride","oneSigBundleSizeOverrideSchema","proposerSignature","proposerSignatureSchema","oneSigProposedEntitySchema","status","merkleRoot","record"],"mappings":";;;;;;;AAQO,IAAMA,kBAAAA,GAAqBC,EAAEC,MAAAA,CAAO;AACvCC,EAAAA,EAAAA,EAAIF,CAAAA,CAAEG,IAAAA,EAAI,CAAGC,QAAAA,CAAS,mDAAA,CAAA;AACtBC,EAAAA,UAAAA,EAAYL,CAAAA,CAAEM,MAAAA,EAAM,CAAGF,QAAAA,CAAS,8BAAA,CAAA;AAChCG,EAAAA,MAAAA,EAAQP,EACHQ,MAAAA,EAAM,CACNC,QAAAA,EAAQ,CACRL,SACG,qFAAA,CAAA;AAGRM,EAAAA,IAAAA,EAAMV,EAAEM,MAAAA,EAAM,CAAGG,QAAAA,EAAQ,CAAGL,SAAS,qBAAA,CAAA;AACrCO,EAAAA,UAAAA,EAAYX,EACPY,KAAAA,CAAMC,qBAAAA,EACNJ,QAAAA,EAAQ,CACRL,SAAS,mCAAA,CAAA;AACdU,EAAAA,MAAAA,EAAQd,CAAAA,CAAEY,KAAAA,CAAMG,gBAAAA,CAAAA,CAAkBX,SAAS,gBAAA,CAAA;AAC3CY,EAAAA,QAAAA,EAAUC,0BAAAA,CAA2BR,QAAAA,EAAQ,CAAGL,QAAAA,CAAS,yBAAA,CAAA;AACzDc,EAAAA,gBAAAA,EAAkBC,8BAAAA,CACbV,QAAAA,EAAQ,CACRL,QAAAA,CAAS,4CAAA,CAAA;EACdgB,iBAAAA,EAAmBC,uBAAAA,CAAwBjB,SACvC,8DAAA;AAER,CAAA;AAEO,IAAMkB,0BAAAA,GAA6BtB,EAAEC,MAAAA,CAAO;AAC/CsB,EAAAA,MAAAA,EAAQvB,EAAEM,MAAAA,EAAM;EAChBkB,UAAAA,EAAYxB,CAAAA,CAAEM,MAAAA,EAAM,CAAGG,QAAAA,EAAQ;EAC/BF,MAAAA,EAAQP,CAAAA,CAAEQ,MAAAA,EAAM,CAAGC,QAAAA,EAAQ;EAC3BC,IAAAA,EAAMV,CAAAA,CAAEM,MAAAA,EAAM,CAAGG,QAAAA,EAAQ;AACzBE,EAAAA,UAAAA,EAAYX,EAAEyB,MAAAA,CAAOzB,CAAAA,CAAEM,QAAM,EAAIN,CAAAA,CAAEM,QAAM;AAC7C,CAAA","file":"3LZH6F5K.js","sourcesContent":["import { z } from 'zod';\n\nimport { oneSigLeafSchema } from './onesig-leaf';\nimport { oneSigBundleMetadataSchema } from './onesig-metadata';\nimport { oneSigBundleSizeOverrideSchema } from './onesig-overrides';\nimport { proposerSignatureSchema } from './onesig-proposer-signature';\nimport { signerSignatureSchema } from './onesig-signer-signature';\n\nexport const oneSigEntitySchema = z.object({\n id: z.uuid().describe('Client generated id for the batch of transactions'),\n oneSigName: z.string().describe('Canonical name of the OneSig'),\n expiry: z\n .number()\n .optional()\n .describe(\n 'unix timestamp in milliseconds, after which the OneSig transactions fail to execute',\n ),\n\n seed: z.string().optional().describe('Seed for the OneSig'),\n signatures: z\n .array(signerSignatureSchema)\n .optional()\n .describe('List of signatures of the signers'),\n leaves: z.array(oneSigLeafSchema).describe('List of leaves'),\n metadata: oneSigBundleMetadataSchema.optional().describe('Metadata for the OneSig'),\n bundlingOverride: oneSigBundleSizeOverrideSchema\n .optional()\n .describe('Override for the number of calls in a leaf'),\n proposerSignature: proposerSignatureSchema.describe(\n 'Object containing the signature of the proposer and metadata',\n ),\n});\n\nexport const oneSigProposedEntitySchema = z.object({\n status: z.string(),\n merkleRoot: z.string().optional(),\n expiry: z.number().optional(),\n seed: z.string().optional(),\n signatures: z.record(z.string(), z.string()),\n});\n\nexport type OneSigEntity = z.infer<typeof oneSigEntitySchema>;\nexport type OneSigProposedEntity = z.infer<typeof oneSigProposedEntitySchema>;\n"]}
1
+ {"version":3,"sources":["../src/model/onesig-bundle/onesig-entity.ts"],"names":["oneSigEntitySchema","z","object","id","uuid","describe","oneSigName","string","expiry","number","optional","seed","signatures","array","signerSignatureSchema","leaves","oneSigLeafSchema","metadata","oneSigBundleMetadataSchema","bundlingOverride","oneSigBundleSizeOverrideSchema","proposerSignature","proposerSignatureSchema","oneSigProposedEntitySchema","status","merkleRoot","record"],"mappings":";;;;;;;AAQO,IAAMA,kBAAAA,GAAqBC,EAAEC,MAAAA,CAAO;AACvCC,EAAAA,EAAAA,EAAIF,CAAAA,CAAEG,IAAAA,EAAI,CAAGC,QAAAA,CAAS,mDAAA,CAAA;AACtBC,EAAAA,UAAAA,EAAYL,CAAAA,CAAEM,MAAAA,EAAM,CAAGF,QAAAA,CAAS,8BAAA,CAAA;AAChCG,EAAAA,MAAAA,EAAQP,EACHQ,MAAAA,EAAM,CACNC,QAAAA,EAAQ,CACRL,SACG,qFAAA,CAAA;AAGRM,EAAAA,IAAAA,EAAMV,EAAEM,MAAAA,EAAM,CAAGG,QAAAA,EAAQ,CAAGL,SAAS,qBAAA,CAAA;AACrCO,EAAAA,UAAAA,EAAYX,EACPY,KAAAA,CAAMC,qBAAAA,EACNJ,QAAAA,EAAQ,CACRL,SAAS,mCAAA,CAAA;AACdU,EAAAA,MAAAA,EAAQd,CAAAA,CAAEY,KAAAA,CAAMG,gBAAAA,CAAAA,CAAkBX,SAAS,gBAAA,CAAA;AAC3CY,EAAAA,QAAAA,EAAUC,0BAAAA,CAA2BR,QAAAA,EAAQ,CAAGL,QAAAA,CAAS,yBAAA,CAAA;AACzDc,EAAAA,gBAAAA,EAAkBC,8BAAAA,CACbV,QAAAA,EAAQ,CACRL,QAAAA,CAAS,4CAAA,CAAA;EACdgB,iBAAAA,EAAmBC,uBAAAA,CAAwBjB,SACvC,8DAAA;AAER,CAAA;AAEO,IAAMkB,0BAAAA,GAA6BtB,EAAEC,MAAAA,CAAO;AAC/CsB,EAAAA,MAAAA,EAAQvB,EAAEM,MAAAA,EAAM;EAChBkB,UAAAA,EAAYxB,CAAAA,CAAEM,MAAAA,EAAM,CAAGG,QAAAA,EAAQ;EAC/BF,MAAAA,EAAQP,CAAAA,CAAEQ,MAAAA,EAAM,CAAGC,QAAAA,EAAQ;EAC3BC,IAAAA,EAAMV,CAAAA,CAAEM,MAAAA,EAAM,CAAGG,QAAAA,EAAQ;AACzBE,EAAAA,UAAAA,EAAYX,EAAEyB,MAAAA,CAAOzB,CAAAA,CAAEM,QAAM,EAAIN,CAAAA,CAAEM,QAAM;AAC7C,CAAA","file":"HICCFF2O.js","sourcesContent":["import { z } from 'zod';\n\nimport { oneSigLeafSchema } from './onesig-leaf';\nimport { oneSigBundleMetadataSchema } from './onesig-metadata';\nimport { oneSigBundleSizeOverrideSchema } from './onesig-overrides';\nimport { proposerSignatureSchema } from './onesig-proposer-signature';\nimport { signerSignatureSchema } from './onesig-signer-signature';\n\nexport const oneSigEntitySchema = z.object({\n id: z.uuid().describe('Client generated id for the batch of transactions'),\n oneSigName: z.string().describe('Canonical name of the OneSig'),\n expiry: z\n .number()\n .optional()\n .describe(\n 'unix timestamp in milliseconds, after which the OneSig transactions fail to execute',\n ),\n\n seed: z.string().optional().describe('Seed for the OneSig'),\n signatures: z\n .array(signerSignatureSchema)\n .optional()\n .describe('List of signatures of the signers'),\n leaves: z.array(oneSigLeafSchema).describe('List of leaves'),\n metadata: oneSigBundleMetadataSchema.optional().describe('Metadata for the OneSig'),\n bundlingOverride: oneSigBundleSizeOverrideSchema\n .optional()\n .describe('Override for the number of calls in a leaf'),\n proposerSignature: proposerSignatureSchema.describe(\n 'Object containing the signature of the proposer and metadata',\n ),\n});\n\nexport const oneSigProposedEntitySchema = z.object({\n status: z.string(),\n merkleRoot: z.string().optional(),\n expiry: z.number().optional(),\n seed: z.string().optional(),\n signatures: z.record(z.string(), z.string()),\n});\n\nexport type OneSigEntity = z.infer<typeof oneSigEntitySchema>;\nexport type OneSigProposedEntity = z.infer<typeof oneSigProposedEntitySchema>;\n"]}
package/dist/index.js CHANGED
@@ -1,18 +1,8 @@
1
1
  import './PNCMGEVV.js';
2
- export { oneSigConfigApiResponseSchema } from './EIDT3C6X.js';
3
- export { DeployOneSigOrchestratorStatus, ManageMemberAction, ManageMemberRole, OneSigConfigOwner, OneSigRole, listOneSigInstancesResponseSchema, manageMemberActionSchema, manageMemberRequestSchema, manageMemberRoleSchema, oneSigConfigOwnerSchema, oneSigConfigSchema, oneSigExecutorConfigSchema, oneSigInstanceConfigSchema, oneSigInstanceMembersSchema, oneSigInstanceSummarySchema, oneSigOffchainConfigSchema, oneSigOnchainConfigSchema, oneSigPartitionSchema, oneSigPerChainConfigSchema, oneSigRoleSchema, oneSigSigningConfigSchema } from './MLOBZFUZ.js';
4
- export { ONESIG_AUTH_HEADERS, ONESIG_AUTH_HEADER_NAMES } from './45W5UJ2Y.js';
5
- import './P2ZSGLQK.js';
6
- export { oneSigSessionSchema } from './5UA4EFKV.js';
7
- import './JSB7JUTG.js';
8
- export { InvalidOneSigInputError, OneSigBatchNotFoundError, OneSigEntityTooLargeError, OneSigError, OneSigInvalidProposerSignatureError, OneSigInvalidRequestSignatureError, OneSigInvalidSignerSignatureError, OneSigNotFoundError, OneSigServiceError, OneSigSessionExpiredError, oneSigServiceErrorSchema } from './XBWMHWDY.js';
9
2
  import './BBDVC77J.js';
10
3
  export { oneSigBundleSchema, oneSigBundleStatusSchema } from './MKPLFERQ.js';
11
- export { oneSigEntitySchema, oneSigProposedEntitySchema } from './3LZH6F5K.js';
12
- export { oneSigBundleSizeOverrideSchema } from './YJC3WODI.js';
13
- export { proposerSignatureSchema } from './WJMHUJYW.js';
4
+ export { oneSigEntitySchema, oneSigProposedEntitySchema } from './HICCFF2O.js';
14
5
  export { signerSignatureSchema } from './H3AGSGWO.js';
15
- export { oneSigBundleMetadataSchema } from './3FLMGPQY.js';
16
6
  export { OneSigTransactionStatus, oneSigBundleTransactionsResponseSchema, oneSigLeafSchema, oneSigTransactionSchema } from './IPGS4JOW.js';
17
7
  export { oneSigCallSchema } from './P6ZORIN2.js';
18
8
  export { AnyValueSchema, CantonAllowlistMode, CantonAllowlistModeSchema, CantonCallArgsSchema, CantonCallCallerArgsSchema, CantonCallContractArgsSchema, CantonCallFnArgsSchema, CantonCallTargetArgsSchema, CantonMicrosSchema, CantonOAppIdSchema, CantonOriginSchema, CantonPartyIdSchema, CantonRoleAssignmentSchema, CantonScopeSchema, CostAssertConfigSchema, DecimalLikeSchema, EnforcedOptionParamSchema, OneSigCantonCallTag, RateLimitConfigEntrySchema, cantonCallContextSchema, oneSigCantonCallSchema } from './DY4LX4HK.js';
@@ -21,6 +11,16 @@ export { oneSigSolanaCallSchema } from './WVUE7QAU.js';
21
11
  export { oneSigStarknetCallSchema } from './J3AM7KLS.js';
22
12
  export { oneSigStellarCallSchema } from './EA2O3IZ5.js';
23
13
  export { oneSigTONCallSchema } from './2YKLV2BS.js';
14
+ export { oneSigBundleMetadataSchema } from './3FLMGPQY.js';
15
+ export { oneSigBundleSizeOverrideSchema } from './YJC3WODI.js';
16
+ export { proposerSignatureSchema } from './WJMHUJYW.js';
17
+ import './JSB7JUTG.js';
18
+ export { InvalidOneSigInputError, OneSigBatchNotFoundError, OneSigEntityTooLargeError, OneSigError, OneSigInvalidProposerSignatureError, OneSigInvalidRequestSignatureError, OneSigInvalidSignerSignatureError, OneSigNotFoundError, OneSigServiceError, OneSigSessionExpiredError, oneSigServiceErrorSchema } from './XBWMHWDY.js';
19
+ export { oneSigConfigApiResponseSchema } from './EIDT3C6X.js';
20
+ export { DeployOneSigOrchestratorStatus, ManageMemberAction, ManageMemberRole, OneSigConfigOwner, OneSigRole, listOneSigInstancesResponseSchema, manageMemberActionSchema, manageMemberRequestSchema, manageMemberRoleSchema, oneSigConfigOwnerSchema, oneSigConfigSchema, oneSigExecutorConfigSchema, oneSigInstanceConfigSchema, oneSigInstanceMembersSchema, oneSigInstanceSummarySchema, oneSigOffchainConfigSchema, oneSigOnchainConfigSchema, oneSigPartitionSchema, oneSigPerChainConfigSchema, oneSigRoleSchema, oneSigSigningConfigSchema } from './MLOBZFUZ.js';
21
+ export { ONESIG_AUTH_HEADERS, ONESIG_AUTH_HEADER_NAMES } from './45W5UJ2Y.js';
22
+ import './P2ZSGLQK.js';
23
+ export { oneSigSessionSchema } from './5UA4EFKV.js';
24
24
  import './VUOMXK5T.js';
25
25
  //# sourceMappingURL=index.js.map
26
26
  //# sourceMappingURL=index.js.map
@@ -1,18 +1,8 @@
1
1
  import '../PNCMGEVV.js';
2
- export { oneSigConfigApiResponseSchema } from '../EIDT3C6X.js';
3
- export { DeployOneSigOrchestratorStatus, ManageMemberAction, ManageMemberRole, OneSigConfigOwner, OneSigRole, listOneSigInstancesResponseSchema, manageMemberActionSchema, manageMemberRequestSchema, manageMemberRoleSchema, oneSigConfigOwnerSchema, oneSigConfigSchema, oneSigExecutorConfigSchema, oneSigInstanceConfigSchema, oneSigInstanceMembersSchema, oneSigInstanceSummarySchema, oneSigOffchainConfigSchema, oneSigOnchainConfigSchema, oneSigPartitionSchema, oneSigPerChainConfigSchema, oneSigRoleSchema, oneSigSigningConfigSchema } from '../MLOBZFUZ.js';
4
- export { ONESIG_AUTH_HEADERS, ONESIG_AUTH_HEADER_NAMES } from '../45W5UJ2Y.js';
5
- import '../P2ZSGLQK.js';
6
- export { oneSigSessionSchema } from '../5UA4EFKV.js';
7
- import '../JSB7JUTG.js';
8
- export { InvalidOneSigInputError, OneSigBatchNotFoundError, OneSigEntityTooLargeError, OneSigError, OneSigInvalidProposerSignatureError, OneSigInvalidRequestSignatureError, OneSigInvalidSignerSignatureError, OneSigNotFoundError, OneSigServiceError, OneSigSessionExpiredError, oneSigServiceErrorSchema } from '../XBWMHWDY.js';
9
2
  import '../BBDVC77J.js';
10
3
  export { oneSigBundleSchema, oneSigBundleStatusSchema } from '../MKPLFERQ.js';
11
- export { oneSigEntitySchema, oneSigProposedEntitySchema } from '../3LZH6F5K.js';
12
- export { oneSigBundleSizeOverrideSchema } from '../YJC3WODI.js';
13
- export { proposerSignatureSchema } from '../WJMHUJYW.js';
4
+ export { oneSigEntitySchema, oneSigProposedEntitySchema } from '../HICCFF2O.js';
14
5
  export { signerSignatureSchema } from '../H3AGSGWO.js';
15
- export { oneSigBundleMetadataSchema } from '../3FLMGPQY.js';
16
6
  export { OneSigTransactionStatus, oneSigBundleTransactionsResponseSchema, oneSigLeafSchema, oneSigTransactionSchema } from '../IPGS4JOW.js';
17
7
  export { oneSigCallSchema } from '../P6ZORIN2.js';
18
8
  export { AnyValueSchema, CantonAllowlistMode, CantonAllowlistModeSchema, CantonCallArgsSchema, CantonCallCallerArgsSchema, CantonCallContractArgsSchema, CantonCallFnArgsSchema, CantonCallTargetArgsSchema, CantonMicrosSchema, CantonOAppIdSchema, CantonOriginSchema, CantonPartyIdSchema, CantonRoleAssignmentSchema, CantonScopeSchema, CostAssertConfigSchema, DecimalLikeSchema, EnforcedOptionParamSchema, OneSigCantonCallTag, RateLimitConfigEntrySchema, cantonCallContextSchema, oneSigCantonCallSchema } from '../DY4LX4HK.js';
@@ -21,6 +11,16 @@ export { oneSigSolanaCallSchema } from '../WVUE7QAU.js';
21
11
  export { oneSigStarknetCallSchema } from '../J3AM7KLS.js';
22
12
  export { oneSigStellarCallSchema } from '../EA2O3IZ5.js';
23
13
  export { oneSigTONCallSchema } from '../2YKLV2BS.js';
14
+ export { oneSigBundleMetadataSchema } from '../3FLMGPQY.js';
15
+ export { oneSigBundleSizeOverrideSchema } from '../YJC3WODI.js';
16
+ export { proposerSignatureSchema } from '../WJMHUJYW.js';
17
+ import '../JSB7JUTG.js';
18
+ export { InvalidOneSigInputError, OneSigBatchNotFoundError, OneSigEntityTooLargeError, OneSigError, OneSigInvalidProposerSignatureError, OneSigInvalidRequestSignatureError, OneSigInvalidSignerSignatureError, OneSigNotFoundError, OneSigServiceError, OneSigSessionExpiredError, oneSigServiceErrorSchema } from '../XBWMHWDY.js';
19
+ export { oneSigConfigApiResponseSchema } from '../EIDT3C6X.js';
20
+ export { DeployOneSigOrchestratorStatus, ManageMemberAction, ManageMemberRole, OneSigConfigOwner, OneSigRole, listOneSigInstancesResponseSchema, manageMemberActionSchema, manageMemberRequestSchema, manageMemberRoleSchema, oneSigConfigOwnerSchema, oneSigConfigSchema, oneSigExecutorConfigSchema, oneSigInstanceConfigSchema, oneSigInstanceMembersSchema, oneSigInstanceSummarySchema, oneSigOffchainConfigSchema, oneSigOnchainConfigSchema, oneSigPartitionSchema, oneSigPerChainConfigSchema, oneSigRoleSchema, oneSigSigningConfigSchema } from '../MLOBZFUZ.js';
21
+ export { ONESIG_AUTH_HEADERS, ONESIG_AUTH_HEADER_NAMES } from '../45W5UJ2Y.js';
22
+ import '../P2ZSGLQK.js';
23
+ export { oneSigSessionSchema } from '../5UA4EFKV.js';
24
24
  import '../VUOMXK5T.js';
25
25
  //# sourceMappingURL=index.js.map
26
26
  //# sourceMappingURL=index.js.map
@@ -1,10 +1,7 @@
1
1
  import '../../BBDVC77J.js';
2
2
  export { oneSigBundleSchema, oneSigBundleStatusSchema } from '../../MKPLFERQ.js';
3
- export { oneSigEntitySchema, oneSigProposedEntitySchema } from '../../3LZH6F5K.js';
4
- export { oneSigBundleSizeOverrideSchema } from '../../YJC3WODI.js';
5
- export { proposerSignatureSchema } from '../../WJMHUJYW.js';
3
+ export { oneSigEntitySchema, oneSigProposedEntitySchema } from '../../HICCFF2O.js';
6
4
  export { signerSignatureSchema } from '../../H3AGSGWO.js';
7
- export { oneSigBundleMetadataSchema } from '../../3FLMGPQY.js';
8
5
  export { OneSigTransactionStatus, oneSigBundleTransactionsResponseSchema, oneSigLeafSchema, oneSigTransactionSchema } from '../../IPGS4JOW.js';
9
6
  export { oneSigCallSchema } from '../../P6ZORIN2.js';
10
7
  export { AnyValueSchema, CantonAllowlistMode, CantonAllowlistModeSchema, CantonCallArgsSchema, CantonCallCallerArgsSchema, CantonCallContractArgsSchema, CantonCallFnArgsSchema, CantonCallTargetArgsSchema, CantonMicrosSchema, CantonOAppIdSchema, CantonOriginSchema, CantonPartyIdSchema, CantonRoleAssignmentSchema, CantonScopeSchema, CostAssertConfigSchema, DecimalLikeSchema, EnforcedOptionParamSchema, OneSigCantonCallTag, RateLimitConfigEntrySchema, cantonCallContextSchema, oneSigCantonCallSchema } from '../../DY4LX4HK.js';
@@ -13,6 +10,9 @@ export { oneSigSolanaCallSchema } from '../../WVUE7QAU.js';
13
10
  export { oneSigStarknetCallSchema } from '../../J3AM7KLS.js';
14
11
  export { oneSigStellarCallSchema } from '../../EA2O3IZ5.js';
15
12
  export { oneSigTONCallSchema } from '../../2YKLV2BS.js';
13
+ export { oneSigBundleMetadataSchema } from '../../3FLMGPQY.js';
14
+ export { oneSigBundleSizeOverrideSchema } from '../../YJC3WODI.js';
15
+ export { proposerSignatureSchema } from '../../WJMHUJYW.js';
16
16
  import '../../VUOMXK5T.js';
17
17
  //# sourceMappingURL=index.js.map
18
18
  //# sourceMappingURL=index.js.map
@@ -1,8 +1,5 @@
1
- export { oneSigEntitySchema, oneSigProposedEntitySchema } from '../../3LZH6F5K.js';
2
- import '../../YJC3WODI.js';
3
- import '../../WJMHUJYW.js';
1
+ export { oneSigEntitySchema, oneSigProposedEntitySchema } from '../../HICCFF2O.js';
4
2
  import '../../H3AGSGWO.js';
5
- import '../../3FLMGPQY.js';
6
3
  import '../../IPGS4JOW.js';
7
4
  import '../../P6ZORIN2.js';
8
5
  import '../../DY4LX4HK.js';
@@ -11,6 +8,9 @@ import '../../WVUE7QAU.js';
11
8
  import '../../J3AM7KLS.js';
12
9
  import '../../EA2O3IZ5.js';
13
10
  import '../../2YKLV2BS.js';
11
+ import '../../3FLMGPQY.js';
12
+ import '../../YJC3WODI.js';
13
+ import '../../WJMHUJYW.js';
14
14
  import '../../VUOMXK5T.js';
15
15
  //# sourceMappingURL=onesig-entity.js.map
16
16
  //# sourceMappingURL=onesig-entity.js.map
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@layerzerolabs/onesig-model",
3
- "version": "1.2.42",
3
+ "version": "1.2.44",
4
4
  "private": false,
5
5
  "license": "MIT",
6
6
  "type": "module",
@@ -18,8 +18,8 @@
18
18
  "devDependencies": {
19
19
  "tsup": "^8.4.0",
20
20
  "vitest": "^4.1.10",
21
- "@layerzerolabs/tsup-configuration": "1.2.42",
22
- "@layerzerolabs/typescript-configuration": "1.2.42"
21
+ "@layerzerolabs/tsup-configuration": "1.2.44",
22
+ "@layerzerolabs/typescript-configuration": "1.2.44"
23
23
  },
24
24
  "publishConfig": {
25
25
  "access": "public",