Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore(graphql-tools-fork): switch to fork #340

Merged
merged 1 commit into from
Jan 28, 2020
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
5 changes: 2 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -29,17 +29,16 @@
"test": "npm-run-all test-*"
},
"dependencies": {
"graphql": "^0.11.0 || ^0.12.0 || ^0.13.0 || ^14.0.0",
"graphql": "^14.2.0",
"graphql-import": "^0.7.1",
"graphql-tools": "4.0.5",
"graphql-tools-fork": "^8.1.0",
"iterall": "1.2.2",
"object-path-immutable": "^3.0.0",
"resolve-cwd": "^2.0.0",
"ts-node": "^7.0.1",
"yargs": "^12.0.2"
},
"devDependencies": {
"@types/graphql": "14.0.7",
"@types/mkdirp": "0.5.2",
"@types/node": "10.14.17",
"@types/yargs": "12.0.12",
Expand Down
7 changes: 5 additions & 2 deletions src/Delegate.ts
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,11 @@ import {
GraphQLUnionType,
GraphQLInterfaceType,
} from 'graphql'
import { delegateToSchema, ReplaceFieldWithFragment } from 'graphql-tools'
import { IResolvers } from 'graphql-tools/dist/Interfaces'
import {
delegateToSchema,
ReplaceFieldWithFragment,
IResolvers,
} from 'graphql-tools-fork'
import {
BindingOptions,
Options,
Expand Down
2 changes: 1 addition & 1 deletion src/bin.ts
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ function getSchemaFromInput(input) {
const schema = buildSchema(sdl)
return {
isDefaultExport: false,
schema
schema,
}
}

Expand Down
4 changes: 2 additions & 2 deletions src/codegen/FlowGenerator.test.ts.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ Generated by [AVA](https://ava.li).
`// @flow␊
import { makeBindingClass, Options } from 'graphql-binding'␊
import { GraphQLResolveInfo, GraphQLSchema } from 'graphql'␊
import { IResolvers } from 'graphql-tools/dist/Interfaces'␊
import { IResolvers } from 'graphql-tools-fork'␊
import * as schema from '../schema'␊
export interface Query {␊
Expand Down Expand Up @@ -491,7 +491,7 @@ Generated by [AVA](https://ava.li).
export type ID_Output = string␊
/*␊
The `Int` scalar type represents non-fractional signed whole numeric values. Int can represent values between -(2^31) and 2^31 - 1.
The `Int` scalar type represents non-fractional signed whole numeric values. Int can represent values between -(2^31) and 2^31 - 1.␊
*/␊
export type Int = number ␊
Expand Down
Binary file modified src/codegen/FlowGenerator.test.ts.snap
Binary file not shown.
2 changes: 1 addition & 1 deletion src/codegen/FlowGenerator.ts
Original file line number Diff line number Diff line change
Expand Up @@ -386,7 +386,7 @@ ${description.split('\n').map(l => ` * ${l}\n`)}
return `\
import { makeBindingClass, Options } from 'graphql-binding'
import { GraphQLResolveInfo, GraphQLSchema } from 'graphql'
import { IResolvers } from 'graphql-tools/dist/Interfaces'
import { IResolvers } from 'graphql-tools-fork'
import ${
this.isDefaultExport ? '' : '* as '
}schema from '${this.getRelativeSchemaPath()}'`
Expand Down
2 changes: 1 addition & 1 deletion src/codegen/Generator.ts
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ ${this.renderExports()}`
)
}
getRelativeSchemaPath() {
const result = path
const result = path.posix
.relative(
path.dirname(this.outputBindingPath) + '/',
this.inputSchemaPath,
Expand Down
4 changes: 2 additions & 2 deletions src/codegen/TypescriptGenerator.test.ts.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ Generated by [AVA](https://ava.li).

`import { makeBindingClass, Options } from 'graphql-binding'␊
import { GraphQLResolveInfo, GraphQLSchema } from 'graphql'␊
import { IResolvers } from 'graphql-tools/dist/Interfaces'␊
import { IResolvers } from 'graphql-tools-fork'␊
import * as schema from '../schema'␊
export interface Query {␊
Expand Down Expand Up @@ -482,7 +482,7 @@ Generated by [AVA](https://ava.li).
export type ID_Output = string␊
/*␊
The `Int` scalar type represents non-fractional signed whole numeric values. Int can represent values between -(2^31) and 2^31 - 1.
The `Int` scalar type represents non-fractional signed whole numeric values. Int can represent values between -(2^31) and 2^31 - 1.␊
*/␊
export type Int = number␊
Expand Down
Binary file modified src/codegen/TypescriptGenerator.test.ts.snap
Binary file not shown.
2 changes: 1 addition & 1 deletion src/codegen/TypescriptGenerator.ts
Original file line number Diff line number Diff line change
Expand Up @@ -373,7 +373,7 @@ ${description.split('\n').map(l => ` * ${l}\n`)}
return `\
import { makeBindingClass, Options } from 'graphql-binding'
import { GraphQLResolveInfo, GraphQLSchema } from 'graphql'
import { IResolvers } from 'graphql-tools/dist/Interfaces'
import { IResolvers } from 'graphql-tools-fork'
import ${
this.isDefaultExport ? '' : '* as '
}schema from '${this.getRelativeSchemaPath()}'`
Expand Down
2 changes: 1 addition & 1 deletion src/fragmentReplacements.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import { FragmentReplacement } from './types'
import { IResolvers } from 'graphql-tools/dist/Interfaces'
import { IResolvers } from 'graphql-tools-fork'

export function extractFragmentReplacements(
resolvers: IResolvers,
Expand Down
2 changes: 1 addition & 1 deletion src/info.ts
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ export function buildInfo(
if (!info) {
info = buildInfoForAllScalars(rootFieldName, schema, operation)
} else if ((info as any).kind && (info as any).kind === 'Document') {
info = print(info)
info = print(info as DocumentNode)
}
if (typeof info === 'string') {
info = buildInfoFromFragment(rootFieldName, schema, operation, info)
Expand Down
2 changes: 1 addition & 1 deletion src/types.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import { GraphQLResolveInfo, GraphQLSchema } from 'graphql'
import { Transform } from 'graphql-tools'
import { Transform } from 'graphql-tools-fork'

export type Operation = 'query' | 'mutation' | 'subscription'
// needed to exclude 'subscription' in delegate api
Expand Down
5 changes: 3 additions & 2 deletions src/utils/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@ import {
GraphQLEnumType,
GraphQLNonNull,
print,
DocumentNode,
} from 'graphql'

import { Operation } from '../types'
Expand Down Expand Up @@ -104,13 +105,13 @@ export function printDocumentFromInfo(info: GraphQLResolveInfo) {
const fragments = Object.keys(info.fragments).map(
fragment => info.fragments[fragment],
)
const doc = {
const doc: DocumentNode = {
kind: 'Document',
definitions: [
{
kind: 'OperationDefinition',
operation: 'query',
selectionSet: info.fieldNodes[0].selectionSet,
selectionSet: info.fieldNodes[0].selectionSet!,
},
...fragments,
],
Expand Down
130 changes: 76 additions & 54 deletions yarn.lock
Original file line number Diff line number Diff line change
Expand Up @@ -502,11 +502,6 @@
into-stream "^4.0.0"
lodash "^4.17.4"

"@types/graphql@14.0.7":
version "14.0.7"
resolved "https://registry.yarnpkg.com/@types/graphql/-/graphql-14.0.7.tgz#daa09397220a68ce1cbb3f76a315ff3cd92312f6"
integrity sha512-BoLDjdvLQsXPZLJux3lEZANwGr3Xag56Ngy0U3y8uoRSDdeLcn43H3oBcgZlnd++iOQElBpaRVDHPzEDekyvXQ==

"@types/mkdirp@0.5.2":
version "0.5.2"
resolved "https://registry.yarnpkg.com/@types/mkdirp/-/mkdirp-0.5.2.tgz#503aacfe5cc2703d5484326b1b27efa67a339c1f"
Expand Down Expand Up @@ -656,7 +651,16 @@ anymatch@^2.0.0:
micromatch "^3.1.4"
normalize-path "^2.1.1"

apollo-link@1.2.13:
apollo-link-http-common@^0.2.15:
version "0.2.15"
resolved "https://registry.yarnpkg.com/apollo-link-http-common/-/apollo-link-http-common-0.2.15.tgz#304e67705122bf69a9abaded4351b10bc5efd6d9"
integrity sha512-+Heey4S2IPsPyTf8Ag3PugUupASJMW894iVps6hXbvwtg1aHSNMXUYO5VG7iRHkPzqpuzT4HMBanCTXPjtGzxg==
dependencies:
apollo-link "^1.2.13"
ts-invariant "^0.4.0"
tslib "^1.9.3"

apollo-link@1.2.13, apollo-link@^1.2.13:
version "1.2.13"
resolved "https://registry.yarnpkg.com/apollo-link/-/apollo-link-1.2.13.tgz#dff00fbf19dfcd90fddbc14b6a3f9a771acac6c4"
integrity sha512-+iBMcYeevMm1JpYgwDEIDt/y0BB7VWyvlm/7x+TIPNLHCTCMgcEgDuW5kH86iQZWo0I7mNwQiTOz+/3ShPFmBw==
Expand All @@ -666,30 +670,15 @@ apollo-link@1.2.13:
tslib "^1.9.3"
zen-observable-ts "^0.8.20"

apollo-link@^1.2.3:
version "1.2.4"
resolved "https://registry.yarnpkg.com/apollo-link/-/apollo-link-1.2.4.tgz#ab4d21d2e428db848e88b5e8f4adc717b19c954b"
integrity sha512-B1z+9H2nTyWEhMXRFSnoZ1vSuAYP+V/EdUJvRx9uZ8yuIBZMm6reyVtr1n0BWlKeSFyPieKJy2RLzmITAAQAMQ==
dependencies:
apollo-utilities "^1.0.0"
zen-observable-ts "^0.8.11"

apollo-utilities@^1.0.0, apollo-utilities@^1.0.1:
version "1.0.26"
resolved "https://registry.yarnpkg.com/apollo-utilities/-/apollo-utilities-1.0.26.tgz#589c66bf4d16223531351cf667a230c787def1da"
integrity sha512-URw7o3phymliqYCYatcird2YRPUU2eWCNvip64U9gQrX56mEfK4m99yBIDCMTpmcvOFsKLii1sIEZsHIs/bvnw==
dependencies:
fast-json-stable-stringify "^2.0.0"

apollo-utilities@^1.3.0:
version "1.3.2"
resolved "https://registry.yarnpkg.com/apollo-utilities/-/apollo-utilities-1.3.2.tgz#8cbdcf8b012f664cd6cb5767f6130f5aed9115c9"
integrity sha512-JWNHj8XChz7S4OZghV6yc9FNnzEXj285QYp/nLNh943iObycI5GTDO3NGR9Dth12LRrSFMeDOConPfPln+WGfg==
apollo-utilities@^1.3.0, apollo-utilities@^1.3.3:
version "1.3.3"
resolved "https://registry.yarnpkg.com/apollo-utilities/-/apollo-utilities-1.3.3.tgz#f1854715a7be80cd810bc3ac95df085815c0787c"
integrity sha512-F14aX2R/fKNYMvhuP2t9GD9fggID7zp5I96MF5QeKYWDWTrkRdHRp4+SVfXUVN+cXOaB/IebfvRtzPf25CM0zw==
dependencies:
"@wry/equality" "^0.1.2"
fast-json-stable-stringify "^2.0.0"
ts-invariant "^0.4.0"
tslib "^1.9.3"
tslib "^1.10.0"

aproba@^1.0.3, aproba@^1.1.1, aproba@^1.1.2, aproba@~1.2.0:
version "1.2.0"
Expand Down Expand Up @@ -1454,6 +1443,13 @@ combined-stream@^1.0.6, combined-stream@~1.0.6:
dependencies:
delayed-stream "~1.0.0"

combined-stream@^1.0.8:
version "1.0.8"
resolved "https://registry.yarnpkg.com/combined-stream/-/combined-stream-1.0.8.tgz#c3d45a8b34fd730631a110a8a2520682b31d5a7f"
integrity sha512-FQN4MRfuJeHf7cBbBMJFXhKSDq+2kAArBlmRBvcvFE5BB1HZKXtSFASDhdlz9zOYwxh8lDdnvmMOe/+5cdoEdg==
dependencies:
delayed-stream "~1.0.0"

commander@^2.12.1:
version "2.19.0"
resolved "https://registry.yarnpkg.com/commander/-/commander-2.19.0.tgz#f6198aa84e5b83c46054b94ddedbfed5ee9ff12a"
Expand Down Expand Up @@ -2195,6 +2191,11 @@ extglob@^2.0.4:
snapdragon "^0.8.1"
to-regex "^3.0.1"

extract-files@^6.0.0:
version "6.0.0"
resolved "https://registry.yarnpkg.com/extract-files/-/extract-files-6.0.0.tgz#a273fd666aac97fd32e788b62d72d978bf43bb71"
integrity sha512-v9UVTPkERZR1NjEOIPvmbzLFdh8YZFEGjRdSJraop6HJe9PQ8HU9iv6eRMuF06CXXXO/R5OBmnWMixZHuZ8CsA==

extsprintf@1.3.0:
version "1.3.0"
resolved "https://registry.yarnpkg.com/extsprintf/-/extsprintf-1.3.0.tgz#96918440e3041a7a414f8c52e3c574eb3c3e1e05"
Expand Down Expand Up @@ -2228,9 +2229,9 @@ fast-glob@^2.0.2:
micromatch "^3.1.10"

fast-json-stable-stringify@^2.0.0:
version "2.0.0"
resolved "https://registry.yarnpkg.com/fast-json-stable-stringify/-/fast-json-stable-stringify-2.0.0.tgz#d5142c0caee6b1189f87d3a76111064f86c8bbf2"
integrity sha1-1RQsDK7msRifh9OnYREGT4bIu/I=
version "2.1.0"
resolved "https://registry.yarnpkg.com/fast-json-stable-stringify/-/fast-json-stable-stringify-2.1.0.tgz#874bf69c6f404c2b5d99c481341399fd55892633"
integrity sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw==

figgy-pudding@^3.0.0, figgy-pudding@^3.1.0, figgy-pudding@^3.4.1, figgy-pudding@^3.5.1:
version "3.5.1"
Expand Down Expand Up @@ -2313,6 +2314,15 @@ forever-agent@~0.6.1:
resolved "https://registry.yarnpkg.com/forever-agent/-/forever-agent-0.6.1.tgz#fbc71f0c41adeb37f96c577ad1ed42d8fdacca91"
integrity sha1-+8cfDEGt6zf5bFd60e1C2P2sypE=

form-data@^3.0.0:
version "3.0.0"
resolved "https://registry.yarnpkg.com/form-data/-/form-data-3.0.0.tgz#31b7e39c85f1355b7139ee0c647cf0de7f83c682"
integrity sha512-CKMFDglpbMi6PyN+brwB9Q/GOw0eAnsrEZDgcsH5Krhz5Od/haKHAX0NmQfha2zPPz0JpWzA7GJHGSnvCRLWsg==
dependencies:
asynckit "^0.4.0"
combined-stream "^1.0.8"
mime-types "^2.1.12"

form-data@~2.3.2:
version "2.3.3"
resolved "https://registry.yarnpkg.com/form-data/-/form-data-2.3.3.tgz#dcce52c05f644f298c6a7ab936bd724ceffbf3a6"
Expand Down Expand Up @@ -2612,21 +2622,25 @@ graphql-tag@2.10.1:
resolved "https://registry.yarnpkg.com/graphql-tag/-/graphql-tag-2.10.1.tgz#10aa41f1cd8fae5373eaf11f1f67260a3cad5e02"
integrity sha512-jApXqWBzNXQ8jYa/HLkZJaVw9jgwNqZkywa2zfFn16Iv1Zb7ELNHkJaXHR7Quvd5SIGsy6Ny7SUKATgnu05uEg==

graphql-tools@4.0.5:
version "4.0.5"
resolved "https://registry.yarnpkg.com/graphql-tools/-/graphql-tools-4.0.5.tgz#d2b41ee0a330bfef833e5cdae7e1f0b0d86b1754"
integrity sha512-kQCh3IZsMqquDx7zfIGWBau42xe46gmqabwYkpPlCLIjcEY1XK+auP7iGRD9/205BPyoQdY8hT96MPpgERdC9Q==
graphql-tools-fork@^8.1.0:
version "8.1.0"
resolved "https://registry.yarnpkg.com/graphql-tools-fork/-/graphql-tools-fork-8.1.0.tgz#65716fcf23736a4a5ac8b0cb2b2f437cf1b6620f"
integrity sha512-lSR64fG+tIO3BZwqL5d/AdQvf0UA3qT4WBOngwdaNthex5z1AhvmXRk6lLoRWHqinPfCs04IDbe28QR1TdMS7Q==
dependencies:
apollo-link "^1.2.3"
apollo-utilities "^1.0.1"
apollo-link "^1.2.13"
apollo-link-http-common "^0.2.15"
apollo-utilities "^1.3.3"
deprecated-decorator "^0.1.6"
iterall "^1.1.3"
uuid "^3.1.0"
extract-files "^6.0.0"
form-data "^3.0.0"
iterall "^1.2.2"
node-fetch "^2.6.0"
uuid "^3.3.3"

"graphql@^0.11.0 || ^0.12.0 || ^0.13.0 || ^14.0.0":
version "14.0.2"
resolved "https://registry.yarnpkg.com/graphql/-/graphql-14.0.2.tgz#7dded337a4c3fd2d075692323384034b357f5650"
integrity sha512-gUC4YYsaiSJT1h40krG3J+USGlwhzNTXSb4IOZljn9ag5Tj+RkoXrWp+Kh7WyE3t1NCfab5kzCuxBIvOMERMXw==
graphql@^14.2.0:
version "14.5.8"
resolved "https://registry.yarnpkg.com/graphql/-/graphql-14.5.8.tgz#504f3d3114cb9a0a3f359bbbcf38d9e5bf6a6b3c"
integrity sha512-MMwmi0zlVLQKLdGiMfWkgQD7dY/TUKt4L+zgJ/aR0Howebod3aNgP5JkgvAULiR2HPVZaP2VEElqtdidHweLkg==
dependencies:
iterall "^1.2.2"

Expand Down Expand Up @@ -3259,7 +3273,7 @@ issue-parser@^3.0.0:
lodash.isstring "^4.0.1"
lodash.uniqby "^4.7.0"

iterall@1.2.2, iterall@^1.1.3, iterall@^1.2.2:
iterall@1.2.2, iterall@^1.2.2:
version "1.2.2"
resolved "https://registry.yarnpkg.com/iterall/-/iterall-1.2.2.tgz#92d70deb8028e0c39ff3164fdbf4d8b088130cd7"
integrity sha512-yynBb1g+RFUPY64fTrFv7nsjRrENBQJaX2UL+2Szc9REFrSNm1rpSXHGzhmAy7a9uv3vlvgBlXnf9RqmPH1/DA==
Expand Down Expand Up @@ -4109,6 +4123,11 @@ node-fetch@^2.3.0:
resolved "https://registry.yarnpkg.com/node-fetch/-/node-fetch-2.3.0.tgz#1a1d940bbfb916a1d3e0219f037e89e71f8c5fa5"
integrity sha512-MOd8pV3fxENbryESLgVIeaGKrdl+uaYhCSSVkjeOb/31/njTpcis5aWfdqgNlHIrKOLRbMnfPINPOML2CIFeXA==

node-fetch@^2.6.0:
version "2.6.0"
resolved "https://registry.yarnpkg.com/node-fetch/-/node-fetch-2.6.0.tgz#e633456386d4aa55863f676a7ab0daa8fdecb0fd"
integrity sha512-8dG4H5ujfvFiqDmVu9fQ5bOHUC15JMjMY/Zumv26oOvvVJjM67KF8koCWIabKQ1GJIa9r2mMZscBq/TbdOcmNA==

node-gyp@^3.8.0:
version "3.8.0"
resolved "https://registry.yarnpkg.com/node-gyp/-/node-gyp-3.8.0.tgz#540304261c330e80d0d5edce253a68cb3964218c"
Expand Down Expand Up @@ -6201,7 +6220,12 @@ tslib@1.9.0:
resolved "https://registry.yarnpkg.com/tslib/-/tslib-1.9.0.tgz#e37a86fda8cbbaf23a057f473c9f4dc64e5fc2e8"
integrity sha512-f/qGG2tUkrISBlQZEjEqoZ3B2+npJjIf04H1wuAv9iA8i04Icp+61KRXxFdha22670NJopsZCIjhC3SnjPRKrQ==

tslib@^1.8.0, tslib@^1.8.1, tslib@^1.9.3:
tslib@^1.10.0, tslib@^1.9.3:
version "1.10.0"
resolved "https://registry.yarnpkg.com/tslib/-/tslib-1.10.0.tgz#c3c19f95973fb0a62973fb09d90d961ee43e5c8a"
integrity sha512-qOebF53frne81cf0S9B41ByenJ3/IuH8yJKngAX35CmiZySA0khhkovshKK+jGCaMnVomla7gVlIcc3EvKPbTQ==

tslib@^1.8.0, tslib@^1.8.1:
version "1.9.3"
resolved "https://registry.yarnpkg.com/tslib/-/tslib-1.9.3.tgz#d7e4dd79245d85428c4d7e4822a79917954ca286"
integrity sha512-4krF8scpejhaOgqzBEcGM7yDIEfi0/8+8zDRZhNZZ2kjmHJ4hv3zCbQWxoJGz1iw5U0Jl0nma13xzHXcncMavQ==
Expand Down Expand Up @@ -6473,11 +6497,16 @@ util-extend@^1.0.1:
resolved "https://registry.yarnpkg.com/util-extend/-/util-extend-1.0.3.tgz#a7c216d267545169637b3b6edc6ca9119e2ff93f"
integrity sha1-p8IW0mdUUWljeztu3GypEZ4v+T8=

uuid@^3.1.0, uuid@^3.3.2:
uuid@^3.3.2:
version "3.3.2"
resolved "https://registry.yarnpkg.com/uuid/-/uuid-3.3.2.tgz#1b4af4955eb3077c501c23872fc6513811587131"
integrity sha512-yXJmeNaw3DnnKAOKJE51sL/ZaYfWJRl1pK9dr19YFCu0ObS231AB1/LbqTKRAQ5kw8A90rA6fr4riOUpTZvQZA==

uuid@^3.3.3:
version "3.3.3"
resolved "https://registry.yarnpkg.com/uuid/-/uuid-3.3.3.tgz#4568f0216e78760ee1dbf3a4d2cf53e224112866"
integrity sha512-pW0No1RGHgzlpHJO1nsVrHKpOEIxkGg1xB+v0ZmdNH5OAeAwzAVrCnI2/6Mtx+Uys6iaylxa+D3g4j63IKKjSQ==

validate-npm-package-license@^3.0.1, validate-npm-package-license@^3.0.4:
version "3.0.4"
resolved "https://registry.yarnpkg.com/validate-npm-package-license/-/validate-npm-package-license-3.0.4.tgz#fc91f6b9c7ba15c857f4cb2c5defeec39d4f410a"
Expand Down Expand Up @@ -6708,13 +6737,6 @@ yn@^2.0.0:
resolved "https://registry.yarnpkg.com/yn/-/yn-2.0.0.tgz#e5adabc8acf408f6385fc76495684c88e6af689a"
integrity sha1-5a2ryKz0CPY4X8dklWhMiOavaJo=

zen-observable-ts@^0.8.11:
version "0.8.11"
resolved "https://registry.yarnpkg.com/zen-observable-ts/-/zen-observable-ts-0.8.11.tgz#d54a27cd17dc4b4bb6bd008e5c096af7fcb068a9"
integrity sha512-8bs7rgGV4kz5iTb9isudkuQjtWwPnQ8lXq6/T76vrepYZVMsDEv6BXaEA+DHdJSK3KVLduagi9jSpSAJ5NgKHw==
dependencies:
zen-observable "^0.8.0"

zen-observable-ts@^0.8.20:
version "0.8.20"
resolved "https://registry.yarnpkg.com/zen-observable-ts/-/zen-observable-ts-0.8.20.tgz#44091e335d3fcbc97f6497e63e7f57d5b516b163"
Expand All @@ -6724,6 +6746,6 @@ zen-observable-ts@^0.8.20:
zen-observable "^0.8.0"

zen-observable@^0.8.0:
version "0.8.11"
resolved "https://registry.yarnpkg.com/zen-observable/-/zen-observable-0.8.11.tgz#d3415885eeeb42ee5abb9821c95bb518fcd6d199"
integrity sha512-N3xXQVr4L61rZvGMpWe8XoCGX8vhU35dPyQ4fm5CY/KDlG0F75un14hjbckPXTDuKUY6V0dqR2giT6xN8Y4GEQ==
version "0.8.15"
resolved "https://registry.yarnpkg.com/zen-observable/-/zen-observable-0.8.15.tgz#96415c512d8e3ffd920afd3889604e30b9eaac15"
integrity sha512-PQ2PC7R9rslx84ndNBZB/Dkv8V8fZEpk83RLgXtYd0fwUgEjseMn1Dgajh2x6S8QbZAFa9p2qVCEuYZNgve0dQ==