@osovitny/anatoly 3.20.31 → 3.20.33
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/fesm2022/osovitny-anatoly.mjs +509 -486
- package/fesm2022/osovitny-anatoly.mjs.map +1 -1
- package/index.d.ts +7 -5
- package/package.json +1 -1
package/index.d.ts
CHANGED
|
@@ -157,7 +157,8 @@ declare class BuyAccessButtonComponent implements OnInit {
|
|
|
157
157
|
isUserSignedIn: boolean;
|
|
158
158
|
currentPlanId: number;
|
|
159
159
|
plan: number;
|
|
160
|
-
|
|
160
|
+
visiblePlanStatus: boolean;
|
|
161
|
+
visibleSignup: boolean;
|
|
161
162
|
planselect: EventEmitter<any>;
|
|
162
163
|
constructor(appContext: AppContextService);
|
|
163
164
|
ngOnInit(): void;
|
|
@@ -165,7 +166,7 @@ declare class BuyAccessButtonComponent implements OnInit {
|
|
|
165
166
|
private setValues;
|
|
166
167
|
onPlanSelect(): void;
|
|
167
168
|
static ɵfac: i0.ɵɵFactoryDeclaration<BuyAccessButtonComponent, never>;
|
|
168
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<BuyAccessButtonComponent, "anatoly-billing-buyaccess-button", never, { "plan": { "alias": "plan"; "required": false; }; "
|
|
169
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<BuyAccessButtonComponent, "anatoly-billing-buyaccess-button", never, { "plan": { "alias": "plan"; "required": false; }; "visiblePlanStatus": { "alias": "visiblePlanStatus"; "required": false; }; "visibleSignup": { "alias": "visibleSignup"; "required": false; }; }, { "planselect": "planselect"; }, never, never, false, never>;
|
|
169
170
|
}
|
|
170
171
|
|
|
171
172
|
declare class SubscribePlanButtonComponent implements OnInit {
|
|
@@ -175,7 +176,8 @@ declare class SubscribePlanButtonComponent implements OnInit {
|
|
|
175
176
|
currentPlanId: number;
|
|
176
177
|
requestedPlanId: number;
|
|
177
178
|
plan: number;
|
|
178
|
-
|
|
179
|
+
visiblePlanStatus: boolean;
|
|
180
|
+
visibleSignup: boolean;
|
|
179
181
|
planselect: EventEmitter<any>;
|
|
180
182
|
constructor(appContext: AppContextService);
|
|
181
183
|
ngOnInit(): void;
|
|
@@ -183,7 +185,7 @@ declare class SubscribePlanButtonComponent implements OnInit {
|
|
|
183
185
|
private setValues;
|
|
184
186
|
onPlanSelect(): void;
|
|
185
187
|
static ɵfac: i0.ɵɵFactoryDeclaration<SubscribePlanButtonComponent, never>;
|
|
186
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<SubscribePlanButtonComponent, "anatoly-billing-subscribe-plan-button", never, { "plan": { "alias": "plan"; "required": false; }; "
|
|
188
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<SubscribePlanButtonComponent, "anatoly-billing-subscribe-plan-button", never, { "plan": { "alias": "plan"; "required": false; }; "visiblePlanStatus": { "alias": "visiblePlanStatus"; "required": false; }; "visibleSignup": { "alias": "visibleSignup"; "required": false; }; }, { "planselect": "planselect"; }, never, never, false, never>;
|
|
187
189
|
}
|
|
188
190
|
|
|
189
191
|
declare function getAppSettingsById(id: any): any;
|
|
@@ -1204,7 +1206,7 @@ type PayerSelected = "PAYPAL_CREDIT" | "PAYPAL";
|
|
|
1204
1206
|
type PayPalUserAction = "CONTINUE" | "PAY_NOW";
|
|
1205
1207
|
type ShippingPreference = "GET_FROM_FILE" | "NO_SHIPPING" | "SET_PROVIDED_ADDRESS";
|
|
1206
1208
|
type PaypalLandingPage = "LOGIN" | "BILLING";
|
|
1207
|
-
type OrderIntent = "
|
|
1209
|
+
type OrderIntent = "capture" | "authorize" | "subscription" | "tokenize";
|
|
1208
1210
|
type DisbursementMode = "INSTANT" | "DELAYED";
|
|
1209
1211
|
type ItemCategory = "DIGITAL_GOODS" | "PHYSICAL_GOODS";
|
|
1210
1212
|
type PhoneType = "FAX" | "HOME" | "MOBILE" | "OTHER" | "PAGER";
|