teraslice 3.0.0-rc.0 → 3.0.0-rc.1

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.
@@ -1,6 +1,6 @@
1
- import { ConvictSchema } from '@terascope/job-components';
1
+ import { BaseSchema } from '@terascope/job-components';
2
2
  const defaultResults = Array.from(Array(10)).map(() => ({ hi: true }));
3
- export default class Schema extends ConvictSchema {
3
+ export default class Schema extends BaseSchema {
4
4
  build() {
5
5
  return {
6
6
  errorAt: {
@@ -1,8 +1,8 @@
1
- import { ConvictSchema } from '@terascope/job-components';
1
+ import { BaseSchema } from '@terascope/job-components';
2
2
  const defaultResults = Array.from(Array(10)).map(() => ({ hi: true }));
3
3
  const defaultSlicerResults = [{ howdy: true }, null];
4
4
  const defaultSlicerQueueLength = '10';
5
- export default class Schema extends ConvictSchema {
5
+ export default class Schema extends BaseSchema {
6
6
  build() {
7
7
  return {
8
8
  errorAt: {
@@ -1,5 +1,5 @@
1
- import { ConvictSchema } from '@terascope/job-components';
2
- export default class Schema extends ConvictSchema {
1
+ import { BaseSchema } from '@terascope/job-components';
2
+ export default class Schema extends BaseSchema {
3
3
  build() {
4
4
  return {
5
5
  example: {
@@ -1,5 +1,5 @@
1
- import { ConvictSchema } from '@terascope/job-components';
2
- export default class Schema extends ConvictSchema {
1
+ import { BaseSchema } from '@terascope/job-components';
2
+ export default class Schema extends BaseSchema {
3
3
  build() {
4
4
  return {
5
5
  example: {
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "teraslice",
3
3
  "displayName": "Teraslice",
4
- "version": "3.0.0-rc.0",
4
+ "version": "3.0.0-rc.1",
5
5
  "description": "Distributed computing platform for processing JSON data",
6
6
  "homepage": "https://github.com/terascope/teraslice#readme",
7
7
  "bugs": {
@@ -41,7 +41,7 @@
41
41
  "@kubernetes/client-node": "~1.3.0",
42
42
  "@terascope/core-utils": "~2.0.0-rc.0",
43
43
  "@terascope/elasticsearch-api": "~5.0.0-rc.0",
44
- "@terascope/job-components": "~2.0.0-rc.0",
44
+ "@terascope/job-components": "~2.0.0-rc.1",
45
45
  "@terascope/teraslice-messaging": "~2.0.0-rc.0",
46
46
  "@terascope/types": "~2.0.0-rc.0",
47
47
  "async-mutex": "~0.5.0",