@smartspace/api-client 0.1.0-pr.980.abadb0a → 0.1.0-pr.981.0e5cf22

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.
@@ -311,15 +311,11 @@ const getSmartSpaceAdminAPI = () => {
311
311
  });
312
312
  };
313
313
  /**
314
- * NOTE `isVector` is vestigial. Nothing in the platform reads it any
315
- more (its last consumer was removed in Jan 2025), and it has no effect on
316
- ingestion or querying. It remains in the contract as an *optional* field
317
- rather than being deleted outright because this endpoint is `[Public]`
318
- and our OpenAPI specs are unversioned: we cannot rule out external
319
- integrations that still send or read the field, and removing a required
320
- property would break them without warning. Once spec versioning (or
321
- confirmed zero external usage) makes removal safe, drop it end-to-end —
322
- model, entity, mappers, and column.
314
+ * The `isVector` field is deprecated: the platform no longer uses it,
315
+ and it has no effect on ingestion or querying. It remains available as an
316
+ optional field for backward compatibility with existing integrations
317
+ new integrations should omit it. When omitted, the stored value is
318
+ preserved on update and defaults to `false` on create.
323
319
  * @summary Upsert a single property on a dataset.
324
320
  */
325
321
  const dataSetsAddDataSetProperty = (id, dataSetsUpsertDataSetProperty) => {
@@ -1204,15 +1204,11 @@ export declare const dataSetsDeleteItemParams: zod.ZodObject<{
1204
1204
  itemId: zod.ZodString;
1205
1205
  }, zod.core.$strict>;
1206
1206
  /**
1207
- * NOTE `isVector` is vestigial. Nothing in the platform reads it any
1208
- more (its last consumer was removed in Jan 2025), and it has no effect on
1209
- ingestion or querying. It remains in the contract as an *optional* field
1210
- rather than being deleted outright because this endpoint is `[Public]`
1211
- and our OpenAPI specs are unversioned: we cannot rule out external
1212
- integrations that still send or read the field, and removing a required
1213
- property would break them without warning. Once spec versioning (or
1214
- confirmed zero external usage) makes removal safe, drop it end-to-end —
1215
- model, entity, mappers, and column.
1207
+ * The `isVector` field is deprecated: the platform no longer uses it,
1208
+ and it has no effect on ingestion or querying. It remains available as an
1209
+ optional field for backward compatibility with existing integrations
1210
+ new integrations should omit it. When omitted, the stored value is
1211
+ preserved on update and defaults to `false` on create.
1216
1212
  * @summary Upsert a single property on a dataset.
1217
1213
  */
1218
1214
  export declare const dataSetsAddDataSetPropertyPathIdRegExp: RegExp;
@@ -929,15 +929,11 @@ exports.dataSetsDeleteItemParams = zod_1.default.strictObject({
929
929
  "itemId": zod_1.default.string().regex(exports.dataSetsDeleteItemPathItemIdRegExp)
930
930
  });
931
931
  /**
932
- * NOTE `isVector` is vestigial. Nothing in the platform reads it any
933
- more (its last consumer was removed in Jan 2025), and it has no effect on
934
- ingestion or querying. It remains in the contract as an *optional* field
935
- rather than being deleted outright because this endpoint is `[Public]`
936
- and our OpenAPI specs are unversioned: we cannot rule out external
937
- integrations that still send or read the field, and removing a required
938
- property would break them without warning. Once spec versioning (or
939
- confirmed zero external usage) makes removal safe, drop it end-to-end —
940
- model, entity, mappers, and column.
932
+ * The `isVector` field is deprecated: the platform no longer uses it,
933
+ and it has no effect on ingestion or querying. It remains available as an
934
+ optional field for backward compatibility with existing integrations
935
+ new integrations should omit it. When omitted, the stored value is
936
+ preserved on update and defaults to `false` on create.
941
937
  * @summary Upsert a single property on a dataset.
942
938
  */
943
939
  exports.dataSetsAddDataSetPropertyPathIdRegExp = new RegExp('^[0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{12}$');
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@smartspace/api-client",
3
- "version": "0.1.0-pr.980.abadb0a",
3
+ "version": "0.1.0-pr.981.0e5cf22",
4
4
  "description": "Generated TypeScript client for SmartSpace APIs",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",