arky-sdk 0.3.67 → 0.3.68
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/dist/index.cjs +3 -14
- package/dist/index.cjs.map +1 -1
- package/dist/index.js +3 -14
- package/dist/index.js.map +1 -1
- package/dist/types.d.cts +0 -3
- package/dist/types.d.ts +0 -3
- package/package.json +1 -1
package/dist/types.d.cts
CHANGED
|
@@ -285,7 +285,6 @@ interface GetCollectionsParams {
|
|
|
285
285
|
ids?: string[] | null;
|
|
286
286
|
}
|
|
287
287
|
interface GetEntriesParams {
|
|
288
|
-
owner?: string | null;
|
|
289
288
|
collectionId?: string | null;
|
|
290
289
|
limit?: number;
|
|
291
290
|
cursor?: string;
|
|
@@ -300,7 +299,6 @@ interface GetEntriesParams {
|
|
|
300
299
|
parentId?: string | null;
|
|
301
300
|
}
|
|
302
301
|
interface CreateEntryParams {
|
|
303
|
-
owner?: string;
|
|
304
302
|
collectionId?: string;
|
|
305
303
|
blocks: any[];
|
|
306
304
|
status?: string;
|
|
@@ -308,7 +306,6 @@ interface CreateEntryParams {
|
|
|
308
306
|
}
|
|
309
307
|
interface UpdateEntryParams {
|
|
310
308
|
id: string;
|
|
311
|
-
owner?: string;
|
|
312
309
|
collectionId?: string;
|
|
313
310
|
blocks?: any[];
|
|
314
311
|
status?: string;
|
package/dist/types.d.ts
CHANGED
|
@@ -285,7 +285,6 @@ interface GetCollectionsParams {
|
|
|
285
285
|
ids?: string[] | null;
|
|
286
286
|
}
|
|
287
287
|
interface GetEntriesParams {
|
|
288
|
-
owner?: string | null;
|
|
289
288
|
collectionId?: string | null;
|
|
290
289
|
limit?: number;
|
|
291
290
|
cursor?: string;
|
|
@@ -300,7 +299,6 @@ interface GetEntriesParams {
|
|
|
300
299
|
parentId?: string | null;
|
|
301
300
|
}
|
|
302
301
|
interface CreateEntryParams {
|
|
303
|
-
owner?: string;
|
|
304
302
|
collectionId?: string;
|
|
305
303
|
blocks: any[];
|
|
306
304
|
status?: string;
|
|
@@ -308,7 +306,6 @@ interface CreateEntryParams {
|
|
|
308
306
|
}
|
|
309
307
|
interface UpdateEntryParams {
|
|
310
308
|
id: string;
|
|
311
|
-
owner?: string;
|
|
312
309
|
collectionId?: string;
|
|
313
310
|
blocks?: any[];
|
|
314
311
|
status?: string;
|