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/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;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "arky-sdk",
3
- "version": "0.3.67",
3
+ "version": "0.3.68",
4
4
  "description": "Official TypeScript SDK for Arky - All-in-one business platform",
5
5
  "type": "module",
6
6
  "main": "./dist/index.cjs",