@partium/ionic-sdk 14.0.0-alpha1 → 14.0.0
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/README.md +5 -16
- package/package.json +14 -4
package/README.md
CHANGED
|
@@ -1,20 +1,9 @@
|
|
|
1
|
-
#
|
|
1
|
+
# Partium Find SDK for Ionic
|
|
2
2
|
|
|
3
|
-
The
|
|
3
|
+
The *Partium Find SDK* enables seamless integration of Partium’s parts and materials search capabilities into Ionic-based applications. It supports multiple search modalities, including text, image, and multi-modal search, and offers advanced features like hierarchy navigation (Bill of Materials) and attribute-based filtering.
|
|
4
4
|
|
|
5
|
-
|
|
5
|
+
The Find SDK enables efficient spare part search, retrieval of relevant results, and seamless integration of those results into applications through an intuitive interface. Additional information about material and part search with Partium, along with user interface examples and usage guidelines, is available in the [Partium Help Center](https://www.partium.io/help-center/material-and-part-search).
|
|
6
6
|
|
|
7
|
-
|
|
7
|
+
# Installation & Usage
|
|
8
8
|
|
|
9
|
-
For
|
|
10
|
-
|
|
11
|
-
## Licence
|
|
12
|
-
(c) Partium Inc. 2020-2025. All rights reserved.
|
|
13
|
-
|
|
14
|
-
Confidential and Proprietary
|
|
15
|
-
|
|
16
|
-
Restricted Distribution: Not to be used, copied, reproduced in whole or in part, nor its contents revealed in any manner to others without the express written permission of Partium.
|
|
17
|
-
|
|
18
|
-
## Installation and usage
|
|
19
|
-
|
|
20
|
-
For further details on how to install and use the Partium-SDK, have a look at the [Partium Developer-Center](https://developer.partium.io/). Ask your Partium contact for credentials to access it. If you don't yet have a contact at Partium, please get in touch at [Partium.io](https://partium.io/)
|
|
9
|
+
For complete installation instructions and code samples, please visit the Partium [Developer Center](https://developer.partium.io/). Access requires credentials; please contact your Partium representative for access. If you don’t yet have a contact, reach out to us via [Partium.io](https://www.partium.io/contact).
|
package/package.json
CHANGED
|
@@ -1,15 +1,25 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@partium/ionic-sdk",
|
|
3
|
-
"version": "14.0.0
|
|
4
|
-
"description": "
|
|
3
|
+
"version": "14.0.0",
|
|
4
|
+
"description": "The Partium Find SDK enables integration of Partium’s parts and materials search capabilities into Ionic-based applications.",
|
|
5
5
|
"author": "Partium Inc.",
|
|
6
|
-
"license": "
|
|
6
|
+
"license": "See LICENSE.txt",
|
|
7
|
+
"keywords": [
|
|
8
|
+
"partium find sdk",
|
|
9
|
+
"part search",
|
|
10
|
+
"material search",
|
|
11
|
+
"visual search",
|
|
12
|
+
"image search",
|
|
13
|
+
"text search",
|
|
14
|
+
"semantic search",
|
|
15
|
+
"bill of materials search"
|
|
16
|
+
],
|
|
7
17
|
"typings": "index.d.ts",
|
|
8
18
|
"scripts": {
|
|
9
19
|
"clean": "npx rimraf -- node_modules package-lock.json && npm i"
|
|
10
20
|
},
|
|
11
21
|
"dependencies": {
|
|
12
|
-
"@partium/js-sdk": "14.0.0
|
|
22
|
+
"@partium/js-sdk": "14.0.0",
|
|
13
23
|
"rxjs": "~7.8.1"
|
|
14
24
|
},
|
|
15
25
|
"devDependencies": {
|