dcl-catalyst-client 18.1.1 → 20.0.0

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.
Files changed (57) hide show
  1. package/README.md +2 -68
  2. package/dist/client/CatalystClient.d.ts +2 -4
  3. package/dist/client/CatalystClient.d.ts.map +1 -1
  4. package/dist/client/CatalystClient.js +1 -20
  5. package/dist/client/CatalystClient.js.map +1 -1
  6. package/dist/client/ContentClient.d.ts +1 -4
  7. package/dist/client/ContentClient.d.ts.map +1 -1
  8. package/dist/client/ContentClient.js +0 -47
  9. package/dist/client/ContentClient.js.map +1 -1
  10. package/dist/client/LambdasClient.d.ts +20 -15
  11. package/dist/client/LambdasClient.d.ts.map +1 -1
  12. package/dist/client/LambdasClient.js +44 -101
  13. package/dist/client/LambdasClient.js.map +1 -1
  14. package/dist/client/index.d.ts +5 -0
  15. package/dist/client/index.d.ts.map +1 -0
  16. package/dist/client/index.js +21 -0
  17. package/dist/client/index.js.map +1 -0
  18. package/dist/client/specs/catalyst.schemas.d.ts +672 -0
  19. package/dist/client/specs/catalyst.schemas.d.ts.map +1 -0
  20. package/dist/client/specs/catalyst.schemas.js +20 -0
  21. package/dist/client/specs/catalyst.schemas.js.map +1 -0
  22. package/dist/client/specs/lambdas-client.d.ts +713 -0
  23. package/dist/client/specs/lambdas-client.d.ts.map +1 -0
  24. package/dist/client/specs/lambdas-client.js +219 -0
  25. package/dist/client/specs/lambdas-client.js.map +1 -0
  26. package/dist/client/types.d.ts +0 -18
  27. package/dist/client/types.d.ts.map +1 -1
  28. package/dist/client/utils/fetcher.d.ts +11 -0
  29. package/dist/client/utils/fetcher.d.ts.map +1 -1
  30. package/dist/client/utils/fetcher.js +15 -1
  31. package/dist/client/utils/fetcher.js.map +1 -1
  32. package/dist/contracts-snapshots/data.d.ts +1 -0
  33. package/dist/contracts-snapshots/data.d.ts.map +1 -1
  34. package/dist/contracts-snapshots/data.js +2 -1
  35. package/dist/contracts-snapshots/data.js.map +1 -1
  36. package/dist/contracts-snapshots/index.d.ts +4 -5
  37. package/dist/contracts-snapshots/index.d.ts.map +1 -1
  38. package/dist/contracts-snapshots/index.js +3 -3
  39. package/dist/contracts-snapshots/index.js.map +1 -1
  40. package/dist/package.json +9 -7
  41. package/package.json +11 -9
  42. package/dist/contracts/abi.d.ts +0 -59
  43. package/dist/contracts/abi.d.ts.map +0 -1
  44. package/dist/contracts/abi.js +0 -942
  45. package/dist/contracts/abi.js.map +0 -1
  46. package/dist/contracts/index.d.ts +0 -19
  47. package/dist/contracts/index.d.ts.map +0 -1
  48. package/dist/contracts/index.js +0 -86
  49. package/dist/contracts/index.js.map +0 -1
  50. package/dist/contracts/types.d.ts +0 -2
  51. package/dist/contracts/types.d.ts.map +0 -1
  52. package/dist/contracts/types.js +0 -3
  53. package/dist/contracts/types.js.map +0 -1
  54. package/dist/types.d.ts +0 -6
  55. package/dist/types.d.ts.map +0 -1
  56. package/dist/types.js +0 -3
  57. package/dist/types.js.map +0 -1
@@ -0,0 +1,713 @@
1
+ export type ValidateSignature200 = {
2
+ [key: string]: any;
3
+ };
4
+ export type ValidateSignatureBody = {
5
+ [key: string]: any;
6
+ };
7
+ export type SearchWearablesParams = {
8
+ /**
9
+ * Lis of URNs that identify the collection. Maximum amount of ids allowed is 500.
10
+ */
11
+ collectionId?: string[];
12
+ /**
13
+ * List of wearables URNs to search. Maximum amount of ids allowed is 500.
14
+ */
15
+ wearableId?: string[];
16
+ /**
17
+ * Search text
18
+ */
19
+ textSearch?: string;
20
+ /**
21
+ * Limit the quantity of results that will be returned by the request. You can only request up to 500 results.
22
+ */
23
+ limit?: number;
24
+ /**
25
+ * The result will always be ordered by the local timestamp fields but in case of timestamp collisions, you can use the lastId field to filter the result
26
+ */
27
+ lastId?: string;
28
+ };
29
+ export type GetThirdPartyCollection200 = {
30
+ elements: ThirdPartyWearable[];
31
+ totalAmount: number;
32
+ pageNum: number;
33
+ pageSize: number;
34
+ };
35
+ export type GetThirdPartyCollectionParams = {
36
+ /**
37
+ * The number of the requested page.
38
+ */
39
+ pageNum?: string;
40
+ /**
41
+ * The size of the requested page.
42
+ */
43
+ pageSize?: string;
44
+ };
45
+ export type GetThirdPartyWearables200 = {
46
+ elements: ThirdPartyWearable[];
47
+ totalAmount: number;
48
+ pageNum: number;
49
+ pageSize: number;
50
+ };
51
+ export type GetThirdPartyWearablesParams = {
52
+ /**
53
+ * The number of the requested page.
54
+ */
55
+ pageNum?: string;
56
+ /**
57
+ * The size of the requested page.
58
+ */
59
+ pageSize?: string;
60
+ };
61
+ export type GetLandsParams = {
62
+ /**
63
+ * The number of the requested page. It needs `pageSize` to be present to enable a paginated response.
64
+ */
65
+ pageNum?: string;
66
+ /**
67
+ * The size of the requested page. It needs `pageNum` to be present to enable a paginated response.
68
+ */
69
+ pageSize?: string;
70
+ };
71
+ export type GetNamesParams = {
72
+ /**
73
+ * The number of the requested page. It needs `pageSize` to be present to enable a paginated response.
74
+ */
75
+ pageNum?: string;
76
+ /**
77
+ * The size of the requested page. It needs `pageNum` to be present to enable a paginated response.
78
+ */
79
+ pageSize?: string;
80
+ };
81
+ export type GetEmotes200 = {
82
+ elements: Emote[];
83
+ totalAmount: number;
84
+ pageNum: number;
85
+ pageSize: number;
86
+ };
87
+ export type GetEmotesParams = {
88
+ /**
89
+ * Third Party collection Id to filter emotes, if this param is not sent then the 3rd parties emotes are not shown. If it is sent, only the 3rd parties emotes are shown.
90
+ */
91
+ collectionId?: string;
92
+ /**
93
+ * If present, response will be extended with the entity data.
94
+ */
95
+ includeEntities?: boolean;
96
+ /**
97
+ * The number of the requested page.
98
+ */
99
+ pageNum?: string;
100
+ /**
101
+ * The size of the requested page
102
+ */
103
+ pageSize?: string;
104
+ };
105
+ export type GetWearables200 = {
106
+ elements: Wearable[];
107
+ totalAmount: number;
108
+ pageNum: number;
109
+ pageSize: number;
110
+ };
111
+ export type GetWearablesParams = {
112
+ /**
113
+ * If present, response will be extended with the entity data.
114
+ */
115
+ includeEntities?: boolean;
116
+ /**
117
+ * If present, response will include the third-party wearables owned by the address. They will appear before other wearables if the response is paginated.
118
+ */
119
+ includeThirdParty?: boolean;
120
+ /**
121
+ * The number of the requested page.
122
+ */
123
+ pageNum?: string;
124
+ /**
125
+ * The size of the requested page.
126
+ */
127
+ pageSize?: string;
128
+ /**
129
+ * Determines the field to be sort by. By default it will be by `transferredAt`. Possible values: `transferredAt` and `rarity`.
130
+ */
131
+ orderBy?: string;
132
+ };
133
+ export type GetCollections200CollectionsItem = {
134
+ id: string;
135
+ name: string;
136
+ };
137
+ export type GetCollections200 = {
138
+ collections?: GetCollections200CollectionsItem[];
139
+ };
140
+ export type PeersPeersItem = {
141
+ id?: string;
142
+ address?: string;
143
+ parcel?: number[];
144
+ position?: number[];
145
+ lastPing?: number;
146
+ };
147
+ export interface Peers {
148
+ ok?: boolean;
149
+ peers?: PeersPeersItem[];
150
+ }
151
+ export type IslandIdPeersItem = {
152
+ id?: string;
153
+ address?: string;
154
+ parcel?: number[];
155
+ position?: number[];
156
+ lastPing?: number;
157
+ preferedIslandId?: string;
158
+ };
159
+ export interface IslandId {
160
+ id?: string;
161
+ peers?: IslandIdPeersItem[];
162
+ maxPeers?: number;
163
+ center?: number[];
164
+ radius?: number;
165
+ }
166
+ export type IslandsIslandsItemPeersItem = {
167
+ id?: string;
168
+ address?: string;
169
+ parcel?: number[];
170
+ position?: number[];
171
+ lastPing?: number;
172
+ preferedIslandId?: string;
173
+ };
174
+ export type IslandsIslandsItem = {
175
+ id?: string;
176
+ peers?: IslandsIslandsItemPeersItem[];
177
+ maxPeers?: number;
178
+ center?: number[];
179
+ radius?: number;
180
+ };
181
+ export interface Islands {
182
+ ok?: boolean;
183
+ islands?: IslandsIslandsItem[];
184
+ }
185
+ export type ThirdPartyIntegrationsDataItem = {
186
+ urn: string;
187
+ name?: string;
188
+ description?: string;
189
+ };
190
+ export interface ThirdPartyIntegrations {
191
+ data: ThirdPartyIntegrationsDataItem[];
192
+ }
193
+ export type ProfileAvatarsItem = {
194
+ userId?: string;
195
+ email?: string;
196
+ name?: string;
197
+ hasClaimedName?: boolean;
198
+ description?: string;
199
+ ethAddress?: string;
200
+ version?: number;
201
+ avatar?: ProfileAvatarsItemAvatar;
202
+ tutorialStep?: number;
203
+ interests?: string[];
204
+ unclaimedName?: string;
205
+ };
206
+ export interface Profile {
207
+ avatars?: ProfileAvatarsItem[];
208
+ }
209
+ export type ProfileAvatarsItemAvatarSkinColor = {
210
+ r?: number;
211
+ g?: number;
212
+ b?: number;
213
+ };
214
+ export type ProfileAvatarsItemAvatarSkin = {
215
+ color?: ProfileAvatarsItemAvatarSkinColor;
216
+ };
217
+ export type ProfileAvatarsItemAvatarHairColor = {
218
+ r?: number;
219
+ g?: number;
220
+ b?: number;
221
+ };
222
+ export type ProfileAvatarsItemAvatarHair = {
223
+ color?: ProfileAvatarsItemAvatarHairColor;
224
+ };
225
+ export type ProfileAvatarsItemAvatarEyesColor = {
226
+ r?: number;
227
+ g?: number;
228
+ b?: number;
229
+ };
230
+ export type ProfileAvatarsItemAvatarEyes = {
231
+ color?: ProfileAvatarsItemAvatarEyesColor;
232
+ };
233
+ export type ProfileAvatarsItemAvatarSnapshots = {
234
+ face?: string;
235
+ face128?: string;
236
+ face256?: string;
237
+ body?: string;
238
+ };
239
+ export type ProfileAvatarsItemAvatar = {
240
+ bodyShape?: string;
241
+ snapshots?: ProfileAvatarsItemAvatarSnapshots;
242
+ eyes?: ProfileAvatarsItemAvatarEyes;
243
+ hair?: ProfileAvatarsItemAvatarHair;
244
+ skin?: ProfileAvatarsItemAvatarSkin;
245
+ wearables?: string[];
246
+ };
247
+ export interface PostProfiles {
248
+ ids?: string[];
249
+ }
250
+ export type RealmsItem = {
251
+ serverName?: string;
252
+ url?: string;
253
+ layer?: string;
254
+ usersCount?: number;
255
+ maxUsers?: number;
256
+ userParcels?: number[][];
257
+ };
258
+ export type Realms = RealmsItem[];
259
+ export type HotScenesItemRealmsItem = {
260
+ serverName?: string;
261
+ url?: string;
262
+ layer?: string;
263
+ usersCount?: number;
264
+ maxUsers?: number;
265
+ userParcels?: number[][];
266
+ };
267
+ export type HotScenesItem = {
268
+ id?: string;
269
+ name?: string;
270
+ baseCoords?: number[];
271
+ usersTotalCount?: number;
272
+ parcels?: number[][];
273
+ thumbnail?: string;
274
+ creator?: string;
275
+ description?: string;
276
+ realms?: HotScenesItemRealmsItem[];
277
+ };
278
+ export type HotScenes = HotScenesItem[];
279
+ export type DenylistedUsernames = string[];
280
+ export type Pois = string[];
281
+ export type ServersItem = {
282
+ baseUrl?: string;
283
+ owner?: string;
284
+ id?: string;
285
+ };
286
+ export type Servers = ServersItem[];
287
+ export type WearablesPagination = {
288
+ limit?: number;
289
+ next?: string;
290
+ };
291
+ export type WearablesFilters = {
292
+ textSearch?: string;
293
+ };
294
+ export interface Wearables {
295
+ wearables?: WearablesWearablesItem[];
296
+ filters?: WearablesFilters;
297
+ pagination?: WearablesPagination;
298
+ }
299
+ export type WearablesWearablesItemI18nItem = {
300
+ code?: string;
301
+ text?: string;
302
+ };
303
+ export type WearablesWearablesItem = {
304
+ id?: string;
305
+ description?: string;
306
+ image?: string;
307
+ thumbnail?: string;
308
+ collectionAddress?: string;
309
+ rarity?: string;
310
+ data?: WearablesWearablesItemData;
311
+ i18n?: WearablesWearablesItemI18nItem[];
312
+ createdAt?: number;
313
+ updatedAt?: number;
314
+ };
315
+ export type WearablesWearablesItemDataRepresentationsItemContentsItem = {
316
+ key?: string;
317
+ url?: string;
318
+ };
319
+ export type WearablesWearablesItemDataRepresentationsItemOverrideHidesItem = {
320
+ [key: string]: any;
321
+ };
322
+ export type WearablesWearablesItemDataRepresentationsItemOverrideReplacesItem = {
323
+ [key: string]: any;
324
+ };
325
+ export type WearablesWearablesItemDataRepresentationsItem = {
326
+ bodyShapes?: string[];
327
+ mainFile?: string;
328
+ overrideReplaces?: WearablesWearablesItemDataRepresentationsItemOverrideReplacesItem[];
329
+ overrideHides?: WearablesWearablesItemDataRepresentationsItemOverrideHidesItem[];
330
+ contents?: WearablesWearablesItemDataRepresentationsItemContentsItem[];
331
+ };
332
+ export type WearablesWearablesItemData = {
333
+ replaces?: string[];
334
+ hides?: string[];
335
+ tags?: string[];
336
+ category?: string;
337
+ representations?: WearablesWearablesItemDataRepresentationsItem[];
338
+ };
339
+ export type ThirdPartyWearableIndividualDataItem = {
340
+ id?: string;
341
+ };
342
+ export interface ThirdPartyWearable {
343
+ urn: string;
344
+ amount?: number;
345
+ name: string;
346
+ category: string;
347
+ entity: Entity;
348
+ individualData?: ThirdPartyWearableIndividualDataItem[];
349
+ }
350
+ export type LandsPaginatedElementsItem = {
351
+ name?: string;
352
+ contractAddress: string;
353
+ tokenId: string;
354
+ price?: number;
355
+ category: string;
356
+ x?: string;
357
+ y?: string;
358
+ image?: string;
359
+ description?: string;
360
+ };
361
+ export interface LandsPaginated {
362
+ elements: LandsPaginatedElementsItem[];
363
+ totalAmount: number;
364
+ pageNum: number;
365
+ pageSize: number;
366
+ }
367
+ export type NamesPaginatedElementsItem = {
368
+ name: string;
369
+ contractAddress: string;
370
+ tokenId: string;
371
+ price?: number;
372
+ };
373
+ export interface NamesPaginated {
374
+ elements: NamesPaginatedElementsItem[];
375
+ totalAmount: number;
376
+ pageNum: number;
377
+ pageSize: number;
378
+ }
379
+ export interface LambdasError {
380
+ error: string;
381
+ message: string;
382
+ }
383
+ export type WearableIndividualDataItem = {
384
+ id?: string;
385
+ tokenId?: string;
386
+ transferredAt?: number;
387
+ price?: number;
388
+ };
389
+ export interface Wearable {
390
+ urn: string;
391
+ amount?: number;
392
+ name: string;
393
+ rarity: string;
394
+ category: string;
395
+ entity?: Entity;
396
+ individualData?: WearableIndividualDataItem[];
397
+ }
398
+ export type Erc721AttributesItem = {
399
+ trait_type?: string;
400
+ value?: string;
401
+ };
402
+ export interface Erc721 {
403
+ id?: string;
404
+ name?: string;
405
+ description?: string;
406
+ language?: string;
407
+ image?: string;
408
+ thumbnail?: string;
409
+ attributes?: Erc721AttributesItem[];
410
+ }
411
+ export interface StatusLambdas {
412
+ version?: string;
413
+ currentTime?: number;
414
+ commitHash?: string;
415
+ }
416
+ export type StatusContentSynchronizationStatusOtherServersItem = {
417
+ address: string;
418
+ connectionState: string;
419
+ lastDeploymentTimestamp: number;
420
+ };
421
+ export type StatusContentSynchronizationStatus = {
422
+ otherServers?: StatusContentSynchronizationStatusOtherServersItem[];
423
+ lastSyncWithDAO: number;
424
+ synchronizationState: string;
425
+ lastSyncWithOtherServers?: number;
426
+ };
427
+ export interface StatusContent {
428
+ name?: string;
429
+ version: string;
430
+ currentTime?: number;
431
+ lastImmutableTime?: number;
432
+ historySize?: number;
433
+ synchronizationStatus: StatusContentSynchronizationStatus;
434
+ commitHash: string;
435
+ ethNetwork: string;
436
+ }
437
+ export type SnapshotsItemTimeRange = {
438
+ initTimestamp: number;
439
+ endTimestamp: number;
440
+ };
441
+ export type SnapshotsItem = {
442
+ hash: string;
443
+ timeRange: SnapshotsItemTimeRange;
444
+ replacedSnapshotHashes?: string[];
445
+ numberOfEntities: number;
446
+ generationTimestamp: number;
447
+ };
448
+ export type Snapshots = SnapshotsItem[];
449
+ export type PointerChangesDeltasItem = {
450
+ entityType: string;
451
+ entityId: string;
452
+ localTimestamp: number;
453
+ pointers: string[];
454
+ authChain: AuthChain;
455
+ };
456
+ export interface PointerChanges {
457
+ deltas: PointerChangesDeltasItem[];
458
+ }
459
+ export type FailedDeploymentsItem = {
460
+ failedDeploymentsRepo?: string;
461
+ entityType: string;
462
+ entityId: string;
463
+ reason: string;
464
+ errorDescription: string;
465
+ };
466
+ export type FailedDeployments = FailedDeploymentsItem[];
467
+ export type EntityMetadata = {
468
+ [key: string]: any;
469
+ };
470
+ export type EntityContentItem = {
471
+ file: string;
472
+ hash: string;
473
+ };
474
+ export interface Entity {
475
+ version: string;
476
+ id: string;
477
+ type: string;
478
+ timestamp: number;
479
+ pointers: string[];
480
+ content: EntityContentItem[];
481
+ metadata?: EntityMetadata;
482
+ }
483
+ export interface Emote {
484
+ urn: string;
485
+ amount?: number;
486
+ category: string;
487
+ entity?: Entity;
488
+ }
489
+ export interface Errors {
490
+ errors: string[];
491
+ }
492
+ export type AvailableContentItem = {
493
+ cid: string;
494
+ available: boolean;
495
+ };
496
+ export type AvailableContent = AvailableContentItem[];
497
+ export interface Error {
498
+ error: string;
499
+ }
500
+ export type AuthChainItem = {
501
+ type: string;
502
+ payload: string;
503
+ signature?: string;
504
+ };
505
+ export type AuthChain = AuthChainItem[];
506
+ export interface AuditResponse {
507
+ version: string;
508
+ localTimestamp: number;
509
+ authChain: AuthChain;
510
+ overwrittenBy?: string;
511
+ isDenylisted?: boolean;
512
+ denylistedContent?: string[];
513
+ }
514
+ export type StatsParcelsParcelsItemParcel = {
515
+ x?: number;
516
+ y?: number;
517
+ };
518
+ export type StatsParcelsParcelsItem = {
519
+ peersCount?: number;
520
+ parcel?: StatsParcelsParcelsItemParcel;
521
+ };
522
+ export interface StatsParcels {
523
+ parcels?: StatsParcelsParcelsItem[];
524
+ }
525
+ export type AboutBff = {
526
+ healthy: boolean;
527
+ commitHash?: string;
528
+ usersCount?: number;
529
+ publicUrl: string;
530
+ protocolVersion: string;
531
+ };
532
+ export type AboutLambdas = {
533
+ healthy: boolean;
534
+ commitHash?: string;
535
+ version?: string;
536
+ publicUrl: string;
537
+ };
538
+ export type AboutComms = {
539
+ healthy: boolean;
540
+ protocol: string;
541
+ commitHash?: string;
542
+ userCount?: string;
543
+ };
544
+ export type AboutContent = {
545
+ synchronizationStatus: string;
546
+ healthy: boolean;
547
+ commitHash?: string;
548
+ version?: string;
549
+ publicUrl: string;
550
+ };
551
+ export interface About {
552
+ healthy: boolean;
553
+ acceptingUsers: boolean;
554
+ configurations: AboutConfigurations;
555
+ content: AboutContent;
556
+ comms: AboutComms;
557
+ lambdas: AboutLambdas;
558
+ bff?: AboutBff;
559
+ }
560
+ export type AboutConfigurationsSkybox = {
561
+ fixedHour?: number;
562
+ };
563
+ export type AboutConfigurationsMinimap = {
564
+ enabled: boolean;
565
+ dataImage?: string;
566
+ estateImage?: string;
567
+ };
568
+ export type AboutConfigurations = {
569
+ realmName?: string;
570
+ networkId: number;
571
+ globalScenesUrn: string[];
572
+ scenesUrn: string[];
573
+ minimap?: AboutConfigurationsMinimap;
574
+ skybox?: AboutConfigurationsSkybox;
575
+ };
576
+ /**
577
+ * Retrieve detailed information about the services
578
+ * @summary Catalyst Server status
579
+ */
580
+ export declare const getLambdaStatus: () => import("../utils/fetcher").CustomClient<StatusLambdas>;
581
+ /**
582
+ * Retrieve the list of collections URNs
583
+ * @summary Get Collections
584
+ */
585
+ export declare const getCollections: () => import("../utils/fetcher").CustomClient<GetCollections200>;
586
+ /**
587
+ * Downloads a thumbnail image for the specified urn
588
+ * @summary Download thumbnail image
589
+ */
590
+ export declare const getThumbnail: (urn: string) => import("../utils/fetcher").CustomClient<Blob>;
591
+ /**
592
+ * Downloads the image for the specified urn
593
+ * @summary Download URN image
594
+ */
595
+ export declare const getImage: (urn: string) => import("../utils/fetcher").CustomClient<Blob>;
596
+ /**
597
+ * Retrieve ERC721/NFT Entity details
598
+ * @summary Get ERC721 Entity
599
+ */
600
+ export declare const getStandardErc721: (chainId: string, contract: string, option: string, emission: string) => import("../utils/fetcher").CustomClient<Erc721>;
601
+ /**
602
+ * Get a list of wearables owned by the given address
603
+ * @summary Get list of wearables for an address
604
+ */
605
+ export declare const getWearables: (address: string, params?: GetWearablesParams) => import("../utils/fetcher").CustomClient<GetWearables200>;
606
+ /**
607
+ * Get a list of emotes owned by the given address
608
+ * @summary Get list of emotes for an address
609
+ */
610
+ export declare const getEmotes: (address: string, params?: GetEmotesParams) => import("../utils/fetcher").CustomClient<GetEmotes200>;
611
+ /**
612
+ * Get a list of names owned by the given address
613
+ * @summary Get list of names for an address
614
+ */
615
+ export declare const getNames: (address: string, params?: GetNamesParams) => import("../utils/fetcher").CustomClient<NamesPaginated>;
616
+ /**
617
+ * Get a list of lands owned by the given address
618
+ * @summary Get list of lands for an address
619
+ */
620
+ export declare const getLands: (address: string, params?: GetLandsParams) => import("../utils/fetcher").CustomClient<LandsPaginated>;
621
+ /**
622
+ * Returns the list of third party wearables for the provided address
623
+ * @summary Returns the list of third party wearables for the provided address
624
+ */
625
+ export declare const getThirdPartyWearables: (address: string, params?: GetThirdPartyWearablesParams) => import("../utils/fetcher").CustomClient<GetThirdPartyWearables200>;
626
+ /**
627
+ * Returns the list of third party wearables for the given collection
628
+ * @summary Returns the list of third party wearables for the given collection
629
+ */
630
+ export declare const getThirdPartyCollection: (address: string, collectionId: string, params?: GetThirdPartyCollectionParams) => import("../utils/fetcher").CustomClient<GetThirdPartyCollection200>;
631
+ /**
632
+ * Search for wearables based on the applied filters and retrieve detailed information
633
+ * @deprecated
634
+ * @summary Search Wearables
635
+ */
636
+ export declare const searchWearables: (params?: SearchWearablesParams) => import("../utils/fetcher").CustomClient<Wearables>;
637
+ /**
638
+ * Retrieve the list of Catalyst Servers
639
+ * @summary Get Servers list
640
+ */
641
+ export declare const getServers: () => import("../utils/fetcher").CustomClient<Servers>;
642
+ /**
643
+ * Retrieve the Point of Interest list of coordinates
644
+ * @summary Retrieve DCL Point of Interests
645
+ */
646
+ export declare const getPois: () => import("../utils/fetcher").CustomClient<Pois>;
647
+ /**
648
+ * Retrieve list of forbidden user names. The prohibition of these names is decided through the DAO and need to be voted, the list lives in a Smart Contract and the Catalyst just consumes this information to present it to the client. In order to add a new name a new proposal needs to be created, approved and a transaction should be sent by a DAO committee member.
649
+ * @summary Denylisted user names
650
+ */
651
+ export declare const getDenylistedUserNames: () => import("../utils/fetcher").CustomClient<DenylistedUsernames>;
652
+ /**
653
+ * Given a signed message and it's AuthChain, validate it's authenticity. A message can be signed, for example, to prove ownership of the Entity pointers that they want to modify.
654
+ * @deprecated
655
+ * @summary Validate signed message
656
+ */
657
+ export declare const validateSignature: (validateSignatureBody: ValidateSignatureBody) => import("../utils/fetcher").CustomClient<ValidateSignature200>;
658
+ /**
659
+ * Returns the list of scenes where there are more users with coordinates and the list of parcels that compose the scene.
660
+ * @summary Hot Scenes
661
+ */
662
+ export declare const getHotScenes: () => import("../utils/fetcher").CustomClient<HotScenes>;
663
+ /**
664
+ * Returns the list of realms with details about the users in it
665
+ * @summary Get Realms status
666
+ */
667
+ export declare const getRealms: () => import("../utils/fetcher").CustomClient<Realms>;
668
+ /**
669
+ * Returns all the Avatars details associated with the Ethereum addresses in the body
670
+ * @summary Get Avatars details
671
+ */
672
+ export declare const getAvatarsDetailsByPost: (postProfiles: PostProfiles) => import("../utils/fetcher").CustomClient<Profile[]>;
673
+ /**
674
+ * Given a Ethereum address of a user, return the Avatars details associated with it.
675
+ * @summary Get Avatar details
676
+ */
677
+ export declare const getAvatarDetails: (id: string) => import("../utils/fetcher").CustomClient<Profile>;
678
+ /**
679
+ * Given a Ethereum address of a user, return the Outfits entity.
680
+ * @summary Get Outfits
681
+ */
682
+ export declare const getOutfits: (id: string) => import("../utils/fetcher").CustomClient<Entity>;
683
+ /**
684
+ * Returns the list of third party integrations and collections
685
+ * @summary Returns the list of third party integrations as well as collections
686
+ */
687
+ export declare const getThirdPartyIntegrations: () => import("../utils/fetcher").CustomClient<ThirdPartyIntegrations>;
688
+ type AwaitedInput<T> = PromiseLike<T> | T;
689
+ type Awaited<O> = O extends AwaitedInput<infer T> ? T : never;
690
+ export type GetLambdaStatusResult = NonNullable<Awaited<ReturnType<typeof getLambdaStatus>>>;
691
+ export type GetCollectionsResult = NonNullable<Awaited<ReturnType<typeof getCollections>>>;
692
+ export type GetThumbnailResult = NonNullable<Awaited<ReturnType<typeof getThumbnail>>>;
693
+ export type GetImageResult = NonNullable<Awaited<ReturnType<typeof getImage>>>;
694
+ export type GetStandardErc721Result = NonNullable<Awaited<ReturnType<typeof getStandardErc721>>>;
695
+ export type GetWearablesResult = NonNullable<Awaited<ReturnType<typeof getWearables>>>;
696
+ export type GetEmotesResult = NonNullable<Awaited<ReturnType<typeof getEmotes>>>;
697
+ export type GetNamesResult = NonNullable<Awaited<ReturnType<typeof getNames>>>;
698
+ export type GetLandsResult = NonNullable<Awaited<ReturnType<typeof getLands>>>;
699
+ export type GetThirdPartyWearablesResult = NonNullable<Awaited<ReturnType<typeof getThirdPartyWearables>>>;
700
+ export type GetThirdPartyCollectionResult = NonNullable<Awaited<ReturnType<typeof getThirdPartyCollection>>>;
701
+ export type SearchWearablesResult = NonNullable<Awaited<ReturnType<typeof searchWearables>>>;
702
+ export type GetServersResult = NonNullable<Awaited<ReturnType<typeof getServers>>>;
703
+ export type GetPoisResult = NonNullable<Awaited<ReturnType<typeof getPois>>>;
704
+ export type GetDenylistedUserNamesResult = NonNullable<Awaited<ReturnType<typeof getDenylistedUserNames>>>;
705
+ export type ValidateSignatureResult = NonNullable<Awaited<ReturnType<typeof validateSignature>>>;
706
+ export type GetHotScenesResult = NonNullable<Awaited<ReturnType<typeof getHotScenes>>>;
707
+ export type GetRealmsResult = NonNullable<Awaited<ReturnType<typeof getRealms>>>;
708
+ export type GetAvatarsDetailsByPostResult = NonNullable<Awaited<ReturnType<typeof getAvatarsDetailsByPost>>>;
709
+ export type GetAvatarDetailsResult = NonNullable<Awaited<ReturnType<typeof getAvatarDetails>>>;
710
+ export type GetOutfitsResult = NonNullable<Awaited<ReturnType<typeof getOutfits>>>;
711
+ export type GetThirdPartyIntegrationsResult = NonNullable<Awaited<ReturnType<typeof getThirdPartyIntegrations>>>;
712
+ export {};
713
+ //# sourceMappingURL=lambdas-client.d.ts.map