@layerzerolabs/dw-model 0.2.68 → 0.2.70
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/dist/372UIOTW.js +107 -0
- package/dist/372UIOTW.js.map +1 -0
- package/dist/{2XSWEWFA.cjs → FOB7D4D6.cjs} +15 -83
- package/dist/FOB7D4D6.cjs.map +1 -0
- package/dist/{MHBV7XHL.js → G43GXBX5.js} +2 -4
- package/dist/G43GXBX5.js.map +1 -0
- package/dist/GLPJHNSD.js +25 -0
- package/dist/GLPJHNSD.js.map +1 -0
- package/dist/{NJ2LWIGZ.cjs → HCK5GXNH.cjs} +2 -4
- package/dist/HCK5GXNH.cjs.map +1 -0
- package/dist/MR335VWI.cjs +29 -0
- package/dist/MR335VWI.cjs.map +1 -0
- package/dist/deploy/artifact.cjs +10 -10
- package/dist/deploy/artifact.d.ts +0 -6
- package/dist/deploy/artifact.d.ts.map +1 -1
- package/dist/deploy/artifact.js +1 -1
- package/dist/deploy/factoryInterfaces.cjs +8 -9
- package/dist/deploy/factoryInterfaces.d.ts +14 -168
- package/dist/deploy/factoryInterfaces.d.ts.map +1 -1
- package/dist/deploy/factoryInterfaces.js +2 -3
- package/dist/deploy/index.cjs +48 -80
- package/dist/deploy/index.js +3 -3
- package/dist/deploy/workflow.cjs +4 -37
- package/dist/deploy/workflow.d.ts +2 -283
- package/dist/deploy/workflow.d.ts.map +1 -1
- package/dist/deploy/workflow.js +1 -2
- package/dist/index.cjs +48 -80
- package/dist/index.js +3 -3
- package/dist/role-management/generator.d.ts +1 -1
- package/dist/role-management/schemata.d.ts +20 -20
- package/dist/role-management/schemata.d.ts.map +1 -1
- package/package.json +12 -9
- package/.turbo/turbo-build.log +0 -143
- package/.turbo/turbo-lint.log +0 -8
- package/.turbo/turbo-test.log +0 -16
- package/dist/2XSWEWFA.cjs.map +0 -1
- package/dist/DRX4MXDW.js +0 -87
- package/dist/DRX4MXDW.js.map +0 -1
- package/dist/FVBHJFVE.cjs +0 -99
- package/dist/FVBHJFVE.cjs.map +0 -1
- package/dist/KK5K3STO.js +0 -175
- package/dist/KK5K3STO.js.map +0 -1
- package/dist/MHBV7XHL.js.map +0 -1
- package/dist/NJ2LWIGZ.cjs.map +0 -1
- package/src/deploy/artifact.ts +0 -99
- package/src/deploy/factoryInterfaces.ts +0 -203
- package/src/deploy/index.ts +0 -5
- package/src/deploy/resourceBuilder.ts +0 -79
- package/src/deploy/resources.md +0 -84
- package/src/deploy/resources.ts +0 -205
- package/src/deploy/workflow.ts +0 -140
- package/src/index.ts +0 -4
- package/src/role-management/generator.ts +0 -17
- package/src/role-management/index.ts +0 -3
- package/src/role-management/schemata.ts +0 -180
- package/src/role-management/types.ts +0 -5
- package/src/upgrade/index.ts +0 -1
- package/src/upgrade/types.ts +0 -159
- package/src/wire/index.ts +0 -1
- package/src/wire/schemata.ts +0 -63
- package/tsconfig.json +0 -20
- package/tsup.config.ts +0 -8
|
@@ -1,7 +1,6 @@
|
|
|
1
1
|
import z from 'zod';
|
|
2
2
|
import type { ArtifactWithType } from './artifact';
|
|
3
3
|
import { ArtifactType } from './artifact';
|
|
4
|
-
import type { BaseResource, ResolvedResource } from './resources';
|
|
5
4
|
export declare const resourceRefSchema: z.ZodObject<{
|
|
6
5
|
resourceId: z.ZodString;
|
|
7
6
|
resourceSubKey: z.ZodOptional<z.ZodString>;
|
|
@@ -11,6 +10,19 @@ export declare const realIdSchema: z.ZodObject<{
|
|
|
11
10
|
chainName: z.ZodOptional<z.ZodEnum<typeof import("@layerzerolabs/layerzero-definitions").ChainName>>;
|
|
12
11
|
}, z.core.$strip>;
|
|
13
12
|
export declare const artifactRegistryActivityFactorySchema: z.ZodObject<{
|
|
13
|
+
hasArtifact: z.ZodType<(args_0: {
|
|
14
|
+
ref: {
|
|
15
|
+
resourceId: string;
|
|
16
|
+
resourceSubKey?: string | undefined;
|
|
17
|
+
};
|
|
18
|
+
artifactType: ArtifactType;
|
|
19
|
+
}) => Promise<boolean>, unknown, z.core.$ZodTypeInternals<(args_0: {
|
|
20
|
+
ref: {
|
|
21
|
+
resourceId: string;
|
|
22
|
+
resourceSubKey?: string | undefined;
|
|
23
|
+
};
|
|
24
|
+
artifactType: ArtifactType;
|
|
25
|
+
}) => Promise<boolean>, unknown>>;
|
|
14
26
|
getArtifact: z.ZodType<(<Type extends ArtifactType>(args: {
|
|
15
27
|
artifactType: Type;
|
|
16
28
|
ref: z.infer<typeof resourceRefSchema>;
|
|
@@ -25,11 +37,9 @@ export declare const artifactRegistryActivityFactorySchema: z.ZodObject<{
|
|
|
25
37
|
artifact: {
|
|
26
38
|
artifactType: ArtifactType.DEPLOYMENT;
|
|
27
39
|
artifact: {
|
|
28
|
-
contractName: string;
|
|
29
40
|
chainName: import("@layerzerolabs/layerzero-definitions").ChainName;
|
|
30
41
|
address: import("@layerzerolabs/typescript-utils").NormalizedHexString;
|
|
31
42
|
} | {
|
|
32
|
-
contractName: string;
|
|
33
43
|
chainName: import("@layerzerolabs/layerzero-definitions").ChainName;
|
|
34
44
|
address: import("@layerzerolabs/typescript-utils").NormalizedHexString;
|
|
35
45
|
nativeAddress: string;
|
|
@@ -58,11 +68,9 @@ export declare const artifactRegistryActivityFactorySchema: z.ZodObject<{
|
|
|
58
68
|
artifact: {
|
|
59
69
|
artifactType: ArtifactType.DEPLOYMENT;
|
|
60
70
|
artifact: {
|
|
61
|
-
contractName: string;
|
|
62
71
|
chainName: import("@layerzerolabs/layerzero-definitions").ChainName;
|
|
63
72
|
address: import("@layerzerolabs/typescript-utils").NormalizedHexString;
|
|
64
73
|
} | {
|
|
65
|
-
contractName: string;
|
|
66
74
|
chainName: import("@layerzerolabs/layerzero-definitions").ChainName;
|
|
67
75
|
address: import("@layerzerolabs/typescript-utils").NormalizedHexString;
|
|
68
76
|
nativeAddress: string;
|
|
@@ -84,175 +92,13 @@ export declare const artifactRegistryActivityFactorySchema: z.ZodObject<{
|
|
|
84
92
|
};
|
|
85
93
|
};
|
|
86
94
|
}) => Promise<void>, unknown>>;
|
|
87
|
-
getDeployment: z.ZodType<(args_0: {
|
|
88
|
-
resource: {
|
|
89
|
-
id: string;
|
|
90
|
-
resourceBaseType: z.core.util.Literal;
|
|
91
|
-
} | ResolvedResource<{
|
|
92
|
-
id: string;
|
|
93
|
-
resourceBaseType: z.core.util.Literal;
|
|
94
|
-
}>;
|
|
95
|
-
}, args_1: {
|
|
96
|
-
contractName: string;
|
|
97
|
-
}) => Promise<{
|
|
98
|
-
contractName: string;
|
|
99
|
-
chainName: import("@layerzerolabs/layerzero-definitions").ChainName;
|
|
100
|
-
address: import("@layerzerolabs/typescript-utils").NormalizedHexString;
|
|
101
|
-
} | {
|
|
102
|
-
contractName: string;
|
|
103
|
-
chainName: import("@layerzerolabs/layerzero-definitions").ChainName;
|
|
104
|
-
address: import("@layerzerolabs/typescript-utils").NormalizedHexString;
|
|
105
|
-
nativeAddress: string;
|
|
106
|
-
deploymentTimestamp: number;
|
|
107
|
-
deployerAddress: import("@layerzerolabs/typescript-utils").NormalizedHexString;
|
|
108
|
-
txHash: string;
|
|
109
|
-
bytecodeHash?: string | undefined;
|
|
110
|
-
extraDeploymentInfo?: any;
|
|
111
|
-
} | undefined>, unknown, z.core.$ZodTypeInternals<(args_0: {
|
|
112
|
-
resource: {
|
|
113
|
-
id: string;
|
|
114
|
-
resourceBaseType: z.core.util.Literal;
|
|
115
|
-
} | ResolvedResource<{
|
|
116
|
-
id: string;
|
|
117
|
-
resourceBaseType: z.core.util.Literal;
|
|
118
|
-
}>;
|
|
119
|
-
}, args_1: {
|
|
120
|
-
contractName: string;
|
|
121
|
-
}) => Promise<{
|
|
122
|
-
contractName: string;
|
|
123
|
-
chainName: import("@layerzerolabs/layerzero-definitions").ChainName;
|
|
124
|
-
address: import("@layerzerolabs/typescript-utils").NormalizedHexString;
|
|
125
|
-
} | {
|
|
126
|
-
contractName: string;
|
|
127
|
-
chainName: import("@layerzerolabs/layerzero-definitions").ChainName;
|
|
128
|
-
address: import("@layerzerolabs/typescript-utils").NormalizedHexString;
|
|
129
|
-
nativeAddress: string;
|
|
130
|
-
deploymentTimestamp: number;
|
|
131
|
-
deployerAddress: import("@layerzerolabs/typescript-utils").NormalizedHexString;
|
|
132
|
-
txHash: string;
|
|
133
|
-
bytecodeHash?: string | undefined;
|
|
134
|
-
extraDeploymentInfo?: any;
|
|
135
|
-
} | undefined>, unknown>>;
|
|
136
|
-
saveDeployment: z.ZodType<(args_0: {
|
|
137
|
-
resource: {
|
|
138
|
-
id: string;
|
|
139
|
-
resourceBaseType: z.core.util.Literal;
|
|
140
|
-
} | ResolvedResource<{
|
|
141
|
-
id: string;
|
|
142
|
-
resourceBaseType: z.core.util.Literal;
|
|
143
|
-
}>;
|
|
144
|
-
}, args_1: {
|
|
145
|
-
deploymentArtifact: {
|
|
146
|
-
contractName: string;
|
|
147
|
-
chainName: import("@layerzerolabs/layerzero-definitions").ChainName;
|
|
148
|
-
address: import("@layerzerolabs/typescript-utils").NormalizedHexString;
|
|
149
|
-
} | {
|
|
150
|
-
contractName: string;
|
|
151
|
-
chainName: import("@layerzerolabs/layerzero-definitions").ChainName;
|
|
152
|
-
address: import("@layerzerolabs/typescript-utils").NormalizedHexString;
|
|
153
|
-
nativeAddress: string;
|
|
154
|
-
deploymentTimestamp: number;
|
|
155
|
-
deployerAddress: import("@layerzerolabs/typescript-utils").NormalizedHexString;
|
|
156
|
-
txHash: string;
|
|
157
|
-
bytecodeHash?: string | undefined;
|
|
158
|
-
extraDeploymentInfo?: any;
|
|
159
|
-
};
|
|
160
|
-
}) => Promise<void>, unknown, z.core.$ZodTypeInternals<(args_0: {
|
|
161
|
-
resource: {
|
|
162
|
-
id: string;
|
|
163
|
-
resourceBaseType: z.core.util.Literal;
|
|
164
|
-
} | ResolvedResource<{
|
|
165
|
-
id: string;
|
|
166
|
-
resourceBaseType: z.core.util.Literal;
|
|
167
|
-
}>;
|
|
168
|
-
}, args_1: {
|
|
169
|
-
deploymentArtifact: {
|
|
170
|
-
contractName: string;
|
|
171
|
-
chainName: import("@layerzerolabs/layerzero-definitions").ChainName;
|
|
172
|
-
address: import("@layerzerolabs/typescript-utils").NormalizedHexString;
|
|
173
|
-
} | {
|
|
174
|
-
contractName: string;
|
|
175
|
-
chainName: import("@layerzerolabs/layerzero-definitions").ChainName;
|
|
176
|
-
address: import("@layerzerolabs/typescript-utils").NormalizedHexString;
|
|
177
|
-
nativeAddress: string;
|
|
178
|
-
deploymentTimestamp: number;
|
|
179
|
-
deployerAddress: import("@layerzerolabs/typescript-utils").NormalizedHexString;
|
|
180
|
-
txHash: string;
|
|
181
|
-
bytecodeHash?: string | undefined;
|
|
182
|
-
extraDeploymentInfo?: any;
|
|
183
|
-
};
|
|
184
|
-
}) => Promise<void>, unknown>>;
|
|
185
|
-
getVerification: z.ZodType<(args_0: {
|
|
186
|
-
resource: {
|
|
187
|
-
id: string;
|
|
188
|
-
resourceBaseType: z.core.util.Literal;
|
|
189
|
-
} | ResolvedResource<{
|
|
190
|
-
id: string;
|
|
191
|
-
resourceBaseType: z.core.util.Literal;
|
|
192
|
-
}>;
|
|
193
|
-
}, args_1: {
|
|
194
|
-
contractName: string;
|
|
195
|
-
}) => Promise<any>, unknown, z.core.$ZodTypeInternals<(args_0: {
|
|
196
|
-
resource: {
|
|
197
|
-
id: string;
|
|
198
|
-
resourceBaseType: z.core.util.Literal;
|
|
199
|
-
} | ResolvedResource<{
|
|
200
|
-
id: string;
|
|
201
|
-
resourceBaseType: z.core.util.Literal;
|
|
202
|
-
}>;
|
|
203
|
-
}, args_1: {
|
|
204
|
-
contractName: string;
|
|
205
|
-
}) => Promise<any>, unknown>>;
|
|
206
|
-
saveVerification: z.ZodType<(args_0: {
|
|
207
|
-
resource: {
|
|
208
|
-
id: string;
|
|
209
|
-
resourceBaseType: z.core.util.Literal;
|
|
210
|
-
} | ResolvedResource<{
|
|
211
|
-
id: string;
|
|
212
|
-
resourceBaseType: z.core.util.Literal;
|
|
213
|
-
}>;
|
|
214
|
-
}, args_1: {
|
|
215
|
-
deploymentArtifact: {
|
|
216
|
-
contractName: string;
|
|
217
|
-
chainName: import("@layerzerolabs/layerzero-definitions").ChainName;
|
|
218
|
-
address: import("@layerzerolabs/typescript-utils").NormalizedHexString;
|
|
219
|
-
nativeAddress: string;
|
|
220
|
-
deploymentTimestamp: number;
|
|
221
|
-
deployerAddress: import("@layerzerolabs/typescript-utils").NormalizedHexString;
|
|
222
|
-
txHash: string;
|
|
223
|
-
bytecodeHash?: string | undefined;
|
|
224
|
-
extraDeploymentInfo?: any;
|
|
225
|
-
};
|
|
226
|
-
verificationArtifact: any;
|
|
227
|
-
}) => Promise<void>, unknown, z.core.$ZodTypeInternals<(args_0: {
|
|
228
|
-
resource: {
|
|
229
|
-
id: string;
|
|
230
|
-
resourceBaseType: z.core.util.Literal;
|
|
231
|
-
} | ResolvedResource<{
|
|
232
|
-
id: string;
|
|
233
|
-
resourceBaseType: z.core.util.Literal;
|
|
234
|
-
}>;
|
|
235
|
-
}, args_1: {
|
|
236
|
-
deploymentArtifact: {
|
|
237
|
-
contractName: string;
|
|
238
|
-
chainName: import("@layerzerolabs/layerzero-definitions").ChainName;
|
|
239
|
-
address: import("@layerzerolabs/typescript-utils").NormalizedHexString;
|
|
240
|
-
nativeAddress: string;
|
|
241
|
-
deploymentTimestamp: number;
|
|
242
|
-
deployerAddress: import("@layerzerolabs/typescript-utils").NormalizedHexString;
|
|
243
|
-
txHash: string;
|
|
244
|
-
bytecodeHash?: string | undefined;
|
|
245
|
-
extraDeploymentInfo?: any;
|
|
246
|
-
};
|
|
247
|
-
verificationArtifact: any;
|
|
248
|
-
}) => Promise<void>, unknown>>;
|
|
249
95
|
}, z.core.$strip>;
|
|
250
96
|
export interface ArtifactRegistry extends z.infer<typeof artifactRegistryActivityFactorySchema> {
|
|
251
97
|
}
|
|
252
98
|
export interface MockArtifactRegistry extends ArtifactRegistry {
|
|
253
99
|
getAllArtifacts: () => ArtifactWithType[];
|
|
254
100
|
}
|
|
255
|
-
export declare const createMockArtifactRegistry: (
|
|
101
|
+
export declare const createMockArtifactRegistry: () => MockArtifactRegistry;
|
|
256
102
|
export declare const upsertResourceRealIdArgsSchema: z.ZodObject<{
|
|
257
103
|
ref: z.ZodObject<{
|
|
258
104
|
resourceId: z.ZodString;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"factoryInterfaces.d.ts","sourceRoot":"","sources":["../../src/deploy/factoryInterfaces.ts"],"names":[],"mappings":"AAAA,OAAO,CAAC,MAAM,KAAK,CAAC;AAKpB,OAAO,KAAK,EAAE,gBAAgB,EAAE,MAAM,YAAY,CAAC;AACnD,OAAO,EAAE,YAAY,
|
|
1
|
+
{"version":3,"file":"factoryInterfaces.d.ts","sourceRoot":"","sources":["../../src/deploy/factoryInterfaces.ts"],"names":[],"mappings":"AAAA,OAAO,CAAC,MAAM,KAAK,CAAC;AAKpB,OAAO,KAAK,EAAE,gBAAgB,EAAE,MAAM,YAAY,CAAC;AACnD,OAAO,EAAE,YAAY,EAA0B,MAAM,YAAY,CAAC;AAElE,eAAO,MAAM,iBAAiB;;;iBAI5B,CAAC;AAGH,eAAO,MAAM,YAAY;;;iBAIvB,CAAC;AAEH,eAAO,MAAM,qCAAqC;;;;;;;;;;;;;;iBAqBxC,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;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;iBAWH,CAAC;AAEH,MAAM,WAAW,gBAAiB,SAAQ,CAAC,CAAC,KAAK,CAAC,OAAO,qCAAqC,CAAC;CAAG;AAElG,MAAM,WAAW,oBAAqB,SAAQ,gBAAgB;IAC1D,eAAe,EAAE,MAAM,gBAAgB,EAAE,CAAC;CAC7C;AACD,eAAO,MAAM,0BAA0B,QAAO,oBAoB7C,CAAC;AAEF,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,6 +1,5 @@
|
|
|
1
|
-
export { artifactRegistryActivityFactorySchema, createMockArtifactRegistry, realIdSchema, resourceRefSchema, resourceRegistryActivityFactorySchema, upsertResourceRealIdArgsSchema } from '../
|
|
2
|
-
import '../
|
|
3
|
-
import '../MHBV7XHL.js';
|
|
1
|
+
export { artifactRegistryActivityFactorySchema, createMockArtifactRegistry, realIdSchema, resourceRefSchema, resourceRegistryActivityFactorySchema, upsertResourceRealIdArgsSchema } from '../372UIOTW.js';
|
|
2
|
+
import '../G43GXBX5.js';
|
|
4
3
|
import '../VUOMXK5T.js';
|
|
5
4
|
//# sourceMappingURL=factoryInterfaces.js.map
|
|
6
5
|
//# sourceMappingURL=factoryInterfaces.js.map
|
package/dist/deploy/index.cjs
CHANGED
|
@@ -1,40 +1,76 @@
|
|
|
1
1
|
'use strict';
|
|
2
2
|
|
|
3
3
|
require('../NCHH4VK3.cjs');
|
|
4
|
-
var
|
|
4
|
+
var FOB7D4D6_cjs = require('../FOB7D4D6.cjs');
|
|
5
|
+
var HCK5GXNH_cjs = require('../HCK5GXNH.cjs');
|
|
5
6
|
var DE7P6XTU_cjs = require('../DE7P6XTU.cjs');
|
|
6
7
|
var JZZWB7DM_cjs = require('../JZZWB7DM.cjs');
|
|
7
8
|
require('../IN5O3BJZ.cjs');
|
|
8
9
|
require('../HH5WI3G5.cjs');
|
|
9
|
-
var
|
|
10
|
-
var NJ2LWIGZ_cjs = require('../NJ2LWIGZ.cjs');
|
|
10
|
+
var MR335VWI_cjs = require('../MR335VWI.cjs');
|
|
11
11
|
require('../YJF4D23A.cjs');
|
|
12
12
|
|
|
13
13
|
|
|
14
14
|
|
|
15
15
|
Object.defineProperty(exports, "artifactRegistryActivityFactorySchema", {
|
|
16
16
|
enumerable: true,
|
|
17
|
-
get: function () { return
|
|
17
|
+
get: function () { return FOB7D4D6_cjs.artifactRegistryActivityFactorySchema; }
|
|
18
18
|
});
|
|
19
19
|
Object.defineProperty(exports, "createMockArtifactRegistry", {
|
|
20
20
|
enumerable: true,
|
|
21
|
-
get: function () { return
|
|
21
|
+
get: function () { return FOB7D4D6_cjs.createMockArtifactRegistry; }
|
|
22
22
|
});
|
|
23
23
|
Object.defineProperty(exports, "realIdSchema", {
|
|
24
24
|
enumerable: true,
|
|
25
|
-
get: function () { return
|
|
25
|
+
get: function () { return FOB7D4D6_cjs.realIdSchema; }
|
|
26
26
|
});
|
|
27
27
|
Object.defineProperty(exports, "resourceRefSchema", {
|
|
28
28
|
enumerable: true,
|
|
29
|
-
get: function () { return
|
|
29
|
+
get: function () { return FOB7D4D6_cjs.resourceRefSchema; }
|
|
30
30
|
});
|
|
31
31
|
Object.defineProperty(exports, "resourceRegistryActivityFactorySchema", {
|
|
32
32
|
enumerable: true,
|
|
33
|
-
get: function () { return
|
|
33
|
+
get: function () { return FOB7D4D6_cjs.resourceRegistryActivityFactorySchema; }
|
|
34
34
|
});
|
|
35
35
|
Object.defineProperty(exports, "upsertResourceRealIdArgsSchema", {
|
|
36
36
|
enumerable: true,
|
|
37
|
-
get: function () { return
|
|
37
|
+
get: function () { return FOB7D4D6_cjs.upsertResourceRealIdArgsSchema; }
|
|
38
|
+
});
|
|
39
|
+
Object.defineProperty(exports, "ArtifactType", {
|
|
40
|
+
enumerable: true,
|
|
41
|
+
get: function () { return HCK5GXNH_cjs.ArtifactType; }
|
|
42
|
+
});
|
|
43
|
+
Object.defineProperty(exports, "artifactWithTypeSchema", {
|
|
44
|
+
enumerable: true,
|
|
45
|
+
get: function () { return HCK5GXNH_cjs.artifactWithTypeSchema; }
|
|
46
|
+
});
|
|
47
|
+
Object.defineProperty(exports, "deploymentArtifactSchema", {
|
|
48
|
+
enumerable: true,
|
|
49
|
+
get: function () { return HCK5GXNH_cjs.deploymentArtifactSchema; }
|
|
50
|
+
});
|
|
51
|
+
Object.defineProperty(exports, "fullDeploymentArtifactSchema", {
|
|
52
|
+
enumerable: true,
|
|
53
|
+
get: function () { return HCK5GXNH_cjs.fullDeploymentArtifactSchema; }
|
|
54
|
+
});
|
|
55
|
+
Object.defineProperty(exports, "identityOnlyDeploymentArtifactSchema", {
|
|
56
|
+
enumerable: true,
|
|
57
|
+
get: function () { return HCK5GXNH_cjs.identityOnlyDeploymentArtifactSchema; }
|
|
58
|
+
});
|
|
59
|
+
Object.defineProperty(exports, "metadataArtifactSchema", {
|
|
60
|
+
enumerable: true,
|
|
61
|
+
get: function () { return HCK5GXNH_cjs.metadataArtifactSchema; }
|
|
62
|
+
});
|
|
63
|
+
Object.defineProperty(exports, "solanaDeploymentArtifactExtraInfoSchema", {
|
|
64
|
+
enumerable: true,
|
|
65
|
+
get: function () { return HCK5GXNH_cjs.solanaDeploymentArtifactExtraInfoSchema; }
|
|
66
|
+
});
|
|
67
|
+
Object.defineProperty(exports, "suiDeploymentArtifactExtraInfoSchema", {
|
|
68
|
+
enumerable: true,
|
|
69
|
+
get: function () { return HCK5GXNH_cjs.suiDeploymentArtifactExtraInfoSchema; }
|
|
70
|
+
});
|
|
71
|
+
Object.defineProperty(exports, "verificationArtifactSchema", {
|
|
72
|
+
enumerable: true,
|
|
73
|
+
get: function () { return HCK5GXNH_cjs.verificationArtifactSchema; }
|
|
38
74
|
});
|
|
39
75
|
Object.defineProperty(exports, "createResourceBuilder", {
|
|
40
76
|
enumerable: true,
|
|
@@ -100,85 +136,17 @@ Object.defineProperty(exports, "withIntrinsicAddress", {
|
|
|
100
136
|
enumerable: true,
|
|
101
137
|
get: function () { return JZZWB7DM_cjs.withIntrinsicAddress; }
|
|
102
138
|
});
|
|
103
|
-
Object.defineProperty(exports, "baseDeploymentSavingArtifactsSchema", {
|
|
104
|
-
enumerable: true,
|
|
105
|
-
get: function () { return FVBHJFVE_cjs.baseDeploymentSavingArtifactsSchema; }
|
|
106
|
-
});
|
|
107
|
-
Object.defineProperty(exports, "deployWorkflowChainResultItemSchema", {
|
|
108
|
-
enumerable: true,
|
|
109
|
-
get: function () { return FVBHJFVE_cjs.deployWorkflowChainResultItemSchema; }
|
|
110
|
-
});
|
|
111
|
-
Object.defineProperty(exports, "deployWorkflowChainResultSchema", {
|
|
112
|
-
enumerable: true,
|
|
113
|
-
get: function () { return FVBHJFVE_cjs.deployWorkflowChainResultSchema; }
|
|
114
|
-
});
|
|
115
139
|
Object.defineProperty(exports, "deployWorkflowChainStateSchema", {
|
|
116
140
|
enumerable: true,
|
|
117
|
-
get: function () { return
|
|
118
|
-
});
|
|
119
|
-
Object.defineProperty(exports, "deployWorkflowOrchestratorResultSchema", {
|
|
120
|
-
enumerable: true,
|
|
121
|
-
get: function () { return FVBHJFVE_cjs.deployWorkflowOrchestratorResultSchema; }
|
|
141
|
+
get: function () { return MR335VWI_cjs.deployWorkflowChainStateSchema; }
|
|
122
142
|
});
|
|
123
143
|
Object.defineProperty(exports, "deployWorkflowOrchestratorStateSchema", {
|
|
124
144
|
enumerable: true,
|
|
125
|
-
get: function () { return
|
|
145
|
+
get: function () { return MR335VWI_cjs.deployWorkflowOrchestratorStateSchema; }
|
|
126
146
|
});
|
|
127
147
|
Object.defineProperty(exports, "extractVerificationArtifactBaseArgsSchema", {
|
|
128
148
|
enumerable: true,
|
|
129
|
-
get: function () { return
|
|
130
|
-
});
|
|
131
|
-
Object.defineProperty(exports, "getDeploymentBaseArgsSchema", {
|
|
132
|
-
enumerable: true,
|
|
133
|
-
get: function () { return FVBHJFVE_cjs.getDeploymentBaseArgsSchema; }
|
|
134
|
-
});
|
|
135
|
-
Object.defineProperty(exports, "getVerificationBaseArgsSchema", {
|
|
136
|
-
enumerable: true,
|
|
137
|
-
get: function () { return FVBHJFVE_cjs.getVerificationBaseArgsSchema; }
|
|
138
|
-
});
|
|
139
|
-
Object.defineProperty(exports, "saveDeploymentBaseArgsSchema", {
|
|
140
|
-
enumerable: true,
|
|
141
|
-
get: function () { return FVBHJFVE_cjs.saveDeploymentBaseArgsSchema; }
|
|
142
|
-
});
|
|
143
|
-
Object.defineProperty(exports, "saveVerificationBaseArgsSchema", {
|
|
144
|
-
enumerable: true,
|
|
145
|
-
get: function () { return FVBHJFVE_cjs.saveVerificationBaseArgsSchema; }
|
|
146
|
-
});
|
|
147
|
-
Object.defineProperty(exports, "ArtifactType", {
|
|
148
|
-
enumerable: true,
|
|
149
|
-
get: function () { return NJ2LWIGZ_cjs.ArtifactType; }
|
|
150
|
-
});
|
|
151
|
-
Object.defineProperty(exports, "artifactWithTypeSchema", {
|
|
152
|
-
enumerable: true,
|
|
153
|
-
get: function () { return NJ2LWIGZ_cjs.artifactWithTypeSchema; }
|
|
154
|
-
});
|
|
155
|
-
Object.defineProperty(exports, "deploymentArtifactSchema", {
|
|
156
|
-
enumerable: true,
|
|
157
|
-
get: function () { return NJ2LWIGZ_cjs.deploymentArtifactSchema; }
|
|
158
|
-
});
|
|
159
|
-
Object.defineProperty(exports, "fullDeploymentArtifactSchema", {
|
|
160
|
-
enumerable: true,
|
|
161
|
-
get: function () { return NJ2LWIGZ_cjs.fullDeploymentArtifactSchema; }
|
|
162
|
-
});
|
|
163
|
-
Object.defineProperty(exports, "identityOnlyDeploymentArtifactSchema", {
|
|
164
|
-
enumerable: true,
|
|
165
|
-
get: function () { return NJ2LWIGZ_cjs.identityOnlyDeploymentArtifactSchema; }
|
|
166
|
-
});
|
|
167
|
-
Object.defineProperty(exports, "metadataArtifactSchema", {
|
|
168
|
-
enumerable: true,
|
|
169
|
-
get: function () { return NJ2LWIGZ_cjs.metadataArtifactSchema; }
|
|
170
|
-
});
|
|
171
|
-
Object.defineProperty(exports, "solanaDeploymentArtifactExtraInfoSchema", {
|
|
172
|
-
enumerable: true,
|
|
173
|
-
get: function () { return NJ2LWIGZ_cjs.solanaDeploymentArtifactExtraInfoSchema; }
|
|
174
|
-
});
|
|
175
|
-
Object.defineProperty(exports, "suiDeploymentArtifactExtraInfoSchema", {
|
|
176
|
-
enumerable: true,
|
|
177
|
-
get: function () { return NJ2LWIGZ_cjs.suiDeploymentArtifactExtraInfoSchema; }
|
|
178
|
-
});
|
|
179
|
-
Object.defineProperty(exports, "verificationArtifactSchema", {
|
|
180
|
-
enumerable: true,
|
|
181
|
-
get: function () { return NJ2LWIGZ_cjs.verificationArtifactSchema; }
|
|
149
|
+
get: function () { return MR335VWI_cjs.extractVerificationArtifactBaseArgsSchema; }
|
|
182
150
|
});
|
|
183
151
|
//# sourceMappingURL=index.cjs.map
|
|
184
152
|
//# sourceMappingURL=index.cjs.map
|
package/dist/deploy/index.js
CHANGED
|
@@ -1,11 +1,11 @@
|
|
|
1
1
|
import '../CA6UC3D3.js';
|
|
2
|
-
export { artifactRegistryActivityFactorySchema, createMockArtifactRegistry, realIdSchema, resourceRefSchema, resourceRegistryActivityFactorySchema, upsertResourceRealIdArgsSchema } from '../
|
|
2
|
+
export { artifactRegistryActivityFactorySchema, createMockArtifactRegistry, realIdSchema, resourceRefSchema, resourceRegistryActivityFactorySchema, upsertResourceRealIdArgsSchema } from '../372UIOTW.js';
|
|
3
|
+
export { ArtifactType, artifactWithTypeSchema, deploymentArtifactSchema, fullDeploymentArtifactSchema, identityOnlyDeploymentArtifactSchema, metadataArtifactSchema, solanaDeploymentArtifactExtraInfoSchema, suiDeploymentArtifactExtraInfoSchema, verificationArtifactSchema } from '../G43GXBX5.js';
|
|
3
4
|
export { createResourceBuilder } from '../3GB3YEFM.js';
|
|
4
5
|
export { baseContractResourceSchema, baseMeshResourceSchema, baseResourceSchema, contractResourceReferenceSchema, contractResourceReferenceSchemaFor, createResolvedResourceSchema, extractContractResourceReferences, extractIdFromContractResourceReference, extractIdFromMeshResourceReference, extractMeshResourceReferences, meshResourceReferenceSchema, meshResourceReferenceSchemaFor, resolvedContractResourceReferenceSchema, resolvedMeshResourceReferenceSchema, withIntrinsicAddress } from '../MHORRJPP.js';
|
|
5
6
|
import '../ZCFXJFGI.js';
|
|
6
7
|
import '../YAEJZ74R.js';
|
|
7
|
-
export {
|
|
8
|
-
export { ArtifactType, artifactWithTypeSchema, deploymentArtifactSchema, fullDeploymentArtifactSchema, identityOnlyDeploymentArtifactSchema, metadataArtifactSchema, solanaDeploymentArtifactExtraInfoSchema, suiDeploymentArtifactExtraInfoSchema, verificationArtifactSchema } from '../MHBV7XHL.js';
|
|
8
|
+
export { deployWorkflowChainStateSchema, deployWorkflowOrchestratorStateSchema, extractVerificationArtifactBaseArgsSchema } from '../GLPJHNSD.js';
|
|
9
9
|
import '../VUOMXK5T.js';
|
|
10
10
|
//# sourceMappingURL=index.js.map
|
|
11
11
|
//# sourceMappingURL=index.js.map
|
package/dist/deploy/workflow.cjs
CHANGED
|
@@ -1,54 +1,21 @@
|
|
|
1
1
|
'use strict';
|
|
2
2
|
|
|
3
|
-
var
|
|
4
|
-
require('../NJ2LWIGZ.cjs');
|
|
3
|
+
var MR335VWI_cjs = require('../MR335VWI.cjs');
|
|
5
4
|
require('../YJF4D23A.cjs');
|
|
6
5
|
|
|
7
6
|
|
|
8
7
|
|
|
9
|
-
Object.defineProperty(exports, "baseDeploymentSavingArtifactsSchema", {
|
|
10
|
-
enumerable: true,
|
|
11
|
-
get: function () { return FVBHJFVE_cjs.baseDeploymentSavingArtifactsSchema; }
|
|
12
|
-
});
|
|
13
|
-
Object.defineProperty(exports, "deployWorkflowChainResultItemSchema", {
|
|
14
|
-
enumerable: true,
|
|
15
|
-
get: function () { return FVBHJFVE_cjs.deployWorkflowChainResultItemSchema; }
|
|
16
|
-
});
|
|
17
|
-
Object.defineProperty(exports, "deployWorkflowChainResultSchema", {
|
|
18
|
-
enumerable: true,
|
|
19
|
-
get: function () { return FVBHJFVE_cjs.deployWorkflowChainResultSchema; }
|
|
20
|
-
});
|
|
21
8
|
Object.defineProperty(exports, "deployWorkflowChainStateSchema", {
|
|
22
9
|
enumerable: true,
|
|
23
|
-
get: function () { return
|
|
24
|
-
});
|
|
25
|
-
Object.defineProperty(exports, "deployWorkflowOrchestratorResultSchema", {
|
|
26
|
-
enumerable: true,
|
|
27
|
-
get: function () { return FVBHJFVE_cjs.deployWorkflowOrchestratorResultSchema; }
|
|
10
|
+
get: function () { return MR335VWI_cjs.deployWorkflowChainStateSchema; }
|
|
28
11
|
});
|
|
29
12
|
Object.defineProperty(exports, "deployWorkflowOrchestratorStateSchema", {
|
|
30
13
|
enumerable: true,
|
|
31
|
-
get: function () { return
|
|
14
|
+
get: function () { return MR335VWI_cjs.deployWorkflowOrchestratorStateSchema; }
|
|
32
15
|
});
|
|
33
16
|
Object.defineProperty(exports, "extractVerificationArtifactBaseArgsSchema", {
|
|
34
17
|
enumerable: true,
|
|
35
|
-
get: function () { return
|
|
36
|
-
});
|
|
37
|
-
Object.defineProperty(exports, "getDeploymentBaseArgsSchema", {
|
|
38
|
-
enumerable: true,
|
|
39
|
-
get: function () { return FVBHJFVE_cjs.getDeploymentBaseArgsSchema; }
|
|
40
|
-
});
|
|
41
|
-
Object.defineProperty(exports, "getVerificationBaseArgsSchema", {
|
|
42
|
-
enumerable: true,
|
|
43
|
-
get: function () { return FVBHJFVE_cjs.getVerificationBaseArgsSchema; }
|
|
44
|
-
});
|
|
45
|
-
Object.defineProperty(exports, "saveDeploymentBaseArgsSchema", {
|
|
46
|
-
enumerable: true,
|
|
47
|
-
get: function () { return FVBHJFVE_cjs.saveDeploymentBaseArgsSchema; }
|
|
48
|
-
});
|
|
49
|
-
Object.defineProperty(exports, "saveVerificationBaseArgsSchema", {
|
|
50
|
-
enumerable: true,
|
|
51
|
-
get: function () { return FVBHJFVE_cjs.saveVerificationBaseArgsSchema; }
|
|
18
|
+
get: function () { return MR335VWI_cjs.extractVerificationArtifactBaseArgsSchema; }
|
|
52
19
|
});
|
|
53
20
|
//# sourceMappingURL=workflow.cjs.map
|
|
54
21
|
//# sourceMappingURL=workflow.cjs.map
|