@okf/ootils 1.18.0 → 1.18.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/node.d.mts CHANGED
@@ -1108,6 +1108,7 @@ interface IMeta {
1108
1108
  interface IGeneratedTopic {
1109
1109
  name: string;
1110
1110
  summary: string;
1111
+ isParent: boolean;
1111
1112
  parentTopic?: Schema.Types.ObjectId | null;
1112
1113
  embeddings: number[];
1113
1114
  meta: IMeta;
package/dist/node.d.ts CHANGED
@@ -1108,6 +1108,7 @@ interface IMeta {
1108
1108
  interface IGeneratedTopic {
1109
1109
  name: string;
1110
1110
  summary: string;
1111
+ isParent: boolean;
1111
1112
  parentTopic?: Schema.Types.ObjectId | null;
1112
1113
  embeddings: number[];
1113
1114
  meta: IMeta;
package/dist/node.js CHANGED
@@ -960,6 +960,11 @@ var init_GeneratedTopics = __esm({
960
960
  type: String,
961
961
  required: true
962
962
  },
963
+ isParent: {
964
+ type: Boolean,
965
+ required: true,
966
+ default: false
967
+ },
963
968
  parentTopic: {
964
969
  type: import_mongoose5.Schema.Types.ObjectId,
965
970
  ref: "generatedtopics",
package/dist/node.mjs CHANGED
@@ -965,6 +965,11 @@ var init_GeneratedTopics = __esm({
965
965
  type: String,
966
966
  required: true
967
967
  },
968
+ isParent: {
969
+ type: Boolean,
970
+ required: true,
971
+ default: false
972
+ },
968
973
  parentTopic: {
969
974
  type: Schema2.Types.ObjectId,
970
975
  ref: "generatedtopics",
package/package.json CHANGED
@@ -3,7 +3,7 @@
3
3
  "publishConfig": {
4
4
  "access": "public"
5
5
  },
6
- "version": "1.18.0",
6
+ "version": "1.18.1",
7
7
  "description": "Utility functions for both browser and Node.js",
8
8
  "main": "dist/index.js",
9
9
  "module": "dist/index.mjs",