@experteam-mx/ngx-services 16.1.1 → 16.1.2
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/apis/models/api-external-ops.types.mjs +1 -1
- package/index.d.ts +5 -5
- package/lib/apis/api-catalogs.service.d.ts +26 -26
- package/lib/apis/api-companies.service.d.ts +163 -163
- package/lib/apis/api-external-ops.service.d.ts +34 -34
- package/lib/apis/api-security.service.d.ts +79 -79
- package/lib/apis/models/api-catalogs.interfaces.d.ts +75 -75
- package/lib/apis/models/api-catalogs.types.d.ts +5 -5
- package/lib/apis/models/api-companies.interfaces.d.ts +380 -380
- package/lib/apis/models/api-companies.types.d.ts +75 -75
- package/lib/apis/models/api-external-ops.interfaces.d.ts +23 -23
- package/lib/apis/models/api-external-ops.types.d.ts +18 -18
- package/lib/apis/models/api-security.interfaces.d.ts +55 -55
- package/lib/apis/models/api-security.types.d.ts +30 -30
- package/lib/apis/models/api.models.d.ts +23 -23
- package/lib/helpers/http.d.ts +38 -38
- package/lib/interceptors/api-headers.interceptor.d.ts +16 -16
- package/lib/interceptors/api-key.interceptor.d.ts +19 -19
- package/lib/interceptors/api-token.interceptor.d.ts +19 -19
- package/lib/interceptors/http-caching.interceptor.d.ts +12 -12
- package/lib/ngx-services.models.d.ts +9 -9
- package/lib/ngx-services.module.d.ts +17 -17
- package/package.json +5 -11
- package/public-api.d.ts +19 -19
|
@@ -1,75 +1,75 @@
|
|
|
1
|
-
import { SymfonyModel } from './api.models';
|
|
2
|
-
export interface Country extends SymfonyModel {
|
|
3
|
-
name: string;
|
|
4
|
-
code: string;
|
|
5
|
-
codeAndName: string;
|
|
6
|
-
isoCode: string;
|
|
7
|
-
codePhone: string;
|
|
8
|
-
locale: string;
|
|
9
|
-
locationType: LocationType;
|
|
10
|
-
unit: Unit;
|
|
11
|
-
timezone: string;
|
|
12
|
-
hasImportService: boolean;
|
|
13
|
-
phoneDigits: number;
|
|
14
|
-
locationTypeFields: LocationTypeFields;
|
|
15
|
-
postalCodeSuffixRegex: string;
|
|
16
|
-
decimalPoint: number;
|
|
17
|
-
max_quantity_document_piece: number;
|
|
18
|
-
max_quantity_package_piece: number;
|
|
19
|
-
weight_restriction_piece: number;
|
|
20
|
-
restriction_shipment: number;
|
|
21
|
-
restriction_dimension: number;
|
|
22
|
-
max_declared_value: number;
|
|
23
|
-
decimal_separator: string;
|
|
24
|
-
thousands_separator: string;
|
|
25
|
-
label_printer_name: string;
|
|
26
|
-
receipt_printer_name: string;
|
|
27
|
-
others_printer_name: string;
|
|
28
|
-
territories: number[];
|
|
29
|
-
use_billing?: boolean;
|
|
30
|
-
}
|
|
31
|
-
export interface LocationType extends SymfonyModel {
|
|
32
|
-
code: string;
|
|
33
|
-
name: string;
|
|
34
|
-
priority: number;
|
|
35
|
-
}
|
|
36
|
-
export interface Unit extends SymfonyModel {
|
|
37
|
-
name: string;
|
|
38
|
-
weight: string;
|
|
39
|
-
dimension: string;
|
|
40
|
-
}
|
|
41
|
-
export interface LocationTypeFields {
|
|
42
|
-
city: City;
|
|
43
|
-
postalCode: PostalCode;
|
|
44
|
-
suburb: Suburb;
|
|
45
|
-
}
|
|
46
|
-
export interface City {
|
|
47
|
-
enabled: boolean;
|
|
48
|
-
required: boolean;
|
|
49
|
-
}
|
|
50
|
-
export interface PostalCode {
|
|
51
|
-
enabled: boolean;
|
|
52
|
-
required: boolean;
|
|
53
|
-
}
|
|
54
|
-
export interface Suburb {
|
|
55
|
-
enabled: boolean;
|
|
56
|
-
required: boolean;
|
|
57
|
-
}
|
|
58
|
-
export interface Language extends SymfonyModel {
|
|
59
|
-
code: string;
|
|
60
|
-
name: string;
|
|
61
|
-
}
|
|
62
|
-
export interface State extends SymfonyModel {
|
|
63
|
-
country: Country;
|
|
64
|
-
code: string;
|
|
65
|
-
name: string;
|
|
66
|
-
}
|
|
67
|
-
export interface Currency extends SymfonyModel {
|
|
68
|
-
code: string;
|
|
69
|
-
name: string;
|
|
70
|
-
symbol: string;
|
|
71
|
-
}
|
|
72
|
-
export interface Language extends SymfonyModel {
|
|
73
|
-
code: string;
|
|
74
|
-
name: string;
|
|
75
|
-
}
|
|
1
|
+
import { SymfonyModel } from './api.models';
|
|
2
|
+
export interface Country extends SymfonyModel {
|
|
3
|
+
name: string;
|
|
4
|
+
code: string;
|
|
5
|
+
codeAndName: string;
|
|
6
|
+
isoCode: string;
|
|
7
|
+
codePhone: string;
|
|
8
|
+
locale: string;
|
|
9
|
+
locationType: LocationType;
|
|
10
|
+
unit: Unit;
|
|
11
|
+
timezone: string;
|
|
12
|
+
hasImportService: boolean;
|
|
13
|
+
phoneDigits: number;
|
|
14
|
+
locationTypeFields: LocationTypeFields;
|
|
15
|
+
postalCodeSuffixRegex: string;
|
|
16
|
+
decimalPoint: number;
|
|
17
|
+
max_quantity_document_piece: number;
|
|
18
|
+
max_quantity_package_piece: number;
|
|
19
|
+
weight_restriction_piece: number;
|
|
20
|
+
restriction_shipment: number;
|
|
21
|
+
restriction_dimension: number;
|
|
22
|
+
max_declared_value: number;
|
|
23
|
+
decimal_separator: string;
|
|
24
|
+
thousands_separator: string;
|
|
25
|
+
label_printer_name: string;
|
|
26
|
+
receipt_printer_name: string;
|
|
27
|
+
others_printer_name: string;
|
|
28
|
+
territories: number[];
|
|
29
|
+
use_billing?: boolean;
|
|
30
|
+
}
|
|
31
|
+
export interface LocationType extends SymfonyModel {
|
|
32
|
+
code: string;
|
|
33
|
+
name: string;
|
|
34
|
+
priority: number;
|
|
35
|
+
}
|
|
36
|
+
export interface Unit extends SymfonyModel {
|
|
37
|
+
name: string;
|
|
38
|
+
weight: string;
|
|
39
|
+
dimension: string;
|
|
40
|
+
}
|
|
41
|
+
export interface LocationTypeFields {
|
|
42
|
+
city: City;
|
|
43
|
+
postalCode: PostalCode;
|
|
44
|
+
suburb: Suburb;
|
|
45
|
+
}
|
|
46
|
+
export interface City {
|
|
47
|
+
enabled: boolean;
|
|
48
|
+
required: boolean;
|
|
49
|
+
}
|
|
50
|
+
export interface PostalCode {
|
|
51
|
+
enabled: boolean;
|
|
52
|
+
required: boolean;
|
|
53
|
+
}
|
|
54
|
+
export interface Suburb {
|
|
55
|
+
enabled: boolean;
|
|
56
|
+
required: boolean;
|
|
57
|
+
}
|
|
58
|
+
export interface Language extends SymfonyModel {
|
|
59
|
+
code: string;
|
|
60
|
+
name: string;
|
|
61
|
+
}
|
|
62
|
+
export interface State extends SymfonyModel {
|
|
63
|
+
country: Country;
|
|
64
|
+
code: string;
|
|
65
|
+
name: string;
|
|
66
|
+
}
|
|
67
|
+
export interface Currency extends SymfonyModel {
|
|
68
|
+
code: string;
|
|
69
|
+
name: string;
|
|
70
|
+
symbol: string;
|
|
71
|
+
}
|
|
72
|
+
export interface Language extends SymfonyModel {
|
|
73
|
+
code: string;
|
|
74
|
+
name: string;
|
|
75
|
+
}
|
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import { Language } from './api-catalogs.interfaces';
|
|
2
|
-
export type LanguagesData = {
|
|
3
|
-
languages: Language[];
|
|
4
|
-
total: number;
|
|
5
|
-
};
|
|
1
|
+
import { Language } from './api-catalogs.interfaces';
|
|
2
|
+
export type LanguagesData = {
|
|
3
|
+
languages: Language[];
|
|
4
|
+
total: number;
|
|
5
|
+
};
|