@otskit/client 0.3.0 → 0.4.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/dist/index.cjs +26 -1481
- package/dist/index.d.cts +9 -3
- package/dist/index.d.ts +9 -3
- package/dist/index.js +26 -1470
- package/package.json +4 -3
package/dist/index.d.cts
CHANGED
|
@@ -99,7 +99,7 @@ interface VerificationNetworkError {
|
|
|
99
99
|
type VerificationResult = VerificationSuccess | VerificationPending | VerificationInvalid | VerificationNetworkError;
|
|
100
100
|
/** Type guard — verdadero si la verificación fue exitosa. */
|
|
101
101
|
declare const isVerified: (r: VerificationResult) => r is VerificationSuccess;
|
|
102
|
-
/** Default calendar servers */
|
|
102
|
+
/** Default calendar servers. Sourced from @otskit/core (single source of truth). */
|
|
103
103
|
declare const DEFAULT_CALENDARS: string[];
|
|
104
104
|
/** Default resilience configuration */
|
|
105
105
|
declare const DEFAULT_RESILIENCE: ResilienceOptions;
|
|
@@ -368,9 +368,15 @@ declare class UrlWhitelist {
|
|
|
368
368
|
contains(url: string): boolean;
|
|
369
369
|
toString(): string;
|
|
370
370
|
}
|
|
371
|
-
/**
|
|
371
|
+
/**
|
|
372
|
+
* Default trusted calendars for verification/upgrade.
|
|
373
|
+
* Patterns sourced from @otskit/core (single source of truth).
|
|
374
|
+
*/
|
|
372
375
|
declare const DEFAULT_CALENDAR_WHITELIST: UrlWhitelist;
|
|
373
|
-
/**
|
|
376
|
+
/**
|
|
377
|
+
* Default aggregators to submit digests to when stamping.
|
|
378
|
+
* Sourced from @otskit/core (single source of truth).
|
|
379
|
+
*/
|
|
374
380
|
declare const DEFAULT_AGGREGATORS: readonly string[];
|
|
375
381
|
|
|
376
382
|
/** Explorador Esplora público por defecto (Bitcoin mainnet). */
|
package/dist/index.d.ts
CHANGED
|
@@ -99,7 +99,7 @@ interface VerificationNetworkError {
|
|
|
99
99
|
type VerificationResult = VerificationSuccess | VerificationPending | VerificationInvalid | VerificationNetworkError;
|
|
100
100
|
/** Type guard — verdadero si la verificación fue exitosa. */
|
|
101
101
|
declare const isVerified: (r: VerificationResult) => r is VerificationSuccess;
|
|
102
|
-
/** Default calendar servers */
|
|
102
|
+
/** Default calendar servers. Sourced from @otskit/core (single source of truth). */
|
|
103
103
|
declare const DEFAULT_CALENDARS: string[];
|
|
104
104
|
/** Default resilience configuration */
|
|
105
105
|
declare const DEFAULT_RESILIENCE: ResilienceOptions;
|
|
@@ -368,9 +368,15 @@ declare class UrlWhitelist {
|
|
|
368
368
|
contains(url: string): boolean;
|
|
369
369
|
toString(): string;
|
|
370
370
|
}
|
|
371
|
-
/**
|
|
371
|
+
/**
|
|
372
|
+
* Default trusted calendars for verification/upgrade.
|
|
373
|
+
* Patterns sourced from @otskit/core (single source of truth).
|
|
374
|
+
*/
|
|
372
375
|
declare const DEFAULT_CALENDAR_WHITELIST: UrlWhitelist;
|
|
373
|
-
/**
|
|
376
|
+
/**
|
|
377
|
+
* Default aggregators to submit digests to when stamping.
|
|
378
|
+
* Sourced from @otskit/core (single source of truth).
|
|
379
|
+
*/
|
|
374
380
|
declare const DEFAULT_AGGREGATORS: readonly string[];
|
|
375
381
|
|
|
376
382
|
/** Explorador Esplora público por defecto (Bitcoin mainnet). */
|