@seamapi/types 1.596.0 → 1.598.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 CHANGED
@@ -41198,7 +41198,7 @@ var openapi_default = {
41198
41198
  type: "array"
41199
41199
  },
41200
41200
  expires_at: {
41201
- description: "Date and time at which the client session should expire (or at which the existing client session expires), in [ISO 8601](https://www.iso.org/iso-8601-date-and-time-format.html) format.",
41201
+ description: "Date and time at which the client session should expire in [ISO 8601](https://www.iso.org/iso-8601-date-and-time-format.html) format. If the client session already exists, this will update the expiration before returning it.",
41202
41202
  format: "date-time",
41203
41203
  type: "string"
41204
41204
  },
@@ -42831,6 +42831,7 @@ var openapi_default = {
42831
42831
  },
42832
42832
  connect: { exclude: false },
42833
42833
  manage_devices: { exclude: false },
42834
+ manage_reservations: { exclude: false },
42834
42835
  organize: { exclude: false }
42835
42836
  },
42836
42837
  is_embedded: false
@@ -42888,10 +42889,44 @@ var openapi_default = {
42888
42889
  default: {},
42889
42890
  description: "Configuration for the manage devices feature.",
42890
42891
  properties: {
42892
+ accepted_providers: {
42893
+ description: "List of provider keys to allow for the connect feature. These providers will be shown when the customer tries to connect an account.",
42894
+ items: { type: "string" },
42895
+ type: "array"
42896
+ },
42891
42897
  exclude: {
42892
42898
  default: false,
42893
42899
  description: "Whether to exclude this feature from the portal.",
42894
42900
  type: "boolean"
42901
+ },
42902
+ excluded_providers: {
42903
+ description: "List of provider keys to exclude from the connect feature. These providers will not be shown when the customer tries to connect an account.",
42904
+ items: { type: "string" },
42905
+ type: "array"
42906
+ }
42907
+ },
42908
+ type: "object"
42909
+ },
42910
+ manage_reservations: {
42911
+ default: {},
42912
+ description: "Configuration for the manage reservations feature.",
42913
+ properties: {
42914
+ exclude: {
42915
+ default: false,
42916
+ description: "Whether to exclude this feature from the portal.",
42917
+ type: "boolean"
42918
+ },
42919
+ reservations: {
42920
+ default: { exclude: false },
42921
+ description: "Configuration for the reservations feature.",
42922
+ properties: {
42923
+ exclude: {
42924
+ default: false,
42925
+ description: "Indicates whether the customer can view reservations for their properties.",
42926
+ type: "boolean"
42927
+ }
42928
+ },
42929
+ type: "object"
42895
42930
  }
42896
42931
  },
42897
42932
  type: "object"
@@ -53571,23 +53606,50 @@ var openapi_default = {
53571
53606
  type: "string"
53572
53607
  },
53573
53608
  features: {
53609
+ default: { $ref: "#/components/schemas/access_code" },
53574
53610
  properties: {
53575
53611
  configure: {
53612
+ default: {
53613
+ $ref: "#/components/schemas/access_code"
53614
+ },
53615
+ description: "Configuration for the configure feature.",
53576
53616
  properties: {
53577
53617
  allow_access_automation_rule_customization: {
53618
+ default: false,
53619
+ description: "Indicates whether the customer can customize the access automation rules for their properties.",
53578
53620
  type: "boolean"
53579
53621
  },
53580
53622
  allow_instant_key_customization: {
53623
+ default: false,
53624
+ description: "Indicates whether the customer can customize the Instant Key profile for their properties.",
53581
53625
  type: "boolean"
53582
53626
  },
53583
- exclude: { type: "boolean" }
53627
+ exclude: {
53628
+ default: false,
53629
+ description: "Whether to exclude this feature from the portal.",
53630
+ type: "boolean"
53631
+ }
53584
53632
  },
53585
53633
  type: "object"
53586
53634
  },
53587
53635
  connect: {
53636
+ default: {
53637
+ $ref: "#/components/schemas/access_code"
53638
+ },
53639
+ description: "Configuration for the connect accounts feature.",
53588
53640
  properties: {
53589
- exclude: { type: "boolean" },
53641
+ accepted_providers: {
53642
+ description: "List of provider keys to allow for the connect feature. These providers will be shown when the customer tries to connect an account.",
53643
+ items: { type: "string" },
53644
+ type: "array"
53645
+ },
53646
+ exclude: {
53647
+ default: false,
53648
+ description: "Whether to exclude this feature from the portal.",
53649
+ type: "boolean"
53650
+ },
53590
53651
  excluded_providers: {
53652
+ description: "List of provider keys to exclude from the connect feature. These providers will not be shown when the customer tries to connect an account.",
53591
53653
  items: { type: "string" },
53592
53654
  type: "array"
53593
53655
  }
@@ -53595,18 +53657,79 @@ var openapi_default = {
53595
53657
  type: "object"
53596
53658
  },
53597
53659
  manage_devices: {
53598
- properties: { exclude: { type: "boolean" } },
53660
+ default: {
53661
+ $ref: "#/components/schemas/access_code"
53662
+ },
53663
+ description: "Configuration for the manage devices feature.",
53664
+ properties: {
53665
+ accepted_providers: {
53666
+ description: "List of provider keys to allow for the connect feature. These providers will be shown when the customer tries to connect an account.",
53667
+ items: { type: "string" },
53668
+ type: "array"
53669
+ },
53670
+ exclude: {
53671
+ default: false,
53672
+ description: "Whether to exclude this feature from the portal.",
53673
+ type: "boolean"
53674
+ },
53675
+ excluded_providers: {
53676
+ description: "List of provider keys to exclude from the connect feature. These providers will not be shown when the customer tries to connect an account.",
53677
+ items: { type: "string" },
53678
+ type: "array"
53679
+ }
53680
+ },
53681
+ type: "object"
53682
+ },
53683
+ manage_reservations: {
53684
+ default: {
53685
+ $ref: "#/components/schemas/access_code"
53686
+ },
53687
+ description: "Configuration for the manage reservations feature.",
53688
+ properties: {
53689
+ exclude: {
53690
+ default: false,
53691
+ description: "Whether to exclude this feature from the portal.",
53692
+ type: "boolean"
53693
+ },
53694
+ reservations: {
53695
+ default: { exclude: false },
53696
+ description: "Configuration for the reservations feature.",
53697
+ properties: {
53698
+ exclude: {
53699
+ default: false,
53700
+ description: "Indicates whether the customer can view reservations for their properties.",
53701
+ type: "boolean"
53702
+ }
53703
+ },
53704
+ type: "object"
53705
+ }
53706
+ },
53599
53707
  type: "object"
53600
53708
  },
53601
53709
  organize: {
53602
- properties: { exclude: { type: "boolean" } },
53710
+ default: {
53711
+ $ref: "#/components/schemas/access_code"
53712
+ },
53713
+ description: "Configuration for the organize feature.",
53714
+ properties: {
53715
+ exclude: {
53716
+ default: false,
53717
+ description: "Whether to exclude this feature from the portal.",
53718
+ type: "boolean"
53719
+ }
53720
+ },
53603
53721
  type: "object"
53604
53722
  }
53605
53723
  },
53606
53724
  type: "object"
53607
53725
  },
53608
- is_embedded: { type: "boolean" },
53726
+ is_embedded: {
53727
+ default: false,
53728
+ description: "Whether the portal is embedded in another application.",
53729
+ type: "boolean"
53730
+ },
53609
53731
  landing_page: {
53732
+ description: "Configuration for the landing page when the portal loads.",
53610
53733
  properties: {
53611
53734
  manage: {
53612
53735
  oneOf: [
@@ -53781,23 +53904,50 @@ var openapi_default = {
53781
53904
  type: "string"
53782
53905
  },
53783
53906
  features: {
53907
+ default: { $ref: "#/components/schemas/access_code" },
53784
53908
  properties: {
53785
53909
  configure: {
53910
+ default: {
53911
+ $ref: "#/components/schemas/access_code"
53912
+ },
53913
+ description: "Configuration for the configure feature.",
53786
53914
  properties: {
53787
53915
  allow_access_automation_rule_customization: {
53916
+ default: false,
53917
+ description: "Indicates whether the customer can customize the access automation rules for their properties.",
53788
53918
  type: "boolean"
53789
53919
  },
53790
53920
  allow_instant_key_customization: {
53921
+ default: false,
53922
+ description: "Indicates whether the customer can customize the Instant Key profile for their properties.",
53791
53923
  type: "boolean"
53792
53924
  },
53793
- exclude: { type: "boolean" }
53925
+ exclude: {
53926
+ default: false,
53927
+ description: "Whether to exclude this feature from the portal.",
53928
+ type: "boolean"
53929
+ }
53794
53930
  },
53795
53931
  type: "object"
53796
53932
  },
53797
53933
  connect: {
53934
+ default: {
53935
+ $ref: "#/components/schemas/access_code"
53936
+ },
53937
+ description: "Configuration for the connect accounts feature.",
53798
53938
  properties: {
53799
- exclude: { type: "boolean" },
53939
+ accepted_providers: {
53940
+ description: "List of provider keys to allow for the connect feature. These providers will be shown when the customer tries to connect an account.",
53941
+ items: { type: "string" },
53942
+ type: "array"
53943
+ },
53944
+ exclude: {
53945
+ default: false,
53946
+ description: "Whether to exclude this feature from the portal.",
53947
+ type: "boolean"
53948
+ },
53800
53949
  excluded_providers: {
53950
+ description: "List of provider keys to exclude from the connect feature. These providers will not be shown when the customer tries to connect an account.",
53801
53951
  items: { type: "string" },
53802
53952
  type: "array"
53803
53953
  }
@@ -53805,18 +53955,79 @@ var openapi_default = {
53805
53955
  type: "object"
53806
53956
  },
53807
53957
  manage_devices: {
53808
- properties: { exclude: { type: "boolean" } },
53958
+ default: {
53959
+ $ref: "#/components/schemas/access_code"
53960
+ },
53961
+ description: "Configuration for the manage devices feature.",
53962
+ properties: {
53963
+ accepted_providers: {
53964
+ description: "List of provider keys to allow for the connect feature. These providers will be shown when the customer tries to connect an account.",
53965
+ items: { type: "string" },
53966
+ type: "array"
53967
+ },
53968
+ exclude: {
53969
+ default: false,
53970
+ description: "Whether to exclude this feature from the portal.",
53971
+ type: "boolean"
53972
+ },
53973
+ excluded_providers: {
53974
+ description: "List of provider keys to exclude from the connect feature. These providers will not be shown when the customer tries to connect an account.",
53975
+ items: { type: "string" },
53976
+ type: "array"
53977
+ }
53978
+ },
53979
+ type: "object"
53980
+ },
53981
+ manage_reservations: {
53982
+ default: {
53983
+ $ref: "#/components/schemas/access_code"
53984
+ },
53985
+ description: "Configuration for the manage reservations feature.",
53986
+ properties: {
53987
+ exclude: {
53988
+ default: false,
53989
+ description: "Whether to exclude this feature from the portal.",
53990
+ type: "boolean"
53991
+ },
53992
+ reservations: {
53993
+ default: { exclude: false },
53994
+ description: "Configuration for the reservations feature.",
53995
+ properties: {
53996
+ exclude: {
53997
+ default: false,
53998
+ description: "Indicates whether the customer can view reservations for their properties.",
53999
+ type: "boolean"
54000
+ }
54001
+ },
54002
+ type: "object"
54003
+ }
54004
+ },
53809
54005
  type: "object"
53810
54006
  },
53811
54007
  organize: {
53812
- properties: { exclude: { type: "boolean" } },
54008
+ default: {
54009
+ $ref: "#/components/schemas/access_code"
54010
+ },
54011
+ description: "Configuration for the organize feature.",
54012
+ properties: {
54013
+ exclude: {
54014
+ default: false,
54015
+ description: "Whether to exclude this feature from the portal.",
54016
+ type: "boolean"
54017
+ }
54018
+ },
53813
54019
  type: "object"
53814
54020
  }
53815
54021
  },
53816
54022
  type: "object"
53817
54023
  },
53818
- is_embedded: { type: "boolean" },
54024
+ is_embedded: {
54025
+ default: false,
54026
+ description: "Whether the portal is embedded in another application.",
54027
+ type: "boolean"
54028
+ },
53819
54029
  landing_page: {
54030
+ description: "Configuration for the landing page when the portal loads.",
53820
54031
  properties: {
53821
54032
  manage: {
53822
54033
  oneOf: [