@seamapi/types 1.948.0 → 1.950.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 +27 -89
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +48 -215
- package/dist/index.cjs +27 -89
- package/dist/index.cjs.map +1 -1
- package/lib/seam/connect/models/access-codes/managed-access-code.d.ts +70 -141
- package/lib/seam/connect/models/access-codes/managed-access-code.js +10 -24
- package/lib/seam/connect/models/access-codes/managed-access-code.js.map +1 -1
- package/lib/seam/connect/models/access-codes/unmanaged-access-code.d.ts +10 -36
- package/lib/seam/connect/openapi.js +8 -62
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +22 -121
- package/package.json +1 -1
- package/src/lib/seam/connect/models/access-codes/managed-access-code.ts +27 -40
- package/src/lib/seam/connect/openapi.ts +8 -72
- package/src/lib/seam/connect/route-types.ts +22 -132
|
@@ -73,22 +73,6 @@ declare const access_code_error: z.ZodDiscriminatedUnion<"error_code", [z.ZodObj
|
|
|
73
73
|
message: z.ZodString;
|
|
74
74
|
is_access_code_error: z.ZodLiteral<true>;
|
|
75
75
|
created_at: z.ZodOptional<z.ZodString>;
|
|
76
|
-
} & {
|
|
77
|
-
error_code: z.ZodLiteral<"duplicate_code_attempt_prevented">;
|
|
78
|
-
}, "strip", z.ZodTypeAny, {
|
|
79
|
-
message: string;
|
|
80
|
-
error_code: "duplicate_code_attempt_prevented";
|
|
81
|
-
is_access_code_error: true;
|
|
82
|
-
created_at?: string | undefined;
|
|
83
|
-
}, {
|
|
84
|
-
message: string;
|
|
85
|
-
error_code: "duplicate_code_attempt_prevented";
|
|
86
|
-
is_access_code_error: true;
|
|
87
|
-
created_at?: string | undefined;
|
|
88
|
-
}>, z.ZodObject<{
|
|
89
|
-
message: z.ZodString;
|
|
90
|
-
is_access_code_error: z.ZodLiteral<true>;
|
|
91
|
-
created_at: z.ZodOptional<z.ZodString>;
|
|
92
76
|
} & {
|
|
93
77
|
error_code: z.ZodLiteral<"no_space_for_access_code_on_device">;
|
|
94
78
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -106,7 +90,7 @@ declare const access_code_error: z.ZodDiscriminatedUnion<"error_code", [z.ZodObj
|
|
|
106
90
|
is_access_code_error: z.ZodLiteral<true>;
|
|
107
91
|
created_at: z.ZodOptional<z.ZodString>;
|
|
108
92
|
} & {
|
|
109
|
-
error_code: z.ZodLiteral<"
|
|
93
|
+
error_code: z.ZodLiteral<"conflicting_external_modification">;
|
|
110
94
|
change_type: z.ZodOptional<z.ZodEnum<["modified", "removed"]>>;
|
|
111
95
|
modified_fields: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
112
96
|
field: z.ZodString;
|
|
@@ -123,7 +107,7 @@ declare const access_code_error: z.ZodDiscriminatedUnion<"error_code", [z.ZodObj
|
|
|
123
107
|
}>, "many">>;
|
|
124
108
|
}, "strip", z.ZodTypeAny, {
|
|
125
109
|
message: string;
|
|
126
|
-
error_code: "
|
|
110
|
+
error_code: "conflicting_external_modification";
|
|
127
111
|
is_access_code_error: true;
|
|
128
112
|
created_at?: string | undefined;
|
|
129
113
|
change_type?: "modified" | "removed" | undefined;
|
|
@@ -134,7 +118,7 @@ declare const access_code_error: z.ZodDiscriminatedUnion<"error_code", [z.ZodObj
|
|
|
134
118
|
}[] | undefined;
|
|
135
119
|
}, {
|
|
136
120
|
message: string;
|
|
137
|
-
error_code: "
|
|
121
|
+
error_code: "conflicting_external_modification";
|
|
138
122
|
is_access_code_error: true;
|
|
139
123
|
created_at?: string | undefined;
|
|
140
124
|
change_type?: "modified" | "removed" | undefined;
|
|
@@ -269,23 +253,6 @@ declare const _access_code_error_map: z.ZodObject<{
|
|
|
269
253
|
unmanaged_access_code_id?: string | undefined;
|
|
270
254
|
managed_access_code_id?: string | undefined;
|
|
271
255
|
}>>>;
|
|
272
|
-
duplicate_code_attempt_prevented: z.ZodNullable<z.ZodOptional<z.ZodObject<{
|
|
273
|
-
message: z.ZodString;
|
|
274
|
-
is_access_code_error: z.ZodLiteral<true>;
|
|
275
|
-
created_at: z.ZodOptional<z.ZodString>;
|
|
276
|
-
} & {
|
|
277
|
-
error_code: z.ZodLiteral<"duplicate_code_attempt_prevented">;
|
|
278
|
-
}, "strip", z.ZodTypeAny, {
|
|
279
|
-
message: string;
|
|
280
|
-
error_code: "duplicate_code_attempt_prevented";
|
|
281
|
-
is_access_code_error: true;
|
|
282
|
-
created_at?: string | undefined;
|
|
283
|
-
}, {
|
|
284
|
-
message: string;
|
|
285
|
-
error_code: "duplicate_code_attempt_prevented";
|
|
286
|
-
is_access_code_error: true;
|
|
287
|
-
created_at?: string | undefined;
|
|
288
|
-
}>>>;
|
|
289
256
|
insufficient_permissions: z.ZodNullable<z.ZodOptional<z.ZodObject<{
|
|
290
257
|
message: z.ZodString;
|
|
291
258
|
is_access_code_error: z.ZodLiteral<true>;
|
|
@@ -303,12 +270,12 @@ declare const _access_code_error_map: z.ZodObject<{
|
|
|
303
270
|
is_access_code_error: true;
|
|
304
271
|
created_at?: string | undefined;
|
|
305
272
|
}>>>;
|
|
306
|
-
|
|
273
|
+
conflicting_external_modification: z.ZodNullable<z.ZodOptional<z.ZodObject<{
|
|
307
274
|
message: z.ZodString;
|
|
308
275
|
is_access_code_error: z.ZodLiteral<true>;
|
|
309
276
|
created_at: z.ZodOptional<z.ZodString>;
|
|
310
277
|
} & {
|
|
311
|
-
error_code: z.ZodLiteral<"
|
|
278
|
+
error_code: z.ZodLiteral<"conflicting_external_modification">;
|
|
312
279
|
change_type: z.ZodOptional<z.ZodEnum<["modified", "removed"]>>;
|
|
313
280
|
modified_fields: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
314
281
|
field: z.ZodString;
|
|
@@ -325,7 +292,7 @@ declare const _access_code_error_map: z.ZodObject<{
|
|
|
325
292
|
}>, "many">>;
|
|
326
293
|
}, "strip", z.ZodTypeAny, {
|
|
327
294
|
message: string;
|
|
328
|
-
error_code: "
|
|
295
|
+
error_code: "conflicting_external_modification";
|
|
329
296
|
is_access_code_error: true;
|
|
330
297
|
created_at?: string | undefined;
|
|
331
298
|
change_type?: "modified" | "removed" | undefined;
|
|
@@ -336,7 +303,7 @@ declare const _access_code_error_map: z.ZodObject<{
|
|
|
336
303
|
}[] | undefined;
|
|
337
304
|
}, {
|
|
338
305
|
message: string;
|
|
339
|
-
error_code: "
|
|
306
|
+
error_code: "conflicting_external_modification";
|
|
340
307
|
is_access_code_error: true;
|
|
341
308
|
created_at?: string | undefined;
|
|
342
309
|
change_type?: "modified" | "removed" | undefined;
|
|
@@ -376,6 +343,18 @@ declare const _access_code_error_map: z.ZodObject<{
|
|
|
376
343
|
is_access_code_error: true;
|
|
377
344
|
created_at?: string | undefined;
|
|
378
345
|
} | null | undefined;
|
|
346
|
+
conflicting_external_modification?: {
|
|
347
|
+
message: string;
|
|
348
|
+
error_code: "conflicting_external_modification";
|
|
349
|
+
is_access_code_error: true;
|
|
350
|
+
created_at?: string | undefined;
|
|
351
|
+
change_type?: "modified" | "removed" | undefined;
|
|
352
|
+
modified_fields?: {
|
|
353
|
+
from: string | null;
|
|
354
|
+
to: string | null;
|
|
355
|
+
field: string;
|
|
356
|
+
}[] | undefined;
|
|
357
|
+
} | null | undefined;
|
|
379
358
|
failed_to_set_on_device?: {
|
|
380
359
|
message: string;
|
|
381
360
|
error_code: "failed_to_set_on_device";
|
|
@@ -396,12 +375,6 @@ declare const _access_code_error_map: z.ZodObject<{
|
|
|
396
375
|
unmanaged_access_code_id?: string | undefined;
|
|
397
376
|
managed_access_code_id?: string | undefined;
|
|
398
377
|
} | null | undefined;
|
|
399
|
-
duplicate_code_attempt_prevented?: {
|
|
400
|
-
message: string;
|
|
401
|
-
error_code: "duplicate_code_attempt_prevented";
|
|
402
|
-
is_access_code_error: true;
|
|
403
|
-
created_at?: string | undefined;
|
|
404
|
-
} | null | undefined;
|
|
405
378
|
no_space_for_access_code_on_device?: {
|
|
406
379
|
message: string;
|
|
407
380
|
error_code: "no_space_for_access_code_on_device";
|
|
@@ -414,18 +387,6 @@ declare const _access_code_error_map: z.ZodObject<{
|
|
|
414
387
|
is_access_code_error: true;
|
|
415
388
|
created_at?: string | undefined;
|
|
416
389
|
} | null | undefined;
|
|
417
|
-
code_modified_external_to_seam_error?: {
|
|
418
|
-
message: string;
|
|
419
|
-
error_code: "code_modified_external_to_seam";
|
|
420
|
-
is_access_code_error: true;
|
|
421
|
-
created_at?: string | undefined;
|
|
422
|
-
change_type?: "modified" | "removed" | undefined;
|
|
423
|
-
modified_fields?: {
|
|
424
|
-
from: string | null;
|
|
425
|
-
to: string | null;
|
|
426
|
-
field: string;
|
|
427
|
-
}[] | undefined;
|
|
428
|
-
} | null | undefined;
|
|
429
390
|
}, {
|
|
430
391
|
provider_issue?: {
|
|
431
392
|
message: string;
|
|
@@ -439,6 +400,18 @@ declare const _access_code_error_map: z.ZodObject<{
|
|
|
439
400
|
is_access_code_error: true;
|
|
440
401
|
created_at?: string | undefined;
|
|
441
402
|
} | null | undefined;
|
|
403
|
+
conflicting_external_modification?: {
|
|
404
|
+
message: string;
|
|
405
|
+
error_code: "conflicting_external_modification";
|
|
406
|
+
is_access_code_error: true;
|
|
407
|
+
created_at?: string | undefined;
|
|
408
|
+
change_type?: "modified" | "removed" | undefined;
|
|
409
|
+
modified_fields?: {
|
|
410
|
+
from: string | null;
|
|
411
|
+
to: string | null;
|
|
412
|
+
field: string;
|
|
413
|
+
}[] | undefined;
|
|
414
|
+
} | null | undefined;
|
|
442
415
|
failed_to_set_on_device?: {
|
|
443
416
|
message: string;
|
|
444
417
|
error_code: "failed_to_set_on_device";
|
|
@@ -459,12 +432,6 @@ declare const _access_code_error_map: z.ZodObject<{
|
|
|
459
432
|
unmanaged_access_code_id?: string | undefined;
|
|
460
433
|
managed_access_code_id?: string | undefined;
|
|
461
434
|
} | null | undefined;
|
|
462
|
-
duplicate_code_attempt_prevented?: {
|
|
463
|
-
message: string;
|
|
464
|
-
error_code: "duplicate_code_attempt_prevented";
|
|
465
|
-
is_access_code_error: true;
|
|
466
|
-
created_at?: string | undefined;
|
|
467
|
-
} | null | undefined;
|
|
468
435
|
no_space_for_access_code_on_device?: {
|
|
469
436
|
message: string;
|
|
470
437
|
error_code: "no_space_for_access_code_on_device";
|
|
@@ -477,18 +444,6 @@ declare const _access_code_error_map: z.ZodObject<{
|
|
|
477
444
|
is_access_code_error: true;
|
|
478
445
|
created_at?: string | undefined;
|
|
479
446
|
} | null | undefined;
|
|
480
|
-
code_modified_external_to_seam_error?: {
|
|
481
|
-
message: string;
|
|
482
|
-
error_code: "code_modified_external_to_seam";
|
|
483
|
-
is_access_code_error: true;
|
|
484
|
-
created_at?: string | undefined;
|
|
485
|
-
change_type?: "modified" | "removed" | undefined;
|
|
486
|
-
modified_fields?: {
|
|
487
|
-
from: string | null;
|
|
488
|
-
to: string | null;
|
|
489
|
-
field: string;
|
|
490
|
-
}[] | undefined;
|
|
491
|
-
} | null | undefined;
|
|
492
447
|
}>;
|
|
493
448
|
export type AccessCodeErrorMap = z.infer<typeof _access_code_error_map>;
|
|
494
449
|
declare const access_code_warning: z.ZodDiscriminatedUnion<"warning_code", [z.ZodObject<{
|
|
@@ -521,7 +476,7 @@ declare const access_code_warning: z.ZodDiscriminatedUnion<"warning_code", [z.Zo
|
|
|
521
476
|
message: z.ZodString;
|
|
522
477
|
created_at: z.ZodOptional<z.ZodString>;
|
|
523
478
|
} & {
|
|
524
|
-
warning_code: z.ZodLiteral<"
|
|
479
|
+
warning_code: z.ZodLiteral<"external_modification_in_effect">;
|
|
525
480
|
change_type: z.ZodOptional<z.ZodEnum<["modified", "removed"]>>;
|
|
526
481
|
modified_fields: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
527
482
|
field: z.ZodString;
|
|
@@ -538,7 +493,7 @@ declare const access_code_warning: z.ZodDiscriminatedUnion<"warning_code", [z.Zo
|
|
|
538
493
|
}>, "many">>;
|
|
539
494
|
}, "strip", z.ZodTypeAny, {
|
|
540
495
|
message: string;
|
|
541
|
-
warning_code: "
|
|
496
|
+
warning_code: "external_modification_in_effect";
|
|
542
497
|
created_at?: string | undefined;
|
|
543
498
|
change_type?: "modified" | "removed" | undefined;
|
|
544
499
|
modified_fields?: {
|
|
@@ -548,7 +503,7 @@ declare const access_code_warning: z.ZodDiscriminatedUnion<"warning_code", [z.Zo
|
|
|
548
503
|
}[] | undefined;
|
|
549
504
|
}, {
|
|
550
505
|
message: string;
|
|
551
|
-
warning_code: "
|
|
506
|
+
warning_code: "external_modification_in_effect";
|
|
552
507
|
created_at?: string | undefined;
|
|
553
508
|
change_type?: "modified" | "removed" | undefined;
|
|
554
509
|
modified_fields?: {
|
|
@@ -678,11 +633,11 @@ declare const _access_code_warning_map: z.ZodObject<{
|
|
|
678
633
|
warning_code: "time_frame_adjusted_for_unknown_time_zone";
|
|
679
634
|
created_at?: string | undefined;
|
|
680
635
|
}>>>;
|
|
681
|
-
|
|
636
|
+
external_modification_in_effect: z.ZodNullable<z.ZodOptional<z.ZodObject<{
|
|
682
637
|
message: z.ZodString;
|
|
683
638
|
created_at: z.ZodOptional<z.ZodString>;
|
|
684
639
|
} & {
|
|
685
|
-
warning_code: z.ZodLiteral<"
|
|
640
|
+
warning_code: z.ZodLiteral<"external_modification_in_effect">;
|
|
686
641
|
change_type: z.ZodOptional<z.ZodEnum<["modified", "removed"]>>;
|
|
687
642
|
modified_fields: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
688
643
|
field: z.ZodString;
|
|
@@ -699,7 +654,7 @@ declare const _access_code_warning_map: z.ZodObject<{
|
|
|
699
654
|
}>, "many">>;
|
|
700
655
|
}, "strip", z.ZodTypeAny, {
|
|
701
656
|
message: string;
|
|
702
|
-
warning_code: "
|
|
657
|
+
warning_code: "external_modification_in_effect";
|
|
703
658
|
created_at?: string | undefined;
|
|
704
659
|
change_type?: "modified" | "removed" | undefined;
|
|
705
660
|
modified_fields?: {
|
|
@@ -709,7 +664,7 @@ declare const _access_code_warning_map: z.ZodObject<{
|
|
|
709
664
|
}[] | undefined;
|
|
710
665
|
}, {
|
|
711
666
|
message: string;
|
|
712
|
-
warning_code: "
|
|
667
|
+
warning_code: "external_modification_in_effect";
|
|
713
668
|
created_at?: string | undefined;
|
|
714
669
|
change_type?: "modified" | "removed" | undefined;
|
|
715
670
|
modified_fields?: {
|
|
@@ -827,6 +782,17 @@ declare const _access_code_warning_map: z.ZodObject<{
|
|
|
827
782
|
warning_code: "third_party_integration_detected";
|
|
828
783
|
created_at?: string | undefined;
|
|
829
784
|
} | null | undefined;
|
|
785
|
+
external_modification_in_effect?: {
|
|
786
|
+
message: string;
|
|
787
|
+
warning_code: "external_modification_in_effect";
|
|
788
|
+
created_at?: string | undefined;
|
|
789
|
+
change_type?: "modified" | "removed" | undefined;
|
|
790
|
+
modified_fields?: {
|
|
791
|
+
from: string | null;
|
|
792
|
+
to: string | null;
|
|
793
|
+
field: string;
|
|
794
|
+
}[] | undefined;
|
|
795
|
+
} | null | undefined;
|
|
830
796
|
code_rotates_periodically?: {
|
|
831
797
|
message: string;
|
|
832
798
|
warning_code: "code_rotates_periodically";
|
|
@@ -862,17 +828,6 @@ declare const _access_code_warning_map: z.ZodObject<{
|
|
|
862
828
|
warning_code: "using_backup_access_code";
|
|
863
829
|
created_at?: string | undefined;
|
|
864
830
|
} | null | undefined;
|
|
865
|
-
code_modified_external_to_seam_warning?: {
|
|
866
|
-
message: string;
|
|
867
|
-
warning_code: "code_modified_external_to_seam";
|
|
868
|
-
created_at?: string | undefined;
|
|
869
|
-
change_type?: "modified" | "removed" | undefined;
|
|
870
|
-
modified_fields?: {
|
|
871
|
-
from: string | null;
|
|
872
|
-
to: string | null;
|
|
873
|
-
field: string;
|
|
874
|
-
}[] | undefined;
|
|
875
|
-
} | null | undefined;
|
|
876
831
|
}, {
|
|
877
832
|
being_deleted?: {
|
|
878
833
|
message: string;
|
|
@@ -884,6 +839,17 @@ declare const _access_code_warning_map: z.ZodObject<{
|
|
|
884
839
|
warning_code: "third_party_integration_detected";
|
|
885
840
|
created_at?: string | undefined;
|
|
886
841
|
} | null | undefined;
|
|
842
|
+
external_modification_in_effect?: {
|
|
843
|
+
message: string;
|
|
844
|
+
warning_code: "external_modification_in_effect";
|
|
845
|
+
created_at?: string | undefined;
|
|
846
|
+
change_type?: "modified" | "removed" | undefined;
|
|
847
|
+
modified_fields?: {
|
|
848
|
+
from: string | null;
|
|
849
|
+
to: string | null;
|
|
850
|
+
field: string;
|
|
851
|
+
}[] | undefined;
|
|
852
|
+
} | null | undefined;
|
|
887
853
|
code_rotates_periodically?: {
|
|
888
854
|
message: string;
|
|
889
855
|
warning_code: "code_rotates_periodically";
|
|
@@ -919,17 +885,6 @@ declare const _access_code_warning_map: z.ZodObject<{
|
|
|
919
885
|
warning_code: "using_backup_access_code";
|
|
920
886
|
created_at?: string | undefined;
|
|
921
887
|
} | null | undefined;
|
|
922
|
-
code_modified_external_to_seam_warning?: {
|
|
923
|
-
message: string;
|
|
924
|
-
warning_code: "code_modified_external_to_seam";
|
|
925
|
-
created_at?: string | undefined;
|
|
926
|
-
change_type?: "modified" | "removed" | undefined;
|
|
927
|
-
modified_fields?: {
|
|
928
|
-
from: string | null;
|
|
929
|
-
to: string | null;
|
|
930
|
-
field: string;
|
|
931
|
-
}[] | undefined;
|
|
932
|
-
} | null | undefined;
|
|
933
888
|
}>;
|
|
934
889
|
export type AccessCodeWarningMap = z.infer<typeof _access_code_warning_map>;
|
|
935
890
|
export declare const dormakaba_oracode_access_code_metadata: z.ZodObject<{
|
|
@@ -1045,22 +1000,6 @@ export declare const access_code: z.ZodObject<{
|
|
|
1045
1000
|
message: z.ZodString;
|
|
1046
1001
|
is_access_code_error: z.ZodLiteral<true>;
|
|
1047
1002
|
created_at: z.ZodOptional<z.ZodString>;
|
|
1048
|
-
} & {
|
|
1049
|
-
error_code: z.ZodLiteral<"duplicate_code_attempt_prevented">;
|
|
1050
|
-
}, "strip", z.ZodTypeAny, {
|
|
1051
|
-
message: string;
|
|
1052
|
-
error_code: "duplicate_code_attempt_prevented";
|
|
1053
|
-
is_access_code_error: true;
|
|
1054
|
-
created_at?: string | undefined;
|
|
1055
|
-
}, {
|
|
1056
|
-
message: string;
|
|
1057
|
-
error_code: "duplicate_code_attempt_prevented";
|
|
1058
|
-
is_access_code_error: true;
|
|
1059
|
-
created_at?: string | undefined;
|
|
1060
|
-
}>, z.ZodObject<{
|
|
1061
|
-
message: z.ZodString;
|
|
1062
|
-
is_access_code_error: z.ZodLiteral<true>;
|
|
1063
|
-
created_at: z.ZodOptional<z.ZodString>;
|
|
1064
1003
|
} & {
|
|
1065
1004
|
error_code: z.ZodLiteral<"no_space_for_access_code_on_device">;
|
|
1066
1005
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -1078,7 +1017,7 @@ export declare const access_code: z.ZodObject<{
|
|
|
1078
1017
|
is_access_code_error: z.ZodLiteral<true>;
|
|
1079
1018
|
created_at: z.ZodOptional<z.ZodString>;
|
|
1080
1019
|
} & {
|
|
1081
|
-
error_code: z.ZodLiteral<"
|
|
1020
|
+
error_code: z.ZodLiteral<"conflicting_external_modification">;
|
|
1082
1021
|
change_type: z.ZodOptional<z.ZodEnum<["modified", "removed"]>>;
|
|
1083
1022
|
modified_fields: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
1084
1023
|
field: z.ZodString;
|
|
@@ -1095,7 +1034,7 @@ export declare const access_code: z.ZodObject<{
|
|
|
1095
1034
|
}>, "many">>;
|
|
1096
1035
|
}, "strip", z.ZodTypeAny, {
|
|
1097
1036
|
message: string;
|
|
1098
|
-
error_code: "
|
|
1037
|
+
error_code: "conflicting_external_modification";
|
|
1099
1038
|
is_access_code_error: true;
|
|
1100
1039
|
created_at?: string | undefined;
|
|
1101
1040
|
change_type?: "modified" | "removed" | undefined;
|
|
@@ -1106,7 +1045,7 @@ export declare const access_code: z.ZodObject<{
|
|
|
1106
1045
|
}[] | undefined;
|
|
1107
1046
|
}, {
|
|
1108
1047
|
message: string;
|
|
1109
|
-
error_code: "
|
|
1048
|
+
error_code: "conflicting_external_modification";
|
|
1110
1049
|
is_access_code_error: true;
|
|
1111
1050
|
created_at?: string | undefined;
|
|
1112
1051
|
change_type?: "modified" | "removed" | undefined;
|
|
@@ -1551,7 +1490,7 @@ export declare const access_code: z.ZodObject<{
|
|
|
1551
1490
|
message: z.ZodString;
|
|
1552
1491
|
created_at: z.ZodOptional<z.ZodString>;
|
|
1553
1492
|
} & {
|
|
1554
|
-
warning_code: z.ZodLiteral<"
|
|
1493
|
+
warning_code: z.ZodLiteral<"external_modification_in_effect">;
|
|
1555
1494
|
change_type: z.ZodOptional<z.ZodEnum<["modified", "removed"]>>;
|
|
1556
1495
|
modified_fields: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
1557
1496
|
field: z.ZodString;
|
|
@@ -1568,7 +1507,7 @@ export declare const access_code: z.ZodObject<{
|
|
|
1568
1507
|
}>, "many">>;
|
|
1569
1508
|
}, "strip", z.ZodTypeAny, {
|
|
1570
1509
|
message: string;
|
|
1571
|
-
warning_code: "
|
|
1510
|
+
warning_code: "external_modification_in_effect";
|
|
1572
1511
|
created_at?: string | undefined;
|
|
1573
1512
|
change_type?: "modified" | "removed" | undefined;
|
|
1574
1513
|
modified_fields?: {
|
|
@@ -1578,7 +1517,7 @@ export declare const access_code: z.ZodObject<{
|
|
|
1578
1517
|
}[] | undefined;
|
|
1579
1518
|
}, {
|
|
1580
1519
|
message: string;
|
|
1581
|
-
warning_code: "
|
|
1520
|
+
warning_code: "external_modification_in_effect";
|
|
1582
1521
|
created_at?: string | undefined;
|
|
1583
1522
|
change_type?: "modified" | "removed" | undefined;
|
|
1584
1523
|
modified_fields?: {
|
|
@@ -2011,7 +1950,7 @@ export declare const access_code: z.ZodObject<{
|
|
|
2011
1950
|
created_at?: string | undefined;
|
|
2012
1951
|
} | {
|
|
2013
1952
|
message: string;
|
|
2014
|
-
error_code: "
|
|
1953
|
+
error_code: "conflicting_external_modification";
|
|
2015
1954
|
is_access_code_error: true;
|
|
2016
1955
|
created_at?: string | undefined;
|
|
2017
1956
|
change_type?: "modified" | "removed" | undefined;
|
|
@@ -2037,11 +1976,6 @@ export declare const access_code: z.ZodObject<{
|
|
|
2037
1976
|
created_at?: string | undefined;
|
|
2038
1977
|
unmanaged_access_code_id?: string | undefined;
|
|
2039
1978
|
managed_access_code_id?: string | undefined;
|
|
2040
|
-
} | {
|
|
2041
|
-
message: string;
|
|
2042
|
-
error_code: "duplicate_code_attempt_prevented";
|
|
2043
|
-
is_access_code_error: true;
|
|
2044
|
-
created_at?: string | undefined;
|
|
2045
1979
|
} | {
|
|
2046
1980
|
message: string;
|
|
2047
1981
|
error_code: "no_space_for_access_code_on_device";
|
|
@@ -2060,7 +1994,7 @@ export declare const access_code: z.ZodObject<{
|
|
|
2060
1994
|
})[];
|
|
2061
1995
|
warnings: ({
|
|
2062
1996
|
message: string;
|
|
2063
|
-
warning_code: "
|
|
1997
|
+
warning_code: "external_modification_in_effect";
|
|
2064
1998
|
created_at?: string | undefined;
|
|
2065
1999
|
change_type?: "modified" | "removed" | undefined;
|
|
2066
2000
|
modified_fields?: {
|
|
@@ -2299,7 +2233,7 @@ export declare const access_code: z.ZodObject<{
|
|
|
2299
2233
|
created_at?: string | undefined;
|
|
2300
2234
|
} | {
|
|
2301
2235
|
message: string;
|
|
2302
|
-
error_code: "
|
|
2236
|
+
error_code: "conflicting_external_modification";
|
|
2303
2237
|
is_access_code_error: true;
|
|
2304
2238
|
created_at?: string | undefined;
|
|
2305
2239
|
change_type?: "modified" | "removed" | undefined;
|
|
@@ -2325,11 +2259,6 @@ export declare const access_code: z.ZodObject<{
|
|
|
2325
2259
|
created_at?: string | undefined;
|
|
2326
2260
|
unmanaged_access_code_id?: string | undefined;
|
|
2327
2261
|
managed_access_code_id?: string | undefined;
|
|
2328
|
-
} | {
|
|
2329
|
-
message: string;
|
|
2330
|
-
error_code: "duplicate_code_attempt_prevented";
|
|
2331
|
-
is_access_code_error: true;
|
|
2332
|
-
created_at?: string | undefined;
|
|
2333
2262
|
} | {
|
|
2334
2263
|
message: string;
|
|
2335
2264
|
error_code: "no_space_for_access_code_on_device";
|
|
@@ -2348,7 +2277,7 @@ export declare const access_code: z.ZodObject<{
|
|
|
2348
2277
|
})[];
|
|
2349
2278
|
warnings: ({
|
|
2350
2279
|
message: string;
|
|
2351
|
-
warning_code: "
|
|
2280
|
+
warning_code: "external_modification_in_effect";
|
|
2352
2281
|
created_at?: string | undefined;
|
|
2353
2282
|
change_type?: "modified" | "removed" | undefined;
|
|
2354
2283
|
modified_fields?: {
|
|
@@ -30,9 +30,9 @@ const modified_field = z.object({
|
|
|
30
30
|
from: z.string().nullable().describe('The previous value of the field.'),
|
|
31
31
|
to: z.string().nullable().describe('The new value of the field.'),
|
|
32
32
|
});
|
|
33
|
-
const
|
|
33
|
+
const conflicting_external_modification_error = common_access_code_error.extend({
|
|
34
34
|
error_code: z
|
|
35
|
-
.literal('
|
|
35
|
+
.literal('conflicting_external_modification')
|
|
36
36
|
.describe(error_code_description),
|
|
37
37
|
change_type: z
|
|
38
38
|
.enum(['modified', 'removed'])
|
|
@@ -46,7 +46,7 @@ const code_modified_external_to_seam_error = common_access_code_error.extend({
|
|
|
46
46
|
---
|
|
47
47
|
resource_type: access_code
|
|
48
48
|
---
|
|
49
|
-
Code was modified or removed externally after Seam successfully set it on the device.
|
|
49
|
+
Code was modified or removed externally after Seam successfully set it on the device. The external change conflicts with the state that Seam is trying to apply, so Seam will attempt to set the code on the device again.
|
|
50
50
|
`);
|
|
51
51
|
const failed_to_set_on_device = common_access_code_error.extend({
|
|
52
52
|
error_code: z
|
|
@@ -88,16 +88,6 @@ const duplicate_code_on_device = common_access_code_error.extend({
|
|
|
88
88
|
---
|
|
89
89
|
Duplicate access code detected on device.
|
|
90
90
|
`);
|
|
91
|
-
const duplicate_code_attempt_prevented = common_access_code_error.extend({
|
|
92
|
-
error_code: z
|
|
93
|
-
.literal('duplicate_code_attempt_prevented')
|
|
94
|
-
.describe(error_code_description),
|
|
95
|
-
}).describe(`
|
|
96
|
-
---
|
|
97
|
-
resource_type: access_code
|
|
98
|
-
---
|
|
99
|
-
An attempt to modify this access code was prevented.
|
|
100
|
-
`);
|
|
101
91
|
const no_space_for_access_code_on_device = common_access_code_error.extend({
|
|
102
92
|
error_code: z
|
|
103
93
|
.literal('no_space_for_access_code_on_device')
|
|
@@ -134,9 +124,8 @@ const access_code_error = z
|
|
|
134
124
|
failed_to_set_on_device,
|
|
135
125
|
failed_to_remove_from_device,
|
|
136
126
|
duplicate_code_on_device,
|
|
137
|
-
duplicate_code_attempt_prevented,
|
|
138
127
|
no_space_for_access_code_on_device,
|
|
139
|
-
|
|
128
|
+
conflicting_external_modification_error,
|
|
140
129
|
access_code_inactive_error,
|
|
141
130
|
insufficient_permissions,
|
|
142
131
|
])
|
|
@@ -151,11 +140,8 @@ const _access_code_error_map = z.object({
|
|
|
151
140
|
.optional()
|
|
152
141
|
.nullable(),
|
|
153
142
|
duplicate_code_on_device: duplicate_code_on_device.optional().nullable(),
|
|
154
|
-
duplicate_code_attempt_prevented: duplicate_code_attempt_prevented
|
|
155
|
-
.optional()
|
|
156
|
-
.nullable(),
|
|
157
143
|
insufficient_permissions: insufficient_permissions.optional().nullable(),
|
|
158
|
-
|
|
144
|
+
conflicting_external_modification: conflicting_external_modification_error
|
|
159
145
|
.optional()
|
|
160
146
|
.nullable(),
|
|
161
147
|
access_code_inactive: access_code_inactive_error.optional().nullable(),
|
|
@@ -171,10 +157,10 @@ const common_access_code_warning = z.object({
|
|
|
171
157
|
.describe('Date and time at which Seam created the warning.'),
|
|
172
158
|
});
|
|
173
159
|
const warning_code_description = 'Unique identifier of the type of warning. Enables quick recognition and categorization of the issue.';
|
|
174
|
-
const
|
|
160
|
+
const external_modification_in_effect_warning = common_access_code_warning
|
|
175
161
|
.extend({
|
|
176
162
|
warning_code: z
|
|
177
|
-
.literal('
|
|
163
|
+
.literal('external_modification_in_effect')
|
|
178
164
|
.describe(warning_code_description),
|
|
179
165
|
change_type: z
|
|
180
166
|
.enum(['modified', 'removed'])
|
|
@@ -185,7 +171,7 @@ const code_modified_external_to_seam_warning = common_access_code_warning
|
|
|
185
171
|
.optional()
|
|
186
172
|
.describe('List of fields that were changed externally, with their previous and new values.'),
|
|
187
173
|
})
|
|
188
|
-
.describe('Code was modified or removed externally after Seam successfully set it on the device.');
|
|
174
|
+
.describe('Code was modified or removed externally after Seam successfully set it on the device. External modification is allowed for this code, so the externally modified state is being honored.');
|
|
189
175
|
const code_rotates_periodically = common_access_code_warning
|
|
190
176
|
.extend({
|
|
191
177
|
warning_code: z
|
|
@@ -251,7 +237,7 @@ const access_code_warning = z
|
|
|
251
237
|
.discriminatedUnion('warning_code', [
|
|
252
238
|
code_rotates_periodically,
|
|
253
239
|
time_frame_adjusted_for_unknown_time_zone,
|
|
254
|
-
|
|
240
|
+
external_modification_in_effect_warning,
|
|
255
241
|
delay_in_setting_on_device,
|
|
256
242
|
delay_in_removing_from_device,
|
|
257
243
|
third_party_integration_detected,
|
|
@@ -264,7 +250,7 @@ const access_code_warning = z
|
|
|
264
250
|
const _access_code_warning_map = z.object({
|
|
265
251
|
code_rotates_periodically: code_rotates_periodically.optional().nullable(),
|
|
266
252
|
time_frame_adjusted_for_unknown_time_zone: time_frame_adjusted_for_unknown_time_zone.optional().nullable(),
|
|
267
|
-
|
|
253
|
+
external_modification_in_effect: external_modification_in_effect_warning
|
|
268
254
|
.optional()
|
|
269
255
|
.nullable(),
|
|
270
256
|
delay_in_setting_on_device: delay_in_setting_on_device.optional().nullable(),
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"managed-access-code.js","sourceRoot":"","sources":["../../../../../src/lib/seam/connect/models/access-codes/managed-access-code.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAA;AAEvB,OAAO,EAAE,0CAA0C,EAAE,MAAM,qBAAqB,CAAA;AAChF,OAAO,EAAE,6BAA6B,EAAE,MAAM,wBAAwB,CAAA;AAEtE,MAAM,wBAAwB,GAAG,CAAC,CAAC,MAAM,CAAC;IACxC,OAAO,EAAE,CAAC;SACP,MAAM,EAAE;SACR,QAAQ,CACP,wGAAwG,CACzG;IACH,oBAAoB,EAAE,CAAC;SACpB,OAAO,CAAC,IAAI,CAAC;SACb,QAAQ,CAAC,8CAA8C,CAAC;IAC3D,UAAU,EAAE,CAAC;SACV,MAAM,EAAE;SACR,QAAQ,EAAE;SACV,QAAQ,EAAE;SACV,QAAQ,CAAC,gDAAgD,CAAC;CAC9D,CAAC,CAAA;AAEF,MAAM,sBAAsB,GAC1B,oGAAoG,CAAA;AAEtG,MAAM,cAAc,GAAG,wBAAwB,CAAC,MAAM,CAAC;IACrD,UAAU,EAAE,CAAC,CAAC,OAAO,CAAC,gBAAgB,CAAC,CAAC,QAAQ,CAAC,sBAAsB,CAAC;CACzE,CAAC,CAAC,QAAQ,CAAC;;;;;KAKP,CAAC,CAAA;AAEN,MAAM,cAAc,GAAG,CAAC,CAAC,MAAM,CAAC;IAC9B,KAAK,EAAE,CAAC;SACL,MAAM,EAAE;SACR,QAAQ,CACP,+EAA+E,CAChF;IACH,IAAI,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,EAAE,CAAC,QAAQ,CAAC,kCAAkC,CAAC;IACxE,EAAE,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,EAAE,CAAC,QAAQ,CAAC,6BAA6B,CAAC;CAClE,CAAC,CAAA;AAEF,MAAM,
|
|
1
|
+
{"version":3,"file":"managed-access-code.js","sourceRoot":"","sources":["../../../../../src/lib/seam/connect/models/access-codes/managed-access-code.ts"],"names":[],"mappings":"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"}
|