@snagsolutions/sdk 0.1.0-alpha.181 → 0.1.0-alpha.183
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 +16 -0
- package/index.d.mts +2 -2
- package/index.d.ts +2 -2
- package/index.d.ts.map +1 -1
- package/index.js.map +1 -1
- package/index.mjs.map +1 -1
- package/package.json +1 -1
- package/resources/auctions/auctions.d.ts +62 -4
- package/resources/auctions/auctions.d.ts.map +1 -1
- package/resources/auctions/auctions.js +1 -5
- package/resources/auctions/auctions.js.map +1 -1
- package/resources/auctions/auctions.mjs +1 -5
- package/resources/auctions/auctions.mjs.map +1 -1
- package/resources/auctions/index.d.ts +1 -1
- package/resources/auctions/index.d.ts.map +1 -1
- package/resources/auctions/index.js.map +1 -1
- package/resources/auctions/index.mjs.map +1 -1
- package/resources/auctions/website-user-attributes/values.d.ts +6 -2
- package/resources/auctions/website-user-attributes/values.d.ts.map +1 -1
- package/resources/auctions/website-user-attributes/website-user-attributes.d.ts +6 -2
- package/resources/auctions/website-user-attributes/website-user-attributes.d.ts.map +1 -1
- package/resources/auctions/website-user-attributes/website-user-attributes.js.map +1 -1
- package/resources/auctions/website-user-attributes/website-user-attributes.mjs.map +1 -1
- package/resources/index.d.ts +1 -1
- package/resources/index.d.ts.map +1 -1
- package/resources/index.js.map +1 -1
- package/resources/index.mjs.map +1 -1
- package/resources/loyalty/badges.d.ts +212 -203
- package/resources/loyalty/badges.d.ts.map +1 -1
- package/resources/loyalty/questions-responses.d.ts +16 -4
- package/resources/loyalty/questions-responses.d.ts.map +1 -1
- package/resources/loyalty/questions.d.ts +15 -4
- package/resources/loyalty/questions.d.ts.map +1 -1
- package/resources/loyalty/rule-groups.d.ts +1 -1
- package/resources/loyalty/rule-groups.d.ts.map +1 -1
- package/resources/loyalty/rules.d.ts +2 -2
- package/resources/loyalty/rules.d.ts.map +1 -1
- package/resources/loyalty/transactions/transactions.d.ts +1 -1
- package/resources/loyalty/transactions/transactions.d.ts.map +1 -1
- package/resources/loyalty/transactions/transactions.js.map +1 -1
- package/resources/loyalty/transactions/transactions.mjs.map +1 -1
- package/resources/users/users.d.ts +4 -0
- package/resources/users/users.d.ts.map +1 -1
- package/resources/users/users.js.map +1 -1
- package/resources/users/users.mjs.map +1 -1
- package/src/index.ts +2 -0
- package/src/resources/auctions/auctions.ts +101 -9
- package/src/resources/auctions/index.ts +1 -0
- package/src/resources/auctions/website-user-attributes/values.ts +7 -2
- package/src/resources/auctions/website-user-attributes/website-user-attributes.ts +7 -2
- package/src/resources/index.ts +1 -0
- package/src/resources/loyalty/badges.ts +230 -219
- package/src/resources/loyalty/questions-responses.ts +19 -4
- package/src/resources/loyalty/questions.ts +18 -4
- package/src/resources/loyalty/rule-groups.ts +2 -1
- package/src/resources/loyalty/rules.ts +4 -2
- package/src/resources/loyalty/transactions/transactions.ts +2 -0
- package/src/resources/users/users.ts +5 -0
- package/src/version.ts +1 -1
- package/version.d.ts +1 -1
- package/version.js +1 -1
- package/version.mjs +1 -1
|
@@ -281,7 +281,8 @@ export interface RuleCreateResponse {
|
|
|
281
281
|
| 'discord_join'
|
|
282
282
|
| 'connected_youtube'
|
|
283
283
|
| 'stratus_function'
|
|
284
|
-
| 'connected_tiktok'
|
|
284
|
+
| 'connected_tiktok'
|
|
285
|
+
| 'tiktok_follow';
|
|
285
286
|
|
|
286
287
|
/**
|
|
287
288
|
* Unique identifier for the associated website
|
|
@@ -3951,7 +3952,8 @@ export interface RuleCreateParams {
|
|
|
3951
3952
|
| 'discord_join'
|
|
3952
3953
|
| 'connected_youtube'
|
|
3953
3954
|
| 'stratus_function'
|
|
3954
|
-
| 'connected_tiktok'
|
|
3955
|
+
| 'connected_tiktok'
|
|
3956
|
+
| 'tiktok_follow';
|
|
3955
3957
|
|
|
3956
3958
|
/**
|
|
3957
3959
|
* Unique identifier for the associated website
|
|
@@ -499,6 +499,7 @@ export interface TransactionGetTransactionEntriesParams {
|
|
|
499
499
|
| 'connected_youtube'
|
|
500
500
|
| 'stratus_function'
|
|
501
501
|
| 'connected_tiktok'
|
|
502
|
+
| 'tiktok_follow'
|
|
502
503
|
| Array<
|
|
503
504
|
| 'Bonus'
|
|
504
505
|
| 'BoughtOn'
|
|
@@ -567,6 +568,7 @@ export interface TransactionGetTransactionEntriesParams {
|
|
|
567
568
|
| 'connected_youtube'
|
|
568
569
|
| 'stratus_function'
|
|
569
570
|
| 'connected_tiktok'
|
|
571
|
+
| 'tiktok_follow'
|
|
570
572
|
>;
|
|
571
573
|
|
|
572
574
|
/**
|
|
@@ -127,6 +127,11 @@ export interface UserListResponse {
|
|
|
127
127
|
* Schema for users response
|
|
128
128
|
*/
|
|
129
129
|
data: Array<UserListResponse.Data>;
|
|
130
|
+
|
|
131
|
+
/**
|
|
132
|
+
* Indicates if there is a next page of results
|
|
133
|
+
*/
|
|
134
|
+
hasNextPage: boolean;
|
|
130
135
|
}
|
|
131
136
|
|
|
132
137
|
export namespace UserListResponse {
|
package/src/version.ts
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
export const VERSION = '0.1.0-alpha.
|
|
1
|
+
export const VERSION = '0.1.0-alpha.183'; // 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.183";
|
|
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.183'; // 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.183'; // x-release-please-version
|
|
2
2
|
//# sourceMappingURL=version.mjs.map
|