@semiont/core 0.5.30 → 0.5.31
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/{chunk-IQGH6UJN.js → chunk-LAKUQM2K.js} +3 -3
- package/dist/{chunk-IQGH6UJN.js.map → chunk-LAKUQM2K.js.map} +1 -1
- package/dist/{chunk-EWOITHBH.js → chunk-W6N56PWO.js} +2 -3
- package/dist/chunk-W6N56PWO.js.map +1 -0
- package/dist/index.d.ts +145 -56
- package/dist/index.js +37 -21
- package/dist/index.js.map +1 -1
- package/dist/openapi.d.ts +6 -3
- package/dist/openapi.js +1690 -1519
- package/dist/openapi.js.map +1 -1
- package/dist/testing/axioms.js +2 -2
- package/dist/testing.js +2 -2
- package/package.json +2 -2
- package/dist/chunk-EWOITHBH.js.map +0 -1
package/dist/openapi.d.ts
CHANGED
|
@@ -15,6 +15,8 @@ declare const AgentOrganization: ValidateFunction<components['schemas']['AgentOr
|
|
|
15
15
|
declare const AgentPerson: ValidateFunction<components['schemas']['AgentPerson']>;
|
|
16
16
|
declare const AgentSoftware: ValidateFunction<components['schemas']['AgentSoftware']>;
|
|
17
17
|
declare const AnchoredText: ValidateFunction<components['schemas']['AnchoredText']>;
|
|
18
|
+
declare const AnchoredTextAbsent: ValidateFunction<components['schemas']['AnchoredTextAbsent']>;
|
|
19
|
+
declare const AnchoredTextAnswer: ValidateFunction<components['schemas']['AnchoredTextAnswer']>;
|
|
18
20
|
declare const Annotation: ValidateFunction<components['schemas']['Annotation']>;
|
|
19
21
|
declare const AnnotationAddedPayload: ValidateFunction<components['schemas']['AnnotationAddedPayload']>;
|
|
20
22
|
declare const AnnotationBody: ValidateFunction<components['schemas']['AnnotationBody']>;
|
|
@@ -36,7 +38,6 @@ declare const BodyOperationReplace: ValidateFunction<components['schemas']['Body
|
|
|
36
38
|
declare const BodyPurpose: ValidateFunction<components['schemas']['BodyPurpose']>;
|
|
37
39
|
declare const BrowseAgentsRequest: ValidateFunction<components['schemas']['BrowseAgentsRequest']>;
|
|
38
40
|
declare const BrowseAgentsResult: ValidateFunction<components['schemas']['BrowseAgentsResult']>;
|
|
39
|
-
declare const BrowseAnchoredTextByChecksumRequest: ValidateFunction<components['schemas']['BrowseAnchoredTextByChecksumRequest']>;
|
|
40
41
|
declare const BrowseAnchoredTextRequest: ValidateFunction<components['schemas']['BrowseAnchoredTextRequest']>;
|
|
41
42
|
declare const BrowseAnchoredTextResult: ValidateFunction<components['schemas']['BrowseAnchoredTextResult']>;
|
|
42
43
|
declare const BrowseAnnotationContextRequest: ValidateFunction<components['schemas']['BrowseAnnotationContextRequest']>;
|
|
@@ -248,6 +249,8 @@ declare const generated_AgentOrganization: typeof AgentOrganization;
|
|
|
248
249
|
declare const generated_AgentPerson: typeof AgentPerson;
|
|
249
250
|
declare const generated_AgentSoftware: typeof AgentSoftware;
|
|
250
251
|
declare const generated_AnchoredText: typeof AnchoredText;
|
|
252
|
+
declare const generated_AnchoredTextAbsent: typeof AnchoredTextAbsent;
|
|
253
|
+
declare const generated_AnchoredTextAnswer: typeof AnchoredTextAnswer;
|
|
251
254
|
declare const generated_Annotation: typeof Annotation;
|
|
252
255
|
declare const generated_AnnotationAddedPayload: typeof AnnotationAddedPayload;
|
|
253
256
|
declare const generated_AnnotationBody: typeof AnnotationBody;
|
|
@@ -269,7 +272,6 @@ declare const generated_BodyOperationReplace: typeof BodyOperationReplace;
|
|
|
269
272
|
declare const generated_BodyPurpose: typeof BodyPurpose;
|
|
270
273
|
declare const generated_BrowseAgentsRequest: typeof BrowseAgentsRequest;
|
|
271
274
|
declare const generated_BrowseAgentsResult: typeof BrowseAgentsResult;
|
|
272
|
-
declare const generated_BrowseAnchoredTextByChecksumRequest: typeof BrowseAnchoredTextByChecksumRequest;
|
|
273
275
|
declare const generated_BrowseAnchoredTextRequest: typeof BrowseAnchoredTextRequest;
|
|
274
276
|
declare const generated_BrowseAnchoredTextResult: typeof BrowseAnchoredTextResult;
|
|
275
277
|
declare const generated_BrowseAnnotationContextRequest: typeof BrowseAnnotationContextRequest;
|
|
@@ -482,6 +484,8 @@ declare namespace generated {
|
|
|
482
484
|
generated_AgentPerson as AgentPerson,
|
|
483
485
|
generated_AgentSoftware as AgentSoftware,
|
|
484
486
|
generated_AnchoredText as AnchoredText,
|
|
487
|
+
generated_AnchoredTextAbsent as AnchoredTextAbsent,
|
|
488
|
+
generated_AnchoredTextAnswer as AnchoredTextAnswer,
|
|
485
489
|
generated_Annotation as Annotation,
|
|
486
490
|
generated_AnnotationAddedPayload as AnnotationAddedPayload,
|
|
487
491
|
generated_AnnotationBody as AnnotationBody,
|
|
@@ -503,7 +507,6 @@ declare namespace generated {
|
|
|
503
507
|
generated_BodyPurpose as BodyPurpose,
|
|
504
508
|
generated_BrowseAgentsRequest as BrowseAgentsRequest,
|
|
505
509
|
generated_BrowseAgentsResult as BrowseAgentsResult,
|
|
506
|
-
generated_BrowseAnchoredTextByChecksumRequest as BrowseAnchoredTextByChecksumRequest,
|
|
507
510
|
generated_BrowseAnchoredTextRequest as BrowseAnchoredTextRequest,
|
|
508
511
|
generated_BrowseAnchoredTextResult as BrowseAnchoredTextResult,
|
|
509
512
|
generated_BrowseAnnotationContextRequest as BrowseAnnotationContextRequest,
|