Don't use rc02, it seems to not work correctly
This commit is contained in:
Generated
+929
-14
File diff suppressed because it is too large
Load Diff
+3
-2
@@ -16,7 +16,8 @@
|
||||
"typescript": "^5.2.2"
|
||||
},
|
||||
"dependencies": {
|
||||
"@aas-core-works/aas-core3.0rc02-typescript": "^1.0.0-rc.6",
|
||||
"express": "^4.18.2"
|
||||
"@aas-core-works/aas-core3.0-typescript": "^1.0.0-rc.3",
|
||||
"express": "^4.18.2",
|
||||
"mqtt": "^5.1.2"
|
||||
}
|
||||
}
|
||||
|
||||
+1
-1
@@ -1,6 +1,6 @@
|
||||
|
||||
import { readdirSync, readFileSync } from "fs";
|
||||
import { types, jsonization } from "@aas-core-works/aas-core3.0rc02-typescript";
|
||||
import { types, jsonization } from "@aas-core-works/aas-core3.0-typescript";
|
||||
|
||||
export default class AASStore {
|
||||
private static instance: AASStore;
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
import type { Express } from "express";
|
||||
import express from "express";
|
||||
import { jsonization, types } from "@aas-core-works/aas-core3.0rc02-typescript";
|
||||
import { jsonization, types } from "@aas-core-works/aas-core3.0-typescript";
|
||||
import AASInterfaceServer from "../server";
|
||||
import type { OnRequestCallback, Request } from "types/requests";
|
||||
import AASStore from "../aasStore";
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
import * as mqtt from "mqtt";
|
||||
import { Property, Operation, OperationVariable, BasicEventElement } from "@aas-core-works/aas-core3.0rc02-typescript/dist/types/types";
|
||||
import { Property, Operation, OperationVariable, BasicEventElement } from "@aas-core-works/aas-core3.0-typescript/dist/types/types";
|
||||
import InterfaceConnectionObject from "interfaceConnectionObject";
|
||||
|
||||
class MQTTConnector extends InterfaceConnectionObject<mqtt.IClientOptions> {
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
import type { types } from "@aas-core-works/aas-core3.0rc02-typescript";
|
||||
import type { types } from "@aas-core-works/aas-core3.0-typescript";
|
||||
|
||||
type ConnectionType = "ON_DEMAND" | "PERMANENT";
|
||||
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
import { types } from "@aas-core-works/aas-core3.0rc02-typescript";
|
||||
import { types } from "@aas-core-works/aas-core3.0-typescript";
|
||||
import type AASInterfaceServer from "server";
|
||||
import type { Request } from "types/requests";
|
||||
import type InterfaceConnectionObject from "interfaceConnectionObject";
|
||||
|
||||
+1
-1
@@ -1,4 +1,4 @@
|
||||
import { types } from "@aas-core-works/aas-core3.0rc02-typescript";
|
||||
import { types } from "@aas-core-works/aas-core3.0-typescript";
|
||||
import type { Request, OnRequestCallback } from "types/requests";
|
||||
|
||||
export default abstract class AASInterfaceServer<ConfigInterface> {
|
||||
|
||||
Reference in New Issue
Block a user