@depup/i18next 26.0.1-depup.0 → 26.0.2-depup.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.
package/README.md CHANGED
@@ -13,8 +13,8 @@ npm install @depup/i18next
13
13
 
14
14
  | Field | Value |
15
15
  |-------|-------|
16
- | Original | [i18next](https://www.npmjs.com/package/i18next) @ 26.0.1 |
17
- | Processed | 2026-03-28 |
16
+ | Original | [i18next](https://www.npmjs.com/package/i18next) @ 26.0.2 |
17
+ | Processed | 2026-03-30 |
18
18
  | Smoke test | passed |
19
19
  | Deps updated | 0 |
20
20
 
package/changes.json CHANGED
@@ -1,5 +1,5 @@
1
1
  {
2
2
  "bumped": {},
3
- "timestamp": "2026-03-28T12:18:56.318Z",
3
+ "timestamp": "2026-03-30T12:27:23.199Z",
4
4
  "totalUpdated": 0
5
5
  }
@@ -1 +1 @@
1
- {"type":"module","version":"26.0.1"}
1
+ {"type":"module","version":"26.0.2"}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@depup/i18next",
3
- "version": "26.0.1-depup.0",
3
+ "version": "26.0.2-depup.0",
4
4
  "description": "i18next internationalization framework (with updated dependencies)",
5
5
  "main": "./dist/cjs/i18next.js",
6
6
  "module": "./dist/esm/i18next.js",
@@ -127,8 +127,8 @@
127
127
  "changes": {},
128
128
  "depsUpdated": 0,
129
129
  "originalPackage": "i18next",
130
- "originalVersion": "26.0.1",
131
- "processedAt": "2026-03-28T12:19:15.625Z",
130
+ "originalVersion": "26.0.2",
131
+ "processedAt": "2026-03-30T12:27:46.759Z",
132
132
  "smokeTest": "passed"
133
133
  }
134
134
  }
package/typescript/t.d.ts CHANGED
@@ -400,7 +400,9 @@ interface TFunctionStrict<
400
400
  options?: TOpt &
401
401
  InterpolationMap<Ret> & {
402
402
  context?: Key extends string
403
- ? ContextOfKey<Key, Ns, TOpt, EffectiveKPrefix<KPrefix, TOpt>>
403
+ ? unknown extends TOpt['context']
404
+ ? TOpt['context']
405
+ : ContextOfKey<Key, Ns, TOpt, EffectiveKPrefix<KPrefix, TOpt>>
404
406
  : never;
405
407
  },
406
408
  ): TFunctionReturnOptionalDetails<TFunctionProcessReturnValue<$NoInfer<Ret>, never>, TOpt>;
@@ -414,7 +416,9 @@ interface TFunctionStrict<
414
416
  options?: TOpt &
415
417
  InterpolationMap<Ret> & {
416
418
  context?: Key extends string
417
- ? ContextOfKey<Key, Ns, TOpt, EffectiveKPrefix<KPrefix, TOpt>>
419
+ ? unknown extends TOpt['context']
420
+ ? TOpt['context']
421
+ : ContextOfKey<Key, Ns, TOpt, EffectiveKPrefix<KPrefix, TOpt>>
418
422
  : never;
419
423
  },
420
424
  ): TFunctionReturnOptionalDetails<TFunctionProcessReturnValue<$NoInfer<Ret>, never>, TOpt>;
@@ -431,12 +435,16 @@ interface TFunctionNonStrict<
431
435
  const ActualOptions extends Omit<TOpt, 'context'> &
432
436
  InterpolationMap<Ret> & {
433
437
  context?: Key extends string
434
- ? ContextOfKey<Key, Ns, TOpt, EffectiveKPrefix<KPrefix, TOpt>>
438
+ ? unknown extends TOpt['context']
439
+ ? TOpt['context']
440
+ : ContextOfKey<Key, Ns, TOpt, EffectiveKPrefix<KPrefix, TOpt>>
435
441
  : never;
436
442
  } = TOpt &
437
443
  InterpolationMap<Ret> & {
438
444
  context?: Key extends string
439
- ? ContextOfKey<Key, Ns, TOpt, EffectiveKPrefix<KPrefix, TOpt>>
445
+ ? unknown extends TOpt['context']
446
+ ? TOpt['context']
447
+ : ContextOfKey<Key, Ns, TOpt, EffectiveKPrefix<KPrefix, TOpt>>
440
448
  : never;
441
449
  },
442
450
  DefaultValue extends string = never,