@airgap/serializer 0.13.7-beta.27 → 0.13.8-beta.10
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/index.d.ts +3 -1
- package/index.js.map +1 -1
- package/package.json +3 -3
package/index.d.ts
CHANGED
|
@@ -3,6 +3,7 @@ import { IACMessageDefinitionObject, IACMessages as IACMessagesV2, Message } fro
|
|
|
3
3
|
import { AccountShareResponse as AccountShareResponseV2 } from './v2/schemas/definitions/account-share-response';
|
|
4
4
|
import { MessageSignRequest } from './v2/schemas/definitions/message-sign-request';
|
|
5
5
|
import { MessageSignResponse } from './v2/schemas/definitions/message-sign-response';
|
|
6
|
+
import { SchemaInfo as SchemaInfoV2, SchemaRoot as SchemaRootV2 } from './v2/schemas/schema';
|
|
6
7
|
import { Serializer } from './v2/serializer';
|
|
7
8
|
import { TransactionSignRequest as TransactionSignRequestV2 } from './v2/transactions/transaction-sign-request';
|
|
8
9
|
import { TransactionSignResponse as TransactionSignResponseV2 } from './v2/transactions/transaction-sign-response';
|
|
@@ -11,12 +12,13 @@ import { TransactionValidator as TransactionValidatorV2, TransactionValidatorFac
|
|
|
11
12
|
import { validateSyncScheme as validateSyncSchemeV2 } from './v2/validators/validators';
|
|
12
13
|
import { IACMessageDefinitionObjectV3, IACMessages } from './v3/message';
|
|
13
14
|
import { AccountShareResponse } from './v3/schemas/definitions/account-share-response';
|
|
15
|
+
import { SchemaInfo, SchemaRoot } from './v3/schemas/schema';
|
|
14
16
|
import { SerializerV3 } from './v3/serializer';
|
|
15
17
|
import { TransactionSignRequest } from './v3/transactions/transaction-sign-request';
|
|
16
18
|
import { TransactionSignResponse } from './v3/transactions/transaction-sign-response';
|
|
17
19
|
import { generateId } from './v3/utils/generateId';
|
|
18
20
|
import { TransactionValidator, TransactionValidatorFactory } from './v3/validators/transactions.validator';
|
|
19
21
|
import { validateSyncScheme } from './v3/validators/validators';
|
|
20
|
-
export { IACMessageType, IACMessageDefinitionObject, IACMessageDefinitionObjectV3, AccountShareResponse, MessageSignRequest, MessageSignResponse, TransactionSignRequest, TransactionSignResponse, Serializer, SerializerV3, Message, TransactionValidator, TransactionValidatorFactory };
|
|
22
|
+
export { IACMessageType, IACMessageDefinitionObject, IACMessageDefinitionObjectV3, AccountShareResponse, MessageSignRequest, MessageSignResponse, TransactionSignRequest, TransactionSignResponse, Serializer, SerializerV3, Message, TransactionValidator, TransactionValidatorFactory, SchemaInfoV2, SchemaInfo, SchemaRootV2, SchemaRoot };
|
|
21
23
|
export { generateId, generateIdV2, validateSyncScheme, validateSyncSchemeV2 };
|
|
22
24
|
export { IACMessages, IACMessagesV2, AccountShareResponseV2, TransactionSignRequestV2, TransactionSignResponseV2, TransactionValidatorV2, TransactionValidatorFactoryV2 };
|
package/index.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":";;;AAAA,8CAAgD;
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":";;;AAAA,8CAAgD;AA0B9C,+FA1BO,2BAAc,OA0BP;AAzBhB,wCAAgG;AAmC9F,wFAnCiE,iBAAO,OAmCjE;AA9BT,8CAA4C;AA4B1C,2FA5BO,uBAAU,OA4BP;AAzBZ,oDAAoD;AAoC/B,6FApCZ,yBAAY,OAoCY;AA/BjC,yDAAuF;AA+BhC,qGA/BxB,+BAAoB,OA+BwB;AA3B3E,8CAA8C;AAiB5C,6FAjBO,yBAAY,OAiBP;AAdd,oDAAkD;AAwBzC,2FAxBA,uBAAU,OAwBA;AAtBnB,yDAA+D;AAsB5B,mGAtB1B,+BAAkB,OAsB0B"}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@airgap/serializer",
|
|
3
|
-
"version": "0.13.
|
|
3
|
+
"version": "0.13.8-beta.10",
|
|
4
4
|
"description": "The @airgap/serializer provides serializers used in AirGap applications.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"airgap",
|
|
@@ -31,14 +31,14 @@
|
|
|
31
31
|
"lint:prettier": "prettier --write \"src/**/*.ts\" \"test/**/*.ts\"",
|
|
32
32
|
"lint-ci": "tslint -t json -o ../../lint-reports/serializer.json --project . || true",
|
|
33
33
|
"lint-ci:prettier": "prettier \"src/**/*.ts\" \"test/**/*.ts\" --list-different",
|
|
34
|
-
"test": "nyc mocha --bail --require ts-node/register --require source-map-support/register --full-trace --delay --timeout 40000 ./test/**/**.spec.ts",
|
|
34
|
+
"test": "TS_NODE_PROJECT='./test/tsconfig.json' nyc mocha --bail --require ts-node/register --require source-map-support/register --full-trace --delay --timeout 40000 ./test/**/**.spec.ts",
|
|
35
35
|
"test-ci": "nyc --reporter=lcov npm test",
|
|
36
36
|
"test-legacy": "",
|
|
37
37
|
"browserify": "browserify ./dist/index.js -p realpathify -s airgapCoinLibSerializer > ./dist/airgap-coinlib-serializer.min.js"
|
|
38
38
|
},
|
|
39
39
|
"author": "Papers GmbH <contact@papers.ch> (https://papers.ch)",
|
|
40
40
|
"peerDependencies": {
|
|
41
|
-
"@airgap/coinlib-core": "^0.13.
|
|
41
|
+
"@airgap/coinlib-core": "^0.13.8-beta.6"
|
|
42
42
|
},
|
|
43
43
|
"localDependencies": {},
|
|
44
44
|
"nyc": {
|