@layerzerolabs/dw-model 0.2.29 → 0.2.31
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/.turbo/turbo-build.log +92 -92
- package/.turbo/turbo-lint.log +1 -1
- package/dist/{BFV5SQ6S.cjs → BLMCMKXA.cjs} +43 -5
- package/dist/BLMCMKXA.cjs.map +1 -0
- package/dist/{7CBCJCC6.js → C4QQVVTS.js} +42 -6
- package/dist/C4QQVVTS.js.map +1 -0
- package/dist/{7FULMGYU.cjs → TAGF43YU.cjs} +49 -56
- package/dist/TAGF43YU.cjs.map +1 -0
- package/dist/{PHPSOUIK.js → YHNY3DAS.js} +46 -52
- package/dist/YHNY3DAS.js.map +1 -0
- package/dist/deploy/factoryInterfaces.cjs +13 -5
- package/dist/deploy/factoryInterfaces.d.ts +74 -0
- package/dist/deploy/factoryInterfaces.d.ts.map +1 -1
- package/dist/deploy/factoryInterfaces.js +2 -2
- package/dist/deploy/index.cjs +29 -25
- package/dist/deploy/index.js +2 -2
- package/dist/deploy/workflow.cjs +17 -21
- package/dist/deploy/workflow.d.ts +171 -176
- package/dist/deploy/workflow.d.ts.map +1 -1
- package/dist/deploy/workflow.js +1 -1
- package/dist/index.cjs +131 -127
- package/dist/index.js +8 -8
- package/dist/role-management/generator.d.ts +1 -1
- package/dist/role-management/index.cjs +13 -13
- package/dist/role-management/index.js +1 -1
- package/dist/role-management/schemata.d.ts +8 -8
- package/dist/role-management/schemata.d.ts.map +1 -1
- package/package.json +9 -9
- package/src/deploy/factoryInterfaces.ts +38 -3
- package/src/deploy/workflow.ts +80 -60
- package/dist/7CBCJCC6.js.map +0 -1
- package/dist/7FULMGYU.cjs.map +0 -1
- package/dist/BFV5SQ6S.cjs.map +0 -1
- package/dist/PHPSOUIK.js.map +0 -1
|
@@ -1,93 +1,87 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { identityOnlyDeploymentArtifactSchema, fullDeploymentArtifactSchema, verificationArtifactSchema, deploymentArtifactSchema } from './XMLZYDPF.js';
|
|
2
2
|
import { z } from 'zod';
|
|
3
|
-
import { normalizedHexSchema } from '@layerzerolabs/common-chain-model';
|
|
4
3
|
import { successfulGatedTransactionSchema } from '@layerzerolabs/gated-transaction';
|
|
5
4
|
import { ChainName } from '@layerzerolabs/layerzero-definitions';
|
|
6
5
|
import { functionSchema } from '@layerzerolabs/zod-utils';
|
|
7
6
|
|
|
8
|
-
var
|
|
9
|
-
contractName: z.enum(ChainName),
|
|
10
|
-
address: normalizedHexSchema,
|
|
11
|
-
abiEncodedConstructorArguments: true
|
|
12
|
-
});
|
|
13
|
-
var failedDeployment = z.object({
|
|
14
|
-
name: z.string(),
|
|
15
|
-
success: z.literal(false),
|
|
16
|
-
error: z.string()
|
|
17
|
-
});
|
|
18
|
-
var successfulDeployment = z.object({
|
|
19
|
-
name: z.string(),
|
|
20
|
-
success: z.literal(true),
|
|
21
|
-
deploymentArtifact: deploymentArtifactSchema
|
|
22
|
-
});
|
|
23
|
-
var deployWorkflowChainResultItemSchema = z.union([
|
|
24
|
-
failedDeployment,
|
|
25
|
-
successfulDeployment
|
|
26
|
-
]);
|
|
27
|
-
var deployWorkflowChainResultSchema = z.object({
|
|
28
|
-
results: z.array(deployWorkflowChainResultItemSchema).default([])
|
|
29
|
-
});
|
|
30
|
-
var deployWorkflowChainStateSchema = deployWorkflowChainResultSchema.extend({
|
|
31
|
-
srcChain: z.enum(ChainName).optional(),
|
|
32
|
-
status: z.union([
|
|
33
|
-
z.literal("RUNNING"),
|
|
34
|
-
z.literal("COMPLETE")
|
|
35
|
-
]).default("RUNNING")
|
|
36
|
-
});
|
|
37
|
-
var deployWorkflowOrchestratorResultSchema = z.object({
|
|
38
|
-
stateByChain: z.partialRecord(z.enum(ChainName), deployWorkflowChainResultSchema).default({})
|
|
39
|
-
});
|
|
40
|
-
var deployWorkflowOrchestratorStateSchema = deployWorkflowOrchestratorResultSchema.extend({
|
|
41
|
-
status: z.union([
|
|
42
|
-
z.literal("RUNNING"),
|
|
43
|
-
z.literal("COMPLETE")
|
|
44
|
-
]).default("RUNNING")
|
|
45
|
-
});
|
|
46
|
-
var getDeploymentBaseArgs = z.object({
|
|
7
|
+
var getDeploymentBaseArgsSchema = z.object({
|
|
47
8
|
contractName: z.string()
|
|
48
9
|
});
|
|
49
|
-
var
|
|
10
|
+
var saveDeploymentBaseArgsSchema = z.object({
|
|
50
11
|
deploymentArtifact: identityOnlyDeploymentArtifactSchema
|
|
51
12
|
});
|
|
52
|
-
var
|
|
13
|
+
var getVerificationBaseArgsSchema = z.object({
|
|
53
14
|
contractName: z.string()
|
|
54
15
|
});
|
|
55
|
-
var
|
|
16
|
+
var extractVerificationArtifactBaseArgsSchema = z.object({
|
|
56
17
|
gtx: successfulGatedTransactionSchema(),
|
|
57
18
|
deploymentArtifact: fullDeploymentArtifactSchema,
|
|
58
19
|
nonVerifyable: z.boolean().optional()
|
|
59
20
|
});
|
|
60
|
-
var
|
|
21
|
+
var saveVerificationBaseArgsSchema = z.object({
|
|
61
22
|
deploymentArtifact: fullDeploymentArtifactSchema,
|
|
62
23
|
verificationArtifact: verificationArtifactSchema
|
|
63
24
|
});
|
|
64
25
|
var BaseDeploymentSavingArtifactsSchema = z.object({
|
|
65
26
|
getDeployment: functionSchema({
|
|
66
27
|
input: z.tuple([
|
|
67
|
-
|
|
28
|
+
getDeploymentBaseArgsSchema
|
|
68
29
|
]),
|
|
69
30
|
output: z.promise(deploymentArtifactSchema.optional())
|
|
70
31
|
}),
|
|
71
32
|
saveDeployment: functionSchema({
|
|
72
33
|
input: z.tuple([
|
|
73
|
-
|
|
34
|
+
saveDeploymentBaseArgsSchema
|
|
74
35
|
]),
|
|
75
36
|
output: z.promise(z.void())
|
|
76
37
|
}),
|
|
77
38
|
getVerification: functionSchema({
|
|
78
39
|
input: z.tuple([
|
|
79
|
-
|
|
40
|
+
getVerificationBaseArgsSchema
|
|
80
41
|
]),
|
|
81
42
|
output: z.promise(z.any())
|
|
82
43
|
}),
|
|
83
44
|
saveVerification: functionSchema({
|
|
84
45
|
input: z.tuple([
|
|
85
|
-
|
|
46
|
+
saveVerificationBaseArgsSchema
|
|
86
47
|
]),
|
|
87
48
|
output: z.promise(z.void())
|
|
88
49
|
})
|
|
89
50
|
});
|
|
51
|
+
var failedDeployment = z.object({
|
|
52
|
+
name: z.string(),
|
|
53
|
+
success: z.literal(false),
|
|
54
|
+
error: z.string()
|
|
55
|
+
});
|
|
56
|
+
var successfulDeployment = z.object({
|
|
57
|
+
name: z.string(),
|
|
58
|
+
success: z.literal(true),
|
|
59
|
+
deploymentArtifact: deploymentArtifactSchema
|
|
60
|
+
});
|
|
61
|
+
var deployWorkflowChainResultItemSchema = z.union([
|
|
62
|
+
failedDeployment,
|
|
63
|
+
successfulDeployment
|
|
64
|
+
]);
|
|
65
|
+
var deployWorkflowChainResultSchema = z.object({
|
|
66
|
+
results: z.array(deployWorkflowChainResultItemSchema).default([])
|
|
67
|
+
});
|
|
68
|
+
var deployWorkflowChainStateSchema = deployWorkflowChainResultSchema.extend({
|
|
69
|
+
srcChain: z.enum(ChainName).optional(),
|
|
70
|
+
status: z.union([
|
|
71
|
+
z.literal("RUNNING"),
|
|
72
|
+
z.literal("COMPLETE")
|
|
73
|
+
]).default("RUNNING")
|
|
74
|
+
});
|
|
75
|
+
var deployWorkflowOrchestratorResultSchema = z.object({
|
|
76
|
+
stateByChain: z.partialRecord(z.enum(ChainName), deployWorkflowChainResultSchema).default({})
|
|
77
|
+
});
|
|
78
|
+
var deployWorkflowOrchestratorStateSchema = deployWorkflowOrchestratorResultSchema.extend({
|
|
79
|
+
status: z.union([
|
|
80
|
+
z.literal("RUNNING"),
|
|
81
|
+
z.literal("COMPLETE")
|
|
82
|
+
]).default("RUNNING")
|
|
83
|
+
});
|
|
90
84
|
|
|
91
|
-
export { BaseDeploymentSavingArtifactsSchema,
|
|
92
|
-
//# sourceMappingURL=
|
|
93
|
-
//# sourceMappingURL=
|
|
85
|
+
export { BaseDeploymentSavingArtifactsSchema, deployWorkflowChainResultItemSchema, deployWorkflowChainResultSchema, deployWorkflowChainStateSchema, deployWorkflowOrchestratorResultSchema, deployWorkflowOrchestratorStateSchema, extractVerificationArtifactBaseArgsSchema, getDeploymentBaseArgsSchema, getVerificationBaseArgsSchema, saveDeploymentBaseArgsSchema, saveVerificationBaseArgsSchema };
|
|
86
|
+
//# sourceMappingURL=YHNY3DAS.js.map
|
|
87
|
+
//# sourceMappingURL=YHNY3DAS.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":["../src/deploy/workflow.ts"],"names":["getDeploymentBaseArgsSchema","z","object","contractName","string","saveDeploymentBaseArgsSchema","deploymentArtifact","identityOnlyDeploymentArtifactSchema","getVerificationBaseArgsSchema","extractVerificationArtifactBaseArgsSchema","gtx","successfulGatedTransactionSchema","fullDeploymentArtifactSchema","nonVerifyable","boolean","optional","saveVerificationBaseArgsSchema","verificationArtifact","verificationArtifactSchema","BaseDeploymentSavingArtifactsSchema","getDeployment","functionSchema","input","tuple","output","promise","deploymentArtifactSchema","saveDeployment","void","getVerification","any","saveVerification","failedDeployment","name","success","literal","error","successfulDeployment","deployWorkflowChainResultItemSchema","union","deployWorkflowChainResultSchema","results","array","default","deployWorkflowChainStateSchema","extend","srcChain","enum","ChainName","status","deployWorkflowOrchestratorResultSchema","stateByChain","partialRecord","deployWorkflowOrchestratorStateSchema"],"mappings":"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","file":"YHNY3DAS.js","sourcesContent":["import type { SuiObjectChange } from '@mysten/sui/client';\nimport { z } from 'zod';\n\nimport { successfulGatedTransactionSchema } from '@layerzerolabs/gated-transaction';\nimport { ChainName } from '@layerzerolabs/layerzero-definitions';\nimport { functionSchema } from '@layerzerolabs/zod-utils';\n\nimport type { DeploymentArtifact, SolanaDeploymentArtifactExtraInfo } from './artifact';\nimport {\n deploymentArtifactSchema,\n fullDeploymentArtifactSchema,\n identityOnlyDeploymentArtifactSchema,\n verificationArtifactSchema,\n} from './artifact';\n\n// Re-export for transitive type dependencies\nexport type { SuiObjectChange };\n\n// ---------------------------------------------------------------------------\n// Deprecated types (to be removed)\n// ---------------------------------------------------------------------------\n\n/** @deprecated use SolanaDeploymentArtifact from this module or define inline */\nexport type SolanaDeploymentArtifact = Omit<DeploymentArtifact, 'extraDeploymentInfo'> & {\n extraDeploymentInfo: SolanaDeploymentArtifactExtraInfo;\n};\n\n// ---------------------------------------------------------------------------\n// Deployment activity base args schemas\n// ---------------------------------------------------------------------------\n\nexport const getDeploymentBaseArgsSchema = z.object({ contractName: z.string() });\nexport type GetDeploymentBaseArgs = z.infer<typeof getDeploymentBaseArgsSchema>;\n\nexport const saveDeploymentBaseArgsSchema = z.object({\n deploymentArtifact: identityOnlyDeploymentArtifactSchema,\n});\nexport type SaveDeploymentBaseArgs = z.infer<typeof saveDeploymentBaseArgsSchema>;\n\n// ---------------------------------------------------------------------------\n// Verification activity base args schemas\n// ---------------------------------------------------------------------------\n\nexport const getVerificationBaseArgsSchema = z.object({\n contractName: z.string(),\n});\nexport type GetVerificationBaseArgs = z.infer<typeof getVerificationBaseArgsSchema>;\n\nexport const extractVerificationArtifactBaseArgsSchema = z.object({\n gtx: successfulGatedTransactionSchema(),\n deploymentArtifact: fullDeploymentArtifactSchema,\n nonVerifyable: z.boolean().optional(),\n});\nexport type ExtractVerificationArtifactBaseArgs = z.infer<\n typeof extractVerificationArtifactBaseArgsSchema\n>;\n\nexport const saveVerificationBaseArgsSchema = z.object({\n deploymentArtifact: fullDeploymentArtifactSchema,\n verificationArtifact: verificationArtifactSchema,\n});\nexport type SaveVerificationBaseArgs = z.infer<typeof saveVerificationBaseArgsSchema>;\n\n// ---------------------------------------------------------------------------\n// Combined deployment + verification activity schema\n// ---------------------------------------------------------------------------\n\nexport const BaseDeploymentSavingArtifactsSchema = z.object({\n getDeployment: functionSchema({\n input: z.tuple([getDeploymentBaseArgsSchema]),\n output: z.promise(deploymentArtifactSchema.optional()),\n }),\n saveDeployment: functionSchema({\n input: z.tuple([saveDeploymentBaseArgsSchema]),\n output: z.promise(z.void()),\n }),\n getVerification: functionSchema({\n input: z.tuple([getVerificationBaseArgsSchema]),\n output: z.promise(z.any()),\n }),\n saveVerification: functionSchema({\n input: z.tuple([saveVerificationBaseArgsSchema]),\n output: z.promise(z.void()),\n }),\n});\n\n// ---------------------------------------------------------------------------\n// Deploy workflow result schemas\n// ---------------------------------------------------------------------------\n\nconst failedDeployment = z.object({\n name: z.string(),\n success: z.literal(false),\n error: z.string(),\n});\n\nconst successfulDeployment = z.object({\n name: z.string(),\n success: z.literal(true),\n deploymentArtifact: deploymentArtifactSchema,\n});\n\nexport const deployWorkflowChainResultItemSchema = z.union([\n failedDeployment,\n successfulDeployment,\n]);\n\nexport const deployWorkflowChainResultSchema = z.object({\n results: z.array(deployWorkflowChainResultItemSchema).default([]),\n});\n\n// ---------------------------------------------------------------------------\n// Deploy workflow state schemas\n// ---------------------------------------------------------------------------\n\nexport const deployWorkflowChainStateSchema = deployWorkflowChainResultSchema.extend({\n srcChain: z.enum(ChainName).optional(),\n status: z.union([z.literal('RUNNING'), z.literal('COMPLETE')]).default('RUNNING'),\n});\n\nexport const deployWorkflowOrchestratorResultSchema = z.object({\n stateByChain: z.partialRecord(z.enum(ChainName), deployWorkflowChainResultSchema).default({}),\n});\n\nexport const deployWorkflowOrchestratorStateSchema = deployWorkflowOrchestratorResultSchema.extend({\n status: z.union([z.literal('RUNNING'), z.literal('COMPLETE')]).default('RUNNING'),\n});\n\n// ---------------------------------------------------------------------------\n// Deploy workflow types\n// ---------------------------------------------------------------------------\n\nexport type DeployWorkflowChainResultItem = z.infer<typeof deployWorkflowChainResultItemSchema>;\nexport type DeployWorkflowChainResult = z.infer<typeof deployWorkflowChainResultSchema>;\nexport type DeployWorkflowChainState = z.infer<typeof deployWorkflowChainStateSchema>;\nexport type DeployWorkflowOrchestratorResult = z.infer<\n typeof deployWorkflowOrchestratorResultSchema\n>;\n\nexport type DeployWorkflowOrchestratorState = z.infer<typeof deployWorkflowOrchestratorStateSchema>;\n"]}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
'use strict';
|
|
2
2
|
|
|
3
|
-
var
|
|
4
|
-
require('../
|
|
3
|
+
var BLMCMKXA_cjs = require('../BLMCMKXA.cjs');
|
|
4
|
+
require('../TAGF43YU.cjs');
|
|
5
5
|
require('../YR4VMGBG.cjs');
|
|
6
6
|
require('../YJF4D23A.cjs');
|
|
7
7
|
|
|
@@ -9,15 +9,23 @@ require('../YJF4D23A.cjs');
|
|
|
9
9
|
|
|
10
10
|
Object.defineProperty(exports, "artifactRegistryActivityFactorySchema", {
|
|
11
11
|
enumerable: true,
|
|
12
|
-
get: function () { return
|
|
12
|
+
get: function () { return BLMCMKXA_cjs.artifactRegistryActivityFactorySchema; }
|
|
13
13
|
});
|
|
14
14
|
Object.defineProperty(exports, "realIdSchema", {
|
|
15
15
|
enumerable: true,
|
|
16
|
-
get: function () { return
|
|
16
|
+
get: function () { return BLMCMKXA_cjs.realIdSchema; }
|
|
17
17
|
});
|
|
18
18
|
Object.defineProperty(exports, "resourceRefSchema", {
|
|
19
19
|
enumerable: true,
|
|
20
|
-
get: function () { return
|
|
20
|
+
get: function () { return BLMCMKXA_cjs.resourceRefSchema; }
|
|
21
|
+
});
|
|
22
|
+
Object.defineProperty(exports, "resourceRegistryActivityFactorySchema", {
|
|
23
|
+
enumerable: true,
|
|
24
|
+
get: function () { return BLMCMKXA_cjs.resourceRegistryActivityFactorySchema; }
|
|
25
|
+
});
|
|
26
|
+
Object.defineProperty(exports, "upsertResourceRealIdArgsSchema", {
|
|
27
|
+
enumerable: true,
|
|
28
|
+
get: function () { return BLMCMKXA_cjs.upsertResourceRealIdArgsSchema; }
|
|
21
29
|
});
|
|
22
30
|
//# sourceMappingURL=factoryInterfaces.cjs.map
|
|
23
31
|
//# sourceMappingURL=factoryInterfaces.cjs.map
|
|
@@ -266,4 +266,78 @@ export declare const artifactRegistryActivityFactorySchema: z.ZodObject<{
|
|
|
266
266
|
}, z.core.$strip>;
|
|
267
267
|
export interface ArtifactRegistry extends z.infer<typeof artifactRegistryActivityFactorySchema> {
|
|
268
268
|
}
|
|
269
|
+
export declare const upsertResourceRealIdArgsSchema: z.ZodObject<{
|
|
270
|
+
ref: z.ZodObject<{
|
|
271
|
+
resourceId: z.ZodString;
|
|
272
|
+
resourceSubKey: z.ZodOptional<z.ZodString>;
|
|
273
|
+
}, z.core.$strip>;
|
|
274
|
+
realId: z.ZodObject<{
|
|
275
|
+
realIdKey: z.ZodString;
|
|
276
|
+
chainName: z.ZodOptional<z.ZodEnum<typeof ChainName>>;
|
|
277
|
+
}, z.core.$strip>;
|
|
278
|
+
}, z.core.$strip>;
|
|
279
|
+
export declare const resourceRegistryActivityFactorySchema: z.ZodObject<{
|
|
280
|
+
getResourceRealId: z.ZodType<(args_0: {
|
|
281
|
+
ref: {
|
|
282
|
+
resourceId: string;
|
|
283
|
+
resourceSubKey?: string | undefined;
|
|
284
|
+
};
|
|
285
|
+
}) => Promise<{
|
|
286
|
+
realIdKey: string;
|
|
287
|
+
chainName?: ChainName | undefined;
|
|
288
|
+
} | undefined>, unknown, z.core.$ZodTypeInternals<(args_0: {
|
|
289
|
+
ref: {
|
|
290
|
+
resourceId: string;
|
|
291
|
+
resourceSubKey?: string | undefined;
|
|
292
|
+
};
|
|
293
|
+
}) => Promise<{
|
|
294
|
+
realIdKey: string;
|
|
295
|
+
chainName?: ChainName | undefined;
|
|
296
|
+
} | undefined>, unknown>>;
|
|
297
|
+
upsertResourceRealId: z.ZodType<(args_0: {
|
|
298
|
+
ref: {
|
|
299
|
+
resourceId: string;
|
|
300
|
+
resourceSubKey?: string | undefined;
|
|
301
|
+
};
|
|
302
|
+
realId: {
|
|
303
|
+
realIdKey: string;
|
|
304
|
+
chainName?: ChainName | undefined;
|
|
305
|
+
};
|
|
306
|
+
}) => Promise<void>, unknown, z.core.$ZodTypeInternals<(args_0: {
|
|
307
|
+
ref: {
|
|
308
|
+
resourceId: string;
|
|
309
|
+
resourceSubKey?: string | undefined;
|
|
310
|
+
};
|
|
311
|
+
realId: {
|
|
312
|
+
realIdKey: string;
|
|
313
|
+
chainName?: ChainName | undefined;
|
|
314
|
+
};
|
|
315
|
+
}) => Promise<void>, unknown>>;
|
|
316
|
+
deleteResourceRealId: z.ZodType<(args_0: {
|
|
317
|
+
ref: {
|
|
318
|
+
resourceId: string;
|
|
319
|
+
resourceSubKey?: string | undefined;
|
|
320
|
+
};
|
|
321
|
+
}) => Promise<void>, unknown, z.core.$ZodTypeInternals<(args_0: {
|
|
322
|
+
ref: {
|
|
323
|
+
resourceId: string;
|
|
324
|
+
resourceSubKey?: string | undefined;
|
|
325
|
+
};
|
|
326
|
+
}) => Promise<void>, unknown>>;
|
|
327
|
+
listResourceRealIds: z.ZodType<() => Promise<{
|
|
328
|
+
resourceId: string;
|
|
329
|
+
realId: {
|
|
330
|
+
realIdKey: string;
|
|
331
|
+
chainName?: ChainName | undefined;
|
|
332
|
+
};
|
|
333
|
+
}[]>, unknown, z.core.$ZodTypeInternals<() => Promise<{
|
|
334
|
+
resourceId: string;
|
|
335
|
+
realId: {
|
|
336
|
+
realIdKey: string;
|
|
337
|
+
chainName?: ChainName | undefined;
|
|
338
|
+
};
|
|
339
|
+
}[]>, unknown>>;
|
|
340
|
+
}, z.core.$strip>;
|
|
341
|
+
export interface ResourceRegistry extends z.infer<typeof resourceRegistryActivityFactorySchema> {
|
|
342
|
+
}
|
|
269
343
|
//# sourceMappingURL=factoryInterfaces.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"factoryInterfaces.d.ts","sourceRoot":"","sources":["../../src/deploy/factoryInterfaces.ts"],"names":[],"mappings":"AAAA,OAAO,CAAC,MAAM,KAAK,CAAC;AAEpB,OAAO,EAAE,SAAS,EAAE,MAAM,sCAAsC,CAAC;AAGjE,OAAO,KAAK,EAAE,gBAAgB,EAAE,MAAM,YAAY,CAAC;AACnD,OAAO,EAAE,YAAY,EAAoD,MAAM,YAAY,CAAC;AAC5F,OAAO,KAAK,EAAgB,gBAAgB,EAAE,MAAM,aAAa,CAAC;AAGlE,eAAO,MAAM,iBAAiB;;;iBAI5B,CAAC;AAGH,eAAO,MAAM,YAAY;;;iBAIvB,CAAC;AAEH,eAAO,MAAM,qCAAqC;iBAUxC,CAAC,CAAC,OAAO,EACX,CAAC,IAAI,SAAS,YAAY,EAAE,IAAI,EAAE;QAC9B,YAAY,EAAE,IAAI,CAAC;QACnB,GAAG,EAAE,CAAC,CAAC,KAAK,CAAC,OAAO,iBAAiB,CAAC,CAAC;KAC1C,KAAK,OAAO,CAAC,OAAO,CAAC,gBAAgB,EAAE;QAAE,YAAY,EAAE,IAAI,CAAA;KAAE,CAAC,GAAG,SAAS,CAAC,EAC/E;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;iBA0DH,CAAC;AAEH,MAAM,WAAW,gBAAiB,SAAQ,CAAC,CAAC,KAAK,CAAC,OAAO,qCAAqC,CAAC;CAAG"}
|
|
1
|
+
{"version":3,"file":"factoryInterfaces.d.ts","sourceRoot":"","sources":["../../src/deploy/factoryInterfaces.ts"],"names":[],"mappings":"AAAA,OAAO,CAAC,MAAM,KAAK,CAAC;AAEpB,OAAO,EAAE,SAAS,EAAE,MAAM,sCAAsC,CAAC;AAGjE,OAAO,KAAK,EAAE,gBAAgB,EAAE,MAAM,YAAY,CAAC;AACnD,OAAO,EAAE,YAAY,EAAoD,MAAM,YAAY,CAAC;AAC5F,OAAO,KAAK,EAAgB,gBAAgB,EAAE,MAAM,aAAa,CAAC;AAGlE,eAAO,MAAM,iBAAiB;;;iBAI5B,CAAC;AAGH,eAAO,MAAM,YAAY;;;iBAIvB,CAAC;AAEH,eAAO,MAAM,qCAAqC;iBAUxC,CAAC,CAAC,OAAO,EACX,CAAC,IAAI,SAAS,YAAY,EAAE,IAAI,EAAE;QAC9B,YAAY,EAAE,IAAI,CAAC;QACnB,GAAG,EAAE,CAAC,CAAC,KAAK,CAAC,OAAO,iBAAiB,CAAC,CAAC;KAC1C,KAAK,OAAO,CAAC,OAAO,CAAC,gBAAgB,EAAE;QAAE,YAAY,EAAE,IAAI,CAAA;KAAE,CAAC,GAAG,SAAS,CAAC,EAC/E;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;iBA0DH,CAAC;AAEH,MAAM,WAAW,gBAAiB,SAAQ,CAAC,CAAC,KAAK,CAAC,OAAO,qCAAqC,CAAC;CAAG;AAElG,eAAO,MAAM,8BAA8B;;;;;;;;;iBAGzC,CAAC;AAEH,eAAO,MAAM,qCAAqC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;iBA0BhD,CAAC;AAEH,MAAM,WAAW,gBAAiB,SAAQ,CAAC,CAAC,KAAK,CAAC,OAAO,qCAAqC,CAAC;CAAG"}
|
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
export { artifactRegistryActivityFactorySchema, realIdSchema, resourceRefSchema } from '../
|
|
2
|
-
import '../
|
|
1
|
+
export { artifactRegistryActivityFactorySchema, realIdSchema, resourceRefSchema, resourceRegistryActivityFactorySchema, upsertResourceRealIdArgsSchema } from '../C4QQVVTS.js';
|
|
2
|
+
import '../YHNY3DAS.js';
|
|
3
3
|
import '../XMLZYDPF.js';
|
|
4
4
|
import '../VUOMXK5T.js';
|
|
5
5
|
//# sourceMappingURL=factoryInterfaces.js.map
|
package/dist/deploy/index.cjs
CHANGED
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
'use strict';
|
|
2
2
|
|
|
3
3
|
require('../NCHH4VK3.cjs');
|
|
4
|
-
var
|
|
4
|
+
var BLMCMKXA_cjs = require('../BLMCMKXA.cjs');
|
|
5
5
|
var ECJRGALM_cjs = require('../ECJRGALM.cjs');
|
|
6
6
|
var PUY2AOFE_cjs = require('../PUY2AOFE.cjs');
|
|
7
|
-
var _7FULMGYU_cjs = require('../7FULMGYU.cjs');
|
|
8
7
|
require('../IN5O3BJZ.cjs');
|
|
9
8
|
require('../S5CHYZ3I.cjs');
|
|
9
|
+
var TAGF43YU_cjs = require('../TAGF43YU.cjs');
|
|
10
10
|
var YR4VMGBG_cjs = require('../YR4VMGBG.cjs');
|
|
11
11
|
require('../YJF4D23A.cjs');
|
|
12
12
|
|
|
@@ -14,15 +14,23 @@ require('../YJF4D23A.cjs');
|
|
|
14
14
|
|
|
15
15
|
Object.defineProperty(exports, "artifactRegistryActivityFactorySchema", {
|
|
16
16
|
enumerable: true,
|
|
17
|
-
get: function () { return
|
|
17
|
+
get: function () { return BLMCMKXA_cjs.artifactRegistryActivityFactorySchema; }
|
|
18
18
|
});
|
|
19
19
|
Object.defineProperty(exports, "realIdSchema", {
|
|
20
20
|
enumerable: true,
|
|
21
|
-
get: function () { return
|
|
21
|
+
get: function () { return BLMCMKXA_cjs.realIdSchema; }
|
|
22
22
|
});
|
|
23
23
|
Object.defineProperty(exports, "resourceRefSchema", {
|
|
24
24
|
enumerable: true,
|
|
25
|
-
get: function () { return
|
|
25
|
+
get: function () { return BLMCMKXA_cjs.resourceRefSchema; }
|
|
26
|
+
});
|
|
27
|
+
Object.defineProperty(exports, "resourceRegistryActivityFactorySchema", {
|
|
28
|
+
enumerable: true,
|
|
29
|
+
get: function () { return BLMCMKXA_cjs.resourceRegistryActivityFactorySchema; }
|
|
30
|
+
});
|
|
31
|
+
Object.defineProperty(exports, "upsertResourceRealIdArgsSchema", {
|
|
32
|
+
enumerable: true,
|
|
33
|
+
get: function () { return BLMCMKXA_cjs.upsertResourceRealIdArgsSchema; }
|
|
26
34
|
});
|
|
27
35
|
Object.defineProperty(exports, "createResourceBuilder", {
|
|
28
36
|
enumerable: true,
|
|
@@ -90,51 +98,47 @@ Object.defineProperty(exports, "withIntrinsicAddress", {
|
|
|
90
98
|
});
|
|
91
99
|
Object.defineProperty(exports, "BaseDeploymentSavingArtifactsSchema", {
|
|
92
100
|
enumerable: true,
|
|
93
|
-
get: function () { return
|
|
94
|
-
});
|
|
95
|
-
Object.defineProperty(exports, "VerificationInfoSchema", {
|
|
96
|
-
enumerable: true,
|
|
97
|
-
get: function () { return _7FULMGYU_cjs.VerificationInfoSchema; }
|
|
101
|
+
get: function () { return TAGF43YU_cjs.BaseDeploymentSavingArtifactsSchema; }
|
|
98
102
|
});
|
|
99
103
|
Object.defineProperty(exports, "deployWorkflowChainResultItemSchema", {
|
|
100
104
|
enumerable: true,
|
|
101
|
-
get: function () { return
|
|
105
|
+
get: function () { return TAGF43YU_cjs.deployWorkflowChainResultItemSchema; }
|
|
102
106
|
});
|
|
103
107
|
Object.defineProperty(exports, "deployWorkflowChainResultSchema", {
|
|
104
108
|
enumerable: true,
|
|
105
|
-
get: function () { return
|
|
109
|
+
get: function () { return TAGF43YU_cjs.deployWorkflowChainResultSchema; }
|
|
106
110
|
});
|
|
107
111
|
Object.defineProperty(exports, "deployWorkflowChainStateSchema", {
|
|
108
112
|
enumerable: true,
|
|
109
|
-
get: function () { return
|
|
113
|
+
get: function () { return TAGF43YU_cjs.deployWorkflowChainStateSchema; }
|
|
110
114
|
});
|
|
111
115
|
Object.defineProperty(exports, "deployWorkflowOrchestratorResultSchema", {
|
|
112
116
|
enumerable: true,
|
|
113
|
-
get: function () { return
|
|
117
|
+
get: function () { return TAGF43YU_cjs.deployWorkflowOrchestratorResultSchema; }
|
|
114
118
|
});
|
|
115
119
|
Object.defineProperty(exports, "deployWorkflowOrchestratorStateSchema", {
|
|
116
120
|
enumerable: true,
|
|
117
|
-
get: function () { return
|
|
121
|
+
get: function () { return TAGF43YU_cjs.deployWorkflowOrchestratorStateSchema; }
|
|
118
122
|
});
|
|
119
|
-
Object.defineProperty(exports, "
|
|
123
|
+
Object.defineProperty(exports, "extractVerificationArtifactBaseArgsSchema", {
|
|
120
124
|
enumerable: true,
|
|
121
|
-
get: function () { return
|
|
125
|
+
get: function () { return TAGF43YU_cjs.extractVerificationArtifactBaseArgsSchema; }
|
|
122
126
|
});
|
|
123
|
-
Object.defineProperty(exports, "
|
|
127
|
+
Object.defineProperty(exports, "getDeploymentBaseArgsSchema", {
|
|
124
128
|
enumerable: true,
|
|
125
|
-
get: function () { return
|
|
129
|
+
get: function () { return TAGF43YU_cjs.getDeploymentBaseArgsSchema; }
|
|
126
130
|
});
|
|
127
|
-
Object.defineProperty(exports, "
|
|
131
|
+
Object.defineProperty(exports, "getVerificationBaseArgsSchema", {
|
|
128
132
|
enumerable: true,
|
|
129
|
-
get: function () { return
|
|
133
|
+
get: function () { return TAGF43YU_cjs.getVerificationBaseArgsSchema; }
|
|
130
134
|
});
|
|
131
|
-
Object.defineProperty(exports, "
|
|
135
|
+
Object.defineProperty(exports, "saveDeploymentBaseArgsSchema", {
|
|
132
136
|
enumerable: true,
|
|
133
|
-
get: function () { return
|
|
137
|
+
get: function () { return TAGF43YU_cjs.saveDeploymentBaseArgsSchema; }
|
|
134
138
|
});
|
|
135
|
-
Object.defineProperty(exports, "
|
|
139
|
+
Object.defineProperty(exports, "saveVerificationBaseArgsSchema", {
|
|
136
140
|
enumerable: true,
|
|
137
|
-
get: function () { return
|
|
141
|
+
get: function () { return TAGF43YU_cjs.saveVerificationBaseArgsSchema; }
|
|
138
142
|
});
|
|
139
143
|
Object.defineProperty(exports, "ArtifactType", {
|
|
140
144
|
enumerable: true,
|
package/dist/deploy/index.js
CHANGED
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
import '../CA6UC3D3.js';
|
|
2
|
-
export { artifactRegistryActivityFactorySchema, realIdSchema, resourceRefSchema } from '../
|
|
2
|
+
export { artifactRegistryActivityFactorySchema, realIdSchema, resourceRefSchema, resourceRegistryActivityFactorySchema, upsertResourceRealIdArgsSchema } from '../C4QQVVTS.js';
|
|
3
3
|
export { createResourceBuilder } from '../3BD3OCGS.js';
|
|
4
4
|
export { baseContractResourceSchema, baseMeshResourceSchema, baseResourceSchema, contractResourceReferenceSchema, contractResourceReferenceSchemaFor, createResolvedResourceSchema, extractContractResourceReferences, extractIdFromContractResourceReference, extractIdFromMeshResourceReference, extractMeshResourceReferences, meshResourceReferenceSchema, meshResourceReferenceSchemaFor, resolvedContractResourceReferenceSchema, resolvedMeshResourceReferenceSchema, withIntrinsicAddress } from '../IUFXXZ2R.js';
|
|
5
|
-
export { BaseDeploymentSavingArtifactsSchema, VerificationInfoSchema, deployWorkflowChainResultItemSchema, deployWorkflowChainResultSchema, deployWorkflowChainStateSchema, deployWorkflowOrchestratorResultSchema, deployWorkflowOrchestratorStateSchema, extractVerificationArtifactBaseArgs, getDeploymentBaseArgs, getVerificationBaseArgs, saveDeploymentBaseArgs, saveVerificationBaseArgs } from '../PHPSOUIK.js';
|
|
6
5
|
import '../ZCFXJFGI.js';
|
|
7
6
|
import '../46VB3YIH.js';
|
|
7
|
+
export { BaseDeploymentSavingArtifactsSchema, deployWorkflowChainResultItemSchema, deployWorkflowChainResultSchema, deployWorkflowChainStateSchema, deployWorkflowOrchestratorResultSchema, deployWorkflowOrchestratorStateSchema, extractVerificationArtifactBaseArgsSchema, getDeploymentBaseArgsSchema, getVerificationBaseArgsSchema, saveDeploymentBaseArgsSchema, saveVerificationBaseArgsSchema } from '../YHNY3DAS.js';
|
|
8
8
|
export { ArtifactType, artifactWithTypeSchema, deploymentArtifactSchema, fullDeploymentArtifactSchema, identityOnlyDeploymentArtifactSchema, metadataArtifactSchema, solanaDeploymentArtifactExtraInfoSchema, suiDeploymentArtifactExtraInfoSchema, verificationArtifactSchema } from '../XMLZYDPF.js';
|
|
9
9
|
import '../VUOMXK5T.js';
|
|
10
10
|
//# sourceMappingURL=index.js.map
|
package/dist/deploy/workflow.cjs
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
'use strict';
|
|
2
2
|
|
|
3
|
-
var
|
|
3
|
+
var TAGF43YU_cjs = require('../TAGF43YU.cjs');
|
|
4
4
|
require('../YR4VMGBG.cjs');
|
|
5
5
|
require('../YJF4D23A.cjs');
|
|
6
6
|
|
|
@@ -8,51 +8,47 @@ require('../YJF4D23A.cjs');
|
|
|
8
8
|
|
|
9
9
|
Object.defineProperty(exports, "BaseDeploymentSavingArtifactsSchema", {
|
|
10
10
|
enumerable: true,
|
|
11
|
-
get: function () { return
|
|
12
|
-
});
|
|
13
|
-
Object.defineProperty(exports, "VerificationInfoSchema", {
|
|
14
|
-
enumerable: true,
|
|
15
|
-
get: function () { return _7FULMGYU_cjs.VerificationInfoSchema; }
|
|
11
|
+
get: function () { return TAGF43YU_cjs.BaseDeploymentSavingArtifactsSchema; }
|
|
16
12
|
});
|
|
17
13
|
Object.defineProperty(exports, "deployWorkflowChainResultItemSchema", {
|
|
18
14
|
enumerable: true,
|
|
19
|
-
get: function () { return
|
|
15
|
+
get: function () { return TAGF43YU_cjs.deployWorkflowChainResultItemSchema; }
|
|
20
16
|
});
|
|
21
17
|
Object.defineProperty(exports, "deployWorkflowChainResultSchema", {
|
|
22
18
|
enumerable: true,
|
|
23
|
-
get: function () { return
|
|
19
|
+
get: function () { return TAGF43YU_cjs.deployWorkflowChainResultSchema; }
|
|
24
20
|
});
|
|
25
21
|
Object.defineProperty(exports, "deployWorkflowChainStateSchema", {
|
|
26
22
|
enumerable: true,
|
|
27
|
-
get: function () { return
|
|
23
|
+
get: function () { return TAGF43YU_cjs.deployWorkflowChainStateSchema; }
|
|
28
24
|
});
|
|
29
25
|
Object.defineProperty(exports, "deployWorkflowOrchestratorResultSchema", {
|
|
30
26
|
enumerable: true,
|
|
31
|
-
get: function () { return
|
|
27
|
+
get: function () { return TAGF43YU_cjs.deployWorkflowOrchestratorResultSchema; }
|
|
32
28
|
});
|
|
33
29
|
Object.defineProperty(exports, "deployWorkflowOrchestratorStateSchema", {
|
|
34
30
|
enumerable: true,
|
|
35
|
-
get: function () { return
|
|
31
|
+
get: function () { return TAGF43YU_cjs.deployWorkflowOrchestratorStateSchema; }
|
|
36
32
|
});
|
|
37
|
-
Object.defineProperty(exports, "
|
|
33
|
+
Object.defineProperty(exports, "extractVerificationArtifactBaseArgsSchema", {
|
|
38
34
|
enumerable: true,
|
|
39
|
-
get: function () { return
|
|
35
|
+
get: function () { return TAGF43YU_cjs.extractVerificationArtifactBaseArgsSchema; }
|
|
40
36
|
});
|
|
41
|
-
Object.defineProperty(exports, "
|
|
37
|
+
Object.defineProperty(exports, "getDeploymentBaseArgsSchema", {
|
|
42
38
|
enumerable: true,
|
|
43
|
-
get: function () { return
|
|
39
|
+
get: function () { return TAGF43YU_cjs.getDeploymentBaseArgsSchema; }
|
|
44
40
|
});
|
|
45
|
-
Object.defineProperty(exports, "
|
|
41
|
+
Object.defineProperty(exports, "getVerificationBaseArgsSchema", {
|
|
46
42
|
enumerable: true,
|
|
47
|
-
get: function () { return
|
|
43
|
+
get: function () { return TAGF43YU_cjs.getVerificationBaseArgsSchema; }
|
|
48
44
|
});
|
|
49
|
-
Object.defineProperty(exports, "
|
|
45
|
+
Object.defineProperty(exports, "saveDeploymentBaseArgsSchema", {
|
|
50
46
|
enumerable: true,
|
|
51
|
-
get: function () { return
|
|
47
|
+
get: function () { return TAGF43YU_cjs.saveDeploymentBaseArgsSchema; }
|
|
52
48
|
});
|
|
53
|
-
Object.defineProperty(exports, "
|
|
49
|
+
Object.defineProperty(exports, "saveVerificationBaseArgsSchema", {
|
|
54
50
|
enumerable: true,
|
|
55
|
-
get: function () { return
|
|
51
|
+
get: function () { return TAGF43YU_cjs.saveVerificationBaseArgsSchema; }
|
|
56
52
|
});
|
|
57
53
|
//# sourceMappingURL=workflow.cjs.map
|
|
58
54
|
//# sourceMappingURL=workflow.cjs.map
|