@snagsolutions/sdk 0.1.0-alpha.103 → 0.1.0-alpha.104
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/loyalty/rules.d.ts +2 -2
- package/src/resources/loyalty/rules.ts +2 -2
- 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.104 (2025-08-13)
|
|
4
|
+
|
|
5
|
+
Full Changelog: [v0.1.0-alpha.103...v0.1.0-alpha.104](https://github.com/Snag-Solutions/node-sdk/compare/v0.1.0-alpha.103...v0.1.0-alpha.104)
|
|
6
|
+
|
|
7
|
+
### Features
|
|
8
|
+
|
|
9
|
+
* **api:** open api update ([acb00b5](https://github.com/Snag-Solutions/node-sdk/commit/acb00b5c4cfe9d018a5a62f2cfd8be98fa7425c3))
|
|
10
|
+
|
|
3
11
|
## 0.1.0-alpha.103 (2025-08-13)
|
|
4
12
|
|
|
5
13
|
Full Changelog: [v0.1.0-alpha.102...v0.1.0-alpha.103](https://github.com/Snag-Solutions/node-sdk/compare/v0.1.0-alpha.102...v0.1.0-alpha.103)
|
package/package.json
CHANGED
|
@@ -4041,7 +4041,7 @@ export interface RuleCompleteParams {
|
|
|
4041
4041
|
*/
|
|
4042
4042
|
commentLink?: string;
|
|
4043
4043
|
/**
|
|
4044
|
-
* Unique key to ensure idempotent requests
|
|
4044
|
+
* Unique key to ensure idempotent requests.
|
|
4045
4045
|
*/
|
|
4046
4046
|
idempotencyKey?: string;
|
|
4047
4047
|
/**
|
|
@@ -4058,7 +4058,7 @@ export interface RuleCompleteParams {
|
|
|
4058
4058
|
verificationCode?: string;
|
|
4059
4059
|
/**
|
|
4060
4060
|
* Flag indicating if only verification is required, this will not create a
|
|
4061
|
-
* transaction and reward the user
|
|
4061
|
+
* transaction and reward the user.
|
|
4062
4062
|
*/
|
|
4063
4063
|
verifyOnly?: string;
|
|
4064
4064
|
/**
|
|
@@ -5966,7 +5966,7 @@ export interface RuleCompleteParams {
|
|
|
5966
5966
|
commentLink?: string;
|
|
5967
5967
|
|
|
5968
5968
|
/**
|
|
5969
|
-
* Unique key to ensure idempotent requests
|
|
5969
|
+
* Unique key to ensure idempotent requests.
|
|
5970
5970
|
*/
|
|
5971
5971
|
idempotencyKey?: string;
|
|
5972
5972
|
|
|
@@ -5987,7 +5987,7 @@ export interface RuleCompleteParams {
|
|
|
5987
5987
|
|
|
5988
5988
|
/**
|
|
5989
5989
|
* Flag indicating if only verification is required, this will not create a
|
|
5990
|
-
* transaction and reward the user
|
|
5990
|
+
* transaction and reward the user.
|
|
5991
5991
|
*/
|
|
5992
5992
|
verifyOnly?: string;
|
|
5993
5993
|
|
package/src/version.ts
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
export const VERSION = '0.1.0-alpha.
|
|
1
|
+
export const VERSION = '0.1.0-alpha.104'; // 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.104";
|
|
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.104'; // 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.104'; // x-release-please-version
|
|
2
2
|
//# sourceMappingURL=version.mjs.map
|