@seamapi/types 1.374.0 → 1.375.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 +154 -63
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +767 -116
- package/lib/seam/connect/models/access-codes/managed-access-code.d.ts +93 -15
- package/lib/seam/connect/models/access-codes/unmanaged-access-code.d.ts +93 -15
- package/lib/seam/connect/models/acs/acs-system.d.ts +55 -0
- package/lib/seam/connect/models/acs/acs-system.js +9 -1
- package/lib/seam/connect/models/acs/acs-system.js.map +1 -1
- package/lib/seam/connect/models/connected-accounts/connected-account.d.ts +200 -48
- package/lib/seam/connect/models/connected-accounts/connected-account.js +9 -1
- package/lib/seam/connect/models/connected-accounts/connected-account.js.map +1 -1
- package/lib/seam/connect/models/devices/device.d.ts +118 -24
- package/lib/seam/connect/models/devices/unmanaged-device.d.ts +61 -15
- package/lib/seam/connect/openapi.d.ts +58 -8
- package/lib/seam/connect/openapi.js +138 -61
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +314 -33
- package/package.json +1 -1
- package/src/lib/seam/connect/models/acs/acs-system.ts +10 -1
- package/src/lib/seam/connect/models/connected-accounts/connected-account.ts +10 -1
- package/src/lib/seam/connect/openapi.ts +157 -61
- package/src/lib/seam/connect/route-types.ts +345 -33
|
@@ -1934,39 +1934,65 @@ export declare const access_code: z.ZodObject<{
|
|
|
1934
1934
|
}>, ...(z.ZodObject<z.objectUtil.extendShape<{
|
|
1935
1935
|
created_at: z.ZodString;
|
|
1936
1936
|
message: z.ZodString;
|
|
1937
|
-
is_connected_account_error: z.
|
|
1937
|
+
is_connected_account_error: z.ZodOptional<z.ZodBoolean>;
|
|
1938
|
+
is_bridge_error: z.ZodOptional<z.ZodBoolean>;
|
|
1938
1939
|
}, {
|
|
1939
1940
|
error_code: z.ZodLiteral<"account_disconnected">;
|
|
1940
1941
|
}>, "strip", z.ZodTypeAny, {
|
|
1941
1942
|
message: string;
|
|
1942
1943
|
created_at: string;
|
|
1943
1944
|
error_code: "account_disconnected";
|
|
1944
|
-
is_connected_account_error
|
|
1945
|
+
is_connected_account_error?: boolean | undefined;
|
|
1946
|
+
is_bridge_error?: boolean | undefined;
|
|
1945
1947
|
}, {
|
|
1946
1948
|
message: string;
|
|
1947
1949
|
created_at: string;
|
|
1948
1950
|
error_code: "account_disconnected";
|
|
1949
|
-
is_connected_account_error
|
|
1951
|
+
is_connected_account_error?: boolean | undefined;
|
|
1952
|
+
is_bridge_error?: boolean | undefined;
|
|
1950
1953
|
}> | z.ZodObject<z.objectUtil.extendShape<{
|
|
1951
1954
|
created_at: z.ZodString;
|
|
1952
1955
|
message: z.ZodString;
|
|
1953
|
-
is_connected_account_error: z.
|
|
1956
|
+
is_connected_account_error: z.ZodOptional<z.ZodBoolean>;
|
|
1957
|
+
is_bridge_error: z.ZodOptional<z.ZodBoolean>;
|
|
1954
1958
|
}, {
|
|
1955
1959
|
error_code: z.ZodLiteral<"invalid_credentials">;
|
|
1956
1960
|
}>, "strip", z.ZodTypeAny, {
|
|
1957
1961
|
message: string;
|
|
1958
1962
|
created_at: string;
|
|
1959
1963
|
error_code: "invalid_credentials";
|
|
1960
|
-
is_connected_account_error
|
|
1964
|
+
is_connected_account_error?: boolean | undefined;
|
|
1965
|
+
is_bridge_error?: boolean | undefined;
|
|
1961
1966
|
}, {
|
|
1962
1967
|
message: string;
|
|
1963
1968
|
created_at: string;
|
|
1964
1969
|
error_code: "invalid_credentials";
|
|
1965
|
-
is_connected_account_error
|
|
1970
|
+
is_connected_account_error?: boolean | undefined;
|
|
1971
|
+
is_bridge_error?: boolean | undefined;
|
|
1966
1972
|
}> | z.ZodObject<z.objectUtil.extendShape<{
|
|
1967
1973
|
created_at: z.ZodString;
|
|
1968
1974
|
message: z.ZodString;
|
|
1969
|
-
is_connected_account_error: z.
|
|
1975
|
+
is_connected_account_error: z.ZodOptional<z.ZodBoolean>;
|
|
1976
|
+
is_bridge_error: z.ZodOptional<z.ZodBoolean>;
|
|
1977
|
+
}, {
|
|
1978
|
+
error_code: z.ZodLiteral<"bridge_disconnected">;
|
|
1979
|
+
}>, "strip", z.ZodTypeAny, {
|
|
1980
|
+
message: string;
|
|
1981
|
+
created_at: string;
|
|
1982
|
+
error_code: "bridge_disconnected";
|
|
1983
|
+
is_connected_account_error?: boolean | undefined;
|
|
1984
|
+
is_bridge_error?: boolean | undefined;
|
|
1985
|
+
}, {
|
|
1986
|
+
message: string;
|
|
1987
|
+
created_at: string;
|
|
1988
|
+
error_code: "bridge_disconnected";
|
|
1989
|
+
is_connected_account_error?: boolean | undefined;
|
|
1990
|
+
is_bridge_error?: boolean | undefined;
|
|
1991
|
+
}> | z.ZodObject<z.objectUtil.extendShape<{
|
|
1992
|
+
created_at: z.ZodString;
|
|
1993
|
+
message: z.ZodString;
|
|
1994
|
+
is_connected_account_error: z.ZodOptional<z.ZodBoolean>;
|
|
1995
|
+
is_bridge_error: z.ZodOptional<z.ZodBoolean>;
|
|
1970
1996
|
}, {
|
|
1971
1997
|
error_code: z.ZodLiteral<"salto_ks_subscription_limit_exceeded">;
|
|
1972
1998
|
salto_ks_metadata: z.ZodObject<{
|
|
@@ -2005,7 +2031,6 @@ export declare const access_code: z.ZodObject<{
|
|
|
2005
2031
|
message: string;
|
|
2006
2032
|
created_at: string;
|
|
2007
2033
|
error_code: "salto_ks_subscription_limit_exceeded";
|
|
2008
|
-
is_connected_account_error: true;
|
|
2009
2034
|
salto_ks_metadata: {
|
|
2010
2035
|
sites: {
|
|
2011
2036
|
site_id: string;
|
|
@@ -2014,11 +2039,12 @@ export declare const access_code: z.ZodObject<{
|
|
|
2014
2039
|
site_user_subscription_limit: number;
|
|
2015
2040
|
}[];
|
|
2016
2041
|
};
|
|
2042
|
+
is_connected_account_error?: boolean | undefined;
|
|
2043
|
+
is_bridge_error?: boolean | undefined;
|
|
2017
2044
|
}, {
|
|
2018
2045
|
message: string;
|
|
2019
2046
|
created_at: string;
|
|
2020
2047
|
error_code: "salto_ks_subscription_limit_exceeded";
|
|
2021
|
-
is_connected_account_error: true;
|
|
2022
2048
|
salto_ks_metadata: {
|
|
2023
2049
|
sites: {
|
|
2024
2050
|
site_id: string;
|
|
@@ -2027,6 +2053,8 @@ export declare const access_code: z.ZodObject<{
|
|
|
2027
2053
|
site_user_subscription_limit: number;
|
|
2028
2054
|
}[];
|
|
2029
2055
|
};
|
|
2056
|
+
is_connected_account_error?: boolean | undefined;
|
|
2057
|
+
is_bridge_error?: boolean | undefined;
|
|
2030
2058
|
}> | z.ZodObject<z.objectUtil.extendShape<{
|
|
2031
2059
|
message: z.ZodString;
|
|
2032
2060
|
is_device_error: z.ZodLiteral<true>;
|
|
@@ -2095,6 +2123,26 @@ export declare const access_code: z.ZodObject<{
|
|
|
2095
2123
|
message: z.ZodString;
|
|
2096
2124
|
is_device_error: z.ZodLiteral<true>;
|
|
2097
2125
|
created_at: z.ZodString;
|
|
2126
|
+
}, {
|
|
2127
|
+
error_code: z.ZodLiteral<"account_disconnected">;
|
|
2128
|
+
is_connected_account_error: z.ZodLiteral<true>;
|
|
2129
|
+
is_device_error: z.ZodLiteral<false>;
|
|
2130
|
+
}>, "strip", z.ZodTypeAny, {
|
|
2131
|
+
message: string;
|
|
2132
|
+
created_at: string;
|
|
2133
|
+
error_code: "account_disconnected";
|
|
2134
|
+
is_connected_account_error: true;
|
|
2135
|
+
is_device_error: false;
|
|
2136
|
+
}, {
|
|
2137
|
+
message: string;
|
|
2138
|
+
created_at: string;
|
|
2139
|
+
error_code: "account_disconnected";
|
|
2140
|
+
is_connected_account_error: true;
|
|
2141
|
+
is_device_error: false;
|
|
2142
|
+
}> | z.ZodObject<z.objectUtil.extendShape<{
|
|
2143
|
+
message: z.ZodString;
|
|
2144
|
+
is_device_error: z.ZodLiteral<true>;
|
|
2145
|
+
created_at: z.ZodString;
|
|
2098
2146
|
}, {
|
|
2099
2147
|
error_code: z.ZodLiteral<"empty_backup_access_code_pool">;
|
|
2100
2148
|
}>, "strip", z.ZodTypeAny, {
|
|
@@ -2402,17 +2450,24 @@ export declare const access_code: z.ZodObject<{
|
|
|
2402
2450
|
message: string;
|
|
2403
2451
|
created_at: string;
|
|
2404
2452
|
error_code: "account_disconnected";
|
|
2405
|
-
is_connected_account_error
|
|
2453
|
+
is_connected_account_error?: boolean | undefined;
|
|
2454
|
+
is_bridge_error?: boolean | undefined;
|
|
2406
2455
|
} | {
|
|
2407
2456
|
message: string;
|
|
2408
2457
|
created_at: string;
|
|
2409
2458
|
error_code: "invalid_credentials";
|
|
2410
|
-
is_connected_account_error
|
|
2459
|
+
is_connected_account_error?: boolean | undefined;
|
|
2460
|
+
is_bridge_error?: boolean | undefined;
|
|
2461
|
+
} | {
|
|
2462
|
+
message: string;
|
|
2463
|
+
created_at: string;
|
|
2464
|
+
error_code: "bridge_disconnected";
|
|
2465
|
+
is_connected_account_error?: boolean | undefined;
|
|
2466
|
+
is_bridge_error?: boolean | undefined;
|
|
2411
2467
|
} | {
|
|
2412
2468
|
message: string;
|
|
2413
2469
|
created_at: string;
|
|
2414
2470
|
error_code: "salto_ks_subscription_limit_exceeded";
|
|
2415
|
-
is_connected_account_error: true;
|
|
2416
2471
|
salto_ks_metadata: {
|
|
2417
2472
|
sites: {
|
|
2418
2473
|
site_id: string;
|
|
@@ -2421,6 +2476,8 @@ export declare const access_code: z.ZodObject<{
|
|
|
2421
2476
|
site_user_subscription_limit: number;
|
|
2422
2477
|
}[];
|
|
2423
2478
|
};
|
|
2479
|
+
is_connected_account_error?: boolean | undefined;
|
|
2480
|
+
is_bridge_error?: boolean | undefined;
|
|
2424
2481
|
} | {
|
|
2425
2482
|
message: string;
|
|
2426
2483
|
created_at: string;
|
|
@@ -2441,6 +2498,12 @@ export declare const access_code: z.ZodObject<{
|
|
|
2441
2498
|
created_at: string;
|
|
2442
2499
|
error_code: "device_disconnected";
|
|
2443
2500
|
is_device_error: true;
|
|
2501
|
+
} | {
|
|
2502
|
+
message: string;
|
|
2503
|
+
created_at: string;
|
|
2504
|
+
error_code: "account_disconnected";
|
|
2505
|
+
is_connected_account_error: true;
|
|
2506
|
+
is_device_error: false;
|
|
2444
2507
|
} | {
|
|
2445
2508
|
message: string;
|
|
2446
2509
|
created_at: string;
|
|
@@ -2676,17 +2739,24 @@ export declare const access_code: z.ZodObject<{
|
|
|
2676
2739
|
message: string;
|
|
2677
2740
|
created_at: string;
|
|
2678
2741
|
error_code: "account_disconnected";
|
|
2679
|
-
is_connected_account_error
|
|
2742
|
+
is_connected_account_error?: boolean | undefined;
|
|
2743
|
+
is_bridge_error?: boolean | undefined;
|
|
2680
2744
|
} | {
|
|
2681
2745
|
message: string;
|
|
2682
2746
|
created_at: string;
|
|
2683
2747
|
error_code: "invalid_credentials";
|
|
2684
|
-
is_connected_account_error
|
|
2748
|
+
is_connected_account_error?: boolean | undefined;
|
|
2749
|
+
is_bridge_error?: boolean | undefined;
|
|
2750
|
+
} | {
|
|
2751
|
+
message: string;
|
|
2752
|
+
created_at: string;
|
|
2753
|
+
error_code: "bridge_disconnected";
|
|
2754
|
+
is_connected_account_error?: boolean | undefined;
|
|
2755
|
+
is_bridge_error?: boolean | undefined;
|
|
2685
2756
|
} | {
|
|
2686
2757
|
message: string;
|
|
2687
2758
|
created_at: string;
|
|
2688
2759
|
error_code: "salto_ks_subscription_limit_exceeded";
|
|
2689
|
-
is_connected_account_error: true;
|
|
2690
2760
|
salto_ks_metadata: {
|
|
2691
2761
|
sites: {
|
|
2692
2762
|
site_id: string;
|
|
@@ -2695,6 +2765,8 @@ export declare const access_code: z.ZodObject<{
|
|
|
2695
2765
|
site_user_subscription_limit: number;
|
|
2696
2766
|
}[];
|
|
2697
2767
|
};
|
|
2768
|
+
is_connected_account_error?: boolean | undefined;
|
|
2769
|
+
is_bridge_error?: boolean | undefined;
|
|
2698
2770
|
} | {
|
|
2699
2771
|
message: string;
|
|
2700
2772
|
created_at: string;
|
|
@@ -2715,6 +2787,12 @@ export declare const access_code: z.ZodObject<{
|
|
|
2715
2787
|
created_at: string;
|
|
2716
2788
|
error_code: "device_disconnected";
|
|
2717
2789
|
is_device_error: true;
|
|
2790
|
+
} | {
|
|
2791
|
+
message: string;
|
|
2792
|
+
created_at: string;
|
|
2793
|
+
error_code: "account_disconnected";
|
|
2794
|
+
is_connected_account_error: true;
|
|
2795
|
+
is_device_error: false;
|
|
2718
2796
|
} | {
|
|
2719
2797
|
message: string;
|
|
2720
2798
|
created_at: string;
|
|
@@ -396,39 +396,65 @@ export declare const unmanaged_access_code: z.ZodObject<z.objectUtil.extendShape
|
|
|
396
396
|
}>, ...(z.ZodObject<z.objectUtil.extendShape<{
|
|
397
397
|
created_at: z.ZodString;
|
|
398
398
|
message: z.ZodString;
|
|
399
|
-
is_connected_account_error: z.
|
|
399
|
+
is_connected_account_error: z.ZodOptional<z.ZodBoolean>;
|
|
400
|
+
is_bridge_error: z.ZodOptional<z.ZodBoolean>;
|
|
400
401
|
}, {
|
|
401
402
|
error_code: z.ZodLiteral<"account_disconnected">;
|
|
402
403
|
}>, "strip", z.ZodTypeAny, {
|
|
403
404
|
message: string;
|
|
404
405
|
created_at: string;
|
|
405
406
|
error_code: "account_disconnected";
|
|
406
|
-
is_connected_account_error
|
|
407
|
+
is_connected_account_error?: boolean | undefined;
|
|
408
|
+
is_bridge_error?: boolean | undefined;
|
|
407
409
|
}, {
|
|
408
410
|
message: string;
|
|
409
411
|
created_at: string;
|
|
410
412
|
error_code: "account_disconnected";
|
|
411
|
-
is_connected_account_error
|
|
413
|
+
is_connected_account_error?: boolean | undefined;
|
|
414
|
+
is_bridge_error?: boolean | undefined;
|
|
412
415
|
}> | z.ZodObject<z.objectUtil.extendShape<{
|
|
413
416
|
created_at: z.ZodString;
|
|
414
417
|
message: z.ZodString;
|
|
415
|
-
is_connected_account_error: z.
|
|
418
|
+
is_connected_account_error: z.ZodOptional<z.ZodBoolean>;
|
|
419
|
+
is_bridge_error: z.ZodOptional<z.ZodBoolean>;
|
|
416
420
|
}, {
|
|
417
421
|
error_code: z.ZodLiteral<"invalid_credentials">;
|
|
418
422
|
}>, "strip", z.ZodTypeAny, {
|
|
419
423
|
message: string;
|
|
420
424
|
created_at: string;
|
|
421
425
|
error_code: "invalid_credentials";
|
|
422
|
-
is_connected_account_error
|
|
426
|
+
is_connected_account_error?: boolean | undefined;
|
|
427
|
+
is_bridge_error?: boolean | undefined;
|
|
423
428
|
}, {
|
|
424
429
|
message: string;
|
|
425
430
|
created_at: string;
|
|
426
431
|
error_code: "invalid_credentials";
|
|
427
|
-
is_connected_account_error
|
|
432
|
+
is_connected_account_error?: boolean | undefined;
|
|
433
|
+
is_bridge_error?: boolean | undefined;
|
|
428
434
|
}> | z.ZodObject<z.objectUtil.extendShape<{
|
|
429
435
|
created_at: z.ZodString;
|
|
430
436
|
message: z.ZodString;
|
|
431
|
-
is_connected_account_error: z.
|
|
437
|
+
is_connected_account_error: z.ZodOptional<z.ZodBoolean>;
|
|
438
|
+
is_bridge_error: z.ZodOptional<z.ZodBoolean>;
|
|
439
|
+
}, {
|
|
440
|
+
error_code: z.ZodLiteral<"bridge_disconnected">;
|
|
441
|
+
}>, "strip", z.ZodTypeAny, {
|
|
442
|
+
message: string;
|
|
443
|
+
created_at: string;
|
|
444
|
+
error_code: "bridge_disconnected";
|
|
445
|
+
is_connected_account_error?: boolean | undefined;
|
|
446
|
+
is_bridge_error?: boolean | undefined;
|
|
447
|
+
}, {
|
|
448
|
+
message: string;
|
|
449
|
+
created_at: string;
|
|
450
|
+
error_code: "bridge_disconnected";
|
|
451
|
+
is_connected_account_error?: boolean | undefined;
|
|
452
|
+
is_bridge_error?: boolean | undefined;
|
|
453
|
+
}> | z.ZodObject<z.objectUtil.extendShape<{
|
|
454
|
+
created_at: z.ZodString;
|
|
455
|
+
message: z.ZodString;
|
|
456
|
+
is_connected_account_error: z.ZodOptional<z.ZodBoolean>;
|
|
457
|
+
is_bridge_error: z.ZodOptional<z.ZodBoolean>;
|
|
432
458
|
}, {
|
|
433
459
|
error_code: z.ZodLiteral<"salto_ks_subscription_limit_exceeded">;
|
|
434
460
|
salto_ks_metadata: z.ZodObject<{
|
|
@@ -467,7 +493,6 @@ export declare const unmanaged_access_code: z.ZodObject<z.objectUtil.extendShape
|
|
|
467
493
|
message: string;
|
|
468
494
|
created_at: string;
|
|
469
495
|
error_code: "salto_ks_subscription_limit_exceeded";
|
|
470
|
-
is_connected_account_error: true;
|
|
471
496
|
salto_ks_metadata: {
|
|
472
497
|
sites: {
|
|
473
498
|
site_id: string;
|
|
@@ -476,11 +501,12 @@ export declare const unmanaged_access_code: z.ZodObject<z.objectUtil.extendShape
|
|
|
476
501
|
site_user_subscription_limit: number;
|
|
477
502
|
}[];
|
|
478
503
|
};
|
|
504
|
+
is_connected_account_error?: boolean | undefined;
|
|
505
|
+
is_bridge_error?: boolean | undefined;
|
|
479
506
|
}, {
|
|
480
507
|
message: string;
|
|
481
508
|
created_at: string;
|
|
482
509
|
error_code: "salto_ks_subscription_limit_exceeded";
|
|
483
|
-
is_connected_account_error: true;
|
|
484
510
|
salto_ks_metadata: {
|
|
485
511
|
sites: {
|
|
486
512
|
site_id: string;
|
|
@@ -489,6 +515,8 @@ export declare const unmanaged_access_code: z.ZodObject<z.objectUtil.extendShape
|
|
|
489
515
|
site_user_subscription_limit: number;
|
|
490
516
|
}[];
|
|
491
517
|
};
|
|
518
|
+
is_connected_account_error?: boolean | undefined;
|
|
519
|
+
is_bridge_error?: boolean | undefined;
|
|
492
520
|
}> | z.ZodObject<z.objectUtil.extendShape<{
|
|
493
521
|
message: z.ZodString;
|
|
494
522
|
is_device_error: z.ZodLiteral<true>;
|
|
@@ -557,6 +585,26 @@ export declare const unmanaged_access_code: z.ZodObject<z.objectUtil.extendShape
|
|
|
557
585
|
message: z.ZodString;
|
|
558
586
|
is_device_error: z.ZodLiteral<true>;
|
|
559
587
|
created_at: z.ZodString;
|
|
588
|
+
}, {
|
|
589
|
+
error_code: z.ZodLiteral<"account_disconnected">;
|
|
590
|
+
is_connected_account_error: z.ZodLiteral<true>;
|
|
591
|
+
is_device_error: z.ZodLiteral<false>;
|
|
592
|
+
}>, "strip", z.ZodTypeAny, {
|
|
593
|
+
message: string;
|
|
594
|
+
created_at: string;
|
|
595
|
+
error_code: "account_disconnected";
|
|
596
|
+
is_connected_account_error: true;
|
|
597
|
+
is_device_error: false;
|
|
598
|
+
}, {
|
|
599
|
+
message: string;
|
|
600
|
+
created_at: string;
|
|
601
|
+
error_code: "account_disconnected";
|
|
602
|
+
is_connected_account_error: true;
|
|
603
|
+
is_device_error: false;
|
|
604
|
+
}> | z.ZodObject<z.objectUtil.extendShape<{
|
|
605
|
+
message: z.ZodString;
|
|
606
|
+
is_device_error: z.ZodLiteral<true>;
|
|
607
|
+
created_at: z.ZodString;
|
|
560
608
|
}, {
|
|
561
609
|
error_code: z.ZodLiteral<"empty_backup_access_code_pool">;
|
|
562
610
|
}>, "strip", z.ZodTypeAny, {
|
|
@@ -867,17 +915,24 @@ export declare const unmanaged_access_code: z.ZodObject<z.objectUtil.extendShape
|
|
|
867
915
|
message: string;
|
|
868
916
|
created_at: string;
|
|
869
917
|
error_code: "account_disconnected";
|
|
870
|
-
is_connected_account_error
|
|
918
|
+
is_connected_account_error?: boolean | undefined;
|
|
919
|
+
is_bridge_error?: boolean | undefined;
|
|
871
920
|
} | {
|
|
872
921
|
message: string;
|
|
873
922
|
created_at: string;
|
|
874
923
|
error_code: "invalid_credentials";
|
|
875
|
-
is_connected_account_error
|
|
924
|
+
is_connected_account_error?: boolean | undefined;
|
|
925
|
+
is_bridge_error?: boolean | undefined;
|
|
926
|
+
} | {
|
|
927
|
+
message: string;
|
|
928
|
+
created_at: string;
|
|
929
|
+
error_code: "bridge_disconnected";
|
|
930
|
+
is_connected_account_error?: boolean | undefined;
|
|
931
|
+
is_bridge_error?: boolean | undefined;
|
|
876
932
|
} | {
|
|
877
933
|
message: string;
|
|
878
934
|
created_at: string;
|
|
879
935
|
error_code: "salto_ks_subscription_limit_exceeded";
|
|
880
|
-
is_connected_account_error: true;
|
|
881
936
|
salto_ks_metadata: {
|
|
882
937
|
sites: {
|
|
883
938
|
site_id: string;
|
|
@@ -886,6 +941,8 @@ export declare const unmanaged_access_code: z.ZodObject<z.objectUtil.extendShape
|
|
|
886
941
|
site_user_subscription_limit: number;
|
|
887
942
|
}[];
|
|
888
943
|
};
|
|
944
|
+
is_connected_account_error?: boolean | undefined;
|
|
945
|
+
is_bridge_error?: boolean | undefined;
|
|
889
946
|
} | {
|
|
890
947
|
message: string;
|
|
891
948
|
created_at: string;
|
|
@@ -906,6 +963,12 @@ export declare const unmanaged_access_code: z.ZodObject<z.objectUtil.extendShape
|
|
|
906
963
|
created_at: string;
|
|
907
964
|
error_code: "device_disconnected";
|
|
908
965
|
is_device_error: true;
|
|
966
|
+
} | {
|
|
967
|
+
message: string;
|
|
968
|
+
created_at: string;
|
|
969
|
+
error_code: "account_disconnected";
|
|
970
|
+
is_connected_account_error: true;
|
|
971
|
+
is_device_error: false;
|
|
909
972
|
} | {
|
|
910
973
|
message: string;
|
|
911
974
|
created_at: string;
|
|
@@ -1132,17 +1195,24 @@ export declare const unmanaged_access_code: z.ZodObject<z.objectUtil.extendShape
|
|
|
1132
1195
|
message: string;
|
|
1133
1196
|
created_at: string;
|
|
1134
1197
|
error_code: "account_disconnected";
|
|
1135
|
-
is_connected_account_error
|
|
1198
|
+
is_connected_account_error?: boolean | undefined;
|
|
1199
|
+
is_bridge_error?: boolean | undefined;
|
|
1136
1200
|
} | {
|
|
1137
1201
|
message: string;
|
|
1138
1202
|
created_at: string;
|
|
1139
1203
|
error_code: "invalid_credentials";
|
|
1140
|
-
is_connected_account_error
|
|
1204
|
+
is_connected_account_error?: boolean | undefined;
|
|
1205
|
+
is_bridge_error?: boolean | undefined;
|
|
1206
|
+
} | {
|
|
1207
|
+
message: string;
|
|
1208
|
+
created_at: string;
|
|
1209
|
+
error_code: "bridge_disconnected";
|
|
1210
|
+
is_connected_account_error?: boolean | undefined;
|
|
1211
|
+
is_bridge_error?: boolean | undefined;
|
|
1141
1212
|
} | {
|
|
1142
1213
|
message: string;
|
|
1143
1214
|
created_at: string;
|
|
1144
1215
|
error_code: "salto_ks_subscription_limit_exceeded";
|
|
1145
|
-
is_connected_account_error: true;
|
|
1146
1216
|
salto_ks_metadata: {
|
|
1147
1217
|
sites: {
|
|
1148
1218
|
site_id: string;
|
|
@@ -1151,6 +1221,8 @@ export declare const unmanaged_access_code: z.ZodObject<z.objectUtil.extendShape
|
|
|
1151
1221
|
site_user_subscription_limit: number;
|
|
1152
1222
|
}[];
|
|
1153
1223
|
};
|
|
1224
|
+
is_connected_account_error?: boolean | undefined;
|
|
1225
|
+
is_bridge_error?: boolean | undefined;
|
|
1154
1226
|
} | {
|
|
1155
1227
|
message: string;
|
|
1156
1228
|
created_at: string;
|
|
@@ -1171,6 +1243,12 @@ export declare const unmanaged_access_code: z.ZodObject<z.objectUtil.extendShape
|
|
|
1171
1243
|
created_at: string;
|
|
1172
1244
|
error_code: "device_disconnected";
|
|
1173
1245
|
is_device_error: true;
|
|
1246
|
+
} | {
|
|
1247
|
+
message: string;
|
|
1248
|
+
created_at: string;
|
|
1249
|
+
error_code: "account_disconnected";
|
|
1250
|
+
is_connected_account_error: true;
|
|
1251
|
+
is_device_error: false;
|
|
1174
1252
|
} | {
|
|
1175
1253
|
message: string;
|
|
1176
1254
|
created_at: string;
|
|
@@ -39,6 +39,23 @@ export declare const acs_system_error_map: z.ZodObject<{
|
|
|
39
39
|
created_at: string;
|
|
40
40
|
error_code: "seam_bridge_disconnected";
|
|
41
41
|
}>>>;
|
|
42
|
+
bridge_disconnected: z.ZodNullable<z.ZodOptional<z.ZodObject<z.objectUtil.extendShape<{
|
|
43
|
+
created_at: z.ZodString;
|
|
44
|
+
message: z.ZodString;
|
|
45
|
+
}, {
|
|
46
|
+
error_code: z.ZodLiteral<"bridge_disconnected">;
|
|
47
|
+
is_bridge_error: z.ZodOptional<z.ZodBoolean>;
|
|
48
|
+
}>, "strip", z.ZodTypeAny, {
|
|
49
|
+
message: string;
|
|
50
|
+
created_at: string;
|
|
51
|
+
error_code: "bridge_disconnected";
|
|
52
|
+
is_bridge_error?: boolean | undefined;
|
|
53
|
+
}, {
|
|
54
|
+
message: string;
|
|
55
|
+
created_at: string;
|
|
56
|
+
error_code: "bridge_disconnected";
|
|
57
|
+
is_bridge_error?: boolean | undefined;
|
|
58
|
+
}>>>;
|
|
42
59
|
visionline_instance_unreachable: z.ZodNullable<z.ZodOptional<z.ZodObject<z.objectUtil.extendShape<{
|
|
43
60
|
created_at: z.ZodString;
|
|
44
61
|
message: z.ZodString;
|
|
@@ -115,6 +132,12 @@ export declare const acs_system_error_map: z.ZodObject<{
|
|
|
115
132
|
created_at: string;
|
|
116
133
|
error_code: "account_disconnected";
|
|
117
134
|
} | null | undefined;
|
|
135
|
+
bridge_disconnected?: {
|
|
136
|
+
message: string;
|
|
137
|
+
created_at: string;
|
|
138
|
+
error_code: "bridge_disconnected";
|
|
139
|
+
is_bridge_error?: boolean | undefined;
|
|
140
|
+
} | null | undefined;
|
|
118
141
|
salto_ks_subscription_limit_exceeded?: {
|
|
119
142
|
message: string;
|
|
120
143
|
created_at: string;
|
|
@@ -146,6 +169,12 @@ export declare const acs_system_error_map: z.ZodObject<{
|
|
|
146
169
|
created_at: string;
|
|
147
170
|
error_code: "account_disconnected";
|
|
148
171
|
} | null | undefined;
|
|
172
|
+
bridge_disconnected?: {
|
|
173
|
+
message: string;
|
|
174
|
+
created_at: string;
|
|
175
|
+
error_code: "bridge_disconnected";
|
|
176
|
+
is_bridge_error?: boolean | undefined;
|
|
177
|
+
} | null | undefined;
|
|
149
178
|
salto_ks_subscription_limit_exceeded?: {
|
|
150
179
|
message: string;
|
|
151
180
|
created_at: string;
|
|
@@ -284,6 +313,22 @@ export declare const acs_system: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
284
313
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
285
314
|
created_at: z.ZodString;
|
|
286
315
|
message: z.ZodString;
|
|
316
|
+
}, {
|
|
317
|
+
error_code: z.ZodLiteral<"bridge_disconnected">;
|
|
318
|
+
is_bridge_error: z.ZodOptional<z.ZodBoolean>;
|
|
319
|
+
}>, "strip", z.ZodTypeAny, {
|
|
320
|
+
message: string;
|
|
321
|
+
created_at: string;
|
|
322
|
+
error_code: "bridge_disconnected";
|
|
323
|
+
is_bridge_error?: boolean | undefined;
|
|
324
|
+
}, {
|
|
325
|
+
message: string;
|
|
326
|
+
created_at: string;
|
|
327
|
+
error_code: "bridge_disconnected";
|
|
328
|
+
is_bridge_error?: boolean | undefined;
|
|
329
|
+
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
330
|
+
created_at: z.ZodString;
|
|
331
|
+
message: z.ZodString;
|
|
287
332
|
}, {
|
|
288
333
|
error_code: z.ZodLiteral<"visionline_instance_unreachable">;
|
|
289
334
|
}>, "strip", z.ZodTypeAny, {
|
|
@@ -392,6 +437,11 @@ export declare const acs_system: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
392
437
|
message: string;
|
|
393
438
|
created_at: string;
|
|
394
439
|
error_code: "seam_bridge_disconnected";
|
|
440
|
+
} | {
|
|
441
|
+
message: string;
|
|
442
|
+
created_at: string;
|
|
443
|
+
error_code: "bridge_disconnected";
|
|
444
|
+
is_bridge_error?: boolean | undefined;
|
|
395
445
|
} | {
|
|
396
446
|
message: string;
|
|
397
447
|
created_at: string;
|
|
@@ -456,6 +506,11 @@ export declare const acs_system: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
456
506
|
message: string;
|
|
457
507
|
created_at: string;
|
|
458
508
|
error_code: "seam_bridge_disconnected";
|
|
509
|
+
} | {
|
|
510
|
+
message: string;
|
|
511
|
+
created_at: string;
|
|
512
|
+
error_code: "bridge_disconnected";
|
|
513
|
+
is_bridge_error?: boolean | undefined;
|
|
459
514
|
} | {
|
|
460
515
|
message: string;
|
|
461
516
|
created_at: string;
|
|
@@ -57,7 +57,13 @@ const seam_bridge_disconnected = common_acs_system_error.extend({
|
|
|
57
57
|
})
|
|
58
58
|
.describe(`Indicates that the Seam API cannot communicate with [Seam Bridge](https://docs.seam.co/latest/capability-guides/seam-bridge), for example, if Seam Bridge executable has stopped or if the computer running the Seam Bridge executable is offline.
|
|
59
59
|
This error might also occur if Seam Bridge is connected to the wrong [workspace](https://docs.seam.co/latest/core-concepts/workspaces).
|
|
60
|
-
See also [Troubleshooting Your Access Control System](https://docs.seam.co/latest/capability-guides/
|
|
60
|
+
See also [Troubleshooting Your Access Control System](https://docs.seam.co/latest/capability-guides/access-systems/troubleshooting-your-access-control-system#acs_system.errors.seam_bridge_disconnected).`);
|
|
61
|
+
const bridge_disconnected = common_acs_system_error.extend({
|
|
62
|
+
error_code: z.literal('bridge_disconnected').describe(error_code_description),
|
|
63
|
+
is_bridge_error: z.boolean().optional(),
|
|
64
|
+
})
|
|
65
|
+
.describe(`Indicates that the Seam API cannot communicate with [Seam Bridge](https://docs.seam.co/latest/capability-guides/seam-bridge), for example, if Seam Bridge executable has stopped or if the computer running the Seam Bridge executable is offline.
|
|
66
|
+
See also [Troubleshooting Your Access Control System](https://docs.seam.co/latest/capability-guides/access-systems/troubleshooting-your-access-control-system#acs_system.errors.seam_bridge_disconnected).`);
|
|
61
67
|
const visionline_instance_unreachable = common_acs_system_error.extend({
|
|
62
68
|
error_code: z
|
|
63
69
|
.literal('visionline_instance_unreachable')
|
|
@@ -97,6 +103,7 @@ const salto_ks_certification_expired = common_acs_system_error
|
|
|
97
103
|
const acs_system_error = z
|
|
98
104
|
.discriminatedUnion('error_code', [
|
|
99
105
|
seam_bridge_disconnected,
|
|
106
|
+
bridge_disconnected,
|
|
100
107
|
visionline_instance_unreachable,
|
|
101
108
|
salto_ks_subscription_limit_exceeded,
|
|
102
109
|
acs_system_disconnected,
|
|
@@ -106,6 +113,7 @@ const acs_system_error = z
|
|
|
106
113
|
.describe('Error associated with the [access control system](https://docs.seam.co/latest/capability-guides/access-systems).');
|
|
107
114
|
export const acs_system_error_map = z.object({
|
|
108
115
|
seam_bridge_disconnected: seam_bridge_disconnected.optional().nullable(),
|
|
116
|
+
bridge_disconnected: bridge_disconnected.optional().nullable(),
|
|
109
117
|
visionline_instance_unreachable: visionline_instance_unreachable
|
|
110
118
|
.optional()
|
|
111
119
|
.nullable(),
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"acs-system.js","sourceRoot":"","sources":["../../../../../src/lib/seam/connect/models/acs/acs-system.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAA;AAEvB,MAAM,CAAC,MAAM,2BAA2B,GAAG,CAAC,CAAC,MAAM,CAAC;IAClD,uBAAuB,EAAE,CAAC;SACvB,OAAO,EAAE;SACT,QAAQ,EAAE;SACV,QAAQ,CACP,+XAA+X,CAChY;IACH,4BAA4B,EAAE,CAAC;SAC5B,OAAO,EAAE;SACT,QAAQ,EAAE;SACV,QAAQ,CACP,6bAA6b,CAC9b;IACH,2CAA2C,EAAE,CAAC;SAC3C,OAAO,EAAE;SACT,QAAQ,EAAE;SACV,QAAQ,CACP,gfAAgf,CACjf;IACH,sCAAsC,EAAE,CAAC;SACtC,OAAO,EAAE;SACT,QAAQ,EAAE;SACV,QAAQ,CACP,ueAAue,CACxe;CACJ,CAAC,CAAA;AAEF,MAAM,CAAC,MAAM,YAAY,GAAG,CAAC,CAAC,MAAM,CAAC;IACnC,SAAS,EAAE,CAAC;SACT,MAAM,EAAE;SACR,QAAQ,EAAE;SACV,QAAQ,CACP,0HAA0H,CAC3H;CACJ,CAAC,CAAA;AAEF,oEAAoE;AACpE,MAAM,CAAC,MAAM,wBAAwB,GAAG,CAAC,CAAC,IAAI,CAAC;IAC7C,UAAU;IACV,UAAU;IACV,eAAe;IACf,oBAAoB;IACpB,eAAe;IACf,qCAAqC;IACrC,mBAAmB;IACnB,+BAA+B;IAC/B,gBAAgB;IAChB,0BAA0B;IAC1B,kCAAkC;IAClC,mBAAmB;IACnB,sCAAsC;CACvC,CAAC,CAAA;AAIF,MAAM,uBAAuB,GAAG,CAAC,CAAC,MAAM,CAAC;IACvC,UAAU,EAAE,CAAC;SACV,MAAM,EAAE;SACR,QAAQ,EAAE;SACV,QAAQ,CAAC,gDAAgD,CAAC;IAC7D,OAAO,EAAE,CAAC;SACP,MAAM,EAAE;SACR,QAAQ,CACP,wGAAwG,CACzG;CACJ,CAAC,CAAA;AAEF,MAAM,sBAAsB,GAC1B,oGAAoG,CAAA;AACtG,MAAM,wBAAwB,GAC5B,sGAAsG,CAAA;AAExG,MAAM,wBAAwB,GAAG,uBAAuB,CAAC,MAAM,CAAC;IAC9D,UAAU,EAAE,CAAC;SACV,OAAO,CAAC,0BAA0B,CAAC;SACnC,QAAQ,CAAC,sBAAsB,CAAC;CACpC,CAAC;KACC,QAAQ,CAAC
|
|
1
|
+
{"version":3,"file":"acs-system.js","sourceRoot":"","sources":["../../../../../src/lib/seam/connect/models/acs/acs-system.ts"],"names":[],"mappings":"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"}
|