@empathyco/x-components 7.2.0 → 7.2.2

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.
Files changed (29) hide show
  1. package/CHANGELOG.md +15 -0
  2. package/docs/API-reference/api/x-adapter-platform.browseendpointadapter.md +13 -0
  3. package/docs/API-reference/api/x-adapter-platform.browserequestmapper.md +13 -0
  4. package/docs/API-reference/api/x-adapter-platform.browserequestschema.md +13 -0
  5. package/docs/API-reference/api/x-adapter-platform.browseresponsemapper.md +13 -0
  6. package/docs/API-reference/api/x-adapter-platform.browseresponseschema.md +13 -0
  7. package/docs/API-reference/api/x-adapter-platform.md +55 -0
  8. package/docs/API-reference/api/x-types.browsablerequest.browsefield.md +11 -0
  9. package/docs/API-reference/api/x-types.browsablerequest.browsevalue.md +11 -0
  10. package/docs/API-reference/api/x-types.browsablerequest.md +73 -0
  11. package/docs/API-reference/api/x-types.browserequest.md +15 -0
  12. package/docs/API-reference/api/x-types.browseresponse.banners.md +11 -0
  13. package/docs/API-reference/api/x-types.browseresponse.browsetagging.md +11 -0
  14. package/docs/API-reference/api/x-types.browseresponse.displaybrowsetagging.md +11 -0
  15. package/docs/API-reference/api/x-types.browseresponse.facets.md +11 -0
  16. package/docs/API-reference/api/x-types.browseresponse.md +187 -0
  17. package/docs/API-reference/api/x-types.browseresponse.promoteds.md +11 -0
  18. package/docs/API-reference/api/x-types.browseresponse.results.md +11 -0
  19. package/docs/API-reference/api/x-types.browseresponse.stats.md +11 -0
  20. package/docs/API-reference/api/x-types.browseresponse.totalresults.md +11 -0
  21. package/docs/API-reference/api/x-types.md +33 -0
  22. package/js/x-modules/recommendations/components/recommendations.vue.js.map +1 -1
  23. package/js/x-modules/recommendations/components/recommendations.vue2.js +2 -0
  24. package/js/x-modules/recommendations/components/recommendations.vue2.js.map +1 -1
  25. package/package.json +4 -4
  26. package/report/x-adapter-platform.api.json +250 -0
  27. package/report/x-types.api.json +425 -0
  28. package/types/src/x-modules/recommendations/components/recommendations.vue.d.ts.map +1 -1
  29. package/types/src/x-modules/related-prompts/components/related-prompts-tag-list.vue.d.ts.map +1 -1
@@ -1851,6 +1851,431 @@
1851
1851
  "endIndex": 2
1852
1852
  }
1853
1853
  },
1854
+ {
1855
+ "kind": "Interface",
1856
+ "canonicalReference": "@empathyco/x-types!BrowsableRequest:interface",
1857
+ "docComment": "/**\n * Interface for any Request with a `browseField` and `browseValue` parameters.\n *\n * @public\n */\n",
1858
+ "excerptTokens": [
1859
+ {
1860
+ "kind": "Content",
1861
+ "text": "export interface BrowsableRequest "
1862
+ }
1863
+ ],
1864
+ "fileUrlPath": "temp/types/request/request.model.d.ts",
1865
+ "releaseTag": "Public",
1866
+ "name": "BrowsableRequest",
1867
+ "preserveMemberOrder": false,
1868
+ "members": [
1869
+ {
1870
+ "kind": "PropertySignature",
1871
+ "canonicalReference": "@empathyco/x-types!BrowsableRequest#browseField:member",
1872
+ "docComment": "",
1873
+ "excerptTokens": [
1874
+ {
1875
+ "kind": "Content",
1876
+ "text": "browseField: "
1877
+ },
1878
+ {
1879
+ "kind": "Content",
1880
+ "text": "string"
1881
+ },
1882
+ {
1883
+ "kind": "Content",
1884
+ "text": ";"
1885
+ }
1886
+ ],
1887
+ "isReadonly": false,
1888
+ "isOptional": false,
1889
+ "releaseTag": "Public",
1890
+ "name": "browseField",
1891
+ "propertyTypeTokenRange": {
1892
+ "startIndex": 1,
1893
+ "endIndex": 2
1894
+ }
1895
+ },
1896
+ {
1897
+ "kind": "PropertySignature",
1898
+ "canonicalReference": "@empathyco/x-types!BrowsableRequest#browseValue:member",
1899
+ "docComment": "",
1900
+ "excerptTokens": [
1901
+ {
1902
+ "kind": "Content",
1903
+ "text": "browseValue: "
1904
+ },
1905
+ {
1906
+ "kind": "Content",
1907
+ "text": "string"
1908
+ },
1909
+ {
1910
+ "kind": "Content",
1911
+ "text": ";"
1912
+ }
1913
+ ],
1914
+ "isReadonly": false,
1915
+ "isOptional": false,
1916
+ "releaseTag": "Public",
1917
+ "name": "browseValue",
1918
+ "propertyTypeTokenRange": {
1919
+ "startIndex": 1,
1920
+ "endIndex": 2
1921
+ }
1922
+ }
1923
+ ],
1924
+ "extendsTokenRanges": []
1925
+ },
1926
+ {
1927
+ "kind": "Interface",
1928
+ "canonicalReference": "@empathyco/x-types!BrowseRequest:interface",
1929
+ "docComment": "/**\n * The Request for the Browse endpoint.\n *\n * @public\n */\n",
1930
+ "excerptTokens": [
1931
+ {
1932
+ "kind": "Content",
1933
+ "text": "export interface BrowseRequest extends "
1934
+ },
1935
+ {
1936
+ "kind": "Reference",
1937
+ "text": "BrowsableRequest",
1938
+ "canonicalReference": "@empathyco/x-types!BrowsableRequest:interface"
1939
+ },
1940
+ {
1941
+ "kind": "Content",
1942
+ "text": ", "
1943
+ },
1944
+ {
1945
+ "kind": "Reference",
1946
+ "text": "FilterableRequest",
1947
+ "canonicalReference": "@empathyco/x-types!FilterableRequest:interface"
1948
+ },
1949
+ {
1950
+ "kind": "Content",
1951
+ "text": ", "
1952
+ },
1953
+ {
1954
+ "kind": "Reference",
1955
+ "text": "PageableRequest",
1956
+ "canonicalReference": "@empathyco/x-types!PageableRequest:interface"
1957
+ },
1958
+ {
1959
+ "kind": "Content",
1960
+ "text": ", "
1961
+ },
1962
+ {
1963
+ "kind": "Reference",
1964
+ "text": "SortableRequest",
1965
+ "canonicalReference": "@empathyco/x-types!SortableRequest:interface"
1966
+ },
1967
+ {
1968
+ "kind": "Content",
1969
+ "text": ", "
1970
+ },
1971
+ {
1972
+ "kind": "Reference",
1973
+ "text": "TrackableRequest",
1974
+ "canonicalReference": "@empathyco/x-types!TrackableRequest:interface"
1975
+ },
1976
+ {
1977
+ "kind": "Content",
1978
+ "text": ", "
1979
+ },
1980
+ {
1981
+ "kind": "Reference",
1982
+ "text": "ExtraParamsRequest",
1983
+ "canonicalReference": "@empathyco/x-types!ExtraParamsRequest:interface"
1984
+ },
1985
+ {
1986
+ "kind": "Content",
1987
+ "text": " "
1988
+ }
1989
+ ],
1990
+ "fileUrlPath": "temp/types/request/browse-request.model.d.ts",
1991
+ "releaseTag": "Public",
1992
+ "name": "BrowseRequest",
1993
+ "preserveMemberOrder": false,
1994
+ "members": [],
1995
+ "extendsTokenRanges": [
1996
+ {
1997
+ "startIndex": 1,
1998
+ "endIndex": 2
1999
+ },
2000
+ {
2001
+ "startIndex": 3,
2002
+ "endIndex": 4
2003
+ },
2004
+ {
2005
+ "startIndex": 5,
2006
+ "endIndex": 6
2007
+ },
2008
+ {
2009
+ "startIndex": 7,
2010
+ "endIndex": 8
2011
+ },
2012
+ {
2013
+ "startIndex": 9,
2014
+ "endIndex": 10
2015
+ },
2016
+ {
2017
+ "startIndex": 11,
2018
+ "endIndex": 12
2019
+ }
2020
+ ]
2021
+ },
2022
+ {
2023
+ "kind": "Interface",
2024
+ "canonicalReference": "@empathyco/x-types!BrowseResponse:interface",
2025
+ "docComment": "/**\n * Response for the browse endpoint.\n *\n * @public\n */\n",
2026
+ "excerptTokens": [
2027
+ {
2028
+ "kind": "Content",
2029
+ "text": "export interface BrowseResponse "
2030
+ }
2031
+ ],
2032
+ "fileUrlPath": "temp/types/response/browse-response.model.d.ts",
2033
+ "releaseTag": "Public",
2034
+ "name": "BrowseResponse",
2035
+ "preserveMemberOrder": false,
2036
+ "members": [
2037
+ {
2038
+ "kind": "PropertySignature",
2039
+ "canonicalReference": "@empathyco/x-types!BrowseResponse#banners:member",
2040
+ "docComment": "",
2041
+ "excerptTokens": [
2042
+ {
2043
+ "kind": "Content",
2044
+ "text": "banners?: "
2045
+ },
2046
+ {
2047
+ "kind": "Reference",
2048
+ "text": "Banner",
2049
+ "canonicalReference": "@empathyco/x-types!Banner:interface"
2050
+ },
2051
+ {
2052
+ "kind": "Content",
2053
+ "text": "[]"
2054
+ },
2055
+ {
2056
+ "kind": "Content",
2057
+ "text": ";"
2058
+ }
2059
+ ],
2060
+ "isReadonly": false,
2061
+ "isOptional": true,
2062
+ "releaseTag": "Public",
2063
+ "name": "banners",
2064
+ "propertyTypeTokenRange": {
2065
+ "startIndex": 1,
2066
+ "endIndex": 3
2067
+ }
2068
+ },
2069
+ {
2070
+ "kind": "PropertySignature",
2071
+ "canonicalReference": "@empathyco/x-types!BrowseResponse#browseTagging:member",
2072
+ "docComment": "",
2073
+ "excerptTokens": [
2074
+ {
2075
+ "kind": "Content",
2076
+ "text": "browseTagging?: "
2077
+ },
2078
+ {
2079
+ "kind": "Reference",
2080
+ "text": "TaggingRequest",
2081
+ "canonicalReference": "@empathyco/x-types!TaggingRequest:interface"
2082
+ },
2083
+ {
2084
+ "kind": "Content",
2085
+ "text": ";"
2086
+ }
2087
+ ],
2088
+ "isReadonly": false,
2089
+ "isOptional": true,
2090
+ "releaseTag": "Public",
2091
+ "name": "browseTagging",
2092
+ "propertyTypeTokenRange": {
2093
+ "startIndex": 1,
2094
+ "endIndex": 2
2095
+ }
2096
+ },
2097
+ {
2098
+ "kind": "PropertySignature",
2099
+ "canonicalReference": "@empathyco/x-types!BrowseResponse#displayBrowseTagging:member",
2100
+ "docComment": "",
2101
+ "excerptTokens": [
2102
+ {
2103
+ "kind": "Content",
2104
+ "text": "displayBrowseTagging?: "
2105
+ },
2106
+ {
2107
+ "kind": "Reference",
2108
+ "text": "TaggingRequest",
2109
+ "canonicalReference": "@empathyco/x-types!TaggingRequest:interface"
2110
+ },
2111
+ {
2112
+ "kind": "Content",
2113
+ "text": ";"
2114
+ }
2115
+ ],
2116
+ "isReadonly": false,
2117
+ "isOptional": true,
2118
+ "releaseTag": "Public",
2119
+ "name": "displayBrowseTagging",
2120
+ "propertyTypeTokenRange": {
2121
+ "startIndex": 1,
2122
+ "endIndex": 2
2123
+ }
2124
+ },
2125
+ {
2126
+ "kind": "PropertySignature",
2127
+ "canonicalReference": "@empathyco/x-types!BrowseResponse#facets:member",
2128
+ "docComment": "",
2129
+ "excerptTokens": [
2130
+ {
2131
+ "kind": "Content",
2132
+ "text": "facets?: "
2133
+ },
2134
+ {
2135
+ "kind": "Reference",
2136
+ "text": "Facet",
2137
+ "canonicalReference": "@empathyco/x-types!Facet:interface"
2138
+ },
2139
+ {
2140
+ "kind": "Content",
2141
+ "text": "[]"
2142
+ },
2143
+ {
2144
+ "kind": "Content",
2145
+ "text": ";"
2146
+ }
2147
+ ],
2148
+ "isReadonly": false,
2149
+ "isOptional": true,
2150
+ "releaseTag": "Public",
2151
+ "name": "facets",
2152
+ "propertyTypeTokenRange": {
2153
+ "startIndex": 1,
2154
+ "endIndex": 3
2155
+ }
2156
+ },
2157
+ {
2158
+ "kind": "PropertySignature",
2159
+ "canonicalReference": "@empathyco/x-types!BrowseResponse#promoteds:member",
2160
+ "docComment": "",
2161
+ "excerptTokens": [
2162
+ {
2163
+ "kind": "Content",
2164
+ "text": "promoteds?: "
2165
+ },
2166
+ {
2167
+ "kind": "Reference",
2168
+ "text": "Promoted",
2169
+ "canonicalReference": "@empathyco/x-types!Promoted:interface"
2170
+ },
2171
+ {
2172
+ "kind": "Content",
2173
+ "text": "[]"
2174
+ },
2175
+ {
2176
+ "kind": "Content",
2177
+ "text": ";"
2178
+ }
2179
+ ],
2180
+ "isReadonly": false,
2181
+ "isOptional": true,
2182
+ "releaseTag": "Public",
2183
+ "name": "promoteds",
2184
+ "propertyTypeTokenRange": {
2185
+ "startIndex": 1,
2186
+ "endIndex": 3
2187
+ }
2188
+ },
2189
+ {
2190
+ "kind": "PropertySignature",
2191
+ "canonicalReference": "@empathyco/x-types!BrowseResponse#results:member",
2192
+ "docComment": "",
2193
+ "excerptTokens": [
2194
+ {
2195
+ "kind": "Content",
2196
+ "text": "results: "
2197
+ },
2198
+ {
2199
+ "kind": "Reference",
2200
+ "text": "Result",
2201
+ "canonicalReference": "@empathyco/x-types!Result:interface"
2202
+ },
2203
+ {
2204
+ "kind": "Content",
2205
+ "text": "[]"
2206
+ },
2207
+ {
2208
+ "kind": "Content",
2209
+ "text": ";"
2210
+ }
2211
+ ],
2212
+ "isReadonly": false,
2213
+ "isOptional": false,
2214
+ "releaseTag": "Public",
2215
+ "name": "results",
2216
+ "propertyTypeTokenRange": {
2217
+ "startIndex": 1,
2218
+ "endIndex": 3
2219
+ }
2220
+ },
2221
+ {
2222
+ "kind": "PropertySignature",
2223
+ "canonicalReference": "@empathyco/x-types!BrowseResponse#stats:member",
2224
+ "docComment": "",
2225
+ "excerptTokens": [
2226
+ {
2227
+ "kind": "Content",
2228
+ "text": "stats?: "
2229
+ },
2230
+ {
2231
+ "kind": "Reference",
2232
+ "text": "Stats",
2233
+ "canonicalReference": "@empathyco/x-types!Stats:interface"
2234
+ },
2235
+ {
2236
+ "kind": "Content",
2237
+ "text": ";"
2238
+ }
2239
+ ],
2240
+ "isReadonly": false,
2241
+ "isOptional": true,
2242
+ "releaseTag": "Public",
2243
+ "name": "stats",
2244
+ "propertyTypeTokenRange": {
2245
+ "startIndex": 1,
2246
+ "endIndex": 2
2247
+ }
2248
+ },
2249
+ {
2250
+ "kind": "PropertySignature",
2251
+ "canonicalReference": "@empathyco/x-types!BrowseResponse#totalResults:member",
2252
+ "docComment": "",
2253
+ "excerptTokens": [
2254
+ {
2255
+ "kind": "Content",
2256
+ "text": "totalResults: "
2257
+ },
2258
+ {
2259
+ "kind": "Content",
2260
+ "text": "number"
2261
+ },
2262
+ {
2263
+ "kind": "Content",
2264
+ "text": ";"
2265
+ }
2266
+ ],
2267
+ "isReadonly": false,
2268
+ "isOptional": false,
2269
+ "releaseTag": "Public",
2270
+ "name": "totalResults",
2271
+ "propertyTypeTokenRange": {
2272
+ "startIndex": 1,
2273
+ "endIndex": 2
2274
+ }
2275
+ }
2276
+ ],
2277
+ "extendsTokenRanges": []
2278
+ },
1854
2279
  {
1855
2280
  "kind": "Interface",
1856
2281
  "canonicalReference": "@empathyco/x-types!EditableNumberRangeFacet:interface",
@@ -1 +1 @@
1
- {"version":3,"file":"recommendations.vue?vue&type=script&lang.d.ts","sourceRoot":"","sources":["../../../../../../src/x-modules/recommendations/components/recommendations.vue?vue&type=script&lang.ts"],"names":[],"mappings":"AACA,OAAO,KAAK,EAAE,MAAM,EAAE,MAAM,oBAAoB,CAAA;AAQhD;;;;;;;;;GASG;;IAKC,4EAA4E;;;;;IAK5E,gDAAgD;;;;;IALhD,4EAA4E;;;;;IAK5E,gDAAgD;;;;;AATpD,wBAsDE"}
1
+ {"version":3,"file":"recommendations.vue?vue&type=script&lang.d.ts","sourceRoot":"","sources":["../../../../../../src/x-modules/recommendations/components/recommendations.vue?vue&type=script&lang.ts"],"names":[],"mappings":"AACA,OAAO,KAAK,EAAE,MAAM,EAAE,MAAM,oBAAoB,CAAA;AAShD;;;;;;;;;GASG;;IAKC,4EAA4E;;;;;IAK5E,gDAAgD;;;;;IALhD,4EAA4E;;;;;IAK5E,gDAAgD;;;;;AATpD,wBAwDE"}
@@ -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":"AACA,OAAO,KAAK,EAAE,QAAQ,EAAE,MAAM,KAAK,CAAA;AAQnC;;;;;;;GAOG;;IAMC;;;;OAIG;;IAEH;;;;OAIG;;;;;IAEH;;;;OAIG;;IAEH;;;;OAIG;;IAEH;;;;;OAKG;eACiB,QAAQ,CAAC,MAAM,EAAE,CAAC;IACtC;;;;OAIG;;;;;;8BAoE8B,MAAM,KAAG,IAAI;wBAiEnB,OAAO;kBAeb,OAAO,QAAQ,MAAM,IAAI;kBAkBzB,OAAO,QAAQ,MAAM,IAAI;;;;;;;;;;;iCAoCyra,CAAC;sCAAqD,CAAC;8BAA6C,CAAC;;;;;;;;;;;;;IA7O50a;;;;OAIG;;IAEH;;;;OAIG;;;;;IAEH;;;;OAIG;;IAEH;;;;OAIG;;IAEH;;;;;OAKG;eACiB,QAAQ,CAAC,MAAM,EAAE,CAAC;IACtC;;;;OAIG;;;;;;;;;;;;;AAxCP,wBAiPE"}
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":"AACA,OAAO,KAAK,EAAE,QAAQ,EAAE,MAAM,KAAK,CAAA;AAQnC;;;;;;;GAOG;;IAMC;;;;OAIG;;IAEH;;;;OAIG;;;;;IAEH;;;;OAIG;;IAEH;;;;OAIG;;IAEH;;;;;OAKG;eACiB,QAAQ,CAAC,MAAM,EAAE,CAAC;IACtC;;;;OAIG;;;;;;8BAoE8B,MAAM,KAAG,IAAI;wBAiEnB,OAAO;kBAeb,OAAO,QAAQ,MAAM,IAAI;kBAkBzB,OAAO,QAAQ,MAAM,IAAI;;;;;;;;;;;iCAoCq8b,CAAC;sCAAqD,CAAC;8BAA6C,CAAC;;;;;;;;;;;;;IA7Oxlc;;;;OAIG;;IAEH;;;;OAIG;;;;;IAEH;;;;OAIG;;IAEH;;;;OAIG;;IAEH;;;;;OAKG;eACiB,QAAQ,CAAC,MAAM,EAAE,CAAC;IACtC;;;;OAIG;;;;;;;;;;;;;AAxCP,wBAiPE"}