aboutsummaryrefslogtreecommitdiffstats
path: root/packages/sra-spec
diff options
context:
space:
mode:
Diffstat (limited to 'packages/sra-spec')
-rw-r--r--packages/sra-spec/CHANGELOG.json3
-rw-r--r--packages/sra-spec/CHANGELOG.md6
-rw-r--r--packages/sra-spec/README.md8
-rw-r--r--packages/sra-spec/package.json8
-rw-r--r--packages/sra-spec/src/json-schemas.ts2
-rw-r--r--packages/sra-spec/src/md/introduction.md4
-rw-r--r--packages/sra-spec/tslint.json2
7 files changed, 17 insertions, 16 deletions
diff --git a/packages/sra-spec/CHANGELOG.json b/packages/sra-spec/CHANGELOG.json
index 333a1dde0..a068df3fb 100644
--- a/packages/sra-spec/CHANGELOG.json
+++ b/packages/sra-spec/CHANGELOG.json
@@ -6,7 +6,8 @@
"note": "Make @loopback/openapi-v3-types a 'dependency' so it's available to users of the library",
"pr": 1105
}
- ]
+ ],
+ "timestamp": 1539871071
},
{
"version": "1.0.6",
diff --git a/packages/sra-spec/CHANGELOG.md b/packages/sra-spec/CHANGELOG.md
index 4d27f20df..ba4cddec2 100644
--- a/packages/sra-spec/CHANGELOG.md
+++ b/packages/sra-spec/CHANGELOG.md
@@ -5,6 +5,10 @@ Edit the package's CHANGELOG.json file only.
CHANGELOG
+## v1.0.7 - _October 18, 2018_
+
+ * Make @loopback/openapi-v3-types a 'dependency' so it's available to users of the library (#1105)
+
## v1.0.6 - _October 4, 2018_
* Dependencies updated
@@ -38,6 +42,6 @@ CHANGELOG
* Add takerAddress to /orders parameters (#974)
-## v1.0.1-rc.4 - _August 13, 2018_
+## v1.0.1-rc.4 - _August 14, 2018_
* Add inital spec for SRA v2 (#916)
diff --git a/packages/sra-spec/README.md b/packages/sra-spec/README.md
index 7eee6396b..4575aaf66 100644
--- a/packages/sra-spec/README.md
+++ b/packages/sra-spec/README.md
@@ -1,4 +1,4 @@
-## @0xproject/sra-spec
+## @0x/sra-spec
Contains the Standard Relayer API [OpenAPI Spec](https://github.com/OAI/OpenAPI-Specification).
@@ -9,7 +9,7 @@ A deployed [ReDoc](https://github.com/Rebilly/ReDoc) static site with the API ca
## Usage
```
-import { api } from '@0xproject/sra-spec';
+import { api } from '@0x/sra-spec';
```
## Installation
@@ -53,13 +53,13 @@ yarn install
To build this package and all other monorepo packages that it depends on, run the following from the monorepo root directory:
```bash
-PKG=@0xproject/sra-spec yarn build
+PKG=@0x/sra-spec yarn build
```
Or continuously rebuild on change:
```bash
-PKG=@0xproject/sra-spec yarn watch
+PKG=@0x/sra-spec yarn watch
```
### Static Site
diff --git a/packages/sra-spec/package.json b/packages/sra-spec/package.json
index c3ddde36e..0c55465d7 100644
--- a/packages/sra-spec/package.json
+++ b/packages/sra-spec/package.json
@@ -1,6 +1,6 @@
{
- "name": "@0xproject/sra-spec",
- "version": "1.0.6",
+ "name": "@0x/sra-spec",
+ "version": "1.0.7",
"engines": {
"node": ">=6.12"
},
@@ -35,11 +35,11 @@
},
"homepage": "https://github.com/0xProject/0x-monorepo/packages/sra-spec/README.md",
"dependencies": {
- "@0xproject/json-schemas": "^1.0.7",
+ "@0x/json-schemas": "^2.0.0",
"@loopback/openapi-v3-types": "^0.8.2"
},
"devDependencies": {
- "@0xproject/tslint-config": "^1.0.8",
+ "@0x/tslint-config": "^1.0.9",
"@types/mocha": "^2.2.42",
"@types/node": "^10.5.3",
"chai": "^4.0.1",
diff --git a/packages/sra-spec/src/json-schemas.ts b/packages/sra-spec/src/json-schemas.ts
index 47cca9b04..9eb32de59 100644
--- a/packages/sra-spec/src/json-schemas.ts
+++ b/packages/sra-spec/src/json-schemas.ts
@@ -1,4 +1,4 @@
-import { schemas as jsonSchemas } from '@0xproject/json-schemas';
+import { schemas as jsonSchemas } from '@0x/json-schemas';
// Only include schemas we actually need
const {
diff --git a/packages/sra-spec/src/md/introduction.md b/packages/sra-spec/src/md/introduction.md
index f27186f41..824df8998 100644
--- a/packages/sra-spec/src/md/introduction.md
+++ b/packages/sra-spec/src/md/introduction.md
@@ -1,7 +1,3 @@
-# Testing
-
-Use the [sra-report](https://github.com/0xProject/0x-monorepo/tree/development/packages/sra-report) command line tool to test your API for SRA compliance.
-
# Schemas
The [JSON schemas](http://json-schema.org/) for the API payloads and responses can be found in [@0xproject/json-schemas](https://github.com/0xProject/0x.js/tree/development/packages/json-schemas). Examples of each payload and response can be found in the library's [test suite](https://github.com/0xProject/0x.js/blob/development/packages/json-schemas/test/schema_test.ts#L1).
diff --git a/packages/sra-spec/tslint.json b/packages/sra-spec/tslint.json
index ffaefe83a..dd9053357 100644
--- a/packages/sra-spec/tslint.json
+++ b/packages/sra-spec/tslint.json
@@ -1,3 +1,3 @@
{
- "extends": ["@0xproject/tslint-config"]
+ "extends": ["@0x/tslint-config"]
}