@wix/riseevent 1.0.14 → 1.0.15
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/build/cjs/index.d.ts +1 -1
- package/build/cjs/index.js +1 -1
- package/build/cjs/index.js.map +1 -1
- package/build/cjs/meta.d.ts +1 -1
- package/build/cjs/meta.js +1 -1
- package/build/cjs/meta.js.map +1 -1
- package/build/es/index.d.ts +1 -1
- package/build/es/index.js +1 -1
- package/build/es/index.js.map +1 -1
- package/build/es/meta.d.ts +1 -1
- package/build/es/meta.js +1 -1
- package/build/es/meta.js.map +1 -1
- package/build/es/package.json +3 -0
- package/build/internal/cjs/index.d.ts +2 -0
- package/build/internal/cjs/index.js +29 -0
- package/build/internal/cjs/index.js.map +1 -0
- package/build/internal/cjs/meta.d.ts +1 -0
- package/build/{cjs/context.js → internal/cjs/meta.js} +2 -2
- package/build/internal/cjs/meta.js.map +1 -0
- package/build/internal/es/index.d.ts +2 -0
- package/build/internal/es/index.js +3 -0
- package/build/internal/es/index.js.map +1 -0
- package/build/internal/es/meta.d.ts +1 -0
- package/build/internal/es/meta.js +2 -0
- package/build/internal/es/meta.js.map +1 -0
- package/meta/package.json +1 -5
- package/package.json +23 -17
- package/build/cjs/context.d.ts +0 -1
- package/build/cjs/context.js.map +0 -1
- package/build/es/context.d.ts +0 -1
- package/build/es/context.js +0 -2
- package/build/es/context.js.map +0 -1
- package/context/package.json +0 -7
- package/type-bundles/context.bundle.d.ts +0 -1225
- package/type-bundles/index.bundle.d.ts +0 -1225
- package/type-bundles/meta.bundle.d.ts +0 -441
|
@@ -1,441 +0,0 @@
|
|
|
1
|
-
/** Event is the main entity of EventService */
|
|
2
|
-
interface Event$1 {
|
|
3
|
-
/**
|
|
4
|
-
* Event ID
|
|
5
|
-
* @readonly
|
|
6
|
-
*/
|
|
7
|
-
id?: string | null;
|
|
8
|
-
/** Represents the current state of an item. Each time the item is modified, its `revision` changes. For an update operation to succeed, you MUST pass the latest revision */
|
|
9
|
-
revision?: string | null;
|
|
10
|
-
/**
|
|
11
|
-
* Represents the time this Event was created
|
|
12
|
-
* @readonly
|
|
13
|
-
*/
|
|
14
|
-
createdDate?: Date | null;
|
|
15
|
-
/**
|
|
16
|
-
* Represents the time this Event was last updated
|
|
17
|
-
* @readonly
|
|
18
|
-
*/
|
|
19
|
-
updatedDate?: Date | null;
|
|
20
|
-
/** Wallet ID */
|
|
21
|
-
walletId?: string;
|
|
22
|
-
/** Represents the time when the event's amount will be added to the account */
|
|
23
|
-
startDate?: Date | null;
|
|
24
|
-
/** Represents the time when the unused balance will be deducted from the account */
|
|
25
|
-
expiresAt?: Date | null;
|
|
26
|
-
/** Represents the time when the event was manually disabled */
|
|
27
|
-
disabledAt?: Date | null;
|
|
28
|
-
/** The amount to be added to the customer */
|
|
29
|
-
amount?: string;
|
|
30
|
-
/** Free text comment regarding the Event context */
|
|
31
|
-
note?: string | null;
|
|
32
|
-
/** Indicates the kind of the specific event */
|
|
33
|
-
type?: EventType$1;
|
|
34
|
-
/**
|
|
35
|
-
* The transactionId that added the event's amount;
|
|
36
|
-
* @readonly
|
|
37
|
-
*/
|
|
38
|
-
eventAddedTransactionId?: string | null;
|
|
39
|
-
/**
|
|
40
|
-
* The transactionId that removed the remaining event's balance;
|
|
41
|
-
* @readonly
|
|
42
|
-
*/
|
|
43
|
-
eventRemovedTransactionId?: string | null;
|
|
44
|
-
status?: EventStatus$1;
|
|
45
|
-
}
|
|
46
|
-
declare enum EventType$1 {
|
|
47
|
-
UNKNOWN = "UNKNOWN",
|
|
48
|
-
REWARD = "REWARD",
|
|
49
|
-
REFUND = "REFUND"
|
|
50
|
-
}
|
|
51
|
-
declare enum EventStatus$1 {
|
|
52
|
-
PENDING = "PENDING",
|
|
53
|
-
ACTIVE = "ACTIVE",
|
|
54
|
-
DISABLED = "DISABLED",
|
|
55
|
-
EXPIRED = "EXPIRED"
|
|
56
|
-
}
|
|
57
|
-
interface CreateEventRequest$1 {
|
|
58
|
-
/** Event to be created */
|
|
59
|
-
event: Event$1;
|
|
60
|
-
}
|
|
61
|
-
interface CreateEventResponse$1 {
|
|
62
|
-
/** The created Event */
|
|
63
|
-
event?: Event$1;
|
|
64
|
-
}
|
|
65
|
-
interface GetEventRequest$1 {
|
|
66
|
-
/** ID of the Event to retrieve */
|
|
67
|
-
eventId: string;
|
|
68
|
-
}
|
|
69
|
-
interface GetEventResponse$1 {
|
|
70
|
-
/** The retrieved Event */
|
|
71
|
-
event?: Event$1;
|
|
72
|
-
}
|
|
73
|
-
interface UpdateEventRequest$1 {
|
|
74
|
-
/** Event to be updated, may be partial */
|
|
75
|
-
event: Event$1;
|
|
76
|
-
}
|
|
77
|
-
interface UpdateEventResponse$1 {
|
|
78
|
-
/** The updated Event */
|
|
79
|
-
event?: Event$1;
|
|
80
|
-
}
|
|
81
|
-
interface DisableEventRequest$1 {
|
|
82
|
-
/** ID of the Event to delete */
|
|
83
|
-
eventId: string;
|
|
84
|
-
/** The revision of the Event */
|
|
85
|
-
revision: string;
|
|
86
|
-
}
|
|
87
|
-
interface DisableEventResponse$1 {
|
|
88
|
-
/** The expired Event */
|
|
89
|
-
event?: Event$1;
|
|
90
|
-
}
|
|
91
|
-
interface QueryV2$1 extends QueryV2PagingMethodOneOf$1 {
|
|
92
|
-
/** Paging options to limit and skip the number of items. */
|
|
93
|
-
paging?: Paging$1;
|
|
94
|
-
/** Cursor token pointing to a page of results. Not used in the first request. Following requests use the cursor token and not `filter` or `sort`. */
|
|
95
|
-
cursorPaging?: CursorPaging$1;
|
|
96
|
-
/**
|
|
97
|
-
* Filter object.
|
|
98
|
-
*
|
|
99
|
-
* Learn more about the [filter section](https://dev.wix.com/docs/rest/articles/getting-started/api-query-language#the-filter-section).
|
|
100
|
-
*/
|
|
101
|
-
filter?: Record<string, any> | null;
|
|
102
|
-
/**
|
|
103
|
-
* Sort object.
|
|
104
|
-
*
|
|
105
|
-
* Learn more about the [sort section](https://dev.wix.com/docs/rest/articles/getting-started/api-query-language#the-sort-section).
|
|
106
|
-
*/
|
|
107
|
-
sort?: Sorting$1[];
|
|
108
|
-
/** Array of projected fields. A list of specific field names to return. If `fieldsets` are also specified, the union of `fieldsets` and `fields` is returned. */
|
|
109
|
-
fields?: string[];
|
|
110
|
-
/** Array of named, predefined sets of projected fields. A array of predefined named sets of fields to be returned. Specifying multiple `fieldsets` will return the union of fields from all sets. If `fields` are also specified, the union of `fieldsets` and `fields` is returned. */
|
|
111
|
-
fieldsets?: string[];
|
|
112
|
-
}
|
|
113
|
-
/** @oneof */
|
|
114
|
-
interface QueryV2PagingMethodOneOf$1 {
|
|
115
|
-
/** Paging options to limit and skip the number of items. */
|
|
116
|
-
paging?: Paging$1;
|
|
117
|
-
/** Cursor token pointing to a page of results. Not used in the first request. Following requests use the cursor token and not `filter` or `sort`. */
|
|
118
|
-
cursorPaging?: CursorPaging$1;
|
|
119
|
-
}
|
|
120
|
-
interface Sorting$1 {
|
|
121
|
-
/** Name of the field to sort by. */
|
|
122
|
-
fieldName?: string;
|
|
123
|
-
/** Sort order. */
|
|
124
|
-
order?: SortOrder$1;
|
|
125
|
-
}
|
|
126
|
-
declare enum SortOrder$1 {
|
|
127
|
-
ASC = "ASC",
|
|
128
|
-
DESC = "DESC"
|
|
129
|
-
}
|
|
130
|
-
interface Paging$1 {
|
|
131
|
-
/** Number of items to load. */
|
|
132
|
-
limit?: number | null;
|
|
133
|
-
/** Number of items to skip in the current sort order. */
|
|
134
|
-
offset?: number | null;
|
|
135
|
-
}
|
|
136
|
-
interface CursorPaging$1 {
|
|
137
|
-
/** Maximum number of items to return in the results. */
|
|
138
|
-
limit?: number | null;
|
|
139
|
-
/**
|
|
140
|
-
* Pointer to the next or previous page in the list of results.
|
|
141
|
-
*
|
|
142
|
-
* Pass the relevant cursor token from the `pagingMetadata` object in the previous call's response.
|
|
143
|
-
* Not relevant for the first request.
|
|
144
|
-
*/
|
|
145
|
-
cursor?: string | null;
|
|
146
|
-
}
|
|
147
|
-
interface PagingMetadataV2$1 {
|
|
148
|
-
/** Number of items returned in the response. */
|
|
149
|
-
count?: number | null;
|
|
150
|
-
/** Offset that was requested. */
|
|
151
|
-
offset?: number | null;
|
|
152
|
-
/** Total number of items that match the query. Returned if offset paging is used and the `tooManyToCount` flag is not set. */
|
|
153
|
-
total?: number | null;
|
|
154
|
-
/** Flag that indicates the server failed to calculate the `total` field. */
|
|
155
|
-
tooManyToCount?: boolean | null;
|
|
156
|
-
/** Cursors to navigate through the result pages using `next` and `prev`. Returned if cursor paging is used. */
|
|
157
|
-
cursors?: Cursors$1;
|
|
158
|
-
}
|
|
159
|
-
interface Cursors$1 {
|
|
160
|
-
/** Cursor string pointing to the next page in the list of results. */
|
|
161
|
-
next?: string | null;
|
|
162
|
-
/** Cursor pointing to the previous page in the list of results. */
|
|
163
|
-
prev?: string | null;
|
|
164
|
-
}
|
|
165
|
-
interface QueryEventBalancesRequest$1 {
|
|
166
|
-
/** WQL expression */
|
|
167
|
-
query: QueryV2$1;
|
|
168
|
-
}
|
|
169
|
-
interface QueryEventBalancesResponse$1 {
|
|
170
|
-
/** The retrieved Events with their balance */
|
|
171
|
-
events?: EventWithBalance$1[];
|
|
172
|
-
pagingMetadata?: PagingMetadataV2$1;
|
|
173
|
-
}
|
|
174
|
-
interface EventWithBalance$1 {
|
|
175
|
-
/** Event */
|
|
176
|
-
event?: Event$1;
|
|
177
|
-
/** Event balance */
|
|
178
|
-
balance?: string | null;
|
|
179
|
-
}
|
|
180
|
-
interface EventNonNullableFields$1 {
|
|
181
|
-
walletId: string;
|
|
182
|
-
amount: string;
|
|
183
|
-
type: EventType$1;
|
|
184
|
-
status: EventStatus$1;
|
|
185
|
-
}
|
|
186
|
-
interface CreateEventResponseNonNullableFields$1 {
|
|
187
|
-
event?: EventNonNullableFields$1;
|
|
188
|
-
}
|
|
189
|
-
interface GetEventResponseNonNullableFields$1 {
|
|
190
|
-
event?: EventNonNullableFields$1;
|
|
191
|
-
}
|
|
192
|
-
interface UpdateEventResponseNonNullableFields$1 {
|
|
193
|
-
event?: EventNonNullableFields$1;
|
|
194
|
-
}
|
|
195
|
-
interface DisableEventResponseNonNullableFields$1 {
|
|
196
|
-
event?: EventNonNullableFields$1;
|
|
197
|
-
}
|
|
198
|
-
interface EventWithBalanceNonNullableFields$1 {
|
|
199
|
-
event?: EventNonNullableFields$1;
|
|
200
|
-
}
|
|
201
|
-
interface QueryEventBalancesResponseNonNullableFields$1 {
|
|
202
|
-
events: EventWithBalanceNonNullableFields$1[];
|
|
203
|
-
}
|
|
204
|
-
|
|
205
|
-
/** Event is the main entity of EventService */
|
|
206
|
-
interface Event {
|
|
207
|
-
/**
|
|
208
|
-
* Event ID
|
|
209
|
-
* @readonly
|
|
210
|
-
*/
|
|
211
|
-
_id?: string | null;
|
|
212
|
-
/** Represents the current state of an item. Each time the item is modified, its `revision` changes. For an update operation to succeed, you MUST pass the latest revision */
|
|
213
|
-
revision?: string | null;
|
|
214
|
-
/**
|
|
215
|
-
* Represents the time this Event was created
|
|
216
|
-
* @readonly
|
|
217
|
-
*/
|
|
218
|
-
_createdDate?: Date | null;
|
|
219
|
-
/**
|
|
220
|
-
* Represents the time this Event was last updated
|
|
221
|
-
* @readonly
|
|
222
|
-
*/
|
|
223
|
-
_updatedDate?: Date | null;
|
|
224
|
-
/** Wallet ID */
|
|
225
|
-
walletId?: string;
|
|
226
|
-
/** Represents the time when the event's amount will be added to the account */
|
|
227
|
-
startDate?: Date | null;
|
|
228
|
-
/** Represents the time when the unused balance will be deducted from the account */
|
|
229
|
-
expiresAt?: Date | null;
|
|
230
|
-
/** Represents the time when the event was manually disabled */
|
|
231
|
-
disabledAt?: Date | null;
|
|
232
|
-
/** The amount to be added to the customer */
|
|
233
|
-
amount?: string;
|
|
234
|
-
/** Free text comment regarding the Event context */
|
|
235
|
-
note?: string | null;
|
|
236
|
-
/** Indicates the kind of the specific event */
|
|
237
|
-
type?: EventType;
|
|
238
|
-
/**
|
|
239
|
-
* The transactionId that added the event's amount;
|
|
240
|
-
* @readonly
|
|
241
|
-
*/
|
|
242
|
-
eventAddedTransactionId?: string | null;
|
|
243
|
-
/**
|
|
244
|
-
* The transactionId that removed the remaining event's balance;
|
|
245
|
-
* @readonly
|
|
246
|
-
*/
|
|
247
|
-
eventRemovedTransactionId?: string | null;
|
|
248
|
-
status?: EventStatus;
|
|
249
|
-
}
|
|
250
|
-
declare enum EventType {
|
|
251
|
-
UNKNOWN = "UNKNOWN",
|
|
252
|
-
REWARD = "REWARD",
|
|
253
|
-
REFUND = "REFUND"
|
|
254
|
-
}
|
|
255
|
-
declare enum EventStatus {
|
|
256
|
-
PENDING = "PENDING",
|
|
257
|
-
ACTIVE = "ACTIVE",
|
|
258
|
-
DISABLED = "DISABLED",
|
|
259
|
-
EXPIRED = "EXPIRED"
|
|
260
|
-
}
|
|
261
|
-
interface CreateEventRequest {
|
|
262
|
-
/** Event to be created */
|
|
263
|
-
event: Event;
|
|
264
|
-
}
|
|
265
|
-
interface CreateEventResponse {
|
|
266
|
-
/** The created Event */
|
|
267
|
-
event?: Event;
|
|
268
|
-
}
|
|
269
|
-
interface GetEventRequest {
|
|
270
|
-
/** ID of the Event to retrieve */
|
|
271
|
-
eventId: string;
|
|
272
|
-
}
|
|
273
|
-
interface GetEventResponse {
|
|
274
|
-
/** The retrieved Event */
|
|
275
|
-
event?: Event;
|
|
276
|
-
}
|
|
277
|
-
interface UpdateEventRequest {
|
|
278
|
-
/** Event to be updated, may be partial */
|
|
279
|
-
event: Event;
|
|
280
|
-
}
|
|
281
|
-
interface UpdateEventResponse {
|
|
282
|
-
/** The updated Event */
|
|
283
|
-
event?: Event;
|
|
284
|
-
}
|
|
285
|
-
interface DisableEventRequest {
|
|
286
|
-
/** ID of the Event to delete */
|
|
287
|
-
eventId: string;
|
|
288
|
-
/** The revision of the Event */
|
|
289
|
-
revision: string;
|
|
290
|
-
}
|
|
291
|
-
interface DisableEventResponse {
|
|
292
|
-
/** The expired Event */
|
|
293
|
-
event?: Event;
|
|
294
|
-
}
|
|
295
|
-
interface QueryV2 extends QueryV2PagingMethodOneOf {
|
|
296
|
-
/** Paging options to limit and skip the number of items. */
|
|
297
|
-
paging?: Paging;
|
|
298
|
-
/** Cursor token pointing to a page of results. Not used in the first request. Following requests use the cursor token and not `filter` or `sort`. */
|
|
299
|
-
cursorPaging?: CursorPaging;
|
|
300
|
-
/**
|
|
301
|
-
* Filter object.
|
|
302
|
-
*
|
|
303
|
-
* Learn more about the [filter section](https://dev.wix.com/docs/rest/articles/getting-started/api-query-language#the-filter-section).
|
|
304
|
-
*/
|
|
305
|
-
filter?: Record<string, any> | null;
|
|
306
|
-
/**
|
|
307
|
-
* Sort object.
|
|
308
|
-
*
|
|
309
|
-
* Learn more about the [sort section](https://dev.wix.com/docs/rest/articles/getting-started/api-query-language#the-sort-section).
|
|
310
|
-
*/
|
|
311
|
-
sort?: Sorting[];
|
|
312
|
-
/** Array of projected fields. A list of specific field names to return. If `fieldsets` are also specified, the union of `fieldsets` and `fields` is returned. */
|
|
313
|
-
fields?: string[];
|
|
314
|
-
/** Array of named, predefined sets of projected fields. A array of predefined named sets of fields to be returned. Specifying multiple `fieldsets` will return the union of fields from all sets. If `fields` are also specified, the union of `fieldsets` and `fields` is returned. */
|
|
315
|
-
fieldsets?: string[];
|
|
316
|
-
}
|
|
317
|
-
/** @oneof */
|
|
318
|
-
interface QueryV2PagingMethodOneOf {
|
|
319
|
-
/** Paging options to limit and skip the number of items. */
|
|
320
|
-
paging?: Paging;
|
|
321
|
-
/** Cursor token pointing to a page of results. Not used in the first request. Following requests use the cursor token and not `filter` or `sort`. */
|
|
322
|
-
cursorPaging?: CursorPaging;
|
|
323
|
-
}
|
|
324
|
-
interface Sorting {
|
|
325
|
-
/** Name of the field to sort by. */
|
|
326
|
-
fieldName?: string;
|
|
327
|
-
/** Sort order. */
|
|
328
|
-
order?: SortOrder;
|
|
329
|
-
}
|
|
330
|
-
declare enum SortOrder {
|
|
331
|
-
ASC = "ASC",
|
|
332
|
-
DESC = "DESC"
|
|
333
|
-
}
|
|
334
|
-
interface Paging {
|
|
335
|
-
/** Number of items to load. */
|
|
336
|
-
limit?: number | null;
|
|
337
|
-
/** Number of items to skip in the current sort order. */
|
|
338
|
-
offset?: number | null;
|
|
339
|
-
}
|
|
340
|
-
interface CursorPaging {
|
|
341
|
-
/** Maximum number of items to return in the results. */
|
|
342
|
-
limit?: number | null;
|
|
343
|
-
/**
|
|
344
|
-
* Pointer to the next or previous page in the list of results.
|
|
345
|
-
*
|
|
346
|
-
* Pass the relevant cursor token from the `pagingMetadata` object in the previous call's response.
|
|
347
|
-
* Not relevant for the first request.
|
|
348
|
-
*/
|
|
349
|
-
cursor?: string | null;
|
|
350
|
-
}
|
|
351
|
-
interface PagingMetadataV2 {
|
|
352
|
-
/** Number of items returned in the response. */
|
|
353
|
-
count?: number | null;
|
|
354
|
-
/** Offset that was requested. */
|
|
355
|
-
offset?: number | null;
|
|
356
|
-
/** Total number of items that match the query. Returned if offset paging is used and the `tooManyToCount` flag is not set. */
|
|
357
|
-
total?: number | null;
|
|
358
|
-
/** Flag that indicates the server failed to calculate the `total` field. */
|
|
359
|
-
tooManyToCount?: boolean | null;
|
|
360
|
-
/** Cursors to navigate through the result pages using `next` and `prev`. Returned if cursor paging is used. */
|
|
361
|
-
cursors?: Cursors;
|
|
362
|
-
}
|
|
363
|
-
interface Cursors {
|
|
364
|
-
/** Cursor string pointing to the next page in the list of results. */
|
|
365
|
-
next?: string | null;
|
|
366
|
-
/** Cursor pointing to the previous page in the list of results. */
|
|
367
|
-
prev?: string | null;
|
|
368
|
-
}
|
|
369
|
-
interface QueryEventBalancesRequest {
|
|
370
|
-
/** WQL expression */
|
|
371
|
-
query: QueryV2;
|
|
372
|
-
}
|
|
373
|
-
interface QueryEventBalancesResponse {
|
|
374
|
-
/** The retrieved Events with their balance */
|
|
375
|
-
events?: EventWithBalance[];
|
|
376
|
-
pagingMetadata?: PagingMetadataV2;
|
|
377
|
-
}
|
|
378
|
-
interface EventWithBalance {
|
|
379
|
-
/** Event */
|
|
380
|
-
event?: Event;
|
|
381
|
-
/** Event balance */
|
|
382
|
-
balance?: string | null;
|
|
383
|
-
}
|
|
384
|
-
interface EventNonNullableFields {
|
|
385
|
-
walletId: string;
|
|
386
|
-
amount: string;
|
|
387
|
-
type: EventType;
|
|
388
|
-
status: EventStatus;
|
|
389
|
-
}
|
|
390
|
-
interface CreateEventResponseNonNullableFields {
|
|
391
|
-
event?: EventNonNullableFields;
|
|
392
|
-
}
|
|
393
|
-
interface GetEventResponseNonNullableFields {
|
|
394
|
-
event?: EventNonNullableFields;
|
|
395
|
-
}
|
|
396
|
-
interface UpdateEventResponseNonNullableFields {
|
|
397
|
-
event?: EventNonNullableFields;
|
|
398
|
-
}
|
|
399
|
-
interface DisableEventResponseNonNullableFields {
|
|
400
|
-
event?: EventNonNullableFields;
|
|
401
|
-
}
|
|
402
|
-
interface EventWithBalanceNonNullableFields {
|
|
403
|
-
event?: EventNonNullableFields;
|
|
404
|
-
}
|
|
405
|
-
interface QueryEventBalancesResponseNonNullableFields {
|
|
406
|
-
events: EventWithBalanceNonNullableFields[];
|
|
407
|
-
}
|
|
408
|
-
|
|
409
|
-
type __PublicMethodMetaInfo<K = string, M = unknown, T = unknown, S = unknown, Q = unknown, R = unknown> = {
|
|
410
|
-
getUrl: (context: any) => string;
|
|
411
|
-
httpMethod: K;
|
|
412
|
-
path: string;
|
|
413
|
-
pathParams: M;
|
|
414
|
-
__requestType: T;
|
|
415
|
-
__originalRequestType: S;
|
|
416
|
-
__responseType: Q;
|
|
417
|
-
__originalResponseType: R;
|
|
418
|
-
};
|
|
419
|
-
declare function createEvent(): __PublicMethodMetaInfo<'POST', {}, CreateEventRequest, CreateEventRequest$1, CreateEventResponse & CreateEventResponseNonNullableFields, CreateEventResponse$1 & CreateEventResponseNonNullableFields$1>;
|
|
420
|
-
declare function getEvent(): __PublicMethodMetaInfo<'GET', {
|
|
421
|
-
eventId: string;
|
|
422
|
-
}, GetEventRequest, GetEventRequest$1, GetEventResponse & GetEventResponseNonNullableFields, GetEventResponse$1 & GetEventResponseNonNullableFields$1>;
|
|
423
|
-
declare function updateEvent(): __PublicMethodMetaInfo<'PATCH', {
|
|
424
|
-
eventId: string;
|
|
425
|
-
}, UpdateEventRequest, UpdateEventRequest$1, UpdateEventResponse & UpdateEventResponseNonNullableFields, UpdateEventResponse$1 & UpdateEventResponseNonNullableFields$1>;
|
|
426
|
-
declare function disableEvent(): __PublicMethodMetaInfo<'POST', {
|
|
427
|
-
eventId: string;
|
|
428
|
-
}, DisableEventRequest, DisableEventRequest$1, DisableEventResponse & DisableEventResponseNonNullableFields, DisableEventResponse$1 & DisableEventResponseNonNullableFields$1>;
|
|
429
|
-
declare function queryEventBalances(): __PublicMethodMetaInfo<'POST', {}, QueryEventBalancesRequest, QueryEventBalancesRequest$1, QueryEventBalancesResponse & QueryEventBalancesResponseNonNullableFields, QueryEventBalancesResponse$1 & QueryEventBalancesResponseNonNullableFields$1>;
|
|
430
|
-
|
|
431
|
-
type meta___PublicMethodMetaInfo<K = string, M = unknown, T = unknown, S = unknown, Q = unknown, R = unknown> = __PublicMethodMetaInfo<K, M, T, S, Q, R>;
|
|
432
|
-
declare const meta_createEvent: typeof createEvent;
|
|
433
|
-
declare const meta_disableEvent: typeof disableEvent;
|
|
434
|
-
declare const meta_getEvent: typeof getEvent;
|
|
435
|
-
declare const meta_queryEventBalances: typeof queryEventBalances;
|
|
436
|
-
declare const meta_updateEvent: typeof updateEvent;
|
|
437
|
-
declare namespace meta {
|
|
438
|
-
export { type meta___PublicMethodMetaInfo as __PublicMethodMetaInfo, meta_createEvent as createEvent, meta_disableEvent as disableEvent, meta_getEvent as getEvent, meta_queryEventBalances as queryEventBalances, meta_updateEvent as updateEvent };
|
|
439
|
-
}
|
|
440
|
-
|
|
441
|
-
export { meta as event };
|