@yuniruyuni/n8n-nodes-twitch 0.1.6 → 0.1.8
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/dist/credentials/TwitchOAuth2Api.credentials.js +3 -9
- package/dist/credentials/TwitchOAuth2Api.credentials.js.map +1 -1
- package/dist/nodes/Twitch/resources/Announcement.js +43 -81
- package/dist/nodes/Twitch/resources/Announcement.js.map +1 -1
- package/dist/nodes/Twitch/resources/Ban.js +36 -169
- package/dist/nodes/Twitch/resources/Ban.js.map +1 -1
- package/dist/nodes/Twitch/resources/BitsLeaderboard.js +54 -82
- package/dist/nodes/Twitch/resources/BitsLeaderboard.js.map +1 -1
- package/dist/nodes/Twitch/resources/Channel.js +13 -15
- package/dist/nodes/Twitch/resources/Channel.js.map +1 -1
- package/dist/nodes/Twitch/resources/ChatMessage.js +26 -49
- package/dist/nodes/Twitch/resources/ChatMessage.js.map +1 -1
- package/dist/nodes/Twitch/resources/Chatter.js +1 -49
- package/dist/nodes/Twitch/resources/Chatter.js.map +1 -1
- package/dist/nodes/Twitch/resources/Cheermote.js +1 -16
- package/dist/nodes/Twitch/resources/Cheermote.js.map +1 -1
- package/dist/nodes/Twitch/resources/Clip.js +91 -153
- package/dist/nodes/Twitch/resources/Clip.js.map +1 -1
- package/dist/nodes/Twitch/resources/CustomReward.js +309 -296
- package/dist/nodes/Twitch/resources/CustomReward.js.map +1 -1
- package/dist/nodes/Twitch/resources/Emote.js +1 -17
- package/dist/nodes/Twitch/resources/Emote.js.map +1 -1
- package/dist/nodes/Twitch/resources/Game.js +68 -92
- package/dist/nodes/Twitch/resources/Game.js.map +1 -1
- package/dist/nodes/Twitch/resources/Moderator.js +75 -108
- package/dist/nodes/Twitch/resources/Moderator.js.map +1 -1
- package/dist/nodes/Twitch/resources/Poll.js +174 -229
- package/dist/nodes/Twitch/resources/Poll.js.map +1 -1
- package/dist/nodes/Twitch/resources/Prediction.js +143 -201
- package/dist/nodes/Twitch/resources/Prediction.js.map +1 -1
- package/dist/nodes/Twitch/resources/Raid.js +48 -71
- package/dist/nodes/Twitch/resources/Raid.js.map +1 -1
- package/dist/nodes/Twitch/resources/Redemption.js +136 -139
- package/dist/nodes/Twitch/resources/Redemption.js.map +1 -1
- package/dist/nodes/Twitch/resources/Schedule.js +226 -213
- package/dist/nodes/Twitch/resources/Schedule.js.map +1 -1
- package/dist/nodes/Twitch/resources/Search.js +24 -34
- package/dist/nodes/Twitch/resources/Search.js.map +1 -1
- package/dist/nodes/Twitch/resources/Stream.js +13 -15
- package/dist/nodes/Twitch/resources/Stream.js.map +1 -1
- package/dist/nodes/Twitch/resources/Subscription.js +61 -75
- package/dist/nodes/Twitch/resources/Subscription.js.map +1 -1
- package/dist/nodes/Twitch/resources/Team.js +63 -72
- package/dist/nodes/Twitch/resources/Team.js.map +1 -1
- package/dist/nodes/Twitch/resources/User.js +13 -15
- package/dist/nodes/Twitch/resources/User.js.map +1 -1
- package/dist/nodes/Twitch/resources/Video.js +106 -129
- package/dist/nodes/Twitch/resources/Video.js.map +1 -1
- package/dist/nodes/Twitch/resources/Whisper.js +32 -28
- package/dist/nodes/Twitch/resources/Whisper.js.map +1 -1
- package/dist/nodes/Twitch/shared/updateDisplayOptions.d.ts +2 -0
- package/dist/nodes/Twitch/shared/updateDisplayOptions.js +12 -0
- package/dist/nodes/Twitch/shared/updateDisplayOptions.js.map +1 -0
- package/dist/package.json +1 -1
- package/dist/tsconfig.tsbuildinfo +1 -1
- package/package.json +1 -1
|
@@ -2,6 +2,140 @@
|
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
3
|
exports.redemptionFields = exports.redemptionOperations = void 0;
|
|
4
4
|
const userIdConverter_1 = require("../shared/userIdConverter");
|
|
5
|
+
const updateDisplayOptions_1 = require("../shared/updateDisplayOptions");
|
|
6
|
+
const getFields = [
|
|
7
|
+
{
|
|
8
|
+
displayName: 'Broadcaster ID or Username',
|
|
9
|
+
name: 'broadcasterId',
|
|
10
|
+
type: 'string',
|
|
11
|
+
default: '',
|
|
12
|
+
required: true,
|
|
13
|
+
placeholder: 'e.g. 123456789 or username',
|
|
14
|
+
description: 'The broadcaster user ID or username. If a username is provided, it will be automatically converted to user ID.',
|
|
15
|
+
},
|
|
16
|
+
{
|
|
17
|
+
displayName: 'Reward ID',
|
|
18
|
+
name: 'rewardId',
|
|
19
|
+
type: 'string',
|
|
20
|
+
default: '',
|
|
21
|
+
required: true,
|
|
22
|
+
placeholder: 'e.g. 92af127c-7326-4483-a52b-b0da0be61c01',
|
|
23
|
+
description: 'The ID of the custom reward',
|
|
24
|
+
},
|
|
25
|
+
{
|
|
26
|
+
displayName: 'Additional Fields',
|
|
27
|
+
name: 'additionalFields',
|
|
28
|
+
type: 'collection',
|
|
29
|
+
placeholder: 'Add Field',
|
|
30
|
+
default: {},
|
|
31
|
+
options: [
|
|
32
|
+
{
|
|
33
|
+
displayName: 'Status',
|
|
34
|
+
name: 'status',
|
|
35
|
+
type: 'options',
|
|
36
|
+
options: [
|
|
37
|
+
{
|
|
38
|
+
name: 'Unfulfilled',
|
|
39
|
+
value: 'UNFULFILLED',
|
|
40
|
+
},
|
|
41
|
+
{
|
|
42
|
+
name: 'Fulfilled',
|
|
43
|
+
value: 'FULFILLED',
|
|
44
|
+
},
|
|
45
|
+
{
|
|
46
|
+
name: 'Canceled',
|
|
47
|
+
value: 'CANCELED',
|
|
48
|
+
},
|
|
49
|
+
],
|
|
50
|
+
default: 'UNFULFILLED',
|
|
51
|
+
description: 'Filter redemptions by status',
|
|
52
|
+
},
|
|
53
|
+
{
|
|
54
|
+
displayName: 'Sort',
|
|
55
|
+
name: 'sort',
|
|
56
|
+
type: 'options',
|
|
57
|
+
options: [
|
|
58
|
+
{
|
|
59
|
+
name: 'Oldest',
|
|
60
|
+
value: 'OLDEST',
|
|
61
|
+
},
|
|
62
|
+
{
|
|
63
|
+
name: 'Newest',
|
|
64
|
+
value: 'NEWEST',
|
|
65
|
+
},
|
|
66
|
+
],
|
|
67
|
+
default: 'OLDEST',
|
|
68
|
+
description: 'Sort order for redemptions',
|
|
69
|
+
},
|
|
70
|
+
{
|
|
71
|
+
displayName: 'First',
|
|
72
|
+
name: 'first',
|
|
73
|
+
type: 'number',
|
|
74
|
+
default: 20,
|
|
75
|
+
typeOptions: {
|
|
76
|
+
minValue: 1,
|
|
77
|
+
maxValue: 100,
|
|
78
|
+
},
|
|
79
|
+
description: 'Maximum number of items to return',
|
|
80
|
+
},
|
|
81
|
+
{
|
|
82
|
+
displayName: 'After',
|
|
83
|
+
name: 'after',
|
|
84
|
+
type: 'string',
|
|
85
|
+
default: '',
|
|
86
|
+
placeholder: 'e.g. eyJiIjpudWxsLCJhIjp7Ik9mZnNldCI6NX19',
|
|
87
|
+
description: 'Cursor for pagination',
|
|
88
|
+
},
|
|
89
|
+
],
|
|
90
|
+
},
|
|
91
|
+
];
|
|
92
|
+
const updateFields = [
|
|
93
|
+
{
|
|
94
|
+
displayName: 'Broadcaster ID or Username',
|
|
95
|
+
name: 'broadcasterId',
|
|
96
|
+
type: 'string',
|
|
97
|
+
default: '',
|
|
98
|
+
required: true,
|
|
99
|
+
placeholder: 'e.g. 123456789 or username',
|
|
100
|
+
description: 'The broadcaster user ID or username. If a username is provided, it will be automatically converted to user ID.',
|
|
101
|
+
},
|
|
102
|
+
{
|
|
103
|
+
displayName: 'Reward ID',
|
|
104
|
+
name: 'rewardId',
|
|
105
|
+
type: 'string',
|
|
106
|
+
default: '',
|
|
107
|
+
required: true,
|
|
108
|
+
placeholder: 'e.g. 92af127c-7326-4483-a52b-b0da0be61c01',
|
|
109
|
+
description: 'The ID of the custom reward',
|
|
110
|
+
},
|
|
111
|
+
{
|
|
112
|
+
displayName: 'Redemption ID',
|
|
113
|
+
name: 'redemptionId',
|
|
114
|
+
type: 'string',
|
|
115
|
+
default: '',
|
|
116
|
+
required: true,
|
|
117
|
+
placeholder: 'e.g. 17fa2df1-ad76-4804-bfa5-a40ef63efe63',
|
|
118
|
+
description: 'The ID of the redemption to update',
|
|
119
|
+
},
|
|
120
|
+
{
|
|
121
|
+
displayName: 'Status',
|
|
122
|
+
name: 'status',
|
|
123
|
+
type: 'options',
|
|
124
|
+
options: [
|
|
125
|
+
{
|
|
126
|
+
name: 'Fulfilled',
|
|
127
|
+
value: 'FULFILLED',
|
|
128
|
+
},
|
|
129
|
+
{
|
|
130
|
+
name: 'Canceled',
|
|
131
|
+
value: 'CANCELED',
|
|
132
|
+
},
|
|
133
|
+
],
|
|
134
|
+
default: 'FULFILLED',
|
|
135
|
+
required: true,
|
|
136
|
+
description: 'The new status of the redemption',
|
|
137
|
+
},
|
|
138
|
+
];
|
|
5
139
|
exports.redemptionOperations = [
|
|
6
140
|
{
|
|
7
141
|
displayName: 'Operation',
|
|
@@ -117,144 +251,7 @@ exports.redemptionOperations = [
|
|
|
117
251
|
},
|
|
118
252
|
];
|
|
119
253
|
exports.redemptionFields = [
|
|
120
|
-
{
|
|
121
|
-
|
|
122
|
-
name: 'broadcasterId',
|
|
123
|
-
type: 'string',
|
|
124
|
-
default: '',
|
|
125
|
-
required: true,
|
|
126
|
-
placeholder: 'e.g. 123456789 or username',
|
|
127
|
-
description: 'The broadcaster user ID or username. If a username is provided, it will be automatically converted to user ID.',
|
|
128
|
-
displayOptions: {
|
|
129
|
-
show: {
|
|
130
|
-
resource: ['redemption'],
|
|
131
|
-
},
|
|
132
|
-
},
|
|
133
|
-
},
|
|
134
|
-
{
|
|
135
|
-
displayName: 'Reward ID',
|
|
136
|
-
name: 'rewardId',
|
|
137
|
-
type: 'string',
|
|
138
|
-
default: '',
|
|
139
|
-
required: true,
|
|
140
|
-
placeholder: 'e.g. 92af127c-7326-4483-a52b-b0da0be61c01',
|
|
141
|
-
description: 'The ID of the custom reward',
|
|
142
|
-
displayOptions: {
|
|
143
|
-
show: {
|
|
144
|
-
resource: ['redemption'],
|
|
145
|
-
},
|
|
146
|
-
},
|
|
147
|
-
},
|
|
148
|
-
{
|
|
149
|
-
displayName: 'Additional Fields',
|
|
150
|
-
name: 'additionalFields',
|
|
151
|
-
type: 'collection',
|
|
152
|
-
placeholder: 'Add Field',
|
|
153
|
-
default: {},
|
|
154
|
-
displayOptions: {
|
|
155
|
-
show: {
|
|
156
|
-
resource: ['redemption'],
|
|
157
|
-
operation: ['get'],
|
|
158
|
-
},
|
|
159
|
-
},
|
|
160
|
-
options: [
|
|
161
|
-
{
|
|
162
|
-
displayName: 'Status',
|
|
163
|
-
name: 'status',
|
|
164
|
-
type: 'options',
|
|
165
|
-
options: [
|
|
166
|
-
{
|
|
167
|
-
name: 'Unfulfilled',
|
|
168
|
-
value: 'UNFULFILLED',
|
|
169
|
-
},
|
|
170
|
-
{
|
|
171
|
-
name: 'Fulfilled',
|
|
172
|
-
value: 'FULFILLED',
|
|
173
|
-
},
|
|
174
|
-
{
|
|
175
|
-
name: 'Canceled',
|
|
176
|
-
value: 'CANCELED',
|
|
177
|
-
},
|
|
178
|
-
],
|
|
179
|
-
default: 'UNFULFILLED',
|
|
180
|
-
description: 'Filter redemptions by status',
|
|
181
|
-
},
|
|
182
|
-
{
|
|
183
|
-
displayName: 'Sort',
|
|
184
|
-
name: 'sort',
|
|
185
|
-
type: 'options',
|
|
186
|
-
options: [
|
|
187
|
-
{
|
|
188
|
-
name: 'Oldest',
|
|
189
|
-
value: 'OLDEST',
|
|
190
|
-
},
|
|
191
|
-
{
|
|
192
|
-
name: 'Newest',
|
|
193
|
-
value: 'NEWEST',
|
|
194
|
-
},
|
|
195
|
-
],
|
|
196
|
-
default: 'OLDEST',
|
|
197
|
-
description: 'Sort order for redemptions',
|
|
198
|
-
},
|
|
199
|
-
{
|
|
200
|
-
displayName: 'First',
|
|
201
|
-
name: 'first',
|
|
202
|
-
type: 'number',
|
|
203
|
-
default: 20,
|
|
204
|
-
typeOptions: {
|
|
205
|
-
minValue: 1,
|
|
206
|
-
maxValue: 50,
|
|
207
|
-
},
|
|
208
|
-
description: 'Maximum number of redemptions to return (1-50)',
|
|
209
|
-
},
|
|
210
|
-
{
|
|
211
|
-
displayName: 'After',
|
|
212
|
-
name: 'after',
|
|
213
|
-
type: 'string',
|
|
214
|
-
default: '',
|
|
215
|
-
placeholder: 'e.g. eyJiIjpudWxsLCJhIjp7Ik9mZnNldCI6NX19',
|
|
216
|
-
description: 'Cursor for pagination',
|
|
217
|
-
},
|
|
218
|
-
],
|
|
219
|
-
},
|
|
220
|
-
{
|
|
221
|
-
displayName: 'Redemption ID',
|
|
222
|
-
name: 'redemptionId',
|
|
223
|
-
type: 'string',
|
|
224
|
-
displayOptions: {
|
|
225
|
-
show: {
|
|
226
|
-
resource: ['redemption'],
|
|
227
|
-
operation: ['update'],
|
|
228
|
-
},
|
|
229
|
-
},
|
|
230
|
-
default: '',
|
|
231
|
-
required: true,
|
|
232
|
-
placeholder: 'e.g. 17fa2df1-ad76-4804-bfa5-a40ef63efe63',
|
|
233
|
-
description: 'The ID of the redemption to update',
|
|
234
|
-
},
|
|
235
|
-
{
|
|
236
|
-
displayName: 'Status',
|
|
237
|
-
name: 'status',
|
|
238
|
-
type: 'options',
|
|
239
|
-
displayOptions: {
|
|
240
|
-
show: {
|
|
241
|
-
resource: ['redemption'],
|
|
242
|
-
operation: ['update'],
|
|
243
|
-
},
|
|
244
|
-
},
|
|
245
|
-
options: [
|
|
246
|
-
{
|
|
247
|
-
name: 'Fulfilled',
|
|
248
|
-
value: 'FULFILLED',
|
|
249
|
-
},
|
|
250
|
-
{
|
|
251
|
-
name: 'Canceled',
|
|
252
|
-
value: 'CANCELED',
|
|
253
|
-
},
|
|
254
|
-
],
|
|
255
|
-
default: 'FULFILLED',
|
|
256
|
-
required: true,
|
|
257
|
-
description: 'The new status of the redemption',
|
|
258
|
-
},
|
|
254
|
+
...(0, updateDisplayOptions_1.updateDisplayOptions)({ show: { resource: ['redemption'], operation: ['get'] } }, getFields),
|
|
255
|
+
...(0, updateDisplayOptions_1.updateDisplayOptions)({ show: { resource: ['redemption'], operation: ['update'] } }, updateFields),
|
|
259
256
|
];
|
|
260
257
|
//# sourceMappingURL=Redemption.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"Redemption.js","sourceRoot":"","sources":["../../../../nodes/Twitch/resources/Redemption.ts"],"names":[],"mappings":";;;AACA,+DAAoE;
|
|
1
|
+
{"version":3,"file":"Redemption.js","sourceRoot":"","sources":["../../../../nodes/Twitch/resources/Redemption.ts"],"names":[],"mappings":"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"}
|