@larkiny/astro-github-loader 0.13.0 → 0.14.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/github.types.d.ts +2 -0
- package/package.json +1 -1
- package/src/github.types.ts +2 -0
package/dist/github.types.d.ts
CHANGED
|
@@ -234,6 +234,8 @@ export interface VersionConfig {
|
|
|
234
234
|
slug: string;
|
|
235
235
|
/** Display name for this version (e.g., "Latest", "v8.0.0") */
|
|
236
236
|
label: string;
|
|
237
|
+
/** Git ref this version was sourced from (e.g., "main", "release/v7"). Optional metadata — not used by the loader. */
|
|
238
|
+
ref?: string;
|
|
237
239
|
}
|
|
238
240
|
/**
|
|
239
241
|
* Represents configuration options for importing content from GitHub repositories.
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@larkiny/astro-github-loader",
|
|
3
3
|
"type": "module",
|
|
4
|
-
"version": "0.
|
|
4
|
+
"version": "0.14.0",
|
|
5
5
|
"description": "Load content from GitHub repositories into Astro content collections with asset management and content transformations",
|
|
6
6
|
"keywords": [
|
|
7
7
|
"astro",
|
package/src/github.types.ts
CHANGED
|
@@ -261,6 +261,8 @@ export interface VersionConfig {
|
|
|
261
261
|
slug: string;
|
|
262
262
|
/** Display name for this version (e.g., "Latest", "v8.0.0") */
|
|
263
263
|
label: string;
|
|
264
|
+
/** Git ref this version was sourced from (e.g., "main", "release/v7"). Optional metadata — not used by the loader. */
|
|
265
|
+
ref?: string;
|
|
264
266
|
}
|
|
265
267
|
|
|
266
268
|
/**
|