@smartspace/api-client 0.1.0-pr.978.2ee1955 → 0.1.0-pr.980.abadb0a
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,6 +311,15 @@ 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
323
|
* @summary Upsert a single property on a dataset.
|
|
315
324
|
*/
|
|
316
325
|
const dataSetsAddDataSetProperty = (id, dataSetsUpsertDataSetProperty) => {
|
|
@@ -7,6 +7,10 @@
|
|
|
7
7
|
export interface DataSetsUpsertDataSetProperty {
|
|
8
8
|
/** @nullable */
|
|
9
9
|
description?: string | null;
|
|
10
|
-
|
|
10
|
+
/**
|
|
11
|
+
* Unused — the platform no longer reads this field and it has no effect on ingestion or querying. It is retained as an optional property purely for backward compatibility; omit it in new integrations. When omitted, the stored value is preserved on update and it defaults to false on create.
|
|
12
|
+
* @nullable
|
|
13
|
+
*/
|
|
14
|
+
isVector?: boolean | null;
|
|
11
15
|
name: string;
|
|
12
16
|
}
|
|
@@ -1204,6 +1204,15 @@ 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
1216
|
* @summary Upsert a single property on a dataset.
|
|
1208
1217
|
*/
|
|
1209
1218
|
export declare const dataSetsAddDataSetPropertyPathIdRegExp: RegExp;
|
|
@@ -1212,7 +1221,7 @@ export declare const dataSetsAddDataSetPropertyParams: zod.ZodObject<{
|
|
|
1212
1221
|
}, zod.core.$strict>;
|
|
1213
1222
|
export declare const dataSetsAddDataSetPropertyBody: zod.ZodObject<{
|
|
1214
1223
|
description: zod.ZodOptional<zod.ZodNullable<zod.ZodString>>;
|
|
1215
|
-
isVector: zod.ZodBoolean
|
|
1224
|
+
isVector: zod.ZodOptional<zod.ZodNullable<zod.ZodBoolean>>;
|
|
1216
1225
|
name: zod.ZodString;
|
|
1217
1226
|
}, zod.core.$strict>;
|
|
1218
1227
|
export declare const dataSetsAddDataSetPropertyResponse: zod.ZodObject<{
|
|
@@ -929,6 +929,15 @@ 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
941
|
* @summary Upsert a single property on a dataset.
|
|
933
942
|
*/
|
|
934
943
|
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}$');
|
|
@@ -937,7 +946,7 @@ exports.dataSetsAddDataSetPropertyParams = zod_1.default.strictObject({
|
|
|
937
946
|
});
|
|
938
947
|
exports.dataSetsAddDataSetPropertyBody = zod_1.default.strictObject({
|
|
939
948
|
"description": zod_1.default.string().nullish(),
|
|
940
|
-
"isVector": zod_1.default.boolean(),
|
|
949
|
+
"isVector": zod_1.default.boolean().nullish().describe('Unused — the platform no longer reads this field and it has no effect on ingestion or querying. It is retained as an optional property purely for backward compatibility; omit it in new integrations. When omitted, the stored value is preserved on update and it defaults to false on create.'),
|
|
941
950
|
"name": zod_1.default.string()
|
|
942
951
|
});
|
|
943
952
|
exports.dataSetsAddDataSetPropertyResponse = zod_1.default.object({
|