@seamapi/types 1.413.0 → 1.414.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 +93 -8
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +155 -4
- package/lib/seam/connect/models/phones/phone-session.d.ts +16 -14
- package/lib/seam/connect/models/phones/phone-session.js +4 -0
- package/lib/seam/connect/models/phones/phone-session.js.map +1 -1
- package/lib/seam/connect/models/user-identities/user-identity.d.ts +73 -0
- package/lib/seam/connect/models/user-identities/user-identity.js +40 -0
- package/lib/seam/connect/models/user-identities/user-identity.js.map +1 -1
- package/lib/seam/connect/openapi.d.ts +60 -2
- package/lib/seam/connect/openapi.js +64 -7
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +53 -2
- package/package.json +1 -1
- package/src/lib/seam/connect/models/phones/phone-session.ts +4 -0
- package/src/lib/seam/connect/models/user-identities/user-identity.ts +60 -0
- package/src/lib/seam/connect/openapi.ts +73 -8
- package/src/lib/seam/connect/route-types.ts +53 -2
package/dist/connect.d.cts
CHANGED
|
@@ -21499,10 +21499,43 @@ declare const user_identity: z.ZodObject<{
|
|
|
21499
21499
|
full_name: z.ZodNullable<z.ZodString>;
|
|
21500
21500
|
created_at: z.ZodString;
|
|
21501
21501
|
workspace_id: z.ZodString;
|
|
21502
|
+
errors: z.ZodArray<z.ZodObject<{
|
|
21503
|
+
created_at: z.ZodString;
|
|
21504
|
+
message: z.ZodString;
|
|
21505
|
+
}, "strip", z.ZodTypeAny, {
|
|
21506
|
+
message: string;
|
|
21507
|
+
created_at: string;
|
|
21508
|
+
}, {
|
|
21509
|
+
message: string;
|
|
21510
|
+
created_at: string;
|
|
21511
|
+
}>, "many">;
|
|
21512
|
+
warnings: z.ZodArray<z.ZodDiscriminatedUnion<"warning_code", [z.ZodObject<z.objectUtil.extendShape<{
|
|
21513
|
+
created_at: z.ZodString;
|
|
21514
|
+
message: z.ZodString;
|
|
21515
|
+
}, {
|
|
21516
|
+
warning_code: z.ZodLiteral<"being_deleted">;
|
|
21517
|
+
}>, "strip", z.ZodTypeAny, {
|
|
21518
|
+
message: string;
|
|
21519
|
+
created_at: string;
|
|
21520
|
+
warning_code: "being_deleted";
|
|
21521
|
+
}, {
|
|
21522
|
+
message: string;
|
|
21523
|
+
created_at: string;
|
|
21524
|
+
warning_code: "being_deleted";
|
|
21525
|
+
}>]>, "many">;
|
|
21502
21526
|
}, "strip", z.ZodTypeAny, {
|
|
21503
21527
|
display_name: string;
|
|
21504
21528
|
workspace_id: string;
|
|
21505
21529
|
created_at: string;
|
|
21530
|
+
errors: {
|
|
21531
|
+
message: string;
|
|
21532
|
+
created_at: string;
|
|
21533
|
+
}[];
|
|
21534
|
+
warnings: {
|
|
21535
|
+
message: string;
|
|
21536
|
+
created_at: string;
|
|
21537
|
+
warning_code: "being_deleted";
|
|
21538
|
+
}[];
|
|
21506
21539
|
user_identity_id: string;
|
|
21507
21540
|
email_address: string | null;
|
|
21508
21541
|
full_name: string | null;
|
|
@@ -21512,6 +21545,15 @@ declare const user_identity: z.ZodObject<{
|
|
|
21512
21545
|
display_name: string;
|
|
21513
21546
|
workspace_id: string;
|
|
21514
21547
|
created_at: string;
|
|
21548
|
+
errors: {
|
|
21549
|
+
message: string;
|
|
21550
|
+
created_at: string;
|
|
21551
|
+
}[];
|
|
21552
|
+
warnings: {
|
|
21553
|
+
message: string;
|
|
21554
|
+
created_at: string;
|
|
21555
|
+
warning_code: "being_deleted";
|
|
21556
|
+
}[];
|
|
21515
21557
|
user_identity_id: string;
|
|
21516
21558
|
email_address: string | null;
|
|
21517
21559
|
full_name: string | null;
|
|
@@ -30712,8 +30754,6 @@ declare const _default: {
|
|
|
30712
30754
|
type: string;
|
|
30713
30755
|
};
|
|
30714
30756
|
acs_credential_id: {
|
|
30715
|
-
description: string;
|
|
30716
|
-
format: string;
|
|
30717
30757
|
type: string;
|
|
30718
30758
|
};
|
|
30719
30759
|
acs_credential_pool_id: {
|
|
@@ -32664,6 +32704,25 @@ declare const _default: {
|
|
|
32664
32704
|
nullable: boolean;
|
|
32665
32705
|
type: string;
|
|
32666
32706
|
};
|
|
32707
|
+
errors: {
|
|
32708
|
+
description: string;
|
|
32709
|
+
items: {
|
|
32710
|
+
properties: {
|
|
32711
|
+
created_at: {
|
|
32712
|
+
description: string;
|
|
32713
|
+
format: string;
|
|
32714
|
+
type: string;
|
|
32715
|
+
};
|
|
32716
|
+
message: {
|
|
32717
|
+
description: string;
|
|
32718
|
+
type: string;
|
|
32719
|
+
};
|
|
32720
|
+
};
|
|
32721
|
+
required: string[];
|
|
32722
|
+
type: string;
|
|
32723
|
+
};
|
|
32724
|
+
type: string;
|
|
32725
|
+
};
|
|
32667
32726
|
full_name: {
|
|
32668
32727
|
minLength: number;
|
|
32669
32728
|
nullable: boolean;
|
|
@@ -32685,6 +32744,37 @@ declare const _default: {
|
|
|
32685
32744
|
nullable: boolean;
|
|
32686
32745
|
type: string;
|
|
32687
32746
|
};
|
|
32747
|
+
warnings: {
|
|
32748
|
+
description: string;
|
|
32749
|
+
items: {
|
|
32750
|
+
description: string;
|
|
32751
|
+
discriminator: {
|
|
32752
|
+
propertyName: string;
|
|
32753
|
+
};
|
|
32754
|
+
oneOf: {
|
|
32755
|
+
description: string;
|
|
32756
|
+
properties: {
|
|
32757
|
+
created_at: {
|
|
32758
|
+
description: string;
|
|
32759
|
+
format: string;
|
|
32760
|
+
type: string;
|
|
32761
|
+
};
|
|
32762
|
+
message: {
|
|
32763
|
+
description: string;
|
|
32764
|
+
type: string;
|
|
32765
|
+
};
|
|
32766
|
+
warning_code: {
|
|
32767
|
+
description: string;
|
|
32768
|
+
enum: string[];
|
|
32769
|
+
type: string;
|
|
32770
|
+
};
|
|
32771
|
+
};
|
|
32772
|
+
required: string[];
|
|
32773
|
+
type: string;
|
|
32774
|
+
}[];
|
|
32775
|
+
};
|
|
32776
|
+
type: string;
|
|
32777
|
+
};
|
|
32688
32778
|
workspace_id: {
|
|
32689
32779
|
description: string;
|
|
32690
32780
|
format: string;
|
|
@@ -39016,6 +39106,16 @@ declare const _default: {
|
|
|
39016
39106
|
'application/json': {
|
|
39017
39107
|
schema: {
|
|
39018
39108
|
properties: {
|
|
39109
|
+
access_grant_id: {
|
|
39110
|
+
description: string;
|
|
39111
|
+
format: string;
|
|
39112
|
+
type: string;
|
|
39113
|
+
};
|
|
39114
|
+
access_method_id: {
|
|
39115
|
+
description: string;
|
|
39116
|
+
format: string;
|
|
39117
|
+
type: string;
|
|
39118
|
+
};
|
|
39019
39119
|
acs_credential_id: {
|
|
39020
39120
|
description: string;
|
|
39021
39121
|
format: string;
|
|
@@ -71726,6 +71826,10 @@ interface Routes {
|
|
|
71726
71826
|
location_id?: (string | null) | undefined;
|
|
71727
71827
|
/** ID of the space for which you want to list entrances. */
|
|
71728
71828
|
space_id?: string | undefined;
|
|
71829
|
+
/** ID of the access grant for which you want to retrieve all entrances. */
|
|
71830
|
+
access_grant_id?: string | undefined;
|
|
71831
|
+
/** ID of the access method for which you want to retrieve all entrances. */
|
|
71832
|
+
access_method_id?: string | undefined;
|
|
71729
71833
|
};
|
|
71730
71834
|
formData: {};
|
|
71731
71835
|
jsonResponse: {
|
|
@@ -98870,8 +98974,6 @@ interface Routes {
|
|
|
98870
98974
|
is_being_activated: boolean;
|
|
98871
98975
|
};
|
|
98872
98976
|
acs_credentials: Array<{
|
|
98873
|
-
/** ID of the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
|
|
98874
|
-
acs_credential_id: string;
|
|
98875
98977
|
/** ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs. */
|
|
98876
98978
|
acs_user_id?: string | undefined;
|
|
98877
98979
|
acs_credential_pool_id?: string | undefined;
|
|
@@ -98981,6 +99083,7 @@ interface Routes {
|
|
|
98981
99083
|
endpoint_id?: string | undefined;
|
|
98982
99084
|
} | undefined;
|
|
98983
99085
|
is_managed: true;
|
|
99086
|
+
acs_credential_id?: string | undefined;
|
|
98984
99087
|
acs_entrances: Array<{
|
|
98985
99088
|
/** ID of the [access control system](https://docs.seam.co/latest/capability-guides/access-systems) that contains the [entrance](https://docs.seam.co/latest/capability-guides/access-systems/retrieving-entrance-details). */
|
|
98986
99089
|
acs_system_id: string;
|
|
@@ -114168,6 +114271,22 @@ interface Routes {
|
|
|
114168
114271
|
created_at: string;
|
|
114169
114272
|
/** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces) that contains the user identity. */
|
|
114170
114273
|
workspace_id: string;
|
|
114274
|
+
/** Array of errors associated with the user identity. Each error object within the array contains two fields: "error_code" and "message." "error_code" is a string that uniquely identifies the type of error, enabling quick recognition and categorization of the issue. "message" provides a more detailed description of the error, offering insights into the issue and potentially how to rectify it. */
|
|
114275
|
+
errors: Array<{
|
|
114276
|
+
/** Date and time at which Seam created the error. */
|
|
114277
|
+
created_at: string;
|
|
114278
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
114279
|
+
message: string;
|
|
114280
|
+
}>;
|
|
114281
|
+
/** Array of warnings associated with the user identity. Each warning object within the array contains two fields: "warning_code" and "message." "warning_code" is a string that uniquely identifies the type of warning, enabling quick recognition and categorization of the issue. "message" provides a more detailed description of the warning, offering insights into the issue and potentially how to rectify it. */
|
|
114282
|
+
warnings: Array<{
|
|
114283
|
+
/** Date and time at which Seam created the warning. */
|
|
114284
|
+
created_at: string;
|
|
114285
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
114286
|
+
message: string;
|
|
114287
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
114288
|
+
warning_code: 'being_deleted';
|
|
114289
|
+
}>;
|
|
114171
114290
|
};
|
|
114172
114291
|
};
|
|
114173
114292
|
};
|
|
@@ -114329,6 +114448,22 @@ interface Routes {
|
|
|
114329
114448
|
created_at: string;
|
|
114330
114449
|
/** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces) that contains the user identity. */
|
|
114331
114450
|
workspace_id: string;
|
|
114451
|
+
/** Array of errors associated with the user identity. Each error object within the array contains two fields: "error_code" and "message." "error_code" is a string that uniquely identifies the type of error, enabling quick recognition and categorization of the issue. "message" provides a more detailed description of the error, offering insights into the issue and potentially how to rectify it. */
|
|
114452
|
+
errors: Array<{
|
|
114453
|
+
/** Date and time at which Seam created the error. */
|
|
114454
|
+
created_at: string;
|
|
114455
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
114456
|
+
message: string;
|
|
114457
|
+
}>;
|
|
114458
|
+
/** Array of warnings associated with the user identity. Each warning object within the array contains two fields: "warning_code" and "message." "warning_code" is a string that uniquely identifies the type of warning, enabling quick recognition and categorization of the issue. "message" provides a more detailed description of the warning, offering insights into the issue and potentially how to rectify it. */
|
|
114459
|
+
warnings: Array<{
|
|
114460
|
+
/** Date and time at which Seam created the warning. */
|
|
114461
|
+
created_at: string;
|
|
114462
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
114463
|
+
message: string;
|
|
114464
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
114465
|
+
warning_code: 'being_deleted';
|
|
114466
|
+
}>;
|
|
114332
114467
|
};
|
|
114333
114468
|
};
|
|
114334
114469
|
};
|
|
@@ -114372,6 +114507,22 @@ interface Routes {
|
|
|
114372
114507
|
created_at: string;
|
|
114373
114508
|
/** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces) that contains the user identity. */
|
|
114374
114509
|
workspace_id: string;
|
|
114510
|
+
/** Array of errors associated with the user identity. Each error object within the array contains two fields: "error_code" and "message." "error_code" is a string that uniquely identifies the type of error, enabling quick recognition and categorization of the issue. "message" provides a more detailed description of the error, offering insights into the issue and potentially how to rectify it. */
|
|
114511
|
+
errors: Array<{
|
|
114512
|
+
/** Date and time at which Seam created the error. */
|
|
114513
|
+
created_at: string;
|
|
114514
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
114515
|
+
message: string;
|
|
114516
|
+
}>;
|
|
114517
|
+
/** Array of warnings associated with the user identity. Each warning object within the array contains two fields: "warning_code" and "message." "warning_code" is a string that uniquely identifies the type of warning, enabling quick recognition and categorization of the issue. "message" provides a more detailed description of the warning, offering insights into the issue and potentially how to rectify it. */
|
|
114518
|
+
warnings: Array<{
|
|
114519
|
+
/** Date and time at which Seam created the warning. */
|
|
114520
|
+
created_at: string;
|
|
114521
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
114522
|
+
message: string;
|
|
114523
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
114524
|
+
warning_code: 'being_deleted';
|
|
114525
|
+
}>;
|
|
114375
114526
|
}>;
|
|
114376
114527
|
};
|
|
114377
114528
|
};
|
|
@@ -16,7 +16,7 @@ declare const phone_provider_session: z.ZodObject<{
|
|
|
16
16
|
is_being_activated: boolean;
|
|
17
17
|
provider_state?: any;
|
|
18
18
|
}>;
|
|
19
|
-
acs_credentials: z.ZodArray<z.ZodObject<z.objectUtil.extendShape<z.objectUtil.extendShape<{
|
|
19
|
+
acs_credentials: z.ZodArray<z.ZodObject<z.objectUtil.extendShape<Omit<z.objectUtil.extendShape<{
|
|
20
20
|
acs_credential_id: z.ZodString;
|
|
21
21
|
acs_user_id: z.ZodOptional<z.ZodString>;
|
|
22
22
|
acs_credential_pool_id: z.ZodOptional<z.ZodString>;
|
|
@@ -179,7 +179,8 @@ declare const phone_provider_session: z.ZodObject<{
|
|
|
179
179
|
}>>;
|
|
180
180
|
}, {
|
|
181
181
|
is_managed: z.ZodLiteral<true>;
|
|
182
|
-
}>, {
|
|
182
|
+
}>, "acs_credential_id">, {
|
|
183
|
+
acs_credential_id: z.ZodOptional<z.ZodString>;
|
|
183
184
|
acs_entrances: z.ZodArray<z.ZodObject<{
|
|
184
185
|
acs_system_id: z.ZodString;
|
|
185
186
|
acs_entrance_id: z.ZodString;
|
|
@@ -438,7 +439,6 @@ declare const phone_provider_session: z.ZodObject<{
|
|
|
438
439
|
})[];
|
|
439
440
|
is_managed: true;
|
|
440
441
|
acs_system_id: string;
|
|
441
|
-
acs_credential_id: string;
|
|
442
442
|
access_method: "code" | "card" | "mobile_key";
|
|
443
443
|
acs_entrances: {
|
|
444
444
|
display_name: string;
|
|
@@ -514,6 +514,7 @@ declare const phone_provider_session: z.ZodObject<{
|
|
|
514
514
|
issued_at?: string | null | undefined;
|
|
515
515
|
external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_key" | "salto_space_key" | "latch_access" | undefined;
|
|
516
516
|
external_type_display_name?: string | undefined;
|
|
517
|
+
acs_credential_id?: string | undefined;
|
|
517
518
|
acs_user_id?: string | undefined;
|
|
518
519
|
acs_credential_pool_id?: string | undefined;
|
|
519
520
|
parent_acs_credential_id?: string | undefined;
|
|
@@ -557,7 +558,6 @@ declare const phone_provider_session: z.ZodObject<{
|
|
|
557
558
|
})[];
|
|
558
559
|
is_managed: true;
|
|
559
560
|
acs_system_id: string;
|
|
560
|
-
acs_credential_id: string;
|
|
561
561
|
access_method: "code" | "card" | "mobile_key";
|
|
562
562
|
acs_entrances: {
|
|
563
563
|
display_name: string;
|
|
@@ -633,6 +633,7 @@ declare const phone_provider_session: z.ZodObject<{
|
|
|
633
633
|
issued_at?: string | null | undefined;
|
|
634
634
|
external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_key" | "salto_space_key" | "latch_access" | undefined;
|
|
635
635
|
external_type_display_name?: string | undefined;
|
|
636
|
+
acs_credential_id?: string | undefined;
|
|
636
637
|
acs_user_id?: string | undefined;
|
|
637
638
|
acs_credential_pool_id?: string | undefined;
|
|
638
639
|
parent_acs_credential_id?: string | undefined;
|
|
@@ -684,7 +685,6 @@ declare const phone_provider_session: z.ZodObject<{
|
|
|
684
685
|
})[];
|
|
685
686
|
is_managed: true;
|
|
686
687
|
acs_system_id: string;
|
|
687
|
-
acs_credential_id: string;
|
|
688
688
|
access_method: "code" | "card" | "mobile_key";
|
|
689
689
|
acs_entrances: {
|
|
690
690
|
display_name: string;
|
|
@@ -760,6 +760,7 @@ declare const phone_provider_session: z.ZodObject<{
|
|
|
760
760
|
issued_at?: string | null | undefined;
|
|
761
761
|
external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_key" | "salto_space_key" | "latch_access" | undefined;
|
|
762
762
|
external_type_display_name?: string | undefined;
|
|
763
|
+
acs_credential_id?: string | undefined;
|
|
763
764
|
acs_user_id?: string | undefined;
|
|
764
765
|
acs_credential_pool_id?: string | undefined;
|
|
765
766
|
parent_acs_credential_id?: string | undefined;
|
|
@@ -811,7 +812,6 @@ declare const phone_provider_session: z.ZodObject<{
|
|
|
811
812
|
})[];
|
|
812
813
|
is_managed: true;
|
|
813
814
|
acs_system_id: string;
|
|
814
|
-
acs_credential_id: string;
|
|
815
815
|
access_method: "code" | "card" | "mobile_key";
|
|
816
816
|
acs_entrances: {
|
|
817
817
|
display_name: string;
|
|
@@ -887,6 +887,7 @@ declare const phone_provider_session: z.ZodObject<{
|
|
|
887
887
|
issued_at?: string | null | undefined;
|
|
888
888
|
external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_key" | "salto_space_key" | "latch_access" | undefined;
|
|
889
889
|
external_type_display_name?: string | undefined;
|
|
890
|
+
acs_credential_id?: string | undefined;
|
|
890
891
|
acs_user_id?: string | undefined;
|
|
891
892
|
acs_credential_pool_id?: string | undefined;
|
|
892
893
|
parent_acs_credential_id?: string | undefined;
|
|
@@ -915,7 +916,7 @@ export declare const phone_session: z.ZodObject<{
|
|
|
915
916
|
is_being_activated: boolean;
|
|
916
917
|
provider_state?: any;
|
|
917
918
|
}>;
|
|
918
|
-
acs_credentials: z.ZodArray<z.ZodObject<z.objectUtil.extendShape<z.objectUtil.extendShape<{
|
|
919
|
+
acs_credentials: z.ZodArray<z.ZodObject<z.objectUtil.extendShape<Omit<z.objectUtil.extendShape<{
|
|
919
920
|
acs_credential_id: z.ZodString;
|
|
920
921
|
acs_user_id: z.ZodOptional<z.ZodString>;
|
|
921
922
|
acs_credential_pool_id: z.ZodOptional<z.ZodString>;
|
|
@@ -1078,7 +1079,8 @@ export declare const phone_session: z.ZodObject<{
|
|
|
1078
1079
|
}>>;
|
|
1079
1080
|
}, {
|
|
1080
1081
|
is_managed: z.ZodLiteral<true>;
|
|
1081
|
-
}>, {
|
|
1082
|
+
}>, "acs_credential_id">, {
|
|
1083
|
+
acs_credential_id: z.ZodOptional<z.ZodString>;
|
|
1082
1084
|
acs_entrances: z.ZodArray<z.ZodObject<{
|
|
1083
1085
|
acs_system_id: z.ZodString;
|
|
1084
1086
|
acs_entrance_id: z.ZodString;
|
|
@@ -1337,7 +1339,6 @@ export declare const phone_session: z.ZodObject<{
|
|
|
1337
1339
|
})[];
|
|
1338
1340
|
is_managed: true;
|
|
1339
1341
|
acs_system_id: string;
|
|
1340
|
-
acs_credential_id: string;
|
|
1341
1342
|
access_method: "code" | "card" | "mobile_key";
|
|
1342
1343
|
acs_entrances: {
|
|
1343
1344
|
display_name: string;
|
|
@@ -1413,6 +1414,7 @@ export declare const phone_session: z.ZodObject<{
|
|
|
1413
1414
|
issued_at?: string | null | undefined;
|
|
1414
1415
|
external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_key" | "salto_space_key" | "latch_access" | undefined;
|
|
1415
1416
|
external_type_display_name?: string | undefined;
|
|
1417
|
+
acs_credential_id?: string | undefined;
|
|
1416
1418
|
acs_user_id?: string | undefined;
|
|
1417
1419
|
acs_credential_pool_id?: string | undefined;
|
|
1418
1420
|
parent_acs_credential_id?: string | undefined;
|
|
@@ -1456,7 +1458,6 @@ export declare const phone_session: z.ZodObject<{
|
|
|
1456
1458
|
})[];
|
|
1457
1459
|
is_managed: true;
|
|
1458
1460
|
acs_system_id: string;
|
|
1459
|
-
acs_credential_id: string;
|
|
1460
1461
|
access_method: "code" | "card" | "mobile_key";
|
|
1461
1462
|
acs_entrances: {
|
|
1462
1463
|
display_name: string;
|
|
@@ -1532,6 +1533,7 @@ export declare const phone_session: z.ZodObject<{
|
|
|
1532
1533
|
issued_at?: string | null | undefined;
|
|
1533
1534
|
external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_key" | "salto_space_key" | "latch_access" | undefined;
|
|
1534
1535
|
external_type_display_name?: string | undefined;
|
|
1536
|
+
acs_credential_id?: string | undefined;
|
|
1535
1537
|
acs_user_id?: string | undefined;
|
|
1536
1538
|
acs_credential_pool_id?: string | undefined;
|
|
1537
1539
|
parent_acs_credential_id?: string | undefined;
|
|
@@ -1583,7 +1585,6 @@ export declare const phone_session: z.ZodObject<{
|
|
|
1583
1585
|
})[];
|
|
1584
1586
|
is_managed: true;
|
|
1585
1587
|
acs_system_id: string;
|
|
1586
|
-
acs_credential_id: string;
|
|
1587
1588
|
access_method: "code" | "card" | "mobile_key";
|
|
1588
1589
|
acs_entrances: {
|
|
1589
1590
|
display_name: string;
|
|
@@ -1659,6 +1660,7 @@ export declare const phone_session: z.ZodObject<{
|
|
|
1659
1660
|
issued_at?: string | null | undefined;
|
|
1660
1661
|
external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_key" | "salto_space_key" | "latch_access" | undefined;
|
|
1661
1662
|
external_type_display_name?: string | undefined;
|
|
1663
|
+
acs_credential_id?: string | undefined;
|
|
1662
1664
|
acs_user_id?: string | undefined;
|
|
1663
1665
|
acs_credential_pool_id?: string | undefined;
|
|
1664
1666
|
parent_acs_credential_id?: string | undefined;
|
|
@@ -1710,7 +1712,6 @@ export declare const phone_session: z.ZodObject<{
|
|
|
1710
1712
|
})[];
|
|
1711
1713
|
is_managed: true;
|
|
1712
1714
|
acs_system_id: string;
|
|
1713
|
-
acs_credential_id: string;
|
|
1714
1715
|
access_method: "code" | "card" | "mobile_key";
|
|
1715
1716
|
acs_entrances: {
|
|
1716
1717
|
display_name: string;
|
|
@@ -1786,6 +1787,7 @@ export declare const phone_session: z.ZodObject<{
|
|
|
1786
1787
|
issued_at?: string | null | undefined;
|
|
1787
1788
|
external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_key" | "salto_space_key" | "latch_access" | undefined;
|
|
1788
1789
|
external_type_display_name?: string | undefined;
|
|
1790
|
+
acs_credential_id?: string | undefined;
|
|
1789
1791
|
acs_user_id?: string | undefined;
|
|
1790
1792
|
acs_credential_pool_id?: string | undefined;
|
|
1791
1793
|
parent_acs_credential_id?: string | undefined;
|
|
@@ -1839,7 +1841,6 @@ export declare const phone_session: z.ZodObject<{
|
|
|
1839
1841
|
})[];
|
|
1840
1842
|
is_managed: true;
|
|
1841
1843
|
acs_system_id: string;
|
|
1842
|
-
acs_credential_id: string;
|
|
1843
1844
|
access_method: "code" | "card" | "mobile_key";
|
|
1844
1845
|
acs_entrances: {
|
|
1845
1846
|
display_name: string;
|
|
@@ -1915,6 +1916,7 @@ export declare const phone_session: z.ZodObject<{
|
|
|
1915
1916
|
issued_at?: string | null | undefined;
|
|
1916
1917
|
external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_key" | "salto_space_key" | "latch_access" | undefined;
|
|
1917
1918
|
external_type_display_name?: string | undefined;
|
|
1919
|
+
acs_credential_id?: string | undefined;
|
|
1918
1920
|
acs_user_id?: string | undefined;
|
|
1919
1921
|
acs_credential_pool_id?: string | undefined;
|
|
1920
1922
|
parent_acs_credential_id?: string | undefined;
|
|
@@ -1968,7 +1970,6 @@ export declare const phone_session: z.ZodObject<{
|
|
|
1968
1970
|
})[];
|
|
1969
1971
|
is_managed: true;
|
|
1970
1972
|
acs_system_id: string;
|
|
1971
|
-
acs_credential_id: string;
|
|
1972
1973
|
access_method: "code" | "card" | "mobile_key";
|
|
1973
1974
|
acs_entrances: {
|
|
1974
1975
|
display_name: string;
|
|
@@ -2044,6 +2045,7 @@ export declare const phone_session: z.ZodObject<{
|
|
|
2044
2045
|
issued_at?: string | null | undefined;
|
|
2045
2046
|
external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_key" | "salto_space_key" | "latch_access" | undefined;
|
|
2046
2047
|
external_type_display_name?: string | undefined;
|
|
2048
|
+
acs_credential_id?: string | undefined;
|
|
2047
2049
|
acs_user_id?: string | undefined;
|
|
2048
2050
|
acs_credential_pool_id?: string | undefined;
|
|
2049
2051
|
parent_acs_credential_id?: string | undefined;
|
|
@@ -5,7 +5,11 @@ import { phone_registration } from './phone-registration.js';
|
|
|
5
5
|
const phone_provider_session = z.object({
|
|
6
6
|
phone_registration,
|
|
7
7
|
acs_credentials: acs_credential
|
|
8
|
+
.omit({
|
|
9
|
+
acs_credential_id: true,
|
|
10
|
+
})
|
|
8
11
|
.extend({
|
|
12
|
+
acs_credential_id: z.string().optional(),
|
|
9
13
|
acs_entrances: acs_entrance.array(),
|
|
10
14
|
})
|
|
11
15
|
.array(),
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"phone-session.js","sourceRoot":"","sources":["../../../../../src/lib/seam/connect/models/phones/phone-session.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAA;AAEvB,OAAO,EAAE,cAAc,EAAE,MAAM,0BAA0B,CAAA;AACzD,OAAO,EAAE,YAAY,EAAE,MAAM,wBAAwB,CAAA;AACrD,OAAO,EAAE,kBAAkB,EAAE,MAAM,yBAAyB,CAAA;AAE5D,MAAM,sBAAsB,GAAG,CAAC,CAAC,MAAM,CAAC;IACtC,kBAAkB;IAClB,eAAe,EAAE,cAAc;SAC5B,MAAM,CAAC;QACN,aAAa,EAAE,YAAY,CAAC,KAAK,EAAE;KACpC,CAAC;SACD,KAAK,EAAE;CACX,CAAC,CAAA;AAEF,MAAM,CAAC,MAAM,aAAa,GAAG,CAAC,CAAC,MAAM,CAAC;IACpC,iBAAiB,EAAE,sBAAsB,CAAC,KAAK,EAAE;CAClD,CAAC,CAAC,QAAQ,CAAC;;;;;CAKX,CAAC,CAAA"}
|
|
1
|
+
{"version":3,"file":"phone-session.js","sourceRoot":"","sources":["../../../../../src/lib/seam/connect/models/phones/phone-session.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAA;AAEvB,OAAO,EAAE,cAAc,EAAE,MAAM,0BAA0B,CAAA;AACzD,OAAO,EAAE,YAAY,EAAE,MAAM,wBAAwB,CAAA;AACrD,OAAO,EAAE,kBAAkB,EAAE,MAAM,yBAAyB,CAAA;AAE5D,MAAM,sBAAsB,GAAG,CAAC,CAAC,MAAM,CAAC;IACtC,kBAAkB;IAClB,eAAe,EAAE,cAAc;SAC5B,IAAI,CAAC;QACJ,iBAAiB,EAAE,IAAI;KACxB,CAAC;SACD,MAAM,CAAC;QACN,iBAAiB,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,EAAE;QACxC,aAAa,EAAE,YAAY,CAAC,KAAK,EAAE;KACpC,CAAC;SACD,KAAK,EAAE;CACX,CAAC,CAAA;AAEF,MAAM,CAAC,MAAM,aAAa,GAAG,CAAC,CAAC,MAAM,CAAC;IACpC,iBAAiB,EAAE,sBAAsB,CAAC,KAAK,EAAE;CAClD,CAAC,CAAC,QAAQ,CAAC;;;;;CAKX,CAAC,CAAA"}
|
|
@@ -1,4 +1,35 @@
|
|
|
1
1
|
import { z } from 'zod';
|
|
2
|
+
export declare const user_identity_error_map: z.ZodObject<{}, "strip", z.ZodTypeAny, {}, {}>;
|
|
3
|
+
export type UserIdentityErrorMap = z.infer<typeof user_identity_error_map>;
|
|
4
|
+
export declare const user_identity_warning_map: z.ZodObject<{
|
|
5
|
+
user_identity_being_deleted: z.ZodNullable<z.ZodOptional<z.ZodObject<z.objectUtil.extendShape<{
|
|
6
|
+
created_at: z.ZodString;
|
|
7
|
+
message: z.ZodString;
|
|
8
|
+
}, {
|
|
9
|
+
warning_code: z.ZodLiteral<"being_deleted">;
|
|
10
|
+
}>, "strip", z.ZodTypeAny, {
|
|
11
|
+
message: string;
|
|
12
|
+
created_at: string;
|
|
13
|
+
warning_code: "being_deleted";
|
|
14
|
+
}, {
|
|
15
|
+
message: string;
|
|
16
|
+
created_at: string;
|
|
17
|
+
warning_code: "being_deleted";
|
|
18
|
+
}>>>;
|
|
19
|
+
}, "strip", z.ZodTypeAny, {
|
|
20
|
+
user_identity_being_deleted?: {
|
|
21
|
+
message: string;
|
|
22
|
+
created_at: string;
|
|
23
|
+
warning_code: "being_deleted";
|
|
24
|
+
} | null | undefined;
|
|
25
|
+
}, {
|
|
26
|
+
user_identity_being_deleted?: {
|
|
27
|
+
message: string;
|
|
28
|
+
created_at: string;
|
|
29
|
+
warning_code: "being_deleted";
|
|
30
|
+
} | null | undefined;
|
|
31
|
+
}>;
|
|
32
|
+
export type UserIdentityWarningMap = z.infer<typeof user_identity_warning_map>;
|
|
2
33
|
export declare const user_identity: z.ZodObject<{
|
|
3
34
|
user_identity_id: z.ZodString;
|
|
4
35
|
user_identity_key: z.ZodNullable<z.ZodString>;
|
|
@@ -8,10 +39,43 @@ export declare const user_identity: z.ZodObject<{
|
|
|
8
39
|
full_name: z.ZodNullable<z.ZodString>;
|
|
9
40
|
created_at: z.ZodString;
|
|
10
41
|
workspace_id: z.ZodString;
|
|
42
|
+
errors: z.ZodArray<z.ZodObject<{
|
|
43
|
+
created_at: z.ZodString;
|
|
44
|
+
message: z.ZodString;
|
|
45
|
+
}, "strip", z.ZodTypeAny, {
|
|
46
|
+
message: string;
|
|
47
|
+
created_at: string;
|
|
48
|
+
}, {
|
|
49
|
+
message: string;
|
|
50
|
+
created_at: string;
|
|
51
|
+
}>, "many">;
|
|
52
|
+
warnings: z.ZodArray<z.ZodDiscriminatedUnion<"warning_code", [z.ZodObject<z.objectUtil.extendShape<{
|
|
53
|
+
created_at: z.ZodString;
|
|
54
|
+
message: z.ZodString;
|
|
55
|
+
}, {
|
|
56
|
+
warning_code: z.ZodLiteral<"being_deleted">;
|
|
57
|
+
}>, "strip", z.ZodTypeAny, {
|
|
58
|
+
message: string;
|
|
59
|
+
created_at: string;
|
|
60
|
+
warning_code: "being_deleted";
|
|
61
|
+
}, {
|
|
62
|
+
message: string;
|
|
63
|
+
created_at: string;
|
|
64
|
+
warning_code: "being_deleted";
|
|
65
|
+
}>]>, "many">;
|
|
11
66
|
}, "strip", z.ZodTypeAny, {
|
|
12
67
|
display_name: string;
|
|
13
68
|
workspace_id: string;
|
|
14
69
|
created_at: string;
|
|
70
|
+
errors: {
|
|
71
|
+
message: string;
|
|
72
|
+
created_at: string;
|
|
73
|
+
}[];
|
|
74
|
+
warnings: {
|
|
75
|
+
message: string;
|
|
76
|
+
created_at: string;
|
|
77
|
+
warning_code: "being_deleted";
|
|
78
|
+
}[];
|
|
15
79
|
user_identity_id: string;
|
|
16
80
|
email_address: string | null;
|
|
17
81
|
full_name: string | null;
|
|
@@ -21,6 +85,15 @@ export declare const user_identity: z.ZodObject<{
|
|
|
21
85
|
display_name: string;
|
|
22
86
|
workspace_id: string;
|
|
23
87
|
created_at: string;
|
|
88
|
+
errors: {
|
|
89
|
+
message: string;
|
|
90
|
+
created_at: string;
|
|
91
|
+
}[];
|
|
92
|
+
warnings: {
|
|
93
|
+
message: string;
|
|
94
|
+
created_at: string;
|
|
95
|
+
warning_code: "being_deleted";
|
|
96
|
+
}[];
|
|
24
97
|
user_identity_id: string;
|
|
25
98
|
email_address: string | null;
|
|
26
99
|
full_name: string | null;
|
|
@@ -1,5 +1,39 @@
|
|
|
1
1
|
import { z } from 'zod';
|
|
2
2
|
import { phone_number } from '../phone-number.js';
|
|
3
|
+
const common_user_identity_error = z.object({
|
|
4
|
+
created_at: z
|
|
5
|
+
.string()
|
|
6
|
+
.datetime()
|
|
7
|
+
.describe('Date and time at which Seam created the error.'),
|
|
8
|
+
message: z
|
|
9
|
+
.string()
|
|
10
|
+
.describe('Detailed description of the error. Provides insights into the issue and potentially how to rectify it.'),
|
|
11
|
+
});
|
|
12
|
+
const common_user_identity_warning = z.object({
|
|
13
|
+
created_at: z
|
|
14
|
+
.string()
|
|
15
|
+
.datetime()
|
|
16
|
+
.describe('Date and time at which Seam created the warning.'),
|
|
17
|
+
message: z
|
|
18
|
+
.string()
|
|
19
|
+
.describe('Detailed description of the warning. Provides insights into the issue and potentially how to rectify it.'),
|
|
20
|
+
});
|
|
21
|
+
const user_identity_being_deleted = common_user_identity_warning
|
|
22
|
+
.extend({
|
|
23
|
+
warning_code: z
|
|
24
|
+
.literal('being_deleted')
|
|
25
|
+
.describe('Unique identifier of the type of warning. Enables quick recognition and categorization of the issue.'),
|
|
26
|
+
})
|
|
27
|
+
.describe('Indicates that the user identity is currently being deleted.');
|
|
28
|
+
export const user_identity_error_map = z.object({});
|
|
29
|
+
const user_identity_warnings = z
|
|
30
|
+
.discriminatedUnion('warning_code', [user_identity_being_deleted])
|
|
31
|
+
.describe('Warnings associated with the user identity.');
|
|
32
|
+
export const user_identity_warning_map = z.object({
|
|
33
|
+
user_identity_being_deleted: user_identity_being_deleted
|
|
34
|
+
.optional()
|
|
35
|
+
.nullable(),
|
|
36
|
+
});
|
|
3
37
|
export const user_identity = z.object({
|
|
4
38
|
user_identity_id: z.string().uuid().describe('ID of the user identity.'),
|
|
5
39
|
user_identity_key: z
|
|
@@ -25,6 +59,12 @@ export const user_identity = z.object({
|
|
|
25
59
|
.string()
|
|
26
60
|
.uuid()
|
|
27
61
|
.describe('ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces) that contains the user identity.'),
|
|
62
|
+
errors: z
|
|
63
|
+
.array(common_user_identity_error)
|
|
64
|
+
.describe('Array of errors associated with the user identity. Each error object within the array contains two fields: "error_code" and "message." "error_code" is a string that uniquely identifies the type of error, enabling quick recognition and categorization of the issue. "message" provides a more detailed description of the error, offering insights into the issue and potentially how to rectify it.'),
|
|
65
|
+
warnings: z
|
|
66
|
+
.array(user_identity_warnings)
|
|
67
|
+
.describe('Array of warnings associated with the user identity. Each warning object within the array contains two fields: "warning_code" and "message." "warning_code" is a string that uniquely identifies the type of warning, enabling quick recognition and categorization of the issue. "message" provides a more detailed description of the warning, offering insights into the issue and potentially how to rectify it.'),
|
|
28
68
|
}).describe(`
|
|
29
69
|
---
|
|
30
70
|
route_path: /user_identities
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"user-identity.js","sourceRoot":"","sources":["../../../../../src/lib/seam/connect/models/user-identities/user-identity.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAA;AAEvB,OAAO,EAAE,YAAY,EAAE,MAAM,oBAAoB,CAAA;AAEjD,MAAM,CAAC,MAAM,aAAa,GAAG,CAAC,CAAC,MAAM,CAAC;IACpC,gBAAgB,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,IAAI,EAAE,CAAC,QAAQ,CAAC,0BAA0B,CAAC;IACxE,iBAAiB,EAAE,CAAC;SACjB,MAAM,EAAE;SACR,GAAG,CAAC,CAAC,CAAC;SACN,QAAQ,EAAE;SACV,QAAQ,CAAC,mCAAmC,CAAC;IAChD,aAAa,EAAE,CAAC;SACb,MAAM,EAAE;SACR,KAAK,EAAE;SACP,QAAQ,EAAE;SACV,QAAQ,CAAC,6CAA6C,CAAC;IAC1D,YAAY,EAAE,YAAY;SACvB,QAAQ,EAAE;SACV,QAAQ,CACP,kIAAkI,CACnI;IACH,YAAY,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,GAAG,CAAC,CAAC,CAAC;IAC/B,SAAS,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC,QAAQ,EAAE;IACvC,UAAU,EAAE,CAAC;SACV,MAAM,EAAE;SACR,QAAQ,EAAE;SACV,QAAQ,CAAC,uDAAuD,CAAC;IACpE,YAAY,EAAE,CAAC;SACZ,MAAM,EAAE;SACR,IAAI,EAAE;SACN,QAAQ,CACP,8GAA8G,CAC/G;CACJ,CAAC,CAAC,QAAQ,CAAC;;;;;CAKX,CAAC,CAAA"}
|
|
1
|
+
{"version":3,"file":"user-identity.js","sourceRoot":"","sources":["../../../../../src/lib/seam/connect/models/user-identities/user-identity.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAA;AAEvB,OAAO,EAAE,YAAY,EAAE,MAAM,oBAAoB,CAAA;AAEjD,MAAM,0BAA0B,GAAG,CAAC,CAAC,MAAM,CAAC;IAC1C,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,4BAA4B,GAAG,CAAC,CAAC,MAAM,CAAC;IAC5C,UAAU,EAAE,CAAC;SACV,MAAM,EAAE;SACR,QAAQ,EAAE;SACV,QAAQ,CAAC,kDAAkD,CAAC;IAC/D,OAAO,EAAE,CAAC;SACP,MAAM,EAAE;SACR,QAAQ,CACP,0GAA0G,CAC3G;CACJ,CAAC,CAAA;AAEF,MAAM,2BAA2B,GAAG,4BAA4B;KAC7D,MAAM,CAAC;IACN,YAAY,EAAE,CAAC;SACZ,OAAO,CAAC,eAAe,CAAC;SACxB,QAAQ,CACP,sGAAsG,CACvG;CACJ,CAAC;KACD,QAAQ,CAAC,8DAA8D,CAAC,CAAA;AAE3E,MAAM,CAAC,MAAM,uBAAuB,GAAG,CAAC,CAAC,MAAM,CAAC,EAAE,CAAC,CAAA;AAInD,MAAM,sBAAsB,GAAG,CAAC;KAC7B,kBAAkB,CAAC,cAAc,EAAE,CAAC,2BAA2B,CAAC,CAAC;KACjE,QAAQ,CAAC,6CAA6C,CAAC,CAAA;AAE1D,MAAM,CAAC,MAAM,yBAAyB,GAAG,CAAC,CAAC,MAAM,CAAC;IAChD,2BAA2B,EAAE,2BAA2B;SACrD,QAAQ,EAAE;SACV,QAAQ,EAAE;CACd,CAAC,CAAA;AAIF,MAAM,CAAC,MAAM,aAAa,GAAG,CAAC,CAAC,MAAM,CAAC;IACpC,gBAAgB,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,IAAI,EAAE,CAAC,QAAQ,CAAC,0BAA0B,CAAC;IACxE,iBAAiB,EAAE,CAAC;SACjB,MAAM,EAAE;SACR,GAAG,CAAC,CAAC,CAAC;SACN,QAAQ,EAAE;SACV,QAAQ,CAAC,mCAAmC,CAAC;IAChD,aAAa,EAAE,CAAC;SACb,MAAM,EAAE;SACR,KAAK,EAAE;SACP,QAAQ,EAAE;SACV,QAAQ,CAAC,6CAA6C,CAAC;IAC1D,YAAY,EAAE,YAAY;SACvB,QAAQ,EAAE;SACV,QAAQ,CACP,kIAAkI,CACnI;IACH,YAAY,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,GAAG,CAAC,CAAC,CAAC;IAC/B,SAAS,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC,QAAQ,EAAE;IACvC,UAAU,EAAE,CAAC;SACV,MAAM,EAAE;SACR,QAAQ,EAAE;SACV,QAAQ,CAAC,uDAAuD,CAAC;IACpE,YAAY,EAAE,CAAC;SACZ,MAAM,EAAE;SACR,IAAI,EAAE;SACN,QAAQ,CACP,8GAA8G,CAC/G;IACH,MAAM,EAAE,CAAC;SACN,KAAK,CAAC,0BAA0B,CAAC;SACjC,QAAQ,CACP,0YAA0Y,CAC3Y;IACH,QAAQ,EAAE,CAAC;SACR,KAAK,CAAC,sBAAsB,CAAC;SAC7B,QAAQ,CACP,sZAAsZ,CACvZ;CACJ,CAAC,CAAC,QAAQ,CAAC;;;;;CAKX,CAAC,CAAA"}
|