@electric-ax/agents-server-conformance-tests 0.1.7 → 0.1.8

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/index.d.cts CHANGED
@@ -192,8 +192,6 @@ interface EntityTypeRegistration {
192
192
  name: string;
193
193
  description: string;
194
194
  creation_schema?: Record<string, unknown>;
195
- input_schemas?: Record<string, Record<string, unknown>>;
196
- output_schemas?: Record<string, Record<string, unknown>>;
197
195
  inbox_schemas?: Record<string, Record<string, unknown>>;
198
196
  state_schemas?: Record<string, Record<string, unknown>>;
199
197
  metadata_schema?: Record<string, unknown>;
@@ -342,8 +340,8 @@ declare class ElectricAgentsScenario {
342
340
  deleteType(name: string): this;
343
341
  expectTypeNotExists(name: string): this;
344
342
  amendSchemas(name: string, schemas: {
345
- input_schemas?: Record<string, Record<string, unknown>>;
346
- output_schemas?: Record<string, Record<string, unknown>>;
343
+ inbox_schemas?: Record<string, Record<string, unknown>>;
344
+ state_schemas?: Record<string, Record<string, unknown>>;
347
345
  }): this;
348
346
  listTypes(): this;
349
347
  registerTypeViaServe(registration: EntityTypeRegistration): this;
@@ -400,8 +398,8 @@ type ElectricAgentsAction = `register_type` | `delete_type` | `spawn` | `send` |
400
398
  interface EntityTypeModel {
401
399
  name: string;
402
400
  hasCreationSchema: boolean;
403
- hasInputSchemas: boolean;
404
- hasOutputSchemas: boolean;
401
+ hasInboxSchemas: boolean;
402
+ hasStateSchemas: boolean;
405
403
  }
406
404
  /**
407
405
  * Model of a single entity's state — the "abstract" version
package/dist/index.d.ts CHANGED
@@ -192,8 +192,6 @@ interface EntityTypeRegistration {
192
192
  name: string;
193
193
  description: string;
194
194
  creation_schema?: Record<string, unknown>;
195
- input_schemas?: Record<string, Record<string, unknown>>;
196
- output_schemas?: Record<string, Record<string, unknown>>;
197
195
  inbox_schemas?: Record<string, Record<string, unknown>>;
198
196
  state_schemas?: Record<string, Record<string, unknown>>;
199
197
  metadata_schema?: Record<string, unknown>;
@@ -342,8 +340,8 @@ declare class ElectricAgentsScenario {
342
340
  deleteType(name: string): this;
343
341
  expectTypeNotExists(name: string): this;
344
342
  amendSchemas(name: string, schemas: {
345
- input_schemas?: Record<string, Record<string, unknown>>;
346
- output_schemas?: Record<string, Record<string, unknown>>;
343
+ inbox_schemas?: Record<string, Record<string, unknown>>;
344
+ state_schemas?: Record<string, Record<string, unknown>>;
347
345
  }): this;
348
346
  listTypes(): this;
349
347
  registerTypeViaServe(registration: EntityTypeRegistration): this;
@@ -400,8 +398,8 @@ type ElectricAgentsAction = `register_type` | `delete_type` | `spawn` | `send` |
400
398
  interface EntityTypeModel {
401
399
  name: string;
402
400
  hasCreationSchema: boolean;
403
- hasInputSchemas: boolean;
404
- hasOutputSchemas: boolean;
401
+ hasInboxSchemas: boolean;
402
+ hasStateSchemas: boolean;
405
403
  }
406
404
  /**
407
405
  * Model of a single entity's state — the "abstract" version