@seamapi/types 1.597.0 → 1.599.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 +174 -11
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +191 -13
- package/dist/index.cjs +174 -11
- package/dist/index.cjs.map +1 -1
- package/lib/seam/connect/models/customer/customer-portal.d.ts +370 -0
- package/lib/seam/connect/models/customer/customer-portal.js +21 -6
- package/lib/seam/connect/models/customer/customer-portal.js.map +1 -1
- package/lib/seam/connect/openapi.d.ts +143 -0
- package/lib/seam/connect/openapi.js +174 -11
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +48 -13
- package/package.json +1 -1
- package/src/lib/seam/connect/models/customer/customer-portal.ts +39 -19
- package/src/lib/seam/connect/openapi.ts +211 -11
- package/src/lib/seam/connect/route-types.ts +54 -31
package/dist/connect.cjs
CHANGED
|
@@ -42830,6 +42830,10 @@ var openapi_default = {
|
|
|
42830
42830
|
exclude: false
|
|
42831
42831
|
},
|
|
42832
42832
|
connect: { exclude: false },
|
|
42833
|
+
manage: {
|
|
42834
|
+
exclude: false,
|
|
42835
|
+
exclude_reservation_management: false
|
|
42836
|
+
},
|
|
42833
42837
|
manage_devices: { exclude: false },
|
|
42834
42838
|
organize: { exclude: false }
|
|
42835
42839
|
},
|
|
@@ -42884,9 +42888,26 @@ var openapi_default = {
|
|
|
42884
42888
|
},
|
|
42885
42889
|
type: "object"
|
|
42886
42890
|
},
|
|
42891
|
+
manage: {
|
|
42892
|
+
default: {},
|
|
42893
|
+
description: "Configuration for the manage feature.",
|
|
42894
|
+
properties: {
|
|
42895
|
+
exclude: {
|
|
42896
|
+
default: false,
|
|
42897
|
+
description: "Whether to exclude this feature from the portal.",
|
|
42898
|
+
type: "boolean"
|
|
42899
|
+
},
|
|
42900
|
+
exclude_reservation_management: {
|
|
42901
|
+
default: false,
|
|
42902
|
+
description: "Indicates whether the customer can manage reservations for their properties.",
|
|
42903
|
+
type: "boolean"
|
|
42904
|
+
}
|
|
42905
|
+
},
|
|
42906
|
+
type: "object"
|
|
42907
|
+
},
|
|
42887
42908
|
manage_devices: {
|
|
42888
42909
|
default: {},
|
|
42889
|
-
description: "Configuration for the manage devices feature
|
|
42910
|
+
description: "Configuration for the manage devices feature.\n---\ndeprecated: Use `manage` instead.\n---",
|
|
42890
42911
|
properties: {
|
|
42891
42912
|
exclude: {
|
|
42892
42913
|
default: false,
|
|
@@ -53571,42 +53592,113 @@ var openapi_default = {
|
|
|
53571
53592
|
type: "string"
|
|
53572
53593
|
},
|
|
53573
53594
|
features: {
|
|
53595
|
+
default: { $ref: "#/components/schemas/access_code" },
|
|
53574
53596
|
properties: {
|
|
53575
53597
|
configure: {
|
|
53598
|
+
default: {
|
|
53599
|
+
$ref: "#/components/schemas/access_code"
|
|
53600
|
+
},
|
|
53601
|
+
description: "Configuration for the configure feature.",
|
|
53576
53602
|
properties: {
|
|
53577
53603
|
allow_access_automation_rule_customization: {
|
|
53604
|
+
default: false,
|
|
53605
|
+
description: "Indicates whether the customer can customize the access automation rules for their properties.",
|
|
53578
53606
|
type: "boolean"
|
|
53579
53607
|
},
|
|
53580
53608
|
allow_instant_key_customization: {
|
|
53609
|
+
default: false,
|
|
53610
|
+
description: "Indicates whether the customer can customize the Instant Key profile for their properties.",
|
|
53581
53611
|
type: "boolean"
|
|
53582
53612
|
},
|
|
53583
|
-
exclude: {
|
|
53613
|
+
exclude: {
|
|
53614
|
+
default: false,
|
|
53615
|
+
description: "Whether to exclude this feature from the portal.",
|
|
53616
|
+
type: "boolean"
|
|
53617
|
+
}
|
|
53584
53618
|
},
|
|
53585
53619
|
type: "object"
|
|
53586
53620
|
},
|
|
53587
53621
|
connect: {
|
|
53622
|
+
default: {
|
|
53623
|
+
$ref: "#/components/schemas/access_code"
|
|
53624
|
+
},
|
|
53625
|
+
description: "Configuration for the connect accounts feature.",
|
|
53588
53626
|
properties: {
|
|
53589
|
-
|
|
53627
|
+
accepted_providers: {
|
|
53628
|
+
description: "List of provider keys to allow for the connect feature. These providers will be shown when the customer tries to connect an account.",
|
|
53629
|
+
items: { type: "string" },
|
|
53630
|
+
type: "array"
|
|
53631
|
+
},
|
|
53632
|
+
exclude: {
|
|
53633
|
+
default: false,
|
|
53634
|
+
description: "Whether to exclude this feature from the portal.",
|
|
53635
|
+
type: "boolean"
|
|
53636
|
+
},
|
|
53590
53637
|
excluded_providers: {
|
|
53638
|
+
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
53639
|
items: { type: "string" },
|
|
53592
53640
|
type: "array"
|
|
53593
53641
|
}
|
|
53594
53642
|
},
|
|
53595
53643
|
type: "object"
|
|
53596
53644
|
},
|
|
53645
|
+
manage: {
|
|
53646
|
+
default: {
|
|
53647
|
+
$ref: "#/components/schemas/access_code"
|
|
53648
|
+
},
|
|
53649
|
+
description: "Configuration for the manage feature.",
|
|
53650
|
+
properties: {
|
|
53651
|
+
exclude: {
|
|
53652
|
+
default: false,
|
|
53653
|
+
description: "Whether to exclude this feature from the portal.",
|
|
53654
|
+
type: "boolean"
|
|
53655
|
+
},
|
|
53656
|
+
exclude_reservation_management: {
|
|
53657
|
+
default: false,
|
|
53658
|
+
description: "Indicates whether the customer can manage reservations for their properties.",
|
|
53659
|
+
type: "boolean"
|
|
53660
|
+
}
|
|
53661
|
+
},
|
|
53662
|
+
type: "object"
|
|
53663
|
+
},
|
|
53597
53664
|
manage_devices: {
|
|
53598
|
-
|
|
53665
|
+
default: {
|
|
53666
|
+
$ref: "#/components/schemas/access_code"
|
|
53667
|
+
},
|
|
53668
|
+
description: "Configuration for the manage devices feature.\n---\ndeprecated: Use `manage` instead.\n---",
|
|
53669
|
+
properties: {
|
|
53670
|
+
exclude: {
|
|
53671
|
+
default: false,
|
|
53672
|
+
description: "Whether to exclude this feature from the portal.",
|
|
53673
|
+
type: "boolean"
|
|
53674
|
+
}
|
|
53675
|
+
},
|
|
53599
53676
|
type: "object"
|
|
53600
53677
|
},
|
|
53601
53678
|
organize: {
|
|
53602
|
-
|
|
53679
|
+
default: {
|
|
53680
|
+
$ref: "#/components/schemas/access_code"
|
|
53681
|
+
},
|
|
53682
|
+
description: "Configuration for the organize feature.",
|
|
53683
|
+
properties: {
|
|
53684
|
+
exclude: {
|
|
53685
|
+
default: false,
|
|
53686
|
+
description: "Whether to exclude this feature from the portal.",
|
|
53687
|
+
type: "boolean"
|
|
53688
|
+
}
|
|
53689
|
+
},
|
|
53603
53690
|
type: "object"
|
|
53604
53691
|
}
|
|
53605
53692
|
},
|
|
53606
53693
|
type: "object"
|
|
53607
53694
|
},
|
|
53608
|
-
is_embedded: {
|
|
53695
|
+
is_embedded: {
|
|
53696
|
+
default: false,
|
|
53697
|
+
description: "Whether the portal is embedded in another application.",
|
|
53698
|
+
type: "boolean"
|
|
53699
|
+
},
|
|
53609
53700
|
landing_page: {
|
|
53701
|
+
description: "Configuration for the landing page when the portal loads.",
|
|
53610
53702
|
properties: {
|
|
53611
53703
|
manage: {
|
|
53612
53704
|
oneOf: [
|
|
@@ -53781,42 +53873,113 @@ var openapi_default = {
|
|
|
53781
53873
|
type: "string"
|
|
53782
53874
|
},
|
|
53783
53875
|
features: {
|
|
53876
|
+
default: { $ref: "#/components/schemas/access_code" },
|
|
53784
53877
|
properties: {
|
|
53785
53878
|
configure: {
|
|
53879
|
+
default: {
|
|
53880
|
+
$ref: "#/components/schemas/access_code"
|
|
53881
|
+
},
|
|
53882
|
+
description: "Configuration for the configure feature.",
|
|
53786
53883
|
properties: {
|
|
53787
53884
|
allow_access_automation_rule_customization: {
|
|
53885
|
+
default: false,
|
|
53886
|
+
description: "Indicates whether the customer can customize the access automation rules for their properties.",
|
|
53788
53887
|
type: "boolean"
|
|
53789
53888
|
},
|
|
53790
53889
|
allow_instant_key_customization: {
|
|
53890
|
+
default: false,
|
|
53891
|
+
description: "Indicates whether the customer can customize the Instant Key profile for their properties.",
|
|
53791
53892
|
type: "boolean"
|
|
53792
53893
|
},
|
|
53793
|
-
exclude: {
|
|
53894
|
+
exclude: {
|
|
53895
|
+
default: false,
|
|
53896
|
+
description: "Whether to exclude this feature from the portal.",
|
|
53897
|
+
type: "boolean"
|
|
53898
|
+
}
|
|
53794
53899
|
},
|
|
53795
53900
|
type: "object"
|
|
53796
53901
|
},
|
|
53797
53902
|
connect: {
|
|
53903
|
+
default: {
|
|
53904
|
+
$ref: "#/components/schemas/access_code"
|
|
53905
|
+
},
|
|
53906
|
+
description: "Configuration for the connect accounts feature.",
|
|
53798
53907
|
properties: {
|
|
53799
|
-
|
|
53908
|
+
accepted_providers: {
|
|
53909
|
+
description: "List of provider keys to allow for the connect feature. These providers will be shown when the customer tries to connect an account.",
|
|
53910
|
+
items: { type: "string" },
|
|
53911
|
+
type: "array"
|
|
53912
|
+
},
|
|
53913
|
+
exclude: {
|
|
53914
|
+
default: false,
|
|
53915
|
+
description: "Whether to exclude this feature from the portal.",
|
|
53916
|
+
type: "boolean"
|
|
53917
|
+
},
|
|
53800
53918
|
excluded_providers: {
|
|
53919
|
+
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
53920
|
items: { type: "string" },
|
|
53802
53921
|
type: "array"
|
|
53803
53922
|
}
|
|
53804
53923
|
},
|
|
53805
53924
|
type: "object"
|
|
53806
53925
|
},
|
|
53926
|
+
manage: {
|
|
53927
|
+
default: {
|
|
53928
|
+
$ref: "#/components/schemas/access_code"
|
|
53929
|
+
},
|
|
53930
|
+
description: "Configuration for the manage feature.",
|
|
53931
|
+
properties: {
|
|
53932
|
+
exclude: {
|
|
53933
|
+
default: false,
|
|
53934
|
+
description: "Whether to exclude this feature from the portal.",
|
|
53935
|
+
type: "boolean"
|
|
53936
|
+
},
|
|
53937
|
+
exclude_reservation_management: {
|
|
53938
|
+
default: false,
|
|
53939
|
+
description: "Indicates whether the customer can manage reservations for their properties.",
|
|
53940
|
+
type: "boolean"
|
|
53941
|
+
}
|
|
53942
|
+
},
|
|
53943
|
+
type: "object"
|
|
53944
|
+
},
|
|
53807
53945
|
manage_devices: {
|
|
53808
|
-
|
|
53946
|
+
default: {
|
|
53947
|
+
$ref: "#/components/schemas/access_code"
|
|
53948
|
+
},
|
|
53949
|
+
description: "Configuration for the manage devices feature.\n---\ndeprecated: Use `manage` instead.\n---",
|
|
53950
|
+
properties: {
|
|
53951
|
+
exclude: {
|
|
53952
|
+
default: false,
|
|
53953
|
+
description: "Whether to exclude this feature from the portal.",
|
|
53954
|
+
type: "boolean"
|
|
53955
|
+
}
|
|
53956
|
+
},
|
|
53809
53957
|
type: "object"
|
|
53810
53958
|
},
|
|
53811
53959
|
organize: {
|
|
53812
|
-
|
|
53960
|
+
default: {
|
|
53961
|
+
$ref: "#/components/schemas/access_code"
|
|
53962
|
+
},
|
|
53963
|
+
description: "Configuration for the organize feature.",
|
|
53964
|
+
properties: {
|
|
53965
|
+
exclude: {
|
|
53966
|
+
default: false,
|
|
53967
|
+
description: "Whether to exclude this feature from the portal.",
|
|
53968
|
+
type: "boolean"
|
|
53969
|
+
}
|
|
53970
|
+
},
|
|
53813
53971
|
type: "object"
|
|
53814
53972
|
}
|
|
53815
53973
|
},
|
|
53816
53974
|
type: "object"
|
|
53817
53975
|
},
|
|
53818
|
-
is_embedded: {
|
|
53976
|
+
is_embedded: {
|
|
53977
|
+
default: false,
|
|
53978
|
+
description: "Whether the portal is embedded in another application.",
|
|
53979
|
+
type: "boolean"
|
|
53980
|
+
},
|
|
53819
53981
|
landing_page: {
|
|
53982
|
+
description: "Configuration for the landing page when the portal loads.",
|
|
53820
53983
|
properties: {
|
|
53821
53984
|
manage: {
|
|
53822
53985
|
oneOf: [
|