@learncard/types 5.11.1 → 5.12.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/dist/lcn.d.ts +405 -2
- package/dist/lcn.d.ts.map +1 -1
- package/dist/types.cjs.development.js +171 -12
- package/dist/types.cjs.development.js.map +2 -2
- package/dist/types.cjs.production.min.js +6 -6
- package/dist/types.cjs.production.min.js.map +3 -3
- package/dist/types.esm.js +171 -12
- package/dist/types.esm.js.map +2 -2
- package/package.json +1 -1
package/dist/lcn.d.ts
CHANGED
|
@@ -640,8 +640,24 @@ export declare const PaginatedClaimHooksValidator: z.ZodObject<{
|
|
|
640
640
|
}, z.core.$strip>], "type">>>;
|
|
641
641
|
}, z.core.$strip>;
|
|
642
642
|
export type PaginatedClaimHooksType = z.infer<typeof PaginatedClaimHooksValidator>;
|
|
643
|
+
/**
|
|
644
|
+
* Status states for Boosts that control what actions can be performed.
|
|
645
|
+
*
|
|
646
|
+
* - **DRAFT**: Work in progress. Can edit all fields, but cannot send or generate claim links.
|
|
647
|
+
* - **PROVISIONAL**: Active but iterating. Can both edit all fields AND send/issue credentials. Ideal for testing in production or soft launches.
|
|
648
|
+
* - **LIVE**: Official/finalized. Can only edit meta and defaultPermissions. Core properties are locked for consistency.
|
|
649
|
+
*
|
|
650
|
+
* @example
|
|
651
|
+
* ```typescript
|
|
652
|
+
* // Create a provisional boost for testing
|
|
653
|
+
* const boostUri = await learnCard.invoke.createBoost(credential, {
|
|
654
|
+
* status: 'PROVISIONAL',
|
|
655
|
+
* });
|
|
656
|
+
* ```
|
|
657
|
+
*/
|
|
643
658
|
export declare const LCNBoostStatus: z.ZodEnum<{
|
|
644
659
|
DRAFT: "DRAFT";
|
|
660
|
+
PROVISIONAL: "PROVISIONAL";
|
|
645
661
|
LIVE: "LIVE";
|
|
646
662
|
}>;
|
|
647
663
|
export type LCNBoostStatusEnum = z.infer<typeof LCNBoostStatus>;
|
|
@@ -652,6 +668,7 @@ export declare const BoostValidator: z.ZodObject<{
|
|
|
652
668
|
category: z.ZodOptional<z.ZodString>;
|
|
653
669
|
status: z.ZodOptional<z.ZodEnum<{
|
|
654
670
|
DRAFT: "DRAFT";
|
|
671
|
+
PROVISIONAL: "PROVISIONAL";
|
|
655
672
|
LIVE: "LIVE";
|
|
656
673
|
}>>;
|
|
657
674
|
autoConnectRecipients: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -746,10 +763,12 @@ export declare const BoostQueryValidator: z.ZodUnion<readonly [z.ZodObject<{
|
|
|
746
763
|
}, z.core.$strip>]>>>;
|
|
747
764
|
status: z.ZodOptional<z.ZodUnion<[z.ZodEnum<{
|
|
748
765
|
DRAFT: "DRAFT";
|
|
766
|
+
PROVISIONAL: "PROVISIONAL";
|
|
749
767
|
LIVE: "LIVE";
|
|
750
768
|
}>, z.ZodObject<{
|
|
751
769
|
$in: z.ZodArray<z.ZodEnum<{
|
|
752
770
|
DRAFT: "DRAFT";
|
|
771
|
+
PROVISIONAL: "PROVISIONAL";
|
|
753
772
|
LIVE: "LIVE";
|
|
754
773
|
}>>;
|
|
755
774
|
}, z.core.$strip>]>>;
|
|
@@ -813,10 +832,12 @@ export declare const BoostQueryValidator: z.ZodUnion<readonly [z.ZodObject<{
|
|
|
813
832
|
}, z.core.$strip>]>>>;
|
|
814
833
|
status: z.ZodOptional<z.ZodUnion<[z.ZodEnum<{
|
|
815
834
|
DRAFT: "DRAFT";
|
|
835
|
+
PROVISIONAL: "PROVISIONAL";
|
|
816
836
|
LIVE: "LIVE";
|
|
817
837
|
}>, z.ZodObject<{
|
|
818
838
|
$in: z.ZodArray<z.ZodEnum<{
|
|
819
839
|
DRAFT: "DRAFT";
|
|
840
|
+
PROVISIONAL: "PROVISIONAL";
|
|
820
841
|
LIVE: "LIVE";
|
|
821
842
|
}>>;
|
|
822
843
|
}, z.core.$strip>]>>;
|
|
@@ -833,6 +854,7 @@ export declare const PaginatedBoostsValidator: z.ZodObject<{
|
|
|
833
854
|
category: z.ZodOptional<z.ZodString>;
|
|
834
855
|
status: z.ZodOptional<z.ZodEnum<{
|
|
835
856
|
DRAFT: "DRAFT";
|
|
857
|
+
PROVISIONAL: "PROVISIONAL";
|
|
836
858
|
LIVE: "LIVE";
|
|
837
859
|
}>>;
|
|
838
860
|
autoConnectRecipients: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -1069,6 +1091,24 @@ export declare const AutoBoostConfigValidator: z.ZodObject<{
|
|
|
1069
1091
|
}, z.core.$strip>;
|
|
1070
1092
|
}, z.core.$strip>;
|
|
1071
1093
|
export type AutoBoostConfig = z.infer<typeof AutoBoostConfigValidator>;
|
|
1094
|
+
export declare const SendBrandingOptionsValidator: z.ZodObject<{
|
|
1095
|
+
issuerName: z.ZodOptional<z.ZodString>;
|
|
1096
|
+
issuerLogoUrl: z.ZodOptional<z.ZodString>;
|
|
1097
|
+
credentialName: z.ZodOptional<z.ZodString>;
|
|
1098
|
+
recipientName: z.ZodOptional<z.ZodString>;
|
|
1099
|
+
}, z.core.$strip>;
|
|
1100
|
+
export type SendBrandingOptions = z.infer<typeof SendBrandingOptionsValidator>;
|
|
1101
|
+
export declare const SendOptionsValidator: z.ZodObject<{
|
|
1102
|
+
webhookUrl: z.ZodOptional<z.ZodString>;
|
|
1103
|
+
suppressDelivery: z.ZodOptional<z.ZodBoolean>;
|
|
1104
|
+
branding: z.ZodOptional<z.ZodObject<{
|
|
1105
|
+
issuerName: z.ZodOptional<z.ZodString>;
|
|
1106
|
+
issuerLogoUrl: z.ZodOptional<z.ZodString>;
|
|
1107
|
+
credentialName: z.ZodOptional<z.ZodString>;
|
|
1108
|
+
recipientName: z.ZodOptional<z.ZodString>;
|
|
1109
|
+
}, z.core.$strip>>;
|
|
1110
|
+
}, z.core.$strip>;
|
|
1111
|
+
export type SendOptions = z.infer<typeof SendOptionsValidator>;
|
|
1072
1112
|
export declare const SendBoostInputValidator: z.ZodObject<{
|
|
1073
1113
|
type: z.ZodLiteral<"boost">;
|
|
1074
1114
|
recipient: z.ZodString;
|
|
@@ -1079,6 +1119,7 @@ export declare const SendBoostInputValidator: z.ZodObject<{
|
|
|
1079
1119
|
name: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
1080
1120
|
status: z.ZodOptional<z.ZodOptional<z.ZodEnum<{
|
|
1081
1121
|
DRAFT: "DRAFT";
|
|
1122
|
+
PROVISIONAL: "PROVISIONAL";
|
|
1082
1123
|
LIVE: "LIVE";
|
|
1083
1124
|
}>>>;
|
|
1084
1125
|
category: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
@@ -1551,13 +1592,48 @@ export declare const SendBoostInputValidator: z.ZodObject<{
|
|
|
1551
1592
|
jws: z.ZodOptional<z.ZodString>;
|
|
1552
1593
|
}, z.core.$catchall<z.ZodAny>>>]>;
|
|
1553
1594
|
}, z.core.$catchall<z.ZodAny>>>;
|
|
1595
|
+
options: z.ZodOptional<z.ZodObject<{
|
|
1596
|
+
webhookUrl: z.ZodOptional<z.ZodString>;
|
|
1597
|
+
suppressDelivery: z.ZodOptional<z.ZodBoolean>;
|
|
1598
|
+
branding: z.ZodOptional<z.ZodObject<{
|
|
1599
|
+
issuerName: z.ZodOptional<z.ZodString>;
|
|
1600
|
+
issuerLogoUrl: z.ZodOptional<z.ZodString>;
|
|
1601
|
+
credentialName: z.ZodOptional<z.ZodString>;
|
|
1602
|
+
recipientName: z.ZodOptional<z.ZodString>;
|
|
1603
|
+
}, z.core.$strip>>;
|
|
1604
|
+
}, z.core.$strip>>;
|
|
1554
1605
|
templateData: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
1606
|
+
integrationId: z.ZodOptional<z.ZodString>;
|
|
1555
1607
|
}, z.core.$strip>;
|
|
1556
1608
|
export type SendBoostInput = z.infer<typeof SendBoostInputValidator>;
|
|
1609
|
+
export declare const SendInboxResponseValidator: z.ZodObject<{
|
|
1610
|
+
issuanceId: z.ZodString;
|
|
1611
|
+
status: z.ZodEnum<{
|
|
1612
|
+
PENDING: "PENDING";
|
|
1613
|
+
ISSUED: "ISSUED";
|
|
1614
|
+
EXPIRED: "EXPIRED";
|
|
1615
|
+
DELIVERED: "DELIVERED";
|
|
1616
|
+
CLAIMED: "CLAIMED";
|
|
1617
|
+
}>;
|
|
1618
|
+
claimUrl: z.ZodOptional<z.ZodString>;
|
|
1619
|
+
}, z.core.$strip>;
|
|
1620
|
+
export type SendInboxResponse = z.infer<typeof SendInboxResponseValidator>;
|
|
1557
1621
|
export declare const SendBoostResponseValidator: z.ZodObject<{
|
|
1558
1622
|
type: z.ZodLiteral<"boost">;
|
|
1559
1623
|
credentialUri: z.ZodString;
|
|
1560
1624
|
uri: z.ZodString;
|
|
1625
|
+
activityId: z.ZodString;
|
|
1626
|
+
inbox: z.ZodOptional<z.ZodObject<{
|
|
1627
|
+
issuanceId: z.ZodString;
|
|
1628
|
+
status: z.ZodEnum<{
|
|
1629
|
+
PENDING: "PENDING";
|
|
1630
|
+
ISSUED: "ISSUED";
|
|
1631
|
+
EXPIRED: "EXPIRED";
|
|
1632
|
+
DELIVERED: "DELIVERED";
|
|
1633
|
+
CLAIMED: "CLAIMED";
|
|
1634
|
+
}>;
|
|
1635
|
+
claimUrl: z.ZodOptional<z.ZodString>;
|
|
1636
|
+
}, z.core.$strip>>;
|
|
1561
1637
|
}, z.core.$strip>;
|
|
1562
1638
|
export type SendBoostResponse = z.infer<typeof SendBoostResponseValidator>;
|
|
1563
1639
|
export declare const SendInputValidator: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
@@ -1570,6 +1646,7 @@ export declare const SendInputValidator: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
|
1570
1646
|
name: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
1571
1647
|
status: z.ZodOptional<z.ZodOptional<z.ZodEnum<{
|
|
1572
1648
|
DRAFT: "DRAFT";
|
|
1649
|
+
PROVISIONAL: "PROVISIONAL";
|
|
1573
1650
|
LIVE: "LIVE";
|
|
1574
1651
|
}>>>;
|
|
1575
1652
|
category: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
@@ -2042,13 +2119,36 @@ export declare const SendInputValidator: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
|
2042
2119
|
jws: z.ZodOptional<z.ZodString>;
|
|
2043
2120
|
}, z.core.$catchall<z.ZodAny>>>]>;
|
|
2044
2121
|
}, z.core.$catchall<z.ZodAny>>>;
|
|
2122
|
+
options: z.ZodOptional<z.ZodObject<{
|
|
2123
|
+
webhookUrl: z.ZodOptional<z.ZodString>;
|
|
2124
|
+
suppressDelivery: z.ZodOptional<z.ZodBoolean>;
|
|
2125
|
+
branding: z.ZodOptional<z.ZodObject<{
|
|
2126
|
+
issuerName: z.ZodOptional<z.ZodString>;
|
|
2127
|
+
issuerLogoUrl: z.ZodOptional<z.ZodString>;
|
|
2128
|
+
credentialName: z.ZodOptional<z.ZodString>;
|
|
2129
|
+
recipientName: z.ZodOptional<z.ZodString>;
|
|
2130
|
+
}, z.core.$strip>>;
|
|
2131
|
+
}, z.core.$strip>>;
|
|
2045
2132
|
templateData: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
2133
|
+
integrationId: z.ZodOptional<z.ZodString>;
|
|
2046
2134
|
}, z.core.$strip>], "type">;
|
|
2047
2135
|
export type SendInput = z.infer<typeof SendInputValidator>;
|
|
2048
2136
|
export declare const SendResponseValidator: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
2049
2137
|
type: z.ZodLiteral<"boost">;
|
|
2050
2138
|
credentialUri: z.ZodString;
|
|
2051
2139
|
uri: z.ZodString;
|
|
2140
|
+
activityId: z.ZodString;
|
|
2141
|
+
inbox: z.ZodOptional<z.ZodObject<{
|
|
2142
|
+
issuanceId: z.ZodString;
|
|
2143
|
+
status: z.ZodEnum<{
|
|
2144
|
+
PENDING: "PENDING";
|
|
2145
|
+
ISSUED: "ISSUED";
|
|
2146
|
+
EXPIRED: "EXPIRED";
|
|
2147
|
+
DELIVERED: "DELIVERED";
|
|
2148
|
+
CLAIMED: "CLAIMED";
|
|
2149
|
+
}>;
|
|
2150
|
+
claimUrl: z.ZodOptional<z.ZodString>;
|
|
2151
|
+
}, z.core.$strip>>;
|
|
2052
2152
|
}, z.core.$strip>], "type">;
|
|
2053
2153
|
export type SendResponse = z.infer<typeof SendResponseValidator>;
|
|
2054
2154
|
export declare const ConsentFlowTermsStatusValidator: z.ZodEnum<{
|
|
@@ -2890,6 +2990,7 @@ export declare const PaginatedContractCredentialsValidator: z.ZodObject<{
|
|
|
2890
2990
|
export type PaginatedContractCredentials = z.infer<typeof PaginatedContractCredentialsValidator>;
|
|
2891
2991
|
export declare const LCNNotificationTypeEnumValidator: z.ZodEnum<{
|
|
2892
2992
|
CONNECTION_REQUEST: "CONNECTION_REQUEST";
|
|
2993
|
+
CONNECTION_REQUEST_EXPIRED_INVITE: "CONNECTION_REQUEST_EXPIRED_INVITE";
|
|
2893
2994
|
CONNECTION_ACCEPTED: "CONNECTION_ACCEPTED";
|
|
2894
2995
|
CREDENTIAL_RECEIVED: "CREDENTIAL_RECEIVED";
|
|
2895
2996
|
CREDENTIAL_ACCEPTED: "CREDENTIAL_ACCEPTED";
|
|
@@ -3008,6 +3109,7 @@ export type LCNNotificationData = z.infer<typeof LCNNotificationDataValidator>;
|
|
|
3008
3109
|
export declare const LCNNotificationValidator: z.ZodObject<{
|
|
3009
3110
|
type: z.ZodEnum<{
|
|
3010
3111
|
CONNECTION_REQUEST: "CONNECTION_REQUEST";
|
|
3112
|
+
CONNECTION_REQUEST_EXPIRED_INVITE: "CONNECTION_REQUEST_EXPIRED_INVITE";
|
|
3011
3113
|
CONNECTION_ACCEPTED: "CONNECTION_ACCEPTED";
|
|
3012
3114
|
CREDENTIAL_RECEIVED: "CREDENTIAL_RECEIVED";
|
|
3013
3115
|
CREDENTIAL_ACCEPTED: "CREDENTIAL_ACCEPTED";
|
|
@@ -3311,6 +3413,8 @@ export declare const InboxCredentialValidator: z.ZodObject<{
|
|
|
3311
3413
|
createdAt: z.ZodString;
|
|
3312
3414
|
issuerDid: z.ZodString;
|
|
3313
3415
|
webhookUrl: z.ZodOptional<z.ZodString>;
|
|
3416
|
+
boostUri: z.ZodOptional<z.ZodString>;
|
|
3417
|
+
activityId: z.ZodOptional<z.ZodString>;
|
|
3314
3418
|
signingAuthority: z.ZodOptional<z.ZodObject<{
|
|
3315
3419
|
endpoint: z.ZodOptional<z.ZodString>;
|
|
3316
3420
|
name: z.ZodOptional<z.ZodString>;
|
|
@@ -3335,6 +3439,8 @@ export declare const PaginatedInboxCredentialsValidator: z.ZodObject<{
|
|
|
3335
3439
|
createdAt: z.ZodString;
|
|
3336
3440
|
issuerDid: z.ZodString;
|
|
3337
3441
|
webhookUrl: z.ZodOptional<z.ZodString>;
|
|
3442
|
+
boostUri: z.ZodOptional<z.ZodString>;
|
|
3443
|
+
activityId: z.ZodOptional<z.ZodString>;
|
|
3338
3444
|
signingAuthority: z.ZodOptional<z.ZodObject<{
|
|
3339
3445
|
endpoint: z.ZodOptional<z.ZodString>;
|
|
3340
3446
|
name: z.ZodOptional<z.ZodString>;
|
|
@@ -3355,6 +3461,7 @@ export declare const InboxCredentialQueryValidator: z.ZodObject<{
|
|
|
3355
3461
|
isSigned: z.ZodOptional<z.ZodBoolean>;
|
|
3356
3462
|
isAccepted: z.ZodOptional<z.ZodOptional<z.ZodBoolean>>;
|
|
3357
3463
|
issuerDid: z.ZodOptional<z.ZodString>;
|
|
3464
|
+
boostUri: z.ZodOptional<z.ZodString>;
|
|
3358
3465
|
}, z.core.$strip>;
|
|
3359
3466
|
export type InboxCredentialQuery = z.infer<typeof InboxCredentialQueryValidator>;
|
|
3360
3467
|
export declare const IssueInboxSigningAuthorityValidator: z.ZodObject<{
|
|
@@ -3370,7 +3477,7 @@ export declare const IssueInboxCredentialValidator: z.ZodObject<{
|
|
|
3370
3477
|
type: z.ZodLiteral<"phone">;
|
|
3371
3478
|
value: z.ZodString;
|
|
3372
3479
|
}, z.core.$strip>], "type">;
|
|
3373
|
-
credential: z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
|
|
3480
|
+
credential: z.ZodOptional<z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
|
|
3374
3481
|
'@context': z.ZodArray<z.ZodUnion<[z.ZodString, z.ZodRecord<z.ZodString, z.ZodAny>]>>;
|
|
3375
3482
|
id: z.ZodOptional<z.ZodString>;
|
|
3376
3483
|
type: z.ZodArray<z.ZodString>;
|
|
@@ -3976,7 +4083,8 @@ export declare const IssueInboxCredentialValidator: z.ZodObject<{
|
|
|
3976
4083
|
genre: z.ZodOptional<z.ZodString>;
|
|
3977
4084
|
audience: z.ZodOptional<z.ZodString>;
|
|
3978
4085
|
}, z.core.$catchall<z.ZodAny>>>]>>;
|
|
3979
|
-
}, z.core.$catchall<z.ZodAny>>]
|
|
4086
|
+
}, z.core.$catchall<z.ZodAny>>]>>;
|
|
4087
|
+
templateUri: z.ZodOptional<z.ZodString>;
|
|
3980
4088
|
configuration: z.ZodOptional<z.ZodObject<{
|
|
3981
4089
|
signingAuthority: z.ZodOptional<z.ZodObject<{
|
|
3982
4090
|
endpoint: z.ZodString;
|
|
@@ -3984,6 +4092,7 @@ export declare const IssueInboxCredentialValidator: z.ZodObject<{
|
|
|
3984
4092
|
}, z.core.$strip>>;
|
|
3985
4093
|
webhookUrl: z.ZodOptional<z.ZodString>;
|
|
3986
4094
|
expiresInDays: z.ZodOptional<z.ZodNumber>;
|
|
4095
|
+
templateData: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
3987
4096
|
delivery: z.ZodOptional<z.ZodObject<{
|
|
3988
4097
|
suppress: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
|
|
3989
4098
|
template: z.ZodOptional<z.ZodObject<{
|
|
@@ -4639,22 +4748,40 @@ export declare const ClaimInboxCredentialValidator: z.ZodObject<{
|
|
|
4639
4748
|
configuration: z.ZodOptional<z.ZodObject<{
|
|
4640
4749
|
publishableKey: z.ZodString;
|
|
4641
4750
|
signingAuthorityName: z.ZodOptional<z.ZodString>;
|
|
4751
|
+
listingId: z.ZodOptional<z.ZodString>;
|
|
4752
|
+
listingSlug: z.ZodOptional<z.ZodString>;
|
|
4642
4753
|
}, z.core.$strip>>;
|
|
4643
4754
|
}, z.core.$strip>;
|
|
4644
4755
|
export type ClaimInboxCredentialType = z.infer<typeof ClaimInboxCredentialValidator>;
|
|
4645
4756
|
export declare const LCNDomainOrOriginValidator: z.ZodUnion<readonly [z.ZodString, z.ZodString]>;
|
|
4757
|
+
export declare const LCNIntegrationStatusEnum: z.ZodEnum<{
|
|
4758
|
+
active: "active";
|
|
4759
|
+
setup: "setup";
|
|
4760
|
+
paused: "paused";
|
|
4761
|
+
}>;
|
|
4762
|
+
export type LCNIntegrationStatus = z.infer<typeof LCNIntegrationStatusEnum>;
|
|
4646
4763
|
export declare const LCNIntegrationValidator: z.ZodObject<{
|
|
4647
4764
|
id: z.ZodString;
|
|
4648
4765
|
name: z.ZodString;
|
|
4649
4766
|
description: z.ZodOptional<z.ZodString>;
|
|
4650
4767
|
publishableKey: z.ZodString;
|
|
4651
4768
|
whitelistedDomains: z.ZodDefault<z.ZodArray<z.ZodUnion<readonly [z.ZodString, z.ZodString]>>>;
|
|
4769
|
+
status: z.ZodDefault<z.ZodEnum<{
|
|
4770
|
+
active: "active";
|
|
4771
|
+
setup: "setup";
|
|
4772
|
+
paused: "paused";
|
|
4773
|
+
}>>;
|
|
4774
|
+
guideType: z.ZodOptional<z.ZodString>;
|
|
4775
|
+
guideState: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
|
|
4776
|
+
createdAt: z.ZodOptional<z.ZodString>;
|
|
4777
|
+
updatedAt: z.ZodOptional<z.ZodString>;
|
|
4652
4778
|
}, z.core.$strip>;
|
|
4653
4779
|
export type LCNIntegration = z.infer<typeof LCNIntegrationValidator>;
|
|
4654
4780
|
export declare const LCNIntegrationCreateValidator: z.ZodObject<{
|
|
4655
4781
|
name: z.ZodString;
|
|
4656
4782
|
description: z.ZodOptional<z.ZodString>;
|
|
4657
4783
|
whitelistedDomains: z.ZodDefault<z.ZodArray<z.ZodUnion<readonly [z.ZodString, z.ZodString]>>>;
|
|
4784
|
+
guideType: z.ZodOptional<z.ZodString>;
|
|
4658
4785
|
}, z.core.$strip>;
|
|
4659
4786
|
export type LCNIntegrationCreateType = z.infer<typeof LCNIntegrationCreateValidator>;
|
|
4660
4787
|
export declare const LCNIntegrationUpdateValidator: z.ZodObject<{
|
|
@@ -4662,6 +4789,13 @@ export declare const LCNIntegrationUpdateValidator: z.ZodObject<{
|
|
|
4662
4789
|
description: z.ZodOptional<z.ZodString>;
|
|
4663
4790
|
whitelistedDomains: z.ZodOptional<z.ZodArray<z.ZodUnion<readonly [z.ZodString, z.ZodString]>>>;
|
|
4664
4791
|
rotatePublishableKey: z.ZodOptional<z.ZodBoolean>;
|
|
4792
|
+
status: z.ZodOptional<z.ZodEnum<{
|
|
4793
|
+
active: "active";
|
|
4794
|
+
setup: "setup";
|
|
4795
|
+
paused: "paused";
|
|
4796
|
+
}>>;
|
|
4797
|
+
guideType: z.ZodOptional<z.ZodString>;
|
|
4798
|
+
guideState: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
|
|
4665
4799
|
}, z.core.$strip>;
|
|
4666
4800
|
export type LCNIntegrationUpdateType = z.infer<typeof LCNIntegrationUpdateValidator>;
|
|
4667
4801
|
export declare const LCNIntegrationQueryValidator: z.ZodObject<{
|
|
@@ -4698,6 +4832,28 @@ export declare const LCNIntegrationQueryValidator: z.ZodObject<{
|
|
|
4698
4832
|
$regex: z.ZodUnion<[z.ZodCustom<RegExp, RegExp>, z.ZodPipe<z.ZodString, z.ZodTransform<RegExp, string>>]>;
|
|
4699
4833
|
}, z.core.$strip>]>>;
|
|
4700
4834
|
}, z.core.$strip>]>>;
|
|
4835
|
+
status: z.ZodOptional<z.ZodUnion<readonly [z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodObject<{
|
|
4836
|
+
$in: z.ZodArray<z.ZodString>;
|
|
4837
|
+
}, z.core.$strip>]>, z.ZodObject<{
|
|
4838
|
+
$regex: z.ZodUnion<[z.ZodCustom<RegExp, RegExp>, z.ZodPipe<z.ZodString, z.ZodTransform<RegExp, string>>]>;
|
|
4839
|
+
}, z.core.$strip>]>, z.ZodObject<{
|
|
4840
|
+
$or: z.ZodArray<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodObject<{
|
|
4841
|
+
$in: z.ZodArray<z.ZodString>;
|
|
4842
|
+
}, z.core.$strip>]>, z.ZodObject<{
|
|
4843
|
+
$regex: z.ZodUnion<[z.ZodCustom<RegExp, RegExp>, z.ZodPipe<z.ZodString, z.ZodTransform<RegExp, string>>]>;
|
|
4844
|
+
}, z.core.$strip>]>>;
|
|
4845
|
+
}, z.core.$strip>]>>;
|
|
4846
|
+
guideType: z.ZodOptional<z.ZodUnion<readonly [z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodObject<{
|
|
4847
|
+
$in: z.ZodArray<z.ZodString>;
|
|
4848
|
+
}, z.core.$strip>]>, z.ZodObject<{
|
|
4849
|
+
$regex: z.ZodUnion<[z.ZodCustom<RegExp, RegExp>, z.ZodPipe<z.ZodString, z.ZodTransform<RegExp, string>>]>;
|
|
4850
|
+
}, z.core.$strip>]>, z.ZodObject<{
|
|
4851
|
+
$or: z.ZodArray<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodObject<{
|
|
4852
|
+
$in: z.ZodArray<z.ZodString>;
|
|
4853
|
+
}, z.core.$strip>]>, z.ZodObject<{
|
|
4854
|
+
$regex: z.ZodUnion<[z.ZodCustom<RegExp, RegExp>, z.ZodPipe<z.ZodString, z.ZodTransform<RegExp, string>>]>;
|
|
4855
|
+
}, z.core.$strip>]>>;
|
|
4856
|
+
}, z.core.$strip>]>>;
|
|
4701
4857
|
}, z.core.$strip>;
|
|
4702
4858
|
export type LCNIntegrationQueryType = z.infer<typeof LCNIntegrationQueryValidator>;
|
|
4703
4859
|
export declare const PaginatedLCNIntegrationsValidator: z.ZodObject<{
|
|
@@ -4709,6 +4865,15 @@ export declare const PaginatedLCNIntegrationsValidator: z.ZodObject<{
|
|
|
4709
4865
|
description: z.ZodOptional<z.ZodString>;
|
|
4710
4866
|
publishableKey: z.ZodString;
|
|
4711
4867
|
whitelistedDomains: z.ZodDefault<z.ZodArray<z.ZodUnion<readonly [z.ZodString, z.ZodString]>>>;
|
|
4868
|
+
status: z.ZodDefault<z.ZodEnum<{
|
|
4869
|
+
active: "active";
|
|
4870
|
+
setup: "setup";
|
|
4871
|
+
paused: "paused";
|
|
4872
|
+
}>>;
|
|
4873
|
+
guideType: z.ZodOptional<z.ZodString>;
|
|
4874
|
+
guideState: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
|
|
4875
|
+
createdAt: z.ZodOptional<z.ZodString>;
|
|
4876
|
+
updatedAt: z.ZodOptional<z.ZodString>;
|
|
4712
4877
|
}, z.core.$strip>>;
|
|
4713
4878
|
}, z.core.$strip>;
|
|
4714
4879
|
export type PaginatedLCNIntegrationsType = z.infer<typeof PaginatedLCNIntegrationsValidator>;
|
|
@@ -4884,6 +5049,48 @@ export declare const SkillQueryValidator: z.ZodUnion<readonly [z.ZodObject<{
|
|
|
4884
5049
|
}, z.core.$strip>]>>;
|
|
4885
5050
|
}, z.core.$strip>]>;
|
|
4886
5051
|
export type SkillQuery = z.infer<typeof SkillQueryValidator>;
|
|
5052
|
+
export declare const SkillSemanticSearchInputValidator: z.ZodObject<{
|
|
5053
|
+
text: z.ZodString;
|
|
5054
|
+
frameworkId: z.ZodOptional<z.ZodString>;
|
|
5055
|
+
limit: z.ZodDefault<z.ZodNumber>;
|
|
5056
|
+
}, z.core.$strip>;
|
|
5057
|
+
export type SkillSemanticSearchInput = z.infer<typeof SkillSemanticSearchInputValidator>;
|
|
5058
|
+
export declare const SkillSemanticSearchResultItemValidator: z.ZodObject<{
|
|
5059
|
+
id: z.ZodString;
|
|
5060
|
+
statement: z.ZodString;
|
|
5061
|
+
description: z.ZodOptional<z.ZodString>;
|
|
5062
|
+
code: z.ZodOptional<z.ZodString>;
|
|
5063
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
5064
|
+
type: z.ZodDefault<z.ZodString>;
|
|
5065
|
+
status: z.ZodDefault<z.ZodEnum<{
|
|
5066
|
+
active: "active";
|
|
5067
|
+
archived: "archived";
|
|
5068
|
+
}>>;
|
|
5069
|
+
frameworkId: z.ZodOptional<z.ZodString>;
|
|
5070
|
+
createdAt: z.ZodOptional<z.ZodString>;
|
|
5071
|
+
updatedAt: z.ZodOptional<z.ZodString>;
|
|
5072
|
+
score: z.ZodNumber;
|
|
5073
|
+
}, z.core.$strip>;
|
|
5074
|
+
export type SkillSemanticSearchResultItem = z.infer<typeof SkillSemanticSearchResultItemValidator>;
|
|
5075
|
+
export declare const SkillSemanticSearchResultValidator: z.ZodObject<{
|
|
5076
|
+
records: z.ZodArray<z.ZodObject<{
|
|
5077
|
+
id: z.ZodString;
|
|
5078
|
+
statement: z.ZodString;
|
|
5079
|
+
description: z.ZodOptional<z.ZodString>;
|
|
5080
|
+
code: z.ZodOptional<z.ZodString>;
|
|
5081
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
5082
|
+
type: z.ZodDefault<z.ZodString>;
|
|
5083
|
+
status: z.ZodDefault<z.ZodEnum<{
|
|
5084
|
+
active: "active";
|
|
5085
|
+
archived: "archived";
|
|
5086
|
+
}>>;
|
|
5087
|
+
frameworkId: z.ZodOptional<z.ZodString>;
|
|
5088
|
+
createdAt: z.ZodOptional<z.ZodString>;
|
|
5089
|
+
updatedAt: z.ZodOptional<z.ZodString>;
|
|
5090
|
+
score: z.ZodNumber;
|
|
5091
|
+
}, z.core.$strip>>;
|
|
5092
|
+
}, z.core.$strip>;
|
|
5093
|
+
export type SkillSemanticSearchResult = z.infer<typeof SkillSemanticSearchResultValidator>;
|
|
4887
5094
|
export declare const SkillFrameworkStatusEnum: z.ZodEnum<{
|
|
4888
5095
|
active: "active";
|
|
4889
5096
|
archived: "archived";
|
|
@@ -5192,6 +5399,7 @@ export declare const PromotionLevelValidator: z.ZodEnum<{
|
|
|
5192
5399
|
export type PromotionLevel = z.infer<typeof PromotionLevelValidator>;
|
|
5193
5400
|
export declare const AppStoreListingValidator: z.ZodObject<{
|
|
5194
5401
|
listing_id: z.ZodString;
|
|
5402
|
+
slug: z.ZodOptional<z.ZodString>;
|
|
5195
5403
|
display_name: z.ZodString;
|
|
5196
5404
|
tagline: z.ZodString;
|
|
5197
5405
|
full_description: z.ZodString;
|
|
@@ -5230,6 +5438,7 @@ export declare const AppStoreListingValidator: z.ZodObject<{
|
|
|
5230
5438
|
export type AppStoreListing = z.infer<typeof AppStoreListingValidator>;
|
|
5231
5439
|
export declare const AppStoreListingCreateValidator: z.ZodObject<{
|
|
5232
5440
|
category: z.ZodOptional<z.ZodString>;
|
|
5441
|
+
slug: z.ZodOptional<z.ZodString>;
|
|
5233
5442
|
launch_type: z.ZodEnum<{
|
|
5234
5443
|
EMBEDDED_IFRAME: "EMBEDDED_IFRAME";
|
|
5235
5444
|
SECOND_SCREEN: "SECOND_SCREEN";
|
|
@@ -5255,6 +5464,7 @@ export declare const AppStoreListingCreateValidator: z.ZodObject<{
|
|
|
5255
5464
|
export type AppStoreListingCreateType = z.infer<typeof AppStoreListingCreateValidator>;
|
|
5256
5465
|
export declare const AppStoreListingUpdateValidator: z.ZodObject<{
|
|
5257
5466
|
category: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
5467
|
+
slug: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
5258
5468
|
launch_type: z.ZodOptional<z.ZodEnum<{
|
|
5259
5469
|
EMBEDDED_IFRAME: "EMBEDDED_IFRAME";
|
|
5260
5470
|
SECOND_SCREEN: "SECOND_SCREEN";
|
|
@@ -5280,6 +5490,7 @@ export declare const AppStoreListingUpdateValidator: z.ZodObject<{
|
|
|
5280
5490
|
export type AppStoreListingUpdateType = z.infer<typeof AppStoreListingUpdateValidator>;
|
|
5281
5491
|
export declare const InstalledAppValidator: z.ZodObject<{
|
|
5282
5492
|
listing_id: z.ZodString;
|
|
5493
|
+
slug: z.ZodOptional<z.ZodString>;
|
|
5283
5494
|
display_name: z.ZodString;
|
|
5284
5495
|
tagline: z.ZodString;
|
|
5285
5496
|
full_description: z.ZodString;
|
|
@@ -5322,6 +5533,7 @@ export declare const PaginatedAppStoreListingsValidator: z.ZodObject<{
|
|
|
5322
5533
|
hasMore: z.ZodBoolean;
|
|
5323
5534
|
records: z.ZodArray<z.ZodObject<{
|
|
5324
5535
|
listing_id: z.ZodString;
|
|
5536
|
+
slug: z.ZodOptional<z.ZodString>;
|
|
5325
5537
|
display_name: z.ZodString;
|
|
5326
5538
|
tagline: z.ZodString;
|
|
5327
5539
|
full_description: z.ZodString;
|
|
@@ -5364,6 +5576,7 @@ export declare const PaginatedInstalledAppsValidator: z.ZodObject<{
|
|
|
5364
5576
|
hasMore: z.ZodBoolean;
|
|
5365
5577
|
records: z.ZodArray<z.ZodObject<{
|
|
5366
5578
|
listing_id: z.ZodString;
|
|
5579
|
+
slug: z.ZodOptional<z.ZodString>;
|
|
5367
5580
|
display_name: z.ZodString;
|
|
5368
5581
|
tagline: z.ZodString;
|
|
5369
5582
|
full_description: z.ZodString;
|
|
@@ -5402,4 +5615,194 @@ export declare const PaginatedInstalledAppsValidator: z.ZodObject<{
|
|
|
5402
5615
|
}, z.core.$strip>>;
|
|
5403
5616
|
}, z.core.$strip>;
|
|
5404
5617
|
export type PaginatedInstalledApps = z.infer<typeof PaginatedInstalledAppsValidator>;
|
|
5618
|
+
export declare const AppBoostValidator: z.ZodObject<{
|
|
5619
|
+
templateAlias: z.ZodString;
|
|
5620
|
+
boostUri: z.ZodString;
|
|
5621
|
+
}, z.core.$strip>;
|
|
5622
|
+
export type AppBoost = z.infer<typeof AppBoostValidator>;
|
|
5623
|
+
export declare const SendCredentialEventValidator: z.ZodObject<{
|
|
5624
|
+
type: z.ZodLiteral<"send-credential">;
|
|
5625
|
+
templateAlias: z.ZodString;
|
|
5626
|
+
templateData: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
5627
|
+
}, z.core.$strip>;
|
|
5628
|
+
export type SendCredentialEvent = z.infer<typeof SendCredentialEventValidator>;
|
|
5629
|
+
export declare const AppEventValidator: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
5630
|
+
type: z.ZodLiteral<"send-credential">;
|
|
5631
|
+
templateAlias: z.ZodString;
|
|
5632
|
+
templateData: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
5633
|
+
}, z.core.$strip>], "type">;
|
|
5634
|
+
export type AppEvent = z.infer<typeof AppEventValidator>;
|
|
5635
|
+
export declare const AppEventInputValidator: z.ZodObject<{
|
|
5636
|
+
listingId: z.ZodString;
|
|
5637
|
+
event: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
5638
|
+
type: z.ZodLiteral<"send-credential">;
|
|
5639
|
+
templateAlias: z.ZodString;
|
|
5640
|
+
templateData: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
5641
|
+
}, z.core.$strip>], "type">;
|
|
5642
|
+
}, z.core.$strip>;
|
|
5643
|
+
export type AppEventInput = z.infer<typeof AppEventInputValidator>;
|
|
5644
|
+
export declare const AppEventResponseValidator: z.ZodRecord<z.ZodString, z.ZodUnknown>;
|
|
5645
|
+
export type AppEventResponse = z.infer<typeof AppEventResponseValidator>;
|
|
5646
|
+
export declare const CredentialActivityEventTypeValidator: z.ZodEnum<{
|
|
5647
|
+
EXPIRED: "EXPIRED";
|
|
5648
|
+
DELIVERED: "DELIVERED";
|
|
5649
|
+
CLAIMED: "CLAIMED";
|
|
5650
|
+
CREATED: "CREATED";
|
|
5651
|
+
FAILED: "FAILED";
|
|
5652
|
+
}>;
|
|
5653
|
+
export type CredentialActivityEventType = z.infer<typeof CredentialActivityEventTypeValidator>;
|
|
5654
|
+
export declare const CredentialActivityRecipientTypeValidator: z.ZodEnum<{
|
|
5655
|
+
phone: "phone";
|
|
5656
|
+
email: "email";
|
|
5657
|
+
profile: "profile";
|
|
5658
|
+
}>;
|
|
5659
|
+
export type CredentialActivityRecipientType = z.infer<typeof CredentialActivityRecipientTypeValidator>;
|
|
5660
|
+
export declare const CredentialActivitySourceTypeValidator: z.ZodEnum<{
|
|
5661
|
+
inbox: "inbox";
|
|
5662
|
+
contract: "contract";
|
|
5663
|
+
send: "send";
|
|
5664
|
+
sendBoost: "sendBoost";
|
|
5665
|
+
sendCredential: "sendCredential";
|
|
5666
|
+
claim: "claim";
|
|
5667
|
+
claimLink: "claimLink";
|
|
5668
|
+
acceptCredential: "acceptCredential";
|
|
5669
|
+
}>;
|
|
5670
|
+
export type CredentialActivitySourceType = z.infer<typeof CredentialActivitySourceTypeValidator>;
|
|
5671
|
+
export declare const CredentialActivityValidator: z.ZodObject<{
|
|
5672
|
+
id: z.ZodString;
|
|
5673
|
+
activityId: z.ZodString;
|
|
5674
|
+
eventType: z.ZodEnum<{
|
|
5675
|
+
EXPIRED: "EXPIRED";
|
|
5676
|
+
DELIVERED: "DELIVERED";
|
|
5677
|
+
CLAIMED: "CLAIMED";
|
|
5678
|
+
CREATED: "CREATED";
|
|
5679
|
+
FAILED: "FAILED";
|
|
5680
|
+
}>;
|
|
5681
|
+
timestamp: z.ZodString;
|
|
5682
|
+
actorProfileId: z.ZodString;
|
|
5683
|
+
recipientType: z.ZodEnum<{
|
|
5684
|
+
phone: "phone";
|
|
5685
|
+
email: "email";
|
|
5686
|
+
profile: "profile";
|
|
5687
|
+
}>;
|
|
5688
|
+
recipientIdentifier: z.ZodString;
|
|
5689
|
+
boostUri: z.ZodOptional<z.ZodString>;
|
|
5690
|
+
credentialUri: z.ZodOptional<z.ZodString>;
|
|
5691
|
+
inboxCredentialId: z.ZodOptional<z.ZodString>;
|
|
5692
|
+
integrationId: z.ZodOptional<z.ZodString>;
|
|
5693
|
+
source: z.ZodEnum<{
|
|
5694
|
+
inbox: "inbox";
|
|
5695
|
+
contract: "contract";
|
|
5696
|
+
send: "send";
|
|
5697
|
+
sendBoost: "sendBoost";
|
|
5698
|
+
sendCredential: "sendCredential";
|
|
5699
|
+
claim: "claim";
|
|
5700
|
+
claimLink: "claimLink";
|
|
5701
|
+
acceptCredential: "acceptCredential";
|
|
5702
|
+
}>;
|
|
5703
|
+
metadata: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
5704
|
+
}, z.core.$strip>;
|
|
5705
|
+
export type CredentialActivityRecord = z.infer<typeof CredentialActivityValidator>;
|
|
5706
|
+
export declare const CredentialActivityWithDetailsValidator: z.ZodObject<{
|
|
5707
|
+
id: z.ZodString;
|
|
5708
|
+
activityId: z.ZodString;
|
|
5709
|
+
eventType: z.ZodEnum<{
|
|
5710
|
+
EXPIRED: "EXPIRED";
|
|
5711
|
+
DELIVERED: "DELIVERED";
|
|
5712
|
+
CLAIMED: "CLAIMED";
|
|
5713
|
+
CREATED: "CREATED";
|
|
5714
|
+
FAILED: "FAILED";
|
|
5715
|
+
}>;
|
|
5716
|
+
timestamp: z.ZodString;
|
|
5717
|
+
actorProfileId: z.ZodString;
|
|
5718
|
+
recipientType: z.ZodEnum<{
|
|
5719
|
+
phone: "phone";
|
|
5720
|
+
email: "email";
|
|
5721
|
+
profile: "profile";
|
|
5722
|
+
}>;
|
|
5723
|
+
recipientIdentifier: z.ZodString;
|
|
5724
|
+
boostUri: z.ZodOptional<z.ZodString>;
|
|
5725
|
+
credentialUri: z.ZodOptional<z.ZodString>;
|
|
5726
|
+
inboxCredentialId: z.ZodOptional<z.ZodString>;
|
|
5727
|
+
integrationId: z.ZodOptional<z.ZodString>;
|
|
5728
|
+
source: z.ZodEnum<{
|
|
5729
|
+
inbox: "inbox";
|
|
5730
|
+
contract: "contract";
|
|
5731
|
+
send: "send";
|
|
5732
|
+
sendBoost: "sendBoost";
|
|
5733
|
+
sendCredential: "sendCredential";
|
|
5734
|
+
claim: "claim";
|
|
5735
|
+
claimLink: "claimLink";
|
|
5736
|
+
acceptCredential: "acceptCredential";
|
|
5737
|
+
}>;
|
|
5738
|
+
metadata: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
5739
|
+
boost: z.ZodOptional<z.ZodObject<{
|
|
5740
|
+
id: z.ZodString;
|
|
5741
|
+
name: z.ZodOptional<z.ZodString>;
|
|
5742
|
+
category: z.ZodOptional<z.ZodString>;
|
|
5743
|
+
}, z.core.$strip>>;
|
|
5744
|
+
recipientProfile: z.ZodOptional<z.ZodObject<{
|
|
5745
|
+
profileId: z.ZodString;
|
|
5746
|
+
displayName: z.ZodOptional<z.ZodString>;
|
|
5747
|
+
}, z.core.$strip>>;
|
|
5748
|
+
}, z.core.$strip>;
|
|
5749
|
+
export type CredentialActivityWithDetails = z.infer<typeof CredentialActivityWithDetailsValidator>;
|
|
5750
|
+
export declare const PaginatedCredentialActivitiesValidator: z.ZodObject<{
|
|
5751
|
+
cursor: z.ZodOptional<z.ZodString>;
|
|
5752
|
+
hasMore: z.ZodBoolean;
|
|
5753
|
+
records: z.ZodArray<z.ZodObject<{
|
|
5754
|
+
id: z.ZodString;
|
|
5755
|
+
activityId: z.ZodString;
|
|
5756
|
+
eventType: z.ZodEnum<{
|
|
5757
|
+
EXPIRED: "EXPIRED";
|
|
5758
|
+
DELIVERED: "DELIVERED";
|
|
5759
|
+
CLAIMED: "CLAIMED";
|
|
5760
|
+
CREATED: "CREATED";
|
|
5761
|
+
FAILED: "FAILED";
|
|
5762
|
+
}>;
|
|
5763
|
+
timestamp: z.ZodString;
|
|
5764
|
+
actorProfileId: z.ZodString;
|
|
5765
|
+
recipientType: z.ZodEnum<{
|
|
5766
|
+
phone: "phone";
|
|
5767
|
+
email: "email";
|
|
5768
|
+
profile: "profile";
|
|
5769
|
+
}>;
|
|
5770
|
+
recipientIdentifier: z.ZodString;
|
|
5771
|
+
boostUri: z.ZodOptional<z.ZodString>;
|
|
5772
|
+
credentialUri: z.ZodOptional<z.ZodString>;
|
|
5773
|
+
inboxCredentialId: z.ZodOptional<z.ZodString>;
|
|
5774
|
+
integrationId: z.ZodOptional<z.ZodString>;
|
|
5775
|
+
source: z.ZodEnum<{
|
|
5776
|
+
inbox: "inbox";
|
|
5777
|
+
contract: "contract";
|
|
5778
|
+
send: "send";
|
|
5779
|
+
sendBoost: "sendBoost";
|
|
5780
|
+
sendCredential: "sendCredential";
|
|
5781
|
+
claim: "claim";
|
|
5782
|
+
claimLink: "claimLink";
|
|
5783
|
+
acceptCredential: "acceptCredential";
|
|
5784
|
+
}>;
|
|
5785
|
+
metadata: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
5786
|
+
boost: z.ZodOptional<z.ZodObject<{
|
|
5787
|
+
id: z.ZodString;
|
|
5788
|
+
name: z.ZodOptional<z.ZodString>;
|
|
5789
|
+
category: z.ZodOptional<z.ZodString>;
|
|
5790
|
+
}, z.core.$strip>>;
|
|
5791
|
+
recipientProfile: z.ZodOptional<z.ZodObject<{
|
|
5792
|
+
profileId: z.ZodString;
|
|
5793
|
+
displayName: z.ZodOptional<z.ZodString>;
|
|
5794
|
+
}, z.core.$strip>>;
|
|
5795
|
+
}, z.core.$strip>>;
|
|
5796
|
+
}, z.core.$strip>;
|
|
5797
|
+
export type PaginatedCredentialActivities = z.infer<typeof PaginatedCredentialActivitiesValidator>;
|
|
5798
|
+
export declare const CredentialActivityStatsValidator: z.ZodObject<{
|
|
5799
|
+
total: z.ZodNumber;
|
|
5800
|
+
created: z.ZodNumber;
|
|
5801
|
+
delivered: z.ZodNumber;
|
|
5802
|
+
claimed: z.ZodNumber;
|
|
5803
|
+
expired: z.ZodNumber;
|
|
5804
|
+
failed: z.ZodNumber;
|
|
5805
|
+
claimRate: z.ZodNumber;
|
|
5806
|
+
}, z.core.$strip>;
|
|
5807
|
+
export type CredentialActivityStats = z.infer<typeof CredentialActivityStatsValidator>;
|
|
5405
5808
|
//# sourceMappingURL=lcn.d.ts.map
|