@jogolabs/billing-sdk-v2 0.0.4 → 0.0.5
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.
|
@@ -23,6 +23,18 @@ export declare class PaymentsService {
|
|
|
23
23
|
*/
|
|
24
24
|
savedCardId: string;
|
|
25
25
|
cvv: string;
|
|
26
|
+
/**
|
|
27
|
+
* Total de clases del plan (opcional, se envía en metadata a Wompi)
|
|
28
|
+
*/
|
|
29
|
+
classesTotal?: number;
|
|
30
|
+
/**
|
|
31
|
+
* ID de la suscripción (opcional, metadata)
|
|
32
|
+
*/
|
|
33
|
+
subscriptionId?: string;
|
|
34
|
+
/**
|
|
35
|
+
* ID del plan (opcional, metadata)
|
|
36
|
+
*/
|
|
37
|
+
planId?: string;
|
|
26
38
|
};
|
|
27
39
|
}): CancelablePromise<{
|
|
28
40
|
redirectUrl?: string | null;
|
package/package.json
CHANGED
|
@@ -28,6 +28,18 @@ export class PaymentsService {
|
|
|
28
28
|
*/
|
|
29
29
|
savedCardId: string;
|
|
30
30
|
cvv: string;
|
|
31
|
+
/**
|
|
32
|
+
* Total de clases del plan (opcional, se envía en metadata a Wompi)
|
|
33
|
+
*/
|
|
34
|
+
classesTotal?: number;
|
|
35
|
+
/**
|
|
36
|
+
* ID de la suscripción (opcional, metadata)
|
|
37
|
+
*/
|
|
38
|
+
subscriptionId?: string;
|
|
39
|
+
/**
|
|
40
|
+
* ID del plan (opcional, metadata)
|
|
41
|
+
*/
|
|
42
|
+
planId?: string;
|
|
31
43
|
},
|
|
32
44
|
}): CancelablePromise<{
|
|
33
45
|
redirectUrl?: string | null;
|