@modular-circuit/ir 0.0.62 → 0.0.63

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.
@@ -15,7 +15,7 @@ export interface ModuleResolver {
15
15
  * 获取一个已发布项目(项目)的design(.zip)的url
16
16
  * 项目发布时候是作为zip发布,里面是平铺的.kicad_sch或者.modular_circuit
17
17
  */
18
- get_module_achieve(idx: ModuleIndex): Promise<URL | undefined>;
18
+ get_module_archive(idx: ModuleIndex): Promise<URL | undefined>;
19
19
  /**
20
20
  * 获取模块的详细信息
21
21
  */
@@ -27,6 +27,6 @@ export interface ModuleResolver {
27
27
  /**
28
28
  * 根据后端的id获取一个已发布项目(项目)的design(.zip)的url
29
29
  */
30
- get_module_achieve_by_id(id: string): Promise<URL | undefined>;
30
+ get_module_archive_by_id(id: string): Promise<URL | undefined>;
31
31
  }
32
32
  //# sourceMappingURL=module_resolver.d.ts.map
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@modular-circuit/ir",
3
- "version": "0.0.62",
3
+ "version": "0.0.63",
4
4
  "description": "Intermediate representation of the modular circuit",
5
5
  "main": "./build/index.js",
6
6
  "exports": {