gumnut-sdk 0.59.0 → 0.60.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 CHANGED
@@ -1,5 +1,13 @@
1
1
  # Changelog
2
2
 
3
+ ## 0.60.0 (2026-03-18)
4
+
5
+ Full Changelog: [v0.59.0...v0.60.0](https://github.com/gumnut-ai/photos-sdk-typescript/compare/v0.59.0...v0.60.0)
6
+
7
+ ### Features
8
+
9
+ * **api:** api update ([5ed875b](https://github.com/gumnut-ai/photos-sdk-typescript/commit/5ed875b658a6869be93e7764c022b1bf433656df))
10
+
3
11
  ## 0.59.0 (2026-03-18)
4
12
 
5
13
  Full Changelog: [v0.58.0...v0.59.0](https://github.com/gumnut-ai/photos-sdk-typescript/compare/v0.58.0...v0.59.0)
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "gumnut-sdk",
3
- "version": "0.59.0",
3
+ "version": "0.60.0",
4
4
  "description": "The official TypeScript library for the Gumnut API",
5
5
  "author": "Gumnut <tedmao@gmail.com>",
6
6
  "types": "./index.d.ts",
@@ -280,7 +280,7 @@ export interface AssetCountsParams {
280
280
  */
281
281
  library_id?: string | null;
282
282
  /**
283
- * Maximum number of time buckets to return
283
+ * Maximum number of time buckets to return (1-200)
284
284
  */
285
285
  limit?: number;
286
286
  /**
@@ -280,7 +280,7 @@ export interface AssetCountsParams {
280
280
  */
281
281
  library_id?: string | null;
282
282
  /**
283
- * Maximum number of time buckets to return
283
+ * Maximum number of time buckets to return (1-200)
284
284
  */
285
285
  limit?: number;
286
286
  /**
@@ -234,7 +234,7 @@ export interface EventGetParams {
234
234
  */
235
235
  library_id?: string | null;
236
236
  /**
237
- * Maximum number of events to return (1-500)
237
+ * Maximum number of events to return (1-200)
238
238
  */
239
239
  limit?: number;
240
240
  }
@@ -234,7 +234,7 @@ export interface EventGetParams {
234
234
  */
235
235
  library_id?: string | null;
236
236
  /**
237
- * Maximum number of events to return (1-500)
237
+ * Maximum number of events to return (1-200)
238
238
  */
239
239
  limit?: number;
240
240
  }
@@ -41,7 +41,7 @@ export interface SearchSearchParams {
41
41
  */
42
42
  library_id?: string | null;
43
43
  /**
44
- * Number of results per page
44
+ * Number of results per page (1-200)
45
45
  */
46
46
  limit?: number;
47
47
  /**
@@ -84,7 +84,7 @@ export interface SearchSearchAssetsParams {
84
84
  */
85
85
  library_id?: string | null;
86
86
  /**
87
- * Number of results per page
87
+ * Number of results per page (1-200)
88
88
  */
89
89
  limit?: number;
90
90
  /**
@@ -41,7 +41,7 @@ export interface SearchSearchParams {
41
41
  */
42
42
  library_id?: string | null;
43
43
  /**
44
- * Number of results per page
44
+ * Number of results per page (1-200)
45
45
  */
46
46
  limit?: number;
47
47
  /**
@@ -84,7 +84,7 @@ export interface SearchSearchAssetsParams {
84
84
  */
85
85
  library_id?: string | null;
86
86
  /**
87
- * Number of results per page
87
+ * Number of results per page (1-200)
88
88
  */
89
89
  limit?: number;
90
90
  /**
@@ -386,7 +386,7 @@ export interface AssetCountsParams {
386
386
  library_id?: string | null;
387
387
 
388
388
  /**
389
- * Maximum number of time buckets to return
389
+ * Maximum number of time buckets to return (1-200)
390
390
  */
391
391
  limit?: number;
392
392
 
@@ -279,7 +279,7 @@ export interface EventGetParams {
279
279
  library_id?: string | null;
280
280
 
281
281
  /**
282
- * Maximum number of events to return (1-500)
282
+ * Maximum number of events to return (1-200)
283
283
  */
284
284
  limit?: number;
285
285
  }
@@ -63,7 +63,7 @@ export interface SearchSearchParams {
63
63
  library_id?: string | null;
64
64
 
65
65
  /**
66
- * Number of results per page
66
+ * Number of results per page (1-200)
67
67
  */
68
68
  limit?: number;
69
69
 
@@ -115,7 +115,7 @@ export interface SearchSearchAssetsParams {
115
115
  library_id?: string | null;
116
116
 
117
117
  /**
118
- * Number of results per page
118
+ * Number of results per page (1-200)
119
119
  */
120
120
  limit?: number;
121
121
 
package/src/version.ts CHANGED
@@ -1 +1 @@
1
- export const VERSION = '0.59.0'; // x-release-please-version
1
+ export const VERSION = '0.60.0'; // x-release-please-version
package/version.d.mts CHANGED
@@ -1,2 +1,2 @@
1
- export declare const VERSION = "0.59.0";
1
+ export declare const VERSION = "0.60.0";
2
2
  //# sourceMappingURL=version.d.mts.map
package/version.d.ts CHANGED
@@ -1,2 +1,2 @@
1
- export declare const VERSION = "0.59.0";
1
+ export declare const VERSION = "0.60.0";
2
2
  //# sourceMappingURL=version.d.ts.map
package/version.js CHANGED
@@ -1,5 +1,5 @@
1
1
  "use strict";
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
3
  exports.VERSION = void 0;
4
- exports.VERSION = '0.59.0'; // x-release-please-version
4
+ exports.VERSION = '0.60.0'; // x-release-please-version
5
5
  //# sourceMappingURL=version.js.map
package/version.mjs CHANGED
@@ -1,2 +1,2 @@
1
- export const VERSION = '0.59.0'; // x-release-please-version
1
+ export const VERSION = '0.60.0'; // x-release-please-version
2
2
  //# sourceMappingURL=version.mjs.map