@quoll/lib
Advanced tools
Comparing version 0.4.9 to 0.5.0
@@ -6,2 +6,8 @@ # Change Log | ||
# [0.5.0](https://github.com/mzogheib/quoll/compare/@quoll/lib@0.4.9...@quoll/lib@0.5.0) (2024-07-11) | ||
### Features | ||
- update Toshl connection method ([#226](https://github.com/mzogheib/quoll/issues/226)) ([a2effdd](https://github.com/mzogheib/quoll/commit/a2effdd296895371f56c730f3da665bb6f7ef783)) | ||
## [0.4.9](https://github.com/mzogheib/quoll/compare/@quoll/lib@0.4.8...@quoll/lib@0.4.9) (2024-07-07) | ||
@@ -8,0 +14,0 @@ |
export type FeedName = "media" | "strava" | "toshl"; | ||
export type FeedConnectionConfig = { | ||
type: "oauth"; | ||
data: { | ||
url: string; | ||
}; | ||
} | { | ||
type: "personal-token"; | ||
}; |
{ | ||
"name": "@quoll/lib", | ||
"version": "0.4.9", | ||
"version": "0.5.0", | ||
"description": "Shared code for client and server side packages", | ||
@@ -21,3 +21,3 @@ "repository": "https://github.com/mzogheib/quoll", | ||
}, | ||
"gitHead": "92044fd41149c15925bf7b93645d06d83846637d" | ||
"gitHead": "6ceb13c436510b51608d4f049dee7cb612078e28" | ||
} |
export type FeedName = "media" | "strava" | "toshl"; | ||
export type FeedConnectionConfig = | ||
| { | ||
type: "oauth"; | ||
data: { url: string }; | ||
} | ||
| { | ||
type: "personal-token"; | ||
}; |
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
77429
1213