@settlemint/dalp-sdk 3.1.19-release.34321146733 → 3.1.19-release.34344073205
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 +7 -2
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -81357,11 +81357,16 @@ var OrganizationArchiveStateSchema = z306.object({
|
|
|
81357
81357
|
var OrganizationV2ArchiveOutputSchema = createSingleResponse(OrganizationArchiveStateSchema);
|
|
81358
81358
|
|
|
81359
81359
|
// ../../packages/dalp/api-contract/src/routes/v2/admin/admin.v2.organizations.list.schema.ts
|
|
81360
|
+
var ORGANIZATION_STATUS_VALUES = ["active", "archived"];
|
|
81360
81361
|
var ORGANIZATIONS_COLLECTION_FIELDS = {
|
|
81361
81362
|
name: textField(),
|
|
81362
81363
|
slug: textField(),
|
|
81363
81364
|
createdAt: dateField(),
|
|
81364
|
-
archivedAt: dateField()
|
|
81365
|
+
archivedAt: dateField(),
|
|
81366
|
+
status: enumField(ORGANIZATION_STATUS_VALUES, {
|
|
81367
|
+
sortable: false,
|
|
81368
|
+
facetable: false
|
|
81369
|
+
})
|
|
81365
81370
|
};
|
|
81366
81371
|
var OrganizationV2ListInputSchema = createCollectionInputSchema(ORGANIZATIONS_COLLECTION_FIELDS, {
|
|
81367
81372
|
defaultSort: "createdAt",
|
|
@@ -93967,7 +93972,7 @@ function normalizeDalpBaseUrl(url) {
|
|
|
93967
93972
|
// package.json
|
|
93968
93973
|
var package_default = {
|
|
93969
93974
|
name: "@settlemint/dalp-sdk",
|
|
93970
|
-
version: "3.1.19-release.
|
|
93975
|
+
version: "3.1.19-release.34344073205",
|
|
93971
93976
|
private: false,
|
|
93972
93977
|
description: "Fully typed SDK for the DALP tokenization platform API",
|
|
93973
93978
|
homepage: "https://settlemint.com",
|
package/package.json
CHANGED