pubky-app-specs 0.3.5 → 0.4.0
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/README.md +22 -21
- package/example.js +93 -0
- package/{pubky_app_specs.js → index.cjs} +573 -390
- package/index.js +2946 -0
- package/package.json +22 -8
- package/pubky_app_specs.d.ts +42 -179
- package/pubky_app_specs_bg.wasm +0 -0
- package/LICENSE +0 -21
package/package.json
CHANGED
|
@@ -1,8 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "pubky-app-specs",
|
|
3
|
-
"type": "module",
|
|
4
3
|
"description": "Pubky.app Data Model Specifications",
|
|
5
|
-
"version": "0.
|
|
4
|
+
"version": "0.4.0",
|
|
6
5
|
"license": "MIT",
|
|
7
6
|
"collaborators": [
|
|
8
7
|
"SHAcollision"
|
|
@@ -13,13 +12,28 @@
|
|
|
13
12
|
},
|
|
14
13
|
"files": [
|
|
15
14
|
"pubky_app_specs_bg.wasm",
|
|
16
|
-
"pubky_app_specs.
|
|
17
|
-
"
|
|
15
|
+
"pubky_app_specs.d.ts",
|
|
16
|
+
"index.cjs",
|
|
17
|
+
"index.js",
|
|
18
|
+
"example.js"
|
|
18
19
|
],
|
|
19
|
-
"
|
|
20
|
-
"
|
|
20
|
+
"type": "module",
|
|
21
|
+
"main": "index.cjs",
|
|
22
|
+
"module": "index.js",
|
|
21
23
|
"types": "pubky_app_specs.d.ts",
|
|
22
|
-
"
|
|
23
|
-
|
|
24
|
+
"homepage": "https://pubky.app",
|
|
25
|
+
"sideEffects": false,
|
|
26
|
+
"devDependencies": {
|
|
27
|
+
"mocha": "^10.2.0"
|
|
28
|
+
},
|
|
29
|
+
"scripts": {
|
|
30
|
+
"build": "cargo run --bin bundle_specs_npm",
|
|
31
|
+
"example": "node example.js",
|
|
32
|
+
"test": "mocha test.js"
|
|
33
|
+
},
|
|
34
|
+
"keywords": [
|
|
35
|
+
"pubky-app",
|
|
36
|
+
"pubky-nexus",
|
|
37
|
+
"specs"
|
|
24
38
|
]
|
|
25
39
|
}
|
package/pubky_app_specs.d.ts
CHANGED
|
@@ -1,8 +1,46 @@
|
|
|
1
1
|
/* tslint:disable */
|
|
2
2
|
/* eslint-disable */
|
|
3
3
|
export function baseUriBuilder(user_id: string): string;
|
|
4
|
+
/**
|
|
5
|
+
* Builds an User URI of the form "pubky://<user_pubky_id>/pub/pubky.app/profile.json"
|
|
6
|
+
*/
|
|
4
7
|
export function userUriBuilder(user_id: string): string;
|
|
8
|
+
/**
|
|
9
|
+
* Builds a Post URI of the form "pubky://<author_id>/pub/pubky.app/posts/<post_id>"
|
|
10
|
+
*/
|
|
5
11
|
export function postUriBuilder(author_id: string, post_id: string): string;
|
|
12
|
+
/**
|
|
13
|
+
* Builds a Follow URI of the form "pubky://<author_id>/pub/pubky.app/follows/<follow_id>"
|
|
14
|
+
*/
|
|
15
|
+
export function followUriBuilder(author_id: string, follow_id: string): string;
|
|
16
|
+
/**
|
|
17
|
+
* Builds a Mute URI of the form "pubky://<author_id>/pub/pubky.app/mutes/<mute_id>"
|
|
18
|
+
*/
|
|
19
|
+
export function muteUriBuilder(author_id: string, mute_id: string): string;
|
|
20
|
+
/**
|
|
21
|
+
* Builds a Bookmark URI of the form "pubky://<author_id>/pub/pubky.app/bookmarks/<bookmark_id>"
|
|
22
|
+
*/
|
|
23
|
+
export function bookmarkUriBuilder(author_id: string, bookmark_id: string): string;
|
|
24
|
+
/**
|
|
25
|
+
* Builds a Tag URI of the form "pubky://<author_id>/pub/pubky.app/tags/<tag_id>"
|
|
26
|
+
*/
|
|
27
|
+
export function tagUriBuilder(author_id: string, tag_id: string): string;
|
|
28
|
+
/**
|
|
29
|
+
* Builds a File URI of the form "pubky://<author_id>/pub/pubky.app/files/<file_id>"
|
|
30
|
+
*/
|
|
31
|
+
export function fileUriBuilder(author_id: string, file_id: string): string;
|
|
32
|
+
/**
|
|
33
|
+
* Builds a Blob URI of the form "pubky://<author_id>/pub/pubky.app/blobs/<blob_id>"
|
|
34
|
+
*/
|
|
35
|
+
export function blobUriBuilder(author_id: string, blob_id: string): string;
|
|
36
|
+
/**
|
|
37
|
+
* Builds a Feed URI of the form "pubky://<author_id>/pub/pubky.app/feeds/<feed_id>"
|
|
38
|
+
*/
|
|
39
|
+
export function feedUriBuilder(author_id: string, feed_id: string): string;
|
|
40
|
+
/**
|
|
41
|
+
* Builds a LastRead URI of the form "pubky://<author_id>/pub/pubky.app/last_read"
|
|
42
|
+
*/
|
|
43
|
+
export function lastReadUriBuilder(author_id: string): string;
|
|
6
44
|
/**
|
|
7
45
|
* Parses a Pubky URI and returns a strongly typed `ParsedUriResult`.
|
|
8
46
|
*
|
|
@@ -161,8 +199,8 @@ export class PostResult {
|
|
|
161
199
|
readonly meta: Meta;
|
|
162
200
|
}
|
|
163
201
|
/**
|
|
164
|
-
* Represents a file uploaded by the user.
|
|
165
|
-
* URI: /pub/pubky.app/
|
|
202
|
+
* Represents a blob, which backs a file uploaded by the user.
|
|
203
|
+
* URI: /pub/pubky.app/blobs/:blob_id
|
|
166
204
|
*/
|
|
167
205
|
export class PubkyAppBlob {
|
|
168
206
|
private constructor();
|
|
@@ -325,7 +363,7 @@ export class PubkyAppPost {
|
|
|
325
363
|
*/
|
|
326
364
|
constructor(content: string, kind: PubkyAppPostKind, parent?: string | null, embed?: PubkyAppPostEmbed | null, attachments?: string[] | null);
|
|
327
365
|
readonly content: string;
|
|
328
|
-
readonly kind:
|
|
366
|
+
readonly kind: string;
|
|
329
367
|
readonly parent: string | undefined;
|
|
330
368
|
readonly embed: PubkyAppPostEmbed | undefined;
|
|
331
369
|
readonly attachments: string[] | undefined;
|
|
@@ -336,7 +374,7 @@ export class PubkyAppPost {
|
|
|
336
374
|
export class PubkyAppPostEmbed {
|
|
337
375
|
free(): void;
|
|
338
376
|
constructor(uri: string, kind: PubkyAppPostKind);
|
|
339
|
-
readonly kind:
|
|
377
|
+
readonly kind: string;
|
|
340
378
|
readonly uri: string;
|
|
341
379
|
}
|
|
342
380
|
/**
|
|
@@ -439,178 +477,3 @@ export class UserResult {
|
|
|
439
477
|
readonly user: PubkyAppUser;
|
|
440
478
|
readonly meta: Meta;
|
|
441
479
|
}
|
|
442
|
-
|
|
443
|
-
export type InitInput = RequestInfo | URL | Response | BufferSource | WebAssembly.Module;
|
|
444
|
-
|
|
445
|
-
export interface InitOutput {
|
|
446
|
-
readonly memory: WebAssembly.Memory;
|
|
447
|
-
readonly __wbg_pubkyappblob_free: (a: number, b: number) => void;
|
|
448
|
-
readonly pubkyappblob_fromJson: (a: any) => [number, number, number];
|
|
449
|
-
readonly pubkyappblob_toJson: (a: number) => [number, number, number];
|
|
450
|
-
readonly pubkyappblob_data: (a: number) => any;
|
|
451
|
-
readonly __wbg_pubkyappbookmark_free: (a: number, b: number) => void;
|
|
452
|
-
readonly __wbg_get_pubkyappbookmark_created_at: (a: number) => bigint;
|
|
453
|
-
readonly __wbg_set_pubkyappbookmark_created_at: (a: number, b: bigint) => void;
|
|
454
|
-
readonly pubkyappbookmark_fromJson: (a: any) => [number, number, number];
|
|
455
|
-
readonly pubkyappbookmark_toJson: (a: number) => [number, number, number];
|
|
456
|
-
readonly pubkyappbookmark_uri: (a: number) => [number, number];
|
|
457
|
-
readonly __wbg_pubkyappfeedconfig_free: (a: number, b: number) => void;
|
|
458
|
-
readonly pubkyappfeedconfig_fromJson: (a: any) => [number, number, number];
|
|
459
|
-
readonly pubkyappfeedconfig_toJson: (a: number) => [number, number, number];
|
|
460
|
-
readonly pubkyappfeedconfig_tags: (a: number) => [number, number];
|
|
461
|
-
readonly pubkyappfeedconfig_reach: (a: number) => number;
|
|
462
|
-
readonly pubkyappfeedconfig_layout: (a: number) => number;
|
|
463
|
-
readonly pubkyappfeedconfig_sort: (a: number) => number;
|
|
464
|
-
readonly pubkyappfeedconfig_content: (a: number) => number;
|
|
465
|
-
readonly __wbg_pubkyappfeed_free: (a: number, b: number) => void;
|
|
466
|
-
readonly __wbg_get_pubkyappfeed_created_at: (a: number) => bigint;
|
|
467
|
-
readonly __wbg_set_pubkyappfeed_created_at: (a: number, b: bigint) => void;
|
|
468
|
-
readonly pubkyappfeed_fromJson: (a: any) => [number, number, number];
|
|
469
|
-
readonly pubkyappfeed_toJson: (a: number) => [number, number, number];
|
|
470
|
-
readonly pubkyappfeed_feed: (a: number) => number;
|
|
471
|
-
readonly pubkyappfeed_name: (a: number) => [number, number];
|
|
472
|
-
readonly __wbg_pubkyappfile_free: (a: number, b: number) => void;
|
|
473
|
-
readonly __wbg_get_pubkyappfile_size: (a: number) => number;
|
|
474
|
-
readonly __wbg_set_pubkyappfile_size: (a: number, b: number) => void;
|
|
475
|
-
readonly pubkyappfile_name: (a: number) => [number, number];
|
|
476
|
-
readonly pubkyappfile_src: (a: number) => [number, number];
|
|
477
|
-
readonly pubkyappfile_content_type: (a: number) => [number, number];
|
|
478
|
-
readonly pubkyappfile_fromJson: (a: any) => [number, number, number];
|
|
479
|
-
readonly pubkyappfile_toJson: (a: number) => [number, number, number];
|
|
480
|
-
readonly __wbg_pubkyappfollow_free: (a: number, b: number) => void;
|
|
481
|
-
readonly pubkyappfollow_fromJson: (a: any) => [number, number, number];
|
|
482
|
-
readonly pubkyappfollow_toJson: (a: number) => [number, number, number];
|
|
483
|
-
readonly pubkyapplastread_fromJson: (a: any) => [number, number, number];
|
|
484
|
-
readonly pubkyapplastread_toJson: (a: number) => [number, number, number];
|
|
485
|
-
readonly pubkyappmute_fromJson: (a: any) => [number, number, number];
|
|
486
|
-
readonly pubkyappmute_toJson: (a: number) => [number, number, number];
|
|
487
|
-
readonly __wbg_pubkyapppostembed_free: (a: number, b: number) => void;
|
|
488
|
-
readonly pubkyapppostembed_new: (a: number, b: number, c: number) => number;
|
|
489
|
-
readonly pubkyapppostembed_kind: (a: number) => number;
|
|
490
|
-
readonly pubkyapppostembed_uri: (a: number) => [number, number];
|
|
491
|
-
readonly __wbg_pubkyapppost_free: (a: number, b: number) => void;
|
|
492
|
-
readonly pubkyapppost_content: (a: number) => [number, number];
|
|
493
|
-
readonly pubkyapppost_kind: (a: number) => number;
|
|
494
|
-
readonly pubkyapppost_parent: (a: number) => [number, number];
|
|
495
|
-
readonly pubkyapppost_embed: (a: number) => number;
|
|
496
|
-
readonly pubkyapppost_attachments: (a: number) => [number, number];
|
|
497
|
-
readonly pubkyapppost_fromJson: (a: any) => [number, number, number];
|
|
498
|
-
readonly pubkyapppost_toJson: (a: number) => [number, number, number];
|
|
499
|
-
readonly pubkyapppost_new: (a: number, b: number, c: number, d: number, e: number, f: number, g: number, h: number) => number;
|
|
500
|
-
readonly __wbg_pubkyapptag_free: (a: number, b: number) => void;
|
|
501
|
-
readonly pubkyapptag_fromJson: (a: any) => [number, number, number];
|
|
502
|
-
readonly pubkyapptag_toJson: (a: number) => [number, number, number];
|
|
503
|
-
readonly pubkyapptag_uri: (a: number) => [number, number];
|
|
504
|
-
readonly pubkyapptag_label: (a: number) => [number, number];
|
|
505
|
-
readonly __wbg_pubkyappuser_free: (a: number, b: number) => void;
|
|
506
|
-
readonly pubkyappuser_name: (a: number) => [number, number];
|
|
507
|
-
readonly pubkyappuser_bio: (a: number) => [number, number];
|
|
508
|
-
readonly pubkyappuser_image: (a: number) => [number, number];
|
|
509
|
-
readonly pubkyappuser_links: (a: number) => [number, number];
|
|
510
|
-
readonly pubkyappuser_status: (a: number) => [number, number];
|
|
511
|
-
readonly pubkyappuser_fromJson: (a: any) => [number, number, number];
|
|
512
|
-
readonly pubkyappuser_toJson: (a: number) => [number, number, number];
|
|
513
|
-
readonly __wbg_pubkyappuserlink_free: (a: number, b: number) => void;
|
|
514
|
-
readonly pubkyappuserlink_title: (a: number) => [number, number];
|
|
515
|
-
readonly pubkyappuserlink_url: (a: number) => [number, number];
|
|
516
|
-
readonly pubkyappuser_new: (a: number, b: number, c: number, d: number, e: number, f: number, g: number, h: number, i: number, j: number) => number;
|
|
517
|
-
readonly pubkyappuserlink_new: (a: number, b: number, c: number, d: number) => number;
|
|
518
|
-
readonly __wbg_pubkyid_free: (a: number, b: number) => void;
|
|
519
|
-
readonly baseUriBuilder: (a: number, b: number) => [number, number];
|
|
520
|
-
readonly userUriBuilder: (a: number, b: number) => [number, number];
|
|
521
|
-
readonly postUriBuilder: (a: number, b: number, c: number, d: number) => [number, number];
|
|
522
|
-
readonly __wbg_meta_free: (a: number, b: number) => void;
|
|
523
|
-
readonly meta_id: (a: number) => [number, number];
|
|
524
|
-
readonly meta_path: (a: number) => [number, number];
|
|
525
|
-
readonly meta_url: (a: number) => [number, number];
|
|
526
|
-
readonly __wbg_userresult_free: (a: number, b: number) => void;
|
|
527
|
-
readonly userresult_user: (a: number) => number;
|
|
528
|
-
readonly userresult_meta: (a: number) => number;
|
|
529
|
-
readonly __wbg_fileresult_free: (a: number, b: number) => void;
|
|
530
|
-
readonly fileresult_file: (a: number) => number;
|
|
531
|
-
readonly fileresult_meta: (a: number) => number;
|
|
532
|
-
readonly __wbg_followresult_free: (a: number, b: number) => void;
|
|
533
|
-
readonly followresult_follow: (a: number) => number;
|
|
534
|
-
readonly followresult_meta: (a: number) => number;
|
|
535
|
-
readonly __wbg_postresult_free: (a: number, b: number) => void;
|
|
536
|
-
readonly postresult_post: (a: number) => number;
|
|
537
|
-
readonly postresult_meta: (a: number) => number;
|
|
538
|
-
readonly __wbg_feedresult_free: (a: number, b: number) => void;
|
|
539
|
-
readonly feedresult_feed: (a: number) => number;
|
|
540
|
-
readonly feedresult_meta: (a: number) => number;
|
|
541
|
-
readonly __wbg_tagresult_free: (a: number, b: number) => void;
|
|
542
|
-
readonly tagresult_tag: (a: number) => number;
|
|
543
|
-
readonly tagresult_meta: (a: number) => number;
|
|
544
|
-
readonly __wbg_bookmarkresult_free: (a: number, b: number) => void;
|
|
545
|
-
readonly bookmarkresult_bookmark: (a: number) => number;
|
|
546
|
-
readonly bookmarkresult_meta: (a: number) => number;
|
|
547
|
-
readonly __wbg_blobresult_free: (a: number, b: number) => void;
|
|
548
|
-
readonly blobresult_blob: (a: number) => number;
|
|
549
|
-
readonly blobresult_meta: (a: number) => number;
|
|
550
|
-
readonly pubkyspecsbuilder_new: (a: number, b: number) => [number, number, number];
|
|
551
|
-
readonly pubkyspecsbuilder_createUser: (a: number, b: number, c: number, d: number, e: number, f: number, g: number, h: any, i: number, j: number) => [number, number, number];
|
|
552
|
-
readonly pubkyspecsbuilder_createFeed: (a: number, b: any, c: number, d: number, e: number, f: number, g: number, h: number, i: number, j: number, k: number, l: number) => [number, number, number];
|
|
553
|
-
readonly pubkyspecsbuilder_createFile: (a: number, b: number, c: number, d: number, e: number, f: number, g: number, h: number) => [number, number, number];
|
|
554
|
-
readonly pubkyspecsbuilder_createPost: (a: number, b: number, c: number, d: number, e: number, f: number, g: number, h: number, i: number) => [number, number, number];
|
|
555
|
-
readonly pubkyspecsbuilder_editPost: (a: number, b: number, c: number, d: number, e: number, f: number) => [number, number, number];
|
|
556
|
-
readonly pubkyspecsbuilder_createTag: (a: number, b: number, c: number, d: number, e: number) => [number, number, number];
|
|
557
|
-
readonly pubkyspecsbuilder_createBookmark: (a: number, b: number, c: number) => [number, number, number];
|
|
558
|
-
readonly pubkyspecsbuilder_createFollow: (a: number, b: number, c: number) => [number, number, number];
|
|
559
|
-
readonly pubkyspecsbuilder_createMute: (a: number, b: number, c: number) => [number, number, number];
|
|
560
|
-
readonly pubkyspecsbuilder_createLastRead: (a: number) => [number, number, number];
|
|
561
|
-
readonly pubkyspecsbuilder_createBlob: (a: number, b: any) => [number, number, number];
|
|
562
|
-
readonly __wbg_parseduriresult_free: (a: number, b: number) => void;
|
|
563
|
-
readonly parseduriresult_user_id: (a: number) => [number, number];
|
|
564
|
-
readonly parseduriresult_resource: (a: number) => [number, number];
|
|
565
|
-
readonly parseduriresult_resource_id: (a: number) => [number, number];
|
|
566
|
-
readonly parse_uri: (a: number, b: number) => [number, number, number];
|
|
567
|
-
readonly __wbg_set_pubkyapplastread_timestamp: (a: number, b: bigint) => void;
|
|
568
|
-
readonly __wbg_set_pubkyapptag_created_at: (a: number, b: bigint) => void;
|
|
569
|
-
readonly __wbg_set_pubkyappfollow_created_at: (a: number, b: bigint) => void;
|
|
570
|
-
readonly __wbg_set_pubkyappfile_created_at: (a: number, b: bigint) => void;
|
|
571
|
-
readonly __wbg_set_pubkyappmute_created_at: (a: number, b: bigint) => void;
|
|
572
|
-
readonly __wbg_get_pubkyappmute_created_at: (a: number) => bigint;
|
|
573
|
-
readonly __wbg_get_pubkyapplastread_timestamp: (a: number) => bigint;
|
|
574
|
-
readonly __wbg_get_pubkyapptag_created_at: (a: number) => bigint;
|
|
575
|
-
readonly __wbg_get_pubkyappfile_created_at: (a: number) => bigint;
|
|
576
|
-
readonly __wbg_get_pubkyappfollow_created_at: (a: number) => bigint;
|
|
577
|
-
readonly __wbg_pubkyappmute_free: (a: number, b: number) => void;
|
|
578
|
-
readonly __wbg_pubkyapplastread_free: (a: number, b: number) => void;
|
|
579
|
-
readonly __wbg_muteresult_free: (a: number, b: number) => void;
|
|
580
|
-
readonly __wbg_pubkyspecsbuilder_free: (a: number, b: number) => void;
|
|
581
|
-
readonly __wbg_lastreadresult_free: (a: number, b: number) => void;
|
|
582
|
-
readonly muteresult_meta: (a: number) => number;
|
|
583
|
-
readonly muteresult_mute: (a: number) => number;
|
|
584
|
-
readonly lastreadresult_meta: (a: number) => number;
|
|
585
|
-
readonly lastreadresult_last_read: (a: number) => number;
|
|
586
|
-
readonly __wbindgen_malloc: (a: number, b: number) => number;
|
|
587
|
-
readonly __wbindgen_realloc: (a: number, b: number, c: number, d: number) => number;
|
|
588
|
-
readonly __wbindgen_exn_store: (a: number) => void;
|
|
589
|
-
readonly __externref_table_alloc: () => number;
|
|
590
|
-
readonly __wbindgen_export_4: WebAssembly.Table;
|
|
591
|
-
readonly __externref_table_dealloc: (a: number) => void;
|
|
592
|
-
readonly __wbindgen_free: (a: number, b: number, c: number) => void;
|
|
593
|
-
readonly __externref_drop_slice: (a: number, b: number) => void;
|
|
594
|
-
readonly __wbindgen_start: () => void;
|
|
595
|
-
}
|
|
596
|
-
|
|
597
|
-
export type SyncInitInput = BufferSource | WebAssembly.Module;
|
|
598
|
-
/**
|
|
599
|
-
* Instantiates the given `module`, which can either be bytes or
|
|
600
|
-
* a precompiled `WebAssembly.Module`.
|
|
601
|
-
*
|
|
602
|
-
* @param {{ module: SyncInitInput }} module - Passing `SyncInitInput` directly is deprecated.
|
|
603
|
-
*
|
|
604
|
-
* @returns {InitOutput}
|
|
605
|
-
*/
|
|
606
|
-
export function initSync(module: { module: SyncInitInput } | SyncInitInput): InitOutput;
|
|
607
|
-
|
|
608
|
-
/**
|
|
609
|
-
* If `module_or_path` is {RequestInfo} or {URL}, makes a request and
|
|
610
|
-
* for everything else, calls `WebAssembly.instantiate` directly.
|
|
611
|
-
*
|
|
612
|
-
* @param {{ module_or_path: InitInput | Promise<InitInput> }} module_or_path - Passing `InitInput` directly is deprecated.
|
|
613
|
-
*
|
|
614
|
-
* @returns {Promise<InitOutput>}
|
|
615
|
-
*/
|
|
616
|
-
export default function __wbg_init (module_or_path?: { module_or_path: InitInput | Promise<InitInput> } | InitInput | Promise<InitInput>): Promise<InitOutput>;
|
package/pubky_app_specs_bg.wasm
CHANGED
|
Binary file
|
package/LICENSE
DELETED
|
@@ -1,21 +0,0 @@
|
|
|
1
|
-
The MIT License (MIT)
|
|
2
|
-
|
|
3
|
-
Copyright (c) 2024
|
|
4
|
-
|
|
5
|
-
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
6
|
-
of this software and associated documentation files (the "Software"), to deal
|
|
7
|
-
in the Software without restriction, including without limitation the rights
|
|
8
|
-
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
9
|
-
copies of the Software, and to permit persons to whom the Software is
|
|
10
|
-
furnished to do so, subject to the following conditions:
|
|
11
|
-
|
|
12
|
-
The above copyright notice and this permission notice shall be included in
|
|
13
|
-
all copies or substantial portions of the Software.
|
|
14
|
-
|
|
15
|
-
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
16
|
-
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
17
|
-
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
18
|
-
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
19
|
-
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
20
|
-
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
|
21
|
-
THE SOFTWARE.
|