ravcredit-lib 0.0.47 → 0.0.48

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 (2) hide show
  1. package/index.d.ts +50 -44
  2. package/package.json +1 -1
package/index.d.ts CHANGED
@@ -127,6 +127,50 @@ declare enum eConektaOrderType {
127
127
  SPEI = "SPEI"
128
128
  }
129
129
 
130
+ interface oClientPayments$1 {
131
+ date: number;
132
+ dayPayment: number;
133
+ amount: number;
134
+ id: string;
135
+ }
136
+ interface oUserReference$1 {
137
+ name: string;
138
+ phone: string;
139
+ relationship: string;
140
+ }
141
+ interface oClientReferences$1 {
142
+ date?: number;
143
+ amount?: number;
144
+ id: string;
145
+ url?: string;
146
+ }
147
+ interface oClient {
148
+ id: string;
149
+ name: string;
150
+ username: string;
151
+ password?: string;
152
+ email: string;
153
+ phone: string;
154
+ curp: string;
155
+ contract?: string;
156
+ createdAt?: number;
157
+ lastLogin?: number;
158
+ contract_temporary?: string;
159
+ exists?: boolean;
160
+ conekta_id?: string;
161
+ dynamic_id?: number | string;
162
+ dynamic_account?: string | number;
163
+ dynamic_ref?: string;
164
+ passport_id?: string;
165
+ payments?: oClientPayments$1[];
166
+ reference?: string;
167
+ references?: oClientReferences$1[];
168
+ token?: string;
169
+ userReferences: oUserReference$1[];
170
+ contractUrl?: string;
171
+ status: string;
172
+ }
173
+
130
174
  interface oConektaResObjChargePaid {
131
175
  id: string;
132
176
  livemode: boolean;
@@ -210,6 +254,7 @@ interface oConektaPaymentMethod {
210
254
  store_name: string;
211
255
  reference: string;
212
256
  cashier_id: string;
257
+ clabe?: string;
213
258
  }
214
259
  interface oConektaChargeData {
215
260
  id: string;
@@ -422,6 +467,11 @@ interface iConektaRecurrent {
422
467
  custom_id: string;
423
468
  payment_sources: iOxxoRecurrentSources;
424
469
  }
470
+ interface oConektaOrderSpei {
471
+ data: oConektaOrderCreate;
472
+ date?: number;
473
+ client: oClient;
474
+ }
425
475
  interface oConektaOrderSpei {
426
476
  livemode: boolean;
427
477
  amount: number;
@@ -586,50 +636,6 @@ interface oContract {
586
636
  photo?: string;
587
637
  }
588
638
 
589
- interface oClientPayments$1 {
590
- date: number;
591
- dayPayment: number;
592
- amount: number;
593
- id: string;
594
- }
595
- interface oUserReference$1 {
596
- name: string;
597
- phone: string;
598
- relationship: string;
599
- }
600
- interface oClientReferences$1 {
601
- date?: number;
602
- amount?: number;
603
- id: string;
604
- url?: string;
605
- }
606
- interface oClient {
607
- id: string;
608
- name: string;
609
- username: string;
610
- password?: string;
611
- email: string;
612
- phone: string;
613
- curp: string;
614
- contract?: string;
615
- createdAt?: number;
616
- lastLogin?: number;
617
- contract_temporary?: string;
618
- exists?: boolean;
619
- conekta_id?: string;
620
- dynamic_id?: number | string;
621
- dynamic_account?: string | number;
622
- dynamic_ref?: string;
623
- passport_id?: string;
624
- payments?: oClientPayments$1[];
625
- reference?: string;
626
- references?: oClientReferences$1[];
627
- token?: string;
628
- userReferences: oUserReference$1[];
629
- contractUrl?: string;
630
- status: string;
631
- }
632
-
633
639
  declare enum eReferenceStatusRav {
634
640
  "Disponible" = "Disponible",
635
641
  "Active" = "Activo con credito vigente",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "ravcredit-lib",
3
- "version": "0.0.47",
3
+ "version": "0.0.48",
4
4
  "types": "./src/index.d.ts",
5
5
  "peerDependencies": {
6
6
  "@angular/common": "^20.0.0",