@tstdl/base 0.90.6 → 0.90.7

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.
@@ -68,7 +68,7 @@ export const germanTstdlErrorsLocalization = {
68
68
  },
69
69
  enums: [
70
70
  enumerationLocalization(HttpErrorReason, {
71
- [HttpErrorReason.Unknown]: 'Unbekannt',
71
+ [HttpErrorReason.Unknown]: 'Unerwarteter Fehler',
72
72
  [HttpErrorReason.Cancelled]: 'Anfrage abgebrochen',
73
73
  [HttpErrorReason.Network]: 'Netzwerkfehler',
74
74
  [HttpErrorReason.InvalidRequest]: 'Ungültige Anfrage',
@@ -145,7 +145,7 @@ export const englishTstdlErrorsLocalization = {
145
145
  },
146
146
  enums: [
147
147
  enumerationLocalization(HttpErrorReason, {
148
- [HttpErrorReason.Unknown]: 'Unknown',
148
+ [HttpErrorReason.Unknown]: 'Unexpected error',
149
149
  [HttpErrorReason.Cancelled]: 'Request cancelled',
150
150
  [HttpErrorReason.Network]: 'Network error',
151
151
  [HttpErrorReason.InvalidRequest]: 'Invalid request',
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@tstdl/base",
3
- "version": "0.90.6",
3
+ "version": "0.90.7",
4
4
  "author": "Patrick Hein",
5
5
  "publishConfig": {
6
6
  "access": "public"
@@ -146,7 +146,7 @@
146
146
  "mjml": "^4.14",
147
147
  "mongodb": "^6.1",
148
148
  "nodemailer": "^6.9",
149
- "playwright": "^1.38",
149
+ "playwright": "^1.39",
150
150
  "preact": "^10.18",
151
151
  "preact-render-to-string": "^6.2",
152
152
  "undici": "^5.26",
@@ -11,13 +11,13 @@ export type PropertyNameProxyChild<T> = (T extends Record ? (PropertyNameProxy<T
11
11
  [cast]: <U extends T>() => PropertyNameProxyChild<U>;
12
12
  };
13
13
  export type PropertyNameOfExpressionObject<T> = {
14
- [P in keyof DeepNonNullable<T>]: PropertyNameOfExpressionObject<DeepNonNullable<T>[P]> & {
15
- [cast]: <U extends DeepNonNullable<T>[P]>() => PropertyNameOfExpressionObject<U>;
14
+ [P in keyof T]: PropertyNameOfExpressionObject<DeepNonNullable<T>[P]> & {
15
+ [cast]: <U extends T[P]>() => PropertyNameOfExpressionObject<DeepNonNullable<U>>;
16
16
  };
17
17
  };
18
18
  export type FlatPropertyNameOfExpressionObject<T> = {
19
- [P in keyof DeepFlatten<DeepNonNullable<T>>]: FlatPropertyNameOfExpressionObject<DeepFlatten<DeepNonNullable<T>>[P]> & {
20
- [cast]: <U extends DeepFlatten<DeepNonNullable<T>>[P]>() => FlatPropertyNameOfExpressionObject<U>;
19
+ [P in keyof DeepFlatten<T>]: FlatPropertyNameOfExpressionObject<DeepFlatten<DeepNonNullable<T>>[P]> & {
20
+ [cast]: <U extends DeepFlatten<T>[P]>() => FlatPropertyNameOfExpressionObject<DeepNonNullable<U>>;
21
21
  };
22
22
  };
23
23
  export declare function getPropertyName(name: string): PropertyName;