@tx5dr/contracts 1.2.0 → 1.2.2
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/dist/schema/__tests__/plugin-market.schema.test.d.ts +2 -0
- package/dist/schema/__tests__/plugin-market.schema.test.d.ts.map +1 -0
- package/dist/schema/__tests__/plugin-market.schema.test.js +77 -0
- package/dist/schema/__tests__/plugin-market.schema.test.js.map +1 -0
- package/dist/schema/plugin.schema.d.ts +778 -6
- package/dist/schema/plugin.schema.d.ts.map +1 -1
- package/dist/schema/plugin.schema.js +82 -1
- package/dist/schema/plugin.schema.js.map +1 -1
- package/dist/schema/websocket.schema.d.ts +302 -20
- package/dist/schema/websocket.schema.d.ts.map +1 -1
- package/dist/schema/websocket.schema.js +1 -0
- package/dist/schema/websocket.schema.js.map +1 -1
- package/package.json +1 -1
- package/src/schema/__tests__/plugin-market.schema.test.ts +88 -0
- package/src/schema/plugin.schema.ts +108 -1
- package/src/schema/websocket.schema.ts +2 -0
|
@@ -110,6 +110,7 @@ export declare enum WSMessageType {
|
|
|
110
110
|
PLUGIN_RUNTIME_LOG_HISTORY = "pluginRuntimeLogHistory",
|
|
111
111
|
PLUGIN_USER_ACTION = "pluginUserAction",
|
|
112
112
|
PLUGIN_PAGE_PUSH = "pluginPagePush",
|
|
113
|
+
PLUGIN_PANEL_META = "pluginPanelMeta",
|
|
113
114
|
OPENWEBRX_LISTEN_STATUS = "openwebrxListenStatus",
|
|
114
115
|
OPENWEBRX_PROFILE_SELECT_REQUEST = "openwebrxProfileSelectRequest",
|
|
115
116
|
OPENWEBRX_PROFILE_SELECT_RESPONSE = "openwebrxProfileSelectResponse",
|
|
@@ -8193,6 +8194,28 @@ export declare const WSPluginListMessageSchema: z.ZodObject<{
|
|
|
8193
8194
|
}[] | undefined;
|
|
8194
8195
|
}>>;
|
|
8195
8196
|
locales: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodRecord<z.ZodString, z.ZodString>>>;
|
|
8197
|
+
source: z.ZodOptional<z.ZodDiscriminatedUnion<"kind", [z.ZodObject<{
|
|
8198
|
+
kind: z.ZodLiteral<"marketplace">;
|
|
8199
|
+
version: z.ZodString;
|
|
8200
|
+
channel: z.ZodEnum<["stable", "nightly"]>;
|
|
8201
|
+
artifactUrl: z.ZodString;
|
|
8202
|
+
sha256: z.ZodString;
|
|
8203
|
+
installedAt: z.ZodNumber;
|
|
8204
|
+
}, "strip", z.ZodTypeAny, {
|
|
8205
|
+
kind: "marketplace";
|
|
8206
|
+
version: string;
|
|
8207
|
+
channel: "stable" | "nightly";
|
|
8208
|
+
artifactUrl: string;
|
|
8209
|
+
sha256: string;
|
|
8210
|
+
installedAt: number;
|
|
8211
|
+
}, {
|
|
8212
|
+
kind: "marketplace";
|
|
8213
|
+
version: string;
|
|
8214
|
+
channel: "stable" | "nightly";
|
|
8215
|
+
artifactUrl: string;
|
|
8216
|
+
sha256: string;
|
|
8217
|
+
installedAt: number;
|
|
8218
|
+
}>]>>;
|
|
8196
8219
|
}, "strip", z.ZodTypeAny, {
|
|
8197
8220
|
type: "strategy" | "utility";
|
|
8198
8221
|
name: string;
|
|
@@ -8249,6 +8272,14 @@ export declare const WSPluginListMessageSchema: z.ZodObject<{
|
|
|
8249
8272
|
assignedOperatorIds?: string[] | undefined;
|
|
8250
8273
|
capabilities?: ("auto_call_candidate" | "auto_call_execution")[] | undefined;
|
|
8251
8274
|
locales?: Record<string, Record<string, string>> | undefined;
|
|
8275
|
+
source?: {
|
|
8276
|
+
kind: "marketplace";
|
|
8277
|
+
version: string;
|
|
8278
|
+
channel: "stable" | "nightly";
|
|
8279
|
+
artifactUrl: string;
|
|
8280
|
+
sha256: string;
|
|
8281
|
+
installedAt: number;
|
|
8282
|
+
} | undefined;
|
|
8252
8283
|
}, {
|
|
8253
8284
|
type: "strategy" | "utility";
|
|
8254
8285
|
name: string;
|
|
@@ -8305,6 +8336,14 @@ export declare const WSPluginListMessageSchema: z.ZodObject<{
|
|
|
8305
8336
|
assignedOperatorIds?: string[] | undefined;
|
|
8306
8337
|
capabilities?: ("auto_call_candidate" | "auto_call_execution")[] | undefined;
|
|
8307
8338
|
locales?: Record<string, Record<string, string>> | undefined;
|
|
8339
|
+
source?: {
|
|
8340
|
+
kind: "marketplace";
|
|
8341
|
+
version: string;
|
|
8342
|
+
channel: "stable" | "nightly";
|
|
8343
|
+
artifactUrl: string;
|
|
8344
|
+
sha256: string;
|
|
8345
|
+
installedAt: number;
|
|
8346
|
+
} | undefined;
|
|
8308
8347
|
}>, "many">;
|
|
8309
8348
|
lastError: z.ZodOptional<z.ZodString>;
|
|
8310
8349
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -8366,6 +8405,14 @@ export declare const WSPluginListMessageSchema: z.ZodObject<{
|
|
|
8366
8405
|
assignedOperatorIds?: string[] | undefined;
|
|
8367
8406
|
capabilities?: ("auto_call_candidate" | "auto_call_execution")[] | undefined;
|
|
8368
8407
|
locales?: Record<string, Record<string, string>> | undefined;
|
|
8408
|
+
source?: {
|
|
8409
|
+
kind: "marketplace";
|
|
8410
|
+
version: string;
|
|
8411
|
+
channel: "stable" | "nightly";
|
|
8412
|
+
artifactUrl: string;
|
|
8413
|
+
sha256: string;
|
|
8414
|
+
installedAt: number;
|
|
8415
|
+
} | undefined;
|
|
8369
8416
|
}[];
|
|
8370
8417
|
lastError?: string | undefined;
|
|
8371
8418
|
}, {
|
|
@@ -8427,6 +8474,14 @@ export declare const WSPluginListMessageSchema: z.ZodObject<{
|
|
|
8427
8474
|
assignedOperatorIds?: string[] | undefined;
|
|
8428
8475
|
capabilities?: ("auto_call_candidate" | "auto_call_execution")[] | undefined;
|
|
8429
8476
|
locales?: Record<string, Record<string, string>> | undefined;
|
|
8477
|
+
source?: {
|
|
8478
|
+
kind: "marketplace";
|
|
8479
|
+
version: string;
|
|
8480
|
+
channel: "stable" | "nightly";
|
|
8481
|
+
artifactUrl: string;
|
|
8482
|
+
sha256: string;
|
|
8483
|
+
installedAt: number;
|
|
8484
|
+
} | undefined;
|
|
8430
8485
|
}[];
|
|
8431
8486
|
lastError?: string | undefined;
|
|
8432
8487
|
}>;
|
|
@@ -8492,6 +8547,14 @@ export declare const WSPluginListMessageSchema: z.ZodObject<{
|
|
|
8492
8547
|
assignedOperatorIds?: string[] | undefined;
|
|
8493
8548
|
capabilities?: ("auto_call_candidate" | "auto_call_execution")[] | undefined;
|
|
8494
8549
|
locales?: Record<string, Record<string, string>> | undefined;
|
|
8550
|
+
source?: {
|
|
8551
|
+
kind: "marketplace";
|
|
8552
|
+
version: string;
|
|
8553
|
+
channel: "stable" | "nightly";
|
|
8554
|
+
artifactUrl: string;
|
|
8555
|
+
sha256: string;
|
|
8556
|
+
installedAt: number;
|
|
8557
|
+
} | undefined;
|
|
8495
8558
|
}[];
|
|
8496
8559
|
lastError?: string | undefined;
|
|
8497
8560
|
};
|
|
@@ -8558,6 +8621,14 @@ export declare const WSPluginListMessageSchema: z.ZodObject<{
|
|
|
8558
8621
|
assignedOperatorIds?: string[] | undefined;
|
|
8559
8622
|
capabilities?: ("auto_call_candidate" | "auto_call_execution")[] | undefined;
|
|
8560
8623
|
locales?: Record<string, Record<string, string>> | undefined;
|
|
8624
|
+
source?: {
|
|
8625
|
+
kind: "marketplace";
|
|
8626
|
+
version: string;
|
|
8627
|
+
channel: "stable" | "nightly";
|
|
8628
|
+
artifactUrl: string;
|
|
8629
|
+
sha256: string;
|
|
8630
|
+
installedAt: number;
|
|
8631
|
+
} | undefined;
|
|
8561
8632
|
}[];
|
|
8562
8633
|
lastError?: string | undefined;
|
|
8563
8634
|
};
|
|
@@ -8717,6 +8788,28 @@ export declare const WSPluginStatusChangedMessageSchema: z.ZodObject<{
|
|
|
8717
8788
|
}[] | undefined;
|
|
8718
8789
|
}>>;
|
|
8719
8790
|
locales: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodRecord<z.ZodString, z.ZodString>>>;
|
|
8791
|
+
source: z.ZodOptional<z.ZodDiscriminatedUnion<"kind", [z.ZodObject<{
|
|
8792
|
+
kind: z.ZodLiteral<"marketplace">;
|
|
8793
|
+
version: z.ZodString;
|
|
8794
|
+
channel: z.ZodEnum<["stable", "nightly"]>;
|
|
8795
|
+
artifactUrl: z.ZodString;
|
|
8796
|
+
sha256: z.ZodString;
|
|
8797
|
+
installedAt: z.ZodNumber;
|
|
8798
|
+
}, "strip", z.ZodTypeAny, {
|
|
8799
|
+
kind: "marketplace";
|
|
8800
|
+
version: string;
|
|
8801
|
+
channel: "stable" | "nightly";
|
|
8802
|
+
artifactUrl: string;
|
|
8803
|
+
sha256: string;
|
|
8804
|
+
installedAt: number;
|
|
8805
|
+
}, {
|
|
8806
|
+
kind: "marketplace";
|
|
8807
|
+
version: string;
|
|
8808
|
+
channel: "stable" | "nightly";
|
|
8809
|
+
artifactUrl: string;
|
|
8810
|
+
sha256: string;
|
|
8811
|
+
installedAt: number;
|
|
8812
|
+
}>]>>;
|
|
8720
8813
|
}, "strip", z.ZodTypeAny, {
|
|
8721
8814
|
type: "strategy" | "utility";
|
|
8722
8815
|
name: string;
|
|
@@ -8773,6 +8866,14 @@ export declare const WSPluginStatusChangedMessageSchema: z.ZodObject<{
|
|
|
8773
8866
|
assignedOperatorIds?: string[] | undefined;
|
|
8774
8867
|
capabilities?: ("auto_call_candidate" | "auto_call_execution")[] | undefined;
|
|
8775
8868
|
locales?: Record<string, Record<string, string>> | undefined;
|
|
8869
|
+
source?: {
|
|
8870
|
+
kind: "marketplace";
|
|
8871
|
+
version: string;
|
|
8872
|
+
channel: "stable" | "nightly";
|
|
8873
|
+
artifactUrl: string;
|
|
8874
|
+
sha256: string;
|
|
8875
|
+
installedAt: number;
|
|
8876
|
+
} | undefined;
|
|
8776
8877
|
}, {
|
|
8777
8878
|
type: "strategy" | "utility";
|
|
8778
8879
|
name: string;
|
|
@@ -8829,6 +8930,14 @@ export declare const WSPluginStatusChangedMessageSchema: z.ZodObject<{
|
|
|
8829
8930
|
assignedOperatorIds?: string[] | undefined;
|
|
8830
8931
|
capabilities?: ("auto_call_candidate" | "auto_call_execution")[] | undefined;
|
|
8831
8932
|
locales?: Record<string, Record<string, string>> | undefined;
|
|
8933
|
+
source?: {
|
|
8934
|
+
kind: "marketplace";
|
|
8935
|
+
version: string;
|
|
8936
|
+
channel: "stable" | "nightly";
|
|
8937
|
+
artifactUrl: string;
|
|
8938
|
+
sha256: string;
|
|
8939
|
+
installedAt: number;
|
|
8940
|
+
} | undefined;
|
|
8832
8941
|
}>;
|
|
8833
8942
|
}, "strip", z.ZodTypeAny, {
|
|
8834
8943
|
generation: number;
|
|
@@ -8888,6 +8997,14 @@ export declare const WSPluginStatusChangedMessageSchema: z.ZodObject<{
|
|
|
8888
8997
|
assignedOperatorIds?: string[] | undefined;
|
|
8889
8998
|
capabilities?: ("auto_call_candidate" | "auto_call_execution")[] | undefined;
|
|
8890
8999
|
locales?: Record<string, Record<string, string>> | undefined;
|
|
9000
|
+
source?: {
|
|
9001
|
+
kind: "marketplace";
|
|
9002
|
+
version: string;
|
|
9003
|
+
channel: "stable" | "nightly";
|
|
9004
|
+
artifactUrl: string;
|
|
9005
|
+
sha256: string;
|
|
9006
|
+
installedAt: number;
|
|
9007
|
+
} | undefined;
|
|
8891
9008
|
};
|
|
8892
9009
|
}, {
|
|
8893
9010
|
generation: number;
|
|
@@ -8947,6 +9064,14 @@ export declare const WSPluginStatusChangedMessageSchema: z.ZodObject<{
|
|
|
8947
9064
|
assignedOperatorIds?: string[] | undefined;
|
|
8948
9065
|
capabilities?: ("auto_call_candidate" | "auto_call_execution")[] | undefined;
|
|
8949
9066
|
locales?: Record<string, Record<string, string>> | undefined;
|
|
9067
|
+
source?: {
|
|
9068
|
+
kind: "marketplace";
|
|
9069
|
+
version: string;
|
|
9070
|
+
channel: "stable" | "nightly";
|
|
9071
|
+
artifactUrl: string;
|
|
9072
|
+
sha256: string;
|
|
9073
|
+
installedAt: number;
|
|
9074
|
+
} | undefined;
|
|
8950
9075
|
};
|
|
8951
9076
|
}>;
|
|
8952
9077
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -9010,6 +9135,14 @@ export declare const WSPluginStatusChangedMessageSchema: z.ZodObject<{
|
|
|
9010
9135
|
assignedOperatorIds?: string[] | undefined;
|
|
9011
9136
|
capabilities?: ("auto_call_candidate" | "auto_call_execution")[] | undefined;
|
|
9012
9137
|
locales?: Record<string, Record<string, string>> | undefined;
|
|
9138
|
+
source?: {
|
|
9139
|
+
kind: "marketplace";
|
|
9140
|
+
version: string;
|
|
9141
|
+
channel: "stable" | "nightly";
|
|
9142
|
+
artifactUrl: string;
|
|
9143
|
+
sha256: string;
|
|
9144
|
+
installedAt: number;
|
|
9145
|
+
} | undefined;
|
|
9013
9146
|
};
|
|
9014
9147
|
};
|
|
9015
9148
|
id?: string | undefined;
|
|
@@ -9074,6 +9207,14 @@ export declare const WSPluginStatusChangedMessageSchema: z.ZodObject<{
|
|
|
9074
9207
|
assignedOperatorIds?: string[] | undefined;
|
|
9075
9208
|
capabilities?: ("auto_call_candidate" | "auto_call_execution")[] | undefined;
|
|
9076
9209
|
locales?: Record<string, Record<string, string>> | undefined;
|
|
9210
|
+
source?: {
|
|
9211
|
+
kind: "marketplace";
|
|
9212
|
+
version: string;
|
|
9213
|
+
channel: "stable" | "nightly";
|
|
9214
|
+
artifactUrl: string;
|
|
9215
|
+
sha256: string;
|
|
9216
|
+
installedAt: number;
|
|
9217
|
+
} | undefined;
|
|
9077
9218
|
};
|
|
9078
9219
|
};
|
|
9079
9220
|
id?: string | undefined;
|
|
@@ -9187,8 +9328,8 @@ export declare const WSPluginRuntimeLogMessageSchema: z.ZodObject<{
|
|
|
9187
9328
|
}, "strip", z.ZodTypeAny, {
|
|
9188
9329
|
message: string;
|
|
9189
9330
|
timestamp: number;
|
|
9190
|
-
level: "error" | "info" | "debug" | "warn";
|
|
9191
9331
|
source: "system";
|
|
9332
|
+
level: "error" | "info" | "debug" | "warn";
|
|
9192
9333
|
stage: "scan" | "load" | "validate" | "reload" | "activate";
|
|
9193
9334
|
pluginName?: string | undefined;
|
|
9194
9335
|
directoryName?: string | undefined;
|
|
@@ -9196,8 +9337,8 @@ export declare const WSPluginRuntimeLogMessageSchema: z.ZodObject<{
|
|
|
9196
9337
|
}, {
|
|
9197
9338
|
message: string;
|
|
9198
9339
|
timestamp: number;
|
|
9199
|
-
level: "error" | "info" | "debug" | "warn";
|
|
9200
9340
|
source: "system";
|
|
9341
|
+
level: "error" | "info" | "debug" | "warn";
|
|
9201
9342
|
stage: "scan" | "load" | "validate" | "reload" | "activate";
|
|
9202
9343
|
pluginName?: string | undefined;
|
|
9203
9344
|
directoryName?: string | undefined;
|
|
@@ -9209,8 +9350,8 @@ export declare const WSPluginRuntimeLogMessageSchema: z.ZodObject<{
|
|
|
9209
9350
|
data: {
|
|
9210
9351
|
message: string;
|
|
9211
9352
|
timestamp: number;
|
|
9212
|
-
level: "error" | "info" | "debug" | "warn";
|
|
9213
9353
|
source: "system";
|
|
9354
|
+
level: "error" | "info" | "debug" | "warn";
|
|
9214
9355
|
stage: "scan" | "load" | "validate" | "reload" | "activate";
|
|
9215
9356
|
pluginName?: string | undefined;
|
|
9216
9357
|
directoryName?: string | undefined;
|
|
@@ -9223,8 +9364,8 @@ export declare const WSPluginRuntimeLogMessageSchema: z.ZodObject<{
|
|
|
9223
9364
|
data: {
|
|
9224
9365
|
message: string;
|
|
9225
9366
|
timestamp: number;
|
|
9226
|
-
level: "error" | "info" | "debug" | "warn";
|
|
9227
9367
|
source: "system";
|
|
9368
|
+
level: "error" | "info" | "debug" | "warn";
|
|
9228
9369
|
stage: "scan" | "load" | "validate" | "reload" | "activate";
|
|
9229
9370
|
pluginName?: string | undefined;
|
|
9230
9371
|
directoryName?: string | undefined;
|
|
@@ -9279,8 +9420,8 @@ export declare const WSPluginRuntimeLogHistoryMessageSchema: z.ZodObject<{
|
|
|
9279
9420
|
}, "strip", z.ZodTypeAny, {
|
|
9280
9421
|
message: string;
|
|
9281
9422
|
timestamp: number;
|
|
9282
|
-
level: "error" | "info" | "debug" | "warn";
|
|
9283
9423
|
source: "system";
|
|
9424
|
+
level: "error" | "info" | "debug" | "warn";
|
|
9284
9425
|
stage: "scan" | "load" | "validate" | "reload" | "activate";
|
|
9285
9426
|
pluginName?: string | undefined;
|
|
9286
9427
|
directoryName?: string | undefined;
|
|
@@ -9288,8 +9429,8 @@ export declare const WSPluginRuntimeLogHistoryMessageSchema: z.ZodObject<{
|
|
|
9288
9429
|
}, {
|
|
9289
9430
|
message: string;
|
|
9290
9431
|
timestamp: number;
|
|
9291
|
-
level: "error" | "info" | "debug" | "warn";
|
|
9292
9432
|
source: "system";
|
|
9433
|
+
level: "error" | "info" | "debug" | "warn";
|
|
9293
9434
|
stage: "scan" | "load" | "validate" | "reload" | "activate";
|
|
9294
9435
|
pluginName?: string | undefined;
|
|
9295
9436
|
directoryName?: string | undefined;
|
|
@@ -9299,8 +9440,8 @@ export declare const WSPluginRuntimeLogHistoryMessageSchema: z.ZodObject<{
|
|
|
9299
9440
|
entries: {
|
|
9300
9441
|
message: string;
|
|
9301
9442
|
timestamp: number;
|
|
9302
|
-
level: "error" | "info" | "debug" | "warn";
|
|
9303
9443
|
source: "system";
|
|
9444
|
+
level: "error" | "info" | "debug" | "warn";
|
|
9304
9445
|
stage: "scan" | "load" | "validate" | "reload" | "activate";
|
|
9305
9446
|
pluginName?: string | undefined;
|
|
9306
9447
|
directoryName?: string | undefined;
|
|
@@ -9310,8 +9451,8 @@ export declare const WSPluginRuntimeLogHistoryMessageSchema: z.ZodObject<{
|
|
|
9310
9451
|
entries: {
|
|
9311
9452
|
message: string;
|
|
9312
9453
|
timestamp: number;
|
|
9313
|
-
level: "error" | "info" | "debug" | "warn";
|
|
9314
9454
|
source: "system";
|
|
9455
|
+
level: "error" | "info" | "debug" | "warn";
|
|
9315
9456
|
stage: "scan" | "load" | "validate" | "reload" | "activate";
|
|
9316
9457
|
pluginName?: string | undefined;
|
|
9317
9458
|
directoryName?: string | undefined;
|
|
@@ -9325,8 +9466,8 @@ export declare const WSPluginRuntimeLogHistoryMessageSchema: z.ZodObject<{
|
|
|
9325
9466
|
entries: {
|
|
9326
9467
|
message: string;
|
|
9327
9468
|
timestamp: number;
|
|
9328
|
-
level: "error" | "info" | "debug" | "warn";
|
|
9329
9469
|
source: "system";
|
|
9470
|
+
level: "error" | "info" | "debug" | "warn";
|
|
9330
9471
|
stage: "scan" | "load" | "validate" | "reload" | "activate";
|
|
9331
9472
|
pluginName?: string | undefined;
|
|
9332
9473
|
directoryName?: string | undefined;
|
|
@@ -9341,8 +9482,8 @@ export declare const WSPluginRuntimeLogHistoryMessageSchema: z.ZodObject<{
|
|
|
9341
9482
|
entries: {
|
|
9342
9483
|
message: string;
|
|
9343
9484
|
timestamp: number;
|
|
9344
|
-
level: "error" | "info" | "debug" | "warn";
|
|
9345
9485
|
source: "system";
|
|
9486
|
+
level: "error" | "info" | "debug" | "warn";
|
|
9346
9487
|
stage: "scan" | "load" | "validate" | "reload" | "activate";
|
|
9347
9488
|
pluginName?: string | undefined;
|
|
9348
9489
|
directoryName?: string | undefined;
|
|
@@ -15502,6 +15643,28 @@ export declare const WSMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObje
|
|
|
15502
15643
|
}[] | undefined;
|
|
15503
15644
|
}>>;
|
|
15504
15645
|
locales: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodRecord<z.ZodString, z.ZodString>>>;
|
|
15646
|
+
source: z.ZodOptional<z.ZodDiscriminatedUnion<"kind", [z.ZodObject<{
|
|
15647
|
+
kind: z.ZodLiteral<"marketplace">;
|
|
15648
|
+
version: z.ZodString;
|
|
15649
|
+
channel: z.ZodEnum<["stable", "nightly"]>;
|
|
15650
|
+
artifactUrl: z.ZodString;
|
|
15651
|
+
sha256: z.ZodString;
|
|
15652
|
+
installedAt: z.ZodNumber;
|
|
15653
|
+
}, "strip", z.ZodTypeAny, {
|
|
15654
|
+
kind: "marketplace";
|
|
15655
|
+
version: string;
|
|
15656
|
+
channel: "stable" | "nightly";
|
|
15657
|
+
artifactUrl: string;
|
|
15658
|
+
sha256: string;
|
|
15659
|
+
installedAt: number;
|
|
15660
|
+
}, {
|
|
15661
|
+
kind: "marketplace";
|
|
15662
|
+
version: string;
|
|
15663
|
+
channel: "stable" | "nightly";
|
|
15664
|
+
artifactUrl: string;
|
|
15665
|
+
sha256: string;
|
|
15666
|
+
installedAt: number;
|
|
15667
|
+
}>]>>;
|
|
15505
15668
|
}, "strip", z.ZodTypeAny, {
|
|
15506
15669
|
type: "strategy" | "utility";
|
|
15507
15670
|
name: string;
|
|
@@ -15558,6 +15721,14 @@ export declare const WSMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObje
|
|
|
15558
15721
|
assignedOperatorIds?: string[] | undefined;
|
|
15559
15722
|
capabilities?: ("auto_call_candidate" | "auto_call_execution")[] | undefined;
|
|
15560
15723
|
locales?: Record<string, Record<string, string>> | undefined;
|
|
15724
|
+
source?: {
|
|
15725
|
+
kind: "marketplace";
|
|
15726
|
+
version: string;
|
|
15727
|
+
channel: "stable" | "nightly";
|
|
15728
|
+
artifactUrl: string;
|
|
15729
|
+
sha256: string;
|
|
15730
|
+
installedAt: number;
|
|
15731
|
+
} | undefined;
|
|
15561
15732
|
}, {
|
|
15562
15733
|
type: "strategy" | "utility";
|
|
15563
15734
|
name: string;
|
|
@@ -15614,6 +15785,14 @@ export declare const WSMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObje
|
|
|
15614
15785
|
assignedOperatorIds?: string[] | undefined;
|
|
15615
15786
|
capabilities?: ("auto_call_candidate" | "auto_call_execution")[] | undefined;
|
|
15616
15787
|
locales?: Record<string, Record<string, string>> | undefined;
|
|
15788
|
+
source?: {
|
|
15789
|
+
kind: "marketplace";
|
|
15790
|
+
version: string;
|
|
15791
|
+
channel: "stable" | "nightly";
|
|
15792
|
+
artifactUrl: string;
|
|
15793
|
+
sha256: string;
|
|
15794
|
+
installedAt: number;
|
|
15795
|
+
} | undefined;
|
|
15617
15796
|
}>, "many">;
|
|
15618
15797
|
lastError: z.ZodOptional<z.ZodString>;
|
|
15619
15798
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -15675,6 +15854,14 @@ export declare const WSMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObje
|
|
|
15675
15854
|
assignedOperatorIds?: string[] | undefined;
|
|
15676
15855
|
capabilities?: ("auto_call_candidate" | "auto_call_execution")[] | undefined;
|
|
15677
15856
|
locales?: Record<string, Record<string, string>> | undefined;
|
|
15857
|
+
source?: {
|
|
15858
|
+
kind: "marketplace";
|
|
15859
|
+
version: string;
|
|
15860
|
+
channel: "stable" | "nightly";
|
|
15861
|
+
artifactUrl: string;
|
|
15862
|
+
sha256: string;
|
|
15863
|
+
installedAt: number;
|
|
15864
|
+
} | undefined;
|
|
15678
15865
|
}[];
|
|
15679
15866
|
lastError?: string | undefined;
|
|
15680
15867
|
}, {
|
|
@@ -15736,6 +15923,14 @@ export declare const WSMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObje
|
|
|
15736
15923
|
assignedOperatorIds?: string[] | undefined;
|
|
15737
15924
|
capabilities?: ("auto_call_candidate" | "auto_call_execution")[] | undefined;
|
|
15738
15925
|
locales?: Record<string, Record<string, string>> | undefined;
|
|
15926
|
+
source?: {
|
|
15927
|
+
kind: "marketplace";
|
|
15928
|
+
version: string;
|
|
15929
|
+
channel: "stable" | "nightly";
|
|
15930
|
+
artifactUrl: string;
|
|
15931
|
+
sha256: string;
|
|
15932
|
+
installedAt: number;
|
|
15933
|
+
} | undefined;
|
|
15739
15934
|
}[];
|
|
15740
15935
|
lastError?: string | undefined;
|
|
15741
15936
|
}>;
|
|
@@ -15801,6 +15996,14 @@ export declare const WSMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObje
|
|
|
15801
15996
|
assignedOperatorIds?: string[] | undefined;
|
|
15802
15997
|
capabilities?: ("auto_call_candidate" | "auto_call_execution")[] | undefined;
|
|
15803
15998
|
locales?: Record<string, Record<string, string>> | undefined;
|
|
15999
|
+
source?: {
|
|
16000
|
+
kind: "marketplace";
|
|
16001
|
+
version: string;
|
|
16002
|
+
channel: "stable" | "nightly";
|
|
16003
|
+
artifactUrl: string;
|
|
16004
|
+
sha256: string;
|
|
16005
|
+
installedAt: number;
|
|
16006
|
+
} | undefined;
|
|
15804
16007
|
}[];
|
|
15805
16008
|
lastError?: string | undefined;
|
|
15806
16009
|
};
|
|
@@ -15867,6 +16070,14 @@ export declare const WSMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObje
|
|
|
15867
16070
|
assignedOperatorIds?: string[] | undefined;
|
|
15868
16071
|
capabilities?: ("auto_call_candidate" | "auto_call_execution")[] | undefined;
|
|
15869
16072
|
locales?: Record<string, Record<string, string>> | undefined;
|
|
16073
|
+
source?: {
|
|
16074
|
+
kind: "marketplace";
|
|
16075
|
+
version: string;
|
|
16076
|
+
channel: "stable" | "nightly";
|
|
16077
|
+
artifactUrl: string;
|
|
16078
|
+
sha256: string;
|
|
16079
|
+
installedAt: number;
|
|
16080
|
+
} | undefined;
|
|
15870
16081
|
}[];
|
|
15871
16082
|
lastError?: string | undefined;
|
|
15872
16083
|
};
|
|
@@ -16024,6 +16235,28 @@ export declare const WSMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObje
|
|
|
16024
16235
|
}[] | undefined;
|
|
16025
16236
|
}>>;
|
|
16026
16237
|
locales: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodRecord<z.ZodString, z.ZodString>>>;
|
|
16238
|
+
source: z.ZodOptional<z.ZodDiscriminatedUnion<"kind", [z.ZodObject<{
|
|
16239
|
+
kind: z.ZodLiteral<"marketplace">;
|
|
16240
|
+
version: z.ZodString;
|
|
16241
|
+
channel: z.ZodEnum<["stable", "nightly"]>;
|
|
16242
|
+
artifactUrl: z.ZodString;
|
|
16243
|
+
sha256: z.ZodString;
|
|
16244
|
+
installedAt: z.ZodNumber;
|
|
16245
|
+
}, "strip", z.ZodTypeAny, {
|
|
16246
|
+
kind: "marketplace";
|
|
16247
|
+
version: string;
|
|
16248
|
+
channel: "stable" | "nightly";
|
|
16249
|
+
artifactUrl: string;
|
|
16250
|
+
sha256: string;
|
|
16251
|
+
installedAt: number;
|
|
16252
|
+
}, {
|
|
16253
|
+
kind: "marketplace";
|
|
16254
|
+
version: string;
|
|
16255
|
+
channel: "stable" | "nightly";
|
|
16256
|
+
artifactUrl: string;
|
|
16257
|
+
sha256: string;
|
|
16258
|
+
installedAt: number;
|
|
16259
|
+
}>]>>;
|
|
16027
16260
|
}, "strip", z.ZodTypeAny, {
|
|
16028
16261
|
type: "strategy" | "utility";
|
|
16029
16262
|
name: string;
|
|
@@ -16080,6 +16313,14 @@ export declare const WSMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObje
|
|
|
16080
16313
|
assignedOperatorIds?: string[] | undefined;
|
|
16081
16314
|
capabilities?: ("auto_call_candidate" | "auto_call_execution")[] | undefined;
|
|
16082
16315
|
locales?: Record<string, Record<string, string>> | undefined;
|
|
16316
|
+
source?: {
|
|
16317
|
+
kind: "marketplace";
|
|
16318
|
+
version: string;
|
|
16319
|
+
channel: "stable" | "nightly";
|
|
16320
|
+
artifactUrl: string;
|
|
16321
|
+
sha256: string;
|
|
16322
|
+
installedAt: number;
|
|
16323
|
+
} | undefined;
|
|
16083
16324
|
}, {
|
|
16084
16325
|
type: "strategy" | "utility";
|
|
16085
16326
|
name: string;
|
|
@@ -16136,6 +16377,14 @@ export declare const WSMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObje
|
|
|
16136
16377
|
assignedOperatorIds?: string[] | undefined;
|
|
16137
16378
|
capabilities?: ("auto_call_candidate" | "auto_call_execution")[] | undefined;
|
|
16138
16379
|
locales?: Record<string, Record<string, string>> | undefined;
|
|
16380
|
+
source?: {
|
|
16381
|
+
kind: "marketplace";
|
|
16382
|
+
version: string;
|
|
16383
|
+
channel: "stable" | "nightly";
|
|
16384
|
+
artifactUrl: string;
|
|
16385
|
+
sha256: string;
|
|
16386
|
+
installedAt: number;
|
|
16387
|
+
} | undefined;
|
|
16139
16388
|
}>;
|
|
16140
16389
|
}, "strip", z.ZodTypeAny, {
|
|
16141
16390
|
generation: number;
|
|
@@ -16195,6 +16444,14 @@ export declare const WSMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObje
|
|
|
16195
16444
|
assignedOperatorIds?: string[] | undefined;
|
|
16196
16445
|
capabilities?: ("auto_call_candidate" | "auto_call_execution")[] | undefined;
|
|
16197
16446
|
locales?: Record<string, Record<string, string>> | undefined;
|
|
16447
|
+
source?: {
|
|
16448
|
+
kind: "marketplace";
|
|
16449
|
+
version: string;
|
|
16450
|
+
channel: "stable" | "nightly";
|
|
16451
|
+
artifactUrl: string;
|
|
16452
|
+
sha256: string;
|
|
16453
|
+
installedAt: number;
|
|
16454
|
+
} | undefined;
|
|
16198
16455
|
};
|
|
16199
16456
|
}, {
|
|
16200
16457
|
generation: number;
|
|
@@ -16254,6 +16511,14 @@ export declare const WSMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObje
|
|
|
16254
16511
|
assignedOperatorIds?: string[] | undefined;
|
|
16255
16512
|
capabilities?: ("auto_call_candidate" | "auto_call_execution")[] | undefined;
|
|
16256
16513
|
locales?: Record<string, Record<string, string>> | undefined;
|
|
16514
|
+
source?: {
|
|
16515
|
+
kind: "marketplace";
|
|
16516
|
+
version: string;
|
|
16517
|
+
channel: "stable" | "nightly";
|
|
16518
|
+
artifactUrl: string;
|
|
16519
|
+
sha256: string;
|
|
16520
|
+
installedAt: number;
|
|
16521
|
+
} | undefined;
|
|
16257
16522
|
};
|
|
16258
16523
|
}>;
|
|
16259
16524
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -16317,6 +16582,14 @@ export declare const WSMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObje
|
|
|
16317
16582
|
assignedOperatorIds?: string[] | undefined;
|
|
16318
16583
|
capabilities?: ("auto_call_candidate" | "auto_call_execution")[] | undefined;
|
|
16319
16584
|
locales?: Record<string, Record<string, string>> | undefined;
|
|
16585
|
+
source?: {
|
|
16586
|
+
kind: "marketplace";
|
|
16587
|
+
version: string;
|
|
16588
|
+
channel: "stable" | "nightly";
|
|
16589
|
+
artifactUrl: string;
|
|
16590
|
+
sha256: string;
|
|
16591
|
+
installedAt: number;
|
|
16592
|
+
} | undefined;
|
|
16320
16593
|
};
|
|
16321
16594
|
};
|
|
16322
16595
|
id?: string | undefined;
|
|
@@ -16381,6 +16654,14 @@ export declare const WSMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObje
|
|
|
16381
16654
|
assignedOperatorIds?: string[] | undefined;
|
|
16382
16655
|
capabilities?: ("auto_call_candidate" | "auto_call_execution")[] | undefined;
|
|
16383
16656
|
locales?: Record<string, Record<string, string>> | undefined;
|
|
16657
|
+
source?: {
|
|
16658
|
+
kind: "marketplace";
|
|
16659
|
+
version: string;
|
|
16660
|
+
channel: "stable" | "nightly";
|
|
16661
|
+
artifactUrl: string;
|
|
16662
|
+
sha256: string;
|
|
16663
|
+
installedAt: number;
|
|
16664
|
+
} | undefined;
|
|
16384
16665
|
};
|
|
16385
16666
|
};
|
|
16386
16667
|
id?: string | undefined;
|
|
@@ -16488,8 +16769,8 @@ export declare const WSMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObje
|
|
|
16488
16769
|
}, "strip", z.ZodTypeAny, {
|
|
16489
16770
|
message: string;
|
|
16490
16771
|
timestamp: number;
|
|
16491
|
-
level: "error" | "info" | "debug" | "warn";
|
|
16492
16772
|
source: "system";
|
|
16773
|
+
level: "error" | "info" | "debug" | "warn";
|
|
16493
16774
|
stage: "scan" | "load" | "validate" | "reload" | "activate";
|
|
16494
16775
|
pluginName?: string | undefined;
|
|
16495
16776
|
directoryName?: string | undefined;
|
|
@@ -16497,8 +16778,8 @@ export declare const WSMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObje
|
|
|
16497
16778
|
}, {
|
|
16498
16779
|
message: string;
|
|
16499
16780
|
timestamp: number;
|
|
16500
|
-
level: "error" | "info" | "debug" | "warn";
|
|
16501
16781
|
source: "system";
|
|
16782
|
+
level: "error" | "info" | "debug" | "warn";
|
|
16502
16783
|
stage: "scan" | "load" | "validate" | "reload" | "activate";
|
|
16503
16784
|
pluginName?: string | undefined;
|
|
16504
16785
|
directoryName?: string | undefined;
|
|
@@ -16510,8 +16791,8 @@ export declare const WSMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObje
|
|
|
16510
16791
|
data: {
|
|
16511
16792
|
message: string;
|
|
16512
16793
|
timestamp: number;
|
|
16513
|
-
level: "error" | "info" | "debug" | "warn";
|
|
16514
16794
|
source: "system";
|
|
16795
|
+
level: "error" | "info" | "debug" | "warn";
|
|
16515
16796
|
stage: "scan" | "load" | "validate" | "reload" | "activate";
|
|
16516
16797
|
pluginName?: string | undefined;
|
|
16517
16798
|
directoryName?: string | undefined;
|
|
@@ -16524,8 +16805,8 @@ export declare const WSMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObje
|
|
|
16524
16805
|
data: {
|
|
16525
16806
|
message: string;
|
|
16526
16807
|
timestamp: number;
|
|
16527
|
-
level: "error" | "info" | "debug" | "warn";
|
|
16528
16808
|
source: "system";
|
|
16809
|
+
level: "error" | "info" | "debug" | "warn";
|
|
16529
16810
|
stage: "scan" | "load" | "validate" | "reload" | "activate";
|
|
16530
16811
|
pluginName?: string | undefined;
|
|
16531
16812
|
directoryName?: string | undefined;
|
|
@@ -16576,8 +16857,8 @@ export declare const WSMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObje
|
|
|
16576
16857
|
}, "strip", z.ZodTypeAny, {
|
|
16577
16858
|
message: string;
|
|
16578
16859
|
timestamp: number;
|
|
16579
|
-
level: "error" | "info" | "debug" | "warn";
|
|
16580
16860
|
source: "system";
|
|
16861
|
+
level: "error" | "info" | "debug" | "warn";
|
|
16581
16862
|
stage: "scan" | "load" | "validate" | "reload" | "activate";
|
|
16582
16863
|
pluginName?: string | undefined;
|
|
16583
16864
|
directoryName?: string | undefined;
|
|
@@ -16585,8 +16866,8 @@ export declare const WSMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObje
|
|
|
16585
16866
|
}, {
|
|
16586
16867
|
message: string;
|
|
16587
16868
|
timestamp: number;
|
|
16588
|
-
level: "error" | "info" | "debug" | "warn";
|
|
16589
16869
|
source: "system";
|
|
16870
|
+
level: "error" | "info" | "debug" | "warn";
|
|
16590
16871
|
stage: "scan" | "load" | "validate" | "reload" | "activate";
|
|
16591
16872
|
pluginName?: string | undefined;
|
|
16592
16873
|
directoryName?: string | undefined;
|
|
@@ -16596,8 +16877,8 @@ export declare const WSMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObje
|
|
|
16596
16877
|
entries: {
|
|
16597
16878
|
message: string;
|
|
16598
16879
|
timestamp: number;
|
|
16599
|
-
level: "error" | "info" | "debug" | "warn";
|
|
16600
16880
|
source: "system";
|
|
16881
|
+
level: "error" | "info" | "debug" | "warn";
|
|
16601
16882
|
stage: "scan" | "load" | "validate" | "reload" | "activate";
|
|
16602
16883
|
pluginName?: string | undefined;
|
|
16603
16884
|
directoryName?: string | undefined;
|
|
@@ -16607,8 +16888,8 @@ export declare const WSMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObje
|
|
|
16607
16888
|
entries: {
|
|
16608
16889
|
message: string;
|
|
16609
16890
|
timestamp: number;
|
|
16610
|
-
level: "error" | "info" | "debug" | "warn";
|
|
16611
16891
|
source: "system";
|
|
16892
|
+
level: "error" | "info" | "debug" | "warn";
|
|
16612
16893
|
stage: "scan" | "load" | "validate" | "reload" | "activate";
|
|
16613
16894
|
pluginName?: string | undefined;
|
|
16614
16895
|
directoryName?: string | undefined;
|
|
@@ -16622,8 +16903,8 @@ export declare const WSMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObje
|
|
|
16622
16903
|
entries: {
|
|
16623
16904
|
message: string;
|
|
16624
16905
|
timestamp: number;
|
|
16625
|
-
level: "error" | "info" | "debug" | "warn";
|
|
16626
16906
|
source: "system";
|
|
16907
|
+
level: "error" | "info" | "debug" | "warn";
|
|
16627
16908
|
stage: "scan" | "load" | "validate" | "reload" | "activate";
|
|
16628
16909
|
pluginName?: string | undefined;
|
|
16629
16910
|
directoryName?: string | undefined;
|
|
@@ -16638,8 +16919,8 @@ export declare const WSMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObje
|
|
|
16638
16919
|
entries: {
|
|
16639
16920
|
message: string;
|
|
16640
16921
|
timestamp: number;
|
|
16641
|
-
level: "error" | "info" | "debug" | "warn";
|
|
16642
16922
|
source: "system";
|
|
16923
|
+
level: "error" | "info" | "debug" | "warn";
|
|
16643
16924
|
stage: "scan" | "load" | "validate" | "reload" | "activate";
|
|
16644
16925
|
pluginName?: string | undefined;
|
|
16645
16926
|
directoryName?: string | undefined;
|
|
@@ -16876,6 +17157,7 @@ export interface DigitalRadioEngineEvents {
|
|
|
16876
17157
|
action: string;
|
|
16877
17158
|
data?: unknown;
|
|
16878
17159
|
}) => void;
|
|
17160
|
+
pluginPanelMeta: (data: import('./plugin.schema.js').PluginPanelMetaPayload) => void;
|
|
16879
17161
|
encodeStart: (slotInfo: z.infer<typeof SlotInfoSchema>) => void;
|
|
16880
17162
|
transmitStart: (slotInfo: z.infer<typeof SlotInfoSchema>) => void;
|
|
16881
17163
|
timingWarning: (data: {
|