@seamapi/types 1.59.1 → 1.60.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 +18 -1
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +73 -0
- package/lib/seam/connect/openapi.d.ts +19 -0
- package/lib/seam/connect/openapi.js +17 -0
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +54 -0
- package/lib/seam/connect/unstable/models/acs/system.js +1 -1
- package/lib/seam/connect/unstable/models/acs/system.js.map +1 -1
- package/lib/seam/connect/unstable/models/devices/device-metadata.d.ts +76 -0
- package/lib/seam/connect/unstable/models/devices/device-metadata.js +15 -8
- package/lib/seam/connect/unstable/models/devices/device-metadata.js.map +1 -1
- package/lib/seam/connect/unstable/models/devices/managed-device.d.ts +66 -0
- package/package.json +1 -1
- package/src/lib/seam/connect/openapi.ts +17 -0
- package/src/lib/seam/connect/route-types.ts +54 -0
- package/src/lib/seam/connect/unstable/models/acs/system.ts +1 -1
- package/src/lib/seam/connect/unstable/models/devices/device-metadata.ts +18 -10
package/dist/connect.d.cts
CHANGED
|
@@ -979,6 +979,25 @@ declare const _default: {
|
|
|
979
979
|
check_out_time: {
|
|
980
980
|
type: string;
|
|
981
981
|
};
|
|
982
|
+
dormakaba_oracode_user_level_id: {
|
|
983
|
+
format: string;
|
|
984
|
+
type: string;
|
|
985
|
+
};
|
|
986
|
+
ext_dormakaba_oracode_user_level_prefix: {
|
|
987
|
+
type: string;
|
|
988
|
+
};
|
|
989
|
+
is_24_hour: {
|
|
990
|
+
type: string;
|
|
991
|
+
};
|
|
992
|
+
is_biweekly_mode: {
|
|
993
|
+
type: string;
|
|
994
|
+
};
|
|
995
|
+
is_master: {
|
|
996
|
+
type: string;
|
|
997
|
+
};
|
|
998
|
+
is_one_shot: {
|
|
999
|
+
type: string;
|
|
1000
|
+
};
|
|
982
1001
|
name: {
|
|
983
1002
|
type: string;
|
|
984
1003
|
};
|
|
@@ -15649,6 +15668,12 @@ interface Routes {
|
|
|
15649
15668
|
prefix: number;
|
|
15650
15669
|
check_in_time: string;
|
|
15651
15670
|
check_out_time: string;
|
|
15671
|
+
is_24_hour: boolean;
|
|
15672
|
+
is_biweekly_mode: boolean;
|
|
15673
|
+
is_one_shot: boolean;
|
|
15674
|
+
is_master: boolean;
|
|
15675
|
+
ext_dormakaba_oracode_user_level_prefix: number;
|
|
15676
|
+
dormakaba_oracode_user_level_id: string;
|
|
15652
15677
|
}> | undefined;
|
|
15653
15678
|
} | undefined;
|
|
15654
15679
|
wyze_metadata?: {
|
|
@@ -16102,6 +16127,12 @@ interface Routes {
|
|
|
16102
16127
|
prefix: number;
|
|
16103
16128
|
check_in_time: string;
|
|
16104
16129
|
check_out_time: string;
|
|
16130
|
+
is_24_hour: boolean;
|
|
16131
|
+
is_biweekly_mode: boolean;
|
|
16132
|
+
is_one_shot: boolean;
|
|
16133
|
+
is_master: boolean;
|
|
16134
|
+
ext_dormakaba_oracode_user_level_prefix: number;
|
|
16135
|
+
dormakaba_oracode_user_level_id: string;
|
|
16105
16136
|
}> | undefined;
|
|
16106
16137
|
} | undefined;
|
|
16107
16138
|
wyze_metadata?: {
|
|
@@ -16834,6 +16865,12 @@ interface Routes {
|
|
|
16834
16865
|
prefix: number;
|
|
16835
16866
|
check_in_time: string;
|
|
16836
16867
|
check_out_time: string;
|
|
16868
|
+
is_24_hour: boolean;
|
|
16869
|
+
is_biweekly_mode: boolean;
|
|
16870
|
+
is_one_shot: boolean;
|
|
16871
|
+
is_master: boolean;
|
|
16872
|
+
ext_dormakaba_oracode_user_level_prefix: number;
|
|
16873
|
+
dormakaba_oracode_user_level_id: string;
|
|
16837
16874
|
}> | undefined;
|
|
16838
16875
|
} | undefined;
|
|
16839
16876
|
wyze_metadata?: {
|
|
@@ -17265,6 +17302,12 @@ interface Routes {
|
|
|
17265
17302
|
prefix: number;
|
|
17266
17303
|
check_in_time: string;
|
|
17267
17304
|
check_out_time: string;
|
|
17305
|
+
is_24_hour: boolean;
|
|
17306
|
+
is_biweekly_mode: boolean;
|
|
17307
|
+
is_one_shot: boolean;
|
|
17308
|
+
is_master: boolean;
|
|
17309
|
+
ext_dormakaba_oracode_user_level_prefix: number;
|
|
17310
|
+
dormakaba_oracode_user_level_id: string;
|
|
17268
17311
|
}> | undefined;
|
|
17269
17312
|
} | undefined;
|
|
17270
17313
|
wyze_metadata?: {
|
|
@@ -17718,6 +17761,12 @@ interface Routes {
|
|
|
17718
17761
|
prefix: number;
|
|
17719
17762
|
check_in_time: string;
|
|
17720
17763
|
check_out_time: string;
|
|
17764
|
+
is_24_hour: boolean;
|
|
17765
|
+
is_biweekly_mode: boolean;
|
|
17766
|
+
is_one_shot: boolean;
|
|
17767
|
+
is_master: boolean;
|
|
17768
|
+
ext_dormakaba_oracode_user_level_prefix: number;
|
|
17769
|
+
dormakaba_oracode_user_level_id: string;
|
|
17721
17770
|
}> | undefined;
|
|
17722
17771
|
} | undefined;
|
|
17723
17772
|
wyze_metadata?: {
|
|
@@ -18149,6 +18198,12 @@ interface Routes {
|
|
|
18149
18198
|
prefix: number;
|
|
18150
18199
|
check_in_time: string;
|
|
18151
18200
|
check_out_time: string;
|
|
18201
|
+
is_24_hour: boolean;
|
|
18202
|
+
is_biweekly_mode: boolean;
|
|
18203
|
+
is_one_shot: boolean;
|
|
18204
|
+
is_master: boolean;
|
|
18205
|
+
ext_dormakaba_oracode_user_level_prefix: number;
|
|
18206
|
+
dormakaba_oracode_user_level_id: string;
|
|
18152
18207
|
}> | undefined;
|
|
18153
18208
|
} | undefined;
|
|
18154
18209
|
wyze_metadata?: {
|
|
@@ -19010,6 +19065,12 @@ interface Routes {
|
|
|
19010
19065
|
prefix: number;
|
|
19011
19066
|
check_in_time: string;
|
|
19012
19067
|
check_out_time: string;
|
|
19068
|
+
is_24_hour: boolean;
|
|
19069
|
+
is_biweekly_mode: boolean;
|
|
19070
|
+
is_one_shot: boolean;
|
|
19071
|
+
is_master: boolean;
|
|
19072
|
+
ext_dormakaba_oracode_user_level_prefix: number;
|
|
19073
|
+
dormakaba_oracode_user_level_id: string;
|
|
19013
19074
|
}> | undefined;
|
|
19014
19075
|
} | undefined;
|
|
19015
19076
|
wyze_metadata?: {
|
|
@@ -19493,6 +19554,12 @@ interface Routes {
|
|
|
19493
19554
|
prefix: number;
|
|
19494
19555
|
check_in_time: string;
|
|
19495
19556
|
check_out_time: string;
|
|
19557
|
+
is_24_hour: boolean;
|
|
19558
|
+
is_biweekly_mode: boolean;
|
|
19559
|
+
is_one_shot: boolean;
|
|
19560
|
+
is_master: boolean;
|
|
19561
|
+
ext_dormakaba_oracode_user_level_prefix: number;
|
|
19562
|
+
dormakaba_oracode_user_level_id: string;
|
|
19496
19563
|
}> | undefined;
|
|
19497
19564
|
} | undefined;
|
|
19498
19565
|
wyze_metadata?: {
|
|
@@ -20073,6 +20140,12 @@ interface Routes {
|
|
|
20073
20140
|
prefix: number;
|
|
20074
20141
|
check_in_time: string;
|
|
20075
20142
|
check_out_time: string;
|
|
20143
|
+
is_24_hour: boolean;
|
|
20144
|
+
is_biweekly_mode: boolean;
|
|
20145
|
+
is_one_shot: boolean;
|
|
20146
|
+
is_master: boolean;
|
|
20147
|
+
ext_dormakaba_oracode_user_level_prefix: number;
|
|
20148
|
+
dormakaba_oracode_user_level_id: string;
|
|
20076
20149
|
}> | undefined;
|
|
20077
20150
|
} | undefined;
|
|
20078
20151
|
wyze_metadata?: {
|
|
@@ -902,6 +902,25 @@ declare const _default: {
|
|
|
902
902
|
check_out_time: {
|
|
903
903
|
type: string;
|
|
904
904
|
};
|
|
905
|
+
dormakaba_oracode_user_level_id: {
|
|
906
|
+
format: string;
|
|
907
|
+
type: string;
|
|
908
|
+
};
|
|
909
|
+
ext_dormakaba_oracode_user_level_prefix: {
|
|
910
|
+
type: string;
|
|
911
|
+
};
|
|
912
|
+
is_24_hour: {
|
|
913
|
+
type: string;
|
|
914
|
+
};
|
|
915
|
+
is_biweekly_mode: {
|
|
916
|
+
type: string;
|
|
917
|
+
};
|
|
918
|
+
is_master: {
|
|
919
|
+
type: string;
|
|
920
|
+
};
|
|
921
|
+
is_one_shot: {
|
|
922
|
+
type: string;
|
|
923
|
+
};
|
|
905
924
|
name: {
|
|
906
925
|
type: string;
|
|
907
926
|
};
|
|
@@ -746,6 +746,17 @@ export default {
|
|
|
746
746
|
properties: {
|
|
747
747
|
check_in_time: { type: 'string' },
|
|
748
748
|
check_out_time: { type: 'string' },
|
|
749
|
+
dormakaba_oracode_user_level_id: {
|
|
750
|
+
format: 'uuid',
|
|
751
|
+
type: 'string',
|
|
752
|
+
},
|
|
753
|
+
ext_dormakaba_oracode_user_level_prefix: {
|
|
754
|
+
type: 'number',
|
|
755
|
+
},
|
|
756
|
+
is_24_hour: { type: 'boolean' },
|
|
757
|
+
is_biweekly_mode: { type: 'boolean' },
|
|
758
|
+
is_master: { type: 'boolean' },
|
|
759
|
+
is_one_shot: { type: 'boolean' },
|
|
749
760
|
name: { type: 'string' },
|
|
750
761
|
prefix: { type: 'number' },
|
|
751
762
|
},
|
|
@@ -754,6 +765,12 @@ export default {
|
|
|
754
765
|
'prefix',
|
|
755
766
|
'check_in_time',
|
|
756
767
|
'check_out_time',
|
|
768
|
+
'is_24_hour',
|
|
769
|
+
'is_biweekly_mode',
|
|
770
|
+
'is_one_shot',
|
|
771
|
+
'is_master',
|
|
772
|
+
'ext_dormakaba_oracode_user_level_prefix',
|
|
773
|
+
'dormakaba_oracode_user_level_id',
|
|
757
774
|
],
|
|
758
775
|
type: 'object',
|
|
759
776
|
},
|