@arisnetxsolutions/quantum-core-sdk 1.2.1 → 1.2.3
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 +2 -2
- package/dist/index.d.ts +2 -0
- package/dist/types.d.ts +13 -0
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -35,10 +35,10 @@ Si prefieres usar el SDK directamente en el navegador sin herramientas de constr
|
|
|
35
35
|
|
|
36
36
|
```html
|
|
37
37
|
<!-- Carga la última versión 1.1.x -->
|
|
38
|
-
<script src="https://cdn.jsdelivr.net/npm/@arisnetxsolutions/quantum-core-sdk@
|
|
38
|
+
<script src="https://cdn.jsdelivr.net/npm/@arisnetxsolutions/quantum-core-sdk@latest"></script>
|
|
39
39
|
|
|
40
40
|
<!-- O simplemente (usa el campo 'jsdelivr' del package.json) -->
|
|
41
|
-
<script src="https://cdn.jsdelivr.net/npm/@arisnetxsolutions/quantum-core-sdk@1.1"></script>
|
|
41
|
+
<script src="https://cdn.jsdelivr.net/npm/@arisnetxsolutions/quantum-core-sdk@1.2.1"></script>
|
|
42
42
|
|
|
43
43
|
<script>
|
|
44
44
|
const qc = new QuantumCore({
|
package/dist/index.d.ts
CHANGED
package/dist/types.d.ts
CHANGED
|
@@ -154,8 +154,11 @@ export interface ServiceListItem {
|
|
|
154
154
|
slug: string;
|
|
155
155
|
name: string;
|
|
156
156
|
shortDescription: string;
|
|
157
|
+
description?: string | null;
|
|
157
158
|
icon?: string | null;
|
|
158
159
|
coverImage?: string | null;
|
|
160
|
+
features: string[];
|
|
161
|
+
technologies: string[];
|
|
159
162
|
priceFrom?: number;
|
|
160
163
|
currency: string;
|
|
161
164
|
category?: string;
|
|
@@ -163,6 +166,16 @@ export interface ServiceListItem {
|
|
|
163
166
|
featured: boolean;
|
|
164
167
|
rating: number;
|
|
165
168
|
reviews: number;
|
|
169
|
+
images?: ServiceImages;
|
|
170
|
+
pricing?: {
|
|
171
|
+
startingPrice?: number | null;
|
|
172
|
+
currency: string;
|
|
173
|
+
pricingModel: string;
|
|
174
|
+
plans: any[];
|
|
175
|
+
};
|
|
176
|
+
duration?: {
|
|
177
|
+
estimated?: string | null;
|
|
178
|
+
};
|
|
166
179
|
cta: ServiceCTA;
|
|
167
180
|
}
|
|
168
181
|
export interface ServiceListResponse {
|