@seamapi/types 1.682.0 → 1.684.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 +336 -35
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +614 -87
- package/dist/index.cjs +336 -35
- 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/models/customer/customer.d.ts +15 -0
- package/lib/seam/connect/models/customer/customer.js +21 -0
- package/lib/seam/connect/models/customer/customer.js.map +1 -0
- package/lib/seam/connect/models/customer/index.d.ts +1 -0
- package/lib/seam/connect/models/customer/index.js +1 -0
- package/lib/seam/connect/models/customer/index.js.map +1 -1
- package/lib/seam/connect/openapi.d.ts +366 -34
- package/lib/seam/connect/openapi.js +329 -32
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +109 -14
- package/package.json +1 -1
- package/src/lib/seam/connect/internal/schemas.ts +1 -0
- package/src/lib/seam/connect/models/acs/acs-access-group.ts +12 -3
- package/src/lib/seam/connect/models/customer/customer.ts +25 -0
- package/src/lib/seam/connect/models/customer/index.ts +1 -0
- package/src/lib/seam/connect/openapi.ts +349 -34
- package/src/lib/seam/connect/route-types.ts +172 -56
|
@@ -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
|
}
|
|
@@ -63013,6 +63076,39 @@ export type Routes = {
|
|
|
63013
63076
|
}
|
|
63014
63077
|
maxDuration: undefined
|
|
63015
63078
|
}
|
|
63079
|
+
'/seam/customer/v1/customers/list': {
|
|
63080
|
+
route: '/seam/customer/v1/customers/list'
|
|
63081
|
+
method: 'GET' | 'POST'
|
|
63082
|
+
queryParams: {}
|
|
63083
|
+
jsonBody: {}
|
|
63084
|
+
commonParams: {
|
|
63085
|
+
/** Maximum number of records to return per page. */
|
|
63086
|
+
limit?: number
|
|
63087
|
+
/** Identifies the specific page of results to return, obtained from the previous page's `next_page_cursor`. */
|
|
63088
|
+
page_cursor?: ((string | undefined) | null) | undefined
|
|
63089
|
+
}
|
|
63090
|
+
formData: {}
|
|
63091
|
+
jsonResponse: {
|
|
63092
|
+
customers: {
|
|
63093
|
+
/** Unique key for the customer within the workspace. */
|
|
63094
|
+
customer_key: string
|
|
63095
|
+
/** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces) associated with the customer. */
|
|
63096
|
+
workspace_id: string
|
|
63097
|
+
/** Date and time at which the customer was created. */
|
|
63098
|
+
created_at: string
|
|
63099
|
+
}[]
|
|
63100
|
+
/** Information about the current page of results. */
|
|
63101
|
+
pagination: {
|
|
63102
|
+
/** Opaque value that can be used to select the next page of results via the `page_cursor` parameter. */
|
|
63103
|
+
next_page_cursor: string | null
|
|
63104
|
+
/** Indicates whether there is another page of results after this one. */
|
|
63105
|
+
has_next_page: boolean
|
|
63106
|
+
/** URL to get the next page of results. */
|
|
63107
|
+
next_page_url: string | null
|
|
63108
|
+
}
|
|
63109
|
+
}
|
|
63110
|
+
maxDuration: undefined
|
|
63111
|
+
}
|
|
63016
63112
|
'/seam/customer/v1/events/list': {
|
|
63017
63113
|
route: '/seam/customer/v1/events/list'
|
|
63018
63114
|
method: 'GET' | 'POST'
|
|
@@ -94535,14 +94631,24 @@ export type Routes = {
|
|
|
94535
94631
|
/** Date and time at which the access group was created. */
|
|
94536
94632
|
created_at: string
|
|
94537
94633
|
/** Warnings associated with the `acs_access_group`. */
|
|
94538
|
-
warnings:
|
|
94539
|
-
|
|
94540
|
-
|
|
94541
|
-
|
|
94542
|
-
|
|
94543
|
-
|
|
94544
|
-
|
|
94545
|
-
|
|
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
|
+
)[]
|
|
94546
94652
|
is_managed: true
|
|
94547
94653
|
}[]
|
|
94548
94654
|
| undefined
|
|
@@ -96370,14 +96476,24 @@ export type Routes = {
|
|
|
96370
96476
|
/** Date and time at which the access group was created. */
|
|
96371
96477
|
created_at: string
|
|
96372
96478
|
/** Warnings associated with the `acs_access_group`. */
|
|
96373
|
-
warnings:
|
|
96374
|
-
|
|
96375
|
-
|
|
96376
|
-
|
|
96377
|
-
|
|
96378
|
-
|
|
96379
|
-
|
|
96380
|
-
|
|
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
|
+
)[]
|
|
96381
96497
|
is_managed: false
|
|
96382
96498
|
}[]
|
|
96383
96499
|
| undefined
|