From e5f131a8b50320c03e9d2e88584026f5bb300502 Mon Sep 17 00:00:00 2001 From: Beeno Tung Date: Sat, 13 Aug 2016 00:38:59 +0800 Subject: [PATCH 01/12] added horizon typing **Typings URL:** https://github.com/beenotung/typed-horizon **Questions (for new typings):** * [x] Does the README explain the purpose of the typings and have a link to the JavaScript project? * [ ] Do the typings follow the source structure (e.g. `index.js` <-> `index.d.ts`)? no, the typing is in a single file * [x] Are they external or global modules according the source (e.g. see README sources)? they are global modules --- global/horizon.json | 5 +++++ 1 file changed, 5 insertions(+) create mode 100644 global/horizon.json diff --git a/global/horizon.json b/global/horizon.json new file mode 100644 index 00000000..be992c31 --- /dev/null +++ b/global/horizon.json @@ -0,0 +1,5 @@ +{ + "versions": { + "1.0.0": "github:beenotung/typed-horizon#d1ddd9c70ef452116c025a25f99c6067733e0cbb" + } +} From cd6617bb4703e00b58723796f212f6b2376b4924 Mon Sep 17 00:00:00 2001 From: Beeno Tung Date: Sat, 13 Aug 2016 12:30:09 +0800 Subject: [PATCH 02/12] removed real value (replaced by param type) --- global/horizon.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/global/horizon.json b/global/horizon.json index be992c31..c5471329 100644 --- a/global/horizon.json +++ b/global/horizon.json @@ -1,5 +1,5 @@ { "versions": { - "1.0.0": "github:beenotung/typed-horizon#d1ddd9c70ef452116c025a25f99c6067733e0cbb" + "1.0.0": "github:beenotung/typed-horizon#b4ad8e56192abc1d67636fe422ad89e1b5ea726a" } } From 4b039c823a2cd8e1fd07fa712d5e7845384bedcc Mon Sep 17 00:00:00 2001 From: Beeno Tung Date: Sat, 13 Aug 2016 13:43:17 +0800 Subject: [PATCH 03/12] updated horizon.json changed to global typing; refer to raw file directly: eliminate the need to maintain a 'release branch' (reduce duplicated storage); --- global/horizon.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/global/horizon.json b/global/horizon.json index c5471329..9e1ff07b 100644 --- a/global/horizon.json +++ b/global/horizon.json @@ -1,5 +1,5 @@ { "versions": { - "1.0.0": "github:beenotung/typed-horizon#b4ad8e56192abc1d67636fe422ad89e1b5ea726a" + "1.0.0": "github:beenotung/typed-horizon/global/main.d.ts#c9c9799fd53fd15e1ff196271c92d52c8d80b2fb" } } From 44a3f6f0e49d4fd096b9cbb4f9c84028a70081e7 Mon Sep 17 00:00:00 2001 From: Beeno Tung Date: Sat, 13 Aug 2016 14:06:24 +0800 Subject: [PATCH 04/12] added declare module --- global/horizon.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/global/horizon.json b/global/horizon.json index 9e1ff07b..a6536fcc 100644 --- a/global/horizon.json +++ b/global/horizon.json @@ -1,5 +1,5 @@ { "versions": { - "1.0.0": "github:beenotung/typed-horizon/global/main.d.ts#c9c9799fd53fd15e1ff196271c92d52c8d80b2fb" + "1.0.0": "github:beenotung/typed-horizon/global/main.d.ts#ee6d2c3f697eaa3733fb06587d139905612a2cd9" } } From c1db71870b6cf85789b21b819434c84a06c860c6 Mon Sep 17 00:00:00 2001 From: Beeno Tung Date: Sat, 13 Aug 2016 16:44:26 +0800 Subject: [PATCH 05/12] changed horizon from global into npm in order to import npm:rxjs (instead of typings:rx-lite previously) --- global/horizon.json | 5 ----- npm/horizon.json | 5 +++++ 2 files changed, 5 insertions(+), 5 deletions(-) delete mode 100644 global/horizon.json create mode 100644 npm/horizon.json diff --git a/global/horizon.json b/global/horizon.json deleted file mode 100644 index a6536fcc..00000000 --- a/global/horizon.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "versions": { - "1.0.0": "github:beenotung/typed-horizon/global/main.d.ts#ee6d2c3f697eaa3733fb06587d139905612a2cd9" - } -} diff --git a/npm/horizon.json b/npm/horizon.json new file mode 100644 index 00000000..3ac6c626 --- /dev/null +++ b/npm/horizon.json @@ -0,0 +1,5 @@ +{ + "versions": { + "1.0.0": "github:beenotung/typed-horizon/src/main.d.ts#0071e9e7faf369306a902115b72d6fbb6de1491b" + } +} From 06bd72d3fc979299cc72f5aa2418e3c3812b86c1 Mon Sep 17 00:00:00 2001 From: Beeno Tung Date: Sat, 13 Aug 2016 17:02:59 +0800 Subject: [PATCH 06/12] updated HorizonConstructor param --- npm/horizon.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/npm/horizon.json b/npm/horizon.json index 3ac6c626..0e5250aa 100644 --- a/npm/horizon.json +++ b/npm/horizon.json @@ -1,5 +1,5 @@ { "versions": { - "1.0.0": "github:beenotung/typed-horizon/src/main.d.ts#0071e9e7faf369306a902115b72d6fbb6de1491b" + "1.0.0": "github:beenotung/typed-horizon/src/main.d.ts#e2a6a162b1e92a1dce536a9d8efa502f189a172a" } } From c578195292bd2b621561aee901ca743cc34f67c5 Mon Sep 17 00:00:00 2001 From: Beeno Tung Date: Sat, 13 Aug 2016 18:14:08 +0800 Subject: [PATCH 07/12] change back to global --- global/horizon.json | 5 +++++ npm/horizon.json | 5 ----- 2 files changed, 5 insertions(+), 5 deletions(-) create mode 100644 global/horizon.json delete mode 100644 npm/horizon.json diff --git a/global/horizon.json b/global/horizon.json new file mode 100644 index 00000000..d1d3bec7 --- /dev/null +++ b/global/horizon.json @@ -0,0 +1,5 @@ +{ + "versions": { + "1.0.0": "github:beenotung/typed-horizon/typings.json#025e2995368f60af9a261715b7f285c8b7ca57dc" + } +} diff --git a/npm/horizon.json b/npm/horizon.json deleted file mode 100644 index 0e5250aa..00000000 --- a/npm/horizon.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "versions": { - "1.0.0": "github:beenotung/typed-horizon/src/main.d.ts#e2a6a162b1e92a1dce536a9d8efa502f189a172a" - } -} From 42d596fe6f3a4ca57cd9f07ebd539153aa86533f Mon Sep 17 00:00:00 2001 From: Beeno Tung Date: Sat, 13 Aug 2016 18:36:47 +0800 Subject: [PATCH 08/12] seperated HorizonConstructorParam into an interface --- global/horizon.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/global/horizon.json b/global/horizon.json index d1d3bec7..570d8aec 100644 --- a/global/horizon.json +++ b/global/horizon.json @@ -1,5 +1,5 @@ { "versions": { - "1.0.0": "github:beenotung/typed-horizon/typings.json#025e2995368f60af9a261715b7f285c8b7ca57dc" + "1.0.0": "github:beenotung/typed-horizon/typings.json#d727850b182a26434abb98c4a91ef0109eebcd4d" } } From afd04d1ffed98505946044065633e72a5b743254 Mon Sep 17 00:00:00 2001 From: Beeno Tung Date: Sun, 14 Aug 2016 18:10:57 +0800 Subject: [PATCH 09/12] updated query annotation --- global/horizon.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/global/horizon.json b/global/horizon.json index 570d8aec..a35fdcb5 100644 --- a/global/horizon.json +++ b/global/horizon.json @@ -1,5 +1,5 @@ { "versions": { - "1.0.0": "github:beenotung/typed-horizon/typings.json#d727850b182a26434abb98c4a91ef0109eebcd4d" + "1.0.0": "github:beenotung/typed-horizon/typings.json#d3797a90774d64227c1e36166bad1233a4b28b48" } } From 500a6187c1eef9efdc6ce84b5c055e40428f6a03 Mon Sep 17 00:00:00 2001 From: Beeno Tung Date: Sun, 14 Aug 2016 21:29:15 +0800 Subject: [PATCH 10/12] fixed table method signature --- global/horizon.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/global/horizon.json b/global/horizon.json index a35fdcb5..291ec1a2 100644 --- a/global/horizon.json +++ b/global/horizon.json @@ -1,5 +1,5 @@ { "versions": { - "1.0.0": "github:beenotung/typed-horizon/typings.json#d3797a90774d64227c1e36166bad1233a4b28b48" + "1.0.0": "github:beenotung/typed-horizon/typings.json#a3f86d241d54754b59e5c9677cee995eb3ca5473" } } From cf9ab6496ce7eb64d50f76628b1a206c3649fb65 Mon Sep 17 00:00:00 2001 From: Beeno Tung Date: Sun, 14 Aug 2016 21:48:07 +0800 Subject: [PATCH 11/12] removed param values --- global/horizon.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/global/horizon.json b/global/horizon.json index 291ec1a2..db05be37 100644 --- a/global/horizon.json +++ b/global/horizon.json @@ -1,5 +1,5 @@ { "versions": { - "1.0.0": "github:beenotung/typed-horizon/typings.json#a3f86d241d54754b59e5c9677cee995eb3ca5473" + "1.0.0": "github:beenotung/typed-horizon/typings.json#0c48ca6e7633b95dad3e7143a41db058edf58a3e" } } From 8f4efbc41e5669ee106ce1697aed55e163f1c0d9 Mon Sep 17 00:00:00 2001 From: Beeno Tung Date: Sun, 14 Aug 2016 22:34:02 +0800 Subject: [PATCH 12/12] solved import in namespace issue --- global/horizon.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/global/horizon.json b/global/horizon.json index db05be37..9b5ee90f 100644 --- a/global/horizon.json +++ b/global/horizon.json @@ -1,5 +1,5 @@ { "versions": { - "1.0.0": "github:beenotung/typed-horizon/typings.json#0c48ca6e7633b95dad3e7143a41db058edf58a3e" + "1.0.0": "github:beenotung/typed-horizon/typings.json#3bb57af792fdf01ffa1dba08f810b7806ae2f642" } }