@osovitny/anatoly 3.17.80 → 3.17.82
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/core/consts/storageKeys.mjs +23 -0
- package/esm2022/lib/core/services/appcontext.service.mjs +39 -1
- package/esm2022/lib/data/data.module.mjs +4 -1
- package/esm2022/lib/data/exports.mjs +3 -1
- package/esm2022/lib/data/services/billing/discountcodes-api.service.mjs +37 -0
- package/fesm2022/osovitny-anatoly.mjs +94 -1
- package/fesm2022/osovitny-anatoly.mjs.map +1 -1
- package/lib/core/consts/storageKeys.d.ts +6 -0
- package/lib/core/services/appcontext.service.d.ts +11 -0
- package/lib/data/exports.d.ts +2 -0
- package/lib/data/services/billing/discountcodes-api.service.d.ts +11 -0
- package/lib/ui/components/index.d.ts +1 -1
- package/package.json +1 -1
|
@@ -31,6 +31,17 @@ export declare class AppContextService extends ApiServiceBase {
|
|
|
31
31
|
get current(): any;
|
|
32
32
|
set current(value: any);
|
|
33
33
|
get user(): any;
|
|
34
|
+
get version(): any;
|
|
35
|
+
set version(value: any);
|
|
36
|
+
get currency(): any;
|
|
37
|
+
set currency(value: any);
|
|
38
|
+
clearCurrency(): void;
|
|
39
|
+
get countries(): any;
|
|
40
|
+
set countries(value: any);
|
|
41
|
+
clearCountries(): void;
|
|
42
|
+
get languages(): any;
|
|
43
|
+
set languages(value: any);
|
|
44
|
+
clearLanguages(): void;
|
|
34
45
|
static ɵfac: i0.ɵɵFactoryDeclaration<AppContextService, never>;
|
|
35
46
|
static ɵprov: i0.ɵɵInjectableDeclaration<AppContextService>;
|
|
36
47
|
}
|
package/lib/data/exports.d.ts
CHANGED
|
@@ -1,5 +1,7 @@
|
|
|
1
1
|
export * from './base/api.service';
|
|
2
2
|
export * from './base/grid/grid-read.service';
|
|
3
3
|
export * from './base/grid/grid-edit.service';
|
|
4
|
+
export * from './services/billing/discountcodes-api.service';
|
|
5
|
+
export * from './services/billing/payments-api.service';
|
|
4
6
|
export * from './services/core-api.service';
|
|
5
7
|
export * from './services/emails-api.service';
|
|
@@ -0,0 +1,11 @@
|
|
|
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 DiscountCodesApiService extends ApiServiceBase {
|
|
6
|
+
protected http: HttpClient;
|
|
7
|
+
constructor(http: HttpClient);
|
|
8
|
+
getDiscountCode(code: any): Observable<any>;
|
|
9
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<DiscountCodesApiService, never>;
|
|
10
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<DiscountCodesApiService>;
|
|
11
|
+
}
|
|
@@ -1,2 +1,2 @@
|
|
|
1
1
|
import { BuyAccessButtonComponent, SubscribePlanButtonComponent, CardComponent, CheckIconComponent, Copy2ClipboardComponent, CountryDropdownlist, TimezoneDropdownlist, NodataComponent, PageSpinnerComponent, LoadingComponent } from './exports';
|
|
2
|
-
export declare const MAIN_COMPONENTS: (typeof
|
|
2
|
+
export declare const MAIN_COMPONENTS: (typeof TimezoneDropdownlist | typeof CountryDropdownlist | typeof SubscribePlanButtonComponent | typeof BuyAccessButtonComponent | typeof CheckIconComponent | typeof NodataComponent | typeof LoadingComponent | typeof PageSpinnerComponent | typeof Copy2ClipboardComponent | typeof CardComponent)[];
|