@seamapi/types 1.75.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 +12 -6
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +27 -19
- package/lib/seam/connect/openapi.d.ts +21 -15
- package/lib/seam/connect/openapi.js +11 -5
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +6 -4
- package/package.json +1 -1
- package/src/lib/seam/connect/openapi.ts +11 -5
- package/src/lib/seam/connect/route-types.ts +6 -4
|
@@ -5553,15 +5553,17 @@ export interface Routes {
|
|
|
5553
5553
|
custom_sdk_installation_id?: string | undefined;
|
|
5554
5554
|
user_identity_id: string;
|
|
5555
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?: {
|
|
5556
5562
|
ble_capability?: boolean;
|
|
5557
5563
|
hce_capability?: boolean;
|
|
5558
5564
|
nfc_capability?: boolean;
|
|
5559
5565
|
application_version?: string;
|
|
5560
5566
|
seos_applet_version?: string;
|
|
5561
|
-
device_manufacturer?: string;
|
|
5562
|
-
device_model?: string;
|
|
5563
|
-
os_version?: string;
|
|
5564
|
-
operating_system?: 'android' | 'ios';
|
|
5565
5567
|
};
|
|
5566
5568
|
};
|
|
5567
5569
|
commonParams: {};
|
package/package.json
CHANGED
|
@@ -9814,12 +9814,21 @@ export default {
|
|
|
9814
9814
|
format: 'uuid',
|
|
9815
9815
|
type: 'string',
|
|
9816
9816
|
},
|
|
9817
|
-
|
|
9818
|
-
phone_metadata: {
|
|
9817
|
+
assa_abloy_metadata: {
|
|
9819
9818
|
default: {},
|
|
9820
9819
|
properties: {
|
|
9821
9820
|
application_version: { default: '1.0.0', type: 'string' },
|
|
9822
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: {
|
|
9823
9832
|
device_manufacturer: {
|
|
9824
9833
|
default: 'Samsung',
|
|
9825
9834
|
type: 'string',
|
|
@@ -9828,15 +9837,12 @@ export default {
|
|
|
9828
9837
|
default: 'Samsung Galaxy S10',
|
|
9829
9838
|
type: 'string',
|
|
9830
9839
|
},
|
|
9831
|
-
hce_capability: { default: false, type: 'boolean' },
|
|
9832
|
-
nfc_capability: { default: false, type: 'boolean' },
|
|
9833
9840
|
operating_system: {
|
|
9834
9841
|
default: 'android',
|
|
9835
9842
|
enum: ['android', 'ios'],
|
|
9836
9843
|
type: 'string',
|
|
9837
9844
|
},
|
|
9838
9845
|
os_version: { default: '10', type: 'string' },
|
|
9839
|
-
seos_applet_version: { default: '1.0.0', type: 'string' },
|
|
9840
9846
|
},
|
|
9841
9847
|
type: 'object',
|
|
9842
9848
|
},
|
|
@@ -7627,15 +7627,17 @@ export interface Routes {
|
|
|
7627
7627
|
custom_sdk_installation_id?: string | undefined
|
|
7628
7628
|
user_identity_id: string
|
|
7629
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?: {
|
|
7630
7636
|
ble_capability?: boolean
|
|
7631
7637
|
hce_capability?: boolean
|
|
7632
7638
|
nfc_capability?: boolean
|
|
7633
7639
|
application_version?: string
|
|
7634
7640
|
seos_applet_version?: string
|
|
7635
|
-
device_manufacturer?: string
|
|
7636
|
-
device_model?: string
|
|
7637
|
-
os_version?: string
|
|
7638
|
-
operating_system?: 'android' | 'ios'
|
|
7639
7641
|
}
|
|
7640
7642
|
}
|
|
7641
7643
|
commonParams: {}
|