@alvera-ai/platform-sdk 0.13.0-next.gf8f28bd → 0.14.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.
package/dist/index.d.mts CHANGED
@@ -540,7 +540,7 @@ type ActionStatusUpdaterResponse = {
540
540
  */
541
541
  datalake_id: string;
542
542
  /**
543
- * JSON Schema the rendered events_template output is validated against on every poll (required for restapi updaters)
543
+ * JSON Schema the rendered events_template output is validated against on every poll (required for restapi updaters). FLOOR: it must describe an array whose items are objects listing "external_id" in "required" — every event has to name the message it reconciles, so the events_template maps the provider's own id (messageId / id / sid) into external_id. Add whatever else your provider guarantees on top; the platform only enforces the floor.
544
544
  */
545
545
  events_output_schema?: {
546
546
  [key: string]: unknown;
@@ -575,7 +575,7 @@ type ActionStatusUpdaterResponse = {
575
575
  */
576
576
  name: string;
577
577
  /**
578
- * JSON Schema the rendered pagination_context_template output is validated against on every poll requires has_next plus any provider cursor keys (required for restapi updaters)
578
+ * JSON Schema the rendered pagination_context_template output is validated against on every poll (required for restapi updaters). FLOOR: it must describe an object listing "has_next" in "required" — that key is what ends the page loop. Add the provider's cursor keys on top; the platform only enforces the floor.
579
579
  */
580
580
  pagination_context_output_schema?: {
581
581
  [key: string]: unknown;