@semiont/core 0.4.22 → 0.5.1
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/README.md +1 -1
- package/dist/index.d.ts +17 -37
- package/dist/index.js +1 -10
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -336,4 +336,4 @@ Apache-2.0
|
|
|
336
336
|
|
|
337
337
|
- [W3C Web Annotation Model](https://www.w3.org/TR/annotation-model/) - Annotation standard
|
|
338
338
|
- [DID:WEB Specification](https://w3c-ccg.github.io/did-method-web/) - Decentralized identifiers
|
|
339
|
-
- [W3C Selectors](../../
|
|
339
|
+
- [W3C Selectors](../../docs/protocol/W3C-SELECTORS.md) - Selector implementation details
|
package/dist/index.d.ts
CHANGED
|
@@ -3356,10 +3356,11 @@ interface components {
|
|
|
3356
3356
|
/** @description Bus command to create a cloned resource from a clone token. */
|
|
3357
3357
|
YieldCloneCreateCommand: {
|
|
3358
3358
|
correlationId: string;
|
|
3359
|
+
/** @description Authenticated user's DID, injected by the /bus/emit gateway. Clients do not set this. */
|
|
3360
|
+
_userId?: string;
|
|
3359
3361
|
token: string;
|
|
3360
3362
|
name: string;
|
|
3361
3363
|
content: string;
|
|
3362
|
-
userId: string;
|
|
3363
3364
|
archiveOriginal?: boolean;
|
|
3364
3365
|
};
|
|
3365
3366
|
/** @description Success response after creating a cloned resource. */
|
|
@@ -5015,7 +5016,7 @@ declare function decodeRepresentation(buffer: Buffer, mediaType: string): string
|
|
|
5015
5016
|
* and streaming characteristics.
|
|
5016
5017
|
*
|
|
5017
5018
|
* The behavioral guarantees every implementation must honor are documented
|
|
5018
|
-
* in `
|
|
5019
|
+
* in `docs/protocol/TRANSPORT-CONTRACT.md`.
|
|
5019
5020
|
*/
|
|
5020
5021
|
|
|
5021
5022
|
type Agent$1 = components['schemas']['Agent'];
|
|
@@ -5650,54 +5651,33 @@ declare function isNullish(value: unknown): value is null | undefined;
|
|
|
5650
5651
|
declare function isDefined<T>(value: T | null | undefined): value is T;
|
|
5651
5652
|
|
|
5652
5653
|
/**
|
|
5653
|
-
* Common error classes
|
|
5654
|
-
|
|
5655
|
-
|
|
5656
|
-
*
|
|
5654
|
+
* Common error classes — the unified Semiont error hierarchy.
|
|
5655
|
+
*
|
|
5656
|
+
* `SemiontError` is the base every other Semiont error class extends:
|
|
5657
|
+
* `APIError` (api-client), `BusRequestError` and `SemiontSessionError` (sdk),
|
|
5658
|
+
* `ValidationError`, `ScriptError`, `NotFoundError`, `UnauthorizedError`,
|
|
5659
|
+
* `ConflictError` (here), and `AWSError` (cli). Subclasses tighten the
|
|
5660
|
+
* `code` field to a literal-union for discriminated handling.
|
|
5657
5661
|
*/
|
|
5658
5662
|
declare class SemiontError extends Error {
|
|
5659
5663
|
code: string;
|
|
5660
|
-
details?: Record<string,
|
|
5661
|
-
constructor(message: string, code: string, details?: Record<string,
|
|
5664
|
+
details?: Record<string, unknown> | undefined;
|
|
5665
|
+
constructor(message: string, code: string, details?: Record<string, unknown> | undefined);
|
|
5662
5666
|
}
|
|
5663
|
-
/**
|
|
5664
|
-
* Error thrown when validation fails
|
|
5665
|
-
*/
|
|
5666
5667
|
declare class ValidationError extends SemiontError {
|
|
5667
|
-
constructor(message: string, details?: Record<string,
|
|
5668
|
+
constructor(message: string, details?: Record<string, unknown>);
|
|
5668
5669
|
}
|
|
5669
|
-
/**
|
|
5670
|
-
* Error thrown by scripts
|
|
5671
|
-
*/
|
|
5672
5670
|
declare class ScriptError extends SemiontError {
|
|
5673
|
-
constructor(message: string, code?: string, details?: Record<string,
|
|
5671
|
+
constructor(message: string, code?: string, details?: Record<string, unknown>);
|
|
5674
5672
|
}
|
|
5675
|
-
/**
|
|
5676
|
-
* Error thrown when a resource is not found
|
|
5677
|
-
*/
|
|
5678
5673
|
declare class NotFoundError extends SemiontError {
|
|
5679
5674
|
constructor(resource: string, id?: string);
|
|
5680
5675
|
}
|
|
5681
|
-
/**
|
|
5682
|
-
* Error thrown when user is not authorized
|
|
5683
|
-
*/
|
|
5684
5676
|
declare class UnauthorizedError extends SemiontError {
|
|
5685
|
-
constructor(message?: string, details?: Record<string,
|
|
5677
|
+
constructor(message?: string, details?: Record<string, unknown>);
|
|
5686
5678
|
}
|
|
5687
|
-
/**
|
|
5688
|
-
* Error thrown when operation would conflict with existing data
|
|
5689
|
-
*/
|
|
5690
5679
|
declare class ConflictError extends SemiontError {
|
|
5691
|
-
constructor(message: string, details?: Record<string,
|
|
5692
|
-
}
|
|
5693
|
-
/**
|
|
5694
|
-
* API Error class for handling HTTP errors
|
|
5695
|
-
* Used by API clients to represent failed HTTP requests
|
|
5696
|
-
*/
|
|
5697
|
-
declare class APIError extends Error {
|
|
5698
|
-
status: number;
|
|
5699
|
-
data: any;
|
|
5700
|
-
constructor(status: number, data: any, message?: string);
|
|
5680
|
+
constructor(message: string, details?: Record<string, unknown>);
|
|
5701
5681
|
}
|
|
5702
5682
|
|
|
5703
5683
|
/**
|
|
@@ -5885,4 +5865,4 @@ declare function getAllPlatformTypes(): PlatformType[];
|
|
|
5885
5865
|
declare const CORE_TYPES_VERSION = "0.1.0";
|
|
5886
5866
|
declare const SDK_VERSION = "0.1.0";
|
|
5887
5867
|
|
|
5888
|
-
export {
|
|
5868
|
+
export { type AccessToken, type Annotation, type AnnotationCategory, type AnnotationId, type AnnotationUri, type AssembledAnnotation, type AuthCode, BRIDGED_CHANNELS, type BaseUrl, type BodyItem, type BodyItemIdentity, type BodyOperation, type BoundingBox, type Brand, type BridgedChannel, type BurstBufferOptions, type BusOp, CHANNEL_SCHEMAS, CORE_TYPES_VERSION, CREATION_METHODS, type CloneToken, ConfigurationError, ConflictError, type ConnectionState, type ContentCache, type ContentFormat, type CreateAnnotationInternal, type CreationMethod, type Email, type EmittableChannel, type EntityType, type EntityTypeStats, type Environment, EnvironmentConfig, type EventBase, EventBus, type EventInput, type EventMap, type EventMetadata, type EventName, type EventOfType, type EventQuery, type EventSignature, type FragmentSelector, type GatheredContext, type GoogleAuthRequest, type GoogleCredential, type GraphConnection, type GraphPath, type HealthCheckResponse, type IContentTransport, type ITransport, JWTTokenSchema, type JobId, LOCALES, type ListUsersResponse, type LocaleInfo, type Logger, type MCPToken, type MatchQuality, type MimeCategory, type Motivation, NotFoundError, PERSISTED_EVENT_TYPES, type PersistedEvent, type PersistedEventType, type PlatformType, type Point, type ProgressCallback, type ProgressEvent, type PutBinaryRequest, RESOURCE_BROADCAST_TYPES, type RefreshToken, type ResourceAnnotationUri, type ResourceAnnotations, type ResourceBroadcastType, type ResourceDescriptor, type ResourceFilter, type ResourceId, type ResourceUri, SDK_VERSION, ScopedEventBus, ScriptError, type SearchQuery, type SelectionData, type Selector, SemiontError, type StatusResponse, type StoredEvent, type StoredEventLike, type SvgSelector, type TextPosition, type TextPositionSelector, type TextQuoteSelector, type ActorInferenceConfig as TomlActorInferenceConfig, type TomlFileReader, type InferenceConfig as TomlInferenceConfig, type WorkerInferenceConfig as TomlWorkerInferenceConfig, UnauthorizedError, type UpdateResourceInput, type UpdateUserRequest, type UpdateUserResponse, type UserDID, type UserId, type UserResponse, type ValidatedAnnotation, ValidationError, type ValidationFailure, type ValidationResult, type ValidationSuccess, accessToken, annotationId, annotationUri, applyBodyOperations, assembleAnnotation, authCode, baseUrl, buildContentCache, burstBuffer, busLog, busLogEnabled, cloneToken, type components, createCircleSvg, createPolygonSvg, createRectangleSvg, createTomlConfigLoader, decodeRepresentation, decodeWithCharset, didToAgent, email, entityType, errField, extractBoundingBox, extractCharset, extractContext, findBestTextMatch, findBodyItem, findTextWithContext, formatLocaleDisplay, generateUuid, getAllLocaleCodes, getAllPlatformTypes, getAnnotationExactText, getAnnotationUriFromEvent, getBodySource, getBodyType, getChecksum, getCommentText, getCreator, getDerivedFrom, getExactText, getExtensionForMimeType, getFragmentSelector, getLanguage, getLocaleEnglishName, getLocaleInfo, getLocaleNativeName, getMimeCategory, getNodeEncoding, getPrimaryMediaType, getPrimaryRepresentation, getPrimarySelector, getResourceEntityTypes, getResourceId, getStorageUri, getSvgSelector, getTargetSelector, getTargetSource, getTextPositionSelector, getTextQuoteSelector, googleCredential, hasTargetSelector, isAnnotationId, isArchived, isArray, isAssessment, isBodyResolved, isBoolean, isComment, isDefined, isDraft, isEventRelatedToAnnotation, isFunction, isHighlight, isImageMimeType, isNull, isNullish, isNumber, isObject, isPdfMimeType, isReference, isResolvedReference, isResourceId, isStoredEvent, isString, isStubReference, isTag, isTextMimeType, isUndefined, isValidEmail, isValidPlatformType, jobId, loadTomlConfig, mcpToken, normalizeCoordinates, normalizeText, type operations, parseEnvironment, parseSvgSelector, type paths, refreshToken, resourceAnnotationUri, resourceId, resourceUri, scaleSvgToNative, searchQuery, serializePerKey, setBusLogTraceIdProvider, userDID, userId, userToAgent, userToDid, validateAndCorrectOffsets, validateData, validateEnvironment, validateSvgMarkup, verifyPosition };
|
package/dist/index.js
CHANGED
|
@@ -1555,15 +1555,6 @@ var ConflictError = class extends SemiontError {
|
|
|
1555
1555
|
this.name = "ConflictError";
|
|
1556
1556
|
}
|
|
1557
1557
|
};
|
|
1558
|
-
var APIError = class extends Error {
|
|
1559
|
-
constructor(status, data, message) {
|
|
1560
|
-
super(message || `API Error: ${status}`);
|
|
1561
|
-
this.status = status;
|
|
1562
|
-
this.data = data;
|
|
1563
|
-
this.name = "APIError";
|
|
1564
|
-
Error.captureStackTrace(this, this.constructor);
|
|
1565
|
-
}
|
|
1566
|
-
};
|
|
1567
1558
|
|
|
1568
1559
|
// src/did-utils.ts
|
|
1569
1560
|
function userToDid(user) {
|
|
@@ -1929,6 +1920,6 @@ function getAllPlatformTypes() {
|
|
|
1929
1920
|
var CORE_TYPES_VERSION = "0.1.0";
|
|
1930
1921
|
var SDK_VERSION = "0.1.0";
|
|
1931
1922
|
|
|
1932
|
-
export {
|
|
1923
|
+
export { BRIDGED_CHANNELS, CHANNEL_SCHEMAS, CORE_TYPES_VERSION, CREATION_METHODS, ConfigurationError, ConflictError, EventBus, JWTTokenSchema, LOCALES, NotFoundError, PERSISTED_EVENT_TYPES, RESOURCE_BROADCAST_TYPES, SDK_VERSION, ScopedEventBus, ScriptError, SemiontError, UnauthorizedError, ValidationError, accessToken, annotationId, annotationUri, applyBodyOperations, assembleAnnotation, authCode, baseUrl, buildContentCache, burstBuffer, busLog, busLogEnabled, cloneToken, createCircleSvg, createPolygonSvg, createRectangleSvg, createTomlConfigLoader, decodeRepresentation, decodeWithCharset, didToAgent, email, entityType, errField, extractBoundingBox, extractCharset, extractContext, findBestTextMatch, findBodyItem, findTextWithContext, formatLocaleDisplay, generateUuid, getAllLocaleCodes, getAllPlatformTypes, getAnnotationExactText, getAnnotationUriFromEvent, getBodySource, getBodyType, getChecksum, getCommentText, getCreator, getDerivedFrom, getExactText, getExtensionForMimeType, getFragmentSelector, getLanguage, getLocaleEnglishName, getLocaleInfo, getLocaleNativeName, getMimeCategory, getNodeEncoding, getPrimaryMediaType, getPrimaryRepresentation, getPrimarySelector, getResourceEntityTypes, getResourceId, getStorageUri, getSvgSelector, getTargetSelector, getTargetSource, getTextPositionSelector, getTextQuoteSelector, googleCredential, hasTargetSelector, isAnnotationId, isArchived, isArray, isAssessment, isBodyResolved, isBoolean, isComment, isDefined, isDraft, isEventRelatedToAnnotation, isFunction, isHighlight, isImageMimeType, isNull, isNullish, isNumber, isObject, isPdfMimeType, isReference, isResolvedReference, isResourceId, isStoredEvent, isString, isStubReference, isTag, isTextMimeType, isUndefined, isValidEmail, isValidPlatformType, jobId, loadTomlConfig, mcpToken, normalizeCoordinates, normalizeText, parseEnvironment, parseSvgSelector, refreshToken, resourceAnnotationUri, resourceId, resourceUri, scaleSvgToNative, searchQuery, serializePerKey, setBusLogTraceIdProvider, userDID, userId, userToAgent, userToDid, validateAndCorrectOffsets, validateData, validateEnvironment, validateSvgMarkup, verifyPosition };
|
|
1933
1924
|
//# sourceMappingURL=index.js.map
|
|
1934
1925
|
//# sourceMappingURL=index.js.map
|