@eyr1n/ros-cdr-client 0.0.1 → 0.0.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -5,14 +5,67 @@ type Branded<T, Brand> = T & {
5
5
  export type PublisherId = Branded<number, 'PublisherId'>;
6
6
  export type SubscriptionId = Branded<number, 'SubscriptionId'>;
7
7
  export type ServiceClientId = Branded<number, 'ServiceClientId'>;
8
+ export declare const QosBaseProfile: {
9
+ readonly SENSOR_DATA: "SENSOR_DATA";
10
+ readonly PARAMETERS: "PARAMETERS";
11
+ readonly DEFAULT: "DEFAULT";
12
+ readonly SERVICES_DEFAULT: "SERVICES_DEFAULT";
13
+ readonly PARAMETER_EVENTS: "PARAMETER_EVENTS";
14
+ readonly SYSTEM_DEFAULT: "SYSTEM_DEFAULT";
15
+ readonly BEST_AVAILABLE: "BEST_AVAILABLE";
16
+ };
17
+ export type QosBaseProfile = (typeof QosBaseProfile)[keyof typeof QosBaseProfile];
18
+ export declare const QosHistoryPolicy: {
19
+ readonly SYSTEM_DEFAULT: "SYSTEM_DEFAULT";
20
+ readonly KEEP_LAST: "KEEP_LAST";
21
+ readonly KEEP_ALL: "KEEP_ALL";
22
+ };
23
+ export type QosHistoryPolicy = (typeof QosHistoryPolicy)[keyof typeof QosHistoryPolicy];
24
+ export declare const QosReliabilityPolicy: {
25
+ readonly SYSTEM_DEFAULT: "SYSTEM_DEFAULT";
26
+ readonly RELIABLE: "RELIABLE";
27
+ readonly BEST_EFFORT: "BEST_EFFORT";
28
+ readonly BEST_AVAILABLE: "BEST_AVAILABLE";
29
+ };
30
+ export type QosReliabilityPolicy = (typeof QosReliabilityPolicy)[keyof typeof QosReliabilityPolicy];
31
+ export declare const QosDurabilityPolicy: {
32
+ readonly SYSTEM_DEFAULT: "SYSTEM_DEFAULT";
33
+ readonly TRANSIENT_LOCAL: "TRANSIENT_LOCAL";
34
+ readonly VOLATILE: "VOLATILE";
35
+ readonly BEST_AVAILABLE: "BEST_AVAILABLE";
36
+ };
37
+ export type QosDurabilityPolicy = (typeof QosDurabilityPolicy)[keyof typeof QosDurabilityPolicy];
38
+ export declare const QosLivelinessPolicy: {
39
+ readonly SYSTEM_DEFAULT: "SYSTEM_DEFAULT";
40
+ readonly AUTOMATIC: "AUTOMATIC";
41
+ readonly MANUAL_BY_TOPIC: "MANUAL_BY_TOPIC";
42
+ readonly BEST_AVAILABLE: "BEST_AVAILABLE";
43
+ };
44
+ export type QosLivelinessPolicy = (typeof QosLivelinessPolicy)[keyof typeof QosLivelinessPolicy];
45
+ export interface RmwTime {
46
+ sec: number;
47
+ nsec: number;
48
+ }
49
+ export interface QosProfile {
50
+ profile?: QosBaseProfile;
51
+ history?: QosHistoryPolicy;
52
+ depth?: number;
53
+ reliability?: QosReliabilityPolicy;
54
+ durability?: QosDurabilityPolicy;
55
+ deadline?: RmwTime;
56
+ lifespan?: RmwTime;
57
+ liveliness?: QosLivelinessPolicy;
58
+ livelinessLeaseDuration?: RmwTime;
59
+ avoidRosNamespaceConventions?: boolean;
60
+ }
8
61
  export declare class RosCdrClient {
9
62
  #private;
10
63
  constructor(ws: WebSocket);
11
- createPublisher(name: string, type: string): Promise<PublisherId>;
12
- createSubscription(name: string, type: string, callback: (message: DataView) => void): Promise<SubscriptionId>;
13
- createServiceClient(name: string, type: string): Promise<ServiceClientId>;
64
+ createPublisher(name: string, type: string, qos: QosProfile): Promise<PublisherId>;
65
+ createSubscription(name: string, type: string, qos: QosProfile, callback: (message: DataView) => void): Promise<SubscriptionId>;
66
+ createServiceClient(name: string, type: string, qos: QosProfile): Promise<ServiceClientId>;
14
67
  publish(id: PublisherId, message: Uint8Array): void;
15
- callService(id: ServiceClientId, callId: number, request: Uint8Array): Promise<DataView>;
68
+ callService(id: ServiceClientId, request: Uint8Array): Promise<DataView>;
16
69
  destroy(id: PublisherId | SubscriptionId | ServiceClientId): void;
17
70
  }
18
71
  export {};
@@ -1 +1 @@
1
- {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/index.ts"],"names":[],"mappings":"AAAA,QAAA,MAAM,KAAK,eAAW,CAAC;AACvB,KAAK,OAAO,CAAC,CAAC,EAAE,KAAK,IAAI,CAAC,GAAG;IAAE,CAAC,KAAK,CAAC,EAAE,KAAK,CAAA;CAAE,CAAC;AAgBhD,MAAM,MAAM,WAAW,GAAG,OAAO,CAAC,MAAM,EAAE,aAAa,CAAC,CAAC;AACzD,MAAM,MAAM,cAAc,GAAG,OAAO,CAAC,MAAM,EAAE,gBAAgB,CAAC,CAAC;AAC/D,MAAM,MAAM,eAAe,GAAG,OAAO,CAAC,MAAM,EAAE,iBAAiB,CAAC,CAAC;AAwGjE,qBAAa,YAAY;;gBAUX,EAAE,EAAE,SAAS;IAMnB,eAAe,CAAC,IAAI,EAAE,MAAM,EAAE,IAAI,EAAE,MAAM,GAAG,OAAO,CAAC,WAAW,CAAC;IAKjE,kBAAkB,CACtB,IAAI,EAAE,MAAM,EACZ,IAAI,EAAE,MAAM,EACZ,QAAQ,EAAE,CAAC,OAAO,EAAE,QAAQ,KAAK,IAAI,GACpC,OAAO,CAAC,cAAc,CAAC;IASpB,mBAAmB,CACvB,IAAI,EAAE,MAAM,EACZ,IAAI,EAAE,MAAM,GACX,OAAO,CAAC,eAAe,CAAC;IAK3B,OAAO,CAAC,EAAE,EAAE,WAAW,EAAE,OAAO,EAAE,UAAU;IAS5C,WAAW,CACT,EAAE,EAAE,eAAe,EACnB,MAAM,EAAE,MAAM,EACd,OAAO,EAAE,UAAU,GAClB,OAAO,CAAC,QAAQ,CAAC;IAepB,OAAO,CAAC,EAAE,EAAE,WAAW,GAAG,cAAc,GAAG,eAAe;CAmE3D"}
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/index.ts"],"names":[],"mappings":"AAAA,QAAA,MAAM,KAAK,eAAW,CAAC;AACvB,KAAK,OAAO,CAAC,CAAC,EAAE,KAAK,IAAI,CAAC,GAAG;IAAE,CAAC,KAAK,CAAC,EAAE,KAAK,CAAA;CAAE,CAAC;AAgBhD,MAAM,MAAM,WAAW,GAAG,OAAO,CAAC,MAAM,EAAE,aAAa,CAAC,CAAC;AACzD,MAAM,MAAM,cAAc,GAAG,OAAO,CAAC,MAAM,EAAE,gBAAgB,CAAC,CAAC;AAC/D,MAAM,MAAM,eAAe,GAAG,OAAO,CAAC,MAAM,EAAE,iBAAiB,CAAC,CAAC;AAEjE,eAAO,MAAM,cAAc;;;;;;;;CAQjB,CAAC;AACX,MAAM,MAAM,cAAc,GACxB,CAAC,OAAO,cAAc,CAAC,CAAC,MAAM,OAAO,cAAc,CAAC,CAAC;AAEvD,eAAO,MAAM,gBAAgB;;;;CAInB,CAAC;AACX,MAAM,MAAM,gBAAgB,GAC1B,CAAC,OAAO,gBAAgB,CAAC,CAAC,MAAM,OAAO,gBAAgB,CAAC,CAAC;AAE3D,eAAO,MAAM,oBAAoB;;;;;CAKvB,CAAC;AACX,MAAM,MAAM,oBAAoB,GAC9B,CAAC,OAAO,oBAAoB,CAAC,CAAC,MAAM,OAAO,oBAAoB,CAAC,CAAC;AAEnE,eAAO,MAAM,mBAAmB;;;;;CAKtB,CAAC;AACX,MAAM,MAAM,mBAAmB,GAC7B,CAAC,OAAO,mBAAmB,CAAC,CAAC,MAAM,OAAO,mBAAmB,CAAC,CAAC;AAEjE,eAAO,MAAM,mBAAmB;;;;;CAKtB,CAAC;AACX,MAAM,MAAM,mBAAmB,GAC7B,CAAC,OAAO,mBAAmB,CAAC,CAAC,MAAM,OAAO,mBAAmB,CAAC,CAAC;AAEjE,MAAM,WAAW,OAAO;IACtB,GAAG,EAAE,MAAM,CAAC;IACZ,IAAI,EAAE,MAAM,CAAC;CACd;AAED,MAAM,WAAW,UAAU;IACzB,OAAO,CAAC,EAAE,cAAc,CAAC;IACzB,OAAO,CAAC,EAAE,gBAAgB,CAAC;IAC3B,KAAK,CAAC,EAAE,MAAM,CAAC;IACf,WAAW,CAAC,EAAE,oBAAoB,CAAC;IACnC,UAAU,CAAC,EAAE,mBAAmB,CAAC;IACjC,QAAQ,CAAC,EAAE,OAAO,CAAC;IACnB,QAAQ,CAAC,EAAE,OAAO,CAAC;IACnB,UAAU,CAAC,EAAE,mBAAmB,CAAC;IACjC,uBAAuB,CAAC,EAAE,OAAO,CAAC;IAClC,4BAA4B,CAAC,EAAE,OAAO,CAAC;CACxC;AAqFD,qBAAa,YAAY;;gBAWX,EAAE,EAAE,SAAS;IAMnB,eAAe,CACnB,IAAI,EAAE,MAAM,EACZ,IAAI,EAAE,MAAM,EACZ,GAAG,EAAE,UAAU,GACd,OAAO,CAAC,WAAW,CAAC;IAWjB,kBAAkB,CACtB,IAAI,EAAE,MAAM,EACZ,IAAI,EAAE,MAAM,EACZ,GAAG,EAAE,UAAU,EACf,QAAQ,EAAE,CAAC,OAAO,EAAE,QAAQ,KAAK,IAAI,GACpC,OAAO,CAAC,cAAc,CAAC;IAepB,mBAAmB,CACvB,IAAI,EAAE,MAAM,EACZ,IAAI,EAAE,MAAM,EACZ,GAAG,EAAE,UAAU,GACd,OAAO,CAAC,eAAe,CAAC;IAW3B,OAAO,CAAC,EAAE,EAAE,WAAW,EAAE,OAAO,EAAE,UAAU;IAS5C,WAAW,CAAC,EAAE,EAAE,eAAe,EAAE,OAAO,EAAE,UAAU,GAAG,OAAO,CAAC,QAAQ,CAAC;IAexE,OAAO,CAAC,EAAE,EAAE,WAAW,GAAG,cAAc,GAAG,eAAe;CA8D3D"}
package/dist/src/index.js CHANGED
@@ -6,14 +6,38 @@ const OP_DESTROY = 'destroy';
6
6
  const OP_TOPIC = 1;
7
7
  const OP_SERVICE_REQUEST = 2;
8
8
  const OP_SERVICE_RESPONSE = 3;
9
- function isObject(value) {
10
- return value !== null && typeof value === 'object';
11
- }
12
- function isCreateOp(value) {
13
- return (value === OP_CREATE_PUBLISHER ||
14
- value === OP_CREATE_SUBSCRIPTION ||
15
- value === OP_CREATE_SERVICE_CLIENT);
16
- }
9
+ export const QosBaseProfile = {
10
+ SENSOR_DATA: 'SENSOR_DATA',
11
+ PARAMETERS: 'PARAMETERS',
12
+ DEFAULT: 'DEFAULT',
13
+ SERVICES_DEFAULT: 'SERVICES_DEFAULT',
14
+ PARAMETER_EVENTS: 'PARAMETER_EVENTS',
15
+ SYSTEM_DEFAULT: 'SYSTEM_DEFAULT',
16
+ BEST_AVAILABLE: 'BEST_AVAILABLE',
17
+ };
18
+ export const QosHistoryPolicy = {
19
+ SYSTEM_DEFAULT: 'SYSTEM_DEFAULT',
20
+ KEEP_LAST: 'KEEP_LAST',
21
+ KEEP_ALL: 'KEEP_ALL',
22
+ };
23
+ export const QosReliabilityPolicy = {
24
+ SYSTEM_DEFAULT: 'SYSTEM_DEFAULT',
25
+ RELIABLE: 'RELIABLE',
26
+ BEST_EFFORT: 'BEST_EFFORT',
27
+ BEST_AVAILABLE: 'BEST_AVAILABLE',
28
+ };
29
+ export const QosDurabilityPolicy = {
30
+ SYSTEM_DEFAULT: 'SYSTEM_DEFAULT',
31
+ TRANSIENT_LOCAL: 'TRANSIENT_LOCAL',
32
+ VOLATILE: 'VOLATILE',
33
+ BEST_AVAILABLE: 'BEST_AVAILABLE',
34
+ };
35
+ export const QosLivelinessPolicy = {
36
+ SYSTEM_DEFAULT: 'SYSTEM_DEFAULT',
37
+ AUTOMATIC: 'AUTOMATIC',
38
+ MANUAL_BY_TOPIC: 'MANUAL_BY_TOPIC',
39
+ BEST_AVAILABLE: 'BEST_AVAILABLE',
40
+ };
17
41
  function parseTextPayload(payload) {
18
42
  let response;
19
43
  try {
@@ -22,19 +46,19 @@ function parseTextPayload(payload) {
22
46
  catch {
23
47
  return null;
24
48
  }
25
- if (!isObject(response)) {
26
- return null;
27
- }
28
- if (!('op' in response) || !isCreateOp(response.op)) {
49
+ if (response === null || typeof response !== 'object') {
29
50
  return null;
30
51
  }
31
- if (!('name' in response) || typeof response.name !== 'string') {
52
+ if (!('id' in response) || typeof response.id !== 'number') {
32
53
  return null;
33
54
  }
34
- if (!('id' in response) || typeof response.id !== 'number') {
55
+ if (!('callId' in response) || typeof response.callId !== 'number') {
35
56
  return null;
36
57
  }
37
- return { op: response.op, name: response.name, id: response.id };
58
+ return {
59
+ id: response.id,
60
+ callId: response.callId,
61
+ };
38
62
  }
39
63
  function parseBinaryPayload(buffer) {
40
64
  const view = new DataView(buffer);
@@ -61,34 +85,47 @@ function parseBinaryPayload(buffer) {
61
85
  }
62
86
  return null;
63
87
  }
64
- function pendingCreateKey(op, name) {
65
- return `${op}:${name}`;
66
- }
67
- function serviceResponseKey(id, callId) {
68
- return `${id}:${callId}`;
69
- }
70
88
  export class RosCdrClient {
71
89
  #ws;
72
90
  #pendingCreates = new Map();
73
91
  #subscriptions = new Map();
74
92
  #serviceResponses = new Map();
93
+ #callId = 0;
75
94
  constructor(ws) {
76
95
  this.#ws = ws;
77
96
  this.#ws.binaryType = 'arraybuffer';
78
97
  this.#ws.onmessage = this.#onMessage.bind(this);
79
98
  }
80
- async createPublisher(name, type) {
81
- const request = { op: OP_CREATE_PUBLISHER, name, type };
99
+ async createPublisher(name, type, qos) {
100
+ const request = {
101
+ callId: this.#callId++,
102
+ op: OP_CREATE_PUBLISHER,
103
+ name,
104
+ type,
105
+ qos,
106
+ };
82
107
  return this.#sendCreateRequest(request);
83
108
  }
84
- async createSubscription(name, type, callback) {
85
- const request = { op: OP_CREATE_SUBSCRIPTION, name, type };
109
+ async createSubscription(name, type, qos, callback) {
110
+ const request = {
111
+ callId: this.#callId++,
112
+ op: OP_CREATE_SUBSCRIPTION,
113
+ name,
114
+ type,
115
+ qos,
116
+ };
86
117
  const id = await this.#sendCreateRequest(request);
87
118
  this.#subscriptions.set(id, callback);
88
119
  return id;
89
120
  }
90
- async createServiceClient(name, type) {
91
- const request = { op: OP_CREATE_SERVICE_CLIENT, name, type };
121
+ async createServiceClient(name, type, qos) {
122
+ const request = {
123
+ callId: this.#callId++,
124
+ op: OP_CREATE_SERVICE_CLIENT,
125
+ name,
126
+ type,
127
+ qos,
128
+ };
92
129
  return this.#sendCreateRequest(request);
93
130
  }
94
131
  publish(id, message) {
@@ -99,16 +136,16 @@ export class RosCdrClient {
99
136
  payload.set(message, 5);
100
137
  this.#sendBinaryPayload(payload);
101
138
  }
102
- callService(id, callId, request) {
139
+ callService(id, request) {
140
+ const callId = this.#callId++;
103
141
  const payload = new Uint8Array(1 + 4 + 4 + request.length);
104
142
  payload[0] = OP_SERVICE_REQUEST;
105
143
  const view = new DataView(payload.buffer);
106
144
  view.setUint32(1, id, true);
107
145
  view.setUint32(5, callId, true);
108
146
  payload.set(request, 9);
109
- const key = serviceResponseKey(id, callId);
110
147
  return new Promise((resolve) => {
111
- this.#serviceResponses.set(key, resolve);
148
+ this.#serviceResponses.set(callId, resolve);
112
149
  this.#sendBinaryPayload(payload);
113
150
  });
114
151
  }
@@ -119,7 +156,7 @@ export class RosCdrClient {
119
156
  }
120
157
  #sendCreateRequest(request) {
121
158
  return new Promise((resolve) => {
122
- this.#pendingCreates.set(pendingCreateKey(request.op, request.name), resolve);
159
+ this.#pendingCreates.set(request.callId, resolve);
123
160
  this.#sendTextPayload(request);
124
161
  });
125
162
  }
@@ -144,10 +181,9 @@ export class RosCdrClient {
144
181
  if (!response) {
145
182
  return;
146
183
  }
147
- const key = pendingCreateKey(response.op, response.name);
148
- const callback = this.#pendingCreates.get(key);
184
+ const callback = this.#pendingCreates.get(response.callId);
149
185
  if (callback) {
150
- this.#pendingCreates.delete(key);
186
+ this.#pendingCreates.delete(response.callId);
151
187
  callback(response.id);
152
188
  }
153
189
  }
@@ -161,10 +197,9 @@ export class RosCdrClient {
161
197
  return;
162
198
  }
163
199
  if (message.opcode === OP_SERVICE_RESPONSE) {
164
- const key = serviceResponseKey(message.id, message.callId);
165
- const callback = this.#serviceResponses.get(key);
200
+ const callback = this.#serviceResponses.get(message.callId);
166
201
  if (callback) {
167
- this.#serviceResponses.delete(key);
202
+ this.#serviceResponses.delete(message.callId);
168
203
  callback(message.message);
169
204
  }
170
205
  return;
@@ -1 +1 @@
1
- {"version":3,"file":"index.js","sourceRoot":"","sources":["../../src/index.ts"],"names":[],"mappings":"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"}
1
+ {"version":3,"file":"index.js","sourceRoot":"","sources":["../../src/index.ts"],"names":[],"mappings":"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"}
@@ -1 +1 @@
1
- {"fileNames":["../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es5.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2015.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2016.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2017.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2018.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2019.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2020.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2021.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2022.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2023.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.dom.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.dom.iterable.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.dom.asynciterable.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.webworker.importscripts.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.scripthost.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2015.core.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2015.collection.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2015.generator.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2015.iterable.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2015.promise.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2015.proxy.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2015.reflect.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2015.symbol.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2015.symbol.wellknown.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2016.array.include.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2016.intl.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2017.arraybuffer.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2017.date.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2017.object.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2017.sharedmemory.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2017.string.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2017.intl.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2017.typedarrays.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2018.asyncgenerator.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2018.asynciterable.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2018.intl.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2018.promise.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2018.regexp.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2019.array.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2019.object.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2019.string.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2019.symbol.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2019.intl.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2020.bigint.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2020.date.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2020.promise.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2020.sharedmemory.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2020.string.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2020.symbol.wellknown.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2020.intl.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2020.number.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2021.promise.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2021.string.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2021.weakref.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2021.intl.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2022.array.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2022.error.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2022.intl.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2022.object.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2022.string.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2022.regexp.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2023.array.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2023.collection.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2023.intl.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.decorators.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.decorators.legacy.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2023.full.d.ts","../src/index.ts"],"fileInfos":[{"version":"c430d44666289dae81f30fa7b2edebf186ecc91a2d4c71266ea6ae76388792e1","affectsGlobalScope":true,"impliedFormat":1},{"version":"45b7ab580deca34ae9729e97c13cfd999df04416a79116c3bfb483804f85ded4","impliedFormat":1},{"version":"3facaf05f0c5fc569c5649dd359892c98a85557e3e0c847964caeb67076f4d75","impliedFormat":1},{"version":"e44bb8bbac7f10ecc786703fe0a6a4b952189f908707980ba8f3c8975a760962","impliedFormat":1},{"version":"5e1c4c362065a6b95ff952c0eab010f04dcd2c3494e813b493ecfd4fcb9fc0d8","impliedFormat":1},{"version":"68d73b4a11549f9c0b7d352d10e91e5dca8faa3322bfb77b661839c42b1ddec7","impliedFormat":1},{"version":"5efce4fc3c29ea84e8928f97adec086e3dc876365e0982cc8479a07954a3efd4","impliedFormat":1},{"version":"feecb1be483ed332fad555aff858affd90a48ab19ba7272ee084704eb7167569","impliedFormat":1},{"version":"ee7bad0c15b58988daa84371e0b89d313b762ab83cb5b31b8a2d1162e8eb41c2","impliedFormat":1},{"version":"27bdc30a0e32783366a5abeda841bc22757c1797de8681bbe81fbc735eeb1c10","impliedFormat":1},{"version":"080941d9f9ff9307f7e27a83bcd888b7c8270716c39af943532438932ec1d0b9","affectsGlobalScope":true,"impliedFormat":1},{"version":"2e80ee7a49e8ac312cc11b77f1475804bee36b3b2bc896bead8b6e1266befb43","affectsGlobalScope":true,"impliedFormat":1},{"version":"d7a3c8b952931daebdfc7a2897c53c0a1c73624593fa070e46bd537e64dcd20a","affectsGlobalScope":true,"impliedFormat":1},{"version":"80e18897e5884b6723488d4f5652167e7bb5024f946743134ecc4aa4ee731f89","affectsGlobalScope":true,"impliedFormat":1},{"version":"cd034f499c6cdca722b60c04b5b1b78e058487a7085a8e0d6fb50809947ee573","affectsGlobalScope":true,"impliedFormat":1},{"version":"c57796738e7f83dbc4b8e65132f11a377649c00dd3eee333f672b8f0a6bea671","affectsGlobalScope":true,"impliedFormat":1},{"version":"dc2df20b1bcdc8c2d34af4926e2c3ab15ffe1160a63e58b7e09833f616efff44","affectsGlobalScope":true,"impliedFormat":1},{"version":"515d0b7b9bea2e31ea4ec968e9edd2c39d3eebf4a2d5cbd04e88639819ae3b71","affectsGlobalScope":true,"impliedFormat":1},{"version":"0559b1f683ac7505ae451f9a96ce4c3c92bdc71411651ca6ddb0e88baaaad6a3","affectsGlobalScope":true,"impliedFormat":1},{"version":"0dc1e7ceda9b8b9b455c3a2d67b0412feab00bd2f66656cd8850e8831b08b537","affectsGlobalScope":true,"impliedFormat":1},{"version":"ce691fb9e5c64efb9547083e4a34091bcbe5bdb41027e310ebba8f7d96a98671","affectsGlobalScope":true,"impliedFormat":1},{"version":"8d697a2a929a5fcb38b7a65594020fcef05ec1630804a33748829c5ff53640d0","affectsGlobalScope":true,"impliedFormat":1},{"version":"4ff2a353abf8a80ee399af572debb8faab2d33ad38c4b4474cff7f26e7653b8d","affectsGlobalScope":true,"impliedFormat":1},{"version":"fb0f136d372979348d59b3f5020b4cdb81b5504192b1cacff5d1fbba29378aa1","affectsGlobalScope":true,"impliedFormat":1},{"version":"d15bea3d62cbbdb9797079416b8ac375ae99162a7fba5de2c6c505446486ac0a","affectsGlobalScope":true,"impliedFormat":1},{"version":"68d18b664c9d32a7336a70235958b8997ebc1c3b8505f4f1ae2b7e7753b87618","affectsGlobalScope":true,"impliedFormat":1},{"version":"eb3d66c8327153d8fa7dd03f9c58d351107fe824c79e9b56b462935176cdf12a","affectsGlobalScope":true,"impliedFormat":1},{"version":"38f0219c9e23c915ef9790ab1d680440d95419ad264816fa15009a8851e79119","affectsGlobalScope":true,"impliedFormat":1},{"version":"69ab18c3b76cd9b1be3d188eaf8bba06112ebbe2f47f6c322b5105a6fbc45a2e","affectsGlobalScope":true,"impliedFormat":1},{"version":"a680117f487a4d2f30ea46f1b4b7f58bef1480456e18ba53ee85c2746eeca012","affectsGlobalScope":true,"impliedFormat":1},{"version":"2f11ff796926e0832f9ae148008138ad583bd181899ab7dd768a2666700b1893","affectsGlobalScope":true,"impliedFormat":1},{"version":"4de680d5bb41c17f7f68e0419412ca23c98d5749dcaaea1896172f06435891fc","affectsGlobalScope":true,"impliedFormat":1},{"version":"954296b30da6d508a104a3a0b5d96b76495c709785c1d11610908e63481ee667","affectsGlobalScope":true,"impliedFormat":1},{"version":"ac9538681b19688c8eae65811b329d3744af679e0bdfa5d842d0e32524c73e1c","affectsGlobalScope":true,"impliedFormat":1},{"version":"0a969edff4bd52585473d24995c5ef223f6652d6ef46193309b3921d65dd4376","affectsGlobalScope":true,"impliedFormat":1},{"version":"9e9fbd7030c440b33d021da145d3232984c8bb7916f277e8ffd3dc2e3eae2bdb","affectsGlobalScope":true,"impliedFormat":1},{"version":"811ec78f7fefcabbda4bfa93b3eb67d9ae166ef95f9bff989d964061cbf81a0c","affectsGlobalScope":true,"impliedFormat":1},{"version":"717937616a17072082152a2ef351cb51f98802fb4b2fdabd32399843875974ca","affectsGlobalScope":true,"impliedFormat":1},{"version":"d7e7d9b7b50e5f22c915b525acc5a49a7a6584cf8f62d0569e557c5cfc4b2ac2","affectsGlobalScope":true,"impliedFormat":1},{"version":"71c37f4c9543f31dfced6c7840e068c5a5aacb7b89111a4364b1d5276b852557","affectsGlobalScope":true,"impliedFormat":1},{"version":"576711e016cf4f1804676043e6a0a5414252560eb57de9faceee34d79798c850","affectsGlobalScope":true,"impliedFormat":1},{"version":"89c1b1281ba7b8a96efc676b11b264de7a8374c5ea1e6617f11880a13fc56dc6","affectsGlobalScope":true,"impliedFormat":1},{"version":"74f7fa2d027d5b33eb0471c8e82a6c87216223181ec31247c357a3e8e2fddc5b","affectsGlobalScope":true,"impliedFormat":1},{"version":"d6d7ae4d1f1f3772e2a3cde568ed08991a8ae34a080ff1151af28b7f798e22ca","affectsGlobalScope":true,"impliedFormat":1},{"version":"063600664504610fe3e99b717a1223f8b1900087fab0b4cad1496a114744f8df","affectsGlobalScope":true,"impliedFormat":1},{"version":"934019d7e3c81950f9a8426d093458b65d5aff2c7c1511233c0fd5b941e608ab","affectsGlobalScope":true,"impliedFormat":1},{"version":"52ada8e0b6e0482b728070b7639ee42e83a9b1c22d205992756fe020fd9f4a47","affectsGlobalScope":true,"impliedFormat":1},{"version":"3bdefe1bfd4d6dee0e26f928f93ccc128f1b64d5d501ff4a8cf3c6371200e5e6","affectsGlobalScope":true,"impliedFormat":1},{"version":"59fb2c069260b4ba00b5643b907ef5d5341b167e7d1dbf58dfd895658bda2867","affectsGlobalScope":true,"impliedFormat":1},{"version":"639e512c0dfc3fad96a84caad71b8834d66329a1f28dc95e3946c9b58176c73a","affectsGlobalScope":true,"impliedFormat":1},{"version":"368af93f74c9c932edd84c58883e736c9e3d53cec1fe24c0b0ff451f529ceab1","affectsGlobalScope":true,"impliedFormat":1},{"version":"af3dd424cf267428f30ccfc376f47a2c0114546b55c44d8c0f1d57d841e28d74","affectsGlobalScope":true,"impliedFormat":1},{"version":"995c005ab91a498455ea8dfb63aa9f83fa2ea793c3d8aa344be4a1678d06d399","affectsGlobalScope":true,"impliedFormat":1},{"version":"959d36cddf5e7d572a65045b876f2956c973a586da58e5d26cde519184fd9b8a","affectsGlobalScope":true,"impliedFormat":1},{"version":"965f36eae237dd74e6cca203a43e9ca801ce38824ead814728a2807b1910117d","affectsGlobalScope":true,"impliedFormat":1},{"version":"3925a6c820dcb1a06506c90b1577db1fdbf7705d65b62b99dce4be75c637e26b","affectsGlobalScope":true,"impliedFormat":1},{"version":"0a3d63ef2b853447ec4f749d3f368ce642264246e02911fcb1590d8c161b8005","affectsGlobalScope":true,"impliedFormat":1},{"version":"8cdf8847677ac7d20486e54dd3fcf09eda95812ac8ace44b4418da1bbbab6eb8","affectsGlobalScope":true,"impliedFormat":1},{"version":"8444af78980e3b20b49324f4a16ba35024fef3ee069a0eb67616ea6ca821c47a","affectsGlobalScope":true,"impliedFormat":1},{"version":"3287d9d085fbd618c3971944b65b4be57859f5415f495b33a6adc994edd2f004","affectsGlobalScope":true,"impliedFormat":1},{"version":"b4b67b1a91182421f5df999988c690f14d813b9850b40acd06ed44691f6727ad","affectsGlobalScope":true,"impliedFormat":1},{"version":"df83c2a6c73228b625b0beb6669c7ee2a09c914637e2d35170723ad49c0f5cd4","affectsGlobalScope":true,"impliedFormat":1},{"version":"436aaf437562f276ec2ddbee2f2cdedac7664c1e4c1d2c36839ddd582eeb3d0a","affectsGlobalScope":true,"impliedFormat":1},{"version":"8e3c06ea092138bf9fa5e874a1fdbc9d54805d074bee1de31b99a11e2fec239d","affectsGlobalScope":true,"impliedFormat":1},{"version":"8e7f8264d0fb4c5339605a15daadb037bf238c10b654bb3eee14208f860a32ea","affectsGlobalScope":true,"impliedFormat":1},{"version":"782dec38049b92d4e85c1585fbea5474a219c6984a35b004963b00beb1aab538","affectsGlobalScope":true,"impliedFormat":1},{"version":"785921608325fa246b450f05b238f4b3ed659f1099af278ce9ebbc9416a13f1d","impliedFormat":1},{"version":"198675eb0b5219336c2e6caf052ee50da3b4193d244fa514083ddf835b1c588c","signature":"2e02609ee5dc68e0537f67b5713a819779697beb3c5796fbabde9fa354f534b7","impliedFormat":99}],"root":[68],"options":{"composite":true,"declaration":true,"declarationMap":true,"module":100,"outDir":"./","skipLibCheck":true,"sourceMap":true,"strict":true,"target":10,"verbatimModuleSyntax":true},"latestChangedDtsFile":"./src/index.d.ts","version":"5.9.3"}
1
+ {"fileNames":["../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es5.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2015.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2016.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2017.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2018.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2019.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2020.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2021.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2022.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2023.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.dom.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.dom.iterable.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.dom.asynciterable.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.webworker.importscripts.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.scripthost.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2015.core.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2015.collection.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2015.generator.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2015.iterable.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2015.promise.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2015.proxy.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2015.reflect.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2015.symbol.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2015.symbol.wellknown.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2016.array.include.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2016.intl.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2017.arraybuffer.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2017.date.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2017.object.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2017.sharedmemory.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2017.string.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2017.intl.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2017.typedarrays.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2018.asyncgenerator.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2018.asynciterable.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2018.intl.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2018.promise.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2018.regexp.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2019.array.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2019.object.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2019.string.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2019.symbol.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2019.intl.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2020.bigint.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2020.date.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2020.promise.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2020.sharedmemory.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2020.string.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2020.symbol.wellknown.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2020.intl.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2020.number.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2021.promise.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2021.string.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2021.weakref.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2021.intl.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2022.array.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2022.error.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2022.intl.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2022.object.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2022.string.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2022.regexp.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2023.array.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2023.collection.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2023.intl.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.decorators.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.decorators.legacy.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2023.full.d.ts","../src/index.ts"],"fileInfos":[{"version":"c430d44666289dae81f30fa7b2edebf186ecc91a2d4c71266ea6ae76388792e1","affectsGlobalScope":true,"impliedFormat":1},{"version":"45b7ab580deca34ae9729e97c13cfd999df04416a79116c3bfb483804f85ded4","impliedFormat":1},{"version":"3facaf05f0c5fc569c5649dd359892c98a85557e3e0c847964caeb67076f4d75","impliedFormat":1},{"version":"e44bb8bbac7f10ecc786703fe0a6a4b952189f908707980ba8f3c8975a760962","impliedFormat":1},{"version":"5e1c4c362065a6b95ff952c0eab010f04dcd2c3494e813b493ecfd4fcb9fc0d8","impliedFormat":1},{"version":"68d73b4a11549f9c0b7d352d10e91e5dca8faa3322bfb77b661839c42b1ddec7","impliedFormat":1},{"version":"5efce4fc3c29ea84e8928f97adec086e3dc876365e0982cc8479a07954a3efd4","impliedFormat":1},{"version":"feecb1be483ed332fad555aff858affd90a48ab19ba7272ee084704eb7167569","impliedFormat":1},{"version":"ee7bad0c15b58988daa84371e0b89d313b762ab83cb5b31b8a2d1162e8eb41c2","impliedFormat":1},{"version":"27bdc30a0e32783366a5abeda841bc22757c1797de8681bbe81fbc735eeb1c10","impliedFormat":1},{"version":"080941d9f9ff9307f7e27a83bcd888b7c8270716c39af943532438932ec1d0b9","affectsGlobalScope":true,"impliedFormat":1},{"version":"2e80ee7a49e8ac312cc11b77f1475804bee36b3b2bc896bead8b6e1266befb43","affectsGlobalScope":true,"impliedFormat":1},{"version":"d7a3c8b952931daebdfc7a2897c53c0a1c73624593fa070e46bd537e64dcd20a","affectsGlobalScope":true,"impliedFormat":1},{"version":"80e18897e5884b6723488d4f5652167e7bb5024f946743134ecc4aa4ee731f89","affectsGlobalScope":true,"impliedFormat":1},{"version":"cd034f499c6cdca722b60c04b5b1b78e058487a7085a8e0d6fb50809947ee573","affectsGlobalScope":true,"impliedFormat":1},{"version":"c57796738e7f83dbc4b8e65132f11a377649c00dd3eee333f672b8f0a6bea671","affectsGlobalScope":true,"impliedFormat":1},{"version":"dc2df20b1bcdc8c2d34af4926e2c3ab15ffe1160a63e58b7e09833f616efff44","affectsGlobalScope":true,"impliedFormat":1},{"version":"515d0b7b9bea2e31ea4ec968e9edd2c39d3eebf4a2d5cbd04e88639819ae3b71","affectsGlobalScope":true,"impliedFormat":1},{"version":"0559b1f683ac7505ae451f9a96ce4c3c92bdc71411651ca6ddb0e88baaaad6a3","affectsGlobalScope":true,"impliedFormat":1},{"version":"0dc1e7ceda9b8b9b455c3a2d67b0412feab00bd2f66656cd8850e8831b08b537","affectsGlobalScope":true,"impliedFormat":1},{"version":"ce691fb9e5c64efb9547083e4a34091bcbe5bdb41027e310ebba8f7d96a98671","affectsGlobalScope":true,"impliedFormat":1},{"version":"8d697a2a929a5fcb38b7a65594020fcef05ec1630804a33748829c5ff53640d0","affectsGlobalScope":true,"impliedFormat":1},{"version":"4ff2a353abf8a80ee399af572debb8faab2d33ad38c4b4474cff7f26e7653b8d","affectsGlobalScope":true,"impliedFormat":1},{"version":"fb0f136d372979348d59b3f5020b4cdb81b5504192b1cacff5d1fbba29378aa1","affectsGlobalScope":true,"impliedFormat":1},{"version":"d15bea3d62cbbdb9797079416b8ac375ae99162a7fba5de2c6c505446486ac0a","affectsGlobalScope":true,"impliedFormat":1},{"version":"68d18b664c9d32a7336a70235958b8997ebc1c3b8505f4f1ae2b7e7753b87618","affectsGlobalScope":true,"impliedFormat":1},{"version":"eb3d66c8327153d8fa7dd03f9c58d351107fe824c79e9b56b462935176cdf12a","affectsGlobalScope":true,"impliedFormat":1},{"version":"38f0219c9e23c915ef9790ab1d680440d95419ad264816fa15009a8851e79119","affectsGlobalScope":true,"impliedFormat":1},{"version":"69ab18c3b76cd9b1be3d188eaf8bba06112ebbe2f47f6c322b5105a6fbc45a2e","affectsGlobalScope":true,"impliedFormat":1},{"version":"a680117f487a4d2f30ea46f1b4b7f58bef1480456e18ba53ee85c2746eeca012","affectsGlobalScope":true,"impliedFormat":1},{"version":"2f11ff796926e0832f9ae148008138ad583bd181899ab7dd768a2666700b1893","affectsGlobalScope":true,"impliedFormat":1},{"version":"4de680d5bb41c17f7f68e0419412ca23c98d5749dcaaea1896172f06435891fc","affectsGlobalScope":true,"impliedFormat":1},{"version":"954296b30da6d508a104a3a0b5d96b76495c709785c1d11610908e63481ee667","affectsGlobalScope":true,"impliedFormat":1},{"version":"ac9538681b19688c8eae65811b329d3744af679e0bdfa5d842d0e32524c73e1c","affectsGlobalScope":true,"impliedFormat":1},{"version":"0a969edff4bd52585473d24995c5ef223f6652d6ef46193309b3921d65dd4376","affectsGlobalScope":true,"impliedFormat":1},{"version":"9e9fbd7030c440b33d021da145d3232984c8bb7916f277e8ffd3dc2e3eae2bdb","affectsGlobalScope":true,"impliedFormat":1},{"version":"811ec78f7fefcabbda4bfa93b3eb67d9ae166ef95f9bff989d964061cbf81a0c","affectsGlobalScope":true,"impliedFormat":1},{"version":"717937616a17072082152a2ef351cb51f98802fb4b2fdabd32399843875974ca","affectsGlobalScope":true,"impliedFormat":1},{"version":"d7e7d9b7b50e5f22c915b525acc5a49a7a6584cf8f62d0569e557c5cfc4b2ac2","affectsGlobalScope":true,"impliedFormat":1},{"version":"71c37f4c9543f31dfced6c7840e068c5a5aacb7b89111a4364b1d5276b852557","affectsGlobalScope":true,"impliedFormat":1},{"version":"576711e016cf4f1804676043e6a0a5414252560eb57de9faceee34d79798c850","affectsGlobalScope":true,"impliedFormat":1},{"version":"89c1b1281ba7b8a96efc676b11b264de7a8374c5ea1e6617f11880a13fc56dc6","affectsGlobalScope":true,"impliedFormat":1},{"version":"74f7fa2d027d5b33eb0471c8e82a6c87216223181ec31247c357a3e8e2fddc5b","affectsGlobalScope":true,"impliedFormat":1},{"version":"d6d7ae4d1f1f3772e2a3cde568ed08991a8ae34a080ff1151af28b7f798e22ca","affectsGlobalScope":true,"impliedFormat":1},{"version":"063600664504610fe3e99b717a1223f8b1900087fab0b4cad1496a114744f8df","affectsGlobalScope":true,"impliedFormat":1},{"version":"934019d7e3c81950f9a8426d093458b65d5aff2c7c1511233c0fd5b941e608ab","affectsGlobalScope":true,"impliedFormat":1},{"version":"52ada8e0b6e0482b728070b7639ee42e83a9b1c22d205992756fe020fd9f4a47","affectsGlobalScope":true,"impliedFormat":1},{"version":"3bdefe1bfd4d6dee0e26f928f93ccc128f1b64d5d501ff4a8cf3c6371200e5e6","affectsGlobalScope":true,"impliedFormat":1},{"version":"59fb2c069260b4ba00b5643b907ef5d5341b167e7d1dbf58dfd895658bda2867","affectsGlobalScope":true,"impliedFormat":1},{"version":"639e512c0dfc3fad96a84caad71b8834d66329a1f28dc95e3946c9b58176c73a","affectsGlobalScope":true,"impliedFormat":1},{"version":"368af93f74c9c932edd84c58883e736c9e3d53cec1fe24c0b0ff451f529ceab1","affectsGlobalScope":true,"impliedFormat":1},{"version":"af3dd424cf267428f30ccfc376f47a2c0114546b55c44d8c0f1d57d841e28d74","affectsGlobalScope":true,"impliedFormat":1},{"version":"995c005ab91a498455ea8dfb63aa9f83fa2ea793c3d8aa344be4a1678d06d399","affectsGlobalScope":true,"impliedFormat":1},{"version":"959d36cddf5e7d572a65045b876f2956c973a586da58e5d26cde519184fd9b8a","affectsGlobalScope":true,"impliedFormat":1},{"version":"965f36eae237dd74e6cca203a43e9ca801ce38824ead814728a2807b1910117d","affectsGlobalScope":true,"impliedFormat":1},{"version":"3925a6c820dcb1a06506c90b1577db1fdbf7705d65b62b99dce4be75c637e26b","affectsGlobalScope":true,"impliedFormat":1},{"version":"0a3d63ef2b853447ec4f749d3f368ce642264246e02911fcb1590d8c161b8005","affectsGlobalScope":true,"impliedFormat":1},{"version":"8cdf8847677ac7d20486e54dd3fcf09eda95812ac8ace44b4418da1bbbab6eb8","affectsGlobalScope":true,"impliedFormat":1},{"version":"8444af78980e3b20b49324f4a16ba35024fef3ee069a0eb67616ea6ca821c47a","affectsGlobalScope":true,"impliedFormat":1},{"version":"3287d9d085fbd618c3971944b65b4be57859f5415f495b33a6adc994edd2f004","affectsGlobalScope":true,"impliedFormat":1},{"version":"b4b67b1a91182421f5df999988c690f14d813b9850b40acd06ed44691f6727ad","affectsGlobalScope":true,"impliedFormat":1},{"version":"df83c2a6c73228b625b0beb6669c7ee2a09c914637e2d35170723ad49c0f5cd4","affectsGlobalScope":true,"impliedFormat":1},{"version":"436aaf437562f276ec2ddbee2f2cdedac7664c1e4c1d2c36839ddd582eeb3d0a","affectsGlobalScope":true,"impliedFormat":1},{"version":"8e3c06ea092138bf9fa5e874a1fdbc9d54805d074bee1de31b99a11e2fec239d","affectsGlobalScope":true,"impliedFormat":1},{"version":"8e7f8264d0fb4c5339605a15daadb037bf238c10b654bb3eee14208f860a32ea","affectsGlobalScope":true,"impliedFormat":1},{"version":"782dec38049b92d4e85c1585fbea5474a219c6984a35b004963b00beb1aab538","affectsGlobalScope":true,"impliedFormat":1},{"version":"785921608325fa246b450f05b238f4b3ed659f1099af278ce9ebbc9416a13f1d","impliedFormat":1},{"version":"49d9f30df30969080cdbb391fb2cb1b79ea7b9dd28ef5af619763a59e63bc17f","signature":"2eeca1863a8443fbd9d6ce402d48043b6d6c6ce3c3d30484aa1fdb9a2497012b","impliedFormat":99}],"root":[68],"options":{"composite":true,"declaration":true,"declarationMap":true,"module":100,"outDir":"./","skipLibCheck":true,"sourceMap":true,"strict":true,"target":10,"verbatimModuleSyntax":true},"latestChangedDtsFile":"./src/index.d.ts","version":"5.9.3"}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@eyr1n/ros-cdr-client",
3
- "version": "0.0.1",
3
+ "version": "0.0.2",
4
4
  "type": "module",
5
5
  "main": "dist/src/index.js",
6
6
  "types": "dist/src/index.d.ts",
package/src/index.ts CHANGED
@@ -19,16 +19,82 @@ export type PublisherId = Branded<number, 'PublisherId'>;
19
19
  export type SubscriptionId = Branded<number, 'SubscriptionId'>;
20
20
  export type ServiceClientId = Branded<number, 'ServiceClientId'>;
21
21
 
22
+ export const QosBaseProfile = {
23
+ SENSOR_DATA: 'SENSOR_DATA',
24
+ PARAMETERS: 'PARAMETERS',
25
+ DEFAULT: 'DEFAULT',
26
+ SERVICES_DEFAULT: 'SERVICES_DEFAULT',
27
+ PARAMETER_EVENTS: 'PARAMETER_EVENTS',
28
+ SYSTEM_DEFAULT: 'SYSTEM_DEFAULT',
29
+ BEST_AVAILABLE: 'BEST_AVAILABLE',
30
+ } as const;
31
+ export type QosBaseProfile =
32
+ (typeof QosBaseProfile)[keyof typeof QosBaseProfile];
33
+
34
+ export const QosHistoryPolicy = {
35
+ SYSTEM_DEFAULT: 'SYSTEM_DEFAULT',
36
+ KEEP_LAST: 'KEEP_LAST',
37
+ KEEP_ALL: 'KEEP_ALL',
38
+ } as const;
39
+ export type QosHistoryPolicy =
40
+ (typeof QosHistoryPolicy)[keyof typeof QosHistoryPolicy];
41
+
42
+ export const QosReliabilityPolicy = {
43
+ SYSTEM_DEFAULT: 'SYSTEM_DEFAULT',
44
+ RELIABLE: 'RELIABLE',
45
+ BEST_EFFORT: 'BEST_EFFORT',
46
+ BEST_AVAILABLE: 'BEST_AVAILABLE',
47
+ } as const;
48
+ export type QosReliabilityPolicy =
49
+ (typeof QosReliabilityPolicy)[keyof typeof QosReliabilityPolicy];
50
+
51
+ export const QosDurabilityPolicy = {
52
+ SYSTEM_DEFAULT: 'SYSTEM_DEFAULT',
53
+ TRANSIENT_LOCAL: 'TRANSIENT_LOCAL',
54
+ VOLATILE: 'VOLATILE',
55
+ BEST_AVAILABLE: 'BEST_AVAILABLE',
56
+ } as const;
57
+ export type QosDurabilityPolicy =
58
+ (typeof QosDurabilityPolicy)[keyof typeof QosDurabilityPolicy];
59
+
60
+ export const QosLivelinessPolicy = {
61
+ SYSTEM_DEFAULT: 'SYSTEM_DEFAULT',
62
+ AUTOMATIC: 'AUTOMATIC',
63
+ MANUAL_BY_TOPIC: 'MANUAL_BY_TOPIC',
64
+ BEST_AVAILABLE: 'BEST_AVAILABLE',
65
+ } as const;
66
+ export type QosLivelinessPolicy =
67
+ (typeof QosLivelinessPolicy)[keyof typeof QosLivelinessPolicy];
68
+
69
+ export interface RmwTime {
70
+ sec: number;
71
+ nsec: number;
72
+ }
73
+
74
+ export interface QosProfile {
75
+ profile?: QosBaseProfile;
76
+ history?: QosHistoryPolicy;
77
+ depth?: number;
78
+ reliability?: QosReliabilityPolicy;
79
+ durability?: QosDurabilityPolicy;
80
+ deadline?: RmwTime;
81
+ lifespan?: RmwTime;
82
+ liveliness?: QosLivelinessPolicy;
83
+ livelinessLeaseDuration?: RmwTime;
84
+ avoidRosNamespaceConventions?: boolean;
85
+ }
86
+
22
87
  interface CreateRequest {
88
+ callId: number;
23
89
  op: CreateOp;
24
90
  name: string;
25
91
  type: string;
92
+ qos: QosProfile;
26
93
  }
27
94
 
28
95
  interface CreateResponse {
29
- op: CreateOp;
30
- name: string;
31
96
  id: number;
97
+ callId: number;
32
98
  }
33
99
 
34
100
  interface DestroyRequest {
@@ -49,18 +115,6 @@ interface ServiceClientResponse {
49
115
  message: DataView;
50
116
  }
51
117
 
52
- function isObject(value: unknown): value is object {
53
- return value !== null && typeof value === 'object';
54
- }
55
-
56
- function isCreateOp(value: unknown): value is CreateOp {
57
- return (
58
- value === OP_CREATE_PUBLISHER ||
59
- value === OP_CREATE_SUBSCRIPTION ||
60
- value === OP_CREATE_SERVICE_CLIENT
61
- );
62
- }
63
-
64
118
  function parseTextPayload(payload: string): CreateResponse | null {
65
119
  let response: unknown;
66
120
  try {
@@ -68,19 +122,19 @@ function parseTextPayload(payload: string): CreateResponse | null {
68
122
  } catch {
69
123
  return null;
70
124
  }
71
- if (!isObject(response)) {
125
+ if (response === null || typeof response !== 'object') {
72
126
  return null;
73
127
  }
74
- if (!('op' in response) || !isCreateOp(response.op)) {
75
- return null;
76
- }
77
- if (!('name' in response) || typeof response.name !== 'string') {
128
+ if (!('id' in response) || typeof response.id !== 'number') {
78
129
  return null;
79
130
  }
80
- if (!('id' in response) || typeof response.id !== 'number') {
131
+ if (!('callId' in response) || typeof response.callId !== 'number') {
81
132
  return null;
82
133
  }
83
- return { op: response.op, name: response.name, id: response.id };
134
+ return {
135
+ id: response.id,
136
+ callId: response.callId,
137
+ };
84
138
  }
85
139
 
86
140
  function parseBinaryPayload(
@@ -113,23 +167,16 @@ function parseBinaryPayload(
113
167
  return null;
114
168
  }
115
169
 
116
- function pendingCreateKey(op: CreateOp, name: string): string {
117
- return `${op}:${name}`;
118
- }
119
-
120
- function serviceResponseKey(id: number, callId: number): string {
121
- return `${id}:${callId}`;
122
- }
123
-
124
170
  export class RosCdrClient {
125
171
  readonly #ws: WebSocket;
126
172
 
127
- readonly #pendingCreates = new Map<string, (id: number) => void>();
173
+ readonly #pendingCreates = new Map<number, (id: number) => void>();
128
174
  readonly #subscriptions = new Map<
129
175
  SubscriptionId,
130
176
  (message: DataView) => void
131
177
  >();
132
- readonly #serviceResponses = new Map<string, (response: DataView) => void>();
178
+ readonly #serviceResponses = new Map<number, (response: DataView) => void>();
179
+ #callId = 0;
133
180
 
134
181
  constructor(ws: WebSocket) {
135
182
  this.#ws = ws;
@@ -137,17 +184,34 @@ export class RosCdrClient {
137
184
  this.#ws.onmessage = this.#onMessage.bind(this);
138
185
  }
139
186
 
140
- async createPublisher(name: string, type: string): Promise<PublisherId> {
141
- const request: CreateRequest = { op: OP_CREATE_PUBLISHER, name, type };
187
+ async createPublisher(
188
+ name: string,
189
+ type: string,
190
+ qos: QosProfile,
191
+ ): Promise<PublisherId> {
192
+ const request: CreateRequest = {
193
+ callId: this.#callId++,
194
+ op: OP_CREATE_PUBLISHER,
195
+ name,
196
+ type,
197
+ qos,
198
+ };
142
199
  return this.#sendCreateRequest(request) as Promise<PublisherId>;
143
200
  }
144
201
 
145
202
  async createSubscription(
146
203
  name: string,
147
204
  type: string,
205
+ qos: QosProfile,
148
206
  callback: (message: DataView) => void,
149
207
  ): Promise<SubscriptionId> {
150
- const request: CreateRequest = { op: OP_CREATE_SUBSCRIPTION, name, type };
208
+ const request: CreateRequest = {
209
+ callId: this.#callId++,
210
+ op: OP_CREATE_SUBSCRIPTION,
211
+ name,
212
+ type,
213
+ qos,
214
+ };
151
215
  const id = await (this.#sendCreateRequest(
152
216
  request,
153
217
  ) as Promise<SubscriptionId>);
@@ -158,8 +222,15 @@ export class RosCdrClient {
158
222
  async createServiceClient(
159
223
  name: string,
160
224
  type: string,
225
+ qos: QosProfile,
161
226
  ): Promise<ServiceClientId> {
162
- const request: CreateRequest = { op: OP_CREATE_SERVICE_CLIENT, name, type };
227
+ const request: CreateRequest = {
228
+ callId: this.#callId++,
229
+ op: OP_CREATE_SERVICE_CLIENT,
230
+ name,
231
+ type,
232
+ qos,
233
+ };
163
234
  return this.#sendCreateRequest(request) as Promise<ServiceClientId>;
164
235
  }
165
236
 
@@ -172,11 +243,8 @@ export class RosCdrClient {
172
243
  this.#sendBinaryPayload(payload);
173
244
  }
174
245
 
175
- callService(
176
- id: ServiceClientId,
177
- callId: number,
178
- request: Uint8Array,
179
- ): Promise<DataView> {
246
+ callService(id: ServiceClientId, request: Uint8Array): Promise<DataView> {
247
+ const callId = this.#callId++;
180
248
  const payload = new Uint8Array(1 + 4 + 4 + request.length);
181
249
  payload[0] = OP_SERVICE_REQUEST;
182
250
  const view = new DataView(payload.buffer);
@@ -184,9 +252,8 @@ export class RosCdrClient {
184
252
  view.setUint32(5, callId, true);
185
253
  payload.set(request, 9);
186
254
 
187
- const key = serviceResponseKey(id, callId);
188
255
  return new Promise((resolve) => {
189
- this.#serviceResponses.set(key, resolve);
256
+ this.#serviceResponses.set(callId, resolve);
190
257
  this.#sendBinaryPayload(payload);
191
258
  });
192
259
  }
@@ -199,10 +266,7 @@ export class RosCdrClient {
199
266
 
200
267
  #sendCreateRequest(request: CreateRequest): Promise<number> {
201
268
  return new Promise((resolve) => {
202
- this.#pendingCreates.set(
203
- pendingCreateKey(request.op, request.name),
204
- resolve,
205
- );
269
+ this.#pendingCreates.set(request.callId, resolve);
206
270
  this.#sendTextPayload(request);
207
271
  });
208
272
  }
@@ -231,10 +295,9 @@ export class RosCdrClient {
231
295
  if (!response) {
232
296
  return;
233
297
  }
234
- const key = pendingCreateKey(response.op, response.name);
235
- const callback = this.#pendingCreates.get(key);
298
+ const callback = this.#pendingCreates.get(response.callId);
236
299
  if (callback) {
237
- this.#pendingCreates.delete(key);
300
+ this.#pendingCreates.delete(response.callId);
238
301
  callback(response.id);
239
302
  }
240
303
  }
@@ -249,10 +312,9 @@ export class RosCdrClient {
249
312
  return;
250
313
  }
251
314
  if (message.opcode === OP_SERVICE_RESPONSE) {
252
- const key = serviceResponseKey(message.id, message.callId);
253
- const callback = this.#serviceResponses.get(key);
315
+ const callback = this.#serviceResponses.get(message.callId);
254
316
  if (callback) {
255
- this.#serviceResponses.delete(key);
317
+ this.#serviceResponses.delete(message.callId);
256
318
  callback(message.message);
257
319
  }
258
320
  return;