gumnut-sdk 0.115.0 → 0.116.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/CHANGELOG.md +8 -0
- package/package.json +1 -1
- package/resources/assets.d.mts +3 -3
- package/resources/assets.d.ts +3 -3
- package/src/resources/assets.ts +3 -3
- package/src/version.ts +1 -1
- package/version.d.mts +1 -1
- package/version.d.ts +1 -1
- package/version.js +1 -1
- package/version.mjs +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,13 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## 0.116.0 (2026-06-10)
|
|
4
|
+
|
|
5
|
+
Full Changelog: [v0.115.0...v0.116.0](https://github.com/gumnut-ai/photos-sdk-typescript/compare/v0.115.0...v0.116.0)
|
|
6
|
+
|
|
7
|
+
### Features
|
|
8
|
+
|
|
9
|
+
* **api:** api update ([ebd2da2](https://github.com/gumnut-ai/photos-sdk-typescript/commit/ebd2da22fa027f25fce3e4b7b35af16a9ffb234c))
|
|
10
|
+
|
|
3
11
|
## 0.115.0 (2026-06-10)
|
|
4
12
|
|
|
5
13
|
Full Changelog: [v0.114.0...v0.115.0](https://github.com/gumnut-ai/photos-sdk-typescript/compare/v0.114.0...v0.115.0)
|
package/package.json
CHANGED
package/resources/assets.d.mts
CHANGED
|
@@ -224,9 +224,9 @@ export interface AssetResponse {
|
|
|
224
224
|
*/
|
|
225
225
|
updated_at: string;
|
|
226
226
|
/**
|
|
227
|
-
* Named asset variants. Images: 'original', 'thumbnail', '
|
|
228
|
-
* Videos: 'original' always, plus 'thumbnail_image', '
|
|
229
|
-
* 'fullsize_image' once a still has been extracted.
|
|
227
|
+
* Named asset variants. Images: 'original', 'thumbnail', 'small', 'preview',
|
|
228
|
+
* 'fullsize'. Videos: 'original' always, plus 'thumbnail_image', 'small_image',
|
|
229
|
+
* 'preview_image', 'fullsize_image' once a still has been extracted.
|
|
230
230
|
*/
|
|
231
231
|
asset_urls?: {
|
|
232
232
|
[key: string]: Shared.AssetVariant;
|
package/resources/assets.d.ts
CHANGED
|
@@ -224,9 +224,9 @@ export interface AssetResponse {
|
|
|
224
224
|
*/
|
|
225
225
|
updated_at: string;
|
|
226
226
|
/**
|
|
227
|
-
* Named asset variants. Images: 'original', 'thumbnail', '
|
|
228
|
-
* Videos: 'original' always, plus 'thumbnail_image', '
|
|
229
|
-
* 'fullsize_image' once a still has been extracted.
|
|
227
|
+
* Named asset variants. Images: 'original', 'thumbnail', 'small', 'preview',
|
|
228
|
+
* 'fullsize'. Videos: 'original' always, plus 'thumbnail_image', 'small_image',
|
|
229
|
+
* 'preview_image', 'fullsize_image' once a still has been extracted.
|
|
230
230
|
*/
|
|
231
231
|
asset_urls?: {
|
|
232
232
|
[key: string]: Shared.AssetVariant;
|
package/src/resources/assets.ts
CHANGED
|
@@ -310,9 +310,9 @@ export interface AssetResponse {
|
|
|
310
310
|
updated_at: string;
|
|
311
311
|
|
|
312
312
|
/**
|
|
313
|
-
* Named asset variants. Images: 'original', 'thumbnail', '
|
|
314
|
-
* Videos: 'original' always, plus 'thumbnail_image', '
|
|
315
|
-
* 'fullsize_image' once a still has been extracted.
|
|
313
|
+
* Named asset variants. Images: 'original', 'thumbnail', 'small', 'preview',
|
|
314
|
+
* 'fullsize'. Videos: 'original' always, plus 'thumbnail_image', 'small_image',
|
|
315
|
+
* 'preview_image', 'fullsize_image' once a still has been extracted.
|
|
316
316
|
*/
|
|
317
317
|
asset_urls?: { [key: string]: Shared.AssetVariant } | null;
|
|
318
318
|
|
package/src/version.ts
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
export const VERSION = '0.
|
|
1
|
+
export const VERSION = '0.116.0'; // x-release-please-version
|
package/version.d.mts
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
export declare const VERSION = "0.
|
|
1
|
+
export declare const VERSION = "0.116.0";
|
|
2
2
|
//# sourceMappingURL=version.d.mts.map
|
package/version.d.ts
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
export declare const VERSION = "0.
|
|
1
|
+
export declare const VERSION = "0.116.0";
|
|
2
2
|
//# sourceMappingURL=version.d.ts.map
|
package/version.js
CHANGED
package/version.mjs
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
export const VERSION = '0.
|
|
1
|
+
export const VERSION = '0.116.0'; // x-release-please-version
|
|
2
2
|
//# sourceMappingURL=version.mjs.map
|