@empathyco/x-components 6.0.0-alpha.41 → 6.0.0-alpha.42

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.
@@ -34,9 +34,14 @@ _default: import("vue").DefineComponent<{
34
34
  visibleRelatedPrompts: import("vue").ComputedRef<{
35
35
  index: number;
36
36
  relatedPromptNextQueries: import("@empathyco/x-types").RelatedPromptNextQuery[];
37
+ nextQueries: string[];
37
38
  suggestionText: string;
38
39
  type: string;
39
- toolingDisplayTagging: import("@empathyco/x-types").TaggingRequest;
40
+ toolingDisplayTagging?: import("@empathyco/x-types").TaggingRequest | undefined;
41
+ tagging?: {
42
+ toolingDisplayTagging?: import("@empathyco/x-types").TaggingRequest | undefined;
43
+ nextQueriesTagging?: import("@empathyco/x-types").RelatedPromptNextQuery[] | undefined;
44
+ } | undefined;
40
45
  modelName: "RelatedPrompt";
41
46
  }[]>;
42
47
  listItems: import("vue").Ref<HTMLElement[]>;
@@ -17,8 +17,10 @@ export interface RelatedPrompt extends NamedModel<'RelatedPrompt'>
17
17
 
18
18
  | Property | Modifiers | Type | Description |
19
19
  | --- | --- | --- | --- |
20
+ | [nextQueries](./x-types.relatedprompt.nextqueries.md) | | string\[\] | The queries of the next queries related to the prompt. |
20
21
  | [relatedPromptNextQueries](./x-types.relatedprompt.relatedpromptnextqueries.md) | | [RelatedPromptNextQuery](./x-types.relatedpromptnextquery.md)<!-- -->\[\] | The next queries related to the prompt. |
21
22
  | [suggestionText](./x-types.relatedprompt.suggestiontext.md) | | string | The prompt. |
22
- | [toolingDisplayTagging](./x-types.relatedprompt.toolingdisplaytagging.md) | | [TaggingRequest](./x-types.taggingrequest.md) | The tooling display tagging of the prompt. |
23
+ | [tagging?](./x-types.relatedprompt.tagging.md) | | { toolingDisplayTagging?: [TaggingRequest](./x-types.taggingrequest.md)<!-- -->; nextQueriesTagging?: [RelatedPromptNextQuery](./x-types.relatedpromptnextquery.md)<!-- -->\[\]; } | _(Optional)_ Related prompt tagging. |
24
+ | [toolingDisplayTagging?](./x-types.relatedprompt.toolingdisplaytagging.md) | | [TaggingRequest](./x-types.taggingrequest.md) | _(Optional)_ The tooling display tagging of the prompt. |
23
25
  | [type](./x-types.relatedprompt.type.md) | | string | The type of the prompt. |
24
26
 
@@ -0,0 +1,13 @@
1
+ <!-- Do not edit this file. It is automatically generated by API Documenter. -->
2
+
3
+ [Home](./index.md) &gt; [@empathyco/x-types](./x-types.md) &gt; [RelatedPrompt](./x-types.relatedprompt.md) &gt; [nextQueries](./x-types.relatedprompt.nextqueries.md)
4
+
5
+ ## RelatedPrompt.nextQueries property
6
+
7
+ The queries of the next queries related to the prompt.
8
+
9
+ **Signature:**
10
+
11
+ ```typescript
12
+ nextQueries: string[];
13
+ ```
@@ -0,0 +1,16 @@
1
+ <!-- Do not edit this file. It is automatically generated by API Documenter. -->
2
+
3
+ [Home](./index.md) &gt; [@empathyco/x-types](./x-types.md) &gt; [RelatedPrompt](./x-types.relatedprompt.md) &gt; [tagging](./x-types.relatedprompt.tagging.md)
4
+
5
+ ## RelatedPrompt.tagging property
6
+
7
+ Related prompt tagging.
8
+
9
+ **Signature:**
10
+
11
+ ```typescript
12
+ tagging?: {
13
+ toolingDisplayTagging?: TaggingRequest;
14
+ nextQueriesTagging?: RelatedPromptNextQuery[];
15
+ };
16
+ ```
@@ -9,5 +9,5 @@ The tooling display tagging of the prompt.
9
9
  **Signature:**
10
10
 
11
11
  ```typescript
12
- toolingDisplayTagging: TaggingRequest;
12
+ toolingDisplayTagging?: TaggingRequest;
13
13
  ```
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@empathyco/x-components",
3
- "version": "6.0.0-alpha.41",
3
+ "version": "6.0.0-alpha.42",
4
4
  "description": "Empathy X Components",
5
5
  "author": "Empathy Systems Corporation S.L.",
6
6
  "license": "Apache-2.0",
@@ -70,12 +70,12 @@
70
70
  },
71
71
  "dependencies": {
72
72
  "@empathyco/x-adapter": "^8.1.0-alpha.1",
73
- "@empathyco/x-adapter-platform": "^1.1.0-alpha.11",
73
+ "@empathyco/x-adapter-platform": "^1.1.0-alpha.12",
74
74
  "@empathyco/x-bus": "^1.0.3-alpha.2",
75
75
  "@empathyco/x-deep-merge": "^2.0.3-alpha.2",
76
76
  "@empathyco/x-logger": "^1.2.0-alpha.11",
77
77
  "@empathyco/x-storage-service": "^2.0.3-alpha.1",
78
- "@empathyco/x-types": "^10.1.0-alpha.8",
78
+ "@empathyco/x-types": "^10.1.0-alpha.9",
79
79
  "@empathyco/x-utils": "^1.0.3-alpha.2",
80
80
  "@vue/devtools-api": "~6.5.0",
81
81
  "@vueuse/core": "~10.7.1",
@@ -138,5 +138,5 @@
138
138
  "access": "public",
139
139
  "directory": "dist"
140
140
  },
141
- "gitHead": "64b6392544213c63b0ad8a4a2b9780696b792709"
141
+ "gitHead": "2658b6fbe2ccc7fb2a18c9ee4a0e1b3e092676ec"
142
142
  }
@@ -53571,7 +53571,7 @@
53571
53571
  },
53572
53572
  {
53573
53573
  "kind": "Content",
53574
- "text": "[];\n suggestionText: string;\n type: string;\n toolingDisplayTagging: import(\"@empathyco/x-types\")."
53574
+ "text": "[];\n nextQueries: string[];\n suggestionText: string;\n type: string;\n toolingDisplayTagging?: import(\"@empathyco/x-types\")."
53575
53575
  },
53576
53576
  {
53577
53577
  "kind": "Reference",
@@ -53580,7 +53580,25 @@
53580
53580
  },
53581
53581
  {
53582
53582
  "kind": "Content",
53583
- "text": ";\n modelName: \"RelatedPrompt\";\n }[]>;\n listItems: import(\"vue\")."
53583
+ "text": " | undefined;\n tagging?: {\n toolingDisplayTagging?: import(\"@empathyco/x-types\")."
53584
+ },
53585
+ {
53586
+ "kind": "Reference",
53587
+ "text": "TaggingRequest",
53588
+ "canonicalReference": "@empathyco/x-components!TaggingRequest:interface"
53589
+ },
53590
+ {
53591
+ "kind": "Content",
53592
+ "text": " | undefined;\n nextQueriesTagging?: import(\"@empathyco/x-types\")."
53593
+ },
53594
+ {
53595
+ "kind": "Reference",
53596
+ "text": "RelatedPromptNextQuery",
53597
+ "canonicalReference": "@empathyco/x-components!RelatedPromptNextQuery:interface"
53598
+ },
53599
+ {
53600
+ "kind": "Content",
53601
+ "text": "[] | undefined;\n } | undefined;\n modelName: \"RelatedPrompt\";\n }[]>;\n listItems: import(\"vue\")."
53584
53602
  },
53585
53603
  {
53586
53604
  "kind": "Reference",
@@ -53859,7 +53877,7 @@
53859
53877
  "name": "RelatedPromptsTagList",
53860
53878
  "variableTypeTokenRange": {
53861
53879
  "startIndex": 1,
53862
- "endIndex": 90
53880
+ "endIndex": 94
53863
53881
  }
53864
53882
  },
53865
53883
  {
@@ -5889,9 +5889,14 @@ selectedPromptIndex: ComputedRef<any>;
5889
5889
  visibleRelatedPrompts: ComputedRef< {
5890
5890
  index: number;
5891
5891
  relatedPromptNextQueries: RelatedPromptNextQuery[];
5892
+ nextQueries: string[];
5892
5893
  suggestionText: string;
5893
5894
  type: string;
5894
- toolingDisplayTagging: TaggingRequest;
5895
+ toolingDisplayTagging?: TaggingRequest | undefined;
5896
+ tagging?: {
5897
+ toolingDisplayTagging?: TaggingRequest | undefined;
5898
+ nextQueriesTagging?: RelatedPromptNextQuery[] | undefined;
5899
+ } | undefined;
5895
5900
  modelName: "RelatedPrompt";
5896
5901
  }[]>;
5897
5902
  listItems: Ref<HTMLElement[]>;
@@ -4608,6 +4608,33 @@
4608
4608
  "name": "RelatedPrompt",
4609
4609
  "preserveMemberOrder": false,
4610
4610
  "members": [
4611
+ {
4612
+ "kind": "PropertySignature",
4613
+ "canonicalReference": "@empathyco/x-types!RelatedPrompt#nextQueries:member",
4614
+ "docComment": "/**\n * The queries of the next queries related to the prompt.\n */\n",
4615
+ "excerptTokens": [
4616
+ {
4617
+ "kind": "Content",
4618
+ "text": "nextQueries: "
4619
+ },
4620
+ {
4621
+ "kind": "Content",
4622
+ "text": "string[]"
4623
+ },
4624
+ {
4625
+ "kind": "Content",
4626
+ "text": ";"
4627
+ }
4628
+ ],
4629
+ "isReadonly": false,
4630
+ "isOptional": false,
4631
+ "releaseTag": "Public",
4632
+ "name": "nextQueries",
4633
+ "propertyTypeTokenRange": {
4634
+ "startIndex": 1,
4635
+ "endIndex": 2
4636
+ }
4637
+ },
4611
4638
  {
4612
4639
  "kind": "PropertySignature",
4613
4640
  "canonicalReference": "@empathyco/x-types!RelatedPrompt#relatedPromptNextQueries:member",
@@ -4667,6 +4694,51 @@
4667
4694
  "endIndex": 2
4668
4695
  }
4669
4696
  },
4697
+ {
4698
+ "kind": "PropertySignature",
4699
+ "canonicalReference": "@empathyco/x-types!RelatedPrompt#tagging:member",
4700
+ "docComment": "/**\n * Related prompt tagging.\n */\n",
4701
+ "excerptTokens": [
4702
+ {
4703
+ "kind": "Content",
4704
+ "text": "tagging?: "
4705
+ },
4706
+ {
4707
+ "kind": "Content",
4708
+ "text": "{\n toolingDisplayTagging?: "
4709
+ },
4710
+ {
4711
+ "kind": "Reference",
4712
+ "text": "TaggingRequest",
4713
+ "canonicalReference": "@empathyco/x-types!TaggingRequest:interface"
4714
+ },
4715
+ {
4716
+ "kind": "Content",
4717
+ "text": ";\n nextQueriesTagging?: "
4718
+ },
4719
+ {
4720
+ "kind": "Reference",
4721
+ "text": "RelatedPromptNextQuery",
4722
+ "canonicalReference": "@empathyco/x-types!RelatedPromptNextQuery:interface"
4723
+ },
4724
+ {
4725
+ "kind": "Content",
4726
+ "text": "[];\n }"
4727
+ },
4728
+ {
4729
+ "kind": "Content",
4730
+ "text": ";"
4731
+ }
4732
+ ],
4733
+ "isReadonly": false,
4734
+ "isOptional": true,
4735
+ "releaseTag": "Public",
4736
+ "name": "tagging",
4737
+ "propertyTypeTokenRange": {
4738
+ "startIndex": 1,
4739
+ "endIndex": 6
4740
+ }
4741
+ },
4670
4742
  {
4671
4743
  "kind": "PropertySignature",
4672
4744
  "canonicalReference": "@empathyco/x-types!RelatedPrompt#toolingDisplayTagging:member",
@@ -4674,7 +4746,7 @@
4674
4746
  "excerptTokens": [
4675
4747
  {
4676
4748
  "kind": "Content",
4677
- "text": "toolingDisplayTagging: "
4749
+ "text": "toolingDisplayTagging?: "
4678
4750
  },
4679
4751
  {
4680
4752
  "kind": "Reference",
@@ -4687,7 +4759,7 @@
4687
4759
  }
4688
4760
  ],
4689
4761
  "isReadonly": false,
4690
- "isOptional": false,
4762
+ "isOptional": true,
4691
4763
  "releaseTag": "Public",
4692
4764
  "name": "toolingDisplayTagging",
4693
4765
  "propertyTypeTokenRange": {
@@ -61,9 +61,14 @@ declare const _default: import("vue").DefineComponent<{
61
61
  visibleRelatedPrompts: import("vue").ComputedRef<{
62
62
  index: number;
63
63
  relatedPromptNextQueries: import("@empathyco/x-types").RelatedPromptNextQuery[];
64
+ nextQueries: string[];
64
65
  suggestionText: string;
65
66
  type: string;
66
- toolingDisplayTagging: import("@empathyco/x-types").TaggingRequest;
67
+ toolingDisplayTagging?: import("@empathyco/x-types").TaggingRequest | undefined;
68
+ tagging?: {
69
+ toolingDisplayTagging?: import("@empathyco/x-types").TaggingRequest | undefined;
70
+ nextQueriesTagging?: import("@empathyco/x-types").RelatedPromptNextQuery[] | undefined;
71
+ } | undefined;
67
72
  modelName: "RelatedPrompt";
68
73
  }[]>;
69
74
  listItems: import("vue").Ref<HTMLElement[]>;
@@ -1 +1 @@
1
- {"version":3,"file":"related-prompts-tag-list.vue?vue&type=script&lang.d.ts","sourceRoot":"","sources":["../../../../../src/x-modules/related-prompts/components/related-prompts-tag-list.vue?vue&type=script&lang.ts"],"names":[],"mappings":"AAEE,OAAO,EAA6B,QAAQ,EAAc,MAAM,KAAK,CAAC;AAOtE;;;;;;;GAOG;;IAMC;;;;OAIG;;IAEH;;;;OAIG;;;;;IAEH;;;;OAIG;;IAEH;;;;OAIG;;IAEH;;;;;OAKG;;IAEH;;;;OAIG;;;;;;wBAwLwB,MAAM,KAAG,OAAO;8BA5GV,MAAM,KAAG,IAAI;wBA8DnB,OAAO;kBAeb,OAAO,QAAQ,MAAM,IAAI;kBAkBzB,OAAO,QAAQ,MAAM,IAAI;;;;;;;;;;;;;;;;;;;IA9M9C;;;;OAIG;;IAEH;;;;OAIG;;;;;IAEH;;;;OAIG;;IAEH;;;;OAIG;;IAEH;;;;;OAKG;;IAEH;;;;OAIG;;;;;;;;;AAxCP,wBAmPG"}
1
+ {"version":3,"file":"related-prompts-tag-list.vue?vue&type=script&lang.d.ts","sourceRoot":"","sources":["../../../../../src/x-modules/related-prompts/components/related-prompts-tag-list.vue?vue&type=script&lang.ts"],"names":[],"mappings":"AAEE,OAAO,EAA6B,QAAQ,EAAc,MAAM,KAAK,CAAC;AAOtE;;;;;;;GAOG;;IAMC;;;;OAIG;;IAEH;;;;OAIG;;;;;IAEH;;;;OAIG;;IAEH;;;;OAIG;;IAEH;;;;;OAKG;;IAEH;;;;OAIG;;;;;;wBAwLwB,MAAM,KAAG,OAAO;8BA5GV,MAAM,KAAG,IAAI;wBA8DnB,OAAO;kBAeb,OAAO,QAAQ,MAAM,IAAI;kBAkBzB,OAAO,QAAQ,MAAM,IAAI;;;;;;;;;;;;;;;;;;;;;;;;IA9M9C;;;;OAIG;;IAEH;;;;OAIG;;;;;IAEH;;;;OAIG;;IAEH;;;;OAIG;;IAEH;;;;;OAKG;;IAEH;;;;OAIG;;;;;;;;;AAxCP,wBAmPG"}