@semiont/core 0.5.19 → 0.5.20

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/testing.d.ts CHANGED
@@ -471,7 +471,7 @@ interface components {
471
471
  BrowsePanelOpenEvent: {
472
472
  panel: string;
473
473
  scrollToAnnotationId?: string;
474
- motivation?: string;
474
+ motivation?: components["schemas"]["Motivation"];
475
475
  };
476
476
  /** @description Emitted when a browse panel is toggled */
477
477
  BrowsePanelToggleEvent: {
@@ -2212,8 +2212,23 @@ type EventMap = {
2212
2212
  'mark:cancel-pending': void;
2213
2213
  'mark:submit': components['schemas']['MarkSubmitEvent'];
2214
2214
  'mark:assist-request': components['schemas']['MarkAssistRequestEvent'];
2215
- 'mark:assist-cancelled': void;
2216
2215
  'mark:progress-dismiss': void;
2216
+ 'mark:assist-timeout': {
2217
+ resourceId: string;
2218
+ motivation: components['schemas']['Motivation'];
2219
+ };
2220
+ 'mark:create-error': {
2221
+ resourceId: string;
2222
+ message: string;
2223
+ };
2224
+ 'mark:delete-error': {
2225
+ resourceId: string;
2226
+ message: string;
2227
+ };
2228
+ 'bind:body-error': {
2229
+ resourceId: string;
2230
+ message: string;
2231
+ };
2217
2232
  'frame:entity-type-added': StoredEvent<EventOfType<'frame:entity-type-added'>>;
2218
2233
  'frame:tag-schema-added': StoredEvent<EventOfType<'frame:tag-schema-added'>>;
2219
2234
  'frame:add-entity-type': components['schemas']['FrameAddEntityTypeCommand'];
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@semiont/core",
3
- "version": "0.5.19",
3
+ "version": "0.5.20",
4
4
  "description": "Core types and domain logic for Semiont - Resource, Annotation, and Graph models",
5
5
  "type": "module",
6
6
  "main": "dist/index.js",