Skip to content

Commit 8cd4679

Browse files
committed
Update CHANGELOG
1 parent 4b5497f commit 8cd4679

File tree

2 files changed

+8
-3
lines changed

2 files changed

+8
-3
lines changed

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,10 @@
1010

1111
## Version History
1212

13+
### v1.7.0
14+
15+
- :rocket: Update Core Deps
16+
1317
### v1.6.0
1418

1519
- :rocket: Update Core Deps

task.ts

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
1+
import { Feature } from '@tak-ps/node-cot'
12
import { Static, Type, TSchema } from '@sinclair/typebox';
23
import type { Event } from '@tak-ps/etl';
3-
import ETL, { SchemaType, handler as internal, local, InputFeature, InputFeatureCollection, DataFlowType, InvocationType } from '@tak-ps/etl';
4+
import ETL, { SchemaType, handler as internal, local, DataFlowType, InvocationType } from '@tak-ps/etl';
45

56
import { fetch } from '@tak-ps/etl';
67

@@ -201,7 +202,7 @@ export default class Task extends ETL {
201202
verbose: true
202203
});
203204

204-
const features: Static<typeof InputFeature>[] = [];
205+
const features: Static<typeof Feature.InputFeature>[] = [];
205206

206207
for (const device of devicesRes.data) {
207208
const primary = (device.attributes.assignees || []).filter((user) => {
@@ -293,7 +294,7 @@ export default class Task extends ETL {
293294
}
294295
}
295296

296-
const fc: Static<typeof InputFeatureCollection> = {
297+
const fc: Static<typeof Feature.InputFeatureCollection> = {
297298
type: 'FeatureCollection',
298299
features: features
299300
}

0 commit comments

Comments
 (0)