@seamapi/types 1.473.0 → 1.475.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 +434 -2
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +953 -199
- package/dist/index.cjs +434 -2
- package/dist/index.cjs.map +1 -1
- package/lib/seam/connect/models/batch.d.ts +126 -0
- package/lib/seam/connect/models/batch.js +3 -0
- package/lib/seam/connect/models/batch.js.map +1 -1
- package/lib/seam/connect/models/customization_profiles/customization_profile.d.ts +21 -0
- package/lib/seam/connect/models/customization_profiles/customization_profile.js +9 -0
- package/lib/seam/connect/models/customization_profiles/customization_profile.js.map +1 -0
- package/lib/seam/connect/models/index.d.ts +1 -0
- package/lib/seam/connect/models/index.js +1 -0
- package/lib/seam/connect/models/index.js.map +1 -1
- package/lib/seam/connect/openapi.d.ts +544 -0
- package/lib/seam/connect/openapi.js +399 -0
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +126 -0
- package/lib/seam/connect/schemas.d.ts +1 -1
- package/lib/seam/connect/schemas.js +1 -1
- package/lib/seam/connect/schemas.js.map +1 -1
- package/package.json +1 -1
- package/src/lib/seam/connect/models/batch.ts +3 -0
- package/src/lib/seam/connect/models/customization_profiles/customization_profile.ts +11 -0
- package/src/lib/seam/connect/models/index.ts +1 -0
- package/src/lib/seam/connect/openapi.ts +399 -0
- package/src/lib/seam/connect/route-types.ts +130 -0
- package/src/lib/seam/connect/schemas.ts +1 -0
|
@@ -19550,6 +19550,32 @@ export type Routes = {
|
|
|
19550
19550
|
customer_key?: string | undefined
|
|
19551
19551
|
}[]
|
|
19552
19552
|
| undefined
|
|
19553
|
+
access_methods?:
|
|
19554
|
+
| {
|
|
19555
|
+
/** ID of the Seam workspace associated with the access method. */
|
|
19556
|
+
workspace_id: string
|
|
19557
|
+
/** ID of the access method. */
|
|
19558
|
+
access_method_id: string
|
|
19559
|
+
/** Display name of the access method. */
|
|
19560
|
+
display_name: string
|
|
19561
|
+
/** Access method mode. Supported values: `code`, `card`, `mobile_key`. */
|
|
19562
|
+
mode: 'code' | 'card' | 'mobile_key'
|
|
19563
|
+
/** Date and time at which the access method was created. */
|
|
19564
|
+
created_at: string
|
|
19565
|
+
/** Date and time at which the access method was issued. */
|
|
19566
|
+
issued_at: string | null
|
|
19567
|
+
/** Indicates whether the access method has been issued. */
|
|
19568
|
+
is_issued: boolean
|
|
19569
|
+
/** URL of the Instant Key for mobile key access methods. */
|
|
19570
|
+
instant_key_url?: string | undefined
|
|
19571
|
+
/** Token of the client session associated with the access method. */
|
|
19572
|
+
client_session_token?: string | undefined
|
|
19573
|
+
/** Indicates whether encoding with an card encoder is required to issue or reissue the plastic card associated with the access method. */
|
|
19574
|
+
is_encoding_required?: boolean | undefined
|
|
19575
|
+
/** The actual PIN code for code access methods. */
|
|
19576
|
+
code?: string | undefined
|
|
19577
|
+
}[]
|
|
19578
|
+
| undefined
|
|
19553
19579
|
}
|
|
19554
19580
|
}
|
|
19555
19581
|
}
|
|
@@ -89808,6 +89834,84 @@ export type Routes = {
|
|
|
89808
89834
|
}
|
|
89809
89835
|
}
|
|
89810
89836
|
}
|
|
89837
|
+
'/workspaces/customization_profiles/create': {
|
|
89838
|
+
route: '/workspaces/customization_profiles/create'
|
|
89839
|
+
method: 'POST'
|
|
89840
|
+
queryParams: {}
|
|
89841
|
+
jsonBody: {
|
|
89842
|
+
primary_color: string
|
|
89843
|
+
secondary_color: string
|
|
89844
|
+
}
|
|
89845
|
+
commonParams: {}
|
|
89846
|
+
formData: {}
|
|
89847
|
+
jsonResponse: {
|
|
89848
|
+
customization_profile: {
|
|
89849
|
+
workspace_id: string
|
|
89850
|
+
customization_profile_id: string
|
|
89851
|
+
logo_url?: string | undefined
|
|
89852
|
+
primary_color?: string | undefined
|
|
89853
|
+
secondary_color?: string | undefined
|
|
89854
|
+
}
|
|
89855
|
+
}
|
|
89856
|
+
}
|
|
89857
|
+
'/workspaces/customization_profiles/get': {
|
|
89858
|
+
route: '/workspaces/customization_profiles/get'
|
|
89859
|
+
method: 'POST' | 'GET'
|
|
89860
|
+
queryParams: {}
|
|
89861
|
+
jsonBody: {}
|
|
89862
|
+
commonParams: {
|
|
89863
|
+
customization_profile_id: string
|
|
89864
|
+
}
|
|
89865
|
+
formData: {}
|
|
89866
|
+
jsonResponse: {
|
|
89867
|
+
customization_profile: {
|
|
89868
|
+
workspace_id: string
|
|
89869
|
+
customization_profile_id: string
|
|
89870
|
+
logo_url?: string | undefined
|
|
89871
|
+
primary_color?: string | undefined
|
|
89872
|
+
secondary_color?: string | undefined
|
|
89873
|
+
}
|
|
89874
|
+
}
|
|
89875
|
+
}
|
|
89876
|
+
'/workspaces/customization_profiles/list': {
|
|
89877
|
+
route: '/workspaces/customization_profiles/list'
|
|
89878
|
+
method: 'POST' | 'GET'
|
|
89879
|
+
queryParams: {}
|
|
89880
|
+
jsonBody: {}
|
|
89881
|
+
commonParams: {}
|
|
89882
|
+
formData: {}
|
|
89883
|
+
jsonResponse: {
|
|
89884
|
+
customization_profiles: {
|
|
89885
|
+
workspace_id: string
|
|
89886
|
+
customization_profile_id: string
|
|
89887
|
+
logo_url?: string | undefined
|
|
89888
|
+
primary_color?: string | undefined
|
|
89889
|
+
secondary_color?: string | undefined
|
|
89890
|
+
}[]
|
|
89891
|
+
}
|
|
89892
|
+
}
|
|
89893
|
+
'/workspaces/customization_profiles/update': {
|
|
89894
|
+
route: '/workspaces/customization_profiles/update'
|
|
89895
|
+
method: 'POST' | 'PATCH'
|
|
89896
|
+
queryParams: {}
|
|
89897
|
+
jsonBody: {
|
|
89898
|
+
customization_profile_id: string
|
|
89899
|
+
primary_color?: string | undefined
|
|
89900
|
+
secondary_color?: string | undefined
|
|
89901
|
+
}
|
|
89902
|
+
commonParams: {}
|
|
89903
|
+
formData: {}
|
|
89904
|
+
jsonResponse: {}
|
|
89905
|
+
}
|
|
89906
|
+
'/workspaces/customization_profiles/upload_images': {
|
|
89907
|
+
route: '/workspaces/customization_profiles/upload_images'
|
|
89908
|
+
method: 'POST'
|
|
89909
|
+
queryParams: {}
|
|
89910
|
+
jsonBody: {}
|
|
89911
|
+
commonParams: {}
|
|
89912
|
+
formData: {}
|
|
89913
|
+
jsonResponse: {}
|
|
89914
|
+
}
|
|
89811
89915
|
'/workspaces/find_resources': {
|
|
89812
89916
|
route: '/workspaces/find_resources'
|
|
89813
89917
|
method: 'GET' | 'POST'
|
|
@@ -94367,6 +94471,32 @@ export type Routes = {
|
|
|
94367
94471
|
customer_key?: string | undefined
|
|
94368
94472
|
}[]
|
|
94369
94473
|
| undefined
|
|
94474
|
+
access_methods?:
|
|
94475
|
+
| {
|
|
94476
|
+
/** ID of the Seam workspace associated with the access method. */
|
|
94477
|
+
workspace_id: string
|
|
94478
|
+
/** ID of the access method. */
|
|
94479
|
+
access_method_id: string
|
|
94480
|
+
/** Display name of the access method. */
|
|
94481
|
+
display_name: string
|
|
94482
|
+
/** Access method mode. Supported values: `code`, `card`, `mobile_key`. */
|
|
94483
|
+
mode: 'code' | 'card' | 'mobile_key'
|
|
94484
|
+
/** Date and time at which the access method was created. */
|
|
94485
|
+
created_at: string
|
|
94486
|
+
/** Date and time at which the access method was issued. */
|
|
94487
|
+
issued_at: string | null
|
|
94488
|
+
/** Indicates whether the access method has been issued. */
|
|
94489
|
+
is_issued: boolean
|
|
94490
|
+
/** URL of the Instant Key for mobile key access methods. */
|
|
94491
|
+
instant_key_url?: string | undefined
|
|
94492
|
+
/** Token of the client session associated with the access method. */
|
|
94493
|
+
client_session_token?: string | undefined
|
|
94494
|
+
/** Indicates whether encoding with an card encoder is required to issue or reissue the plastic card associated with the access method. */
|
|
94495
|
+
is_encoding_required?: boolean | undefined
|
|
94496
|
+
/** The actual PIN code for code access methods. */
|
|
94497
|
+
code?: string | undefined
|
|
94498
|
+
}[]
|
|
94499
|
+
| undefined
|
|
94370
94500
|
}
|
|
94371
94501
|
}
|
|
94372
94502
|
}
|