@seamapi/types 1.74.0 → 1.76.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 +15 -7
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +37 -19
- package/lib/seam/connect/openapi.d.ts +29 -15
- package/lib/seam/connect/openapi.js +13 -5
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +8 -4
- package/package.json +1 -1
- package/src/lib/seam/connect/openapi.ts +13 -5
- package/src/lib/seam/connect/route-types.ts +8 -4
|
@@ -816,6 +816,8 @@ export interface Routes {
|
|
|
816
816
|
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card') | undefined;
|
|
817
817
|
card_format?: ('TLCode' | 'rfid48') | undefined;
|
|
818
818
|
is_override_key?: boolean | undefined;
|
|
819
|
+
starts_at?: string | undefined;
|
|
820
|
+
ends_at?: string | undefined;
|
|
819
821
|
};
|
|
820
822
|
formData: {};
|
|
821
823
|
jsonResponse: {
|
|
@@ -5551,15 +5553,17 @@ export interface Routes {
|
|
|
5551
5553
|
custom_sdk_installation_id?: string | undefined;
|
|
5552
5554
|
user_identity_id: string;
|
|
5553
5555
|
phone_metadata?: {
|
|
5556
|
+
operating_system?: 'android' | 'ios';
|
|
5557
|
+
os_version?: string;
|
|
5558
|
+
device_manufacturer?: string;
|
|
5559
|
+
device_model?: string;
|
|
5560
|
+
};
|
|
5561
|
+
assa_abloy_metadata?: {
|
|
5554
5562
|
ble_capability?: boolean;
|
|
5555
5563
|
hce_capability?: boolean;
|
|
5556
5564
|
nfc_capability?: boolean;
|
|
5557
5565
|
application_version?: string;
|
|
5558
5566
|
seos_applet_version?: string;
|
|
5559
|
-
device_manufacturer?: string;
|
|
5560
|
-
device_model?: string;
|
|
5561
|
-
os_version?: string;
|
|
5562
|
-
operating_system?: 'android' | 'ios';
|
|
5563
5567
|
};
|
|
5564
5568
|
};
|
|
5565
5569
|
commonParams: {};
|
package/package.json
CHANGED
|
@@ -5173,6 +5173,7 @@ export default {
|
|
|
5173
5173
|
},
|
|
5174
5174
|
card_format: { enum: ['TLCode', 'rfid48'], type: 'string' },
|
|
5175
5175
|
code: { pattern: '^\\d+$', type: 'string' },
|
|
5176
|
+
ends_at: { format: 'date-time', type: 'string' },
|
|
5176
5177
|
external_type: {
|
|
5177
5178
|
enum: [
|
|
5178
5179
|
'pti_card',
|
|
@@ -5184,6 +5185,7 @@ export default {
|
|
|
5184
5185
|
},
|
|
5185
5186
|
is_multi_phone_sync_credential: { type: 'boolean' },
|
|
5186
5187
|
is_override_key: { type: 'boolean' },
|
|
5188
|
+
starts_at: { format: 'date-time', type: 'string' },
|
|
5187
5189
|
},
|
|
5188
5190
|
required: ['acs_user_id', 'access_method'],
|
|
5189
5191
|
type: 'object',
|
|
@@ -9812,12 +9814,21 @@ export default {
|
|
|
9812
9814
|
format: 'uuid',
|
|
9813
9815
|
type: 'string',
|
|
9814
9816
|
},
|
|
9815
|
-
|
|
9816
|
-
phone_metadata: {
|
|
9817
|
+
assa_abloy_metadata: {
|
|
9817
9818
|
default: {},
|
|
9818
9819
|
properties: {
|
|
9819
9820
|
application_version: { default: '1.0.0', type: 'string' },
|
|
9820
9821
|
ble_capability: { default: true, type: 'boolean' },
|
|
9822
|
+
hce_capability: { default: false, type: 'boolean' },
|
|
9823
|
+
nfc_capability: { default: false, type: 'boolean' },
|
|
9824
|
+
seos_applet_version: { default: '1.0.0', type: 'string' },
|
|
9825
|
+
},
|
|
9826
|
+
type: 'object',
|
|
9827
|
+
},
|
|
9828
|
+
custom_sdk_installation_id: { type: 'string' },
|
|
9829
|
+
phone_metadata: {
|
|
9830
|
+
default: {},
|
|
9831
|
+
properties: {
|
|
9821
9832
|
device_manufacturer: {
|
|
9822
9833
|
default: 'Samsung',
|
|
9823
9834
|
type: 'string',
|
|
@@ -9826,15 +9837,12 @@ export default {
|
|
|
9826
9837
|
default: 'Samsung Galaxy S10',
|
|
9827
9838
|
type: 'string',
|
|
9828
9839
|
},
|
|
9829
|
-
hce_capability: { default: false, type: 'boolean' },
|
|
9830
|
-
nfc_capability: { default: false, type: 'boolean' },
|
|
9831
9840
|
operating_system: {
|
|
9832
9841
|
default: 'android',
|
|
9833
9842
|
enum: ['android', 'ios'],
|
|
9834
9843
|
type: 'string',
|
|
9835
9844
|
},
|
|
9836
9845
|
os_version: { default: '10', type: 'string' },
|
|
9837
|
-
seos_applet_version: { default: '1.0.0', type: 'string' },
|
|
9838
9846
|
},
|
|
9839
9847
|
type: 'object',
|
|
9840
9848
|
},
|
|
@@ -862,6 +862,8 @@ export interface Routes {
|
|
|
862
862
|
| undefined
|
|
863
863
|
card_format?: ('TLCode' | 'rfid48') | undefined
|
|
864
864
|
is_override_key?: boolean | undefined
|
|
865
|
+
starts_at?: string | undefined
|
|
866
|
+
ends_at?: string | undefined
|
|
865
867
|
}
|
|
866
868
|
formData: {}
|
|
867
869
|
jsonResponse: {
|
|
@@ -7625,15 +7627,17 @@ export interface Routes {
|
|
|
7625
7627
|
custom_sdk_installation_id?: string | undefined
|
|
7626
7628
|
user_identity_id: string
|
|
7627
7629
|
phone_metadata?: {
|
|
7630
|
+
operating_system?: 'android' | 'ios'
|
|
7631
|
+
os_version?: string
|
|
7632
|
+
device_manufacturer?: string
|
|
7633
|
+
device_model?: string
|
|
7634
|
+
}
|
|
7635
|
+
assa_abloy_metadata?: {
|
|
7628
7636
|
ble_capability?: boolean
|
|
7629
7637
|
hce_capability?: boolean
|
|
7630
7638
|
nfc_capability?: boolean
|
|
7631
7639
|
application_version?: string
|
|
7632
7640
|
seos_applet_version?: string
|
|
7633
|
-
device_manufacturer?: string
|
|
7634
|
-
device_model?: string
|
|
7635
|
-
os_version?: string
|
|
7636
|
-
operating_system?: 'android' | 'ios'
|
|
7637
7641
|
}
|
|
7638
7642
|
}
|
|
7639
7643
|
commonParams: {}
|