@kosdev-code/kos-ui-sdk 2.0.2 → 2.0.5

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.
Files changed (56) hide show
  1. package/core/core/api/wrapPromise.d.ts +1 -1
  2. package/core/core/decorators/kos-child.d.ts +1 -1
  3. package/core/core/decorators/kos-model-effect.d.ts +4 -1
  4. package/core/core/decorators/kos-model-effect.d.ts.map +1 -1
  5. package/core/core/decorators/kosDependency.d.ts +1 -1
  6. package/core/core/decorators/kosModel.d.ts +3 -3
  7. package/core/core/decorators/kosTopicHandler.d.ts +1 -1
  8. package/core/core/dependency-manager.d.ts +9 -0
  9. package/core/core/dependency-manager.d.ts.map +1 -0
  10. package/core/core/extension/initialize-extension.d.ts +1 -1
  11. package/core/core/kosModel.d.ts +2 -4
  12. package/core/core/kosModel.d.ts.map +1 -1
  13. package/core/core/kosModelManager.d.ts +181 -32
  14. package/core/core/kosModelManager.d.ts.map +1 -1
  15. package/core/core/model-cache.d.ts +28 -0
  16. package/core/core/model-cache.d.ts.map +1 -0
  17. package/core/core/model-instantiator.d.ts +15 -0
  18. package/core/core/model-instantiator.d.ts.map +1 -0
  19. package/core/core/model-registry.d.ts +16 -0
  20. package/core/core/model-registry.d.ts.map +1 -0
  21. package/core/types/model.d.ts +1 -1
  22. package/core/util/date-utils.d.ts +102 -0
  23. package/core/util/date-utils.d.ts.map +1 -1
  24. package/core/util/index.d.ts +1 -0
  25. package/core/util/index.d.ts.map +1 -1
  26. package/core/util/kos-model-utils.d.ts +27 -27
  27. package/core/util/model-attribute-utils.d.ts +1 -1
  28. package/core/util/service-factory.d.ts +1 -1
  29. package/index.cjs +40 -39
  30. package/index.cjs.map +1 -1
  31. package/index.d.cts +1 -0
  32. package/index.d.ts +1 -0
  33. package/index.d.ts.map +1 -1
  34. package/index.js +2889 -2550
  35. package/index.js.map +1 -1
  36. package/models/models/studio-properties/index.d.ts +5 -0
  37. package/models/models/studio-properties/index.d.ts.map +1 -0
  38. package/models/models/studio-properties/services/index.d.ts +2 -0
  39. package/models/models/studio-properties/services/index.d.ts.map +1 -0
  40. package/models/models/studio-properties/services/studio-properties-services.d.ts +15 -0
  41. package/models/models/studio-properties/services/studio-properties-services.d.ts.map +1 -0
  42. package/models/models/studio-properties/studio-properties-model.d.ts +20 -0
  43. package/models/models/studio-properties/studio-properties-model.d.ts.map +1 -0
  44. package/models/models/studio-properties/studio-properties-registration.d.ts +87 -0
  45. package/models/models/studio-properties/studio-properties-registration.d.ts.map +1 -0
  46. package/models/models/studio-properties/types/index.d.ts +3 -0
  47. package/models/utils/client.d.ts +3 -3
  48. package/models/utils/openapi.d.ts +1441 -6928
  49. package/models/utils/persistence-store.d.ts +1 -1
  50. package/models/utils/service.d.ts +3 -3
  51. package/models/utils/types.d.ts +3 -3
  52. package/models/utils/types.d.ts.map +1 -1
  53. package/package.json +2 -2
  54. package/ui/components/loading-message/index.d.ts +2 -1
  55. package/ui/components/loading-message/index.d.ts.map +1 -1
  56. package/ui/contexts/translation-container/kos-translations-provider.d.ts.map +1 -1
@@ -0,0 +1,5 @@
1
+ export { StudioProperties } from './studio-properties-registration';
2
+ export type * from './types';
3
+ export type { StudioPropertiesModel } from './studio-properties-model';
4
+ export * as StudioPropertiesServices from './services';
5
+ //# sourceMappingURL=index.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../../../../packages/sdk/kos-ui-sdk/src/models/models/studio-properties/index.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,gBAAgB,EAAE,MAAM,kCAAkC,CAAC;AACpE,mBAAmB,SAAS,CAAC;AAC7B,YAAY,EAAE,qBAAqB,EAAE,MAAM,2BAA2B,CAAC;AACvE,OAAO,KAAK,wBAAwB,MAAM,YAAY,CAAC"}
@@ -0,0 +1,2 @@
1
+ export * from './studio-properties-services';
2
+ //# sourceMappingURL=index.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../../../../../packages/sdk/kos-ui-sdk/src/models/models/studio-properties/services/index.ts"],"names":[],"mappings":"AAAA,cAAc,8BAA8B,CAAC"}
@@ -0,0 +1,15 @@
1
+ import { ApiPath, KosApi } from '../../../utils/service';
2
+ import { ClientResponse, ServiceResponse } from '../../../../core';
3
+
4
+ declare const SERVICE_PATH: ApiPath;
5
+ export type StudioPropertiesClientResponse = ClientResponse<KosApi, typeof SERVICE_PATH, "get">;
6
+ export interface StudioPropertiesResponse {
7
+ data?: Record<string, any>;
8
+ }
9
+ /**
10
+ * @category Service
11
+ * Retrieves the initial studio-properties data.
12
+ */
13
+ export declare const getStudioProperties: (connectionId: string) => Promise<ServiceResponse<StudioPropertiesResponse>>;
14
+ export {};
15
+ //# sourceMappingURL=studio-properties-services.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"studio-properties-services.d.ts","sourceRoot":"","sources":["../../../../../../../../packages/sdk/kos-ui-sdk/src/models/models/studio-properties/services/studio-properties-services.ts"],"names":[],"mappings":"AAAA,OAAO,EAEL,KAAK,cAAc,EACnB,KAAK,eAAe,EACrB,MAAM,kBAAkB,CAAC;AAC1B,OAAY,EAAE,KAAK,OAAO,EAAE,KAAK,MAAM,EAAE,MAAM,wBAAwB,CAAC;AAOxE,QAAA,MAAM,YAAY,EAAE,OAAsC,CAAC;AAC3D,MAAM,MAAM,8BAA8B,GAAG,cAAc,CACzD,MAAM,EACN,OAAO,YAAY,EACnB,KAAK,CACN,CAAC;AACF,MAAM,WAAW,wBAAwB;IACvC,IAAI,CAAC,EAAE,MAAM,CAAC,MAAM,EAAE,GAAG,CAAC,CAAC;CAC5B;AAED;;;GAGG;AACH,eAAO,MAAM,mBAAmB,iBAChB,MAAM,KACnB,QAAQ,gBAAgB,wBAAwB,CAAC,CAcnD,CAAC"}
@@ -0,0 +1,20 @@
1
+ import { StudioPropertiesOptions } from './types';
2
+ import { PublicModelInterface } from '../../../core/types';
3
+ import { IKosIdentifiable } from '../../../core/core/types';
4
+ import { IKosDataModel, KosCreationContext } from '../../../core/core/kosModel';
5
+
6
+ export declare const MODEL_TYPE = "studio-properties-model";
7
+ export type StudioPropertiesModel = PublicModelInterface<StudioPropertiesModelImpl>;
8
+ export declare class StudioPropertiesModelImpl implements IKosDataModel, IKosIdentifiable {
9
+ id: string;
10
+ connectionId: string;
11
+ private logger;
12
+ private data;
13
+ constructor(modelId: string, options: StudioPropertiesOptions, context: KosCreationContext);
14
+ init(): Promise<void>;
15
+ load(): Promise<void>;
16
+ activate(): Promise<void>;
17
+ get(key: string): any;
18
+ createObservableProperty(key: string): import('mobx').IComputedValue<any>;
19
+ }
20
+ //# sourceMappingURL=studio-properties-model.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"studio-properties-model.d.ts","sourceRoot":"","sources":["../../../../../../../packages/sdk/kos-ui-sdk/src/models/models/studio-properties/studio-properties-model.ts"],"names":[],"mappings":"AAOA,OAAO,KAAK,EACV,aAAa,EAEb,kBAAkB,EACnB,MAAM,6BAA6B,CAAC;AACrC,OAAO,KAAK,EAAE,gBAAgB,EAAE,MAAM,0BAA0B,CAAC;AACjE,OAAO,KAAK,EAAE,oBAAoB,EAAE,MAAM,qBAAqB,CAAC;AAGhE,OAAO,KAAK,EAAE,uBAAuB,EAAE,MAAM,SAAS,CAAC;AAEvD,eAAO,MAAM,UAAU,4BAA4B,CAAC;AAEpD,MAAM,MAAM,qBAAqB,GAC/B,oBAAoB,CAAC,yBAAyB,CAAC,CAAC;AAKlD,qBACa,yBACX,YAAW,aAAa,EAAE,gBAAgB;IAE1C,EAAE,EAAE,MAAM,CAAC;IACX,YAAY,EAAE,MAAM,CAAC;IACrB,OAAO,CAAC,MAAM,CAAmB;IAEjC,OAAO,CAAC,IAAI,CAA+B;gBAEzC,OAAO,EAAE,MAAM,EACf,OAAO,EAAE,uBAAuB,EAChC,OAAO,EAAE,kBAAkB;IAWvB,IAAI,IAAI,OAAO,CAAC,IAAI,CAAC;IAIrB,IAAI,IAAI,OAAO,CAAC,IAAI,CAAC;IAIrB,QAAQ;IAmBd,GAAG,CAAC,GAAG,EAAE,MAAM,GAAG,GAAG;IAKrB,wBAAwB,CAAC,GAAG,EAAE,MAAM;CAGrC"}
@@ -0,0 +1,87 @@
1
+ import { StudioPropertiesModel } from './studio-properties-model';
2
+ import { StudioPropertiesOptions } from './types';
3
+ import { KosModelRegistrationFactory } from '../../../core/core/registration';
4
+
5
+ /**
6
+ * # StudioProperties
7
+ *
8
+ * The registration bean includes convenience methods for creating and working with StudioPropertiesModel instances.
9
+ *
10
+ * ## type
11
+ * The type property is a string that identifies the model type.
12
+ * The type is used to identify the model type in the model registry and to narrow down the model type in type predicates. It's most frequently
13
+ * used when declaring dependencies on models.
14
+ *
15
+ * @example
16
+ * ```typescript
17
+ *
18
+ * @kosDependency({modelType: StudioProperties.type, id: "studioPropertiesId"})
19
+ * private studioPropertiesModel: StudioPropertiesModel;
20
+ * ```
21
+ *
22
+ *
23
+ * ## factory
24
+ *
25
+ * The factory method creates a factory function that can be used to create new StudioPropertiesModel instances.
26
+ *
27
+
28
+ * The factory function is a curried function that takes the model id as the first argument and the options as the second argument.
29
+ *
30
+ * If a model with the specified id already exists, the factory function will return the existing model. The options will be ignored
31
+ * in this case and the existing model will be returned in its current state.
32
+ *
33
+ * @example
34
+ * ```typescript
35
+ * const model = StudioProperties.factory("studioPropertiesId")({
36
+ * // Add option data
37
+ * });
38
+ * ```
39
+
40
+
41
+ *
42
+ * ## predicate
43
+ *
44
+ * [Typescript type predicate](https://www.typescriptlang.org/docs/handbook/2/narrowing.html#using-type-predicates) function that will identify and narrow down a model to a StudioPropertiesModel.
45
+ *
46
+ * @example
47
+ * ```typescript
48
+ *
49
+ * const model: IKosDataModel = ...; // some model
50
+ *
51
+ * if (StudioProperties.predicate(model)) {
52
+ * // if the function evaluates to true, the model is narrowed down to StudioPropertiesModel
53
+ * // and the compiler will know that the model has the StudioPropertiesModel interface
54
+ * model.updateAvailability(false);
55
+ * }
56
+ * ```
57
+ *
58
+ * ## registration
59
+ *
60
+ * The registration property is an object that can be used to simplify registration of the model with the model registry. The registration object
61
+ * can be spread into the model registration and provides all of the required information to register the model implementation class against the model type.
62
+ *
63
+ *
64
+ * @example
65
+ *
66
+ * In an application registration file you can declare the model registration as follows:
67
+ *
68
+ * **registration.ts**
69
+ * ```typescript
70
+ * import { StudioProperties } from "@kos-ui/project-models";
71
+ * import { KosModelRegistry } from "@kosdev-code/kos-dispense-sdk";
72
+ *
73
+ * import { initKosProvider } from "@kosdev-code/kos-ui-sdk";
74
+ *
75
+ * KosModelRegistry.dispense
76
+ * .models()
77
+ * .model(StudioProperties);
78
+ * ```
79
+ *
80
+ * ## registration.singleton
81
+
82
+ * The studioProperties model is NOT a singleton model. This means that each time the factory function is called with a unique ID, a new model instance will be created.
83
+ * If the factory function is called with an ID that already exists, the existing model will be returned.
84
+
85
+ * */
86
+ export declare const StudioProperties: KosModelRegistrationFactory<StudioPropertiesModel, StudioPropertiesOptions>;
87
+ //# sourceMappingURL=studio-properties-registration.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"studio-properties-registration.d.ts","sourceRoot":"","sources":["../../../../../../../packages/sdk/kos-ui-sdk/src/models/models/studio-properties/studio-properties-registration.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,2BAA2B,EAAE,MAAM,iCAAiC,CAAC;AAC9E,OAAO,KAAK,EAAE,uBAAuB,EAAE,MAAM,SAAS,CAAC;AAKvD,OAAO,KAAK,EAAE,qBAAqB,EAAE,MAAM,2BAA2B,CAAC;AAEvE;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;KAgFK;AACL,eAAO,MAAM,gBAAgB,6EAM3B,CAAC"}
@@ -0,0 +1,3 @@
1
+ export interface StudioPropertiesOptions {
2
+ connectionId: string;
3
+ }
@@ -2,7 +2,7 @@ import { paths } from './types';
2
2
  import { AvailableMethods, ClientResponse } from '../../core';
3
3
 
4
4
  export declare const api: {
5
- get: <K extends "/api/vfs" | "/api/ext/dispense/soldOuts/troubles" | "/api/ext/dispense/soldOuts/db" | "/api/kos/time/timezone" | "/api/kos/storage/devices" | "/api/ext/freestyle/can/read/float/{boardPath}/{index}/{subIndex}" | "/api/ext/freestyle/can/read/int/{boardPath}/{index}/{subIndex}" | "/api/ext/freestyle/can/stats" | "/api/ext/freestyle/can/stats/raw" | "/api/app/kosdev.ddk/cui" | "/api/app/kosdev.ddk/cui/open" | "/api/kos/criticalData/sources" | "/api/kos/criticalData/data" | "/api/kos/criticalData/data/{name}" | "/api/app/kosdev.ddk/ncui/plugins" | "/api/app/kosdev.ddk/ncui/open" | "/api/kos/browser" | "/api/kos/browser/redirect" | "/api/kos/future/traces" | "/api/kos/future/traces/{traceId}/events" | "/api/app/tccc.fits/medusa/profiles" | "/api/app/tccc.fits/medusa/profiles/{profileId}/recipes" | "/api/app/tccc.fits/medusa/profiles/{profileId}/tests" | "/api/app/tccc.fits/medusa/profiles/{profileId}/tests/{testId}" | "/api/app/tccc.fits/medusa/profiles/{profileId}/builder/blocks" | "/api/app/tccc.fits/medusa/profiles/{profileId}/builder/bevs" | "/api/app/tccc.fits/medusa/profiles/{profileId}/map" | "/api/app/tccc.fits/medusa/profiles/{profileId}/results" | "/api/app/tccc.fits/medusa/profiles/{profileId}/results/{resultsId}" | "/api/app/tccc.fits/medusa/profiles/{profileId}/results/{resultsId}/entries/{startIdx}/{endIdx}" | "/api/kos/descriptor/{path}" | "/api/kos/descriptor/{path}/{dotted}" | "/api/kos/device" | "/api/kos/device/assemblies" | "/api/kos/device/serialNumber" | "/api/app/kosdev.ddk/auth/role" | "/api/ext/freestyle/microCalibration/report/{board}" | "/api/ext/freestyle/microCalibration/cal/{pump}" | "/api/ext/freestyle/fcm/calibration/{pump}/baseline" | "/api/ext/dispense/nozzle/nozzle/pipeline/ingredient/intent/{path}/{intent}" | "/api/ext/dispense/nozzle/nozzle/pipeline/ingredient/intent/{path}/{intent}/volume" | "/api/ext/dispense/nozzle/nozzle/pipeline/ingredient/intent/{path}/{intent}/time" | "/api/kos/localization/context/{*path}" | "/api/kos/localization/contexts" | "/api/kos/ota/paused" | "/api/kos/ota/artifacts" | "/api/app/kosdev.ddk/setup/steps" | "/api/app/kosdev.ddk/setup/steps/reset" | "/api/kos/troubles" | "/api/kos/troubles/{troubleId}" | "/api/kos/update/available" | "/api/kos/nodeMgr/node/{nodeId}/blockedManifests" | "/api/kos/nodeMgr/blockedManifests" | "/api/kos/manifest/node" | "/api/kos/manifest/device" | "/api/kos/manifest/info" | "/api/kos/config/schema" | "/api/kos/config/schema/{path}" | "/api/kos/config/{path}" | "/api/kos/config/details/{options}" | "/api/kos/config/details/{path}/{options}" | "/api/kos/config/value/merged/{scopedPath}/{attr}" | "/api/kos/config/value/{scopedPath}/{attr}" | "/api/kos/config/bean/defaults/{scopedPath}" | "/api/kos/config/bean/merged/{path}" | "/api/kos/config/bean/overrides/{scopedPath}" | "/api/app/kosdev.ddk/network/reports" | "/api/app/kosdev.ddk/network/tests" | "/api/app/kosdev.ddk/network/tests/run/{id}" | "/api/app/kosdev.ddk/network/tests/run/group/{group}" | "/api/kos/network/interfaces" | "/api/app/tccc.fits/scales" | "/api/app/tccc.fits/scales/ifaces" | "/api/ext/freestyle/ice/types" | "/api/app/tccc.fits/persistence/sources" | "/api/kos/state/paths" | "/api/kos/state/{path}" | "/api/ext/dispense/ingredients" | "/api/ext/dispense/ingredients/sources" | "/api/ext/dispense/nozzle/nozzle/pipeline/beverage/select" | "/api/ext/dispense/nozzle/nozzle/pipeline/beverage/availability" | "/api/ext/dispense/nozzle/nozzle/pipeline/beverage/availability/groups/{group}" | "/api/ext/dispense/nozzle/nozzle/pipeline/beverage/graph/node/{id}" | "/api/ext/dispense/nozzle/nozzle/pipeline/beverage/graph/beverages" | "/api/ext/dispense/nozzle/nozzle/pipeline/beverage/graph/nodes" | "/api/kos/handles" | "/api/kos/handles/{path}" | "/api/kos/handles/{path}/{view}" | "/api/kos/handles/views" | "/api/ext/dispense/metrics" | "/api/ext/dispense/metrics/names" | "/api/ext/dispense/metrics/{name}" | "/api/ext/dispense/metrics/{nozzle}/names" | "/api/ext/dispense/metrics/{nozzle}/{name}" | "/api/kos/regions" | "/api/kos/regions/info" | "/api/ext/dispense/nozzle/nozzle/pipeline/beverage/engine/nutrition/{bevId}" | "/api/ext/dispense/assignments" | "/api/ext/freestyle/brandset/nutrition/{bevId}" | "/api/ext/freestyle/brandset/grantProperties" | "/api/kos/openapi/{*baseUrl}" | "/api/app/kosdev.ddk/copyLogs/volumes/size" | "/api/app/kosdev.ddk/copyLogs/files/size" | "/api/app/tccc.fits/session" | "/api/app/tccc.fits/session/data/{key}" | "/api/app/tccc.fits.sim/scales" | "/api/app/tccc.fits.sim/scales/{serialNum}" | "/api/app/tccc.fits.sim/scales/{serialNum}/pour/stop" | "/api/app/tccc.fits.sim/scales/{serialNum}/pour/start" | "/api/app/tccc.fits.sim/scales/{serialNum}/reading" | "/api/app/tccc.fits.sim/pumps" | "/api/ext/cms/screens/context/{*path}" | "/api/ext/cms/screens/contexts" | "/api/kos/troubles/debug" | "/api/kos/troubles/debug/{troubleId}">(endpoint: K, params?: (paths[K]["get"] extends {
5
+ get: <K extends "/api/kos/browser" | "/api/kos/browser/redirect" | "/api/kos/ota/paused" | "/api/kos/ota/artifacts" | "/api/kos/time/timezone" | "/api/kos/manifest/node" | "/api/kos/manifest/device" | "/api/kos/manifest/info" | "/api/kos/future/traces" | "/api/kos/future/traces/{traceId}/events" | "/api/kos/config/schema" | "/api/kos/config/schema/{path}" | "/api/kos/config/{path}" | "/api/kos/config/details/{options}" | "/api/kos/config/details/{path}/{options}" | "/api/kos/config/value/merged/{scopedPath}/{attr}" | "/api/kos/config/value/{scopedPath}/{attr}" | "/api/kos/config/bean/defaults/{scopedPath}" | "/api/kos/config/bean/merged/{path}" | "/api/kos/config/bean/overrides/{scopedPath}" | "/api/kos/update/available" | "/api/kos/nodeMgr/node/{nodeId}/blockedManifests" | "/api/kos/nodeMgr/blockedManifests" | "/api/kos/localization/context/{*path}" | "/api/kos/localization/contexts" | "/api/kos/openapi/{*baseUrl}" | "/api/kos/regions" | "/api/kos/regions/info" | "/api/kos/device" | "/api/kos/device/assemblies" | "/api/kos/device/serialNumber" | "/api/vfs" | "/api/kos/descriptor/{path}" | "/api/kos/descriptor/{path}/{dotted}" | "/api/kos/troubles" | "/api/kos/troubles/{troubleId}" | "/api/kos/handles" | "/api/kos/handles/{path}" | "/api/kos/handles/{path}/{view}" | "/api/kos/handles/views" | "/api/kos/storage/devices" | "/api/kos/network/interfaces" | "/api/kos/state/paths" | "/api/kos/state/{path}" | "/api/kos/criticalData/sources" | "/api/kos/criticalData/data" | "/api/kos/criticalData/data/{name}" | "/api/ext/freestyle/brandset/nutrition/{bevId}" | "/api/ext/freestyle/brandset/grantProperties" | "/api/ext/freestyle/ice/types" | "/api/app/kosdev.ddk/setup/steps" | "/api/app/kosdev.ddk/setup/steps/reset" | "/api/ext/dispense/soldOuts/troubles" | "/api/ext/dispense/soldOuts/db" | "/api/app/tccc.fits/medusa/profiles" | "/api/app/tccc.fits/medusa/profiles/{profileId}/recipes" | "/api/app/tccc.fits/medusa/profiles/{profileId}/tests" | "/api/app/tccc.fits/medusa/profiles/{profileId}/tests/{testId}" | "/api/app/tccc.fits/medusa/profiles/{profileId}/builder/blocks" | "/api/app/tccc.fits/medusa/profiles/{profileId}/builder/bevs" | "/api/app/tccc.fits/medusa/profiles/{profileId}/map" | "/api/app/tccc.fits/medusa/profiles/{profileId}/results" | "/api/app/tccc.fits/medusa/profiles/{profileId}/results/{resultsId}" | "/api/app/tccc.fits/medusa/profiles/{profileId}/results/{resultsId}/entries/{startIdx}/{endIdx}" | "/api/app/kosdev.ddk/ncui/plugins" | "/api/app/kosdev.ddk/ncui/open" | "/api/ext/dispense/metrics" | "/api/ext/dispense/metrics/names" | "/api/ext/dispense/metrics/{name}" | "/api/ext/dispense/metrics/{nozzle}/names" | "/api/ext/dispense/metrics/{nozzle}/{name}" | "/api/app/kosdev.ddk/auth/role" | "/api/app/tccc.fits/scales" | "/api/app/tccc.fits/scales/ifaces" | "/api/app/kosdev.ddk/cui" | "/api/app/kosdev.ddk/cui/open" | "/api/app/tccc.fits.sim/scales" | "/api/app/tccc.fits.sim/scales/{serialNum}" | "/api/app/tccc.fits.sim/scales/{serialNum}/pour/stop" | "/api/app/tccc.fits.sim/scales/{serialNum}/pour/start" | "/api/app/tccc.fits.sim/scales/{serialNum}/reading" | "/api/app/tccc.fits.sim/pumps" | "/api/app/tccc.fits/persistence/sources" | "/api/ext/cms/screens/context/{*path}" | "/api/ext/cms/screens/contexts" | "/api/kos/troubles/debug" | "/api/kos/troubles/debug/{troubleId}" | "/api/ext/dispense/nozzle/nozzle/pipeline/ingredient/intent/{path}/{intent}" | "/api/ext/dispense/nozzle/nozzle/pipeline/ingredient/intent/{path}/{intent}/volume" | "/api/ext/dispense/nozzle/nozzle/pipeline/ingredient/intent/{path}/{intent}/time" | "/api/ext/freestyle/microCalibration/report/{board}" | "/api/ext/freestyle/microCalibration/cal/{pump}" | "/api/ext/dispense/nozzle/nozzle/pipeline/beverage/engine/nutrition/{bevId}" | "/api/ext/freestyle/can/read/float/{boardPath}/{index}/{subIndex}" | "/api/ext/freestyle/can/read/int/{boardPath}/{index}/{subIndex}" | "/api/ext/freestyle/can/stats" | "/api/ext/freestyle/can/stats/raw" | "/api/ext/dispense/ingredients" | "/api/ext/dispense/ingredients/sources" | "/api/app/kosdev.ddk/copyLogs/volumes/size" | "/api/app/kosdev.ddk/copyLogs/files/size" | "/api/ext/dispense/nozzle/nozzle/pipeline/beverage/select" | "/api/ext/dispense/nozzle/nozzle/pipeline/beverage/availability" | "/api/ext/dispense/nozzle/nozzle/pipeline/beverage/availability/groups/{group}" | "/api/ext/dispense/nozzle/nozzle/pipeline/beverage/graph/node/{id}" | "/api/ext/dispense/nozzle/nozzle/pipeline/beverage/graph/beverages" | "/api/ext/dispense/nozzle/nozzle/pipeline/beverage/graph/nodes" | "/api/app/kosdev.ddk/network/reports" | "/api/app/kosdev.ddk/network/tests" | "/api/app/kosdev.ddk/network/tests/run/{id}" | "/api/app/kosdev.ddk/network/tests/run/group/{group}" | "/api/app/tccc.fits/session" | "/api/app/tccc.fits/session/data/{key}" | "/api/ext/freestyle/fcm/calibration/{pump}/baseline" | "/api/ext/dispense/assignments">(endpoint: K, params?: (paths[K]["get"] extends {
6
6
  parameters: infer P;
7
7
  } ? P : never) | undefined, options?: {
8
8
  ordered?: boolean | undefined;
@@ -14,7 +14,7 @@ export declare const api: {
14
14
  studio?: boolean | undefined;
15
15
  signal?: AbortSignal | undefined;
16
16
  } | undefined) => Promise<import('../../core').ServiceResponse<ClientResponse<paths, K, "get">>>;
17
- post: <K_1 extends "/api/ext/dispense/soldOuts/container/{pump}/{reason}" | "/api/ext/dispense/soldOuts/slice/{pump}/{reason}" | "/api/kos/time/date" | "/api/kos/time/timezone" | "/api/kos/time/time" | "/api/ext/freestyle/can/stats" | "/api/ext/freestyle/can/write/byte/{boardPath}/{index}/{subIndex}/{val}" | "/api/ext/freestyle/can/write/short/{boardPath}/{index}/{subIndex}/{val}" | "/api/ext/freestyle/can/write/float/{boardPath}/{index}/{subIndex}/{val}" | "/api/ext/freestyle/can/write/int/{boardPath}/{index}/{subIndex}/{val}" | "/api/kos/criticalData/data" | "/api/kos/criticalData/data/{name}" | "/api/app/kosdev.ddk/ncui/reboot" | "/api/kos/browser/{nodeId}" | "/api/kos/browser/{nodeId}/{name}" | "/api/kos/browser/intent" | "/api/kos/browser/url" | "/api/kos/future/{futureId}/cancel" | "/api/app/tccc.fits/medusa/profile" | "/api/app/tccc.fits/medusa/profiles/{profileId}" | "/api/app/tccc.fits/medusa/profiles/{profileId}/tests/resume" | "/api/app/tccc.fits/medusa/profiles/{profileId}/tests/exit" | "/api/app/tccc.fits/medusa/profiles/{profileId}/tests/stop" | "/api/app/tccc.fits/medusa/profiles/{profileId}/tests/{testId}" | "/api/app/tccc.fits/medusa/profiles/{profileId}/tests/{testId}/json" | "/api/app/tccc.fits/medusa/profiles/{profileId}/tests/{testId}/run" | "/api/app/tccc.fits/medusa/profiles/{profileId}/tests/pause" | "/api/app/tccc.fits/medusa/profiles/{profileId}/test" | "/api/app/tccc.fits/medusa/profiles/{profileId}/activate" | "/api/app/tccc.fits/medusa/profiles/{profileId}/builder/blocks" | "/api/app/tccc.fits/medusa/profiles/{profileId}/builder/bevs/{bevId}" | "/api/app/tccc.fits/medusa/profiles/{profileId}/recipe" | "/api/app/tccc.fits/medusa/profiles/{profileId}/mapper/discovery" | "/api/app/tccc.fits/medusa/profiles/{profileId}/mapper/builder" | "/api/app/tccc.fits/medusa/profiles/{profileId}/results/{resultsId}" | "/api/app/tccc.fits/medusa/profiles/{profileId}/validate" | "/api/app/tccc.fits/medusa/profiles/{profileId}/validate/all" | "/api/kos/device/serialNumber/{serialNum}" | "/api/app/kosdev.ddk/auth/pincode/{pin}" | "/api/ext/freestyle/microCalibration/cal/{pump}/running/{val}" | "/api/ext/freestyle/microCalibration/cal/{pump}/code/{code}" | "/api/ext/freestyle/microCalibration/cal/{pump}/baseline/{val}" | "/api/ext/freestyle/microCalibration/cal/{pump}/both/{val}" | "/api/ext/freestyle/fcm/calibration/{pump}/calibrate" | "/api/ext/freestyle/fcm/calibration/{pump}/preCalibrate" | "/api/ext/freestyle/fcm/calibration/{pump}/verify/{calVolume}" | "/api/ext/freestyle/fcm/calibration/{pump}/baseline/{value}" | "/api/ext/freestyle/fcm/calibration/{pump}/complete/{calVolume}/{verifyVolume}" | "/api/ext/dispense/nozzle/nozzle/pipeline/ingredient/pour/{path}/{intent}" | "/api/kos/ota/resume/{name}" | "/api/kos/ota/cancel" | "/api/kos/ota/cancel/{name}" | "/api/kos/ota/pause/{name}" | "/api/app/kosdev.ddk/setup/complete/{stepName}" | "/api/app/kosdev.ddk/lockout/unlock/{pin}" | "/api/kos/troubles/resolve" | "/api/kos/troubles/resolve/{troubleId}" | "/api/kos/update/install" | "/api/kos/nodeMgr/reboot" | "/api/kos/nodeMgr/node/{nodeId}/reboot" | "/api/kos/nodeMgr/node/{nodeId}/blockedManifests/{manifestId}" | "/api/kos/nodeMgr/blockedManifests/{manifestId}" | "/api/kos/config/{path}" | "/api/kos/config/bulk" | "/api/ext/dispense/pumpEvents/replaceLine/{holder}" | "/api/ext/dispense/pumpEvents/replacePump/{pump}" | "/api/app/tccc.fits/scales/{serialNum}" | "/api/ext/freestyle/ice/type/{path}/{type}" | "/api/app/tccc.fits/persistence/sources/{storageId}/{name}" | "/api/handle/assembly:core:board:macro:agitator:agit/test" | "/api/ext/dispense/nozzle/nozzle/pipeline/beverage/select" | "/api/ext/dispense/nozzle/nozzle/pipeline/beverage/pour" | "/api/ext/dispense/nozzle/nozzle/pipeline/beverage/fixed/{name}" | "/api/ext/dispense/metrics/{name}" | "/api/ext/dispense/metrics/{nozzle}/{name}" | "/api/ext/dispense/assignments" | "/api/ext/freestyle/fcm/diagnostics/{pump}/pressureTest" | "/api/ext/freestyle/fcm/diagnostics/{pump}/opennessTest" | "/api/ext/freestyle/fcm/diagnostics/{pump}/flowTest" | "/api/ext/freestyle/fcm/diagnostics/{pump}/electricalTest" | "/api/ext/freestyle/brandset/grantProperties" | "/api/app/kosdev.ddk/copyLogs/eraseAndCopy/{id}" | "/api/app/kosdev.ddk/copyLogs/{id}" | "/api/app/tccc.fits/session/pop/all" | "/api/app/tccc.fits/session/pop/include/{type}" | "/api/app/tccc.fits/session/pop/to/{type}" | "/api/app/tccc.fits/session/data/{key}" | "/api/app/tccc.fits.sim/scales/{serialNum}/disconnect" | "/api/app/tccc.fits.sim/scales/{serialNum}/reading/reset" | "/api/app/tccc.fits.sim/scales/{serialNum}/reading/{value}" | "/api/app/tccc.fits.sim/scales/{serialNum}/connect" | "/api/app/tccc.fits.sim/scale" | "/api/app/tccc.fits.sim/pumps/{pumpPath}/disconnect" | "/api/app/tccc.fits.sim/pumps/{pumpPath}/reading/unlock" | "/api/app/tccc.fits.sim/pumps/{pumpPath}/reading/lock" | "/api/app/tccc.fits.sim/pumps/{pumpPath}/connect/{serialNum}">(endpoint: K_1, params?: (paths[K_1]["post"] extends {
17
+ post: <K_1 extends "/api/kos/browser/{nodeId}" | "/api/kos/browser/{nodeId}/{name}" | "/api/kos/browser/intent" | "/api/kos/browser/url" | "/api/kos/ota/resume/{name}" | "/api/kos/ota/cancel" | "/api/kos/ota/cancel/{name}" | "/api/kos/ota/pause/{name}" | "/api/kos/time/date" | "/api/kos/time/timezone" | "/api/kos/time/time" | "/api/kos/future/{futureId}/cancel" | "/api/kos/config/{path}" | "/api/kos/config/bulk" | "/api/kos/update/install" | "/api/kos/nodeMgr/reboot" | "/api/kos/nodeMgr/node/{nodeId}/reboot" | "/api/kos/nodeMgr/node/{nodeId}/blockedManifests/{manifestId}" | "/api/kos/nodeMgr/blockedManifests/{manifestId}" | "/api/kos/device/serialNumber/{serialNum}" | "/api/kos/troubles/resolve" | "/api/kos/troubles/resolve/{troubleId}" | "/api/kos/criticalData/data" | "/api/kos/criticalData/data/{name}" | "/api/ext/freestyle/brandset/grantProperties" | "/api/ext/freestyle/ice/type/{path}/{type}" | "/api/app/kosdev.ddk/setup/complete/{stepName}" | "/api/ext/dispense/soldOuts/container/{pump}/{reason}" | "/api/ext/dispense/soldOuts/slice/{pump}/{reason}" | "/api/app/tccc.fits/medusa/profile" | "/api/app/tccc.fits/medusa/profiles/{profileId}" | "/api/app/tccc.fits/medusa/profiles/{profileId}/tests/resume" | "/api/app/tccc.fits/medusa/profiles/{profileId}/tests/exit" | "/api/app/tccc.fits/medusa/profiles/{profileId}/tests/stop" | "/api/app/tccc.fits/medusa/profiles/{profileId}/tests/{testId}" | "/api/app/tccc.fits/medusa/profiles/{profileId}/tests/{testId}/json" | "/api/app/tccc.fits/medusa/profiles/{profileId}/tests/{testId}/run" | "/api/app/tccc.fits/medusa/profiles/{profileId}/tests/pause" | "/api/app/tccc.fits/medusa/profiles/{profileId}/test" | "/api/app/tccc.fits/medusa/profiles/{profileId}/activate" | "/api/app/tccc.fits/medusa/profiles/{profileId}/builder/blocks" | "/api/app/tccc.fits/medusa/profiles/{profileId}/builder/bevs/{bevId}" | "/api/app/tccc.fits/medusa/profiles/{profileId}/recipe" | "/api/app/tccc.fits/medusa/profiles/{profileId}/mapper/discovery" | "/api/app/tccc.fits/medusa/profiles/{profileId}/mapper/builder" | "/api/app/tccc.fits/medusa/profiles/{profileId}/results/{resultsId}" | "/api/app/tccc.fits/medusa/profiles/{profileId}/validate" | "/api/app/tccc.fits/medusa/profiles/{profileId}/validate/all" | "/api/app/kosdev.ddk/ncui/reboot" | "/api/ext/dispense/metrics/{name}" | "/api/ext/dispense/metrics/{nozzle}/{name}" | "/api/app/kosdev.ddk/auth/pincode/{pin}" | "/api/app/tccc.fits/scales/{serialNum}" | "/api/app/tccc.fits.sim/scales/{serialNum}/disconnect" | "/api/app/tccc.fits.sim/scales/{serialNum}/reading/reset" | "/api/app/tccc.fits.sim/scales/{serialNum}/reading/{value}" | "/api/app/tccc.fits.sim/scales/{serialNum}/connect" | "/api/app/tccc.fits.sim/scale" | "/api/app/tccc.fits.sim/pumps/{pumpPath}/disconnect" | "/api/app/tccc.fits.sim/pumps/{pumpPath}/reading/unlock" | "/api/app/tccc.fits.sim/pumps/{pumpPath}/reading/lock" | "/api/app/tccc.fits.sim/pumps/{pumpPath}/connect/{serialNum}" | "/api/app/tccc.fits/persistence/sources/{storageId}/{name}" | "/api/ext/dispense/nozzle/nozzle/pipeline/ingredient/pour/{path}/{intent}" | "/api/ext/freestyle/microCalibration/cal/{pump}/running/{val}" | "/api/ext/freestyle/microCalibration/cal/{pump}/code/{code}" | "/api/ext/freestyle/microCalibration/cal/{pump}/baseline/{val}" | "/api/ext/freestyle/microCalibration/cal/{pump}/both/{val}" | "/api/ext/freestyle/can/stats" | "/api/ext/freestyle/can/write/byte/{boardPath}/{index}/{subIndex}/{val}" | "/api/ext/freestyle/can/write/short/{boardPath}/{index}/{subIndex}/{val}" | "/api/ext/freestyle/can/write/float/{boardPath}/{index}/{subIndex}/{val}" | "/api/ext/freestyle/can/write/int/{boardPath}/{index}/{subIndex}/{val}" | "/api/app/kosdev.ddk/copyLogs/eraseAndCopy/{id}" | "/api/app/kosdev.ddk/copyLogs/{id}" | "/api/ext/freestyle/fcm/diagnostics/{pump}/pressureTest" | "/api/ext/freestyle/fcm/diagnostics/{pump}/opennessTest" | "/api/ext/freestyle/fcm/diagnostics/{pump}/flowTest" | "/api/ext/freestyle/fcm/diagnostics/{pump}/electricalTest" | "/api/ext/dispense/nozzle/nozzle/pipeline/beverage/select" | "/api/ext/dispense/nozzle/nozzle/pipeline/beverage/pour" | "/api/ext/dispense/nozzle/nozzle/pipeline/beverage/fixed/{name}" | "/api/ext/dispense/pumpEvents/replaceLine/{holder}" | "/api/ext/dispense/pumpEvents/replacePump/{pump}" | "/api/app/tccc.fits/session/pop/all" | "/api/app/tccc.fits/session/pop/include/{type}" | "/api/app/tccc.fits/session/pop/to/{type}" | "/api/app/tccc.fits/session/data/{key}" | "/api/ext/freestyle/fcm/calibration/{pump}/calibrate" | "/api/ext/freestyle/fcm/calibration/{pump}/preCalibrate" | "/api/ext/freestyle/fcm/calibration/{pump}/verify/{calVolume}" | "/api/ext/freestyle/fcm/calibration/{pump}/baseline/{value}" | "/api/ext/freestyle/fcm/calibration/{pump}/complete/{calVolume}/{verifyVolume}" | "/api/handle/assembly:core:board:macro:agitator:agit/test" | "/api/app/kosdev.ddk/lockout/unlock/{pin}" | "/api/ext/dispense/assignments">(endpoint: K_1, params?: (paths[K_1]["post"] extends {
18
18
  parameters: infer P_1;
19
19
  } ? P_1 : never) | undefined, body?: (paths[K_1]["post"] extends {
20
20
  requestBody: {
@@ -46,7 +46,7 @@ export declare const api: {
46
46
  studio?: boolean | undefined;
47
47
  signal?: AbortSignal | undefined;
48
48
  } | undefined) => Promise<import('../../core').ServiceResponse<ClientResponse<paths, K_2, "put">>>;
49
- delete: <K_3 extends "/api/kos/criticalData/data/{name}" | "/api/app/tccc.fits/medusa/profiles/{profileId}" | "/api/app/tccc.fits/medusa/profiles/{profileId}/recipes/{name}" | "/api/app/tccc.fits/medusa/profiles/{profileId}/tests/{testId}" | "/api/app/tccc.fits/medusa/profiles/{profileId}/builder/blocks" | "/api/app/tccc.fits/medusa/profiles/{profileId}/builder/bevs/{bevId}" | "/api/app/tccc.fits/medusa/profiles/{profileId}/results/{resultsId}" | "/api/kos/nodeMgr/node/{nodeId}/blockedManifests" | "/api/kos/nodeMgr/node/{nodeId}/blockedManifests/{manifestId}" | "/api/kos/nodeMgr/blockedManifests/{manifestId}" | "/api/app/tccc.fits/scales/{serialNum}" | "/api/ext/dispense/nozzle/nozzle/pipeline/beverage/select" | "/api/ext/dispense/metrics/{name}" | "/api/ext/dispense/metrics/{nozzle}/{name}" | "/api/ext/dispense/assignments/{holderPath}" | "/api/app/kosdev.ddk/copyLogs/{id}" | "/api/app/tccc.fits/session/data/{key}" | "/api/app/tccc.fits.sim/scales/{serialNum}">(endpoint: K_3, params?: (paths[K_3]["delete"] extends {
49
+ delete: <K_3 extends "/api/kos/nodeMgr/node/{nodeId}/blockedManifests" | "/api/kos/nodeMgr/node/{nodeId}/blockedManifests/{manifestId}" | "/api/kos/nodeMgr/blockedManifests/{manifestId}" | "/api/kos/criticalData/data/{name}" | "/api/app/tccc.fits/medusa/profiles/{profileId}" | "/api/app/tccc.fits/medusa/profiles/{profileId}/recipes/{name}" | "/api/app/tccc.fits/medusa/profiles/{profileId}/tests/{testId}" | "/api/app/tccc.fits/medusa/profiles/{profileId}/builder/blocks" | "/api/app/tccc.fits/medusa/profiles/{profileId}/builder/bevs/{bevId}" | "/api/app/tccc.fits/medusa/profiles/{profileId}/results/{resultsId}" | "/api/ext/dispense/metrics/{name}" | "/api/ext/dispense/metrics/{nozzle}/{name}" | "/api/app/tccc.fits/scales/{serialNum}" | "/api/app/tccc.fits.sim/scales/{serialNum}" | "/api/app/kosdev.ddk/copyLogs/{id}" | "/api/ext/dispense/nozzle/nozzle/pipeline/beverage/select" | "/api/app/tccc.fits/session/data/{key}" | "/api/ext/dispense/assignments/{holderPath}">(endpoint: K_3, params?: (paths[K_3]["delete"] extends {
50
50
  parameters: infer P_3;
51
51
  } ? P_3 : never) | undefined, options?: {
52
52
  ordered?: boolean | undefined;