@receiz/sdk 93.1.0 → 94.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.
- package/README.md +95 -0
- package/dist/identity.d.ts +172 -0
- package/dist/identity.d.ts.map +1 -0
- package/dist/identity.js +853 -0
- package/dist/index.d.ts +554 -2
- package/dist/index.d.ts.map +1 -1
- package/dist/index.js +452 -1
- package/docs/app-registration-token-lifecycle.md +1 -1
- package/docs/identity-login-and-recovery.md +122 -0
- package/docs/proof-memory-and-projections.md +127 -0
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -1,4 +1,6 @@
|
|
|
1
|
-
|
|
1
|
+
import { buildReceizIdContinueRequest, createReceizIdIdentity, projectReceizIdentityAccount, readReceizIdentityArtifact, signReceizIdentityLoginProof, verifyReceizIdentityLoginProof, type ReceizDeviceIdentity, type ReceizIdContinueOptions } from "./identity.js";
|
|
2
|
+
export * from "./identity.js";
|
|
3
|
+
export declare const RECEIZ_SDK_VERSION = "94.0.0";
|
|
2
4
|
export declare const RECEIZ_DEFAULT_BASE_URL = "https://receiz.com";
|
|
3
5
|
export declare const RECEIZ_WEBHOOK_SIGNATURE_HEADER = "x-receiz-signature";
|
|
4
6
|
export declare const RECEIZ_WEBHOOK_TIMESTAMP_HEADER = "x-receiz-timestamp";
|
|
@@ -212,6 +214,372 @@ export type ReceizWebhookVerifyInput = ReceizWebhookSignatureInput & {
|
|
|
212
214
|
toleranceSeconds?: number;
|
|
213
215
|
nowMs?: number;
|
|
214
216
|
};
|
|
217
|
+
export type ReceizProofProjectionRow = {
|
|
218
|
+
label: string;
|
|
219
|
+
value: string;
|
|
220
|
+
href?: string | null;
|
|
221
|
+
};
|
|
222
|
+
export type ReceizAssetManifestProjection = {
|
|
223
|
+
schema: "receiz.sdk.asset_manifest_projection.v1";
|
|
224
|
+
assetId: string;
|
|
225
|
+
assetType: ReceizAssetManifest["assetType"];
|
|
226
|
+
title: string;
|
|
227
|
+
subtitle: string;
|
|
228
|
+
proofKind: string;
|
|
229
|
+
verifyUrl: string | null;
|
|
230
|
+
primaryUrl: string | null;
|
|
231
|
+
mediaUrl: string | null;
|
|
232
|
+
ownerLabel: string | null;
|
|
233
|
+
appendCount: number;
|
|
234
|
+
settlementState: string | null;
|
|
235
|
+
rows: ReceizProofProjectionRow[];
|
|
236
|
+
manifest: ReceizAssetManifest;
|
|
237
|
+
};
|
|
238
|
+
export type ReceizSportsCardManifestProjection = {
|
|
239
|
+
schema: "receiz.sdk.sports_card_manifest_projection.v1";
|
|
240
|
+
sport: string;
|
|
241
|
+
collectibleId: string;
|
|
242
|
+
claimHash: string;
|
|
243
|
+
title: string;
|
|
244
|
+
subtitle: string;
|
|
245
|
+
verifyUrl: string | null;
|
|
246
|
+
eventProofUrl: string | null;
|
|
247
|
+
mediaUrl: string | null;
|
|
248
|
+
ownerLabel: string | null;
|
|
249
|
+
scoreLabel: string | null;
|
|
250
|
+
valueLabel: string | null;
|
|
251
|
+
appendCount: number;
|
|
252
|
+
eventProofCount: number;
|
|
253
|
+
rows: ReceizProofProjectionRow[];
|
|
254
|
+
manifest: ReceizSportsCardManifest;
|
|
255
|
+
};
|
|
256
|
+
export type ReceizProofRegisterEntry = {
|
|
257
|
+
id: string;
|
|
258
|
+
kind: string;
|
|
259
|
+
createdAt?: string | null;
|
|
260
|
+
kaiUpulse?: string | number | null;
|
|
261
|
+
proof?: JsonObject | null;
|
|
262
|
+
payload: JsonObject;
|
|
263
|
+
projection?: JsonObject | null;
|
|
264
|
+
};
|
|
265
|
+
export type ReceizProofRegisterSnapshot = {
|
|
266
|
+
schema: "receiz.sdk.proof_register.v1";
|
|
267
|
+
ownerId?: string | null;
|
|
268
|
+
createdAt: string;
|
|
269
|
+
updatedAt: string;
|
|
270
|
+
head: {
|
|
271
|
+
entryId: string | null;
|
|
272
|
+
kaiUpulse: string | number | null;
|
|
273
|
+
createdAt: string | null;
|
|
274
|
+
count: number;
|
|
275
|
+
};
|
|
276
|
+
entries: ReceizProofRegisterEntry[];
|
|
277
|
+
};
|
|
278
|
+
export type ReceizProofRegisterInput = ReceizProofRegisterSnapshot | {
|
|
279
|
+
ownerId?: string | null;
|
|
280
|
+
createdAt?: string;
|
|
281
|
+
entries?: ReceizProofRegisterEntry[];
|
|
282
|
+
};
|
|
283
|
+
export declare const RECEIZ_ASSET_MANIFEST_SCHEMA: {
|
|
284
|
+
readonly $schema: "https://json-schema.org/draft/2020-12/schema";
|
|
285
|
+
readonly $id: "https://receiz.com/standards/receiz.asset-manifest.schema.v1.json";
|
|
286
|
+
readonly title: "Receiz Asset Manifest";
|
|
287
|
+
readonly type: "object";
|
|
288
|
+
readonly additionalProperties: true;
|
|
289
|
+
readonly required: readonly ["schema", "assetId", "assetType", "proof", "links"];
|
|
290
|
+
readonly properties: {
|
|
291
|
+
readonly schema: {
|
|
292
|
+
readonly const: "receiz.asset_manifest.v1";
|
|
293
|
+
};
|
|
294
|
+
readonly assetId: {
|
|
295
|
+
readonly type: "string";
|
|
296
|
+
readonly minLength: 1;
|
|
297
|
+
};
|
|
298
|
+
readonly assetType: {
|
|
299
|
+
readonly enum: readonly ["proof_object", "sports_card", "signal_card", "wallet_note", "market_certificate", "profile_original", "document"];
|
|
300
|
+
};
|
|
301
|
+
readonly proof: {
|
|
302
|
+
readonly type: "object";
|
|
303
|
+
readonly required: readonly ["kind"];
|
|
304
|
+
readonly additionalProperties: true;
|
|
305
|
+
readonly properties: {
|
|
306
|
+
readonly kind: {
|
|
307
|
+
readonly type: "string";
|
|
308
|
+
readonly minLength: 1;
|
|
309
|
+
};
|
|
310
|
+
readonly verifyUrl: {
|
|
311
|
+
readonly type: "string";
|
|
312
|
+
};
|
|
313
|
+
readonly kaiPulseEternal: {
|
|
314
|
+
readonly type: readonly ["number", "string"];
|
|
315
|
+
};
|
|
316
|
+
};
|
|
317
|
+
};
|
|
318
|
+
readonly owner: {
|
|
319
|
+
readonly type: readonly ["object", "null"];
|
|
320
|
+
readonly additionalProperties: true;
|
|
321
|
+
};
|
|
322
|
+
readonly media: {
|
|
323
|
+
readonly type: readonly ["object", "null"];
|
|
324
|
+
readonly additionalProperties: true;
|
|
325
|
+
};
|
|
326
|
+
readonly appends: {
|
|
327
|
+
readonly type: "array";
|
|
328
|
+
readonly items: {
|
|
329
|
+
readonly type: "object";
|
|
330
|
+
readonly additionalProperties: true;
|
|
331
|
+
};
|
|
332
|
+
};
|
|
333
|
+
readonly settlement: {
|
|
334
|
+
readonly type: readonly ["object", "null"];
|
|
335
|
+
readonly additionalProperties: true;
|
|
336
|
+
};
|
|
337
|
+
readonly links: {
|
|
338
|
+
readonly type: "object";
|
|
339
|
+
readonly additionalProperties: {
|
|
340
|
+
readonly type: "string";
|
|
341
|
+
};
|
|
342
|
+
};
|
|
343
|
+
};
|
|
344
|
+
};
|
|
345
|
+
export declare const RECEIZ_SPORTS_CARD_MANIFEST_SCHEMA: {
|
|
346
|
+
readonly $schema: "https://json-schema.org/draft/2020-12/schema";
|
|
347
|
+
readonly $id: "https://receiz.com/standards/receiz.sports-card-manifest.schema.v1.json";
|
|
348
|
+
readonly title: "Receiz Sports Arena Card Manifest";
|
|
349
|
+
readonly type: "object";
|
|
350
|
+
readonly additionalProperties: true;
|
|
351
|
+
readonly required: readonly ["schema", "sport", "collectibleId", "claimHash", "card", "ownership", "valueBasis", "links"];
|
|
352
|
+
readonly properties: {
|
|
353
|
+
readonly schema: {
|
|
354
|
+
readonly const: "receiz.sports_arena.card_manifest.v1";
|
|
355
|
+
};
|
|
356
|
+
readonly sport: {
|
|
357
|
+
readonly type: "string";
|
|
358
|
+
readonly minLength: 1;
|
|
359
|
+
};
|
|
360
|
+
readonly collectibleId: {
|
|
361
|
+
readonly type: "string";
|
|
362
|
+
readonly minLength: 1;
|
|
363
|
+
};
|
|
364
|
+
readonly claimHash: {
|
|
365
|
+
readonly type: "string";
|
|
366
|
+
readonly minLength: 1;
|
|
367
|
+
};
|
|
368
|
+
readonly card: {
|
|
369
|
+
readonly type: "object";
|
|
370
|
+
readonly additionalProperties: true;
|
|
371
|
+
};
|
|
372
|
+
readonly ownership: {
|
|
373
|
+
readonly type: "object";
|
|
374
|
+
readonly additionalProperties: true;
|
|
375
|
+
};
|
|
376
|
+
readonly valueBasis: {
|
|
377
|
+
readonly type: "object";
|
|
378
|
+
readonly additionalProperties: true;
|
|
379
|
+
};
|
|
380
|
+
readonly appendSummary: {
|
|
381
|
+
readonly type: readonly ["object", "null"];
|
|
382
|
+
readonly additionalProperties: true;
|
|
383
|
+
};
|
|
384
|
+
readonly eventProofSummary: {
|
|
385
|
+
readonly type: readonly ["object", "null"];
|
|
386
|
+
readonly additionalProperties: true;
|
|
387
|
+
};
|
|
388
|
+
readonly links: {
|
|
389
|
+
readonly type: "object";
|
|
390
|
+
readonly additionalProperties: {
|
|
391
|
+
readonly type: "string";
|
|
392
|
+
};
|
|
393
|
+
};
|
|
394
|
+
};
|
|
395
|
+
};
|
|
396
|
+
export declare const RECEIZ_WEBHOOK_EVENT_SCHEMA: {
|
|
397
|
+
readonly $schema: "https://json-schema.org/draft/2020-12/schema";
|
|
398
|
+
readonly $id: "https://receiz.com/standards/receiz.webhook-event.schema.v1.json";
|
|
399
|
+
readonly title: "Receiz Webhook Event";
|
|
400
|
+
readonly type: "object";
|
|
401
|
+
readonly additionalProperties: true;
|
|
402
|
+
readonly required: readonly ["schema", "id", "type", "createdAt", "data"];
|
|
403
|
+
readonly properties: {
|
|
404
|
+
readonly schema: {
|
|
405
|
+
readonly const: "receiz.webhook_event.v1";
|
|
406
|
+
};
|
|
407
|
+
readonly id: {
|
|
408
|
+
readonly type: "string";
|
|
409
|
+
readonly minLength: 1;
|
|
410
|
+
};
|
|
411
|
+
readonly type: {
|
|
412
|
+
readonly enum: readonly ["asset.created", "asset.transferred", "proof.appended", "sports_card.scored", "event_proof.created", "wallet.ledger_entry", "note.claimed", "market.trade", "profile.asset.visible_changed"];
|
|
413
|
+
};
|
|
414
|
+
readonly createdAt: {
|
|
415
|
+
readonly type: "string";
|
|
416
|
+
readonly minLength: 1;
|
|
417
|
+
};
|
|
418
|
+
readonly data: {
|
|
419
|
+
readonly type: "object";
|
|
420
|
+
readonly additionalProperties: true;
|
|
421
|
+
};
|
|
422
|
+
readonly actor: {
|
|
423
|
+
readonly type: readonly ["object", "null"];
|
|
424
|
+
readonly additionalProperties: true;
|
|
425
|
+
};
|
|
426
|
+
readonly signature: {
|
|
427
|
+
readonly type: readonly ["object", "null"];
|
|
428
|
+
readonly additionalProperties: true;
|
|
429
|
+
};
|
|
430
|
+
};
|
|
431
|
+
};
|
|
432
|
+
export declare const RECEIZ_SCHEMAS: {
|
|
433
|
+
readonly assetManifest: {
|
|
434
|
+
readonly $schema: "https://json-schema.org/draft/2020-12/schema";
|
|
435
|
+
readonly $id: "https://receiz.com/standards/receiz.asset-manifest.schema.v1.json";
|
|
436
|
+
readonly title: "Receiz Asset Manifest";
|
|
437
|
+
readonly type: "object";
|
|
438
|
+
readonly additionalProperties: true;
|
|
439
|
+
readonly required: readonly ["schema", "assetId", "assetType", "proof", "links"];
|
|
440
|
+
readonly properties: {
|
|
441
|
+
readonly schema: {
|
|
442
|
+
readonly const: "receiz.asset_manifest.v1";
|
|
443
|
+
};
|
|
444
|
+
readonly assetId: {
|
|
445
|
+
readonly type: "string";
|
|
446
|
+
readonly minLength: 1;
|
|
447
|
+
};
|
|
448
|
+
readonly assetType: {
|
|
449
|
+
readonly enum: readonly ["proof_object", "sports_card", "signal_card", "wallet_note", "market_certificate", "profile_original", "document"];
|
|
450
|
+
};
|
|
451
|
+
readonly proof: {
|
|
452
|
+
readonly type: "object";
|
|
453
|
+
readonly required: readonly ["kind"];
|
|
454
|
+
readonly additionalProperties: true;
|
|
455
|
+
readonly properties: {
|
|
456
|
+
readonly kind: {
|
|
457
|
+
readonly type: "string";
|
|
458
|
+
readonly minLength: 1;
|
|
459
|
+
};
|
|
460
|
+
readonly verifyUrl: {
|
|
461
|
+
readonly type: "string";
|
|
462
|
+
};
|
|
463
|
+
readonly kaiPulseEternal: {
|
|
464
|
+
readonly type: readonly ["number", "string"];
|
|
465
|
+
};
|
|
466
|
+
};
|
|
467
|
+
};
|
|
468
|
+
readonly owner: {
|
|
469
|
+
readonly type: readonly ["object", "null"];
|
|
470
|
+
readonly additionalProperties: true;
|
|
471
|
+
};
|
|
472
|
+
readonly media: {
|
|
473
|
+
readonly type: readonly ["object", "null"];
|
|
474
|
+
readonly additionalProperties: true;
|
|
475
|
+
};
|
|
476
|
+
readonly appends: {
|
|
477
|
+
readonly type: "array";
|
|
478
|
+
readonly items: {
|
|
479
|
+
readonly type: "object";
|
|
480
|
+
readonly additionalProperties: true;
|
|
481
|
+
};
|
|
482
|
+
};
|
|
483
|
+
readonly settlement: {
|
|
484
|
+
readonly type: readonly ["object", "null"];
|
|
485
|
+
readonly additionalProperties: true;
|
|
486
|
+
};
|
|
487
|
+
readonly links: {
|
|
488
|
+
readonly type: "object";
|
|
489
|
+
readonly additionalProperties: {
|
|
490
|
+
readonly type: "string";
|
|
491
|
+
};
|
|
492
|
+
};
|
|
493
|
+
};
|
|
494
|
+
};
|
|
495
|
+
readonly sportsCardManifest: {
|
|
496
|
+
readonly $schema: "https://json-schema.org/draft/2020-12/schema";
|
|
497
|
+
readonly $id: "https://receiz.com/standards/receiz.sports-card-manifest.schema.v1.json";
|
|
498
|
+
readonly title: "Receiz Sports Arena Card Manifest";
|
|
499
|
+
readonly type: "object";
|
|
500
|
+
readonly additionalProperties: true;
|
|
501
|
+
readonly required: readonly ["schema", "sport", "collectibleId", "claimHash", "card", "ownership", "valueBasis", "links"];
|
|
502
|
+
readonly properties: {
|
|
503
|
+
readonly schema: {
|
|
504
|
+
readonly const: "receiz.sports_arena.card_manifest.v1";
|
|
505
|
+
};
|
|
506
|
+
readonly sport: {
|
|
507
|
+
readonly type: "string";
|
|
508
|
+
readonly minLength: 1;
|
|
509
|
+
};
|
|
510
|
+
readonly collectibleId: {
|
|
511
|
+
readonly type: "string";
|
|
512
|
+
readonly minLength: 1;
|
|
513
|
+
};
|
|
514
|
+
readonly claimHash: {
|
|
515
|
+
readonly type: "string";
|
|
516
|
+
readonly minLength: 1;
|
|
517
|
+
};
|
|
518
|
+
readonly card: {
|
|
519
|
+
readonly type: "object";
|
|
520
|
+
readonly additionalProperties: true;
|
|
521
|
+
};
|
|
522
|
+
readonly ownership: {
|
|
523
|
+
readonly type: "object";
|
|
524
|
+
readonly additionalProperties: true;
|
|
525
|
+
};
|
|
526
|
+
readonly valueBasis: {
|
|
527
|
+
readonly type: "object";
|
|
528
|
+
readonly additionalProperties: true;
|
|
529
|
+
};
|
|
530
|
+
readonly appendSummary: {
|
|
531
|
+
readonly type: readonly ["object", "null"];
|
|
532
|
+
readonly additionalProperties: true;
|
|
533
|
+
};
|
|
534
|
+
readonly eventProofSummary: {
|
|
535
|
+
readonly type: readonly ["object", "null"];
|
|
536
|
+
readonly additionalProperties: true;
|
|
537
|
+
};
|
|
538
|
+
readonly links: {
|
|
539
|
+
readonly type: "object";
|
|
540
|
+
readonly additionalProperties: {
|
|
541
|
+
readonly type: "string";
|
|
542
|
+
};
|
|
543
|
+
};
|
|
544
|
+
};
|
|
545
|
+
};
|
|
546
|
+
readonly webhookEvent: {
|
|
547
|
+
readonly $schema: "https://json-schema.org/draft/2020-12/schema";
|
|
548
|
+
readonly $id: "https://receiz.com/standards/receiz.webhook-event.schema.v1.json";
|
|
549
|
+
readonly title: "Receiz Webhook Event";
|
|
550
|
+
readonly type: "object";
|
|
551
|
+
readonly additionalProperties: true;
|
|
552
|
+
readonly required: readonly ["schema", "id", "type", "createdAt", "data"];
|
|
553
|
+
readonly properties: {
|
|
554
|
+
readonly schema: {
|
|
555
|
+
readonly const: "receiz.webhook_event.v1";
|
|
556
|
+
};
|
|
557
|
+
readonly id: {
|
|
558
|
+
readonly type: "string";
|
|
559
|
+
readonly minLength: 1;
|
|
560
|
+
};
|
|
561
|
+
readonly type: {
|
|
562
|
+
readonly enum: readonly ["asset.created", "asset.transferred", "proof.appended", "sports_card.scored", "event_proof.created", "wallet.ledger_entry", "note.claimed", "market.trade", "profile.asset.visible_changed"];
|
|
563
|
+
};
|
|
564
|
+
readonly createdAt: {
|
|
565
|
+
readonly type: "string";
|
|
566
|
+
readonly minLength: 1;
|
|
567
|
+
};
|
|
568
|
+
readonly data: {
|
|
569
|
+
readonly type: "object";
|
|
570
|
+
readonly additionalProperties: true;
|
|
571
|
+
};
|
|
572
|
+
readonly actor: {
|
|
573
|
+
readonly type: readonly ["object", "null"];
|
|
574
|
+
readonly additionalProperties: true;
|
|
575
|
+
};
|
|
576
|
+
readonly signature: {
|
|
577
|
+
readonly type: readonly ["object", "null"];
|
|
578
|
+
readonly additionalProperties: true;
|
|
579
|
+
};
|
|
580
|
+
};
|
|
581
|
+
};
|
|
582
|
+
};
|
|
215
583
|
type RequestOptions = {
|
|
216
584
|
method?: string;
|
|
217
585
|
body?: BodyInit | JsonObject | URLSearchParams;
|
|
@@ -293,6 +661,13 @@ export declare class ReceizClient {
|
|
|
293
661
|
downloadNote: (noteId: string) => Promise<JsonObject>;
|
|
294
662
|
};
|
|
295
663
|
readonly identity: {
|
|
664
|
+
createReceizId: typeof createReceizIdIdentity;
|
|
665
|
+
readArtifact: typeof readReceizIdentityArtifact;
|
|
666
|
+
projectAccount: typeof projectReceizIdentityAccount;
|
|
667
|
+
signLoginProof: typeof signReceizIdentityLoginProof;
|
|
668
|
+
verifyLoginProof: typeof verifyReceizIdentityLoginProof;
|
|
669
|
+
buildReceizIdContinueRequest: typeof buildReceizIdContinueRequest;
|
|
670
|
+
continueReceizId: (identity: ReceizDeviceIdentity, options?: ReceizIdContinueOptions) => Promise<JsonObject>;
|
|
296
671
|
openIdConfiguration: () => Promise<JsonObject>;
|
|
297
672
|
oauthAuthorizationServerMetadata: () => Promise<JsonObject>;
|
|
298
673
|
jwks: () => Promise<JsonObject>;
|
|
@@ -326,6 +701,166 @@ export declare class ReceizClient {
|
|
|
326
701
|
isAsset: typeof isReceizAssetManifest;
|
|
327
702
|
isSportsCard: typeof isReceizSportsCardManifest;
|
|
328
703
|
isWebhookEvent: typeof isReceizWebhookEvent;
|
|
704
|
+
projectAsset: typeof projectReceizAssetManifest;
|
|
705
|
+
projectSportsCard: typeof projectReceizSportsCardManifest;
|
|
706
|
+
};
|
|
707
|
+
readonly schemas: {
|
|
708
|
+
readonly assetManifest: {
|
|
709
|
+
readonly $schema: "https://json-schema.org/draft/2020-12/schema";
|
|
710
|
+
readonly $id: "https://receiz.com/standards/receiz.asset-manifest.schema.v1.json";
|
|
711
|
+
readonly title: "Receiz Asset Manifest";
|
|
712
|
+
readonly type: "object";
|
|
713
|
+
readonly additionalProperties: true;
|
|
714
|
+
readonly required: readonly ["schema", "assetId", "assetType", "proof", "links"];
|
|
715
|
+
readonly properties: {
|
|
716
|
+
readonly schema: {
|
|
717
|
+
readonly const: "receiz.asset_manifest.v1";
|
|
718
|
+
};
|
|
719
|
+
readonly assetId: {
|
|
720
|
+
readonly type: "string";
|
|
721
|
+
readonly minLength: 1;
|
|
722
|
+
};
|
|
723
|
+
readonly assetType: {
|
|
724
|
+
readonly enum: readonly ["proof_object", "sports_card", "signal_card", "wallet_note", "market_certificate", "profile_original", "document"];
|
|
725
|
+
};
|
|
726
|
+
readonly proof: {
|
|
727
|
+
readonly type: "object";
|
|
728
|
+
readonly required: readonly ["kind"];
|
|
729
|
+
readonly additionalProperties: true;
|
|
730
|
+
readonly properties: {
|
|
731
|
+
readonly kind: {
|
|
732
|
+
readonly type: "string";
|
|
733
|
+
readonly minLength: 1;
|
|
734
|
+
};
|
|
735
|
+
readonly verifyUrl: {
|
|
736
|
+
readonly type: "string";
|
|
737
|
+
};
|
|
738
|
+
readonly kaiPulseEternal: {
|
|
739
|
+
readonly type: readonly ["number", "string"];
|
|
740
|
+
};
|
|
741
|
+
};
|
|
742
|
+
};
|
|
743
|
+
readonly owner: {
|
|
744
|
+
readonly type: readonly ["object", "null"];
|
|
745
|
+
readonly additionalProperties: true;
|
|
746
|
+
};
|
|
747
|
+
readonly media: {
|
|
748
|
+
readonly type: readonly ["object", "null"];
|
|
749
|
+
readonly additionalProperties: true;
|
|
750
|
+
};
|
|
751
|
+
readonly appends: {
|
|
752
|
+
readonly type: "array";
|
|
753
|
+
readonly items: {
|
|
754
|
+
readonly type: "object";
|
|
755
|
+
readonly additionalProperties: true;
|
|
756
|
+
};
|
|
757
|
+
};
|
|
758
|
+
readonly settlement: {
|
|
759
|
+
readonly type: readonly ["object", "null"];
|
|
760
|
+
readonly additionalProperties: true;
|
|
761
|
+
};
|
|
762
|
+
readonly links: {
|
|
763
|
+
readonly type: "object";
|
|
764
|
+
readonly additionalProperties: {
|
|
765
|
+
readonly type: "string";
|
|
766
|
+
};
|
|
767
|
+
};
|
|
768
|
+
};
|
|
769
|
+
};
|
|
770
|
+
readonly sportsCardManifest: {
|
|
771
|
+
readonly $schema: "https://json-schema.org/draft/2020-12/schema";
|
|
772
|
+
readonly $id: "https://receiz.com/standards/receiz.sports-card-manifest.schema.v1.json";
|
|
773
|
+
readonly title: "Receiz Sports Arena Card Manifest";
|
|
774
|
+
readonly type: "object";
|
|
775
|
+
readonly additionalProperties: true;
|
|
776
|
+
readonly required: readonly ["schema", "sport", "collectibleId", "claimHash", "card", "ownership", "valueBasis", "links"];
|
|
777
|
+
readonly properties: {
|
|
778
|
+
readonly schema: {
|
|
779
|
+
readonly const: "receiz.sports_arena.card_manifest.v1";
|
|
780
|
+
};
|
|
781
|
+
readonly sport: {
|
|
782
|
+
readonly type: "string";
|
|
783
|
+
readonly minLength: 1;
|
|
784
|
+
};
|
|
785
|
+
readonly collectibleId: {
|
|
786
|
+
readonly type: "string";
|
|
787
|
+
readonly minLength: 1;
|
|
788
|
+
};
|
|
789
|
+
readonly claimHash: {
|
|
790
|
+
readonly type: "string";
|
|
791
|
+
readonly minLength: 1;
|
|
792
|
+
};
|
|
793
|
+
readonly card: {
|
|
794
|
+
readonly type: "object";
|
|
795
|
+
readonly additionalProperties: true;
|
|
796
|
+
};
|
|
797
|
+
readonly ownership: {
|
|
798
|
+
readonly type: "object";
|
|
799
|
+
readonly additionalProperties: true;
|
|
800
|
+
};
|
|
801
|
+
readonly valueBasis: {
|
|
802
|
+
readonly type: "object";
|
|
803
|
+
readonly additionalProperties: true;
|
|
804
|
+
};
|
|
805
|
+
readonly appendSummary: {
|
|
806
|
+
readonly type: readonly ["object", "null"];
|
|
807
|
+
readonly additionalProperties: true;
|
|
808
|
+
};
|
|
809
|
+
readonly eventProofSummary: {
|
|
810
|
+
readonly type: readonly ["object", "null"];
|
|
811
|
+
readonly additionalProperties: true;
|
|
812
|
+
};
|
|
813
|
+
readonly links: {
|
|
814
|
+
readonly type: "object";
|
|
815
|
+
readonly additionalProperties: {
|
|
816
|
+
readonly type: "string";
|
|
817
|
+
};
|
|
818
|
+
};
|
|
819
|
+
};
|
|
820
|
+
};
|
|
821
|
+
readonly webhookEvent: {
|
|
822
|
+
readonly $schema: "https://json-schema.org/draft/2020-12/schema";
|
|
823
|
+
readonly $id: "https://receiz.com/standards/receiz.webhook-event.schema.v1.json";
|
|
824
|
+
readonly title: "Receiz Webhook Event";
|
|
825
|
+
readonly type: "object";
|
|
826
|
+
readonly additionalProperties: true;
|
|
827
|
+
readonly required: readonly ["schema", "id", "type", "createdAt", "data"];
|
|
828
|
+
readonly properties: {
|
|
829
|
+
readonly schema: {
|
|
830
|
+
readonly const: "receiz.webhook_event.v1";
|
|
831
|
+
};
|
|
832
|
+
readonly id: {
|
|
833
|
+
readonly type: "string";
|
|
834
|
+
readonly minLength: 1;
|
|
835
|
+
};
|
|
836
|
+
readonly type: {
|
|
837
|
+
readonly enum: readonly ["asset.created", "asset.transferred", "proof.appended", "sports_card.scored", "event_proof.created", "wallet.ledger_entry", "note.claimed", "market.trade", "profile.asset.visible_changed"];
|
|
838
|
+
};
|
|
839
|
+
readonly createdAt: {
|
|
840
|
+
readonly type: "string";
|
|
841
|
+
readonly minLength: 1;
|
|
842
|
+
};
|
|
843
|
+
readonly data: {
|
|
844
|
+
readonly type: "object";
|
|
845
|
+
readonly additionalProperties: true;
|
|
846
|
+
};
|
|
847
|
+
readonly actor: {
|
|
848
|
+
readonly type: readonly ["object", "null"];
|
|
849
|
+
readonly additionalProperties: true;
|
|
850
|
+
};
|
|
851
|
+
readonly signature: {
|
|
852
|
+
readonly type: readonly ["object", "null"];
|
|
853
|
+
readonly additionalProperties: true;
|
|
854
|
+
};
|
|
855
|
+
};
|
|
856
|
+
};
|
|
857
|
+
};
|
|
858
|
+
readonly projections: {
|
|
859
|
+
assetManifest: typeof projectReceizAssetManifest;
|
|
860
|
+
sportsCardManifest: typeof projectReceizSportsCardManifest;
|
|
861
|
+
};
|
|
862
|
+
readonly proofMemory: {
|
|
863
|
+
createRegister: typeof createReceizProofRegister;
|
|
329
864
|
};
|
|
330
865
|
constructor(options?: ReceizClientOptions);
|
|
331
866
|
request<T>(path: string, options?: RequestOptions): Promise<T>;
|
|
@@ -343,6 +878,7 @@ export declare class ReceizClient {
|
|
|
343
878
|
sportsConformance(): Promise<JsonObject>;
|
|
344
879
|
signalCircuitConformance(): Promise<JsonObject>;
|
|
345
880
|
delegated<T>(path: string, options?: Omit<RequestOptions, "bearerToken">): Promise<T>;
|
|
881
|
+
continueReceizId(identity: ReceizDeviceIdentity, options?: ReceizIdContinueOptions): Promise<JsonObject>;
|
|
346
882
|
authorizeUrl(options: ReceizAuthorizeUrlOptions): string;
|
|
347
883
|
private delegatedVerifyArtifact;
|
|
348
884
|
private delegatedSealArtifact;
|
|
@@ -356,11 +892,27 @@ export declare function assertReceizSportsCardManifest(value: unknown): ReceizSp
|
|
|
356
892
|
export declare function isReceizSportsCardManifest(value: unknown): value is ReceizSportsCardManifest;
|
|
357
893
|
export declare function assertReceizWebhookEvent(value: unknown): ReceizWebhookEvent;
|
|
358
894
|
export declare function isReceizWebhookEvent(value: unknown): value is ReceizWebhookEvent;
|
|
895
|
+
export declare function projectReceizAssetManifest(value: unknown): ReceizAssetManifestProjection;
|
|
896
|
+
export declare function projectReceizSportsCardManifest(value: unknown): ReceizSportsCardManifestProjection;
|
|
897
|
+
export declare class ReceizProofRegister {
|
|
898
|
+
readonly ownerId: string | null;
|
|
899
|
+
readonly createdAt: string;
|
|
900
|
+
private readonly entriesById;
|
|
901
|
+
constructor(input?: ReceizProofRegisterInput);
|
|
902
|
+
append(entry: ReceizProofRegisterEntry): this;
|
|
903
|
+
admitAssetManifest(value: unknown): this;
|
|
904
|
+
admitSportsCardManifest(value: unknown): this;
|
|
905
|
+
admitWebhookEvent(value: unknown): this;
|
|
906
|
+
has(entryId: string): boolean;
|
|
907
|
+
entries(): ReceizProofRegisterEntry[];
|
|
908
|
+
snapshot(): ReceizProofRegisterSnapshot;
|
|
909
|
+
toJSON(): ReceizProofRegisterSnapshot;
|
|
910
|
+
}
|
|
911
|
+
export declare function createReceizProofRegister(input?: ReceizProofRegisterInput): ReceizProofRegister;
|
|
359
912
|
export declare function buildReceizWebhookSignaturePayload(input: {
|
|
360
913
|
timestamp: string;
|
|
361
914
|
body: string | ArrayBuffer | Uint8Array | JsonObject;
|
|
362
915
|
}): string;
|
|
363
916
|
export declare function createReceizWebhookSignature(input: ReceizWebhookSignatureInput): Promise<string>;
|
|
364
917
|
export declare function verifyReceizWebhookSignature(input: ReceizWebhookVerifyInput): Promise<boolean>;
|
|
365
|
-
export {};
|
|
366
918
|
//# sourceMappingURL=index.d.ts.map
|
package/dist/index.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"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"}
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"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"}
|