Skip to content

Commit 5e7da8c

Browse files
authored
Merge pull request #56 from VirgilSecurity/update-core-packages
Update core packages
2 parents d507a48 + 7e54c54 commit 5e7da8c

File tree

7 files changed

+15
-15
lines changed

7 files changed

+15
-15
lines changed
Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
declare module '@virgilsecurity/core-foundation' {
22
export type FoundationModules = any;
3-
function initRatchet(): Promise<FoundationModules>;
4-
export default initRatchet;
3+
function initFoundation(): Promise<FoundationModules>;
4+
export default initFoundation;
55
}
66

77
declare module '@virgilsecurity/core-foundation/*' {
88
export type FoundationModules = any;
9-
function initRatchet(): Promise<FoundationModules>;
10-
export default initRatchet;
9+
function initFoundation(): Promise<FoundationModules>;
10+
export default initFoundation;
1111
}

packages/core-foundation/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@virgilsecurity/core-foundation",
3-
"version": "0.1.0",
3+
"version": "0.1.1",
44
"description": "Virgil Foundation",
55
"main": "./node.cjs.js",
66
"module": "./node.es.js",

packages/core-phe/index.d.ts

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
declare module '@virgilsecurity/core-phe' {
22
export type PheModules = any;
3-
function initRatchet(): Promise<PheModules>;
4-
export default initRatchet;
3+
function initPhe(): Promise<PheModules>;
4+
export default initPhe;
55
}
66

77
declare module '@virgilsecurity/core-phe/*' {
88
export type PheModules = any;
9-
function initRatchet(): Promise<PheModules>;
10-
export default initRatchet;
9+
function initPhe(): Promise<PheModules>;
10+
export default initPhe;
1111
}

packages/core-phe/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@virgilsecurity/core-phe",
3-
"version": "0.1.0",
3+
"version": "0.1.1",
44
"description": "Virgil PHE",
55
"main": "./node.cjs.js",
66
"module": "./node.es.js",

packages/core-pythia/index.d.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
declare module '@virgilsecurity/core-pythia' {
22
export type PythiaModules = any;
33
function initRatchet(): Promise<PythiaModules>;
4-
export default initRatchet;
4+
export default initPythia;
55
}
66

77
declare module '@virgilsecurity/core-pythia/*' {
88
export type PythiaModules = any;
9-
function initRatchet(): Promise<PythiaModules>;
10-
export default initRatchet;
9+
function initPythia(): Promise<PythiaModules>;
10+
export default initPythia;
1111
}

packages/core-pythia/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@virgilsecurity/core-pythia",
3-
"version": "0.1.0",
3+
"version": "0.1.1",
44
"description": "Virgil Pythia",
55
"main": "./node.cjs.js",
66
"module": "./node.es.js",

packages/core-ratchet/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@virgilsecurity/core-ratchet",
3-
"version": "0.1.0",
3+
"version": "0.1.1",
44
"description": "Virgil Ratchet",
55
"main": "./node.cjs.js",
66
"module": "./node.es.js",

0 commit comments

Comments
 (0)