@quoll/lib
Advanced tools
Comparing version 0.5.4 to 0.5.5
@@ -6,2 +6,6 @@ # Change Log | ||
## [0.5.5](https://github.com/mzogheib/quoll/compare/@quoll/lib@0.5.4...@quoll/lib@0.5.5) (2024-08-12) | ||
**Note:** Version bump only for package @quoll/lib | ||
## [0.5.4](https://github.com/mzogheib/quoll/compare/@quoll/lib@0.5.3...@quoll/lib@0.5.4) (2024-08-04) | ||
@@ -8,0 +12,0 @@ |
export * from "./modules"; | ||
export * from "./services"; | ||
//# sourceMappingURL=index.d.ts.map |
@@ -19,1 +19,2 @@ "use strict"; | ||
__exportStar(require("./services"), exports); | ||
//# sourceMappingURL=index.js.map |
export * from "./types"; | ||
export * from "./utils"; | ||
//# sourceMappingURL=index.d.ts.map |
@@ -19,1 +19,2 @@ "use strict"; | ||
__exportStar(require("./utils"), exports); | ||
//# sourceMappingURL=index.js.map |
@@ -18,1 +18,2 @@ /** | ||
export type ISO8601DateAndTime = string; | ||
//# sourceMappingURL=types.d.ts.map |
@@ -8,1 +8,2 @@ "use strict"; | ||
Object.defineProperty(exports, "__esModule", { value: true }); | ||
//# sourceMappingURL=types.js.map |
@@ -67,1 +67,2 @@ import { ISO8601Date, ISO8601Time } from "./types"; | ||
export declare const startsWithISO8601Time: (input: string) => boolean; | ||
//# sourceMappingURL=utils.d.ts.map |
@@ -119,1 +119,2 @@ "use strict"; | ||
exports.startsWithISO8601Time = startsWithISO8601Time; | ||
//# sourceMappingURL=utils.js.map |
export * from "./types"; | ||
//# sourceMappingURL=index.d.ts.map |
@@ -18,1 +18,2 @@ "use strict"; | ||
__exportStar(require("./types"), exports); | ||
//# sourceMappingURL=index.js.map |
@@ -10,1 +10,2 @@ export type FeedName = "media" | "strava" | "toshl"; | ||
}; | ||
//# sourceMappingURL=types.d.ts.map |
"use strict"; | ||
Object.defineProperty(exports, "__esModule", { value: true }); | ||
//# sourceMappingURL=types.js.map |
@@ -6,1 +6,2 @@ export * from "./date"; | ||
export * from "./user"; | ||
//# sourceMappingURL=index.d.ts.map |
@@ -22,1 +22,2 @@ "use strict"; | ||
__exportStar(require("./user"), exports); | ||
//# sourceMappingURL=index.js.map |
export * from "./utils"; | ||
//# sourceMappingURL=index.d.ts.map |
@@ -18,1 +18,2 @@ "use strict"; | ||
__exportStar(require("./utils"), exports); | ||
//# sourceMappingURL=index.js.map |
@@ -11,1 +11,2 @@ /** | ||
export declare const formatAmount: (amount: number, currencyCode: string) => string; | ||
//# sourceMappingURL=utils.d.ts.map |
@@ -21,1 +21,2 @@ "use strict"; | ||
exports.formatAmount = formatAmount; | ||
//# sourceMappingURL=utils.js.map |
export * from "./utils"; | ||
//# sourceMappingURL=index.d.ts.map |
@@ -18,1 +18,2 @@ "use strict"; | ||
__exportStar(require("./utils"), exports); | ||
//# sourceMappingURL=index.js.map |
@@ -8,1 +8,2 @@ /** | ||
export declare const formatDistance: (distance: number) => string; | ||
//# sourceMappingURL=utils.d.ts.map |
@@ -18,1 +18,2 @@ "use strict"; | ||
exports.formatDistance = formatDistance; | ||
//# sourceMappingURL=utils.js.map |
export * from "./distance/utils"; | ||
export * from "./randomString/utils"; | ||
//# sourceMappingURL=index.d.ts.map |
@@ -19,1 +19,2 @@ "use strict"; | ||
__exportStar(require("./randomString/utils"), exports); | ||
//# sourceMappingURL=index.js.map |
export * from "./utils"; | ||
//# sourceMappingURL=index.d.ts.map |
@@ -18,1 +18,2 @@ "use strict"; | ||
__exportStar(require("./utils"), exports); | ||
//# sourceMappingURL=index.js.map |
@@ -6,1 +6,2 @@ /** | ||
export declare const generateRandomString: (length: number) => string; | ||
//# sourceMappingURL=utils.d.ts.map |
@@ -18,1 +18,2 @@ "use strict"; | ||
exports.generateRandomString = generateRandomString; | ||
//# sourceMappingURL=utils.js.map |
export * from "./strava"; | ||
export * from "./toshl"; | ||
//# sourceMappingURL=index.d.ts.map |
@@ -19,1 +19,2 @@ "use strict"; | ||
__exportStar(require("./toshl"), exports); | ||
//# sourceMappingURL=index.js.map |
import { TimelineEntry } from "../../types"; | ||
import { StravaSummaryActivity } from "./types"; | ||
export declare const stravaSummaryActivitiesAdapter: (activities: StravaSummaryActivity[]) => TimelineEntry[]; | ||
//# sourceMappingURL=index.d.ts.map |
@@ -54,1 +54,2 @@ "use strict"; | ||
exports.stravaSummaryActivitiesAdapter = stravaSummaryActivitiesAdapter; | ||
//# sourceMappingURL=index.js.map |
@@ -39,1 +39,2 @@ import { ISO8601DateAndTime } from "../../../date/types"; | ||
export {}; | ||
//# sourceMappingURL=types.d.ts.map |
@@ -9,1 +9,2 @@ "use strict"; | ||
exports.isStravaLatLng = isStravaLatLng; | ||
//# sourceMappingURL=types.js.map |
import { TimelineEntry } from "../../types"; | ||
import { ToshlEntry } from "./types"; | ||
export declare const toshlEntriesAdapter: (entries: ToshlEntry[]) => TimelineEntry[]; | ||
//# sourceMappingURL=index.d.ts.map |
@@ -43,1 +43,2 @@ "use strict"; | ||
exports.toshlEntriesAdapter = toshlEntriesAdapter; | ||
//# sourceMappingURL=index.js.map |
@@ -22,1 +22,2 @@ import { ISO8601Date } from "../../../date"; | ||
export {}; | ||
//# sourceMappingURL=types.d.ts.map |
"use strict"; | ||
Object.defineProperty(exports, "__esModule", { value: true }); | ||
//# sourceMappingURL=types.js.map |
export * from "./types"; | ||
export * from "./feed-adapters"; | ||
//# sourceMappingURL=index.d.ts.map |
@@ -19,1 +19,2 @@ "use strict"; | ||
__exportStar(require("./feed-adapters"), exports); | ||
//# sourceMappingURL=index.js.map |
@@ -21,1 +21,2 @@ import { FeedName } from "../feeds/types"; | ||
}; | ||
//# sourceMappingURL=types.d.ts.map |
"use strict"; | ||
Object.defineProperty(exports, "__esModule", { value: true }); | ||
//# sourceMappingURL=types.js.map |
export * from "./types"; | ||
//# sourceMappingURL=index.d.ts.map |
@@ -18,1 +18,2 @@ "use strict"; | ||
__exportStar(require("./types"), exports); | ||
//# sourceMappingURL=index.js.map |
@@ -11,1 +11,2 @@ import { FeedName } from "../feeds"; | ||
export {}; | ||
//# sourceMappingURL=types.d.ts.map |
"use strict"; | ||
Object.defineProperty(exports, "__esModule", { value: true }); | ||
//# sourceMappingURL=types.js.map |
@@ -7,1 +7,2 @@ import { HttpService, RequestParams } from "../http"; | ||
} | ||
//# sourceMappingURL=index.d.ts.map |
@@ -22,1 +22,2 @@ "use strict"; | ||
exports.AuthenticatedHttpService = AuthenticatedHttpService; | ||
//# sourceMappingURL=index.js.map |
@@ -27,1 +27,2 @@ type Headers = Record<string, string>; | ||
export {}; | ||
//# sourceMappingURL=index.d.ts.map |
@@ -58,1 +58,2 @@ "use strict"; | ||
exports.HttpService = HttpService; | ||
//# sourceMappingURL=index.js.map |
export * from "./http"; | ||
export * from "./authenticated-http"; | ||
//# sourceMappingURL=index.d.ts.map |
@@ -19,1 +19,2 @@ "use strict"; | ||
__exportStar(require("./authenticated-http"), exports); | ||
//# sourceMappingURL=index.js.map |
{ | ||
"name": "@quoll/lib", | ||
"version": "0.5.4", | ||
"version": "0.5.5", | ||
"description": "Shared code for client and server side packages", | ||
@@ -23,3 +23,3 @@ "repository": "https://github.com/mzogheib/quoll", | ||
}, | ||
"gitHead": "06628c005f6bd51200d3ea58801ac4af0c4be2b9" | ||
"gitHead": "798c2155705346b1766f67a1f52b21e196c20a7f" | ||
} |
@@ -6,4 +6,6 @@ { | ||
"outDir": "dist", | ||
"declaration": true | ||
"declaration": true, | ||
"sourceMap": true, | ||
"declarationMap": true | ||
} | ||
} |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
108519
135
1433