@seamapi/types 1.683.0 → 1.685.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 +194 -36
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +388 -81
- package/dist/index.cjs +194 -36
- package/dist/index.cjs.map +1 -1
- package/lib/seam/connect/models/acs/acs-access-group.d.ts +78 -12
- package/lib/seam/connect/models/acs/acs-access-group.js +9 -1
- package/lib/seam/connect/models/acs/acs-access-group.js.map +1 -1
- package/lib/seam/connect/models/batch.d.ts +78 -20
- package/lib/seam/connect/openapi.d.ts +179 -34
- package/lib/seam/connect/openapi.js +187 -33
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +77 -15
- package/package.json +1 -1
- package/src/lib/seam/connect/models/acs/acs-access-group.ts +12 -3
- package/src/lib/seam/connect/openapi.ts +202 -35
- package/src/lib/seam/connect/route-types.ts +140 -57
|
@@ -13729,14 +13729,24 @@ export type Routes = {
|
|
|
13729
13729
|
/** Date and time at which the access group was created. */
|
|
13730
13730
|
created_at: string
|
|
13731
13731
|
/** Warnings associated with the `acs_access_group`. */
|
|
13732
|
-
warnings:
|
|
13733
|
-
|
|
13734
|
-
|
|
13735
|
-
|
|
13736
|
-
|
|
13737
|
-
|
|
13738
|
-
|
|
13739
|
-
|
|
13732
|
+
warnings: (
|
|
13733
|
+
| {
|
|
13734
|
+
/** Date and time at which Seam created the warning. */
|
|
13735
|
+
created_at: string
|
|
13736
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
13737
|
+
message: string
|
|
13738
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
13739
|
+
warning_code: 'unknown_issue_with_acs_access_group'
|
|
13740
|
+
}
|
|
13741
|
+
| {
|
|
13742
|
+
/** Date and time at which Seam created the warning. */
|
|
13743
|
+
created_at: string
|
|
13744
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
13745
|
+
message: string
|
|
13746
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
13747
|
+
warning_code: 'being_deleted'
|
|
13748
|
+
}
|
|
13749
|
+
)[]
|
|
13740
13750
|
is_managed: true
|
|
13741
13751
|
}[]
|
|
13742
13752
|
| undefined
|
|
@@ -17878,6 +17888,19 @@ export type Routes = {
|
|
|
17878
17888
|
jsonResponse: {}
|
|
17879
17889
|
maxDuration: undefined
|
|
17880
17890
|
}
|
|
17891
|
+
'/acs/access_groups/delete': {
|
|
17892
|
+
route: '/acs/access_groups/delete'
|
|
17893
|
+
method: 'DELETE' | 'POST'
|
|
17894
|
+
queryParams: {}
|
|
17895
|
+
jsonBody: {}
|
|
17896
|
+
commonParams: {
|
|
17897
|
+
/** ID of the access group that you want to delete. */
|
|
17898
|
+
acs_access_group_id: string
|
|
17899
|
+
}
|
|
17900
|
+
formData: {}
|
|
17901
|
+
jsonResponse: {}
|
|
17902
|
+
maxDuration: undefined
|
|
17903
|
+
}
|
|
17881
17904
|
'/acs/access_groups/get': {
|
|
17882
17905
|
route: '/acs/access_groups/get'
|
|
17883
17906
|
method: 'GET' | 'POST'
|
|
@@ -17933,14 +17956,24 @@ export type Routes = {
|
|
|
17933
17956
|
/** Date and time at which the access group was created. */
|
|
17934
17957
|
created_at: string
|
|
17935
17958
|
/** Warnings associated with the `acs_access_group`. */
|
|
17936
|
-
warnings:
|
|
17937
|
-
|
|
17938
|
-
|
|
17939
|
-
|
|
17940
|
-
|
|
17941
|
-
|
|
17942
|
-
|
|
17943
|
-
|
|
17959
|
+
warnings: (
|
|
17960
|
+
| {
|
|
17961
|
+
/** Date and time at which Seam created the warning. */
|
|
17962
|
+
created_at: string
|
|
17963
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
17964
|
+
message: string
|
|
17965
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
17966
|
+
warning_code: 'unknown_issue_with_acs_access_group'
|
|
17967
|
+
}
|
|
17968
|
+
| {
|
|
17969
|
+
/** Date and time at which Seam created the warning. */
|
|
17970
|
+
created_at: string
|
|
17971
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
17972
|
+
message: string
|
|
17973
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
17974
|
+
warning_code: 'being_deleted'
|
|
17975
|
+
}
|
|
17976
|
+
)[]
|
|
17944
17977
|
is_managed: true
|
|
17945
17978
|
}
|
|
17946
17979
|
}
|
|
@@ -18000,14 +18033,24 @@ export type Routes = {
|
|
|
18000
18033
|
/** Date and time at which the access group was created. */
|
|
18001
18034
|
created_at: string
|
|
18002
18035
|
/** Warnings associated with the `acs_access_group`. */
|
|
18003
|
-
warnings:
|
|
18004
|
-
|
|
18005
|
-
|
|
18006
|
-
|
|
18007
|
-
|
|
18008
|
-
|
|
18009
|
-
|
|
18010
|
-
|
|
18036
|
+
warnings: (
|
|
18037
|
+
| {
|
|
18038
|
+
/** Date and time at which Seam created the warning. */
|
|
18039
|
+
created_at: string
|
|
18040
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
18041
|
+
message: string
|
|
18042
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
18043
|
+
warning_code: 'unknown_issue_with_acs_access_group'
|
|
18044
|
+
}
|
|
18045
|
+
| {
|
|
18046
|
+
/** Date and time at which Seam created the warning. */
|
|
18047
|
+
created_at: string
|
|
18048
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
18049
|
+
message: string
|
|
18050
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
18051
|
+
warning_code: 'being_deleted'
|
|
18052
|
+
}
|
|
18053
|
+
)[]
|
|
18011
18054
|
is_managed: true
|
|
18012
18055
|
}[]
|
|
18013
18056
|
}
|
|
@@ -18519,14 +18562,24 @@ export type Routes = {
|
|
|
18519
18562
|
/** Date and time at which the access group was created. */
|
|
18520
18563
|
created_at: string
|
|
18521
18564
|
/** Warnings associated with the `acs_access_group`. */
|
|
18522
|
-
warnings:
|
|
18523
|
-
|
|
18524
|
-
|
|
18525
|
-
|
|
18526
|
-
|
|
18527
|
-
|
|
18528
|
-
|
|
18529
|
-
|
|
18565
|
+
warnings: (
|
|
18566
|
+
| {
|
|
18567
|
+
/** Date and time at which Seam created the warning. */
|
|
18568
|
+
created_at: string
|
|
18569
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
18570
|
+
message: string
|
|
18571
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
18572
|
+
warning_code: 'unknown_issue_with_acs_access_group'
|
|
18573
|
+
}
|
|
18574
|
+
| {
|
|
18575
|
+
/** Date and time at which Seam created the warning. */
|
|
18576
|
+
created_at: string
|
|
18577
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
18578
|
+
message: string
|
|
18579
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
18580
|
+
warning_code: 'being_deleted'
|
|
18581
|
+
}
|
|
18582
|
+
)[]
|
|
18530
18583
|
is_managed: false
|
|
18531
18584
|
}
|
|
18532
18585
|
}
|
|
@@ -18584,14 +18637,24 @@ export type Routes = {
|
|
|
18584
18637
|
/** Date and time at which the access group was created. */
|
|
18585
18638
|
created_at: string
|
|
18586
18639
|
/** Warnings associated with the `acs_access_group`. */
|
|
18587
|
-
warnings:
|
|
18588
|
-
|
|
18589
|
-
|
|
18590
|
-
|
|
18591
|
-
|
|
18592
|
-
|
|
18593
|
-
|
|
18594
|
-
|
|
18640
|
+
warnings: (
|
|
18641
|
+
| {
|
|
18642
|
+
/** Date and time at which Seam created the warning. */
|
|
18643
|
+
created_at: string
|
|
18644
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
18645
|
+
message: string
|
|
18646
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
18647
|
+
warning_code: 'unknown_issue_with_acs_access_group'
|
|
18648
|
+
}
|
|
18649
|
+
| {
|
|
18650
|
+
/** Date and time at which Seam created the warning. */
|
|
18651
|
+
created_at: string
|
|
18652
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
18653
|
+
message: string
|
|
18654
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
18655
|
+
warning_code: 'being_deleted'
|
|
18656
|
+
}
|
|
18657
|
+
)[]
|
|
18595
18658
|
is_managed: false
|
|
18596
18659
|
}[]
|
|
18597
18660
|
}
|
|
@@ -62862,7 +62925,7 @@ export type Routes = {
|
|
|
62862
62925
|
queryParams: {}
|
|
62863
62926
|
jsonBody: {
|
|
62864
62927
|
/** Type of connector to create */
|
|
62865
|
-
connector_type: 'mock' | 'mews' | 'rms' | 'cloudbeds' | 'smoobu'
|
|
62928
|
+
connector_type: 'mock' | 'mews' | 'rms' | 'cloudbeds' | 'smoobu' | 'zonal'
|
|
62866
62929
|
/** Key identifying the customer */
|
|
62867
62930
|
customer_key?: string | undefined
|
|
62868
62931
|
/** Instance-specific configuration for the connector */
|
|
@@ -94568,14 +94631,24 @@ export type Routes = {
|
|
|
94568
94631
|
/** Date and time at which the access group was created. */
|
|
94569
94632
|
created_at: string
|
|
94570
94633
|
/** Warnings associated with the `acs_access_group`. */
|
|
94571
|
-
warnings:
|
|
94572
|
-
|
|
94573
|
-
|
|
94574
|
-
|
|
94575
|
-
|
|
94576
|
-
|
|
94577
|
-
|
|
94578
|
-
|
|
94634
|
+
warnings: (
|
|
94635
|
+
| {
|
|
94636
|
+
/** Date and time at which Seam created the warning. */
|
|
94637
|
+
created_at: string
|
|
94638
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
94639
|
+
message: string
|
|
94640
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
94641
|
+
warning_code: 'unknown_issue_with_acs_access_group'
|
|
94642
|
+
}
|
|
94643
|
+
| {
|
|
94644
|
+
/** Date and time at which Seam created the warning. */
|
|
94645
|
+
created_at: string
|
|
94646
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
94647
|
+
message: string
|
|
94648
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
94649
|
+
warning_code: 'being_deleted'
|
|
94650
|
+
}
|
|
94651
|
+
)[]
|
|
94579
94652
|
is_managed: true
|
|
94580
94653
|
}[]
|
|
94581
94654
|
| undefined
|
|
@@ -96403,14 +96476,24 @@ export type Routes = {
|
|
|
96403
96476
|
/** Date and time at which the access group was created. */
|
|
96404
96477
|
created_at: string
|
|
96405
96478
|
/** Warnings associated with the `acs_access_group`. */
|
|
96406
|
-
warnings:
|
|
96407
|
-
|
|
96408
|
-
|
|
96409
|
-
|
|
96410
|
-
|
|
96411
|
-
|
|
96412
|
-
|
|
96413
|
-
|
|
96479
|
+
warnings: (
|
|
96480
|
+
| {
|
|
96481
|
+
/** Date and time at which Seam created the warning. */
|
|
96482
|
+
created_at: string
|
|
96483
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
96484
|
+
message: string
|
|
96485
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
96486
|
+
warning_code: 'unknown_issue_with_acs_access_group'
|
|
96487
|
+
}
|
|
96488
|
+
| {
|
|
96489
|
+
/** Date and time at which Seam created the warning. */
|
|
96490
|
+
created_at: string
|
|
96491
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
96492
|
+
message: string
|
|
96493
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
96494
|
+
warning_code: 'being_deleted'
|
|
96495
|
+
}
|
|
96496
|
+
)[]
|
|
96414
96497
|
is_managed: false
|
|
96415
96498
|
}[]
|
|
96416
96499
|
| undefined
|