simpo-component-library 3.6.263 → 3.6.265
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/esm2022/lib/ecommerce/sections/passbook-transactions/passbook-transactions.component.mjs +13 -0
- package/esm2022/lib/ecommerce/sections/returns-calculator/returns-calculator.component.mjs +7 -5
- package/esm2022/lib/ecommerce/sections/scheme-details/scheme-details.component.mjs +3 -3
- package/esm2022/lib/ecommerce/sections/user-profile/user-profile.component.mjs +95 -7
- package/esm2022/lib/ecommerce/sections/verify-payment/verify-payment.component.mjs +2 -2
- package/esm2022/lib/services/rest.service.mjs +10 -2
- package/fesm2022/simpo-component-library.mjs +119 -13
- package/fesm2022/simpo-component-library.mjs.map +1 -1
- package/lib/ecommerce/sections/passbook-transactions/passbook-transactions.component.d.ts +5 -0
- package/lib/ecommerce/sections/user-profile/user-profile.component.d.ts +9 -1
- package/lib/services/rest.service.d.ts +2 -1
- package/package.json +1 -1
- package/simpo-component-library-3.6.265.tgz +0 -0
- package/simpo-component-library-3.6.263.tgz +0 -0
@@ -0,0 +1,5 @@
|
|
1
|
+
import * as i0 from "@angular/core";
|
2
|
+
export declare class PassbookTransactionsComponent {
|
3
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<PassbookTransactionsComponent, never>;
|
4
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<PassbookTransactionsComponent, "simpo-passbook-transactions", never, {}, {}, never, never, true, never>;
|
5
|
+
}
|
@@ -1,4 +1,4 @@
|
|
1
|
-
import { OnInit } from '@angular/core';
|
1
|
+
import { OnInit, TemplateRef } from '@angular/core';
|
2
2
|
import BaseSection from '../../../sections/BaseSection';
|
3
3
|
import { EventsService } from '.././../../services/events.service';
|
4
4
|
import { ProfileContentModal, ProfileStylesModal, Tabs, UserProfileModal } from './user-profile.modal';
|
@@ -26,6 +26,7 @@ export declare class UserProfileComponent extends BaseSection implements OnInit
|
|
26
26
|
private readonly messageService;
|
27
27
|
private route;
|
28
28
|
constructor(router: Router, _eventService: EventsService, restService: RestService, storageService: StorageServiceService, cartService: CartService, matDialog: MatDialog, matBottomSheet: MatBottomSheet, cookieService: CookieService, messageService: MessageService, route: ActivatedRoute);
|
29
|
+
showChargesTemplate: TemplateRef<HTMLDivElement>;
|
29
30
|
data?: UserProfileModal;
|
30
31
|
index?: number;
|
31
32
|
edit?: boolean;
|
@@ -47,6 +48,13 @@ export declare class UserProfileComponent extends BaseSection implements OnInit
|
|
47
48
|
storeId: any;
|
48
49
|
ngOnInit(): void;
|
49
50
|
checkPassbookApp(): void;
|
51
|
+
closeDialog(): void;
|
52
|
+
storeCharges: any;
|
53
|
+
payDue(payment: any): void;
|
54
|
+
continuePayment(payload: any): void;
|
55
|
+
openCashfreeSdk(sessionId: string): void;
|
56
|
+
overAllDues: any[];
|
57
|
+
getAllPassbookDues(): void;
|
50
58
|
getAllStores(): void;
|
51
59
|
ecomConfigs: any;
|
52
60
|
getEcommerceConfigs(): void;
|
@@ -115,7 +115,8 @@ export declare class RestService implements OnDestroy {
|
|
115
115
|
getAllStaffList(): Observable<Object>;
|
116
116
|
requestRedeemption(passbookId: any): Observable<Object>;
|
117
117
|
PassbookAppStatus(bId: any): Observable<Object>;
|
118
|
-
|
118
|
+
getAllPassbookDues(bId: any, userId: any): Observable<Object>;
|
119
|
+
getToken(): string;
|
119
120
|
static ɵfac: i0.ɵɵFactoryDeclaration<RestService, never>;
|
120
121
|
static ɵprov: i0.ɵɵInjectableDeclaration<RestService>;
|
121
122
|
}
|
package/package.json
CHANGED
Binary file
|
Binary file
|