diff options
author | F. Eugene Aumson <feuGeneA@users.noreply.github.com> | 2019-01-09 03:28:32 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-01-09 03:28:32 +0800 |
commit | 4689f20b86333d74fa0ccd45b23c560a0a0361b5 (patch) | |
tree | 9b1810a912a7c866d6be3799b24feea9c9f49d1f /packages/json-schemas/src/schemas.ts | |
parent | de927d7207571e99a009320d9a47ae9815c2e198 (diff) | |
parent | e62e61bf7145c0a8011e098aa22168416d01a781 (diff) | |
download | dexon-sol-tools-4689f20b86333d74fa0ccd45b23c560a0a0361b5.tar dexon-sol-tools-4689f20b86333d74fa0ccd45b23c560a0a0361b5.tar.gz dexon-sol-tools-4689f20b86333d74fa0ccd45b23c560a0a0361b5.tar.bz2 dexon-sol-tools-4689f20b86333d74fa0ccd45b23c560a0a0361b5.tar.lz dexon-sol-tools-4689f20b86333d74fa0ccd45b23c560a0a0361b5.tar.xz dexon-sol-tools-4689f20b86333d74fa0ccd45b23c560a0a0361b5.tar.zst dexon-sol-tools-4689f20b86333d74fa0ccd45b23c560a0a0361b5.zip |
Move json_schemas to its own package (#1435)
* Move zero_ex.json_schemas to its own package
* Support ALL the schemas
* Stop installing packages as editable
* HACK: cp files because CircleCI isn't
* Add example usage to sra_client README
* Tweak special case: only strip Schema as suffix
* Correct doc titles
* Clarify what kind of support ticket was raised.
* Correct inconsistencies in JSON schema names
In both ref ID's and file names.
* Add entry point for validation of JSON strings
Diffstat (limited to 'packages/json-schemas/src/schemas.ts')
-rw-r--r-- | packages/json-schemas/src/schemas.ts | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/packages/json-schemas/src/schemas.ts b/packages/json-schemas/src/schemas.ts index 050f4e625..9e8eb6959 100644 --- a/packages/json-schemas/src/schemas.ts +++ b/packages/json-schemas/src/schemas.ts @@ -8,7 +8,7 @@ import * as ecSignatureSchema from '../schemas/ec_signature_schema.json'; import * as eip712TypedDataSchema from '../schemas/eip712_typed_data_schema.json'; import * as hexSchema from '../schemas/hex_schema.json'; import * as indexFilterValuesSchema from '../schemas/index_filter_values_schema.json'; -import * as jsNumber from '../schemas/js_number.json'; +import * as jsNumber from '../schemas/js_number_schema.json'; import * as numberSchema from '../schemas/number_schema.json'; import * as orderCancellationRequestsSchema from '../schemas/order_cancel_schema.json'; import * as orderConfigRequestSchema from '../schemas/order_config_request_schema.json'; |