@kosdev-code/kos-ui-sdk 0.1.0-next.868 → 0.1.0-next.871
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/index.cjs +44 -18
- package/index.cjs.map +1 -1
- package/index.js +44 -18
- package/index.js.map +1 -1
- package/models/utils/openapi-index.d.ts +2 -2
- package/models/utils/services/kos/daily/openapi.d.ts +5514 -4341
- package/models/utils/services/kos/daily/service.d.ts +64 -5
- package/models/utils/services/kos/daily/service.d.ts.map +1 -1
- package/models/utils/services/vfs/daily/openapi.d.ts +42 -42
- package/models/utils/services/vfs/daily/service.d.ts +61 -2
- package/models/utils/services/vfs/daily/service.d.ts.map +1 -1
- package/models/utils/services-index.d.ts +2 -2
- package/models/utils/services-index.d.ts.map +1 -1
- package/package.json +3 -3
package/index.cjs
CHANGED
|
@@ -10345,10 +10345,10 @@ let CanvasDispatcherModelImpl = class {
|
|
|
10345
10345
|
}
|
|
10346
10346
|
async handlePatternApplication(req, res) {
|
|
10347
10347
|
const pattern = req.params.pattern;
|
|
10348
|
-
const
|
|
10349
|
-
const rendererModel = this._endpointRenderers.getModel(
|
|
10348
|
+
const endpoint2 = req.params.endpoint;
|
|
10349
|
+
const rendererModel = this._endpointRenderers.getModel(endpoint2);
|
|
10350
10350
|
if (!rendererModel) {
|
|
10351
|
-
res.status?.(404).send({ error: `Endpoint "${
|
|
10351
|
+
res.status?.(404).send({ error: `Endpoint "${endpoint2}" not found` });
|
|
10352
10352
|
return;
|
|
10353
10353
|
}
|
|
10354
10354
|
if (!this._patterns.has(pattern)) {
|
|
@@ -10378,10 +10378,10 @@ let CanvasDispatcherModelImpl = class {
|
|
|
10378
10378
|
res.status?.(400).send({ error: "Invalid color format" });
|
|
10379
10379
|
return;
|
|
10380
10380
|
}
|
|
10381
|
-
const
|
|
10382
|
-
const rendererModel = this._endpointRenderers.getModel(
|
|
10381
|
+
const endpoint2 = req.params.endpoint;
|
|
10382
|
+
const rendererModel = this._endpointRenderers.getModel(endpoint2);
|
|
10383
10383
|
if (!rendererModel) {
|
|
10384
|
-
res.status?.(404).send({ error: `Endpoint "${
|
|
10384
|
+
res.status?.(404).send({ error: `Endpoint "${endpoint2}" not found` });
|
|
10385
10385
|
return;
|
|
10386
10386
|
}
|
|
10387
10387
|
const { r, b, g } = rgb;
|
|
@@ -12182,12 +12182,25 @@ async function getKosServiceApi() {
|
|
|
12182
12182
|
function kosServiceRequest$7(params2) {
|
|
12183
12183
|
return service$8.kosServiceRequest(params2);
|
|
12184
12184
|
}
|
|
12185
|
+
function endpoint$1(path, method) {
|
|
12186
|
+
return { path, method };
|
|
12187
|
+
}
|
|
12188
|
+
function serviceRequest$1(ep, opts) {
|
|
12189
|
+
return kosServiceRequest$7({
|
|
12190
|
+
path: ep.path,
|
|
12191
|
+
method: ep.method,
|
|
12192
|
+
errorHandler: { strategy: "log", defaultValue: null },
|
|
12193
|
+
...opts
|
|
12194
|
+
});
|
|
12195
|
+
}
|
|
12185
12196
|
const api$7 = service$8.createClient();
|
|
12186
12197
|
const service$7 = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
12187
12198
|
__proto__: null,
|
|
12188
12199
|
api: api$7,
|
|
12189
12200
|
default: api$7,
|
|
12190
|
-
|
|
12201
|
+
endpoint: endpoint$1,
|
|
12202
|
+
kosServiceRequest: kosServiceRequest$7,
|
|
12203
|
+
serviceRequest: serviceRequest$1
|
|
12191
12204
|
}, Symbol.toStringTag, { value: "Module" }));
|
|
12192
12205
|
function kosServiceRequest$6(params2) {
|
|
12193
12206
|
return service$8.kosServiceRequest(params2);
|
|
@@ -12222,12 +12235,25 @@ const service$4 = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.definePro
|
|
|
12222
12235
|
function kosServiceRequest$3(params2) {
|
|
12223
12236
|
return service$8.kosServiceRequest(params2);
|
|
12224
12237
|
}
|
|
12238
|
+
function endpoint(path, method) {
|
|
12239
|
+
return { path, method };
|
|
12240
|
+
}
|
|
12241
|
+
function serviceRequest(ep, opts) {
|
|
12242
|
+
return kosServiceRequest$3({
|
|
12243
|
+
path: ep.path,
|
|
12244
|
+
method: ep.method,
|
|
12245
|
+
errorHandler: { strategy: "log", defaultValue: null },
|
|
12246
|
+
...opts
|
|
12247
|
+
});
|
|
12248
|
+
}
|
|
12225
12249
|
const api$3 = service$8.createClient();
|
|
12226
12250
|
const service$3 = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
12227
12251
|
__proto__: null,
|
|
12228
12252
|
api: api$3,
|
|
12229
12253
|
default: api$3,
|
|
12230
|
-
|
|
12254
|
+
endpoint,
|
|
12255
|
+
kosServiceRequest: kosServiceRequest$3,
|
|
12256
|
+
serviceRequest
|
|
12231
12257
|
}, Symbol.toStringTag, { value: "Module" }));
|
|
12232
12258
|
function kosServiceRequest$2(params2) {
|
|
12233
12259
|
return service$8.kosServiceRequest(params2);
|
|
@@ -12902,8 +12928,8 @@ GpioChipModelImpl = __decorateClass$2([
|
|
|
12902
12928
|
const GpioChip = GpioChipModelImpl.Registration;
|
|
12903
12929
|
const GPIO_CHIP_PATH = "/api/kos/gpio/chips";
|
|
12904
12930
|
const GPIO_PIN_PATH = "/api/kos/gpio/pins";
|
|
12905
|
-
const gpioServiceRequest = kosServiceRequest$
|
|
12906
|
-
const gpioApi = api$
|
|
12931
|
+
const gpioServiceRequest = kosServiceRequest$4;
|
|
12932
|
+
const gpioApi = api$4;
|
|
12907
12933
|
const index$1 = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
12908
12934
|
__proto__: null,
|
|
12909
12935
|
GPIO_CHIP_PATH,
|
|
@@ -16035,10 +16061,10 @@ exports.GpioChipServices = index$1;
|
|
|
16035
16061
|
exports.GpioPin = GpioPin;
|
|
16036
16062
|
exports.GpioPinContainer = GpioPinContainer;
|
|
16037
16063
|
exports.KOS_RECOVERING_SESSION_KEY = KOS_RECOVERING_SESSION_KEY;
|
|
16038
|
-
exports.KOS_SERVICE = service$
|
|
16039
|
-
exports.KOS_SERVICE_1_6_5 = service$
|
|
16040
|
-
exports.KOS_SERVICE_1_8_1 = service$
|
|
16041
|
-
exports.KOS_SERVICE_1_9_X = service$
|
|
16064
|
+
exports.KOS_SERVICE = service$7;
|
|
16065
|
+
exports.KOS_SERVICE_1_6_5 = service$6;
|
|
16066
|
+
exports.KOS_SERVICE_1_8_1 = service$5;
|
|
16067
|
+
exports.KOS_SERVICE_1_9_X = service$4;
|
|
16042
16068
|
exports.KeyValue = KeyValue;
|
|
16043
16069
|
exports.KeyValueServices = index$c;
|
|
16044
16070
|
exports.KosConfigPropertySpec = Registration;
|
|
@@ -16117,10 +16143,10 @@ exports.Troubles = Troubles;
|
|
|
16117
16143
|
exports.UsbUpdate = UsbUpdate;
|
|
16118
16144
|
exports.UsbUpdateContainer = UsbUpdateContainer;
|
|
16119
16145
|
exports.UsbUpdateServices = index$3;
|
|
16120
|
-
exports.VFS_SERVICE = service;
|
|
16121
|
-
exports.VFS_SERVICE_1_6_5 = service$
|
|
16122
|
-
exports.VFS_SERVICE_1_8_1 = service$
|
|
16123
|
-
exports.VFS_SERVICE_1_9_X = service
|
|
16146
|
+
exports.VFS_SERVICE = service$3;
|
|
16147
|
+
exports.VFS_SERVICE_1_6_5 = service$2;
|
|
16148
|
+
exports.VFS_SERVICE_1_8_1 = service$1;
|
|
16149
|
+
exports.VFS_SERVICE_1_9_X = service;
|
|
16124
16150
|
exports.WS_EVENT_TYPE = WS_EVENT_TYPE;
|
|
16125
16151
|
exports.WsEventFactory = WsEventFactory;
|
|
16126
16152
|
exports.acceptOrgInvitation = acceptOrgInvitation;
|