@wandelbots/nova-js 3.3.1-pr.feature-add-program-client.114.5cf553e → 3.3.1

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.
@@ -1 +1 @@
1
- {"version":3,"file":"index.d.mts","names":[],"sources":["../src/lib/availableStorage.ts","../src/lib/converters.ts","../src/lib/errorHandling.ts","../src/LoginWithAuth0.ts"],"sourcesContent":[],"mappings":";;;;;;;;cAIM,gBAAA,CAAgB;EAyCT,SAAA,EAAA,OAAA;2BAtCc,QAAQ;;;ECLnB,SAAA,CAAA,GAAA,EAAY,MAAA,EAAA,KAAA,EAAA,MAAA,CAAA,EAAA,IAAA,GAAA,SAAA;EASZ,SAAA,CAAA,GAAA,EAAA,MAAgB,CAAA,EAAA,MAAA,GAAA,IAAA;AAahC;AAMgB,cDeH,gBCfmB,EDeH,gBCfG;;;;iBA5BhB,YAAA;;iBASA,gBAAA;;ADkChB;;;;AC3CgB,iBAsBA,kBAAA,CAtBY,GAAA,EAsBY,MAtBZ,CAAA,MAAA,EAAA,MAAA,CAAA,CAAA,EAAA,MAAA;AAS5B;AAagB,iBAMA,gBAAA,CANwB,OAAM,EAAA,MAAA,CAAA,EAAA,MAAA;AAM9C;AAKgB,iBAAA,gBAAA,CAAgB,OAAA,EAAA,MAAA,CAAA,EAAA,MAAA;AAQhC;AAaA;;;iBAbgB,sBAAA;ACxChB;AAOA;AAYA;cDkCa;;;EElBA,CAAA,EAAA,MAAA;;;;iBDnCG,KAAA,cAAgB;;;;AFC1B,iBEMU,qBAAA,CFHW,GAAO,EAAA,OAAA,CAAA,EAAA,MAAA;AAsClC;;;;AC3CA;AASA;AAaA;AAMA;AAKgB,iBCbA,gBAAA,CDagB,GAAA,EAAA,OAAA,CAAA,EAAA,MAAA;;;;;;;;ADUnB,cGPA,cHOgB,EAAA,CAAA,WAAA,EAAA,MAAyB,EAAA,GGLnD,OHKmD,CAAA,MAAA,GAAA,IAAA,CAAA"}
1
+ {"version":3,"file":"index.d.mts","names":[],"sources":["../src/lib/availableStorage.ts","../src/lib/converters.ts","../src/lib/errorHandling.ts","../src/LoginWithAuth0.ts"],"sourcesContent":[],"mappings":";;;;;;;;cAIM,gBAAA,CAAgB;EAyCT,SAAA,EAAA,OAAA;2BAtCc,QAAQ;;;ECLnB,SAAA,CAAA,GAAA,EAAY,MAAA,EAAA,KAAA,EAAA,MAAA,CAAA,EAAA,IAAA,GAAA,SAAA;EASZ,SAAA,CAAA,GAAA,EAAA,MAAgB,CAAA,EAAA,MAAA,GAAA,IAAA;AAahC;AAMgB,cDeH,gBCfmB,EDeH,gBCfG;;;;iBA5BhB,YAAA;;iBASA,gBAAA;;ADkChB;;;;AC3CgB,iBAsBA,kBAAA,CAtBY,GAAA,EAsBY,MAtBZ,CAAA,MAAA,EAAA,MAAA,CAAA,CAAA,EAAA,MAAA;AAS5B;AAagB,iBAMA,gBAAA,CANwB,OAAM,EAAA,MAAA,CAAA,EAAA,MAAA;AAM9C;AAKgB,iBAAA,gBAAA,CAAgB,OAAA,EAAA,MAAA,CAAA,EAAA,MAAA;AAQhC;AAaA;;;iBAbgB,sBAAA;ACxChB;AAOA;AAYA;cDkCa;;;EElBA,CAAA,EAAA,MAAA;;;;iBDnCG,KAAA,cAAgB;;;;AFC1B,iBEMU,qBAAA,CFHkB,GAAA,EAAA,OAAA,CAAA,EAAA,MAAA;AAsClC;;;;AC3CA;AASA;AAaA;AAMA;AAKgB,iBCbA,gBAAA,CDagB,GAAA,EAAA,OAAA,CAAA,EAAA,MAAA;;;;;;;;ADUnB,cGPA,cHOgB,EAAA,CAAA,WAAA,EAAA,MAAyB,EAAA,GGLnD,OHKmD,CAAA,MAAA,GAAA,IAAA,CAAA"}
@@ -7,108 +7,6 @@ let path_to_regexp = require("path-to-regexp");
7
7
  path_to_regexp = require_LoginWithAuth0.__toESM(path_to_regexp);
8
8
  let __wandelbots_nova_api_v2 = require("@wandelbots/nova-api/v2");
9
9
 
10
- //#region src/lib/v2/ProgramsClient.ts
11
- /**
12
- * Enhanced client for the Programs API providing intuitive program management
13
- */
14
- var ProgramsClient = class {
15
- constructor(client) {
16
- this.client = client;
17
- }
18
- /**
19
- * Get the underlying programs API for direct access
20
- */
21
- get api() {
22
- return this.client.programs;
23
- }
24
- /**
25
- * List all programs available in the cell
26
- */
27
- async list() {
28
- return await this.api.listPrograms();
29
- }
30
- /**
31
- * Get details of a specific program
32
- */
33
- async get(programId) {
34
- return await this.api.getProgram(programId);
35
- }
36
- /**
37
- * Start a program with the given arguments
38
- */
39
- async start(programId, args = {}) {
40
- const startRequest = { arguments: args };
41
- return await this.api.startProgram(programId, startRequest);
42
- }
43
- /**
44
- * Stop a running program
45
- */
46
- async stop(programId) {
47
- return await this.api.stopProgram(programId);
48
- }
49
- /**
50
- * Execute a program and wait for it to complete
51
- *
52
- * Note: This method has limitations due to current API constraints.
53
- * Real-time program state tracking will be available via NATS messaging
54
- * in future versions. For now, this provides basic start functionality.
55
- *
56
- * @param programId - The program identifier
57
- * @param args - Arguments to pass to the program
58
- * @param options - Basic execution options
59
- */
60
- async execute(programId, args = {}, options = {}) {
61
- const { onStart } = options;
62
- const run = await this.start(programId, args);
63
- if (onStart) onStart(run);
64
- return run;
65
- }
66
- /**
67
- * Create a program runner helper for a specific program
68
- */
69
- forProgram(programId) {
70
- return new ProgramRunner(this, programId);
71
- }
72
- };
73
- /**
74
- * Helper class for managing a specific program
75
- */
76
- var ProgramRunner = class {
77
- constructor(programs, programId) {
78
- this.programs = programs;
79
- this.programId = programId;
80
- }
81
- /**
82
- * Get program details
83
- */
84
- async getDetails() {
85
- return await this.programs.get(this.programId);
86
- }
87
- /**
88
- * Start this program
89
- */
90
- async start(args = {}) {
91
- return await this.programs.start(this.programId, args);
92
- }
93
- /**
94
- * Stop this program
95
- */
96
- async stop() {
97
- return await this.programs.stop(this.programId);
98
- }
99
- /**
100
- * Execute this program (start and get initial run information)
101
- *
102
- * Note: This method has limitations due to current API constraints.
103
- * Real-time program state tracking will be available via NATS messaging
104
- * in future versions.
105
- */
106
- async execute(args = {}, options = {}) {
107
- return await this.programs.execute(this.programId, args, options);
108
- }
109
- };
110
-
111
- //#endregion
112
10
  //#region src/lib/v2/NovaCellAPIClient.ts
113
11
  /**
114
12
  * API client providing type-safe access to all the Nova API REST endpoints
@@ -127,7 +25,6 @@ var NovaCellAPIClient = class {
127
25
  this.trajectoryPlanning = this.withCellId(__wandelbots_nova_api_v2.TrajectoryPlanningApi);
128
26
  this.trajectoryExecution = this.withCellId(__wandelbots_nova_api_v2.TrajectoryExecutionApi);
129
27
  this.trajectoryCaching = this.withCellId(__wandelbots_nova_api_v2.TrajectoryCachingApi);
130
- this.programs = this.withCellId(__wandelbots_nova_api_v2.ProgramApi);
131
28
  this.application = this.withCellId(__wandelbots_nova_api_v2.ApplicationApi);
132
29
  this.applicationGlobal = this.withUnwrappedResponsesOnly(__wandelbots_nova_api_v2.ApplicationApi);
133
30
  this.jogging = this.withCellId(__wandelbots_nova_api_v2.JoggingApi);
@@ -178,10 +75,6 @@ var NovaCellAPIClient = class {
178
75
  }
179
76
  return apiClient;
180
77
  }
181
- get programsClient() {
182
- if (!this._programsClient) this._programsClient = new ProgramsClient(this);
183
- return this._programsClient;
184
- }
185
78
  };
186
79
 
187
80
  //#endregion
@@ -844,8 +737,6 @@ function poseToWandelscriptString(pose) {
844
737
  //#endregion
845
738
  exports.NovaCellAPIClient = NovaCellAPIClient;
846
739
  exports.NovaClient = NovaClient;
847
- exports.ProgramRunner = ProgramRunner;
848
- exports.ProgramsClient = ProgramsClient;
849
740
  exports.poseToWandelscriptString = poseToWandelscriptString;
850
741
  Object.keys(__wandelbots_nova_api_v2).forEach(function (k) {
851
742
  if (k !== 'default' && !Object.prototype.hasOwnProperty.call(exports, k)) Object.defineProperty(exports, k, {
@@ -1 +1 @@
1
- {"version":3,"file":"index.cjs","names":["client: NovaCellAPIClient","startRequest: ProgramStartRequest","programs: ProgramsClient","programId: string","cellId: string","opts: BaseConfiguration & {\n axiosInstance?: AxiosInstance\n mock?: boolean\n }","SystemApi","CellApi","MotionGroupApi","MotionGroupModelsApi","ControllerApi","ControllerInputsOutputsApi","TrajectoryPlanningApi","TrajectoryExecutionApi","TrajectoryCachingApi","ProgramApi","ApplicationApi","JoggingApi","KinematicsApi","BUSInputsOutputsApi","VirtualControllerApi","VirtualControllerBehaviorApi","VirtualControllerInputsOutputsApi","StoreObjectApi","StoreCollisionComponentsApi","StoreCollisionSetupsApi","pathToRegexp","AxiosError","availableStorage","config","loginWithAuth0","AutoReconnectingWebsocket"],"sources":["../../../src/lib/v2/ProgramsClient.ts","../../../src/lib/v2/NovaCellAPIClient.ts","../../../src/lib/v2/mock/MockNovaInstance.ts","../../../src/lib/v2/NovaClient.ts","../../../src/lib/v2/wandelscriptUtils.ts"],"sourcesContent":["import type {\n Program,\n ProgramRun,\n ProgramRunState,\n ProgramStartRequest,\n ProgramApi,\n} from \"@wandelbots/nova-api/v2\"\nimport type { NovaCellAPIClient, WithCellId } from \"./NovaCellAPIClient.js\"\n\n/**\n * Enhanced client for the Programs API providing intuitive program management\n */\nexport class ProgramsClient {\n constructor(private client: NovaCellAPIClient) {}\n\n /**\n * Get the underlying programs API for direct access\n */\n get api(): WithCellId<ProgramApi> {\n return this.client.programs\n }\n\n /**\n * List all programs available in the cell\n */\n async list(): Promise<Program[]> {\n return await this.api.listPrograms()\n }\n\n /**\n * Get details of a specific program\n */\n async get(programId: string): Promise<Program> {\n return await this.api.getProgram(programId)\n }\n\n /**\n * Start a program with the given arguments\n */\n async start(\n programId: string,\n args: object = {},\n ): Promise<ProgramRun> {\n const startRequest: ProgramStartRequest = {\n arguments: args,\n }\n return await this.api.startProgram(programId, startRequest)\n }\n\n /**\n * Stop a running program\n */\n async stop(programId: string): Promise<void> {\n return await this.api.stopProgram(programId)\n }\n\n /**\n * Execute a program and wait for it to complete\n * \n * Note: This method has limitations due to current API constraints.\n * Real-time program state tracking will be available via NATS messaging\n * in future versions. For now, this provides basic start functionality.\n * \n * @param programId - The program identifier\n * @param args - Arguments to pass to the program\n * @param options - Basic execution options\n */\n async execute(\n programId: string,\n args: object = {},\n options: {\n onStart?: (run: ProgramRun) => void\n } = {},\n ): Promise<ProgramRun> {\n const { onStart } = options\n\n // Start the program\n const run = await this.start(programId, args)\n \n if (onStart) {\n onStart(run)\n }\n\n // Note: Cannot wait for completion due to API limitations\n // Real-time state tracking will be available via NATS messaging\n return run\n }\n\n /**\n * Create a program runner helper for a specific program\n */\n forProgram(programId: string): ProgramRunner {\n return new ProgramRunner(this, programId)\n }\n}\n\n/**\n * Helper class for managing a specific program\n */\nexport class ProgramRunner {\n constructor(\n private programs: ProgramsClient,\n private programId: string,\n ) {}\n\n /**\n * Get program details\n */\n async getDetails(): Promise<Program> {\n return await this.programs.get(this.programId)\n }\n\n /**\n * Start this program\n */\n async start(args: object = {}): Promise<ProgramRun> {\n return await this.programs.start(this.programId, args)\n }\n\n /**\n * Stop this program\n */\n async stop(): Promise<void> {\n return await this.programs.stop(this.programId)\n }\n\n /**\n * Execute this program (start and get initial run information)\n * \n * Note: This method has limitations due to current API constraints.\n * Real-time program state tracking will be available via NATS messaging\n * in future versions.\n */\n async execute(\n args: object = {},\n options: {\n onStart?: (run: ProgramRun) => void\n } = {},\n ): Promise<ProgramRun> {\n return await this.programs.execute(this.programId, args, options)\n }\n}\n\n// Re-export types for convenience\nexport type {\n Program,\n ProgramRun,\n ProgramRunState,\n ProgramStartRequest,\n}\n","/** biome-ignore-all lint/suspicious/noExplicitAny: legacy code */\n/** biome-ignore-all lint/style/noNonNullAssertion: legacy code */\nimport type {\n BaseAPI,\n Configuration as BaseConfiguration,\n} from \"@wandelbots/nova-api/v2\"\nimport {\n ApplicationApi,\n BUSInputsOutputsApi,\n CellApi,\n ControllerApi,\n ControllerInputsOutputsApi,\n JoggingApi,\n KinematicsApi,\n MotionGroupApi,\n MotionGroupModelsApi,\n ProgramApi,\n StoreCollisionComponentsApi,\n StoreCollisionSetupsApi,\n StoreObjectApi,\n SystemApi,\n TrajectoryCachingApi,\n TrajectoryExecutionApi,\n TrajectoryPlanningApi,\n VirtualControllerApi,\n VirtualControllerBehaviorApi,\n VirtualControllerInputsOutputsApi,\n} from \"@wandelbots/nova-api/v2\"\nimport type { AxiosInstance } from \"axios\"\nimport axios from \"axios\"\nimport { ProgramsClient } from \"./ProgramsClient.js\"\n\ntype OmitFirstArg<F> = F extends (x: any, ...args: infer P) => infer R\n ? (...args: P) => R\n : never\n\ntype UnwrapAxiosResponseReturn<T> = T extends (...a: any) => any\n ? (\n ...a: Parameters<T>\n ) => Promise<Awaited<ReturnType<T>> extends { data: infer D } ? D : never>\n : never\n\nexport type WithCellId<T> = {\n [P in keyof T]: UnwrapAxiosResponseReturn<OmitFirstArg<T[P]>>\n}\n\nexport type WithUnwrappedAxiosResponse<T> = {\n [P in keyof T]: UnwrapAxiosResponseReturn<T[P]>\n}\n\n/**\n * API client providing type-safe access to all the Nova API REST endpoints\n * associated with a specific cell id.\n */\nexport class NovaCellAPIClient {\n constructor(\n readonly cellId: string,\n readonly opts: BaseConfiguration & {\n axiosInstance?: AxiosInstance\n mock?: boolean\n },\n ) {}\n\n /**\n * Some TypeScript sorcery which alters the API class methods so you don't\n * have to pass the cell id to every single one, and de-encapsulates the\n * response data\n */\n private withCellId<T extends BaseAPI>(\n ApiConstructor: new (\n config: BaseConfiguration,\n basePath: string,\n axios: AxiosInstance,\n ) => T,\n ) {\n const apiClient = new ApiConstructor(\n {\n ...this.opts,\n isJsonMime: (mime: string) => {\n return mime === \"application/json\"\n },\n },\n this.opts.basePath ?? \"\",\n this.opts.axiosInstance ?? axios.create(),\n ) as {\n [key: string | symbol]: any\n }\n\n for (const key of Reflect.ownKeys(Reflect.getPrototypeOf(apiClient)!)) {\n if (key !== \"constructor\" && typeof apiClient[key] === \"function\") {\n const originalFunction = apiClient[key]\n apiClient[key] = (...args: any[]) => {\n return originalFunction\n .apply(apiClient, [this.cellId, ...args])\n .then((res: any) => res.data)\n }\n }\n }\n\n return apiClient as WithCellId<T>\n }\n\n /**\n * As withCellId, but only does the response unwrapping\n */\n private withUnwrappedResponsesOnly<T extends BaseAPI>(\n ApiConstructor: new (\n config: BaseConfiguration,\n basePath: string,\n axios: AxiosInstance,\n ) => T,\n ) {\n const apiClient = new ApiConstructor(\n {\n ...this.opts,\n isJsonMime: (mime: string) => {\n return mime === \"application/json\"\n },\n },\n this.opts.basePath ?? \"\",\n this.opts.axiosInstance ?? axios.create(),\n ) as {\n [key: string | symbol]: any\n }\n\n for (const key of Reflect.ownKeys(Reflect.getPrototypeOf(apiClient)!)) {\n if (key !== \"constructor\" && typeof apiClient[key] === \"function\") {\n const originalFunction = apiClient[key]\n apiClient[key] = (...args: any[]) => {\n return originalFunction\n .apply(apiClient, args)\n .then((res: any) => res.data)\n }\n }\n }\n\n return apiClient as WithUnwrappedAxiosResponse<T>\n }\n\n readonly system = this.withUnwrappedResponsesOnly(SystemApi)\n readonly cell = this.withUnwrappedResponsesOnly(CellApi)\n\n readonly motionGroup = this.withCellId(MotionGroupApi)\n readonly motionGroupModels = this.withCellId(MotionGroupModelsApi)\n\n readonly controller = this.withCellId(ControllerApi)\n\n readonly controllerIOs = this.withCellId(ControllerInputsOutputsApi)\n\n readonly trajectoryPlanning = this.withCellId(TrajectoryPlanningApi)\n readonly trajectoryExecution = this.withCellId(TrajectoryExecutionApi)\n readonly trajectoryCaching = this.withCellId(TrajectoryCachingApi)\n\n readonly programs = this.withCellId(ProgramApi)\n\n readonly application = this.withCellId(ApplicationApi)\n readonly applicationGlobal = this.withUnwrappedResponsesOnly(ApplicationApi)\n\n readonly jogging = this.withCellId(JoggingApi)\n\n readonly kinematics = this.withCellId(KinematicsApi)\n\n readonly busInputsOutputs = this.withCellId(BUSInputsOutputsApi)\n\n readonly virtualController = this.withCellId(VirtualControllerApi)\n readonly virtualControllerBehavior = this.withCellId(\n VirtualControllerBehaviorApi,\n )\n readonly virtualControllerIOs = this.withCellId(\n VirtualControllerInputsOutputsApi,\n )\n\n readonly storeObject = this.withCellId(StoreObjectApi)\n readonly storeCollisionComponents = this.withCellId(\n StoreCollisionComponentsApi,\n )\n readonly storeCollisionSetups = this.withCellId(StoreCollisionSetupsApi)\n\n // Enhanced programs client with convenient methods\n private _programsClient?: ProgramsClient\n get programsClient(): ProgramsClient {\n if (!this._programsClient) {\n this._programsClient = new ProgramsClient(this)\n }\n return this._programsClient\n }\n}\n","/** biome-ignore-all lint/suspicious/noApproximativeNumericConstant: mock data contains approximative pi values from robot description */\nimport type { MotionGroupState, RobotController } from \"@wandelbots/nova-api/v2\"\nimport type { AxiosResponse, InternalAxiosRequestConfig } from \"axios\"\nimport { AxiosError } from \"axios\"\nimport * as pathToRegexp from \"path-to-regexp\"\nimport type { AutoReconnectingWebsocket } from \"../../AutoReconnectingWebsocket\"\n\n/**\n * Ultra-simplified mock Nova server for testing stuff\n */\nexport class MockNovaInstance {\n readonly connections: AutoReconnectingWebsocket[] = []\n\n async handleAPIRequest(\n config: InternalAxiosRequestConfig,\n ): Promise<AxiosResponse> {\n const apiHandlers = [\n {\n method: \"GET\",\n path: \"/cells/:cellId/controllers\",\n handle() {\n return [\"mock-ur5e\"]\n },\n },\n {\n method: \"GET\",\n path: \"/cells/:cellId/controllers/:controllerId\",\n handle() {\n return {\n configuration: {\n initial_joint_position: \"[0,-1.571,-1.571,-1.571,1.571,-1.571,0]\",\n kind: \"VirtualController\",\n manufacturer: \"universalrobots\",\n type: \"universalrobots-ur5e\",\n },\n name: \"mock-ur5\",\n } satisfies RobotController\n },\n },\n {\n method: \"GET\",\n path: \"/cells/:cellId/controllers/:controllerId/state\",\n handle() {\n return {\n mode: \"MODE_CONTROL\",\n last_error: [],\n timestamp: \"2025-10-16T09:19:26.634534092Z\",\n sequence_number: 1054764,\n controller: \"mock-ur5e\",\n operation_mode: \"OPERATION_MODE_AUTO\",\n safety_state: \"SAFETY_STATE_NORMAL\",\n velocity_override: 100,\n motion_groups: [\n {\n timestamp: \"2025-10-16T09:19:26.634534092Z\",\n sequence_number: 1054764,\n motion_group: \"0@mock-ur5e\",\n controller: \"mock-ur5e\",\n joint_position: [\n 1.487959623336792, -1.8501918315887451, 1.8003005981445312,\n 6.034560203552246, 1.4921919107437134, 1.593459963798523,\n ],\n joint_limit_reached: {\n limit_reached: [false, false, false, false, false, false],\n },\n joint_torque: [],\n joint_current: [0, 0, 0, 0, 0, 0],\n flange_pose: {\n position: [\n 107.6452433732927, -409.0402987746852, 524.2402132330305,\n ],\n orientation: [\n 0.9874434028353319, -0.986571714997442, 1.3336589451098142,\n ],\n },\n tcp: \"Flange\",\n tcp_pose: {\n position: [\n 107.6452433732927, -409.0402987746852, 524.2402132330305,\n ],\n orientation: [\n 0.9874434028353319, -0.986571714997442, 1.3336589451098142,\n ],\n },\n payload: \"\",\n coordinate_system: \"\",\n standstill: true,\n },\n ],\n }\n },\n },\n {\n method: \"GET\",\n path: \"/cells/:cellId/controllers/:controllerId/motion-groups/:motionGroupId/description\",\n handle() {\n return {\n motion_group_model: \"UniversalRobots_UR5e\",\n mounting: {\n position: [0, 0, 0],\n orientation: [0, 0, 0],\n },\n tcps: {\n Flange: {\n name: \"Default-Flange\",\n pose: {\n position: [0, 0, 0],\n orientation: [0, 0, 0],\n },\n },\n },\n payloads: {\n \"FPay-0\": {\n name: \"FPay-0\",\n payload: 0,\n center_of_mass: [0, 0, 0],\n moment_of_inertia: [0, 0, 0],\n },\n },\n cycle_time: 8,\n dh_parameters: [\n {\n alpha: 1.5707963267948966,\n d: 162.25,\n },\n {\n a: -425,\n },\n {\n a: -392.2,\n },\n {\n alpha: 1.5707963267948966,\n d: 133.3,\n },\n {\n alpha: -1.5707963267948966,\n d: 99.7,\n },\n {\n d: 99.6,\n },\n ],\n operation_limits: {\n auto_limits: {\n joints: [\n {\n position: {\n lower_limit: -6.283185307179586,\n upper_limit: 6.283185307179586,\n },\n velocity: 3.34159255027771,\n acceleration: 40,\n torque: 150,\n },\n {\n position: {\n lower_limit: -6.283185307179586,\n upper_limit: 6.283185307179586,\n },\n velocity: 3.34159255027771,\n acceleration: 40,\n torque: 150,\n },\n {\n position: {\n lower_limit: -6.283185307179586,\n upper_limit: 6.283185307179586,\n },\n velocity: 3.34159255027771,\n acceleration: 40,\n torque: 150,\n },\n {\n position: {\n lower_limit: -6.283185307179586,\n upper_limit: 6.283185307179586,\n },\n velocity: 3.34159255027771,\n acceleration: 40,\n torque: 28,\n },\n {\n position: {\n lower_limit: -6.283185307179586,\n upper_limit: 6.283185307179586,\n },\n velocity: 3.34159255027771,\n acceleration: 40,\n torque: 28,\n },\n {\n position: {\n lower_limit: -6.283185307179586,\n upper_limit: 6.283185307179586,\n },\n velocity: 3.34159255027771,\n acceleration: 40,\n torque: 28,\n },\n ],\n tcp: {\n velocity: 5000,\n },\n elbow: {\n velocity: 5000,\n },\n flange: {\n velocity: 5000,\n },\n },\n manual_limits: {\n joints: [\n {\n position: {\n lower_limit: -6.283185307179586,\n upper_limit: 6.283185307179586,\n },\n velocity: 3.34159255027771,\n acceleration: 40,\n torque: 150,\n },\n {\n position: {\n lower_limit: -6.283185307179586,\n upper_limit: 6.283185307179586,\n },\n velocity: 3.34159255027771,\n acceleration: 40,\n torque: 150,\n },\n {\n position: {\n lower_limit: -6.283185307179586,\n upper_limit: 6.283185307179586,\n },\n velocity: 3.34159255027771,\n acceleration: 40,\n torque: 150,\n },\n {\n position: {\n lower_limit: -6.283185307179586,\n upper_limit: 6.283185307179586,\n },\n velocity: 3.34159255027771,\n acceleration: 40,\n torque: 28,\n },\n {\n position: {\n lower_limit: -6.283185307179586,\n upper_limit: 6.283185307179586,\n },\n velocity: 3.34159255027771,\n acceleration: 40,\n torque: 28,\n },\n {\n position: {\n lower_limit: -6.283185307179586,\n upper_limit: 6.283185307179586,\n },\n velocity: 3.34159255027771,\n acceleration: 40,\n torque: 28,\n },\n ],\n tcp: {\n velocity: 5000,\n },\n },\n manual_t1_limits: {\n joints: [\n {\n position: {\n lower_limit: -6.283185307179586,\n upper_limit: 6.283185307179586,\n },\n velocity: 3.34159255027771,\n acceleration: 40,\n torque: 150,\n },\n {\n position: {\n lower_limit: -6.283185307179586,\n upper_limit: 6.283185307179586,\n },\n velocity: 3.34159255027771,\n acceleration: 40,\n torque: 150,\n },\n {\n position: {\n lower_limit: -6.283185307179586,\n upper_limit: 6.283185307179586,\n },\n velocity: 3.34159255027771,\n acceleration: 40,\n torque: 150,\n },\n {\n position: {\n lower_limit: -6.283185307179586,\n upper_limit: 6.283185307179586,\n },\n velocity: 3.34159255027771,\n acceleration: 40,\n torque: 28,\n },\n {\n position: {\n lower_limit: -6.283185307179586,\n upper_limit: 6.283185307179586,\n },\n velocity: 3.34159255027771,\n acceleration: 40,\n torque: 28,\n },\n {\n position: {\n lower_limit: -6.283185307179586,\n upper_limit: 6.283185307179586,\n },\n velocity: 3.34159255027771,\n acceleration: 40,\n torque: 28,\n },\n ],\n tcp: {\n velocity: 5000,\n },\n },\n manual_t2_limits: {\n joints: [\n {\n position: {\n lower_limit: -6.283185307179586,\n upper_limit: 6.283185307179586,\n },\n velocity: 3.34159255027771,\n acceleration: 40,\n torque: 150,\n },\n {\n position: {\n lower_limit: -6.283185307179586,\n upper_limit: 6.283185307179586,\n },\n velocity: 3.34159255027771,\n acceleration: 40,\n torque: 150,\n },\n {\n position: {\n lower_limit: -6.283185307179586,\n upper_limit: 6.283185307179586,\n },\n velocity: 3.34159255027771,\n acceleration: 40,\n torque: 150,\n },\n {\n position: {\n lower_limit: -6.283185307179586,\n upper_limit: 6.283185307179586,\n },\n velocity: 3.34159255027771,\n acceleration: 40,\n torque: 28,\n },\n {\n position: {\n lower_limit: -6.283185307179586,\n upper_limit: 6.283185307179586,\n },\n velocity: 3.34159255027771,\n acceleration: 40,\n torque: 28,\n },\n {\n position: {\n lower_limit: -6.283185307179586,\n upper_limit: 6.283185307179586,\n },\n velocity: 3.34159255027771,\n acceleration: 40,\n torque: 28,\n },\n ],\n tcp: {\n velocity: 5000,\n },\n },\n },\n serial_number: \"WBVirtualRobot\",\n }\n },\n },\n {\n method: \"GET\",\n path: \"/cells/:cellId/controllers/:controllerId/coordinate-systems\",\n handle() {\n return [\n {\n coordinate_system: \"\",\n name: \"world\",\n reference_coordinate_system: \"\",\n position: [0, 0, 0],\n orientation: [0, 0, 0],\n orientation_type: \"ROTATION_VECTOR\",\n },\n {\n coordinate_system: \"CS-0\",\n name: \"Default-CS\",\n reference_coordinate_system: \"\",\n position: [0, 0, 0],\n orientation: [0, 0, 0],\n orientation_type: \"ROTATION_VECTOR\",\n },\n ] //satisfies CoordinateSystems\n },\n },\n ]\n\n const method = config.method?.toUpperCase() || \"GET\"\n const path = `/cells${config.url?.split(\"/cells\")[1]?.split(\"?\")[0]}`\n\n for (const handler of apiHandlers) {\n const match = pathToRegexp.match(handler.path)(path || \"\")\n if (method === handler.method && match) {\n const json = handler.handle()\n return {\n status: 200,\n statusText: \"Success\",\n data: JSON.stringify(json),\n headers: {},\n config,\n request: {\n responseURL: config.url,\n },\n }\n }\n }\n\n throw new AxiosError(\n `No mock handler matched this request: ${method} ${path}`,\n \"404\",\n config,\n )\n\n // return {\n // status: 404,\n // statusText: \"Not Found\",\n // data: \"\",\n // headers: {},\n // config,\n // request: {\n // responseURL: config.url,\n // },\n // }\n }\n\n // Please note: Only very basic websocket mocking is done here, needs to be extended as needed\n handleWebsocketConnection(socket: AutoReconnectingWebsocket) {\n this.connections.push(socket)\n\n setTimeout(() => {\n socket.dispatchEvent(new Event(\"open\"))\n\n console.log(\"Websocket connection opened from\", socket.url)\n\n if (socket.url.includes(\"/state-stream\")) {\n socket.dispatchEvent(\n new MessageEvent(\"message\", {\n data: JSON.stringify(defaultMotionState),\n }),\n )\n }\n\n if (socket.url.includes(\"/execution/jogging\")) {\n socket.dispatchEvent(\n new MessageEvent(\"message\", {\n data: JSON.stringify({\n result: {\n message: \"string\",\n kind: \"INITIALIZE_RECEIVED\",\n },\n }),\n }),\n )\n }\n }, 10)\n }\n\n handleWebsocketMessage(socket: AutoReconnectingWebsocket, message: string) {\n console.log(`Received message on ${socket.url}`, message)\n }\n}\n\nconst defaultMotionState = {\n result: {\n motion_group: \"0@universalrobots-ur5e\",\n controller: \"universalrobots-ur5e\",\n timestamp: new Date().toISOString(),\n sequence_number: 1,\n joint_position: [\n 1.1699999570846558, -1.5700000524520874, 1.3600000143051147,\n 1.0299999713897705, 1.2899999618530273, 1.2799999713897705,\n ],\n joint_limit_reached: {\n limit_reached: [false, false, false, false, false, false],\n },\n standstill: false,\n flange_pose: {\n position: [1.3300010259703043, -409.2680714682808, 531.0203477065281],\n orientation: [\n 1.7564919306270736, -1.7542521568325058, 0.7326972590614671,\n ],\n },\n tcp_pose: {\n position: [1.3300010259703043, -409.2680714682808, 531.0203477065281],\n orientation: [\n 1.7564919306270736, -1.7542521568325058, 0.7326972590614671,\n ],\n },\n } satisfies MotionGroupState,\n}\n","/** biome-ignore-all lint/style/noNonNullAssertion: legacy code */\nimport type { Configuration as BaseConfiguration } from \"@wandelbots/nova-api/v2\"\nimport type { AxiosRequestConfig } from \"axios\"\nimport axios, { isAxiosError } from \"axios\"\nimport urlJoin from \"url-join\"\nimport { loginWithAuth0 } from \"../../LoginWithAuth0\"\nimport { AutoReconnectingWebsocket } from \"../AutoReconnectingWebsocket\"\nimport { availableStorage } from \"../availableStorage\"\nimport { MockNovaInstance } from \"./mock/MockNovaInstance\"\nimport { NovaCellAPIClient } from \"./NovaCellAPIClient\"\n\nexport type NovaClientConfig = {\n /**\n * Url of the deployed Nova instance to connect to\n * e.g. https://saeattii.instance.wandelbots.io\n */\n instanceUrl: string | \"https://mock.example.com\"\n\n /**\n * Identifier of the cell on the Nova instance to connect this client to.\n * If omitted, the default identifier \"cell\" is used.\n **/\n cellId?: string\n\n /**\n * Username for basic auth to the Nova instance.\n * @deprecated use accessToken instead\n */\n username?: string\n\n /**\n * Password for basic auth to the Nova instance.\n * @deprecated use accessToken instead\n */\n password?: string\n\n /**\n * Access token for Bearer authentication.\n */\n accessToken?: string\n} & Omit<BaseConfiguration, \"isJsonMime\" | \"basePath\">\n\ntype NovaClientConfigWithDefaults = NovaClientConfig & { cellId: string }\n\nfunction permissiveInstanceUrlParse(url: string): string {\n if (!url.startsWith(\"http\")) {\n url = `http://${url}`\n }\n\n return new URL(url).toString()\n}\n\n/**\n *\n * Client for connecting to a Nova instance and controlling robots.\n */\nexport class NovaClient {\n readonly api: NovaCellAPIClient\n readonly config: NovaClientConfigWithDefaults\n readonly mock?: MockNovaInstance\n authPromise: Promise<string | null> | null = null\n accessToken: string | null = null\n\n constructor(config: NovaClientConfig) {\n const cellId = config.cellId ?? \"cell\"\n this.config = {\n cellId,\n ...config,\n }\n this.accessToken =\n config.accessToken ||\n availableStorage.getString(\"wbjs.access_token\") ||\n null\n\n if (this.config.instanceUrl === \"https://mock.example.com\") {\n this.mock = new MockNovaInstance()\n } else {\n this.config.instanceUrl = permissiveInstanceUrlParse(\n this.config.instanceUrl,\n )\n }\n\n // Set up Axios instance with interceptor for token fetching\n const axiosInstance = axios.create({\n baseURL: urlJoin(this.config.instanceUrl, \"/api/v2\"),\n // TODO - backend needs to set proper CORS headers for this\n headers:\n typeof window !== \"undefined\" &&\n window.location.origin.includes(\"localhost\")\n ? {}\n : {\n // Identify the client to the backend for logging purposes\n \"X-Wandelbots-Client\": \"Wandelbots-Nova-JS-SDK\",\n },\n })\n\n axiosInstance.interceptors.request.use(async (request) => {\n if (!request.headers.Authorization) {\n if (this.accessToken) {\n request.headers.Authorization = `Bearer ${this.accessToken}`\n } else if (this.config.username && this.config.password) {\n request.headers.Authorization = `Basic ${btoa(`${config.username}:${config.password}`)}`\n }\n }\n return request\n })\n\n if (typeof window !== \"undefined\") {\n axiosInstance.interceptors.response.use(\n (r) => r,\n async (error) => {\n if (isAxiosError(error)) {\n if (error.response?.status === 401) {\n // If we hit a 401, attempt to login the user and retry with\n // a new access token\n try {\n await this.renewAuthentication()\n\n if (error.config) {\n if (this.accessToken) {\n error.config.headers.Authorization = `Bearer ${this.accessToken}`\n } else {\n delete error.config.headers.Authorization\n }\n return axiosInstance.request(error.config)\n }\n } catch (err) {\n return Promise.reject(err)\n }\n } else if (error.response?.status === 503) {\n // Check if the server as a whole is down\n const res = await fetch(window.location.href)\n if (res.status === 503) {\n // Go to 503 page\n window.location.reload()\n }\n }\n }\n\n return Promise.reject(error)\n },\n )\n }\n\n this.api = new NovaCellAPIClient(cellId, {\n ...config,\n basePath: urlJoin(this.config.instanceUrl, \"/api/v2\"),\n isJsonMime: (mime: string) => {\n return mime === \"application/json\"\n },\n baseOptions: {\n ...(this.mock\n ? ({\n adapter: (config) => {\n return this.mock!.handleAPIRequest(config)\n },\n } satisfies AxiosRequestConfig)\n : {}),\n ...config.baseOptions,\n },\n axiosInstance,\n })\n }\n\n async renewAuthentication(): Promise<void> {\n if (this.authPromise) {\n // Don't double up\n return\n }\n\n this.authPromise = loginWithAuth0(this.config.instanceUrl)\n try {\n this.accessToken = await this.authPromise\n if (this.accessToken) {\n // Cache access token so we don't need to log in every refresh\n availableStorage.setString(\"wbjs.access_token\", this.accessToken)\n } else {\n availableStorage.delete(\"wbjs.access_token\")\n }\n } finally {\n this.authPromise = null\n }\n }\n\n makeWebsocketURL(path: string): string {\n const url = new URL(\n urlJoin(\n this.config.instanceUrl,\n `/api/v2/cells/${this.config.cellId}`,\n path,\n ),\n )\n url.protocol = url.protocol.replace(\"http\", \"ws\")\n url.protocol = url.protocol.replace(\"https\", \"wss\")\n\n // If provided, add basic auth credentials to the URL\n // NOTE - basic auth is deprecated on websockets and doesn't work in Safari\n // use tokens instead\n if (this.accessToken) {\n url.searchParams.append(\"token\", this.accessToken)\n } else if (this.config.username && this.config.password) {\n url.username = this.config.username\n url.password = this.config.password\n }\n\n return url.toString()\n }\n\n /**\n * Retrieve an AutoReconnectingWebsocket to the given path on the Nova instance.\n * If you explicitly want to reconnect an existing websocket, call `reconnect`\n * on the returned object.\n */\n openReconnectingWebsocket(path: string) {\n return new AutoReconnectingWebsocket(this.makeWebsocketURL(path), {\n mock: this.mock,\n })\n }\n}\n","import type { Pose } from \"@wandelbots/nova-api/v2\"\n\n/**\n * Convert a Pose object representing a motion group position\n * into a string which represents that pose in Wandelscript.\n */\nexport function poseToWandelscriptString(\n pose: Pick<Pose, \"position\" | \"orientation\">,\n) {\n const position = [\n pose.position?.[0] ?? 0,\n pose.position?.[1] ?? 0,\n pose.position?.[2] ?? 0,\n ]\n\n const orientation = [\n pose.orientation?.[0] ?? 0,\n pose.orientation?.[1] ?? 0,\n pose.orientation?.[2] ?? 0,\n ]\n\n const positionValues = position.map((v) => v.toFixed(1))\n // Rotation needs more precision since it's in radians\n const rotationValues = orientation.map((v) => v.toFixed(4))\n\n return `(${positionValues.concat(rotationValues).join(\", \")})`\n}\n"],"mappings":"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CR,UAAU;OACR,MAAM;OACN,SAAS;OACT,gBAAgB;QAAC;QAAG;QAAG;QAAE;OACzB,mBAAmB;QAAC;QAAG;QAAG;QAAE;OAC7B,EACF;MACD,YAAY;MACZ,eAAe;OACb;QACE,OAAO;QACP,GAAG;QACJ;OACD,EACE,GAAG,MACJ;OACD,EACE,GAAG,QACJ;OACD;QACE,OAAO;QACP,GAAG;QACJ;OACD;QACE,OAAO;QACP,GAAG;QACJ;OACD,EACE,GAAG,MACJ;OACF;MACD,kBAAkB;OAChB,aAAa;QACX,QAAQ;SACN;UACE,UAAU;WACR,aAAa;WACb,aAAa;WACd;UACD,UAAU;UACV,cAAc;UACd,QAAQ;UACT;SACD;UACE,UAAU;WACR,aAAa;WACb,aAAa;WACd;UACD,UAAU;UACV,cAAc;UACd,QAAQ;UACT;SACD;UACE,UAAU;WACR,aAAa;WACb,aAAa;WACd;UACD,UAAU;UACV,cAAc;UACd,QAAQ;UACT;SACD;UACE,UAAU;WACR,aAAa;WACb,aAAa;WACd;UACD,UAAU;UACV,cAAc;UACd,QAAQ;UACT;SACD;UACE,UAAU;WACR,aAAa;WACb,aAAa;WACd;UACD,UAAU;UACV,cAAc;UACd,QAAQ;UACT;SACD;UACE,UAAU;WACR,aAAa;WACb,aAAa;WACd;UACD,UAAU;UACV,cAAc;UACd,QAAQ;UACT;SACF;QACD,KAAK,EACH,UAAU,KACX;QACD,OAAO,EACL,UAAU,KACX;QACD,QAAQ,EACN,UAAU,KACX;QACF;OACD,eAAe;QACb,QAAQ;SACN;UACE,UAAU;WACR,aAAa;WACb,aAAa;WACd;UACD,UAAU;UACV,cAAc;UACd,QAAQ;UACT;SACD;UACE,UAAU;WACR,aAAa;WACb,aAAa;WACd;UACD,UAAU;UACV,cAAc;UACd,QAAQ;UACT;SACD;UACE,UAAU;WACR,aAAa;WACb,aAAa;WACd;UACD,UAAU;UACV,cAAc;UACd,QAAQ;UACT;SACD;UACE,UAAU;WACR,aAAa;WACb,aAAa;WACd;UACD,UAAU;UACV,cAAc;UACd,QAAQ;UACT;SACD;UACE,UAAU;WACR,aAAa;WACb,aAAa;WACd;UACD,UAAU;UACV,cAAc;UACd,QAAQ;UACT;SACD;UACE,UAAU;WACR,aAAa;WACb,aAAa;WACd;UACD,UAAU;UACV,cAAc;UACd,QAAQ;UACT;SACF;QACD,KAAK,EACH,UAAU,KACX;QACF;OACD,kBAAkB;QAChB,QAAQ;SACN;UACE,UAAU;WACR,aAAa;WACb,aAAa;WACd;UACD,UAAU;UACV,cAAc;UACd,QAAQ;UACT;SACD;UACE,UAAU;WACR,aAAa;WACb,aAAa;WACd;UACD,UAAU;UACV,cAAc;UACd,QAAQ;UACT;SACD;UACE,UAAU;WACR,aAAa;WACb,aAAa;WACd;UACD,UAAU;UACV,cAAc;UACd,QAAQ;UACT;SACD;UACE,UAAU;WACR,aAAa;WACb,aAAa;WACd;UACD,UAAU;UACV,cAAc;UACd,QAAQ;UACT;SACD;UACE,UAAU;WACR,aAAa;WACb,aAAa;WACd;UACD,UAAU;UACV,cAAc;UACd,QAAQ;UACT;SACD;UACE,UAAU;WACR,aAAa;WACb,aAAa;WACd;UACD,UAAU;UACV,cAAc;UACd,QAAQ;UACT;SACF;QACD,KAAK,EACH,UAAU,KACX;QACF;OACD,kBAAkB;QAChB,QAAQ;SACN;UACE,UAAU;WACR,aAAa;WACb,aAAa;WACd;UACD,UAAU;UACV,cAAc;UACd,QAAQ;UACT;SACD;UACE,UAAU;WACR,aAAa;WACb,aAAa;WACd;UACD,UAAU;UACV,cAAc;UACd,QAAQ;UACT;SACD;UACE,UAAU;WACR,aAAa;WACb,aAAa;WACd;UACD,UAAU;UACV,cAAc;UACd,QAAQ;UACT;SACD;UACE,UAAU;WACR,aAAa;WACb,aAAa;WACd;UACD,UAAU;UACV,cAAc;UACd,QAAQ;UACT;SACD;UACE,UAAU;WACR,aAAa;WACb,aAAa;WACd;UACD,UAAU;UACV,cAAc;UACd,QAAQ;UACT;SACD;UACE,UAAU;WACR,aAAa;WACb,aAAa;WACd;UACD,UAAU;UACV,cAAc;UACd,QAAQ;UACT;SACF;QACD,KAAK,EACH,UAAU,KACX;QACF;OACF;MACD,eAAe;MAChB;;IAEJ;GACD;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"}
1
+ {"version":3,"file":"index.cjs","names":["cellId: string","opts: BaseConfiguration & {\n axiosInstance?: AxiosInstance\n mock?: boolean\n }","SystemApi","CellApi","MotionGroupApi","MotionGroupModelsApi","ControllerApi","ControllerInputsOutputsApi","TrajectoryPlanningApi","TrajectoryExecutionApi","TrajectoryCachingApi","ApplicationApi","JoggingApi","KinematicsApi","BUSInputsOutputsApi","VirtualControllerApi","VirtualControllerBehaviorApi","VirtualControllerInputsOutputsApi","StoreObjectApi","StoreCollisionComponentsApi","StoreCollisionSetupsApi","pathToRegexp","AxiosError","availableStorage","config","loginWithAuth0","AutoReconnectingWebsocket"],"sources":["../../../src/lib/v2/NovaCellAPIClient.ts","../../../src/lib/v2/mock/MockNovaInstance.ts","../../../src/lib/v2/NovaClient.ts","../../../src/lib/v2/wandelscriptUtils.ts"],"sourcesContent":["/** biome-ignore-all lint/suspicious/noExplicitAny: legacy code */\n/** biome-ignore-all lint/style/noNonNullAssertion: legacy code */\nimport type {\n BaseAPI,\n Configuration as BaseConfiguration,\n} from \"@wandelbots/nova-api/v2\"\nimport {\n ApplicationApi,\n BUSInputsOutputsApi,\n CellApi,\n ControllerApi,\n ControllerInputsOutputsApi,\n JoggingApi,\n KinematicsApi,\n MotionGroupApi,\n MotionGroupModelsApi,\n StoreCollisionComponentsApi,\n StoreCollisionSetupsApi,\n StoreObjectApi,\n SystemApi,\n TrajectoryCachingApi,\n TrajectoryExecutionApi,\n TrajectoryPlanningApi,\n VirtualControllerApi,\n VirtualControllerBehaviorApi,\n VirtualControllerInputsOutputsApi,\n} from \"@wandelbots/nova-api/v2\"\nimport type { AxiosInstance } from \"axios\"\nimport axios from \"axios\"\n\ntype OmitFirstArg<F> = F extends (x: any, ...args: infer P) => infer R\n ? (...args: P) => R\n : never\n\ntype UnwrapAxiosResponseReturn<T> = T extends (...a: any) => any\n ? (\n ...a: Parameters<T>\n ) => Promise<Awaited<ReturnType<T>> extends { data: infer D } ? D : never>\n : never\n\nexport type WithCellId<T> = {\n [P in keyof T]: UnwrapAxiosResponseReturn<OmitFirstArg<T[P]>>\n}\n\nexport type WithUnwrappedAxiosResponse<T> = {\n [P in keyof T]: UnwrapAxiosResponseReturn<T[P]>\n}\n\n/**\n * API client providing type-safe access to all the Nova API REST endpoints\n * associated with a specific cell id.\n */\nexport class NovaCellAPIClient {\n constructor(\n readonly cellId: string,\n readonly opts: BaseConfiguration & {\n axiosInstance?: AxiosInstance\n mock?: boolean\n },\n ) {}\n\n /**\n * Some TypeScript sorcery which alters the API class methods so you don't\n * have to pass the cell id to every single one, and de-encapsulates the\n * response data\n */\n private withCellId<T extends BaseAPI>(\n ApiConstructor: new (\n config: BaseConfiguration,\n basePath: string,\n axios: AxiosInstance,\n ) => T,\n ) {\n const apiClient = new ApiConstructor(\n {\n ...this.opts,\n isJsonMime: (mime: string) => {\n return mime === \"application/json\"\n },\n },\n this.opts.basePath ?? \"\",\n this.opts.axiosInstance ?? axios.create(),\n ) as {\n [key: string | symbol]: any\n }\n\n for (const key of Reflect.ownKeys(Reflect.getPrototypeOf(apiClient)!)) {\n if (key !== \"constructor\" && typeof apiClient[key] === \"function\") {\n const originalFunction = apiClient[key]\n apiClient[key] = (...args: any[]) => {\n return originalFunction\n .apply(apiClient, [this.cellId, ...args])\n .then((res: any) => res.data)\n }\n }\n }\n\n return apiClient as WithCellId<T>\n }\n\n /**\n * As withCellId, but only does the response unwrapping\n */\n private withUnwrappedResponsesOnly<T extends BaseAPI>(\n ApiConstructor: new (\n config: BaseConfiguration,\n basePath: string,\n axios: AxiosInstance,\n ) => T,\n ) {\n const apiClient = new ApiConstructor(\n {\n ...this.opts,\n isJsonMime: (mime: string) => {\n return mime === \"application/json\"\n },\n },\n this.opts.basePath ?? \"\",\n this.opts.axiosInstance ?? axios.create(),\n ) as {\n [key: string | symbol]: any\n }\n\n for (const key of Reflect.ownKeys(Reflect.getPrototypeOf(apiClient)!)) {\n if (key !== \"constructor\" && typeof apiClient[key] === \"function\") {\n const originalFunction = apiClient[key]\n apiClient[key] = (...args: any[]) => {\n return originalFunction\n .apply(apiClient, args)\n .then((res: any) => res.data)\n }\n }\n }\n\n return apiClient as WithUnwrappedAxiosResponse<T>\n }\n\n readonly system = this.withUnwrappedResponsesOnly(SystemApi)\n readonly cell = this.withUnwrappedResponsesOnly(CellApi)\n\n readonly motionGroup = this.withCellId(MotionGroupApi)\n readonly motionGroupModels = this.withCellId(MotionGroupModelsApi)\n\n readonly controller = this.withCellId(ControllerApi)\n\n readonly controllerIOs = this.withCellId(ControllerInputsOutputsApi)\n\n readonly trajectoryPlanning = this.withCellId(TrajectoryPlanningApi)\n readonly trajectoryExecution = this.withCellId(TrajectoryExecutionApi)\n readonly trajectoryCaching = this.withCellId(TrajectoryCachingApi)\n\n readonly application = this.withCellId(ApplicationApi)\n readonly applicationGlobal = this.withUnwrappedResponsesOnly(ApplicationApi)\n\n readonly jogging = this.withCellId(JoggingApi)\n\n readonly kinematics = this.withCellId(KinematicsApi)\n\n readonly busInputsOutputs = this.withCellId(BUSInputsOutputsApi)\n\n readonly virtualController = this.withCellId(VirtualControllerApi)\n readonly virtualControllerBehavior = this.withCellId(\n VirtualControllerBehaviorApi,\n )\n readonly virtualControllerIOs = this.withCellId(\n VirtualControllerInputsOutputsApi,\n )\n\n readonly storeObject = this.withCellId(StoreObjectApi)\n readonly storeCollisionComponents = this.withCellId(\n StoreCollisionComponentsApi,\n )\n readonly storeCollisionSetups = this.withCellId(StoreCollisionSetupsApi)\n}\n","/** biome-ignore-all lint/suspicious/noApproximativeNumericConstant: mock data contains approximative pi values from robot description */\nimport type { MotionGroupState, RobotController } from \"@wandelbots/nova-api/v2\"\nimport type { AxiosResponse, InternalAxiosRequestConfig } from \"axios\"\nimport { AxiosError } from \"axios\"\nimport * as pathToRegexp from \"path-to-regexp\"\nimport type { AutoReconnectingWebsocket } from \"../../AutoReconnectingWebsocket\"\n\n/**\n * Ultra-simplified mock Nova server for testing stuff\n */\nexport class MockNovaInstance {\n readonly connections: AutoReconnectingWebsocket[] = []\n\n async handleAPIRequest(\n config: InternalAxiosRequestConfig,\n ): Promise<AxiosResponse> {\n const apiHandlers = [\n {\n method: \"GET\",\n path: \"/cells/:cellId/controllers\",\n handle() {\n return [\"mock-ur5e\"]\n },\n },\n {\n method: \"GET\",\n path: \"/cells/:cellId/controllers/:controllerId\",\n handle() {\n return {\n configuration: {\n initial_joint_position: \"[0,-1.571,-1.571,-1.571,1.571,-1.571,0]\",\n kind: \"VirtualController\",\n manufacturer: \"universalrobots\",\n type: \"universalrobots-ur5e\",\n },\n name: \"mock-ur5\",\n } satisfies RobotController\n },\n },\n {\n method: \"GET\",\n path: \"/cells/:cellId/controllers/:controllerId/state\",\n handle() {\n return {\n mode: \"MODE_CONTROL\",\n last_error: [],\n timestamp: \"2025-10-16T09:19:26.634534092Z\",\n sequence_number: 1054764,\n controller: \"mock-ur5e\",\n operation_mode: \"OPERATION_MODE_AUTO\",\n safety_state: \"SAFETY_STATE_NORMAL\",\n velocity_override: 100,\n motion_groups: [\n {\n timestamp: \"2025-10-16T09:19:26.634534092Z\",\n sequence_number: 1054764,\n motion_group: \"0@mock-ur5e\",\n controller: \"mock-ur5e\",\n joint_position: [\n 1.487959623336792, -1.8501918315887451, 1.8003005981445312,\n 6.034560203552246, 1.4921919107437134, 1.593459963798523,\n ],\n joint_limit_reached: {\n limit_reached: [false, false, false, false, false, false],\n },\n joint_torque: [],\n joint_current: [0, 0, 0, 0, 0, 0],\n flange_pose: {\n position: [\n 107.6452433732927, -409.0402987746852, 524.2402132330305,\n ],\n orientation: [\n 0.9874434028353319, -0.986571714997442, 1.3336589451098142,\n ],\n },\n tcp: \"Flange\",\n tcp_pose: {\n position: [\n 107.6452433732927, -409.0402987746852, 524.2402132330305,\n ],\n orientation: [\n 0.9874434028353319, -0.986571714997442, 1.3336589451098142,\n ],\n },\n payload: \"\",\n coordinate_system: \"\",\n standstill: true,\n },\n ],\n }\n },\n },\n {\n method: \"GET\",\n path: \"/cells/:cellId/controllers/:controllerId/motion-groups/:motionGroupId/description\",\n handle() {\n return {\n motion_group_model: \"UniversalRobots_UR5e\",\n mounting: {\n position: [0, 0, 0],\n orientation: [0, 0, 0],\n },\n tcps: {\n Flange: {\n name: \"Default-Flange\",\n pose: {\n position: [0, 0, 0],\n orientation: [0, 0, 0],\n },\n },\n },\n payloads: {\n \"FPay-0\": {\n name: \"FPay-0\",\n payload: 0,\n center_of_mass: [0, 0, 0],\n moment_of_inertia: [0, 0, 0],\n },\n },\n cycle_time: 8,\n dh_parameters: [\n {\n alpha: 1.5707963267948966,\n d: 162.25,\n },\n {\n a: -425,\n },\n {\n a: -392.2,\n },\n {\n alpha: 1.5707963267948966,\n d: 133.3,\n },\n {\n alpha: -1.5707963267948966,\n d: 99.7,\n },\n {\n d: 99.6,\n },\n ],\n operation_limits: {\n auto_limits: {\n joints: [\n {\n position: {\n lower_limit: -6.283185307179586,\n upper_limit: 6.283185307179586,\n },\n velocity: 3.34159255027771,\n acceleration: 40,\n torque: 150,\n },\n {\n position: {\n lower_limit: -6.283185307179586,\n upper_limit: 6.283185307179586,\n },\n velocity: 3.34159255027771,\n acceleration: 40,\n torque: 150,\n },\n {\n position: {\n lower_limit: -6.283185307179586,\n upper_limit: 6.283185307179586,\n },\n velocity: 3.34159255027771,\n acceleration: 40,\n torque: 150,\n },\n {\n position: {\n lower_limit: -6.283185307179586,\n upper_limit: 6.283185307179586,\n },\n velocity: 3.34159255027771,\n acceleration: 40,\n torque: 28,\n },\n {\n position: {\n lower_limit: -6.283185307179586,\n upper_limit: 6.283185307179586,\n },\n velocity: 3.34159255027771,\n acceleration: 40,\n torque: 28,\n },\n {\n position: {\n lower_limit: -6.283185307179586,\n upper_limit: 6.283185307179586,\n },\n velocity: 3.34159255027771,\n acceleration: 40,\n torque: 28,\n },\n ],\n tcp: {\n velocity: 5000,\n },\n elbow: {\n velocity: 5000,\n },\n flange: {\n velocity: 5000,\n },\n },\n manual_limits: {\n joints: [\n {\n position: {\n lower_limit: -6.283185307179586,\n upper_limit: 6.283185307179586,\n },\n velocity: 3.34159255027771,\n acceleration: 40,\n torque: 150,\n },\n {\n position: {\n lower_limit: -6.283185307179586,\n upper_limit: 6.283185307179586,\n },\n velocity: 3.34159255027771,\n acceleration: 40,\n torque: 150,\n },\n {\n position: {\n lower_limit: -6.283185307179586,\n upper_limit: 6.283185307179586,\n },\n velocity: 3.34159255027771,\n acceleration: 40,\n torque: 150,\n },\n {\n position: {\n lower_limit: -6.283185307179586,\n upper_limit: 6.283185307179586,\n },\n velocity: 3.34159255027771,\n acceleration: 40,\n torque: 28,\n },\n {\n position: {\n lower_limit: -6.283185307179586,\n upper_limit: 6.283185307179586,\n },\n velocity: 3.34159255027771,\n acceleration: 40,\n torque: 28,\n },\n {\n position: {\n lower_limit: -6.283185307179586,\n upper_limit: 6.283185307179586,\n },\n velocity: 3.34159255027771,\n acceleration: 40,\n torque: 28,\n },\n ],\n tcp: {\n velocity: 5000,\n },\n },\n manual_t1_limits: {\n joints: [\n {\n position: {\n lower_limit: -6.283185307179586,\n upper_limit: 6.283185307179586,\n },\n velocity: 3.34159255027771,\n acceleration: 40,\n torque: 150,\n },\n {\n position: {\n lower_limit: -6.283185307179586,\n upper_limit: 6.283185307179586,\n },\n velocity: 3.34159255027771,\n acceleration: 40,\n torque: 150,\n },\n {\n position: {\n lower_limit: -6.283185307179586,\n upper_limit: 6.283185307179586,\n },\n velocity: 3.34159255027771,\n acceleration: 40,\n torque: 150,\n },\n {\n position: {\n lower_limit: -6.283185307179586,\n upper_limit: 6.283185307179586,\n },\n velocity: 3.34159255027771,\n acceleration: 40,\n torque: 28,\n },\n {\n position: {\n lower_limit: -6.283185307179586,\n upper_limit: 6.283185307179586,\n },\n velocity: 3.34159255027771,\n acceleration: 40,\n torque: 28,\n },\n {\n position: {\n lower_limit: -6.283185307179586,\n upper_limit: 6.283185307179586,\n },\n velocity: 3.34159255027771,\n acceleration: 40,\n torque: 28,\n },\n ],\n tcp: {\n velocity: 5000,\n },\n },\n manual_t2_limits: {\n joints: [\n {\n position: {\n lower_limit: -6.283185307179586,\n upper_limit: 6.283185307179586,\n },\n velocity: 3.34159255027771,\n acceleration: 40,\n torque: 150,\n },\n {\n position: {\n lower_limit: -6.283185307179586,\n upper_limit: 6.283185307179586,\n },\n velocity: 3.34159255027771,\n acceleration: 40,\n torque: 150,\n },\n {\n position: {\n lower_limit: -6.283185307179586,\n upper_limit: 6.283185307179586,\n },\n velocity: 3.34159255027771,\n acceleration: 40,\n torque: 150,\n },\n {\n position: {\n lower_limit: -6.283185307179586,\n upper_limit: 6.283185307179586,\n },\n velocity: 3.34159255027771,\n acceleration: 40,\n torque: 28,\n },\n {\n position: {\n lower_limit: -6.283185307179586,\n upper_limit: 6.283185307179586,\n },\n velocity: 3.34159255027771,\n acceleration: 40,\n torque: 28,\n },\n {\n position: {\n lower_limit: -6.283185307179586,\n upper_limit: 6.283185307179586,\n },\n velocity: 3.34159255027771,\n acceleration: 40,\n torque: 28,\n },\n ],\n tcp: {\n velocity: 5000,\n },\n },\n },\n serial_number: \"WBVirtualRobot\",\n }\n },\n },\n {\n method: \"GET\",\n path: \"/cells/:cellId/controllers/:controllerId/coordinate-systems\",\n handle() {\n return [\n {\n coordinate_system: \"\",\n name: \"world\",\n reference_coordinate_system: \"\",\n position: [0, 0, 0],\n orientation: [0, 0, 0],\n orientation_type: \"ROTATION_VECTOR\",\n },\n {\n coordinate_system: \"CS-0\",\n name: \"Default-CS\",\n reference_coordinate_system: \"\",\n position: [0, 0, 0],\n orientation: [0, 0, 0],\n orientation_type: \"ROTATION_VECTOR\",\n },\n ] //satisfies CoordinateSystems\n },\n },\n ]\n\n const method = config.method?.toUpperCase() || \"GET\"\n const path = `/cells${config.url?.split(\"/cells\")[1]?.split(\"?\")[0]}`\n\n for (const handler of apiHandlers) {\n const match = pathToRegexp.match(handler.path)(path || \"\")\n if (method === handler.method && match) {\n const json = handler.handle()\n return {\n status: 200,\n statusText: \"Success\",\n data: JSON.stringify(json),\n headers: {},\n config,\n request: {\n responseURL: config.url,\n },\n }\n }\n }\n\n throw new AxiosError(\n `No mock handler matched this request: ${method} ${path}`,\n \"404\",\n config,\n )\n\n // return {\n // status: 404,\n // statusText: \"Not Found\",\n // data: \"\",\n // headers: {},\n // config,\n // request: {\n // responseURL: config.url,\n // },\n // }\n }\n\n // Please note: Only very basic websocket mocking is done here, needs to be extended as needed\n handleWebsocketConnection(socket: AutoReconnectingWebsocket) {\n this.connections.push(socket)\n\n setTimeout(() => {\n socket.dispatchEvent(new Event(\"open\"))\n\n console.log(\"Websocket connection opened from\", socket.url)\n\n if (socket.url.includes(\"/state-stream\")) {\n socket.dispatchEvent(\n new MessageEvent(\"message\", {\n data: JSON.stringify(defaultMotionState),\n }),\n )\n }\n\n if (socket.url.includes(\"/execution/jogging\")) {\n socket.dispatchEvent(\n new MessageEvent(\"message\", {\n data: JSON.stringify({\n result: {\n message: \"string\",\n kind: \"INITIALIZE_RECEIVED\",\n },\n }),\n }),\n )\n }\n }, 10)\n }\n\n handleWebsocketMessage(socket: AutoReconnectingWebsocket, message: string) {\n console.log(`Received message on ${socket.url}`, message)\n }\n}\n\nconst defaultMotionState = {\n result: {\n motion_group: \"0@universalrobots-ur5e\",\n controller: \"universalrobots-ur5e\",\n timestamp: new Date().toISOString(),\n sequence_number: 1,\n joint_position: [\n 1.1699999570846558, -1.5700000524520874, 1.3600000143051147,\n 1.0299999713897705, 1.2899999618530273, 1.2799999713897705,\n ],\n joint_limit_reached: {\n limit_reached: [false, false, false, false, false, false],\n },\n standstill: false,\n flange_pose: {\n position: [1.3300010259703043, -409.2680714682808, 531.0203477065281],\n orientation: [\n 1.7564919306270736, -1.7542521568325058, 0.7326972590614671,\n ],\n },\n tcp_pose: {\n position: [1.3300010259703043, -409.2680714682808, 531.0203477065281],\n orientation: [\n 1.7564919306270736, -1.7542521568325058, 0.7326972590614671,\n ],\n },\n } satisfies MotionGroupState,\n}\n","/** biome-ignore-all lint/style/noNonNullAssertion: legacy code */\nimport type { Configuration as BaseConfiguration } from \"@wandelbots/nova-api/v2\"\nimport type { AxiosRequestConfig } from \"axios\"\nimport axios, { isAxiosError } from \"axios\"\nimport urlJoin from \"url-join\"\nimport { loginWithAuth0 } from \"../../LoginWithAuth0\"\nimport { AutoReconnectingWebsocket } from \"../AutoReconnectingWebsocket\"\nimport { availableStorage } from \"../availableStorage\"\nimport { MockNovaInstance } from \"./mock/MockNovaInstance\"\nimport { NovaCellAPIClient } from \"./NovaCellAPIClient\"\n\nexport type NovaClientConfig = {\n /**\n * Url of the deployed Nova instance to connect to\n * e.g. https://saeattii.instance.wandelbots.io\n */\n instanceUrl: string | \"https://mock.example.com\"\n\n /**\n * Identifier of the cell on the Nova instance to connect this client to.\n * If omitted, the default identifier \"cell\" is used.\n **/\n cellId?: string\n\n /**\n * Username for basic auth to the Nova instance.\n * @deprecated use accessToken instead\n */\n username?: string\n\n /**\n * Password for basic auth to the Nova instance.\n * @deprecated use accessToken instead\n */\n password?: string\n\n /**\n * Access token for Bearer authentication.\n */\n accessToken?: string\n} & Omit<BaseConfiguration, \"isJsonMime\" | \"basePath\">\n\ntype NovaClientConfigWithDefaults = NovaClientConfig & { cellId: string }\n\nfunction permissiveInstanceUrlParse(url: string): string {\n if (!url.startsWith(\"http\")) {\n url = `http://${url}`\n }\n\n return new URL(url).toString()\n}\n\n/**\n *\n * Client for connecting to a Nova instance and controlling robots.\n */\nexport class NovaClient {\n readonly api: NovaCellAPIClient\n readonly config: NovaClientConfigWithDefaults\n readonly mock?: MockNovaInstance\n authPromise: Promise<string | null> | null = null\n accessToken: string | null = null\n\n constructor(config: NovaClientConfig) {\n const cellId = config.cellId ?? \"cell\"\n this.config = {\n cellId,\n ...config,\n }\n this.accessToken =\n config.accessToken ||\n availableStorage.getString(\"wbjs.access_token\") ||\n null\n\n if (this.config.instanceUrl === \"https://mock.example.com\") {\n this.mock = new MockNovaInstance()\n } else {\n this.config.instanceUrl = permissiveInstanceUrlParse(\n this.config.instanceUrl,\n )\n }\n\n // Set up Axios instance with interceptor for token fetching\n const axiosInstance = axios.create({\n baseURL: urlJoin(this.config.instanceUrl, \"/api/v2\"),\n // TODO - backend needs to set proper CORS headers for this\n headers:\n typeof window !== \"undefined\" &&\n window.location.origin.includes(\"localhost\")\n ? {}\n : {\n // Identify the client to the backend for logging purposes\n \"X-Wandelbots-Client\": \"Wandelbots-Nova-JS-SDK\",\n },\n })\n\n axiosInstance.interceptors.request.use(async (request) => {\n if (!request.headers.Authorization) {\n if (this.accessToken) {\n request.headers.Authorization = `Bearer ${this.accessToken}`\n } else if (this.config.username && this.config.password) {\n request.headers.Authorization = `Basic ${btoa(`${config.username}:${config.password}`)}`\n }\n }\n return request\n })\n\n if (typeof window !== \"undefined\") {\n axiosInstance.interceptors.response.use(\n (r) => r,\n async (error) => {\n if (isAxiosError(error)) {\n if (error.response?.status === 401) {\n // If we hit a 401, attempt to login the user and retry with\n // a new access token\n try {\n await this.renewAuthentication()\n\n if (error.config) {\n if (this.accessToken) {\n error.config.headers.Authorization = `Bearer ${this.accessToken}`\n } else {\n delete error.config.headers.Authorization\n }\n return axiosInstance.request(error.config)\n }\n } catch (err) {\n return Promise.reject(err)\n }\n } else if (error.response?.status === 503) {\n // Check if the server as a whole is down\n const res = await fetch(window.location.href)\n if (res.status === 503) {\n // Go to 503 page\n window.location.reload()\n }\n }\n }\n\n return Promise.reject(error)\n },\n )\n }\n\n this.api = new NovaCellAPIClient(cellId, {\n ...config,\n basePath: urlJoin(this.config.instanceUrl, \"/api/v2\"),\n isJsonMime: (mime: string) => {\n return mime === \"application/json\"\n },\n baseOptions: {\n ...(this.mock\n ? ({\n adapter: (config) => {\n return this.mock!.handleAPIRequest(config)\n },\n } satisfies AxiosRequestConfig)\n : {}),\n ...config.baseOptions,\n },\n axiosInstance,\n })\n }\n\n async renewAuthentication(): Promise<void> {\n if (this.authPromise) {\n // Don't double up\n return\n }\n\n this.authPromise = loginWithAuth0(this.config.instanceUrl)\n try {\n this.accessToken = await this.authPromise\n if (this.accessToken) {\n // Cache access token so we don't need to log in every refresh\n availableStorage.setString(\"wbjs.access_token\", this.accessToken)\n } else {\n availableStorage.delete(\"wbjs.access_token\")\n }\n } finally {\n this.authPromise = null\n }\n }\n\n makeWebsocketURL(path: string): string {\n const url = new URL(\n urlJoin(\n this.config.instanceUrl,\n `/api/v2/cells/${this.config.cellId}`,\n path,\n ),\n )\n url.protocol = url.protocol.replace(\"http\", \"ws\")\n url.protocol = url.protocol.replace(\"https\", \"wss\")\n\n // If provided, add basic auth credentials to the URL\n // NOTE - basic auth is deprecated on websockets and doesn't work in Safari\n // use tokens instead\n if (this.accessToken) {\n url.searchParams.append(\"token\", this.accessToken)\n } else if (this.config.username && this.config.password) {\n url.username = this.config.username\n url.password = this.config.password\n }\n\n return url.toString()\n }\n\n /**\n * Retrieve an AutoReconnectingWebsocket to the given path on the Nova instance.\n * If you explicitly want to reconnect an existing websocket, call `reconnect`\n * on the returned object.\n */\n openReconnectingWebsocket(path: string) {\n return new AutoReconnectingWebsocket(this.makeWebsocketURL(path), {\n mock: this.mock,\n })\n }\n}\n","import type { Pose } from \"@wandelbots/nova-api/v2\"\n\n/**\n * Convert a Pose object representing a motion group position\n * into a string which represents that pose in Wandelscript.\n */\nexport function poseToWandelscriptString(\n pose: Pick<Pose, \"position\" | \"orientation\">,\n) {\n const position = [\n pose.position?.[0] ?? 0,\n pose.position?.[1] ?? 0,\n pose.position?.[2] ?? 0,\n ]\n\n const orientation = [\n pose.orientation?.[0] ?? 0,\n pose.orientation?.[1] ?? 0,\n pose.orientation?.[2] ?? 0,\n ]\n\n const positionValues = position.map((v) => v.toFixed(1))\n // Rotation needs more precision since it's in radians\n const rotationValues = orientation.map((v) => v.toFixed(4))\n\n return `(${positionValues.concat(rotationValues).join(\", \")})`\n}\n"],"mappings":"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OACN,MAAM;QACJ,UAAU;SAAC;SAAG;SAAG;SAAE;QACnB,aAAa;SAAC;SAAG;SAAG;SAAE;QACvB;OACF,EACF;MACD,UAAU,EACR,UAAU;OACR,MAAM;OACN,SAAS;OACT,gBAAgB;QAAC;QAAG;QAAG;QAAE;OACzB,mBAAmB;QAAC;QAAG;QAAG;QAAE;OAC7B,EACF;MACD,YAAY;MACZ,eAAe;OACb;QACE,OAAO;QACP,GAAG;QACJ;OACD,EACE,GAAG,MACJ;OACD,EACE,GAAG,QACJ;OACD;QACE,OAAO;QACP,GAAG;QACJ;OACD;QACE,OAAO;QACP,GAAG;QACJ;OACD,EACE,GAAG,MACJ;OACF;MACD,kBAAkB;OAChB,aAAa;QACX,QAAQ;SACN;UACE,UAAU;WACR,aAAa;WACb,aAAa;WACd;UACD,UAAU;UACV,cAAc;UACd,QAAQ;UACT;SACD;UACE,UAAU;WACR,aAAa;WACb,aAAa;WACd;UACD,UAAU;UACV,cAAc;UACd,QAAQ;UACT;SACD;UACE,UAAU;WACR,aAAa;WACb,aAAa;WACd;UACD,UAAU;UACV,cAAc;UACd,QAAQ;UACT;SACD;UACE,UAAU;WACR,aAAa;WACb,aAAa;WACd;UACD,UAAU;UACV,cAAc;UACd,QAAQ;UACT;SACD;UACE,UAAU;WACR,aAAa;WACb,aAAa;WACd;UACD,UAAU;UACV,cAAc;UACd,QAAQ;UACT;SACD;UACE,UAAU;WACR,aAAa;WACb,aAAa;WACd;UACD,UAAU;UACV,cAAc;UACd,QAAQ;UACT;SACF;QACD,KAAK,EACH,UAAU,KACX;QACD,OAAO,EACL,UAAU,KACX;QACD,QAAQ,EACN,UAAU,KACX;QACF;OACD,eAAe;QACb,QAAQ;SACN;UACE,UAAU;WACR,aAAa;WACb,aAAa;WACd;UACD,UAAU;UACV,cAAc;UACd,QAAQ;UACT;SACD;UACE,UAAU;WACR,aAAa;WACb,aAAa;WACd;UACD,UAAU;UACV,cAAc;UACd,QAAQ;UACT;SACD;UACE,UAAU;WACR,aAAa;WACb,aAAa;WACd;UACD,UAAU;UACV,cAAc;UACd,QAAQ;UACT;SACD;UACE,UAAU;WACR,aAAa;WACb,aAAa;WACd;UACD,UAAU;UACV,cAAc;UACd,QAAQ;UACT;SACD;UACE,UAAU;WACR,aAAa;WACb,aAAa;WACd;UACD,UAAU;UACV,cAAc;UACd,QAAQ;UACT;SACD;UACE,UAAU;WACR,aAAa;WACb,aAAa;WACd;UACD,UAAU;UACV,cAAc;UACd,QAAQ;UACT;SACF;QACD,KAAK,EACH,UAAU,KACX;QACF;OACD,kBAAkB;QAChB,QAAQ;SACN;UACE,UAAU;WACR,aAAa;WACb,aAAa;WACd;UACD,UAAU;UACV,cAAc;UACd,QAAQ;UACT;SACD;UACE,UAAU;WACR,aAAa;WACb,aAAa;WACd;UACD,UAAU;UACV,cAAc;UACd,QAAQ;UACT;SACD;UACE,UAAU;WACR,aAAa;WACb,aAAa;WACd;UACD,UAAU;UACV,cAAc;UACd,QAAQ;UACT;SACD;UACE,UAAU;WACR,aAAa;WACb,aAAa;WACd;UACD,UAAU;UACV,cAAc;UACd,QAAQ;UACT;SACD;UACE,UAAU;WACR,aAAa;WACb,aAAa;WACd;UACD,UAAU;UACV,cAAc;UACd,QAAQ;UACT;SACD;UACE,UAAU;WACR,aAAa;WACb,aAAa;WACd;UACD,UAAU;UACV,cAAc;UACd,QAAQ;UACT;SACF;QACD,KAAK,EACH,UAAU,KACX;QACF;OACD,kBAAkB;QAChB,QAAQ;SACN;UACE,UAAU;WACR,aAAa;WACb,aAAa;WACd;UACD,UAAU;UACV,cAAc;UACd,QAAQ;UACT;SACD;UACE,UAAU;WACR,aAAa;WACb,aAAa;WACd;UACD,UAAU;UACV,cAAc;UACd,QAAQ;UACT;SACD;UACE,UAAU;WACR,aAAa;WACb,aAAa;WACd;UACD,UAAU;UACV,cAAc;UACd,QAAQ;UACT;SACD;UACE,UAAU;WACR,aAAa;WACb,aAAa;WACd;UACD,UAAU;UACV,cAAc;UACd,QAAQ;UACT;SACD;UACE,UAAU;WACR,aAAa;WACb,aAAa;WACd;UACD,UAAU;UACV,cAAc;UACd,QAAQ;UACT;SACD;UACE,UAAU;WACR,aAAa;WACb,aAAa;WACd;UAC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"}
@@ -1,85 +1,8 @@
1
1
  import { n as MockNovaInstance, t as AutoReconnectingWebsocket } from "../../AutoReconnectingWebsocket-Qcrbm3Kb.cjs";
2
2
  import { AxiosInstance } from "axios";
3
- import { ApplicationApi, BUSInputsOutputsApi, CellApi, Configuration, ControllerApi, ControllerInputsOutputsApi, JoggingApi, KinematicsApi, MotionGroupApi, MotionGroupModelsApi, Pose, Program, ProgramApi, ProgramRun, ProgramRunState, ProgramStartRequest, StoreCollisionComponentsApi, StoreCollisionSetupsApi, StoreObjectApi, SystemApi, TrajectoryCachingApi, TrajectoryExecutionApi, TrajectoryPlanningApi, VirtualControllerApi, VirtualControllerBehaviorApi, VirtualControllerInputsOutputsApi } from "@wandelbots/nova-api/v2";
3
+ import { ApplicationApi, BUSInputsOutputsApi, CellApi, Configuration, ControllerApi, ControllerInputsOutputsApi, JoggingApi, KinematicsApi, MotionGroupApi, MotionGroupModelsApi, Pose, StoreCollisionComponentsApi, StoreCollisionSetupsApi, StoreObjectApi, SystemApi, TrajectoryCachingApi, TrajectoryExecutionApi, TrajectoryPlanningApi, VirtualControllerApi, VirtualControllerBehaviorApi, VirtualControllerInputsOutputsApi } from "@wandelbots/nova-api/v2";
4
4
  export * from "@wandelbots/nova-api/v2";
5
5
 
6
- //#region src/lib/v2/ProgramsClient.d.ts
7
- /**
8
- * Enhanced client for the Programs API providing intuitive program management
9
- */
10
- declare class ProgramsClient {
11
- private client;
12
- constructor(client: NovaCellAPIClient);
13
- /**
14
- * Get the underlying programs API for direct access
15
- */
16
- get api(): WithCellId<ProgramApi>;
17
- /**
18
- * List all programs available in the cell
19
- */
20
- list(): Promise<Program[]>;
21
- /**
22
- * Get details of a specific program
23
- */
24
- get(programId: string): Promise<Program>;
25
- /**
26
- * Start a program with the given arguments
27
- */
28
- start(programId: string, args?: object): Promise<ProgramRun>;
29
- /**
30
- * Stop a running program
31
- */
32
- stop(programId: string): Promise<void>;
33
- /**
34
- * Execute a program and wait for it to complete
35
- *
36
- * Note: This method has limitations due to current API constraints.
37
- * Real-time program state tracking will be available via NATS messaging
38
- * in future versions. For now, this provides basic start functionality.
39
- *
40
- * @param programId - The program identifier
41
- * @param args - Arguments to pass to the program
42
- * @param options - Basic execution options
43
- */
44
- execute(programId: string, args?: object, options?: {
45
- onStart?: (run: ProgramRun) => void;
46
- }): Promise<ProgramRun>;
47
- /**
48
- * Create a program runner helper for a specific program
49
- */
50
- forProgram(programId: string): ProgramRunner;
51
- }
52
- /**
53
- * Helper class for managing a specific program
54
- */
55
- declare class ProgramRunner {
56
- private programs;
57
- private programId;
58
- constructor(programs: ProgramsClient, programId: string);
59
- /**
60
- * Get program details
61
- */
62
- getDetails(): Promise<Program>;
63
- /**
64
- * Start this program
65
- */
66
- start(args?: object): Promise<ProgramRun>;
67
- /**
68
- * Stop this program
69
- */
70
- stop(): Promise<void>;
71
- /**
72
- * Execute this program (start and get initial run information)
73
- *
74
- * Note: This method has limitations due to current API constraints.
75
- * Real-time program state tracking will be available via NATS messaging
76
- * in future versions.
77
- */
78
- execute(args?: object, options?: {
79
- onStart?: (run: ProgramRun) => void;
80
- }): Promise<ProgramRun>;
81
- }
82
- //#endregion
83
6
  //#region src/lib/v2/NovaCellAPIClient.d.ts
84
7
  type OmitFirstArg<F> = F extends ((x: any, ...args: infer P) => infer R) ? (...args: P) => R : never;
85
8
  type UnwrapAxiosResponseReturn<T> = T extends ((...a: any) => any) ? (...a: Parameters<T>) => Promise<Awaited<ReturnType<T>> extends {
@@ -120,7 +43,6 @@ declare class NovaCellAPIClient {
120
43
  readonly trajectoryPlanning: WithCellId<TrajectoryPlanningApi>;
121
44
  readonly trajectoryExecution: WithCellId<TrajectoryExecutionApi>;
122
45
  readonly trajectoryCaching: WithCellId<TrajectoryCachingApi>;
123
- readonly programs: WithCellId<ProgramApi>;
124
46
  readonly application: WithCellId<ApplicationApi>;
125
47
  readonly applicationGlobal: WithUnwrappedAxiosResponse<ApplicationApi>;
126
48
  readonly jogging: WithCellId<JoggingApi>;
@@ -132,8 +54,6 @@ declare class NovaCellAPIClient {
132
54
  readonly storeObject: WithCellId<StoreObjectApi>;
133
55
  readonly storeCollisionComponents: WithCellId<StoreCollisionComponentsApi>;
134
56
  readonly storeCollisionSetups: WithCellId<StoreCollisionSetupsApi>;
135
- private _programsClient?;
136
- get programsClient(): ProgramsClient;
137
57
  }
138
58
  //#endregion
139
59
  //#region src/lib/v2/NovaClient.d.ts
@@ -194,5 +114,5 @@ declare class NovaClient {
194
114
  */
195
115
  declare function poseToWandelscriptString(pose: Pick<Pose, "position" | "orientation">): string;
196
116
  //#endregion
197
- export { NovaCellAPIClient, NovaClient, NovaClientConfig, type Program, type ProgramRun, type ProgramRunState, ProgramRunner, type ProgramStartRequest, ProgramsClient, WithCellId, WithUnwrappedAxiosResponse, poseToWandelscriptString };
117
+ export { NovaCellAPIClient, NovaClient, NovaClientConfig, WithCellId, WithUnwrappedAxiosResponse, poseToWandelscriptString };
198
118
  //# sourceMappingURL=index.d.cts.map
@@ -1 +1 @@
1
- {"version":3,"file":"index.d.cts","names":[],"sources":["../../../src/lib/v2/ProgramsClient.ts","../../../src/lib/v2/NovaCellAPIClient.ts","../../../src/lib/v2/NovaClient.ts","../../../src/lib/v2/wandelscriptUtils.ts"],"sourcesContent":[],"mappings":"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"}
1
+ {"version":3,"file":"index.d.cts","names":[],"sources":["../../../src/lib/v2/NovaCellAPIClient.ts","../../../src/lib/v2/NovaClient.ts","../../../src/lib/v2/wandelscriptUtils.ts"],"sourcesContent":[],"mappings":"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"}
@@ -1,85 +1,8 @@
1
1
  import { n as MockNovaInstance, t as AutoReconnectingWebsocket } from "../../AutoReconnectingWebsocket-dHe-kceU.mjs";
2
2
  import { AxiosInstance } from "axios";
3
- import { ApplicationApi, BUSInputsOutputsApi, CellApi, Configuration, ControllerApi, ControllerInputsOutputsApi, JoggingApi, KinematicsApi, MotionGroupApi, MotionGroupModelsApi, Pose, Program, ProgramApi, ProgramRun, ProgramRunState, ProgramStartRequest, StoreCollisionComponentsApi, StoreCollisionSetupsApi, StoreObjectApi, SystemApi, TrajectoryCachingApi, TrajectoryExecutionApi, TrajectoryPlanningApi, VirtualControllerApi, VirtualControllerBehaviorApi, VirtualControllerInputsOutputsApi } from "@wandelbots/nova-api/v2";
3
+ import { ApplicationApi, BUSInputsOutputsApi, CellApi, Configuration, ControllerApi, ControllerInputsOutputsApi, JoggingApi, KinematicsApi, MotionGroupApi, MotionGroupModelsApi, Pose, StoreCollisionComponentsApi, StoreCollisionSetupsApi, StoreObjectApi, SystemApi, TrajectoryCachingApi, TrajectoryExecutionApi, TrajectoryPlanningApi, VirtualControllerApi, VirtualControllerBehaviorApi, VirtualControllerInputsOutputsApi } from "@wandelbots/nova-api/v2";
4
4
  export * from "@wandelbots/nova-api/v2";
5
5
 
6
- //#region src/lib/v2/ProgramsClient.d.ts
7
- /**
8
- * Enhanced client for the Programs API providing intuitive program management
9
- */
10
- declare class ProgramsClient {
11
- private client;
12
- constructor(client: NovaCellAPIClient);
13
- /**
14
- * Get the underlying programs API for direct access
15
- */
16
- get api(): WithCellId<ProgramApi>;
17
- /**
18
- * List all programs available in the cell
19
- */
20
- list(): Promise<Program[]>;
21
- /**
22
- * Get details of a specific program
23
- */
24
- get(programId: string): Promise<Program>;
25
- /**
26
- * Start a program with the given arguments
27
- */
28
- start(programId: string, args?: object): Promise<ProgramRun>;
29
- /**
30
- * Stop a running program
31
- */
32
- stop(programId: string): Promise<void>;
33
- /**
34
- * Execute a program and wait for it to complete
35
- *
36
- * Note: This method has limitations due to current API constraints.
37
- * Real-time program state tracking will be available via NATS messaging
38
- * in future versions. For now, this provides basic start functionality.
39
- *
40
- * @param programId - The program identifier
41
- * @param args - Arguments to pass to the program
42
- * @param options - Basic execution options
43
- */
44
- execute(programId: string, args?: object, options?: {
45
- onStart?: (run: ProgramRun) => void;
46
- }): Promise<ProgramRun>;
47
- /**
48
- * Create a program runner helper for a specific program
49
- */
50
- forProgram(programId: string): ProgramRunner;
51
- }
52
- /**
53
- * Helper class for managing a specific program
54
- */
55
- declare class ProgramRunner {
56
- private programs;
57
- private programId;
58
- constructor(programs: ProgramsClient, programId: string);
59
- /**
60
- * Get program details
61
- */
62
- getDetails(): Promise<Program>;
63
- /**
64
- * Start this program
65
- */
66
- start(args?: object): Promise<ProgramRun>;
67
- /**
68
- * Stop this program
69
- */
70
- stop(): Promise<void>;
71
- /**
72
- * Execute this program (start and get initial run information)
73
- *
74
- * Note: This method has limitations due to current API constraints.
75
- * Real-time program state tracking will be available via NATS messaging
76
- * in future versions.
77
- */
78
- execute(args?: object, options?: {
79
- onStart?: (run: ProgramRun) => void;
80
- }): Promise<ProgramRun>;
81
- }
82
- //#endregion
83
6
  //#region src/lib/v2/NovaCellAPIClient.d.ts
84
7
  type OmitFirstArg<F> = F extends ((x: any, ...args: infer P) => infer R) ? (...args: P) => R : never;
85
8
  type UnwrapAxiosResponseReturn<T> = T extends ((...a: any) => any) ? (...a: Parameters<T>) => Promise<Awaited<ReturnType<T>> extends {
@@ -120,7 +43,6 @@ declare class NovaCellAPIClient {
120
43
  readonly trajectoryPlanning: WithCellId<TrajectoryPlanningApi>;
121
44
  readonly trajectoryExecution: WithCellId<TrajectoryExecutionApi>;
122
45
  readonly trajectoryCaching: WithCellId<TrajectoryCachingApi>;
123
- readonly programs: WithCellId<ProgramApi>;
124
46
  readonly application: WithCellId<ApplicationApi>;
125
47
  readonly applicationGlobal: WithUnwrappedAxiosResponse<ApplicationApi>;
126
48
  readonly jogging: WithCellId<JoggingApi>;
@@ -132,8 +54,6 @@ declare class NovaCellAPIClient {
132
54
  readonly storeObject: WithCellId<StoreObjectApi>;
133
55
  readonly storeCollisionComponents: WithCellId<StoreCollisionComponentsApi>;
134
56
  readonly storeCollisionSetups: WithCellId<StoreCollisionSetupsApi>;
135
- private _programsClient?;
136
- get programsClient(): ProgramsClient;
137
57
  }
138
58
  //#endregion
139
59
  //#region src/lib/v2/NovaClient.d.ts
@@ -194,5 +114,5 @@ declare class NovaClient {
194
114
  */
195
115
  declare function poseToWandelscriptString(pose: Pick<Pose, "position" | "orientation">): string;
196
116
  //#endregion
197
- export { NovaCellAPIClient, NovaClient, NovaClientConfig, type Program, type ProgramRun, type ProgramRunState, ProgramRunner, type ProgramStartRequest, ProgramsClient, WithCellId, WithUnwrappedAxiosResponse, poseToWandelscriptString };
117
+ export { NovaCellAPIClient, NovaClient, NovaClientConfig, WithCellId, WithUnwrappedAxiosResponse, poseToWandelscriptString };
198
118
  //# sourceMappingURL=index.d.mts.map
@@ -1 +1 @@
1
- {"version":3,"file":"index.d.mts","names":[],"sources":["../../../src/lib/v2/ProgramsClient.ts","../../../src/lib/v2/NovaCellAPIClient.ts","../../../src/lib/v2/NovaClient.ts","../../../src/lib/v2/wandelscriptUtils.ts"],"sourcesContent":[],"mappings":"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"}
1
+ {"version":3,"file":"index.d.mts","names":[],"sources":["../../../src/lib/v2/NovaCellAPIClient.ts","../../../src/lib/v2/NovaClient.ts","../../../src/lib/v2/wandelscriptUtils.ts"],"sourcesContent":[],"mappings":"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"}
@@ -2,112 +2,10 @@ import { n as availableStorage, r as AutoReconnectingWebsocket, t as loginWithAu
2
2
  import axios, { AxiosError, isAxiosError } from "axios";
3
3
  import urlJoin from "url-join";
4
4
  import * as pathToRegexp from "path-to-regexp";
5
- import { ApplicationApi, BUSInputsOutputsApi, CellApi, ControllerApi, ControllerInputsOutputsApi, JoggingApi, KinematicsApi, MotionGroupApi, MotionGroupModelsApi, ProgramApi, StoreCollisionComponentsApi, StoreCollisionSetupsApi, StoreObjectApi, SystemApi, TrajectoryCachingApi, TrajectoryExecutionApi, TrajectoryPlanningApi, VirtualControllerApi, VirtualControllerBehaviorApi, VirtualControllerInputsOutputsApi } from "@wandelbots/nova-api/v2";
5
+ import { ApplicationApi, BUSInputsOutputsApi, CellApi, ControllerApi, ControllerInputsOutputsApi, JoggingApi, KinematicsApi, MotionGroupApi, MotionGroupModelsApi, StoreCollisionComponentsApi, StoreCollisionSetupsApi, StoreObjectApi, SystemApi, TrajectoryCachingApi, TrajectoryExecutionApi, TrajectoryPlanningApi, VirtualControllerApi, VirtualControllerBehaviorApi, VirtualControllerInputsOutputsApi } from "@wandelbots/nova-api/v2";
6
6
 
7
7
  export * from "@wandelbots/nova-api/v2"
8
8
 
9
- //#region src/lib/v2/ProgramsClient.ts
10
- /**
11
- * Enhanced client for the Programs API providing intuitive program management
12
- */
13
- var ProgramsClient = class {
14
- constructor(client) {
15
- this.client = client;
16
- }
17
- /**
18
- * Get the underlying programs API for direct access
19
- */
20
- get api() {
21
- return this.client.programs;
22
- }
23
- /**
24
- * List all programs available in the cell
25
- */
26
- async list() {
27
- return await this.api.listPrograms();
28
- }
29
- /**
30
- * Get details of a specific program
31
- */
32
- async get(programId) {
33
- return await this.api.getProgram(programId);
34
- }
35
- /**
36
- * Start a program with the given arguments
37
- */
38
- async start(programId, args = {}) {
39
- const startRequest = { arguments: args };
40
- return await this.api.startProgram(programId, startRequest);
41
- }
42
- /**
43
- * Stop a running program
44
- */
45
- async stop(programId) {
46
- return await this.api.stopProgram(programId);
47
- }
48
- /**
49
- * Execute a program and wait for it to complete
50
- *
51
- * Note: This method has limitations due to current API constraints.
52
- * Real-time program state tracking will be available via NATS messaging
53
- * in future versions. For now, this provides basic start functionality.
54
- *
55
- * @param programId - The program identifier
56
- * @param args - Arguments to pass to the program
57
- * @param options - Basic execution options
58
- */
59
- async execute(programId, args = {}, options = {}) {
60
- const { onStart } = options;
61
- const run = await this.start(programId, args);
62
- if (onStart) onStart(run);
63
- return run;
64
- }
65
- /**
66
- * Create a program runner helper for a specific program
67
- */
68
- forProgram(programId) {
69
- return new ProgramRunner(this, programId);
70
- }
71
- };
72
- /**
73
- * Helper class for managing a specific program
74
- */
75
- var ProgramRunner = class {
76
- constructor(programs, programId) {
77
- this.programs = programs;
78
- this.programId = programId;
79
- }
80
- /**
81
- * Get program details
82
- */
83
- async getDetails() {
84
- return await this.programs.get(this.programId);
85
- }
86
- /**
87
- * Start this program
88
- */
89
- async start(args = {}) {
90
- return await this.programs.start(this.programId, args);
91
- }
92
- /**
93
- * Stop this program
94
- */
95
- async stop() {
96
- return await this.programs.stop(this.programId);
97
- }
98
- /**
99
- * Execute this program (start and get initial run information)
100
- *
101
- * Note: This method has limitations due to current API constraints.
102
- * Real-time program state tracking will be available via NATS messaging
103
- * in future versions.
104
- */
105
- async execute(args = {}, options = {}) {
106
- return await this.programs.execute(this.programId, args, options);
107
- }
108
- };
109
-
110
- //#endregion
111
9
  //#region src/lib/v2/NovaCellAPIClient.ts
112
10
  /**
113
11
  * API client providing type-safe access to all the Nova API REST endpoints
@@ -126,7 +24,6 @@ var NovaCellAPIClient = class {
126
24
  this.trajectoryPlanning = this.withCellId(TrajectoryPlanningApi);
127
25
  this.trajectoryExecution = this.withCellId(TrajectoryExecutionApi);
128
26
  this.trajectoryCaching = this.withCellId(TrajectoryCachingApi);
129
- this.programs = this.withCellId(ProgramApi);
130
27
  this.application = this.withCellId(ApplicationApi);
131
28
  this.applicationGlobal = this.withUnwrappedResponsesOnly(ApplicationApi);
132
29
  this.jogging = this.withCellId(JoggingApi);
@@ -177,10 +74,6 @@ var NovaCellAPIClient = class {
177
74
  }
178
75
  return apiClient;
179
76
  }
180
- get programsClient() {
181
- if (!this._programsClient) this._programsClient = new ProgramsClient(this);
182
- return this._programsClient;
183
- }
184
77
  };
185
78
 
186
79
  //#endregion
@@ -841,5 +734,5 @@ function poseToWandelscriptString(pose) {
841
734
  }
842
735
 
843
736
  //#endregion
844
- export { NovaCellAPIClient, NovaClient, ProgramRunner, ProgramsClient, poseToWandelscriptString };
737
+ export { NovaCellAPIClient, NovaClient, poseToWandelscriptString };
845
738
  //# sourceMappingURL=index.mjs.map
@@ -1 +1 @@
1
- {"version":3,"file":"index.mjs","names":["client: NovaCellAPIClient","startRequest: ProgramStartRequest","programs: ProgramsClient","programId: string","cellId: string","opts: BaseConfiguration & {\n axiosInstance?: AxiosInstance\n mock?: boolean\n }","config"],"sources":["../../../src/lib/v2/ProgramsClient.ts","../../../src/lib/v2/NovaCellAPIClient.ts","../../../src/lib/v2/mock/MockNovaInstance.ts","../../../src/lib/v2/NovaClient.ts","../../../src/lib/v2/wandelscriptUtils.ts"],"sourcesContent":["import type {\n Program,\n ProgramRun,\n ProgramRunState,\n ProgramStartRequest,\n ProgramApi,\n} from \"@wandelbots/nova-api/v2\"\nimport type { NovaCellAPIClient, WithCellId } from \"./NovaCellAPIClient.js\"\n\n/**\n * Enhanced client for the Programs API providing intuitive program management\n */\nexport class ProgramsClient {\n constructor(private client: NovaCellAPIClient) {}\n\n /**\n * Get the underlying programs API for direct access\n */\n get api(): WithCellId<ProgramApi> {\n return this.client.programs\n }\n\n /**\n * List all programs available in the cell\n */\n async list(): Promise<Program[]> {\n return await this.api.listPrograms()\n }\n\n /**\n * Get details of a specific program\n */\n async get(programId: string): Promise<Program> {\n return await this.api.getProgram(programId)\n }\n\n /**\n * Start a program with the given arguments\n */\n async start(\n programId: string,\n args: object = {},\n ): Promise<ProgramRun> {\n const startRequest: ProgramStartRequest = {\n arguments: args,\n }\n return await this.api.startProgram(programId, startRequest)\n }\n\n /**\n * Stop a running program\n */\n async stop(programId: string): Promise<void> {\n return await this.api.stopProgram(programId)\n }\n\n /**\n * Execute a program and wait for it to complete\n * \n * Note: This method has limitations due to current API constraints.\n * Real-time program state tracking will be available via NATS messaging\n * in future versions. For now, this provides basic start functionality.\n * \n * @param programId - The program identifier\n * @param args - Arguments to pass to the program\n * @param options - Basic execution options\n */\n async execute(\n programId: string,\n args: object = {},\n options: {\n onStart?: (run: ProgramRun) => void\n } = {},\n ): Promise<ProgramRun> {\n const { onStart } = options\n\n // Start the program\n const run = await this.start(programId, args)\n \n if (onStart) {\n onStart(run)\n }\n\n // Note: Cannot wait for completion due to API limitations\n // Real-time state tracking will be available via NATS messaging\n return run\n }\n\n /**\n * Create a program runner helper for a specific program\n */\n forProgram(programId: string): ProgramRunner {\n return new ProgramRunner(this, programId)\n }\n}\n\n/**\n * Helper class for managing a specific program\n */\nexport class ProgramRunner {\n constructor(\n private programs: ProgramsClient,\n private programId: string,\n ) {}\n\n /**\n * Get program details\n */\n async getDetails(): Promise<Program> {\n return await this.programs.get(this.programId)\n }\n\n /**\n * Start this program\n */\n async start(args: object = {}): Promise<ProgramRun> {\n return await this.programs.start(this.programId, args)\n }\n\n /**\n * Stop this program\n */\n async stop(): Promise<void> {\n return await this.programs.stop(this.programId)\n }\n\n /**\n * Execute this program (start and get initial run information)\n * \n * Note: This method has limitations due to current API constraints.\n * Real-time program state tracking will be available via NATS messaging\n * in future versions.\n */\n async execute(\n args: object = {},\n options: {\n onStart?: (run: ProgramRun) => void\n } = {},\n ): Promise<ProgramRun> {\n return await this.programs.execute(this.programId, args, options)\n }\n}\n\n// Re-export types for convenience\nexport type {\n Program,\n ProgramRun,\n ProgramRunState,\n ProgramStartRequest,\n}\n","/** biome-ignore-all lint/suspicious/noExplicitAny: legacy code */\n/** biome-ignore-all lint/style/noNonNullAssertion: legacy code */\nimport type {\n BaseAPI,\n Configuration as BaseConfiguration,\n} from \"@wandelbots/nova-api/v2\"\nimport {\n ApplicationApi,\n BUSInputsOutputsApi,\n CellApi,\n ControllerApi,\n ControllerInputsOutputsApi,\n JoggingApi,\n KinematicsApi,\n MotionGroupApi,\n MotionGroupModelsApi,\n ProgramApi,\n StoreCollisionComponentsApi,\n StoreCollisionSetupsApi,\n StoreObjectApi,\n SystemApi,\n TrajectoryCachingApi,\n TrajectoryExecutionApi,\n TrajectoryPlanningApi,\n VirtualControllerApi,\n VirtualControllerBehaviorApi,\n VirtualControllerInputsOutputsApi,\n} from \"@wandelbots/nova-api/v2\"\nimport type { AxiosInstance } from \"axios\"\nimport axios from \"axios\"\nimport { ProgramsClient } from \"./ProgramsClient.js\"\n\ntype OmitFirstArg<F> = F extends (x: any, ...args: infer P) => infer R\n ? (...args: P) => R\n : never\n\ntype UnwrapAxiosResponseReturn<T> = T extends (...a: any) => any\n ? (\n ...a: Parameters<T>\n ) => Promise<Awaited<ReturnType<T>> extends { data: infer D } ? D : never>\n : never\n\nexport type WithCellId<T> = {\n [P in keyof T]: UnwrapAxiosResponseReturn<OmitFirstArg<T[P]>>\n}\n\nexport type WithUnwrappedAxiosResponse<T> = {\n [P in keyof T]: UnwrapAxiosResponseReturn<T[P]>\n}\n\n/**\n * API client providing type-safe access to all the Nova API REST endpoints\n * associated with a specific cell id.\n */\nexport class NovaCellAPIClient {\n constructor(\n readonly cellId: string,\n readonly opts: BaseConfiguration & {\n axiosInstance?: AxiosInstance\n mock?: boolean\n },\n ) {}\n\n /**\n * Some TypeScript sorcery which alters the API class methods so you don't\n * have to pass the cell id to every single one, and de-encapsulates the\n * response data\n */\n private withCellId<T extends BaseAPI>(\n ApiConstructor: new (\n config: BaseConfiguration,\n basePath: string,\n axios: AxiosInstance,\n ) => T,\n ) {\n const apiClient = new ApiConstructor(\n {\n ...this.opts,\n isJsonMime: (mime: string) => {\n return mime === \"application/json\"\n },\n },\n this.opts.basePath ?? \"\",\n this.opts.axiosInstance ?? axios.create(),\n ) as {\n [key: string | symbol]: any\n }\n\n for (const key of Reflect.ownKeys(Reflect.getPrototypeOf(apiClient)!)) {\n if (key !== \"constructor\" && typeof apiClient[key] === \"function\") {\n const originalFunction = apiClient[key]\n apiClient[key] = (...args: any[]) => {\n return originalFunction\n .apply(apiClient, [this.cellId, ...args])\n .then((res: any) => res.data)\n }\n }\n }\n\n return apiClient as WithCellId<T>\n }\n\n /**\n * As withCellId, but only does the response unwrapping\n */\n private withUnwrappedResponsesOnly<T extends BaseAPI>(\n ApiConstructor: new (\n config: BaseConfiguration,\n basePath: string,\n axios: AxiosInstance,\n ) => T,\n ) {\n const apiClient = new ApiConstructor(\n {\n ...this.opts,\n isJsonMime: (mime: string) => {\n return mime === \"application/json\"\n },\n },\n this.opts.basePath ?? \"\",\n this.opts.axiosInstance ?? axios.create(),\n ) as {\n [key: string | symbol]: any\n }\n\n for (const key of Reflect.ownKeys(Reflect.getPrototypeOf(apiClient)!)) {\n if (key !== \"constructor\" && typeof apiClient[key] === \"function\") {\n const originalFunction = apiClient[key]\n apiClient[key] = (...args: any[]) => {\n return originalFunction\n .apply(apiClient, args)\n .then((res: any) => res.data)\n }\n }\n }\n\n return apiClient as WithUnwrappedAxiosResponse<T>\n }\n\n readonly system = this.withUnwrappedResponsesOnly(SystemApi)\n readonly cell = this.withUnwrappedResponsesOnly(CellApi)\n\n readonly motionGroup = this.withCellId(MotionGroupApi)\n readonly motionGroupModels = this.withCellId(MotionGroupModelsApi)\n\n readonly controller = this.withCellId(ControllerApi)\n\n readonly controllerIOs = this.withCellId(ControllerInputsOutputsApi)\n\n readonly trajectoryPlanning = this.withCellId(TrajectoryPlanningApi)\n readonly trajectoryExecution = this.withCellId(TrajectoryExecutionApi)\n readonly trajectoryCaching = this.withCellId(TrajectoryCachingApi)\n\n readonly programs = this.withCellId(ProgramApi)\n\n readonly application = this.withCellId(ApplicationApi)\n readonly applicationGlobal = this.withUnwrappedResponsesOnly(ApplicationApi)\n\n readonly jogging = this.withCellId(JoggingApi)\n\n readonly kinematics = this.withCellId(KinematicsApi)\n\n readonly busInputsOutputs = this.withCellId(BUSInputsOutputsApi)\n\n readonly virtualController = this.withCellId(VirtualControllerApi)\n readonly virtualControllerBehavior = this.withCellId(\n VirtualControllerBehaviorApi,\n )\n readonly virtualControllerIOs = this.withCellId(\n VirtualControllerInputsOutputsApi,\n )\n\n readonly storeObject = this.withCellId(StoreObjectApi)\n readonly storeCollisionComponents = this.withCellId(\n StoreCollisionComponentsApi,\n )\n readonly storeCollisionSetups = this.withCellId(StoreCollisionSetupsApi)\n\n // Enhanced programs client with convenient methods\n private _programsClient?: ProgramsClient\n get programsClient(): ProgramsClient {\n if (!this._programsClient) {\n this._programsClient = new ProgramsClient(this)\n }\n return this._programsClient\n }\n}\n","/** biome-ignore-all lint/suspicious/noApproximativeNumericConstant: mock data contains approximative pi values from robot description */\nimport type { MotionGroupState, RobotController } from \"@wandelbots/nova-api/v2\"\nimport type { AxiosResponse, InternalAxiosRequestConfig } from \"axios\"\nimport { AxiosError } from \"axios\"\nimport * as pathToRegexp from \"path-to-regexp\"\nimport type { AutoReconnectingWebsocket } from \"../../AutoReconnectingWebsocket\"\n\n/**\n * Ultra-simplified mock Nova server for testing stuff\n */\nexport class MockNovaInstance {\n readonly connections: AutoReconnectingWebsocket[] = []\n\n async handleAPIRequest(\n config: InternalAxiosRequestConfig,\n ): Promise<AxiosResponse> {\n const apiHandlers = [\n {\n method: \"GET\",\n path: \"/cells/:cellId/controllers\",\n handle() {\n return [\"mock-ur5e\"]\n },\n },\n {\n method: \"GET\",\n path: \"/cells/:cellId/controllers/:controllerId\",\n handle() {\n return {\n configuration: {\n initial_joint_position: \"[0,-1.571,-1.571,-1.571,1.571,-1.571,0]\",\n kind: \"VirtualController\",\n manufacturer: \"universalrobots\",\n type: \"universalrobots-ur5e\",\n },\n name: \"mock-ur5\",\n } satisfies RobotController\n },\n },\n {\n method: \"GET\",\n path: \"/cells/:cellId/controllers/:controllerId/state\",\n handle() {\n return {\n mode: \"MODE_CONTROL\",\n last_error: [],\n timestamp: \"2025-10-16T09:19:26.634534092Z\",\n sequence_number: 1054764,\n controller: \"mock-ur5e\",\n operation_mode: \"OPERATION_MODE_AUTO\",\n safety_state: \"SAFETY_STATE_NORMAL\",\n velocity_override: 100,\n motion_groups: [\n {\n timestamp: \"2025-10-16T09:19:26.634534092Z\",\n sequence_number: 1054764,\n motion_group: \"0@mock-ur5e\",\n controller: \"mock-ur5e\",\n joint_position: [\n 1.487959623336792, -1.8501918315887451, 1.8003005981445312,\n 6.034560203552246, 1.4921919107437134, 1.593459963798523,\n ],\n joint_limit_reached: {\n limit_reached: [false, false, false, false, false, false],\n },\n joint_torque: [],\n joint_current: [0, 0, 0, 0, 0, 0],\n flange_pose: {\n position: [\n 107.6452433732927, -409.0402987746852, 524.2402132330305,\n ],\n orientation: [\n 0.9874434028353319, -0.986571714997442, 1.3336589451098142,\n ],\n },\n tcp: \"Flange\",\n tcp_pose: {\n position: [\n 107.6452433732927, -409.0402987746852, 524.2402132330305,\n ],\n orientation: [\n 0.9874434028353319, -0.986571714997442, 1.3336589451098142,\n ],\n },\n payload: \"\",\n coordinate_system: \"\",\n standstill: true,\n },\n ],\n }\n },\n },\n {\n method: \"GET\",\n path: \"/cells/:cellId/controllers/:controllerId/motion-groups/:motionGroupId/description\",\n handle() {\n return {\n motion_group_model: \"UniversalRobots_UR5e\",\n mounting: {\n position: [0, 0, 0],\n orientation: [0, 0, 0],\n },\n tcps: {\n Flange: {\n name: \"Default-Flange\",\n pose: {\n position: [0, 0, 0],\n orientation: [0, 0, 0],\n },\n },\n },\n payloads: {\n \"FPay-0\": {\n name: \"FPay-0\",\n payload: 0,\n center_of_mass: [0, 0, 0],\n moment_of_inertia: [0, 0, 0],\n },\n },\n cycle_time: 8,\n dh_parameters: [\n {\n alpha: 1.5707963267948966,\n d: 162.25,\n },\n {\n a: -425,\n },\n {\n a: -392.2,\n },\n {\n alpha: 1.5707963267948966,\n d: 133.3,\n },\n {\n alpha: -1.5707963267948966,\n d: 99.7,\n },\n {\n d: 99.6,\n },\n ],\n operation_limits: {\n auto_limits: {\n joints: [\n {\n position: {\n lower_limit: -6.283185307179586,\n upper_limit: 6.283185307179586,\n },\n velocity: 3.34159255027771,\n acceleration: 40,\n torque: 150,\n },\n {\n position: {\n lower_limit: -6.283185307179586,\n upper_limit: 6.283185307179586,\n },\n velocity: 3.34159255027771,\n acceleration: 40,\n torque: 150,\n },\n {\n position: {\n lower_limit: -6.283185307179586,\n upper_limit: 6.283185307179586,\n },\n velocity: 3.34159255027771,\n acceleration: 40,\n torque: 150,\n },\n {\n position: {\n lower_limit: -6.283185307179586,\n upper_limit: 6.283185307179586,\n },\n velocity: 3.34159255027771,\n acceleration: 40,\n torque: 28,\n },\n {\n position: {\n lower_limit: -6.283185307179586,\n upper_limit: 6.283185307179586,\n },\n velocity: 3.34159255027771,\n acceleration: 40,\n torque: 28,\n },\n {\n position: {\n lower_limit: -6.283185307179586,\n upper_limit: 6.283185307179586,\n },\n velocity: 3.34159255027771,\n acceleration: 40,\n torque: 28,\n },\n ],\n tcp: {\n velocity: 5000,\n },\n elbow: {\n velocity: 5000,\n },\n flange: {\n velocity: 5000,\n },\n },\n manual_limits: {\n joints: [\n {\n position: {\n lower_limit: -6.283185307179586,\n upper_limit: 6.283185307179586,\n },\n velocity: 3.34159255027771,\n acceleration: 40,\n torque: 150,\n },\n {\n position: {\n lower_limit: -6.283185307179586,\n upper_limit: 6.283185307179586,\n },\n velocity: 3.34159255027771,\n acceleration: 40,\n torque: 150,\n },\n {\n position: {\n lower_limit: -6.283185307179586,\n upper_limit: 6.283185307179586,\n },\n velocity: 3.34159255027771,\n acceleration: 40,\n torque: 150,\n },\n {\n position: {\n lower_limit: -6.283185307179586,\n upper_limit: 6.283185307179586,\n },\n velocity: 3.34159255027771,\n acceleration: 40,\n torque: 28,\n },\n {\n position: {\n lower_limit: -6.283185307179586,\n upper_limit: 6.283185307179586,\n },\n velocity: 3.34159255027771,\n acceleration: 40,\n torque: 28,\n },\n {\n position: {\n lower_limit: -6.283185307179586,\n upper_limit: 6.283185307179586,\n },\n velocity: 3.34159255027771,\n acceleration: 40,\n torque: 28,\n },\n ],\n tcp: {\n velocity: 5000,\n },\n },\n manual_t1_limits: {\n joints: [\n {\n position: {\n lower_limit: -6.283185307179586,\n upper_limit: 6.283185307179586,\n },\n velocity: 3.34159255027771,\n acceleration: 40,\n torque: 150,\n },\n {\n position: {\n lower_limit: -6.283185307179586,\n upper_limit: 6.283185307179586,\n },\n velocity: 3.34159255027771,\n acceleration: 40,\n torque: 150,\n },\n {\n position: {\n lower_limit: -6.283185307179586,\n upper_limit: 6.283185307179586,\n },\n velocity: 3.34159255027771,\n acceleration: 40,\n torque: 150,\n },\n {\n position: {\n lower_limit: -6.283185307179586,\n upper_limit: 6.283185307179586,\n },\n velocity: 3.34159255027771,\n acceleration: 40,\n torque: 28,\n },\n {\n position: {\n lower_limit: -6.283185307179586,\n upper_limit: 6.283185307179586,\n },\n velocity: 3.34159255027771,\n acceleration: 40,\n torque: 28,\n },\n {\n position: {\n lower_limit: -6.283185307179586,\n upper_limit: 6.283185307179586,\n },\n velocity: 3.34159255027771,\n acceleration: 40,\n torque: 28,\n },\n ],\n tcp: {\n velocity: 5000,\n },\n },\n manual_t2_limits: {\n joints: [\n {\n position: {\n lower_limit: -6.283185307179586,\n upper_limit: 6.283185307179586,\n },\n velocity: 3.34159255027771,\n acceleration: 40,\n torque: 150,\n },\n {\n position: {\n lower_limit: -6.283185307179586,\n upper_limit: 6.283185307179586,\n },\n velocity: 3.34159255027771,\n acceleration: 40,\n torque: 150,\n },\n {\n position: {\n lower_limit: -6.283185307179586,\n upper_limit: 6.283185307179586,\n },\n velocity: 3.34159255027771,\n acceleration: 40,\n torque: 150,\n },\n {\n position: {\n lower_limit: -6.283185307179586,\n upper_limit: 6.283185307179586,\n },\n velocity: 3.34159255027771,\n acceleration: 40,\n torque: 28,\n },\n {\n position: {\n lower_limit: -6.283185307179586,\n upper_limit: 6.283185307179586,\n },\n velocity: 3.34159255027771,\n acceleration: 40,\n torque: 28,\n },\n {\n position: {\n lower_limit: -6.283185307179586,\n upper_limit: 6.283185307179586,\n },\n velocity: 3.34159255027771,\n acceleration: 40,\n torque: 28,\n },\n ],\n tcp: {\n velocity: 5000,\n },\n },\n },\n serial_number: \"WBVirtualRobot\",\n }\n },\n },\n {\n method: \"GET\",\n path: \"/cells/:cellId/controllers/:controllerId/coordinate-systems\",\n handle() {\n return [\n {\n coordinate_system: \"\",\n name: \"world\",\n reference_coordinate_system: \"\",\n position: [0, 0, 0],\n orientation: [0, 0, 0],\n orientation_type: \"ROTATION_VECTOR\",\n },\n {\n coordinate_system: \"CS-0\",\n name: \"Default-CS\",\n reference_coordinate_system: \"\",\n position: [0, 0, 0],\n orientation: [0, 0, 0],\n orientation_type: \"ROTATION_VECTOR\",\n },\n ] //satisfies CoordinateSystems\n },\n },\n ]\n\n const method = config.method?.toUpperCase() || \"GET\"\n const path = `/cells${config.url?.split(\"/cells\")[1]?.split(\"?\")[0]}`\n\n for (const handler of apiHandlers) {\n const match = pathToRegexp.match(handler.path)(path || \"\")\n if (method === handler.method && match) {\n const json = handler.handle()\n return {\n status: 200,\n statusText: \"Success\",\n data: JSON.stringify(json),\n headers: {},\n config,\n request: {\n responseURL: config.url,\n },\n }\n }\n }\n\n throw new AxiosError(\n `No mock handler matched this request: ${method} ${path}`,\n \"404\",\n config,\n )\n\n // return {\n // status: 404,\n // statusText: \"Not Found\",\n // data: \"\",\n // headers: {},\n // config,\n // request: {\n // responseURL: config.url,\n // },\n // }\n }\n\n // Please note: Only very basic websocket mocking is done here, needs to be extended as needed\n handleWebsocketConnection(socket: AutoReconnectingWebsocket) {\n this.connections.push(socket)\n\n setTimeout(() => {\n socket.dispatchEvent(new Event(\"open\"))\n\n console.log(\"Websocket connection opened from\", socket.url)\n\n if (socket.url.includes(\"/state-stream\")) {\n socket.dispatchEvent(\n new MessageEvent(\"message\", {\n data: JSON.stringify(defaultMotionState),\n }),\n )\n }\n\n if (socket.url.includes(\"/execution/jogging\")) {\n socket.dispatchEvent(\n new MessageEvent(\"message\", {\n data: JSON.stringify({\n result: {\n message: \"string\",\n kind: \"INITIALIZE_RECEIVED\",\n },\n }),\n }),\n )\n }\n }, 10)\n }\n\n handleWebsocketMessage(socket: AutoReconnectingWebsocket, message: string) {\n console.log(`Received message on ${socket.url}`, message)\n }\n}\n\nconst defaultMotionState = {\n result: {\n motion_group: \"0@universalrobots-ur5e\",\n controller: \"universalrobots-ur5e\",\n timestamp: new Date().toISOString(),\n sequence_number: 1,\n joint_position: [\n 1.1699999570846558, -1.5700000524520874, 1.3600000143051147,\n 1.0299999713897705, 1.2899999618530273, 1.2799999713897705,\n ],\n joint_limit_reached: {\n limit_reached: [false, false, false, false, false, false],\n },\n standstill: false,\n flange_pose: {\n position: [1.3300010259703043, -409.2680714682808, 531.0203477065281],\n orientation: [\n 1.7564919306270736, -1.7542521568325058, 0.7326972590614671,\n ],\n },\n tcp_pose: {\n position: [1.3300010259703043, -409.2680714682808, 531.0203477065281],\n orientation: [\n 1.7564919306270736, -1.7542521568325058, 0.7326972590614671,\n ],\n },\n } satisfies MotionGroupState,\n}\n","/** biome-ignore-all lint/style/noNonNullAssertion: legacy code */\nimport type { Configuration as BaseConfiguration } from \"@wandelbots/nova-api/v2\"\nimport type { AxiosRequestConfig } from \"axios\"\nimport axios, { isAxiosError } from \"axios\"\nimport urlJoin from \"url-join\"\nimport { loginWithAuth0 } from \"../../LoginWithAuth0\"\nimport { AutoReconnectingWebsocket } from \"../AutoReconnectingWebsocket\"\nimport { availableStorage } from \"../availableStorage\"\nimport { MockNovaInstance } from \"./mock/MockNovaInstance\"\nimport { NovaCellAPIClient } from \"./NovaCellAPIClient\"\n\nexport type NovaClientConfig = {\n /**\n * Url of the deployed Nova instance to connect to\n * e.g. https://saeattii.instance.wandelbots.io\n */\n instanceUrl: string | \"https://mock.example.com\"\n\n /**\n * Identifier of the cell on the Nova instance to connect this client to.\n * If omitted, the default identifier \"cell\" is used.\n **/\n cellId?: string\n\n /**\n * Username for basic auth to the Nova instance.\n * @deprecated use accessToken instead\n */\n username?: string\n\n /**\n * Password for basic auth to the Nova instance.\n * @deprecated use accessToken instead\n */\n password?: string\n\n /**\n * Access token for Bearer authentication.\n */\n accessToken?: string\n} & Omit<BaseConfiguration, \"isJsonMime\" | \"basePath\">\n\ntype NovaClientConfigWithDefaults = NovaClientConfig & { cellId: string }\n\nfunction permissiveInstanceUrlParse(url: string): string {\n if (!url.startsWith(\"http\")) {\n url = `http://${url}`\n }\n\n return new URL(url).toString()\n}\n\n/**\n *\n * Client for connecting to a Nova instance and controlling robots.\n */\nexport class NovaClient {\n readonly api: NovaCellAPIClient\n readonly config: NovaClientConfigWithDefaults\n readonly mock?: MockNovaInstance\n authPromise: Promise<string | null> | null = null\n accessToken: string | null = null\n\n constructor(config: NovaClientConfig) {\n const cellId = config.cellId ?? \"cell\"\n this.config = {\n cellId,\n ...config,\n }\n this.accessToken =\n config.accessToken ||\n availableStorage.getString(\"wbjs.access_token\") ||\n null\n\n if (this.config.instanceUrl === \"https://mock.example.com\") {\n this.mock = new MockNovaInstance()\n } else {\n this.config.instanceUrl = permissiveInstanceUrlParse(\n this.config.instanceUrl,\n )\n }\n\n // Set up Axios instance with interceptor for token fetching\n const axiosInstance = axios.create({\n baseURL: urlJoin(this.config.instanceUrl, \"/api/v2\"),\n // TODO - backend needs to set proper CORS headers for this\n headers:\n typeof window !== \"undefined\" &&\n window.location.origin.includes(\"localhost\")\n ? {}\n : {\n // Identify the client to the backend for logging purposes\n \"X-Wandelbots-Client\": \"Wandelbots-Nova-JS-SDK\",\n },\n })\n\n axiosInstance.interceptors.request.use(async (request) => {\n if (!request.headers.Authorization) {\n if (this.accessToken) {\n request.headers.Authorization = `Bearer ${this.accessToken}`\n } else if (this.config.username && this.config.password) {\n request.headers.Authorization = `Basic ${btoa(`${config.username}:${config.password}`)}`\n }\n }\n return request\n })\n\n if (typeof window !== \"undefined\") {\n axiosInstance.interceptors.response.use(\n (r) => r,\n async (error) => {\n if (isAxiosError(error)) {\n if (error.response?.status === 401) {\n // If we hit a 401, attempt to login the user and retry with\n // a new access token\n try {\n await this.renewAuthentication()\n\n if (error.config) {\n if (this.accessToken) {\n error.config.headers.Authorization = `Bearer ${this.accessToken}`\n } else {\n delete error.config.headers.Authorization\n }\n return axiosInstance.request(error.config)\n }\n } catch (err) {\n return Promise.reject(err)\n }\n } else if (error.response?.status === 503) {\n // Check if the server as a whole is down\n const res = await fetch(window.location.href)\n if (res.status === 503) {\n // Go to 503 page\n window.location.reload()\n }\n }\n }\n\n return Promise.reject(error)\n },\n )\n }\n\n this.api = new NovaCellAPIClient(cellId, {\n ...config,\n basePath: urlJoin(this.config.instanceUrl, \"/api/v2\"),\n isJsonMime: (mime: string) => {\n return mime === \"application/json\"\n },\n baseOptions: {\n ...(this.mock\n ? ({\n adapter: (config) => {\n return this.mock!.handleAPIRequest(config)\n },\n } satisfies AxiosRequestConfig)\n : {}),\n ...config.baseOptions,\n },\n axiosInstance,\n })\n }\n\n async renewAuthentication(): Promise<void> {\n if (this.authPromise) {\n // Don't double up\n return\n }\n\n this.authPromise = loginWithAuth0(this.config.instanceUrl)\n try {\n this.accessToken = await this.authPromise\n if (this.accessToken) {\n // Cache access token so we don't need to log in every refresh\n availableStorage.setString(\"wbjs.access_token\", this.accessToken)\n } else {\n availableStorage.delete(\"wbjs.access_token\")\n }\n } finally {\n this.authPromise = null\n }\n }\n\n makeWebsocketURL(path: string): string {\n const url = new URL(\n urlJoin(\n this.config.instanceUrl,\n `/api/v2/cells/${this.config.cellId}`,\n path,\n ),\n )\n url.protocol = url.protocol.replace(\"http\", \"ws\")\n url.protocol = url.protocol.replace(\"https\", \"wss\")\n\n // If provided, add basic auth credentials to the URL\n // NOTE - basic auth is deprecated on websockets and doesn't work in Safari\n // use tokens instead\n if (this.accessToken) {\n url.searchParams.append(\"token\", this.accessToken)\n } else if (this.config.username && this.config.password) {\n url.username = this.config.username\n url.password = this.config.password\n }\n\n return url.toString()\n }\n\n /**\n * Retrieve an AutoReconnectingWebsocket to the given path on the Nova instance.\n * If you explicitly want to reconnect an existing websocket, call `reconnect`\n * on the returned object.\n */\n openReconnectingWebsocket(path: string) {\n return new AutoReconnectingWebsocket(this.makeWebsocketURL(path), {\n mock: this.mock,\n })\n }\n}\n","import type { Pose } from \"@wandelbots/nova-api/v2\"\n\n/**\n * Convert a Pose object representing a motion group position\n * into a string which represents that pose in Wandelscript.\n */\nexport function poseToWandelscriptString(\n pose: Pick<Pose, \"position\" | \"orientation\">,\n) {\n const position = [\n pose.position?.[0] ?? 0,\n pose.position?.[1] ?? 0,\n pose.position?.[2] ?? 0,\n ]\n\n const orientation = [\n pose.orientation?.[0] ?? 0,\n pose.orientation?.[1] ?? 0,\n pose.orientation?.[2] ?? 0,\n ]\n\n const positionValues = position.map((v) => v.toFixed(1))\n // Rotation needs more precision since it's in radians\n const rotationValues = orientation.map((v) => v.toFixed(4))\n\n return `(${positionValues.concat(rotationValues).join(\", \")})`\n}\n"],"mappings":"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,gBAAgB;QAAC;QAAG;QAAG;QAAE;OACzB,mBAAmB;QAAC;QAAG;QAAG;QAAE;OAC7B,EACF;MACD,YAAY;MACZ,eAAe;OACb;QACE,OAAO;QACP,GAAG;QACJ;OACD,EACE,GAAG,MACJ;OACD,EACE,GAAG,QACJ;OACD;QACE,OAAO;QACP,GAAG;QACJ;OACD;QACE,OAAO;QACP,GAAG;QACJ;OACD,EACE,GAAG,MACJ;OACF;MACD,kBAAkB;OAChB,aAAa;QACX,QAAQ;SACN;UACE,UAAU;WACR,aAAa;WACb,aAAa;WACd;UACD,UAAU;UACV,cAAc;UACd,QAAQ;UACT;SACD;UACE,UAAU;WACR,aAAa;WACb,aAAa;WACd;UACD,UAAU;UACV,cAAc;UACd,QAAQ;UACT;SACD;UACE,UAAU;WACR,aAAa;WACb,aAAa;WACd;UACD,UAAU;UACV,cAAc;UACd,QAAQ;UACT;SACD;UACE,UAAU;WACR,aAAa;WACb,aAAa;WACd;UACD,UAAU;UACV,cAAc;UACd,QAAQ;UACT;SACD;UACE,UAAU;WACR,aAAa;WACb,aAAa;WACd;UACD,UAAU;UACV,cAAc;UACd,QAAQ;UACT;SACD;UACE,UAAU;WACR,aAAa;WACb,aAAa;WACd;UACD,UAAU;UACV,cAAc;UACd,QAAQ;UACT;SACF;QACD,KAAK,EACH,UAAU,KACX;QACD,OAAO,EACL,UAAU,KACX;QACD,QAAQ,EACN,UAAU,KACX;QACF;OACD,eAAe;QACb,QAAQ;SACN;UACE,UAAU;WACR,aAAa;WACb,aAAa;WACd;UACD,UAAU;UACV,cAAc;UACd,QAAQ;UACT;SACD;UACE,UAAU;WACR,aAAa;WACb,aAAa;WACd;UACD,UAAU;UACV,cAAc;UACd,QAAQ;UACT;SACD;UACE,UAAU;WACR,aAAa;WACb,aAAa;WACd;UACD,UAAU;UACV,cAAc;UACd,QAAQ;UACT;SACD;UACE,UAAU;WACR,aAAa;WACb,aAAa;WACd;UACD,UAAU;UACV,cAAc;UACd,QAAQ;UACT;SACD;UACE,UAAU;WACR,aAAa;WACb,aAAa;WACd;UACD,UAAU;UACV,cAAc;UACd,QAAQ;UACT;SACD;UACE,UAAU;WACR,aAAa;WACb,aAAa;WACd;UACD,UAAU;UACV,cAAc;UACd,QAAQ;UACT;SACF;QACD,KAAK,EACH,UAAU,KACX;QACF;OACD,kBAAkB;QAChB,QAAQ;SACN;UACE,UAAU;WACR,aAAa;WACb,aAAa;WACd;UACD,UAAU;UACV,cAAc;UACd,QAAQ;UACT;SACD;UACE,UAAU;WACR,aAAa;WACb,aAAa;WACd;UACD,UAAU;UACV,cAAc;UACd,QAAQ;UACT;SACD;UACE,UAAU;WACR,aAAa;WACb,aAAa;WACd;UACD,UAAU;UACV,cAAc;UACd,QAAQ;UACT;SACD;UACE,UAAU;WACR,aAAa;WACb,aAAa;WACd;UACD,UAAU;UACV,cAAc;UACd,QAAQ;UACT;SACD;UACE,UAAU;WACR,aAAa;WACb,aAAa;WACd;UACD,UAAU;UACV,cAAc;UACd,QAAQ;UACT;SACD;UACE,UAAU;WACR,aAAa;WACb,aAAa;WACd;UACD,UAAU;UACV,cAAc;UACd,QAAQ;UACT;SACF;QACD,KAAK,EACH,UAAU,KACX;QACF;OACD,kBAAkB;QAChB,QAAQ;SACN;UACE,UAAU;WACR,aAAa;WACb,aAAa;WACd;UACD,UAAU;UACV,cAAc;UACd,QAAQ;UACT;SACD;UACE,UAAU;WACR,aAAa;WACb,aAAa;WACd;UACD,UAAU;UACV,cAAc;UACd,QAAQ;UACT;SACD;UACE,UAAU;WACR,aAAa;WACb,aAAa;WACd;UACD,UAAU;UACV,cAAc;UACd,QAAQ;UACT;SACD;UACE,UAAU;WACR,aAAa;WACb,aAAa;WACd;UACD,UAAU;UACV,cAAc;UACd,QAAQ;UACT;SACD;UACE,UAAU;WACR,aAAa;WACb,aAAa;WACd;UACD,UAAU;UACV,cAAc;UACd,QAAQ;UACT;SACD;UACE,UAAU;WACR,aAAa;WACb,aAAa;WACd;UACD,UAAU;UACV,cAAc;UACd,QAAQ;UACT;SACF;QACD,KAAK,EACH,UAAU,KACX;QACF;OACF;MACD,eAAe;MAChB;;IAEJ;GACD;IACE,QAAQ;IACR,MAAM;IACN,SAAS;AA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"}
1
+ {"version":3,"file":"index.mjs","names":["cellId: string","opts: BaseConfiguration & {\n axiosInstance?: AxiosInstance\n mock?: boolean\n }","config"],"sources":["../../../src/lib/v2/NovaCellAPIClient.ts","../../../src/lib/v2/mock/MockNovaInstance.ts","../../../src/lib/v2/NovaClient.ts","../../../src/lib/v2/wandelscriptUtils.ts"],"sourcesContent":["/** biome-ignore-all lint/suspicious/noExplicitAny: legacy code */\n/** biome-ignore-all lint/style/noNonNullAssertion: legacy code */\nimport type {\n BaseAPI,\n Configuration as BaseConfiguration,\n} from \"@wandelbots/nova-api/v2\"\nimport {\n ApplicationApi,\n BUSInputsOutputsApi,\n CellApi,\n ControllerApi,\n ControllerInputsOutputsApi,\n JoggingApi,\n KinematicsApi,\n MotionGroupApi,\n MotionGroupModelsApi,\n StoreCollisionComponentsApi,\n StoreCollisionSetupsApi,\n StoreObjectApi,\n SystemApi,\n TrajectoryCachingApi,\n TrajectoryExecutionApi,\n TrajectoryPlanningApi,\n VirtualControllerApi,\n VirtualControllerBehaviorApi,\n VirtualControllerInputsOutputsApi,\n} from \"@wandelbots/nova-api/v2\"\nimport type { AxiosInstance } from \"axios\"\nimport axios from \"axios\"\n\ntype OmitFirstArg<F> = F extends (x: any, ...args: infer P) => infer R\n ? (...args: P) => R\n : never\n\ntype UnwrapAxiosResponseReturn<T> = T extends (...a: any) => any\n ? (\n ...a: Parameters<T>\n ) => Promise<Awaited<ReturnType<T>> extends { data: infer D } ? D : never>\n : never\n\nexport type WithCellId<T> = {\n [P in keyof T]: UnwrapAxiosResponseReturn<OmitFirstArg<T[P]>>\n}\n\nexport type WithUnwrappedAxiosResponse<T> = {\n [P in keyof T]: UnwrapAxiosResponseReturn<T[P]>\n}\n\n/**\n * API client providing type-safe access to all the Nova API REST endpoints\n * associated with a specific cell id.\n */\nexport class NovaCellAPIClient {\n constructor(\n readonly cellId: string,\n readonly opts: BaseConfiguration & {\n axiosInstance?: AxiosInstance\n mock?: boolean\n },\n ) {}\n\n /**\n * Some TypeScript sorcery which alters the API class methods so you don't\n * have to pass the cell id to every single one, and de-encapsulates the\n * response data\n */\n private withCellId<T extends BaseAPI>(\n ApiConstructor: new (\n config: BaseConfiguration,\n basePath: string,\n axios: AxiosInstance,\n ) => T,\n ) {\n const apiClient = new ApiConstructor(\n {\n ...this.opts,\n isJsonMime: (mime: string) => {\n return mime === \"application/json\"\n },\n },\n this.opts.basePath ?? \"\",\n this.opts.axiosInstance ?? axios.create(),\n ) as {\n [key: string | symbol]: any\n }\n\n for (const key of Reflect.ownKeys(Reflect.getPrototypeOf(apiClient)!)) {\n if (key !== \"constructor\" && typeof apiClient[key] === \"function\") {\n const originalFunction = apiClient[key]\n apiClient[key] = (...args: any[]) => {\n return originalFunction\n .apply(apiClient, [this.cellId, ...args])\n .then((res: any) => res.data)\n }\n }\n }\n\n return apiClient as WithCellId<T>\n }\n\n /**\n * As withCellId, but only does the response unwrapping\n */\n private withUnwrappedResponsesOnly<T extends BaseAPI>(\n ApiConstructor: new (\n config: BaseConfiguration,\n basePath: string,\n axios: AxiosInstance,\n ) => T,\n ) {\n const apiClient = new ApiConstructor(\n {\n ...this.opts,\n isJsonMime: (mime: string) => {\n return mime === \"application/json\"\n },\n },\n this.opts.basePath ?? \"\",\n this.opts.axiosInstance ?? axios.create(),\n ) as {\n [key: string | symbol]: any\n }\n\n for (const key of Reflect.ownKeys(Reflect.getPrototypeOf(apiClient)!)) {\n if (key !== \"constructor\" && typeof apiClient[key] === \"function\") {\n const originalFunction = apiClient[key]\n apiClient[key] = (...args: any[]) => {\n return originalFunction\n .apply(apiClient, args)\n .then((res: any) => res.data)\n }\n }\n }\n\n return apiClient as WithUnwrappedAxiosResponse<T>\n }\n\n readonly system = this.withUnwrappedResponsesOnly(SystemApi)\n readonly cell = this.withUnwrappedResponsesOnly(CellApi)\n\n readonly motionGroup = this.withCellId(MotionGroupApi)\n readonly motionGroupModels = this.withCellId(MotionGroupModelsApi)\n\n readonly controller = this.withCellId(ControllerApi)\n\n readonly controllerIOs = this.withCellId(ControllerInputsOutputsApi)\n\n readonly trajectoryPlanning = this.withCellId(TrajectoryPlanningApi)\n readonly trajectoryExecution = this.withCellId(TrajectoryExecutionApi)\n readonly trajectoryCaching = this.withCellId(TrajectoryCachingApi)\n\n readonly application = this.withCellId(ApplicationApi)\n readonly applicationGlobal = this.withUnwrappedResponsesOnly(ApplicationApi)\n\n readonly jogging = this.withCellId(JoggingApi)\n\n readonly kinematics = this.withCellId(KinematicsApi)\n\n readonly busInputsOutputs = this.withCellId(BUSInputsOutputsApi)\n\n readonly virtualController = this.withCellId(VirtualControllerApi)\n readonly virtualControllerBehavior = this.withCellId(\n VirtualControllerBehaviorApi,\n )\n readonly virtualControllerIOs = this.withCellId(\n VirtualControllerInputsOutputsApi,\n )\n\n readonly storeObject = this.withCellId(StoreObjectApi)\n readonly storeCollisionComponents = this.withCellId(\n StoreCollisionComponentsApi,\n )\n readonly storeCollisionSetups = this.withCellId(StoreCollisionSetupsApi)\n}\n","/** biome-ignore-all lint/suspicious/noApproximativeNumericConstant: mock data contains approximative pi values from robot description */\nimport type { MotionGroupState, RobotController } from \"@wandelbots/nova-api/v2\"\nimport type { AxiosResponse, InternalAxiosRequestConfig } from \"axios\"\nimport { AxiosError } from \"axios\"\nimport * as pathToRegexp from \"path-to-regexp\"\nimport type { AutoReconnectingWebsocket } from \"../../AutoReconnectingWebsocket\"\n\n/**\n * Ultra-simplified mock Nova server for testing stuff\n */\nexport class MockNovaInstance {\n readonly connections: AutoReconnectingWebsocket[] = []\n\n async handleAPIRequest(\n config: InternalAxiosRequestConfig,\n ): Promise<AxiosResponse> {\n const apiHandlers = [\n {\n method: \"GET\",\n path: \"/cells/:cellId/controllers\",\n handle() {\n return [\"mock-ur5e\"]\n },\n },\n {\n method: \"GET\",\n path: \"/cells/:cellId/controllers/:controllerId\",\n handle() {\n return {\n configuration: {\n initial_joint_position: \"[0,-1.571,-1.571,-1.571,1.571,-1.571,0]\",\n kind: \"VirtualController\",\n manufacturer: \"universalrobots\",\n type: \"universalrobots-ur5e\",\n },\n name: \"mock-ur5\",\n } satisfies RobotController\n },\n },\n {\n method: \"GET\",\n path: \"/cells/:cellId/controllers/:controllerId/state\",\n handle() {\n return {\n mode: \"MODE_CONTROL\",\n last_error: [],\n timestamp: \"2025-10-16T09:19:26.634534092Z\",\n sequence_number: 1054764,\n controller: \"mock-ur5e\",\n operation_mode: \"OPERATION_MODE_AUTO\",\n safety_state: \"SAFETY_STATE_NORMAL\",\n velocity_override: 100,\n motion_groups: [\n {\n timestamp: \"2025-10-16T09:19:26.634534092Z\",\n sequence_number: 1054764,\n motion_group: \"0@mock-ur5e\",\n controller: \"mock-ur5e\",\n joint_position: [\n 1.487959623336792, -1.8501918315887451, 1.8003005981445312,\n 6.034560203552246, 1.4921919107437134, 1.593459963798523,\n ],\n joint_limit_reached: {\n limit_reached: [false, false, false, false, false, false],\n },\n joint_torque: [],\n joint_current: [0, 0, 0, 0, 0, 0],\n flange_pose: {\n position: [\n 107.6452433732927, -409.0402987746852, 524.2402132330305,\n ],\n orientation: [\n 0.9874434028353319, -0.986571714997442, 1.3336589451098142,\n ],\n },\n tcp: \"Flange\",\n tcp_pose: {\n position: [\n 107.6452433732927, -409.0402987746852, 524.2402132330305,\n ],\n orientation: [\n 0.9874434028353319, -0.986571714997442, 1.3336589451098142,\n ],\n },\n payload: \"\",\n coordinate_system: \"\",\n standstill: true,\n },\n ],\n }\n },\n },\n {\n method: \"GET\",\n path: \"/cells/:cellId/controllers/:controllerId/motion-groups/:motionGroupId/description\",\n handle() {\n return {\n motion_group_model: \"UniversalRobots_UR5e\",\n mounting: {\n position: [0, 0, 0],\n orientation: [0, 0, 0],\n },\n tcps: {\n Flange: {\n name: \"Default-Flange\",\n pose: {\n position: [0, 0, 0],\n orientation: [0, 0, 0],\n },\n },\n },\n payloads: {\n \"FPay-0\": {\n name: \"FPay-0\",\n payload: 0,\n center_of_mass: [0, 0, 0],\n moment_of_inertia: [0, 0, 0],\n },\n },\n cycle_time: 8,\n dh_parameters: [\n {\n alpha: 1.5707963267948966,\n d: 162.25,\n },\n {\n a: -425,\n },\n {\n a: -392.2,\n },\n {\n alpha: 1.5707963267948966,\n d: 133.3,\n },\n {\n alpha: -1.5707963267948966,\n d: 99.7,\n },\n {\n d: 99.6,\n },\n ],\n operation_limits: {\n auto_limits: {\n joints: [\n {\n position: {\n lower_limit: -6.283185307179586,\n upper_limit: 6.283185307179586,\n },\n velocity: 3.34159255027771,\n acceleration: 40,\n torque: 150,\n },\n {\n position: {\n lower_limit: -6.283185307179586,\n upper_limit: 6.283185307179586,\n },\n velocity: 3.34159255027771,\n acceleration: 40,\n torque: 150,\n },\n {\n position: {\n lower_limit: -6.283185307179586,\n upper_limit: 6.283185307179586,\n },\n velocity: 3.34159255027771,\n acceleration: 40,\n torque: 150,\n },\n {\n position: {\n lower_limit: -6.283185307179586,\n upper_limit: 6.283185307179586,\n },\n velocity: 3.34159255027771,\n acceleration: 40,\n torque: 28,\n },\n {\n position: {\n lower_limit: -6.283185307179586,\n upper_limit: 6.283185307179586,\n },\n velocity: 3.34159255027771,\n acceleration: 40,\n torque: 28,\n },\n {\n position: {\n lower_limit: -6.283185307179586,\n upper_limit: 6.283185307179586,\n },\n velocity: 3.34159255027771,\n acceleration: 40,\n torque: 28,\n },\n ],\n tcp: {\n velocity: 5000,\n },\n elbow: {\n velocity: 5000,\n },\n flange: {\n velocity: 5000,\n },\n },\n manual_limits: {\n joints: [\n {\n position: {\n lower_limit: -6.283185307179586,\n upper_limit: 6.283185307179586,\n },\n velocity: 3.34159255027771,\n acceleration: 40,\n torque: 150,\n },\n {\n position: {\n lower_limit: -6.283185307179586,\n upper_limit: 6.283185307179586,\n },\n velocity: 3.34159255027771,\n acceleration: 40,\n torque: 150,\n },\n {\n position: {\n lower_limit: -6.283185307179586,\n upper_limit: 6.283185307179586,\n },\n velocity: 3.34159255027771,\n acceleration: 40,\n torque: 150,\n },\n {\n position: {\n lower_limit: -6.283185307179586,\n upper_limit: 6.283185307179586,\n },\n velocity: 3.34159255027771,\n acceleration: 40,\n torque: 28,\n },\n {\n position: {\n lower_limit: -6.283185307179586,\n upper_limit: 6.283185307179586,\n },\n velocity: 3.34159255027771,\n acceleration: 40,\n torque: 28,\n },\n {\n position: {\n lower_limit: -6.283185307179586,\n upper_limit: 6.283185307179586,\n },\n velocity: 3.34159255027771,\n acceleration: 40,\n torque: 28,\n },\n ],\n tcp: {\n velocity: 5000,\n },\n },\n manual_t1_limits: {\n joints: [\n {\n position: {\n lower_limit: -6.283185307179586,\n upper_limit: 6.283185307179586,\n },\n velocity: 3.34159255027771,\n acceleration: 40,\n torque: 150,\n },\n {\n position: {\n lower_limit: -6.283185307179586,\n upper_limit: 6.283185307179586,\n },\n velocity: 3.34159255027771,\n acceleration: 40,\n torque: 150,\n },\n {\n position: {\n lower_limit: -6.283185307179586,\n upper_limit: 6.283185307179586,\n },\n velocity: 3.34159255027771,\n acceleration: 40,\n torque: 150,\n },\n {\n position: {\n lower_limit: -6.283185307179586,\n upper_limit: 6.283185307179586,\n },\n velocity: 3.34159255027771,\n acceleration: 40,\n torque: 28,\n },\n {\n position: {\n lower_limit: -6.283185307179586,\n upper_limit: 6.283185307179586,\n },\n velocity: 3.34159255027771,\n acceleration: 40,\n torque: 28,\n },\n {\n position: {\n lower_limit: -6.283185307179586,\n upper_limit: 6.283185307179586,\n },\n velocity: 3.34159255027771,\n acceleration: 40,\n torque: 28,\n },\n ],\n tcp: {\n velocity: 5000,\n },\n },\n manual_t2_limits: {\n joints: [\n {\n position: {\n lower_limit: -6.283185307179586,\n upper_limit: 6.283185307179586,\n },\n velocity: 3.34159255027771,\n acceleration: 40,\n torque: 150,\n },\n {\n position: {\n lower_limit: -6.283185307179586,\n upper_limit: 6.283185307179586,\n },\n velocity: 3.34159255027771,\n acceleration: 40,\n torque: 150,\n },\n {\n position: {\n lower_limit: -6.283185307179586,\n upper_limit: 6.283185307179586,\n },\n velocity: 3.34159255027771,\n acceleration: 40,\n torque: 150,\n },\n {\n position: {\n lower_limit: -6.283185307179586,\n upper_limit: 6.283185307179586,\n },\n velocity: 3.34159255027771,\n acceleration: 40,\n torque: 28,\n },\n {\n position: {\n lower_limit: -6.283185307179586,\n upper_limit: 6.283185307179586,\n },\n velocity: 3.34159255027771,\n acceleration: 40,\n torque: 28,\n },\n {\n position: {\n lower_limit: -6.283185307179586,\n upper_limit: 6.283185307179586,\n },\n velocity: 3.34159255027771,\n acceleration: 40,\n torque: 28,\n },\n ],\n tcp: {\n velocity: 5000,\n },\n },\n },\n serial_number: \"WBVirtualRobot\",\n }\n },\n },\n {\n method: \"GET\",\n path: \"/cells/:cellId/controllers/:controllerId/coordinate-systems\",\n handle() {\n return [\n {\n coordinate_system: \"\",\n name: \"world\",\n reference_coordinate_system: \"\",\n position: [0, 0, 0],\n orientation: [0, 0, 0],\n orientation_type: \"ROTATION_VECTOR\",\n },\n {\n coordinate_system: \"CS-0\",\n name: \"Default-CS\",\n reference_coordinate_system: \"\",\n position: [0, 0, 0],\n orientation: [0, 0, 0],\n orientation_type: \"ROTATION_VECTOR\",\n },\n ] //satisfies CoordinateSystems\n },\n },\n ]\n\n const method = config.method?.toUpperCase() || \"GET\"\n const path = `/cells${config.url?.split(\"/cells\")[1]?.split(\"?\")[0]}`\n\n for (const handler of apiHandlers) {\n const match = pathToRegexp.match(handler.path)(path || \"\")\n if (method === handler.method && match) {\n const json = handler.handle()\n return {\n status: 200,\n statusText: \"Success\",\n data: JSON.stringify(json),\n headers: {},\n config,\n request: {\n responseURL: config.url,\n },\n }\n }\n }\n\n throw new AxiosError(\n `No mock handler matched this request: ${method} ${path}`,\n \"404\",\n config,\n )\n\n // return {\n // status: 404,\n // statusText: \"Not Found\",\n // data: \"\",\n // headers: {},\n // config,\n // request: {\n // responseURL: config.url,\n // },\n // }\n }\n\n // Please note: Only very basic websocket mocking is done here, needs to be extended as needed\n handleWebsocketConnection(socket: AutoReconnectingWebsocket) {\n this.connections.push(socket)\n\n setTimeout(() => {\n socket.dispatchEvent(new Event(\"open\"))\n\n console.log(\"Websocket connection opened from\", socket.url)\n\n if (socket.url.includes(\"/state-stream\")) {\n socket.dispatchEvent(\n new MessageEvent(\"message\", {\n data: JSON.stringify(defaultMotionState),\n }),\n )\n }\n\n if (socket.url.includes(\"/execution/jogging\")) {\n socket.dispatchEvent(\n new MessageEvent(\"message\", {\n data: JSON.stringify({\n result: {\n message: \"string\",\n kind: \"INITIALIZE_RECEIVED\",\n },\n }),\n }),\n )\n }\n }, 10)\n }\n\n handleWebsocketMessage(socket: AutoReconnectingWebsocket, message: string) {\n console.log(`Received message on ${socket.url}`, message)\n }\n}\n\nconst defaultMotionState = {\n result: {\n motion_group: \"0@universalrobots-ur5e\",\n controller: \"universalrobots-ur5e\",\n timestamp: new Date().toISOString(),\n sequence_number: 1,\n joint_position: [\n 1.1699999570846558, -1.5700000524520874, 1.3600000143051147,\n 1.0299999713897705, 1.2899999618530273, 1.2799999713897705,\n ],\n joint_limit_reached: {\n limit_reached: [false, false, false, false, false, false],\n },\n standstill: false,\n flange_pose: {\n position: [1.3300010259703043, -409.2680714682808, 531.0203477065281],\n orientation: [\n 1.7564919306270736, -1.7542521568325058, 0.7326972590614671,\n ],\n },\n tcp_pose: {\n position: [1.3300010259703043, -409.2680714682808, 531.0203477065281],\n orientation: [\n 1.7564919306270736, -1.7542521568325058, 0.7326972590614671,\n ],\n },\n } satisfies MotionGroupState,\n}\n","/** biome-ignore-all lint/style/noNonNullAssertion: legacy code */\nimport type { Configuration as BaseConfiguration } from \"@wandelbots/nova-api/v2\"\nimport type { AxiosRequestConfig } from \"axios\"\nimport axios, { isAxiosError } from \"axios\"\nimport urlJoin from \"url-join\"\nimport { loginWithAuth0 } from \"../../LoginWithAuth0\"\nimport { AutoReconnectingWebsocket } from \"../AutoReconnectingWebsocket\"\nimport { availableStorage } from \"../availableStorage\"\nimport { MockNovaInstance } from \"./mock/MockNovaInstance\"\nimport { NovaCellAPIClient } from \"./NovaCellAPIClient\"\n\nexport type NovaClientConfig = {\n /**\n * Url of the deployed Nova instance to connect to\n * e.g. https://saeattii.instance.wandelbots.io\n */\n instanceUrl: string | \"https://mock.example.com\"\n\n /**\n * Identifier of the cell on the Nova instance to connect this client to.\n * If omitted, the default identifier \"cell\" is used.\n **/\n cellId?: string\n\n /**\n * Username for basic auth to the Nova instance.\n * @deprecated use accessToken instead\n */\n username?: string\n\n /**\n * Password for basic auth to the Nova instance.\n * @deprecated use accessToken instead\n */\n password?: string\n\n /**\n * Access token for Bearer authentication.\n */\n accessToken?: string\n} & Omit<BaseConfiguration, \"isJsonMime\" | \"basePath\">\n\ntype NovaClientConfigWithDefaults = NovaClientConfig & { cellId: string }\n\nfunction permissiveInstanceUrlParse(url: string): string {\n if (!url.startsWith(\"http\")) {\n url = `http://${url}`\n }\n\n return new URL(url).toString()\n}\n\n/**\n *\n * Client for connecting to a Nova instance and controlling robots.\n */\nexport class NovaClient {\n readonly api: NovaCellAPIClient\n readonly config: NovaClientConfigWithDefaults\n readonly mock?: MockNovaInstance\n authPromise: Promise<string | null> | null = null\n accessToken: string | null = null\n\n constructor(config: NovaClientConfig) {\n const cellId = config.cellId ?? \"cell\"\n this.config = {\n cellId,\n ...config,\n }\n this.accessToken =\n config.accessToken ||\n availableStorage.getString(\"wbjs.access_token\") ||\n null\n\n if (this.config.instanceUrl === \"https://mock.example.com\") {\n this.mock = new MockNovaInstance()\n } else {\n this.config.instanceUrl = permissiveInstanceUrlParse(\n this.config.instanceUrl,\n )\n }\n\n // Set up Axios instance with interceptor for token fetching\n const axiosInstance = axios.create({\n baseURL: urlJoin(this.config.instanceUrl, \"/api/v2\"),\n // TODO - backend needs to set proper CORS headers for this\n headers:\n typeof window !== \"undefined\" &&\n window.location.origin.includes(\"localhost\")\n ? {}\n : {\n // Identify the client to the backend for logging purposes\n \"X-Wandelbots-Client\": \"Wandelbots-Nova-JS-SDK\",\n },\n })\n\n axiosInstance.interceptors.request.use(async (request) => {\n if (!request.headers.Authorization) {\n if (this.accessToken) {\n request.headers.Authorization = `Bearer ${this.accessToken}`\n } else if (this.config.username && this.config.password) {\n request.headers.Authorization = `Basic ${btoa(`${config.username}:${config.password}`)}`\n }\n }\n return request\n })\n\n if (typeof window !== \"undefined\") {\n axiosInstance.interceptors.response.use(\n (r) => r,\n async (error) => {\n if (isAxiosError(error)) {\n if (error.response?.status === 401) {\n // If we hit a 401, attempt to login the user and retry with\n // a new access token\n try {\n await this.renewAuthentication()\n\n if (error.config) {\n if (this.accessToken) {\n error.config.headers.Authorization = `Bearer ${this.accessToken}`\n } else {\n delete error.config.headers.Authorization\n }\n return axiosInstance.request(error.config)\n }\n } catch (err) {\n return Promise.reject(err)\n }\n } else if (error.response?.status === 503) {\n // Check if the server as a whole is down\n const res = await fetch(window.location.href)\n if (res.status === 503) {\n // Go to 503 page\n window.location.reload()\n }\n }\n }\n\n return Promise.reject(error)\n },\n )\n }\n\n this.api = new NovaCellAPIClient(cellId, {\n ...config,\n basePath: urlJoin(this.config.instanceUrl, \"/api/v2\"),\n isJsonMime: (mime: string) => {\n return mime === \"application/json\"\n },\n baseOptions: {\n ...(this.mock\n ? ({\n adapter: (config) => {\n return this.mock!.handleAPIRequest(config)\n },\n } satisfies AxiosRequestConfig)\n : {}),\n ...config.baseOptions,\n },\n axiosInstance,\n })\n }\n\n async renewAuthentication(): Promise<void> {\n if (this.authPromise) {\n // Don't double up\n return\n }\n\n this.authPromise = loginWithAuth0(this.config.instanceUrl)\n try {\n this.accessToken = await this.authPromise\n if (this.accessToken) {\n // Cache access token so we don't need to log in every refresh\n availableStorage.setString(\"wbjs.access_token\", this.accessToken)\n } else {\n availableStorage.delete(\"wbjs.access_token\")\n }\n } finally {\n this.authPromise = null\n }\n }\n\n makeWebsocketURL(path: string): string {\n const url = new URL(\n urlJoin(\n this.config.instanceUrl,\n `/api/v2/cells/${this.config.cellId}`,\n path,\n ),\n )\n url.protocol = url.protocol.replace(\"http\", \"ws\")\n url.protocol = url.protocol.replace(\"https\", \"wss\")\n\n // If provided, add basic auth credentials to the URL\n // NOTE - basic auth is deprecated on websockets and doesn't work in Safari\n // use tokens instead\n if (this.accessToken) {\n url.searchParams.append(\"token\", this.accessToken)\n } else if (this.config.username && this.config.password) {\n url.username = this.config.username\n url.password = this.config.password\n }\n\n return url.toString()\n }\n\n /**\n * Retrieve an AutoReconnectingWebsocket to the given path on the Nova instance.\n * If you explicitly want to reconnect an existing websocket, call `reconnect`\n * on the returned object.\n */\n openReconnectingWebsocket(path: string) {\n return new AutoReconnectingWebsocket(this.makeWebsocketURL(path), {\n mock: this.mock,\n })\n }\n}\n","import type { Pose } from \"@wandelbots/nova-api/v2\"\n\n/**\n * Convert a Pose object representing a motion group position\n * into a string which represents that pose in Wandelscript.\n */\nexport function poseToWandelscriptString(\n pose: Pick<Pose, \"position\" | \"orientation\">,\n) {\n const position = [\n pose.position?.[0] ?? 0,\n pose.position?.[1] ?? 0,\n pose.position?.[2] ?? 0,\n ]\n\n const orientation = [\n pose.orientation?.[0] ?? 0,\n pose.orientation?.[1] ?? 0,\n pose.orientation?.[2] ?? 0,\n ]\n\n const positionValues = position.map((v) => v.toFixed(1))\n // Rotation needs more precision since it's in radians\n const rotationValues = orientation.map((v) => v.toFixed(4))\n\n return `(${positionValues.concat(rotationValues).join(\", \")})`\n}\n"],"mappings":"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SAAG;SAAE;QACnB,aAAa;SAAC;SAAG;SAAG;SAAE;QACvB;OACF,EACF;MACD,UAAU,EACR,UAAU;OACR,MAAM;OACN,SAAS;OACT,gBAAgB;QAAC;QAAG;QAAG;QAAE;OACzB,mBAAmB;QAAC;QAAG;QAAG;QAAE;OAC7B,EACF;MACD,YAAY;MACZ,eAAe;OACb;QACE,OAAO;QACP,GAAG;QACJ;OACD,EACE,GAAG,MACJ;OACD,EACE,GAAG,QACJ;OACD;QACE,OAAO;QACP,GAAG;QACJ;OACD;QACE,OAAO;QACP,GAAG;QACJ;OACD,EACE,GAAG,MACJ;OACF;MACD,kBAAkB;OAChB,aAAa;QACX,QAAQ;SACN;UACE,UAAU;WACR,aAAa;WACb,aAAa;WACd;UACD,UAAU;UACV,cAAc;UACd,QAAQ;UACT;SACD;UACE,UAAU;WACR,aAAa;WACb,aAAa;WACd;UACD,UAAU;UACV,cAAc;UACd,QAAQ;UACT;SACD;UACE,UAAU;WACR,aAAa;WACb,aAAa;WACd;UACD,UAAU;UACV,cAAc;UACd,QAAQ;UACT;SACD;UACE,UAAU;WACR,aAAa;WACb,aAAa;WACd;UACD,UAAU;UACV,cAAc;UACd,QAAQ;UACT;SACD;UACE,UAAU;WACR,aAAa;WACb,aAAa;WACd;UACD,UAAU;UACV,cAAc;UACd,QAAQ;UACT;SACD;UACE,UAAU;WACR,aAAa;WACb,aAAa;WACd;UACD,UAAU;UACV,cAAc;UACd,QAAQ;UACT;SACF;QACD,KAAK,EACH,UAAU,KACX;QACD,OAAO,EACL,UAAU,KACX;QACD,QAAQ,EACN,UAAU,KACX;QACF;OACD,eAAe;QACb,QAAQ;SACN;UACE,UAAU;WACR,aAAa;WACb,aAAa;WACd;UACD,UAAU;UACV,cAAc;UACd,QAAQ;UACT;SACD;UACE,UAAU;WACR,aAAa;WACb,aAAa;WACd;UACD,UAAU;UACV,cAAc;UACd,QAAQ;UACT;SACD;UACE,UAAU;WACR,aAAa;WACb,aAAa;WACd;UACD,UAAU;UACV,cAAc;UACd,QAAQ;UACT;SACD;UACE,UAAU;WACR,aAAa;WACb,aAAa;WACd;UACD,UAAU;UACV,cAAc;UACd,QAAQ;UACT;SACD;UACE,UAAU;WACR,aAAa;WACb,aAAa;WACd;UACD,UAAU;UACV,cAAc;UACd,QAAQ;UACT;SACD;UACE,UAAU;WACR,aAAa;WACb,aAAa;WACd;UACD,UAAU;UACV,cAAc;UACd,QAAQ;UACT;SACF;QACD,KAAK,EACH,UAAU,KACX;QACF;OACD,kBAAkB;QAChB,QAAQ;SACN;UACE,UAAU;WACR,aAAa;WACb,aAAa;WACd;UACD,UAAU;UACV,cAAc;UACd,QAAQ;UACT;SACD;UACE,UAAU;WACR,aAAa;WACb,aAAa;WACd;UACD,UAAU;UACV,cAAc;UACd,QAAQ;UACT;SACD;UACE,UAAU;WACR,aAAa;WACb,aAAa;WACd;UACD,UAAU;UACV,cAAc;UACd,QAAQ;UACT;SACD;UACE,UAAU;WACR,aAAa;WACb,aAAa;WACd;UACD,UAAU;UACV,cAAc;UACd,QAAQ;UACT;SACD;UACE,UAAU;WACR,aAAa;WACb,aAAa;WACd;UACD,UAAU;UACV,cAAc;UACd,QAAQ;UACT;SACD;UACE,UAAU;WACR,aAAa;WACb,aAAa;WACd;UACD,UAAU;UACV,cAAc;UACd,QAAQ;UACT;SACF;QACD,KAAK,EACH,UAAU,KACX;QACF;OACD,kBAAkB;QAChB,QAAQ;SACN;UACE,UAAU;WACR,aAAa;WACb,aAAa;WACd;UACD,UAAU;UACV,cAAc;UACd,QAAQ;UACT;SACD;UACE,UAAU;WACR,aAAa;WACb,aAAa;WACd;UACD,UAAU;UACV,cAAc;UACd,QAAQ;UACT;SACD;UACE,UAAU;WACR,aAAa;WACb,aAAa;WACd;UACD,UAAU;UACV,cAAc;UACd,QAAQ;UACT;SACD;UACE,UAAU;WACR,aAAa;WACb,aAAa;WACd;UACD,UAAU;UACV,cAAc;UACd,QAAQ;UACT;SACD;UACE,UAAU;WACR,aAAa;WACb,aAAa;WACd;UACD,UAAU;UACV,cAAc;UACd,QAAQ;UACT;SACD;UACE,UAAU;WACR,aAAa;WACb,aAAa;WACd;UACD,UAAU;UACV,cAAc;UACd,QAAQ;UAC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"}
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@wandelbots/nova-js",
3
3
  "type": "module",
4
- "version": "v3.3.1-pr.feature-add-program-client.114.5cf553e",
4
+ "version": "3.3.1",
5
5
  "description": "Official JS client for the Wandelbots API",
6
6
  "sideEffects": false,
7
7
  "packageManager": "pnpm@10.19.0",
@@ -14,7 +14,6 @@ import {
14
14
  KinematicsApi,
15
15
  MotionGroupApi,
16
16
  MotionGroupModelsApi,
17
- ProgramApi,
18
17
  StoreCollisionComponentsApi,
19
18
  StoreCollisionSetupsApi,
20
19
  StoreObjectApi,
@@ -28,7 +27,6 @@ import {
28
27
  } from "@wandelbots/nova-api/v2"
29
28
  import type { AxiosInstance } from "axios"
30
29
  import axios from "axios"
31
- import { ProgramsClient } from "./ProgramsClient.js"
32
30
 
33
31
  type OmitFirstArg<F> = F extends (x: any, ...args: infer P) => infer R
34
32
  ? (...args: P) => R
@@ -151,8 +149,6 @@ export class NovaCellAPIClient {
151
149
  readonly trajectoryExecution = this.withCellId(TrajectoryExecutionApi)
152
150
  readonly trajectoryCaching = this.withCellId(TrajectoryCachingApi)
153
151
 
154
- readonly programs = this.withCellId(ProgramApi)
155
-
156
152
  readonly application = this.withCellId(ApplicationApi)
157
153
  readonly applicationGlobal = this.withUnwrappedResponsesOnly(ApplicationApi)
158
154
 
@@ -175,13 +171,4 @@ export class NovaCellAPIClient {
175
171
  StoreCollisionComponentsApi,
176
172
  )
177
173
  readonly storeCollisionSetups = this.withCellId(StoreCollisionSetupsApi)
178
-
179
- // Enhanced programs client with convenient methods
180
- private _programsClient?: ProgramsClient
181
- get programsClient(): ProgramsClient {
182
- if (!this._programsClient) {
183
- this._programsClient = new ProgramsClient(this)
184
- }
185
- return this._programsClient
186
- }
187
174
  }
@@ -2,4 +2,3 @@ export * from "@wandelbots/nova-api/v2"
2
2
  export * from "./NovaCellAPIClient"
3
3
  export * from "./NovaClient"
4
4
  export * from "./wandelscriptUtils"
5
- export * from "./ProgramsClient"
@@ -1,150 +0,0 @@
1
- import type {
2
- Program,
3
- ProgramRun,
4
- ProgramRunState,
5
- ProgramStartRequest,
6
- ProgramApi,
7
- } from "@wandelbots/nova-api/v2"
8
- import type { NovaCellAPIClient, WithCellId } from "./NovaCellAPIClient.js"
9
-
10
- /**
11
- * Enhanced client for the Programs API providing intuitive program management
12
- */
13
- export class ProgramsClient {
14
- constructor(private client: NovaCellAPIClient) {}
15
-
16
- /**
17
- * Get the underlying programs API for direct access
18
- */
19
- get api(): WithCellId<ProgramApi> {
20
- return this.client.programs
21
- }
22
-
23
- /**
24
- * List all programs available in the cell
25
- */
26
- async list(): Promise<Program[]> {
27
- return await this.api.listPrograms()
28
- }
29
-
30
- /**
31
- * Get details of a specific program
32
- */
33
- async get(programId: string): Promise<Program> {
34
- return await this.api.getProgram(programId)
35
- }
36
-
37
- /**
38
- * Start a program with the given arguments
39
- */
40
- async start(
41
- programId: string,
42
- args: object = {},
43
- ): Promise<ProgramRun> {
44
- const startRequest: ProgramStartRequest = {
45
- arguments: args,
46
- }
47
- return await this.api.startProgram(programId, startRequest)
48
- }
49
-
50
- /**
51
- * Stop a running program
52
- */
53
- async stop(programId: string): Promise<void> {
54
- return await this.api.stopProgram(programId)
55
- }
56
-
57
- /**
58
- * Execute a program and wait for it to complete
59
- *
60
- * Note: This method has limitations due to current API constraints.
61
- * Real-time program state tracking will be available via NATS messaging
62
- * in future versions. For now, this provides basic start functionality.
63
- *
64
- * @param programId - The program identifier
65
- * @param args - Arguments to pass to the program
66
- * @param options - Basic execution options
67
- */
68
- async execute(
69
- programId: string,
70
- args: object = {},
71
- options: {
72
- onStart?: (run: ProgramRun) => void
73
- } = {},
74
- ): Promise<ProgramRun> {
75
- const { onStart } = options
76
-
77
- // Start the program
78
- const run = await this.start(programId, args)
79
-
80
- if (onStart) {
81
- onStart(run)
82
- }
83
-
84
- // Note: Cannot wait for completion due to API limitations
85
- // Real-time state tracking will be available via NATS messaging
86
- return run
87
- }
88
-
89
- /**
90
- * Create a program runner helper for a specific program
91
- */
92
- forProgram(programId: string): ProgramRunner {
93
- return new ProgramRunner(this, programId)
94
- }
95
- }
96
-
97
- /**
98
- * Helper class for managing a specific program
99
- */
100
- export class ProgramRunner {
101
- constructor(
102
- private programs: ProgramsClient,
103
- private programId: string,
104
- ) {}
105
-
106
- /**
107
- * Get program details
108
- */
109
- async getDetails(): Promise<Program> {
110
- return await this.programs.get(this.programId)
111
- }
112
-
113
- /**
114
- * Start this program
115
- */
116
- async start(args: object = {}): Promise<ProgramRun> {
117
- return await this.programs.start(this.programId, args)
118
- }
119
-
120
- /**
121
- * Stop this program
122
- */
123
- async stop(): Promise<void> {
124
- return await this.programs.stop(this.programId)
125
- }
126
-
127
- /**
128
- * Execute this program (start and get initial run information)
129
- *
130
- * Note: This method has limitations due to current API constraints.
131
- * Real-time program state tracking will be available via NATS messaging
132
- * in future versions.
133
- */
134
- async execute(
135
- args: object = {},
136
- options: {
137
- onStart?: (run: ProgramRun) => void
138
- } = {},
139
- ): Promise<ProgramRun> {
140
- return await this.programs.execute(this.programId, args, options)
141
- }
142
- }
143
-
144
- // Re-export types for convenience
145
- export type {
146
- Program,
147
- ProgramRun,
148
- ProgramRunState,
149
- ProgramStartRequest,
150
- }