@smartspace/api-client 0.1.0-pr.978.2ee1955 → 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,6 +311,11 @@ const getSmartSpaceAdminAPI = () => {
|
|
|
311
311
|
});
|
|
312
312
|
};
|
|
313
313
|
/**
|
|
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.
|
|
314
319
|
* @summary Upsert a single property on a dataset.
|
|
315
320
|
*/
|
|
316
321
|
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,11 @@ export declare const dataSetsDeleteItemParams: zod.ZodObject<{
|
|
|
1204
1204
|
itemId: zod.ZodString;
|
|
1205
1205
|
}, zod.core.$strict>;
|
|
1206
1206
|
/**
|
|
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.
|
|
1207
1212
|
* @summary Upsert a single property on a dataset.
|
|
1208
1213
|
*/
|
|
1209
1214
|
export declare const dataSetsAddDataSetPropertyPathIdRegExp: RegExp;
|
|
@@ -1212,7 +1217,7 @@ export declare const dataSetsAddDataSetPropertyParams: zod.ZodObject<{
|
|
|
1212
1217
|
}, zod.core.$strict>;
|
|
1213
1218
|
export declare const dataSetsAddDataSetPropertyBody: zod.ZodObject<{
|
|
1214
1219
|
description: zod.ZodOptional<zod.ZodNullable<zod.ZodString>>;
|
|
1215
|
-
isVector: zod.ZodBoolean
|
|
1220
|
+
isVector: zod.ZodOptional<zod.ZodNullable<zod.ZodBoolean>>;
|
|
1216
1221
|
name: zod.ZodString;
|
|
1217
1222
|
}, zod.core.$strict>;
|
|
1218
1223
|
export declare const dataSetsAddDataSetPropertyResponse: zod.ZodObject<{
|
|
@@ -929,6 +929,11 @@ exports.dataSetsDeleteItemParams = zod_1.default.strictObject({
|
|
|
929
929
|
"itemId": zod_1.default.string().regex(exports.dataSetsDeleteItemPathItemIdRegExp)
|
|
930
930
|
});
|
|
931
931
|
/**
|
|
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.
|
|
932
937
|
* @summary Upsert a single property on a dataset.
|
|
933
938
|
*/
|
|
934
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}$');
|
|
@@ -937,7 +942,7 @@ exports.dataSetsAddDataSetPropertyParams = zod_1.default.strictObject({
|
|
|
937
942
|
});
|
|
938
943
|
exports.dataSetsAddDataSetPropertyBody = zod_1.default.strictObject({
|
|
939
944
|
"description": zod_1.default.string().nullish(),
|
|
940
|
-
"isVector": zod_1.default.boolean(),
|
|
945
|
+
"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
946
|
"name": zod_1.default.string()
|
|
942
947
|
});
|
|
943
948
|
exports.dataSetsAddDataSetPropertyResponse = zod_1.default.object({
|