@open-charging-cloud/chargy-core 0.1.0 → 0.2.0

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.
Files changed (58) hide show
  1. package/README.md +45 -30
  2. package/dist/ACrypt.d.ts +21 -0
  3. package/dist/ACrypt.d.ts.map +1 -0
  4. package/dist/Alfen.d.ts +64 -0
  5. package/dist/Alfen.d.ts.map +1 -0
  6. package/dist/BSMCrypt01.d.ts +77 -0
  7. package/dist/BSMCrypt01.d.ts.map +1 -0
  8. package/dist/CanonicalJSON.d.ts +14 -0
  9. package/dist/CanonicalJSON.d.ts.map +1 -0
  10. package/dist/CryptoUtils.d.ts +47 -0
  11. package/dist/CryptoUtils.d.ts.map +1 -0
  12. package/dist/EMHCrypt01.d.ts +40 -0
  13. package/dist/EMHCrypt01.d.ts.map +1 -0
  14. package/dist/GDFCrypt01.d.ts +31 -0
  15. package/dist/GDFCrypt01.d.ts.map +1 -0
  16. package/dist/Mennekes.d.ts +87 -0
  17. package/dist/Mennekes.d.ts.map +1 -0
  18. package/dist/OCMF.d.ts +179 -0
  19. package/dist/OCMF.d.ts.map +1 -0
  20. package/dist/OCPI.d.ts +11 -0
  21. package/dist/OCPI.d.ts.map +1 -0
  22. package/dist/PCDF.d.ts +119 -0
  23. package/dist/PCDF.d.ts.map +1 -0
  24. package/dist/QIDigital_DCC.d.ts +398 -0
  25. package/dist/QIDigital_DCC.d.ts.map +1 -0
  26. package/dist/QIDigital_DCoA.d.ts +7 -0
  27. package/dist/QIDigital_DCoA.d.ts.map +1 -0
  28. package/dist/QIDigital_DCoC.d.ts +7 -0
  29. package/dist/QIDigital_DCoC.d.ts.map +1 -0
  30. package/dist/SAFE_XML.d.ts +35 -0
  31. package/dist/SAFE_XML.d.ts.map +1 -0
  32. package/dist/XMLContainer.d.ts +9 -0
  33. package/dist/XMLContainer.d.ts.map +1 -0
  34. package/dist/chargeIT.d.ts +13 -0
  35. package/dist/chargeIT.d.ts.map +1 -0
  36. package/dist/chargePoint.d.ts +44 -0
  37. package/dist/chargePoint.d.ts.map +1 -0
  38. package/dist/chargy.d.ts +86 -0
  39. package/dist/chargy.d.ts.map +1 -0
  40. package/dist/chargyLib.d.ts +207 -0
  41. package/dist/chargyLib.d.ts.map +1 -0
  42. package/dist/index.d.ts +32 -2354
  43. package/dist/index.d.ts.map +1 -0
  44. package/dist/interfaces/IChargeTransparencyLiveLink.d.ts +55 -0
  45. package/dist/interfaces/IChargeTransparencyLiveLink.d.ts.map +1 -0
  46. package/dist/interfaces/IChargeTransparencyRecord.d.ts +112 -0
  47. package/dist/interfaces/IChargeTransparencyRecord.d.ts.map +1 -0
  48. package/dist/interfaces/IPublicKeyInfo.d.ts +26 -0
  49. package/dist/interfaces/IPublicKeyInfo.d.ts.map +1 -0
  50. package/dist/interfaces/chargyInterfaces.d.ts +547 -0
  51. package/dist/interfaces/chargyInterfaces.d.ts.map +1 -0
  52. package/dist/qrCodeReader.d.ts +9 -0
  53. package/dist/qrCodeReader.d.ts.map +1 -0
  54. package/dist/secp224k1.d.ts +30 -0
  55. package/dist/secp224k1.d.ts.map +1 -0
  56. package/dist/verificationResults.d.ts +17 -0
  57. package/dist/verificationResults.d.ts.map +1 -0
  58. package/package.json +86 -84
@@ -0,0 +1,207 @@
1
+ import * as chargyInterfaces from './interfaces/chargyInterfaces';
2
+ import Decimal from 'decimal.js';
3
+ import type { Moment } from 'moment';
4
+ export type JSONLDObject = {
5
+ "@context": number;
6
+ };
7
+ export declare function isJSONLDObject(value: unknown): value is JSONLDObject;
8
+ export declare function toArrayBuffer(data: ArrayBuffer | Uint8Array): ArrayBuffer;
9
+ export declare function toUint8Array(data: ArrayBuffer | Uint8Array): Uint8Array;
10
+ export declare function normalizeXMLText(xmlText: string | undefined): string;
11
+ export declare function getDirectChildrenByLocalName(parent: Document | Element, localName: string): Element[];
12
+ export declare function getDirectChildByLocalName(parent: Document | Element, localName: string): Element | undefined;
13
+ export declare function getTrimmedTextContent(element?: Element): string | undefined;
14
+ export declare function parseDescription(parent: Element): chargyInterfaces.IMultilanguageText | undefined;
15
+ export declare function getElementsByLocalName(parent: Document | Element, localName: string): Element[];
16
+ export declare function ParseJSON_LD(Text: string, _Context?: string): Record<string, unknown>;
17
+ export declare function firstKey<T extends Record<string, unknown>>(obj: T): keyof T | undefined;
18
+ export declare function firstValue<T>(obj: Record<string, T> | undefined): T | undefined;
19
+ export declare function setUILocale(locale: string): void;
20
+ export declare function parseUTC(UTCTime: string | number): Moment;
21
+ export declare function time2human(Time: string | number): string;
22
+ export declare function UTC2human(UTCTime: string | number): string;
23
+ export declare function parseOBIS(OBIS: string): string;
24
+ export declare const OBIS_RegExpr: RegExp;
25
+ export declare function OBIS2Hex(OBIS: string): string;
26
+ export declare function OBIS2MeasurementName(OBISString: string): string;
27
+ export declare function measurementName2human(In: string): string;
28
+ export declare function IsNullOrEmpty(value: string | undefined): boolean;
29
+ export declare function WhenNullOrEmpty(value: string | undefined, replacement: string): string;
30
+ export declare function hex2bin(hex: string, Reverse?: boolean): string;
31
+ export declare function hex32(val: number): string;
32
+ export declare function parseHexString(str: string): number[];
33
+ export declare function createHexString(arr: Iterable<number>): string;
34
+ export declare function buf2hex(buffer: ArrayBuffer | Uint8Array): string;
35
+ export declare function hexToArrayBuffer(hex: string): ArrayBuffer;
36
+ export declare function hashFile(url: string): Promise<ArrayBuffer>;
37
+ export declare function ConcatenateBuffers(buffers: ArrayBuffer[]): ArrayBuffer;
38
+ export declare function intFromBytes(x: number[]): number;
39
+ export declare function getInt8Bytes(x: number): number[];
40
+ export declare function getInt16Bytes(x: number): number[];
41
+ export declare function getInt32Bytes(x: number): number[];
42
+ export declare function getInt64Bytes(x: number): number[];
43
+ export declare function SetHex(dv: DataView, hex: string, offset: number, reverse?: boolean): string;
44
+ export declare function SetTimestamp(dv: DataView, timestamp: string | Moment | undefined, offset: number, addLocalOffset?: boolean): string;
45
+ export declare function SetTimestamp32(dv: DataView, timestamp: string | Moment | undefined, offset: number, addLocalOffset?: boolean): string;
46
+ export declare function SetInt8(dv: DataView, value: number, offset: number): string;
47
+ export declare function SetUInt32(dv: DataView, value: number, offset: number, reverse?: boolean): string;
48
+ export declare function SetUInt64(dv: DataView, value: number, offset: number, reverse?: boolean): string;
49
+ export declare function SetUInt64D(dv: DataView, value: Decimal, offset: number, reverse?: boolean): string;
50
+ export declare function SetText(dv: DataView, text: string, offset: number): string;
51
+ export declare function SetUInt32_withCode(dv: DataView, value: number, scale: number, obis: number, offset: number, reverse?: boolean): string;
52
+ export declare function SetText_withLength(dv: DataView, text: string, offset: number): string;
53
+ export declare function Clone<T>(obj: T): T;
54
+ export declare function openFullscreen(): void;
55
+ export declare function closeFullscreen(): void;
56
+ export declare function CreateDiv(ParentDiv: HTMLDivElement, ClassName?: string, InnerHTML?: string): HTMLDivElement;
57
+ export declare function CreateDiv2(ParentDiv: HTMLDivElement, ChildClassName: string, ChildAInnerHTML: string, ChildBInnerHTML: string): HTMLDivElement;
58
+ export interface String {
59
+ isNullOrEmpty(): boolean;
60
+ isNotNullOrEmpty(): boolean;
61
+ }
62
+ export declare function pad(text: string | undefined, paddingValue: number): string;
63
+ /**
64
+ * Calculate the SHA256 hash
65
+ * @param message a text of data view
66
+ * @returns true, when the given text exists and is a valid string
67
+ */
68
+ export declare function sha256(message: string | DataView): Promise<string>;
69
+ /**
70
+ * Calculate the SHA384 hash
71
+ * @param message a text of data view
72
+ * @returns true, when the given text exists and is a valid string
73
+ */
74
+ export declare function sha384(message: string | DataView): Promise<string>;
75
+ /**
76
+ * Calculate the SHA512 hash
77
+ * @param message a text of data view
78
+ * @returns true, when the given text exists and is a valid string
79
+ */
80
+ export declare function sha512(message: string | DataView): Promise<string>;
81
+ /**
82
+ * A JSON object after runtime validation. Property values stay `unknown`
83
+ * and have to be narrowed individually (e.g. via isMandatoryString).
84
+ */
85
+ export type JSONObject = Record<string, unknown>;
86
+ /**
87
+ * Returns the given value as a json object, or undefined when it is not a json object.
88
+ */
89
+ export declare function asJSONObject(value: unknown): JSONObject | undefined;
90
+ /**
91
+ * Returns the given value as a json array, or undefined when it is not a json array.
92
+ */
93
+ export declare function asJSONArray(value: unknown): unknown[] | undefined;
94
+ /**
95
+ * Returns the given value as a string, or undefined when it is not a string.
96
+ */
97
+ export declare function asString(value: unknown): string | undefined;
98
+ /**
99
+ * Returns the given value as a number, or undefined when it is not a number.
100
+ */
101
+ export declare function asNumber(value: unknown): number | undefined;
102
+ /**
103
+ * Ensures, that the given json object exists and is a valid json object
104
+ * @param value a json object
105
+ * @returns true, when the given json object exists and is a valid json object
106
+ */
107
+ export declare function isMandatoryJSONObject(value: unknown): value is JSONObject;
108
+ /**
109
+ * Checks, whether the given json object exists and if yes wether it is a valid json object
110
+ * @param jsonObject a json object
111
+ * @returns true, when the given json object does not exist or when it exists, that it is a valid json object
112
+ */
113
+ export declare function isOptionalJSONObject(value: unknown): value is JSONObject | undefined | null;
114
+ /**
115
+ * Ensures, that the given json array exists and is a valid json array
116
+ * @param value a json array
117
+ * @returns true, when the given json array exists and is a valid json array
118
+ */
119
+ export declare function isMandatoryJSONArray(value: unknown): value is unknown[];
120
+ /**
121
+ * Ensures, that the given json array of strings exists and is a valid json array of strings
122
+ * @param value a json array of strings
123
+ * @returns true, when the given json array exists of strings and is a valid json array of strings
124
+ */
125
+ export declare function isMandatoryArrayOfStrings(value: unknown): value is string[];
126
+ /**
127
+ * Checks, whether the given json array exists and if yes wether it is a valid json array
128
+ * @param value a json array
129
+ * @returns true, when the given json array does not exist or when it exists and is a valid json array
130
+ */
131
+ export declare function isOptionalJSONArray(value: unknown): value is unknown[] | undefined | null;
132
+ /**
133
+ * Checks, whether the given json array of strings exists and if yes wether it is a valid json array of strings
134
+ * @param value a json array of strings
135
+ * @returns true, when the given json array of strings does not exist or when it exists and is a valid json array of strings
136
+ */
137
+ export declare function isOptionalArrayOfStrings(value: unknown): value is string[] | undefined | null;
138
+ /**
139
+ * Checks, whether the given json array exists and if yes wether it is a valid json object
140
+ * @param jsonArray a json object
141
+ * @returns true, when the given json array does not exist or when it exists, that it is a valid json array
142
+ */
143
+ export declare function isOptionalJSONArrayError(jsonArray: unknown): boolean;
144
+ /**
145
+ * Checks, whether the given json array exists and if yes wether it is a valid json object
146
+ * @param jsonArray a json object
147
+ * @returns true, when the given json array does not exist or when it exists, that it is a valid json array
148
+ */
149
+ export declare function isOptionalJSONArrayOk(jsonArray: unknown): boolean;
150
+ /**
151
+ * Ensures, that the given boolean exists and is a valid boolean
152
+ * @param value a boolean
153
+ * @returns true, when the given boolean exists and is a valid boolean
154
+ */
155
+ export declare function isMandatoryBoolean(value: unknown): value is boolean;
156
+ /**
157
+ * Ensures, that the given text exists and is a valid string
158
+ * @param value a string
159
+ * @returns true, when the given text exists and is a valid string
160
+ */
161
+ export declare function isMandatoryString(value: unknown): value is string;
162
+ /**
163
+ * Ensures, that the given text is a valid string, if it exists
164
+ * @param value a string
165
+ * @returns true, when the given text is a valid string, if it exists
166
+ */
167
+ export declare function isOptionalString(value: unknown): value is string | undefined | null;
168
+ /**
169
+ * Ensures, that the given text exists and is a valid URL
170
+ * @param value an URL
171
+ * @returns true, when the given text exists and is a valid URL
172
+ */
173
+ export declare function isMandatoryURL(value: unknown): value is string;
174
+ /**
175
+ * Ensures, that the given text is a valid URL, if it exists
176
+ * @param value an URL
177
+ * @returns true, when the given text is a valid URL, if it exists
178
+ */
179
+ export declare function isOptionalURL(value: unknown): value is string | undefined | null;
180
+ /**
181
+ * Ensures, that the given number exists and is a valid number
182
+ * @param value a number
183
+ * @returns true, when the given number exists and is a valid number
184
+ */
185
+ export declare function isMandatoryNumber(value: unknown): value is number;
186
+ /**
187
+ * Ensures, that the given number is a valid number, if it exists
188
+ * @param value a number
189
+ * @returns true, when the given number is a valid number, if it exists
190
+ */
191
+ export declare function isOptionalNumber(value: unknown): value is number | undefined | null;
192
+ /**
193
+ * Ensures, that the given decimal number exists and is a valid decimal number
194
+ * @param value a decimal number
195
+ * @returns true, when the given decimal number exists and is a valid decimal number
196
+ */
197
+ export declare function isMandatoryDecimal(value: unknown): value is Decimal;
198
+ /**
199
+ * Ensures, that the given decimal number is a valid decimal number, if it exists
200
+ * @param value a decimal number
201
+ * @returns true, when the given decimal number is a valid decimal number, if it exists
202
+ */
203
+ export declare function isOptionalDecimal(value: unknown): value is Decimal | undefined | null;
204
+ export declare function parseNumber(value: string): number | null;
205
+ export declare function InformationRelevanceToString(InfoRelevance: chargyInterfaces.InformationRelevance): string;
206
+ export declare function jsonPrettyPrinter(value: unknown, KeyLookup?: (path: string, key: string) => string): string;
207
+ //# sourceMappingURL=chargyLib.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"chargyLib.d.ts","sourceRoot":"","sources":["../src/chargyLib.ts"],"names":[],"mappings":"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"}