@seamapi/types 1.678.0 → 1.679.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/connect.cjs +21 -0
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +36 -0
- package/dist/index.cjs +21 -0
- package/dist/index.cjs.map +1 -1
- package/lib/seam/connect/models/customer/customer-portal.d.ts +8 -0
- package/lib/seam/connect/models/customer/customer-portal.js +5 -0
- package/lib/seam/connect/models/customer/customer-portal.js.map +1 -1
- package/lib/seam/connect/openapi.d.ts +28 -0
- package/lib/seam/connect/openapi.js +21 -0
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +8 -0
- package/package.json +1 -1
- package/src/lib/seam/connect/models/customer/customer-portal.ts +10 -0
- package/src/lib/seam/connect/openapi.ts +24 -0
- package/src/lib/seam/connect/route-types.ts +12 -0
package/dist/connect.d.cts
CHANGED
|
@@ -86112,6 +86112,15 @@ declare const _default: {
|
|
|
86112
86112
|
enum: string[];
|
|
86113
86113
|
type: string;
|
|
86114
86114
|
};
|
|
86115
|
+
property_listing_filter: {
|
|
86116
|
+
additionalProperties: {
|
|
86117
|
+
oneOf: {
|
|
86118
|
+
type: string;
|
|
86119
|
+
}[];
|
|
86120
|
+
};
|
|
86121
|
+
description: string;
|
|
86122
|
+
type: string;
|
|
86123
|
+
};
|
|
86115
86124
|
customer_data?: never;
|
|
86116
86125
|
};
|
|
86117
86126
|
type: string;
|
|
@@ -86912,6 +86921,7 @@ declare const _default: {
|
|
|
86912
86921
|
is_embedded?: never;
|
|
86913
86922
|
landing_page?: never;
|
|
86914
86923
|
locale?: never;
|
|
86924
|
+
property_listing_filter?: never;
|
|
86915
86925
|
};
|
|
86916
86926
|
type: string;
|
|
86917
86927
|
default?: never;
|
|
@@ -98976,6 +98986,15 @@ declare const _default: {
|
|
|
98976
98986
|
enum: string[];
|
|
98977
98987
|
type: string;
|
|
98978
98988
|
};
|
|
98989
|
+
property_listing_filter: {
|
|
98990
|
+
additionalProperties: {
|
|
98991
|
+
oneOf: {
|
|
98992
|
+
type: string;
|
|
98993
|
+
}[];
|
|
98994
|
+
};
|
|
98995
|
+
description: string;
|
|
98996
|
+
type: string;
|
|
98997
|
+
};
|
|
98979
98998
|
};
|
|
98980
98999
|
type: string;
|
|
98981
99000
|
};
|
|
@@ -99387,6 +99406,15 @@ declare const _default: {
|
|
|
99387
99406
|
enum: string[];
|
|
99388
99407
|
type: string;
|
|
99389
99408
|
};
|
|
99409
|
+
property_listing_filter: {
|
|
99410
|
+
additionalProperties: {
|
|
99411
|
+
oneOf: {
|
|
99412
|
+
type: string;
|
|
99413
|
+
}[];
|
|
99414
|
+
};
|
|
99415
|
+
description: string;
|
|
99416
|
+
type: string;
|
|
99417
|
+
};
|
|
99390
99418
|
};
|
|
99391
99419
|
type: string;
|
|
99392
99420
|
};
|
|
@@ -140424,6 +140452,10 @@ type Routes = {
|
|
|
140424
140452
|
locale?: ('en-US' | 'pt-PT' | 'fr-FR' | 'it-IT' | 'es-ES') | undefined;
|
|
140425
140453
|
/** The ID of the customization profile to use for the portal. */
|
|
140426
140454
|
customization_profile_id?: string | undefined;
|
|
140455
|
+
/** Filter configuration for property listings based on their custom_metadata. Keys and values must match the custom_metadata stored on property listings. */
|
|
140456
|
+
property_listing_filter?: {
|
|
140457
|
+
[x: string]: string | boolean;
|
|
140458
|
+
} | undefined;
|
|
140427
140459
|
} & {
|
|
140428
140460
|
customer_data?: {
|
|
140429
140461
|
/** Your unique identifier for the customer. */
|
|
@@ -168455,6 +168487,10 @@ type Routes = {
|
|
|
168455
168487
|
locale?: ('en-US' | 'pt-PT' | 'fr-FR' | 'it-IT' | 'es-ES') | undefined;
|
|
168456
168488
|
/** The ID of the customization profile to use for the portal. */
|
|
168457
168489
|
customization_profile_id?: string | undefined;
|
|
168490
|
+
/** Filter configuration for property listings based on their custom_metadata. Keys and values must match the custom_metadata stored on property listings. */
|
|
168491
|
+
property_listing_filter?: {
|
|
168492
|
+
[x: string]: string | boolean;
|
|
168493
|
+
} | undefined;
|
|
168458
168494
|
/** Business vertical of the customer portal. */
|
|
168459
168495
|
business_vertical?: ('short_term_rental' | 'hospitality' | 'multi_family' | 'gym_management' | 'property_tours') | undefined;
|
|
168460
168496
|
};
|
package/dist/index.cjs
CHANGED
|
@@ -43911,6 +43911,13 @@ var openapi_default = {
|
|
|
43911
43911
|
description: "The locale to use for the portal.",
|
|
43912
43912
|
enum: ["en-US", "pt-PT", "fr-FR", "it-IT", "es-ES"],
|
|
43913
43913
|
type: "string"
|
|
43914
|
+
},
|
|
43915
|
+
property_listing_filter: {
|
|
43916
|
+
additionalProperties: {
|
|
43917
|
+
oneOf: [{ type: "string" }, { type: "boolean" }]
|
|
43918
|
+
},
|
|
43919
|
+
description: "Filter configuration for property listings based on their custom_metadata. Keys and values must match the custom_metadata stored on property listings.",
|
|
43920
|
+
type: "object"
|
|
43914
43921
|
}
|
|
43915
43922
|
},
|
|
43916
43923
|
type: "object"
|
|
@@ -56472,6 +56479,13 @@ var openapi_default = {
|
|
|
56472
56479
|
description: "The locale to use for the portal.",
|
|
56473
56480
|
enum: ["en-US", "pt-PT", "fr-FR", "it-IT", "es-ES"],
|
|
56474
56481
|
type: "string"
|
|
56482
|
+
},
|
|
56483
|
+
property_listing_filter: {
|
|
56484
|
+
additionalProperties: {
|
|
56485
|
+
oneOf: [{ type: "string" }, { type: "boolean" }]
|
|
56486
|
+
},
|
|
56487
|
+
description: "Filter configuration for property listings based on their custom_metadata. Keys and values must match the custom_metadata stored on property listings.",
|
|
56488
|
+
type: "object"
|
|
56475
56489
|
}
|
|
56476
56490
|
},
|
|
56477
56491
|
type: "object"
|
|
@@ -56773,6 +56787,13 @@ var openapi_default = {
|
|
|
56773
56787
|
description: "The locale to use for the portal.",
|
|
56774
56788
|
enum: ["en-US", "pt-PT", "fr-FR", "it-IT", "es-ES"],
|
|
56775
56789
|
type: "string"
|
|
56790
|
+
},
|
|
56791
|
+
property_listing_filter: {
|
|
56792
|
+
additionalProperties: {
|
|
56793
|
+
oneOf: [{ type: "string" }, { type: "boolean" }]
|
|
56794
|
+
},
|
|
56795
|
+
description: "Filter configuration for property listings based on their custom_metadata. Keys and values must match the custom_metadata stored on property listings.",
|
|
56796
|
+
type: "object"
|
|
56776
56797
|
}
|
|
56777
56798
|
},
|
|
56778
56799
|
type: "object"
|