@seamapi/types 1.897.0 → 1.899.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.
@@ -29706,15 +29706,28 @@ declare const space: z.ZodObject<{
29706
29706
  time_zone: z.ZodOptional<z.ZodNullable<z.ZodString>>;
29707
29707
  default_checkin_time: z.ZodOptional<z.ZodNullable<z.ZodString>>;
29708
29708
  default_checkout_time: z.ZodOptional<z.ZodNullable<z.ZodString>>;
29709
+ address: z.ZodOptional<z.ZodNullable<z.ZodString>>;
29709
29710
  }, "strip", z.ZodTypeAny, {
29710
29711
  default_checkin_time?: string | null | undefined;
29711
29712
  default_checkout_time?: string | null | undefined;
29712
29713
  time_zone?: string | null | undefined;
29714
+ address?: string | null | undefined;
29713
29715
  }, {
29714
29716
  default_checkin_time?: string | null | undefined;
29715
29717
  default_checkout_time?: string | null | undefined;
29716
29718
  time_zone?: string | null | undefined;
29719
+ address?: string | null | undefined;
29717
29720
  }>>;
29721
+ geolocation: z.ZodOptional<z.ZodNullable<z.ZodObject<{
29722
+ latitude: z.ZodNumber;
29723
+ longitude: z.ZodNumber;
29724
+ }, "strip", z.ZodTypeAny, {
29725
+ latitude: number;
29726
+ longitude: number;
29727
+ }, {
29728
+ latitude: number;
29729
+ longitude: number;
29730
+ }>>>;
29718
29731
  parent_space_id: z.ZodOptional<z.ZodString>;
29719
29732
  parent_space_key: z.ZodOptional<z.ZodString>;
29720
29733
  }, "strip", z.ZodTypeAny, {
@@ -29731,7 +29744,12 @@ declare const space: z.ZodObject<{
29731
29744
  default_checkin_time?: string | null | undefined;
29732
29745
  default_checkout_time?: string | null | undefined;
29733
29746
  time_zone?: string | null | undefined;
29747
+ address?: string | null | undefined;
29734
29748
  } | undefined;
29749
+ geolocation?: {
29750
+ latitude: number;
29751
+ longitude: number;
29752
+ } | null | undefined;
29735
29753
  parent_space_id?: string | undefined;
29736
29754
  parent_space_key?: string | undefined;
29737
29755
  }, {
@@ -29748,7 +29766,12 @@ declare const space: z.ZodObject<{
29748
29766
  default_checkin_time?: string | null | undefined;
29749
29767
  default_checkout_time?: string | null | undefined;
29750
29768
  time_zone?: string | null | undefined;
29769
+ address?: string | null | undefined;
29751
29770
  } | undefined;
29771
+ geolocation?: {
29772
+ latitude: number;
29773
+ longitude: number;
29774
+ } | null | undefined;
29752
29775
  parent_space_id?: string | undefined;
29753
29776
  parent_space_key?: string | undefined;
29754
29777
  }>;
@@ -43416,7 +43439,16 @@ type Routes = {
43416
43439
  default_checkin_time?: (string | null) | undefined;
43417
43440
  /** Default check-out time for reservations at the space, as HH:mm or HH:mm:ss. */
43418
43441
  default_checkout_time?: (string | null) | undefined;
43442
+ /** Postal address for the space. */
43443
+ address?: (string | null) | undefined;
43419
43444
  } | undefined;
43445
+ /** Geographic coordinates (latitude and longitude) of the space. */
43446
+ geolocation?: ({
43447
+ /** Latitude of the space, in decimal degrees. */
43448
+ latitude: number;
43449
+ /** Longitude of the space, in decimal degrees. */
43450
+ longitude: number;
43451
+ } | null) | undefined;
43420
43452
  /** */
43421
43453
  parent_space_id?: string | undefined;
43422
43454
  /** */
@@ -50006,7 +50038,16 @@ type Routes = {
50006
50038
  default_checkin_time?: (string | null) | undefined;
50007
50039
  /** Default check-out time for reservations at the space, as HH:mm or HH:mm:ss. */
50008
50040
  default_checkout_time?: (string | null) | undefined;
50041
+ /** Postal address for the space. */
50042
+ address?: (string | null) | undefined;
50009
50043
  } | undefined;
50044
+ /** Geographic coordinates (latitude and longitude) of the space. */
50045
+ geolocation?: ({
50046
+ /** Latitude of the space, in decimal degrees. */
50047
+ latitude: number;
50048
+ /** Longitude of the space, in decimal degrees. */
50049
+ longitude: number;
50050
+ } | null) | undefined;
50010
50051
  /** */
50011
50052
  parent_space_id?: string | undefined;
50012
50053
  /** */
@@ -71519,6 +71560,24 @@ type Routes = {
71519
71560
  parent_site_key?: string | undefined;
71520
71561
  /** Default duration of this space in minutes, when the space represents a fixed-length bookable slot (e.g. an appointment type). Used to interpret reservations booked against this space. */
71521
71562
  duration_minutes?: number | undefined;
71563
+ /** Reservation/stay-related defaults for the space (time zone, default check-in/out times, address). */
71564
+ customer_data?: {
71565
+ /** IANA time zone for the space, e.g. America/Los_Angeles. */
71566
+ time_zone?: (string | null) | undefined;
71567
+ /** Default check-in time for reservations at the space, as HH:mm or HH:mm:ss. */
71568
+ default_checkin_time?: (string | null) | undefined;
71569
+ /** Default check-out time for reservations at the space, as HH:mm or HH:mm:ss. */
71570
+ default_checkout_time?: (string | null) | undefined;
71571
+ /** Postal address for the space. */
71572
+ address?: (string | null) | undefined;
71573
+ } | undefined;
71574
+ /** Geographic coordinates (latitude and longitude) of the space. */
71575
+ geolocation?: {
71576
+ /** Latitude of the space, in decimal degrees. */
71577
+ latitude: number;
71578
+ /** Longitude of the space, in decimal degrees. */
71579
+ longitude: number;
71580
+ } | undefined;
71522
71581
  }[] | undefined;
71523
71582
  /** List of general sites or areas. */
71524
71583
  sites?: {
@@ -71908,6 +71967,24 @@ type Routes = {
71908
71967
  parent_site_key?: string | undefined;
71909
71968
  /** Default duration of this space in minutes, when the space represents a fixed-length bookable slot (e.g. an appointment type). Used to interpret reservations booked against this space. */
71910
71969
  duration_minutes?: number | undefined;
71970
+ /** Reservation/stay-related defaults for the space (time zone, default check-in/out times, address). */
71971
+ customer_data?: {
71972
+ /** IANA time zone for the space, e.g. America/Los_Angeles. */
71973
+ time_zone?: (string | null) | undefined;
71974
+ /** Default check-in time for reservations at the space, as HH:mm or HH:mm:ss. */
71975
+ default_checkin_time?: (string | null) | undefined;
71976
+ /** Default check-out time for reservations at the space, as HH:mm or HH:mm:ss. */
71977
+ default_checkout_time?: (string | null) | undefined;
71978
+ /** Postal address for the space. */
71979
+ address?: (string | null) | undefined;
71980
+ } | undefined;
71981
+ /** Geographic coordinates (latitude and longitude) of the space. */
71982
+ geolocation?: {
71983
+ /** Latitude of the space, in decimal degrees. */
71984
+ latitude: number;
71985
+ /** Longitude of the space, in decimal degrees. */
71986
+ longitude: number;
71987
+ } | undefined;
71911
71988
  }[] | undefined;
71912
71989
  /** List of general sites or areas. */
71913
71990
  sites?: {
@@ -104604,7 +104681,16 @@ type Routes = {
104604
104681
  default_checkin_time?: (string | null) | undefined;
104605
104682
  /** Default check-out time for reservations at the space, as HH:mm or HH:mm:ss. */
104606
104683
  default_checkout_time?: (string | null) | undefined;
104607
- } | undefined;
104684
+ /** Postal address for the space. */
104685
+ address?: (string | null) | undefined;
104686
+ } | undefined;
104687
+ /** Geographic coordinates (latitude and longitude) of the space. */
104688
+ geolocation?: ({
104689
+ /** Latitude of the space, in decimal degrees. */
104690
+ latitude: number;
104691
+ /** Longitude of the space, in decimal degrees. */
104692
+ longitude: number;
104693
+ } | null) | undefined;
104608
104694
  /** */
104609
104695
  parent_space_id?: string | undefined;
104610
104696
  /** */
@@ -104664,7 +104750,16 @@ type Routes = {
104664
104750
  default_checkin_time?: (string | null) | undefined;
104665
104751
  /** Default check-out time for reservations at the space, as HH:mm or HH:mm:ss. */
104666
104752
  default_checkout_time?: (string | null) | undefined;
104667
- } | undefined;
104753
+ /** Postal address for the space. */
104754
+ address?: (string | null) | undefined;
104755
+ } | undefined;
104756
+ /** Geographic coordinates (latitude and longitude) of the space. */
104757
+ geolocation?: ({
104758
+ /** Latitude of the space, in decimal degrees. */
104759
+ latitude: number;
104760
+ /** Longitude of the space, in decimal degrees. */
104761
+ longitude: number;
104762
+ } | null) | undefined;
104668
104763
  /** */
104669
104764
  parent_space_id?: string | undefined;
104670
104765
  /** */
@@ -104716,7 +104811,16 @@ type Routes = {
104716
104811
  default_checkin_time?: (string | null) | undefined;
104717
104812
  /** Default check-out time for reservations at the space, as HH:mm or HH:mm:ss. */
104718
104813
  default_checkout_time?: (string | null) | undefined;
104719
- } | undefined;
104814
+ /** Postal address for the space. */
104815
+ address?: (string | null) | undefined;
104816
+ } | undefined;
104817
+ /** Geographic coordinates (latitude and longitude) of the space. */
104818
+ geolocation?: ({
104819
+ /** Latitude of the space, in decimal degrees. */
104820
+ latitude: number;
104821
+ /** Longitude of the space, in decimal degrees. */
104822
+ longitude: number;
104823
+ } | null) | undefined;
104720
104824
  /** */
104721
104825
  parent_space_id?: string | undefined;
104722
104826
  /** */
@@ -111108,6 +111212,8 @@ type Routes = {
111108
111212
  default_checkin_time?: (string | null) | undefined;
111109
111213
  /** Default check-out time for reservations at the space, as HH:mm or HH:mm:ss. */
111110
111214
  default_checkout_time?: (string | null) | undefined;
111215
+ /** Postal address for the space. */
111216
+ address?: (string | null) | undefined;
111111
111217
  } | undefined;
111112
111218
  /** Space key of the parent space for this space. */
111113
111219
  parent_space_key?: string | undefined;
@@ -111145,7 +111251,16 @@ type Routes = {
111145
111251
  default_checkin_time?: (string | null) | undefined;
111146
111252
  /** Default check-out time for reservations at the space, as HH:mm or HH:mm:ss. */
111147
111253
  default_checkout_time?: (string | null) | undefined;
111148
- } | undefined;
111254
+ /** Postal address for the space. */
111255
+ address?: (string | null) | undefined;
111256
+ } | undefined;
111257
+ /** Geographic coordinates (latitude and longitude) of the space. */
111258
+ geolocation?: ({
111259
+ /** Latitude of the space, in decimal degrees. */
111260
+ latitude: number;
111261
+ /** Longitude of the space, in decimal degrees. */
111262
+ longitude: number;
111263
+ } | null) | undefined;
111149
111264
  /** */
111150
111265
  parent_space_id?: string | undefined;
111151
111266
  /** */
@@ -111200,7 +111315,16 @@ type Routes = {
111200
111315
  default_checkin_time?: (string | null) | undefined;
111201
111316
  /** Default check-out time for reservations at the space, as HH:mm or HH:mm:ss. */
111202
111317
  default_checkout_time?: (string | null) | undefined;
111203
- } | undefined;
111318
+ /** Postal address for the space. */
111319
+ address?: (string | null) | undefined;
111320
+ } | undefined;
111321
+ /** Geographic coordinates (latitude and longitude) of the space. */
111322
+ geolocation?: ({
111323
+ /** Latitude of the space, in decimal degrees. */
111324
+ latitude: number;
111325
+ /** Longitude of the space, in decimal degrees. */
111326
+ longitude: number;
111327
+ } | null) | undefined;
111204
111328
  /** */
111205
111329
  parent_space_id?: string | undefined;
111206
111330
  /** */
@@ -112299,6 +112423,8 @@ type Routes = {
112299
112423
  default_checkin_time?: (string | null) | undefined;
112300
112424
  /** Default check-out time for reservations at the space, as HH:mm or HH:mm:ss. */
112301
112425
  default_checkout_time?: (string | null) | undefined;
112426
+ /** Postal address for the space. */
112427
+ address?: (string | null) | undefined;
112302
112428
  } | undefined;
112303
112429
  };
112304
112430
  commonParams: {};
@@ -112332,7 +112458,16 @@ type Routes = {
112332
112458
  default_checkin_time?: (string | null) | undefined;
112333
112459
  /** Default check-out time for reservations at the space, as HH:mm or HH:mm:ss. */
112334
112460
  default_checkout_time?: (string | null) | undefined;
112335
- } | undefined;
112461
+ /** Postal address for the space. */
112462
+ address?: (string | null) | undefined;
112463
+ } | undefined;
112464
+ /** Geographic coordinates (latitude and longitude) of the space. */
112465
+ geolocation?: ({
112466
+ /** Latitude of the space, in decimal degrees. */
112467
+ latitude: number;
112468
+ /** Longitude of the space, in decimal degrees. */
112469
+ longitude: number;
112470
+ } | null) | undefined;
112336
112471
  /** */
112337
112472
  parent_space_id?: string | undefined;
112338
112473
  /** */
@@ -112396,7 +112531,16 @@ type Routes = {
112396
112531
  default_checkin_time?: (string | null) | undefined;
112397
112532
  /** Default check-out time for reservations at the space, as HH:mm or HH:mm:ss. */
112398
112533
  default_checkout_time?: (string | null) | undefined;
112399
- } | undefined;
112534
+ /** Postal address for the space. */
112535
+ address?: (string | null) | undefined;
112536
+ } | undefined;
112537
+ /** Geographic coordinates (latitude and longitude) of the space. */
112538
+ geolocation?: ({
112539
+ /** Latitude of the space, in decimal degrees. */
112540
+ latitude: number;
112541
+ /** Longitude of the space, in decimal degrees. */
112542
+ longitude: number;
112543
+ } | null) | undefined;
112400
112544
  /** */
112401
112545
  parent_space_id?: string | undefined;
112402
112546
  /** */
@@ -112449,7 +112593,16 @@ type Routes = {
112449
112593
  default_checkin_time?: (string | null) | undefined;
112450
112594
  /** Default check-out time for reservations at the space, as HH:mm or HH:mm:ss. */
112451
112595
  default_checkout_time?: (string | null) | undefined;
112596
+ /** Postal address for the space. */
112597
+ address?: (string | null) | undefined;
112452
112598
  } | undefined;
112599
+ /** Geographic coordinates (latitude and longitude) of the space. */
112600
+ geolocation?: ({
112601
+ /** Latitude of the space, in decimal degrees. */
112602
+ latitude: number;
112603
+ /** Longitude of the space, in decimal degrees. */
112604
+ longitude: number;
112605
+ } | null) | undefined;
112453
112606
  /** */
112454
112607
  parent_space_id?: string | undefined;
112455
112608
  /** */
@@ -114488,7 +114641,16 @@ type Routes = {
114488
114641
  default_checkin_time?: (string | null) | undefined;
114489
114642
  /** Default check-out time for reservations at the space, as HH:mm or HH:mm:ss. */
114490
114643
  default_checkout_time?: (string | null) | undefined;
114491
- } | undefined;
114644
+ /** Postal address for the space. */
114645
+ address?: (string | null) | undefined;
114646
+ } | undefined;
114647
+ /** Geographic coordinates (latitude and longitude) of the space. */
114648
+ geolocation?: ({
114649
+ /** Latitude of the space, in decimal degrees. */
114650
+ latitude: number;
114651
+ /** Longitude of the space, in decimal degrees. */
114652
+ longitude: number;
114653
+ } | null) | undefined;
114492
114654
  /** */
114493
114655
  parent_space_id?: string | undefined;
114494
114656
  /** */
@@ -114574,7 +114736,13 @@ type Routes = {
114574
114736
  default_checkin_time?: (string | null) | undefined;
114575
114737
  /** Default check-out time for reservations at the space, as HH:mm or HH:mm:ss. */
114576
114738
  default_checkout_time?: (string | null) | undefined;
114739
+ /** Postal address for the space. */
114740
+ address?: (string | null) | undefined;
114577
114741
  } | undefined;
114742
+ /** Reassign this space to the parent space (site) with this `parent_space_id`. */
114743
+ parent_space_id?: string | undefined;
114744
+ /** Reassign this space to the parent space (site) with this `parent_space_key`. */
114745
+ parent_space_key?: string | undefined;
114578
114746
  };
114579
114747
  commonParams: {};
114580
114748
  formData: {};
@@ -114607,7 +114775,16 @@ type Routes = {
114607
114775
  default_checkin_time?: (string | null) | undefined;
114608
114776
  /** Default check-out time for reservations at the space, as HH:mm or HH:mm:ss. */
114609
114777
  default_checkout_time?: (string | null) | undefined;
114610
- } | undefined;
114778
+ /** Postal address for the space. */
114779
+ address?: (string | null) | undefined;
114780
+ } | undefined;
114781
+ /** Geographic coordinates (latitude and longitude) of the space. */
114782
+ geolocation?: ({
114783
+ /** Latitude of the space, in decimal degrees. */
114784
+ latitude: number;
114785
+ /** Longitude of the space, in decimal degrees. */
114786
+ longitude: number;
114787
+ } | null) | undefined;
114611
114788
  /** */
114612
114789
  parent_space_id?: string | undefined;
114613
114790
  /** */
@@ -134423,6 +134600,24 @@ type Routes = {
134423
134600
  parent_site_key?: string | undefined;
134424
134601
  /** Default duration of this space in minutes, when the space represents a fixed-length bookable slot (e.g. an appointment type). Used to interpret reservations booked against this space. */
134425
134602
  duration_minutes?: number | undefined;
134603
+ /** Reservation/stay-related defaults for the space (time zone, default check-in/out times, address). */
134604
+ customer_data?: {
134605
+ /** IANA time zone for the space, e.g. America/Los_Angeles. */
134606
+ time_zone?: (string | null) | undefined;
134607
+ /** Default check-in time for reservations at the space, as HH:mm or HH:mm:ss. */
134608
+ default_checkin_time?: (string | null) | undefined;
134609
+ /** Default check-out time for reservations at the space, as HH:mm or HH:mm:ss. */
134610
+ default_checkout_time?: (string | null) | undefined;
134611
+ /** Postal address for the space. */
134612
+ address?: (string | null) | undefined;
134613
+ } | undefined;
134614
+ /** Geographic coordinates (latitude and longitude) of the space. */
134615
+ geolocation?: {
134616
+ /** Latitude of the space, in decimal degrees. */
134617
+ latitude: number;
134618
+ /** Longitude of the space, in decimal degrees. */
134619
+ longitude: number;
134620
+ } | undefined;
134426
134621
  }[] | undefined;
134427
134622
  };
134428
134623
  formData: {};
@@ -134496,6 +134691,24 @@ type Routes = {
134496
134691
  parent_site_key?: string | undefined;
134497
134692
  /** Default duration of this space in minutes, when the space represents a fixed-length bookable slot (e.g. an appointment type). Used to interpret reservations booked against this space. */
134498
134693
  duration_minutes?: number | undefined;
134694
+ /** Reservation/stay-related defaults for the space (time zone, default check-in/out times, address). */
134695
+ customer_data?: {
134696
+ /** IANA time zone for the space, e.g. America/Los_Angeles. */
134697
+ time_zone?: (string | null) | undefined;
134698
+ /** Default check-in time for reservations at the space, as HH:mm or HH:mm:ss. */
134699
+ default_checkin_time?: (string | null) | undefined;
134700
+ /** Default check-out time for reservations at the space, as HH:mm or HH:mm:ss. */
134701
+ default_checkout_time?: (string | null) | undefined;
134702
+ /** Postal address for the space. */
134703
+ address?: (string | null) | undefined;
134704
+ } | undefined;
134705
+ /** Geographic coordinates (latitude and longitude) of the space. */
134706
+ geolocation?: {
134707
+ /** Latitude of the space, in decimal degrees. */
134708
+ latitude: number;
134709
+ /** Longitude of the space, in decimal degrees. */
134710
+ longitude: number;
134711
+ } | undefined;
134499
134712
  }[] | undefined;
134500
134713
  };
134501
134714
  formData: {};
@@ -143643,7 +143856,16 @@ type Routes = {
143643
143856
  default_checkin_time?: (string | null) | undefined;
143644
143857
  /** Default check-out time for reservations at the space, as HH:mm or HH:mm:ss. */
143645
143858
  default_checkout_time?: (string | null) | undefined;
143859
+ /** Postal address for the space. */
143860
+ address?: (string | null) | undefined;
143646
143861
  } | undefined;
143862
+ /** Geographic coordinates (latitude and longitude) of the space. */
143863
+ geolocation?: ({
143864
+ /** Latitude of the space, in decimal degrees. */
143865
+ latitude: number;
143866
+ /** Longitude of the space, in decimal degrees. */
143867
+ longitude: number;
143868
+ } | null) | undefined;
143647
143869
  /** */
143648
143870
  parent_space_id?: string | undefined;
143649
143871
  /** */