@platforma-open/milaboratories.sequence-embeddings 1.3.0 → 1.4.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/dist/index.d.ts CHANGED
@@ -1,4 +1,4 @@
1
- //#region ../node_modules/.pnpm/@milaboratories+pl-model-common@1.47.1/node_modules/@milaboratories/pl-model-common/dist/author_marker.d.ts
1
+ //#region ../node_modules/.pnpm/@milaboratories+pl-model-common@1.47.3/node_modules/@milaboratories/pl-model-common/dist/author_marker.d.ts
2
2
  //#region src/author_marker.d.ts
3
3
  /** Structure to help resolve conflicts if multiple participants writes to
4
4
  * the same state */
@@ -1100,7 +1100,7 @@ declare const ErrorLike: ZodUnion<[ZodType<StandardErrorLike, ZodTypeDef, Standa
1100
1100
  type ErrorLike = TypeOf<typeof ErrorLike>;
1101
1101
  /** Converts everything into ErrorLike. */
1102
1102
  //#endregion
1103
- //#region ../node_modules/.pnpm/@milaboratories+pl-model-common@1.47.1/node_modules/@milaboratories/pl-model-common/dist/common_types.d.ts
1103
+ //#region ../node_modules/.pnpm/@milaboratories+pl-model-common@1.47.3/node_modules/@milaboratories/pl-model-common/dist/common_types.d.ts
1104
1104
  type OutputWithStatus<T> = {
1105
1105
  ok: true;
1106
1106
  value: T;
@@ -1113,7 +1113,7 @@ type OutputWithStatus<T> = {
1113
1113
  /** Base type for block outputs */
1114
1114
  type BlockOutputsBase = Record<string, OutputWithStatus<unknown>>;
1115
1115
  //#endregion
1116
- //#region ../node_modules/.pnpm/@milaboratories+pl-model-common@1.47.1/node_modules/@milaboratories/pl-model-common/dist/navigation.d.ts
1116
+ //#region ../node_modules/.pnpm/@milaboratories+pl-model-common@1.47.3/node_modules/@milaboratories/pl-model-common/dist/navigation.d.ts
1117
1117
  /**
1118
1118
  * Part of the block state, representing current navigation information
1119
1119
  * (i.e. currently selected section)
@@ -1122,7 +1122,7 @@ type NavigationState<Href extends `/${string}` = `/${string}`> = {
1122
1122
  readonly href: Href;
1123
1123
  };
1124
1124
  //#endregion
1125
- //#region ../node_modules/.pnpm/@milaboratories+pl-model-common@1.47.1/node_modules/@milaboratories/pl-model-common/dist/json.d.ts
1125
+ //#region ../node_modules/.pnpm/@milaboratories+pl-model-common@1.47.3/node_modules/@milaboratories/pl-model-common/dist/json.d.ts
1126
1126
  //#region src/json.d.ts
1127
1127
  type JsonPrimitive = string | number | boolean | null;
1128
1128
  type JsonValue = JsonPrimitive | JsonValue[] | {
@@ -1137,7 +1137,7 @@ type CanonicalizedJson<T = unknown> = JsonCompatible<T> extends never ? never :
1137
1137
  __json_canonicalized: T;
1138
1138
  };
1139
1139
  //#endregion
1140
- //#region ../node_modules/.pnpm/@milaboratories+pl-model-common@1.47.1/node_modules/@milaboratories/pl-model-common/dist/block_state.d.ts
1140
+ //#region ../node_modules/.pnpm/@milaboratories+pl-model-common@1.47.3/node_modules/@milaboratories/pl-model-common/dist/block_state.d.ts
1141
1141
  //#region src/block_state.d.ts
1142
1142
  /**
1143
1143
  * @template Args sets type of block arguments passed to the workflow
@@ -1163,12 +1163,12 @@ type BlockStateV3<_Data = unknown, Outputs extends BlockOutputsBase = BlockOutpu
1163
1163
  readonly author: AuthorMarker | undefined;
1164
1164
  }; //#endregion
1165
1165
  //#endregion
1166
- //#region ../node_modules/.pnpm/@milaboratories+pl-model-common@1.47.1/node_modules/@milaboratories/pl-model-common/dist/branding.d.ts
1166
+ //#region ../node_modules/.pnpm/@milaboratories+pl-model-common@1.47.3/node_modules/@milaboratories/pl-model-common/dist/branding.d.ts
1167
1167
  //#region src/branding.d.ts
1168
1168
  type Brand<B, K extends string = "__pl_model_brand__"> = { [key in K]: B };
1169
1169
  type Branded$1<T, B, K extends string = "__pl_model_brand__"> = T & Brand<B, K>; //#endregion
1170
1170
  //#endregion
1171
- //#region ../node_modules/.pnpm/@milaboratories+pl-model-common@1.47.1/node_modules/@milaboratories/pl-model-common/dist/dialog/index.d.ts
1171
+ //#region ../node_modules/.pnpm/@milaboratories+pl-model-common@1.47.3/node_modules/@milaboratories/pl-model-common/dist/dialog/index.d.ts
1172
1172
  //#region src/dialog/index.d.ts
1173
1173
  /**
1174
1174
  * File filter passed to the native save dialog. Matches Electron's
@@ -1201,7 +1201,7 @@ interface DialogService {
1201
1201
  showSaveDialog(options: ShowSaveDialogOptions): Promise<ShowSaveDialogResult>;
1202
1202
  } //#endregion
1203
1203
  //#endregion
1204
- //#region ../node_modules/.pnpm/@milaboratories+pl-model-common@1.47.1/node_modules/@milaboratories/pl-model-common/dist/pool_entry.d.ts
1204
+ //#region ../node_modules/.pnpm/@milaboratories+pl-model-common@1.47.3/node_modules/@milaboratories/pl-model-common/dist/pool_entry.d.ts
1205
1205
  //#region src/pool_entry.d.ts
1206
1206
  interface PoolEntry<K extends string = string, R extends {} = {}> extends Disposable {
1207
1207
  /** Resource key, calculated using provided `calculateParamsKey` function */
@@ -1220,7 +1220,7 @@ interface PoolEntry<K extends string = string, R extends {} = {}> extends Dispos
1220
1220
  * unless `keep()` is called to transfer ownership to the caller.
1221
1221
  */
1222
1222
  //#endregion
1223
- //#region ../node_modules/.pnpm/@milaboratories+pl-model-common@1.47.1/node_modules/@milaboratories/pl-model-common/dist/drivers/pframe/table_common.d.ts
1223
+ //#region ../node_modules/.pnpm/@milaboratories+pl-model-common@1.47.3/node_modules/@milaboratories/pl-model-common/dist/drivers/pframe/table_common.d.ts
1224
1224
  //#region src/drivers/pframe/table_common.d.ts
1225
1225
  type PTableColumnSpecAxis = {
1226
1226
  type: "axis";
@@ -1251,7 +1251,7 @@ type PTableColumnIdColumn = {
1251
1251
  /** Unified PTable column identifier */
1252
1252
  type PTableColumnId = PTableColumnIdAxis | PTableColumnIdColumn;
1253
1253
  //#endregion
1254
- //#region ../node_modules/.pnpm/@milaboratories+pl-model-common@1.47.1/node_modules/@milaboratories/pl-model-common/dist/drivers/pframe/data_types.d.ts
1254
+ //#region ../node_modules/.pnpm/@milaboratories+pl-model-common@1.47.3/node_modules/@milaboratories/pl-model-common/dist/drivers/pframe/data_types.d.ts
1255
1255
  //#region src/drivers/pframe/data_types.d.ts
1256
1256
  type PVectorDataInt = Int32Array;
1257
1257
  type PVectorDataLong = BigInt64Array;
@@ -1291,6 +1291,18 @@ interface WritePTableToFsOptions {
1291
1291
  path: string;
1292
1292
  format: PTableDownloadFormat;
1293
1293
  columnIndices: number[];
1294
+ /**
1295
+ * Optional header names aligned 1:1 with {@link columnIndices}. When provided,
1296
+ * each is written verbatim — letting callers supply disambiguated labels the
1297
+ * spec's intrinsic `pl7.app/label` may not carry. When omitted (or an
1298
+ * individual entry is empty), the header falls back to the column's
1299
+ * spec-derived label.
1300
+ *
1301
+ * Additive on purpose: the UI (ui-vue) and the desktop-app runtime version
1302
+ * independently, so a newer UI must not send a shape an older runtime cannot
1303
+ * read. Older runtimes ignore this field and use {@link columnIndices} alone.
1304
+ */
1305
+ headerNames?: string[];
1294
1306
  range?: TableRange;
1295
1307
  chunkSize?: number;
1296
1308
  includeHeader?: boolean;
@@ -1320,9 +1332,21 @@ interface ExportPTableOptions {
1320
1332
  /** Unified indices of the columns to export, in output order
1321
1333
  * (axes first, then data columns). */
1322
1334
  columnIndices: number[];
1335
+ /**
1336
+ * Optional header names aligned 1:1 with {@link columnIndices}. When provided,
1337
+ * each is written verbatim — letting callers supply disambiguated labels the
1338
+ * spec's intrinsic `pl7.app/label` may not carry. When omitted (or an
1339
+ * individual entry is empty), the header falls back to the column's
1340
+ * spec-derived label.
1341
+ *
1342
+ * Additive on purpose: the UI (ui-vue) and the desktop-app runtime version
1343
+ * independently, so a newer UI must not send a shape an older runtime cannot
1344
+ * read. Older runtimes ignore this field and use {@link columnIndices} alone.
1345
+ */
1346
+ headerNames?: string[];
1323
1347
  } //#endregion
1324
1348
  //#endregion
1325
- //#region ../node_modules/.pnpm/@milaboratories+pl-model-common@1.47.1/node_modules/@milaboratories/pl-model-common/dist/drivers/pframe/data_info.d.ts
1349
+ //#region ../node_modules/.pnpm/@milaboratories+pl-model-common@1.47.3/node_modules/@milaboratories/pl-model-common/dist/drivers/pframe/data_info.d.ts
1326
1350
  //#region src/drivers/pframe/data_info.d.ts
1327
1351
  /**
1328
1352
  * Represents a JavaScript representation of a value in a PColumn. Can be null, a number, or a string.
@@ -1415,7 +1439,7 @@ type PColumnValues = PColumnValuesEntry[];
1415
1439
  * Entry-based representation of JsonDataInfo
1416
1440
  */
1417
1441
  //#endregion
1418
- //#region ../node_modules/.pnpm/@milaboratories+helpers@1.14.4/node_modules/@milaboratories/helpers/dist/types/brand.d.ts
1442
+ //#region ../node_modules/.pnpm/@milaboratories+helpers@1.14.5/node_modules/@milaboratories/helpers/dist/types/brand.d.ts
1419
1443
  //#region src/types/brand.d.ts
1420
1444
  /**
1421
1445
  * Phantom-property brand. The key is a plain string literal rather than a
@@ -1437,7 +1461,7 @@ type Branded<T, B> = T & {
1437
1461
  readonly __brand: B;
1438
1462
  };
1439
1463
  //#endregion
1440
- //#region ../node_modules/.pnpm/@milaboratories+pl-model-common@1.47.1/node_modules/@milaboratories/pl-model-common/dist/drivers/pframe/spec/overridden.d.ts
1464
+ //#region ../node_modules/.pnpm/@milaboratories+pl-model-common@1.47.3/node_modules/@milaboratories/pl-model-common/dist/drivers/pframe/spec/overridden.d.ts
1441
1465
  //#region src/drivers/pframe/spec/overridden.d.ts
1442
1466
  type SpecOverrides = Pick<PColumnSpec, "domain" | "contextDomain" | "annotations"> & {
1443
1467
  axesSpec?: AxisPatches;
@@ -1454,7 +1478,7 @@ interface ColumnOverriddenKey {
1454
1478
  }
1455
1479
  type ColumnOverriddenId = Branded<CanonicalizedJson<ColumnOverriddenKey>, "ColumnOverriddenId">;
1456
1480
  //#endregion
1457
- //#region ../node_modules/.pnpm/@milaboratories+pl-model-common@1.47.1/node_modules/@milaboratories/pl-model-common/dist/drivers/pframe/query/query_common.d.ts
1481
+ //#region ../node_modules/.pnpm/@milaboratories+pl-model-common@1.47.3/node_modules/@milaboratories/pl-model-common/dist/drivers/pframe/query/query_common.d.ts
1458
1482
  //#region src/drivers/pframe/query/query_common.d.ts
1459
1483
  /**
1460
1484
  * Structural type information for a single column: the axis value types (in
@@ -2501,7 +2525,7 @@ interface QuerySpecOverride<Q, SO> {
2501
2525
  override: SO;
2502
2526
  } //#endregion
2503
2527
  //#endregion
2504
- //#region ../node_modules/.pnpm/@milaboratories+pl-model-common@1.47.1/node_modules/@milaboratories/pl-model-common/dist/drivers/pframe/query/query_data.d.ts
2528
+ //#region ../node_modules/.pnpm/@milaboratories+pl-model-common@1.47.3/node_modules/@milaboratories/pl-model-common/dist/drivers/pframe/query/query_data.d.ts
2505
2529
  //#region src/drivers/pframe/query/query_data.d.ts
2506
2530
  /**
2507
2531
  * Column identifier with type specification.
@@ -2581,7 +2605,7 @@ type DataExprColumnRef = ExprColumnRef<number>;
2581
2605
  type DataQueryExpression = DataExprColumnRef | DataExprAxisRef | ExprConstant | ExprNumericBinary<DataQueryExpression> | ExprNumericComparison<DataQueryExpression> | ExprNumericUnary<DataQueryExpression> | ExprStringEquals<DataQueryExpression> | ExprStringContains<DataQueryExpression> | ExprStringRegex<DataQueryExpression> | ExprStringContainsFuzzy<DataQueryExpression> | ExprIsNull<DataQueryExpression> | ExprFillNull<DataQueryExpression> | ExprLogicalUnary<DataQueryExpression> | ExprLogicalVariadic<DataQueryExpression> | ExprIsIn<DataQueryExpression, string> | ExprIsIn<DataQueryExpression, number> | ExprCast<DataQueryExpression> | ExprConditional<DataQueryExpression> | ExprRanking<DataQueryExpression, number, number>;
2582
2606
  type DataQueryBooleanExpression = InferBooleanExpressionUnion<DataQueryExpression>; //#endregion
2583
2607
  //#endregion
2584
- //#region ../node_modules/.pnpm/@milaboratories+pl-model-common@1.47.1/node_modules/@milaboratories/pl-model-common/dist/drivers/pframe/spec_driver.d.ts
2608
+ //#region ../node_modules/.pnpm/@milaboratories+pl-model-common@1.47.3/node_modules/@milaboratories/pl-model-common/dist/drivers/pframe/spec_driver.d.ts
2585
2609
  //#region src/drivers/pframe/spec_driver.d.ts
2586
2610
  /** Matches a string value either exactly or by regex pattern */
2587
2611
  type StringMatcher = {
@@ -2796,7 +2820,7 @@ interface PFrameSpecDriver {
2796
2820
  }): DataQueryBooleanExpression[];
2797
2821
  } //#endregion
2798
2822
  //#endregion
2799
- //#region ../node_modules/.pnpm/@milaboratories+pl-model-common@1.47.1/node_modules/@milaboratories/pl-model-common/dist/drivers/pframe/spec/selectors.d.ts
2823
+ //#region ../node_modules/.pnpm/@milaboratories+pl-model-common@1.47.3/node_modules/@milaboratories/pl-model-common/dist/drivers/pframe/spec/selectors.d.ts
2800
2824
  /** Single axis selector */
2801
2825
  interface SingleAxisSelector {
2802
2826
  /** Axis name (required) */
@@ -2822,7 +2846,7 @@ interface AxisQualification {
2822
2846
  * Format: [anchorId, axisIndex]
2823
2847
  */
2824
2848
  //#endregion
2825
- //#region ../node_modules/.pnpm/@milaboratories+pl-model-common@1.47.1/node_modules/@milaboratories/pl-model-common/dist/drivers/pframe/query/query_spec.d.ts
2849
+ //#region ../node_modules/.pnpm/@milaboratories+pl-model-common@1.47.3/node_modules/@milaboratories/pl-model-common/dist/drivers/pframe/query/query_spec.d.ts
2826
2850
  //#region src/drivers/pframe/query/query_spec.d.ts
2827
2851
  /**
2828
2852
  * Join entry for spec-layer queries — the base join entry extended with
@@ -2891,7 +2915,7 @@ type SpecExprColumnRef = ExprColumnRef<ColumnUniversalId>;
2891
2915
  type SpecQueryExpression = SpecExprColumnRef | SpecExprAxisRef | ExprConstant | ExprNumericBinary<SpecQueryExpression> | ExprNumericComparison<SpecQueryExpression> | ExprNumericUnary<SpecQueryExpression> | ExprStringEquals<SpecQueryExpression> | ExprStringContains<SpecQueryExpression> | ExprStringRegex<SpecQueryExpression> | ExprStringContainsFuzzy<SpecQueryExpression> | ExprIsNull<SpecQueryExpression> | ExprFillNull<SpecQueryExpression> | ExprLogicalUnary<SpecQueryExpression> | ExprLogicalVariadic<SpecQueryExpression> | ExprIsIn<SpecQueryExpression, string> | ExprIsIn<SpecQueryExpression, number> | ExprCast<SpecQueryExpression> | ExprConditional<SpecQueryExpression> | ExprRanking<SpecQueryExpression, SingleAxisSelector, PObjectId>;
2892
2916
  type SpecQueryBooleanExpression = InferBooleanExpressionUnion<SpecQueryExpression>; //#endregion
2893
2917
  //#endregion
2894
- //#region ../node_modules/.pnpm/@milaboratories+pl-model-common@1.47.1/node_modules/@milaboratories/pl-model-common/dist/drivers/pframe/table_calculate.d.ts
2918
+ //#region ../node_modules/.pnpm/@milaboratories+pl-model-common@1.47.3/node_modules/@milaboratories/pl-model-common/dist/drivers/pframe/table_calculate.d.ts
2895
2919
  //#region src/drivers/pframe/table_calculate.d.ts
2896
2920
  /** Defines a terminal column node in the join request tree */
2897
2921
  interface ColumnJoinEntry<Col> {
@@ -3174,7 +3198,7 @@ type CalculateTableDataRequest<Col> = {
3174
3198
  /** Response for {@link CalculateTableDataRequest} */
3175
3199
  type CalculateTableDataResponse = FullPTableColumnData[];
3176
3200
  //#endregion
3177
- //#region ../node_modules/.pnpm/@milaboratories+pl-model-common@1.47.1/node_modules/@milaboratories/pl-model-common/dist/ref.d.ts
3201
+ //#region ../node_modules/.pnpm/@milaboratories+pl-model-common@1.47.3/node_modules/@milaboratories/pl-model-common/dist/ref.d.ts
3178
3202
  //#region src/ref.d.ts
3179
3203
  declare const PlRef: ZodReadonly<ZodObject<{
3180
3204
  __isRef: ZodLiteral<true>;
@@ -3195,7 +3219,7 @@ declare const PlRef: ZodReadonly<ZodObject<{
3195
3219
  type PlRef = TypeOf<typeof PlRef>;
3196
3220
  /** @deprecated use {@link PlRef} */
3197
3221
  //#endregion
3198
- //#region ../node_modules/.pnpm/@milaboratories+pl-model-common@1.47.1/node_modules/@milaboratories/pl-model-common/dist/pool/spec.d.ts
3222
+ //#region ../node_modules/.pnpm/@milaboratories+pl-model-common@1.47.3/node_modules/@milaboratories/pl-model-common/dist/pool/spec.d.ts
3199
3223
  //#region src/pool/spec.d.ts
3200
3224
  /** Any object exported into the result pool by the block always have spec attached to it */
3201
3225
  type PObjectSpec = {
@@ -3230,7 +3254,7 @@ interface PObject<Data> {
3230
3254
  readonly data: Data;
3231
3255
  }
3232
3256
  //#endregion
3233
- //#region ../node_modules/.pnpm/@milaboratories+pl-model-common@1.47.1/node_modules/@milaboratories/pl-model-common/dist/drivers/pframe/spec/spec.d.ts
3257
+ //#region ../node_modules/.pnpm/@milaboratories+pl-model-common@1.47.3/node_modules/@milaboratories/pl-model-common/dist/drivers/pframe/spec/spec.d.ts
3234
3258
  //#region src/drivers/pframe/spec/spec.d.ts
3235
3259
  declare const ValueType: {
3236
3260
  readonly Int: "Int";
@@ -3377,7 +3401,7 @@ interface AxisId {
3377
3401
  type AxesId = AxisId[];
3378
3402
  /** Extracts axis ids from axis spec */
3379
3403
  //#endregion
3380
- //#region ../node_modules/.pnpm/@milaboratories+pl-model-common@1.47.1/node_modules/@milaboratories/pl-model-common/dist/drivers/pframe/spec/filtered_column.d.ts
3404
+ //#region ../node_modules/.pnpm/@milaboratories+pl-model-common@1.47.3/node_modules/@milaboratories/pl-model-common/dist/drivers/pframe/spec/filtered_column.d.ts
3381
3405
  //#region src/drivers/pframe/spec/filtered_column.d.ts
3382
3406
  /** Value of an axis filter */
3383
3407
  type AxisFilterValue = number | string;
@@ -3396,7 +3420,7 @@ interface ColumnFilteredKey {
3396
3420
  }
3397
3421
  type ColumnFilteredId = Branded<CanonicalizedJson<ColumnFilteredKey>, "ColumnFilteredId">;
3398
3422
  //#endregion
3399
- //#region ../node_modules/.pnpm/@milaboratories+pl-model-common@1.47.1/node_modules/@milaboratories/pl-model-common/dist/drivers/pframe/spec/ids.d.ts
3423
+ //#region ../node_modules/.pnpm/@milaboratories+pl-model-common@1.47.3/node_modules/@milaboratories/pl-model-common/dist/drivers/pframe/spec/ids.d.ts
3400
3424
  //#region src/drivers/pframe/spec/ids.d.ts
3401
3425
  /**
3402
3426
  * Per-axis patches keyed by positional index in the base spec's `axesSpec`.
@@ -3424,7 +3448,7 @@ type ColumnUniversalId = LocalPObjectId | GlobalPObjectId | ColumnFilteredId | C
3424
3448
  * (anchored / old filtered object form).
3425
3449
  */
3426
3450
  //#endregion
3427
- //#region ../node_modules/.pnpm/@milaboratories+pl-model-common@1.47.1/node_modules/@milaboratories/pl-model-common/dist/drivers/pframe/spec/discovered_column.d.ts
3451
+ //#region ../node_modules/.pnpm/@milaboratories+pl-model-common@1.47.3/node_modules/@milaboratories/pl-model-common/dist/drivers/pframe/spec/discovered_column.d.ts
3428
3452
  //#region src/drivers/pframe/spec/discovered_column.d.ts
3429
3453
  interface ColumnDiscoveredKey {
3430
3454
  __isDiscovered: true;
@@ -3439,7 +3463,7 @@ type PathItem = {
3439
3463
  column: ColumnUniversalId;
3440
3464
  };
3441
3465
  //#endregion
3442
- //#region ../node_modules/.pnpm/@milaboratories+pl-model-common@1.47.1/node_modules/@milaboratories/pl-model-common/dist/drivers/interfaces.d.ts
3466
+ //#region ../node_modules/.pnpm/@milaboratories+pl-model-common@1.47.3/node_modules/@milaboratories/pl-model-common/dist/drivers/interfaces.d.ts
3443
3467
  //#region src/drivers/interfaces.d.ts
3444
3468
  /**
3445
3469
  * Intended to match web.Blob, node.Blob, node-fetch.Blob, etc.
@@ -3464,7 +3488,7 @@ interface FileLike extends BlobLike {
3464
3488
  readonly name: string;
3465
3489
  } //#endregion
3466
3490
  //#endregion
3467
- //#region ../node_modules/.pnpm/@milaboratories+pl-model-common@1.47.1/node_modules/@milaboratories/pl-model-common/dist/drivers/blob.d.ts
3491
+ //#region ../node_modules/.pnpm/@milaboratories+pl-model-common@1.47.3/node_modules/@milaboratories/pl-model-common/dist/drivers/blob.d.ts
3468
3492
  //#region src/drivers/blob.d.ts
3469
3493
  /** Handle of locally downloaded blob. This handle is issued only after the
3470
3494
  * blob's content is downloaded locally, and ready for quick access. */
@@ -3499,7 +3523,7 @@ interface BlobDriver {
3499
3523
  * Operational metrics of the blob download driver.
3500
3524
  */
3501
3525
  //#endregion
3502
- //#region ../node_modules/.pnpm/@milaboratories+pl-model-common@1.47.1/node_modules/@milaboratories/pl-model-common/dist/drivers/log.d.ts
3526
+ //#region ../node_modules/.pnpm/@milaboratories+pl-model-common@1.47.3/node_modules/@milaboratories/pl-model-common/dist/drivers/log.d.ts
3503
3527
  //#region src/drivers/log.d.ts
3504
3528
  /** Prefix constants — single source of truth for handle format. */
3505
3529
  declare const LIVE_LOG_PREFIX = "log+live://log/";
@@ -3566,7 +3590,7 @@ type StreamingApiResponseHandleOutdated = {
3566
3590
  shouldUpdateHandle: true;
3567
3591
  };
3568
3592
  //#endregion
3569
- //#region ../node_modules/.pnpm/@milaboratories+pl-model-common@1.47.1/node_modules/@milaboratories/pl-model-common/dist/drivers/pframe/column_filter.d.ts
3593
+ //#region ../node_modules/.pnpm/@milaboratories+pl-model-common@1.47.3/node_modules/@milaboratories/pl-model-common/dist/drivers/pframe/column_filter.d.ts
3570
3594
  //#region src/drivers/pframe/column_filter.d.ts
3571
3595
  /** Allows to search multiple columns in different contexts. */
3572
3596
  interface ColumnFilter {
@@ -3585,7 +3609,7 @@ interface ColumnFilter {
3585
3609
  readonly annotationPattern?: Record<string, string>;
3586
3610
  } //#endregion
3587
3611
  //#endregion
3588
- //#region ../node_modules/.pnpm/@milaboratories+pl-model-common@1.47.1/node_modules/@milaboratories/pl-model-common/dist/drivers/pframe/find_columns.d.ts
3612
+ //#region ../node_modules/.pnpm/@milaboratories+pl-model-common@1.47.3/node_modules/@milaboratories/pl-model-common/dist/drivers/pframe/find_columns.d.ts
3589
3613
  //#region src/drivers/pframe/find_columns.d.ts
3590
3614
  /**
3591
3615
  * Request to search among existing columns in the PFrame. Two filtering
@@ -3612,7 +3636,7 @@ interface FindColumnsResponse {
3612
3636
  readonly hits: PColumnIdAndSpec[];
3613
3637
  } //#endregion
3614
3638
  //#endregion
3615
- //#region ../node_modules/.pnpm/@milaboratories+pl-model-common@1.47.1/node_modules/@milaboratories/pl-model-common/dist/drivers/pframe/unique_values.d.ts
3639
+ //#region ../node_modules/.pnpm/@milaboratories+pl-model-common@1.47.3/node_modules/@milaboratories/pl-model-common/dist/drivers/pframe/unique_values.d.ts
3616
3640
  //#region src/drivers/pframe/unique_values.d.ts
3617
3641
  /** Calculate set of unique values for a specific axis for the filtered set of records */
3618
3642
  interface UniqueValuesRequest {
@@ -3632,11 +3656,11 @@ interface UniqueValuesResponse {
3632
3656
  readonly overflow: boolean;
3633
3657
  } //#endregion
3634
3658
  //#endregion
3635
- //#region ../node_modules/.pnpm/@milaboratories+pl-model-common@1.47.1/node_modules/@milaboratories/pl-model-common/dist/drivers/pframe/pframe.d.ts
3659
+ //#region ../node_modules/.pnpm/@milaboratories+pl-model-common@1.47.3/node_modules/@milaboratories/pl-model-common/dist/drivers/pframe/pframe.d.ts
3636
3660
  /** Information required to instantiate a PFrame. */
3637
3661
  type PFrameDef<Col> = Col[]; //#endregion
3638
3662
  //#endregion
3639
- //#region ../node_modules/.pnpm/@milaboratories+pl-model-common@1.47.1/node_modules/@milaboratories/pl-model-common/dist/drivers/pframe/driver.d.ts
3663
+ //#region ../node_modules/.pnpm/@milaboratories+pl-model-common@1.47.3/node_modules/@milaboratories/pl-model-common/dist/drivers/pframe/driver.d.ts
3640
3664
  //#region src/drivers/pframe/driver.d.ts
3641
3665
  /** PFrame handle */
3642
3666
  type PFrameHandle = Branded$1<string, "PFrame">;
@@ -3704,7 +3728,7 @@ interface PFrameDriver {
3704
3728
  exportPTable(handle: PTableHandle, options: ExportPTableOptions): Promise<void>;
3705
3729
  } //#endregion
3706
3730
  //#endregion
3707
- //#region ../node_modules/.pnpm/@milaboratories+pl-model-common@1.47.1/node_modules/@milaboratories/pl-model-common/dist/drivers/ls.d.ts
3731
+ //#region ../node_modules/.pnpm/@milaboratories+pl-model-common@1.47.3/node_modules/@milaboratories/pl-model-common/dist/drivers/ls.d.ts
3708
3732
  //#region src/drivers/ls.d.ts
3709
3733
  type ImportFileHandleUpload = `upload://upload/${string}`;
3710
3734
  type ImportFileHandleIndex = `index://index/${string}`;
@@ -3779,7 +3803,7 @@ interface LsDriver {
3779
3803
  }
3780
3804
  /** Gets a file path from an import handle. */
3781
3805
  //#endregion
3782
- //#region ../node_modules/.pnpm/@milaboratories+pl-model-common@1.47.1/node_modules/@milaboratories/pl-model-common/dist/columns/column_selector.d.ts
3806
+ //#region ../node_modules/.pnpm/@milaboratories+pl-model-common@1.47.3/node_modules/@milaboratories/pl-model-common/dist/columns/column_selector.d.ts
3783
3807
  //#region src/columns/column_selector.d.ts
3784
3808
  /** Relaxed string matcher input: plain string, single matcher, or array of mixed. */
3785
3809
  type RelaxedStringMatchers = string | StringMatcher | (string | StringMatcher)[];
@@ -3806,7 +3830,7 @@ interface RelaxedColumnSelector {
3806
3830
  /** One or many relaxed column selectors; normalizes to MultiColumnSelector[]. */
3807
3831
  type ColumnSelector = RelaxedColumnSelector | RelaxedColumnSelector[];
3808
3832
  //#endregion
3809
- //#region ../node_modules/.pnpm/@milaboratories+pl-model-common@1.47.1/node_modules/@milaboratories/pl-model-common/dist/drivers/columns/discover_columns_options.d.ts
3833
+ //#region ../node_modules/.pnpm/@milaboratories+pl-model-common@1.47.3/node_modules/@milaboratories/pl-model-common/dist/drivers/columns/discover_columns_options.d.ts
3810
3834
  //#region src/drivers/columns/discover_columns_options.d.ts
3811
3835
  /**
3812
3836
  * Axis matching behaviour applied to `discover` requests.
@@ -3856,7 +3880,7 @@ type ColumnsDiscoverOptions = DiscoverColumnsOptions;
3856
3880
  type ColumnsFilterOptions = Omit<DiscoverColumnsOptions, "mode" | "maxHops">;
3857
3881
  /** Translate a {@link MatchingMode} into the boolean-flag form the spec driver consumes. */
3858
3882
  //#endregion
3859
- //#region ../node_modules/.pnpm/@milaboratories+pl-model-common@1.47.1/node_modules/@milaboratories/pl-model-common/dist/columns/types.d.ts
3883
+ //#region ../node_modules/.pnpm/@milaboratories+pl-model-common@1.47.3/node_modules/@milaboratories/pl-model-common/dist/columns/types.d.ts
3860
3884
  //#region src/columns/types.d.ts
3861
3885
  /**
3862
3886
  * Opaque sandbox/host accessor handle.
@@ -3944,7 +3968,7 @@ interface AccessorLike<Self extends AccessorLike<Self>> {
3944
3968
  * the sandbox `TreeNodeAccessor` and the host `PlTreeNodeAccessor`.
3945
3969
  */
3946
3970
  //#endregion
3947
- //#region ../node_modules/.pnpm/@milaboratories+pl-model-common@1.47.1/node_modules/@milaboratories/pl-model-common/dist/drivers/columns/columns_collection_driver.d.ts
3971
+ //#region ../node_modules/.pnpm/@milaboratories+pl-model-common@1.47.3/node_modules/@milaboratories/pl-model-common/dist/drivers/columns/columns_collection_driver.d.ts
3948
3972
  //#region src/drivers/columns/columns_collection_driver.d.ts
3949
3973
  /**
3950
3974
  * Opaque host-owned handle for a `ColumnsCollection` instance. Issued by
@@ -4058,7 +4082,7 @@ interface ColumnsCollectionDriver {
4058
4082
  filter(handle: CollectionHandle, options: ColumnsFilterOptions, host: ColumnsCollectionDriverHost): PoolEntry<CollectionHandle>;
4059
4083
  } //#endregion
4060
4084
  //#endregion
4061
- //#region ../node_modules/.pnpm/@milaboratories+pl-model-common@1.47.1/node_modules/@milaboratories/pl-model-common/dist/services/service_types.d.ts
4085
+ //#region ../node_modules/.pnpm/@milaboratories+pl-model-common@1.47.3/node_modules/@milaboratories/pl-model-common/dist/services/service_types.d.ts
4062
4086
  //#region src/services/service_types.d.ts
4063
4087
  type ServiceTypesLike<Model = unknown, Ui = unknown, Kind extends ServiceType = ServiceType, ModelHost = Model, UiHost = Ui> = {
4064
4088
  readonly __types?: {
@@ -4089,7 +4113,7 @@ type ServiceNameLiterals = { [K in keyof TServices]: ExtractServiceName<TService
4089
4113
  /** Auto-derived requires* feature flags from Services keys. */
4090
4114
  type ServiceRequireFlags = { [K in keyof TServices as `requires${K & string}`]?: boolean };
4091
4115
  //#endregion
4092
- //#region ../node_modules/.pnpm/@milaboratories+pl-model-common@1.47.1/node_modules/@milaboratories/pl-model-common/dist/services/service_declarations.d.ts
4116
+ //#region ../node_modules/.pnpm/@milaboratories+pl-model-common@1.47.3/node_modules/@milaboratories/pl-model-common/dist/services/service_declarations.d.ts
4093
4117
  //#region src/services/service_declarations.d.ts
4094
4118
  declare const Services: {
4095
4119
  PFrameSpec: Branded$1<"pframeSpec", ServiceTypesLike<PFrameSpecDriver, PFrameSpecDriver, "wasm", PFrameSpecDriver, PFrameSpecDriver>>;
@@ -4098,7 +4122,7 @@ declare const Services: {
4098
4122
  ColumnsCollection: Branded$1<"columnsCollection", ServiceTypesLike<ColumnsCollectionDriverModel, ColumnsCollectionDriverModel, "wasm", ColumnsCollectionDriver, ColumnsCollectionDriver>>;
4099
4123
  }; //#endregion
4100
4124
  //#endregion
4101
- //#region ../node_modules/.pnpm/@milaboratories+pl-model-common@1.47.1/node_modules/@milaboratories/pl-model-common/dist/flags/block_flags.d.ts
4125
+ //#region ../node_modules/.pnpm/@milaboratories+pl-model-common@1.47.3/node_modules/@milaboratories/pl-model-common/dist/flags/block_flags.d.ts
4102
4126
  /**
4103
4127
  * Known block flags. Flags are set during model compilation, see `BlockModel.create` for more details and for initial values.
4104
4128
  */
@@ -4116,7 +4140,7 @@ type BlockCodeKnownFeatureFlags = {
4116
4140
  * older desktop apps.
4117
4141
  */
4118
4142
  //#endregion
4119
- //#region ../node_modules/.pnpm/@milaboratories+pl-model-common@1.47.1/node_modules/@milaboratories/pl-model-common/dist/driver_kit.d.ts
4143
+ //#region ../node_modules/.pnpm/@milaboratories+pl-model-common@1.47.3/node_modules/@milaboratories/pl-model-common/dist/driver_kit.d.ts
4120
4144
  //#region src/driver_kit.d.ts
4121
4145
  /** Set of all drivers exposed in UI SDK via the platforma object. */
4122
4146
  interface DriverKit {
@@ -4137,7 +4161,7 @@ interface DriverKit {
4137
4161
  readonly pFrameDriver: PFrameDriver;
4138
4162
  } //#endregion
4139
4163
  //#endregion
4140
- //#region ../node_modules/.pnpm/@milaboratories+pl-model-common@1.47.1/node_modules/@milaboratories/pl-model-common/dist/errors.d.ts
4164
+ //#region ../node_modules/.pnpm/@milaboratories+pl-model-common@1.47.3/node_modules/@milaboratories/pl-model-common/dist/errors.d.ts
4141
4165
  type ResultOrError<S, F = Error> = {
4142
4166
  value: S;
4143
4167
  error?: undefined;
@@ -4145,7 +4169,7 @@ type ResultOrError<S, F = Error> = {
4145
4169
  error: F;
4146
4170
  };
4147
4171
  //#endregion
4148
- //#region ../node_modules/.pnpm/@milaboratories+pl-model-common@1.47.1/node_modules/@milaboratories/pl-model-common/dist/utag.d.ts
4172
+ //#region ../node_modules/.pnpm/@milaboratories+pl-model-common@1.47.3/node_modules/@milaboratories/pl-model-common/dist/utag.d.ts
4149
4173
  //#region src/utag.d.ts
4150
4174
  /** Value returned for changing states supporting reactive listening for changes */
4151
4175
  interface ValueWithUTag<V> {
@@ -4164,7 +4188,7 @@ interface ValueWithUTagAndAuthor<V> extends ValueWithUTag<V> {
4164
4188
  readonly author?: AuthorMarker;
4165
4189
  } //#endregion
4166
4190
  //#endregion
4167
- //#region ../node_modules/.pnpm/@platforma-sdk+model@1.80.2/node_modules/@platforma-sdk/model/dist/block_state_patch.d.ts
4191
+ //#region ../node_modules/.pnpm/@platforma-sdk+model@1.80.10/node_modules/@platforma-sdk/model/dist/block_state_patch.d.ts
4168
4192
  //#region src/block_state_patch.d.ts
4169
4193
  /** Patch for the structural object */
4170
4194
  type Patch<K, V> = {
@@ -4176,7 +4200,7 @@ type Unionize<T extends Record<string, unknown>> = { [K in keyof T]: Patch<K, T[
4176
4200
  /** Patch for the BlockState, pushed by onStateUpdates method in SDK. */
4177
4201
  type BlockStatePatch<Args = unknown, Outputs extends BlockOutputsBase = BlockOutputsBase, UiState = unknown, Href extends `/${string}` = `/${string}`> = Unionize<BlockState<Args, Outputs, UiState, Href>>; //#endregion
4178
4202
  //#endregion
4179
- //#region ../node_modules/.pnpm/@platforma-sdk+model@1.80.2/node_modules/@platforma-sdk/model/dist/plugin_handle.d.ts
4203
+ //#region ../node_modules/.pnpm/@platforma-sdk+model@1.80.10/node_modules/@platforma-sdk/model/dist/plugin_handle.d.ts
4180
4204
  //#region src/plugin_handle.d.ts
4181
4205
  /**
4182
4206
  * Phantom-only base type for constraining PluginHandle's type parameter.
@@ -4205,7 +4229,7 @@ interface PluginFactoryLike<Data extends Record<string, unknown> = Record<string
4205
4229
  type PluginHandle<F extends PluginFactoryLike = PluginFactoryLike> = Branded<string, F>;
4206
4230
  /** Construct the output key for a plugin output in the block outputs map. */
4207
4231
  //#endregion
4208
- //#region ../node_modules/.pnpm/@platforma-sdk+model@1.80.2/node_modules/@platforma-sdk/model/dist/block_storage.d.ts
4232
+ //#region ../node_modules/.pnpm/@platforma-sdk+model@1.80.10/node_modules/@platforma-sdk/model/dist/block_storage.d.ts
4209
4233
  /** Payload for storage mutation operations. SDK defines specific operations. */
4210
4234
  type MutateStoragePayload<T = unknown> = {
4211
4235
  operation: "update-block-data";
@@ -4223,7 +4247,7 @@ type MutateStoragePayload<T = unknown> = {
4223
4247
  * @returns A new BlockStorage with updated data
4224
4248
  */
4225
4249
  //#endregion
4226
- //#region ../node_modules/.pnpm/@platforma-sdk+model@1.80.2/node_modules/@platforma-sdk/model/dist/bconfig/lambdas.d.ts
4250
+ //#region ../node_modules/.pnpm/@platforma-sdk+model@1.80.10/node_modules/@platforma-sdk/model/dist/bconfig/lambdas.d.ts
4227
4251
  /** Additional information that may alter lambda rendering procedure. */
4228
4252
  type ConfigRenderLambdaFlags = {
4229
4253
  /**
@@ -4260,7 +4284,7 @@ type InferOutputsFromLambdas<OutputsCfg extends Record<string, ConfigRenderLambd
4260
4284
  } ? false : true;
4261
4285
  } }; //#endregion
4262
4286
  //#endregion
4263
- //#region ../node_modules/.pnpm/@platforma-sdk+model@1.80.2/node_modules/@platforma-sdk/model/dist/block_api_v1.d.ts
4287
+ //#region ../node_modules/.pnpm/@platforma-sdk+model@1.80.10/node_modules/@platforma-sdk/model/dist/block_api_v1.d.ts
4264
4288
  //#region src/block_api_v1.d.ts
4265
4289
  /** Returned by state subscription methods to be able to cancel the subscription. */
4266
4290
  type CancelSubscription = () => void;
@@ -4355,7 +4379,7 @@ interface GetOperation<T> extends BaseOperation {
4355
4379
  value: T;
4356
4380
  }
4357
4381
  //#endregion
4358
- //#region ../node_modules/.pnpm/@platforma-sdk+model@1.80.2/node_modules/@platforma-sdk/model/dist/block_api_v2.d.ts
4382
+ //#region ../node_modules/.pnpm/@platforma-sdk+model@1.80.10/node_modules/@platforma-sdk/model/dist/block_api_v2.d.ts
4359
4383
  //#region src/block_api_v2.d.ts
4360
4384
  /** Defines methods to read and write current block data. */
4361
4385
  interface BlockApiV2<Args = unknown, Outputs extends BlockOutputsBase = BlockOutputsBase, UiState = unknown, Href extends `/${string}` = `/${string}`> {
@@ -4405,12 +4429,12 @@ interface BlockApiV2<Args = unknown, Outputs extends BlockOutputsBase = BlockOut
4405
4429
  dispose(): Promise<ResultOrError<void>>;
4406
4430
  } //#endregion
4407
4431
  //#endregion
4408
- //#region ../node_modules/.pnpm/@platforma-sdk+model@1.80.2/node_modules/@platforma-sdk/model/dist/version.d.ts
4432
+ //#region ../node_modules/.pnpm/@platforma-sdk+model@1.80.10/node_modules/@platforma-sdk/model/dist/version.d.ts
4409
4433
  type SdkInfo = {
4410
4434
  readonly sdkVersion: string;
4411
4435
  };
4412
4436
  //#endregion
4413
- //#region ../node_modules/.pnpm/@platforma-sdk+model@1.80.2/node_modules/@platforma-sdk/model/dist/services/block_services.d.ts
4437
+ //#region ../node_modules/.pnpm/@platforma-sdk+model@1.80.10/node_modules/@platforma-sdk/model/dist/services/block_services.d.ts
4414
4438
  //#region src/services/block_services.d.ts
4415
4439
  /**
4416
4440
  * Services required by all V3 blocks by default.
@@ -4427,14 +4451,14 @@ declare const BLOCK_SERVICE_FLAGS: {
4427
4451
  };
4428
4452
  type BlockServiceFlags = typeof BLOCK_SERVICE_FLAGS;
4429
4453
  //#endregion
4430
- //#region ../node_modules/.pnpm/@platforma-sdk+model@1.80.2/node_modules/@platforma-sdk/model/dist/services/service_resolve.d.ts
4454
+ //#region ../node_modules/.pnpm/@platforma-sdk+model@1.80.10/node_modules/@platforma-sdk/model/dist/services/service_resolve.d.ts
4431
4455
  //#region src/services/service_resolve.d.ts
4432
4456
  type FlagToName<Flag extends string> = Flag extends `requires${infer K}` ? K extends keyof ServiceNameLiterals ? ServiceNameLiterals[K] : never : never;
4433
4457
  type RequiredServiceNames<Flags> = { [K in keyof Flags & `requires${string}`]: Flags[K] extends true ? FlagToName<K & string> : never }[keyof Flags & `requires${string}`];
4434
4458
  type ResolveUiServices<Flags> = Pick<UiServices$1, RequiredServiceNames<Flags> & keyof UiServices$1>;
4435
4459
  type BlockDefaultUiServices = ResolveUiServices<BlockServiceFlags>; //#endregion
4436
4460
  //#endregion
4437
- //#region ../node_modules/.pnpm/@platforma-sdk+model@1.80.2/node_modules/@platforma-sdk/model/dist/plugin_model.d.ts
4461
+ //#region ../node_modules/.pnpm/@platforma-sdk+model@1.80.10/node_modules/@platforma-sdk/model/dist/plugin_model.d.ts
4438
4462
  /**
4439
4463
  * Runtime definition for a single public output field.
4440
4464
  * Stored in PluginModel and passed through BlockModelInfo to the UI layer.
@@ -4443,7 +4467,7 @@ type PublicOutputFieldDef = {
4443
4467
  readonly getter: (data: unknown) => unknown;
4444
4468
  };
4445
4469
  //#endregion
4446
- //#region ../node_modules/.pnpm/@platforma-sdk+model@1.80.2/node_modules/@platforma-sdk/model/dist/block_api_v3.d.ts
4470
+ //#region ../node_modules/.pnpm/@platforma-sdk+model@1.80.10/node_modules/@platforma-sdk/model/dist/block_api_v3.d.ts
4447
4471
  //#region src/block_api_v3.d.ts
4448
4472
  /** Defines methods to read and write current block data. */
4449
4473
  interface BlockApiV3<_Data = unknown, _Args = unknown, Outputs extends BlockOutputsBase = BlockOutputsBase, Href extends `/${string}` = `/${string}`> {
@@ -4474,7 +4498,7 @@ interface BlockApiV3<_Data = unknown, _Args = unknown, Outputs extends BlockOutp
4474
4498
  dispose(): Promise<ResultOrError<void>>;
4475
4499
  } //#endregion
4476
4500
  //#endregion
4477
- //#region ../node_modules/.pnpm/@platforma-sdk+model@1.80.2/node_modules/@platforma-sdk/model/dist/platforma.d.ts
4501
+ //#region ../node_modules/.pnpm/@platforma-sdk+model@1.80.10/node_modules/@platforma-sdk/model/dist/platforma.d.ts
4478
4502
  //#region src/platforma.d.ts
4479
4503
  /** Defines all methods to interact with the platform environment from within a block UI. @deprecated */
4480
4504
  interface PlatformaV1<Args = unknown, Outputs extends Record<string, OutputWithStatus<unknown>> = Record<string, OutputWithStatus<unknown>>, UiState = unknown, Href extends `/${string}` = `/${string}`> extends BlockApiV1<Args, Outputs, UiState, Href>, DriverKit {