UNPKG

3.23 kBPlain TextView Raw
1/**
2 * Copyright 2020 Inrupt Inc.
3 *
4 * Permission is hereby granted, free of charge, to any person obtaining a copy
5 * of this software and associated documentation files (the "Software"), to deal in
6 * the Software without restriction, including without limitation the rights to use,
7 * copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the
8 * Software, and to permit persons to whom the Software is furnished to do so,
9 * subject to the following conditions:
10 *
11 * The above copyright notice and this permission notice shall be included in
12 * all copies or substantial portions of the Software.
13 *
14 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED,
15 * INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A
16 * PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
17 * HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
18 * OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
19 * SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
20 */
21
22export {
23 unstable_fetchFile,
24 unstable_deleteFile,
25 unstable_saveFileInContainer,
26 unstable_overwriteFile,
27} from "./nonRdfData";
28export {
29 createLitDataset,
30 fetchLitDataset,
31 saveLitDatasetAt,
32 saveLitDatasetInContainer,
33 unstable_fetchLitDatasetWithAcl,
34} from "./litDataset";
35export {
36 getThingOne,
37 getThingAll,
38 setThing,
39 removeThing,
40 createThing,
41 asUrl,
42 asIri,
43} from "./thing";
44export {
45 getUrlOne,
46 getIriOne,
47 getBooleanOne,
48 getDatetimeOne,
49 getDecimalOne,
50 getIntegerOne,
51 getStringInLocaleOne,
52 getStringUnlocalizedOne,
53 getUrlAll,
54 getIriAll,
55 getBooleanAll,
56 getDatetimeAll,
57 getDecimalAll,
58 getIntegerAll,
59 getStringInLocaleAll,
60 getStringUnlocalizedAll,
61 getLiteralOne,
62 getNamedNodeOne,
63 getLiteralAll,
64 getNamedNodeAll,
65} from "./thing/get";
66export {
67 addUrl,
68 addIri,
69 addBoolean,
70 addDatetime,
71 addDecimal,
72 addInteger,
73 addStringInLocale,
74 addStringUnlocalized,
75 addLiteral,
76 addNamedNode,
77} from "./thing/add";
78export {
79 setUrl,
80 setIri,
81 setBoolean,
82 setDatetime,
83 setDecimal,
84 setInteger,
85 setStringInLocale,
86 setStringUnlocalized,
87 setLiteral,
88 setNamedNode,
89} from "./thing/set";
90export {
91 removeAll,
92 removeUrl,
93 removeIri,
94 removeBoolean,
95 removeDatetime,
96 removeDecimal,
97 removeInteger,
98 removeStringInLocale,
99 removeStringUnlocalized,
100 removeLiteral,
101 removeNamedNode,
102} from "./thing/remove";
103export {
104 unstable_hasFallbackAcl,
105 unstable_getFallbackAcl,
106 unstable_hasResourceAcl,
107 unstable_getResourceAcl,
108} from "./acl";
109export {
110 unstable_AgentAccess,
111 unstable_getAgentAccessModesOne,
112 unstable_getAgentAccessModesAll,
113 unstable_getAgentResourceAccessModesOne,
114 unstable_getAgentResourceAccessModesAll,
115 unstable_getAgentDefaultAccessModesOne,
116 unstable_getAgentDefaultAccessModesAll,
117} from "./acl/agent";
118export {
119 Url,
120 Iri,
121 UrlString,
122 IriString,
123 WebId,
124 LitDataset,
125 Thing,
126 ThingPersisted,
127 ThingLocal,
128 LocalNode,
129 DatasetInfo,
130 ChangeLog,
131 unstable_Acl,
132 unstable_AclDataset,
133 unstable_AclRule,
134 unstable_AccessModes,
135 unstable_UploadRequestInit,
136} from "./interfaces";