gumnut-sdk 0.67.1 → 0.68.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/people.d.mts +2 -2
- package/resources/people.d.ts +2 -2
- package/resources/people.js +2 -2
- package/resources/people.mjs +2 -2
- package/src/resources/people.ts +2 -2
- 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.68.0 (2026-04-01)
|
|
4
|
+
|
|
5
|
+
Full Changelog: [v0.67.1...v0.68.0](https://github.com/gumnut-ai/photos-sdk-typescript/compare/v0.67.1...v0.68.0)
|
|
6
|
+
|
|
7
|
+
### Features
|
|
8
|
+
|
|
9
|
+
* **api:** api update ([22b0bdb](https://github.com/gumnut-ai/photos-sdk-typescript/commit/22b0bdb49d46f9a09299fb6edea26b2d56015443))
|
|
10
|
+
|
|
3
11
|
## 0.67.1 (2026-04-01)
|
|
4
12
|
|
|
5
13
|
Full Changelog: [v0.67.0...v0.67.1](https://github.com/gumnut-ai/photos-sdk-typescript/compare/v0.67.0...v0.67.1)
|
package/package.json
CHANGED
package/resources/people.d.mts
CHANGED
|
@@ -21,8 +21,8 @@ export declare class People extends APIResource {
|
|
|
21
21
|
*/
|
|
22
22
|
list(query?: PersonListParams | null | undefined, options?: RequestOptions): PagePromise<PersonResponsesCursorPage, PersonResponse>;
|
|
23
23
|
/**
|
|
24
|
-
* Deletes a specific person.
|
|
25
|
-
*
|
|
24
|
+
* Deletes a specific person. Orphaned faces will be re-clustered in the next
|
|
25
|
+
* clustering pass.
|
|
26
26
|
*/
|
|
27
27
|
delete(personID: string, options?: RequestOptions): APIPromise<void>;
|
|
28
28
|
}
|
package/resources/people.d.ts
CHANGED
|
@@ -21,8 +21,8 @@ export declare class People extends APIResource {
|
|
|
21
21
|
*/
|
|
22
22
|
list(query?: PersonListParams | null | undefined, options?: RequestOptions): PagePromise<PersonResponsesCursorPage, PersonResponse>;
|
|
23
23
|
/**
|
|
24
|
-
* Deletes a specific person.
|
|
25
|
-
*
|
|
24
|
+
* Deletes a specific person. Orphaned faces will be re-clustered in the next
|
|
25
|
+
* clustering pass.
|
|
26
26
|
*/
|
|
27
27
|
delete(personID: string, options?: RequestOptions): APIPromise<void>;
|
|
28
28
|
}
|
package/resources/people.js
CHANGED
|
@@ -33,8 +33,8 @@ class People extends resource_1.APIResource {
|
|
|
33
33
|
return this._client.getAPIList('/api/people', (pagination_1.CursorPage), { query, ...options });
|
|
34
34
|
}
|
|
35
35
|
/**
|
|
36
|
-
* Deletes a specific person.
|
|
37
|
-
*
|
|
36
|
+
* Deletes a specific person. Orphaned faces will be re-clustered in the next
|
|
37
|
+
* clustering pass.
|
|
38
38
|
*/
|
|
39
39
|
delete(personID, options) {
|
|
40
40
|
return this._client.delete((0, path_1.path) `/api/people/${personID}`, {
|
package/resources/people.mjs
CHANGED
|
@@ -30,8 +30,8 @@ export class People extends APIResource {
|
|
|
30
30
|
return this._client.getAPIList('/api/people', (CursorPage), { query, ...options });
|
|
31
31
|
}
|
|
32
32
|
/**
|
|
33
|
-
* Deletes a specific person.
|
|
34
|
-
*
|
|
33
|
+
* Deletes a specific person. Orphaned faces will be re-clustered in the next
|
|
34
|
+
* clustering pass.
|
|
35
35
|
*/
|
|
36
36
|
delete(personID, options) {
|
|
37
37
|
return this._client.delete(path `/api/people/${personID}`, {
|
package/src/resources/people.ts
CHANGED
|
@@ -41,8 +41,8 @@ export class People extends APIResource {
|
|
|
41
41
|
}
|
|
42
42
|
|
|
43
43
|
/**
|
|
44
|
-
* Deletes a specific person.
|
|
45
|
-
*
|
|
44
|
+
* Deletes a specific person. Orphaned faces will be re-clustered in the next
|
|
45
|
+
* clustering pass.
|
|
46
46
|
*/
|
|
47
47
|
delete(personID: string, options?: RequestOptions): APIPromise<void> {
|
|
48
48
|
return this._client.delete(path`/api/people/${personID}`, {
|
package/src/version.ts
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
export const VERSION = '0.
|
|
1
|
+
export const VERSION = '0.68.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.68.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.68.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.68.0'; // x-release-please-version
|
|
2
2
|
//# sourceMappingURL=version.mjs.map
|