@posiwise/admin-module 0.0.177 → 0.0.179
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/components/TOS/terms-of-service-details/terms-of-service-details.component.mjs +17 -11
- package/esm2022/lib/components/domain-config/domain-config-details/domain-config-build/domain-config-build.component.mjs +2 -3
- package/esm2022/lib/components/domain-config/domain-config-details/domain-config-interface/domain-config-interface.component.mjs +2 -3
- package/esm2022/lib/components/incidents/add-edit-incident/add-edit-incident.component.mjs +2 -2
- package/esm2022/lib/components/products/product-details/product-details.component.mjs +36 -17
- package/esm2022/lib/components/subscriptions/subscription-users/subscription-users.component.mjs +24 -18
- package/esm2022/lib/components/subscriptions/subscriptions-list/subscriptions-list.component.mjs +3 -3
- package/esm2022/lib/shared/interface/privacy-tos.interface.mjs +1 -1
- package/fesm2022/posiwise-admin-module.mjs +69 -39
- package/fesm2022/posiwise-admin-module.mjs.map +1 -1
- package/lib/components/products/product-details/product-details.component.d.ts +4 -0
- package/lib/components/subscriptions/subscription-users/subscription-users.component.d.ts +3 -1
- package/lib/shared/interface/privacy-tos.interface.d.ts +1 -0
- package/package.json +1 -1
|
@@ -29,6 +29,8 @@ export declare class ProductDetailsComponent extends AppBaseComponent implements
|
|
|
29
29
|
selectedProducts: SelectItem[];
|
|
30
30
|
selectedScopes: SelectItem[];
|
|
31
31
|
selectedPartnerProducts: SelectItem[];
|
|
32
|
+
unsubscribeBehaviors: SelectItem[];
|
|
33
|
+
prorationBehaviors: SelectItem[];
|
|
32
34
|
frequency: {
|
|
33
35
|
label: string;
|
|
34
36
|
value: string;
|
|
@@ -62,6 +64,8 @@ export declare class ProductDetailsComponent extends AppBaseComponent implements
|
|
|
62
64
|
onUpdate(): void;
|
|
63
65
|
private getRoles;
|
|
64
66
|
private getSubscriptionRole;
|
|
67
|
+
private getUnsubscribeBehaviors;
|
|
68
|
+
private getProrationBehaviors;
|
|
65
69
|
openModal(content: any): void;
|
|
66
70
|
onImageSelection(event: any): void;
|
|
67
71
|
uploadSquaredLogo(event: any): void;
|
|
@@ -82,8 +82,10 @@ export declare class SubscriptionUsersComponent extends AppBaseComponent impleme
|
|
|
82
82
|
onUserImpersonation(_event: any): void;
|
|
83
83
|
disable2fa(id: number): void;
|
|
84
84
|
remove2fa(_event: any): void;
|
|
85
|
+
/**
|
|
86
|
+
* Remove a member from the current subscription (without deleting the user).
|
|
87
|
+
*/
|
|
85
88
|
onDelete(user: User): void;
|
|
86
|
-
deleteUser(_event: any): void;
|
|
87
89
|
onMembersAdded(): void;
|
|
88
90
|
private getSubscriptionDetails;
|
|
89
91
|
static ɵfac: i0.ɵɵFactoryDeclaration<SubscriptionUsersComponent, never>;
|