@seamapi/types 1.747.0 → 1.749.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 +185 -20
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +801 -537
- package/dist/index.cjs +185 -20
- package/dist/index.cjs.map +1 -1
- package/lib/seam/connect/models/access-grants/access-method.d.ts +81 -0
- package/lib/seam/connect/models/access-grants/access-method.js +16 -0
- package/lib/seam/connect/models/access-grants/access-method.js.map +1 -1
- package/lib/seam/connect/models/acs/acs-credential.d.ts +14 -14
- package/lib/seam/connect/models/acs/acs-credential.js +3 -1
- package/lib/seam/connect/models/acs/acs-credential.js.map +1 -1
- package/lib/seam/connect/models/action-attempts/action-attempt.d.ts +48 -48
- package/lib/seam/connect/models/action-attempts/encode-credential.d.ts +20 -20
- package/lib/seam/connect/models/action-attempts/scan-credential.d.ts +28 -28
- package/lib/seam/connect/models/batch.d.ts +120 -84
- package/lib/seam/connect/models/phones/phone-session.d.ts +24 -24
- package/lib/seam/connect/openapi.d.ts +140 -10
- package/lib/seam/connect/openapi.js +169 -16
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +455 -383
- package/package.json +1 -1
- package/src/lib/seam/connect/models/access-grants/access-method.ts +21 -0
- package/src/lib/seam/connect/models/acs/acs-credential.ts +3 -1
- package/src/lib/seam/connect/openapi.ts +194 -16
- package/src/lib/seam/connect/route-types.ts +695 -256
|
@@ -30,8 +30,8 @@ declare const phone_provider_session: z.ZodObject<{
|
|
|
30
30
|
card_number: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
31
31
|
is_issued: z.ZodOptional<z.ZodBoolean>;
|
|
32
32
|
issued_at: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
33
|
-
access_method: z.ZodEnum<["code", "card", "mobile_key"]>;
|
|
34
|
-
external_type: z.ZodOptional<z.ZodEnum<["pti_card", "brivo_credential", "hid_credential", "visionline_card", "salto_ks_credential", "assa_abloy_vostio_key", "salto_space_key", "latch_access", "dormakaba_ambiance_credential", "hotek_card"]>>;
|
|
33
|
+
access_method: z.ZodEnum<["code", "card", "mobile_key", "cloud_key"]>;
|
|
34
|
+
external_type: z.ZodOptional<z.ZodEnum<["pti_card", "brivo_credential", "brivo_digital_credential", "hid_credential", "visionline_card", "salto_ks_credential", "assa_abloy_vostio_key", "salto_space_key", "latch_access", "dormakaba_ambiance_credential", "hotek_card"]>>;
|
|
35
35
|
external_type_display_name: z.ZodOptional<z.ZodString>;
|
|
36
36
|
created_at: z.ZodString;
|
|
37
37
|
workspace_id: z.ZodString;
|
|
@@ -536,7 +536,7 @@ declare const phone_provider_session: z.ZodObject<{
|
|
|
536
536
|
is_managed: true;
|
|
537
537
|
acs_system_id: string;
|
|
538
538
|
acs_credential_id: string | null;
|
|
539
|
-
access_method: "code" | "card" | "mobile_key";
|
|
539
|
+
access_method: "code" | "card" | "mobile_key" | "cloud_key";
|
|
540
540
|
acs_entrances: {
|
|
541
541
|
display_name: string;
|
|
542
542
|
created_at: string;
|
|
@@ -634,7 +634,7 @@ declare const phone_provider_session: z.ZodObject<{
|
|
|
634
634
|
issued_at?: string | null | undefined;
|
|
635
635
|
is_issued?: boolean | undefined;
|
|
636
636
|
acs_user_id?: string | undefined;
|
|
637
|
-
external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_key" | "salto_space_key" | "latch_access" | "dormakaba_ambiance_credential" | "hotek_card" | undefined;
|
|
637
|
+
external_type?: "pti_card" | "brivo_credential" | "brivo_digital_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_key" | "salto_space_key" | "latch_access" | "dormakaba_ambiance_credential" | "hotek_card" | undefined;
|
|
638
638
|
external_type_display_name?: string | undefined;
|
|
639
639
|
acs_credential_pool_id?: string | undefined;
|
|
640
640
|
parent_acs_credential_id?: string | undefined;
|
|
@@ -679,7 +679,7 @@ declare const phone_provider_session: z.ZodObject<{
|
|
|
679
679
|
is_managed: true;
|
|
680
680
|
acs_system_id: string;
|
|
681
681
|
acs_credential_id: string | null;
|
|
682
|
-
access_method: "code" | "card" | "mobile_key";
|
|
682
|
+
access_method: "code" | "card" | "mobile_key" | "cloud_key";
|
|
683
683
|
acs_entrances: {
|
|
684
684
|
display_name: string;
|
|
685
685
|
created_at: string;
|
|
@@ -777,7 +777,7 @@ declare const phone_provider_session: z.ZodObject<{
|
|
|
777
777
|
issued_at?: string | null | undefined;
|
|
778
778
|
is_issued?: boolean | undefined;
|
|
779
779
|
acs_user_id?: string | undefined;
|
|
780
|
-
external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_key" | "salto_space_key" | "latch_access" | "dormakaba_ambiance_credential" | "hotek_card" | undefined;
|
|
780
|
+
external_type?: "pti_card" | "brivo_credential" | "brivo_digital_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_key" | "salto_space_key" | "latch_access" | "dormakaba_ambiance_credential" | "hotek_card" | undefined;
|
|
781
781
|
external_type_display_name?: string | undefined;
|
|
782
782
|
acs_credential_pool_id?: string | undefined;
|
|
783
783
|
parent_acs_credential_id?: string | undefined;
|
|
@@ -824,7 +824,7 @@ declare const phone_provider_session: z.ZodObject<{
|
|
|
824
824
|
is_managed: true;
|
|
825
825
|
acs_system_id: string;
|
|
826
826
|
acs_credential_id: string | null;
|
|
827
|
-
access_method: "code" | "card" | "mobile_key";
|
|
827
|
+
access_method: "code" | "card" | "mobile_key" | "cloud_key";
|
|
828
828
|
acs_entrances: {
|
|
829
829
|
display_name: string;
|
|
830
830
|
created_at: string;
|
|
@@ -922,7 +922,7 @@ declare const phone_provider_session: z.ZodObject<{
|
|
|
922
922
|
issued_at?: string | null | undefined;
|
|
923
923
|
is_issued?: boolean | undefined;
|
|
924
924
|
acs_user_id?: string | undefined;
|
|
925
|
-
external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_key" | "salto_space_key" | "latch_access" | "dormakaba_ambiance_credential" | "hotek_card" | undefined;
|
|
925
|
+
external_type?: "pti_card" | "brivo_credential" | "brivo_digital_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_key" | "salto_space_key" | "latch_access" | "dormakaba_ambiance_credential" | "hotek_card" | undefined;
|
|
926
926
|
external_type_display_name?: string | undefined;
|
|
927
927
|
acs_credential_pool_id?: string | undefined;
|
|
928
928
|
parent_acs_credential_id?: string | undefined;
|
|
@@ -975,7 +975,7 @@ declare const phone_provider_session: z.ZodObject<{
|
|
|
975
975
|
is_managed: true;
|
|
976
976
|
acs_system_id: string;
|
|
977
977
|
acs_credential_id: string | null;
|
|
978
|
-
access_method: "code" | "card" | "mobile_key";
|
|
978
|
+
access_method: "code" | "card" | "mobile_key" | "cloud_key";
|
|
979
979
|
acs_entrances: {
|
|
980
980
|
display_name: string;
|
|
981
981
|
created_at: string;
|
|
@@ -1073,7 +1073,7 @@ declare const phone_provider_session: z.ZodObject<{
|
|
|
1073
1073
|
issued_at?: string | null | undefined;
|
|
1074
1074
|
is_issued?: boolean | undefined;
|
|
1075
1075
|
acs_user_id?: string | undefined;
|
|
1076
|
-
external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_key" | "salto_space_key" | "latch_access" | "dormakaba_ambiance_credential" | "hotek_card" | undefined;
|
|
1076
|
+
external_type?: "pti_card" | "brivo_credential" | "brivo_digital_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_key" | "salto_space_key" | "latch_access" | "dormakaba_ambiance_credential" | "hotek_card" | undefined;
|
|
1077
1077
|
external_type_display_name?: string | undefined;
|
|
1078
1078
|
acs_credential_pool_id?: string | undefined;
|
|
1079
1079
|
parent_acs_credential_id?: string | undefined;
|
|
@@ -1121,8 +1121,8 @@ export declare const phone_session: z.ZodObject<{
|
|
|
1121
1121
|
card_number: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
1122
1122
|
is_issued: z.ZodOptional<z.ZodBoolean>;
|
|
1123
1123
|
issued_at: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
1124
|
-
access_method: z.ZodEnum<["code", "card", "mobile_key"]>;
|
|
1125
|
-
external_type: z.ZodOptional<z.ZodEnum<["pti_card", "brivo_credential", "hid_credential", "visionline_card", "salto_ks_credential", "assa_abloy_vostio_key", "salto_space_key", "latch_access", "dormakaba_ambiance_credential", "hotek_card"]>>;
|
|
1124
|
+
access_method: z.ZodEnum<["code", "card", "mobile_key", "cloud_key"]>;
|
|
1125
|
+
external_type: z.ZodOptional<z.ZodEnum<["pti_card", "brivo_credential", "brivo_digital_credential", "hid_credential", "visionline_card", "salto_ks_credential", "assa_abloy_vostio_key", "salto_space_key", "latch_access", "dormakaba_ambiance_credential", "hotek_card"]>>;
|
|
1126
1126
|
external_type_display_name: z.ZodOptional<z.ZodString>;
|
|
1127
1127
|
created_at: z.ZodString;
|
|
1128
1128
|
workspace_id: z.ZodString;
|
|
@@ -1627,7 +1627,7 @@ export declare const phone_session: z.ZodObject<{
|
|
|
1627
1627
|
is_managed: true;
|
|
1628
1628
|
acs_system_id: string;
|
|
1629
1629
|
acs_credential_id: string | null;
|
|
1630
|
-
access_method: "code" | "card" | "mobile_key";
|
|
1630
|
+
access_method: "code" | "card" | "mobile_key" | "cloud_key";
|
|
1631
1631
|
acs_entrances: {
|
|
1632
1632
|
display_name: string;
|
|
1633
1633
|
created_at: string;
|
|
@@ -1725,7 +1725,7 @@ export declare const phone_session: z.ZodObject<{
|
|
|
1725
1725
|
issued_at?: string | null | undefined;
|
|
1726
1726
|
is_issued?: boolean | undefined;
|
|
1727
1727
|
acs_user_id?: string | undefined;
|
|
1728
|
-
external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_key" | "salto_space_key" | "latch_access" | "dormakaba_ambiance_credential" | "hotek_card" | undefined;
|
|
1728
|
+
external_type?: "pti_card" | "brivo_credential" | "brivo_digital_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_key" | "salto_space_key" | "latch_access" | "dormakaba_ambiance_credential" | "hotek_card" | undefined;
|
|
1729
1729
|
external_type_display_name?: string | undefined;
|
|
1730
1730
|
acs_credential_pool_id?: string | undefined;
|
|
1731
1731
|
parent_acs_credential_id?: string | undefined;
|
|
@@ -1770,7 +1770,7 @@ export declare const phone_session: z.ZodObject<{
|
|
|
1770
1770
|
is_managed: true;
|
|
1771
1771
|
acs_system_id: string;
|
|
1772
1772
|
acs_credential_id: string | null;
|
|
1773
|
-
access_method: "code" | "card" | "mobile_key";
|
|
1773
|
+
access_method: "code" | "card" | "mobile_key" | "cloud_key";
|
|
1774
1774
|
acs_entrances: {
|
|
1775
1775
|
display_name: string;
|
|
1776
1776
|
created_at: string;
|
|
@@ -1868,7 +1868,7 @@ export declare const phone_session: z.ZodObject<{
|
|
|
1868
1868
|
issued_at?: string | null | undefined;
|
|
1869
1869
|
is_issued?: boolean | undefined;
|
|
1870
1870
|
acs_user_id?: string | undefined;
|
|
1871
|
-
external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_key" | "salto_space_key" | "latch_access" | "dormakaba_ambiance_credential" | "hotek_card" | undefined;
|
|
1871
|
+
external_type?: "pti_card" | "brivo_credential" | "brivo_digital_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_key" | "salto_space_key" | "latch_access" | "dormakaba_ambiance_credential" | "hotek_card" | undefined;
|
|
1872
1872
|
external_type_display_name?: string | undefined;
|
|
1873
1873
|
acs_credential_pool_id?: string | undefined;
|
|
1874
1874
|
parent_acs_credential_id?: string | undefined;
|
|
@@ -1915,7 +1915,7 @@ export declare const phone_session: z.ZodObject<{
|
|
|
1915
1915
|
is_managed: true;
|
|
1916
1916
|
acs_system_id: string;
|
|
1917
1917
|
acs_credential_id: string | null;
|
|
1918
|
-
access_method: "code" | "card" | "mobile_key";
|
|
1918
|
+
access_method: "code" | "card" | "mobile_key" | "cloud_key";
|
|
1919
1919
|
acs_entrances: {
|
|
1920
1920
|
display_name: string;
|
|
1921
1921
|
created_at: string;
|
|
@@ -2013,7 +2013,7 @@ export declare const phone_session: z.ZodObject<{
|
|
|
2013
2013
|
issued_at?: string | null | undefined;
|
|
2014
2014
|
is_issued?: boolean | undefined;
|
|
2015
2015
|
acs_user_id?: string | undefined;
|
|
2016
|
-
external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_key" | "salto_space_key" | "latch_access" | "dormakaba_ambiance_credential" | "hotek_card" | undefined;
|
|
2016
|
+
external_type?: "pti_card" | "brivo_credential" | "brivo_digital_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_key" | "salto_space_key" | "latch_access" | "dormakaba_ambiance_credential" | "hotek_card" | undefined;
|
|
2017
2017
|
external_type_display_name?: string | undefined;
|
|
2018
2018
|
acs_credential_pool_id?: string | undefined;
|
|
2019
2019
|
parent_acs_credential_id?: string | undefined;
|
|
@@ -2066,7 +2066,7 @@ export declare const phone_session: z.ZodObject<{
|
|
|
2066
2066
|
is_managed: true;
|
|
2067
2067
|
acs_system_id: string;
|
|
2068
2068
|
acs_credential_id: string | null;
|
|
2069
|
-
access_method: "code" | "card" | "mobile_key";
|
|
2069
|
+
access_method: "code" | "card" | "mobile_key" | "cloud_key";
|
|
2070
2070
|
acs_entrances: {
|
|
2071
2071
|
display_name: string;
|
|
2072
2072
|
created_at: string;
|
|
@@ -2164,7 +2164,7 @@ export declare const phone_session: z.ZodObject<{
|
|
|
2164
2164
|
issued_at?: string | null | undefined;
|
|
2165
2165
|
is_issued?: boolean | undefined;
|
|
2166
2166
|
acs_user_id?: string | undefined;
|
|
2167
|
-
external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_key" | "salto_space_key" | "latch_access" | "dormakaba_ambiance_credential" | "hotek_card" | undefined;
|
|
2167
|
+
external_type?: "pti_card" | "brivo_credential" | "brivo_digital_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_key" | "salto_space_key" | "latch_access" | "dormakaba_ambiance_credential" | "hotek_card" | undefined;
|
|
2168
2168
|
external_type_display_name?: string | undefined;
|
|
2169
2169
|
acs_credential_pool_id?: string | undefined;
|
|
2170
2170
|
parent_acs_credential_id?: string | undefined;
|
|
@@ -2332,7 +2332,7 @@ export declare const phone_session: z.ZodObject<{
|
|
|
2332
2332
|
is_managed: true;
|
|
2333
2333
|
acs_system_id: string;
|
|
2334
2334
|
acs_credential_id: string | null;
|
|
2335
|
-
access_method: "code" | "card" | "mobile_key";
|
|
2335
|
+
access_method: "code" | "card" | "mobile_key" | "cloud_key";
|
|
2336
2336
|
acs_entrances: {
|
|
2337
2337
|
display_name: string;
|
|
2338
2338
|
created_at: string;
|
|
@@ -2430,7 +2430,7 @@ export declare const phone_session: z.ZodObject<{
|
|
|
2430
2430
|
issued_at?: string | null | undefined;
|
|
2431
2431
|
is_issued?: boolean | undefined;
|
|
2432
2432
|
acs_user_id?: string | undefined;
|
|
2433
|
-
external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_key" | "salto_space_key" | "latch_access" | "dormakaba_ambiance_credential" | "hotek_card" | undefined;
|
|
2433
|
+
external_type?: "pti_card" | "brivo_credential" | "brivo_digital_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_key" | "salto_space_key" | "latch_access" | "dormakaba_ambiance_credential" | "hotek_card" | undefined;
|
|
2434
2434
|
external_type_display_name?: string | undefined;
|
|
2435
2435
|
acs_credential_pool_id?: string | undefined;
|
|
2436
2436
|
parent_acs_credential_id?: string | undefined;
|
|
@@ -2514,7 +2514,7 @@ export declare const phone_session: z.ZodObject<{
|
|
|
2514
2514
|
is_managed: true;
|
|
2515
2515
|
acs_system_id: string;
|
|
2516
2516
|
acs_credential_id: string | null;
|
|
2517
|
-
access_method: "code" | "card" | "mobile_key";
|
|
2517
|
+
access_method: "code" | "card" | "mobile_key" | "cloud_key";
|
|
2518
2518
|
acs_entrances: {
|
|
2519
2519
|
display_name: string;
|
|
2520
2520
|
created_at: string;
|
|
@@ -2612,7 +2612,7 @@ export declare const phone_session: z.ZodObject<{
|
|
|
2612
2612
|
issued_at?: string | null | undefined;
|
|
2613
2613
|
is_issued?: boolean | undefined;
|
|
2614
2614
|
acs_user_id?: string | undefined;
|
|
2615
|
-
external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_key" | "salto_space_key" | "latch_access" | "dormakaba_ambiance_credential" | "hotek_card" | undefined;
|
|
2615
|
+
external_type?: "pti_card" | "brivo_credential" | "brivo_digital_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_key" | "salto_space_key" | "latch_access" | "dormakaba_ambiance_credential" | "hotek_card" | undefined;
|
|
2616
2616
|
external_type_display_name?: string | undefined;
|
|
2617
2617
|
acs_credential_pool_id?: string | undefined;
|
|
2618
2618
|
parent_acs_credential_id?: string | undefined;
|
|
@@ -1041,7 +1041,7 @@ declare const _default: {
|
|
|
1041
1041
|
discriminator: {
|
|
1042
1042
|
propertyName: string;
|
|
1043
1043
|
};
|
|
1044
|
-
oneOf: {
|
|
1044
|
+
oneOf: ({
|
|
1045
1045
|
description: string;
|
|
1046
1046
|
properties: {
|
|
1047
1047
|
created_at: {
|
|
@@ -1058,10 +1058,36 @@ declare const _default: {
|
|
|
1058
1058
|
enum: string[];
|
|
1059
1059
|
type: string;
|
|
1060
1060
|
};
|
|
1061
|
+
original_access_method_id?: never;
|
|
1061
1062
|
};
|
|
1062
1063
|
required: string[];
|
|
1063
1064
|
type: string;
|
|
1064
|
-
}
|
|
1065
|
+
} | {
|
|
1066
|
+
description: string;
|
|
1067
|
+
properties: {
|
|
1068
|
+
created_at: {
|
|
1069
|
+
description: string;
|
|
1070
|
+
format: string;
|
|
1071
|
+
type: string;
|
|
1072
|
+
};
|
|
1073
|
+
message: {
|
|
1074
|
+
description: string;
|
|
1075
|
+
type: string;
|
|
1076
|
+
};
|
|
1077
|
+
original_access_method_id: {
|
|
1078
|
+
description: string;
|
|
1079
|
+
format: string;
|
|
1080
|
+
type: string;
|
|
1081
|
+
};
|
|
1082
|
+
warning_code: {
|
|
1083
|
+
description: string;
|
|
1084
|
+
enum: string[];
|
|
1085
|
+
type: string;
|
|
1086
|
+
};
|
|
1087
|
+
};
|
|
1088
|
+
required: string[];
|
|
1089
|
+
type: string;
|
|
1090
|
+
})[];
|
|
1065
1091
|
};
|
|
1066
1092
|
type: string;
|
|
1067
1093
|
};
|
|
@@ -27134,7 +27160,7 @@ declare const _default: {
|
|
|
27134
27160
|
discriminator: {
|
|
27135
27161
|
propertyName: string;
|
|
27136
27162
|
};
|
|
27137
|
-
oneOf: {
|
|
27163
|
+
oneOf: ({
|
|
27138
27164
|
description: string;
|
|
27139
27165
|
properties: {
|
|
27140
27166
|
created_at: {
|
|
@@ -27151,10 +27177,36 @@ declare const _default: {
|
|
|
27151
27177
|
enum: string[];
|
|
27152
27178
|
type: string;
|
|
27153
27179
|
};
|
|
27180
|
+
original_access_method_id?: never;
|
|
27154
27181
|
};
|
|
27155
27182
|
required: string[];
|
|
27156
27183
|
type: string;
|
|
27157
|
-
}
|
|
27184
|
+
} | {
|
|
27185
|
+
description: string;
|
|
27186
|
+
properties: {
|
|
27187
|
+
created_at: {
|
|
27188
|
+
description: string;
|
|
27189
|
+
format: string;
|
|
27190
|
+
type: string;
|
|
27191
|
+
};
|
|
27192
|
+
message: {
|
|
27193
|
+
description: string;
|
|
27194
|
+
type: string;
|
|
27195
|
+
};
|
|
27196
|
+
original_access_method_id: {
|
|
27197
|
+
description: string;
|
|
27198
|
+
format: string;
|
|
27199
|
+
type: string;
|
|
27200
|
+
};
|
|
27201
|
+
warning_code: {
|
|
27202
|
+
description: string;
|
|
27203
|
+
enum: string[];
|
|
27204
|
+
type: string;
|
|
27205
|
+
};
|
|
27206
|
+
};
|
|
27207
|
+
required: string[];
|
|
27208
|
+
type: string;
|
|
27209
|
+
})[];
|
|
27158
27210
|
};
|
|
27159
27211
|
type: string;
|
|
27160
27212
|
};
|
|
@@ -27407,7 +27459,7 @@ declare const _default: {
|
|
|
27407
27459
|
discriminator: {
|
|
27408
27460
|
propertyName: string;
|
|
27409
27461
|
};
|
|
27410
|
-
oneOf: {
|
|
27462
|
+
oneOf: ({
|
|
27411
27463
|
description: string;
|
|
27412
27464
|
properties: {
|
|
27413
27465
|
created_at: {
|
|
@@ -27424,10 +27476,36 @@ declare const _default: {
|
|
|
27424
27476
|
enum: string[];
|
|
27425
27477
|
type: string;
|
|
27426
27478
|
};
|
|
27479
|
+
original_access_method_id?: never;
|
|
27427
27480
|
};
|
|
27428
27481
|
required: string[];
|
|
27429
27482
|
type: string;
|
|
27430
|
-
}
|
|
27483
|
+
} | {
|
|
27484
|
+
description: string;
|
|
27485
|
+
properties: {
|
|
27486
|
+
created_at: {
|
|
27487
|
+
description: string;
|
|
27488
|
+
format: string;
|
|
27489
|
+
type: string;
|
|
27490
|
+
};
|
|
27491
|
+
message: {
|
|
27492
|
+
description: string;
|
|
27493
|
+
type: string;
|
|
27494
|
+
};
|
|
27495
|
+
original_access_method_id: {
|
|
27496
|
+
description: string;
|
|
27497
|
+
format: string;
|
|
27498
|
+
type: string;
|
|
27499
|
+
};
|
|
27500
|
+
warning_code: {
|
|
27501
|
+
description: string;
|
|
27502
|
+
enum: string[];
|
|
27503
|
+
type: string;
|
|
27504
|
+
};
|
|
27505
|
+
};
|
|
27506
|
+
required: string[];
|
|
27507
|
+
type: string;
|
|
27508
|
+
})[];
|
|
27431
27509
|
};
|
|
27432
27510
|
type: string;
|
|
27433
27511
|
};
|
|
@@ -27676,7 +27754,7 @@ declare const _default: {
|
|
|
27676
27754
|
discriminator: {
|
|
27677
27755
|
propertyName: string;
|
|
27678
27756
|
};
|
|
27679
|
-
oneOf: {
|
|
27757
|
+
oneOf: ({
|
|
27680
27758
|
description: string;
|
|
27681
27759
|
properties: {
|
|
27682
27760
|
created_at: {
|
|
@@ -27693,10 +27771,36 @@ declare const _default: {
|
|
|
27693
27771
|
enum: string[];
|
|
27694
27772
|
type: string;
|
|
27695
27773
|
};
|
|
27774
|
+
original_access_method_id?: never;
|
|
27696
27775
|
};
|
|
27697
27776
|
required: string[];
|
|
27698
27777
|
type: string;
|
|
27699
|
-
}
|
|
27778
|
+
} | {
|
|
27779
|
+
description: string;
|
|
27780
|
+
properties: {
|
|
27781
|
+
created_at: {
|
|
27782
|
+
description: string;
|
|
27783
|
+
format: string;
|
|
27784
|
+
type: string;
|
|
27785
|
+
};
|
|
27786
|
+
message: {
|
|
27787
|
+
description: string;
|
|
27788
|
+
type: string;
|
|
27789
|
+
};
|
|
27790
|
+
original_access_method_id: {
|
|
27791
|
+
description: string;
|
|
27792
|
+
format: string;
|
|
27793
|
+
type: string;
|
|
27794
|
+
};
|
|
27795
|
+
warning_code: {
|
|
27796
|
+
description: string;
|
|
27797
|
+
enum: string[];
|
|
27798
|
+
type: string;
|
|
27799
|
+
};
|
|
27800
|
+
};
|
|
27801
|
+
required: string[];
|
|
27802
|
+
type: string;
|
|
27803
|
+
})[];
|
|
27700
27804
|
};
|
|
27701
27805
|
type: string;
|
|
27702
27806
|
};
|
|
@@ -27967,7 +28071,7 @@ declare const _default: {
|
|
|
27967
28071
|
discriminator: {
|
|
27968
28072
|
propertyName: string;
|
|
27969
28073
|
};
|
|
27970
|
-
oneOf: {
|
|
28074
|
+
oneOf: ({
|
|
27971
28075
|
description: string;
|
|
27972
28076
|
properties: {
|
|
27973
28077
|
created_at: {
|
|
@@ -27984,10 +28088,36 @@ declare const _default: {
|
|
|
27984
28088
|
enum: string[];
|
|
27985
28089
|
type: string;
|
|
27986
28090
|
};
|
|
28091
|
+
original_access_method_id?: never;
|
|
27987
28092
|
};
|
|
27988
28093
|
required: string[];
|
|
27989
28094
|
type: string;
|
|
27990
|
-
}
|
|
28095
|
+
} | {
|
|
28096
|
+
description: string;
|
|
28097
|
+
properties: {
|
|
28098
|
+
created_at: {
|
|
28099
|
+
description: string;
|
|
28100
|
+
format: string;
|
|
28101
|
+
type: string;
|
|
28102
|
+
};
|
|
28103
|
+
message: {
|
|
28104
|
+
description: string;
|
|
28105
|
+
type: string;
|
|
28106
|
+
};
|
|
28107
|
+
original_access_method_id: {
|
|
28108
|
+
description: string;
|
|
28109
|
+
format: string;
|
|
28110
|
+
type: string;
|
|
28111
|
+
};
|
|
28112
|
+
warning_code: {
|
|
28113
|
+
description: string;
|
|
28114
|
+
enum: string[];
|
|
28115
|
+
type: string;
|
|
28116
|
+
};
|
|
28117
|
+
};
|
|
28118
|
+
required: string[];
|
|
28119
|
+
type: string;
|
|
28120
|
+
})[];
|
|
27991
28121
|
};
|
|
27992
28122
|
type: string;
|
|
27993
28123
|
};
|