@osovitny/anatoly 3.17.106 → 3.17.107
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/data/data.module.mjs +4 -1
- package/esm2022/lib/data/services/billing/subscriptions-api.service.mjs +49 -0
- package/esm2022/lib/ui/components/card/card.component.mjs +4 -4
- package/esm2022/lib/ui/forms/components/address/address.component.mjs +36 -36
- package/esm2022/lib/ui/forms/components/company/company.component.mjs +20 -20
- package/fesm2022/osovitny-anatoly.mjs +102 -57
- package/fesm2022/osovitny-anatoly.mjs.map +1 -1
- package/lib/data/services/billing/subscriptions-api.service.d.ts +12 -0
- package/lib/ui/components/card/card.component.d.ts +1 -1
- package/lib/ui/components/index.d.ts +1 -1
- package/package.json +1 -1
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
import { HttpClient } from '@angular/common/http';
|
|
2
|
+
import { Observable } from 'rxjs';
|
|
3
|
+
import { ApiServiceBase } from '../../base/api.service';
|
|
4
|
+
import * as i0 from "@angular/core";
|
|
5
|
+
export declare class SubscriptionsApiService extends ApiServiceBase {
|
|
6
|
+
protected http: HttpClient;
|
|
7
|
+
constructor(http: HttpClient);
|
|
8
|
+
getSubscriptions(data: any): Observable<any[]>;
|
|
9
|
+
addSubscription(billingPlan: any, currentSubscriptionId: any, newSubscriptionId: any, success?: Function, error?: Function): void;
|
|
10
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<SubscriptionsApiService, never>;
|
|
11
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<SubscriptionsApiService>;
|
|
12
|
+
}
|
|
@@ -2,5 +2,5 @@ import { ComponentBase } from '../base/components/component';
|
|
|
2
2
|
import * as i0 from "@angular/core";
|
|
3
3
|
export declare class CardComponent extends ComponentBase {
|
|
4
4
|
static ɵfac: i0.ɵɵFactoryDeclaration<CardComponent, never>;
|
|
5
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<CardComponent, "anatoly-card", never, {}, {}, never, ["
|
|
5
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<CardComponent, "anatoly-card", never, {}, {}, never, ["card-header", "card-body", "*", "card-footer"], false, never>;
|
|
6
6
|
}
|
|
@@ -1,2 +1,2 @@
|
|
|
1
1
|
import { BuyAccessButtonComponent, SubscribePlanButtonComponent, CardComponent, CheckIconComponent, CountryDropdownlist, TimezoneDropdownlist, NodataComponent, PageSpinnerComponent, LoadingComponent } from './exports';
|
|
2
|
-
export declare const MAIN_COMPONENTS: (typeof
|
|
2
|
+
export declare const MAIN_COMPONENTS: (typeof BuyAccessButtonComponent | typeof SubscribePlanButtonComponent | typeof CardComponent | typeof CountryDropdownlist | typeof TimezoneDropdownlist | typeof CheckIconComponent | typeof NodataComponent | typeof LoadingComponent | typeof PageSpinnerComponent)[];
|