@layer-drone/protocol 0.7.0 → 1.0.0
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.
- package/README.md +1 -1
- package/dist/index.d.mts +1137 -271
- package/dist/index.d.ts +1137 -271
- package/dist/index.js +1328 -385
- package/dist/index.mjs +1222 -333
- package/package.json +3 -3
- package/src/client/sdk.gen.ts +2231 -584
- package/src/client/transformers.gen.ts +269 -77
- package/src/client/types.gen.ts +1541 -359
package/README.md
CHANGED
|
@@ -102,7 +102,7 @@ class MyController {
|
|
|
102
102
|
let message = "Event received";
|
|
103
103
|
switch (event.event_type) {
|
|
104
104
|
case "protocol.flight.reviewed":
|
|
105
|
-
// handle narrowed event type
|
|
105
|
+
// handle narrowed event type.
|
|
106
106
|
break;
|
|
107
107
|
default:
|
|
108
108
|
message = `Handler for ${event.event_type} not implemented`;
|