@anyproto/anytype-mcp 1.0.8 → 1.1.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.
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "components": {
3
3
  "schemas": {
4
- "apimodel.AddObjectsToListRequest": {
4
+ "AddObjectsToListRequest": {
5
5
  "properties": {
6
6
  "objects": {
7
7
  "description": "The list of object IDs to add to the list",
@@ -15,7 +15,25 @@
15
15
  },
16
16
  "type": "object"
17
17
  },
18
- "apimodel.CheckboxPropertyLinkValue": {
18
+ "CheckboxFilterItem": {
19
+ "properties": {
20
+ "checkbox": {
21
+ "description": "The checkbox value to filter by",
22
+ "example": true,
23
+ "type": "boolean"
24
+ },
25
+ "condition": {
26
+ "$ref": "#/components/schemas/FilterCondition"
27
+ },
28
+ "property_key": {
29
+ "description": "The property key to filter on",
30
+ "example": "done",
31
+ "type": "string"
32
+ }
33
+ },
34
+ "type": "object"
35
+ },
36
+ "CheckboxPropertyLinkValue": {
19
37
  "properties": {
20
38
  "checkbox": {
21
39
  "description": "The checkbox value of the property",
@@ -29,7 +47,7 @@
29
47
  },
30
48
  "type": "object"
31
49
  },
32
- "apimodel.CheckboxPropertyValue": {
50
+ "CheckboxPropertyValue": {
33
51
  "properties": {
34
52
  "checkbox": {
35
53
  "description": "The checkbox value of the property",
@@ -37,7 +55,7 @@
37
55
  "type": "boolean"
38
56
  },
39
57
  "format": {
40
- "$ref": "#/components/schemas/apimodel.PropertyFormat"
58
+ "$ref": "#/components/schemas/PropertyFormat"
41
59
  },
42
60
  "id": {
43
61
  "description": "The id of the property",
@@ -62,7 +80,7 @@
62
80
  },
63
81
  "type": "object"
64
82
  },
65
- "apimodel.Color": {
83
+ "Color": {
66
84
  "description": "The color of the icon",
67
85
  "enum": ["grey", "yellow", "orange", "red", "pink", "purple", "blue", "ice", "teal", "lime"],
68
86
  "example": "yellow",
@@ -80,7 +98,22 @@
80
98
  "ColorLime"
81
99
  ]
82
100
  },
83
- "apimodel.CreateApiKeyResponse": {
101
+ "CreateApiKeyRequest": {
102
+ "properties": {
103
+ "challenge_id": {
104
+ "description": "The challenge id associated with the previously displayed code",
105
+ "example": "67647f5ecda913e9a2e11b26",
106
+ "type": "string"
107
+ },
108
+ "code": {
109
+ "description": "The 4-digit code retrieved from Anytype Desktop app",
110
+ "example": "1234",
111
+ "type": "string"
112
+ }
113
+ },
114
+ "type": "object"
115
+ },
116
+ "CreateApiKeyResponse": {
84
117
  "properties": {
85
118
  "api_key": {
86
119
  "description": "The api key used to authenticate requests",
@@ -90,7 +123,17 @@
90
123
  },
91
124
  "type": "object"
92
125
  },
93
- "apimodel.CreateChallengeResponse": {
126
+ "CreateChallengeRequest": {
127
+ "properties": {
128
+ "app_name": {
129
+ "description": "The name of the app that is requesting the challenge",
130
+ "example": "anytype_mcp",
131
+ "type": "string"
132
+ }
133
+ },
134
+ "type": "object"
135
+ },
136
+ "CreateChallengeResponse": {
94
137
  "properties": {
95
138
  "challenge_id": {
96
139
  "description": "The challenge id associated with the displayed code and needed to solve the challenge for api_key",
@@ -100,7 +143,7 @@
100
143
  },
101
144
  "type": "object"
102
145
  },
103
- "apimodel.CreateObjectRequest": {
146
+ "CreateObjectRequest": {
104
147
  "properties": {
105
148
  "body": {
106
149
  "description": "The body of the object",
@@ -108,7 +151,7 @@
108
151
  "type": "string"
109
152
  },
110
153
  "icon": {
111
- "$ref": "#/components/schemas/apimodel.Icon"
154
+ "$ref": "#/components/schemas/Icon"
112
155
  },
113
156
  "name": {
114
157
  "description": "The name of the object",
@@ -116,9 +159,9 @@
116
159
  "type": "string"
117
160
  },
118
161
  "properties": {
119
- "description": "⚠ Warning: Properties are experimental and may change in the next update. ⚠ The properties to set on the object; see ListTypes or GetType endpoints for linked properties",
162
+ "description": "The properties to set on the object; see ListTypes or GetType endpoints for linked properties",
120
163
  "items": {
121
- "$ref": "#/components/schemas/apimodel.PropertyLinkWithValue"
164
+ "$ref": "#/components/schemas/PropertyLinkWithValue"
122
165
  },
123
166
  "type": "array",
124
167
  "uniqueItems": false
@@ -137,10 +180,10 @@
137
180
  "required": ["type_key"],
138
181
  "type": "object"
139
182
  },
140
- "apimodel.CreatePropertyRequest": {
183
+ "CreatePropertyRequest": {
141
184
  "properties": {
142
185
  "format": {
143
- "$ref": "#/components/schemas/apimodel.PropertyFormat"
186
+ "$ref": "#/components/schemas/PropertyFormat"
144
187
  },
145
188
  "key": {
146
189
  "description": "The key of the property; should always be snake_case, otherwise it will be converted to snake_case",
@@ -151,12 +194,20 @@
151
194
  "description": "The name of the property",
152
195
  "example": "Last modified date",
153
196
  "type": "string"
197
+ },
198
+ "tags": {
199
+ "description": "Tags to create for select/multi_select properties",
200
+ "items": {
201
+ "$ref": "#/components/schemas/CreateTagRequest"
202
+ },
203
+ "type": "array",
204
+ "uniqueItems": false
154
205
  }
155
206
  },
156
207
  "required": ["format", "name"],
157
208
  "type": "object"
158
209
  },
159
- "apimodel.CreateSpaceRequest": {
210
+ "CreateSpaceRequest": {
160
211
  "properties": {
161
212
  "description": {
162
213
  "description": "The description of the space",
@@ -172,10 +223,15 @@
172
223
  "required": ["name"],
173
224
  "type": "object"
174
225
  },
175
- "apimodel.CreateTagRequest": {
226
+ "CreateTagRequest": {
176
227
  "properties": {
177
228
  "color": {
178
- "$ref": "#/components/schemas/apimodel.Color"
229
+ "$ref": "#/components/schemas/Color"
230
+ },
231
+ "key": {
232
+ "description": "The optional custom key for the tag",
233
+ "example": "in_progress",
234
+ "type": "string"
179
235
  },
180
236
  "name": {
181
237
  "description": "The name of the tag",
@@ -186,10 +242,10 @@
186
242
  "required": ["color", "name"],
187
243
  "type": "object"
188
244
  },
189
- "apimodel.CreateTypeRequest": {
245
+ "CreateTypeRequest": {
190
246
  "properties": {
191
247
  "icon": {
192
- "$ref": "#/components/schemas/apimodel.Icon"
248
+ "$ref": "#/components/schemas/Icon"
193
249
  },
194
250
  "key": {
195
251
  "description": "The key of the type; should always be snake_case, otherwise it will be converted to snake_case",
@@ -197,7 +253,7 @@
197
253
  "type": "string"
198
254
  },
199
255
  "layout": {
200
- "$ref": "#/components/schemas/apimodel.TypeLayout"
256
+ "$ref": "#/components/schemas/TypeLayout"
201
257
  },
202
258
  "name": {
203
259
  "description": "The name of the type",
@@ -210,9 +266,9 @@
210
266
  "type": "string"
211
267
  },
212
268
  "properties": {
213
- "description": "⚠ Warning: Properties are experimental and may change in the next update. ⚠ The properties linked to the type",
269
+ "description": "The properties linked to the type",
214
270
  "items": {
215
- "$ref": "#/components/schemas/apimodel.PropertyLink"
271
+ "$ref": "#/components/schemas/PropertyLink"
216
272
  },
217
273
  "type": "array",
218
274
  "uniqueItems": false
@@ -221,11 +277,29 @@
221
277
  "required": ["layout", "name", "plural_name"],
222
278
  "type": "object"
223
279
  },
224
- "apimodel.DatePropertyLinkValue": {
280
+ "DateFilterItem": {
281
+ "properties": {
282
+ "condition": {
283
+ "$ref": "#/components/schemas/FilterCondition"
284
+ },
285
+ "date": {
286
+ "description": "The date value to filter by. Accepts dates in RFC3339 format (2006-01-02T15:04:05Z) or date-only format (2006-01-02)",
287
+ "example": "2006-01-02T15:04:05Z",
288
+ "type": "string"
289
+ },
290
+ "property_key": {
291
+ "description": "The property key to filter on",
292
+ "example": "last_modified_date",
293
+ "type": "string"
294
+ }
295
+ },
296
+ "type": "object"
297
+ },
298
+ "DatePropertyLinkValue": {
225
299
  "properties": {
226
300
  "date": {
227
- "description": "The date value of the property",
228
- "example": "2025-02-14T12:34:56Z",
301
+ "description": "The date value of the property. Accepts dates in RFC3339 format (2006-01-02T15:04:05Z) or date-only format (2006-01-02)",
302
+ "example": "2006-01-02T15:04:05Z",
229
303
  "type": "string"
230
304
  },
231
305
  "key": {
@@ -235,15 +309,15 @@
235
309
  },
236
310
  "type": "object"
237
311
  },
238
- "apimodel.DatePropertyValue": {
312
+ "DatePropertyValue": {
239
313
  "properties": {
240
314
  "date": {
241
- "description": "The date value of the property",
242
- "example": "2025-02-14T12:34:56Z",
315
+ "description": "The date value of the property. Returns dates in RFC3339 format (2006-01-02T15:04:05Z)",
316
+ "example": "2006-01-02T15:04:05Z",
243
317
  "type": "string"
244
318
  },
245
319
  "format": {
246
- "$ref": "#/components/schemas/apimodel.PropertyFormat"
320
+ "$ref": "#/components/schemas/PropertyFormat"
247
321
  },
248
322
  "id": {
249
323
  "description": "The id of the property",
@@ -268,7 +342,25 @@
268
342
  },
269
343
  "type": "object"
270
344
  },
271
- "apimodel.EmailPropertyLinkValue": {
345
+ "EmailFilterItem": {
346
+ "properties": {
347
+ "condition": {
348
+ "$ref": "#/components/schemas/FilterCondition"
349
+ },
350
+ "email": {
351
+ "description": "The email value to filter by",
352
+ "example": "example@example.com",
353
+ "type": "string"
354
+ },
355
+ "property_key": {
356
+ "description": "The property key to filter on",
357
+ "example": "email",
358
+ "type": "string"
359
+ }
360
+ },
361
+ "type": "object"
362
+ },
363
+ "EmailPropertyLinkValue": {
272
364
  "properties": {
273
365
  "email": {
274
366
  "description": "The email value of the property",
@@ -282,7 +374,7 @@
282
374
  },
283
375
  "type": "object"
284
376
  },
285
- "apimodel.EmailPropertyValue": {
377
+ "EmailPropertyValue": {
286
378
  "properties": {
287
379
  "email": {
288
380
  "description": "The email value of the property",
@@ -290,7 +382,7 @@
290
382
  "type": "string"
291
383
  },
292
384
  "format": {
293
- "$ref": "#/components/schemas/apimodel.PropertyFormat"
385
+ "$ref": "#/components/schemas/PropertyFormat"
294
386
  },
295
387
  "id": {
296
388
  "description": "The id of the property",
@@ -315,7 +407,7 @@
315
407
  },
316
408
  "type": "object"
317
409
  },
318
- "apimodel.EmojiIcon": {
410
+ "EmojiIcon": {
319
411
  "properties": {
320
412
  "emoji": {
321
413
  "description": "The emoji of the icon",
@@ -323,12 +415,25 @@
323
415
  "type": "string"
324
416
  },
325
417
  "format": {
326
- "$ref": "#/components/schemas/apimodel.IconFormat"
418
+ "$ref": "#/components/schemas/IconFormat"
419
+ }
420
+ },
421
+ "type": "object"
422
+ },
423
+ "EmptyFilterItem": {
424
+ "properties": {
425
+ "condition": {
426
+ "$ref": "#/components/schemas/FilterCondition"
427
+ },
428
+ "property_key": {
429
+ "description": "The property key to filter on",
430
+ "example": "description",
431
+ "type": "string"
327
432
  }
328
433
  },
329
434
  "type": "object"
330
435
  },
331
- "apimodel.FileIcon": {
436
+ "FileIcon": {
332
437
  "properties": {
333
438
  "file": {
334
439
  "description": "The file of the icon",
@@ -336,16 +441,38 @@
336
441
  "type": "string"
337
442
  },
338
443
  "format": {
339
- "$ref": "#/components/schemas/apimodel.IconFormat"
444
+ "$ref": "#/components/schemas/IconFormat"
445
+ }
446
+ },
447
+ "type": "object"
448
+ },
449
+ "FilesFilterItem": {
450
+ "properties": {
451
+ "condition": {
452
+ "$ref": "#/components/schemas/FilterCondition"
453
+ },
454
+ "files": {
455
+ "description": "File IDs for contains condition",
456
+ "example": ["bafyreie6n5l5nkbjal37su54cha4coy7qzuhrnajluzv5qd5jvtsrxkequ"],
457
+ "items": {
458
+ "type": "string"
459
+ },
460
+ "type": "array",
461
+ "uniqueItems": false
462
+ },
463
+ "property_key": {
464
+ "description": "The property key to filter on",
465
+ "example": "files",
466
+ "type": "string"
340
467
  }
341
468
  },
342
469
  "type": "object"
343
470
  },
344
- "apimodel.FilesPropertyLinkValue": {
471
+ "FilesPropertyLinkValue": {
345
472
  "properties": {
346
473
  "files": {
347
474
  "description": "The file ids of the property",
348
- "example": ["['file_id']"],
475
+ "example": ["bafyreie6n5l5nkbjal37su54cha4coy7qzuhrnajluzv5qd5jvtsrxkequ"],
349
476
  "items": {
350
477
  "type": "string"
351
478
  },
@@ -359,11 +486,11 @@
359
486
  },
360
487
  "type": "object"
361
488
  },
362
- "apimodel.FilesPropertyValue": {
489
+ "FilesPropertyValue": {
363
490
  "properties": {
364
491
  "files": {
365
492
  "description": "The file values of the property",
366
- "example": ["['file_id']"],
493
+ "example": ["bafyreie6n5l5nkbjal37su54cha4coy7qzuhrnajluzv5qd5jvtsrxkequ"],
367
494
  "items": {
368
495
  "type": "string"
369
496
  },
@@ -371,7 +498,7 @@
371
498
  "uniqueItems": false
372
499
  },
373
500
  "format": {
374
- "$ref": "#/components/schemas/apimodel.PropertyFormat"
501
+ "$ref": "#/components/schemas/PropertyFormat"
375
502
  },
376
503
  "id": {
377
504
  "description": "The id of the property",
@@ -396,34 +523,13 @@
396
523
  },
397
524
  "type": "object"
398
525
  },
399
- "apimodel.Filter": {
526
+ "Filter": {
400
527
  "properties": {
401
528
  "condition": {
402
- "description": "The filter condition",
403
- "enum": [
404
- "equal",
405
- "not_equal",
406
- "greater",
407
- "less",
408
- "greater_or_equal",
409
- "less_or_equal",
410
- "like",
411
- "not_like",
412
- "in",
413
- "not_in",
414
- "empty",
415
- "not_empty",
416
- "all_in",
417
- "not_all_in",
418
- "exact_in",
419
- "not_exact_in",
420
- "exists"
421
- ],
422
- "example": "contains",
423
- "type": "string"
529
+ "$ref": "#/components/schemas/FilterCondition"
424
530
  },
425
531
  "format": {
426
- "$ref": "#/components/schemas/apimodel.PropertyFormat"
532
+ "$ref": "#/components/schemas/PropertyFormat"
427
533
  },
428
534
  "id": {
429
535
  "description": "The id of the filter",
@@ -443,30 +549,531 @@
443
549
  },
444
550
  "type": "object"
445
551
  },
446
- "apimodel.Icon": {
447
- "description": "The icon of the object",
552
+ "FilterCondition": {
553
+ "description": "The filter condition",
554
+ "enum": ["empty", "nempty"],
555
+ "example": "empty",
556
+ "type": "string",
557
+ "x-enum-comments": {
558
+ "FilterConditionAll": "Contains all specified values",
559
+ "FilterConditionContains": "Contains substring",
560
+ "FilterConditionEmpty": "Property value is empty",
561
+ "FilterConditionEq": "Equal to value",
562
+ "FilterConditionGt": "Greater than value",
563
+ "FilterConditionGte": "Greater than or equal to value",
564
+ "FilterConditionIn": "Value is in the specified array",
565
+ "FilterConditionLt": "Less than value",
566
+ "FilterConditionLte": "Less than or equal to value",
567
+ "FilterConditionNContains": "Does not contain substring",
568
+ "FilterConditionNEmpty": "Property value is not empty",
569
+ "FilterConditionNe": "Not equal to value",
570
+ "FilterConditionNin": "Value is not in the specified array"
571
+ },
572
+ "x-enum-varnames": [
573
+ "FilterConditionEq",
574
+ "FilterConditionNe",
575
+ "FilterConditionGt",
576
+ "FilterConditionGte",
577
+ "FilterConditionLt",
578
+ "FilterConditionLte",
579
+ "FilterConditionContains",
580
+ "FilterConditionNContains",
581
+ "FilterConditionIn",
582
+ "FilterConditionNin",
583
+ "FilterConditionAll",
584
+ "FilterConditionEmpty",
585
+ "FilterConditionNEmpty"
586
+ ]
587
+ },
588
+ "FilterExpression": {
589
+ "description": "Expression filter with nested AND/OR conditions",
590
+ "properties": {
591
+ "conditions": {
592
+ "description": "List of format-specific filter conditions",
593
+ "items": {
594
+ "$ref": "#/components/schemas/FilterItem"
595
+ },
596
+ "type": "array",
597
+ "uniqueItems": false
598
+ },
599
+ "filters": {
600
+ "description": "Nested filter expressions for complex logic",
601
+ "items": {
602
+ "$ref": "#/components/schemas/FilterExpression"
603
+ },
604
+ "type": "array",
605
+ "uniqueItems": false
606
+ },
607
+ "operator": {
608
+ "$ref": "#/components/schemas/FilterOperator"
609
+ }
610
+ },
611
+ "type": "object"
612
+ },
613
+ "FilterItem": {
614
+ "oneOf": [
615
+ {
616
+ "$ref": "#/components/schemas/TextFilterItem"
617
+ },
618
+ {
619
+ "$ref": "#/components/schemas/NumberFilterItem"
620
+ },
621
+ {
622
+ "$ref": "#/components/schemas/SelectFilterItem"
623
+ },
624
+ {
625
+ "$ref": "#/components/schemas/MultiSelectFilterItem"
626
+ },
627
+ {
628
+ "$ref": "#/components/schemas/DateFilterItem"
629
+ },
630
+ {
631
+ "$ref": "#/components/schemas/CheckboxFilterItem"
632
+ },
633
+ {
634
+ "$ref": "#/components/schemas/FilesFilterItem"
635
+ },
636
+ {
637
+ "$ref": "#/components/schemas/UrlFilterItem"
638
+ },
639
+ {
640
+ "$ref": "#/components/schemas/EmailFilterItem"
641
+ },
642
+ {
643
+ "$ref": "#/components/schemas/PhoneFilterItem"
644
+ },
645
+ {
646
+ "$ref": "#/components/schemas/ObjectsFilterItem"
647
+ },
648
+ {
649
+ "$ref": "#/components/schemas/EmptyFilterItem"
650
+ }
651
+ ],
652
+ "type": "object"
653
+ },
654
+ "FilterOperator": {
655
+ "description": "Logical operator for combining filters (and, or)",
656
+ "enum": ["and", "or"],
657
+ "type": "string",
658
+ "x-enum-varnames": ["FilterOperatorAnd", "FilterOperatorOr"]
659
+ },
660
+ "Icon": {
661
+ "description": "The icon of the object, or null if the object has no icon",
662
+ "nullable": true,
448
663
  "oneOf": [
449
664
  {
450
- "$ref": "#/components/schemas/apimodel.EmojiIcon"
665
+ "$ref": "#/components/schemas/EmojiIcon"
451
666
  },
452
667
  {
453
- "$ref": "#/components/schemas/apimodel.FileIcon"
668
+ "$ref": "#/components/schemas/FileIcon"
454
669
  },
455
670
  {
456
- "$ref": "#/components/schemas/apimodel.NamedIcon"
671
+ "$ref": "#/components/schemas/NamedIcon"
457
672
  }
458
673
  ],
459
674
  "type": "object"
460
675
  },
461
- "apimodel.IconFormat": {
676
+ "IconFormat": {
462
677
  "description": "The format of the icon",
463
678
  "enum": ["emoji", "file", "icon"],
464
679
  "type": "string",
465
680
  "x-enum-varnames": ["IconFormatEmoji", "IconFormatFile", "IconFormatIcon"]
466
681
  },
467
- "apimodel.IconName": {
682
+ "IconName": {
468
683
  "description": "The name of the icon",
469
- "example": "document",
684
+ "enum": [
685
+ "accessibility",
686
+ "add-circle",
687
+ "airplane",
688
+ "alarm",
689
+ "albums",
690
+ "alert-circle",
691
+ "american-football",
692
+ "analytics",
693
+ "aperture",
694
+ "apps",
695
+ "archive",
696
+ "arrow-back-circle",
697
+ "arrow-down-circle",
698
+ "arrow-forward-circle",
699
+ "arrow-redo-circle",
700
+ "arrow-redo",
701
+ "arrow-undo-circle",
702
+ "arrow-undo",
703
+ "arrow-up-circle",
704
+ "at-circle",
705
+ "attach",
706
+ "backspace",
707
+ "bag-add",
708
+ "bag-check",
709
+ "bag-handle",
710
+ "bag-remove",
711
+ "bag",
712
+ "balloon",
713
+ "ban",
714
+ "bandage",
715
+ "bar-chart",
716
+ "barbell",
717
+ "barcode",
718
+ "baseball",
719
+ "basket",
720
+ "basketball",
721
+ "battery-charging",
722
+ "battery-dead",
723
+ "battery-full",
724
+ "battery-half",
725
+ "beaker",
726
+ "bed",
727
+ "beer",
728
+ "bicycle",
729
+ "binoculars",
730
+ "bluetooth",
731
+ "boat",
732
+ "body",
733
+ "bonfire",
734
+ "book",
735
+ "bookmark",
736
+ "bookmarks",
737
+ "bowling-ball",
738
+ "briefcase",
739
+ "browsers",
740
+ "brush",
741
+ "bug",
742
+ "build",
743
+ "bulb",
744
+ "bus",
745
+ "business",
746
+ "cafe",
747
+ "calculator",
748
+ "calendar-clear",
749
+ "calendar-number",
750
+ "calendar",
751
+ "call",
752
+ "camera-reverse",
753
+ "camera",
754
+ "car-sport",
755
+ "car",
756
+ "card",
757
+ "caret-back-circle",
758
+ "caret-back",
759
+ "caret-down-circle",
760
+ "caret-down",
761
+ "caret-forward-circle",
762
+ "caret-forward",
763
+ "caret-up-circle",
764
+ "caret-up",
765
+ "cart",
766
+ "cash",
767
+ "cellular",
768
+ "chatbox-ellipses",
769
+ "chatbox",
770
+ "chatbubble-ellipses",
771
+ "chatbubble",
772
+ "chatbubbles",
773
+ "checkbox",
774
+ "checkmark-circle",
775
+ "checkmark-done-circle",
776
+ "chevron-back-circle",
777
+ "chevron-down-circle",
778
+ "chevron-forward-circle",
779
+ "chevron-up-circle",
780
+ "clipboard",
781
+ "close-circle",
782
+ "cloud-circle",
783
+ "cloud-done",
784
+ "cloud-download",
785
+ "cloud-offline",
786
+ "cloud-upload",
787
+ "cloud",
788
+ "cloudy-night",
789
+ "cloudy",
790
+ "code-slash",
791
+ "code",
792
+ "cog",
793
+ "color-fill",
794
+ "color-filter",
795
+ "color-palette",
796
+ "color-wand",
797
+ "compass",
798
+ "construct",
799
+ "contact",
800
+ "contract",
801
+ "contrast",
802
+ "copy",
803
+ "create",
804
+ "crop",
805
+ "cube",
806
+ "cut",
807
+ "desktop",
808
+ "diamond",
809
+ "dice",
810
+ "disc",
811
+ "document-attach",
812
+ "document-lock",
813
+ "document-text",
814
+ "document",
815
+ "documents",
816
+ "download",
817
+ "duplicate",
818
+ "ear",
819
+ "earth",
820
+ "easel",
821
+ "egg",
822
+ "ellipse",
823
+ "ellipsis-horizontal-circle",
824
+ "ellipsis-vertical-circle",
825
+ "enter",
826
+ "exit",
827
+ "expand",
828
+ "extension-puzzle",
829
+ "eye-off",
830
+ "eye",
831
+ "eyedrop",
832
+ "fast-food",
833
+ "female",
834
+ "file-tray-full",
835
+ "file-tray-stacked",
836
+ "file-tray",
837
+ "film",
838
+ "filter-circle",
839
+ "finger-print",
840
+ "fish",
841
+ "fitness",
842
+ "flag",
843
+ "flame",
844
+ "flash-off",
845
+ "flash",
846
+ "flashlight",
847
+ "flask",
848
+ "flower",
849
+ "folder-open",
850
+ "folder",
851
+ "football",
852
+ "footsteps",
853
+ "funnel",
854
+ "game-controller",
855
+ "gift",
856
+ "git-branch",
857
+ "git-commit",
858
+ "git-compare",
859
+ "git-merge",
860
+ "git-network",
861
+ "git-pull-request",
862
+ "glasses",
863
+ "globe",
864
+ "golf",
865
+ "grid",
866
+ "hammer",
867
+ "hand-left",
868
+ "hand-right",
869
+ "happy",
870
+ "hardware-chip",
871
+ "headset",
872
+ "heart-circle",
873
+ "heart-dislike-circle",
874
+ "heart-dislike",
875
+ "heart-half",
876
+ "heart",
877
+ "help-buoy",
878
+ "help-circle",
879
+ "home",
880
+ "hourglass",
881
+ "ice-cream",
882
+ "id-card",
883
+ "image",
884
+ "images",
885
+ "infinite",
886
+ "information-circle",
887
+ "invert-mode",
888
+ "journal",
889
+ "key",
890
+ "keypad",
891
+ "language",
892
+ "laptop",
893
+ "layers",
894
+ "leaf",
895
+ "library",
896
+ "link",
897
+ "list-circle",
898
+ "list",
899
+ "locate",
900
+ "location",
901
+ "lock-closed",
902
+ "lock-open",
903
+ "log-in",
904
+ "log-out",
905
+ "logo-alipay",
906
+ "logo-amazon",
907
+ "logo-amplify",
908
+ "logo-android",
909
+ "magnet",
910
+ "mail-open",
911
+ "mail-unread",
912
+ "mail",
913
+ "male-female",
914
+ "male",
915
+ "man",
916
+ "map",
917
+ "medal",
918
+ "medical",
919
+ "medkit",
920
+ "megaphone",
921
+ "menu",
922
+ "mic-circle",
923
+ "mic-off-circle",
924
+ "mic-off",
925
+ "mic",
926
+ "moon",
927
+ "move",
928
+ "musical-note",
929
+ "musical-notes",
930
+ "navigate-circle",
931
+ "navigate",
932
+ "newspaper",
933
+ "notifications-circle",
934
+ "notifications-off-circle",
935
+ "notifications-off",
936
+ "notifications",
937
+ "nuclear",
938
+ "nutrition",
939
+ "options",
940
+ "paper-plane",
941
+ "partly-sunny",
942
+ "pause-circle",
943
+ "pause",
944
+ "paw",
945
+ "pencil",
946
+ "people-circle",
947
+ "people",
948
+ "person-add",
949
+ "person-circle",
950
+ "person-remove",
951
+ "person",
952
+ "phone-landscape",
953
+ "phone-portrait",
954
+ "pie-chart",
955
+ "pin",
956
+ "pint",
957
+ "pizza",
958
+ "planet",
959
+ "play-back-circle",
960
+ "play-back",
961
+ "play-circle",
962
+ "play-forward-circle",
963
+ "play-forward",
964
+ "play-skip-back-circle",
965
+ "play-skip-back",
966
+ "play-skip-forward-circle",
967
+ "play-skip-forward",
968
+ "play",
969
+ "podium",
970
+ "power",
971
+ "pricetag",
972
+ "pricetags",
973
+ "print",
974
+ "prism",
975
+ "pulse",
976
+ "push",
977
+ "qr-code",
978
+ "radio-button-off",
979
+ "radio-button-on",
980
+ "radio",
981
+ "rainy",
982
+ "reader",
983
+ "receipt",
984
+ "recording",
985
+ "refresh-circle",
986
+ "refresh",
987
+ "reload-circle",
988
+ "reload",
989
+ "remove-circle",
990
+ "repeat",
991
+ "resize",
992
+ "restaurant",
993
+ "ribbon",
994
+ "rocket",
995
+ "rose",
996
+ "sad",
997
+ "save",
998
+ "scale",
999
+ "scan-circle",
1000
+ "scan",
1001
+ "school",
1002
+ "search-circle",
1003
+ "search",
1004
+ "send",
1005
+ "server",
1006
+ "settings",
1007
+ "shapes",
1008
+ "share-social",
1009
+ "share",
1010
+ "shield-checkmark",
1011
+ "shield-half",
1012
+ "shield",
1013
+ "shirt",
1014
+ "shuffle",
1015
+ "skull",
1016
+ "snow",
1017
+ "sparkles",
1018
+ "speedometer",
1019
+ "square",
1020
+ "star-half",
1021
+ "star",
1022
+ "stats-chart",
1023
+ "stop-circle",
1024
+ "stop",
1025
+ "stopwatch",
1026
+ "storefront",
1027
+ "subway",
1028
+ "sunny",
1029
+ "swap-horizontal",
1030
+ "swap-vertical",
1031
+ "sync-circle",
1032
+ "sync",
1033
+ "t.txt",
1034
+ "tablet-landscape",
1035
+ "tablet-portrait",
1036
+ "telescope",
1037
+ "tennisball",
1038
+ "terminal",
1039
+ "text",
1040
+ "thermometer",
1041
+ "thumbs-down",
1042
+ "thumbs-up",
1043
+ "thunderstorm",
1044
+ "ticket",
1045
+ "time",
1046
+ "timer",
1047
+ "today",
1048
+ "toggle",
1049
+ "trail-sign",
1050
+ "train",
1051
+ "transgender",
1052
+ "trash-bin",
1053
+ "trash",
1054
+ "trending-down",
1055
+ "trending-up",
1056
+ "triangle",
1057
+ "trophy",
1058
+ "tv",
1059
+ "umbrella",
1060
+ "unlink",
1061
+ "videocam-off",
1062
+ "videocam",
1063
+ "volume-high",
1064
+ "volume-low",
1065
+ "volume-medium",
1066
+ "volume-mute",
1067
+ "volume-off",
1068
+ "walk",
1069
+ "wallet",
1070
+ "warning",
1071
+ "watch",
1072
+ "water",
1073
+ "wifi",
1074
+ "wine",
1075
+ "woman"
1076
+ ],
470
1077
  "type": "string",
471
1078
  "x-enum-varnames": [
472
1079
  "IconNameAccessibility",
@@ -861,7 +1468,7 @@
861
1468
  "IconNameWoman"
862
1469
  ]
863
1470
  },
864
- "apimodel.Member": {
1471
+ "Member": {
865
1472
  "description": "The member",
866
1473
  "properties": {
867
1474
  "global_name": {
@@ -870,7 +1477,7 @@
870
1477
  "type": "string"
871
1478
  },
872
1479
  "icon": {
873
- "$ref": "#/components/schemas/apimodel.Icon"
1480
+ "$ref": "#/components/schemas/Icon"
874
1481
  },
875
1482
  "id": {
876
1483
  "description": "The profile object id of the member",
@@ -907,23 +1514,48 @@
907
1514
  },
908
1515
  "type": "object"
909
1516
  },
910
- "apimodel.MemberResponse": {
1517
+ "MemberResponse": {
911
1518
  "properties": {
912
1519
  "member": {
913
- "$ref": "#/components/schemas/apimodel.Member"
1520
+ "$ref": "#/components/schemas/Member"
1521
+ }
1522
+ },
1523
+ "type": "object"
1524
+ },
1525
+ "MultiSelectFilterItem": {
1526
+ "properties": {
1527
+ "condition": {
1528
+ "$ref": "#/components/schemas/FilterCondition"
1529
+ },
1530
+ "multi_select": {
1531
+ "description": "The tag IDs to filter by",
1532
+ "example": [
1533
+ "bafyreiaixlnaefu3ci22zdenjhsdlyaeeoyjrsid5qhfeejzlccijbj7sq",
1534
+ "bafyreie6n5l5nkbjal37su54cha4coy7qzuhrnajluzv5qd5jvtsrxkequ"
1535
+ ],
1536
+ "items": {
1537
+ "type": "string"
1538
+ },
1539
+ "type": "array",
1540
+ "uniqueItems": false
1541
+ },
1542
+ "property_key": {
1543
+ "description": "The property key to filter on",
1544
+ "example": "tag",
1545
+ "type": "string"
914
1546
  }
915
1547
  },
916
1548
  "type": "object"
917
1549
  },
918
- "apimodel.MultiSelectPropertyLinkValue": {
1550
+ "MultiSelectPropertyLinkValue": {
919
1551
  "properties": {
920
1552
  "key": {
921
1553
  "example": "tag",
922
1554
  "type": "string"
923
1555
  },
924
1556
  "multi_select": {
925
- "description": "The selected tag ids of the property; see ListTags endpoint for valid values",
926
- "example": ["['tag_id']"],
1557
+ "description": "The selected tags (by key, e.g., \"important\", or ID, e.g., \"bafyrei...\") of the property; see ListTags endpoint for valid values",
1558
+ "example": ["important", "bafyreie6n5l5nkbjal37su54cha4coy7qzuhrnajluzv5qd5jvtsrxkequ"],
927
1559
  "items": {
928
1560
  "type": "string"
929
1561
  },
@@ -933,10 +1565,10 @@
933
1565
  },
934
1566
  "type": "object"
935
1567
  },
936
- "apimodel.MultiSelectPropertyValue": {
1568
+ "MultiSelectPropertyValue": {
937
1569
  "properties": {
938
1570
  "format": {
939
- "$ref": "#/components/schemas/apimodel.PropertyFormat"
1571
+ "$ref": "#/components/schemas/PropertyFormat"
940
1572
  },
941
1573
  "id": {
942
1574
  "description": "The id of the property",
@@ -951,7 +1583,7 @@
951
1583
  "multi_select": {
952
1584
  "description": "The selected tag values of the property",
953
1585
  "items": {
954
- "$ref": "#/components/schemas/apimodel.Tag"
1586
+ "$ref": "#/components/schemas/Tag"
955
1587
  },
956
1588
  "type": "array",
957
1589
  "uniqueItems": false
@@ -969,21 +1601,39 @@
969
1601
  },
970
1602
  "type": "object"
971
1603
  },
972
- "apimodel.NamedIcon": {
1604
+ "NamedIcon": {
973
1605
  "properties": {
974
1606
  "color": {
975
- "$ref": "#/components/schemas/apimodel.Color"
1607
+ "$ref": "#/components/schemas/Color"
976
1608
  },
977
1609
  "format": {
978
- "$ref": "#/components/schemas/apimodel.IconFormat"
1610
+ "$ref": "#/components/schemas/IconFormat"
979
1611
  },
980
1612
  "name": {
981
- "$ref": "#/components/schemas/apimodel.IconName"
1613
+ "$ref": "#/components/schemas/IconName"
1614
+ }
1615
+ },
1616
+ "type": "object"
1617
+ },
1618
+ "NumberFilterItem": {
1619
+ "properties": {
1620
+ "condition": {
1621
+ "$ref": "#/components/schemas/FilterCondition"
1622
+ },
1623
+ "number": {
1624
+ "description": "The number value to filter by",
1625
+ "example": 42,
1626
+ "type": "number"
1627
+ },
1628
+ "property_key": {
1629
+ "description": "The property key to filter on",
1630
+ "example": "height",
1631
+ "type": "string"
982
1632
  }
983
1633
  },
984
1634
  "type": "object"
985
1635
  },
986
- "apimodel.NumberPropertyLinkValue": {
1636
+ "NumberPropertyLinkValue": {
987
1637
  "properties": {
988
1638
  "key": {
989
1639
  "example": "height",
@@ -997,10 +1647,10 @@
997
1647
  },
998
1648
  "type": "object"
999
1649
  },
1000
- "apimodel.NumberPropertyValue": {
1650
+ "NumberPropertyValue": {
1001
1651
  "properties": {
1002
1652
  "format": {
1003
- "$ref": "#/components/schemas/apimodel.PropertyFormat"
1653
+ "$ref": "#/components/schemas/PropertyFormat"
1004
1654
  },
1005
1655
  "id": {
1006
1656
  "description": "The id of the property",
@@ -1030,7 +1680,7 @@
1030
1680
  },
1031
1681
  "type": "object"
1032
1682
  },
1033
- "apimodel.Object": {
1683
+ "Object": {
1034
1684
  "properties": {
1035
1685
  "archived": {
1036
1686
  "description": "Whether the object is archived",
@@ -1038,7 +1688,7 @@
1038
1688
  "type": "boolean"
1039
1689
  },
1040
1690
  "icon": {
1041
- "$ref": "#/components/schemas/apimodel.Icon"
1691
+ "$ref": "#/components/schemas/Icon"
1042
1692
  },
1043
1693
  "id": {
1044
1694
  "description": "The id of the object",
@@ -1046,7 +1696,7 @@
1046
1696
  "type": "string"
1047
1697
  },
1048
1698
  "layout": {
1049
- "$ref": "#/components/schemas/apimodel.ObjectLayout"
1699
+ "$ref": "#/components/schemas/ObjectLayout"
1050
1700
  },
1051
1701
  "name": {
1052
1702
  "description": "The name of the object",
@@ -1061,7 +1711,7 @@
1061
1711
  "properties": {
1062
1712
  "description": "The properties of the object",
1063
1713
  "items": {
1064
- "$ref": "#/components/schemas/apimodel.PropertyWithValue"
1714
+ "$ref": "#/components/schemas/PropertyWithValue"
1065
1715
  },
1066
1716
  "type": "array",
1067
1717
  "uniqueItems": false
@@ -1077,12 +1727,12 @@
1077
1727
  "type": "string"
1078
1728
  },
1079
1729
  "type": {
1080
- "$ref": "#/components/schemas/apimodel.Type"
1730
+ "$ref": "#/components/schemas/Type"
1081
1731
  }
1082
1732
  },
1083
1733
  "type": "object"
1084
1734
  },
1085
- "apimodel.ObjectLayout": {
1735
+ "ObjectLayout": {
1086
1736
  "description": "The layout of the object",
1087
1737
  "example": "basic",
1088
1738
  "type": "string",
@@ -1097,15 +1747,15 @@
1097
1747
  "ObjectLayoutParticipant"
1098
1748
  ]
1099
1749
  },
1100
- "apimodel.ObjectResponse": {
1750
+ "ObjectResponse": {
1101
1751
  "properties": {
1102
1752
  "object": {
1103
- "$ref": "#/components/schemas/apimodel.ObjectWithBody"
1753
+ "$ref": "#/components/schemas/ObjectWithBody"
1104
1754
  }
1105
1755
  },
1106
1756
  "type": "object"
1107
1757
  },
1108
- "apimodel.ObjectWithBody": {
1758
+ "ObjectWithBody": {
1109
1759
  "description": "The object",
1110
1760
  "properties": {
1111
1761
  "archived": {
@@ -1114,7 +1764,7 @@
1114
1764
  "type": "boolean"
1115
1765
  },
1116
1766
  "icon": {
1117
- "$ref": "#/components/schemas/apimodel.Icon"
1767
+ "$ref": "#/components/schemas/Icon"
1118
1768
  },
1119
1769
  "id": {
1120
1770
  "description": "The id of the object",
@@ -1154,7 +1804,7 @@
1154
1804
  "properties": {
1155
1805
  "description": "The properties of the object",
1156
1806
  "items": {
1157
- "$ref": "#/components/schemas/apimodel.PropertyWithValue"
1807
+ "$ref": "#/components/schemas/PropertyWithValue"
1158
1808
  },
1159
1809
  "type": "array",
1160
1810
  "uniqueItems": false
@@ -1170,12 +1820,34 @@
1170
1820
  "type": "string"
1171
1821
  },
1172
1822
  "type": {
1173
- "$ref": "#/components/schemas/apimodel.Type"
1823
+ "$ref": "#/components/schemas/Type"
1824
+ }
1825
+ },
1826
+ "type": "object"
1827
+ },
1828
+ "ObjectsFilterItem": {
1829
+ "properties": {
1830
+ "condition": {
1831
+ "$ref": "#/components/schemas/FilterCondition"
1832
+ },
1833
+ "objects": {
1834
+ "description": "Object Ids to filter by",
1835
+ "example": ["bafyreie6n5l5nkbjal37su54cha4coy7qzuhrnajluzv5qd5jvtsrxkequ"],
1836
+ "items": {
1837
+ "type": "string"
1838
+ },
1839
+ "type": "array",
1840
+ "uniqueItems": false
1841
+ },
1842
+ "property_key": {
1843
+ "description": "The property key to filter on",
1844
+ "example": "creator",
1845
+ "type": "string"
1174
1846
  }
1175
1847
  },
1176
1848
  "type": "object"
1177
1849
  },
1178
- "apimodel.ObjectsPropertyLinkValue": {
1850
+ "ObjectsPropertyLinkValue": {
1179
1851
  "properties": {
1180
1852
  "key": {
1181
1853
  "example": "creator",
@@ -1183,7 +1855,7 @@
1183
1855
  },
1184
1856
  "objects": {
1185
1857
  "description": "The object ids of the property",
1186
- "example": ["['object_id']"],
1858
+ "example": ["bafyreie6n5l5nkbjal37su54cha4coy7qzuhrnajluzv5qd5jvtsrxkequ"],
1187
1859
  "items": {
1188
1860
  "type": "string"
1189
1861
  },
@@ -1193,10 +1865,10 @@
1193
1865
  },
1194
1866
  "type": "object"
1195
1867
  },
1196
- "apimodel.ObjectsPropertyValue": {
1868
+ "ObjectsPropertyValue": {
1197
1869
  "properties": {
1198
1870
  "format": {
1199
- "$ref": "#/components/schemas/apimodel.PropertyFormat"
1871
+ "$ref": "#/components/schemas/PropertyFormat"
1200
1872
  },
1201
1873
  "id": {
1202
1874
  "description": "The id of the property",
@@ -1220,7 +1892,7 @@
1220
1892
  },
1221
1893
  "objects": {
1222
1894
  "description": "The object values of the property",
1223
- "example": ["['object_id']"],
1895
+ "example": ["bafyreie6n5l5nkbjal37su54cha4coy7qzuhrnajluzv5qd5jvtsrxkequ"],
1224
1896
  "items": {
1225
1897
  "type": "string"
1226
1898
  },
@@ -1230,7 +1902,25 @@
1230
1902
  },
1231
1903
  "type": "object"
1232
1904
  },
1233
- "apimodel.PhonePropertyLinkValue": {
1905
+ "PhoneFilterItem": {
1906
+ "properties": {
1907
+ "condition": {
1908
+ "$ref": "#/components/schemas/FilterCondition"
1909
+ },
1910
+ "phone": {
1911
+ "description": "The phone value to filter by",
1912
+ "example": "+1234567890",
1913
+ "type": "string"
1914
+ },
1915
+ "property_key": {
1916
+ "description": "The property key to filter on",
1917
+ "example": "phone",
1918
+ "type": "string"
1919
+ }
1920
+ },
1921
+ "type": "object"
1922
+ },
1923
+ "PhonePropertyLinkValue": {
1234
1924
  "properties": {
1235
1925
  "key": {
1236
1926
  "example": "phone",
@@ -1244,10 +1934,10 @@
1244
1934
  },
1245
1935
  "type": "object"
1246
1936
  },
1247
- "apimodel.PhonePropertyValue": {
1937
+ "PhonePropertyValue": {
1248
1938
  "properties": {
1249
1939
  "format": {
1250
- "$ref": "#/components/schemas/apimodel.PropertyFormat"
1940
+ "$ref": "#/components/schemas/PropertyFormat"
1251
1941
  },
1252
1942
  "id": {
1253
1943
  "description": "The id of the property",
@@ -1277,11 +1967,11 @@
1277
1967
  },
1278
1968
  "type": "object"
1279
1969
  },
1280
- "apimodel.Property": {
1970
+ "Property": {
1281
1971
  "description": "The property",
1282
1972
  "properties": {
1283
1973
  "format": {
1284
- "$ref": "#/components/schemas/apimodel.PropertyFormat"
1974
+ "$ref": "#/components/schemas/PropertyFormat"
1285
1975
  },
1286
1976
  "id": {
1287
1977
  "description": "The id of the property",
@@ -1306,7 +1996,7 @@
1306
1996
  },
1307
1997
  "type": "object"
1308
1998
  },
1309
- "apimodel.PropertyFormat": {
1999
+ "PropertyFormat": {
1310
2000
  "description": "The format of the property used for filtering",
1311
2001
  "enum": [
1312
2002
  "text",
@@ -1336,10 +2026,10 @@
1336
2026
  "PropertyFormatObjects"
1337
2027
  ]
1338
2028
  },
1339
- "apimodel.PropertyLink": {
2029
+ "PropertyLink": {
1340
2030
  "properties": {
1341
2031
  "format": {
1342
- "$ref": "#/components/schemas/apimodel.PropertyFormat"
2032
+ "$ref": "#/components/schemas/PropertyFormat"
1343
2033
  },
1344
2034
  "key": {
1345
2035
  "description": "The key of the property",
@@ -1355,99 +2045,102 @@
1355
2045
  "required": ["format", "key", "name"],
1356
2046
  "type": "object"
1357
2047
  },
1358
- "apimodel.PropertyLinkWithValue": {
2048
+ "PropertyLinkWithValue": {
1359
2049
  "oneOf": [
1360
2050
  {
1361
- "$ref": "#/components/schemas/apimodel.TextPropertyLinkValue"
2051
+ "$ref": "#/components/schemas/TextPropertyLinkValue"
1362
2052
  },
1363
2053
  {
1364
- "$ref": "#/components/schemas/apimodel.NumberPropertyLinkValue"
2054
+ "$ref": "#/components/schemas/NumberPropertyLinkValue"
1365
2055
  },
1366
2056
  {
1367
- "$ref": "#/components/schemas/apimodel.SelectPropertyLinkValue"
2057
+ "$ref": "#/components/schemas/SelectPropertyLinkValue"
1368
2058
  },
1369
2059
  {
1370
- "$ref": "#/components/schemas/apimodel.MultiSelectPropertyLinkValue"
2060
+ "$ref": "#/components/schemas/MultiSelectPropertyLinkValue"
1371
2061
  },
1372
2062
  {
1373
- "$ref": "#/components/schemas/apimodel.DatePropertyLinkValue"
2063
+ "$ref": "#/components/schemas/DatePropertyLinkValue"
1374
2064
  },
1375
2065
  {
1376
- "$ref": "#/components/schemas/apimodel.FilesPropertyLinkValue"
2066
+ "$ref": "#/components/schemas/FilesPropertyLinkValue"
1377
2067
  },
1378
2068
  {
1379
- "$ref": "#/components/schemas/apimodel.CheckboxPropertyLinkValue"
2069
+ "$ref": "#/components/schemas/CheckboxPropertyLinkValue"
1380
2070
  },
1381
2071
  {
1382
- "$ref": "#/components/schemas/apimodel.URLPropertyLinkValue"
2072
+ "$ref": "#/components/schemas/UrlPropertyLinkValue"
1383
2073
  },
1384
2074
  {
1385
- "$ref": "#/components/schemas/apimodel.EmailPropertyLinkValue"
2075
+ "$ref": "#/components/schemas/EmailPropertyLinkValue"
1386
2076
  },
1387
2077
  {
1388
- "$ref": "#/components/schemas/apimodel.PhonePropertyLinkValue"
2078
+ "$ref": "#/components/schemas/PhonePropertyLinkValue"
1389
2079
  },
1390
2080
  {
1391
- "$ref": "#/components/schemas/apimodel.ObjectsPropertyLinkValue"
2081
+ "$ref": "#/components/schemas/ObjectsPropertyLinkValue"
1392
2082
  }
1393
2083
  ],
1394
2084
  "type": "object"
1395
2085
  },
1396
- "apimodel.PropertyResponse": {
2086
+ "PropertyResponse": {
1397
2087
  "properties": {
1398
2088
  "property": {
1399
- "$ref": "#/components/schemas/apimodel.Property"
2089
+ "$ref": "#/components/schemas/Property"
1400
2090
  }
1401
2091
  },
1402
2092
  "type": "object"
1403
2093
  },
1404
- "apimodel.PropertyWithValue": {
2094
+ "PropertyWithValue": {
1405
2095
  "oneOf": [
1406
2096
  {
1407
- "$ref": "#/components/schemas/apimodel.TextPropertyValue"
2097
+ "$ref": "#/components/schemas/TextPropertyValue"
1408
2098
  },
1409
2099
  {
1410
- "$ref": "#/components/schemas/apimodel.NumberPropertyValue"
2100
+ "$ref": "#/components/schemas/NumberPropertyValue"
1411
2101
  },
1412
2102
  {
1413
- "$ref": "#/components/schemas/apimodel.SelectPropertyValue"
2103
+ "$ref": "#/components/schemas/SelectPropertyValue"
1414
2104
  },
1415
2105
  {
1416
- "$ref": "#/components/schemas/apimodel.MultiSelectPropertyValue"
2106
+ "$ref": "#/components/schemas/MultiSelectPropertyValue"
1417
2107
  },
1418
2108
  {
1419
- "$ref": "#/components/schemas/apimodel.DatePropertyValue"
2109
+ "$ref": "#/components/schemas/DatePropertyValue"
1420
2110
  },
1421
2111
  {
1422
- "$ref": "#/components/schemas/apimodel.FilesPropertyValue"
2112
+ "$ref": "#/components/schemas/FilesPropertyValue"
1423
2113
  },
1424
2114
  {
1425
- "$ref": "#/components/schemas/apimodel.CheckboxPropertyValue"
2115
+ "$ref": "#/components/schemas/CheckboxPropertyValue"
1426
2116
  },
1427
2117
  {
1428
- "$ref": "#/components/schemas/apimodel.URLPropertyValue"
2118
+ "$ref": "#/components/schemas/UrlPropertyValue"
1429
2119
  },
1430
2120
  {
1431
- "$ref": "#/components/schemas/apimodel.EmailPropertyValue"
2121
+ "$ref": "#/components/schemas/EmailPropertyValue"
1432
2122
  },
1433
2123
  {
1434
- "$ref": "#/components/schemas/apimodel.PhonePropertyValue"
2124
+ "$ref": "#/components/schemas/PhonePropertyValue"
1435
2125
  },
1436
2126
  {
1437
- "$ref": "#/components/schemas/apimodel.ObjectsPropertyValue"
2127
+ "$ref": "#/components/schemas/ObjectsPropertyValue"
1438
2128
  }
1439
2129
  ],
1440
2130
  "type": "object"
1441
2131
  },
1442
- "apimodel.SearchRequest": {
2132
+ "SearchRequest": {
1443
2133
  "properties": {
2134
+ "filters": {
2135
+ "$ref": "#/components/schemas/FilterExpression"
2136
+ },
1444
2137
  "query": {
1445
2138
  "description": "The text to search within object names and content; use types field for type filtering",
1446
2139
  "example": "test",
1447
2140
  "type": "string"
1448
2141
  },
1449
2142
  "sort": {
1450
- "$ref": "#/components/schemas/apimodel.SortOptions"
2143
+ "$ref": "#/components/schemas/SortOptions"
1451
2144
  },
1452
2145
  "types": {
1453
2146
  "description": "The types of objects to include in results (e.g., \"page\", \"task\", \"bookmark\"); see ListTypes endpoint for valid values",
@@ -1461,24 +2154,42 @@
1461
2154
  },
1462
2155
  "type": "object"
1463
2156
  },
1464
- "apimodel.SelectPropertyLinkValue": {
2157
+ "SelectFilterItem": {
1465
2158
  "properties": {
1466
- "key": {
2159
+ "condition": {
2160
+ "$ref": "#/components/schemas/FilterCondition"
2161
+ },
2162
+ "property_key": {
2163
+ "description": "The property key to filter on",
1467
2164
  "example": "status",
1468
2165
  "type": "string"
1469
2166
  },
1470
2167
  "select": {
1471
- "description": "The selected tag id of the property; see ListTags endpoint for valid values",
2168
+ "description": "Tag Id - for eq/ne conditions (single selection)",
1472
2169
  "example": "tag_id",
1473
2170
  "type": "string"
1474
2171
  }
1475
2172
  },
1476
2173
  "type": "object"
1477
2174
  },
1478
- "apimodel.SelectPropertyValue": {
2175
+ "SelectPropertyLinkValue": {
2176
+ "properties": {
2177
+ "key": {
2178
+ "example": "status",
2179
+ "type": "string"
2180
+ },
2181
+ "select": {
2182
+ "description": "The selected tag (by key, e.g., \"important\", or ID, e.g., \"bafyrei...\") of the property; see ListTags endpoint for valid values",
2183
+ "example": "important",
2184
+ "type": "string"
2185
+ }
2186
+ },
2187
+ "type": "object"
2188
+ },
2189
+ "SelectPropertyValue": {
1479
2190
  "properties": {
1480
2191
  "format": {
1481
- "$ref": "#/components/schemas/apimodel.PropertyFormat"
2192
+ "$ref": "#/components/schemas/PropertyFormat"
1482
2193
  },
1483
2194
  "id": {
1484
2195
  "description": "The id of the property",
@@ -1501,15 +2212,15 @@
1501
2212
  "type": "string"
1502
2213
  },
1503
2214
  "select": {
1504
- "$ref": "#/components/schemas/apimodel.Tag"
2215
+ "$ref": "#/components/schemas/Tag"
1505
2216
  }
1506
2217
  },
1507
2218
  "type": "object"
1508
2219
  },
1509
- "apimodel.Sort": {
2220
+ "Sort": {
1510
2221
  "properties": {
1511
2222
  "format": {
1512
- "$ref": "#/components/schemas/apimodel.PropertyFormat"
2223
+ "$ref": "#/components/schemas/PropertyFormat"
1513
2224
  },
1514
2225
  "id": {
1515
2226
  "description": "The id of the sort",
@@ -1530,33 +2241,33 @@
1530
2241
  },
1531
2242
  "type": "object"
1532
2243
  },
1533
- "apimodel.SortDirection": {
2244
+ "SortDirection": {
1534
2245
  "default": "desc",
1535
2246
  "description": "The direction to sort the search results by",
1536
2247
  "enum": ["asc", "desc"],
1537
2248
  "type": "string",
1538
2249
  "x-enum-varnames": ["Asc", "Desc"]
1539
2250
  },
1540
- "apimodel.SortOptions": {
2251
+ "SortOptions": {
1541
2252
  "description": "The sorting options for the search results",
1542
2253
  "properties": {
1543
2254
  "direction": {
1544
- "$ref": "#/components/schemas/apimodel.SortDirection"
2255
+ "$ref": "#/components/schemas/SortDirection"
1545
2256
  },
1546
2257
  "property_key": {
1547
- "$ref": "#/components/schemas/apimodel.SortProperty"
2258
+ "$ref": "#/components/schemas/SortProperty"
1548
2259
  }
1549
2260
  },
1550
2261
  "type": "object"
1551
2262
  },
1552
- "apimodel.SortProperty": {
2263
+ "SortProperty": {
1553
2264
  "default": "last_modified_date",
1554
2265
  "description": "The key of the property to sort the search results by",
1555
2266
  "enum": ["created_date", "last_modified_date", "last_opened_date", "name"],
1556
2267
  "type": "string",
1557
2268
  "x-enum-varnames": ["CreatedDate", "LastModifiedDate", "LastOpenedDate", "Name"]
1558
2269
  },
1559
- "apimodel.Space": {
2270
+ "Space": {
1560
2271
  "description": "The space",
1561
2272
  "properties": {
1562
2273
  "description": {
@@ -1570,7 +2281,7 @@
1570
2281
  "type": "string"
1571
2282
  },
1572
2283
  "icon": {
1573
- "$ref": "#/components/schemas/apimodel.Icon"
2284
+ "$ref": "#/components/schemas/Icon"
1574
2285
  },
1575
2286
  "id": {
1576
2287
  "description": "The id of the space",
@@ -1589,25 +2300,26 @@
1589
2300
  },
1590
2301
  "object": {
1591
2302
  "description": "The data model of the object",
2303
+ "enum": ["space", "chat"],
1592
2304
  "example": "space",
1593
2305
  "type": "string"
1594
2306
  }
1595
2307
  },
1596
2308
  "type": "object"
1597
2309
  },
1598
- "apimodel.SpaceResponse": {
2310
+ "SpaceResponse": {
1599
2311
  "properties": {
1600
2312
  "space": {
1601
- "$ref": "#/components/schemas/apimodel.Space"
2313
+ "$ref": "#/components/schemas/Space"
1602
2314
  }
1603
2315
  },
1604
2316
  "type": "object"
1605
2317
  },
1606
- "apimodel.Tag": {
2318
+ "Tag": {
1607
2319
  "description": "The selected tag value of the property",
1608
2320
  "properties": {
1609
2321
  "color": {
1610
- "$ref": "#/components/schemas/apimodel.Color"
2322
+ "$ref": "#/components/schemas/Color"
1611
2323
  },
1612
2324
  "id": {
1613
2325
  "description": "The id of the tag",
@@ -1632,23 +2344,41 @@
1632
2344
  },
1633
2345
  "type": "object"
1634
2346
  },
1635
- "apimodel.TagResponse": {
2347
+ "TagResponse": {
1636
2348
  "properties": {
1637
2349
  "tag": {
1638
- "$ref": "#/components/schemas/apimodel.Tag"
2350
+ "$ref": "#/components/schemas/Tag"
1639
2351
  }
1640
2352
  },
1641
2353
  "type": "object"
1642
2354
  },
1643
- "apimodel.TemplateResponse": {
2355
+ "TemplateResponse": {
1644
2356
  "properties": {
1645
2357
  "template": {
1646
- "$ref": "#/components/schemas/apimodel.ObjectWithBody"
2358
+ "$ref": "#/components/schemas/ObjectWithBody"
2359
+ }
2360
+ },
2361
+ "type": "object"
2362
+ },
2363
+ "TextFilterItem": {
2364
+ "properties": {
2365
+ "condition": {
2366
+ "$ref": "#/components/schemas/FilterCondition"
2367
+ },
2368
+ "property_key": {
2369
+ "description": "The property key to filter on",
2370
+ "example": "description",
2371
+ "type": "string"
2372
+ },
2373
+ "text": {
2374
+ "description": "The text value to filter by",
2375
+ "example": "Some text...",
2376
+ "type": "string"
1647
2377
  }
1648
2378
  },
1649
2379
  "type": "object"
1650
2380
  },
1651
- "apimodel.TextPropertyLinkValue": {
2381
+ "TextPropertyLinkValue": {
1652
2382
  "properties": {
1653
2383
  "key": {
1654
2384
  "example": "description",
@@ -1662,10 +2392,10 @@
1662
2392
  },
1663
2393
  "type": "object"
1664
2394
  },
1665
- "apimodel.TextPropertyValue": {
2395
+ "TextPropertyValue": {
1666
2396
  "properties": {
1667
2397
  "format": {
1668
- "$ref": "#/components/schemas/apimodel.PropertyFormat"
2398
+ "$ref": "#/components/schemas/PropertyFormat"
1669
2399
  },
1670
2400
  "id": {
1671
2401
  "description": "The id of the property",
@@ -1695,8 +2425,9 @@
1695
2425
  },
1696
2426
  "type": "object"
1697
2427
  },
1698
- "apimodel.Type": {
1699
- "description": "The type of the object",
2428
+ "Type": {
2429
+ "description": "The type of the object, or null if the type has been deleted.",
2430
+ "nullable": true,
1700
2431
  "properties": {
1701
2432
  "archived": {
1702
2433
  "description": "Whether the type is archived",
@@ -1704,7 +2435,7 @@
1704
2435
  "type": "boolean"
1705
2436
  },
1706
2437
  "icon": {
1707
- "$ref": "#/components/schemas/apimodel.Icon"
2438
+ "$ref": "#/components/schemas/Icon"
1708
2439
  },
1709
2440
  "id": {
1710
2441
  "description": "The id of the type (which is unique across spaces)",
@@ -1718,7 +2449,7 @@
1718
2449
  },
1719
2450
  "layout": {
1720
2451
  "description": "The layout of the object",
1721
- "enum": ["basic", "profile", "action", "note", "bookmark", "set", "set", "collection", "participant"],
2452
+ "enum": ["basic", "profile", "action", "note", "bookmark", "set", "collection", "participant"],
1722
2453
  "type": "string",
1723
2454
  "x-enum-varnames": [
1724
2455
  "ObjectLayoutBasic",
@@ -1749,7 +2480,7 @@
1749
2480
  "properties": {
1750
2481
  "description": "The properties linked to the type",
1751
2482
  "items": {
1752
- "$ref": "#/components/schemas/apimodel.Property"
2483
+ "$ref": "#/components/schemas/Property"
1753
2484
  },
1754
2485
  "type": "array",
1755
2486
  "uniqueItems": false
@@ -1757,71 +2488,29 @@
1757
2488
  },
1758
2489
  "type": "object"
1759
2490
  },
1760
- "apimodel.TypeLayout": {
2491
+ "TypeLayout": {
1761
2492
  "description": "The layout of the type",
1762
2493
  "enum": ["basic", "profile", "action", "note"],
1763
2494
  "type": "string",
1764
2495
  "x-enum-varnames": ["TypeLayoutBasic", "TypeLayoutProfile", "TypeLayoutAction", "TypeLayoutNote"]
1765
2496
  },
1766
- "apimodel.TypeResponse": {
2497
+ "TypeResponse": {
1767
2498
  "properties": {
1768
2499
  "type": {
1769
- "$ref": "#/components/schemas/apimodel.Type"
1770
- }
1771
- },
1772
- "type": "object"
1773
- },
1774
- "apimodel.URLPropertyLinkValue": {
1775
- "properties": {
1776
- "key": {
1777
- "example": "source",
1778
- "type": "string"
1779
- },
1780
- "url": {
1781
- "description": "The URL value of the property",
1782
- "example": "https://example.com",
1783
- "type": "string"
2500
+ "$ref": "#/components/schemas/Type"
1784
2501
  }
1785
2502
  },
1786
2503
  "type": "object"
1787
2504
  },
1788
- "apimodel.URLPropertyValue": {
2505
+ "UpdateObjectRequest": {
1789
2506
  "properties": {
1790
- "format": {
1791
- "$ref": "#/components/schemas/apimodel.PropertyFormat"
1792
- },
1793
- "id": {
1794
- "description": "The id of the property",
1795
- "example": "bafyreids36kpw5ppuwm3ce2p4ezb3ab7cihhkq6yfbwzwpp4mln7rcgw7a",
1796
- "type": "string"
1797
- },
1798
- "key": {
1799
- "description": "The key of the property",
1800
- "example": "source",
1801
- "type": "string"
1802
- },
1803
- "name": {
1804
- "description": "The name of the property",
1805
- "example": "Source",
1806
- "type": "string"
1807
- },
1808
- "object": {
1809
- "description": "The data model of the object",
1810
- "example": "property",
1811
- "type": "string"
2507
+ "icon": {
2508
+ "$ref": "#/components/schemas/Icon"
1812
2509
  },
1813
- "url": {
1814
- "description": "The URL value of the property",
1815
- "example": "https://example.com",
2510
+ "markdown": {
2511
+ "description": "The updated body of the object",
2512
+ "example": "This is the updated body of the object. Markdown syntax is supported here.",
1816
2513
  "type": "string"
1817
- }
1818
- },
1819
- "type": "object"
1820
- },
1821
- "apimodel.UpdateObjectRequest": {
1822
- "properties": {
1823
- "icon": {
1824
- "$ref": "#/components/schemas/apimodel.Icon"
1825
2514
  },
1826
2515
  "name": {
1827
2516
  "description": "The name of the object",
@@ -1829,17 +2518,22 @@
1829
2518
  "type": "string"
1830
2519
  },
1831
2520
  "properties": {
1832
- "description": "⚠ Warning: Properties are experimental and may change in the next update. ⚠ The properties to set for the object; see ListTypes or GetType endpoints for linked properties",
2521
+ "description": "The properties to set for the object; see ListTypes or GetType endpoints for linked properties",
1833
2522
  "items": {
1834
- "$ref": "#/components/schemas/apimodel.PropertyLinkWithValue"
2523
+ "$ref": "#/components/schemas/PropertyLinkWithValue"
1835
2524
  },
1836
2525
  "type": "array",
1837
2526
  "uniqueItems": false
2527
+ },
2528
+ "type_key": {
2529
+ "description": "The key of the type of object to set",
2530
+ "example": "page",
2531
+ "type": "string"
1838
2532
  }
1839
2533
  },
1840
2534
  "type": "object"
1841
2535
  },
1842
- "apimodel.UpdatePropertyRequest": {
2536
+ "UpdatePropertyRequest": {
1843
2537
  "properties": {
1844
2538
  "key": {
1845
2539
  "description": "The key to set for the property; ; should always be snake_case, otherwise it will be converted to snake_case",
@@ -1855,7 +2549,7 @@
1855
2549
  "required": ["name"],
1856
2550
  "type": "object"
1857
2551
  },
1858
- "apimodel.UpdateSpaceRequest": {
2552
+ "UpdateSpaceRequest": {
1859
2553
  "properties": {
1860
2554
  "description": {
1861
2555
  "description": "The description of the space",
@@ -1870,10 +2564,15 @@
1870
2564
  },
1871
2565
  "type": "object"
1872
2566
  },
1873
- "apimodel.UpdateTagRequest": {
2567
+ "UpdateTagRequest": {
1874
2568
  "properties": {
1875
2569
  "color": {
1876
- "$ref": "#/components/schemas/apimodel.Color"
2570
+ "$ref": "#/components/schemas/Color"
2571
+ },
2572
+ "key": {
2573
+ "description": "The key to set for the tag",
2574
+ "example": "in_progress",
2575
+ "type": "string"
1877
2576
  },
1878
2577
  "name": {
1879
2578
  "description": "The name to set for the tag",
@@ -1883,10 +2582,10 @@
1883
2582
  },
1884
2583
  "type": "object"
1885
2584
  },
1886
- "apimodel.UpdateTypeRequest": {
2585
+ "UpdateTypeRequest": {
1887
2586
  "properties": {
1888
2587
  "icon": {
1889
- "$ref": "#/components/schemas/apimodel.Icon"
2588
+ "$ref": "#/components/schemas/Icon"
1890
2589
  },
1891
2590
  "key": {
1892
2591
  "description": "The key to set for the type; should always be snake_case, otherwise it will be converted to snake_case",
@@ -1894,7 +2593,7 @@
1894
2593
  "type": "string"
1895
2594
  },
1896
2595
  "layout": {
1897
- "$ref": "#/components/schemas/apimodel.TypeLayout"
2596
+ "$ref": "#/components/schemas/TypeLayout"
1898
2597
  },
1899
2598
  "name": {
1900
2599
  "description": "The name to set for the type",
@@ -1907,9 +2606,9 @@
1907
2606
  "type": "string"
1908
2607
  },
1909
2608
  "properties": {
1910
- "description": "⚠ Warning: Properties are experimental and may change in the next update. ⚠ The properties to set for the type",
2609
+ "description": "The properties to set for the type",
1911
2610
  "items": {
1912
- "$ref": "#/components/schemas/apimodel.PropertyLink"
2611
+ "$ref": "#/components/schemas/PropertyLink"
1913
2612
  },
1914
2613
  "type": "array",
1915
2614
  "uniqueItems": false
@@ -1917,12 +2616,77 @@
1917
2616
  },
1918
2617
  "type": "object"
1919
2618
  },
1920
- "apimodel.View": {
2619
+ "UrlFilterItem": {
2620
+ "properties": {
2621
+ "condition": {
2622
+ "$ref": "#/components/schemas/FilterCondition"
2623
+ },
2624
+ "property_key": {
2625
+ "description": "The property key to filter on",
2626
+ "example": "source",
2627
+ "type": "string"
2628
+ },
2629
+ "url": {
2630
+ "description": "The Url value to filter by",
2631
+ "example": "https://example.com",
2632
+ "type": "string"
2633
+ }
2634
+ },
2635
+ "type": "object"
2636
+ },
2637
+ "UrlPropertyLinkValue": {
2638
+ "properties": {
2639
+ "key": {
2640
+ "example": "source",
2641
+ "type": "string"
2642
+ },
2643
+ "url": {
2644
+ "description": "The URL value of the property",
2645
+ "example": "https://example.com",
2646
+ "type": "string"
2647
+ }
2648
+ },
2649
+ "type": "object"
2650
+ },
2651
+ "UrlPropertyValue": {
2652
+ "properties": {
2653
+ "format": {
2654
+ "$ref": "#/components/schemas/PropertyFormat"
2655
+ },
2656
+ "id": {
2657
+ "description": "The id of the property",
2658
+ "example": "bafyreids36kpw5ppuwm3ce2p4ezb3ab7cihhkq6yfbwzwpp4mln7rcgw7a",
2659
+ "type": "string"
2660
+ },
2661
+ "key": {
2662
+ "description": "The key of the property",
2663
+ "example": "source",
2664
+ "type": "string"
2665
+ },
2666
+ "name": {
2667
+ "description": "The name of the property",
2668
+ "example": "Source",
2669
+ "type": "string"
2670
+ },
2671
+ "object": {
2672
+ "description": "The data model of the object",
2673
+ "example": "property",
2674
+ "type": "string"
2675
+ },
2676
+ "url": {
2677
+ "description": "The URL value of the property",
2678
+ "example": "https://example.com",
2679
+ "type": "string"
2680
+ }
2681
+ },
2682
+ "type": "object"
2683
+ },
2684
+ "View": {
1921
2685
  "properties": {
1922
2686
  "filters": {
1923
2687
  "description": "The list of filters",
1924
2688
  "items": {
1925
- "$ref": "#/components/schemas/apimodel.Filter"
2689
+ "$ref": "#/components/schemas/Filter"
1926
2690
  },
1927
2691
  "type": "array",
1928
2692
  "uniqueItems": false
@@ -1946,7 +2710,7 @@
1946
2710
  "sorts": {
1947
2711
  "description": "The list of sorts",
1948
2712
  "items": {
1949
- "$ref": "#/components/schemas/apimodel.Sort"
2713
+ "$ref": "#/components/schemas/Sort"
1950
2714
  },
1951
2715
  "type": "array",
1952
2716
  "uniqueItems": false
@@ -1954,119 +2718,119 @@
1954
2718
  },
1955
2719
  "type": "object"
1956
2720
  },
1957
- "pagination.PaginatedResponse-apimodel_Member": {
2721
+ "PaginatedResponse-Member": {
1958
2722
  "properties": {
1959
2723
  "data": {
1960
2724
  "description": "The list of items in the current result set",
1961
2725
  "items": {
1962
- "$ref": "#/components/schemas/apimodel.Member"
2726
+ "$ref": "#/components/schemas/Member"
1963
2727
  },
1964
2728
  "type": "array",
1965
2729
  "uniqueItems": false
1966
2730
  },
1967
2731
  "pagination": {
1968
- "$ref": "#/components/schemas/pagination.PaginationMeta"
2732
+ "$ref": "#/components/schemas/PaginationMeta"
1969
2733
  }
1970
2734
  },
1971
2735
  "type": "object"
1972
2736
  },
1973
- "pagination.PaginatedResponse-apimodel_Object": {
2737
+ "PaginatedResponse-Object": {
1974
2738
  "properties": {
1975
2739
  "data": {
1976
2740
  "description": "The list of items in the current result set",
1977
2741
  "items": {
1978
- "$ref": "#/components/schemas/apimodel.Object"
2742
+ "$ref": "#/components/schemas/Object"
1979
2743
  },
1980
2744
  "type": "array",
1981
2745
  "uniqueItems": false
1982
2746
  },
1983
2747
  "pagination": {
1984
- "$ref": "#/components/schemas/pagination.PaginationMeta"
2748
+ "$ref": "#/components/schemas/PaginationMeta"
1985
2749
  }
1986
2750
  },
1987
2751
  "type": "object"
1988
2752
  },
1989
- "pagination.PaginatedResponse-apimodel_Property": {
2753
+ "PaginatedResponse-Property": {
1990
2754
  "properties": {
1991
2755
  "data": {
1992
2756
  "description": "The list of items in the current result set",
1993
2757
  "items": {
1994
- "$ref": "#/components/schemas/apimodel.Property"
2758
+ "$ref": "#/components/schemas/Property"
1995
2759
  },
1996
2760
  "type": "array",
1997
2761
  "uniqueItems": false
1998
2762
  },
1999
2763
  "pagination": {
2000
- "$ref": "#/components/schemas/pagination.PaginationMeta"
2764
+ "$ref": "#/components/schemas/PaginationMeta"
2001
2765
  }
2002
2766
  },
2003
2767
  "type": "object"
2004
2768
  },
2005
- "pagination.PaginatedResponse-apimodel_Space": {
2769
+ "PaginatedResponse-Space": {
2006
2770
  "properties": {
2007
2771
  "data": {
2008
2772
  "description": "The list of items in the current result set",
2009
2773
  "items": {
2010
- "$ref": "#/components/schemas/apimodel.Space"
2774
+ "$ref": "#/components/schemas/Space"
2011
2775
  },
2012
2776
  "type": "array",
2013
2777
  "uniqueItems": false
2014
2778
  },
2015
2779
  "pagination": {
2016
- "$ref": "#/components/schemas/pagination.PaginationMeta"
2780
+ "$ref": "#/components/schemas/PaginationMeta"
2017
2781
  }
2018
2782
  },
2019
2783
  "type": "object"
2020
2784
  },
2021
- "pagination.PaginatedResponse-apimodel_Tag": {
2785
+ "PaginatedResponse-Tag": {
2022
2786
  "properties": {
2023
2787
  "data": {
2024
2788
  "description": "The list of items in the current result set",
2025
2789
  "items": {
2026
- "$ref": "#/components/schemas/apimodel.Tag"
2790
+ "$ref": "#/components/schemas/Tag"
2027
2791
  },
2028
2792
  "type": "array",
2029
2793
  "uniqueItems": false
2030
2794
  },
2031
2795
  "pagination": {
2032
- "$ref": "#/components/schemas/pagination.PaginationMeta"
2796
+ "$ref": "#/components/schemas/PaginationMeta"
2033
2797
  }
2034
2798
  },
2035
2799
  "type": "object"
2036
2800
  },
2037
- "pagination.PaginatedResponse-apimodel_Type": {
2801
+ "PaginatedResponse-Type": {
2038
2802
  "properties": {
2039
2803
  "data": {
2040
2804
  "description": "The list of items in the current result set",
2041
2805
  "items": {
2042
- "$ref": "#/components/schemas/apimodel.Type"
2806
+ "$ref": "#/components/schemas/Type"
2043
2807
  },
2044
2808
  "type": "array",
2045
2809
  "uniqueItems": false
2046
2810
  },
2047
2811
  "pagination": {
2048
- "$ref": "#/components/schemas/pagination.PaginationMeta"
2812
+ "$ref": "#/components/schemas/PaginationMeta"
2049
2813
  }
2050
2814
  },
2051
2815
  "type": "object"
2052
2816
  },
2053
- "pagination.PaginatedResponse-apimodel_View": {
2817
+ "PaginatedResponse-View": {
2054
2818
  "properties": {
2055
2819
  "data": {
2056
2820
  "description": "The list of items in the current result set",
2057
2821
  "items": {
2058
- "$ref": "#/components/schemas/apimodel.View"
2822
+ "$ref": "#/components/schemas/View"
2059
2823
  },
2060
2824
  "type": "array",
2061
2825
  "uniqueItems": false
2062
2826
  },
2063
2827
  "pagination": {
2064
- "$ref": "#/components/schemas/pagination.PaginationMeta"
2828
+ "$ref": "#/components/schemas/PaginationMeta"
2065
2829
  }
2066
2830
  },
2067
2831
  "type": "object"
2068
2832
  },
2069
- "pagination.PaginationMeta": {
2833
+ "PaginationMeta": {
2070
2834
  "description": "The pagination metadata for the response",
2071
2835
  "properties": {
2072
2836
  "has_more": {
@@ -2092,7 +2856,7 @@
2092
2856
  },
2093
2857
  "type": "object"
2094
2858
  },
2095
- "util.ForbiddenError": {
2859
+ "ForbiddenError": {
2096
2860
  "properties": {
2097
2861
  "code": {
2098
2862
  "example": "forbidden",
@@ -2113,7 +2877,7 @@
2113
2877
  },
2114
2878
  "type": "object"
2115
2879
  },
2116
- "util.GoneError": {
2880
+ "GoneError": {
2117
2881
  "properties": {
2118
2882
  "code": {
2119
2883
  "example": "resource_gone",
@@ -2134,7 +2898,7 @@
2134
2898
  },
2135
2899
  "type": "object"
2136
2900
  },
2137
- "util.NotFoundError": {
2901
+ "NotFoundError": {
2138
2902
  "properties": {
2139
2903
  "code": {
2140
2904
  "example": "object_not_found",
@@ -2155,7 +2919,7 @@
2155
2919
  },
2156
2920
  "type": "object"
2157
2921
  },
2158
- "util.RateLimitError": {
2922
+ "RateLimitError": {
2159
2923
  "properties": {
2160
2924
  "code": {
2161
2925
  "example": "rate_limit_exceeded",
@@ -2176,7 +2940,7 @@
2176
2940
  },
2177
2941
  "type": "object"
2178
2942
  },
2179
- "util.ServerError": {
2943
+ "ServerError": {
2180
2944
  "properties": {
2181
2945
  "code": {
2182
2946
  "example": "internal_server_error",
@@ -2197,7 +2961,7 @@
2197
2961
  },
2198
2962
  "type": "object"
2199
2963
  },
2200
- "util.UnauthorizedError": {
2964
+ "UnauthorizedError": {
2201
2965
  "properties": {
2202
2966
  "code": {
2203
2967
  "example": "unauthorized",
@@ -2218,7 +2982,7 @@
2218
2982
  },
2219
2983
  "type": "object"
2220
2984
  },
2221
- "util.ValidationError": {
2985
+ "ValidationError": {
2222
2986
  "properties": {
2223
2987
  "code": {
2224
2988
  "example": "bad_request",
@@ -2261,7 +3025,7 @@
2261
3025
  },
2262
3026
  "termsOfService": "https://anytype.io/terms_of_use",
2263
3027
  "title": "Anytype API",
2264
- "version": "2025-05-20"
3028
+ "version": "2025-11-08"
2265
3029
  },
2266
3030
  "externalDocs": {
2267
3031
  "description": "OpenAPI",
@@ -2279,25 +3043,7 @@
2279
3043
  "name": "Anytype-Version",
2280
3044
  "required": true,
2281
3045
  "schema": {
2282
- "default": "2025-05-20",
2283
- "type": "string"
2284
- }
2285
- },
2286
- {
2287
- "description": "The ID of the challenge to solve",
2288
- "in": "query",
2289
- "name": "challenge_id",
2290
- "required": true,
2291
- "schema": {
2292
- "type": "string"
2293
- }
2294
- },
2295
- {
2296
- "description": "The 4-digit code retrieved from Anytype Desktop app",
2297
- "in": "query",
2298
- "name": "code",
2299
- "required": true,
2300
- "schema": {
3046
+ "default": "2025-11-08",
2301
3047
  "type": "string"
2302
3048
  }
2303
3049
  }
@@ -2306,17 +3052,19 @@
2306
3052
  "content": {
2307
3053
  "application/json": {
2308
3054
  "schema": {
2309
- "type": "object"
3055
+ "$ref": "#/components/schemas/CreateApiKeyRequest"
2310
3056
  }
2311
3057
  }
2312
- }
3058
+ },
3059
+ "description": "The request body containing the challenge ID and code",
3060
+ "required": true
2313
3061
  },
2314
3062
  "responses": {
2315
3063
  "201": {
2316
3064
  "content": {
2317
3065
  "application/json": {
2318
3066
  "schema": {
2319
- "$ref": "#/components/schemas/apimodel.CreateApiKeyResponse"
3067
+ "$ref": "#/components/schemas/CreateApiKeyResponse"
2320
3068
  }
2321
3069
  }
2322
3070
  },
@@ -2326,7 +3074,7 @@
2326
3074
  "content": {
2327
3075
  "application/json": {
2328
3076
  "schema": {
2329
- "$ref": "#/components/schemas/util.ValidationError"
3077
+ "$ref": "#/components/schemas/ValidationError"
2330
3078
  }
2331
3079
  }
2332
3080
  },
@@ -2336,7 +3084,7 @@
2336
3084
  "content": {
2337
3085
  "application/json": {
2338
3086
  "schema": {
2339
- "$ref": "#/components/schemas/util.ServerError"
3087
+ "$ref": "#/components/schemas/ServerError"
2340
3088
  }
2341
3089
  }
2342
3090
  },
@@ -2358,16 +3106,7 @@
2358
3106
  "name": "Anytype-Version",
2359
3107
  "required": true,
2360
3108
  "schema": {
2361
- "default": "2025-05-20",
2362
- "type": "string"
2363
- }
2364
- },
2365
- {
2366
- "description": "The name of the app requesting API access",
2367
- "in": "query",
2368
- "name": "app_name",
2369
- "required": true,
2370
- "schema": {
3109
+ "default": "2025-11-08",
2371
3110
  "type": "string"
2372
3111
  }
2373
3112
  }
@@ -2376,17 +3115,19 @@
2376
3115
  "content": {
2377
3116
  "application/json": {
2378
3117
  "schema": {
2379
- "type": "object"
3118
+ "$ref": "#/components/schemas/CreateChallengeRequest"
2380
3119
  }
2381
3120
  }
2382
- }
3121
+ },
3122
+ "description": "The request body containing the app name",
3123
+ "required": true
2383
3124
  },
2384
3125
  "responses": {
2385
3126
  "201": {
2386
3127
  "content": {
2387
3128
  "application/json": {
2388
3129
  "schema": {
2389
- "$ref": "#/components/schemas/apimodel.CreateChallengeResponse"
3130
+ "$ref": "#/components/schemas/CreateChallengeResponse"
2390
3131
  }
2391
3132
  }
2392
3133
  },
@@ -2396,7 +3137,7 @@
2396
3137
  "content": {
2397
3138
  "application/json": {
2398
3139
  "schema": {
2399
- "$ref": "#/components/schemas/util.ValidationError"
3140
+ "$ref": "#/components/schemas/ValidationError"
2400
3141
  }
2401
3142
  }
2402
3143
  },
@@ -2406,7 +3147,7 @@
2406
3147
  "content": {
2407
3148
  "application/json": {
2408
3149
  "schema": {
2409
- "$ref": "#/components/schemas/util.ServerError"
3150
+ "$ref": "#/components/schemas/ServerError"
2410
3151
  }
2411
3152
  }
2412
3153
  },
@@ -2428,7 +3169,7 @@
2428
3169
  "name": "Anytype-Version",
2429
3170
  "required": true,
2430
3171
  "schema": {
2431
- "default": "2025-05-20",
3172
+ "default": "2025-11-08",
2432
3173
  "type": "string"
2433
3174
  }
2434
3175
  },
@@ -2456,7 +3197,7 @@
2456
3197
  "content": {
2457
3198
  "application/json": {
2458
3199
  "schema": {
2459
- "$ref": "#/components/schemas/apimodel.SearchRequest"
3200
+ "$ref": "#/components/schemas/SearchRequest"
2460
3201
  }
2461
3202
  }
2462
3203
  },
@@ -2468,7 +3209,7 @@
2468
3209
  "content": {
2469
3210
  "application/json": {
2470
3211
  "schema": {
2471
- "$ref": "#/components/schemas/pagination.PaginatedResponse-apimodel_Object"
3212
+ "$ref": "#/components/schemas/PaginatedResponse-Object"
2472
3213
  }
2473
3214
  }
2474
3215
  },
@@ -2478,7 +3219,7 @@
2478
3219
  "content": {
2479
3220
  "application/json": {
2480
3221
  "schema": {
2481
- "$ref": "#/components/schemas/util.UnauthorizedError"
3222
+ "$ref": "#/components/schemas/UnauthorizedError"
2482
3223
  }
2483
3224
  }
2484
3225
  },
@@ -2488,7 +3229,7 @@
2488
3229
  "content": {
2489
3230
  "application/json": {
2490
3231
  "schema": {
2491
- "$ref": "#/components/schemas/util.ServerError"
3232
+ "$ref": "#/components/schemas/ServerError"
2492
3233
  }
2493
3234
  }
2494
3235
  },
@@ -2506,7 +3247,7 @@
2506
3247
  },
2507
3248
  "/v1/spaces": {
2508
3249
  "get": {
2509
- "description": "Retrieves a paginated list of all spaces that are accessible by the authenticated user. Each space record contains detailed information such as the space ID, name, icon (derived either from an emoji or image URL), and additional metadata. This endpoint is key to displaying a users workspaces.",
3250
+ "description": "Retrieves a paginated list of all spaces that are accessible by the authenticated user. Each space record contains detailed information such as the space ID, name, icon (derived either from an emoji or image URL), and additional metadata. This endpoint is key to displaying a user's workspaces.\nSupports dynamic filtering via query parameters (e.g., ?name[contains]=project). See FilterCondition enum for available conditions.",
2510
3251
  "operationId": "list_spaces",
2511
3252
  "parameters": [
2512
3253
  {
@@ -2515,7 +3256,7 @@
2515
3256
  "name": "Anytype-Version",
2516
3257
  "required": true,
2517
3258
  "schema": {
2518
- "default": "2025-05-20",
3259
+ "default": "2025-11-08",
2519
3260
  "type": "string"
2520
3261
  }
2521
3262
  },
@@ -2544,7 +3285,7 @@
2544
3285
  "content": {
2545
3286
  "application/json": {
2546
3287
  "schema": {
2547
- "$ref": "#/components/schemas/pagination.PaginatedResponse-apimodel_Space"
3288
+ "$ref": "#/components/schemas/PaginatedResponse-Space"
2548
3289
  }
2549
3290
  }
2550
3291
  },
@@ -2554,7 +3295,7 @@
2554
3295
  "content": {
2555
3296
  "application/json": {
2556
3297
  "schema": {
2557
- "$ref": "#/components/schemas/util.UnauthorizedError"
3298
+ "$ref": "#/components/schemas/UnauthorizedError"
2558
3299
  }
2559
3300
  }
2560
3301
  },
@@ -2564,7 +3305,7 @@
2564
3305
  "content": {
2565
3306
  "application/json": {
2566
3307
  "schema": {
2567
- "$ref": "#/components/schemas/util.ServerError"
3308
+ "$ref": "#/components/schemas/ServerError"
2568
3309
  }
2569
3310
  }
2570
3311
  },
@@ -2589,7 +3330,7 @@
2589
3330
  "name": "Anytype-Version",
2590
3331
  "required": true,
2591
3332
  "schema": {
2592
- "default": "2025-05-20",
3333
+ "default": "2025-11-08",
2593
3334
  "type": "string"
2594
3335
  }
2595
3336
  }
@@ -2598,7 +3339,7 @@
2598
3339
  "content": {
2599
3340
  "application/json": {
2600
3341
  "schema": {
2601
- "$ref": "#/components/schemas/apimodel.CreateSpaceRequest"
3342
+ "$ref": "#/components/schemas/CreateSpaceRequest"
2602
3343
  }
2603
3344
  }
2604
3345
  },
@@ -2610,7 +3351,7 @@
2610
3351
  "content": {
2611
3352
  "application/json": {
2612
3353
  "schema": {
2613
- "$ref": "#/components/schemas/apimodel.SpaceResponse"
3354
+ "$ref": "#/components/schemas/SpaceResponse"
2614
3355
  }
2615
3356
  }
2616
3357
  },
@@ -2620,7 +3361,7 @@
2620
3361
  "content": {
2621
3362
  "application/json": {
2622
3363
  "schema": {
2623
- "$ref": "#/components/schemas/util.ValidationError"
3364
+ "$ref": "#/components/schemas/ValidationError"
2624
3365
  }
2625
3366
  }
2626
3367
  },
@@ -2630,7 +3371,7 @@
2630
3371
  "content": {
2631
3372
  "application/json": {
2632
3373
  "schema": {
2633
- "$ref": "#/components/schemas/util.UnauthorizedError"
3374
+ "$ref": "#/components/schemas/UnauthorizedError"
2634
3375
  }
2635
3376
  }
2636
3377
  },
@@ -2640,7 +3381,7 @@
2640
3381
  "content": {
2641
3382
  "application/json": {
2642
3383
  "schema": {
2643
- "$ref": "#/components/schemas/util.RateLimitError"
3384
+ "$ref": "#/components/schemas/RateLimitError"
2644
3385
  }
2645
3386
  }
2646
3387
  },
@@ -2650,7 +3391,7 @@
2650
3391
  "content": {
2651
3392
  "application/json": {
2652
3393
  "schema": {
2653
- "$ref": "#/components/schemas/util.ServerError"
3394
+ "$ref": "#/components/schemas/ServerError"
2654
3395
  }
2655
3396
  }
2656
3397
  },
@@ -2677,7 +3418,7 @@
2677
3418
  "name": "Anytype-Version",
2678
3419
  "required": true,
2679
3420
  "schema": {
2680
- "default": "2025-05-20",
3421
+ "default": "2025-11-08",
2681
3422
  "type": "string"
2682
3423
  }
2683
3424
  },
@@ -2696,7 +3437,7 @@
2696
3437
  "content": {
2697
3438
  "application/json": {
2698
3439
  "schema": {
2699
- "$ref": "#/components/schemas/apimodel.SpaceResponse"
3440
+ "$ref": "#/components/schemas/SpaceResponse"
2700
3441
  }
2701
3442
  }
2702
3443
  },
@@ -2706,7 +3447,7 @@
2706
3447
  "content": {
2707
3448
  "application/json": {
2708
3449
  "schema": {
2709
- "$ref": "#/components/schemas/util.UnauthorizedError"
3450
+ "$ref": "#/components/schemas/UnauthorizedError"
2710
3451
  }
2711
3452
  }
2712
3453
  },
@@ -2716,7 +3457,7 @@
2716
3457
  "content": {
2717
3458
  "application/json": {
2718
3459
  "schema": {
2719
- "$ref": "#/components/schemas/util.NotFoundError"
3460
+ "$ref": "#/components/schemas/NotFoundError"
2720
3461
  }
2721
3462
  }
2722
3463
  },
@@ -2726,7 +3467,7 @@
2726
3467
  "content": {
2727
3468
  "application/json": {
2728
3469
  "schema": {
2729
- "$ref": "#/components/schemas/util.ServerError"
3470
+ "$ref": "#/components/schemas/ServerError"
2730
3471
  }
2731
3472
  }
2732
3473
  },
@@ -2751,7 +3492,7 @@
2751
3492
  "name": "Anytype-Version",
2752
3493
  "required": true,
2753
3494
  "schema": {
2754
- "default": "2025-05-20",
3495
+ "default": "2025-11-08",
2755
3496
  "type": "string"
2756
3497
  }
2757
3498
  },
@@ -2769,7 +3510,7 @@
2769
3510
  "content": {
2770
3511
  "application/json": {
2771
3512
  "schema": {
2772
- "$ref": "#/components/schemas/apimodel.UpdateSpaceRequest"
3513
+ "$ref": "#/components/schemas/UpdateSpaceRequest"
2773
3514
  }
2774
3515
  }
2775
3516
  },
@@ -2781,7 +3522,7 @@
2781
3522
  "content": {
2782
3523
  "application/json": {
2783
3524
  "schema": {
2784
- "$ref": "#/components/schemas/apimodel.SpaceResponse"
3525
+ "$ref": "#/components/schemas/SpaceResponse"
2785
3526
  }
2786
3527
  }
2787
3528
  },
@@ -2791,7 +3532,7 @@
2791
3532
  "content": {
2792
3533
  "application/json": {
2793
3534
  "schema": {
2794
- "$ref": "#/components/schemas/util.ValidationError"
3535
+ "$ref": "#/components/schemas/ValidationError"
2795
3536
  }
2796
3537
  }
2797
3538
  },
@@ -2801,7 +3542,7 @@
2801
3542
  "content": {
2802
3543
  "application/json": {
2803
3544
  "schema": {
2804
- "$ref": "#/components/schemas/util.UnauthorizedError"
3545
+ "$ref": "#/components/schemas/UnauthorizedError"
2805
3546
  }
2806
3547
  }
2807
3548
  },
@@ -2811,7 +3552,7 @@
2811
3552
  "content": {
2812
3553
  "application/json": {
2813
3554
  "schema": {
2814
- "$ref": "#/components/schemas/util.ForbiddenError"
3555
+ "$ref": "#/components/schemas/ForbiddenError"
2815
3556
  }
2816
3557
  }
2817
3558
  },
@@ -2821,7 +3562,7 @@
2821
3562
  "content": {
2822
3563
  "application/json": {
2823
3564
  "schema": {
2824
- "$ref": "#/components/schemas/util.NotFoundError"
3565
+ "$ref": "#/components/schemas/NotFoundError"
2825
3566
  }
2826
3567
  }
2827
3568
  },
@@ -2831,7 +3572,7 @@
2831
3572
  "content": {
2832
3573
  "application/json": {
2833
3574
  "schema": {
2834
- "$ref": "#/components/schemas/util.RateLimitError"
3575
+ "$ref": "#/components/schemas/RateLimitError"
2835
3576
  }
2836
3577
  }
2837
3578
  },
@@ -2841,7 +3582,7 @@
2841
3582
  "content": {
2842
3583
  "application/json": {
2843
3584
  "schema": {
2844
- "$ref": "#/components/schemas/util.ServerError"
3585
+ "$ref": "#/components/schemas/ServerError"
2845
3586
  }
2846
3587
  }
2847
3588
  },
@@ -2868,7 +3609,7 @@
2868
3609
  "name": "Anytype-Version",
2869
3610
  "required": true,
2870
3611
  "schema": {
2871
- "default": "2025-05-20",
3612
+ "default": "2025-11-08",
2872
3613
  "type": "string"
2873
3614
  }
2874
3615
  },
@@ -2895,7 +3636,7 @@
2895
3636
  "content": {
2896
3637
  "application/json": {
2897
3638
  "schema": {
2898
- "$ref": "#/components/schemas/apimodel.AddObjectsToListRequest"
3639
+ "$ref": "#/components/schemas/AddObjectsToListRequest"
2899
3640
  }
2900
3641
  }
2901
3642
  },
@@ -2917,7 +3658,7 @@
2917
3658
  "content": {
2918
3659
  "application/json": {
2919
3660
  "schema": {
2920
- "$ref": "#/components/schemas/util.ValidationError"
3661
+ "$ref": "#/components/schemas/ValidationError"
2921
3662
  }
2922
3663
  }
2923
3664
  },
@@ -2927,7 +3668,7 @@
2927
3668
  "content": {
2928
3669
  "application/json": {
2929
3670
  "schema": {
2930
- "$ref": "#/components/schemas/util.UnauthorizedError"
3671
+ "$ref": "#/components/schemas/UnauthorizedError"
2931
3672
  }
2932
3673
  }
2933
3674
  },
@@ -2937,7 +3678,7 @@
2937
3678
  "content": {
2938
3679
  "application/json": {
2939
3680
  "schema": {
2940
- "$ref": "#/components/schemas/util.NotFoundError"
3681
+ "$ref": "#/components/schemas/NotFoundError"
2941
3682
  }
2942
3683
  }
2943
3684
  },
@@ -2947,7 +3688,7 @@
2947
3688
  "content": {
2948
3689
  "application/json": {
2949
3690
  "schema": {
2950
- "$ref": "#/components/schemas/util.RateLimitError"
3691
+ "$ref": "#/components/schemas/RateLimitError"
2951
3692
  }
2952
3693
  }
2953
3694
  },
@@ -2957,7 +3698,7 @@
2957
3698
  "content": {
2958
3699
  "application/json": {
2959
3700
  "schema": {
2960
- "$ref": "#/components/schemas/util.ServerError"
3701
+ "$ref": "#/components/schemas/ServerError"
2961
3702
  }
2962
3703
  }
2963
3704
  },
@@ -2984,7 +3725,7 @@
2984
3725
  "name": "Anytype-Version",
2985
3726
  "required": true,
2986
3727
  "schema": {
2987
- "default": "2025-05-20",
3728
+ "default": "2025-11-08",
2988
3729
  "type": "string"
2989
3730
  }
2990
3731
  },
@@ -3031,7 +3772,7 @@
3031
3772
  "content": {
3032
3773
  "application/json": {
3033
3774
  "schema": {
3034
- "$ref": "#/components/schemas/util.ValidationError"
3775
+ "$ref": "#/components/schemas/ValidationError"
3035
3776
  }
3036
3777
  }
3037
3778
  },
@@ -3041,7 +3782,7 @@
3041
3782
  "content": {
3042
3783
  "application/json": {
3043
3784
  "schema": {
3044
- "$ref": "#/components/schemas/util.UnauthorizedError"
3785
+ "$ref": "#/components/schemas/UnauthorizedError"
3045
3786
  }
3046
3787
  }
3047
3788
  },
@@ -3051,7 +3792,7 @@
3051
3792
  "content": {
3052
3793
  "application/json": {
3053
3794
  "schema": {
3054
- "$ref": "#/components/schemas/util.NotFoundError"
3795
+ "$ref": "#/components/schemas/NotFoundError"
3055
3796
  }
3056
3797
  }
3057
3798
  },
@@ -3061,7 +3802,7 @@
3061
3802
  "content": {
3062
3803
  "application/json": {
3063
3804
  "schema": {
3064
- "$ref": "#/components/schemas/util.RateLimitError"
3805
+ "$ref": "#/components/schemas/RateLimitError"
3065
3806
  }
3066
3807
  }
3067
3808
  },
@@ -3071,7 +3812,7 @@
3071
3812
  "content": {
3072
3813
  "application/json": {
3073
3814
  "schema": {
3074
- "$ref": "#/components/schemas/util.ServerError"
3815
+ "$ref": "#/components/schemas/ServerError"
3075
3816
  }
3076
3817
  }
3077
3818
  },
@@ -3098,7 +3839,7 @@
3098
3839
  "name": "Anytype-Version",
3099
3840
  "required": true,
3100
3841
  "schema": {
3101
- "default": "2025-05-20",
3842
+ "default": "2025-11-08",
3102
3843
  "type": "string"
3103
3844
  }
3104
3845
  },
@@ -3143,7 +3884,7 @@
3143
3884
  "content": {
3144
3885
  "application/json": {
3145
3886
  "schema": {
3146
- "$ref": "#/components/schemas/pagination.PaginatedResponse-apimodel_View"
3887
+ "$ref": "#/components/schemas/PaginatedResponse-View"
3147
3888
  }
3148
3889
  }
3149
3890
  },
@@ -3153,7 +3894,7 @@
3153
3894
  "content": {
3154
3895
  "application/json": {
3155
3896
  "schema": {
3156
- "$ref": "#/components/schemas/util.UnauthorizedError"
3897
+ "$ref": "#/components/schemas/UnauthorizedError"
3157
3898
  }
3158
3899
  }
3159
3900
  },
@@ -3163,7 +3904,7 @@
3163
3904
  "content": {
3164
3905
  "application/json": {
3165
3906
  "schema": {
3166
- "$ref": "#/components/schemas/util.NotFoundError"
3907
+ "$ref": "#/components/schemas/NotFoundError"
3167
3908
  }
3168
3909
  }
3169
3910
  },
@@ -3173,7 +3914,7 @@
3173
3914
  "content": {
3174
3915
  "application/json": {
3175
3916
  "schema": {
3176
- "$ref": "#/components/schemas/util.ServerError"
3917
+ "$ref": "#/components/schemas/ServerError"
3177
3918
  }
3178
3919
  }
3179
3920
  },
@@ -3191,7 +3932,7 @@
3191
3932
  },
3192
3933
  "/v1/spaces/{space_id}/lists/{list_id}/views/{view_id}/objects": {
3193
3934
  "get": {
3194
- "description": "Returns a paginated list of objects associated with a specific list (query or collection) within a space. When a view ID is provided, the objects are filtered and sorted according to the view's configuration. If no view ID is specified, all list objects are returned without filtering and sorting. This endpoint helps clients to manage grouped objects (for example, tasks within a list) by returning information for each item of the list.",
3935
+ "description": "Returns a paginated list of objects associated with a specific list (query or collection) within a space. When a view ID is provided, the objects are filtered and sorted according to the view's configuration. If no view ID is specified, all list objects are returned without filtering and sorting. This endpoint helps clients to manage grouped objects (for example, tasks within a list) by returning information for each item of the list.\nSupports dynamic filtering via query parameters (e.g., ?done=false, ?created_date[gte]=2024-01-01, ?tags[in]=urgent,important). For select/tag properties use tag keys, for object properties use object IDs. See FilterCondition enum for available conditions.",
3195
3936
  "operationId": "get_list_objects",
3196
3937
  "parameters": [
3197
3938
  {
@@ -3200,7 +3941,7 @@
3200
3941
  "name": "Anytype-Version",
3201
3942
  "required": true,
3202
3943
  "schema": {
3203
- "default": "2025-05-20",
3944
+ "default": "2025-11-08",
3204
3945
  "type": "string"
3205
3946
  }
3206
3947
  },
@@ -3254,7 +3995,7 @@
3254
3995
  "content": {
3255
3996
  "application/json": {
3256
3997
  "schema": {
3257
- "$ref": "#/components/schemas/pagination.PaginatedResponse-apimodel_Object"
3998
+ "$ref": "#/components/schemas/PaginatedResponse-Object"
3258
3999
  }
3259
4000
  }
3260
4001
  },
@@ -3264,7 +4005,7 @@
3264
4005
  "content": {
3265
4006
  "application/json": {
3266
4007
  "schema": {
3267
- "$ref": "#/components/schemas/util.UnauthorizedError"
4008
+ "$ref": "#/components/schemas/UnauthorizedError"
3268
4009
  }
3269
4010
  }
3270
4011
  },
@@ -3274,7 +4015,7 @@
3274
4015
  "content": {
3275
4016
  "application/json": {
3276
4017
  "schema": {
3277
- "$ref": "#/components/schemas/util.NotFoundError"
4018
+ "$ref": "#/components/schemas/NotFoundError"
3278
4019
  }
3279
4020
  }
3280
4021
  },
@@ -3284,7 +4025,7 @@
3284
4025
  "content": {
3285
4026
  "application/json": {
3286
4027
  "schema": {
3287
- "$ref": "#/components/schemas/util.ServerError"
4028
+ "$ref": "#/components/schemas/ServerError"
3288
4029
  }
3289
4030
  }
3290
4031
  },
@@ -3302,7 +4043,7 @@
3302
4043
  },
3303
4044
  "/v1/spaces/{space_id}/members": {
3304
4045
  "get": {
3305
- "description": "Returns a paginated list of members belonging to the specified space. Each member record includes the members profile ID, name, icon (which may be derived from an emoji or image), network identity, global name, status (e.g. joining, active) and role (e.g. Viewer, Editor, Owner). This endpoint supports collaborative features by allowing clients to show who is in a space and manage access rights.",
4046
+ "description": "Returns a paginated list of members belonging to the specified space. Each member record includes the member's profile ID, name, icon (which may be derived from an emoji or image), network identity, global name, status (e.g. joining, active) and role (e.g. Viewer, Editor, Owner). This endpoint supports collaborative features by allowing clients to show who is in a space and manage access rights.\nSupports dynamic filtering via query parameters (e.g., ?name[ne]=john). See FilterCondition enum for available conditions.",
3306
4047
  "operationId": "list_members",
3307
4048
  "parameters": [
3308
4049
  {
@@ -3311,7 +4052,7 @@
3311
4052
  "name": "Anytype-Version",
3312
4053
  "required": true,
3313
4054
  "schema": {
3314
- "default": "2025-05-20",
4055
+ "default": "2025-11-08",
3315
4056
  "type": "string"
3316
4057
  }
3317
4058
  },
@@ -3349,7 +4090,7 @@
3349
4090
  "content": {
3350
4091
  "application/json": {
3351
4092
  "schema": {
3352
- "$ref": "#/components/schemas/pagination.PaginatedResponse-apimodel_Member"
4093
+ "$ref": "#/components/schemas/PaginatedResponse-Member"
3353
4094
  }
3354
4095
  }
3355
4096
  },
@@ -3359,7 +4100,7 @@
3359
4100
  "content": {
3360
4101
  "application/json": {
3361
4102
  "schema": {
3362
- "$ref": "#/components/schemas/util.UnauthorizedError"
4103
+ "$ref": "#/components/schemas/UnauthorizedError"
3363
4104
  }
3364
4105
  }
3365
4106
  },
@@ -3369,7 +4110,7 @@
3369
4110
  "content": {
3370
4111
  "application/json": {
3371
4112
  "schema": {
3372
- "$ref": "#/components/schemas/util.ServerError"
4113
+ "$ref": "#/components/schemas/ServerError"
3373
4114
  }
3374
4115
  }
3375
4116
  },
@@ -3396,7 +4137,7 @@
3396
4137
  "name": "Anytype-Version",
3397
4138
  "required": true,
3398
4139
  "schema": {
3399
- "default": "2025-05-20",
4140
+ "default": "2025-11-08",
3400
4141
  "type": "string"
3401
4142
  }
3402
4143
  },
@@ -3424,7 +4165,7 @@
3424
4165
  "content": {
3425
4166
  "application/json": {
3426
4167
  "schema": {
3427
- "$ref": "#/components/schemas/apimodel.MemberResponse"
4168
+ "$ref": "#/components/schemas/MemberResponse"
3428
4169
  }
3429
4170
  }
3430
4171
  },
@@ -3434,7 +4175,7 @@
3434
4175
  "content": {
3435
4176
  "application/json": {
3436
4177
  "schema": {
3437
- "$ref": "#/components/schemas/util.UnauthorizedError"
4178
+ "$ref": "#/components/schemas/UnauthorizedError"
3438
4179
  }
3439
4180
  }
3440
4181
  },
@@ -3444,7 +4185,7 @@
3444
4185
  "content": {
3445
4186
  "application/json": {
3446
4187
  "schema": {
3447
- "$ref": "#/components/schemas/util.NotFoundError"
4188
+ "$ref": "#/components/schemas/NotFoundError"
3448
4189
  }
3449
4190
  }
3450
4191
  },
@@ -3454,7 +4195,7 @@
3454
4195
  "content": {
3455
4196
  "application/json": {
3456
4197
  "schema": {
3457
- "$ref": "#/components/schemas/util.ServerError"
4198
+ "$ref": "#/components/schemas/ServerError"
3458
4199
  }
3459
4200
  }
3460
4201
  },
@@ -3472,7 +4213,7 @@
3472
4213
  },
3473
4214
  "/v1/spaces/{space_id}/objects": {
3474
4215
  "get": {
3475
- "description": "Retrieves a paginated list of objects in the given space. The endpoint takes query parameters for pagination (offset and limit) and returns detailed data about each object including its ID, name, icon, type information, a snippet of the content (if applicable), layout, space ID, blocks and details. It is intended for building views where users can see all objects in a space at a glance.",
4216
+ "description": "Retrieves a paginated list of objects in the given space. The endpoint takes query parameters for pagination (offset and limit) and returns detailed data about each object including its ID, name, icon, type information, a snippet of the content (if applicable), layout, space ID, blocks and details. It is intended for building views where users can see all objects in a space at a glance.\nSupports dynamic filtering via query parameters (e.g., ?done=false, ?created_date[gte]=2024-01-01, ?tags[in]=urgent,important). For select/multi_select properties you can use either tag keys or tag IDs, for object properties use object IDs. See FilterCondition enum for available conditions.",
3476
4217
  "operationId": "list_objects",
3477
4218
  "parameters": [
3478
4219
  {
@@ -3481,7 +4222,7 @@
3481
4222
  "name": "Anytype-Version",
3482
4223
  "required": true,
3483
4224
  "schema": {
3484
- "default": "2025-05-20",
4225
+ "default": "2025-11-08",
3485
4226
  "type": "string"
3486
4227
  }
3487
4228
  },
@@ -3519,7 +4260,7 @@
3519
4260
  "content": {
3520
4261
  "application/json": {
3521
4262
  "schema": {
3522
- "$ref": "#/components/schemas/pagination.PaginatedResponse-apimodel_Object"
4263
+ "$ref": "#/components/schemas/PaginatedResponse-Object"
3523
4264
  }
3524
4265
  }
3525
4266
  },
@@ -3529,7 +4270,7 @@
3529
4270
  "content": {
3530
4271
  "application/json": {
3531
4272
  "schema": {
3532
- "$ref": "#/components/schemas/util.UnauthorizedError"
4273
+ "$ref": "#/components/schemas/UnauthorizedError"
3533
4274
  }
3534
4275
  }
3535
4276
  },
@@ -3539,7 +4280,7 @@
3539
4280
  "content": {
3540
4281
  "application/json": {
3541
4282
  "schema": {
3542
- "$ref": "#/components/schemas/util.ServerError"
4283
+ "$ref": "#/components/schemas/ServerError"
3543
4284
  }
3544
4285
  }
3545
4286
  },
@@ -3564,7 +4305,7 @@
3564
4305
  "name": "Anytype-Version",
3565
4306
  "required": true,
3566
4307
  "schema": {
3567
- "default": "2025-05-20",
4308
+ "default": "2025-11-08",
3568
4309
  "type": "string"
3569
4310
  }
3570
4311
  },
@@ -3582,7 +4323,7 @@
3582
4323
  "content": {
3583
4324
  "application/json": {
3584
4325
  "schema": {
3585
- "$ref": "#/components/schemas/apimodel.CreateObjectRequest"
4326
+ "$ref": "#/components/schemas/CreateObjectRequest"
3586
4327
  }
3587
4328
  }
3588
4329
  },
@@ -3594,7 +4335,7 @@
3594
4335
  "content": {
3595
4336
  "application/json": {
3596
4337
  "schema": {
3597
- "$ref": "#/components/schemas/apimodel.ObjectResponse"
4338
+ "$ref": "#/components/schemas/ObjectResponse"
3598
4339
  }
3599
4340
  }
3600
4341
  },
@@ -3604,7 +4345,7 @@
3604
4345
  "content": {
3605
4346
  "application/json": {
3606
4347
  "schema": {
3607
- "$ref": "#/components/schemas/util.ValidationError"
4348
+ "$ref": "#/components/schemas/ValidationError"
3608
4349
  }
3609
4350
  }
3610
4351
  },
@@ -3614,7 +4355,7 @@
3614
4355
  "content": {
3615
4356
  "application/json": {
3616
4357
  "schema": {
3617
- "$ref": "#/components/schemas/util.UnauthorizedError"
4358
+ "$ref": "#/components/schemas/UnauthorizedError"
3618
4359
  }
3619
4360
  }
3620
4361
  },
@@ -3624,7 +4365,7 @@
3624
4365
  "content": {
3625
4366
  "application/json": {
3626
4367
  "schema": {
3627
- "$ref": "#/components/schemas/util.RateLimitError"
4368
+ "$ref": "#/components/schemas/RateLimitError"
3628
4369
  }
3629
4370
  }
3630
4371
  },
@@ -3634,7 +4375,7 @@
3634
4375
  "content": {
3635
4376
  "application/json": {
3636
4377
  "schema": {
3637
- "$ref": "#/components/schemas/util.ServerError"
4378
+ "$ref": "#/components/schemas/ServerError"
3638
4379
  }
3639
4380
  }
3640
4381
  },
@@ -3661,7 +4402,7 @@
3661
4402
  "name": "Anytype-Version",
3662
4403
  "required": true,
3663
4404
  "schema": {
3664
- "default": "2025-05-20",
4405
+ "default": "2025-11-08",
3665
4406
  "type": "string"
3666
4407
  }
3667
4408
  },
@@ -3689,7 +4430,7 @@
3689
4430
  "content": {
3690
4431
  "application/json": {
3691
4432
  "schema": {
3692
- "$ref": "#/components/schemas/apimodel.ObjectResponse"
4433
+ "$ref": "#/components/schemas/ObjectResponse"
3693
4434
  }
3694
4435
  }
3695
4436
  },
@@ -3699,7 +4440,7 @@
3699
4440
  "content": {
3700
4441
  "application/json": {
3701
4442
  "schema": {
3702
- "$ref": "#/components/schemas/util.UnauthorizedError"
4443
+ "$ref": "#/components/schemas/UnauthorizedError"
3703
4444
  }
3704
4445
  }
3705
4446
  },
@@ -3709,7 +4450,7 @@
3709
4450
  "content": {
3710
4451
  "application/json": {
3711
4452
  "schema": {
3712
- "$ref": "#/components/schemas/util.ForbiddenError"
4453
+ "$ref": "#/components/schemas/ForbiddenError"
3713
4454
  }
3714
4455
  }
3715
4456
  },
@@ -3719,7 +4460,7 @@
3719
4460
  "content": {
3720
4461
  "application/json": {
3721
4462
  "schema": {
3722
- "$ref": "#/components/schemas/util.NotFoundError"
4463
+ "$ref": "#/components/schemas/NotFoundError"
3723
4464
  }
3724
4465
  }
3725
4466
  },
@@ -3729,7 +4470,7 @@
3729
4470
  "content": {
3730
4471
  "application/json": {
3731
4472
  "schema": {
3732
- "$ref": "#/components/schemas/util.GoneError"
4473
+ "$ref": "#/components/schemas/GoneError"
3733
4474
  }
3734
4475
  }
3735
4476
  },
@@ -3739,7 +4480,7 @@
3739
4480
  "content": {
3740
4481
  "application/json": {
3741
4482
  "schema": {
3742
- "$ref": "#/components/schemas/util.RateLimitError"
4483
+ "$ref": "#/components/schemas/RateLimitError"
3743
4484
  }
3744
4485
  }
3745
4486
  },
@@ -3749,7 +4490,7 @@
3749
4490
  "content": {
3750
4491
  "application/json": {
3751
4492
  "schema": {
3752
- "$ref": "#/components/schemas/util.ServerError"
4493
+ "$ref": "#/components/schemas/ServerError"
3753
4494
  }
3754
4495
  }
3755
4496
  },
@@ -3774,7 +4515,7 @@
3774
4515
  "name": "Anytype-Version",
3775
4516
  "required": true,
3776
4517
  "schema": {
3777
- "default": "2025-05-20",
4518
+ "default": "2025-11-08",
3778
4519
  "type": "string"
3779
4520
  }
3780
4521
  },
@@ -3812,7 +4553,7 @@
3812
4553
  "content": {
3813
4554
  "application/json": {
3814
4555
  "schema": {
3815
- "$ref": "#/components/schemas/apimodel.ObjectResponse"
4556
+ "$ref": "#/components/schemas/ObjectResponse"
3816
4557
  }
3817
4558
  }
3818
4559
  },
@@ -3822,7 +4563,7 @@
3822
4563
  "content": {
3823
4564
  "application/json": {
3824
4565
  "schema": {
3825
- "$ref": "#/components/schemas/util.UnauthorizedError"
4566
+ "$ref": "#/components/schemas/UnauthorizedError"
3826
4567
  }
3827
4568
  }
3828
4569
  },
@@ -3832,7 +4573,7 @@
3832
4573
  "content": {
3833
4574
  "application/json": {
3834
4575
  "schema": {
3835
- "$ref": "#/components/schemas/util.NotFoundError"
4576
+ "$ref": "#/components/schemas/NotFoundError"
3836
4577
  }
3837
4578
  }
3838
4579
  },
@@ -3842,7 +4583,7 @@
3842
4583
  "content": {
3843
4584
  "application/json": {
3844
4585
  "schema": {
3845
- "$ref": "#/components/schemas/util.GoneError"
4586
+ "$ref": "#/components/schemas/GoneError"
3846
4587
  }
3847
4588
  }
3848
4589
  },
@@ -3852,7 +4593,7 @@
3852
4593
  "content": {
3853
4594
  "application/json": {
3854
4595
  "schema": {
3855
- "$ref": "#/components/schemas/util.ServerError"
4596
+ "$ref": "#/components/schemas/ServerError"
3856
4597
  }
3857
4598
  }
3858
4599
  },
@@ -3877,7 +4618,7 @@
3877
4618
  "name": "Anytype-Version",
3878
4619
  "required": true,
3879
4620
  "schema": {
3880
- "default": "2025-05-20",
4621
+ "default": "2025-11-08",
3881
4622
  "type": "string"
3882
4623
  }
3883
4624
  },
@@ -3904,7 +4645,7 @@
3904
4645
  "content": {
3905
4646
  "application/json": {
3906
4647
  "schema": {
3907
- "$ref": "#/components/schemas/apimodel.UpdateObjectRequest"
4648
+ "$ref": "#/components/schemas/UpdateObjectRequest"
3908
4649
  }
3909
4650
  }
3910
4651
  },
@@ -3916,7 +4657,7 @@
3916
4657
  "content": {
3917
4658
  "application/json": {
3918
4659
  "schema": {
3919
- "$ref": "#/components/schemas/apimodel.ObjectResponse"
4660
+ "$ref": "#/components/schemas/ObjectResponse"
3920
4661
  }
3921
4662
  }
3922
4663
  },
@@ -3926,7 +4667,7 @@
3926
4667
  "content": {
3927
4668
  "application/json": {
3928
4669
  "schema": {
3929
- "$ref": "#/components/schemas/util.ValidationError"
4670
+ "$ref": "#/components/schemas/ValidationError"
3930
4671
  }
3931
4672
  }
3932
4673
  },
@@ -3936,7 +4677,7 @@
3936
4677
  "content": {
3937
4678
  "application/json": {
3938
4679
  "schema": {
3939
- "$ref": "#/components/schemas/util.UnauthorizedError"
4680
+ "$ref": "#/components/schemas/UnauthorizedError"
3940
4681
  }
3941
4682
  }
3942
4683
  },
@@ -3946,7 +4687,7 @@
3946
4687
  "content": {
3947
4688
  "application/json": {
3948
4689
  "schema": {
3949
- "$ref": "#/components/schemas/util.NotFoundError"
4690
+ "$ref": "#/components/schemas/NotFoundError"
3950
4691
  }
3951
4692
  }
3952
4693
  },
@@ -3956,7 +4697,7 @@
3956
4697
  "content": {
3957
4698
  "application/json": {
3958
4699
  "schema": {
3959
- "$ref": "#/components/schemas/util.GoneError"
4700
+ "$ref": "#/components/schemas/GoneError"
3960
4701
  }
3961
4702
  }
3962
4703
  },
@@ -3966,7 +4707,7 @@
3966
4707
  "content": {
3967
4708
  "application/json": {
3968
4709
  "schema": {
3969
- "$ref": "#/components/schemas/util.RateLimitError"
4710
+ "$ref": "#/components/schemas/RateLimitError"
3970
4711
  }
3971
4712
  }
3972
4713
  },
@@ -3976,7 +4717,7 @@
3976
4717
  "content": {
3977
4718
  "application/json": {
3978
4719
  "schema": {
3979
- "$ref": "#/components/schemas/util.ServerError"
4720
+ "$ref": "#/components/schemas/ServerError"
3980
4721
  }
3981
4722
  }
3982
4723
  },
@@ -3994,7 +4735,7 @@
3994
4735
  },
3995
4736
  "/v1/spaces/{space_id}/properties": {
3996
4737
  "get": {
3997
- "description": "⚠ Warning: Properties are experimental and may change in the next update. ⚠ Retrieves a paginated list of properties available within a specific space. Each property record includes its unique identifier, name and format. This information is essential for clients to understand the available properties for filtering or creating objects.",
4738
+ "description": "Retrieves a paginated list of properties available within a specific space. Each property record includes its unique identifier, name and format. This information is essential for clients to understand the available properties for filtering or creating objects.\nSupports dynamic filtering via query parameters (e.g., ?name[contains]=date). See FilterCondition enum for available conditions.",
3998
4739
  "operationId": "list_properties",
3999
4740
  "parameters": [
4000
4741
  {
@@ -4003,7 +4744,7 @@
4003
4744
  "name": "Anytype-Version",
4004
4745
  "required": true,
4005
4746
  "schema": {
4006
- "default": "2025-05-20",
4747
+ "default": "2025-11-08",
4007
4748
  "type": "string"
4008
4749
  }
4009
4750
  },
@@ -4041,7 +4782,7 @@
4041
4782
  "content": {
4042
4783
  "application/json": {
4043
4784
  "schema": {
4044
- "$ref": "#/components/schemas/pagination.PaginatedResponse-apimodel_Property"
4785
+ "$ref": "#/components/schemas/PaginatedResponse-Property"
4045
4786
  }
4046
4787
  }
4047
4788
  },
@@ -4051,7 +4792,7 @@
4051
4792
  "content": {
4052
4793
  "application/json": {
4053
4794
  "schema": {
4054
- "$ref": "#/components/schemas/util.UnauthorizedError"
4795
+ "$ref": "#/components/schemas/UnauthorizedError"
4055
4796
  }
4056
4797
  }
4057
4798
  },
@@ -4061,7 +4802,7 @@
4061
4802
  "content": {
4062
4803
  "application/json": {
4063
4804
  "schema": {
4064
- "$ref": "#/components/schemas/util.ServerError"
4805
+ "$ref": "#/components/schemas/ServerError"
4065
4806
  }
4066
4807
  }
4067
4808
  },
@@ -4077,7 +4818,7 @@
4077
4818
  "tags": ["Properties"]
4078
4819
  },
4079
4820
  "post": {
4080
- "description": "⚠ Warning: Properties are experimental and may change in the next update. ⚠ Creates a new property in the specified space using a JSON payload. The creation process is subject to rate limiting. The payload must include property details such as the name and format. The endpoint then returns the full property data, ready for further interactions.",
4821
+ "description": "Creates a new property in the specified space using a JSON payload. The creation process is subject to rate limiting. The payload must include property details such as the name and format. The endpoint then returns the full property data, ready for further interactions.",
4081
4822
  "operationId": "create_property",
4082
4823
  "parameters": [
4083
4824
  {
@@ -4086,7 +4827,7 @@
4086
4827
  "name": "Anytype-Version",
4087
4828
  "required": true,
4088
4829
  "schema": {
4089
- "default": "2025-05-20",
4830
+ "default": "2025-11-08",
4090
4831
  "type": "string"
4091
4832
  }
4092
4833
  },
@@ -4104,7 +4845,7 @@
4104
4845
  "content": {
4105
4846
  "application/json": {
4106
4847
  "schema": {
4107
- "$ref": "#/components/schemas/apimodel.CreatePropertyRequest"
4848
+ "$ref": "#/components/schemas/CreatePropertyRequest"
4108
4849
  }
4109
4850
  }
4110
4851
  },
@@ -4116,7 +4857,7 @@
4116
4857
  "content": {
4117
4858
  "application/json": {
4118
4859
  "schema": {
4119
- "$ref": "#/components/schemas/apimodel.PropertyResponse"
4860
+ "$ref": "#/components/schemas/PropertyResponse"
4120
4861
  }
4121
4862
  }
4122
4863
  },
@@ -4126,7 +4867,7 @@
4126
4867
  "content": {
4127
4868
  "application/json": {
4128
4869
  "schema": {
4129
- "$ref": "#/components/schemas/util.ValidationError"
4870
+ "$ref": "#/components/schemas/ValidationError"
4130
4871
  }
4131
4872
  }
4132
4873
  },
@@ -4136,7 +4877,7 @@
4136
4877
  "content": {
4137
4878
  "application/json": {
4138
4879
  "schema": {
4139
- "$ref": "#/components/schemas/util.UnauthorizedError"
4880
+ "$ref": "#/components/schemas/UnauthorizedError"
4140
4881
  }
4141
4882
  }
4142
4883
  },
@@ -4146,7 +4887,7 @@
4146
4887
  "content": {
4147
4888
  "application/json": {
4148
4889
  "schema": {
4149
- "$ref": "#/components/schemas/util.RateLimitError"
4890
+ "$ref": "#/components/schemas/RateLimitError"
4150
4891
  }
4151
4892
  }
4152
4893
  },
@@ -4156,7 +4897,7 @@
4156
4897
  "content": {
4157
4898
  "application/json": {
4158
4899
  "schema": {
4159
- "$ref": "#/components/schemas/util.ServerError"
4900
+ "$ref": "#/components/schemas/ServerError"
4160
4901
  }
4161
4902
  }
4162
4903
  },
@@ -4174,7 +4915,7 @@
4174
4915
  },
4175
4916
  "/v1/spaces/{space_id}/properties/{property_id}": {
4176
4917
  "delete": {
4177
- "description": "⚠ Warning: Properties are experimental and may change in the next update. ⚠ This endpoint deletes a property by marking it as archived. The deletion process is performed safely and is subject to rate limiting. It returns the property’s details after it has been archived. Proper error handling is in place for situations such as when the property isn’t found or the deletion cannot be performed because of permission issues.",
4918
+ "description": "This endpoint \"deletes\" a property by marking it as archived. The deletion process is performed safely and is subject to rate limiting. It returns the property’s details after it has been archived. Proper error handling is in place for situations such as when the property isn’t found or the deletion cannot be performed because of permission issues.",
4178
4919
  "operationId": "delete_property",
4179
4920
  "parameters": [
4180
4921
  {
@@ -4183,7 +4924,7 @@
4183
4924
  "name": "Anytype-Version",
4184
4925
  "required": true,
4185
4926
  "schema": {
4186
- "default": "2025-05-20",
4927
+ "default": "2025-11-08",
4187
4928
  "type": "string"
4188
4929
  }
4189
4930
  },
@@ -4211,7 +4952,7 @@
4211
4952
  "content": {
4212
4953
  "application/json": {
4213
4954
  "schema": {
4214
- "$ref": "#/components/schemas/apimodel.PropertyResponse"
4955
+ "$ref": "#/components/schemas/PropertyResponse"
4215
4956
  }
4216
4957
  }
4217
4958
  },
@@ -4221,7 +4962,7 @@
4221
4962
  "content": {
4222
4963
  "application/json": {
4223
4964
  "schema": {
4224
- "$ref": "#/components/schemas/util.UnauthorizedError"
4965
+ "$ref": "#/components/schemas/UnauthorizedError"
4225
4966
  }
4226
4967
  }
4227
4968
  },
@@ -4231,7 +4972,7 @@
4231
4972
  "content": {
4232
4973
  "application/json": {
4233
4974
  "schema": {
4234
- "$ref": "#/components/schemas/util.ForbiddenError"
4975
+ "$ref": "#/components/schemas/ForbiddenError"
4235
4976
  }
4236
4977
  }
4237
4978
  },
@@ -4241,7 +4982,7 @@
4241
4982
  "content": {
4242
4983
  "application/json": {
4243
4984
  "schema": {
4244
- "$ref": "#/components/schemas/util.NotFoundError"
4985
+ "$ref": "#/components/schemas/NotFoundError"
4245
4986
  }
4246
4987
  }
4247
4988
  },
@@ -4251,7 +4992,7 @@
4251
4992
  "content": {
4252
4993
  "application/json": {
4253
4994
  "schema": {
4254
- "$ref": "#/components/schemas/util.GoneError"
4995
+ "$ref": "#/components/schemas/GoneError"
4255
4996
  }
4256
4997
  }
4257
4998
  },
@@ -4261,7 +5002,7 @@
4261
5002
  "content": {
4262
5003
  "application/json": {
4263
5004
  "schema": {
4264
- "$ref": "#/components/schemas/util.RateLimitError"
5005
+ "$ref": "#/components/schemas/RateLimitError"
4265
5006
  }
4266
5007
  }
4267
5008
  },
@@ -4271,7 +5012,7 @@
4271
5012
  "content": {
4272
5013
  "application/json": {
4273
5014
  "schema": {
4274
- "$ref": "#/components/schemas/util.ServerError"
5015
+ "$ref": "#/components/schemas/ServerError"
4275
5016
  }
4276
5017
  }
4277
5018
  },
@@ -4287,7 +5028,7 @@
4287
5028
  "tags": ["Properties"]
4288
5029
  },
4289
5030
  "get": {
4290
- "description": "⚠ Warning: Properties are experimental and may change in the next update. ⚠ Fetches detailed information about one specific property by its ID. This includes the property’s unique identifier, name and format. This detailed view assists clients in showing property options to users and in guiding the user interface (such as displaying appropriate input fields or selection options).",
5031
+ "description": "Fetches detailed information about one specific property by its ID. This includes the property’s unique identifier, name and format. This detailed view assists clients in showing property options to users and in guiding the user interface (such as displaying appropriate input fields or selection options).",
4291
5032
  "operationId": "get_property",
4292
5033
  "parameters": [
4293
5034
  {
@@ -4296,7 +5037,7 @@
4296
5037
  "name": "Anytype-Version",
4297
5038
  "required": true,
4298
5039
  "schema": {
4299
- "default": "2025-05-20",
5040
+ "default": "2025-11-08",
4300
5041
  "type": "string"
4301
5042
  }
4302
5043
  },
@@ -4324,7 +5065,7 @@
4324
5065
  "content": {
4325
5066
  "application/json": {
4326
5067
  "schema": {
4327
- "$ref": "#/components/schemas/apimodel.PropertyResponse"
5068
+ "$ref": "#/components/schemas/PropertyResponse"
4328
5069
  }
4329
5070
  }
4330
5071
  },
@@ -4334,7 +5075,7 @@
4334
5075
  "content": {
4335
5076
  "application/json": {
4336
5077
  "schema": {
4337
- "$ref": "#/components/schemas/util.UnauthorizedError"
5078
+ "$ref": "#/components/schemas/UnauthorizedError"
4338
5079
  }
4339
5080
  }
4340
5081
  },
@@ -4344,7 +5085,7 @@
4344
5085
  "content": {
4345
5086
  "application/json": {
4346
5087
  "schema": {
4347
- "$ref": "#/components/schemas/util.NotFoundError"
5088
+ "$ref": "#/components/schemas/NotFoundError"
4348
5089
  }
4349
5090
  }
4350
5091
  },
@@ -4354,7 +5095,7 @@
4354
5095
  "content": {
4355
5096
  "application/json": {
4356
5097
  "schema": {
4357
- "$ref": "#/components/schemas/util.GoneError"
5098
+ "$ref": "#/components/schemas/GoneError"
4358
5099
  }
4359
5100
  }
4360
5101
  },
@@ -4364,7 +5105,7 @@
4364
5105
  "content": {
4365
5106
  "application/json": {
4366
5107
  "schema": {
4367
- "$ref": "#/components/schemas/util.ServerError"
5108
+ "$ref": "#/components/schemas/ServerError"
4368
5109
  }
4369
5110
  }
4370
5111
  },
@@ -4380,7 +5121,7 @@
4380
5121
  "tags": ["Properties"]
4381
5122
  },
4382
5123
  "patch": {
4383
- "description": "⚠ Warning: Properties are experimental and may change in the next update. ⚠ This endpoint updates an existing property in the specified space using a JSON payload. The update process is subject to rate limiting. The payload must include the name to be updated. The endpoint then returns the full property data, ready for further interactions.",
5124
+ "description": "This endpoint updates an existing property in the specified space using a JSON payload. The update process is subject to rate limiting. The payload must include the name to be updated. The endpoint then returns the full property data, ready for further interactions.",
4384
5125
  "operationId": "update_property",
4385
5126
  "parameters": [
4386
5127
  {
@@ -4389,7 +5130,7 @@
4389
5130
  "name": "Anytype-Version",
4390
5131
  "required": true,
4391
5132
  "schema": {
4392
- "default": "2025-05-20",
5133
+ "default": "2025-11-08",
4393
5134
  "type": "string"
4394
5135
  }
4395
5136
  },
@@ -4416,7 +5157,7 @@
4416
5157
  "content": {
4417
5158
  "application/json": {
4418
5159
  "schema": {
4419
- "$ref": "#/components/schemas/apimodel.UpdatePropertyRequest"
5160
+ "$ref": "#/components/schemas/UpdatePropertyRequest"
4420
5161
  }
4421
5162
  }
4422
5163
  },
@@ -4428,7 +5169,7 @@
4428
5169
  "content": {
4429
5170
  "application/json": {
4430
5171
  "schema": {
4431
- "$ref": "#/components/schemas/apimodel.PropertyResponse"
5172
+ "$ref": "#/components/schemas/PropertyResponse"
4432
5173
  }
4433
5174
  }
4434
5175
  },
@@ -4438,7 +5179,7 @@
4438
5179
  "content": {
4439
5180
  "application/json": {
4440
5181
  "schema": {
4441
- "$ref": "#/components/schemas/util.ValidationError"
5182
+ "$ref": "#/components/schemas/ValidationError"
4442
5183
  }
4443
5184
  }
4444
5185
  },
@@ -4448,7 +5189,7 @@
4448
5189
  "content": {
4449
5190
  "application/json": {
4450
5191
  "schema": {
4451
- "$ref": "#/components/schemas/util.UnauthorizedError"
5192
+ "$ref": "#/components/schemas/UnauthorizedError"
4452
5193
  }
4453
5194
  }
4454
5195
  },
@@ -4458,7 +5199,7 @@
4458
5199
  "content": {
4459
5200
  "application/json": {
4460
5201
  "schema": {
4461
- "$ref": "#/components/schemas/util.ForbiddenError"
5202
+ "$ref": "#/components/schemas/ForbiddenError"
4462
5203
  }
4463
5204
  }
4464
5205
  },
@@ -4468,7 +5209,7 @@
4468
5209
  "content": {
4469
5210
  "application/json": {
4470
5211
  "schema": {
4471
- "$ref": "#/components/schemas/util.NotFoundError"
5212
+ "$ref": "#/components/schemas/NotFoundError"
4472
5213
  }
4473
5214
  }
4474
5215
  },
@@ -4478,7 +5219,7 @@
4478
5219
  "content": {
4479
5220
  "application/json": {
4480
5221
  "schema": {
4481
- "$ref": "#/components/schemas/util.GoneError"
5222
+ "$ref": "#/components/schemas/GoneError"
4482
5223
  }
4483
5224
  }
4484
5225
  },
@@ -4488,7 +5229,7 @@
4488
5229
  "content": {
4489
5230
  "application/json": {
4490
5231
  "schema": {
4491
- "$ref": "#/components/schemas/util.RateLimitError"
5232
+ "$ref": "#/components/schemas/RateLimitError"
4492
5233
  }
4493
5234
  }
4494
5235
  },
@@ -4498,7 +5239,7 @@
4498
5239
  "content": {
4499
5240
  "application/json": {
4500
5241
  "schema": {
4501
- "$ref": "#/components/schemas/util.ServerError"
5242
+ "$ref": "#/components/schemas/ServerError"
4502
5243
  }
4503
5244
  }
4504
5245
  },
@@ -4516,7 +5257,7 @@
4516
5257
  },
4517
5258
  "/v1/spaces/{space_id}/properties/{property_id}/tags": {
4518
5259
  "get": {
4519
- "description": "This endpoint retrieves a paginated list of tags available for a specific property within a space. Each tag record includes its unique identifier, name, and color. This information is essential for clients to display select or multi-select options to users when they are creating or editing objects. The endpoint also supports pagination through offset and limit parameters.",
5260
+ "description": "This endpoint retrieves a paginated list of tags available for a specific property within a space. Each tag record includes its unique identifier, name, and color. This information is essential for clients to display select or multi-select options to users when they are creating or editing objects. The endpoint also supports pagination through offset and limit parameters.\nSupports dynamic filtering via query parameters (e.g., ?name[contains]=urgent). See FilterCondition enum for available conditions.",
4520
5261
  "operationId": "list_tags",
4521
5262
  "parameters": [
4522
5263
  {
@@ -4525,7 +5266,7 @@
4525
5266
  "name": "Anytype-Version",
4526
5267
  "required": true,
4527
5268
  "schema": {
4528
- "default": "2025-05-20",
5269
+ "default": "2025-11-08",
4529
5270
  "type": "string"
4530
5271
  }
4531
5272
  },
@@ -4553,7 +5294,7 @@
4553
5294
  "content": {
4554
5295
  "application/json": {
4555
5296
  "schema": {
4556
- "$ref": "#/components/schemas/pagination.PaginatedResponse-apimodel_Tag"
5297
+ "$ref": "#/components/schemas/PaginatedResponse-Tag"
4557
5298
  }
4558
5299
  }
4559
5300
  },
@@ -4563,7 +5304,7 @@
4563
5304
  "content": {
4564
5305
  "application/json": {
4565
5306
  "schema": {
4566
- "$ref": "#/components/schemas/util.UnauthorizedError"
5307
+ "$ref": "#/components/schemas/UnauthorizedError"
4567
5308
  }
4568
5309
  }
4569
5310
  },
@@ -4573,7 +5314,7 @@
4573
5314
  "content": {
4574
5315
  "application/json": {
4575
5316
  "schema": {
4576
- "$ref": "#/components/schemas/util.NotFoundError"
5317
+ "$ref": "#/components/schemas/NotFoundError"
4577
5318
  }
4578
5319
  }
4579
5320
  },
@@ -4583,7 +5324,7 @@
4583
5324
  "content": {
4584
5325
  "application/json": {
4585
5326
  "schema": {
4586
- "$ref": "#/components/schemas/util.ServerError"
5327
+ "$ref": "#/components/schemas/ServerError"
4587
5328
  }
4588
5329
  }
4589
5330
  },
@@ -4608,7 +5349,7 @@
4608
5349
  "name": "Anytype-Version",
4609
5350
  "required": true,
4610
5351
  "schema": {
4611
- "default": "2025-05-20",
5352
+ "default": "2025-11-08",
4612
5353
  "type": "string"
4613
5354
  }
4614
5355
  },
@@ -4635,7 +5376,7 @@
4635
5376
  "content": {
4636
5377
  "application/json": {
4637
5378
  "schema": {
4638
- "$ref": "#/components/schemas/apimodel.CreateTagRequest"
5379
+ "$ref": "#/components/schemas/CreateTagRequest"
4639
5380
  }
4640
5381
  }
4641
5382
  },
@@ -4647,7 +5388,7 @@
4647
5388
  "content": {
4648
5389
  "application/json": {
4649
5390
  "schema": {
4650
- "$ref": "#/components/schemas/apimodel.TagResponse"
5391
+ "$ref": "#/components/schemas/TagResponse"
4651
5392
  }
4652
5393
  }
4653
5394
  },
@@ -4657,7 +5398,7 @@
4657
5398
  "content": {
4658
5399
  "application/json": {
4659
5400
  "schema": {
4660
- "$ref": "#/components/schemas/util.ValidationError"
5401
+ "$ref": "#/components/schemas/ValidationError"
4661
5402
  }
4662
5403
  }
4663
5404
  },
@@ -4667,7 +5408,7 @@
4667
5408
  "content": {
4668
5409
  "application/json": {
4669
5410
  "schema": {
4670
- "$ref": "#/components/schemas/util.UnauthorizedError"
5411
+ "$ref": "#/components/schemas/UnauthorizedError"
4671
5412
  }
4672
5413
  }
4673
5414
  },
@@ -4677,7 +5418,7 @@
4677
5418
  "content": {
4678
5419
  "application/json": {
4679
5420
  "schema": {
4680
- "$ref": "#/components/schemas/util.RateLimitError"
5421
+ "$ref": "#/components/schemas/RateLimitError"
4681
5422
  }
4682
5423
  }
4683
5424
  },
@@ -4687,7 +5428,7 @@
4687
5428
  "content": {
4688
5429
  "application/json": {
4689
5430
  "schema": {
4690
- "$ref": "#/components/schemas/util.ServerError"
5431
+ "$ref": "#/components/schemas/ServerError"
4691
5432
  }
4692
5433
  }
4693
5434
  },
@@ -4714,7 +5455,7 @@
4714
5455
  "name": "Anytype-Version",
4715
5456
  "required": true,
4716
5457
  "schema": {
4717
- "default": "2025-05-20",
5458
+ "default": "2025-11-08",
4718
5459
  "type": "string"
4719
5460
  }
4720
5461
  },
@@ -4751,7 +5492,7 @@
4751
5492
  "content": {
4752
5493
  "application/json": {
4753
5494
  "schema": {
4754
- "$ref": "#/components/schemas/apimodel.TagResponse"
5495
+ "$ref": "#/components/schemas/TagResponse"
4755
5496
  }
4756
5497
  }
4757
5498
  },
@@ -4761,7 +5502,7 @@
4761
5502
  "content": {
4762
5503
  "application/json": {
4763
5504
  "schema": {
4764
- "$ref": "#/components/schemas/util.UnauthorizedError"
5505
+ "$ref": "#/components/schemas/UnauthorizedError"
4765
5506
  }
4766
5507
  }
4767
5508
  },
@@ -4771,7 +5512,7 @@
4771
5512
  "content": {
4772
5513
  "application/json": {
4773
5514
  "schema": {
4774
- "$ref": "#/components/schemas/util.ForbiddenError"
5515
+ "$ref": "#/components/schemas/ForbiddenError"
4775
5516
  }
4776
5517
  }
4777
5518
  },
@@ -4781,7 +5522,7 @@
4781
5522
  "content": {
4782
5523
  "application/json": {
4783
5524
  "schema": {
4784
- "$ref": "#/components/schemas/util.NotFoundError"
5525
+ "$ref": "#/components/schemas/NotFoundError"
4785
5526
  }
4786
5527
  }
4787
5528
  },
@@ -4791,7 +5532,7 @@
4791
5532
  "content": {
4792
5533
  "application/json": {
4793
5534
  "schema": {
4794
- "$ref": "#/components/schemas/util.GoneError"
5535
+ "$ref": "#/components/schemas/GoneError"
4795
5536
  }
4796
5537
  }
4797
5538
  },
@@ -4801,7 +5542,7 @@
4801
5542
  "content": {
4802
5543
  "application/json": {
4803
5544
  "schema": {
4804
- "$ref": "#/components/schemas/util.RateLimitError"
5545
+ "$ref": "#/components/schemas/RateLimitError"
4805
5546
  }
4806
5547
  }
4807
5548
  },
@@ -4811,7 +5552,7 @@
4811
5552
  "content": {
4812
5553
  "application/json": {
4813
5554
  "schema": {
4814
- "$ref": "#/components/schemas/util.ServerError"
5555
+ "$ref": "#/components/schemas/ServerError"
4815
5556
  }
4816
5557
  }
4817
5558
  },
@@ -4836,7 +5577,7 @@
4836
5577
  "name": "Anytype-Version",
4837
5578
  "required": true,
4838
5579
  "schema": {
4839
- "default": "2025-05-20",
5580
+ "default": "2025-11-08",
4840
5581
  "type": "string"
4841
5582
  }
4842
5583
  },
@@ -4873,7 +5614,7 @@
4873
5614
  "content": {
4874
5615
  "application/json": {
4875
5616
  "schema": {
4876
- "$ref": "#/components/schemas/apimodel.TagResponse"
5617
+ "$ref": "#/components/schemas/TagResponse"
4877
5618
  }
4878
5619
  }
4879
5620
  },
@@ -4883,7 +5624,7 @@
4883
5624
  "content": {
4884
5625
  "application/json": {
4885
5626
  "schema": {
4886
- "$ref": "#/components/schemas/util.UnauthorizedError"
5627
+ "$ref": "#/components/schemas/UnauthorizedError"
4887
5628
  }
4888
5629
  }
4889
5630
  },
@@ -4893,7 +5634,7 @@
4893
5634
  "content": {
4894
5635
  "application/json": {
4895
5636
  "schema": {
4896
- "$ref": "#/components/schemas/util.NotFoundError"
5637
+ "$ref": "#/components/schemas/NotFoundError"
4897
5638
  }
4898
5639
  }
4899
5640
  },
@@ -4903,7 +5644,7 @@
4903
5644
  "content": {
4904
5645
  "application/json": {
4905
5646
  "schema": {
4906
- "$ref": "#/components/schemas/util.GoneError"
5647
+ "$ref": "#/components/schemas/GoneError"
4907
5648
  }
4908
5649
  }
4909
5650
  },
@@ -4913,7 +5654,7 @@
4913
5654
  "content": {
4914
5655
  "application/json": {
4915
5656
  "schema": {
4916
- "$ref": "#/components/schemas/util.ServerError"
5657
+ "$ref": "#/components/schemas/ServerError"
4917
5658
  }
4918
5659
  }
4919
5660
  },
@@ -4938,7 +5679,7 @@
4938
5679
  "name": "Anytype-Version",
4939
5680
  "required": true,
4940
5681
  "schema": {
4941
- "default": "2025-05-20",
5682
+ "default": "2025-11-08",
4942
5683
  "type": "string"
4943
5684
  }
4944
5685
  },
@@ -4974,7 +5715,7 @@
4974
5715
  "content": {
4975
5716
  "application/json": {
4976
5717
  "schema": {
4977
- "$ref": "#/components/schemas/apimodel.UpdateTagRequest"
5718
+ "$ref": "#/components/schemas/UpdateTagRequest"
4978
5719
  }
4979
5720
  }
4980
5721
  },
@@ -4986,7 +5727,7 @@
4986
5727
  "content": {
4987
5728
  "application/json": {
4988
5729
  "schema": {
4989
- "$ref": "#/components/schemas/apimodel.TagResponse"
5730
+ "$ref": "#/components/schemas/TagResponse"
4990
5731
  }
4991
5732
  }
4992
5733
  },
@@ -4996,7 +5737,7 @@
4996
5737
  "content": {
4997
5738
  "application/json": {
4998
5739
  "schema": {
4999
- "$ref": "#/components/schemas/util.ValidationError"
5740
+ "$ref": "#/components/schemas/ValidationError"
5000
5741
  }
5001
5742
  }
5002
5743
  },
@@ -5006,7 +5747,7 @@
5006
5747
  "content": {
5007
5748
  "application/json": {
5008
5749
  "schema": {
5009
- "$ref": "#/components/schemas/util.UnauthorizedError"
5750
+ "$ref": "#/components/schemas/UnauthorizedError"
5010
5751
  }
5011
5752
  }
5012
5753
  },
@@ -5016,7 +5757,7 @@
5016
5757
  "content": {
5017
5758
  "application/json": {
5018
5759
  "schema": {
5019
- "$ref": "#/components/schemas/util.ForbiddenError"
5760
+ "$ref": "#/components/schemas/ForbiddenError"
5020
5761
  }
5021
5762
  }
5022
5763
  },
@@ -5026,7 +5767,7 @@
5026
5767
  "content": {
5027
5768
  "application/json": {
5028
5769
  "schema": {
5029
- "$ref": "#/components/schemas/util.NotFoundError"
5770
+ "$ref": "#/components/schemas/NotFoundError"
5030
5771
  }
5031
5772
  }
5032
5773
  },
@@ -5036,7 +5777,7 @@
5036
5777
  "content": {
5037
5778
  "application/json": {
5038
5779
  "schema": {
5039
- "$ref": "#/components/schemas/util.GoneError"
5780
+ "$ref": "#/components/schemas/GoneError"
5040
5781
  }
5041
5782
  }
5042
5783
  },
@@ -5046,7 +5787,7 @@
5046
5787
  "content": {
5047
5788
  "application/json": {
5048
5789
  "schema": {
5049
- "$ref": "#/components/schemas/util.RateLimitError"
5790
+ "$ref": "#/components/schemas/RateLimitError"
5050
5791
  }
5051
5792
  }
5052
5793
  },
@@ -5056,7 +5797,7 @@
5056
5797
  "content": {
5057
5798
  "application/json": {
5058
5799
  "schema": {
5059
- "$ref": "#/components/schemas/util.ServerError"
5800
+ "$ref": "#/components/schemas/ServerError"
5060
5801
  }
5061
5802
  }
5062
5803
  },
@@ -5083,7 +5824,7 @@
5083
5824
  "name": "Anytype-Version",
5084
5825
  "required": true,
5085
5826
  "schema": {
5086
- "default": "2025-05-20",
5827
+ "default": "2025-11-08",
5087
5828
  "type": "string"
5088
5829
  }
5089
5830
  },
@@ -5120,7 +5861,7 @@
5120
5861
  "content": {
5121
5862
  "application/json": {
5122
5863
  "schema": {
5123
- "$ref": "#/components/schemas/apimodel.SearchRequest"
5864
+ "$ref": "#/components/schemas/SearchRequest"
5124
5865
  }
5125
5866
  }
5126
5867
  },
@@ -5132,7 +5873,7 @@
5132
5873
  "content": {
5133
5874
  "application/json": {
5134
5875
  "schema": {
5135
- "$ref": "#/components/schemas/pagination.PaginatedResponse-apimodel_Object"
5876
+ "$ref": "#/components/schemas/PaginatedResponse-Object"
5136
5877
  }
5137
5878
  }
5138
5879
  },
@@ -5142,7 +5883,7 @@
5142
5883
  "content": {
5143
5884
  "application/json": {
5144
5885
  "schema": {
5145
- "$ref": "#/components/schemas/util.UnauthorizedError"
5886
+ "$ref": "#/components/schemas/UnauthorizedError"
5146
5887
  }
5147
5888
  }
5148
5889
  },
@@ -5152,7 +5893,7 @@
5152
5893
  "content": {
5153
5894
  "application/json": {
5154
5895
  "schema": {
5155
- "$ref": "#/components/schemas/util.ServerError"
5896
+ "$ref": "#/components/schemas/ServerError"
5156
5897
  }
5157
5898
  }
5158
5899
  },
@@ -5170,7 +5911,7 @@
5170
5911
  },
5171
5912
  "/v1/spaces/{space_id}/types": {
5172
5913
  "get": {
5173
- "description": "This endpoint retrieves a paginated list of types (e.g. 'Page', 'Note', 'Task') available within the specified space. Each types record includes its unique identifier, type key, display name, icon, and layout. While a type's id is truly unique, a type's key can be the same across spaces for known types, e.g. 'page' for 'Page'. Clients use this information when offering choices for object creation or for filtering objects by type through search.",
5914
+ "description": "This endpoint retrieves a paginated list of types (e.g. 'Page', 'Note', 'Task') available within the specified space. Each type's record includes its unique identifier, type key, display name, icon, and layout. While a type's id is truly unique, a type's key can be the same across spaces for known types, e.g. 'page' for 'Page'. Clients use this information when offering choices for object creation or for filtering objects by type through search.\nSupports dynamic filtering via query parameters (e.g. ?name[contains]=task). See FilterCondition enum for available conditions.",
5174
5915
  "operationId": "list_types",
5175
5916
  "parameters": [
5176
5917
  {
@@ -5179,7 +5920,7 @@
5179
5920
  "name": "Anytype-Version",
5180
5921
  "required": true,
5181
5922
  "schema": {
5182
- "default": "2025-05-20",
5923
+ "default": "2025-11-08",
5183
5924
  "type": "string"
5184
5925
  }
5185
5926
  },
@@ -5217,7 +5958,7 @@
5217
5958
  "content": {
5218
5959
  "application/json": {
5219
5960
  "schema": {
5220
- "$ref": "#/components/schemas/pagination.PaginatedResponse-apimodel_Type"
5961
+ "$ref": "#/components/schemas/PaginatedResponse-Type"
5221
5962
  }
5222
5963
  }
5223
5964
  },
@@ -5227,7 +5968,7 @@
5227
5968
  "content": {
5228
5969
  "application/json": {
5229
5970
  "schema": {
5230
- "$ref": "#/components/schemas/util.UnauthorizedError"
5971
+ "$ref": "#/components/schemas/UnauthorizedError"
5231
5972
  }
5232
5973
  }
5233
5974
  },
@@ -5237,7 +5978,7 @@
5237
5978
  "content": {
5238
5979
  "application/json": {
5239
5980
  "schema": {
5240
- "$ref": "#/components/schemas/util.ServerError"
5981
+ "$ref": "#/components/schemas/ServerError"
5241
5982
  }
5242
5983
  }
5243
5984
  },
@@ -5262,7 +6003,7 @@
5262
6003
  "name": "Anytype-Version",
5263
6004
  "required": true,
5264
6005
  "schema": {
5265
- "default": "2025-05-20",
6006
+ "default": "2025-11-08",
5266
6007
  "type": "string"
5267
6008
  }
5268
6009
  },
@@ -5280,7 +6021,7 @@
5280
6021
  "content": {
5281
6022
  "application/json": {
5282
6023
  "schema": {
5283
- "$ref": "#/components/schemas/apimodel.CreateTypeRequest"
6024
+ "$ref": "#/components/schemas/CreateTypeRequest"
5284
6025
  }
5285
6026
  }
5286
6027
  },
@@ -5292,7 +6033,7 @@
5292
6033
  "content": {
5293
6034
  "application/json": {
5294
6035
  "schema": {
5295
- "$ref": "#/components/schemas/apimodel.TypeResponse"
6036
+ "$ref": "#/components/schemas/TypeResponse"
5296
6037
  }
5297
6038
  }
5298
6039
  },
@@ -5302,7 +6043,7 @@
5302
6043
  "content": {
5303
6044
  "application/json": {
5304
6045
  "schema": {
5305
- "$ref": "#/components/schemas/util.ValidationError"
6046
+ "$ref": "#/components/schemas/ValidationError"
5306
6047
  }
5307
6048
  }
5308
6049
  },
@@ -5312,7 +6053,7 @@
5312
6053
  "content": {
5313
6054
  "application/json": {
5314
6055
  "schema": {
5315
- "$ref": "#/components/schemas/util.UnauthorizedError"
6056
+ "$ref": "#/components/schemas/UnauthorizedError"
5316
6057
  }
5317
6058
  }
5318
6059
  },
@@ -5322,7 +6063,7 @@
5322
6063
  "content": {
5323
6064
  "application/json": {
5324
6065
  "schema": {
5325
- "$ref": "#/components/schemas/util.RateLimitError"
6066
+ "$ref": "#/components/schemas/RateLimitError"
5326
6067
  }
5327
6068
  }
5328
6069
  },
@@ -5332,7 +6073,7 @@
5332
6073
  "content": {
5333
6074
  "application/json": {
5334
6075
  "schema": {
5335
- "$ref": "#/components/schemas/util.ServerError"
6076
+ "$ref": "#/components/schemas/ServerError"
5336
6077
  }
5337
6078
  }
5338
6079
  },
@@ -5359,7 +6100,7 @@
5359
6100
  "name": "Anytype-Version",
5360
6101
  "required": true,
5361
6102
  "schema": {
5362
- "default": "2025-05-20",
6103
+ "default": "2025-11-08",
5363
6104
  "type": "string"
5364
6105
  }
5365
6106
  },
@@ -5387,7 +6128,7 @@
5387
6128
  "content": {
5388
6129
  "application/json": {
5389
6130
  "schema": {
5390
- "$ref": "#/components/schemas/apimodel.TypeResponse"
6131
+ "$ref": "#/components/schemas/TypeResponse"
5391
6132
  }
5392
6133
  }
5393
6134
  },
@@ -5397,7 +6138,7 @@
5397
6138
  "content": {
5398
6139
  "application/json": {
5399
6140
  "schema": {
5400
- "$ref": "#/components/schemas/util.UnauthorizedError"
6141
+ "$ref": "#/components/schemas/UnauthorizedError"
5401
6142
  }
5402
6143
  }
5403
6144
  },
@@ -5407,7 +6148,7 @@
5407
6148
  "content": {
5408
6149
  "application/json": {
5409
6150
  "schema": {
5410
- "$ref": "#/components/schemas/util.ForbiddenError"
6151
+ "$ref": "#/components/schemas/ForbiddenError"
5411
6152
  }
5412
6153
  }
5413
6154
  },
@@ -5417,7 +6158,7 @@
5417
6158
  "content": {
5418
6159
  "application/json": {
5419
6160
  "schema": {
5420
- "$ref": "#/components/schemas/util.NotFoundError"
6161
+ "$ref": "#/components/schemas/NotFoundError"
5421
6162
  }
5422
6163
  }
5423
6164
  },
@@ -5427,7 +6168,7 @@
5427
6168
  "content": {
5428
6169
  "application/json": {
5429
6170
  "schema": {
5430
- "$ref": "#/components/schemas/util.GoneError"
6171
+ "$ref": "#/components/schemas/GoneError"
5431
6172
  }
5432
6173
  }
5433
6174
  },
@@ -5437,7 +6178,7 @@
5437
6178
  "content": {
5438
6179
  "application/json": {
5439
6180
  "schema": {
5440
- "$ref": "#/components/schemas/util.RateLimitError"
6181
+ "$ref": "#/components/schemas/RateLimitError"
5441
6182
  }
5442
6183
  }
5443
6184
  },
@@ -5447,7 +6188,7 @@
5447
6188
  "content": {
5448
6189
  "application/json": {
5449
6190
  "schema": {
5450
- "$ref": "#/components/schemas/util.ServerError"
6191
+ "$ref": "#/components/schemas/ServerError"
5451
6192
  }
5452
6193
  }
5453
6194
  },
@@ -5472,7 +6213,7 @@
5472
6213
  "name": "Anytype-Version",
5473
6214
  "required": true,
5474
6215
  "schema": {
5475
- "default": "2025-05-20",
6216
+ "default": "2025-11-08",
5476
6217
  "type": "string"
5477
6218
  }
5478
6219
  },
@@ -5500,7 +6241,7 @@
5500
6241
  "content": {
5501
6242
  "application/json": {
5502
6243
  "schema": {
5503
- "$ref": "#/components/schemas/apimodel.TypeResponse"
6244
+ "$ref": "#/components/schemas/TypeResponse"
5504
6245
  }
5505
6246
  }
5506
6247
  },
@@ -5510,7 +6251,7 @@
5510
6251
  "content": {
5511
6252
  "application/json": {
5512
6253
  "schema": {
5513
- "$ref": "#/components/schemas/util.UnauthorizedError"
6254
+ "$ref": "#/components/schemas/UnauthorizedError"
5514
6255
  }
5515
6256
  }
5516
6257
  },
@@ -5520,7 +6261,7 @@
5520
6261
  "content": {
5521
6262
  "application/json": {
5522
6263
  "schema": {
5523
- "$ref": "#/components/schemas/util.NotFoundError"
6264
+ "$ref": "#/components/schemas/NotFoundError"
5524
6265
  }
5525
6266
  }
5526
6267
  },
@@ -5530,7 +6271,7 @@
5530
6271
  "content": {
5531
6272
  "application/json": {
5532
6273
  "schema": {
5533
- "$ref": "#/components/schemas/util.GoneError"
6274
+ "$ref": "#/components/schemas/GoneError"
5534
6275
  }
5535
6276
  }
5536
6277
  },
@@ -5540,7 +6281,7 @@
5540
6281
  "content": {
5541
6282
  "application/json": {
5542
6283
  "schema": {
5543
- "$ref": "#/components/schemas/util.ServerError"
6284
+ "$ref": "#/components/schemas/ServerError"
5544
6285
  }
5545
6286
  }
5546
6287
  },
@@ -5565,7 +6306,7 @@
5565
6306
  "name": "Anytype-Version",
5566
6307
  "required": true,
5567
6308
  "schema": {
5568
- "default": "2025-05-20",
6309
+ "default": "2025-11-08",
5569
6310
  "type": "string"
5570
6311
  }
5571
6312
  },
@@ -5592,7 +6333,7 @@
5592
6333
  "content": {
5593
6334
  "application/json": {
5594
6335
  "schema": {
5595
- "$ref": "#/components/schemas/apimodel.UpdateTypeRequest"
6336
+ "$ref": "#/components/schemas/UpdateTypeRequest"
5596
6337
  }
5597
6338
  }
5598
6339
  },
@@ -5604,7 +6345,7 @@
5604
6345
  "content": {
5605
6346
  "application/json": {
5606
6347
  "schema": {
5607
- "$ref": "#/components/schemas/apimodel.TypeResponse"
6348
+ "$ref": "#/components/schemas/TypeResponse"
5608
6349
  }
5609
6350
  }
5610
6351
  },
@@ -5614,7 +6355,7 @@
5614
6355
  "content": {
5615
6356
  "application/json": {
5616
6357
  "schema": {
5617
- "$ref": "#/components/schemas/util.ValidationError"
6358
+ "$ref": "#/components/schemas/ValidationError"
5618
6359
  }
5619
6360
  }
5620
6361
  },
@@ -5624,7 +6365,7 @@
5624
6365
  "content": {
5625
6366
  "application/json": {
5626
6367
  "schema": {
5627
- "$ref": "#/components/schemas/util.UnauthorizedError"
6368
+ "$ref": "#/components/schemas/UnauthorizedError"
5628
6369
  }
5629
6370
  }
5630
6371
  },
@@ -5634,7 +6375,7 @@
5634
6375
  "content": {
5635
6376
  "application/json": {
5636
6377
  "schema": {
5637
- "$ref": "#/components/schemas/util.NotFoundError"
6378
+ "$ref": "#/components/schemas/NotFoundError"
5638
6379
  }
5639
6380
  }
5640
6381
  },
@@ -5644,7 +6385,7 @@
5644
6385
  "content": {
5645
6386
  "application/json": {
5646
6387
  "schema": {
5647
- "$ref": "#/components/schemas/util.GoneError"
6388
+ "$ref": "#/components/schemas/GoneError"
5648
6389
  }
5649
6390
  }
5650
6391
  },
@@ -5654,7 +6395,7 @@
5654
6395
  "content": {
5655
6396
  "application/json": {
5656
6397
  "schema": {
5657
- "$ref": "#/components/schemas/util.RateLimitError"
6398
+ "$ref": "#/components/schemas/RateLimitError"
5658
6399
  }
5659
6400
  }
5660
6401
  },
@@ -5664,7 +6405,7 @@
5664
6405
  "content": {
5665
6406
  "application/json": {
5666
6407
  "schema": {
5667
- "$ref": "#/components/schemas/util.ServerError"
6408
+ "$ref": "#/components/schemas/ServerError"
5668
6409
  }
5669
6410
  }
5670
6411
  },
@@ -5682,7 +6423,7 @@
5682
6423
  },
5683
6424
  "/v1/spaces/{space_id}/types/{type_id}/templates": {
5684
6425
  "get": {
5685
- "description": "This endpoint returns a paginated list of templates that are associated with a specific type within a space. Templates provide pre‑configured structures for creating new objects. Each template record contains its identifier, name, and icon, so that clients can offer users a selection of templates when creating objects.",
6426
+ "description": "This endpoint returns a paginated list of templates that are associated with a specific type within a space. Templates provide pre‑configured structures for creating new objects. Each template record contains its identifier, name, and icon, so that clients can offer users a selection of templates when creating objects.\nSupports dynamic filtering via query parameters (e.g., ?name[contains]=invoice). See FilterCondition enum for available conditions.",
5686
6427
  "operationId": "list_templates",
5687
6428
  "parameters": [
5688
6429
  {
@@ -5691,7 +6432,7 @@
5691
6432
  "name": "Anytype-Version",
5692
6433
  "required": true,
5693
6434
  "schema": {
5694
- "default": "2025-05-20",
6435
+ "default": "2025-11-08",
5695
6436
  "type": "string"
5696
6437
  }
5697
6438
  },
@@ -5738,7 +6479,7 @@
5738
6479
  "content": {
5739
6480
  "application/json": {
5740
6481
  "schema": {
5741
- "$ref": "#/components/schemas/pagination.PaginatedResponse-apimodel_Object"
6482
+ "$ref": "#/components/schemas/PaginatedResponse-Object"
5742
6483
  }
5743
6484
  }
5744
6485
  },
@@ -5748,7 +6489,7 @@
5748
6489
  "content": {
5749
6490
  "application/json": {
5750
6491
  "schema": {
5751
- "$ref": "#/components/schemas/util.UnauthorizedError"
6492
+ "$ref": "#/components/schemas/UnauthorizedError"
5752
6493
  }
5753
6494
  }
5754
6495
  },
@@ -5758,7 +6499,7 @@
5758
6499
  "content": {
5759
6500
  "application/json": {
5760
6501
  "schema": {
5761
- "$ref": "#/components/schemas/util.ServerError"
6502
+ "$ref": "#/components/schemas/ServerError"
5762
6503
  }
5763
6504
  }
5764
6505
  },
@@ -5785,7 +6526,7 @@
5785
6526
  "name": "Anytype-Version",
5786
6527
  "required": true,
5787
6528
  "schema": {
5788
- "default": "2025-05-20",
6529
+ "default": "2025-11-08",
5789
6530
  "type": "string"
5790
6531
  }
5791
6532
  },
@@ -5822,7 +6563,7 @@
5822
6563
  "content": {
5823
6564
  "application/json": {
5824
6565
  "schema": {
5825
- "$ref": "#/components/schemas/apimodel.TemplateResponse"
6566
+ "$ref": "#/components/schemas/TemplateResponse"
5826
6567
  }
5827
6568
  }
5828
6569
  },
@@ -5832,7 +6573,7 @@
5832
6573
  "content": {
5833
6574
  "application/json": {
5834
6575
  "schema": {
5835
- "$ref": "#/components/schemas/util.UnauthorizedError"
6576
+ "$ref": "#/components/schemas/UnauthorizedError"
5836
6577
  }
5837
6578
  }
5838
6579
  },
@@ -5842,7 +6583,7 @@
5842
6583
  "content": {
5843
6584
  "application/json": {
5844
6585
  "schema": {
5845
- "$ref": "#/components/schemas/util.NotFoundError"
6586
+ "$ref": "#/components/schemas/NotFoundError"
5846
6587
  }
5847
6588
  }
5848
6589
  },
@@ -5852,7 +6593,7 @@
5852
6593
  "content": {
5853
6594
  "application/json": {
5854
6595
  "schema": {
5855
- "$ref": "#/components/schemas/util.GoneError"
6596
+ "$ref": "#/components/schemas/GoneError"
5856
6597
  }
5857
6598
  }
5858
6599
  },
@@ -5862,7 +6603,7 @@
5862
6603
  "content": {
5863
6604
  "application/json": {
5864
6605
  "schema": {
5865
- "$ref": "#/components/schemas/util.ServerError"
6606
+ "$ref": "#/components/schemas/ServerError"
5866
6607
  }
5867
6608
  }
5868
6609
  },
@@ -5882,7 +6623,7 @@
5882
6623
  "openapi": "3.1.0",
5883
6624
  "servers": [
5884
6625
  {
5885
- "url": "http://localhost:31009"
6626
+ "url": "http://127.0.0.1:31009"
5886
6627
  }
5887
6628
  ]
5888
6629
  }