Skip to content
Open
Show file tree
Hide file tree
Changes from 13 commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 0 additions & 3 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -1,10 +1,7 @@
sudo: false
language: node_js
node_js:
- "8"
- "9"
- "10"
- "11"
- "12"

os:
Expand Down
1,495 changes: 576 additions & 919 deletions package-lock.json

Large diffs are not rendered by default.

Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
import { GraphQLScalarType } from 'graphql';
import { StrictScalarNumberConfig } from '../types/strict_scalars';
export declare const createFloatScalar: <TInternal = string, TExternal = string>(config: StrictScalarNumberConfig) => GraphQLScalarType;
89 changes: 89 additions & 0 deletions packages/openapi-to-graphql/lib/scalar_validators/StrictFloat.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
import { GraphQLScalarType } from 'graphql';
import { StrictScalarNumberConfig } from '../types/strict_scalars';
export declare const createIntScalar: <TInternal = string, TExternal = string>(config: StrictScalarNumberConfig) => GraphQLScalarType;
88 changes: 88 additions & 0 deletions packages/openapi-to-graphql/lib/scalar_validators/StrictInt.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
import { GraphQLScalarType } from 'graphql';
import { StrictScalarStringConfig } from '../types/strict_scalars';
export declare const createStringScalar: <TInternal = string, TExternal = string>(config: StrictScalarStringConfig) => GraphQLScalarType;
177 changes: 177 additions & 0 deletions packages/openapi-to-graphql/lib/scalar_validators/StrictString.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading