@layerzerolabs/dw-model 0.2.89 → 0.2.91

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.
Files changed (65) hide show
  1. package/package.json +16 -12
  2. package/dist/3QBHS4UZ.cjs +0 -4
  3. package/dist/3QBHS4UZ.cjs.map +0 -1
  4. package/dist/5AQDLSY6.cjs +0 -162
  5. package/dist/5AQDLSY6.cjs.map +0 -1
  6. package/dist/6RK5YROL.cjs +0 -118
  7. package/dist/6RK5YROL.cjs.map +0 -1
  8. package/dist/DE7P6XTU.cjs +0 -35
  9. package/dist/DE7P6XTU.cjs.map +0 -1
  10. package/dist/EEJRAWJM.cjs +0 -4
  11. package/dist/EEJRAWJM.cjs.map +0 -1
  12. package/dist/HH5WI3G5.cjs +0 -117
  13. package/dist/HH5WI3G5.cjs.map +0 -1
  14. package/dist/IN5O3BJZ.cjs +0 -4
  15. package/dist/IN5O3BJZ.cjs.map +0 -1
  16. package/dist/IRNX7PJI.cjs +0 -58
  17. package/dist/IRNX7PJI.cjs.map +0 -1
  18. package/dist/JZZWB7DM.cjs +0 -85
  19. package/dist/JZZWB7DM.cjs.map +0 -1
  20. package/dist/KUGCZOFR.cjs +0 -54
  21. package/dist/KUGCZOFR.cjs.map +0 -1
  22. package/dist/MR335VWI.cjs +0 -29
  23. package/dist/MR335VWI.cjs.map +0 -1
  24. package/dist/NCHH4VK3.cjs +0 -4
  25. package/dist/NCHH4VK3.cjs.map +0 -1
  26. package/dist/OFA25YOX.cjs +0 -78
  27. package/dist/OFA25YOX.cjs.map +0 -1
  28. package/dist/ONIG6I4S.cjs +0 -23
  29. package/dist/ONIG6I4S.cjs.map +0 -1
  30. package/dist/X7GZKVDG.cjs +0 -13
  31. package/dist/X7GZKVDG.cjs.map +0 -1
  32. package/dist/YJF4D23A.cjs +0 -8
  33. package/dist/YJF4D23A.cjs.map +0 -1
  34. package/dist/deploy/artifact.cjs +0 -49
  35. package/dist/deploy/artifact.cjs.map +0 -1
  36. package/dist/deploy/factoryInterfaces.cjs +0 -34
  37. package/dist/deploy/factoryInterfaces.cjs.map +0 -1
  38. package/dist/deploy/index.cjs +0 -156
  39. package/dist/deploy/index.cjs.map +0 -1
  40. package/dist/deploy/resourceBuilder.cjs +0 -13
  41. package/dist/deploy/resourceBuilder.cjs.map +0 -1
  42. package/dist/deploy/resources.cjs +0 -71
  43. package/dist/deploy/resources.cjs.map +0 -1
  44. package/dist/deploy/workflow.cjs +0 -21
  45. package/dist/deploy/workflow.cjs.map +0 -1
  46. package/dist/index.cjs +0 -335
  47. package/dist/index.cjs.map +0 -1
  48. package/dist/role-management/generator.cjs +0 -21
  49. package/dist/role-management/generator.cjs.map +0 -1
  50. package/dist/role-management/index.cjs +0 -88
  51. package/dist/role-management/index.cjs.map +0 -1
  52. package/dist/role-management/schemata.cjs +0 -69
  53. package/dist/role-management/schemata.cjs.map +0 -1
  54. package/dist/role-management/types.cjs +0 -13
  55. package/dist/role-management/types.cjs.map +0 -1
  56. package/dist/upgrade/index.cjs +0 -82
  57. package/dist/upgrade/index.cjs.map +0 -1
  58. package/dist/upgrade/types.cjs +0 -81
  59. package/dist/upgrade/types.cjs.map +0 -1
  60. package/dist/wire/index.cjs +0 -35
  61. package/dist/wire/index.cjs.map +0 -1
  62. package/dist/wire/planner.cjs +0 -13
  63. package/dist/wire/planner.cjs.map +0 -1
  64. package/dist/wire/schemata.cjs +0 -29
  65. package/dist/wire/schemata.cjs.map +0 -1
package/dist/IRNX7PJI.cjs DELETED
@@ -1,58 +0,0 @@
1
- 'use strict';
2
-
3
- var YJF4D23A_cjs = require('./YJF4D23A.cjs');
4
- var z = require('zod');
5
- var layerzeroDefinitions = require('@layerzerolabs/layerzero-definitions');
6
- var zodUtils = require('@layerzerolabs/zod-utils');
7
-
8
- function _interopDefault (e) { return e && e.__esModule ? e : { default: e }; }
9
-
10
- var z__default = /*#__PURE__*/_interopDefault(z);
11
-
12
- var commonArgsSchema = z__default.default.object({
13
- callerWorkflowId: z__default.default.string(),
14
- callerRunId: z__default.default.string(),
15
- planId: z__default.default.string(),
16
- batchSize: z__default.default.number(),
17
- chainNames: z__default.default.array(layerzeroDefinitions.chainNameSchema),
18
- // filters
19
- onlyFrom: z__default.default.array(layerzeroDefinitions.chainNameSchema).optional(),
20
- onlyTo: z__default.default.array(layerzeroDefinitions.chainNameSchema).optional(),
21
- excludeFrom: z__default.default.array(layerzeroDefinitions.chainNameSchema).optional(),
22
- excludeTo: z__default.default.array(layerzeroDefinitions.chainNameSchema).optional(),
23
- onlyOperations: z__default.default.array(z__default.default.string()).optional(),
24
- excludeOperations: z__default.default.array(z__default.default.string()).optional(),
25
- allowSelfWiring: z__default.default.boolean().optional(),
26
- // TODO make this a preference list
27
- senderEntityName: z__default.default.string(),
28
- forceSend: z__default.default.boolean().optional()
29
- });
30
- var createWiringPlannerActivityFactorySchema = /* @__PURE__ */ YJF4D23A_cjs.__name((customArgs) => {
31
- return z__default.default.object({
32
- createPlan: zodUtils.functionSchema({
33
- input: z__default.default.tuple([
34
- customArgs,
35
- commonArgsSchema
36
- ]),
37
- output: z__default.default.promise(z__default.default.void())
38
- }),
39
- enactPlan: zodUtils.functionSchema({
40
- input: z__default.default.tuple([
41
- customArgs,
42
- commonArgsSchema
43
- ]),
44
- output: z__default.default.promise(z__default.default.void())
45
- }),
46
- assertPlan: zodUtils.functionSchema({
47
- input: z__default.default.tuple([
48
- customArgs,
49
- commonArgsSchema
50
- ]),
51
- output: z__default.default.promise(z__default.default.void())
52
- })
53
- });
54
- }, "createWiringPlannerActivityFactorySchema");
55
-
56
- exports.createWiringPlannerActivityFactorySchema = createWiringPlannerActivityFactorySchema;
57
- //# sourceMappingURL=IRNX7PJI.cjs.map
58
- //# sourceMappingURL=IRNX7PJI.cjs.map
@@ -1 +0,0 @@
1
- {"version":3,"sources":["../src/wire/planner.ts"],"names":["commonArgsSchema","z","object","callerWorkflowId","string","callerRunId","planId","batchSize","number","chainNames","array","chainNameSchema","onlyFrom","optional","onlyTo","excludeFrom","excludeTo","onlyOperations","excludeOperations","allowSelfWiring","boolean","senderEntityName","forceSend","createWiringPlannerActivityFactorySchema","customArgs","createPlan","functionSchema","input","tuple","output","promise","void","enactPlan","assertPlan"],"mappings":";;;;;;;;;;;AAKA,IAAMA,gBAAAA,GAAmBC,mBAAEC,MAAAA,CAAO;AAC9BC,EAAAA,gBAAAA,EAAkBF,mBAAEG,MAAAA,EAAM;AAC1BC,EAAAA,WAAAA,EAAaJ,mBAAEG,MAAAA,EAAM;AACrBE,EAAAA,MAAAA,EAAQL,mBAAEG,MAAAA,EAAM;AAChBG,EAAAA,SAAAA,EAAWN,mBAAEO,MAAAA,EAAM;EACnBC,UAAAA,EAAYR,kBAAAA,CAAES,MAAMC,oCAAAA,CAAAA;;AAEpBC,EAAAA,QAAAA,EAAUX,kBAAAA,CAAES,KAAAA,CAAMC,oCAAAA,CAAAA,CAAiBE,QAAAA,EAAQ;AAC3CC,EAAAA,MAAAA,EAAQb,kBAAAA,CAAES,KAAAA,CAAMC,oCAAAA,CAAAA,CAAiBE,QAAAA,EAAQ;AACzCE,EAAAA,WAAAA,EAAad,kBAAAA,CAAES,KAAAA,CAAMC,oCAAAA,CAAAA,CAAiBE,QAAAA,EAAQ;AAC9CG,EAAAA,SAAAA,EAAWf,kBAAAA,CAAES,KAAAA,CAAMC,oCAAAA,CAAAA,CAAiBE,QAAAA,EAAQ;AAC5CI,EAAAA,cAAAA,EAAgBhB,mBAAES,KAAAA,CAAMT,kBAAAA,CAAEG,MAAAA,EAAM,EAAIS,QAAAA,EAAQ;AAC5CK,EAAAA,iBAAAA,EAAmBjB,mBAAES,KAAAA,CAAMT,kBAAAA,CAAEG,MAAAA,EAAM,EAAIS,QAAAA,EAAQ;EAC/CM,eAAAA,EAAiBlB,kBAAAA,CAAEmB,OAAAA,EAAO,CAAGP,QAAAA,EAAQ;;AAErCQ,EAAAA,gBAAAA,EAAkBpB,mBAAEG,MAAAA,EAAM;EAC1BkB,SAAAA,EAAWrB,kBAAAA,CAAEmB,OAAAA,EAAO,CAAGP,QAAAA;AAC3B,CAAA,CAAA;AAUO,IAAMU,wCAAAA,wCACTC,UAAAA,KAAAA;AAEA,EAAA,OAAOvB,mBAAEC,MAAAA,CAAO;AACZuB,IAAAA,UAAAA,EAAYC,uBAAAA,CAAe;AACvBC,MAAAA,KAAAA,EAAO1B,mBAAE2B,KAAAA,CAAM;AAACJ,QAAAA,UAAAA;AAAYxB,QAAAA;AAAiB,OAAA,CAAA;AAC7C6B,MAAAA,MAAAA,EAAQ5B,kBAAAA,CAAE6B,OAAAA,CAAQ7B,kBAAAA,CAAE8B,IAAAA,EAAI;KAC5B,CAAA;AACAC,IAAAA,SAAAA,EAAWN,uBAAAA,CAAe;AACtBC,MAAAA,KAAAA,EAAO1B,mBAAE2B,KAAAA,CAAM;AAACJ,QAAAA,UAAAA;AAAYxB,QAAAA;AAAiB,OAAA,CAAA;AAC7C6B,MAAAA,MAAAA,EAAQ5B,kBAAAA,CAAE6B,OAAAA,CAAQ7B,kBAAAA,CAAE8B,IAAAA,EAAI;KAC5B,CAAA;AACAE,IAAAA,UAAAA,EAAYP,uBAAAA,CAAe;AACvBC,MAAAA,KAAAA,EAAO1B,mBAAE2B,KAAAA,CAAM;AAACJ,QAAAA,UAAAA;AAAYxB,QAAAA;AAAiB,OAAA,CAAA;AAC7C6B,MAAAA,MAAAA,EAAQ5B,kBAAAA,CAAE6B,OAAAA,CAAQ7B,kBAAAA,CAAE8B,IAAAA,EAAI;KAC5B;GACJ,CAAA;AACJ,CAAA,EAjBwD,0CAAA","file":"IRNX7PJI.cjs","sourcesContent":["import z from 'zod';\n\nimport { chainNameSchema } from '@layerzerolabs/layerzero-definitions';\nimport { functionSchema } from '@layerzerolabs/zod-utils';\n\nconst commonArgsSchema = z.object({\n callerWorkflowId: z.string(),\n callerRunId: z.string(),\n planId: z.string(),\n batchSize: z.number(),\n chainNames: z.array(chainNameSchema),\n // filters\n onlyFrom: z.array(chainNameSchema).optional(),\n onlyTo: z.array(chainNameSchema).optional(),\n excludeFrom: z.array(chainNameSchema).optional(),\n excludeTo: z.array(chainNameSchema).optional(),\n onlyOperations: z.array(z.string()).optional(),\n excludeOperations: z.array(z.string()).optional(),\n allowSelfWiring: z.boolean().optional(),\n // TODO make this a preference list\n senderEntityName: z.string(),\n forceSend: z.boolean().optional(),\n});\n\nexport type CommonArgs = z.infer<typeof commonArgsSchema>;\n\nexport interface WiringPlannerActivityFactoryImpl<T> {\n createPlan: (customArgs: T, commonArgs: CommonArgs) => Promise<void>;\n enactPlan: (customArgs: T, commonArgs: CommonArgs) => Promise<void>;\n assertPlan: (customArgs: T, commonArgs: CommonArgs) => Promise<void>;\n}\n\nexport const createWiringPlannerActivityFactorySchema = <T extends z.ZodType>(\n customArgs: T,\n): z.ZodType<WiringPlannerActivityFactoryImpl<z.infer<T>>> => {\n return z.object({\n createPlan: functionSchema({\n input: z.tuple([customArgs, commonArgsSchema]),\n output: z.promise(z.void()),\n }),\n enactPlan: functionSchema({\n input: z.tuple([customArgs, commonArgsSchema]),\n output: z.promise(z.void()),\n }),\n assertPlan: functionSchema({\n input: z.tuple([customArgs, commonArgsSchema]),\n output: z.promise(z.void()),\n }),\n });\n};\n"]}
package/dist/JZZWB7DM.cjs DELETED
@@ -1,85 +0,0 @@
1
- 'use strict';
2
-
3
- var HH5WI3G5_cjs = require('./HH5WI3G5.cjs');
4
- var YJF4D23A_cjs = require('./YJF4D23A.cjs');
5
- var z = require('zod');
6
- var commonChainModel = require('@layerzerolabs/common-chain-model');
7
- var commonErrorUtils = require('@layerzerolabs/common-error-utils');
8
- var layerzeroDefinitions = require('@layerzerolabs/layerzero-definitions');
9
-
10
- function _interopDefault (e) { return e && e.__esModule ? e : { default: e }; }
11
-
12
- var z__default = /*#__PURE__*/_interopDefault(z);
13
-
14
- var baseResourceSchema = z__default.default.object({
15
- id: z__default.default.string(),
16
- resourceBaseType: z__default.default.string()
17
- });
18
- var baseMeshResourceSchema = z__default.default.object({
19
- ...baseResourceSchema.shape,
20
- resourceBaseType: z__default.default.literal("MESH")
21
- });
22
- var baseContractResourceSchema = z__default.default.object({
23
- ...baseResourceSchema.shape,
24
- resourceBaseType: z__default.default.literal("CONTRACT"),
25
- chainName: layerzeroDefinitions.chainNameSchema,
26
- upgradeConfig: HH5WI3G5_cjs.upgradeableConfigSchema.optional(),
27
- verifyContract: z__default.default.boolean().optional(),
28
- chainConfig: z__default.default.any().optional()
29
- });
30
- var withIntrinsicAddress = /* @__PURE__ */ YJF4D23A_cjs.__name((resourceSchema) => z__default.default.object({
31
- ...resourceSchema.shape,
32
- _INTRINSIC_normalizedAddress: commonChainModel.normalizedHexSchema
33
- }), "withIntrinsicAddress");
34
- var extractIdFromContractResourceReference = /* @__PURE__ */ YJF4D23A_cjs.__name((ref) => ref.startsWith("#C_REF:") && ref.slice("#C_REF:".length) || commonErrorUtils.throwError(`Ref ${JSON.stringify(ref)} is not a contract resource ref`), "extractIdFromContractResourceReference");
35
- var contractResourceReferenceSchema = z__default.default.string().meta({
36
- id: "contract-resource-dependency",
37
- title: "Contract dependency to any",
38
- description: "A reference to another contract resource (any)"
39
- });
40
- var contractResourceDependencyForSchemaZodMetaIdIdx = 0;
41
- var contractResourceReferenceSchemaFor = /* @__PURE__ */ YJF4D23A_cjs.__name((_resource) => z__default.default.string().meta({
42
- id: `contract-resource-dependency-for-${++contractResourceDependencyForSchemaZodMetaIdIdx}`,
43
- // We can't generate this properly yet because this function needs more information
44
- // Will be fixed when we clean up the runtime dependency ID resolution
45
- title: "Contract dependency to (unknown)",
46
- description: "A reference to another contract resource (unknown)"
47
- }), "contractResourceReferenceSchemaFor");
48
- var resolvedContractResourceReferenceSchema = (
49
- // TODO: replace with a concrete zod schema
50
- z__default.default.custom()
51
- );
52
- var meshResourceReferenceSchema = z__default.default.string().meta({
53
- id: "mesh-resource-dependency",
54
- title: "Mesh dependency to any",
55
- description: "A reference to another mesh resource (any)"
56
- });
57
- var meshResourceDependencyForSchemaZodMetaIdIdx = 0;
58
- var meshResourceReferenceSchemaFor = /* @__PURE__ */ YJF4D23A_cjs.__name((_resource) => z__default.default.string().meta({
59
- id: `mesh-resource-dependency-for-${++meshResourceDependencyForSchemaZodMetaIdIdx}`,
60
- title: "Mesh dependency to (unknown)",
61
- description: "A reference to another mesh resource (unknown)"
62
- }), "meshResourceReferenceSchemaFor");
63
- var extractIdFromMeshResourceReference = /* @__PURE__ */ YJF4D23A_cjs.__name((ref) => ref.startsWith("#M_REF:") && ref.slice("#M_REF:".length) || commonErrorUtils.throwError(`Ref ${JSON.stringify(ref)} is not a mesh resource ref`), "extractIdFromMeshResourceReference");
64
- var resolvedMeshResourceReferenceSchema = z__default.default.custom();
65
- var extractContractResourceReferences = /* @__PURE__ */ YJF4D23A_cjs.__name((resource) => Object.entries(resource).filter(([, id]) => typeof id === "string" && id.startsWith("#C_REF:")), "extractContractResourceReferences");
66
- var extractMeshResourceReferences = /* @__PURE__ */ YJF4D23A_cjs.__name((resource) => Object.entries(resource).filter(([, id]) => typeof id === "string" && id.startsWith("#M_REF:")), "extractMeshResourceReferences");
67
- var createResolvedResourceSchema = /* @__PURE__ */ YJF4D23A_cjs.__name((resource) => resource, "createResolvedResourceSchema");
68
-
69
- exports.baseContractResourceSchema = baseContractResourceSchema;
70
- exports.baseMeshResourceSchema = baseMeshResourceSchema;
71
- exports.baseResourceSchema = baseResourceSchema;
72
- exports.contractResourceReferenceSchema = contractResourceReferenceSchema;
73
- exports.contractResourceReferenceSchemaFor = contractResourceReferenceSchemaFor;
74
- exports.createResolvedResourceSchema = createResolvedResourceSchema;
75
- exports.extractContractResourceReferences = extractContractResourceReferences;
76
- exports.extractIdFromContractResourceReference = extractIdFromContractResourceReference;
77
- exports.extractIdFromMeshResourceReference = extractIdFromMeshResourceReference;
78
- exports.extractMeshResourceReferences = extractMeshResourceReferences;
79
- exports.meshResourceReferenceSchema = meshResourceReferenceSchema;
80
- exports.meshResourceReferenceSchemaFor = meshResourceReferenceSchemaFor;
81
- exports.resolvedContractResourceReferenceSchema = resolvedContractResourceReferenceSchema;
82
- exports.resolvedMeshResourceReferenceSchema = resolvedMeshResourceReferenceSchema;
83
- exports.withIntrinsicAddress = withIntrinsicAddress;
84
- //# sourceMappingURL=JZZWB7DM.cjs.map
85
- //# sourceMappingURL=JZZWB7DM.cjs.map
@@ -1 +0,0 @@
1
- {"version":3,"sources":["../src/deploy/resources.ts"],"names":["baseResourceSchema","z","object","id","string","resourceBaseType","baseMeshResourceSchema","shape","literal","baseContractResourceSchema","chainName","chainNameSchema","upgradeConfig","upgradeableConfigSchema","optional","verifyContract","boolean","chainConfig","any","withIntrinsicAddress","__name","resourceSchema","_INTRINSIC_normalizedAddress","normalizedHexSchema","extractIdFromContractResourceReference","ref","startsWith","slice","length","throwError","JSON","stringify","contractResourceReferenceSchema","meta","title","description","contractResourceDependencyForSchemaZodMetaIdIdx","contractResourceReferenceSchemaFor","_resource","resolvedContractResourceReferenceSchema","custom","meshResourceReferenceSchema","meshResourceDependencyForSchemaZodMetaIdIdx","meshResourceReferenceSchemaFor","extractIdFromMeshResourceReference","resolvedMeshResourceReferenceSchema","extractContractResourceReferences","resource","Object","entries","filter","extractMeshResourceReferences","createResolvedResourceSchema"],"mappings":"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","file":"JZZWB7DM.cjs","sourcesContent":["import z from 'zod';\n\nimport { normalizedHexSchema, type NormalizedHexString } from '@layerzerolabs/common-chain-model';\nimport { throwError } from '@layerzerolabs/common-error-utils';\nimport { chainNameSchema } from '@layerzerolabs/layerzero-definitions';\nimport type { IsAny } from '@layerzerolabs/typescript-utils';\n\nimport { upgradeableConfigSchema } from '../upgrade';\n\nexport const baseResourceSchema = z.object({\n id: z.string(), // account-unique ID for this resource\n resourceBaseType: z.string() as z.ZodString | z.ZodLiteral,\n});\n\nexport const baseMeshResourceSchema = z.object({\n ...baseResourceSchema.shape,\n resourceBaseType: z.literal('MESH'),\n});\n\nexport const baseContractResourceSchema = z.object({\n ...baseResourceSchema.shape,\n resourceBaseType: z.literal('CONTRACT'),\n chainName: chainNameSchema,\n upgradeConfig: upgradeableConfigSchema.optional(),\n verifyContract: z.boolean().optional(),\n\n chainConfig: z.any().optional(),\n});\n\nexport const withIntrinsicAddress = <T extends typeof baseContractResourceSchema>(\n resourceSchema: T,\n) =>\n z.object({\n ...resourceSchema.shape,\n _INTRINSIC_normalizedAddress: normalizedHexSchema,\n }) as z.ZodObject<\n T['shape'] & { _INTRINSIC_normalizedAddress: typeof normalizedHexSchema },\n z.core.$strip\n >;\n\nexport type BaseResource = z.infer<typeof baseResourceSchema>;\nexport type BaseMeshResource = z.infer<typeof baseMeshResourceSchema>;\nexport type BaseContractResource = z.infer<typeof baseContractResourceSchema>;\nexport type BaseIntrinsicAddressContractResource = z.infer<ReturnType<typeof withIntrinsicAddress>>;\n\n// The actual expected runtime value for this type is #C_REF:${id}\nexport type ContractResourceReference<T extends BaseContractResource = BaseContractResource> = {\n /** WARNING: these fields are not present at runtime */\n __resourceReferenceType: T;\n ['__CONTRACT_RESOURCE_REFERENCE']: true;\n};\n\nexport const extractIdFromContractResourceReference = (ref: ContractResourceReference) =>\n ((ref as unknown as string).startsWith('#C_REF:') &&\n (ref as unknown as string).slice('#C_REF:'.length)) ||\n throwError(`Ref ${JSON.stringify(ref)} is not a contract resource ref`);\n\n// Use z.ZodType<BaseContractResource> because we want to allow unions\nexport type ContractResourceReferenceSchema<T extends z.ZodType<BaseContractResource>> = z.ZodType<\n ContractResourceReference<z.infer<T>>\n>;\n\nexport const contractResourceReferenceSchema: ContractResourceReferenceSchema<\n z.ZodType<BaseContractResource>\n // At runtime, we expect a string\n> = z.string().meta({\n id: 'contract-resource-dependency',\n title: 'Contract dependency to any',\n description: 'A reference to another contract resource (any)',\n}) as unknown as z.ZodType<ContractResourceReference>;\n\nlet contractResourceDependencyForSchemaZodMetaIdIdx = 0;\nexport const contractResourceReferenceSchemaFor = <T extends z.ZodType<BaseContractResource>>(\n // TODO: use resource parameter to generate a concrete schema\n _resource: T,\n): ContractResourceReferenceSchema<T> =>\n z.string().meta({\n id: `contract-resource-dependency-for-${++contractResourceDependencyForSchemaZodMetaIdIdx}`,\n // We can't generate this properly yet because this function needs more information\n // Will be fixed when we clean up the runtime dependency ID resolution\n title: 'Contract dependency to (unknown)',\n description: 'A reference to another contract resource (unknown)',\n }) as unknown as z.ZodType<ContractResourceReference<z.infer<T>>>;\n\nexport type ResolvedContractResourceReference<T extends BaseContractResource> = {\n id: string;\n resource: T;\n address: NormalizedHexString;\n};\n\nexport type ResolvedContractResourceReferenceSchema<T extends z.ZodType<BaseContractResource>> =\n z.ZodType<ResolvedContractResourceReference<z.infer<T>>>;\n\nexport const resolvedContractResourceReferenceSchema: ResolvedContractResourceReferenceSchema<any> =\n // TODO: replace with a concrete zod schema\n z.custom<ResolvedContractResourceReference<any>>();\n\n// The actual expected runtime value for this type is #M_REF:${id}\nexport type MeshResourceReference<T extends BaseMeshResource = BaseMeshResource> = {\n /** WARNING: these fields are not present at runtime */\n __resourceReferenceType: T;\n ['__MESH_RESOURCE_REFERENCE']: true;\n};\n\nexport type MeshResourceReferenceSchema<T extends typeof baseMeshResourceSchema> = z.ZodType<\n MeshResourceReference<z.infer<T>>\n>;\n\nexport const meshResourceReferenceSchema: MeshResourceReferenceSchema<\n typeof baseMeshResourceSchema\n> = z.string().meta({\n id: 'mesh-resource-dependency',\n title: 'Mesh dependency to any',\n description: 'A reference to another mesh resource (any)',\n}) as unknown as z.ZodType<MeshResourceReference>;\n\nlet meshResourceDependencyForSchemaZodMetaIdIdx = 0;\nexport const meshResourceReferenceSchemaFor = <T extends typeof baseMeshResourceSchema>(\n // TODO: use resource parameter to generate a concrete schema\n _resource: T,\n): MeshResourceReferenceSchema<T> =>\n z.string().meta({\n id: `mesh-resource-dependency-for-${++meshResourceDependencyForSchemaZodMetaIdIdx}`,\n title: 'Mesh dependency to (unknown)',\n description: 'A reference to another mesh resource (unknown)',\n }) as unknown as z.ZodType<MeshResourceReference<z.infer<T>>>;\n\nexport type ResolvedMeshResourceReference<T extends BaseMeshResource> = {\n id: string;\n resource: T;\n // TODO: is there any other resolved information we want to inject here?\n};\n\nexport const extractIdFromMeshResourceReference = (ref: MeshResourceReference) =>\n ((ref as unknown as string).startsWith('#M_REF:') &&\n (ref as unknown as string).slice('#M_REF:'.length)) ||\n throwError(`Ref ${JSON.stringify(ref)} is not a mesh resource ref`);\n\nexport type ResolvedMeshResourceReferenceSchema<T extends typeof baseMeshResourceSchema> =\n // TODO: replace with a concrete zod schema\n z.ZodType<ResolvedMeshResourceReference<z.infer<T>>>;\n\nexport const resolvedMeshResourceReferenceSchema: ResolvedMeshResourceReferenceSchema<any> =\n z.custom<ResolvedMeshResourceReference<any>>();\n\nexport type ResolvedResourceSchema<Resource extends typeof baseResourceSchema> = z.ZodObject<\n {\n [K in Exclude<\n keyof Resource['shape'],\n '_INTRINSIC_normalizedAddress'\n >]: Resource['shape'][K] extends infer R extends z.ZodType\n ? R extends z.ZodAny\n ? R\n : R extends z.ZodOptional<z.ZodAny>\n ? R\n : R extends ContractResourceReferenceSchema<infer I>\n ? ResolvedContractResourceReferenceSchema<I>\n : R extends z.ZodOptional<ContractResourceReferenceSchema<infer I>>\n ? z.ZodOptional<ResolvedContractResourceReferenceSchema<I>>\n : R extends MeshResourceReferenceSchema<infer I>\n ? ResolvedMeshResourceReferenceSchema<I>\n : R extends z.ZodOptional<MeshResourceReferenceSchema<infer I>>\n ? z.ZodOptional<ResolvedMeshResourceReferenceSchema<I>>\n : R\n : never;\n },\n z.core.$strip\n>;\n\nexport type ResolvedResource<Resource extends BaseResource> = {\n [K in Exclude<keyof Resource, '_INTRINSIC_normalizedAddress'>]: Resource[K] extends infer R\n ? R extends undefined\n ? R\n : IsAny<R> extends true\n ? R\n : IsAny<Exclude<R, undefined>> extends true\n ? R\n : R extends ContractResourceReference<infer I>\n ? ResolvedContractResourceReference<I>\n : R extends ContractResourceReference<infer I> | undefined\n ? ResolvedContractResourceReference<I> | undefined\n : R extends MeshResourceReference<infer I>\n ? ResolvedMeshResourceReference<I>\n : R extends MeshResourceReference<infer I> | undefined\n ? ResolvedMeshResourceReference<I> | undefined\n : R\n : never;\n};\n\nexport const extractContractResourceReferences = <Resource extends BaseResource>(\n resource: Resource,\n) =>\n Object.entries(resource).filter(\n ([, id]) => typeof id === 'string' && id.startsWith('#C_REF:'),\n ) as unknown as [prop: string, id: ContractResourceReference][];\n\nexport const extractMeshResourceReferences = <Resource extends BaseResource>(resource: Resource) =>\n Object.entries(resource).filter(\n ([, id]) => typeof id === 'string' && id.startsWith('#M_REF:'),\n ) as unknown as [prop: string, id: MeshResourceReference][];\n\n// TODO: implement runtime resolution — currently returns input schema as-is\nexport const createResolvedResourceSchema = <Resource extends typeof baseResourceSchema>(\n resource: Resource,\n) => resource as ResolvedResourceSchema<Resource>;\n"]}
package/dist/KUGCZOFR.cjs DELETED
@@ -1,54 +0,0 @@
1
- 'use strict';
2
-
3
- var zod = require('zod');
4
- var layerzeroDefinitions = require('@layerzerolabs/layerzero-definitions');
5
-
6
- // src/wire/schemata.ts
7
- var wireWorkflowFilterArgsSchema = {
8
- // chain filters
9
- onlyFrom: zod.z.array(layerzeroDefinitions.chainNameSchema).optional().describe("Only wire pathways originating FROM these chains"),
10
- onlyTo: zod.z.array(layerzeroDefinitions.chainNameSchema).optional().describe("Only wire pathways going TO these chains"),
11
- excludeFrom: zod.z.array(layerzeroDefinitions.chainNameSchema).optional().describe("Exclude wiring pathways originating FROM these chains"),
12
- excludeTo: zod.z.array(layerzeroDefinitions.chainNameSchema).optional().describe("Exclude wiring pathways going TO these chains"),
13
- // operation filters
14
- onlyOperations: zod.z.array(zod.z.string()).optional().describe("Only perform these operations"),
15
- excludeOperations: zod.z.array(zod.z.string()).optional().describe("Exclude these operations")
16
- };
17
- var wireWorkflowChainResultSchema = zod.z.object({
18
- results: zod.z.array(zod.z.union([
19
- zod.z.object({
20
- name: zod.z.string(),
21
- success: zod.z.literal(false),
22
- error: zod.z.string()
23
- }),
24
- zod.z.object({
25
- name: zod.z.string(),
26
- success: zod.z.literal(true),
27
- txHash: zod.z.string()
28
- })
29
- ]))
30
- });
31
- var wireWorkflowChainStateSchema = wireWorkflowChainResultSchema.extend({
32
- srcChain: layerzeroDefinitions.chainNameSchema.optional(),
33
- status: zod.z.union([
34
- zod.z.literal("RUNNING"),
35
- zod.z.literal("COMPLETE")
36
- ]).default("RUNNING")
37
- });
38
- var wireWorkflowOrchestratorResultSchema = zod.z.object({
39
- stateByChain: zod.z.partialRecord(layerzeroDefinitions.chainNameSchema, wireWorkflowChainResultSchema).default({})
40
- });
41
- var wireWorkflowOrchestratorStateSchema = wireWorkflowOrchestratorResultSchema.extend({
42
- status: zod.z.union([
43
- zod.z.literal("RUNNING"),
44
- zod.z.literal("COMPLETE")
45
- ]).default("RUNNING")
46
- });
47
-
48
- exports.wireWorkflowChainResultSchema = wireWorkflowChainResultSchema;
49
- exports.wireWorkflowChainStateSchema = wireWorkflowChainStateSchema;
50
- exports.wireWorkflowFilterArgsSchema = wireWorkflowFilterArgsSchema;
51
- exports.wireWorkflowOrchestratorResultSchema = wireWorkflowOrchestratorResultSchema;
52
- exports.wireWorkflowOrchestratorStateSchema = wireWorkflowOrchestratorStateSchema;
53
- //# sourceMappingURL=KUGCZOFR.cjs.map
54
- //# sourceMappingURL=KUGCZOFR.cjs.map
@@ -1 +0,0 @@
1
- {"version":3,"sources":["../src/wire/schemata.ts"],"names":["wireWorkflowFilterArgsSchema","onlyFrom","z","array","chainNameSchema","optional","describe","onlyTo","excludeFrom","excludeTo","onlyOperations","string","excludeOperations","wireWorkflowChainResultSchema","object","results","union","name","success","literal","error","txHash","wireWorkflowChainStateSchema","extend","srcChain","status","default","wireWorkflowOrchestratorResultSchema","stateByChain","partialRecord","wireWorkflowOrchestratorStateSchema"],"mappings":";;;;;;AAIO,IAAMA,4BAAAA,GAA+B;;AAExCC,EAAAA,QAAAA,EAAUC,MACLC,KAAAA,CAAMC,oCAAAA,EACNC,QAAAA,EAAQ,CACRC,SAAS,kDAAA,CAAA;AACdC,EAAAA,MAAAA,EAAQL,MACHC,KAAAA,CAAMC,oCAAAA,EACNC,QAAAA,EAAQ,CACRC,SAAS,0CAAA,CAAA;AACdE,EAAAA,WAAAA,EAAaN,MACRC,KAAAA,CAAMC,oCAAAA,EACNC,QAAAA,EAAQ,CACRC,SAAS,uDAAA,CAAA;AACdG,EAAAA,SAAAA,EAAWP,MACNC,KAAAA,CAAMC,oCAAAA,EACNC,QAAAA,EAAQ,CACRC,SAAS,+CAAA,CAAA;;EAGdI,cAAAA,EAAgBR,KAAAA,CAAEC,MAAMD,KAAAA,CAAES,MAAAA,EAAM,CAAA,CAAIN,QAAAA,EAAQ,CAAGC,QAAAA,CAAS,+BAAA,CAAA;EACxDM,iBAAAA,EAAmBV,KAAAA,CAAEC,MAAMD,KAAAA,CAAES,MAAAA,EAAM,CAAA,CAAIN,QAAAA,EAAQ,CAAGC,QAAAA,CAAS,0BAAA;AAC/D;AAEO,IAAMO,6BAAAA,GAAgCX,MAAEY,MAAAA,CAAO;EAClDC,OAAAA,EAASb,KAAAA,CAAEC,KAAAA,CACPD,KAAAA,CAAEc,KAAAA,CAAM;AACJd,IAAAA,KAAAA,CAAEY,MAAAA,CAAO;AACLG,MAAAA,IAAAA,EAAMf,MAAES,MAAAA,EAAM;MACdO,OAAAA,EAAShB,KAAAA,CAAEiB,QAAQ,KAAA,CAAA;AACnBC,MAAAA,KAAAA,EAAOlB,MAAES,MAAAA;KACb,CAAA;AACAT,IAAAA,KAAAA,CAAEY,MAAAA,CAAO;AACLG,MAAAA,IAAAA,EAAMf,MAAES,MAAAA,EAAM;MACdO,OAAAA,EAAShB,KAAAA,CAAEiB,QAAQ,IAAA,CAAA;AACnBE,MAAAA,MAAAA,EAAQnB,MAAES,MAAAA;KACd;GACH,CAAA;AAET,CAAA;AAEO,IAAMW,4BAAAA,GAA+BT,8BAA8BU,MAAAA,CAAO;AAC7EC,EAAAA,QAAAA,EAAUpB,qCAAgBC,QAAAA,EAAQ;AAClCoB,EAAAA,MAAAA,EAAQvB,MAAEc,KAAAA,CAAM;AAACd,IAAAA,KAAAA,CAAEiB,QAAQ,SAAA,CAAA;AAAYjB,IAAAA,KAAAA,CAAEiB,QAAQ,UAAA;AAAY,GAAA,CAAA,CAAEO,QAAQ,SAAA;AAC3E,CAAA;AAKO,IAAMC,oCAAAA,GAAuCzB,MAAEY,MAAAA,CAAO;AACzDc,EAAAA,YAAAA,EAAc1B,MAAE2B,aAAAA,CAAczB,oCAAAA,EAAiBS,6BAAAA,CAAAA,CAA+Ba,OAAAA,CAAQ,EAAC;AAC3F,CAAA;AAEO,IAAMI,mCAAAA,GAAsCH,qCAAqCJ,MAAAA,CAAO;AAC3FE,EAAAA,MAAAA,EAAQvB,MAAEc,KAAAA,CAAM;AAACd,IAAAA,KAAAA,CAAEiB,QAAQ,SAAA,CAAA;AAAYjB,IAAAA,KAAAA,CAAEiB,QAAQ,UAAA;AAAY,GAAA,CAAA,CAAEO,QAAQ,SAAA;AAC3E,CAAA","file":"KUGCZOFR.cjs","sourcesContent":["import { z } from 'zod';\n\nimport { chainNameSchema } from '@layerzerolabs/layerzero-definitions';\n\nexport const wireWorkflowFilterArgsSchema = {\n // chain filters\n onlyFrom: z\n .array(chainNameSchema)\n .optional()\n .describe('Only wire pathways originating FROM these chains'),\n onlyTo: z\n .array(chainNameSchema)\n .optional()\n .describe('Only wire pathways going TO these chains'),\n excludeFrom: z\n .array(chainNameSchema)\n .optional()\n .describe('Exclude wiring pathways originating FROM these chains'),\n excludeTo: z\n .array(chainNameSchema)\n .optional()\n .describe('Exclude wiring pathways going TO these chains'),\n\n // operation filters\n onlyOperations: z.array(z.string()).optional().describe('Only perform these operations'),\n excludeOperations: z.array(z.string()).optional().describe('Exclude these operations'),\n};\n\nexport const wireWorkflowChainResultSchema = z.object({\n results: z.array(\n z.union([\n z.object({\n name: z.string(),\n success: z.literal(false),\n error: z.string(),\n }),\n z.object({\n name: z.string(),\n success: z.literal(true),\n txHash: z.string(),\n }),\n ]),\n ),\n});\n\nexport const wireWorkflowChainStateSchema = wireWorkflowChainResultSchema.extend({\n srcChain: chainNameSchema.optional(),\n status: z.union([z.literal('RUNNING'), z.literal('COMPLETE')]).default('RUNNING'),\n});\n\nexport type WireWorkflowChainState = z.infer<typeof wireWorkflowChainStateSchema>;\nexport type WireWorkflowChainResult = z.infer<typeof wireWorkflowChainResultSchema>;\n\nexport const wireWorkflowOrchestratorResultSchema = z.object({\n stateByChain: z.partialRecord(chainNameSchema, wireWorkflowChainResultSchema).default({}),\n});\n\nexport const wireWorkflowOrchestratorStateSchema = wireWorkflowOrchestratorResultSchema.extend({\n status: z.union([z.literal('RUNNING'), z.literal('COMPLETE')]).default('RUNNING'),\n});\n\nexport type WireWorkflowOrchestratorState = z.infer<typeof wireWorkflowOrchestratorStateSchema>;\nexport type WireWorkflowOrchestratorResult = z.infer<typeof wireWorkflowOrchestratorResultSchema>;\n"]}
package/dist/MR335VWI.cjs DELETED
@@ -1,29 +0,0 @@
1
- 'use strict';
2
-
3
- var zod = require('zod');
4
- var layerzeroDefinitions = require('@layerzerolabs/layerzero-definitions');
5
- var zodUtils = require('@layerzerolabs/zod-utils');
6
-
7
- // src/deploy/workflow.ts
8
- var extractVerificationArtifactBaseArgsSchema = zod.z.object({
9
- gtx: zodUtils.customSchema()
10
- });
11
- var deployWorkflowChainStateSchema = zod.z.object({
12
- srcChain: layerzeroDefinitions.chainNameSchema.optional(),
13
- status: zod.z.union([
14
- zod.z.literal("RUNNING"),
15
- zod.z.literal("COMPLETE")
16
- ]).default("RUNNING")
17
- });
18
- var deployWorkflowOrchestratorStateSchema = zod.z.object({
19
- status: zod.z.union([
20
- zod.z.literal("RUNNING"),
21
- zod.z.literal("COMPLETE")
22
- ]).default("RUNNING")
23
- });
24
-
25
- exports.deployWorkflowChainStateSchema = deployWorkflowChainStateSchema;
26
- exports.deployWorkflowOrchestratorStateSchema = deployWorkflowOrchestratorStateSchema;
27
- exports.extractVerificationArtifactBaseArgsSchema = extractVerificationArtifactBaseArgsSchema;
28
- //# sourceMappingURL=MR335VWI.cjs.map
29
- //# sourceMappingURL=MR335VWI.cjs.map
@@ -1 +0,0 @@
1
- {"version":3,"sources":["../src/deploy/workflow.ts"],"names":["extractVerificationArtifactBaseArgsSchema","z","object","gtx","customSchema","deployWorkflowChainStateSchema","srcChain","chainNameSchema","optional","status","union","literal","default","deployWorkflowOrchestratorStateSchema"],"mappings":";;;;;;;AAcO,IAAMA,yCAAAA,GAA4CC,MAAEC,MAAAA,CAAO;AAC9DC,EAAAA,GAAAA,EAAKC,qBAAAA;AACT,CAAA;AASO,IAAMC,8BAAAA,GAAiCJ,MAAEC,MAAAA,CAAO;AACnDI,EAAAA,QAAAA,EAAUC,qCAAgBC,QAAAA,EAAQ;AAClCC,EAAAA,MAAAA,EAAQR,MAAES,KAAAA,CAAM;AAACT,IAAAA,KAAAA,CAAEU,QAAQ,SAAA,CAAA;AAAYV,IAAAA,KAAAA,CAAEU,QAAQ,UAAA;AAAY,GAAA,CAAA,CAAEC,QAAQ,SAAA;AAC3E,CAAA;AAEO,IAAMC,qCAAAA,GAAwCZ,MAAEC,MAAAA,CAAO;AAC1DO,EAAAA,MAAAA,EAAQR,MAAES,KAAAA,CAAM;AAACT,IAAAA,KAAAA,CAAEU,QAAQ,SAAA,CAAA;AAAYV,IAAAA,KAAAA,CAAEU,QAAQ,UAAA;AAAY,GAAA,CAAA,CAAEC,QAAQ,SAAA;AAC3E,CAAA","file":"MR335VWI.cjs","sourcesContent":["import type { SuiObjectChange } from '@mysten/sui/client';\nimport { z } from 'zod';\n\nimport type { SuccessfulGatedTransaction } from '@layerzerolabs/gated-transaction';\nimport { chainNameSchema } from '@layerzerolabs/layerzero-definitions';\nimport { customSchema } from '@layerzerolabs/zod-utils';\n\n// Re-export for transitive type dependencies\nexport type { SuiObjectChange };\n\n// ---------------------------------------------------------------------------\n// Deprecated types (to be removed)\n// ---------------------------------------------------------------------------\n\nexport const extractVerificationArtifactBaseArgsSchema = z.object({\n gtx: customSchema<SuccessfulGatedTransaction>(),\n});\nexport type ExtractVerificationArtifactBaseArgs = z.infer<\n typeof extractVerificationArtifactBaseArgsSchema\n>;\n\n// ---------------------------------------------------------------------------\n// Deploy workflow state schemas\n// ---------------------------------------------------------------------------\n\nexport const deployWorkflowChainStateSchema = z.object({\n srcChain: chainNameSchema.optional(),\n status: z.union([z.literal('RUNNING'), z.literal('COMPLETE')]).default('RUNNING'),\n});\n\nexport const deployWorkflowOrchestratorStateSchema = z.object({\n status: z.union([z.literal('RUNNING'), z.literal('COMPLETE')]).default('RUNNING'),\n});\n\n// ---------------------------------------------------------------------------\n// Deploy workflow types\n// ---------------------------------------------------------------------------\n\nexport type DeployWorkflowChainState = z.infer<typeof deployWorkflowChainStateSchema>;\nexport type DeployWorkflowOrchestratorState = z.infer<typeof deployWorkflowOrchestratorStateSchema>;\n"]}
package/dist/NCHH4VK3.cjs DELETED
@@ -1,4 +0,0 @@
1
- 'use strict';
2
-
3
- //# sourceMappingURL=NCHH4VK3.cjs.map
4
- //# sourceMappingURL=NCHH4VK3.cjs.map
@@ -1 +0,0 @@
1
- {"version":3,"sources":[],"names":[],"mappings":"","file":"NCHH4VK3.cjs"}
package/dist/OFA25YOX.cjs DELETED
@@ -1,78 +0,0 @@
1
- 'use strict';
2
-
3
- var zod = require('zod');
4
- var commonChainModel = require('@layerzerolabs/common-chain-model');
5
- var layerzeroDefinitions = require('@layerzerolabs/layerzero-definitions');
6
- var zodUtils = require('@layerzerolabs/zod-utils');
7
-
8
- // src/deploy/artifact.ts
9
- var ArtifactType = /* @__PURE__ */ (function(ArtifactType2) {
10
- ArtifactType2["DEPLOYMENT"] = "deployment";
11
- ArtifactType2["VERIFICATION"] = "verification";
12
- ArtifactType2["METADATA"] = "metadata";
13
- return ArtifactType2;
14
- })({});
15
- var artifactTypeSchema = zodUtils.brandSchema(zod.z.enum(ArtifactType), "ArtifactTypeSchema");
16
- var solanaDeploymentArtifactExtraInfoSchema = zod.z.object({
17
- accounts: zod.z.record(zod.z.string(), commonChainModel.normalizedHexSchema)
18
- });
19
- var suiDeploymentArtifactExtraInfoSchema = zod.z.object({
20
- digest: zod.z.string(),
21
- packageId: zod.z.string(),
22
- objectIds: zod.z.record(zod.z.string(), zod.z.string()),
23
- objectChanges: zod.z.array(zod.z.custom())
24
- });
25
- var identityOnlyDeploymentArtifactSchema = zod.z.object({
26
- chainName: layerzeroDefinitions.chainNameSchema,
27
- address: commonChainModel.normalizedHexSchema
28
- });
29
- var fullDeploymentArtifactSchema = zod.z.object({
30
- ...identityOnlyDeploymentArtifactSchema.shape,
31
- chainName: layerzeroDefinitions.chainNameSchema,
32
- address: commonChainModel.normalizedHexSchema,
33
- nativeAddress: zod.z.string(),
34
- bytecodeHash: zod.z.string().optional(),
35
- deploymentTimestamp: zod.z.number(),
36
- deployerAddress: commonChainModel.normalizedHexSchema,
37
- txHash: zod.z.string(),
38
- extraDeploymentInfo: zod.z.any().optional()
39
- });
40
- var deploymentArtifactSchema = zod.z.union([
41
- // Check this first since it's a superset
42
- fullDeploymentArtifactSchema,
43
- identityOnlyDeploymentArtifactSchema
44
- ]);
45
- var verificationArtifactSchema = zod.z.any();
46
- var metadataArtifactSchema = zod.z.object({
47
- jobId: zod.z.string(),
48
- pushedAt: zod.z.number(),
49
- // We can type this fully but probably needs to happen later
50
- metadataResources: zod.z.array(zod.z.any())
51
- });
52
- var artifactWithTypeSchema = zod.z.discriminatedUnion("artifactType", [
53
- zod.z.object({
54
- artifactType: zod.z.literal("deployment"),
55
- artifact: deploymentArtifactSchema
56
- }),
57
- zod.z.object({
58
- artifactType: zod.z.literal("verification"),
59
- artifact: zod.z.any()
60
- }),
61
- zod.z.object({
62
- artifactType: zod.z.literal("metadata"),
63
- artifact: metadataArtifactSchema
64
- })
65
- ]);
66
-
67
- exports.ArtifactType = ArtifactType;
68
- exports.artifactTypeSchema = artifactTypeSchema;
69
- exports.artifactWithTypeSchema = artifactWithTypeSchema;
70
- exports.deploymentArtifactSchema = deploymentArtifactSchema;
71
- exports.fullDeploymentArtifactSchema = fullDeploymentArtifactSchema;
72
- exports.identityOnlyDeploymentArtifactSchema = identityOnlyDeploymentArtifactSchema;
73
- exports.metadataArtifactSchema = metadataArtifactSchema;
74
- exports.solanaDeploymentArtifactExtraInfoSchema = solanaDeploymentArtifactExtraInfoSchema;
75
- exports.suiDeploymentArtifactExtraInfoSchema = suiDeploymentArtifactExtraInfoSchema;
76
- exports.verificationArtifactSchema = verificationArtifactSchema;
77
- //# sourceMappingURL=OFA25YOX.cjs.map
78
- //# sourceMappingURL=OFA25YOX.cjs.map
@@ -1 +0,0 @@
1
- {"version":3,"sources":["../src/deploy/artifact.ts"],"names":["ArtifactType","artifactTypeSchema","brandSchema","z","enum","solanaDeploymentArtifactExtraInfoSchema","object","accounts","record","string","normalizedHexSchema","suiDeploymentArtifactExtraInfoSchema","digest","packageId","objectIds","objectChanges","array","custom","identityOnlyDeploymentArtifactSchema","chainName","chainNameSchema","address","fullDeploymentArtifactSchema","shape","nativeAddress","bytecodeHash","optional","deploymentTimestamp","number","deployerAddress","txHash","extraDeploymentInfo","any","deploymentArtifactSchema","union","verificationArtifactSchema","metadataArtifactSchema","jobId","pushedAt","metadataResources","artifactWithTypeSchema","discriminatedUnion","artifactType","literal","artifact"],"mappings":";;;;;;;;AAWO,IAAKA,YAAAA,6BAAAA,aAAAA,EAAAA;;;;AAAAA,EAAAA,OAAAA,aAAAA;;AAWL,IAAMC,qBAAqBC,oBAAAA,CAAYC,KAAAA,CAAEC,IAAAA,CAAKJ,YAAAA,GAAe,oBAAA;AAG7D,IAAMK,uCAAAA,GAA0CF,MAAEG,MAAAA,CAAO;AAC5DC,EAAAA,QAAAA,EAAUJ,KAAAA,CAAEK,MAAAA,CAAOL,KAAAA,CAAEM,MAAAA,IAAUC,oCAAAA;AACnC,CAAA;AAMO,IAAMC,oCAAAA,GAAuCR,MAAEG,MAAAA,CAAO;AACzDM,EAAAA,MAAAA,EAAQT,MAAEM,MAAAA,EAAM;AAChBI,EAAAA,SAAAA,EAAWV,MAAEM,MAAAA,EAAM;AACnBK,EAAAA,SAAAA,EAAWX,MAAEK,MAAAA,CAAOL,KAAAA,CAAEM,QAAM,EAAIN,KAAAA,CAAEM,QAAM,CAAA;AACxCM,EAAAA,aAAAA,EAAeZ,KAAAA,CAAEa,KAAAA,CAAMb,KAAAA,CAAEc,MAAAA,EAAM;AACnC,CAAA;AAIO,IAAMC,oCAAAA,GAAuCf,MAAEG,MAAAA,CAAO;EACzDa,SAAAA,EAAWC,oCAAAA;EACXC,OAAAA,EAASX;AACb,CAAA;AAIO,IAAMY,4BAAAA,GAA+BnB,MAAEG,MAAAA,CAAO;AACjD,EAAA,GAAGY,oCAAAA,CAAqCK,KAAAA;EACxCJ,SAAAA,EAAWC,oCAAAA;EACXC,OAAAA,EAASX,oCAAAA;AACTc,EAAAA,aAAAA,EAAerB,MAAEM,MAAAA,EAAM;EACvBgB,YAAAA,EAActB,KAAAA,CAAEM,MAAAA,EAAM,CAAGiB,QAAAA,EAAQ;AACjCC,EAAAA,mBAAAA,EAAqBxB,MAAEyB,MAAAA,EAAM;EAC7BC,eAAAA,EAAiBnB,oCAAAA;AACjBoB,EAAAA,MAAAA,EAAQ3B,MAAEM,MAAAA,EAAM;EAChBsB,mBAAAA,EAAqB5B,KAAAA,CAAE6B,GAAAA,EAAG,CAAGN,QAAAA;AACjC,CAAA;AAIO,IAAMO,wBAAAA,GAA2B9B,MAAE+B,KAAAA,CAAM;;AAE5CZ,EAAAA,4BAAAA;AACAJ,EAAAA;AACH,CAAA;AAIM,IAAMiB,0BAAAA,GAA6BhC,MAAE6B,GAAAA;AAIrC,IAAMI,sBAAAA,GAAyBjC,MAAEG,MAAAA,CAAO;AAC3C+B,EAAAA,KAAAA,EAAOlC,MAAEM,MAAAA,EAAM;AACf6B,EAAAA,QAAAA,EAAUnC,MAAEyB,MAAAA,EAAM;;AAElBW,EAAAA,iBAAAA,EAAmBpC,KAAAA,CAAEa,KAAAA,CAAMb,KAAAA,CAAE6B,GAAAA,EAAG;AACpC,CAAA;AAIO,IAAMQ,sBAAAA,GAAyBrC,KAAAA,CAAEsC,kBAAAA,CAAmB,cAAA,EAAgB;AACvEtC,EAAAA,KAAAA,CAAEG,MAAAA,CAAO;IACLoC,YAAAA,EAAcvC,KAAAA,CAAEwC,QAAO,YAAA,CAAA;IACvBC,QAAAA,EAAUX;GACd,CAAA;AACA9B,EAAAA,KAAAA,CAAEG,MAAAA,CAAO;IACLoC,YAAAA,EAAcvC,KAAAA,CAAEwC,QAAO,cAAA,CAAA;AACvBC,IAAAA,QAAAA,EAAUzC,MAAE6B,GAAAA;GAChB,CAAA;AACA7B,EAAAA,KAAAA,CAAEG,MAAAA,CAAO;IACLoC,YAAAA,EAAcvC,KAAAA,CAAEwC,QAAO,UAAA,CAAA;IACvBC,QAAAA,EAAUR;GACd;AACH,CAAA","file":"OFA25YOX.cjs","sourcesContent":["import type { SuiObjectChange } from '@mysten/sui/client';\nimport { z } from 'zod';\n\nimport { normalizedHexSchema } from '@layerzerolabs/common-chain-model';\nimport type { ChainName } from '@layerzerolabs/layerzero-definitions';\nimport { chainNameSchema } from '@layerzerolabs/layerzero-definitions';\nimport { brandSchema } from '@layerzerolabs/zod-utils';\nexport type { ChainName };\n\nexport type { SuiObjectChange };\n\nexport enum ArtifactType {\n // Should merge deployment, verification artifacts\n\n // Full record from deployment on-chain\n DEPLOYMENT = 'deployment',\n // Information to verify contracts\n VERIFICATION = 'verification',\n // Record of a successful push to lz metadata\n METADATA = 'metadata',\n}\n\nexport const artifactTypeSchema = brandSchema(z.enum(ArtifactType), 'ArtifactTypeSchema');\n\n// Chain-specific extra deployment info schemas\nexport const solanaDeploymentArtifactExtraInfoSchema = z.object({\n accounts: z.record(z.string(), normalizedHexSchema),\n});\n\nexport type SolanaDeploymentArtifactExtraInfo = z.infer<\n typeof solanaDeploymentArtifactExtraInfoSchema\n>;\n\nexport const suiDeploymentArtifactExtraInfoSchema = z.object({\n digest: z.string(),\n packageId: z.string(),\n objectIds: z.record(z.string(), z.string()),\n objectChanges: z.array(z.custom<SuiObjectChange>()),\n});\n\nexport type SuiDeploymentArtifactExtraInfo = z.infer<typeof suiDeploymentArtifactExtraInfoSchema>;\n\nexport const identityOnlyDeploymentArtifactSchema = z.object({\n chainName: chainNameSchema,\n address: normalizedHexSchema,\n});\nexport type IdentityOnlyDeploymentArtifact = z.infer<typeof identityOnlyDeploymentArtifactSchema>;\n\n// TODO: include verification artifact in this schema\nexport const fullDeploymentArtifactSchema = z.object({\n ...identityOnlyDeploymentArtifactSchema.shape,\n chainName: chainNameSchema,\n address: normalizedHexSchema,\n nativeAddress: z.string(),\n bytecodeHash: z.string().optional(),\n deploymentTimestamp: z.number(),\n deployerAddress: normalizedHexSchema,\n txHash: z.string(),\n extraDeploymentInfo: z.any().optional(),\n});\nexport type FullDeploymentArtifact = z.infer<typeof fullDeploymentArtifactSchema>;\n\n// TODO: decide whether to migrate stored identity-only artifacts to full artifacts and collapse this union into fullDeploymentArtifactSchema\nexport const deploymentArtifactSchema = z.union([\n // Check this first since it's a superset\n fullDeploymentArtifactSchema,\n identityOnlyDeploymentArtifactSchema,\n]);\n\nexport type DeploymentArtifact = z.infer<typeof deploymentArtifactSchema>;\n\nexport const verificationArtifactSchema = z.any();\n\nexport type VerificationArtifact = z.infer<typeof verificationArtifactSchema>;\n\nexport const metadataArtifactSchema = z.object({\n jobId: z.string(),\n pushedAt: z.number(),\n // We can type this fully but probably needs to happen later\n metadataResources: z.array(z.any()),\n});\n\nexport type MetadataArtifact = z.infer<typeof metadataArtifactSchema>;\n\nexport const artifactWithTypeSchema = z.discriminatedUnion('artifactType', [\n z.object({\n artifactType: z.literal(ArtifactType.DEPLOYMENT),\n artifact: deploymentArtifactSchema,\n }),\n z.object({\n artifactType: z.literal(ArtifactType.VERIFICATION),\n artifact: z.any(),\n }),\n z.object({\n artifactType: z.literal(ArtifactType.METADATA),\n artifact: metadataArtifactSchema,\n }),\n]);\n\nexport type ArtifactWithType = z.infer<typeof artifactWithTypeSchema>;\n"]}
package/dist/ONIG6I4S.cjs DELETED
@@ -1,23 +0,0 @@
1
- 'use strict';
2
-
3
- var YJF4D23A_cjs = require('./YJF4D23A.cjs');
4
-
5
- // src/role-management/generator.ts
6
- var generateThrowCreateSetRoleTransactions = /* @__PURE__ */ YJF4D23A_cjs.__name(() => () => {
7
- throw new Error("Not implemented");
8
- }, "generateThrowCreateSetRoleTransactions");
9
- var generateThrowHasRole = /* @__PURE__ */ YJF4D23A_cjs.__name(() => () => {
10
- throw new Error("Not implemented");
11
- }, "generateThrowHasRole");
12
- var generateThrowRoleManagement = /* @__PURE__ */ YJF4D23A_cjs.__name(() => {
13
- return {
14
- createSetRoleTransactions: generateThrowCreateSetRoleTransactions(),
15
- hasRole: generateThrowHasRole()
16
- };
17
- }, "generateThrowRoleManagement");
18
-
19
- exports.generateThrowCreateSetRoleTransactions = generateThrowCreateSetRoleTransactions;
20
- exports.generateThrowHasRole = generateThrowHasRole;
21
- exports.generateThrowRoleManagement = generateThrowRoleManagement;
22
- //# sourceMappingURL=ONIG6I4S.cjs.map
23
- //# sourceMappingURL=ONIG6I4S.cjs.map
@@ -1 +0,0 @@
1
- {"version":3,"sources":["../src/role-management/generator.ts"],"names":["generateThrowCreateSetRoleTransactions","Error","generateThrowHasRole","generateThrowRoleManagement","__name","createSetRoleTransactions","hasRole"],"mappings":";;;;;AAEO,IAAMA,sCAAAA,6CAC4C,MAAA;AACjD,EAAA,MAAM,IAAIC,MAAM,iBAAA,CAAA;AACpB,CAAA,EAFA,wCAAA;AAIG,IAAMC,oBAAAA,6CAA0D,MAAA;AACnE,EAAA,MAAM,IAAID,MAAM,iBAAA,CAAA;AACpB,CAAA,EAFoC,sBAAA;AAI7B,IAAME,8CAA8BC,mBAAA,CAAA,MAAA;AACvC,EAAA,OAAO;AACHC,IAAAA,yBAAAA,EAA2BL,sCAAAA,EAAAA;AAC3BM,IAAAA,OAAAA,EAASJ,oBAAAA;AACb,GAAA;AACJ,CAAA,EAL2C,6BAAA","file":"ONIG6I4S.cjs","sourcesContent":["import type { CreateSetRoleTransactionsWithSpecializedInput, HasRoleWithSpecializedInput } from '.';\n\nexport const generateThrowCreateSetRoleTransactions =\n (): CreateSetRoleTransactionsWithSpecializedInput => () => {\n throw new Error('Not implemented');\n };\n\nexport const generateThrowHasRole = (): HasRoleWithSpecializedInput => () => {\n throw new Error('Not implemented');\n};\n\nexport const generateThrowRoleManagement = () => {\n return {\n createSetRoleTransactions: generateThrowCreateSetRoleTransactions(),\n hasRole: generateThrowHasRole(),\n };\n};\n"]}
package/dist/X7GZKVDG.cjs DELETED
@@ -1,13 +0,0 @@
1
- 'use strict';
2
-
3
- // src/role-management/types.ts
4
- var BaseContractRole = /* @__PURE__ */ (function(BaseContractRole2) {
5
- BaseContractRole2["OWNER"] = "OWNER_ROLE";
6
- BaseContractRole2["ADMIN"] = "ADMIN_ROLE";
7
- BaseContractRole2["DEFAULT_ADMIN"] = "DEFAULT_ADMIN_ROLE";
8
- return BaseContractRole2;
9
- })({});
10
-
11
- exports.BaseContractRole = BaseContractRole;
12
- //# sourceMappingURL=X7GZKVDG.cjs.map
13
- //# sourceMappingURL=X7GZKVDG.cjs.map
@@ -1 +0,0 @@
1
- {"version":3,"sources":["../src/role-management/types.ts"],"names":["BaseContractRole"],"mappings":";;;AAAO,IAAKA,gBAAAA,6BAAAA,iBAAAA,EAAAA;;;;AAAAA,EAAAA,OAAAA,iBAAAA","file":"X7GZKVDG.cjs","sourcesContent":["export enum BaseContractRole {\n OWNER = 'OWNER_ROLE',\n ADMIN = 'ADMIN_ROLE',\n DEFAULT_ADMIN = 'DEFAULT_ADMIN_ROLE',\n}\n"]}
package/dist/YJF4D23A.cjs DELETED
@@ -1,8 +0,0 @@
1
- 'use strict';
2
-
3
- var __defProp = Object.defineProperty;
4
- var __name = (target, value) => __defProp(target, "name", { value, configurable: true });
5
-
6
- exports.__name = __name;
7
- //# sourceMappingURL=YJF4D23A.cjs.map
8
- //# sourceMappingURL=YJF4D23A.cjs.map
@@ -1 +0,0 @@
1
- {"version":3,"sources":[],"names":[],"mappings":"","file":"YJF4D23A.cjs"}
@@ -1,49 +0,0 @@
1
- 'use strict';
2
-
3
- var OFA25YOX_cjs = require('../OFA25YOX.cjs');
4
- require('../YJF4D23A.cjs');
5
-
6
-
7
-
8
- Object.defineProperty(exports, "ArtifactType", {
9
- enumerable: true,
10
- get: function () { return OFA25YOX_cjs.ArtifactType; }
11
- });
12
- Object.defineProperty(exports, "artifactTypeSchema", {
13
- enumerable: true,
14
- get: function () { return OFA25YOX_cjs.artifactTypeSchema; }
15
- });
16
- Object.defineProperty(exports, "artifactWithTypeSchema", {
17
- enumerable: true,
18
- get: function () { return OFA25YOX_cjs.artifactWithTypeSchema; }
19
- });
20
- Object.defineProperty(exports, "deploymentArtifactSchema", {
21
- enumerable: true,
22
- get: function () { return OFA25YOX_cjs.deploymentArtifactSchema; }
23
- });
24
- Object.defineProperty(exports, "fullDeploymentArtifactSchema", {
25
- enumerable: true,
26
- get: function () { return OFA25YOX_cjs.fullDeploymentArtifactSchema; }
27
- });
28
- Object.defineProperty(exports, "identityOnlyDeploymentArtifactSchema", {
29
- enumerable: true,
30
- get: function () { return OFA25YOX_cjs.identityOnlyDeploymentArtifactSchema; }
31
- });
32
- Object.defineProperty(exports, "metadataArtifactSchema", {
33
- enumerable: true,
34
- get: function () { return OFA25YOX_cjs.metadataArtifactSchema; }
35
- });
36
- Object.defineProperty(exports, "solanaDeploymentArtifactExtraInfoSchema", {
37
- enumerable: true,
38
- get: function () { return OFA25YOX_cjs.solanaDeploymentArtifactExtraInfoSchema; }
39
- });
40
- Object.defineProperty(exports, "suiDeploymentArtifactExtraInfoSchema", {
41
- enumerable: true,
42
- get: function () { return OFA25YOX_cjs.suiDeploymentArtifactExtraInfoSchema; }
43
- });
44
- Object.defineProperty(exports, "verificationArtifactSchema", {
45
- enumerable: true,
46
- get: function () { return OFA25YOX_cjs.verificationArtifactSchema; }
47
- });
48
- //# sourceMappingURL=artifact.cjs.map
49
- //# sourceMappingURL=artifact.cjs.map
@@ -1 +0,0 @@
1
- {"version":3,"sources":[],"names":[],"mappings":"","file":"artifact.cjs"}
@@ -1,34 +0,0 @@
1
- 'use strict';
2
-
3
- var _6RK5YROL_cjs = require('../6RK5YROL.cjs');
4
- require('../OFA25YOX.cjs');
5
- require('../YJF4D23A.cjs');
6
-
7
-
8
-
9
- Object.defineProperty(exports, "artifactRegistryActivityFactorySchema", {
10
- enumerable: true,
11
- get: function () { return _6RK5YROL_cjs.artifactRegistryActivityFactorySchema; }
12
- });
13
- Object.defineProperty(exports, "createMockArtifactRegistry", {
14
- enumerable: true,
15
- get: function () { return _6RK5YROL_cjs.createMockArtifactRegistry; }
16
- });
17
- Object.defineProperty(exports, "realIdSchema", {
18
- enumerable: true,
19
- get: function () { return _6RK5YROL_cjs.realIdSchema; }
20
- });
21
- Object.defineProperty(exports, "resourceRefSchema", {
22
- enumerable: true,
23
- get: function () { return _6RK5YROL_cjs.resourceRefSchema; }
24
- });
25
- Object.defineProperty(exports, "resourceRegistryActivityFactorySchema", {
26
- enumerable: true,
27
- get: function () { return _6RK5YROL_cjs.resourceRegistryActivityFactorySchema; }
28
- });
29
- Object.defineProperty(exports, "upsertResourceRealIdArgsSchema", {
30
- enumerable: true,
31
- get: function () { return _6RK5YROL_cjs.upsertResourceRealIdArgsSchema; }
32
- });
33
- //# sourceMappingURL=factoryInterfaces.cjs.map
34
- //# sourceMappingURL=factoryInterfaces.cjs.map
@@ -1 +0,0 @@
1
- {"version":3,"sources":[],"names":[],"mappings":"","file":"factoryInterfaces.cjs"}