@shakerquiz/utilities 0.2.42 → 0.2.45
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/package.json
CHANGED
|
@@ -1,3 +1,5 @@
|
|
|
1
|
+
import { URLOptions } from "@yurkimus/url";
|
|
2
|
+
|
|
1
3
|
export namespace Features {
|
|
2
4
|
let Checkin: "Checkin";
|
|
3
5
|
let Cities: "Cities";
|
|
@@ -375,6 +377,6 @@ export namespace FeatureMethodRequirements {
|
|
|
375
377
|
*/
|
|
376
378
|
export const FeatureNetworkOrigins: Map<Feature, Map<Network, string>>;
|
|
377
379
|
/**
|
|
378
|
-
* @type {Map<Feature, Map<Network, Nullable<(options?:
|
|
380
|
+
* @type {Map<Feature, Map<Network, Nullable<(options?: URLOptions) => URL>>>}
|
|
379
381
|
*/
|
|
380
|
-
export const FeatureNetworkUrls: Map<Feature, Map<Network, Nullable<(options?:
|
|
382
|
+
export const FeatureNetworkUrls: Map<Feature, Map<Network, Nullable<(options?: URLOptions) => URL>>>;
|
|
@@ -11,7 +11,7 @@ import { Networks } from '../enumerations/networks.js'
|
|
|
11
11
|
import { Services } from '../enumerations/services.js'
|
|
12
12
|
|
|
13
13
|
/**
|
|
14
|
-
* @param {Record<Service, Record<Network, URL['origin']
|
|
14
|
+
* @param {Partial<Record<Service, Partial<Record<Network, URL['origin']>>>>} origins
|
|
15
15
|
*
|
|
16
16
|
* @returns {void}
|
|
17
17
|
*/
|