@leaningtech/cheerpx 1.0.5 → 1.0.7

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/LICENSE.txt CHANGED
@@ -220,14 +220,19 @@ that reasonable and to the extent that it forms part of our product roadmap
220
220
  which applies to all customers and not just to you. We reserve the right to
221
221
  modify our development objectives and roadmap at all times, and you acknowledge
222
222
  that any functionality or feature not presently forming the Software is not
223
- guaranteed to be included now or at any time in the future. 5. PAYMENT
223
+ guaranteed to be included now or at any time in the future.
224
+
225
+ 5. PAYMENT
224
226
 
225
227
  5.1 The Software and Documents supplied under this Licence do not require the
226
- payment of a Licence fee. 5.2 True-up. In any event where you have exceeded
227
- the licenced use case as prescribed by this Licence, the excessive element of
228
- your use shall be judged against the permitted uses, and the Licence Fee due for
229
- such excessive use shall be calculated based on our standard Rate Card applied
230
- to Commercial Licences. 6. LIMITATION OF LIABILITY
228
+ payment of a Licence fee.
229
+
230
+ 5.2 True-up. In any event where you have exceeded the licenced use case as
231
+ prescribed by this Licence, the excessive element of your use shall be judged
232
+ against the permitted uses, and the Licence Fee due for such excessive use shall
233
+ be calculated based on our standard Rate Card applied to Commercial Licences.
234
+
235
+ 6. LIMITATION OF LIABILITY
231
236
 
232
237
  6.1 You acknowledge that the Software has not been developed to meet your
233
238
  individual requirements, including any particular cybersecurity requirements you
@@ -281,7 +286,9 @@ terms, express or implied, that are binding on us. Any condition, warranty,
281
286
  representation or other term concerning the supply of the Software and Documents
282
287
  which might otherwise be implied into, or incorporated in, this Licence whether
283
288
  by statute, common law or otherwise, is excluded to the fullest extent permitted
284
- by law. 7. TERMINATION
289
+ by law.
290
+
291
+ 7. TERMINATION
285
292
 
286
293
  7.1 We may terminate this Licence immediately by written notice to you if you
287
294
  commit a material or persistent breach of this Licence which you fail to remedy
package/index.d.ts CHANGED
@@ -21,6 +21,9 @@ export class GitHubDevice extends BlockDevice {
21
21
  export class HttpBytesDevice extends BlockDevice {
22
22
  static create(url: string): Promise<HttpBytesDevice>;
23
23
  }
24
+ export class CloudDevice extends BlockDevice {
25
+ static create(url: string): Promise<CloudDevice>;
26
+ }
24
27
  export class Linux {
25
28
  static create(optionals?: {mounts?: MountPointConfiguration[], networkInterface?: NetworkInterface}): Promise<Linux>;
26
29
  delete(): void;
package/index.js CHANGED
@@ -1,4 +1,4 @@
1
- const version="1.0.5"
1
+ const version="1.0.7"
2
2
  const CheerpX = await import(`https://cxrtnc.leaningtech.com/${version}/cx.esm.js`);
3
3
  export const Linux = CheerpX.Linux;
4
4
  export const HttpBytesDevice = CheerpX.HttpBytesDevice;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@leaningtech/cheerpx",
3
- "version": "1.0.5",
3
+ "version": "1.0.7",
4
4
  "type": "module",
5
5
  "main": "index.js",
6
6
  "types": "index.d.ts",