@snagsolutions/sdk 0.1.0-alpha.179 → 0.1.0-alpha.180
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/auctions/website-user-attributes/values.d.ts +1 -1
- package/resources/auctions/website-user-attributes/values.js +1 -1
- package/resources/auctions/website-user-attributes/values.mjs +1 -1
- package/src/resources/auctions/website-user-attributes/values.ts +1 -1
- package/src/version.ts +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.1.0-alpha.180 (2025-11-07)
|
|
4
|
+
|
|
5
|
+
Full Changelog: [v0.1.0-alpha.179...v0.1.0-alpha.180](https://github.com/Snag-Solutions/node-sdk/compare/v0.1.0-alpha.179...v0.1.0-alpha.180)
|
|
6
|
+
|
|
7
|
+
### Features
|
|
8
|
+
|
|
9
|
+
* **api:** open api update ([55ac73d](https://github.com/Snag-Solutions/node-sdk/commit/55ac73dbba9f007624530538aa17868715bfa7d9))
|
|
10
|
+
|
|
3
11
|
## 0.1.0-alpha.179 (2025-11-07)
|
|
4
12
|
|
|
5
13
|
Full Changelog: [v0.1.0-alpha.178...v0.1.0-alpha.179](https://github.com/Snag-Solutions/node-sdk/compare/v0.1.0-alpha.178...v0.1.0-alpha.179)
|
package/package.json
CHANGED
|
@@ -26,7 +26,7 @@ export declare class Values extends APIResource {
|
|
|
26
26
|
*/
|
|
27
27
|
create(body: ValueCreateParams, options?: Core.RequestOptions): Core.APIPromise<ValueCreateResponse>;
|
|
28
28
|
/**
|
|
29
|
-
* Get
|
|
29
|
+
* Get values for a website user attribute
|
|
30
30
|
*
|
|
31
31
|
* @example
|
|
32
32
|
* ```ts
|
|
@@ -31,7 +31,7 @@ class Values extends resource_1.APIResource {
|
|
|
31
31
|
return this._client.post('/api/website_user_attributes/values', { body, ...options });
|
|
32
32
|
}
|
|
33
33
|
/**
|
|
34
|
-
* Get
|
|
34
|
+
* Get values for a website user attribute
|
|
35
35
|
*
|
|
36
36
|
* @example
|
|
37
37
|
* ```ts
|
|
@@ -28,7 +28,7 @@ export class Values extends APIResource {
|
|
|
28
28
|
return this._client.post('/api/website_user_attributes/values', { body, ...options });
|
|
29
29
|
}
|
|
30
30
|
/**
|
|
31
|
-
* Get
|
|
31
|
+
* Get values for a website user attribute
|
|
32
32
|
*
|
|
33
33
|
* @example
|
|
34
34
|
* ```ts
|
package/src/version.ts
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
export const VERSION = '0.1.0-alpha.
|
|
1
|
+
export const VERSION = '0.1.0-alpha.180'; // x-release-please-version
|
package/version.d.ts
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
export declare const VERSION = "0.1.0-alpha.
|
|
1
|
+
export declare const VERSION = "0.1.0-alpha.180";
|
|
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.1.0-alpha.
|
|
4
|
+
exports.VERSION = '0.1.0-alpha.180'; // x-release-please-version
|
|
5
5
|
//# sourceMappingURL=version.js.map
|
package/version.mjs
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
export const VERSION = '0.1.0-alpha.
|
|
1
|
+
export const VERSION = '0.1.0-alpha.180'; // x-release-please-version
|
|
2
2
|
//# sourceMappingURL=version.mjs.map
|