@seamapi/types 1.518.0 → 1.519.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 +2 -0
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +3 -1
- package/dist/index.cjs +2 -0
- package/dist/index.cjs.map +1 -1
- package/lib/seam/connect/openapi.d.ts +2 -0
- package/lib/seam/connect/openapi.js +2 -0
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +1 -1
- package/package.json +1 -1
- package/src/lib/seam/connect/openapi.ts +2 -0
- package/src/lib/seam/connect/route-types.ts +1 -1
package/dist/connect.d.cts
CHANGED
|
@@ -88440,6 +88440,7 @@ declare const _default: {
|
|
|
88440
88440
|
};
|
|
88441
88441
|
partner_resource_id: {
|
|
88442
88442
|
format: string;
|
|
88443
|
+
nullable: boolean;
|
|
88443
88444
|
type: string;
|
|
88444
88445
|
};
|
|
88445
88446
|
workspace_id: {
|
|
@@ -88603,6 +88604,7 @@ declare const _default: {
|
|
|
88603
88604
|
};
|
|
88604
88605
|
partner_resource_id: {
|
|
88605
88606
|
format: string;
|
|
88607
|
+
nullable: boolean;
|
|
88606
88608
|
type: string;
|
|
88607
88609
|
};
|
|
88608
88610
|
workspace_id: {
|
|
@@ -156362,7 +156364,7 @@ type Routes = {
|
|
|
156362
156364
|
automation_run_id: string;
|
|
156363
156365
|
workspace_id: string;
|
|
156364
156366
|
automation_id: string;
|
|
156365
|
-
partner_resource_id: string;
|
|
156367
|
+
partner_resource_id: string | null;
|
|
156366
156368
|
automation_result?: {
|
|
156367
156369
|
success: boolean;
|
|
156368
156370
|
rule: 'reservation_created' | 'reservation_time_updated' | 'reservation_deleted';
|
package/dist/index.cjs
CHANGED
|
@@ -49390,6 +49390,7 @@ var openapi_default = {
|
|
|
49390
49390
|
created_at: { type: "string" },
|
|
49391
49391
|
partner_resource_id: {
|
|
49392
49392
|
format: "uuid",
|
|
49393
|
+
nullable: true,
|
|
49393
49394
|
type: "string"
|
|
49394
49395
|
},
|
|
49395
49396
|
workspace_id: { format: "uuid", type: "string" }
|
|
@@ -49538,6 +49539,7 @@ var openapi_default = {
|
|
|
49538
49539
|
created_at: { type: "string" },
|
|
49539
49540
|
partner_resource_id: {
|
|
49540
49541
|
format: "uuid",
|
|
49542
|
+
nullable: true,
|
|
49541
49543
|
type: "string"
|
|
49542
49544
|
},
|
|
49543
49545
|
workspace_id: { format: "uuid", type: "string" }
|