@seamapi/types 1.261.0 → 1.262.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 -19
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +115 -73
- package/lib/seam/connect/models/acs/acs-credential.d.ts +12 -12
- package/lib/seam/connect/models/acs/acs-credential.js +2 -2
- package/lib/seam/connect/models/acs/acs-credential.js.map +1 -1
- package/lib/seam/connect/models/action-attempts/action-attempt.d.ts +5 -5
- package/lib/seam/connect/models/action-attempts/read-card.d.ts +5 -5
- package/lib/seam/connect/models/action-attempts/read-card.js +1 -1
- package/lib/seam/connect/models/action-attempts/read-card.js.map +1 -1
- package/lib/seam/connect/openapi.d.ts +60 -18
- package/lib/seam/connect/openapi.js +15 -15
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +38 -38
- package/package.json +1 -1
- package/src/lib/seam/connect/models/acs/acs-credential.ts +2 -2
- package/src/lib/seam/connect/models/action-attempts/read-card.ts +1 -1
- package/src/lib/seam/connect/openapi.ts +15 -15
- package/src/lib/seam/connect/route-types.ts +38 -38
|
@@ -97,7 +97,7 @@ export interface Routes {
|
|
|
97
97
|
result: null;
|
|
98
98
|
action_type: 'READ_CARD';
|
|
99
99
|
error: {
|
|
100
|
-
type:
|
|
100
|
+
type: 'no_card_on_encoder';
|
|
101
101
|
message: string;
|
|
102
102
|
};
|
|
103
103
|
} | {
|
|
@@ -701,7 +701,7 @@ export interface Routes {
|
|
|
701
701
|
result: null;
|
|
702
702
|
action_type: 'READ_CARD';
|
|
703
703
|
error: {
|
|
704
|
-
type:
|
|
704
|
+
type: 'no_card_on_encoder';
|
|
705
705
|
message: string;
|
|
706
706
|
};
|
|
707
707
|
} | {
|
|
@@ -1462,7 +1462,7 @@ export interface Routes {
|
|
|
1462
1462
|
result: null;
|
|
1463
1463
|
action_type: 'READ_CARD';
|
|
1464
1464
|
error: {
|
|
1465
|
-
type:
|
|
1465
|
+
type: 'no_card_on_encoder';
|
|
1466
1466
|
message: string;
|
|
1467
1467
|
};
|
|
1468
1468
|
} | {
|
|
@@ -2053,7 +2053,7 @@ export interface Routes {
|
|
|
2053
2053
|
result: null;
|
|
2054
2054
|
action_type: 'READ_CARD';
|
|
2055
2055
|
error: {
|
|
2056
|
-
type:
|
|
2056
|
+
type: 'no_card_on_encoder';
|
|
2057
2057
|
message: string;
|
|
2058
2058
|
};
|
|
2059
2059
|
} | {
|
|
@@ -2780,8 +2780,8 @@ export interface Routes {
|
|
|
2780
2780
|
display_name: string;
|
|
2781
2781
|
code?: (string | undefined) | null;
|
|
2782
2782
|
card_number?: (string | undefined) | null;
|
|
2783
|
-
|
|
2784
|
-
|
|
2783
|
+
is_issued?: boolean | undefined;
|
|
2784
|
+
issued_at?: (string | undefined) | null;
|
|
2785
2785
|
access_method: 'code' | 'card' | 'mobile_key';
|
|
2786
2786
|
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential') | undefined;
|
|
2787
2787
|
external_type_display_name?: string | undefined;
|
|
@@ -2851,8 +2851,8 @@ export interface Routes {
|
|
|
2851
2851
|
display_name: string;
|
|
2852
2852
|
code?: (string | undefined) | null;
|
|
2853
2853
|
card_number?: (string | undefined) | null;
|
|
2854
|
-
|
|
2855
|
-
|
|
2854
|
+
is_issued?: boolean | undefined;
|
|
2855
|
+
issued_at?: (string | undefined) | null;
|
|
2856
2856
|
access_method: 'code' | 'card' | 'mobile_key';
|
|
2857
2857
|
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential') | undefined;
|
|
2858
2858
|
external_type_display_name?: string | undefined;
|
|
@@ -2915,8 +2915,8 @@ export interface Routes {
|
|
|
2915
2915
|
display_name: string;
|
|
2916
2916
|
code?: (string | undefined) | null;
|
|
2917
2917
|
card_number?: (string | undefined) | null;
|
|
2918
|
-
|
|
2919
|
-
|
|
2918
|
+
is_issued?: boolean | undefined;
|
|
2919
|
+
issued_at?: (string | undefined) | null;
|
|
2920
2920
|
access_method: 'code' | 'card' | 'mobile_key';
|
|
2921
2921
|
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential') | undefined;
|
|
2922
2922
|
external_type_display_name?: string | undefined;
|
|
@@ -2979,8 +2979,8 @@ export interface Routes {
|
|
|
2979
2979
|
display_name: string;
|
|
2980
2980
|
code?: (string | undefined) | null;
|
|
2981
2981
|
card_number?: (string | undefined) | null;
|
|
2982
|
-
|
|
2983
|
-
|
|
2982
|
+
is_issued?: boolean | undefined;
|
|
2983
|
+
issued_at?: (string | undefined) | null;
|
|
2984
2984
|
access_method: 'code' | 'card' | 'mobile_key';
|
|
2985
2985
|
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential') | undefined;
|
|
2986
2986
|
external_type_display_name?: string | undefined;
|
|
@@ -3083,8 +3083,8 @@ export interface Routes {
|
|
|
3083
3083
|
display_name: string;
|
|
3084
3084
|
code?: (string | undefined) | null;
|
|
3085
3085
|
card_number?: (string | undefined) | null;
|
|
3086
|
-
|
|
3087
|
-
|
|
3086
|
+
is_issued?: boolean | undefined;
|
|
3087
|
+
issued_at?: (string | undefined) | null;
|
|
3088
3088
|
access_method: 'code' | 'card' | 'mobile_key';
|
|
3089
3089
|
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential') | undefined;
|
|
3090
3090
|
external_type_display_name?: string | undefined;
|
|
@@ -3136,8 +3136,8 @@ export interface Routes {
|
|
|
3136
3136
|
display_name: string;
|
|
3137
3137
|
code?: (string | undefined) | null;
|
|
3138
3138
|
card_number?: (string | undefined) | null;
|
|
3139
|
-
|
|
3140
|
-
|
|
3139
|
+
is_issued?: boolean | undefined;
|
|
3140
|
+
issued_at?: (string | undefined) | null;
|
|
3141
3141
|
access_method: 'code' | 'card' | 'mobile_key';
|
|
3142
3142
|
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential') | undefined;
|
|
3143
3143
|
external_type_display_name?: string | undefined;
|
|
@@ -3196,8 +3196,8 @@ export interface Routes {
|
|
|
3196
3196
|
display_name: string;
|
|
3197
3197
|
code?: (string | undefined) | null;
|
|
3198
3198
|
card_number?: (string | undefined) | null;
|
|
3199
|
-
|
|
3200
|
-
|
|
3199
|
+
is_issued?: boolean | undefined;
|
|
3200
|
+
issued_at?: (string | undefined) | null;
|
|
3201
3201
|
access_method: 'code' | 'card' | 'mobile_key';
|
|
3202
3202
|
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential') | undefined;
|
|
3203
3203
|
external_type_display_name?: string | undefined;
|
|
@@ -3251,8 +3251,8 @@ export interface Routes {
|
|
|
3251
3251
|
display_name: string;
|
|
3252
3252
|
code?: (string | undefined) | null;
|
|
3253
3253
|
card_number?: (string | undefined) | null;
|
|
3254
|
-
|
|
3255
|
-
|
|
3254
|
+
is_issued?: boolean | undefined;
|
|
3255
|
+
issued_at?: (string | undefined) | null;
|
|
3256
3256
|
access_method: 'code' | 'card' | 'mobile_key';
|
|
3257
3257
|
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential') | undefined;
|
|
3258
3258
|
external_type_display_name?: string | undefined;
|
|
@@ -3370,7 +3370,7 @@ export interface Routes {
|
|
|
3370
3370
|
result: null;
|
|
3371
3371
|
action_type: 'READ_CARD';
|
|
3372
3372
|
error: {
|
|
3373
|
-
type:
|
|
3373
|
+
type: 'no_card_on_encoder';
|
|
3374
3374
|
message: string;
|
|
3375
3375
|
};
|
|
3376
3376
|
} | {
|
|
@@ -4286,7 +4286,7 @@ export interface Routes {
|
|
|
4286
4286
|
result: null;
|
|
4287
4287
|
action_type: 'READ_CARD';
|
|
4288
4288
|
error: {
|
|
4289
|
-
type:
|
|
4289
|
+
type: 'no_card_on_encoder';
|
|
4290
4290
|
message: string;
|
|
4291
4291
|
};
|
|
4292
4292
|
} | {
|
|
@@ -4790,8 +4790,8 @@ export interface Routes {
|
|
|
4790
4790
|
display_name: string;
|
|
4791
4791
|
code?: (string | undefined) | null;
|
|
4792
4792
|
card_number?: (string | undefined) | null;
|
|
4793
|
-
|
|
4794
|
-
|
|
4793
|
+
is_issued?: boolean | undefined;
|
|
4794
|
+
issued_at?: (string | undefined) | null;
|
|
4795
4795
|
access_method: 'code' | 'card' | 'mobile_key';
|
|
4796
4796
|
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential') | undefined;
|
|
4797
4797
|
external_type_display_name?: string | undefined;
|
|
@@ -5897,7 +5897,7 @@ export interface Routes {
|
|
|
5897
5897
|
result: null;
|
|
5898
5898
|
action_type: 'READ_CARD';
|
|
5899
5899
|
error: {
|
|
5900
|
-
type:
|
|
5900
|
+
type: 'no_card_on_encoder';
|
|
5901
5901
|
message: string;
|
|
5902
5902
|
};
|
|
5903
5903
|
} | {
|
|
@@ -6350,7 +6350,7 @@ export interface Routes {
|
|
|
6350
6350
|
result: null;
|
|
6351
6351
|
action_type: 'READ_CARD';
|
|
6352
6352
|
error: {
|
|
6353
|
-
type:
|
|
6353
|
+
type: 'no_card_on_encoder';
|
|
6354
6354
|
message: string;
|
|
6355
6355
|
};
|
|
6356
6356
|
} | {
|
|
@@ -10349,7 +10349,7 @@ export interface Routes {
|
|
|
10349
10349
|
result: null;
|
|
10350
10350
|
action_type: 'READ_CARD';
|
|
10351
10351
|
error: {
|
|
10352
|
-
type:
|
|
10352
|
+
type: 'no_card_on_encoder';
|
|
10353
10353
|
message: string;
|
|
10354
10354
|
};
|
|
10355
10355
|
} | {
|
|
@@ -10803,7 +10803,7 @@ export interface Routes {
|
|
|
10803
10803
|
result: null;
|
|
10804
10804
|
action_type: 'READ_CARD';
|
|
10805
10805
|
error: {
|
|
10806
|
-
type:
|
|
10806
|
+
type: 'no_card_on_encoder';
|
|
10807
10807
|
message: string;
|
|
10808
10808
|
};
|
|
10809
10809
|
} | {
|
|
@@ -12199,7 +12199,7 @@ export interface Routes {
|
|
|
12199
12199
|
result: null;
|
|
12200
12200
|
action_type: 'READ_CARD';
|
|
12201
12201
|
error: {
|
|
12202
|
-
type:
|
|
12202
|
+
type: 'no_card_on_encoder';
|
|
12203
12203
|
message: string;
|
|
12204
12204
|
};
|
|
12205
12205
|
} | {
|
|
@@ -12663,7 +12663,7 @@ export interface Routes {
|
|
|
12663
12663
|
result: null;
|
|
12664
12664
|
action_type: 'READ_CARD';
|
|
12665
12665
|
error: {
|
|
12666
|
-
type:
|
|
12666
|
+
type: 'no_card_on_encoder';
|
|
12667
12667
|
message: string;
|
|
12668
12668
|
};
|
|
12669
12669
|
} | {
|
|
@@ -13166,7 +13166,7 @@ export interface Routes {
|
|
|
13166
13166
|
result: null;
|
|
13167
13167
|
action_type: 'READ_CARD';
|
|
13168
13168
|
error: {
|
|
13169
|
-
type:
|
|
13169
|
+
type: 'no_card_on_encoder';
|
|
13170
13170
|
message: string;
|
|
13171
13171
|
};
|
|
13172
13172
|
} | {
|
|
@@ -13802,7 +13802,7 @@ export interface Routes {
|
|
|
13802
13802
|
result: null;
|
|
13803
13803
|
action_type: 'READ_CARD';
|
|
13804
13804
|
error: {
|
|
13805
|
-
type:
|
|
13805
|
+
type: 'no_card_on_encoder';
|
|
13806
13806
|
message: string;
|
|
13807
13807
|
};
|
|
13808
13808
|
} | {
|
|
@@ -14258,7 +14258,7 @@ export interface Routes {
|
|
|
14258
14258
|
result: null;
|
|
14259
14259
|
action_type: 'READ_CARD';
|
|
14260
14260
|
error: {
|
|
14261
|
-
type:
|
|
14261
|
+
type: 'no_card_on_encoder';
|
|
14262
14262
|
message: string;
|
|
14263
14263
|
};
|
|
14264
14264
|
} | {
|
|
@@ -15198,7 +15198,7 @@ export interface Routes {
|
|
|
15198
15198
|
result: null;
|
|
15199
15199
|
action_type: 'READ_CARD';
|
|
15200
15200
|
error: {
|
|
15201
|
-
type:
|
|
15201
|
+
type: 'no_card_on_encoder';
|
|
15202
15202
|
message: string;
|
|
15203
15203
|
};
|
|
15204
15204
|
} | {
|
|
@@ -15656,7 +15656,7 @@ export interface Routes {
|
|
|
15656
15656
|
result: null;
|
|
15657
15657
|
action_type: 'READ_CARD';
|
|
15658
15658
|
error: {
|
|
15659
|
-
type:
|
|
15659
|
+
type: 'no_card_on_encoder';
|
|
15660
15660
|
message: string;
|
|
15661
15661
|
};
|
|
15662
15662
|
} | {
|
|
@@ -16574,7 +16574,7 @@ export interface Routes {
|
|
|
16574
16574
|
result: null;
|
|
16575
16575
|
action_type: 'READ_CARD';
|
|
16576
16576
|
error: {
|
|
16577
|
-
type:
|
|
16577
|
+
type: 'no_card_on_encoder';
|
|
16578
16578
|
message: string;
|
|
16579
16579
|
};
|
|
16580
16580
|
} | {
|
|
@@ -17149,7 +17149,7 @@ export interface Routes {
|
|
|
17149
17149
|
result: null;
|
|
17150
17150
|
action_type: 'READ_CARD';
|
|
17151
17151
|
error: {
|
|
17152
|
-
type:
|
|
17152
|
+
type: 'no_card_on_encoder';
|
|
17153
17153
|
message: string;
|
|
17154
17154
|
};
|
|
17155
17155
|
} | {
|
|
@@ -19072,7 +19072,7 @@ export interface Routes {
|
|
|
19072
19072
|
result: null;
|
|
19073
19073
|
action_type: 'READ_CARD';
|
|
19074
19074
|
error: {
|
|
19075
|
-
type:
|
|
19075
|
+
type: 'no_card_on_encoder';
|
|
19076
19076
|
message: string;
|
|
19077
19077
|
};
|
|
19078
19078
|
} | {
|
package/package.json
CHANGED
|
@@ -30,8 +30,8 @@ const common_acs_credential = z.object({
|
|
|
30
30
|
display_name: z.string().min(1),
|
|
31
31
|
code: z.string().optional().nullable(),
|
|
32
32
|
card_number: z.string().optional().nullable(),
|
|
33
|
-
|
|
34
|
-
|
|
33
|
+
is_issued: z.boolean().optional(),
|
|
34
|
+
issued_at: z.string().datetime().optional().nullable(),
|
|
35
35
|
access_method: acs_credential_access_method_type,
|
|
36
36
|
external_type: acs_credential_external_type.optional(),
|
|
37
37
|
external_type_display_name: z.string().optional(),
|
|
@@ -250,7 +250,6 @@ export default {
|
|
|
250
250
|
code: { nullable: true, type: 'string' },
|
|
251
251
|
created_at: { format: 'date-time', type: 'string' },
|
|
252
252
|
display_name: { minLength: 1, type: 'string' },
|
|
253
|
-
encoded_at: { format: 'date-time', nullable: true, type: 'string' },
|
|
254
253
|
ends_at: { type: 'string' },
|
|
255
254
|
errors: {
|
|
256
255
|
items: {
|
|
@@ -274,10 +273,11 @@ export default {
|
|
|
274
273
|
type: 'string',
|
|
275
274
|
},
|
|
276
275
|
external_type_display_name: { type: 'string' },
|
|
277
|
-
|
|
276
|
+
is_issued: { type: 'boolean' },
|
|
278
277
|
is_latest_desired_state_synced_with_provider: { type: 'boolean' },
|
|
279
278
|
is_managed: { enum: [true], type: 'boolean' },
|
|
280
279
|
is_multi_phone_sync_credential: { type: 'boolean' },
|
|
280
|
+
issued_at: { format: 'date-time', nullable: true, type: 'string' },
|
|
281
281
|
latest_desired_state_synced_with_provider_at: {
|
|
282
282
|
format: 'date-time',
|
|
283
283
|
type: 'string',
|
|
@@ -1284,7 +1284,7 @@ export default {
|
|
|
1284
1284
|
error: {
|
|
1285
1285
|
properties: {
|
|
1286
1286
|
message: { type: 'string' },
|
|
1287
|
-
type: { type: 'string' },
|
|
1287
|
+
type: { enum: ['no_card_on_encoder'], type: 'string' },
|
|
1288
1288
|
},
|
|
1289
1289
|
required: ['type', 'message'],
|
|
1290
1290
|
type: 'object',
|
|
@@ -7069,11 +7069,6 @@ export default {
|
|
|
7069
7069
|
code: { nullable: true, type: 'string' },
|
|
7070
7070
|
created_at: { format: 'date-time', type: 'string' },
|
|
7071
7071
|
display_name: { minLength: 1, type: 'string' },
|
|
7072
|
-
encoded_at: {
|
|
7073
|
-
format: 'date-time',
|
|
7074
|
-
nullable: true,
|
|
7075
|
-
type: 'string',
|
|
7076
|
-
},
|
|
7077
7072
|
ends_at: { type: 'string' },
|
|
7078
7073
|
errors: {
|
|
7079
7074
|
items: {
|
|
@@ -7097,12 +7092,17 @@ export default {
|
|
|
7097
7092
|
type: 'string',
|
|
7098
7093
|
},
|
|
7099
7094
|
external_type_display_name: { type: 'string' },
|
|
7100
|
-
|
|
7095
|
+
is_issued: { type: 'boolean' },
|
|
7101
7096
|
is_latest_desired_state_synced_with_provider: {
|
|
7102
7097
|
type: 'boolean',
|
|
7103
7098
|
},
|
|
7104
7099
|
is_managed: { enum: [false], type: 'boolean' },
|
|
7105
7100
|
is_multi_phone_sync_credential: { type: 'boolean' },
|
|
7101
|
+
issued_at: {
|
|
7102
|
+
format: 'date-time',
|
|
7103
|
+
nullable: true,
|
|
7104
|
+
type: 'string',
|
|
7105
|
+
},
|
|
7106
7106
|
latest_desired_state_synced_with_provider_at: {
|
|
7107
7107
|
format: 'date-time',
|
|
7108
7108
|
type: 'string',
|
|
@@ -7254,11 +7254,6 @@ export default {
|
|
|
7254
7254
|
code: { nullable: true, type: 'string' },
|
|
7255
7255
|
created_at: { format: 'date-time', type: 'string' },
|
|
7256
7256
|
display_name: { minLength: 1, type: 'string' },
|
|
7257
|
-
encoded_at: {
|
|
7258
|
-
format: 'date-time',
|
|
7259
|
-
nullable: true,
|
|
7260
|
-
type: 'string',
|
|
7261
|
-
},
|
|
7262
7257
|
ends_at: { type: 'string' },
|
|
7263
7258
|
errors: {
|
|
7264
7259
|
items: {
|
|
@@ -7282,12 +7277,17 @@ export default {
|
|
|
7282
7277
|
type: 'string',
|
|
7283
7278
|
},
|
|
7284
7279
|
external_type_display_name: { type: 'string' },
|
|
7285
|
-
|
|
7280
|
+
is_issued: { type: 'boolean' },
|
|
7286
7281
|
is_latest_desired_state_synced_with_provider: {
|
|
7287
7282
|
type: 'boolean',
|
|
7288
7283
|
},
|
|
7289
7284
|
is_managed: { enum: [false], type: 'boolean' },
|
|
7290
7285
|
is_multi_phone_sync_credential: { type: 'boolean' },
|
|
7286
|
+
issued_at: {
|
|
7287
|
+
format: 'date-time',
|
|
7288
|
+
nullable: true,
|
|
7289
|
+
type: 'string',
|
|
7290
|
+
},
|
|
7291
7291
|
latest_desired_state_synced_with_provider_at: {
|
|
7292
7292
|
format: 'date-time',
|
|
7293
7293
|
type: 'string',
|
|
@@ -106,7 +106,7 @@ export interface Routes {
|
|
|
106
106
|
result: null
|
|
107
107
|
action_type: 'READ_CARD'
|
|
108
108
|
error: {
|
|
109
|
-
type:
|
|
109
|
+
type: 'no_card_on_encoder'
|
|
110
110
|
message: string
|
|
111
111
|
}
|
|
112
112
|
}
|
|
@@ -772,7 +772,7 @@ export interface Routes {
|
|
|
772
772
|
result: null
|
|
773
773
|
action_type: 'READ_CARD'
|
|
774
774
|
error: {
|
|
775
|
-
type:
|
|
775
|
+
type: 'no_card_on_encoder'
|
|
776
776
|
message: string
|
|
777
777
|
}
|
|
778
778
|
}
|
|
@@ -1603,7 +1603,7 @@ export interface Routes {
|
|
|
1603
1603
|
result: null
|
|
1604
1604
|
action_type: 'READ_CARD'
|
|
1605
1605
|
error: {
|
|
1606
|
-
type:
|
|
1606
|
+
type: 'no_card_on_encoder'
|
|
1607
1607
|
message: string
|
|
1608
1608
|
}
|
|
1609
1609
|
}
|
|
@@ -2256,7 +2256,7 @@ export interface Routes {
|
|
|
2256
2256
|
result: null
|
|
2257
2257
|
action_type: 'READ_CARD'
|
|
2258
2258
|
error: {
|
|
2259
|
-
type:
|
|
2259
|
+
type: 'no_card_on_encoder'
|
|
2260
2260
|
message: string
|
|
2261
2261
|
}
|
|
2262
2262
|
}
|
|
@@ -3092,8 +3092,8 @@ export interface Routes {
|
|
|
3092
3092
|
display_name: string
|
|
3093
3093
|
code?: (string | undefined) | null
|
|
3094
3094
|
card_number?: (string | undefined) | null
|
|
3095
|
-
|
|
3096
|
-
|
|
3095
|
+
is_issued?: boolean | undefined
|
|
3096
|
+
issued_at?: (string | undefined) | null
|
|
3097
3097
|
access_method: 'code' | 'card' | 'mobile_key'
|
|
3098
3098
|
external_type?:
|
|
3099
3099
|
| (
|
|
@@ -3177,8 +3177,8 @@ export interface Routes {
|
|
|
3177
3177
|
display_name: string
|
|
3178
3178
|
code?: (string | undefined) | null
|
|
3179
3179
|
card_number?: (string | undefined) | null
|
|
3180
|
-
|
|
3181
|
-
|
|
3180
|
+
is_issued?: boolean | undefined
|
|
3181
|
+
issued_at?: (string | undefined) | null
|
|
3182
3182
|
access_method: 'code' | 'card' | 'mobile_key'
|
|
3183
3183
|
external_type?:
|
|
3184
3184
|
| (
|
|
@@ -3251,8 +3251,8 @@ export interface Routes {
|
|
|
3251
3251
|
display_name: string
|
|
3252
3252
|
code?: (string | undefined) | null
|
|
3253
3253
|
card_number?: (string | undefined) | null
|
|
3254
|
-
|
|
3255
|
-
|
|
3254
|
+
is_issued?: boolean | undefined
|
|
3255
|
+
issued_at?: (string | undefined) | null
|
|
3256
3256
|
access_method: 'code' | 'card' | 'mobile_key'
|
|
3257
3257
|
external_type?:
|
|
3258
3258
|
| (
|
|
@@ -3330,8 +3330,8 @@ export interface Routes {
|
|
|
3330
3330
|
display_name: string
|
|
3331
3331
|
code?: (string | undefined) | null
|
|
3332
3332
|
card_number?: (string | undefined) | null
|
|
3333
|
-
|
|
3334
|
-
|
|
3333
|
+
is_issued?: boolean | undefined
|
|
3334
|
+
issued_at?: (string | undefined) | null
|
|
3335
3335
|
access_method: 'code' | 'card' | 'mobile_key'
|
|
3336
3336
|
external_type?:
|
|
3337
3337
|
| (
|
|
@@ -3457,8 +3457,8 @@ export interface Routes {
|
|
|
3457
3457
|
display_name: string
|
|
3458
3458
|
code?: (string | undefined) | null
|
|
3459
3459
|
card_number?: (string | undefined) | null
|
|
3460
|
-
|
|
3461
|
-
|
|
3460
|
+
is_issued?: boolean | undefined
|
|
3461
|
+
issued_at?: (string | undefined) | null
|
|
3462
3462
|
access_method: 'code' | 'card' | 'mobile_key'
|
|
3463
3463
|
external_type?:
|
|
3464
3464
|
| (
|
|
@@ -3520,8 +3520,8 @@ export interface Routes {
|
|
|
3520
3520
|
display_name: string
|
|
3521
3521
|
code?: (string | undefined) | null
|
|
3522
3522
|
card_number?: (string | undefined) | null
|
|
3523
|
-
|
|
3524
|
-
|
|
3523
|
+
is_issued?: boolean | undefined
|
|
3524
|
+
issued_at?: (string | undefined) | null
|
|
3525
3525
|
access_method: 'code' | 'card' | 'mobile_key'
|
|
3526
3526
|
external_type?:
|
|
3527
3527
|
| (
|
|
@@ -3594,8 +3594,8 @@ export interface Routes {
|
|
|
3594
3594
|
display_name: string
|
|
3595
3595
|
code?: (string | undefined) | null
|
|
3596
3596
|
card_number?: (string | undefined) | null
|
|
3597
|
-
|
|
3598
|
-
|
|
3597
|
+
is_issued?: boolean | undefined
|
|
3598
|
+
issued_at?: (string | undefined) | null
|
|
3599
3599
|
access_method: 'code' | 'card' | 'mobile_key'
|
|
3600
3600
|
external_type?:
|
|
3601
3601
|
| (
|
|
@@ -3659,8 +3659,8 @@ export interface Routes {
|
|
|
3659
3659
|
display_name: string
|
|
3660
3660
|
code?: (string | undefined) | null
|
|
3661
3661
|
card_number?: (string | undefined) | null
|
|
3662
|
-
|
|
3663
|
-
|
|
3662
|
+
is_issued?: boolean | undefined
|
|
3663
|
+
issued_at?: (string | undefined) | null
|
|
3664
3664
|
access_method: 'code' | 'card' | 'mobile_key'
|
|
3665
3665
|
external_type?:
|
|
3666
3666
|
| (
|
|
@@ -3799,7 +3799,7 @@ export interface Routes {
|
|
|
3799
3799
|
result: null
|
|
3800
3800
|
action_type: 'READ_CARD'
|
|
3801
3801
|
error: {
|
|
3802
|
-
type:
|
|
3802
|
+
type: 'no_card_on_encoder'
|
|
3803
3803
|
message: string
|
|
3804
3804
|
}
|
|
3805
3805
|
}
|
|
@@ -4948,7 +4948,7 @@ export interface Routes {
|
|
|
4948
4948
|
result: null
|
|
4949
4949
|
action_type: 'READ_CARD'
|
|
4950
4950
|
error: {
|
|
4951
|
-
type:
|
|
4951
|
+
type: 'no_card_on_encoder'
|
|
4952
4952
|
message: string
|
|
4953
4953
|
}
|
|
4954
4954
|
}
|
|
@@ -5523,8 +5523,8 @@ export interface Routes {
|
|
|
5523
5523
|
display_name: string
|
|
5524
5524
|
code?: (string | undefined) | null
|
|
5525
5525
|
card_number?: (string | undefined) | null
|
|
5526
|
-
|
|
5527
|
-
|
|
5526
|
+
is_issued?: boolean | undefined
|
|
5527
|
+
issued_at?: (string | undefined) | null
|
|
5528
5528
|
access_method: 'code' | 'card' | 'mobile_key'
|
|
5529
5529
|
external_type?:
|
|
5530
5530
|
| (
|
|
@@ -6851,7 +6851,7 @@ export interface Routes {
|
|
|
6851
6851
|
result: null
|
|
6852
6852
|
action_type: 'READ_CARD'
|
|
6853
6853
|
error: {
|
|
6854
|
-
type:
|
|
6854
|
+
type: 'no_card_on_encoder'
|
|
6855
6855
|
message: string
|
|
6856
6856
|
}
|
|
6857
6857
|
}
|
|
@@ -7358,7 +7358,7 @@ export interface Routes {
|
|
|
7358
7358
|
result: null
|
|
7359
7359
|
action_type: 'READ_CARD'
|
|
7360
7360
|
error: {
|
|
7361
|
-
type:
|
|
7361
|
+
type: 'no_card_on_encoder'
|
|
7362
7362
|
message: string
|
|
7363
7363
|
}
|
|
7364
7364
|
}
|
|
@@ -13251,7 +13251,7 @@ export interface Routes {
|
|
|
13251
13251
|
result: null
|
|
13252
13252
|
action_type: 'READ_CARD'
|
|
13253
13253
|
error: {
|
|
13254
|
-
type:
|
|
13254
|
+
type: 'no_card_on_encoder'
|
|
13255
13255
|
message: string
|
|
13256
13256
|
}
|
|
13257
13257
|
}
|
|
@@ -13759,7 +13759,7 @@ export interface Routes {
|
|
|
13759
13759
|
result: null
|
|
13760
13760
|
action_type: 'READ_CARD'
|
|
13761
13761
|
error: {
|
|
13762
|
-
type:
|
|
13762
|
+
type: 'no_card_on_encoder'
|
|
13763
13763
|
message: string
|
|
13764
13764
|
}
|
|
13765
13765
|
}
|
|
@@ -15703,7 +15703,7 @@ export interface Routes {
|
|
|
15703
15703
|
result: null
|
|
15704
15704
|
action_type: 'READ_CARD'
|
|
15705
15705
|
error: {
|
|
15706
|
-
type:
|
|
15706
|
+
type: 'no_card_on_encoder'
|
|
15707
15707
|
message: string
|
|
15708
15708
|
}
|
|
15709
15709
|
}
|
|
@@ -16221,7 +16221,7 @@ export interface Routes {
|
|
|
16221
16221
|
result: null
|
|
16222
16222
|
action_type: 'READ_CARD'
|
|
16223
16223
|
error: {
|
|
16224
|
-
type:
|
|
16224
|
+
type: 'no_card_on_encoder'
|
|
16225
16225
|
message: string
|
|
16226
16226
|
}
|
|
16227
16227
|
}
|
|
@@ -16778,7 +16778,7 @@ export interface Routes {
|
|
|
16778
16778
|
result: null
|
|
16779
16779
|
action_type: 'READ_CARD'
|
|
16780
16780
|
error: {
|
|
16781
|
-
type:
|
|
16781
|
+
type: 'no_card_on_encoder'
|
|
16782
16782
|
message: string
|
|
16783
16783
|
}
|
|
16784
16784
|
}
|
|
@@ -17492,7 +17492,7 @@ export interface Routes {
|
|
|
17492
17492
|
result: null
|
|
17493
17493
|
action_type: 'READ_CARD'
|
|
17494
17494
|
error: {
|
|
17495
|
-
type:
|
|
17495
|
+
type: 'no_card_on_encoder'
|
|
17496
17496
|
message: string
|
|
17497
17497
|
}
|
|
17498
17498
|
}
|
|
@@ -18002,7 +18002,7 @@ export interface Routes {
|
|
|
18002
18002
|
result: null
|
|
18003
18003
|
action_type: 'READ_CARD'
|
|
18004
18004
|
error: {
|
|
18005
|
-
type:
|
|
18005
|
+
type: 'no_card_on_encoder'
|
|
18006
18006
|
message: string
|
|
18007
18007
|
}
|
|
18008
18008
|
}
|
|
@@ -19170,7 +19170,7 @@ export interface Routes {
|
|
|
19170
19170
|
result: null
|
|
19171
19171
|
action_type: 'READ_CARD'
|
|
19172
19172
|
error: {
|
|
19173
|
-
type:
|
|
19173
|
+
type: 'no_card_on_encoder'
|
|
19174
19174
|
message: string
|
|
19175
19175
|
}
|
|
19176
19176
|
}
|
|
@@ -19682,7 +19682,7 @@ export interface Routes {
|
|
|
19682
19682
|
result: null
|
|
19683
19683
|
action_type: 'READ_CARD'
|
|
19684
19684
|
error: {
|
|
19685
|
-
type:
|
|
19685
|
+
type: 'no_card_on_encoder'
|
|
19686
19686
|
message: string
|
|
19687
19687
|
}
|
|
19688
19688
|
}
|
|
@@ -20974,7 +20974,7 @@ export interface Routes {
|
|
|
20974
20974
|
result: null
|
|
20975
20975
|
action_type: 'READ_CARD'
|
|
20976
20976
|
error: {
|
|
20977
|
-
type:
|
|
20977
|
+
type: 'no_card_on_encoder'
|
|
20978
20978
|
message: string
|
|
20979
20979
|
}
|
|
20980
20980
|
}
|
|
@@ -21603,7 +21603,7 @@ export interface Routes {
|
|
|
21603
21603
|
result: null
|
|
21604
21604
|
action_type: 'READ_CARD'
|
|
21605
21605
|
error: {
|
|
21606
|
-
type:
|
|
21606
|
+
type: 'no_card_on_encoder'
|
|
21607
21607
|
message: string
|
|
21608
21608
|
}
|
|
21609
21609
|
}
|
|
@@ -23979,7 +23979,7 @@ export interface Routes {
|
|
|
23979
23979
|
result: null
|
|
23980
23980
|
action_type: 'READ_CARD'
|
|
23981
23981
|
error: {
|
|
23982
|
-
type:
|
|
23982
|
+
type: 'no_card_on_encoder'
|
|
23983
23983
|
message: string
|
|
23984
23984
|
}
|
|
23985
23985
|
}
|