@settlemint/dalp-sdk 3.0.7-main.28808038810 → 3.0.7-main.28813435228
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/index.js +9 -2
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -82604,6 +82604,12 @@ var TokenSaleWhitelistEntrySchema = z314.object({
|
|
|
82604
82604
|
updatedAt: timestamp()
|
|
82605
82605
|
});
|
|
82606
82606
|
var TokenSaleReadGraphSchema = TokenSaleGraphItemSchema.extend({
|
|
82607
|
+
token: z314.object({
|
|
82608
|
+
id: ethereumAddress,
|
|
82609
|
+
symbol: assetSymbol(),
|
|
82610
|
+
decimals: decimals(),
|
|
82611
|
+
isExternal: z314.boolean()
|
|
82612
|
+
}).nullable(),
|
|
82607
82613
|
minPurchase: bigDecimal(),
|
|
82608
82614
|
minPurchaseExact: apiBigInt,
|
|
82609
82615
|
maxPurchase: bigDecimal(),
|
|
@@ -82762,7 +82768,8 @@ var TOKEN_SALE_DOCUMENTS_COLLECTION_FIELDS = {
|
|
|
82762
82768
|
uploadedAt: dateField()
|
|
82763
82769
|
};
|
|
82764
82770
|
var TokenSaleDocumentsV2ListInputSchema = createCollectionInputSchema(TOKEN_SALE_DOCUMENTS_COLLECTION_FIELDS, {
|
|
82765
|
-
defaultSort: "uploadedAt"
|
|
82771
|
+
defaultSort: "uploadedAt",
|
|
82772
|
+
globalSearch: true
|
|
82766
82773
|
});
|
|
82767
82774
|
var TokenSaleDocumentsV2ListItemSchema = z319.object({
|
|
82768
82775
|
id: z319.string(),
|
|
@@ -96605,7 +96612,7 @@ function normalizeDalpBaseUrl(url) {
|
|
|
96605
96612
|
// package.json
|
|
96606
96613
|
var package_default = {
|
|
96607
96614
|
name: "@settlemint/dalp-sdk",
|
|
96608
|
-
version: "3.0.7-main.
|
|
96615
|
+
version: "3.0.7-main.28813435228",
|
|
96609
96616
|
private: false,
|
|
96610
96617
|
description: "Fully typed SDK for the DALP tokenization platform API",
|
|
96611
96618
|
homepage: "https://settlemint.com",
|
package/package.json
CHANGED