@seamapi/types 1.732.0 → 1.733.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 +6 -0
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +9 -0
- package/dist/index.cjs +6 -0
- package/dist/index.cjs.map +1 -1
- package/lib/seam/connect/models/customer/customer-portal.d.ts +4 -0
- package/lib/seam/connect/models/customer/customer-portal.js +8 -0
- package/lib/seam/connect/models/customer/customer-portal.js.map +1 -1
- package/lib/seam/connect/openapi.d.ts +7 -0
- package/lib/seam/connect/openapi.js +6 -0
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +2 -0
- package/package.json +1 -1
- package/src/lib/seam/connect/models/customer/customer-portal.ts +8 -0
- package/src/lib/seam/connect/openapi.ts +7 -0
- package/src/lib/seam/connect/route-types.ts +2 -0
package/dist/connect.d.cts
CHANGED
|
@@ -97103,6 +97103,12 @@ declare const _default: {
|
|
|
97103
97103
|
};
|
|
97104
97104
|
description: string;
|
|
97105
97105
|
properties: {
|
|
97106
|
+
_dev: {
|
|
97107
|
+
default: boolean;
|
|
97108
|
+
description: string;
|
|
97109
|
+
type: string;
|
|
97110
|
+
'x-undocumented': string;
|
|
97111
|
+
};
|
|
97106
97112
|
customer_resources_filters: {
|
|
97107
97113
|
description: string;
|
|
97108
97114
|
items: {
|
|
@@ -98316,6 +98322,7 @@ declare const _default: {
|
|
|
98316
98322
|
required: string[];
|
|
98317
98323
|
type: string;
|
|
98318
98324
|
};
|
|
98325
|
+
_dev?: never;
|
|
98319
98326
|
customer_resources_filters?: never;
|
|
98320
98327
|
customization_profile_id?: never;
|
|
98321
98328
|
deep_link?: never;
|
|
@@ -155847,6 +155854,8 @@ type Routes = {
|
|
|
155847
155854
|
resource_type: 'reservation' | 'space';
|
|
155848
155855
|
resource_key: string;
|
|
155849
155856
|
} | undefined;
|
|
155857
|
+
/** Whether the portal is in developer mode. Only available for Seam employees. */
|
|
155858
|
+
_dev?: boolean;
|
|
155850
155859
|
} & {
|
|
155851
155860
|
customer_data?: {
|
|
155852
155861
|
/** Your unique identifier for the customer. */
|
package/dist/index.cjs
CHANGED
|
@@ -49973,6 +49973,12 @@ var openapi_default = {
|
|
|
49973
49973
|
},
|
|
49974
49974
|
description: "Configuration for a customer portal",
|
|
49975
49975
|
properties: {
|
|
49976
|
+
_dev: {
|
|
49977
|
+
default: false,
|
|
49978
|
+
description: "Whether the portal is in developer mode. Only available for Seam employees.",
|
|
49979
|
+
type: "boolean",
|
|
49980
|
+
"x-undocumented": "Internal developer mode flag."
|
|
49981
|
+
},
|
|
49976
49982
|
customer_resources_filters: {
|
|
49977
49983
|
description: "Filter configuration for resources based on their custom_metadata. Each filter specifies a field, operation, and value to match against resource custom_metadata.",
|
|
49978
49984
|
items: {
|